From 6148e23f505a4686dfd5c03230b82c3acb993341 Mon Sep 17 00:00:00 2001 From: RavanH Date: Tue, 28 May 2019 15:40:35 +0200 Subject: [PATCH 1/2] Fix product image caching system littering the monthly upload tree --- changelog.txt | 19 +++--- includes/common/class-mp-product.php | 9 ++- includes/common/helpers.php | 85 ++++---------------------- includes/common/template-functions.php | 45 +++++++------- marketpress.php | 11 +++- dev-readme.txt => readme.txt | 71 ++++++++++----------- 6 files changed, 95 insertions(+), 145 deletions(-) rename dev-readme.txt => readme.txt (98%) diff --git a/changelog.txt b/changelog.txt index 5a3fbf19..cd1c9e10 100644 --- a/changelog.txt +++ b/changelog.txt @@ -4,6 +4,11 @@ Author: Marko Miljus (Incsub), Aaron Edwards (Incsub), Hoang Ngo (Incsub), Jonat Change Log: ---------------------------------------------------------------------- +3.4.0 +---------------------------------------------------------------------- +- Fix: Product image caching system littering the monthly upload tree + + 3.3.0 ---------------------------------------------------------------------- - Added: Added new filter mp_media_buttons to disable/enable shortcode buttons in visual editor. @@ -230,11 +235,11 @@ Change Log: 3.0.0.7 ---------------------------------------------------------------------- - Fixed: Issue with PDF Invoice add-on after complete order -- Fixed: Issues with ProSites add-on on multisite/network +- Fixed: Issues with ProSites add-on on multisite/network - Fixed: Adding related product to cart - Fixed: Compatibilities issues with Select2 and themes -- Fixed: Products not showing on main/sub-sites on multisite/network -- Fixed: Various issues with Global widgets +- Fixed: Products not showing on main/sub-sites on multisite/network +- Fixed: Various issues with Global widgets - Fixed: Missing company information on orders - Fixed: Issue with 2Checkout finishing the order - Fixed: Issues with PayPal chained payments @@ -258,7 +263,7 @@ Change Log: - Tweaked: Added new option for Digital Products, collect full or basic customer details - Tweaked: Hide shipping details if collect basic customer details is selected for Digital Products - Tweaked: Added a notice when quick-setup is not completed -- Tweaked: Quick-setup now runs on new subsites on multisite/network +- Tweaked: Quick-setup now runs on new subsites on multisite/network - Tweaked: More order detailed values on order page (admin) - Tweaked: Added option to hide/show products filter on products archives pages - Tweaked: Removed unused CSS files @@ -384,7 +389,7 @@ Adding notice for deprecated gateways Cubepoints, Bitpay, iDEAL, Skrill, Google 2.9.6.2 ---------------------------------------------------------------------- -- Fixed issue with collecting billing address for digital products (when "Collect Address on Downloadable Only Cart" is checked and shipping method is not set) +- Fixed issue with collecting billing address for digital products (when "Collect Address on Downloadable Only Cart" is checked and shipping method is not set) 2.9.6.1 ---------------------------------------------------------------------- @@ -469,7 +474,7 @@ Adding notice for deprecated gateways Cubepoints, Bitpay, iDEAL, Skrill, Google ---------------------------------------------------------------------- - Fixed: File download issue that some users were reporting - Fixed: Conflicts with Ultimatum theme http://wp.mu/9tt -- Fixed: Global Product Widget is showing a description under each product even when "content to show" is set to none http://wp.mu/9u8 +- Fixed: Global Product Widget is showing a description under each product even when "content to show" is set to none http://wp.mu/9u8 - Fixed: Shipping not being calculated correctly when using global cart and multiple shipping methods http://wp.mu/a0a - Fixed: Issue with shipping/billing fields displaying incorrect values in admin http://wp.mu/a0b - Fixed: Double escaping in global product list widget title http://wp.mu/a0e @@ -479,7 +484,7 @@ Adding notice for deprecated gateways Cubepoints, Bitpay, iDEAL, Skrill, Google - Added Coupons for individual categories/products - Added compatibility with Google Universal Analytics - Added Stripe embedded form button -- Added Pinterest "Rich Pins" w/advanced oembed endpoint +- Added Pinterest "Rich Pins" w/advanced oembed endpoint - Added show related products option - Added Pickup in-store shipping option - Added ability to assign a custom per-order limit to a product diff --git a/includes/common/class-mp-product.php b/includes/common/class-mp-product.php index d4ea9d1d..38fd9676 100644 --- a/includes/common/class-mp-product.php +++ b/includes/common/class-mp-product.php @@ -599,7 +599,7 @@ public function attribute_input_fields( $is_variation = false, $qty = false, $pr $disabled = ''; $error = ''; - $max_max = $this->max_product_quantity( $product_id, false, false ); + $max_max = $this->max_product_quantity( $product_id, false, false ); extract($this->max_product_quantity( $product_id, false, true ), EXTR_PREFIX_ALL, "max"); $max = 'max="' . esc_attr( $max_qty ) . '" '; @@ -654,7 +654,7 @@ public function attribute_input_fields( $is_variation = false, $qty = false, $pr if( (! mp_doing_ajax() && ! $product->in_stock( 1, true ) ) || $max_qty == 0 ){ $error = ''; } - + return $error . ''; } @@ -1473,7 +1473,7 @@ public function download_url( $order_id, $echo = true ) { } } - + } /** @@ -2075,8 +2075,7 @@ public function image( $echo = true, $context = 'list', $size = null, $align = n if ( ( $context == 'single' || $context == 'list' ) && ! empty( $image ) ) { //if single case, we will get the better graphic $image_id = get_post_thumbnail_id( $image_post_id ); - $image_orignal_url = wp_get_attachment_image_src( $image_id, 'full' ); - $image_url = mp_resize_image( $image_id, $image_orignal_url[0], $size ); + $image_url = wp_get_attachment_image_src( $image_id, $size ); if ( $image_url ) { $atts = ''; foreach ( diff --git a/includes/common/helpers.php b/includes/common/helpers.php index 6933f130..5e4c672e 100644 --- a/includes/common/helpers.php +++ b/includes/common/helpers.php @@ -103,14 +103,14 @@ function mp_filter_email( $order, $text, $escape = false ) { //show download link if set $download_link = false; if ( $order->post_status != 'order_received' && ( $download_url = $item->download_url( $order->get_id(), false ) ) ) { - + //Handle multiple files if( is_array( $download_url ) ){ //If we have more than one product file, we loop and add each to a new line foreach ( $download_url as $key => $value ){ $download_link .= '' . sprintf( __( 'Download %1$s', 'mp' ),( $key+1 ) ) . '
'; } - + } else { $download_link = '' . __( 'Download', 'mp' ) . ''; } @@ -175,7 +175,7 @@ function mp_filter_email( $order, $text, $escape = false ) { $zip = $order->get_meta( "mp_{$type}_info->zip" ); if( $type != "shipping" || !$cart->is_download_only() ) { - + $shipping_billing_info .= '' . $label . '

' . "\n"; $shipping_billing_info .= $order->get_name( $type ) . "
\n"; $shipping_billing_info .= $order->get_meta( "mp_{$type}_info->company_name" ) . "
\n"; @@ -191,12 +191,12 @@ function mp_filter_email( $order, $text, $escape = false ) { if( ( ( $country = $order->get_meta( "mp_{$type}_info->country", '' ) ) && is_array( $all_countries ) && isset( $all_countries[$country] ) ) ){ $country = $all_countries[$country]; - } - + } + if( ! empty( $city ) && ! empty( $state ) && ! empty( $zip ) && ! empty( $country ) ) { $shipping_billing_info .= $order->get_meta( "mp_{$type}_info->city" ) . ', ' . $state . ' ' . $order->get_meta( "mp_{$type}_info->zip" ) . ' ' . $country . "

\n"; } - + $shipping_billing_info .= $order->get_meta( "mp_{$type}_info->email" ) . "
\n"; if ( $order->get_meta( "mp_{$type}_info->phone" ) ) { @@ -208,10 +208,10 @@ function mp_filter_email( $order, $text, $escape = false ) { } $shipping_billing_info .= '

'; - + $custom_carriers = mp_get_setting( 'shipping->custom_method', array() ); $method = $order->get_meta( 'mp_shipping_info->method' ); - + if( isset( $custom_carriers[ $method ] ) && !empty( $custom_carriers[ $method ] ) ) { $carrier = $custom_carriers[ $method ]; } else { @@ -437,7 +437,7 @@ function mp_countries() { * * @param array $countries The default countries. */ - return apply_filters( 'mp_countries', $countries ); + return apply_filters( 'mp_countries', $countries ); } endif; @@ -1376,7 +1376,7 @@ function mp_get_store_caps() { if( $cap == "read" ) { continue; } - + $store_caps[ $cap ] = $cap; } } @@ -1402,72 +1402,9 @@ function mp_get_single_site_cart() { } } -if ( ! function_exists( 'mp_resize_image' ) ) { - /** - * @param $image_id - * @param $image_url - * @param string $size - * - * @return mixed|void - */ - function mp_resize_image( $image_id, $image_url, $size = 'thumbnail' ) { - $img_path = get_attached_file($image_id); - - $image = wp_get_image_editor( $img_path ); - - if ( ! is_wp_error( $image ) ) { - if ( is_array( $size ) ) { - $size_data = $size; - } else { - // Get the image sizes from options - $size_data = array( - get_option( $size . '_size_w' ), - get_option( $size . '_size_h' ), - ); - } - //build the path name, and try to check if - $filename_data = pathinfo( $image_url ); - $upload_dir = wp_upload_dir(); - $image_path = $upload_dir['path'] . '/' . $filename_data['filename'] . '-' . $size_data[0] . 'x' . $size_data[1] . '.' . $filename_data['extension']; - $image_url = str_replace( $upload_dir['path'], $upload_dir['url'], $image_path ); - if ( file_exists( $image_path ) ) { - //we will check the time of this image - $cache_time = apply_filters( 'mp_image_resize_cache_duration', 3 ); - if ( strtotime( '+' . $cache_time . ' days', filemtime( $image_path ) ) <= time() ) { - unlink( $image_path ); - } - } - - if ( ! file_exists( $image_path ) ) { - $is_crop = false; - if ( $size == 'thumbnail' ) { - $is_crop = array( 'left', 'top' ); - } - $is_crop = apply_filters( 'mp_image_crop_position', $is_crop, $image, $image_path, $image_url, $size ); - $image->resize( $size_data[0], $size_data[1], $is_crop ); - $image->save( $image_path ); - } - - $image = apply_filters( 'image_downsize', array( - $image_url, - $size_data[0], - $size_data[1] - ), $image_id, array( $size_data[0], $size_data[1] ) ); - - return apply_filters( 'mp_image_after_resize', $image ); - } - - return false; - } -} - -if ( ! function_exists( 'mp_get_the_thumbnail' ) ) { - -} - if (! function_exists( 'mp_array_column' ) ) { function mp_array_column( array $input, $columnKey, $indexKey = null ) { - + if( function_exists( 'array_column' ) ){ return array_column( $input, $columnKey, $indexKey ); } diff --git a/includes/common/template-functions.php b/includes/common/template-functions.php index c518dae8..52d3ac42 100644 --- a/includes/common/template-functions.php +++ b/includes/common/template-functions.php @@ -634,41 +634,41 @@ function _mp_products_html( $view, $custom_query, $related_products = false ) { $html .= '
- +
' . $img . '
- +
- +

' . $product->title( false ) . '

' . $product->display_price( false ) . ' ' . $mp_product_list_content . ' - +
' . $pinit . ' ' . $fb . ' ' . $twitter . '
- +
' . $product->buy_button( false, 'list', array(), true ) . ' ' . apply_filters( 'mp_product_list_meta', '', $product->ID ) . '
- +
- +
' . $product->title( false ) . ' was last modified: by ' . get_the_author_meta( 'display_name' ) . '
- +
'; @@ -987,13 +987,13 @@ function mp_format_currency( if ( empty( $currency ) ) { $currency = ( is_multisite() && mp_cart()->is_global ) ? mp_get_network_setting( 'global_currency', 'USD' ) : mp_get_setting( 'currency', 'USD' ); } - + $curr_symbol_position = mp_get_setting( 'curr_symbol_position' ); // If multisite use global currency symbol if( is_multisite() && mp_cart()->is_global ) { $global_currency = mp_get_network_setting( 'global_curr_symbol_position' ); - + // Check if we have global currency symbol if( ! empty( $global_currency ) ) { $curr_symbol_position = $global_currency; @@ -1758,7 +1758,7 @@ function mp_tax_rate( $echo = false ) { } break; } - + //$tax_rate = (float) mp_get_setting( 'tax->rate' ); if ( empty( $tax_rate ) ) { @@ -2120,7 +2120,7 @@ function mp_order_lookup_form( $args = array() ) { } $guest_email = ''; - + //Add guest email field if( ! is_user_logged_in() ){ $guest_email = '
'; @@ -2281,7 +2281,7 @@ function mp_featured_products() { // force featured to true to filter only featured in mp_list_products() $args['echo'] = false; $args['nopaging'] = false; - $args['featured'] = true; + $args['featured'] = true; $content = mp_list_products($args); /** @@ -2373,7 +2373,7 @@ function mp_popular_products( $echo = true, $num = 5 ) { if ( ! function_exists( 'mp_product' ) ) { /* * Displays a single product according to preference - * + * * @param bool $echo Optional, whether to echo or return * @param int $product_id the ID of the product to display. Optional if in the loop. * @param bool $title Whether to display the title @@ -2468,7 +2468,7 @@ function mp_product( }); }"; } - + $lightbox_code = apply_filters( 'mp_single_product_image_lightbox', $lightbox_code ); $post = get_post(); @@ -2505,9 +2505,8 @@ function mp_product( if ( preg_match( '/http:|https:/', $value ) ) { $img_url = array( esc_url( $value ) ); } else { - //$img_url = wp_get_attachment_image_src( $value, $size ); + $img_url = wp_get_attachment_image_src( $value, $size ); $original_image = wp_get_attachment_image_src( $value, 'full' ); - $img_url = mp_resize_image( $value, $original_image[0], $size ); } $return .= '
  • '; @@ -2518,8 +2517,8 @@ function mp_product( if ( preg_match( '/http:|https:/', $values[0] ) ) { $img_url = array( esc_url( $values[0] ) ); } else { + $img_url = wp_get_attachment_image_src( $values[0], $size ); $original_image = wp_get_attachment_image_src( $values[0], 'full' ); - $img_url = mp_resize_image( $values[0], $original_image[0], $size ); } $return .= '
  • '; @@ -2687,8 +2686,8 @@ function mp_product( } $return .= ' - - + + '; /** @@ -2901,7 +2900,7 @@ function mp_products_filter( $hidden = false, $per_page = null, $query = null )
    - +
    @@ -2915,10 +2914,10 @@ function mp_products_filter( $hidden = false, $per_page = null, $query = null )
    - + ' . ( ( is_null( $per_page ) ) ? '' : '' ) . ' - +
    '; diff --git a/marketpress.php b/marketpress.php index c316df8a..6427754e 100644 --- a/marketpress.php +++ b/marketpress.php @@ -3,7 +3,7 @@ * Plugin Name: MarketPress * Plugin URI: https://premium.wpmudev.org/project/e-commerce/ * Description: The complete WordPress ecommerce plugin - works perfectly with BuddyPress and Multisite too to create a social marketplace, where you can take a percentage! Activate the plugin, adjust your settings then add some products to your store. - * Version: 3.3.0 + * Version: 3.4.0 * Author: WPMU DEV * Author URI: http://premium.wpmudev.org * Text Domain: mp @@ -29,7 +29,7 @@ Plugin Authors: Marko Miljus (Incsub), Aaron Edwards (Incsub), Hoang Ngo (Incsub), Jonathan Cowher (Incsub), Ricardo Freitas (Incsub), Cvetan Cvetanov (Incsub), Julien Zerbib (Incsub), Sabri Bouchaala (Incsub), Emmanuel Laborin (Incsub) */ -define( 'MP_VERSION', '3.3.0' ); +define( 'MP_VERSION', '3.4.0' ); /** * Main class Marketpress. @@ -991,6 +991,13 @@ public function includes() { */ public function __call( $method, $args ) { switch ( $method ) { + case 'mp_resize_image' : + _deprecated_function( $method, '3.4', 'wp_get_attachment_image_src' ); + unset( $args[1] ); + + return call_user_func_array( 'wp_get_attachment_image_src', $args ); + break; + case 'display_currency' : _deprecated_function( $method, '3.0', 'mp_display_currency' ); diff --git a/dev-readme.txt b/readme.txt similarity index 98% rename from dev-readme.txt rename to readme.txt index 5bdab404..adabb30f 100644 --- a/dev-readme.txt +++ b/readme.txt @@ -3,8 +3,8 @@ Contributors: WPMUDEV Tags: E-commerce, ecommerce, storefront, sell, store, shopping, cart, payment gateways, digital downloads, online store Requires at least: 3.7 Requires PHP: 5.2 -Tested up to: 4.9.6 -Stable tag: trunk +Tested up to: 5.2 +Stable tag: 3.4.0 Full-power ecommerce marketplace for WordPress and Multisite. 100% free and no extensions required. @@ -20,7 +20,7 @@ No need to spend hundreds of dollars purchasing add-ons or special licenses. Mar [youtube http://www.youtube.com/watch?v=4QX1P7e-9dw&hd=1] -= Features = += Features = Setting up your own online store couldn't be easier with MarketPress. Features include: @@ -52,7 +52,7 @@ Setting up your own online store couldn't be easier with MarketPress. Features i * Checkout without having to be a site user -= Customize Without Code = += Customize Without Code = MarketPress is built to work flawlessly with any well-coded WordPress theme. @@ -62,7 +62,7 @@ MarketPress is built to work flawlessly with any well-coded WordPress theme. Or go download one of our Upfront themes with built-in MarketPress styles and a powerful drag-and-drop front end visual theme editor. -= Multisite and BuddyPress Compatible = += Multisite and BuddyPress Compatible = Set up your own eBay or Etsy-style network of stores and take a percentage of each sale. @@ -98,7 +98,7 @@ Ship anywhere in the world with confidence. Use flat rate shipping or cater to s = Google Analytics = MarketPress is both Google Universal Analytics and Google Analytics eCommerce compatible. Track sales and site activity and grow your business - + = Social Sharing = Go viral with the included Pinterest, Facebook and Twitter share buttons. MarketPress makes it easy for your customers to share your products with their friends and family. @@ -151,6 +151,9 @@ We provide comprehensive and guaranteed support on the here »." +msgstr "" + +#: includes/public/class-mp-public.php:421 +#: includes/public/class-mp-short-codes.php:142 +msgid "Please enter a value greater than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:420 +#: includes/public/class-mp-short-codes.php:141 +msgid "Please enter a value less than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:419 +#: includes/public/class-mp-short-codes.php:140 +msgid "Please enter a value between {0} and {1}." +msgstr "" + +#: includes/public/class-mp-public.php:418 +#: includes/public/class-mp-short-codes.php:139 +msgid "Please enter a value between {0} and {1} characters long." +msgstr "" + +#: includes/public/class-mp-public.php:417 +#: includes/public/class-mp-short-codes.php:138 +msgid "Please enter at least {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:416 +#: includes/public/class-mp-short-codes.php:137 +msgid "Please enter no more than {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:415 +#: includes/public/class-mp-short-codes.php:136 +msgid "Please enter a value with a valid extension." +msgstr "" + +#: includes/public/class-mp-public.php:414 +#: includes/public/class-mp-short-codes.php:135 +msgid "Please enter the same value again." +msgstr "" + +#: includes/public/class-mp-public.php:413 +#: includes/public/class-mp-short-codes.php:134 +msgid "Please enter a valid credit card number." +msgstr "" + +#: includes/public/class-mp-public.php:412 +#: includes/public/class-mp-short-codes.php:133 +msgid "Please enter only digits." +msgstr "" + +#: includes/public/class-mp-public.php:411 +#: includes/public/class-mp-short-codes.php:132 +msgid "Please enter a valid number." +msgstr "" + +#: includes/public/class-mp-public.php:410 +#: includes/public/class-mp-short-codes.php:131 +msgid "Please enter a valid date (ISO)." +msgstr "" + +#: includes/public/class-mp-public.php:409 +#: includes/public/class-mp-short-codes.php:130 +msgid "Please enter a valid date." +msgstr "" + +#: includes/public/class-mp-public.php:408 +#: includes/public/class-mp-short-codes.php:129 +msgid "Please enter a valid URL." +msgstr "" + +#: includes/public/class-mp-public.php:406 +#: includes/public/class-mp-short-codes.php:127 +msgid "Please fix this field." +msgstr "" + +#: includes/public/class-mp-checkout.php:1287 +#: includes/public/class-mp-public.php:405 +#: includes/public/class-mp-short-codes.php:126 +msgid "This field is required." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:810 +msgid "None - Without Special CSS-styles" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:809 +msgid "Default - Using Default CSS-styles" +msgstr "" + +#: marketpress.php:739 +msgid "Enable multiple downloads per product" +msgstr "" + +#: marketpress.php:738 +msgid "Multiple Downloads" +msgstr "" + +#: includes/public/class-mp-checkout.php:715 +msgid "Invalid Zip Code" +msgstr "" + +#: includes/common/template-functions.php:2126 +msgid "Guest Email" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:195 +msgid "There was a problem finalizing your purchase. Please re-enter your credit card information and try again" +msgstr "" + +#: includes/common/class-mp-cart.php:565 includes/common/class-mp-order.php:600 +#: includes/common/helpers.php:111 +msgid "Download %1$s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:331 +msgid "Export products to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:328 +msgid "The import process uses the WordPress importer plugin." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:326 +msgid "Import / Export Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:325 +msgid "Export settings to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:324 +msgid "Import configuration" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:320 +msgid "Use the text below to export to a new installation. Or paste in the new configuration to import." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:318 +msgid "Import / Export Settings" +msgstr "" + +#. translators: URL to wp-admin/import.php +#: includes/admin/store-settings/class-mp-store-settings-import.php:266 +msgid "This importer is not installed. Please install importers from the main site." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:261 +msgid "Install Now" +msgstr "تثبيت الآن" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:260 +msgid "Install %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:240 +msgid "Run Importer" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:239 +msgid "Run %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:258 +msgid "Import/Export" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1199 +msgid "Requires Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:737 +msgid "Optionally limit the user to some categories" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:671 +msgid "Should this coupon only be available to logged in users?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:670 +msgid "Require Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:655 +msgid "Mimimum number of products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:653 +msgid "Enter the minimum number of products in the cart that this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:648 +msgid "Can this coupon be limited to a number of products in the cart?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:334 +msgid "Add all values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:265 +msgid "Set as default variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:154 +msgid "Set Default" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:150 +msgid "More Info" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:40 +msgid "MarketPress - Quick Setup" +msgstr "" + +#: includes/public/class-mp-checkout.php:1399 +msgid "Proceed to checkout and create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1241 +#: includes/public/class-mp-checkout.php:1245 +msgid "Register account" +msgstr "" + +#: includes/public/class-mp-checkout.php:1233 +msgid "Register as customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:765 +msgid "

    Oops!

    Looks like you haven't added anything your cart. Let's go shopping!

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:763 +msgid "

    Oops!

    The cart is disabled.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing Information" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:214 +msgid "Global Currency" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:198 +msgid "Global Store Currency" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:507 +msgid "There are no shipping services available for this type of package in your location." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:168 +msgid "Using this USPS Shipping calculator requires requesting an Ecommerce API Username and Password. Get your free set of credentials here ». The password is no longer used for the API, just the username which you should enter below. The USPS test site has not yet been updated and currently doesn't work - you should just request activating your credentials with USPS and go live." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:339 +msgid "ZIP Code" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:334 +msgid "Last name" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:333 +msgid "First name" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:150 +msgid "These are the manual payment instructions to display on the order confirmation screen. TOTAL will be replaced with the order total and ORDERID will be replaced with Order ID." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:240 +msgid "You must login to Authorize.net merchant dashboard to obtain the API login ID and API transaction key. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:327 +msgid "
    1. Set the \"Return Method\" within Site Management to Header Redirect and set the \"Return URL\" to %s
    2. Set your notifications url to %s
    " +msgstr "" + +#: includes/common/data.php:191 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Also, digital downloads included in your order are now ready to be downloaded. Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:185 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order is now available to download! Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:184 +msgid "Your Order Is Ready To Be Downloaded! (ORDERID)" +msgstr "" + +#: includes/common/data.php:179 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:173 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received, your digital goods are ready to be downloaded and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:167 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received and your digital goods are ready to be downloaded. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:160 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +" Your order has been received, and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information: \n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/class-mp-product.php:638 +msgid "You can not add more items to cart." +msgstr "" + +#: includes/common/class-mp-product.php:635 +msgid "You can only add {0} to cart." +msgstr "" + +#: includes/common/class-mp-product.php:625 +msgid "This product has an order limit of %d." +msgstr "" + +#: includes/common/class-mp-order.php:1454 +msgid "Shipped: tracking code: %s" +msgstr "" + +#: includes/common/class-mp-order.php:1000 +#: includes/common/class-mp-order.php:1012 +msgid "Finished" +msgstr "" + +#: includes/common/class-mp-order.php:858 +msgid "Contact Details" +msgstr "" + +#: includes/common/class-mp-order.php:339 includes/common/data.php:155 +msgid "" +"A new order (ORDERID) was created in your store:\n" +"\n" +" ORDERINFOSKU\n" +"\n" +" SHIPPINGINFO\n" +"\n" +" PAYMENTINFO\n" +"\n" +msgstr "\n" + +#: includes/common/class-mp-cart.php:1858 +msgid "Add again" +msgstr "" + +#: includes/common/class-mp-cart.php:1852 +msgid "was removed from Shopping Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1242 +#: includes/public/class-mp-short-codes.php:160 +msgid "Cart update notice: this item has a limit per order or you have reached the stock limit." +msgstr "" + +#: includes/admin/widgets/product-list.php:235 +msgid "Show Only Featured Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:533 +msgid "If enabled, users won't be able to filter products per category and/or to order by release date/name/price." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:531 +msgid "Hide Products Filter?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:353 +msgid "Notification to registration email instead of billing email?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:322 +msgid "Order Shipped - Mixed orders (with both digital and physical products)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:289 +msgid "Order Shipped - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:224 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:194 +msgid "New Order - Mixed" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:161 +msgid "New Order - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:115 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:243 +msgid "Mixed orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:110 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:238 +msgid "Digital downloads orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:105 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:233 +msgid "Physical orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:96 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed.
    For orders placed with manual payment, emails set here will be overriden by the one configured in manual payments settings, under payments settings page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:89 +msgid "Customer Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:47 +msgid "Admin Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:566 +msgid "Only contact details" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:565 +msgid "Full billing info" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:561 +msgid "Details Collection" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:548 +msgid "Digital Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:515 +msgid "Apply Tax to Digital Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:236 +msgid "product (default)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:231 +msgid "If you are experiencing conflicts with other e-commerce plugins change this setting. This will change the internal post type of all your products. Please note that changing this option may break 3rd party themes or plugins." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1203 +msgid "Hide details" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1202 +msgid "Show all changes" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1184 +msgid "Version %s" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1161 +msgid "Current" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1131 +msgid "%s changelog" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:952 +msgid "We did not find any data for this plugin or theme..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:285 +msgid "Activate WPMU DEV Dashboard" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:279 +msgid "Just one more step - activate the WPMU DEV Dashboard plugin and you're all done!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:277 +msgid "Important updates are available for your WPMU DEV plugins/themes. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:273 +msgid "Just one more step to enable updates and support for %s!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:271 +msgid "Important updates are available for %s. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:264 +msgid "activate" +msgstr "" + +#: includes/admin/class-mp-admin.php:398 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:248 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:289 +msgid "Dismiss" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:247 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:288 +msgid "Saving..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:244 +msgid "Install Plugin" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:238 +msgid "Almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:236 +msgid "Important updates are available for your WPMU DEV plugins/themes. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:232 +msgid "%s is almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:230 +msgid "Important updates are available for %s. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:223 +msgid "install" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1428 +msgid "Sets the number of Tags to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1289 +msgid "How many products to display in the product list if \"paginate\" is set to false." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:739 +#: includes/admin/class-mp-shortcode-builder.php:906 +#: includes/admin/class-mp-shortcode-builder.php:1350 +msgid "Grid" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:735 +#: includes/admin/class-mp-shortcode-builder.php:902 +#: includes/admin/class-mp-shortcode-builder.php:1346 +msgid "Products will be displayed as list or grid." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:206 +msgid "Display a cloud or list of your global product tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:205 +msgid "Display a list of your global categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:204 +msgid "Display a list or grid of your global products." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:181 +msgid "Display a list of featured products." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1451 +msgid "Is Featured?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1444 +msgid "Featured Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:581 +#: includes/admin/class-mp-products-admin.php:1580 +msgid "% discount" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:579 +msgid "OR" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:460 +#: includes/admin/class-mp-products-admin.php:586 +#: includes/admin/widgets/product-list.php:217 +msgid "Featured" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:536 +#: includes/admin/class-mp-orders-admin.php:538 +msgid "Tracking Link" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:508 +msgid "Shipping Tax" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:356 +msgid "Shipping Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:352 +msgid "Taxes Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:349 +msgid "Products Total" +msgstr "" + +#: includes/admin/class-mp-ajax.php:366 +msgid "Oops! You entered an invalid username/email and or password." +msgstr "" + +#: includes/admin/class-mp-ajax.php:254 +msgid "Percentage Discount" +msgstr "" + +#: includes/admin/class-mp-ajax.php:234 +msgid "Limit the Amount of Items per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:214 +msgid "Unused Attributes" +msgstr "" + +#: includes/admin/class-mp-admin.php:82 +msgid "Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-admin.php:79 +msgid "MarketPress setup is not complete! Once you've completed this quick setup wizard you'll have a fully working online store - exciting! " +msgstr "" + +#: marketpress.php:263 +msgctxt "mp_order" +msgid "Add New" +msgstr "" + +#: marketpress.php:184 +msgctxt "product_tag" +msgid "Product Tag" +msgstr "" + +#: marketpress.php:183 +msgctxt "product_tag" +msgid "Product Tags" +msgstr "" + +#: marketpress.php:150 +msgctxt "product_category" +msgid "Product Category" +msgstr "" + +#: marketpress.php:149 +msgctxt "product_category" +msgid "Product Categories" +msgstr "" + +#. Author URI of the plugin/theme +msgid "http://premium.wpmudev.org" +msgstr "" + +#: marketpress.php:729 +msgid "Invoice PDF" +msgstr "" + +#: marketpress.php:712 +msgid "Grant access to themes and gateways depending on the user's Pro Site level" +msgstr "" + +#: marketpress.php:711 +msgid "Pro Sites" +msgstr "" + +#: marketpress.php:703 +msgid "Offer and accept coupon codes" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:687 +msgid "Install %s Pages" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:682 +msgid "Welcome to %s – Install pages required by the plugin automatically." +msgstr "" + +#: marketpress.php:668 +msgid "Your pages were created successfully." +msgstr "" + +#: marketpress.php:436 +msgid "Add a Product" +msgstr "" + +#: marketpress.php:271 +msgid "Parent Order" +msgstr "" + +#: marketpress.php:270 +msgid "No orders found in trash" +msgstr "" + +#: marketpress.php:269 +msgid "No orders found" +msgstr "" + +#: marketpress.php:265 +msgid "Edit Order" +msgstr "" + +#: marketpress.php:264 +msgid "Add New Order" +msgstr "" + +#: marketpress.php:220 marketpress.php:221 +msgid "Add New Product" +msgstr "" + +#: marketpress.php:197 +msgid "No product tags found" +msgstr "" + +#: marketpress.php:196 +msgid "Choose from the most used product tags" +msgstr "" + +#: marketpress.php:195 +msgid "Add or remove product tags" +msgstr "" + +#: marketpress.php:194 +msgid "Separate product tags with commas" +msgstr "" + +#: marketpress.php:193 +msgid "Search Product Tags" +msgstr "" + +#: marketpress.php:192 +msgid "Parent Product Tag:" +msgstr "" + +#: marketpress.php:191 +msgid "Parent Product Tag" +msgstr "" + +#: marketpress.php:190 +msgid "New Product Tag Name" +msgstr "" + +#: marketpress.php:189 +msgid "Add New Product Tag" +msgstr "" + +#: marketpress.php:188 +msgid "Update Product Tag" +msgstr "" + +#: marketpress.php:187 +msgid "View Product Tag" +msgstr "" + +#: marketpress.php:186 +msgid "Edit Product Tag" +msgstr "" + +#: marketpress.php:185 +msgid "All Product Tags" +msgstr "" + +#: marketpress.php:163 +msgid "No product categories found" +msgstr "" + +#: marketpress.php:162 +msgid "Choose from the most used product categories" +msgstr "" + +#: marketpress.php:161 +msgid "Add or remove product categories" +msgstr "" + +#: marketpress.php:160 +msgid "Separate product categories with commas" +msgstr "" + +#: marketpress.php:159 +msgid "Search Product Categories" +msgstr "" + +#: marketpress.php:158 +msgid "Parent Product Category:" +msgstr "" + +#: marketpress.php:157 +msgid "Parent Product Category" +msgstr "" + +#: marketpress.php:156 +msgid "New Product Category Name" +msgstr "" + +#: marketpress.php:155 +msgid "Add New Product Category" +msgstr "" + +#: marketpress.php:154 +msgid "Update Product Category" +msgstr "" + +#: marketpress.php:153 +msgid "View Product Category" +msgstr "" + +#: marketpress.php:152 +msgid "Edit Product Category" +msgstr "" + +#: marketpress.php:151 +msgid "All Product Categories" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Please fix the %s1 and then try submitting the form again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Oops! The form contains %s1 which %s2 been highlighted below." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:660 +msgid "have" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:659 +msgid "has" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:651 +msgid "Value must be less than {0}" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:650 +msgid "Please enter only letters and numbers" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:539 +msgid "Due to prolonged inactivity on this page, one or more settings were not saved. Please try again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:535 +msgid "Settings Saved" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-user-select.php:22 +msgid "Select Some Users" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-section.php:18 +msgid "Section Title" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:425 +msgid "Are you sure you want to delete this?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:30 +msgid "Add Row" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-post-select.php:24 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-taxonomy-select.php:22 +msgid "Select Posts" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:210 +msgid "Add Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:129 +msgid "Select the image that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:93 +msgid "Select image(s) that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:79 +msgid "Select the image that you would like to use for this variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:48 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:82 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:68 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:132 +msgid "Select Image" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:31 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:160 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:168 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:19 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:115 +msgid "Select File" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:30 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:18 +msgid "Select the file that you would like to use." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:357 +msgid "Create Variations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:356 +msgid "Add Another Variant" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Insert a value and press ENTER" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "(e.g. White, Grey, Red etc.)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Variation Values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:333 +msgid "Or create new variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "(e.g. Color)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:303 +msgid "You are about to delete selected variants.
    If you want to continue please confirm." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:302 +msgid "Confirmation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:290 +msgid "Insert quantity available. Empty for unlimited." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:281 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:294 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:307 +msgid "Cancel" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:280 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:293 +msgid "Update" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:277 +msgid "Insert the price i.e. 25 or 25.50" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:115 +msgid "Img." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:85 +msgid "Add New Variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:79 +msgid "Delete Variants" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:78 +msgid "Update Prices" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:77 +msgid "Update Inventory" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:76 +msgid "Update Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:75 +msgid "Bulk Actions" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:73 +msgid "Select bulk action" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:196 +msgid "Configure Store" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:195 +msgid "Configure shipping rates, emails and your store's appearance. " +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:190 +msgid "Add Product" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:189 +msgid "Add your first product for sale and get familiar with adding products." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:184 +msgid "Your store is almost ready for its first customers, but first it needs some products. Get started by adding products below, or jump straight into further configuring your store’s settings." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:183 +msgid "Woohoo! Your online store is up and running." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:160 +msgid "Finish Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:124 +msgid "And what metric system do you want to use?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:113 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:142 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:159 +msgid "Back" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:109 +msgid "Do you want to apply tax for your products? You can customize this for each product and variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:105 +msgid "What currency do you want to sell with?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:93 +msgid "And, which countries do you want to sell to?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:89 +msgid "Where is your online store based?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:80 +msgid "Payment Gateway" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:79 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:123 +msgid "Metric System" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:78 +msgid "Currency & Tax" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:77 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:88 +msgid "Locations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:70 +msgid "Choose where you want to sell your stuff and what currency. Easy!" +msgstr "" + +#: includes/public/class-mp-checkout.php:1400 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:58 +msgid "Continue" +msgstr "" + +#: includes/admin/class-mp-admin.php:83 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:53 +msgid "Skip this step, I'll do this manually" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:49 +msgid "Install store pages" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:44 +msgid "Once you've completed this quick setup wizard you'll have a fully working online store - exciting! Start
    by creating the default store pages for the online store such as the cart, checkout and store pages." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:42 +msgid "MarketPress adds a full online store to your website, with heaps of configuration options and addons
    to suit your needs. It's really easy to get going, and only takes a few minutes to setup!" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:41 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:69 +msgid "Welcome to MarketPress - Quick Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-advanced-select.php:23 +msgid "Select Some Options" +msgstr "" + +#: includes/wpmudev-metaboxes/class-wpmudev-field.php:694 +msgid "You must the WPMUDEV_Field::display() method in your form field class" +msgstr "" + +#: includes/public/class-mp-short-codes.php:636 +msgid "Only %s left in stock..." +msgstr "" + +#: includes/public/class-mp-short-codes.php:633 +msgid "Unlimited stock" +msgstr "" + +#: includes/public/class-mp-short-codes.php:430 +msgid "product_id must be defined" +msgstr "" + +#: includes/public/class-mp-checkout.php:1250 +msgid "An account with this username already exists" +msgstr "" + +#: includes/public/class-mp-checkout.php:1394 +msgid "Continue as Guest" +msgstr "" + +#: includes/public/class-mp-checkout.php:1393 +msgid "Proceed to checkout and you'll have an opportunity to create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1392 +#: includes/public/class-mp-checkout.php:1398 +msgid "First-time customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1386 +msgid "Login" +msgstr "" + +#: includes/public/class-mp-checkout.php:1379 +msgid "E-Mail Address/Username" +msgstr "" + +#: includes/public/class-mp-checkout.php:1377 +msgid "Sign in to speed up the checkout process." +msgstr "" + +#: includes/public/class-mp-checkout.php:1376 +msgid "Have an account?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1297 +msgid "Shipping address different than billing?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1184 +msgid "There are no available gateways to process this payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1160 +msgid "Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:1123 +msgid "Oops! An error occurred while processing your payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1051 +msgid "Next Step »" +msgstr "" + +#: includes/public/class-mp-checkout.php:1045 +msgid "« Previous Step" +msgstr "" + +#: includes/public/class-mp-checkout.php:873 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:657 +msgid "error" +msgstr "" + +#: includes/public/class-mp-checkout.php:872 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:658 +msgid "errors" +msgstr "" + +#: includes/public/class-mp-checkout.php:871 +msgid "

    Oops! We found %d %s in the form below.

    Fields that have errors are highlighted in red below. Entering into a field will reveal the actual error that occurred.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:870 +msgid "Please enter a valid first and last name" +msgstr "" + +#: includes/public/class-mp-checkout.php:869 +msgid " Please enter a valid card security code" +msgstr "" + +#: includes/public/class-mp-checkout.php:868 +msgid "Please enter a valid card expiration" +msgstr "" + +#: includes/public/class-mp-checkout.php:773 +msgid "Javascript is required in order to checkout. Please enable Javascript in your browser and then refresh this page." +msgstr "" + +#: includes/public/class-mp-checkout.php:588 +msgid "An unknown error occurred. Please try again." +msgstr "" + +#: includes/public/class-mp-checkout.php:386 +msgid "Town/City" +msgstr "" + +#: includes/public/class-mp-checkout.php:380 +msgid "Apartment, suite, unit, building, floor, etc" +msgstr "شقة، جناح، وحدة، بناء, طابق, الخ" + +#: includes/public/class-mp-checkout.php:376 +msgid "Address Line 2" +msgstr "" + +#: includes/public/class-mp-checkout.php:363 +msgid "Address Line 1" +msgstr "" + +#: includes/common/class-mp-order.php:770 +#: includes/public/class-mp-checkout.php:354 +msgid "Company" +msgstr "" + +#: includes/public/class-mp-checkout.php:330 +msgid "Last" +msgstr "" + +#: includes/public/class-mp-checkout.php:321 +msgid "First" +msgstr "" + +#: includes/public/class-mp-checkout.php:284 +msgid "State/Province" +msgstr "" + +#: includes/public/class-mp-checkout.php:83 +msgid "Review Order/Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing/Shipping Address" +msgstr "" + +#: includes/public/class-mp-checkout.php:80 +msgid "Login/Register" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:530 +msgid "Marketplace" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:523 +msgid "Global Marketplace Pages" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +msgid "Store Network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +#: includes/multisite/class-mp-admin-multisite.php:494 +msgid "Store Network Settings" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:440 +msgid "Set theme access permissions for network stores. For a custom css theme, save your css file with the MarketPress Theme: NAME header in the /marketpress/ui/themes/ folder and it will appear in this list so you may select it." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:361 +msgid "Choose a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:336 +msgid "%d products get indexed" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:285 +msgid "Product Indexer" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:281 +msgid "Please hold on..." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:280 +msgid "Index Products" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:279 +msgid "%d products have been indexed in whole network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:182 +msgid "Enable Global Shopping Cart?" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:178 +msgid "Limit Global Widgets/Shortcodes To Main Blog?" +msgstr "" + +#: includes/common/template-functions.php:2802 +#: includes/multisite/template-functions.php:355 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:97 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:114 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:143 +msgid "Next" +msgstr "" + +#: includes/common/template-functions.php:2801 +#: includes/multisite/template-functions.php:354 +msgid "Prev" +msgstr "" + +#: includes/common/template-functions.php:2597 +msgid "Tagged in " +msgstr "" + +#: includes/common/template-functions.php:2196 +#: includes/common/template-functions.php:2202 +#: includes/common/template-functions.php:2214 +#: includes/common/template-functions.php:2217 +msgid "Oops! We couldn't locate any orders matching that order number. Please verify the order number and try again." +msgstr "" + +#: includes/common/template-functions.php:2138 +msgid "Look Up" +msgstr "" + +#: includes/common/template-functions.php:1423 +msgid "Please choose a shipping method" +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "If you have your order ID you can look it up using the form below." +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "Order Search" +msgstr "" + +#: includes/common/template-functions.php:910 +#: includes/public/class-mp-checkout.php:1440 +msgid "Cart" +msgstr "" + +#: includes/common/template-functions.php:895 +msgid "[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:887 +msgid "[mp_global_categories_list]" +msgstr "" + +#: includes/common/template-functions.php:880 +msgid "" +"Welcome to our market place!\n" +"\n" +"Check out our network of products:\n" +"\n" +"[mp_list_global_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_global_categories_list]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:879 +msgid "Global Store" +msgstr "" + +#: includes/common/template-functions.php:873 +msgid "" +"Welcome to our online store! Feel free to browse around:\n" +"\n" +"[mp_store_navigation]\n" +"\n" +"Check out our most popular products:\n" +"\n" +"[mp_popular_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_list_categories]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_tag_cloud]" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:127 +msgid "If cart weight is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:126 +msgid "Cart Weight" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:222 +msgid "Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:206 +msgid "Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:196 +msgid "Retail Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:195 +msgid "Online Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:193 +msgid "Rates Request Type" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:189 +msgid "Maximum Weight Per Package" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:195 +#: includes/common/shipping-modules/mp-usps.php:236 +msgid "Enter your standard box sizes as LengthxWidthxHeight (e.g. 12x8x6) For each box defined enter the maximum weight it can contain. Note: the shipping prices this plugin calculates are estimates. If they are consistently too low or too high, please check that the list of boxes above and the product weights are accurate and complete." +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:187 +msgid "Handling Charge Per Box Shipped" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:176 +#: includes/common/shipping-modules/mp-ups.php:181 +msgid "Offered Services" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:165 +msgid "Shipper Number" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:151 +msgid "User ID" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:144 +msgid "Developer Kit Access Key" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:140 +msgid "Use Sandbox Mode?" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:123 +msgid "In order to use UPS, you will need a UPS Developer Kit access key and the UPS user ID and password associated with the access key. Set these up for free here. If this information is missing or incorrect, an error will appear during the checkout process and the buyer will not be able to complete the transaction." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:112 +msgid "If cart total is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:111 +msgid "Cart Total" +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:95 +#: includes/common/shipping-modules/mp-weight-rate.php:111 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Don't worry about sorting as this will be done automatically upon saving." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:170 +msgid "Method Title (visible for clients)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:409 +#: includes/common/shipping-modules/mp-ups.php:216 +#: includes/common/shipping-modules/mp-usps.php:251 +msgid "Max Weight (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:402 +#: includes/common/shipping-modules/mp-ups.php:209 +#: includes/common/shipping-modules/mp-usps.php:247 +msgid "Size (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:387 +msgid "Enter your standard box sizes as LengthxWidthxHeight ( 12x8x6 ) For each box defined enter the maximum weight it can contain. Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:361 +#: includes/common/shipping-modules/mp-usps.php:229 +msgid "Handling Charge per International Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:353 +msgid "International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:339 +#: includes/common/shipping-modules/mp-usps.php:213 +msgid "Handling Charge per Domestic Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:331 +msgid "Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:321 +msgid "When checked the customer can chose Residential or Commercial delivery with Residential the default. Unchecked it's only Residential rates." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:320 +msgid "Allow Commercial Delivery?" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:315 +msgid "Fedex 10kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:314 +msgid "Fedex 25kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:313 +msgid "Fedex Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:312 +msgid "Fedex Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:311 +msgid "Fedex Pak" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:310 +msgid "Fedex Tube" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:306 +msgid "Default Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:294 +msgid "Dropoff Type" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:290 +msgid "Meter ID" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:134 +msgid "This is a residential address" +msgstr "هذا عنوان سكني" + +#: includes/common/payment-gateways/wepay.php:283 +msgid "There was an error processing your card: \"%s\". Please check your credit card info and try again." +msgstr "كان هناك خطأ في معالجة بطاقتك: \"%s\". يرجى التحقق من معلومات بطاقة الائتمان الخاصة بك وحاول مرة أخرى." + +#: includes/common/payment-gateways/wepay.php:121 +msgid "Wepay makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept cards directly on your site. You don't need a merchant account or gateway. WePay handles everything including storing cards. Credit cards go directly to WePay's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:385 +msgid "There was an error processing your card - \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:356 +msgid "%s Store Purchase - Order ID - %s, Email - %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:251 +msgid "Stripe makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept Visa, MasterCard, American Express, Discover, JCB, and Diners Club cards directly on your site. You don't need a merchant account or gateway. Stripe handles everything, including storing cards, subscriptions, and direct payouts to your bank account. Credit cards go directly to Stripe's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:192 +msgid "ZMW - Zambian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:191 +msgid "ZAR - South African Rand" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:190 +msgid "YER - Yemeni Rial" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:189 +msgid "XPF - Cfp Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:188 +msgid "XOF - West African Cfa Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:187 +msgid "XCD - East Caribbean Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:186 +msgid "XAF - Central African Cfa Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:185 +msgid "WST - Samoan Tala" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:184 +msgid "VUV - Vanuatu Vatu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:183 +msgid "VND - Vietnamese Đồng" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:182 +msgid "VEF - Venezuelan Bolívar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:181 +msgid "UZS - Uzbekistani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:180 +msgid "UYI - Uruguayan Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:178 +msgid "UGX - Ugandan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:177 +msgid "UAH - Ukrainian Hryvnia" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:176 +msgid "TZS - Tanzanian Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:175 +msgid "TWD - New Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:174 +msgid "TTD - Trinidad and Tobago Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:172 +msgid "TOP - Tongan Paʻanga" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:171 +msgid "TJS - Tajikistani Somoni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:169 +msgid "SZL - Swazi Lilangeni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:168 +msgid "SVC - Salvadoran Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:167 +msgid "STD - São Tomé and Príncipe Dobra" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:166 +msgid "SRD - Surinamese Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:165 +msgid "SOS - Somali Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:164 +msgid "SLL - Sierra Leonean Leone" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:163 +msgid "SHP - Saint Helenian Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:160 +msgid "SCR - Seychellois Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:159 +msgid "SBD - Solomon Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:157 +msgid "RWF - Rwandan Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:156 +msgid "RUB - Russian Ruble" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:155 +msgid "RSD - Serbian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:154 +msgid "RON - Romanian Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:153 +msgid "QAR - Qatari Riyal" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:152 +msgid "PYG - Paraguayan Guaraní*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:151 +msgid "PLN - Polish Złoty" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:150 +msgid "PKR - Pakistani Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:149 +msgid "PHP - Philippine Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:148 +msgid "PGK - Papua New Guinean Kina" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:147 +msgid "PEN - Peruvian Nuevo Sol*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:146 +msgid "PAB - Panamanian Balboa*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:144 +msgid "NPR - Nepalese Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:142 +msgid "NIO - Nicaraguan Córdoba*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:141 +msgid "NGN - Nigerian Naira" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:140 +msgid "NAD - Namibian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:139 +msgid "MZN - Mozambican Metical" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:137 +msgid "MXN - Mexican Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:136 +msgid "MWK - Malawian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:135 +msgid "MVR - Maldivian Rufiyaa" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:134 +msgid "MUR - Mauritian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:133 +msgid "MRO - Mauritanian Ouguiya" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:132 +msgid "MOP - Macanese Pataca" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:131 +msgid "MNT - Mongolian Tögrög" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:130 +msgid "MKD - Macedonian Denar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:129 +msgid "MGA - Malagasy Ariary" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:128 +msgid "MDL - Moldovan Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:126 +msgid "LVL - Latvian Lats" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:124 +msgid "LSL - Lesotho Loti" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:123 +msgid "LRD - Liberian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:122 +msgid "LKR - Sri Lankan Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:121 +msgid "LBP - Lebanese Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:120 +msgid "LAK - Lao Kip*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:119 +msgid "KZT - Kazakhstani Tenge" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:118 +msgid "KYD - Cayman Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:117 +msgid "KRW - South Korean Won" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:116 +msgid "KMF - Comorian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:115 +msgid "KHR - Cambodian Riel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:114 +msgid "KGS - Kyrgyzstani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:113 +msgid "KES - Kenyan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:111 +msgid "JMD - Jamaican Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:110 +msgid "ISK - Icelandic Króna" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:109 +msgid "INR - Indian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:108 +msgid "ILS - Israeli New Sheqel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:107 +msgid "IDR - Indonesian Rupiah" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:105 +msgid "HTG - Haitian Gourde" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:103 +msgid "HNL - Honduran Lempira*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:101 +msgid "GYD - Guyanese Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:100 +msgid "GTQ - Guatemalan Quetzal*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:99 +msgid "GNF - Guinean Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:98 +msgid "GMD - Gambian Dalasi" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:97 +msgid "GIP - Gibraltar Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:96 +msgid "GEL - Georgian Lari" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:94 +msgid "FKP - Falkland Islands Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:93 +msgid "FJD - Fijian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:91 +msgid "ETB - Ethiopian Birr" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:90 +msgid "EGP - Egyptian Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:89 +msgid "EEK - Estonian Kroon*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:88 +msgid "DZD - Algerian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:87 +msgid "DOP - Dominican Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:85 +msgid "DJF - Djiboutian Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:84 +msgid "CZK - Czech Koruna*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:83 +msgid "CVE - Cape Verdean Escudo*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:82 +msgid "CRC - Costa Rican Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:81 +msgid "COP - Colombian Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:80 +msgid "CNY - Chinese Renminbi Yuan" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:79 +msgid "CLP - Chilean Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:77 +msgid "CDF - Congolese Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:76 +msgid "CAD - Canadian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:75 +msgid "BZD - Belize Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:74 +msgid "BWP - Botswana Pula" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:73 +msgid "BSD - Bahamian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:72 +msgid "BRL - Brazilian Real*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:71 +msgid "BOB - Bolivian Boliviano*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:70 +msgid "BND - Brunei Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:69 +msgid "BMD - Bermudian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:68 +msgid "BIF - Burundian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:67 +msgid "BGN - Bulgarian Lev" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:66 +msgid "BDT - Bangladeshi Taka" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:65 +msgid "BBD - Barbadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:64 +msgid "BAM - Bosnia & Herzegovina Convertible Mark" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:63 +msgid "AZN - Azerbaijani Manat" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:62 +msgid "AWG - Aruban Florin" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:61 +msgid "AUD - Australian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:60 +msgid "ARS - Argentine Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:59 +msgid "AOA - Angolan Kwanza*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:58 +msgid "ANG - Netherlands Antillean Gulden" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:57 +msgid "AMD - Armenian Dram" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:56 +msgid "ALL - Albanian Lek" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:55 +msgid "AFN - Afghan Afghani*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:54 +msgid "AED - United Arab Emirates Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:345 +msgid "Skrill balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:327 +msgid "Skrill IPN message received." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:283 +msgid "Skrill" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:278 +msgid "Pending payment" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:144 +msgid "The secret word must match the word submitted in the \"Merchant Tools\" section of your Skrill account." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:134 +msgid "You must use your valid Skrill merchant email. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:133 +msgid "Skrill Email" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:123 +msgid "Resell your inventory via Skrill.com (Moneybookers)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:95 +msgid "ZAR - South-African Rand" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:93 +msgid "TWD - Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:92 +msgid "TRY - New Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:91 +msgid "TND - Tunisian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:90 +msgid "THB - Thailand Baht" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:89 +msgid "SKK - Slovakian Koruna" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:86 +#: includes/common/payment-gateways/stripe.php:158 +msgid "SAR - Saudi Riyal" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:85 +msgid "RSD - Serbian dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:83 +msgid "QAR - Qatari Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:81 +msgid "OMR - Omani Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:80 +msgid "NOK - Norwegian Krone " +msgstr "" + +#: includes/common/payment-gateways/skrill.php:78 +#: includes/common/payment-gateways/stripe.php:138 +msgid "MYR - Malaysian Ringgit" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:77 +#: includes/common/payment-gateways/stripe.php:127 +msgid "MAD - Moroccan Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:74 +msgid "KRW - South-Korean Won" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:72 +msgid "JOD - Jordanian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:70 +msgid "INR - Indian Rupee" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:63 +msgid "EEK - Estonian Kroon" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:56 +msgid "AED - Utd. Arab Emir. Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:52 +msgid "Turkish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:51 +msgid "Swedish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:50 +msgid "Spanish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:49 +msgid "Russian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:48 +msgid "Romainian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:47 +msgid "Polish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:46 +msgid "Italian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:45 +msgid "Greek" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:44 +msgid "German" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:43 +msgid "French" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:42 +msgid "Finnish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:41 +msgid "English" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:40 +msgid "Dutch" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:39 +msgid "Danish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:38 +msgid "Czech" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:37 +msgid "Chinese" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:201 +msgid "There was an error processing your card: %s. Please re-enter your credit card info and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:278 +msgid "
  • There was an error processing your card: \"%s\". Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:274 +msgid "
  • There was an error processing your card. Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:177 +#: includes/common/payment-gateways/stripe.php:279 +msgid "Publishable Key" +msgstr "" + +#: includes/common/payment-gateways/pin.php:163 +msgid "API Credentials?" +msgstr "" + +#: includes/common/payment-gateways/pin.php:147 +msgid "PIN makes it easy to start accepting credit card payments with Australia’s first all-in-one online payment system. Accept all major credit cards directly on your site. Your sales proceeds are deposited to any Australian bank account, no merchant account required." +msgstr "" + +#: includes/common/payment-gateways/pin.php:57 +#: includes/common/payment-gateways/stripe.php:179 +msgid "USD - United States Dollar" +msgstr "USD - الدولار الأمريكي" + +#: includes/common/payment-gateways/paypal-payflow.php:455 +msgid "Email Footer" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:445 +msgid "Email Header" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:416 +msgid "Partner" +msgstr "شريك" + +#: includes/common/payment-gateways/paypal-payflow.php:409 +msgid "Vendor" +msgstr "بائع" + +#: includes/common/payment-gateways/paypal-express.php:852 +#: includes/common/payment-gateways/paypal-express.php:1126 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences\t section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:749 +msgid "Page Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:744 +msgid "Header Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:739 +msgid "Header Border Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:734 +msgid "Header Image" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:680 +msgid "Locale" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:624 +#: includes/common/payment-gateways/paypal-express.php:658 +msgid "Merchant Email" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:645 +msgid "Paypal Express Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:603 +msgid "Paypal Express Network Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:861 +msgid "Application ID (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:854 +msgid "Signature (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:847 +msgid "API Password (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:839 +msgid "API Username (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:832 +msgid "Signature (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:825 +msgid "API Password (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:817 +msgid "API Username (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:799 +msgid "This message is displayed at the top of the gateway settings page to store admins. It's a good place to inform them of your fees or put any sales messages." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:787 +msgid "Please enter your PayPal email address or business ID you want to recieve fees at." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:786 +msgid "PayPal E-mail" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:772 +msgid "Fees to Collect (%)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:375 +#: includes/public/class-mp-checkout.php:341 +msgid "Email Address" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:299 +msgid "Sorry, your order was not completed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:126 +#: includes/common/payment-gateways/paypal-express.php:780 +msgid "You will be redirected to the PayPal site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:90 +#: includes/common/payment-gateways/skrill.php:94 +msgid "USD - U.S. Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:89 +msgid "TRY - Turkish lira" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:88 +#: includes/common/payment-gateways/stripe.php:170 +msgid "THB - Thai Baht" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:87 +msgid "TWD - Taiwan New Dollars" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:86 +#: includes/common/payment-gateways/pin.php:59 +#: includes/common/payment-gateways/skrill.php:88 +#: includes/common/payment-gateways/stripe.php:162 +msgid "SGD - Singapore Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:84 +msgid "RUB - Russian Rubles" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:82 +msgid "PHP - Philippine Pesos" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:81 +#: includes/common/payment-gateways/pin.php:58 +#: includes/common/payment-gateways/skrill.php:79 +#: includes/common/payment-gateways/stripe.php:145 +msgid "NZD - New Zealand Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:79 +msgid "MXN - Mexican Peso" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:78 +msgid "MYR - Malaysian Ringgits" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:77 +#: includes/common/payment-gateways/pin.php:64 +#: includes/common/payment-gateways/skrill.php:73 +#: includes/common/payment-gateways/stripe.php:112 +msgid "JPY - Japanese Yen" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:75 +#: includes/common/payment-gateways/pin.php:63 +#: includes/common/payment-gateways/skrill.php:66 +#: includes/common/payment-gateways/stripe.php:102 +msgid "HKD - Hong Kong Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:73 +msgid "GBP - Pound Sterling" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:68 +#: includes/common/payment-gateways/pin.php:62 +#: includes/common/payment-gateways/skrill.php:59 +msgid "CAD - Canadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:67 +msgid "BRL - Brazilian Real" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:66 +#: includes/common/payment-gateways/pin.php:56 +#: includes/common/payment-gateways/skrill.php:57 +msgid "AUD - Australian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:288 +msgid "There was an error processing your card: \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:163 +msgid "When running on a live site, Paymill recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:161 +#: includes/common/payment-gateways/pin.php:157 +#: includes/common/payment-gateways/simplify.php:103 +#: includes/common/payment-gateways/stripe.php:260 +#: includes/common/payment-gateways/wepay.php:153 +msgid "Force SSL?" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:151 +msgid "Accept Visa, Mastercard, Maestro UK, Discover and Solo cards directly on your site. You don't need a merchant account or gateway. Credit cards go directly to Paymill's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:131 +msgid "CVV2" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:72 +#: includes/common/payment-gateways/pin.php:61 +#: includes/common/payment-gateways/skrill.php:65 +#: includes/common/payment-gateways/stripe.php:95 +msgid "GBP - British Pound" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:71 +#: includes/common/payment-gateways/stripe.php:173 +msgid "TRY - Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:70 +#: includes/common/payment-gateways/paypal-chained-payments.php:85 +#: includes/common/payment-gateways/skrill.php:87 +#: includes/common/payment-gateways/stripe.php:161 +msgid "SEK - Swedish Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:69 +#: includes/common/payment-gateways/skrill.php:84 +msgid "RON - Romanian Leu New" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:68 +#: includes/common/payment-gateways/paypal-chained-payments.php:83 +#: includes/common/payment-gateways/skrill.php:82 +msgid "PLN - Polish Zloty" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:67 +#: includes/common/payment-gateways/paypal-chained-payments.php:80 +#: includes/common/payment-gateways/stripe.php:143 +msgid "NOK - Norwegian Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:66 +#: includes/common/payment-gateways/skrill.php:75 +#: includes/common/payment-gateways/stripe.php:125 +msgid "LTL - Lithuanian Litas" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:65 +#: includes/common/payment-gateways/paypal-chained-payments.php:69 +#: includes/common/payment-gateways/skrill.php:60 +#: includes/common/payment-gateways/stripe.php:78 +msgid "CHF - Swiss Franc" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:64 +#: includes/common/payment-gateways/skrill.php:76 +msgid "LVL - Latvian Lat" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:63 +#: includes/common/payment-gateways/paypal-chained-payments.php:74 +#: includes/common/payment-gateways/skrill.php:69 +msgid "ILS - Israeli Shekel" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:62 +#: includes/common/payment-gateways/skrill.php:71 +msgid "ISK - Iceland Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:61 +#: includes/common/payment-gateways/paypal-chained-payments.php:76 +#: includes/common/payment-gateways/skrill.php:68 +#: includes/common/payment-gateways/stripe.php:106 +msgid "HUF - Hungarian Forint" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:60 +#: includes/common/payment-gateways/paypal-chained-payments.php:71 +#: includes/common/payment-gateways/skrill.php:62 +#: includes/common/payment-gateways/stripe.php:86 +msgid "DKK - Danish Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:59 +#: includes/common/payment-gateways/skrill.php:67 +#: includes/common/payment-gateways/stripe.php:104 +msgid "HRK - Croatian Kuna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:58 +#: includes/common/payment-gateways/paypal-chained-payments.php:70 +#: includes/common/payment-gateways/skrill.php:61 +msgid "CZK - Czech Koruna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:57 +#: includes/common/payment-gateways/skrill.php:58 +msgid "BGN - Bulgarian Leva" +msgstr "" + +#: includes/common/payment-gateways/payflow/class-mp-gateway-worker-payflow.php:123 +msgid "There was an error connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:344 +msgid "This setting will log all PayFast communication to the \"payfast.log\" file." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:342 +msgid "Log Debugging Info?" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:335 +msgid "DO NOT INPUT A VALUE UNLESS YOU HAVE SET ONE IN THE SETTINGS SECTION OF YOUR PAYFAST SETTINGS." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:333 +msgid "PayFast Passphrase" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:323 +msgid "You can find your credentials on your integration page." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:321 +msgid "PayFast Merchant Credentials" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:311 +msgid "PayFast Mode" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:308 +msgid "PayFast is a payments processing service for South Africa. We make it safe for buyers to send money and easy for sellers to receive money. More Info »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:306 +msgid "PayFast Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:285 +msgid "Your payment via PayFast for this order totaling %s is complete. The transaction number is %s." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:278 +msgid "Your payment via PayFast for this order totaling %s is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:124 +msgid "Your PayFast transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:82 +#: includes/common/payment-gateways/payfast.php:83 +msgid "PayFast" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:157 +msgid "API error: - \"%s\"" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:198 +msgid "The payment request is under process" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:140 +msgid "Order: #" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:116 +msgid "You will be redirected to the Mollie site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:73 +msgid "%sMollie%s provides a fully PCI Compliant and secure way to collect payments via iDeal, Credit Card, Bancontact / Mister Cash, SOFORT Banking, Overbooking, Bitcoin, PayPal, paysafecard and AcceptEmail." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:53 +#: includes/common/payment-gateways/mollie.php:54 +#: includes/common/payment-gateways/mollie.php:195 +#: includes/common/payment-gateways/mollie.php:245 +msgid "Mollie" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:50 +#: includes/common/payment-gateways/paymill.php:56 +#: includes/common/payment-gateways/paypal-chained-payments.php:72 +#: includes/common/payment-gateways/pin.php:60 +#: includes/common/payment-gateways/skrill.php:64 +#: includes/common/payment-gateways/stripe.php:92 +msgid "EUR - Euro" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:306 +msgid "Access Key" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:300 +msgid "You must login to the Mijireh.com dashboard to obtain the Access Key." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:299 +msgid "Credentials" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:289 +msgid "Mijireh Checkout provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:269 +msgid "Mijireh Error: " +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:89 +msgid "You will be redirected to the Mijireh.com site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:87 +msgid "Your Mijireh transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:42 +#: includes/common/payment-gateways/mijireh.php:43 +#: includes/common/payment-gateways/mijireh.php:324 +msgid "Mijireh" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:145 +msgid "These are the manual payment instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:189 +msgid "This is the email text to send to those who have made free order checkouts. You should include your free order instructions / information here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:183 +msgid "This is the free order information to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:182 +msgid "Confirmation User Information" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:177 +msgid "This is the information to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:163 +msgid "If enabled, all free orders will be automatically marked as paid." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:159 +msgid "Payment Status" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:149 +msgid "This gateway is automatically activated if order totalling 0 and it can't be disabled" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:35 +#: includes/common/payment-gateways/free_orders.php:36 +#: includes/common/payment-gateways/free_orders.php:89 +msgid "Free Order" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:34 +#: includes/common/payment-gateways/free_orders.php:197 +msgid "Free Orders" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:515 +msgid "Sandbox API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:266 +#: includes/common/payment-gateways/eway31.php:542 +msgid "eWay Rapid 3.1 Payments (beta)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:403 +msgid "Hosted Payment Page Language" +msgstr "" + +#: includes/common/payment-gateways/eway.php:373 +msgid "Note when testing in sandbox mode it will use the default eWay test API credentials. Also, please note that cart total needs to be a whole number (e.g. 10.00) in order to generate a successful transaction, otherwise the transaction will fail." +msgstr "" + +#: includes/common/payment-gateways/eway.php:267 +msgid "You will be redirected to https://www.eway.com.au to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:380 +msgid "You have chosen to checkout using %s. Please confirm your order details and click \"Submit Order\" when finished." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:272 +#: includes/common/payment-gateways/paymill.php:131 +#: includes/common/payment-gateways/stripe.php:231 +msgid "Security Code " +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Enter in MM/YYYY or MM/YY format" +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Expiration" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:321 +msgid "Delim Data" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:307 +#: includes/common/payment-gateways/paypal-payflow.php:456 +msgid "This text will appear as the footer of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:287 +#: includes/common/payment-gateways/paypal-payflow.php:440 +msgid "Email Customer (on success)" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:278 +msgid "Authorize.net default is \",\". Otherwise, get this from your credit card processor. If the transactions are not going through, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:277 +msgid "Delimeter Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:193 +msgid "Held For Review" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:310 +#: includes/common/payment-gateways/payfast.php:314 +msgid "Test" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:300 +#: includes/common/payment-gateways/pin.php:170 +#: includes/common/payment-gateways/stripe.php:272 +msgid "Secret Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:283 +msgid "Select Your Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:97 +msgid "Your payment will be processed by the iDEAL network" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:208 +msgid "These are the CubePoints to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:203 +msgid "These are the CubePoints instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:266 +msgid "If enabled, all API calls will be made to https://test.bitpay.com." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:263 +msgid "Use Test Mode?" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:259 +msgid "If checked, response fron bitpay will be stored in log file, keep it disabled unless required." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:256 +msgid "Enable Debug Log" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:249 +msgid "Full Notifications" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:231 +#: includes/common/payment-gateways/eway31.php:499 +#: includes/common/payment-gateways/eway31.php:526 +#: includes/common/payment-gateways/mollie.php:83 +#: includes/common/shipping-modules/mp-fedex.php:269 +msgid "API Key" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:222 +msgid "You can now accept a payment from any country on Earth, with no risk of fraud. To use Bitpay, you need to signup on Bitpay. \\n After completing the signup process, you can get api keys at Bitpay API key. You can read more about Bitpay at Bitpay API. \\n Bitpay requires SSL(https) for payment notifications to work." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:61 +msgid "You will be redirected to bitpay.com, for bitcoin payment. It is completely safe." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:346 +msgid "You must login to the 2Checkout vendor dashboard to obtain the seller ID and secret word. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:345 +#: includes/common/payment-gateways/authorizenet-aim.php:239 +#: includes/common/payment-gateways/paymill.php:168 +#: includes/common/payment-gateways/paypal-express.php:704 +#: includes/common/payment-gateways/simplify.php:80 +#: includes/common/payment-gateways/stripe.php:265 +#: includes/common/payment-gateways/wepay.php:158 +msgid "API Credentials" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:325 +#: includes/common/payment-gateways/_bitpay.php:220 +#: includes/common/payment-gateways/_cubepoints.php:185 +#: includes/common/payment-gateways/_ideal.php:268 +#: includes/common/payment-gateways/_payway.php:255 +#: includes/common/payment-gateways/authorizenet-aim.php:219 +#: includes/common/payment-gateways/eway.php:352 +#: includes/common/payment-gateways/eway31.php:460 +#: includes/common/payment-gateways/free_orders.php:147 +#: includes/common/payment-gateways/manual-payments.php:126 +#: includes/common/payment-gateways/mijireh.php:287 +#: includes/common/payment-gateways/mollie.php:71 +#: includes/common/payment-gateways/paymill.php:149 +#: includes/common/payment-gateways/paypal-chained-payments.php:344 +#: includes/common/payment-gateways/paypal-payflow.php:376 +#: includes/common/payment-gateways/pin.php:145 +#: includes/common/payment-gateways/simplify.php:69 +#: includes/common/payment-gateways/skrill.php:121 +#: includes/common/payment-gateways/stripe.php:249 +#: includes/common/payment-gateways/wepay.php:119 +#: includes/common/shipping-modules/mp-fedex.php:243 +#: includes/common/shipping-modules/mp-flat-rate.php:63 +#: includes/common/shipping-modules/mp-pickup.php:140 +#: includes/common/shipping-modules/mp-table-rate.php:94 +#: includes/common/shipping-modules/mp-ups.php:122 +#: includes/common/shipping-modules/mp-usps.php:167 +#: includes/common/shipping-modules/mp-weight-rate.php:110 +msgid "%s Settings" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:136 +msgid "You will be redirected to the 2Checkout site to finalize your payment." +msgstr "" + +#: includes/common/helpers.php:169 includes/public/class-mp-checkout.php:1277 +msgid "Billing" +msgstr "" + +#: includes/common/helpers.php:144 +msgid "FREE" +msgstr "" + +#: includes/common/helpers.php:134 +msgid "Coupons:" +msgstr "" + +#: includes/common/helpers.php:95 +msgid "Qty" +msgstr "" + +#: includes/common/helpers.php:94 +msgid "Sku" +msgstr "" + +#: includes/common/data.php:59 +msgid "Zip Code" +msgstr "" + +#: includes/common/class-mp-taxes.php:336 +msgid "Standard Table" +msgstr "" + +#: includes/common/class-mp-product.php:2698 +msgid "Tweet" +msgstr "" + +#: includes/common/class-mp-product.php:2321 +msgid "Notification Preferences: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2320 +msgid "Edit Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2318 +msgid "Link: %s

    " +msgstr "" + +#: includes/common/class-mp-product.php:2317 +msgid "Current Inventory: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2316 +msgid "Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2314 +msgid "This message is being sent to notify you of low stock of a product in your online store according to your preferences.

    " +msgstr "" + +#: includes/common/class-mp-product.php:1817 +msgid "" +msgstr "" + +#: includes/common/class-mp-product.php:1427 +#: includes/common/class-mp-product.php:1430 +msgid "(tax incl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1422 +#: includes/common/class-mp-product.php:1425 +msgid "(tax excl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1300 +#: includes/common/class-mp-product.php:1315 +msgid "%s each" +msgstr "" + +#: includes/common/class-mp-product.php:988 +msgid "Choose Options" +msgstr "" + +#: includes/common/class-mp-product.php:526 +msgid "Choose a %s" +msgstr "" + +#: includes/common/class-mp-product.php:284 +#: includes/common/class-mp-product.php:292 +#: includes/common/class-mp-product.php:615 +msgid "We're sorry, we only have %d of this item in stock right now." +msgstr "" + +#: includes/common/class-mp-order.php:1456 +msgid "Shipped: Track Shipment" +msgstr "" + +#: includes/common/class-mp-order.php:1049 +msgid "Order Received" +msgstr "" + +#: includes/common/class-mp-order.php:1014 +msgid "In Process" +msgstr "" + +#: includes/common/class-mp-order.php:969 +msgid "Order #" +msgstr "" + +#: includes/common/class-mp-order.php:866 +msgid "Copy billing address to shipping address" +msgstr "" + +#: includes/common/class-mp-order.php:822 +#: includes/public/class-mp-checkout.php:1314 +msgid "Special Instructions" +msgstr "" + +#: includes/common/class-mp-order.php:817 +#: includes/common/payment-gateways/stripe.php:335 +msgid "Email" +msgstr "" + +#: includes/common/class-mp-order.php:813 +#: includes/common/payment-gateways/stripe.php:341 +#: includes/public/class-mp-checkout.php:416 +msgid "Phone" +msgstr "" + +#: includes/common/class-mp-order.php:791 +#: includes/common/payment-gateways/stripe.php:337 +msgid "State" +msgstr "" + +#: includes/common/class-mp-order.php:776 +msgid "Address 1" +msgstr "" + +#: includes/common/class-mp-order.php:766 +msgid "Last Name" +msgstr "" + +#: includes/common/class-mp-order.php:762 +msgid "First Name" +msgstr "" + +#: includes/common/class-mp-installer.php:677 +msgid "MarketPress requires a database update to continue working correctly. Go to update page" +msgstr "" + +#: includes/common/class-mp-installer.php:657 +msgid "MarketPress performed a quick automatic update successfully!" +msgstr "" + +#: includes/common/class-mp-installer.php:653 +msgid "Perform Update" +msgstr "" + +#: includes/common/class-mp-installer.php:647 +msgid "Please update each subsite in your WordPress network where you have older version of the MarketPress plugin." +msgstr "" + +#: includes/common/class-mp-installer.php:641 +msgid "Depending on the amount of products you have, this update could take quite some time. Please keep this window open while the update completes. If you have products with multiple variations, the progress bar may move slower, please don't exit the window." +msgstr "" + +#: includes/common/class-mp-installer.php:632 +msgid "Product Metadata" +msgstr "" + +#: includes/common/class-mp-installer.php:601 +msgid "MarketPress requires a database update to continue working correctly.
    Below you will find a list of items that require your attention." +msgstr "" + +#: includes/common/class-mp-installer.php:600 +msgid "Update MarketPress Data" +msgstr "" + +#: includes/common/class-mp-installer.php:530 +msgid "Update Data" +msgstr "" + +#: includes/common/class-mp-installer.php:67 +msgid "Complete!" +msgstr "" + +#: includes/common/class-mp-installer.php:66 +msgid "Upgrading Database...Please Wait..." +msgstr "" + +#: includes/common/class-mp-installer.php:64 +msgid "An error occurred while updating. Please refresh this page and try again." +msgstr "" + +#: includes/common/class-mp-cart.php:2447 +msgid "Some items in your cart have fallen below the quantity you currently have in your cart. We have adjusted the quantity in your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:2443 +msgid "Some items in your cart are no longer available. We have removed these items from your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:1566 +msgid "item" +msgstr "" + +#: includes/common/class-mp-cart.php:1563 +#: includes/common/class-mp-cart.php:1568 +msgid "items" +msgstr "" + +#: includes/common/class-mp-cart.php:1363 +msgid "Items/Products added to Cart will show here." +msgstr "" + +#: includes/common/class-mp-cart.php:1362 +msgid "Your shopping cart is empty." +msgstr "" + +#: includes/common/class-mp-cart.php:1357 +msgid "View Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1241 +#: includes/common/class-mp-cart.php:1298 +#: includes/public/class-mp-short-codes.php:159 +msgid "Adding..." +msgstr "" + +#: includes/common/class-mp-cart.php:1033 +msgid "Continue Shopping?" +msgstr "" + +#: includes/common/class-mp-cart.php:961 +msgid "Secure Checkout
    Shopping is always safe and secure." +msgstr "" + +#: includes/common/class-mp-cart.php:959 +msgid "You are about to submit your order!
    Please review your order details before continuing. You will be charged immediately upon clicking \"Submit Order\"." +msgstr "" + +#: includes/common/class-mp-cart.php:956 +msgid "Continue »" +msgstr "" + +#: includes/common/class-mp-cart.php:955 +msgid "Submit Order" +msgstr "" + +#: includes/common/class-mp-cart.php:818 +msgid "There are no items in your cart - go add some !" +msgstr "" + +#: includes/common/class-mp-cart.php:816 +msgid "The cart is disabled." +msgstr "" + +#: includes/common/class-mp-cart.php:735 +msgid "Estimated %s" +msgstr "" + +#: includes/common/class-mp-cart.php:717 +msgid "Estimated Shipping" +msgstr "" + +#: includes/common/class-mp-cart.php:697 +msgid "Product Total" +msgstr "" + +#: includes/common/class-mp-cart.php:670 includes/common/class-mp-cart.php:672 +msgid "Estimated Total (%s, %s)" +msgstr "" + +#: includes/common/class-mp-cart.php:668 +msgid "Estimated Total (%s)" +msgstr "" + +#: includes/common/class-mp-cart.php:666 includes/common/class-mp-cart.php:752 +msgid "Estimated Total" +msgstr "" + +#: includes/admin/widgets/product-list.php:247 +msgid "Show Thumbnail Placeholder image (if image is not set)" +msgstr "" + +#: includes/admin/widgets/cart.php:73 +msgid "Display product price" +msgstr "" + +#: includes/admin/widgets/cart.php:71 +msgid "Display product quantity" +msgstr "" + +#: includes/admin/widgets/cart.php:69 +msgid "Display product image" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:93 +msgid "General Shipping Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:773 +msgid "If you are having conflicts with the lightbox library from your theme or another plugin you should uncheck this." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:772 +msgid "Use Built-In Lightbox for Images?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:762 +msgid "Disable Large Image Display?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:688 +msgid "Show Product Image?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:682 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:684 +msgid "Show Tags List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:676 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:678 +msgid "Show Categories List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:671 +msgid "If enabled, description excerpt will be added above Add to cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:669 +msgid "Show Excerpt?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:665 +msgid "If enabled, users will be able to choose how many of the product they want to purchase before adding to their cart. If not checked, quantity could be change later on the cart page." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:663 +msgid "Show Quantity Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:649 +msgid "Settings related to the display of individual product pages." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:648 +msgid "Product Page Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:605 +msgid "Related Products Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:573 +msgid "Show Related Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:568 +msgid "Related Product Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:549 +msgid "Order Status Entries Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:510 +msgid "Sort Products By" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:497 +msgid "Products Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:492 +msgid "Paginate Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:478 +msgid "Excerpts Length" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:473 +msgid "Show Excerpts?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:450 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:746 +msgid "Image Alignment" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:412 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:708 +msgid "Custom Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:401 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:697 +msgid "Large - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:400 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:696 +msgid "Medium - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:399 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:695 +msgid "Thumbnail - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:397 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:693 +msgid "Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:386 +msgid "Select default placeholder image thumbnail when product image is not available (if empty, plugin's built-in image will be used)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:380 +msgid "Show default product placeholder thumbnail when product image is not available?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:374 +msgid "Show Product Thumbnail?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:369 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:658 +msgid "Redirect to cart page for immediate checkout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:368 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:657 +msgid "Stay on current product page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:366 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:655 +msgid "MarketPress supports two \"flows\" for adding products to the shopping cart. After adding a product to their cart, two things can happen:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:365 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:654 +msgid "Add To Cart Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:355 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:628 +msgid "Four" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:354 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:627 +msgid "Three" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:353 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:626 +msgid "Two" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:625 +msgid "One" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:349 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:622 +msgid "Set the number of products that show up in a grid row to best fit your theme" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:348 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:621 +msgid "How many products per row?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:342 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:609 +msgid "Display as grid" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:341 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:608 +msgid "Display as list" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:339 +msgid "Product Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:334 +msgid "Settings related to the display of product lists/grids." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:333 +msgid "Product List/Grid Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:314 +msgid "Show Twitter Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:309 +msgid "Twitter" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:303 +msgid "Show Share Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:297 +msgid "Recommend" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:296 +msgid "Like" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:294 +msgid "Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:283 +msgid "Show Facebook Like Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:278 +msgid "Facebook" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:257 +msgid "Show \"Pin It\" Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:252 +msgid "Pinterest" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:246 +msgid "Social Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:193 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:202 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:211 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:220 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:229 +#: includes/multisite/class-mp-admin-multisite.php:532 +#: includes/multisite/class-mp-admin-multisite.php:541 +#: includes/multisite/class-mp-admin-multisite.php:550 +msgid "Choose a Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:191 +msgid "This page will be used as the root for your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:168 +#: includes/multisite/class-mp-admin-multisite.php:586 +msgid "Create Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "uncropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "cropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:87 +#: includes/multisite/class-mp-admin-multisite.php:121 +#: includes/multisite/class-mp-admin-multisite.php:620 +msgid "An error occurred while creating the store page. Please try again." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:66 +msgid "Choose the gateway(s) that you would like to be available for checkout." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:65 +msgid "Enabled Gateways" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:78 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:146 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:179 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:213 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:274 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:307 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:341 +msgid "Text" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:71 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:139 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:172 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:206 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:267 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:300 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:334 +msgid "Subject" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:52 +msgid "Notification Email" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:510 +msgid "Enabling this option will display label `excl. tax` or `incl. tax` after price" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:509 +msgid "Display tax label?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:504 +msgid "Enabling this option will show Price + Tax, eg. if your price is 100 and your tax 20, your price will be 120" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:416 +#: includes/multisite/class-mp-admin-multisite.php:234 +msgid "Price Format" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:366 +msgid "Enabling this field will display a textbox on the shipping checkout page for users to enter special instructions for their order. Useful for product personalization, etc." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:365 +msgid "Show Special Instructions Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:360 +msgid "Universal" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:359 +msgid "Old" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1167 +#: includes/admin/store-settings/class-mp-store-settings-general.php:358 +msgid "New" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:353 +msgid "If you already use Google Analytics for your website, you can track detailed ecommerce information by enabling this setting. Choose whether you are using the new asynchronous or old tracking code. Before Google Analytics can report ecommerce activity for your website, you must enable ecommerce tracking on the profile settings page for your website. Also keep in mind that some gateways do not reliably show the receipt page, so tracking may not be accurate in those cases. It is recommended to use the PayPal gateway for the most accurate data. More information »" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:347 +msgid "Do you want to display the product price on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:346 +msgid "Show product price on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:340 +msgid "Do you want to display the product quantity on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:339 +msgid "Show product quantity on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:333 +msgid "Do you want to display the product image on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:332 +msgid "Show product image on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:327 +msgid "This option hide floating Mini Cart in top right corner." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:326 +msgid "Disable Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:316 +msgid "If unchecked your Orders admin page will be hidden" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:315 +msgid "Show admin Orders page?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:309 +msgid "Disable Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:303 +msgid "Force Login?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:297 +msgid "Hide Out of Stock Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:555 +msgid "This will prevent multiples of the same downloadable product form being added to the cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:554 +msgid "Limit Digital Products Per-order?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:268 +msgid "If you're having issues downloading large files and have worked with your hosting provider to increase your memory limits, try enabling this - just keep in mind, it's not as secure!" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:267 +msgid "Use Alternative Download Method?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:252 +msgid "Download Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:230 +msgid "Change product post type" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:51 +msgid "%s Capabilities" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-addons.php:47 +msgid "Store Settings: Add Ons: %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:254 +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:56 +msgid "Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Edit Product Attribute %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:246 +msgid "Exporters" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:238 +msgid "Short Codes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:207 +msgid "An appropriate message for key \"%s\" could not be found." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:204 +msgid "Product attribute updated successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:203 +msgid "Product attribute added successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +msgid "Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +#: includes/admin/store-settings/class-mp-store-settings-addons.php:121 +msgid "Store Settings: Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "Store Settings: Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:118 +msgid "Store Settings: Product Tags" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:117 +msgid "Store Settings: Product Categories" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Store Settings: Product Attributes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +msgid "Store Settings: Payments" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:114 +msgid "Store Settings: Shipping" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +#: includes/admin/class-mp-store-settings-admin.php:226 +msgid "Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +msgid "Store Settings: Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:112 +msgid "Store Settings: Presentation" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:111 +msgid "Store Settings: General" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1489 +msgid "Select a Product" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1447 +msgid "Reset to Defaults" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1446 +msgid "Insert Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1202 +#: includes/admin/class-mp-shortcode-builder.php:1227 +#: includes/admin/class-mp-shortcode-builder.php:1252 +msgid "The text to show in the link." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1196 +#: includes/admin/class-mp-shortcode-builder.php:1221 +#: includes/admin/class-mp-shortcode-builder.php:1246 +msgid "Whether to return a clickable link or url." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1177 +msgid "Whether to display the cart only on store pages or not." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1171 +msgid "Whether to show or hide the product price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1165 +msgid "Whether to show or hide the product quantity." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1159 +msgid "Whether to show or hide the product image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1153 +msgid "The text displayed before the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1147 +msgid "The title of the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1058 +#: includes/admin/class-mp-shortcode-builder.php:1121 +msgid "A label to prepend to the price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1032 +#: includes/admin/class-mp-shortcode-builder.php:1127 +msgid "What context for display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1004 +msgid "Set the alignment of the image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:998 +msgid "Set a custom pixel width/height. If omitted defaults to the size set by \"context\"." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:993 +msgid "Widget" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:988 +msgid "What context for preset size options." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:982 +#: includes/admin/class-mp-shortcode-builder.php:1026 +#: includes/admin/class-mp-shortcode-builder.php:1052 +#: includes/admin/class-mp-shortcode-builder.php:1077 +#: includes/admin/class-mp-shortcode-builder.php:1096 +#: includes/admin/class-mp-shortcode-builder.php:1115 +msgid "The ID of the product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:963 +msgid "Whether to display the product meta (e.g. price, buy button)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:738 +#: includes/admin/class-mp-shortcode-builder.php:905 +#: includes/admin/class-mp-shortcode-builder.php:958 +#: includes/admin/class-mp-shortcode-builder.php:992 +#: includes/admin/class-mp-shortcode-builder.php:1035 +#: includes/admin/class-mp-shortcode-builder.php:1130 +#: includes/admin/class-mp-shortcode-builder.php:1349 +msgid "List" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:957 +#: includes/admin/class-mp-shortcode-builder.php:991 +#: includes/admin/class-mp-shortcode-builder.php:1034 +#: includes/admin/class-mp-shortcode-builder.php:1129 +msgid "Single" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:953 +msgid "Whether and what context of image size to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:948 +msgid "Full" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:943 +msgid "Whether and what type of content to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:937 +msgid "Whether to display the product title." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:931 +msgid "The ID of the product to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:747 +#: includes/admin/class-mp-shortcode-builder.php:914 +msgid "Hide" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:746 +#: includes/admin/class-mp-shortcode-builder.php:913 +msgid "Show" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:744 +#: includes/admin/class-mp-shortcode-builder.php:911 +msgid "Whether or not to show the product filters." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:724 +#: includes/admin/class-mp-shortcode-builder.php:891 +#: includes/admin/class-mp-shortcode-builder.php:1335 +msgid "Limits list to a specific product tag." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:713 +#: includes/admin/class-mp-shortcode-builder.php:880 +#: includes/admin/class-mp-shortcode-builder.php:1324 +msgid "Limits list to a specific product category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:706 +#: includes/admin/class-mp-shortcode-builder.php:873 +#: includes/admin/class-mp-shortcode-builder.php:1317 +msgid "Direction to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:684 +#: includes/admin/class-mp-shortcode-builder.php:851 +#: includes/admin/class-mp-shortcode-builder.php:1295 +msgid "What field to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:678 +#: includes/admin/class-mp-shortcode-builder.php:845 +#: includes/admin/class-mp-shortcode-builder.php:1283 +msgid "How many products to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:672 +#: includes/admin/class-mp-shortcode-builder.php:839 +#: includes/admin/class-mp-shortcode-builder.php:1277 +msgid "The page number to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:666 +#: includes/admin/class-mp-shortcode-builder.php:833 +#: includes/admin/class-mp-shortcode-builder.php:1271 +msgid "Whether to paginate the product list. This is useful to only show a subset." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:808 +msgid "How many related items to show." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:790 +msgid "How to relate the products" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:784 +msgid "The product to show related items for." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:765 +msgid "The maximum number of products to display" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:647 +msgid "Comma separated list of tags (term_id) to include. For example, include=5,27 means tags that have the term_id 5 or 27 will be the only tags displayed. Defaults to include everything." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:641 +msgid "Comma separated list of tags (term_id) to exclude. For example, exclude=5,27 means tags that have the term_id 5 or 27 will NOT be displayed. Defaults to exclude nothing." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:633 +#: includes/admin/class-mp-shortcode-builder.php:1420 +msgid "Sort order." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:629 +#: includes/admin/class-mp-shortcode-builder.php:1416 +msgid "Count" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:626 +#: includes/admin/class-mp-shortcode-builder.php:1413 +msgid "Order of the tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:620 +msgid "The text/space between tags)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:616 +msgid "UL with a class of \"wp-tag-cloud\"" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:615 +msgid "separated by whitespace defined by \"separator\" parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:613 +msgid "Format of the cloud display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:607 +msgid "The number of actual tags to display in the cloud. (Use \"0\" to display all tags.)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:601 +msgid "Unit of measure as pertains to the smallest and largest values. This can be any CSS length value, e.g. pt, px, em, %." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:595 +msgid "The text size of the tag with the largest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:589 +msgid "The text size of the tag with the smallest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:570 +msgid "The \"tabindex\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:564 +msgid "The \"name\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:558 +msgid "The \"id\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:552 +msgid "Which category ID is selected." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:540 +msgid "The max depth. This is ignored unless hierarchical is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:536 +#: includes/multisite/template-functions.php:816 +msgid "No Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:414 +#: includes/admin/class-mp-shortcode-builder.php:546 +msgid "Calculates link or post counts by including items from child categories. If show_counts and hierarchical are true this is automatically set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:409 +msgid "Value of n (some number) specifies the depth (or level) to descend in displaying Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:408 +msgid "Show only top level Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:407 +msgid "All Categories displayed in flat (no indent) form (overrides hierarchical)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:406 +msgid "All Categories and child Categories (Default)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:402 +msgid "This parameter controls how many levels in the hierarchy of Categories are to be included in the list of Categories. NOTE: The \"hierarchical\" argument, which is disabled by default, will override the depth argument, unless it is true. When the argument is false, it will display all of the categories. When it is enabled it will use the value in the \"depth\" argument." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:396 +#: includes/admin/class-mp-shortcode-builder.php:1394 +msgid "Sets the number of Categories to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:390 +#: includes/admin/class-mp-shortcode-builder.php:534 +msgid "Set the text to show when no categories are listed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:384 +msgid "Set the title and style of the outer list item. If present but empty, the outer list item will not be displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:378 +#: includes/admin/class-mp-shortcode-builder.php:528 +msgid "Display sub-categories as inner list items (below the parent list item) or inline." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:368 +#: includes/admin/class-mp-shortcode-builder.php:511 +msgid "Exclude category-tree from the results. The parameter include must be empty. If the hierarchical parameter is true, then use exclude instead of exclude_tree." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:354 +msgid "Only include these categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:340 +#: includes/admin/class-mp-shortcode-builder.php:356 +#: includes/admin/class-mp-shortcode-builder.php:370 +#: includes/admin/class-mp-shortcode-builder.php:496 +#: includes/admin/class-mp-shortcode-builder.php:513 +msgid "Select Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:338 +#: includes/admin/class-mp-shortcode-builder.php:494 +msgid "Exclude one or more categories from the results. The parameter include must be empty." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:332 +msgid "Set a URI for an image (usually an rss feed icon) to act as a link to each categories' rss-2 feed. This parameter overrides the feed parameter. There is no default for this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:320 +msgid "Display a link to each category's rss-2 feed and set the link text to display. The default is no text and no feed displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:313 +#: includes/admin/class-mp-shortcode-builder.php:487 +msgid "Any" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:307 +#: includes/admin/class-mp-shortcode-builder.php:481 +msgid "Only display categories that are children of the category identified by this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:301 +msgid "Sets whether a category's description is inserted into the title attribute of the links created (i.e. <a title=\"<em>Category Description</em>\" href=\"...)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:295 +#: includes/admin/class-mp-shortcode-builder.php:475 +msgid "Toggles the display of categories with no posts." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:289 +#: includes/admin/class-mp-shortcode-builder.php:469 +#: includes/admin/class-mp-shortcode-builder.php:1388 +msgid "Toggles the display of the current count of posts in each category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:279 +msgid "Style to display the categories list in. A value of list displays the categories as list items while none generates no special display method (the list items are separated by
    tags)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:269 +#: includes/admin/class-mp-shortcode-builder.php:449 +#: includes/admin/class-mp-shortcode-builder.php:1378 +msgid "Sort order for categories (either ascending or descending)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:259 +#: includes/admin/class-mp-shortcode-builder.php:439 +#: includes/admin/class-mp-shortcode-builder.php:1368 +msgid "Sort categories alphabetically, by unique Category ID, or by the count of posts in that Category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:253 +#: includes/admin/class-mp-shortcode-builder.php:433 +msgid "If a value is entered, causes the display of a link to all categories if the style is set to list." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:219 +msgid "Select an Action" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:217 +msgid "What would you like to do?" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:216 +#: includes/admin/class-mp-shortcode-builder.php:1522 +msgid "Add E-Commerce Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:197 +msgid "Display a list of links to your store pages." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:196 +msgid "Display a link or url to the order status page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:195 +msgid "Display a link or url to the current products list page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:194 +msgid "Display a link or url to the current store page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:193 +msgid "Display a link or url to the current shopping cart page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:192 +msgid "Display the cart widget." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:191 +msgid "Display the full product meta box with price and buy now/add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:190 +msgid "Display the product stock." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:189 +msgid "Display the product SKU number(s)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:188 +msgid "Display the product price (and sale price)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:187 +msgid "Display the buy or add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:186 +msgid "Display the featured image of a given product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:185 +msgid "Display a single product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:184 +msgid "Display a list of products according to preference." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:183 +msgid "Display products related to the one being viewed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:182 +msgid "Display a list of popular products ordered by sales." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:180 +msgid "Display an HTML dropdown of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:179 +msgid "Display an HTML list of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:178 +msgid "Display a cloud or list of your product tags." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:655 +msgid "Setup your payment gateway" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:643 +#: includes/admin/class-mp-setup-wizard.php:649 +msgid "Other Gateways" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:617 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:150 +msgid "Select which calculated shipping methods the customer will be able to choose from." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:601 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:134 +#: includes/public/class-mp-checkout.php:82 +msgid "Shipping Method" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:568 +msgid "I want to charge shipping" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:523 +#: includes/admin/store-settings/class-mp-store-settings-general.php:503 +msgid "Show Price + Tax?" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:507 +msgid "I.e. Taxes, VAT, GST, etc" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:491 +#: includes/admin/store-settings/class-mp-store-settings-general.php:471 +msgid "Current Rates" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:473 +msgid "Default Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:434 +#: includes/admin/class-mp-setup-wizard.php:442 +#: includes/admin/store-settings/class-mp-store-settings-general.php:386 +#: includes/admin/store-settings/class-mp-store-settings-general.php:394 +#: includes/multisite/class-mp-admin-multisite.php:204 +#: includes/multisite/class-mp-admin-multisite.php:212 +msgid "Select a Currency" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:414 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:105 +msgid "Choose Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:411 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:103 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:104 +msgid "All Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:410 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:102 +msgid "These are the countries that you will ship to." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:409 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:101 +msgid "Target Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:401 +msgid "Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:387 +#: includes/admin/store-settings/class-mp-store-settings-general.php:640 +msgid "Zip/Postal Code Label" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:352 +#: includes/admin/store-settings/class-mp-store-settings-general.php:606 +msgid "Select a State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:335 +#: includes/admin/store-settings/class-mp-store-settings-general.php:590 +msgid "Select A Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:332 +#: includes/admin/store-settings/class-mp-store-settings-general.php:587 +msgid "Select a Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:324 +msgid "Location" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:304 +#: includes/admin/class-mp-setup-wizard.php:312 +#: includes/admin/class-mp-store-settings-admin.php:129 +#: includes/admin/class-mp-store-settings-admin.php:262 +msgid "Quick Setup" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:289 +msgid "MarketPress setup is not complete! Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2479 +msgid "Enter your product name here" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2440 +msgid "Select a %s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2426 +msgid "Each product variation needs to have product attributes assigned to it so the system knows how to differentiate one product variation from the other. It is important that you assign a category to this product before choosing any attributes." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2409 +msgid "If you would like this variation to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2320 +msgid "Sale Price (if applicable)" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2281 +msgid "If you would like the description to be different than the main product enter it here." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2229 +msgid "Image" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2202 +#: includes/admin/class-mp-shortcode-builder.php:226 +msgid "Attributes" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2166 +msgid "Create your product variations here. You can reorder variations by using the number to left of each variation, or delete one by clicking the \"x\" to the right of each variation. NOTE: The variation that shows up first in this list will be considered the \"main variation\". The details from this variation will be used in product listings." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2061 +#: includes/admin/class-mp-products-admin.php:2332 +msgid "Value must be less than regular price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2043 +#: includes/admin/class-mp-products-admin.php:2306 +msgid "Regular Price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2023 +#: includes/admin/class-mp-products-admin.php:2286 +msgid "External URL" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1988 +#: includes/admin/class-mp-products-admin.php:2245 +msgid "Enter the quantity that you have available to sell." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1987 +#: includes/admin/class-mp-products-admin.php:2244 +msgid "Inventory Count" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1977 +#: includes/admin/class-mp-products-admin.php:2234 +msgid "Track Inventory?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1871 +msgid "%1$sProduct Images%2$s %3$sAdd images of the product. The first image on the list is the featured image for this product (you can reorder images on the list)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1806 +msgid "Add variations for this product. e.g. If you are selling t-shirts, you can create Color & Size variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1804 +msgid "%3$sAdd variations for%2$s %1$sProduct%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1776 +msgid "This product has a multiple variations %1$s(e.g. Multiple colors, sizes)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1775 +msgid "This is a unique product without variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1700 +msgid "Extra Shipping Cost %1$s(if applicable)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1659 +#: includes/admin/class-mp-products-admin.php:2112 +#: includes/admin/class-mp-products-admin.php:2359 +msgid "Weight" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1636 +#: includes/admin/class-mp-products-admin.php:2098 +#: includes/admin/class-mp-products-admin.php:2416 +msgid "Please enter a valid tax rate" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1531 +msgid "Limit Per Order %1$s(limit the number of the item a shopper can buy per order)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1513 +msgid "SKU %1$s(Stock Keeping Unit)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "%1$sPrice, Inventory & Variants%2$s %3$sSet price, manage inventory and create Product Variants (if appropriate for your product).%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "Product Variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1480 +msgid "External / Affiliate Link" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1471 +msgid "Digital Download" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1470 +msgid "Physical / Tangible Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1464 +msgid "Product Kind %1$s(Physical Product, Digital, etc)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1426 +msgid "Choose Products" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1420 +msgid "If you would like, you can choose specific related products instead of using the ones generated by MarketPress" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1019 +msgid "Changes saved successfully" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:826 +msgid "Option cannot be saved. Try again." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:821 +msgid "Option saved successfully." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:467 +msgid "Img" +msgstr "" + +#: includes/admin/class-mp-product-attributes-list-table.php:57 +msgid "Product attribute(s) deleted successfully." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:162 +msgid "- Create New Variation -" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:144 +msgid "Only lowercase letters and dashes (-) are allowed." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:139 +msgid "If a slug is not entered, it will be generated automatically. Max 32 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:138 +#: includes/admin/class-mp-product-attributes-list-table.php:23 +msgid "Slug" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:130 +msgid "Max 45 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:123 +msgid "Use the numbers on the left to sort. To delete - click the \"X\" to the right of each row." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:122 +msgid "Attribute Options" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:121 +msgid "Add Option" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:105 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:523 +msgid "Sort Order" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:87 +msgid "Alphabetical" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:86 +msgid "ID" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:84 +msgid "Select how the options will be sorted." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:82 +msgid "Sort By" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:75 +msgid "The name of the attribute (e.g. color, size, etc)" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:74 +msgid "Attribute Name" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:69 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Product Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Product Attributes" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:71 +msgid "You can choose to make this page one of the following core store pages." +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:66 +msgid "Network Store Base" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:61 +msgid "Checkout Page" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:52 +msgid "Store Page Settings" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1108 +msgid "Display billing/shipping info for this customer" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1097 +msgid "View order “%s”" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1072 +msgid "Flag as:" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:952 +msgid "Move To Trash" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:948 +msgid " Received" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:927 +msgid "Enter coupon code here" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:812 +msgid "The order status could not be updated due to unexpected error. Please try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:740 +msgid "An invalid bulk action was requested. Please go back and try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:692 +msgid "The order status for order ID %1$s was updated successfully." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:688 +msgid "Order statuses successfully updated." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:530 +msgid "Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:518 +msgid "Actual Shipping Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:513 +msgid "Method Paid For" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:504 +msgid "Amount Collected" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:477 +msgid "DHL" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:408 +msgid "There is no IPN history to show at this time" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:345 +msgid "Type" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:343 +msgid "Gateway" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:301 +#: includes/common/template-functions.php:528 +msgid "Order History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:291 +msgid "IPN History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:283 +msgid "Customer Info" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:279 +msgid "Order Details" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:157 +msgid "All Dates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:320 +msgid "Add Pages to Menu" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:318 +msgid "Add-ons" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:317 +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "User Capabilities" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:316 +#: includes/admin/class-mp-setup-wizard.php:631 +#: includes/admin/store-settings/class-mp-store-settings-payments.php:50 +msgid "Payment Gateways" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:315 +msgid "Shipping Rates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:312 +msgid "Configure" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:309 +#: includes/admin/class-mp-products-admin.php:466 +#: includes/admin/class-mp-shortcode-builder.php:797 +msgid "Tags" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:308 +#: includes/admin/class-mp-products-admin.php:465 +msgid "Categories" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:300 +msgid "Manage" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:297 +msgid "Here's some quick links to manage your store and products." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:288 +msgid "low in stock" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:287 +msgid "%s product" +msgid_plural "%s products" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: includes/admin/class-mp-dashboard-widgets.php:280 +msgid "received" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:279 +#: includes/admin/class-mp-dashboard-widgets.php:283 +msgid "%s order" +msgid_plural "%s orders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: includes/admin/class-mp-dashboard-widgets.php:276 +msgid "Stock & Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:261 +msgid "Last 30 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:256 +msgid "Last 7 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:251 +msgid "Yesterday" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:248 +#: includes/admin/class-mp-dashboard-widgets.php:253 +#: includes/admin/class-mp-dashboard-widgets.php:258 +#: includes/admin/class-mp-dashboard-widgets.php:263 +msgid " Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:246 +msgid "Today" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:241 +msgid "Welcome back! Here's a quick summary of your store's performance." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:196 +#: includes/admin/class-mp-products-admin.php:895 +msgid "No products out of stock." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:136 +#: includes/admin/class-mp-products-admin.php:839 +msgid "Stock Level" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:135 +#: includes/admin/class-mp-products-admin.php:838 +msgid "Variation" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:121 +msgid "Low Stock (%s)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:116 +msgid "Store Management" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:115 +msgid "Store Reports" +msgstr "" + +#: includes/admin/class-mp-ajax.php:579 +#: includes/admin/class-mp-orders-admin.php:520 +#: includes/common/payment-gateways/2checkout.php:370 +#: includes/common/payment-gateways/authorizenet-aim.php:264 +#: includes/common/payment-gateways/mollie.php:93 +#: includes/common/payment-gateways/paymill.php:196 +#: includes/common/payment-gateways/pin.php:190 +#: includes/common/payment-gateways/skrill.php:157 +#: includes/common/payment-gateways/skrill.php:168 +#: includes/common/payment-gateways/wepay.php:143 +#: includes/public/class-mp-checkout.php:404 +msgid "Select One" +msgstr "" + +#: includes/admin/class-mp-ajax.php:511 +msgid "Oops... we could not locate any orders by that ID. Please double check your order ID and try again." +msgstr "" + +#: includes/admin/class-mp-ajax.php:482 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:166 +#: includes/multisite/class-mp-admin-multisite.php:584 +msgid "Edit Page" +msgstr "" + +#: includes/admin/class-mp-ajax.php:346 +msgid "Cancel " +msgstr "" + +#: includes/admin/class-mp-ajax.php:345 +msgid "Save " +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "Edit Description" +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "HTML Markup" +msgstr "" + +#: includes/admin/class-mp-ajax.php:333 +msgid "Plain Text Only" +msgstr "" + +#: includes/admin/class-mp-ajax.php:329 +msgid "Additional Content / Information for this Variation" +msgstr "" + +#: includes/admin/class-mp-ajax.php:317 +#: includes/admin/class-mp-products-admin.php:1762 +msgid "Allow this product to be purchased even if it's out of stock" +msgstr "" + +#: includes/admin/class-mp-ajax.php:313 +#: includes/admin/class-mp-products-admin.php:1711 +msgid "Track Product Inventory" +msgstr "" + +#: includes/admin/class-mp-ajax.php:300 +msgid "Extra Shipping Cost (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:295 +msgid "Ounces:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:294 +msgid "Pounds:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:292 +msgid "Kilograms:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:287 +#: includes/admin/class-mp-products-admin.php:1649 +msgid "Charge Shipping" +msgstr "" + +#: includes/admin/class-mp-ajax.php:273 +#: includes/admin/class-mp-products-admin.php:1623 +#: includes/admin/store-settings/class-mp-store-settings-general.php:454 +msgid "Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:272 +#: includes/admin/class-mp-products-admin.php:1622 +#: includes/admin/class-mp-products-admin.php:2090 +#: includes/admin/class-mp-products-admin.php:2408 +msgid "Special Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:271 +#: includes/admin/class-mp-products-admin.php:1625 +#: includes/admin/class-mp-products-admin.php:2092 +msgid "If you would like this product to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-ajax.php:268 +#: includes/admin/class-mp-products-admin.php:1599 +msgid "Charge Taxes (Special Rate)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:256 +#: includes/admin/class-mp-products-admin.php:1593 +#: includes/admin/class-mp-products-admin.php:2077 +#: includes/admin/class-mp-products-admin.php:2348 +msgid "End Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:255 +#: includes/admin/class-mp-products-admin.php:1589 +#: includes/admin/class-mp-products-admin.php:2072 +msgid "Start Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:1568 +msgid "Enter Sale Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:250 +#: includes/admin/class-mp-products-admin.php:1547 +msgid "Set up a Sale for this Product" +msgstr "" + +#: includes/admin/class-mp-ajax.php:206 includes/admin/class-mp-ajax.php:223 +msgid "Enter " +msgstr "" + +#: includes/admin/class-mp-ajax.php:193 +msgid "Browse" +msgstr "" + +#: includes/admin/class-mp-ajax.php:184 includes/admin/class-mp-ajax.php:192 +msgid "http://" +msgstr "" + +#: includes/admin/class-mp-ajax.php:183 +msgid "External Product URL" +msgstr "" + +#: includes/admin/class-mp-ajax.php:237 +msgid "Limit Per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:177 +#: includes/admin/class-mp-products-admin.php:1520 +msgid "Enter Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:174 +#: includes/admin/class-mp-products-admin.php:1512 +msgid "Enter SKU" +msgstr "" + +#: includes/admin/class-mp-ajax.php:173 +msgid "(Stock Keeping Unit)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:158 +msgid "Remove Image" +msgstr "" + +#: includes/admin/class-mp-ajax.php:74 +msgid "Variation Draft" +msgstr "" + +#: includes/admin/class-mp-admin.php:296 +#: includes/admin/class-mp-dashboard-widgets.php:70 +msgid "Please wait...saving in progress..." +msgstr "" + +#: includes/admin/class-mp-admin.php:295 +#: includes/admin/class-mp-dashboard-widgets.php:69 +msgid "Input is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:294 +#: includes/admin/class-mp-dashboard-widgets.php:68 +msgid "Valid number is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:292 +#: includes/admin/class-mp-dashboard-widgets.php:66 +msgid "Delete %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:291 +#: includes/admin/class-mp-dashboard-widgets.php:65 +msgid "Delete %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:290 +#: includes/admin/class-mp-dashboard-widgets.php:64 +msgid "Update inventory for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:289 +#: includes/admin/class-mp-dashboard-widgets.php:63 +msgid "Update inventory for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:288 +#: includes/admin/class-mp-dashboard-widgets.php:62 +msgid "Update price for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:287 +#: includes/admin/class-mp-dashboard-widgets.php:61 +msgid "Update prices for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:285 +#: includes/admin/class-mp-dashboard-widgets.php:59 +msgid "Creating variations, please wait..." +msgstr "" + +#: includes/admin/class-mp-admin.php:96 +msgid "The following payment gateways have been deprecated, Cubepoints, Bitpay, iDEAL, Skrill, Google Checkout. If you were using one of these gateways, please setup a new payment gateway here." +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:61 +msgid "Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:71 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:71 +#: includes/common/class-mp-gdpr.php:399 includes/common/class-mp-order.php:872 +#: includes/common/helpers.php:164 includes/public/class-mp-checkout.php:1434 +msgid "Shipping Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:66 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:66 +#: includes/common/class-mp-gdpr.php:392 includes/common/class-mp-order.php:864 +#: includes/common/helpers.php:163 includes/public/class-mp-checkout.php:1427 +msgid "Billing Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:61 +msgid "Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:258 +msgid "Shipping Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:256 +msgid "Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:235 +msgid "Payment Method: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:79 +msgid "The dir %s not exist or not writeable" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:239 +msgid "Shop header/logo" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:233 +msgid "Choose a template" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:226 +msgid "Template Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:221 +msgid "Disable automatic creation/attachment of invoices when only free products are ordered" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:220 +msgid "Disable for free products" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:216 +msgid "Attach invoice to" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:214 +msgid "Customer Order Shipped email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:212 +msgid "Customer New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:211 +msgid "Admin New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:206 +msgid "download" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:205 +msgid "How do you want to view the PDF?" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:203 +msgid "Open the PDF in a new browser tab/window" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:202 +msgid "Download the PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:158 +msgid "Export PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:103 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:106 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:109 +msgid "You can't download this order invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:76 +msgid "Invalid Request" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:72 +msgid "Order not exist!" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:67 +msgid "Invalid ID" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1293 +msgid "Coupon added successfully" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1292 +msgid "Please enter a code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1247 +msgid "No end" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1200 +msgid "Valid Dates" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1195 +msgid "Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1027 +msgid "No Coupons found in Trash" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1026 +msgid "No Coupons Found" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1025 +msgid "Search Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1024 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1028 +msgid "View Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1023 +msgid "New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1020 +msgid "Create New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1017 +msgid "Manage Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1002 +msgid "An error occurred while removing your coupon. Please try again." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:964 +msgid "Coupon can't be applied to this cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:951 +msgid "Invalid coupon code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:794 +msgid "Help Text" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:789 +msgid "Form Title" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:783 +msgid "Coupons Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:764 +msgid "End Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:758 +msgid "Does coupon have an end date?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:696 +msgid "Select Products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:688 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:723 +#: includes/common/payment-gateways/paypal-payflow.php:402 +msgid "User" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:638 +msgid "Max Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:636 +msgid "Enter the maximum number of times this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:623 +msgid "Leave blank to allow all other coupons." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:622 +msgid "Select combinable coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:618 +msgid "Can this coupon be combined with other coupons?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:613 +msgid "Apply to each applicable item once per cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:612 +msgid "Apply to each applicable item and quantity ordered" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:609 +msgid "How should the discount amount be applied?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:605 +msgid "Discount Amount" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:604 +msgid "Value must either be a decimal number or a percentage" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:602 +msgid "If you would like to give a percentage-based discount make sure to include the percent (%) symbol. Otherwise, the discount will be applied as a fixed amount off." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:595 +msgid "Letters and Numbers only." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:589 +msgid "Coupon Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:447 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:795 +msgid "More than one code? That's OK! Just be sure to enter one at a time." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:444 +msgid "Apply Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:314 +msgid "Coupon Discounts" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:89 +msgid "1 add-on disabled" +msgid_plural "%s add-ons disabled" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: includes/addons/class-mp-addons-list-table.php:84 +msgid "1 add-on enabled" +msgid_plural "%s add-ons enabled" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Disabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Enable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:129 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:67 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:135 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:168 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:202 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:263 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:296 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:330 +msgid "Enabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +msgid "Disable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:34 +msgid "Disable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:33 +msgid "Enable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:21 +#: includes/admin/class-mp-products-admin.php:2280 +#: includes/common/class-mp-product.php:2916 +msgid "Description" +msgstr "" + +#: includes/common/template-functions.php:2889 +#: includes/multisite/template-functions.php:407 +msgid "Popularity (Least Popular - Most Popular)" +msgstr "شعبية (الأقل شعبية-الأكثر شعبية)" + +#: includes/common/template-functions.php:2888 +#: includes/multisite/template-functions.php:406 +msgid "Popularity (Most Popular - Least Popular)" +msgstr "شعبية (الأكثر شعبية-شعبية على الأقل)" + +#: includes/common/template-functions.php:2885 +#: includes/multisite/template-functions.php:403 +msgid "Name (Z-A)" +msgstr "اسم (ي-أ)" + +#: includes/common/template-functions.php:2884 +#: includes/multisite/template-functions.php:402 +msgid "Name (A-Z)" +msgstr "اسم (A-Z)" + +#: includes/common/template-functions.php:2883 +#: includes/multisite/template-functions.php:401 +msgid "Release Date (Oldest to Latest)" +msgstr "تاريخ الإصدار (الأقدم إلى الأحدث)" + +#: includes/common/template-functions.php:2882 +#: includes/multisite/template-functions.php:400 +msgid "Release Date (Latest to Oldest)" +msgstr "تاريخ الإصدار (أحدث لأقدم)" + +#: includes/admin/class-mp-dashboard-widgets.php:284 +msgid "paid" +msgstr "دفعت" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "One Time Pickup" +msgstr "بيك آب مرة واحدة" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Customer Counter" +msgstr "مواجهة العملاء" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Daily Pickup" +msgstr "بيك آب اليومي" + +#: includes/common/shipping-modules/mp-ups.php:182 +msgid "For the most accurate rates, please select the appropriate pick up type for your business." +msgstr "للمعدلات الأكثر دقة، الرجاء تحديد التقاط المناسبة إلى نوع للأعمال التجارية الخاصة بك." + +#: includes/admin/class-mp-admin.php:374 +msgid "Page saved." +msgstr "حفظ الصفحة." + +#: includes/admin/class-mp-admin.php:370 +msgid "Custom field deleted." +msgstr "حذف حقل مخصص." + +#: includes/admin/class-mp-admin.php:369 +msgid "Custom field updated." +msgstr "تحديث الحقل المخصص." + +#: includes/common/payment-gateways/_bitpay.php:541 +msgid "%s - The payment request expired, - %s" +msgstr "% s-انتهت صلاحية طلب الدفع،--% s" + +#: includes/common/payment-gateways/_bitpay.php:536 +msgid "%s - The payment not credited in merchants bitpay account, action required. Bitpay invoice status - %s" +msgstr "% s-الدفع لا تقيد في حساب بيتباي التجار، والإجراء المطلوب. حالة الفاتورة بيتباي-% s" + +#: includes/common/payment-gateways/_bitpay.php:252 +msgid "If enabled, you will recieve an email for each status update on payment." +msgstr "إذا تم تمكين، سوف تتلقى رسالة بريد إلكتروني لكل حالة التحديث على الدفع." + +#: includes/common/payment-gateways/_bitpay.php:240 +msgid "Speed at which the bitcoin transaction registers as \"confirmed\" to the store. This overrides your merchant settings on the Bitpay website." +msgstr "السرعة التي تسجل حركة بيتكوين ك \"أكد\" للمخزن. يؤدي هذا إلى تجاوز إعدادات التاجر على موقع بيتباي." + +#: includes/common/payment-gateways/_bitpay.php:238 +msgid "Transaction Speed" +msgstr "سرعة الحركة" + +#: includes/common/payment-gateways/_bitpay.php:244 +msgid "Low" +msgstr "منخفض" + +#: includes/common/payment-gateways/_bitpay.php:243 +msgid "Medium" +msgstr "متوسطة" + +#: includes/common/payment-gateways/_bitpay.php:242 +msgid "High" +msgstr "عالية" + +#: includes/common/payment-gateways/_bitpay.php:177 +#: includes/common/payment-gateways/_bitpay.php:517 +#: includes/common/payment-gateways/_bitpay.php:522 +msgid "%s - The payment request is under process. Bitpay invoice status - %s" +msgstr "% s-طلب الدفع تحت العملية. حالة الفاتورة بيتباي-% s" + +#: includes/common/payment-gateways/_bitpay.php:175 +#: includes/common/payment-gateways/_bitpay.php:527 +msgid "%s - The payment request has been processed - %s" +msgstr "% s-تم معالجة الطلب الدفع-% s" + +#: includes/common/payment-gateways/_bitpay.php:150 +#: includes/common/payment-gateways/_bitpay.php:294 +msgid "Incorrect order invoice, please contact site administrator" +msgstr "أمر غير صحيح الفاتورة، الرجاء الاتصال بالمسؤول عن الموقع" + +#: includes/common/payment-gateways/_bitpay.php:141 +msgid "We could not verify order invoice details, please try again or contact site administrator for help" +msgstr "نحن تعذر التحقق من تفاصيل الفاتورة أمر، الرجاء المحاولة مرة أخرى أو اتصل بمسؤول الموقع للحصول على مساعدة" + +#: includes/common/payment-gateways/simplify.php:81 +msgid "Login to Simplify to get your API credentials. Enter your test credentials, then live ones when ready." +msgstr "تسجيل الدخول إلى تبسيط الحصول على بيانات الاعتماد الخاصة بك API. قم بإدخال بيانات الاعتماد الخاصة بك اختبار، ثم يعيش منها عندما تكون جاهزاً." + +#: includes/common/payment-gateways/paypal-express.php:605 +#: includes/common/payment-gateways/paypal-express.php:647 +msgid "Express Checkout is PayPal's premier checkout solution, which streamlines the checkout process for buyers and keeps them on your site after making a purchase. Unlike PayPal Pro, there are no additional fees to use Express Checkout, though you may need to do a free upgrade to a business account. More Info »" +msgstr "Express Checkout هو الحل بأي بال للدفع ، الذي يبسط عملية السحب للمشترين ويبقيهم على موقع الويب الخاص بك بعد إجراء عملية شراء. خلافا للمحترفين بأي بال، لم يكن هناك لا رسوم إضافية استخدام \"Express Checkout\"، على الرغم من قد تحتاج إلى القيام بترقية مجانية لحساب رجال أعمال. مزيد من المعلومات»" + +#. Plugin URI of the plugin/theme +msgid "https://premium.wpmudev.org/project/e-commerce/" +msgstr "https://premium.wpmudev.org/project/e-commerce/" + +#. Author of the plugin/theme +msgid "WPMU DEV" +msgstr "ديف WPMU" + +#: includes/admin/class-mp-orders-admin.php:541 +#: includes/admin/class-mp-orders-admin.php:543 +msgid "Tracking Number" +msgstr "رقم التتبع" + +#: includes/common/class-mp-order.php:805 +#: includes/common/payment-gateways/stripe.php:336 +#: includes/public/class-mp-checkout.php:402 +msgid "Country" +msgstr "البلد" + +#: includes/common/class-mp-order.php:784 +#: includes/common/payment-gateways/stripe.php:338 +msgid "City" +msgstr "مدينة" + +#: includes/common/class-mp-order.php:780 +msgid "Address 2" +msgstr "العنوان 2" + +#: includes/common/payment-gateways/stripe.php:340 +msgid "Address" +msgstr "عنوان" + +#: includes/common/class-mp-cart.php:752 includes/common/class-mp-gdpr.php:378 +msgid "Order Total" +msgstr "إجمالي الطلبية" + +#: includes/admin/class-mp-orders-admin.php:360 +msgid "Payment Total" +msgstr "إجمالي المدفوعات" + +#: includes/admin/class-mp-orders-admin.php:347 +msgid "Transaction ID" +msgstr "معرف العملية" + +#: includes/common/payment-gateways/wepay.php:207 +msgid "The WePay Card Token was not generated correctly. Please go back and try again." +msgstr "الرمز المميز بطاقة فيبي لم يتم إنشاء بشكل صحيح. يرجى العودة والمحاولة مرة أخرى." + +#: includes/common/payment-gateways/wepay.php:186 +#: includes/common/shipping-modules/mp-fedex.php:283 +msgid "Account ID" +msgstr "معرف الحساب" + +#: includes/common/payment-gateways/wepay.php:179 +msgid "Access Token" +msgstr "الرمز المميز للوصول" + +#: includes/common/payment-gateways/wepay.php:172 +msgid "Client Secret" +msgstr "العميل السري" + +#: includes/common/payment-gateways/wepay.php:165 +msgid "Client ID" +msgstr "معرف العميل" + +#: includes/common/payment-gateways/wepay.php:159 +msgid "You must login to WePay to get your API credentials. Make sure to check \"Tokenize credit cards\" option under \"API Keys\" section of your WePay app." +msgstr "يجب عليك تسجيل الدخول إلى فيبي الحصول على بيانات الاعتماد الخاصة بك API. تأكد من التحقق من الخيار \"بطاقات الائتمان Tokenize\" تحت القسم \"مفاتيح API\" للتطبيق الخاص بك فيبي." + +#: includes/common/payment-gateways/wepay.php:154 +msgid "When in live mode it is recommended to use SSL certificate setup for the site where the checkout form will be displayed." +msgstr "عندما تكون في وضع حية من المستحسن استخدام الإعداد شهادة SSL للموقع حيث سيتم عرض نموذج الدفع." + +#: includes/common/payment-gateways/wepay.php:148 +msgid "Donation" +msgstr "التبرع" + +#: includes/common/payment-gateways/wepay.php:147 +msgid "Event" +msgstr "الحدث" + +#: includes/common/payment-gateways/wepay.php:146 +msgid "Personal" +msgstr "شخصية" + +#: includes/common/payment-gateways/wepay.php:145 +msgid "Service" +msgstr "خدمة" + +#: includes/common/payment-gateways/wepay.php:144 +msgid "Goods" +msgstr "السلع" + +#: includes/common/payment-gateways/wepay.php:141 +msgid "Choose type of payments" +msgstr "اختر نوع الدفع" + +#: includes/common/payment-gateways/wepay.php:140 +msgid "Checkout Type" +msgstr "نوع السحب" + +#: includes/common/payment-gateways/wepay.php:134 +msgid "Staging" +msgstr "التدريج" + +#: includes/common/payment-gateways/wepay.php:131 +msgid "Choose STAGING if you have registered the app on stage.wepay.com, or PRODUCTION if you registered on www.wepay.com" +msgstr "اختر التدريج إذا كنت قد سجلت التطبيق على stage.wepay.com، أو الإنتاج إذا كنت مسجلاً في www.wepay.com" + +#: includes/common/payment-gateways/wepay.php:36 +#: includes/common/payment-gateways/wepay.php:299 +msgid "WePay" +msgstr "فيبي" + +#: includes/common/payment-gateways/_payway.php:366 +msgid "Rejected - A payment was rejected." +msgstr "رفض-ورفض دفع." + +#: includes/common/payment-gateways/_payway.php:360 +msgid "Failed - A payment was rejected due to an error." +msgstr "فشل--تم رفض دفع بسبب خطأ." + +#: includes/common/payment-gateways/_payway.php:342 +msgid "PayWay balance, Credit Card, or Instant Transfer" +msgstr "التوازن بايواي، بطاقة الائتمان، أو نقل فورية" + +#: includes/common/payment-gateways/_payway.php:298 +msgid "Full path of the cacerts.crt file" +msgstr "المسار الكامل للملف cacerts.crt" + +#: includes/common/payment-gateways/_payway.php:284 +msgid "User Name" +msgstr "اسم المستخدم" + +#: includes/common/payment-gateways/_payway.php:277 +msgid "Biller Code" +msgstr "كود المفوتر" + +#: includes/common/payment-gateways/_payway.php:273 +msgid "Log Directory" +msgstr "دليل سجل" + +#: includes/common/payment-gateways/_payway.php:266 +msgid "Encryption Key" +msgstr "مفتاح التشفير" + +#: includes/common/payment-gateways/_payway.php:60 +msgid "Your PayWay transaction has been canceled." +msgstr "تم إلغاء المعاملة بايواي الخاص بك." + +#: includes/common/payment-gateways/_payway.php:40 +#: includes/common/payment-gateways/_payway.php:41 +msgid "PayWay" +msgstr "بايواي" + +#: includes/common/payment-gateways/paypal-chained-payments.php:862 +msgid "You must register this application with PayPal using your business account login to get an Application ID that will work with your API credentials. A bit of a hassle, but worth it! In the near future we will be looking for ways to simplify this process. Register then submit your application while logged in to the developer portal. Note that you do not need an Application ID for testing in sandbox mode. More Information »" +msgstr "يجب عليك تسجيل هذا التطبيق مع بأي بال باستخدام تسجيل الدخول إلى حساب الأعمال التجارية الخاصة بك للحصول على \"معرف التطبيق\" التي سوف تعمل مع بيانات الاعتماد الخاصة بك API. قليلاً من المتاعب، ولكن يستحق كل هذا العناء! في المستقبل القريب ونحن سوف تبحث عن طرق تبسيط هذه العملية. السجل ثم تقديم التطبيق الخاص بك أثناء تسجيل الدخول إلى بوابة المطور. علما أن لا تحتاج \"معرف التطبيق\" للاختبار في وضع إليه تحديد الصلاحيات. مزيد من المعلومات»" + +#: includes/common/payment-gateways/paypal-chained-payments.php:818 +#: includes/common/payment-gateways/paypal-chained-payments.php:840 +#: includes/common/payment-gateways/paypal-express.php:705 +msgid "You must login to PayPal and create an API signature to get your credentials. Instructions »" +msgstr "يجب عليك تسجيل الدخول إلى بأي بال وإنشاء توقيع API للحصول على بيانات الاعتماد الخاصة بك. تعليمات»" + +#: includes/common/payment-gateways/paypal-payflow.php:378 +msgid "Use Payflow payment gateway to accept online payments using your Internet merchant account and processing network. PayPal Payflow Pro is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway." +msgstr "استخدام بوابة الدفع بايفلوو لقبول المدفوعات عبر الإنترنت باستخدام حساب إنترنت الخاص بك التاجر وتجهيز شبكة. بأي بال بايفلوو برو هو دفع لتخصيص تجهيز الحل الذي يعطي السيطرة التجارية على جميع الخطوات في تجهيز معاملة. مطلوب شهادة SSL استخدام هذه العبارة." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:595 +msgid "Tags Only" +msgstr "العلامات فقط" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:594 +msgid "Category Only" +msgstr "الفئة فقط" + +#: includes/admin/class-mp-shortcode-builder.php:795 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:593 +msgid "Category & Tags" +msgstr "الفئة والعﻻمات" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:591 +msgid "Relate Products By" +msgstr "تتعلق بالمنتجات التي" + +#: includes/admin/class-mp-shortcode-builder.php:1008 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:455 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:751 +msgid "Right" +msgstr "حق" + +#: includes/admin/class-mp-shortcode-builder.php:1007 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:454 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:749 +msgid "Left" +msgstr "اليسار" + +#: includes/admin/class-mp-shortcode-builder.php:1009 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:750 +msgid "Center" +msgstr "مركز" + +#: marketpress.php:273 +msgid "Orders from your e-commerce store." +msgstr "أوامر من مخزن التجارة الإلكترونية الخاصة بك." + +#: marketpress.php:231 +msgid "Products for your e-commerce store." +msgstr "منتجات لمخزن التجارة الإلكترونية الخاصة بك." + +#: marketpress.php:222 +msgid "Edit Product" +msgstr "تحرير المنتج" + +#. Description of the plugin/theme +msgid "The complete WordPress ecommerce plugin - works perfectly with BuddyPress and Multisite too to create a social marketplace, where you can take a percentage! Activate the plugin, adjust your settings then add some products to your store." +msgstr "التجارة الإلكترونية وورد كامل البرنامج المساعد--يعمل تماما مع BuddyPress والمواقع المتعددة جداً إنشاء سوق اجتماعية، حيث يمكنك أن تأخذ نسبة مئوية! تفعيل البرنامج المساعد، وضبط الإعدادات الخاصة بك ثم إضافة بعض المنتجات إلى المخزن الخاص بك." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:272 +msgid "Beside" +msgstr "بجوار" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:271 +msgid "Above" +msgstr "أعلاه" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:268 +msgid "Pin Count" +msgstr "العدد رقم pin" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:261 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:287 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:318 +msgid "All View" +msgstr "عرض جميع" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:260 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:286 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:317 +msgid "Single View" +msgstr "عرض واحد" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:259 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:285 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:316 +msgid "Off" +msgstr "قبالة" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:578 +msgid "Related Product Limit" +msgstr "حد المنتج ذات الصلة" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:681 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1201 +msgid "Applies To" +msgstr "وينطبق على" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:685 +msgid "All Products" +msgstr "جميع المنتجات" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:487 +msgid "The label shown for the tax line item in the cart. Taxes, VAT, GST, etc." +msgstr "التسمية سيظهر لبند الضرائب في العربة. الضرائب، ضريبة القيمة المضافة، وضريبة السلع والخدمات، إلخ." + +#: includes/admin/class-mp-setup-wizard.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:485 +msgid "Tax Label" +msgstr "تسمية الضرائب" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:81 +msgid "Apply" +msgstr "تطبيق" + +#: includes/admin/class-mp-admin.php:192 +msgid "MarketPress Instructions" +msgstr "تعليمات ماركيتبريس" + +#: includes/admin/class-mp-products-admin.php:1954 +#: includes/admin/class-mp-products-admin.php:2194 includes/common/data.php:62 +#: includes/common/helpers.php:150 +msgid "Taxes" +msgstr "الضرائب" + +#: includes/admin/class-mp-products-admin.php:1417 +#: includes/common/class-mp-product.php:2900 +msgid "Related Products" +msgstr "المنتجات ذات الصلة" + +#: includes/common/shipping-modules/mp-usps.php:282 +#: includes/common/shipping-modules/mp-usps.php:316 +msgid "@ Max" +msgstr "@ ماكس" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "(3-5 days)" +msgstr "(3-5 أيام)" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "Priority Mail Express International Padded Flat Rate Envelope" +msgstr "البريد ذات الأولوية التعبير عن الظرف الدولي معدل مسطحة مبطن" + +#: includes/common/shipping-modules/mp-usps.php:92 +msgid "Priority Mail Padded Flat Rate Envelope" +msgstr "المغلف مبطن مسطحة معدل البريد ذات الأولوية" + +#: includes/common/shipping-modules/mp-pickup.php:171 +#: includes/common/shipping-modules/mp-pickup.php:247 +msgid "In Store" +msgstr "في مخزن" + +#: includes/common/shipping-modules/mp-pickup.php:159 +msgid "Pickup Fee" +msgstr "رسوم بيك آب" + +#: includes/common/shipping-modules/mp-pickup.php:141 +msgid "This option allows your customers to indicate that they will pick-up their order at your place of business." +msgstr "يسمح هذا الخيار للعملاء الخاص بك للإشارة إلى أنهم سوف البيك آب ترتيبها في مكان العمل الخاص بك." + +#: includes/common/shipping-modules/mp-pickup.php:60 +#: includes/common/shipping-modules/mp-pickup.php:76 +#: includes/common/shipping-modules/mp-pickup.php:176 +msgid "Pickup Instructions" +msgstr "تعليمات بيك آب" + +#: includes/common/shipping-modules/mp-pickup.php:24 +#: includes/common/shipping-modules/mp-pickup.php:254 +msgid "Pickup" +msgstr "بيك آب" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping - 0.00" +msgstr "الشحن مجاناً-0.00" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:256 +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:440 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping" +msgstr "الشحن المجاني" + +#: includes/common/shipping-modules/mp-fedex.php:309 +msgid "Your Packaging" +msgstr "جهاز التعبئة والتغليف" + +#: includes/common/shipping-modules/mp-fedex.php:301 +msgid "Station" +msgstr "محطة" + +#: includes/common/shipping-modules/mp-fedex.php:300 +msgid "Request Courier" +msgstr "ساعي الطلب" + +#: includes/common/shipping-modules/mp-fedex.php:299 +msgid "Drop Box" +msgstr "إسقاط مربع" + +#: includes/common/shipping-modules/mp-fedex.php:298 +msgid "Business Service Center" +msgstr "مركز خدمة رجال الأعمال" + +#: includes/common/shipping-modules/mp-fedex.php:297 +msgid "Regular Pickup" +msgstr "بيك آب العادية" + +#: includes/common/payment-gateways/wepay.php:135 +#: includes/common/shipping-modules/mp-fedex.php:264 +msgid "Production" +msgstr "إنتاج" + +#: includes/common/payment-gateways/simplify.php:207 +msgid "Simplify Commerce by MasterCard" +msgstr "تبسيط التجارة من ماستركارد" + +#: includes/common/payment-gateways/simplify.php:104 +msgid "When in live mode, although it is not required, Simplify recommends you have an SSL certificate." +msgstr "عندما تكون في وضع حية، على الرغم من أنه غير مطلوب، وتبسيط توصي لديك شهادة SSL." + +#: includes/common/payment-gateways/paymill.php:183 +#: includes/common/payment-gateways/simplify.php:87 +msgid "Public Key" +msgstr "المفتاح العمومي" + +#: includes/common/payment-gateways/paymill.php:175 +#: includes/common/payment-gateways/simplify.php:94 +msgid "Private Key" +msgstr "المفتاح الخاص" + +#: includes/common/payment-gateways/simplify.php:71 +msgid "Simplify helps merchants to accept online payments from Mastercard, Visa, American Express, Discover, JCB, and Diners Club cards. It's that simple. We offer a merchant account and payment gateway in a single, secure package so you can concentrate on what really matters to your business. Only supports USD currently." +msgstr "تبسيط يساعد التجار قبول المدفوعات عبر الإنترنت من بطاقات ماستركارد وفيزا، أمريكان إكسبريس، اكتشف، JCB، وداينرز كلوب. أن بسيطة. نحن نقدم حساب التاجر وبوابة الدفع في حزمة واحدة، وآمنة حتى تتمكن من التركيز على ما يهم حقاً للأعمال التجارية الخاصة بك. فقط يدعم الدولار حاليا." + +#: includes/common/payment-gateways/wepay.php:267 +msgid "%1$s" +msgstr "% 1$ s" + +#: includes/common/payment-gateways/simplify.php:151 +msgid "The Simplify Token was not generated correctly. Please go back and try again." +msgstr "تبسيط رمز لم يتم إنشاء بشكل صحيح. يرجى العودة والمحاولة مرة أخرى." + +#: includes/common/payment-gateways/simplify.php:18 +msgid "Simplify" +msgstr "تبسيط" + +#: includes/common/payment-gateways/pin.php:255 +msgid "%1$s Card %2$s" +msgstr "% 1$ s بطاقة % 2$ s" + +#: includes/common/payment-gateways/pin.php:211 +msgid "The PIN Token was not generated correctly. Please go back and try again." +msgstr "لم يتم إنشاء رمز PIN بشكل صحيح. يرجى العودة والمحاولة مرة أخرى." + +#: includes/common/payment-gateways/pin.php:187 +msgid "Selecting a currency other than currency supported by PIN may cause problems at checkout." +msgstr "تحديد بعمله خلاف العملة التي تدعمها PIN قد يسبب مشاكل في عملية الدفع." + +#: includes/common/payment-gateways/pin.php:164 +msgid "You must login to PIN to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "يجب عليك تسجيل الدخول إلى رقم التعريف الشخصي الحصول على بيانات الاعتماد الخاصة بك API. يمكنك إدخال مفاتيح الاختبار الخاصة بك، ثم يعيش منها عندما تكون جاهزاً." + +#: includes/common/payment-gateways/pin.php:158 +msgid "When in live mode PIN recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "عندما توصي بدبوس في وضع العيش لديك إعداد شهادة SSL للموقع حيث سيتم عرض نموذج الدفع." + +#: includes/common/payment-gateways/pin.php:45 +#: includes/common/payment-gateways/pin.php:286 +msgid "PIN" +msgstr "رقم التعريف الشخصي" + +#: includes/common/payment-gateways/paypal-express.php:830 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer" +msgstr "وانعكس دفع نظراً تحميل التكاليف أو أي نوع آخر من عكس. أزيلت من رصيد حسابك الأموال وإرجاعها إلى المشتري" + +#: includes/common/payment-gateways/paypal-chained-payments.php:534 +#: includes/common/payment-gateways/paypal-express.php:865 +msgid "The payment is pending" +msgstr "الدفع معلق" + +#: includes/common/payment-gateways/paymill.php:235 +msgid "The Paymill Token was not generated correctly. Please go back and try again." +msgstr "لم يتم إنشاء الرمز المميز بإيميل بشكل صحيح. يرجى العودة والمحاولة مرة أخرى." + +#: includes/common/payment-gateways/paymill.php:169 +msgid "You must login to Paymill to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "يجب عليك تسجيل الدخول إلى بإيميل الحصول على بيانات الاعتماد الخاصة بك API. يمكنك إدخال مفاتيح الاختبار الخاصة بك، ثم يعيش منها عندما تكون جاهزاً." + +#: includes/common/payment-gateways/paymill.php:45 +#: includes/common/payment-gateways/paymill.php:308 +msgid "Paymill" +msgstr "بإيميل" + +#: includes/common/payment-gateways/paymill.php:90 +msgid "Invalid cardholder" +msgstr "حامل البطاقة غير صالحة" + +#: includes/common/payment-gateways/paymill.php:89 +msgid "Card is no longer valid or has expired" +msgstr "البطاقة لم تعد صالحة أو انتهت مدة صلاحيته" + +#: includes/common/payment-gateways/paymill.php:88 +msgid "Please enter a valid Card CVC" +msgstr "الرجاء إدخال \"سي بطاقة\" صالحة" + +#: includes/common/payment-gateways/paymill.php:87 +msgid "Please choose a valid Expiration Date." +msgstr "الرجاء اختيار \"تاريخ انتهاء\" صحيح." + +#: includes/common/payment-gateways/skrill.php:99 +#: includes/common/payment-gateways/skrill.php:100 +msgid "Skrill (Moneybookers)" +msgstr "سكريل (Moneybookers)" + +#: includes/common/shipping-modules/mp-weight-rate.php:24 +#: includes/common/shipping-modules/mp-weight-rate.php:292 +msgid "Weight Rate" +msgstr "معدل الوزن" + +#: includes/common/shipping-modules/mp-usps.php:303 +msgid "USPS Offered International Services" +msgstr "USPS تقدم الخدمات الدولية" + +#: includes/common/shipping-modules/mp-usps.php:270 +msgid "USPS Offered Domestic Services" +msgstr "USPS تقدم الخدمات المنزلية" + +#: includes/common/shipping-modules/mp-usps.php:264 +msgid "USPS Settings" +msgstr "إعدادات USPS" + +#: includes/common/shipping-modules/mp-usps.php:145 +msgid "Flat Rate Large" +msgstr "معدل مسطحة كبيرة" + +#: includes/common/shipping-modules/mp-usps.php:140 +msgid "Flat Rate Medium 2" +msgstr "معدل شقة متوسطة 2" + +#: includes/common/shipping-modules/mp-usps.php:135 +msgid "Flat Rate Medium 1" +msgstr "معدل شقة متوسطة 1" + +#: includes/common/shipping-modules/mp-usps.php:130 +msgid "Flat Rate Small" +msgstr "معدل شقة صغيرة" + +#: includes/common/shipping-modules/mp-usps.php:118 +msgid "First Class International Parcel" +msgstr "الطرود الدولية من الدرجة الأولى" + +#: includes/common/shipping-modules/mp-usps.php:114 +msgid "Priority Mail International Small Flat Rate Boxes" +msgstr "الأولوية البريد الدولي معدل شقة صغيرة مربعات" + +#: includes/common/shipping-modules/mp-usps.php:112 +msgid "Priority Mail International Medium Flat Rate Boxes" +msgstr "الأولوية البريد الدولي معدل مسطحة متوسطة مربعات" + +#: includes/common/shipping-modules/mp-usps.php:110 +msgid "Priority Mail International Large Flat Rate Boxes" +msgstr "الأولوية البريد الدولي معدل مسطحة كبيرة مربعات" + +#: includes/common/shipping-modules/mp-usps.php:108 +msgid "Priority Mail International" +msgstr "الأولوية البريد الدولي" + +#: includes/common/shipping-modules/mp-usps.php:106 +msgid "Express Mail International Flat Rate Boxes" +msgstr "التعبير عن صناديق البريد الدولي المعدل الثابت" + +#: includes/common/shipping-modules/mp-usps.php:104 +msgid "Express Mail International" +msgstr "البريد السريع الدولي" + +#: includes/common/shipping-modules/mp-usps.php:98 +msgid "Library Mail" +msgstr "بريد المكتبة" + +#: includes/common/shipping-modules/mp-usps.php:96 +msgid "Media Mail" +msgstr "بريد الإعلام" + +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "First-Class Mail Parcel" +msgstr "الطرود البريد من الدرجة الأولى" + +#: includes/common/shipping-modules/mp-usps.php:90 +msgid "Priority Mail Small Flat Rate Box" +msgstr "خانة صغيرة مسطحة معدل البريد ذات الأولوية" + +#: includes/common/shipping-modules/mp-usps.php:88 +msgid "Priority Mail Medium Flat Rate Box" +msgstr "مربع متوسط سعر موحد البريد ذات الأولوية" + +#: includes/common/shipping-modules/mp-usps.php:86 +#: includes/common/shipping-modules/mp-usps.php:88 +#: includes/common/shipping-modules/mp-usps.php:90 +#: includes/common/shipping-modules/mp-usps.php:92 +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "(2-4 days)" +msgstr "(2-4 أيام)" + +#: includes/common/shipping-modules/mp-usps.php:86 +msgid "Priority Mail Large Flat Rate Box" +msgstr "مربع كبيرة مسطحة معدل البريد ذات الأولوية" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "(2-4) days" +msgstr "أيام (2-4)" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "Priority Mail" +msgstr "الأولوية البريد" + +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "Express Mail Sunday/Holiday Delivery Flat Rate Boxes" +msgstr "التعبير عن صناديق مسطحة معدل تسليم عطلة يوم الأحد/البريد" + +#: includes/common/shipping-modules/mp-usps.php:80 +msgid "Express Mail Flat Rate Boxes Hold For Pickup" +msgstr "عقد مربعات مسطحة سعر البريد السريع بيك آب" + +#: includes/common/shipping-modules/mp-usps.php:78 +msgid "Express Mail Flat Rate Boxes" +msgstr "التعبير عن مربعات مسطحة معدل البريد" + +#: includes/common/shipping-modules/mp-usps.php:76 +msgid "Express Mail Sunday/Holiday Delivery" +msgstr "أعرب عن تسليم البريد يوم الأحد/عطلة" + +#: includes/common/shipping-modules/mp-usps.php:74 +msgid "Express Mail Hold For Pickup" +msgstr "التعبير عن عقد البريد بيك آب" + +#: includes/common/shipping-modules/mp-usps.php:72 +#: includes/common/shipping-modules/mp-usps.php:74 +#: includes/common/shipping-modules/mp-usps.php:76 +#: includes/common/shipping-modules/mp-usps.php:78 +#: includes/common/shipping-modules/mp-usps.php:80 +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "(1-2 days)" +msgstr "(1-2 أيام)" + +#: includes/common/shipping-modules/mp-usps.php:72 +msgid "Express Mail" +msgstr "البريد السريع" + +#: includes/common/shipping-modules/mp-usps.php:67 +#: includes/common/shipping-modules/mp-usps.php:902 +msgid "USPS" +msgstr "USPS" + +#: includes/common/shipping-modules/mp-ups.php:534 +msgid "UPS (beta)" +msgstr "يو بي إس (بيتا)" + +#: includes/common/shipping-modules/mp-ups.php:166 +msgid "Required if using negotiated rates" +msgstr "مطلوب في حالة استخدام التفاوض بشأن معدلات" + +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "Saver" +msgstr "التوقف" + +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "Worldwide Express Plus" +msgstr "في جميع أنحاء العالم بالإضافة إلى التعبير عن" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "(Scheduled)" +msgstr "(المقرر)" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "Standard" +msgstr "معيار" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "(2-5 Days)" +msgstr "(2-5 أيام)" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "Worldwide Expedited" +msgstr "الإسراع في جميع أنحاء العالم" + +#: includes/common/shipping-modules/mp-ups.php:54 +msgid "Worldwide Express" +msgstr "إكسبريس في جميع أنحاء العالم" + +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "2nd Day Air AM" +msgstr "الجوية يوم 2 صباحا" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "(1 Days)" +msgstr "(1 أيام)" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "Next Day Air Early AM" +msgstr "اليوم التالي للطيران وأنا مطلع" + +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "Next Day Air Saver" +msgstr "اليوم التالي الهواء التوقف" + +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "3 Day Select" +msgstr "حدد يوم 3" + +#: includes/common/shipping-modules/mp-ups.php:49 +msgid "Ground" +msgstr "الأرض" + +#: includes/common/shipping-modules/mp-ups.php:48 +msgid "2nd Day Air" +msgstr "اليوم الثاني للطيران" + +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "Next Day Air" +msgstr "اليوم التالي للطيران" + +#: includes/admin/class-mp-orders-admin.php:475 +#: includes/common/shipping-modules/mp-ups.php:43 +msgid "UPS" +msgstr "يو بي إس" + +#: includes/common/shipping-modules/mp-table-rate.php:27 +#: includes/common/shipping-modules/mp-table-rate.php:318 +msgid "Table Rate" +msgstr "معدل الجدول" + +#: includes/common/shipping-modules/mp-table-quantity.php:71 +#: includes/common/shipping-modules/mp-table-quantity.php:77 +msgid "Shipping Cost: " +msgstr "تكلفة الشحن:" + +#: includes/common/shipping-modules/mp-table-quantity.php:70 +#: includes/common/shipping-modules/mp-table-quantity.php:76 +msgid "If quantity is greater than:" +msgstr "إذا كانت كمية أكبر من:" + +#: includes/common/shipping-modules/mp-table-quantity.php:66 +msgid "Each band must be a higher price than the one above it." +msgstr "يجب أن تكون كل الفرقة بسعر أعلى من واحد فوقه." + +#: includes/common/shipping-modules/mp-table-quantity.php:56 +msgid "Number of Bands:" +msgstr "عدد الأشرطة:" + +#: includes/common/shipping-modules/mp-table-quantity.php:53 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Each layer must be a higher quantity than the previous." +msgstr "تأكد من إدخال سعر شحن لكل خيار أو قد هؤلاء العملاء من الحصول على حرية الملاحة. يجب أن تكون كل طبقة كمية أكبر من السابق." + +#: includes/common/shipping-modules/mp-table-quantity.php:51 +msgid "Table Quantity Settings" +msgstr "ضبط كمية الجدول" + +#: includes/common/shipping-modules/mp-table-quantity.php:31 +msgid "Table Quantity" +msgstr "كمية الجدول" + +#: includes/common/shipping-modules/mp-flat-rate.php:135 +#: includes/common/shipping-modules/mp-table-rate.php:174 +#: includes/common/shipping-modules/mp-weight-rate.php:189 +msgid "European Union" +msgstr "الاتحاد الأوروبي" + +#: includes/common/shipping-modules/mp-flat-rate.php:123 +#: includes/common/shipping-modules/mp-table-rate.php:162 +#: includes/common/shipping-modules/mp-weight-rate.php:177 +msgid "United States" +msgstr "الولايات المتحدة الأمريكية" + +#: includes/common/shipping-modules/mp-flat-rate.php:111 +#: includes/common/shipping-modules/mp-table-rate.php:151 +#: includes/common/shipping-modules/mp-weight-rate.php:166 +msgid "In Country" +msgstr "في البلد" + +#: includes/common/shipping-modules/mp-flat-rate.php:146 +#: includes/common/shipping-modules/mp-table-rate.php:186 +#: includes/common/shipping-modules/mp-weight-rate.php:201 +msgid "International" +msgstr "الدولي" + +#: includes/common/shipping-modules/mp-flat-rate.php:101 +#: includes/common/shipping-modules/mp-table-rate.php:141 +#: includes/common/shipping-modules/mp-weight-rate.php:156 +msgid "Canada" +msgstr "كندا" + +#: includes/common/shipping-modules/mp-flat-rate.php:92 +#: includes/common/shipping-modules/mp-table-rate.php:132 +#: includes/common/shipping-modules/mp-weight-rate.php:147 +msgid "Hawaii and Alaska" +msgstr "هاواي وألاسكا" + +#: includes/common/shipping-modules/mp-flat-rate.php:83 +#: includes/common/shipping-modules/mp-table-rate.php:123 +#: includes/common/shipping-modules/mp-weight-rate.php:138 +msgid "Lower 48 States" +msgstr "أقل من 48 دولة" + +#: includes/common/shipping-modules/mp-flat-rate.php:64 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping." +msgstr "تأكد من إدخال سعر شحن لكل خيار أو قد هؤلاء العملاء من الحصول على حرية الملاحة." + +#: includes/common/shipping-modules/mp-flat-rate.php:25 +#: includes/common/shipping-modules/mp-flat-rate.php:223 +msgid "Flat Rate" +msgstr "سعر موحد" + +#: includes/common/shipping-modules/mp-fedex.php:761 +msgid "FedEx (beta)" +msgstr "فيديكس (بيتا)" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Centimeters" +msgstr "سنتيمتر" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Inches" +msgstr "بوصة" + +#: includes/admin/class-mp-products-admin.php:1676 +#: includes/admin/class-mp-setup-wizard.php:547 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:166 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +msgid "Kilograms" +msgstr "كجم" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:103 +msgid " %1$s - %2$s" +msgstr "% 1$ s--% 2$ s" + +#: includes/common/shipping-modules/mp-usps.php:358 +msgid "Max Weight per Box" +msgstr "أقصى وزن لكل مربع" + +#: includes/common/shipping-modules/mp-usps.php:356 +msgid "Box Dimensions" +msgstr "أبعاد مربع" + +#: includes/common/shipping-modules/mp-usps.php:354 +msgid "Box Name" +msgstr "مربع الاسم" + +#: includes/common/shipping-modules/mp-usps.php:344 +msgid "Total weight selects the box size used for calculating Shipping costs." +msgstr "إجمالي وزن يحدد حجم مربع المستخدمة لحساب تكاليف الشحن." + +#: includes/common/shipping-modules/mp-usps.php:343 +msgid "For each box defined enter the maximum weight it can contain." +msgstr "لكل مربع تعريف إدخال الحد الأقصى للوزن يمكن أن يحتوي." + +#: includes/common/shipping-modules/mp-usps.php:341 +msgid "Enter your standard box sizes as LengthxWidthxHeight" +msgstr "أدخل أحجام مربع القياسية الخاصة بك لينجثكسويدثكسهيت" + +#: includes/common/shipping-modules/mp-fedex.php:386 +#: includes/common/shipping-modules/mp-ups.php:193 +#: includes/common/shipping-modules/mp-usps.php:234 +#: includes/common/shipping-modules/mp-usps.php:338 +msgid "Standard Boxes and Weight Limits" +msgstr "مربعات القياسية وحدود الوزن" + +#: includes/common/shipping-modules/mp-usps.php:328 +msgid "Handling Charge per Interntional Shipment" +msgstr "رسوم مناولة الشحنة متأخراتها الواحدة" + +#: includes/common/shipping-modules/mp-usps.php:294 +msgid "Handling Charge per Domestic Shipment " +msgstr "رسوم مناولة الشحنة الداخلية الواحدة" + +#: includes/common/shipping-modules/mp-fedex.php:388 +#: includes/common/shipping-modules/mp-ups.php:196 +#: includes/common/shipping-modules/mp-usps.php:237 +msgid "Add Box" +msgstr "إضافة مربع" + +#: includes/common/shipping-modules/mp-fedex.php:63 +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "(Next Day)" +msgstr "(في اليوم التالي)" + +#: includes/common/shipping-modules/mp-fedex.php:63 +msgid "Europe First International Priority" +msgstr "الأولوية الدولية الأولى في أوروبا" + +#: includes/common/shipping-modules/mp-fedex.php:62 +msgid "International Priority" +msgstr "الأولوية الدولية" + +#: includes/common/shipping-modules/mp-fedex.php:61 +#: includes/common/shipping-modules/mp-fedex.php:62 +#: includes/common/shipping-modules/mp-ups.php:54 +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "(1-3 Days)" +msgstr "(1-3 أيام)" + +#: includes/common/shipping-modules/mp-fedex.php:61 +msgid "International First" +msgstr "الأولى الدولية" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "(5 Days)" +msgstr "(5 أيام)" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "International Economy" +msgstr "الاقتصاد الدولي" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "(2-7 Days)" +msgstr "(2-7 أيام)" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "Smart Post" +msgstr "وظيفة الذكية" + +#: includes/common/shipping-modules/mp-fedex.php:55 +#: includes/common/shipping-modules/mp-ups.php:49 +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "(1-5 Days)" +msgstr "(1-5 أيام)" + +#: includes/common/shipping-modules/mp-fedex.php:55 +msgid "Ground Home Delivery" +msgstr "تسليم أرضية المنزل" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "(1-7 Days)" +msgstr "(1-7 أيام)" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "Fedex Ground" +msgstr "فيديكس الأرضية" + +#: includes/common/shipping-modules/mp-fedex.php:53 +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "(3 Days)" +msgstr "(3 أيام)" + +#: includes/common/shipping-modules/mp-fedex.php:53 +msgid "Fedex Express Saver" +msgstr "التوقف فيديكس إكسبريس" + +#: includes/common/shipping-modules/mp-fedex.php:52 +#: includes/common/shipping-modules/mp-ups.php:48 +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "(2 Days)" +msgstr "(2 أيام)" + +#: includes/common/shipping-modules/mp-fedex.php:52 +msgid "Fedex 2 Day" +msgstr "فيديكس يوم 2" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "(2 Days am)" +msgstr "(2 أيام صباحا)" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "Fedex 2 Day AM" +msgstr "فيديكس صباحا يوم 2" + +#: includes/common/shipping-modules/mp-fedex.php:50 +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "(1 Day)" +msgstr "(1 يوم)" + +#: includes/common/shipping-modules/mp-fedex.php:50 +msgid "Standard Overnight" +msgstr "بين عشية وضحاها القياسية" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "(1 Day am )" +msgstr "(1 يوم صباحا)" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "Priority Overnight" +msgstr "الأولوية بين عشية وضحاها" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "(1 Day am)" +msgstr "(1 يوم صباحا)" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "First Overnight" +msgstr "الأولى بين عشية وضحاها" + +#: includes/admin/class-mp-orders-admin.php:476 +#: includes/common/shipping-modules/mp-fedex.php:31 +msgid "FedEx" +msgstr "فيديكس" + +#: includes/common/payment-gateways/paymill.php:270 +#: includes/common/payment-gateways/simplify.php:179 +#: includes/common/payment-gateways/stripe.php:365 +msgid "%1$s Card ending in %2$s - Expires %3$s" +msgstr "% 1$ s بطاقة تنتهي في % 2$ s--تنتهي % 3$ s" + +#: includes/common/payment-gateways/paymill.php:259 +#: includes/common/payment-gateways/pin.php:238 +#: includes/common/payment-gateways/simplify.php:171 +msgid "%s Store Purchase - Order ID: %s, Email: %s" +msgstr "% s متجر الشراء-معرف النظام: % s، البريد الإلكتروني: % s" + +#: includes/common/payment-gateways/stripe.php:266 +msgid "You must login to Stripe to get your API credentials. You can enter your test credentials, then live ones when ready." +msgstr "يجب عليك تسجيل الدخول إلى الشريط الحصول على بيانات الاعتماد الخاصة بك API. يمكنك إدخال بيانات الاعتماد الخاصة بك اختبار، ثم يعيش منها عندما تكون جاهزاً." + +#: includes/common/payment-gateways/stripe.php:261 +msgid "When in live mode Stripe recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "عندما في وضع الحية شريطية توصي لديك إعداد شهادة SSL للموقع حيث سيتم عرض نموذج الدفع." + +#: includes/common/payment-gateways/stripe.php:311 +msgid "The Stripe Token was not generated correctly. Please go back and try again." +msgstr "رموز شريطية لم يتم إنشاء بشكل صحيح. يرجى العودة والمحاولة مرة أخرى." + +#: includes/common/payment-gateways/class-mp-gateway-api.php:263 +#: includes/common/payment-gateways/paymill.php:122 +#: includes/common/payment-gateways/stripe.php:222 +msgid "Card Number" +msgstr "رقم البطاقة" + +#: includes/common/payment-gateways/paymill.php:86 +msgid "Please enter a valid Credit Card Number." +msgstr "الرجاء إدخال \"رقم بطاقة ائتمان\" صالحة." + +#: includes/common/payment-gateways/stripe.php:45 +#: includes/common/payment-gateways/stripe.php:433 +msgid "Stripe" +msgstr "شريطية" + +#: includes/common/payment-gateways/paypal-express.php:750 +msgid "Sets the background color for the payment page. By default, the color is white." +msgstr "تعيين لون الخلفية لصفحة الدفع. بشكل افتراضي، اللون الأبيض." + +#: includes/common/payment-gateways/paypal-express.php:745 +msgid "Sets the background color for the header of the payment page. By default, the color is white." +msgstr "تعيين لون الخلفية لرأس صفحة الدفع. بشكل افتراضي، اللون الأبيض." + +#: includes/common/payment-gateways/paypal-express.php:740 +msgid "Sets the border color around the header of the payment page. The border is a 2-pixel perimeter around the header space, which is 750 pixels wide by 90 pixels high. By default, the color is black." +msgstr "تعيين لون الحدود حول رأس صفحة الدفع. الحدود هو محيط 2-بكسل حول الفضاء رأس، و 750 بكسل عرضاً بارتفاع 90 بكسل. بشكل افتراضي، اللون الأسود." + +#: includes/common/payment-gateways/paypal-express.php:735 +msgid "URL for an image you want to appear at the top left of the payment page. The image has a maximum size of 750 pixels wide by 90 pixels high. PayPal recommends that you provide an image that is stored on a secure (https) server. If you do not specify an image, the business name is displayed." +msgstr "عنوان URL لصورة التي تريدها أن تظهر في الجزء العلوي الأيسر من صفحة الدفع. الصورة بحجمها 750 بكسل عرضاً بارتفاع 90 بكسل كحد أقصى. وتوصي بأي بال يمكنك تقديم صورة التي تم تخزينها على ملقم أمن (https). إذا لم تقم بتحديد صورة، يتم عرض اسم الشركة." + +#: includes/common/payment-gateways/paypal-express.php:857 +#: includes/common/payment-gateways/paypal-express.php:1131 +msgid "The payment is pending because it is part of an order that has been authorized but not settled." +msgstr "هو انتظار لأنها جزء من أمر تم تخويله لكن ليس تسوية الدفع." + +#: includes/common/payment-gateways/paypal-express.php:853 +#: includes/common/payment-gateways/paypal-express.php:1127 +msgid "The payment is pending because it has been authorized but not settled. You must capture the funds first." +msgstr "هو انتظار نظراً لأنه كان قد إذن لكن ليس تسوية الدفع. يجب عليك التقاط الأموال أولاً." + +#: includes/common/payment-gateways/paypal-express.php:847 +#: includes/common/payment-gateways/paypal-express.php:1120 +msgid "You denied the payment when it was marked as pending." +msgstr "يمكنك رفض الدفع عند فإنه تم وضع علامة كمعلق." + +#: includes/common/payment-gateways/paypal-express.php:837 +#: includes/common/payment-gateways/paypal-express.php:1108 +msgid "A reversal has occurred on this transaction due to an unknown reason." +msgstr "حدث تراجعا في هذه الحركة نتيجة لسبب غير معروف." + +#: includes/common/payment-gateways/paypal-express.php:836 +#: includes/common/payment-gateways/paypal-express.php:1107 +msgid "A reversal has occurred on this transaction because you have given the customer a refund." +msgstr "عكس حدث على هذه الصفقة لأن كنت قد أعطيت العميل استرداد." + +#: includes/common/payment-gateways/paypal-express.php:835 +#: includes/common/payment-gateways/paypal-express.php:1106 +msgid "A reversal has occurred on this transaction due to a complaint about the transaction from your customer." +msgstr "حدث تراجعا في هذه الحركة بسبب شكوى حول الحركة من العميل الخاص بك." + +#: includes/common/payment-gateways/paypal-express.php:834 +#: includes/common/payment-gateways/paypal-express.php:1105 +msgid "A reversal has occurred on this transaction due to your customer triggering a money-back guarantee." +msgstr "حدث تراجعا في هذه الحركة نظراً للعميل الخاص بك التسبب ضمان عودة الأموال." + +#: includes/common/payment-gateways/paypal-express.php:833 +#: includes/common/payment-gateways/paypal-express.php:1104 +msgid "A reversal has occurred on this transaction due to a chargeback by your customer." +msgstr "حدث تراجعا في هذه الحركة بسبب تحميل التكاليف واسطة العميل الخاص بك." + +#: includes/common/payment-gateways/paypal-express.php:1101 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer:" +msgstr "وانعكس دفع نظراً تحميل التكاليف أو أي نوع آخر من عكس. أزيلت من رصيد حسابك الأموال وإرجاعها إلى المشتري:" + +#: includes/common/payment-gateways/paypal-express.php:826 +#: includes/common/payment-gateways/paypal-express.php:1097 +msgid "A payment has been accepted." +msgstr "وقد قبلت دفع." + +#: includes/common/payment-gateways/paypal-express.php:818 +#: includes/common/payment-gateways/paypal-express.php:1087 +msgid "The transaction has not terminated, e.g. an authorization may be awaiting completion." +msgstr "قد لا إنهاء المعاملة، مثلاً إذن قد تنتظر الإنجاز." + +#: includes/common/payment-gateways/payfast.php:531 +#: includes/common/payment-gateways/paypal-express.php:810 +#: includes/common/payment-gateways/paypal-express.php:1077 +msgid "The payment has failed. This happens only if the payment was made from your customer's bank account." +msgstr "وقد فشل الدفع. يحدث هذا فقط إذا كان السداد من الحساب البنكي للعميل الخاص بك." + +#: includes/common/payment-gateways/paypal-express.php:806 +#: includes/common/payment-gateways/paypal-express.php:1072 +msgid "An authorization for this transaction has been voided." +msgstr "وقد تم إلغاء ترخيص لهذه الحركة." + +#: includes/common/payment-gateways/paypal-express.php:802 +#: includes/common/payment-gateways/paypal-express.php:1067 +msgid "The authorization period for this payment has been reached." +msgstr "وقد تم التوصل إلى فترة الحصول على إذن لهذا الدفع." + +#: includes/common/payment-gateways/paypal-express.php:798 +#: includes/common/payment-gateways/paypal-express.php:1062 +msgid "A reversal has been canceled; for example, when you win a dispute and the funds for the reversal have been returned to you." +msgstr "وقد تم إلغاء عكس؛ على سبيل المثال، عند الفوز نزاع والأموال اللازمة للعكس عاد إليكم." + +#: includes/common/payment-gateways/paypal-express.php:499 +#: includes/common/payment-gateways/paypal-express.php:1163 +msgid "PayPal Express Checkout" +msgstr "الدفع بـ باي بال إكسبريس" + +#: includes/common/payment-gateways/paypal-chained-payments.php:798 +msgid "Gateway Settings Page Message" +msgstr "بوابة إعدادات الصفحة رسالة" + +#: includes/common/payment-gateways/paypal-express.php:725 +msgid "Signature" +msgstr "التوقيع" + +#: includes/common/payment-gateways/eway31.php:506 +#: includes/common/payment-gateways/eway31.php:533 +#: includes/common/shipping-modules/mp-fedex.php:276 +msgid "API Password" +msgstr "كلمة المرور API" + +#: includes/common/payment-gateways/paypal-chained-payments.php:773 +msgid "Enter a percentage of all store sales to collect as a fee. Decimals allowed." +msgstr "قم بإدخال نسبة مئوية من جميع مبيعات مخزن جمع كرسوم. الأرقام العشرية المسموح به." + +#: includes/common/payment-gateways/paypal-chained-payments.php:757 +msgid "Using PayPal Chained Payments allows you as the multisite network owner to collect a predefined fee or percentage of all sales on network MarketPress stores! This is invisible to the customers who purchase items in a store, and all PayPal fees will be charged to the store owner. To use this option you must create API credentials, and you should make all other gateways unavailable or limited above." +msgstr "استخدام \"بأي بال المدفوعات بالسلاسل\" يسمح لك كصاحب شبكة المواقع المتعددة لجمع رسوم المعرفة مسبقاً أو نسبة مئوية من المبيعات كل شيء في شبكة محلات تجارية ماركيتبريس! هذا غير مرئي للعملاء الذين قاموا بشراء الأصناف في مخزن، ويتم احتساب جميع الرسوم بال لصاحب المتجر. لاستخدام هذا الخيار يجب أن تقوم بإنشاء أوراق اعتماد API، ويجب عليك أن تجعل جميع العبارات الأخرى غير متوفرة أو المحدودة أعلاه." + +#: includes/common/payment-gateways/paypal-chained-payments.php:338 +msgid "Please be aware that we will deduct a ?% fee from the total of each transaction in addition to any fees PayPal may charge you. If for any reason you need to refund a customer for an order, please contact us with a screenshot of the refund receipt in your PayPal history as well as the Transaction ID of our fee deduction so we can issue you a refund. Thank you!" +msgstr "الرجاء أن ندرك أننا سوف تقتطع؟ رسوم % من العدد الإجمالي لكل المعاملات بالإضافة إلى أي رسوم بأي بال قد تهمة لكم. إذا كنت بحاجة لأي سبب من الأسباب عميل بإصدار أمر برد، يرجى الاتصال بنا لقطة من استلام المبلغ في التاريخ الخاص بك بأي بال، فضلا عن \"معرف\" لدينا خصم رسوم المعاملات حيث أننا يمكن أن يصدر لك استرداد. شكرا!" + +#: includes/common/payment-gateways/paypal-chained-payments.php:698 +#: includes/common/payment-gateways/paypal-express.php:149 +msgid "There was a problem connecting to PayPal. Please try again." +msgstr "وكان هناك مشكلة في الاتصال بأي بال. الرجاء المحاولة مرة أخرى." + +#: includes/common/payment-gateways/paypal-chained-payments.php:470 +#: includes/common/payment-gateways/paypal-express.php:1053 +msgid "There was a problem verifying the IPN string with PayPal. Please try again." +msgstr "كانت هناك مشكلة التحقق من سلسلة معهد البوليتكنيك الوطني مع بأي بال. الرجاء المحاولة مرة أخرى." + +#: includes/common/payment-gateways/paypal-chained-payments.php:310 +msgid "There was a problem connecting to PayPal to check the status of your purchase. Please check the status of your order here »" +msgstr "وكان هناك مشكلة في الاتصال بأي بال التحقق من حالة الشراء الخاصة بك. الرجاء التحقق من حالة النظام الخاص بك هنا»" + +#: includes/common/payment-gateways/payfast.php:539 +#: includes/common/payment-gateways/paypal-chained-payments.php:254 +#: includes/common/payment-gateways/paypal-express.php:1139 +msgid "The payment is pending." +msgstr "الدفع معلق." + +#: includes/common/payment-gateways/paypal-chained-payments.php:251 +#: includes/common/payment-gateways/paypal-chained-payments.php:531 +#: includes/common/payment-gateways/paypal-express.php:862 +#: includes/common/payment-gateways/paypal-express.php:1136 +msgid "The payment is pending for an unknown reason. For more information, contact PayPal customer service." +msgstr "الدفع معلق لسبب غير معروف. للحصول على مزيد من المعلومات، اتصل بخدمة العملاء بأي بال." + +#: includes/common/payment-gateways/paypal-chained-payments.php:250 +#: includes/common/payment-gateways/paypal-chained-payments.php:530 +#: includes/common/payment-gateways/paypal-express.php:861 +#: includes/common/payment-gateways/paypal-express.php:1135 +msgid "The payment is pending because you are not yet verified. You must verify your account before you can accept this payment." +msgstr "الدفع معلق لأن كنت لم تتحقق حتى الآن. يجب التحقق من الحساب الخاص بك قبل أن يمكنك قبول هذا الدفع." + +#: includes/common/payment-gateways/paypal-chained-payments.php:249 +#: includes/common/payment-gateways/paypal-chained-payments.php:529 +#: includes/common/payment-gateways/paypal-express.php:860 +#: includes/common/payment-gateways/paypal-express.php:1134 +msgid "The payment is pending because it was made via credit card and you must upgrade your account to Business or Premier status in order to receive the funds. It can also mean that you have reached the monthly limit for transactions on your account." +msgstr "الدفع هو ريثما نظراً لأنه تم بواسطة بطاقة الائتمان، ويجب ترقية الحساب الخاص بك إلى مركز الأعمال التجارية أو رئيس الوزراء في النظام للحصول على الأموال. كما يمكن أن يعني أنك وصلت إلى الحد الأقصى الشهري لحركات على الحساب الخاص بك." + +#: includes/common/payment-gateways/paypal-chained-payments.php:248 +#: includes/common/payment-gateways/paypal-chained-payments.php:528 +#: includes/common/payment-gateways/paypal-express.php:859 +#: includes/common/payment-gateways/paypal-express.php:1133 +msgid "The payment is pending because it was made to an email address that is not yet registered or confirmed." +msgstr "الدفع معلق لأنه كان لعنوان البريد إلكتروني الذي لم تسجيل أو تأكيد." + +#: includes/common/payment-gateways/paypal-chained-payments.php:247 +#: includes/common/payment-gateways/paypal-chained-payments.php:527 +#: includes/common/payment-gateways/paypal-express.php:858 +#: includes/common/payment-gateways/paypal-express.php:1132 +msgid "The payment is pending while it is being reviewed by PayPal for risk." +msgstr "الدفع معلق في حين يجري حاليا استعراض ذلك بأي بال للخطر." + +#: includes/common/payment-gateways/paypal-chained-payments.php:246 +#: includes/common/payment-gateways/paypal-chained-payments.php:526 +#: includes/common/payment-gateways/paypal-express.php:856 +#: includes/common/payment-gateways/paypal-express.php:1130 +msgid "You do not have a balance in the currency sent, and you do not have your Payment Receiving Preferences set to automatically convert and accept this payment. You must manually accept or deny this payment." +msgstr "ليس لديك رصيد بالعملة المرسلة، ولم يكن لديك \"تفضيلات تلقي الدفع\" الخاص بك تعيين لتحويل تلقائياً وقبول هذا الدفع. يجب قبول أو رفض هذا الدفع يدوياً." + +#: includes/common/payment-gateways/paypal-chained-payments.php:245 +#: includes/common/payment-gateways/paypal-chained-payments.php:525 +#: includes/common/payment-gateways/paypal-express.php:855 +#: includes/common/payment-gateways/paypal-express.php:1129 +msgid "The payment is pending because you hold a non-U.S. account and do not have a withdrawal mechanism. You must manually accept or deny this payment from your Account Overview." +msgstr "الدفع معلق لأنك عقد حساب غير الولايات المتحدة، وليس لديها إليه لانسحاب. يجب قبول أو رفض هذا الدفع من \"نظرة عامة على الحساب\" الخاص بك يدوياً." + +#: includes/common/payment-gateways/paypal-chained-payments.php:244 +#: includes/common/payment-gateways/paypal-chained-payments.php:524 +#: includes/common/payment-gateways/paypal-express.php:854 +#: includes/common/payment-gateways/paypal-express.php:1128 +msgid "The payment is pending because it was made by an eCheck that has not yet cleared." +msgstr "الدفع هو انتظار لأنه أدلى بها دفع المال أن لم تمسح بعد." + +#: includes/common/payment-gateways/paypal-chained-payments.php:243 +#: includes/common/payment-gateways/paypal-chained-payments.php:523 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences section of your Profile." +msgstr "الدفع معلق لأن العميل الخاص بك لا يتضمن عنوان شحن مؤكدة، ويتم تعيين \"التفضيلات تلقي الدفع\" الخاص بك أن كنت ترغب في قبول أو رفض كل من هذه المدفوعات يدوياً. لتغيير تفضيلاتك، انتقل إلى المقطع تفضيلات من التشكيل الجانبي الخاص بك." + +#: includes/common/payment-gateways/paypal-chained-payments.php:236 +#: includes/common/payment-gateways/paypal-chained-payments.php:516 +msgid "The transaction was rejected by the receiver (you)." +msgstr "رفض الحركة بالمتلقي (لك)." + +#: includes/common/payment-gateways/paypal-chained-payments.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:510 +#: includes/common/payment-gateways/paypal-express.php:843 +#: includes/common/payment-gateways/paypal-express.php:1115 +msgid "You refunded the payment." +msgstr "يمكنك ردها الدفع." + +#: includes/common/payment-gateways/paypal-chained-payments.php:224 +#: includes/common/payment-gateways/paypal-chained-payments.php:504 +msgid "The transaction is in progress." +msgstr "العملية قيد التقدم." + +#: includes/common/payment-gateways/paypal-chained-payments.php:212 +#: includes/common/payment-gateways/paypal-chained-payments.php:491 +#: includes/common/payment-gateways/paypal-express.php:814 +#: includes/common/payment-gateways/paypal-express.php:1082 +msgid "The payment has been partially refunded." +msgstr "وقد تم الدفع المبلغ جزئيا." + +#: includes/common/payment-gateways/paypal-chained-payments.php:202 +#: includes/common/payment-gateways/paypal-chained-payments.php:481 +msgid "PayPal balance, Credit Card, or Instant Transfer" +msgstr "رصيد بأي بال، بطاقة الائتمان، أو نقل فورية" + +#: includes/common/payment-gateways/paypal-chained-payments.php:177 +msgid "There was a problem connecting to PayPal to setup your purchase. Please try again." +msgstr "وكان هناك مشكلة في الاتصال بأي بال الإعداد الشراء الخاصة بك. الرجاء المحاولة مرة أخرى." + +#: includes/common/payment-gateways/paypal-chained-payments.php:122 +msgid "Your PayPal transaction has been canceled." +msgstr "تم إلغاء الصفقة بأي بال الخاص بك." + +#: includes/common/payment-gateways/paypal-chained-payments.php:50 +#: includes/common/payment-gateways/paypal-chained-payments.php:53 +#: includes/common/payment-gateways/paypal-chained-payments.php:732 +#: includes/common/payment-gateways/paypal-express.php:500 +#: includes/common/payment-gateways/paypal-express.php:938 +msgid "PayPal" +msgstr "بأي بال" + +#: includes/common/payment-gateways/paypal-chained-payments.php:48 +#: includes/common/payment-gateways/paypal-chained-payments.php:730 +#: includes/common/payment-gateways/paypal-chained-payments.php:756 +#: includes/common/payment-gateways/paypal-chained-payments.php:873 +msgid "PayPal Chained Payments" +msgstr "بأي بال المدفوعات بالسلاسل" + +#: includes/common/payment-gateways/paypal-payflow.php:59 +#: includes/common/payment-gateways/paypal-payflow.php:467 +msgid "PayPal Payflow Pro" +msgstr "برو بايفلوو بأي بال" + +#: includes/common/payment-gateways/skrill.php:378 +msgid "Chargeback - A payment was reversed due to a chargeback. The funds have been removed from your account balance and returned to the buyer." +msgstr "وانعكس تحميل التكاليف-دفع سبب تحميل التكاليف. أزيلت من رصيد حسابك الأموال وإرجاعها إلى المشتري." + +#: includes/common/payment-gateways/skrill.php:372 +msgid "Failed - The Credit Card or Direct Debit transaction was declined." +msgstr "فشل--تم رفض معاملة بطاقة الائتمان أو الخصم المباشر." + +#: includes/common/payment-gateways/_payway.php:354 +#: includes/common/payment-gateways/skrill.php:366 +msgid "Cancelled - The payment was cancelled manually by the sender in their online account history or was auto-cancelled after 14 days pending." +msgstr "ألغى-الدفع تم إلغاء يدوياً بواسطة المرسل في تاريخهم الحساب على الإنترنت أو تم إلغاء السيارات بعد 14 يوما ريثما." + +#: includes/common/payment-gateways/skrill.php:360 +msgid "Pending - The payment is pending. It can take 2-3 days for bank transfers to complete." +msgstr "معلق-الدفع معلقة. يمكن أن يستغرق 2-3 أيام للتحويلات المصرفية لإكمال." + +#: includes/common/payment-gateways/_payway.php:349 +#: includes/common/payment-gateways/skrill.php:354 +msgid "Processed - The payment has been completed, and the funds have been added successfully to your Moneybookers account balance." +msgstr "معالجة-قد اكتملت الدفع، وتم إضافة الأموال إلى رصيد حسابك Moneybookers بنجاح." + +#: includes/common/payment-gateways/skrill.php:189 +msgid "Shown to the customer on the confirmation screen - the end step of the process - a note, confirmation number, or any other message. Line breaks <br> may be used for longer messages." +msgstr "سيظهر للعميل على الشاشة التأكيد-الخطوة نهاية عملية-مذكرة، ورقم تأكيد، أو أي رسالة أخرى. يمكن استخدام فواصل الأسطر < br > للرسائل الطويلة." + +#: includes/common/payment-gateways/skrill.php:188 +msgid "Confirmation Note (optional)" +msgstr "تأكيد مذكرة (اختياري)" + +#: includes/common/payment-gateways/skrill.php:183 +msgid "The URL of the logo which you would like to appear at the top of the payment form. The logo must be accessible via HTTPS otherwise it will not be shown. For best integration results we recommend that you use a logo with dimensions up to 200px in width and 50px in height." +msgstr "عنوان URL للشعار الذي تريد أن تظهر في الجزء العلوي من النموذج الدفع. يجب أن يكون الشعار موجوداً عبر HTTPS خلاف ذلك لن تظهر. لأفضل نتائج التكامل نحن ننصح أن باستخدام شعار مع أبعاد تصل إلى 200px في العرض و 50px في الارتفاع." + +#: includes/common/payment-gateways/skrill.php:182 +msgid "Logo Image (optional)" +msgstr "صورة شعار (اختياري)" + +#: includes/common/payment-gateways/skrill.php:177 +msgid "The name of this store, which will be shown on the gateway. If no value is submitted, the account email will be shown as the recipient of the payment." +msgstr "اسم هذا المتجر، الذي سيظهر في العبارة. إذا قدم لا قيمة، سيظهر كمتلق للدفع حساب البريد الإلكتروني." + +#: includes/common/payment-gateways/skrill.php:176 +msgid "Merchant Name (optional)" +msgstr "اسم التاجر (اختياري)" + +#: includes/common/payment-gateways/skrill.php:165 +msgid "Language" +msgstr "اللغة" + +#: includes/common/payment-gateways/2checkout.php:368 +#: includes/common/payment-gateways/authorizenet-aim.php:262 +#: includes/common/payment-gateways/eway.php:363 +#: includes/common/payment-gateways/eway31.php:471 +#: includes/common/payment-gateways/mollie.php:91 +#: includes/common/payment-gateways/paymill.php:193 +#: includes/common/payment-gateways/paypal-chained-payments.php:356 +#: includes/common/payment-gateways/paypal-express.php:688 +#: includes/common/payment-gateways/paypal-payflow.php:432 +#: includes/common/payment-gateways/pin.php:186 +#: includes/common/payment-gateways/skrill.php:152 +#: includes/common/payment-gateways/stripe.php:288 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:104 +msgid "Currency" +msgstr "تحويل العملات" + +#: includes/common/payment-gateways/2checkout.php:359 +#: includes/common/payment-gateways/skrill.php:143 +msgid "Secret Word" +msgstr "كلمة السر" + +#: includes/common/payment-gateways/skrill.php:261 +msgid "Order ID:" +msgstr "معرف النظام:" + +#: includes/common/payment-gateways/skrill.php:234 +msgid "Complete Checkout" +msgstr "إكمال السحب" + +#: includes/common/payment-gateways/skrill.php:204 +msgid "Your Moneybookers transaction has been canceled." +msgstr "تم إلغاء المعاملة مونيبوكيرز الخاص بك." + +#: includes/common/payment-gateways/manual-payments.php:155 +msgid "This is the email text to send to those who have made manual payment checkouts. You should include your manual payment instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "وهذا هو نص البريد الإلكتروني لإرسال إلى أولئك الذين جعلوا المخارج الدفع اليدوي. يجب عليك تضمين تعليمات الدفع اليدوي الخاص بك هنا. أنه يتجاوز البريد الإلكتروني الافتراضي أمر الدفع. سيتم استبدال هذه الرموز مع تفاصيل الترتيب: اسم العميل، ORDERID، أورديرينفو، شيبينجينفو، بايمينتينفو، مجموعة، تراكينجورل. HTML لا يسمح." + +#: includes/common/payment-gateways/_payway.php:257 +#: includes/common/payment-gateways/manual-payments.php:128 +msgid "Record payments manually, such as by Cash, Check, or EFT." +msgstr "سجل المدفوعات يدوياً، مثل من النقدية، تحقق، أو تحويل الأموال الإلكتروني." + +#: includes/common/payment-gateways/manual-payments.php:71 +msgid "Manual/Invoice" +msgstr "دليل/الفاتورة" + +#: includes/admin/class-mp-setup-wizard.php:648 +#: includes/common/payment-gateways/manual-payments.php:35 +#: includes/common/payment-gateways/manual-payments.php:36 +msgid "Manual Payment" +msgstr "الدفع اليدوي" + +#: includes/common/payment-gateways/manual-payments.php:34 +#: includes/common/payment-gateways/manual-payments.php:163 +msgid "Manual Payments" +msgstr "المدفوعات اليدوية" + +#: includes/common/payment-gateways/_ideal.php:288 +msgid "iDEAL Simulator (for testing)" +msgstr "محاكاة مثالية (للاختبار)" + +#: includes/common/payment-gateways/_ideal.php:287 +msgid "ABN Amro Bank" +msgstr "أية بي أن أمرو بنك" + +#: includes/common/payment-gateways/_ideal.php:286 +msgid "Friesland Bank" +msgstr "بنك فريزلند" + +#: includes/common/payment-gateways/_ideal.php:285 +msgid "Rabobank" +msgstr "رابوبنك" + +#: includes/common/payment-gateways/_ideal.php:284 +msgid "ING Bank" +msgstr "جي بنك" + +#: includes/common/payment-gateways/_ideal.php:279 +msgid "Bank" +msgstr "مصرف" + +#: includes/common/payment-gateways/_ideal.php:270 +msgid "To make it easier to pay for online products and services, the Dutch banking community has developed the iDEAL online payment method. iDEAL allows online payments to be made using online banking in EUR only." +msgstr "لجعله أسهل لدفع ثمن المنتجات عبر الإنترنت، والخدمات، ووضعت المجتمع المصرفي الهولندي طريقة الدفع عبر الإنترنت مثالية. مثالي يسمح بالدفع عبر الإنترنت باستخدام الخدمات المصرفية عبر الإنترنت باليورو فقط." + +#: includes/common/payment-gateways/_ideal.php:247 +#: includes/common/payment-gateways/_payway.php:199 +#: includes/common/payment-gateways/manual-payments.php:68 +msgid "Invoiced" +msgstr "مفوتر" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1016 +msgid "Coupon" +msgstr "القسيمة" + +#: includes/common/payment-gateways/_ideal.php:77 +#: includes/common/payment-gateways/_ideal.php:250 +#: includes/common/payment-gateways/_payway.php:202 +msgid "iDEAL" +msgstr "المثل الأعلى" + +#: includes/common/payment-gateways/_ideal.php:76 +msgid "iDEAL (beta)" +msgstr "المثل الأعلى (بيتا)" + +#: includes/common/payment-gateways/payfast.php:327 +msgid "Merchant Key" +msgstr "مفتاح التاجر" + +#: includes/common/payment-gateways/_ideal.php:293 +#: includes/common/payment-gateways/_payway.php:302 +#: includes/common/payment-gateways/payfast.php:324 +msgid "Merchant ID" +msgstr "معرف التاجر" + +#: includes/common/payment-gateways/eway31.php:462 +msgid "eWay Rapid 3.0 Payments lets merchants recieve credit card payments through eWay without need for users to leave the shop. Note this gateway requires a valid SSL certificate configured for this site." +msgstr "eWay \"السريع 3.0 المدفوعات\" يسمح التجار تلقي مدفوعات بطاقة الائتمان عن طريق eWay دون الحاجة للمستخدمين مغادرة المحل. ملاحظة هذه العبارة يتطلب شهادة SSL صالحة تم تكوينها لهذا الموقع." + +#: includes/common/payment-gateways/eway.php:452 +msgid "There was a problem connecting to eWay. Please try again." +msgstr "وكان هناك مشكلة في الاتصال إلى eWay. الرجاء المحاولة مرة أخرى." + +#: includes/common/payment-gateways/eway.php:432 +#: includes/common/payment-gateways/eway.php:437 +msgid "The url of the image can be hosted on your website and pass the secure https:// path of the image to be displayed at the top of the website. This is the second image block on the webpage and is restricted to 960px X 65px. A default secure image is used if none is supplied." +msgstr "عنوان url للصورة يمكن استضافتها على موقع الويب الخاص بك، وتمرير مسار https://آمنة للصورة ليتم عرضها في الجزء العلوي من الموقع. هذا هو كتلة الصورة الثانية على صفحة ويب، ويقتصر على 960px X 65px. استخدام صورة آمنة افتراضي إذا لم يتم توفير." + +#: includes/common/payment-gateways/eway.php:431 +#: includes/common/payment-gateways/eway.php:436 +msgid "Company Logo (optional)" +msgstr "شعار الشركة (اختياري)" + +#: includes/common/payment-gateways/eway.php:427 +msgid "The page footer text can be customised and populated below the customer's order details. Useful for contact information." +msgstr "يمكن تخصيص نص تذييل الصفحة وملؤها أدناه تفاصيل النظام الخاص بالعميل. مفيدة للحصول على معلومات جهة الاتصال." + +#: includes/common/payment-gateways/eway.php:426 +msgid "Page Footer (optional)" +msgstr "تذييل الصفحة (اختياري)" + +#: includes/common/payment-gateways/eway.php:421 +msgid "Page Description (optional)" +msgstr "وصف الصفحة (اختياري)" + +#: includes/common/payment-gateways/eway.php:417 +#: includes/common/payment-gateways/eway.php:422 +msgid "This value is used to populate the browsers title bar at the top of the screen." +msgstr "يتم استخدام هذه القيمة ملء شريط العنوان المتصفحات في الجزء العلوي من الشاشة." + +#: includes/common/payment-gateways/eway.php:416 +msgid "Page Title (optional)" +msgstr "صفحة العنوان (اختياري)" + +#: includes/common/payment-gateways/eway.php:412 +msgid "This will be displayed as the company the customer is purchasing from, including this is highly recommended." +msgstr "سيتم عرض هذا العميل هو شراء من الشركة، بما في ذلك هذا ينصح بشدة." + +#: includes/common/payment-gateways/eway.php:411 +msgid "Company Name" +msgstr "اسم الشركة" + +#: includes/common/payment-gateways/eway.php:394 +msgid "Customer ID" +msgstr "معرف العميل" + +#: includes/common/payment-gateways/eway.php:381 +#: includes/common/payment-gateways/eway31.php:488 +msgid "Live API Credentials" +msgstr "أوراق اعتماد API لايف" + +#: includes/common/payment-gateways/eway.php:371 +#: includes/common/payment-gateways/eway31.php:479 +msgid "Gateway Mode" +msgstr "وضع عبارة" + +#: includes/common/payment-gateways/eway.php:354 +msgid "The Hosted Page is a webpage hosted on eWAY's side eliminating the need for merchants to capture, transmit or store credit card numbers. At the checkout time the merchant automatically redirects the customer to the Hosted Page where they would enter their details and have the transaction processed. Upon completion of the transaction the customer is redirected back to the MarketPress checkout confirmation page." +msgstr "\"صفحة استضافة\" صفحة ويب مستضافة على الجانب eWAY للقضاء على الحاجة للتجار لالتقاط أو نقل أو تخزين أرقام بطاقات الائتمان. في وقت الدفع الموجهات التاجر تلقائياً العميل إلى \"الصفحة استضافت\" حيث أن أدخل التفاصيل الخاصة بهم وأن المعاملات التي تتم معالجتها. عند إتمام الصفقة يتم توجيه العميل إلى صفحة تأكيد الدفع ماركيتبريس." + +#: includes/common/payment-gateways/eway.php:314 +msgid "There was a problem with your credit card information: %s" +msgstr "كانت هناك مشكلة مع معلومات بطاقة الائتمان الخاصة بك: % s" + +#: includes/common/payment-gateways/eway.php:300 +msgid "Paid - The card has been processed - %s" +msgstr "وقد تم تجهيز البطاقة المدفوعة--% s" + +#: includes/common/payment-gateways/eway.php:253 +msgid "There was a problem setting up the transaction with eWay: %s" +msgstr "كان هناك مشكلة إعداد المعاملات مع eWay: % s" + +#: includes/common/payment-gateways/eway.php:245 +#: includes/common/payment-gateways/eway.php:289 +msgid "There was a problem parsing the response from eWay. Please try again." +msgstr "توجد مشكلة في تحليل الاستجابة من eWay. الرجاء المحاولة مرة أخرى." + +#: includes/common/payment-gateways/_ideal.php:159 +#: includes/common/payment-gateways/eway.php:189 +#: includes/common/payment-gateways/paypal-chained-payments.php:634 +#: includes/common/payment-gateways/paypal-express.php:322 +#: includes/common/payment-gateways/paypal-express.php:473 +msgid "%s Store Purchase - Order ID: %s" +msgstr "% s متجر الشراء-معرف النظام: % s" + +#: includes/common/payment-gateways/eway.php:147 +#: includes/common/payment-gateways/eway.php:462 +msgid "eWay Shared Payments" +msgstr "eWay \"المدفوعات المشتركة\"" + +#: includes/common/payment-gateways/_cubepoints.php:214 +msgid "This is the email text to send to those who have made CubePoints checkouts. You should include your CubePoints instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "وهذا هو نص البريد الإلكتروني لإرسال إلى أولئك الذين جعلوا المخارج كوبيبوينتس. يجب عليك تضمين التعليمات كوبيبوينتس الخاصة بك هنا. أنه يتجاوز البريد الإلكتروني الافتراضي أمر الدفع. سيتم استبدال هذه الرموز مع تفاصيل الترتيب: اسم العميل، ORDERID، أورديرينفو، شيبينجينفو، بايمينتينفو، مجموعة، تراكينجورل. HTML لا يسمح." + +#: includes/common/payment-gateways/_cubepoints.php:212 +#: includes/common/payment-gateways/free_orders.php:188 +#: includes/common/payment-gateways/manual-payments.php:154 +msgid "Order Confirmation Email" +msgstr "البريد الإلكتروني تأكيد ترتيب" + +#: includes/common/payment-gateways/_cubepoints.php:207 +#: includes/common/payment-gateways/manual-payments.php:149 +msgid "Confirmation User Instructions" +msgstr "تعليمات المستخدم تأكيد" + +#: includes/common/payment-gateways/_cubepoints.php:202 +#: includes/common/payment-gateways/manual-payments.php:144 +msgid "User Instructions" +msgstr "تعليمات المستخدم" + +#: includes/common/payment-gateways/_cubepoints.php:198 +#: includes/common/payment-gateways/free_orders.php:170 +#: includes/common/payment-gateways/manual-payments.php:139 +msgid "Enter a public name for this payment method that is displayed to users - No HTML" +msgstr "أدخل اسم عامة لطريقة الدفع هذه التي يتم عرضها للمستخدمين-\"أي إتش تي أم ال\"" + +#: includes/admin/class-mp-orders-admin.php:532 +#: includes/common/payment-gateways/_cubepoints.php:196 +#: includes/common/payment-gateways/free_orders.php:169 +#: includes/common/payment-gateways/manual-payments.php:138 +msgid "Method Name" +msgstr "اسم الأسلوب" + +#: includes/common/payment-gateways/_cubepoints.php:187 +msgid "Accept CubePoints as payment(requires the CubePoints plugin)." +msgstr "تقبل كوبيبوينتس كوسيلة للسداد (يتطلب البرنامج المساعد كوبيبوينتس)." + +#: includes/common/payment-gateways/_cubepoints.php:140 +msgid "Sorry, but you do not appear to have enough points to complete this purchase!" +msgstr "عذراً، لكن كنت لا يبدو أن لديها ما يكفي من النقاط لإكمال هذا الشراء!" + +#: includes/common/payment-gateways/_cubepoints.php:124 +msgid "%s Store Purchase" +msgstr "% s متجر الشراء" + +#: includes/common/payment-gateways/_cubepoints.php:79 +#: includes/common/payment-gateways/_cubepoints.php:171 +msgid "Your current points: " +msgstr "النقاط الحالية الخاصة بك:" + +#: includes/common/payment-gateways/_cubepoints.php:133 +#: includes/common/payment-gateways/_cubepoints.php:197 +msgid "CubePoints" +msgstr "كوبيبوينتس" + +#: includes/common/payment-gateways/authorizenet-aim.php:344 +msgid "Authorize.net AIM Checkout" +msgstr "Authorize.net هدف الدفع" + +#: includes/common/payment-gateways/authorizenet-aim.php:331 +msgid "Custom API URL" +msgstr "URL مخصص API" + +#: includes/common/payment-gateways/authorizenet-aim.php:332 +msgid "Many other gateways have Authorize.net API emulators. To use one of these gateways input their API post url here." +msgstr "وقد العديد من العبارات الأخرى Authorize.net API المحاكي. باستخدام واحدة من هذه العبارات مدخلات وظيفة API على url هنا." + +#: includes/common/payment-gateways/authorizenet-aim.php:322 +msgid "Request a delimited response from the payment gateway." +msgstr "طلب رد محدد من بوابة الدفع." + +#: includes/common/payment-gateways/authorizenet-aim.php:316 +msgid "Security: MD5 Hash" +msgstr "الأمن: تجزئة MD5" + +#: includes/common/payment-gateways/authorizenet-aim.php:317 +msgid "The payment gateway generated MD5 hash value that can be used to authenticate the transaction response. Not needed because responses are returned using an SSL connection." +msgstr "بوابة الدفع التي تم إنشاؤها قيمة التجزئة MD5 التي يمكن استخدامها لمصادقة استجابة الحركة. عدم الحاجة لأن يتم إرجاع الاستجابات باستخدام اتصال SSL." + +#: includes/common/payment-gateways/authorizenet-aim.php:306 +msgid "Customer Receipt Email Footer" +msgstr "العميل استلام البريد الإلكتروني تذييل الصفحة" + +#: includes/common/payment-gateways/authorizenet-aim.php:296 +msgid "Customer Receipt Email Header" +msgstr "العميل استلام رأس البريد الإلكتروني" + +#: includes/common/payment-gateways/authorizenet-aim.php:297 +#: includes/common/payment-gateways/paypal-payflow.php:446 +msgid "This text will appear as the header of the email receipt sent to the customer." +msgstr "سوف يظهر هذا النص كالرأس لاستلام البريد الإلكتروني المرسلة إلى العميل." + +#: includes/common/payment-gateways/authorizenet-aim.php:282 +msgid "Encapsulation Character" +msgstr "تغليف الحرف" + +#: includes/common/payment-gateways/authorizenet-aim.php:283 +msgid "Authorize.net default is blank. Otherwise, get this from your credit card processor. If the transactions are going through, but getting strange responses, this character is most likely wrong." +msgstr "Authorize.net الافتراضي فارغة. وبخلاف ذلك، الحصول على هذا من معالج بطاقة الائتمان الخاصة بك. إذا كانت المعاملات التي يمر بها، ولكن الحصول على استجابات غريبة، هذا الحرف هو الخطأ الأكثر احتمالاً." + +#: includes/common/payment-gateways/authorizenet-aim.php:273 +msgid "Optional settings to control advanced options" +msgstr "الإعدادات الاختيارية التحكم بخيارات متقدمة" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:224 +#: includes/common/payment-gateways/authorizenet-aim.php:272 +msgid "Advanced Settings" +msgstr "إعدادات متقدمة" + +#: includes/common/payment-gateways/authorizenet-aim.php:253 +msgid "Transaction Key" +msgstr "مفتاح الحركة" + +#: includes/common/payment-gateways/authorizenet-aim.php:246 +msgid "Login ID" +msgstr "معرف تسجيل الدخول" + +#: includes/common/payment-gateways/paypal-payflow.php:396 +msgid "Gateway Credentials" +msgstr "بوابة بيانات الاعتماد" + +#: includes/common/payment-gateways/authorizenet-aim.php:221 +msgid "Authorize.net AIM is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway. USD is the only currency supported by this gateway." +msgstr "Authorize.net والهدف هو دفع لتخصيص تجهيز الحل الذي يعطي السيطرة التجارية على جميع الخطوات في تجهيز معاملة. مطلوب شهادة SSL استخدام هذه العبارة. الدولار هو العملة الوحيدة التي تدعمها هذه العبارة." + +#: includes/common/payment-gateways/authorizenet-aim.php:205 +msgid "There was a problem finalizing your purchase. %s Please go back and try again." +msgstr "وكان هناك مشكلة في وضع اللمسات الأخيرة على الشراء الخاصة بك. % s الرجاء العودة والمحاولة مرة أخرى." + +#: includes/common/payment-gateways/payfast.php:519 +#: includes/common/payment-gateways/paypal-chained-payments.php:218 +#: includes/common/payment-gateways/paypal-chained-payments.php:498 +#: includes/common/payment-gateways/paypal-express.php:822 +#: includes/common/payment-gateways/paypal-express.php:1092 +msgid "The payment has been completed, and the funds have been added successfully to your account balance." +msgstr "قد اكتمل الدفع، وقد أضيفت الأموال بنجاح إلى رصيد حسابك." + +#: includes/common/payment-gateways/paypal-payflow.php:233 +msgid "Please enter a valid credit card security code" +msgstr "الرجاء إدخال رمز الأمان بطاقة ائتمان صالحة" + +#: includes/common/payment-gateways/paypal-payflow.php:224 +#: includes/public/class-mp-checkout.php:867 +msgid "Please enter a valid credit card number" +msgstr "الرجاء إدخال رقم بطاقة ائتمان صالحة" + +#: includes/common/payment-gateways/paypal-payflow.php:221 +msgid "Please enter your credit card number" +msgstr "الرجاء إدخال رقم بطاقة الائتمان الخاصة بك" + +#: includes/common/payment-gateways/paypal-payflow.php:217 +msgid "Please enter your credit card security code" +msgstr "الرجاء إدخال رمز الأمان بطاقة الائتمان الخاصة بك" + +#: includes/common/payment-gateways/paypal-payflow.php:213 +msgid "Please select your credit card expiration date." +msgstr "الرجاء تحديد تاريخ انتهاء صلاحية بطاقة الائتمان الخاصة بك." + +#: includes/common/payment-gateways/2checkout.php:299 +#: includes/common/payment-gateways/authorizenet-aim.php:50 +#: includes/common/payment-gateways/eway.php:148 +#: includes/common/payment-gateways/eway.php:298 +#: includes/common/payment-gateways/eway31.php:267 +#: includes/common/payment-gateways/paymill.php:46 +#: includes/common/payment-gateways/paypal-express.php:972 +#: includes/common/payment-gateways/paypal-payflow.php:60 +#: includes/common/payment-gateways/pin.php:46 +#: includes/common/payment-gateways/simplify.php:19 +#: includes/common/payment-gateways/stripe.php:46 +#: includes/common/payment-gateways/wepay.php:37 +msgid "Credit Card" +msgstr "بطاقة الائتمان" + +#: includes/common/payment-gateways/authorizenet-aim.php:49 +msgid "Authorize.net Checkout" +msgstr "Authorize.net الدفع" + +#: includes/common/payment-gateways/skrill.php:156 +#: includes/common/payment-gateways/stripe.php:293 +msgid "Selecting a currency other than that used for your store may cause problems at checkout." +msgstr "تحديد عمله غير تلك المستخدمة قد يسبب مشاكل في اتمام عملية الدفع." + +#: includes/common/payment-gateways/2checkout.php:352 +msgid "Seller ID" +msgstr "معرف البائع" + +#: includes/common/payment-gateways/2checkout.php:340 +#: includes/common/payment-gateways/_ideal.php:311 +#: includes/common/payment-gateways/authorizenet-aim.php:234 +#: includes/common/payment-gateways/eway.php:376 +#: includes/common/payment-gateways/payfast.php:315 +#: includes/common/payment-gateways/paypal-chained-payments.php:368 +#: includes/common/payment-gateways/paypal-express.php:699 +#: includes/common/payment-gateways/paypal-payflow.php:391 +msgid "Live" +msgstr "ويعيش" + +#: includes/common/payment-gateways/2checkout.php:339 +#: includes/common/payment-gateways/authorizenet-aim.php:233 +#: includes/common/payment-gateways/eway.php:375 +#: includes/common/payment-gateways/paypal-chained-payments.php:367 +#: includes/common/payment-gateways/paypal-express.php:698 +#: includes/common/payment-gateways/paypal-payflow.php:390 +#: includes/common/shipping-modules/mp-fedex.php:263 +msgid "Sandbox" +msgstr "رمل" + +#: includes/common/payment-gateways/2checkout.php:336 +#: includes/common/payment-gateways/_ideal.php:307 +#: includes/common/payment-gateways/authorizenet-aim.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:365 +#: includes/common/payment-gateways/paypal-express.php:695 +#: includes/common/payment-gateways/paypal-payflow.php:387 +#: includes/common/payment-gateways/wepay.php:130 +#: includes/common/shipping-modules/mp-fedex.php:260 +msgid "Mode" +msgstr "وضع" + +#: includes/common/payment-gateways/2checkout.php:288 +#: includes/common/payment-gateways/mijireh.php:242 +#: includes/common/payment-gateways/mollie.php:212 +msgid "The order has been received" +msgstr "وقد وردت بالترتيب" + +#: includes/common/payment-gateways/2checkout.php:74 +#: includes/common/payment-gateways/2checkout.php:75 +#: includes/common/payment-gateways/2checkout.php:435 +msgid "2Checkout" +msgstr "2Checkout" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:306 +msgid "Confirm" +msgstr "تأكيد" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:218 +#: includes/common/class-mp-cart.php:974 includes/common/class-mp-cart.php:1354 +#: includes/common/template-functions.php:918 +msgid "Checkout" +msgstr "الدفع" + +#: includes/common/template-functions.php:207 +msgid "Check Order Status" +msgstr "التحقق من حالة النظام" + +#: includes/common/template-functions.php:235 +msgid "View Products" +msgstr "عرض المنتجات" + +#: includes/common/template-functions.php:263 +msgid "Visit Store" +msgstr "زيارة المتجر" + +#: includes/common/template-functions.php:2912 +#: includes/multisite/template-functions.php:448 +msgid "Order By" +msgstr "ترتيب حسب" + +#: includes/common/template-functions.php:2887 +#: includes/multisite/template-functions.php:405 +msgid "Price (High to Low)" +msgstr "السعر (عالية إلى منخفضة)" + +#: includes/common/template-functions.php:2886 +#: includes/multisite/template-functions.php:404 +msgid "Price (Low to High)" +msgstr "السعر (منخفضة إلى عالية)" + +#: includes/common/template-functions.php:2881 +#: includes/multisite/template-functions.php:399 +msgid "Default" +msgstr "الافتراضي" + +#: includes/common/template-functions.php:2858 +msgid "Show All" +msgstr "إظهار الكل" + +#: includes/common/class-mp-product.php:2048 +msgid "View Larger Image »" +msgstr "عرض صورة أكبر»" + +#: includes/common/class-mp-product.php:979 +msgid "Out of Stock" +msgstr "للخروج من الأسهم" + +#: includes/common/template-functions.php:148 +msgid "Price: " +msgstr "السعر:" + +#: includes/multisite/template-functions.php:833 +msgid "No Tags" +msgstr "لا يوجد به" + +#: includes/common/template-functions.php:3162 +msgid "Uncategorized" +msgstr "غير مصنف" + +#: includes/common/class-mp-cart.php:569 includes/common/class-mp-order.php:604 +#: includes/common/helpers.php:115 +msgid "Download" +msgstr "تحميل" + +#: includes/common/class-mp-cart.php:1353 +msgid "Empty Cart" +msgstr "العربة فارغة" + +#: includes/common/payment-gateways/_payway.php:291 +#: includes/common/payment-gateways/paypal-express.php:718 +#: includes/common/payment-gateways/paypal-payflow.php:423 +#: includes/common/shipping-modules/mp-ups.php:158 +#: includes/public/class-mp-checkout.php:1254 +#: includes/public/class-mp-checkout.php:1383 +msgid "Password" +msgstr "كلمة المرور" + +#: includes/common/payment-gateways/eway.php:387 +#: includes/common/payment-gateways/paypal-express.php:711 +#: includes/common/shipping-modules/mp-usps.php:185 +#: includes/public/class-mp-checkout.php:1249 +msgid "Username" +msgstr "اسم المستخدم" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:437 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:790 +msgid "Have a coupon code?" +msgstr "وقد رمز قسيمة؟" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:321 +#: includes/admin/class-mp-orders-admin.php:526 +#: includes/common/class-mp-cart.php:592 +msgid "Remove" +msgstr "إزالة" + +#: includes/admin/class-mp-ajax.php:316 +msgid "Quantity:" +msgstr "الكمية:" + +#: includes/admin/class-mp-products-admin.php:2140 +#: includes/admin/class-mp-products-admin.php:2387 +#: includes/common/shipping-modules/class-mp-shipping-api.php:507 +msgid "Extra Shipping Cost" +msgstr "تكاليف الشحن الإضافية" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:403 +msgid "Choose a Shipping Method:" +msgstr "اختيار طريقة شحن:" + +#: includes/admin/class-mp-products-admin.php:1691 +#: includes/admin/class-mp-products-admin.php:2131 +#: includes/admin/class-mp-products-admin.php:2378 +#: includes/common/shipping-modules/class-mp-shipping-api.php:228 +msgid "Ounces" +msgstr "أوقية" + +#: includes/admin/class-mp-products-admin.php:1684 +#: includes/admin/class-mp-products-admin.php:2123 +#: includes/admin/class-mp-products-admin.php:2369 +#: includes/admin/class-mp-setup-wizard.php:546 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:165 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +#: includes/common/shipping-modules/class-mp-shipping-api.php:227 +msgid "Pounds" +msgstr "جنيه استرليني" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:226 +msgid "Product Weight:" +msgstr "وزن المنتج:" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:214 +msgid "Weight (Kilograms)" +msgstr "الوزن (كجم)" + +#: includes/admin/widgets/ms-global-categories.php:82 +msgid "Number of Categories:" +msgstr "عدد الفئات:" + +#: includes/admin/widgets/ms-global-categories.php:72 +msgid "Product Count" +msgstr "عدد المنتجات" + +#: includes/addons/class-mp-addons-list-table.php:20 +#: includes/admin/class-mp-product-attributes-admin.php:129 +#: includes/admin/class-mp-product-attributes-list-table.php:22 +#: includes/admin/class-mp-products-admin.php:2216 +#: includes/admin/class-mp-shortcode-builder.php:628 +#: includes/admin/class-mp-shortcode-builder.php:1415 +#: includes/admin/widgets/ms-global-categories.php:70 +#: includes/common/shipping-modules/mp-fedex.php:395 +#: includes/common/shipping-modules/mp-ups.php:202 +#: includes/common/shipping-modules/mp-usps.php:243 +#: includes/public/class-mp-checkout.php:314 +msgid "Name" +msgstr "الاسم" + +#: includes/admin/widgets/ms-global-categories.php:67 +msgid "Order Categories By:" +msgstr "ترتيب الفئات حسب:" + +#: includes/admin/widgets/ms-global-categories.php:24 +#: includes/admin/widgets/ms-global-categories.php:50 +msgid "Global Product Categories" +msgstr "فئات المنتجات العالمية" + +#: includes/admin/widgets/ms-global-categories.php:15 +msgid "Global Product Category List" +msgstr "من القائمة فئة المنتج العالمي" + +#: includes/admin/widgets/ms-global-categories.php:13 +msgid "Displays a network-wide HTML list of product categories from network MarketPress stores." +msgstr "يعرض قائمة HTML شبكة واسعة من فئات المنتجات من شبكة محلات تجارية ماركيتبريس." + +#: includes/admin/widgets/ms-global-tag-cloud.php:24 +#: includes/admin/widgets/ms-global-tag-cloud.php:45 +msgid "Global Product Tags" +msgstr "علامات المنتج العالمي" + +#: includes/admin/widgets/ms-global-tag-cloud.php:15 +msgid "Global Product Tag Cloud" +msgstr "سحابة المنتج العالمي" + +#: includes/admin/class-mp-shortcode-builder.php:947 +#: includes/admin/widgets/ms-global-product-list.php:173 +msgid "Excerpt" +msgstr "مقتطفات" + +#: includes/admin/widgets/ms-global-product-list.php:169 +msgid "Content To Show:" +msgstr "لإظهار محتوى:" + +#: includes/admin/widgets/ms-global-product-list.php:140 +msgid "Limit To Product Tag:" +msgstr "الحد الأقصى للعلامة المنتج:" + +#: includes/admin/widgets/ms-global-product-list.php:132 +msgid "Limit To Product Category:" +msgstr "الحد الأقصى لفئة المنتج:" + +#: includes/admin/widgets/ms-global-product-list.php:72 +msgid "Global Products" +msgstr "المنتجات العالمية" + +#: includes/admin/widgets/ms-global-product-list.php:16 +msgid "Global Product List" +msgstr "قائمة المنتجات العالمية" + +#: includes/admin/widgets/ms-global-product-list.php:14 +msgid "Shows a customizable global list of products from network MarketPress stores." +msgstr "تظهر قائمة عمومية لتخصيص من المنتجات من شبكة محلات تجارية ماركيتبريس." + +#: includes/common/class-mp-product.php:974 +#: includes/multisite/template-functions.php:731 +msgid "Buy Now »" +msgstr "شراء الآن»" + +#: includes/admin/widgets/ms-global-tag-cloud.php:13 +msgid "Displays global most used product tags in cloud format from network MarketPress stores." +msgstr "يعرض العالمية الأكثر استخداماً العلامات المنتج في شكل سحابة من شبكة محلات تجارية ماركيتبريس." + +#: includes/multisite/class-mp-admin-multisite.php:438 +msgid "Theme Permissions" +msgstr "موضوع أذونات" + +#: includes/multisite/class-mp-admin-multisite.php:402 +#: includes/multisite/class-mp-admin-multisite.php:448 +msgid "No Access" +msgstr "لا يمكن الوصول" + +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:120 +msgid "Pro Site Level" +msgstr "مستوى موقع برو" + +#: includes/multisite/class-mp-admin-multisite.php:401 +#: includes/multisite/class-mp-admin-multisite.php:447 +msgid "All Can Use" +msgstr "ويمكن استخدام كل" + +#: includes/multisite/class-mp-admin-multisite.php:390 +msgid "Gateway Permissions" +msgstr "بوابة أذونات" + +#: includes/multisite/class-mp-admin-multisite.php:375 +msgid "Select a Gateway" +msgstr "قم بتحديد عبارة" + +#: includes/multisite/class-mp-admin-multisite.php:350 +msgid "Global Gateway" +msgstr "البوابة العالمية" + +#. Plugin Name of the plugin/theme +msgid "MarketPress" +msgstr "ماركيتبريس" + +#: includes/admin/widgets/product-tag-cloud.php:7 +msgid "Your most used product tags in cloud format from your MarketPress store." +msgstr "تستخدم معظم الخاص بك المنتج العلامات في شكل سحابة من مخزن ماركيتبريس الخاص بك." + +#: includes/admin/widgets/categories.php:79 +msgid "Show hierarchy" +msgstr "إظهار التسلسل الهرمي" + +#: includes/admin/widgets/categories.php:76 +#: includes/admin/widgets/ms-global-categories.php:92 +msgid "Show product counts" +msgstr "إظهار التهم المنتج" + +#: includes/admin/widgets/categories.php:73 +msgid "Show as dropdown" +msgstr "وتظهر كقائمة منسدلة" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:710 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:736 +#: includes/admin/widgets/categories.php:30 +msgid "Select Category" +msgstr "حدد الفئة" + +#: includes/admin/widgets/categories.php:7 +msgid "A list or dropdown of product categories from your MarketPress store." +msgstr "قائمة أو قائمة منسدلة من فئات المنتجات من مخزن ماركيتبريس الخاص بك." + +#: includes/admin/widgets/product-list.php:250 +msgid "Show Buy Button" +msgstr "إظهار زر شراء" + +#: includes/admin/widgets/ms-global-product-list.php:183 +#: includes/admin/widgets/product-list.php:244 +msgid "Show Price" +msgstr "إظهار الأسعار" + +#: includes/admin/widgets/product-list.php:241 +msgid "Show Excerpt" +msgstr "وتظهر مقتطفات" + +#: includes/admin/widgets/ms-global-product-list.php:155 +#: includes/admin/widgets/product-list.php:238 +msgid "Thumbnail Size:" +msgstr "حجم الصورة المصغرة:" + +#: includes/admin/widgets/ms-global-product-list.php:153 +#: includes/admin/widgets/product-list.php:237 +msgid "Show Thumbnail" +msgstr "إظهار صورة مصغرة" + +#: includes/admin/widgets/ms-global-product-list.php:147 +#: includes/admin/widgets/product-list.php:233 +msgid "Display Settings" +msgstr "إعدادات العرض" + +#: includes/admin/widgets/ms-global-product-list.php:136 +#: includes/admin/widgets/ms-global-product-list.php:144 +#: includes/admin/widgets/product-list.php:230 +msgid "Enter the Slug" +msgstr "أدخل سبيكة" + +#: includes/admin/widgets/product-list.php:228 +#: includes/common/template-functions.php:894 +msgid "Tag" +msgstr "العلامة" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:686 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:712 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:739 +#: includes/admin/class-mp-shortcode-builder.php:796 +#: includes/admin/widgets/product-list.php:227 +#: includes/common/template-functions.php:886 +#: includes/common/template-functions.php:2907 +msgid "Category" +msgstr "الفئة" + +#: includes/admin/widgets/product-list.php:226 +msgid "No Filter" +msgstr "لا يوجد عامل تصفية" + +#: includes/admin/widgets/product-list.php:224 +msgid "Taxonomy Filter:" +msgstr "تصفية التصنيف:" + +#: includes/admin/widgets/ms-global-product-list.php:108 +#: includes/admin/widgets/product-list.php:209 +msgid "Order Products By:" +msgstr "ترتيب المنتجات حسب:" + +#: includes/admin/widgets/ms-global-product-list.php:101 +#: includes/admin/widgets/product-list.php:206 +msgid "Number of Products:" +msgstr "عدد المنتجات:" + +#: includes/admin/widgets/ms-global-product-list.php:98 +#: includes/admin/widgets/product-list.php:204 +msgid "List Settings" +msgstr "إعدادات القائمة" + +#: includes/admin/widgets/product-list.php:177 +msgid "Our Products" +msgstr "منتجاتنا" + +#: includes/admin/widgets/product-list.php:144 +#: includes/common/template-functions.php:2070 +#: includes/common/template-functions.php:2347 +#: includes/multisite/template-functions.php:303 +#: includes/multisite/template-functions.php:623 +msgid "No Products" +msgstr "لا توجد منتجات" + +#: includes/admin/widgets/product-list.php:8 +msgid "Product List" +msgstr "قائمة المنتجات" + +#: includes/admin/widgets/product-list.php:7 +msgid "Shows a customizable list of products from your MarketPress store." +msgstr "تظهر قائمة قابلة لتخصيص من المنتجات من مخزن ماركيتبريس الخاص بك." + +#: includes/admin/widgets/cart.php:75 includes/admin/widgets/categories.php:82 +#: includes/admin/widgets/product-list.php:253 +#: includes/admin/widgets/product-tag-cloud.php:57 +msgid "Only show on store pages" +msgstr "إظهار فقط على صفحات المتجر" + +#: includes/admin/widgets/cart.php:65 +#: includes/admin/widgets/ms-global-product-list.php:92 +#: includes/admin/widgets/product-list.php:200 +msgid "Custom Text:" +msgstr "نص مخصص:" + +#: includes/admin/widgets/cart.php:64 includes/admin/widgets/categories.php:69 +#: includes/admin/widgets/ms-global-categories.php:59 +#: includes/admin/widgets/ms-global-product-list.php:87 +#: includes/admin/widgets/ms-global-tag-cloud.php:49 +#: includes/admin/widgets/product-list.php:199 +#: includes/admin/widgets/product-tag-cloud.php:49 +msgid "Title:" +msgstr "العنوان:" + +#: includes/admin/widgets/cart.php:7 +msgid "Shows dynamic shopping cart contents along with a checkout button for your MarketPress store." +msgstr "تظهر محتويات عربة التسوق الحيوية جنبا إلى جنب مع زر اتمام الدفع لمخزن ماركيتبريس الخاص بك." + +#: includes/admin/widgets/product-tag-cloud.php:8 +msgid "Product Tag Cloud" +msgstr "سحابة المنتج" + +#: includes/admin/class-mp-setup-wizard.php:539 +#: includes/admin/class-mp-setup-wizard.php:575 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:163 +msgid "Measurement System" +msgstr "نظام القياس" + +#: includes/admin/class-mp-setup-wizard.php:616 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:149 +msgid "Select Shipping Options" +msgstr "حدد خيارات الشحن" + +#: includes/admin/class-mp-setup-wizard.php:596 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:129 +msgid "Calculated Options" +msgstr "الخيارات المحسوبة" + +#: includes/admin/class-mp-setup-wizard.php:582 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:115 +msgid "No Shipping" +msgstr "لا الشحن" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:110 +msgid "EU" +msgstr "الاتحاد الأوروبي" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:109 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:93 +msgid "All" +msgstr "جميع" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:92 +msgid "Select:" +msgstr "قم بتحديد:" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:185 +msgid "Store Pages" +msgstr "تخزين صفحات" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:223 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:256 +msgid "Order Shipped" +msgstr "ترتيب شحن" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:60 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:95 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:128 +#: marketpress.php:266 +msgid "New Order" +msgstr "النظام الجديد" + +#: includes/admin/class-mp-dashboard-widgets.php:314 +msgid "Email Notifications" +msgstr "إعلامات البريد الإلكتروني" + +#: includes/admin/class-mp-pages-admin.php:59 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:200 +msgid "Products List" +msgstr "قائمة المنتجات" + +#: includes/admin/class-mp-pages-admin.php:58 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:190 +msgid "Store Base" +msgstr "مخزن قاعدة" + +#: includes/admin/class-mp-product-attributes-admin.php:108 +#: includes/admin/class-mp-shortcode-builder.php:635 +#: includes/admin/class-mp-shortcode-builder.php:708 +#: includes/admin/class-mp-shortcode-builder.php:875 +#: includes/admin/class-mp-shortcode-builder.php:1319 +#: includes/admin/class-mp-shortcode-builder.php:1422 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:526 +#: includes/admin/widgets/ms-global-categories.php:78 +#: includes/admin/widgets/ms-global-product-list.php:127 +#: includes/admin/widgets/product-list.php:221 +msgid "Ascending" +msgstr "ترتيب تصاعدي" + +#: includes/admin/class-mp-product-attributes-admin.php:109 +#: includes/admin/class-mp-shortcode-builder.php:636 +#: includes/admin/class-mp-shortcode-builder.php:709 +#: includes/admin/class-mp-shortcode-builder.php:876 +#: includes/admin/class-mp-shortcode-builder.php:1320 +#: includes/admin/class-mp-shortcode-builder.php:1423 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:525 +#: includes/admin/widgets/ms-global-categories.php:75 +#: includes/admin/widgets/ms-global-product-list.php:124 +#: includes/admin/widgets/product-list.php:220 +msgid "Descending" +msgstr "تنازلي" + +#: includes/admin/class-mp-shortcode-builder.php:637 +#: includes/admin/class-mp-shortcode-builder.php:695 +#: includes/admin/class-mp-shortcode-builder.php:862 +#: includes/admin/class-mp-shortcode-builder.php:1306 +#: includes/admin/class-mp-shortcode-builder.php:1424 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:518 +#: includes/admin/widgets/ms-global-product-list.php:121 +#: includes/admin/widgets/product-list.php:218 +msgid "Random" +msgstr "عشوائية" + +#: includes/admin/class-mp-shortcode-builder.php:694 +#: includes/admin/class-mp-shortcode-builder.php:861 +#: includes/admin/class-mp-shortcode-builder.php:1305 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:517 +#: includes/admin/widgets/ms-global-product-list.php:119 +#: includes/admin/widgets/product-list.php:216 +msgid "Product Price" +msgstr "سعر المنتج" + +#: includes/admin/class-mp-shortcode-builder.php:693 +#: includes/admin/class-mp-shortcode-builder.php:860 +#: includes/admin/class-mp-shortcode-builder.php:1304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:516 +#: includes/admin/widgets/ms-global-product-list.php:117 +#: includes/admin/widgets/product-list.php:215 +msgid "Number of Sales" +msgstr "عدد المبيعات" + +#: includes/admin/class-mp-shortcode-builder.php:692 +#: includes/admin/class-mp-shortcode-builder.php:859 +#: includes/admin/class-mp-shortcode-builder.php:1303 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:515 +#: includes/admin/widgets/product-list.php:214 +msgid "Product Author" +msgstr "الكاتب المنتج" + +#: includes/admin/class-mp-shortcode-builder.php:691 +#: includes/admin/class-mp-shortcode-builder.php:858 +#: includes/admin/class-mp-shortcode-builder.php:1302 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:514 +#: includes/admin/widgets/product-list.php:213 +msgid "Product ID" +msgstr "معرف المنتج" + +#: includes/admin/class-mp-shortcode-builder.php:690 +#: includes/admin/class-mp-shortcode-builder.php:857 +#: includes/admin/class-mp-shortcode-builder.php:1301 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:513 +#: includes/admin/widgets/ms-global-product-list.php:113 +#: includes/admin/widgets/product-list.php:212 +msgid "Publish Date" +msgstr "تاريخ النشر" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:430 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:726 +msgid "Width" +msgstr "العرض" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:439 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:735 +msgid "Height" +msgstr "الارتفاع" + +#: includes/admin/class-mp-product-attributes-admin.php:88 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:402 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:698 +msgid "Custom" +msgstr "مخصص" + +#: includes/common/class-mp-product.php:179 +#: includes/common/class-mp-product.php:992 +#: includes/common/class-mp-product.php:1000 +#: includes/multisite/template-functions.php:579 +msgid "Buy Now" +msgstr "شراء الآن" + +#: includes/common/class-mp-product.php:175 +#: includes/common/class-mp-product.php:990 +#: includes/common/class-mp-product.php:998 +msgid "Add To Cart" +msgstr "إضافة إلى عربة" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:807 +msgid "Store Style" +msgstr "نمط مخزن" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1021 +msgid "Edit Coupon" +msgstr "تحرير قسيمة" + +#: includes/addons/mp-coupons/class-mp-coupon.php:580 +#: includes/admin/class-mp-ajax.php:238 +#: includes/admin/class-mp-products-admin.php:1532 +msgid "Unlimited" +msgstr "غير محدود" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1198 +msgid "Remaining Uses" +msgstr "الاستخدامات المتبقية" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1197 +msgid "Used" +msgstr "يستخدم" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:752 +#: includes/admin/class-mp-products-admin.php:2343 +msgid "Start Date" +msgstr "تاريخ البدء" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:598 +msgid "Coupon Code" +msgstr "رمز القسيمة" + +#: includes/admin/class-mp-orders-admin.php:444 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:284 +msgid "Save Changes" +msgstr "حفظ التغييرات" + +#: includes/admin/class-mp-pages-admin.php:57 +#: includes/admin/class-mp-shortcode-builder.php:716 +#: includes/admin/class-mp-shortcode-builder.php:727 +#: includes/admin/class-mp-shortcode-builder.php:883 +#: includes/admin/class-mp-shortcode-builder.php:894 +#: includes/admin/class-mp-shortcode-builder.php:946 +#: includes/admin/class-mp-shortcode-builder.php:956 +#: includes/admin/class-mp-shortcode-builder.php:1006 +#: includes/admin/class-mp-shortcode-builder.php:1327 +#: includes/admin/class-mp-shortcode-builder.php:1338 +#: includes/admin/store-settings/class-mp-store-settings-general.php:357 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:270 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:108 +#: includes/admin/widgets/ms-global-product-list.php:172 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:94 +msgid "None" +msgstr "لا شيء" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:352 +msgid "Google Analytics Ecommerce Tracking" +msgstr "تتبع التجارة الإلكترونية جوجل تحليلات" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:310 +msgid "This option turns MarketPress into more of a product listing plugin, disabling shopping carts, checkout, and order management. This is useful if you simply want to list items you can buy in a store somewhere else, optionally linking the \"Buy Now\" buttons to an external site. Some examples are a car dealership, or linking to songs/albums in itunes, or linking to products on another site with your own affiliate links." +msgstr "يتحول هذا الخيار ماركيتبريس إلى أكثر من منتج سرد البرنامج المساعد، وتعطيل عربات التسوق، وعملية الدفع، وإدارة النظام. وهذا مفيد إذا كنت تريد ببساطة إلى قائمة العناصر التي يمكنك شراء في متجر في مكان آخر، بشكل اختياري ربط أزرار \"اشتر الآن\" إلى موقع خارجي. بعض أمثلة لبيع سيارات، أو ربط للأغاني/ألبومات في أي تيونز، أو ربط للمنتجات على موقع آخر مع الخاصة بك انضم صلة." + +#: includes/admin/store-settings/class-mp-store-settings-general.php:304 +msgid "Whether or not customers must be registered and logged in to checkout. (Not recommended: Enabling this can lower conversions)" +msgstr "أم لا يجب تسجيل العملاء وتسجيل الدخول إلى لإتمام عملية الدفع. (غير مستحسن: تمكين هذا يمكن أن انخفاض التحويلات)" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:258 +msgid "How many times may a customer download a file they have purchased? (It's best to set this higher than one in case they have any problems downloading)" +msgstr "كم من المرات قد عميل بتنزيل ملف أنهم اشتروا؟ (فإنه من الأفضل تعيين هذا أعلى من واحد في حال لديهم أية مشاكل في تحميل)" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:257 +msgid "Maximum Downloads" +msgstr "الأسبوعية كحد أقصى" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:298 +msgid "This will set the product to draft if inventory of all variations is gone." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:288 +msgid "At what low stock count do you want to be warned for products you have enabled inventory tracking for?" +msgstr "تريد أن تكون حذر لمنتجات قمت بتمكين تتبع للمخزون في ما عدد الأسهم المنخفضة؟" + +#: includes/admin/class-mp-dashboard-widgets.php:208 +#: includes/admin/store-settings/class-mp-store-settings-general.php:287 +msgid "Inventory Warning Threshold" +msgstr "عتبة الإنذار المخزون" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:282 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:542 +msgid "Miscellaneous Settings" +msgstr "إعدادات متنوعة" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:429 +#: includes/multisite/class-mp-admin-multisite.php:247 +msgid "Show Decimal in Prices" +msgstr "تظهر العلامة العشرية في أسعار" + +#: includes/admin/class-mp-setup-wizard.php:451 +#: includes/admin/store-settings/class-mp-store-settings-general.php:403 +#: includes/multisite/class-mp-admin-multisite.php:221 +msgid "Currency Symbol Position" +msgstr "موضع رمز العملة" + +#: includes/admin/class-mp-setup-wizard.php:444 +#: includes/admin/store-settings/class-mp-store-settings-general.php:396 +msgid "Store Currency" +msgstr "تخزين العملة" + +#: includes/admin/class-mp-setup-wizard.php:429 +#: includes/admin/store-settings/class-mp-store-settings-general.php:381 +msgid "Currency Settings" +msgstr "إعدادات العملة" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:516 +msgid "Please see your local tax laws. Note if this is enabled and a downloadable only cart, rates will be the default for your base location." +msgstr "يرجى الاطلاع على قوانين الضرائب المحلية الخاصة بك. ملاحظة إذا لم يتم تمكين هذا للتحميل فقط عربة التسوق، وستكون معدلات الافتراضي للموقع الأساسي الخاص بك." + +#: includes/admin/class-mp-setup-wizard.php:529 +msgid "Apply Tax to Downloadable Products?" +msgstr "تطبيق الضريبة على المنتجات القابلة للتحميل؟" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:498 +msgid "Enabling this option allows you to enter and show all prices inclusive of tax, while still listing the tax total as a line item in shopping carts. Please see your local tax laws." +msgstr "تمكين هذا الخيار يسمح لك بإدخال وإظهار جميع الأسعار شاملة للضرائب، بينما لا تزال قائمة الضرائب الإجمالية كبند في عربات التسوق. يرجى الاطلاع على قوانين الضرائب المحلية الخاصة بك." + +#: includes/admin/class-mp-setup-wizard.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:497 +msgid "Enter Prices Inclusive of Tax?" +msgstr "أدخل الأسعار شاملة للضرائب؟" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:492 +msgid "Please see your local tax laws. Most areas charge tax on shipping fees." +msgstr "يرجى الاطلاع على قوانين الضرائب المحلية الخاصة بك. معظم المناطق المسؤول عن فرض ضريبة على رسوم الشحن." + +#: includes/admin/class-mp-setup-wizard.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:491 +msgid "Apply Tax To Shipping Fees?" +msgstr "تطبيق ضريبة على رسوم الشحن؟" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:674 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:565 +#: includes/common/payment-gateways/authorizenet-aim.php:291 +#: includes/common/payment-gateways/authorizenet-aim.php:326 +#: includes/common/payment-gateways/payfast.php:347 +msgid "No" +msgstr "لا" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:675 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:759 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:512 +#: includes/admin/class-mp-setup-wizard.php:518 +#: includes/admin/class-mp-setup-wizard.php:524 +#: includes/admin/class-mp-setup-wizard.php:530 +#: includes/admin/class-mp-setup-wizard.php:564 +#: includes/admin/store-settings/class-mp-store-settings-general.php:232 +#: includes/admin/store-settings/class-mp-store-settings-general.php:299 +#: includes/admin/store-settings/class-mp-store-settings-general.php:305 +#: includes/admin/store-settings/class-mp-store-settings-general.php:311 +#: includes/admin/store-settings/class-mp-store-settings-general.php:317 +#: includes/admin/store-settings/class-mp-store-settings-general.php:328 +#: includes/admin/store-settings/class-mp-store-settings-general.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:341 +#: includes/admin/store-settings/class-mp-store-settings-general.php:348 +#: includes/admin/store-settings/class-mp-store-settings-general.php:367 +#: includes/admin/store-settings/class-mp-store-settings-general.php:493 +#: includes/admin/store-settings/class-mp-store-settings-general.php:499 +#: includes/admin/store-settings/class-mp-store-settings-general.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:556 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:375 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:381 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:387 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:474 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:493 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:532 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:574 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:606 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:664 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:670 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:677 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:683 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:689 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:763 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:774 +#: includes/common/payment-gateways/_bitpay.php:250 +#: includes/common/payment-gateways/_bitpay.php:257 +#: includes/common/payment-gateways/_bitpay.php:264 +#: includes/common/payment-gateways/authorizenet-aim.php:290 +#: includes/common/payment-gateways/authorizenet-aim.php:325 +#: includes/common/payment-gateways/free_orders.php:160 +#: includes/common/payment-gateways/payfast.php:346 +#: includes/common/payment-gateways/paymill.php:162 +#: includes/common/payment-gateways/paypal-payflow.php:441 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-checkbox.php:22 +msgid "Yes" +msgstr "نعم" + +#: includes/admin/class-mp-setup-wizard.php:492 +#: includes/admin/store-settings/class-mp-store-settings-general.php:472 +msgid "%s Tax Rate" +msgstr "معدل الضريبة % s" + +#: includes/admin/class-mp-setup-wizard.php:467 +#: includes/admin/store-settings/class-mp-store-settings-general.php:449 +msgid "Tax Settings" +msgstr "إعدادات الضريبة" + +#: includes/admin/class-mp-setup-wizard.php:370 +#: includes/admin/store-settings/class-mp-store-settings-general.php:624 +msgid "Base Zip/Postal Code" +msgstr "قاعدة الرمز البريدي" + +#: includes/admin/class-mp-setup-wizard.php:354 +#: includes/admin/store-settings/class-mp-store-settings-general.php:608 +msgid "Base State/Province/Region" +msgstr "قاعدة الدولة/المقاطعة/المنطقة" + +#: includes/admin/class-mp-setup-wizard.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:589 +msgid "Base Country" +msgstr "البلد قاعدة" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:582 +msgid "Location Settings" +msgstr "إعدادات الموقع" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:195 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:800 +#: includes/multisite/class-mp-admin-multisite.php:172 +msgid "General Settings" +msgstr "الإعدادات العامة" + +#: includes/admin/class-mp-products-admin.php:1945 +#: includes/admin/class-mp-products-admin.php:2185 +#: includes/admin/class-mp-store-settings-admin.php:111 +#: includes/admin/class-mp-store-settings-admin.php:266 +msgid "General" +msgstr "العام" + +#: includes/admin/class-mp-store-settings-admin.php:242 +msgid "Importers" +msgstr "المستوردين" + +#: includes/admin/class-mp-store-settings-admin.php:115 +#: includes/admin/class-mp-store-settings-admin.php:234 +msgid "Payments" +msgstr "المدفوعات" + +#: includes/admin/class-mp-dashboard-widgets.php:313 +#: includes/admin/class-mp-store-settings-admin.php:112 +#: includes/admin/class-mp-store-settings-admin.php:222 +msgid "Presentation" +msgstr "العرض التقديمي" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:916 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1015 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1018 +#: includes/admin/class-mp-dashboard-widgets.php:305 marketpress.php:702 +msgid "Coupons" +msgstr "كوبونات" + +#: includes/admin/class-mp-admin.php:251 +msgid "Download »" +msgstr "تحميل»" + +#: includes/admin/class-mp-admin.php:245 +#: includes/admin/class-mp-exporter-orders.php:170 +msgid "All Statuses" +msgstr "جميع الحالات" + +#: includes/admin/class-mp-admin.php:209 +#: includes/admin/class-mp-exporter-orders.php:150 +#: includes/admin/class-mp-exporter-orders.php:178 +msgid "Export Orders" +msgstr "أوامر التصدير" + +#: includes/admin/class-mp-admin.php:228 +msgid "Show all dates" +msgstr "إظهار كافة التواريخ" + +#: includes/admin/class-mp-orders-admin.php:947 +msgid "Change Status" +msgstr "تغيير الحالة" + +#: includes/admin/class-mp-orders-admin.php:287 +msgid "Order Notes" +msgstr "وتلاحظ الطلب" + +#: includes/admin/class-mp-orders-admin.php:478 +msgid "Other" +msgstr "الأخرى" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:205 +msgid "Subtotal" +msgstr "المجموع الفرعي" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:84 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:87 +#: includes/admin/class-mp-products-admin.php:1737 +#: includes/common/class-mp-cart.php:1409 +#: includes/common/class-mp-product.php:559 +msgid "Quantity" +msgstr "الكمية" + +#: includes/common/helpers.php:93 +msgid "Item" +msgstr "البند" + +#: includes/common/class-mp-order.php:1050 +msgid "Current Status" +msgstr "الوضع الحالي" + +#: includes/admin/class-mp-orders-admin.php:297 +msgid "Order Actions" +msgstr "ترتيب الإجراءات" + +#: includes/common/class-mp-product.php:1084 +msgid "More Info »" +msgstr "مزيد من المعلومات»" + +#: includes/common/class-mp-product.php:2313 +msgid "Low Product Inventory Notification" +msgstr "إعلام جرد المنتج منخفضة" + +#: includes/common/class-mp-order.php:338 includes/common/data.php:154 +msgid "New Order Notification: ORDERID" +msgstr "إعلام النظام الجديد: \"معرف الطلب\"" + +#: includes/common/helpers.php:259 +msgid "Your payment for this order is complete." +msgstr "اكتمال الدفع الخاص بك لهذا النظام." + +#: includes/common/helpers.php:261 +msgid "Your payment for this order is not yet complete. Here is the latest status:" +msgstr "لم يكتمل بعد الدفع الخاص بك لهذا النظام. هنا يتم وضع آخر:" + +#: includes/common/helpers.php:256 +msgid "Payment Total:" +msgstr "إجمالي الدفع:" + +#: includes/common/helpers.php:253 +msgid "Transaction ID:" +msgstr "معرف العملية:" + +#: includes/common/helpers.php:249 +msgid "Payment Type:" +msgstr "نوع الدفع:" + +#: includes/common/helpers.php:246 +msgid "Payment Method:" +msgstr "طريقة الدفع:" + +#: includes/common/helpers.php:242 +msgid "Order Notes:" +msgstr "ترتيب الملاحظات:" + +#: includes/common/helpers.php:237 +msgid "Special Instructions:" +msgstr "الإرشادات الخاصة:" + +#: includes/common/helpers.php:232 +msgid "Tracking Number:" +msgstr "رقم التتبع:" + +#: includes/common/helpers.php:223 includes/common/helpers.php:226 +#: includes/common/helpers.php:228 +#: includes/common/shipping-modules/class-mp-shipping-api.php:406 +#: includes/common/shipping-modules/class-mp-shipping-api.php:428 +msgid "Shipping Method:" +msgstr "أسلوب الشحن:" + +#: includes/common/helpers.php:168 +msgid "No shipping required for this order." +msgstr "لا الشحن المطلوبة لهذا الأمر." + +#: includes/common/helpers.php:155 +msgid "Order Total:" +msgstr "مجموع الترتيب:" + +#: includes/common/class-mp-order.php:1025 +msgid "Taxes:" +msgstr "الضرائب:" + +#: includes/common/class-mp-order.php:1032 includes/common/helpers.php:144 +msgid "Shipping:" +msgstr "النقل البحري:" + +#: includes/public/class-mp-checkout.php:367 +msgid "Street address, P.O. box, company name, c/o" +msgstr "عنوان الشارع، صندوق البريد، اسم، الشركة بوساطة" + +#: includes/admin/class-mp-orders-admin.php:314 +msgid "Shipping Info" +msgstr "معلومات الشحن" + +#: includes/public/class-mp-public.php:740 +msgid "Whoops, there was a problem loading up this file for your download. Please contact us for help." +msgstr "يصيح، وكان هناك مشكلة في تحميل هذا الملف للتحميل الخاص بك. يرجى الاتصال بنا للحصول على تعليمات." + +#: includes/public/class-mp-public.php:683 +msgid "Sorry, our records show you've downloaded this file %d out of %d times allowed. Please contact us if you still need help." +msgstr "عذراً، تظهر سجلاتنا قمت بتنزيل هذا الملف % d من % d مرات المسموح به. يرجى الاتصال بنا إذا كنت لا تزال بحاجة إلى مساعدة." + +#: includes/public/class-mp-public.php:634 +msgid "Sorry, your order has been marked as unpaid." +msgstr "آسف، النظام الخاص بك قد تم وضع علامة غير المسددة." + +#: includes/public/class-mp-public.php:629 +msgid "Sorry, the link is invalid for this download." +msgstr "آسف، الارتباط غير صالح لهذا التحميل." + +#: includes/admin/class-mp-exporter-orders.php:15 +#: includes/admin/class-mp-products-admin.php:1172 +msgid "Cheatin’ uh?" +msgstr "Cheatin' آه؟" + +#: includes/public/class-mp-public.php:407 +#: includes/public/class-mp-short-codes.php:128 +msgid "Please enter a valid email address." +msgstr "" + +#: includes/admin/class-mp-ajax.php:191 +#: includes/admin/class-mp-products-admin.php:1821 +#: includes/admin/class-mp-products-admin.php:2010 +#: includes/admin/class-mp-products-admin.php:2267 +msgid "File URL" +msgstr "ملف URL" + +#: includes/admin/class-mp-products-admin.php:1842 +msgid "External Link" +msgstr "ارتباط خارجي" + +#: includes/admin/class-mp-products-admin.php:2177 +msgid "Add Variation" +msgstr "إضافة التباين" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:126 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:289 +msgid "Inventory" +msgstr "المخزون" + +#: includes/admin/class-mp-products-admin.php:438 +#: includes/admin/class-mp-products-admin.php:578 +#: includes/admin/class-mp-products-admin.php:1552 +#: includes/admin/class-mp-products-admin.php:2053 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:134 +msgid "Sale Price" +msgstr "سعر البيع" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "Variation Name" +msgstr "اسم التباين" + +#: includes/admin/class-mp-products-admin.php:1931 +msgid "Product Details" +msgstr "تفاصيل المنتج" + +#: includes/admin/class-mp-product-attributes-list-table.php:33 +msgid "Delete" +msgstr "حذف" + +#: includes/admin/class-mp-orders-admin.php:1057 +msgid "Trashed" +msgstr "الحضيض" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:231 +#: includes/admin/class-mp-orders-admin.php:1015 +#: includes/common/class-mp-order.php:1052 includes/common/helpers.php:97 +msgid "Total" +msgstr "المجموع" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1196 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:210 +#: includes/admin/class-mp-orders-admin.php:1014 +msgid "Discount" +msgstr "الخصم" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:221 +#: includes/admin/class-mp-orders-admin.php:1013 +#: includes/common/payment-gateways/_ideal.php:148 +#: includes/common/payment-gateways/_payway.php:134 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:108 +msgid "Tax" +msgstr "الضرائب" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:216 +#: includes/admin/class-mp-orders-admin.php:1012 +#: includes/admin/class-mp-products-admin.php:1958 +#: includes/admin/class-mp-products-admin.php:2198 +#: includes/admin/class-mp-store-settings-admin.php:114 +#: includes/admin/class-mp-store-settings-admin.php:230 +#: includes/common/class-mp-cart.php:717 includes/common/helpers.php:168 +#: includes/common/payment-gateways/_ideal.php:137 +#: includes/common/payment-gateways/_payway.php:116 +#: includes/public/class-mp-checkout.php:1304 +msgid "Shipping" +msgstr "النقل البحري" + +#: includes/admin/class-mp-orders-admin.php:1011 +msgid "Items" +msgstr "العناصر" + +#: includes/admin/class-mp-orders-admin.php:1010 +msgid "From" +msgstr "من" + +#: includes/admin/class-mp-exporter-orders.php:154 +#: includes/admin/class-mp-orders-admin.php:1009 +#: includes/common/class-mp-gdpr.php:370 +msgid "Order Date" +msgstr "تاريخ الطلب" + +#: includes/admin/class-mp-orders-admin.php:1008 +#: includes/common/class-mp-gdpr.php:366 +#: includes/common/template-functions.php:2134 +msgid "Order ID" +msgstr "معرف الطلب" + +#: includes/addons/class-mp-addons-list-table.php:22 +#: includes/admin/class-mp-orders-admin.php:1007 +msgid "Status" +msgstr "مركز" + +#: includes/admin/class-mp-orders-admin.php:1155 +msgid "N/A" +msgstr "N/A" + +#: includes/admin/class-mp-dashboard-widgets.php:243 +#: includes/admin/class-mp-products-admin.php:464 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:142 +msgid "Sales" +msgstr "المبيعات" + +#: includes/admin/class-mp-products-admin.php:463 +msgid "Stock" +msgstr "الأوراق المالية" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:85 +#: includes/admin/class-mp-ajax.php:176 includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:434 +#: includes/admin/class-mp-products-admin.php:462 +#: includes/admin/class-mp-products-admin.php:576 +#: includes/admin/class-mp-products-admin.php:1519 +#: includes/admin/class-mp-products-admin.php:1569 +#: includes/admin/class-mp-products-admin.php:1950 +#: includes/admin/class-mp-products-admin.php:2059 +#: includes/admin/class-mp-products-admin.php:2190 +#: includes/admin/class-mp-products-admin.php:2330 +#: includes/common/class-mp-cart.php:1415 includes/common/helpers.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:130 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:276 +msgid "Price" +msgstr "الأسعار" + +#: includes/admin/class-mp-ajax.php:173 +#: includes/admin/class-mp-products-admin.php:461 +#: includes/admin/class-mp-products-admin.php:1972 +#: includes/admin/class-mp-products-admin.php:2224 +msgid "SKU" +msgstr "سكو" + +#: includes/admin/class-mp-products-admin.php:459 +#: includes/admin/class-mp-products-admin.php:1793 +#: includes/admin/class-mp-products-admin.php:1805 +#: includes/admin/class-mp-products-admin.php:2163 +msgid "Variations" +msgstr "الاختلافات" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:83 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:86 +#: includes/admin/class-mp-dashboard-widgets.php:134 +#: includes/admin/class-mp-products-admin.php:458 +#: includes/admin/class-mp-products-admin.php:837 +#: includes/admin/class-mp-shortcode-builder.php:689 +#: includes/admin/class-mp-shortcode-builder.php:856 +#: includes/admin/class-mp-shortcode-builder.php:1300 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:512 +#: includes/admin/widgets/ms-global-product-list.php:115 +#: includes/admin/widgets/product-list.php:211 +msgid "Product Name" +msgstr "اسم المنتج" + +#: includes/common/template-functions.php:2575 +msgid "Categorized in " +msgstr "يصنف في" + +#: includes/admin/class-mp-orders-admin.php:305 +#: includes/common/payment-gateways/free_orders.php:176 +msgid "Payment Information" +msgstr "معلومات الدفع" + +#: includes/admin/class-mp-exporter-orders.php:167 +#: includes/admin/class-mp-orders-admin.php:432 +#: includes/admin/class-mp-pages-admin.php:62 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:227 +#: includes/common/class-mp-gdpr.php:374 +#: includes/common/template-functions.php:175 +#: includes/common/template-functions.php:926 +msgid "Order Status" +msgstr "حالة طلب الشراء" + +#. translators: %s: orders closed +#: marketpress.php:327 +msgid "Closed (%s)" +msgid_plural "Closed (%s)" +msgstr[0] "مغلقة (% s)" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: includes/admin/class-mp-admin.php:249 +#: includes/admin/class-mp-orders-admin.php:375 +#: includes/admin/class-mp-orders-admin.php:951 +#: includes/admin/class-mp-orders-admin.php:1053 +#: includes/admin/class-mp-orders-admin.php:1065 +#: includes/common/class-mp-gdpr.php:330 +#: includes/common/class-mp-order.php:1019 marketpress.php:325 +msgid "Closed" +msgstr "مغلقة" + +#. translators: %s: shipped orders +#: marketpress.php:320 +msgid "Shipped (%s)" +msgid_plural "Shipped (%s)" +msgstr[0] "التي تم شحنها (% s)" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: includes/admin/class-mp-admin.php:248 +#: includes/admin/class-mp-orders-admin.php:376 +#: includes/admin/class-mp-orders-admin.php:950 +#: includes/admin/class-mp-orders-admin.php:1049 +#: includes/admin/class-mp-orders-admin.php:1064 +#: includes/common/class-mp-gdpr.php:329 +#: includes/common/class-mp-order.php:1002 marketpress.php:318 +msgid "Shipped" +msgstr "يتم شحنها" + +#. translators: %s: paid orders +#: marketpress.php:313 +msgid "Paid (%s)" +msgid_plural "Paid (%s)" +msgstr[0] "مدفوعة الأجر (% s)" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: includes/admin/class-mp-admin.php:247 +#: includes/admin/class-mp-orders-admin.php:377 +#: includes/admin/class-mp-orders-admin.php:949 +#: includes/admin/class-mp-orders-admin.php:1045 +#: includes/admin/class-mp-orders-admin.php:1063 +#: includes/common/class-mp-gdpr.php:328 +#: includes/common/payment-gateways/2checkout.php:294 +#: includes/common/payment-gateways/_cubepoints.php:130 +#: includes/common/payment-gateways/authorizenet-aim.php:193 +#: includes/common/payment-gateways/free_orders.php:91 +#: includes/common/payment-gateways/mijireh.php:248 +#: includes/common/payment-gateways/paymill.php:273 +#: includes/common/payment-gateways/paypal-express.php:933 +#: includes/common/payment-gateways/paypal-express.php:967 +#: includes/common/payment-gateways/pin.php:258 +#: includes/common/payment-gateways/simplify.php:181 +#: includes/common/payment-gateways/stripe.php:368 +#: includes/common/payment-gateways/wepay.php:269 marketpress.php:311 +msgid "Paid" +msgstr "دفعت" + +#. translators: %s: orders received +#: marketpress.php:306 +msgid "Received (%s)" +msgid_plural "Received (%s)" +msgstr[0] "تلقي (% s)" +msgstr[1] "" +msgstr[2] "" +msgstr[3] "" +msgstr[4] "" +msgstr[5] "" + +#: includes/admin/class-mp-admin.php:246 +#: includes/admin/class-mp-orders-admin.php:378 +#: includes/admin/class-mp-orders-admin.php:1041 +#: includes/admin/class-mp-orders-admin.php:1062 +#: includes/common/class-mp-gdpr.php:327 includes/common/class-mp-order.php:995 +#: includes/common/payment-gateways/payfast.php:244 marketpress.php:304 +msgid "Received" +msgstr "وتلقى" + +#: marketpress.php:268 +msgid "Search Orders" +msgstr "أوامر البحث" + +#: marketpress.php:267 +msgid "View Order" +msgstr "ترتيب العرض" + +#: marketpress.php:262 +msgid "Order" +msgstr "ترتيب" + +#: includes/admin/class-mp-dashboard-widgets.php:301 +#: includes/admin/class-mp-orders-admin.php:989 marketpress.php:261 +msgid "Orders" +msgstr "أوامر" + +#: marketpress.php:228 +msgid "No Products found in Trash" +msgstr "يتم العثور على أية منتجات في سلة المهملات" + +#: marketpress.php:227 +msgid "No Products Found" +msgstr "لا توجد منتجات وجدت" + +#: marketpress.php:226 +msgid "Search Products" +msgstr "البحث عن المنتجات" + +#: marketpress.php:225 marketpress.php:229 +msgid "View Product" +msgstr "عرض المنتج" + +#: marketpress.php:224 +msgid "New Product" +msgstr "منتج جديد" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1022 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:258 +#: marketpress.php:223 +msgid "Edit" +msgstr "تحرير" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1019 +msgid "Create New" +msgstr "إنشاء جديد" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:687 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:698 +#: marketpress.php:217 +msgid "Product" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:307 +#: includes/common/template-functions.php:173 +#: includes/common/template-functions.php:179 +#: includes/common/template-functions.php:902 +#: includes/multisite/template-functions.php:82 marketpress.php:216 +#: marketpress.php:219 +msgid "Products" +msgstr "المنتجات" + +#: includes/admin/class-mp-store-settings-admin.php:118 +#: includes/admin/widgets/product-tag-cloud.php:46 +#: includes/multisite/class-mp-admin-multisite.php:548 +msgid "Product Tags" +msgstr "علامات المنتج" + +#: includes/common/template-functions.php:2906 +#: includes/multisite/template-functions.php:449 +msgid "Product Category" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:117 +#: includes/admin/widgets/categories.php:8 +#: includes/admin/widgets/categories.php:18 +#: includes/multisite/class-mp-admin-multisite.php:539 +msgid "Product Categories" +msgstr "فئات المنتجات" + +#: includes/common/payment-gateways/stripe.php:332 +#: includes/common/template-functions.php:872 marketpress.php:218 +msgid "Store" +msgstr "مخزن" + +#: includes/admin/class-mp-pages-admin.php:60 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:209 +#: includes/admin/widgets/cart.php:8 includes/admin/widgets/cart.php:56 +#: includes/common/template-functions.php:174 +#: includes/common/template-functions.php:811 +msgid "Shopping Cart" +msgstr "عربة التسوق" + +#: includes/admin/class-mp-store-settings-admin.php:110 +#: includes/admin/class-mp-store-settings-admin.php:218 +msgid "Store Settings" +msgstr "تخزين الإعدادات" + +#: includes/addons/class-mp-addons-list-table.php:128 marketpress.php:607 +msgid "Settings" +msgstr "إعدادات" + +#: includes/common/data.php:178 includes/common/data.php:190 +msgid "Your Order Has Been Shipped! (ORDERID)" +msgstr "وقد تم شحن طلبك! (معرف الطلب)" + +#: includes/common/data.php:159 includes/common/data.php:166 +#: includes/common/data.php:172 +msgid "Your Order Confirmation (ORDERID)" +msgstr "تأكيد الطلب الخاص بك (معرف الطلب)" + +#: includes/common/data.php:148 +msgid "

    Thank you for your order! We appreciate your business, and please come back often to check out our new products.

    " +msgstr "

    شكرا لكم على النظام الخاص بك! ونحن نقدر عملك، ويرجى العودة غالباً للتحقق من المنتجات الجديدة.

    " + +#: includes/common/data.php:147 +msgid "

    You are almost done! Please do a final review of your order to make sure everything is correct then click the \"Confirm Payment\" button.

    " +msgstr "

    يمكنك القيام به تقريبا! الرجاء القيام بإجراء مراجعة نهائية للنظام الخاص بك للتأكد من أن كل شيء الصحيح، ثم انقر فوق الزر \"تأكيد الدفع\".

    " + +#: includes/common/data.php:145 +msgid "

    Please enter your shipping information in the form below to proceed with your order.

    " +msgstr "

    الرجاء إدخال معلومات الشحن الخاص بك في النموذج أدناه المضي قدما مع النظام الخاص بك.

    " + +#: includes/common/data.php:143 +msgid "

    If you have any questions about your order please do not hesitate to contact us.

    " +msgstr "

    إذا كان لديك أي أسئلة حول النظام الخاص بك لا تترددوا في الاتصال بنا.

    " + +#: includes/common/data.php:106 +msgid "tag" +msgstr "العلامة" + +#: includes/common/data.php:105 +msgid "category" +msgstr "الفئة" + +#: includes/common/data.php:104 +msgid "order-status" +msgstr "حالة الطلب" + +#: includes/common/data.php:103 +msgid "shopping-cart" +msgstr "عربة التسوق" + +#: includes/common/data.php:102 +msgid "products" +msgstr "المنتجات" + +#. Translators: change default slugs here +#: includes/common/data.php:101 +msgid "store" +msgstr "مخزن" \ No newline at end of file diff --git a/languages/mp-bg.mo b/languages/mp-bg.mo new file mode 100644 index 0000000000000000000000000000000000000000..06a88cfc4a8c2d700370ad70214b43fe68378704 GIT binary patch literal 1490 zcmZ{j-)|IE6vwYxjoBzBpa~C3j*$2u%(A;Bq1jrKy0&DKZrIS;_(E{HbGsdx&Yj$u zt>vv~q6sDv5fVZ`qYv-^4+VDHO*bvR@W9)dcjE*91Bv?N_e{Ipf^pL6=l(eNd(QdZ z*+2IWT~l}t;C&ZwTPAp>UK;RK3~QLb0ZxOjgI|EM?t`y^2K)eA0^bC0fp3F%L5cqz z+z&nh4}yPyuYk|M9QZdV=Z9Wa>OJr%_zqYF-vZBplFxvDfh|z-h7ghX7AQUZ1nvXx zfJ5LK_%YZ6kAVMxAA*OlDe+a%0ndU2eh*5W_rSy8Bd`WO1wR4{C}IR$1P_6?LGk6W z6gNI+mb4lV0;*f%wHisBO=f-ll^Tzt;DY)@$G)dk#kC&!F@=T#6E?M_B{%RrGL{zH znDlbwTkWYyt2Iq8_)+AC&F5$2P$6F^sA@>liLn}kZHWe?7fj%3t7@)2uammfaZJ@P zPAn?&O&F`w^Yg0iH_o>rn$%j=1MS9|8Vkk%?oKTeQiLl9=usZxKJ7@HgA4A&_?J|`L#bKvda!MmqJXt<* zvRoWKTELU5RcjN@thN$creeO3s~8jzCeF--2nQ3roE(n=*AGY0fNNu&jD0pU>5L5G ztQ*Gj+By?q!+0>VOe1rClB)+T>juuGv5Rq;!YG@@W2I5r9*%|d{umWUbDuk>bf{s4 zv1K|Hm~BUom-55;Vs6R}n=QAAO6Hn5-1?WgkvLUvQ1YHj$SJA)uJa?AU^$Cz^HzFM)F86)KQTzXH>Up~@)hEnIQS6n zI#NMT+U@Kqr^B1HTeNh137xNH**n~O?sMhqyeV1GpV;y(1kv?%D5LoF2UrI&@!&V4 z+kl&BbY1?5nO(jQcUQ0jOBAZw!kNp*G6S&H!B$6%AXv2PUFMYdBlnV>6i2ZN9|kV( zs=?;;5_;=EV@GV@yEKa5#ESxof0a{6k5VE2-@7ONnIG;{E_FzgUFqR=HtaX~!WGEp K06i$fC-pDqnQCbO literal 0 HcmV?d00001 diff --git a/languages/mp-bg.po b/languages/mp-bg.po new file mode 100644 index 00000000..a3f28131 --- /dev/null +++ b/languages/mp-bg.po @@ -0,0 +1,8954 @@ +# Translation of MarketPress in Bulgarian +# This file is distributed under the same license as the MarketPress package. +msgid "" +msgstr "" +"PO-Revision-Date: 2013-12-28 17:47:13+0000\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-Generator: GlotPress/2.3.1\n" +"Language: bg\n" +"Project-Id-Version: MarketPress\n" + +#: includes/public/class-mp-checkout.php:1285 +msgid "By clicking this checkbox you allow the website to process your personal data." +msgstr "" + +#: includes/common/class-mp-gdpr.php:382 +msgid "Order Info" +msgstr "" + +#: includes/common/class-mp-gdpr.php:268 +msgid "Shipping Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:267 +msgid "Shipping Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:266 +msgid "Shipping ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:265 +msgid "Shipping State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:264 +msgid "Shipping City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:263 +msgid "Shipping Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:262 +msgid "Shipping Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:261 +msgid "Shipping Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:260 +msgid "Shipping Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:259 +msgid "Shipping Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:258 +msgid "Shipping First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:254 +msgid "Billing Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:253 +msgid "Billing Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:252 +msgid "Billing ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:251 +msgid "Billing State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:250 +msgid "Billing City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:249 +msgid "Billing Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:248 +msgid "Billing Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:247 +msgid "Billing Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:246 +msgid "Billing Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:245 +msgid "Billing Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:244 +msgid "Billing First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:151 +msgid "Orders Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:139 +msgid "Customer Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:100 includes/common/class-mp-gdpr.php:116 +msgid "MarketPress User Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:81 +msgid "" +"In addition to standard WordPress session cookies, this site might be setting an\n" +"\t\t additional cookie to remember your cart settings. This cookie will last for one year." +msgstr "" + +#: includes/common/class-mp-gdpr.php:80 +msgid "Cookies" +msgstr "" + +#: includes/common/class-mp-gdpr.php:77 +msgid "" +"The following information will be collected in order to process orders: your name,\n" +"\t\t username, email address, avatar and profile URLs, address and phone number. This data can be\n" +"\t\t exported and removed." +msgstr "" + +#: includes/common/class-mp-gdpr.php:76 +msgid "Additional data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:71 +msgid "" +"This site might be using third party services and tools to process payments or/and\n" +"\t\t process shipping data when creating orders on the MarketPress store. These services include payment\n" +"\t\t gateways: 2Checkout, Authorize.net AIM, eWay shared payments, eWay Rapid 3.1 Payments, Mijireh,\n" +"\t\t Mollie, Paymill, PayPal, PIN, Simplify Commerce by MasterCard, Stripe and WePay; shipping gateways:\n" +"\t\t Fedex, UPS, USPS." +msgstr "" + +#: includes/common/class-mp-gdpr.php:70 +msgid "Third parties" +msgstr "" + +#: includes/admin/class-mp-admin.php:403 +msgid "Start creating store pages and products for your online shop here." +msgstr "" + +#: includes/admin/class-mp-admin.php:402 +msgid "Create Online Shop" +msgstr "" + +#: includes/admin/class-mp-admin.php:394 +msgid "Run Setup Wizard" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:234 +msgid "If having problems during invoice generation, add define( 'DOMPDF_ENABLE_HTML5PARSER', true ); to the wp-config.php file." +msgstr "" + +#: includes/public/class-mp-checkout.php:723 +msgid "Invalid Email" +msgstr "" + +#: includes/public/class-mp-checkout.php:721 +#: includes/public/class-mp-checkout.php:729 +msgid "This field is required" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:804 +msgid "This option changes the built-in css styles for store pages. For a custom css style, save your css file with the /* MarketPress Style: Your CSS Theme Name Here */ header line in the \"%s\" folder and it will appear in this list so you may select it. You should select \"None\" if you don't wish to use custom CSS styles or if you are using default theme templates or custom theme templates and css to make your own completely unique store design. For more information on custom theme templates click here »." +msgstr "" + +#: includes/public/class-mp-public.php:421 +#: includes/public/class-mp-short-codes.php:142 +msgid "Please enter a value greater than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:420 +#: includes/public/class-mp-short-codes.php:141 +msgid "Please enter a value less than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:419 +#: includes/public/class-mp-short-codes.php:140 +msgid "Please enter a value between {0} and {1}." +msgstr "" + +#: includes/public/class-mp-public.php:418 +#: includes/public/class-mp-short-codes.php:139 +msgid "Please enter a value between {0} and {1} characters long." +msgstr "" + +#: includes/public/class-mp-public.php:417 +#: includes/public/class-mp-short-codes.php:138 +msgid "Please enter at least {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:416 +#: includes/public/class-mp-short-codes.php:137 +msgid "Please enter no more than {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:415 +#: includes/public/class-mp-short-codes.php:136 +msgid "Please enter a value with a valid extension." +msgstr "" + +#: includes/public/class-mp-public.php:414 +#: includes/public/class-mp-short-codes.php:135 +msgid "Please enter the same value again." +msgstr "" + +#: includes/public/class-mp-public.php:413 +#: includes/public/class-mp-short-codes.php:134 +msgid "Please enter a valid credit card number." +msgstr "" + +#: includes/public/class-mp-public.php:412 +#: includes/public/class-mp-short-codes.php:133 +msgid "Please enter only digits." +msgstr "" + +#: includes/public/class-mp-public.php:411 +#: includes/public/class-mp-short-codes.php:132 +msgid "Please enter a valid number." +msgstr "" + +#: includes/public/class-mp-public.php:410 +#: includes/public/class-mp-short-codes.php:131 +msgid "Please enter a valid date (ISO)." +msgstr "" + +#: includes/public/class-mp-public.php:409 +#: includes/public/class-mp-short-codes.php:130 +msgid "Please enter a valid date." +msgstr "" + +#: includes/public/class-mp-public.php:408 +#: includes/public/class-mp-short-codes.php:129 +msgid "Please enter a valid URL." +msgstr "" + +#: includes/public/class-mp-public.php:406 +#: includes/public/class-mp-short-codes.php:127 +msgid "Please fix this field." +msgstr "" + +#: includes/public/class-mp-checkout.php:1287 +#: includes/public/class-mp-public.php:405 +#: includes/public/class-mp-short-codes.php:126 +msgid "This field is required." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:810 +msgid "None - Without Special CSS-styles" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:809 +msgid "Default - Using Default CSS-styles" +msgstr "" + +#: marketpress.php:739 +msgid "Enable multiple downloads per product" +msgstr "" + +#: marketpress.php:738 +msgid "Multiple Downloads" +msgstr "" + +#: includes/public/class-mp-checkout.php:715 +msgid "Invalid Zip Code" +msgstr "" + +#: includes/common/template-functions.php:2126 +msgid "Guest Email" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:195 +msgid "There was a problem finalizing your purchase. Please re-enter your credit card information and try again" +msgstr "" + +#: includes/common/class-mp-cart.php:565 includes/common/class-mp-order.php:600 +#: includes/common/helpers.php:111 +msgid "Download %1$s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:331 +msgid "Export products to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:328 +msgid "The import process uses the WordPress importer plugin." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:326 +msgid "Import / Export Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:325 +msgid "Export settings to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:324 +msgid "Import configuration" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:320 +msgid "Use the text below to export to a new installation. Or paste in the new configuration to import." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:318 +msgid "Import / Export Settings" +msgstr "" + +#. translators: URL to wp-admin/import.php +#: includes/admin/store-settings/class-mp-store-settings-import.php:266 +msgid "This importer is not installed. Please install importers from the main site." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:261 +msgid "Install Now" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:260 +msgid "Install %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:240 +msgid "Run Importer" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:239 +msgid "Run %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:258 +msgid "Import/Export" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1199 +msgid "Requires Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:737 +msgid "Optionally limit the user to some categories" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:671 +msgid "Should this coupon only be available to logged in users?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:670 +msgid "Require Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:655 +msgid "Mimimum number of products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:653 +msgid "Enter the minimum number of products in the cart that this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:648 +msgid "Can this coupon be limited to a number of products in the cart?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:334 +msgid "Add all values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:265 +msgid "Set as default variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:154 +msgid "Set Default" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:150 +msgid "More Info" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:40 +msgid "MarketPress - Quick Setup" +msgstr "" + +#: includes/public/class-mp-checkout.php:1399 +msgid "Proceed to checkout and create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1241 +#: includes/public/class-mp-checkout.php:1245 +msgid "Register account" +msgstr "" + +#: includes/public/class-mp-checkout.php:1233 +msgid "Register as customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:765 +msgid "

    Oops!

    Looks like you haven't added anything your cart. Let's go shopping!

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:763 +msgid "

    Oops!

    The cart is disabled.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing Information" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:214 +msgid "Global Currency" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:198 +msgid "Global Store Currency" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:507 +msgid "There are no shipping services available for this type of package in your location." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:168 +msgid "Using this USPS Shipping calculator requires requesting an Ecommerce API Username and Password. Get your free set of credentials here ». The password is no longer used for the API, just the username which you should enter below. The USPS test site has not yet been updated and currently doesn't work - you should just request activating your credentials with USPS and go live." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:339 +msgid "ZIP Code" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:334 +msgid "Last name" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:333 +msgid "First name" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:150 +msgid "These are the manual payment instructions to display on the order confirmation screen. TOTAL will be replaced with the order total and ORDERID will be replaced with Order ID." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:240 +msgid "You must login to Authorize.net merchant dashboard to obtain the API login ID and API transaction key. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:327 +msgid "
    1. Set the \"Return Method\" within Site Management to Header Redirect and set the \"Return URL\" to %s
    2. Set your notifications url to %s
    " +msgstr "" + +#: includes/common/data.php:191 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Also, digital downloads included in your order are now ready to be downloaded. Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:185 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order is now available to download! Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:184 +msgid "Your Order Is Ready To Be Downloaded! (ORDERID)" +msgstr "" + +#: includes/common/data.php:179 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:173 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received, your digital goods are ready to be downloaded and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:167 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received and your digital goods are ready to be downloaded. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:160 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +" Your order has been received, and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information: \n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/class-mp-product.php:638 +msgid "You can not add more items to cart." +msgstr "" + +#: includes/common/class-mp-product.php:635 +msgid "You can only add {0} to cart." +msgstr "" + +#: includes/common/class-mp-product.php:625 +msgid "This product has an order limit of %d." +msgstr "" + +#: includes/common/class-mp-order.php:1454 +msgid "Shipped: tracking code: %s" +msgstr "" + +#: includes/common/class-mp-order.php:1000 +#: includes/common/class-mp-order.php:1012 +msgid "Finished" +msgstr "" + +#: includes/common/class-mp-order.php:858 +msgid "Contact Details" +msgstr "" + +#: includes/common/class-mp-order.php:339 includes/common/data.php:155 +msgid "" +"A new order (ORDERID) was created in your store:\n" +"\n" +" ORDERINFOSKU\n" +"\n" +" SHIPPINGINFO\n" +"\n" +" PAYMENTINFO\n" +"\n" +msgstr "\n" + +#: includes/common/class-mp-cart.php:1858 +msgid "Add again" +msgstr "" + +#: includes/common/class-mp-cart.php:1852 +msgid "was removed from Shopping Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1242 +#: includes/public/class-mp-short-codes.php:160 +msgid "Cart update notice: this item has a limit per order or you have reached the stock limit." +msgstr "" + +#: includes/admin/widgets/product-list.php:235 +msgid "Show Only Featured Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:533 +msgid "If enabled, users won't be able to filter products per category and/or to order by release date/name/price." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:531 +msgid "Hide Products Filter?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:353 +msgid "Notification to registration email instead of billing email?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:322 +msgid "Order Shipped - Mixed orders (with both digital and physical products)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:289 +msgid "Order Shipped - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:224 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:194 +msgid "New Order - Mixed" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:161 +msgid "New Order - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:115 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:243 +msgid "Mixed orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:110 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:238 +msgid "Digital downloads orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:105 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:233 +msgid "Physical orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:96 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed.
    For orders placed with manual payment, emails set here will be overriden by the one configured in manual payments settings, under payments settings page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:89 +msgid "Customer Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:47 +msgid "Admin Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:566 +msgid "Only contact details" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:565 +msgid "Full billing info" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:561 +msgid "Details Collection" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:548 +msgid "Digital Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:515 +msgid "Apply Tax to Digital Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:236 +msgid "product (default)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:231 +msgid "If you are experiencing conflicts with other e-commerce plugins change this setting. This will change the internal post type of all your products. Please note that changing this option may break 3rd party themes or plugins." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1203 +msgid "Hide details" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1202 +msgid "Show all changes" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1184 +msgid "Version %s" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1161 +msgid "Current" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1131 +msgid "%s changelog" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:952 +msgid "We did not find any data for this plugin or theme..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:285 +msgid "Activate WPMU DEV Dashboard" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:279 +msgid "Just one more step - activate the WPMU DEV Dashboard plugin and you're all done!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:277 +msgid "Important updates are available for your WPMU DEV plugins/themes. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:273 +msgid "Just one more step to enable updates and support for %s!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:271 +msgid "Important updates are available for %s. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:264 +msgid "activate" +msgstr "" + +#: includes/admin/class-mp-admin.php:398 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:248 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:289 +msgid "Dismiss" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:247 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:288 +msgid "Saving..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:244 +msgid "Install Plugin" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:238 +msgid "Almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:236 +msgid "Important updates are available for your WPMU DEV plugins/themes. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:232 +msgid "%s is almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:230 +msgid "Important updates are available for %s. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:223 +msgid "install" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1428 +msgid "Sets the number of Tags to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1289 +msgid "How many products to display in the product list if \"paginate\" is set to false." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:739 +#: includes/admin/class-mp-shortcode-builder.php:906 +#: includes/admin/class-mp-shortcode-builder.php:1350 +msgid "Grid" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:735 +#: includes/admin/class-mp-shortcode-builder.php:902 +#: includes/admin/class-mp-shortcode-builder.php:1346 +msgid "Products will be displayed as list or grid." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:206 +msgid "Display a cloud or list of your global product tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:205 +msgid "Display a list of your global categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:204 +msgid "Display a list or grid of your global products." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:181 +msgid "Display a list of featured products." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1451 +msgid "Is Featured?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1444 +msgid "Featured Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:581 +#: includes/admin/class-mp-products-admin.php:1580 +msgid "% discount" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:579 +msgid "OR" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:460 +#: includes/admin/class-mp-products-admin.php:586 +#: includes/admin/widgets/product-list.php:217 +msgid "Featured" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:536 +#: includes/admin/class-mp-orders-admin.php:538 +msgid "Tracking Link" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:508 +msgid "Shipping Tax" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:356 +msgid "Shipping Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:352 +msgid "Taxes Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:349 +msgid "Products Total" +msgstr "" + +#: includes/admin/class-mp-ajax.php:366 +msgid "Oops! You entered an invalid username/email and or password." +msgstr "" + +#: includes/admin/class-mp-ajax.php:254 +msgid "Percentage Discount" +msgstr "" + +#: includes/admin/class-mp-ajax.php:234 +msgid "Limit the Amount of Items per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:214 +msgid "Unused Attributes" +msgstr "" + +#: includes/admin/class-mp-admin.php:82 +msgid "Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-admin.php:79 +msgid "MarketPress setup is not complete! Once you've completed this quick setup wizard you'll have a fully working online store - exciting! " +msgstr "" + +#: marketpress.php:263 +msgctxt "mp_order" +msgid "Add New" +msgstr "" + +#: marketpress.php:184 +msgctxt "product_tag" +msgid "Product Tag" +msgstr "" + +#: marketpress.php:183 +msgctxt "product_tag" +msgid "Product Tags" +msgstr "" + +#: marketpress.php:150 +msgctxt "product_category" +msgid "Product Category" +msgstr "" + +#: marketpress.php:149 +msgctxt "product_category" +msgid "Product Categories" +msgstr "" + +#. Author URI of the plugin/theme +msgid "http://premium.wpmudev.org" +msgstr "" + +#: marketpress.php:729 +msgid "Invoice PDF" +msgstr "" + +#: marketpress.php:712 +msgid "Grant access to themes and gateways depending on the user's Pro Site level" +msgstr "" + +#: marketpress.php:711 +msgid "Pro Sites" +msgstr "" + +#: marketpress.php:703 +msgid "Offer and accept coupon codes" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:687 +msgid "Install %s Pages" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:682 +msgid "Welcome to %s – Install pages required by the plugin automatically." +msgstr "" + +#: marketpress.php:668 +msgid "Your pages were created successfully." +msgstr "" + +#: marketpress.php:436 +msgid "Add a Product" +msgstr "" + +#: marketpress.php:271 +msgid "Parent Order" +msgstr "" + +#: marketpress.php:270 +msgid "No orders found in trash" +msgstr "" + +#: marketpress.php:269 +msgid "No orders found" +msgstr "" + +#: marketpress.php:265 +msgid "Edit Order" +msgstr "" + +#: marketpress.php:264 +msgid "Add New Order" +msgstr "" + +#: marketpress.php:220 marketpress.php:221 +msgid "Add New Product" +msgstr "" + +#: marketpress.php:197 +msgid "No product tags found" +msgstr "" + +#: marketpress.php:196 +msgid "Choose from the most used product tags" +msgstr "" + +#: marketpress.php:195 +msgid "Add or remove product tags" +msgstr "" + +#: marketpress.php:194 +msgid "Separate product tags with commas" +msgstr "" + +#: marketpress.php:193 +msgid "Search Product Tags" +msgstr "" + +#: marketpress.php:192 +msgid "Parent Product Tag:" +msgstr "" + +#: marketpress.php:191 +msgid "Parent Product Tag" +msgstr "" + +#: marketpress.php:190 +msgid "New Product Tag Name" +msgstr "" + +#: marketpress.php:189 +msgid "Add New Product Tag" +msgstr "" + +#: marketpress.php:188 +msgid "Update Product Tag" +msgstr "" + +#: marketpress.php:187 +msgid "View Product Tag" +msgstr "" + +#: marketpress.php:186 +msgid "Edit Product Tag" +msgstr "" + +#: marketpress.php:185 +msgid "All Product Tags" +msgstr "" + +#: marketpress.php:163 +msgid "No product categories found" +msgstr "" + +#: marketpress.php:162 +msgid "Choose from the most used product categories" +msgstr "" + +#: marketpress.php:161 +msgid "Add or remove product categories" +msgstr "" + +#: marketpress.php:160 +msgid "Separate product categories with commas" +msgstr "" + +#: marketpress.php:159 +msgid "Search Product Categories" +msgstr "" + +#: marketpress.php:158 +msgid "Parent Product Category:" +msgstr "" + +#: marketpress.php:157 +msgid "Parent Product Category" +msgstr "" + +#: marketpress.php:156 +msgid "New Product Category Name" +msgstr "" + +#: marketpress.php:155 +msgid "Add New Product Category" +msgstr "" + +#: marketpress.php:154 +msgid "Update Product Category" +msgstr "" + +#: marketpress.php:153 +msgid "View Product Category" +msgstr "" + +#: marketpress.php:152 +msgid "Edit Product Category" +msgstr "" + +#: marketpress.php:151 +msgid "All Product Categories" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Please fix the %s1 and then try submitting the form again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Oops! The form contains %s1 which %s2 been highlighted below." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:660 +msgid "have" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:659 +msgid "has" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:651 +msgid "Value must be less than {0}" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:650 +msgid "Please enter only letters and numbers" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:539 +msgid "Due to prolonged inactivity on this page, one or more settings were not saved. Please try again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:535 +msgid "Settings Saved" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-user-select.php:22 +msgid "Select Some Users" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-section.php:18 +msgid "Section Title" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:425 +msgid "Are you sure you want to delete this?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:30 +msgid "Add Row" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-post-select.php:24 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-taxonomy-select.php:22 +msgid "Select Posts" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:210 +msgid "Add Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:129 +msgid "Select the image that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:93 +msgid "Select image(s) that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:79 +msgid "Select the image that you would like to use for this variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:48 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:82 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:68 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:132 +msgid "Select Image" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:31 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:160 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:168 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:19 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:115 +msgid "Select File" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:30 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:18 +msgid "Select the file that you would like to use." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:357 +msgid "Create Variations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:356 +msgid "Add Another Variant" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Insert a value and press ENTER" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "(e.g. White, Grey, Red etc.)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Variation Values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:333 +msgid "Or create new variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "(e.g. Color)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:303 +msgid "You are about to delete selected variants.
    If you want to continue please confirm." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:302 +msgid "Confirmation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:290 +msgid "Insert quantity available. Empty for unlimited." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:281 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:294 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:307 +msgid "Cancel" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:280 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:293 +msgid "Update" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:277 +msgid "Insert the price i.e. 25 or 25.50" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:115 +msgid "Img." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:85 +msgid "Add New Variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:79 +msgid "Delete Variants" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:78 +msgid "Update Prices" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:77 +msgid "Update Inventory" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:76 +msgid "Update Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:75 +msgid "Bulk Actions" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:73 +msgid "Select bulk action" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:196 +msgid "Configure Store" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:195 +msgid "Configure shipping rates, emails and your store's appearance. " +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:190 +msgid "Add Product" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:189 +msgid "Add your first product for sale and get familiar with adding products." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:184 +msgid "Your store is almost ready for its first customers, but first it needs some products. Get started by adding products below, or jump straight into further configuring your store’s settings." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:183 +msgid "Woohoo! Your online store is up and running." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:160 +msgid "Finish Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:124 +msgid "And what metric system do you want to use?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:113 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:142 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:159 +msgid "Back" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:109 +msgid "Do you want to apply tax for your products? You can customize this for each product and variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:105 +msgid "What currency do you want to sell with?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:93 +msgid "And, which countries do you want to sell to?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:89 +msgid "Where is your online store based?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:80 +msgid "Payment Gateway" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:79 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:123 +msgid "Metric System" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:78 +msgid "Currency & Tax" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:77 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:88 +msgid "Locations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:70 +msgid "Choose where you want to sell your stuff and what currency. Easy!" +msgstr "" + +#: includes/public/class-mp-checkout.php:1400 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:58 +msgid "Continue" +msgstr "" + +#: includes/admin/class-mp-admin.php:83 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:53 +msgid "Skip this step, I'll do this manually" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:49 +msgid "Install store pages" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:44 +msgid "Once you've completed this quick setup wizard you'll have a fully working online store - exciting! Start
    by creating the default store pages for the online store such as the cart, checkout and store pages." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:42 +msgid "MarketPress adds a full online store to your website, with heaps of configuration options and addons
    to suit your needs. It's really easy to get going, and only takes a few minutes to setup!" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:41 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:69 +msgid "Welcome to MarketPress - Quick Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-advanced-select.php:23 +msgid "Select Some Options" +msgstr "" + +#: includes/wpmudev-metaboxes/class-wpmudev-field.php:694 +msgid "You must the WPMUDEV_Field::display() method in your form field class" +msgstr "" + +#: includes/public/class-mp-short-codes.php:636 +msgid "Only %s left in stock..." +msgstr "" + +#: includes/public/class-mp-short-codes.php:633 +msgid "Unlimited stock" +msgstr "" + +#: includes/public/class-mp-short-codes.php:430 +msgid "product_id must be defined" +msgstr "" + +#: includes/public/class-mp-checkout.php:1250 +msgid "An account with this username already exists" +msgstr "" + +#: includes/public/class-mp-checkout.php:1394 +msgid "Continue as Guest" +msgstr "" + +#: includes/public/class-mp-checkout.php:1393 +msgid "Proceed to checkout and you'll have an opportunity to create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1392 +#: includes/public/class-mp-checkout.php:1398 +msgid "First-time customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1386 +msgid "Login" +msgstr "" + +#: includes/public/class-mp-checkout.php:1379 +msgid "E-Mail Address/Username" +msgstr "" + +#: includes/public/class-mp-checkout.php:1377 +msgid "Sign in to speed up the checkout process." +msgstr "" + +#: includes/public/class-mp-checkout.php:1376 +msgid "Have an account?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1297 +msgid "Shipping address different than billing?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1184 +msgid "There are no available gateways to process this payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1160 +msgid "Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:1123 +msgid "Oops! An error occurred while processing your payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1051 +msgid "Next Step »" +msgstr "" + +#: includes/public/class-mp-checkout.php:1045 +msgid "« Previous Step" +msgstr "" + +#: includes/public/class-mp-checkout.php:873 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:657 +msgid "error" +msgstr "" + +#: includes/public/class-mp-checkout.php:872 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:658 +msgid "errors" +msgstr "" + +#: includes/public/class-mp-checkout.php:871 +msgid "

    Oops! We found %d %s in the form below.

    Fields that have errors are highlighted in red below. Entering into a field will reveal the actual error that occurred.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:870 +msgid "Please enter a valid first and last name" +msgstr "" + +#: includes/public/class-mp-checkout.php:869 +msgid " Please enter a valid card security code" +msgstr "" + +#: includes/public/class-mp-checkout.php:868 +msgid "Please enter a valid card expiration" +msgstr "" + +#: includes/public/class-mp-checkout.php:773 +msgid "Javascript is required in order to checkout. Please enable Javascript in your browser and then refresh this page." +msgstr "" + +#: includes/public/class-mp-checkout.php:588 +msgid "An unknown error occurred. Please try again." +msgstr "" + +#: includes/public/class-mp-checkout.php:386 +msgid "Town/City" +msgstr "" + +#: includes/public/class-mp-checkout.php:380 +msgid "Apartment, suite, unit, building, floor, etc" +msgstr "" + +#: includes/public/class-mp-checkout.php:376 +msgid "Address Line 2" +msgstr "" + +#: includes/public/class-mp-checkout.php:363 +msgid "Address Line 1" +msgstr "" + +#: includes/common/class-mp-order.php:770 +#: includes/public/class-mp-checkout.php:354 +msgid "Company" +msgstr "" + +#: includes/public/class-mp-checkout.php:330 +msgid "Last" +msgstr "" + +#: includes/public/class-mp-checkout.php:321 +msgid "First" +msgstr "" + +#: includes/public/class-mp-checkout.php:284 +msgid "State/Province" +msgstr "" + +#: includes/public/class-mp-checkout.php:83 +msgid "Review Order/Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing/Shipping Address" +msgstr "" + +#: includes/public/class-mp-checkout.php:80 +msgid "Login/Register" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:530 +msgid "Marketplace" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:523 +msgid "Global Marketplace Pages" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +msgid "Store Network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +#: includes/multisite/class-mp-admin-multisite.php:494 +msgid "Store Network Settings" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:440 +msgid "Set theme access permissions for network stores. For a custom css theme, save your css file with the MarketPress Theme: NAME header in the /marketpress/ui/themes/ folder and it will appear in this list so you may select it." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:361 +msgid "Choose a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:336 +msgid "%d products get indexed" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:285 +msgid "Product Indexer" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:281 +msgid "Please hold on..." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:280 +msgid "Index Products" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:279 +msgid "%d products have been indexed in whole network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:182 +msgid "Enable Global Shopping Cart?" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:178 +msgid "Limit Global Widgets/Shortcodes To Main Blog?" +msgstr "" + +#: includes/common/template-functions.php:2802 +#: includes/multisite/template-functions.php:355 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:97 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:114 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:143 +msgid "Next" +msgstr "" + +#: includes/common/template-functions.php:2801 +#: includes/multisite/template-functions.php:354 +msgid "Prev" +msgstr "" + +#: includes/common/template-functions.php:2597 +msgid "Tagged in " +msgstr "" + +#: includes/common/template-functions.php:2196 +#: includes/common/template-functions.php:2202 +#: includes/common/template-functions.php:2214 +#: includes/common/template-functions.php:2217 +msgid "Oops! We couldn't locate any orders matching that order number. Please verify the order number and try again." +msgstr "" + +#: includes/common/template-functions.php:2138 +msgid "Look Up" +msgstr "" + +#: includes/common/template-functions.php:1423 +msgid "Please choose a shipping method" +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "If you have your order ID you can look it up using the form below." +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "Order Search" +msgstr "" + +#: includes/common/template-functions.php:910 +#: includes/public/class-mp-checkout.php:1440 +msgid "Cart" +msgstr "" + +#: includes/common/template-functions.php:895 +msgid "[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:887 +msgid "[mp_global_categories_list]" +msgstr "" + +#: includes/common/template-functions.php:880 +msgid "" +"Welcome to our market place!\n" +"\n" +"Check out our network of products:\n" +"\n" +"[mp_list_global_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_global_categories_list]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:879 +msgid "Global Store" +msgstr "" + +#: includes/common/template-functions.php:873 +msgid "" +"Welcome to our online store! Feel free to browse around:\n" +"\n" +"[mp_store_navigation]\n" +"\n" +"Check out our most popular products:\n" +"\n" +"[mp_popular_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_list_categories]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_tag_cloud]" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:127 +msgid "If cart weight is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:126 +msgid "Cart Weight" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:222 +msgid "Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:206 +msgid "Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:196 +msgid "Retail Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:195 +msgid "Online Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:193 +msgid "Rates Request Type" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:189 +msgid "Maximum Weight Per Package" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:195 +#: includes/common/shipping-modules/mp-usps.php:236 +msgid "Enter your standard box sizes as LengthxWidthxHeight (e.g. 12x8x6) For each box defined enter the maximum weight it can contain. Note: the shipping prices this plugin calculates are estimates. If they are consistently too low or too high, please check that the list of boxes above and the product weights are accurate and complete." +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:187 +msgid "Handling Charge Per Box Shipped" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:176 +#: includes/common/shipping-modules/mp-ups.php:181 +msgid "Offered Services" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:165 +msgid "Shipper Number" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:151 +msgid "User ID" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:144 +msgid "Developer Kit Access Key" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:140 +msgid "Use Sandbox Mode?" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:123 +msgid "In order to use UPS, you will need a UPS Developer Kit access key and the UPS user ID and password associated with the access key. Set these up for free here. If this information is missing or incorrect, an error will appear during the checkout process and the buyer will not be able to complete the transaction." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:112 +msgid "If cart total is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:111 +msgid "Cart Total" +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:95 +#: includes/common/shipping-modules/mp-weight-rate.php:111 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Don't worry about sorting as this will be done automatically upon saving." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:170 +msgid "Method Title (visible for clients)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:409 +#: includes/common/shipping-modules/mp-ups.php:216 +#: includes/common/shipping-modules/mp-usps.php:251 +msgid "Max Weight (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:402 +#: includes/common/shipping-modules/mp-ups.php:209 +#: includes/common/shipping-modules/mp-usps.php:247 +msgid "Size (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:387 +msgid "Enter your standard box sizes as LengthxWidthxHeight ( 12x8x6 ) For each box defined enter the maximum weight it can contain. Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:361 +#: includes/common/shipping-modules/mp-usps.php:229 +msgid "Handling Charge per International Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:353 +msgid "International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:339 +#: includes/common/shipping-modules/mp-usps.php:213 +msgid "Handling Charge per Domestic Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:331 +msgid "Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:321 +msgid "When checked the customer can chose Residential or Commercial delivery with Residential the default. Unchecked it's only Residential rates." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:320 +msgid "Allow Commercial Delivery?" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:315 +msgid "Fedex 10kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:314 +msgid "Fedex 25kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:313 +msgid "Fedex Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:312 +msgid "Fedex Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:311 +msgid "Fedex Pak" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:310 +msgid "Fedex Tube" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:306 +msgid "Default Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:294 +msgid "Dropoff Type" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:290 +msgid "Meter ID" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:134 +msgid "This is a residential address" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:283 +msgid "There was an error processing your card: \"%s\". Please check your credit card info and try again." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:121 +msgid "Wepay makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept cards directly on your site. You don't need a merchant account or gateway. WePay handles everything including storing cards. Credit cards go directly to WePay's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:385 +msgid "There was an error processing your card - \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:356 +msgid "%s Store Purchase - Order ID - %s, Email - %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:251 +msgid "Stripe makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept Visa, MasterCard, American Express, Discover, JCB, and Diners Club cards directly on your site. You don't need a merchant account or gateway. Stripe handles everything, including storing cards, subscriptions, and direct payouts to your bank account. Credit cards go directly to Stripe's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:192 +msgid "ZMW - Zambian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:191 +msgid "ZAR - South African Rand" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:190 +msgid "YER - Yemeni Rial" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:189 +msgid "XPF - Cfp Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:188 +msgid "XOF - West African Cfa Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:187 +msgid "XCD - East Caribbean Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:186 +msgid "XAF - Central African Cfa Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:185 +msgid "WST - Samoan Tala" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:184 +msgid "VUV - Vanuatu Vatu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:183 +msgid "VND - Vietnamese Đồng" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:182 +msgid "VEF - Venezuelan Bolívar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:181 +msgid "UZS - Uzbekistani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:180 +msgid "UYI - Uruguayan Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:178 +msgid "UGX - Ugandan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:177 +msgid "UAH - Ukrainian Hryvnia" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:176 +msgid "TZS - Tanzanian Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:175 +msgid "TWD - New Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:174 +msgid "TTD - Trinidad and Tobago Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:172 +msgid "TOP - Tongan Paʻanga" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:171 +msgid "TJS - Tajikistani Somoni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:169 +msgid "SZL - Swazi Lilangeni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:168 +msgid "SVC - Salvadoran Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:167 +msgid "STD - São Tomé and Príncipe Dobra" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:166 +msgid "SRD - Surinamese Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:165 +msgid "SOS - Somali Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:164 +msgid "SLL - Sierra Leonean Leone" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:163 +msgid "SHP - Saint Helenian Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:160 +msgid "SCR - Seychellois Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:159 +msgid "SBD - Solomon Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:157 +msgid "RWF - Rwandan Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:156 +msgid "RUB - Russian Ruble" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:155 +msgid "RSD - Serbian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:154 +msgid "RON - Romanian Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:153 +msgid "QAR - Qatari Riyal" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:152 +msgid "PYG - Paraguayan Guaraní*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:151 +msgid "PLN - Polish Złoty" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:150 +msgid "PKR - Pakistani Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:149 +msgid "PHP - Philippine Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:148 +msgid "PGK - Papua New Guinean Kina" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:147 +msgid "PEN - Peruvian Nuevo Sol*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:146 +msgid "PAB - Panamanian Balboa*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:144 +msgid "NPR - Nepalese Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:142 +msgid "NIO - Nicaraguan Córdoba*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:141 +msgid "NGN - Nigerian Naira" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:140 +msgid "NAD - Namibian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:139 +msgid "MZN - Mozambican Metical" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:137 +msgid "MXN - Mexican Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:136 +msgid "MWK - Malawian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:135 +msgid "MVR - Maldivian Rufiyaa" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:134 +msgid "MUR - Mauritian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:133 +msgid "MRO - Mauritanian Ouguiya" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:132 +msgid "MOP - Macanese Pataca" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:131 +msgid "MNT - Mongolian Tögrög" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:130 +msgid "MKD - Macedonian Denar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:129 +msgid "MGA - Malagasy Ariary" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:128 +msgid "MDL - Moldovan Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:126 +msgid "LVL - Latvian Lats" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:124 +msgid "LSL - Lesotho Loti" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:123 +msgid "LRD - Liberian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:122 +msgid "LKR - Sri Lankan Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:121 +msgid "LBP - Lebanese Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:120 +msgid "LAK - Lao Kip*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:119 +msgid "KZT - Kazakhstani Tenge" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:118 +msgid "KYD - Cayman Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:117 +msgid "KRW - South Korean Won" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:116 +msgid "KMF - Comorian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:115 +msgid "KHR - Cambodian Riel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:114 +msgid "KGS - Kyrgyzstani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:113 +msgid "KES - Kenyan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:111 +msgid "JMD - Jamaican Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:110 +msgid "ISK - Icelandic Króna" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:109 +msgid "INR - Indian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:108 +msgid "ILS - Israeli New Sheqel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:107 +msgid "IDR - Indonesian Rupiah" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:105 +msgid "HTG - Haitian Gourde" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:103 +msgid "HNL - Honduran Lempira*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:101 +msgid "GYD - Guyanese Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:100 +msgid "GTQ - Guatemalan Quetzal*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:99 +msgid "GNF - Guinean Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:98 +msgid "GMD - Gambian Dalasi" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:97 +msgid "GIP - Gibraltar Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:96 +msgid "GEL - Georgian Lari" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:94 +msgid "FKP - Falkland Islands Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:93 +msgid "FJD - Fijian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:91 +msgid "ETB - Ethiopian Birr" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:90 +msgid "EGP - Egyptian Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:89 +msgid "EEK - Estonian Kroon*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:88 +msgid "DZD - Algerian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:87 +msgid "DOP - Dominican Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:85 +msgid "DJF - Djiboutian Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:84 +msgid "CZK - Czech Koruna*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:83 +msgid "CVE - Cape Verdean Escudo*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:82 +msgid "CRC - Costa Rican Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:81 +msgid "COP - Colombian Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:80 +msgid "CNY - Chinese Renminbi Yuan" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:79 +msgid "CLP - Chilean Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:77 +msgid "CDF - Congolese Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:76 +msgid "CAD - Canadian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:75 +msgid "BZD - Belize Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:74 +msgid "BWP - Botswana Pula" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:73 +msgid "BSD - Bahamian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:72 +msgid "BRL - Brazilian Real*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:71 +msgid "BOB - Bolivian Boliviano*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:70 +msgid "BND - Brunei Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:69 +msgid "BMD - Bermudian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:68 +msgid "BIF - Burundian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:67 +msgid "BGN - Bulgarian Lev" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:66 +msgid "BDT - Bangladeshi Taka" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:65 +msgid "BBD - Barbadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:64 +msgid "BAM - Bosnia & Herzegovina Convertible Mark" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:63 +msgid "AZN - Azerbaijani Manat" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:62 +msgid "AWG - Aruban Florin" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:61 +msgid "AUD - Australian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:60 +msgid "ARS - Argentine Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:59 +msgid "AOA - Angolan Kwanza*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:58 +msgid "ANG - Netherlands Antillean Gulden" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:57 +msgid "AMD - Armenian Dram" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:56 +msgid "ALL - Albanian Lek" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:55 +msgid "AFN - Afghan Afghani*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:54 +msgid "AED - United Arab Emirates Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:345 +msgid "Skrill balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:327 +msgid "Skrill IPN message received." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:283 +msgid "Skrill" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:278 +msgid "Pending payment" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:144 +msgid "The secret word must match the word submitted in the \"Merchant Tools\" section of your Skrill account." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:134 +msgid "You must use your valid Skrill merchant email. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:133 +msgid "Skrill Email" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:123 +msgid "Resell your inventory via Skrill.com (Moneybookers)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:95 +msgid "ZAR - South-African Rand" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:93 +msgid "TWD - Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:92 +msgid "TRY - New Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:91 +msgid "TND - Tunisian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:90 +msgid "THB - Thailand Baht" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:89 +msgid "SKK - Slovakian Koruna" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:86 +#: includes/common/payment-gateways/stripe.php:158 +msgid "SAR - Saudi Riyal" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:85 +msgid "RSD - Serbian dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:83 +msgid "QAR - Qatari Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:81 +msgid "OMR - Omani Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:80 +msgid "NOK - Norwegian Krone " +msgstr "" + +#: includes/common/payment-gateways/skrill.php:78 +#: includes/common/payment-gateways/stripe.php:138 +msgid "MYR - Malaysian Ringgit" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:77 +#: includes/common/payment-gateways/stripe.php:127 +msgid "MAD - Moroccan Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:74 +msgid "KRW - South-Korean Won" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:72 +msgid "JOD - Jordanian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:70 +msgid "INR - Indian Rupee" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:63 +msgid "EEK - Estonian Kroon" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:56 +msgid "AED - Utd. Arab Emir. Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:52 +msgid "Turkish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:51 +msgid "Swedish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:50 +msgid "Spanish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:49 +msgid "Russian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:48 +msgid "Romainian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:47 +msgid "Polish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:46 +msgid "Italian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:45 +msgid "Greek" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:44 +msgid "German" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:43 +msgid "French" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:42 +msgid "Finnish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:41 +msgid "English" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:40 +msgid "Dutch" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:39 +msgid "Danish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:38 +msgid "Czech" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:37 +msgid "Chinese" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:201 +msgid "There was an error processing your card: %s. Please re-enter your credit card info and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:278 +msgid "
  • There was an error processing your card: \"%s\". Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:274 +msgid "
  • There was an error processing your card. Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:177 +#: includes/common/payment-gateways/stripe.php:279 +msgid "Publishable Key" +msgstr "" + +#: includes/common/payment-gateways/pin.php:163 +msgid "API Credentials?" +msgstr "" + +#: includes/common/payment-gateways/pin.php:147 +msgid "PIN makes it easy to start accepting credit card payments with Australia’s first all-in-one online payment system. Accept all major credit cards directly on your site. Your sales proceeds are deposited to any Australian bank account, no merchant account required." +msgstr "" + +#: includes/common/payment-gateways/pin.php:57 +#: includes/common/payment-gateways/stripe.php:179 +msgid "USD - United States Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:455 +msgid "Email Footer" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:445 +msgid "Email Header" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:416 +msgid "Partner" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:409 +msgid "Vendor" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:852 +#: includes/common/payment-gateways/paypal-express.php:1126 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences\t section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:749 +msgid "Page Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:744 +msgid "Header Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:739 +msgid "Header Border Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:734 +msgid "Header Image" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:680 +msgid "Locale" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:624 +#: includes/common/payment-gateways/paypal-express.php:658 +msgid "Merchant Email" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:645 +msgid "Paypal Express Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:603 +msgid "Paypal Express Network Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:861 +msgid "Application ID (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:854 +msgid "Signature (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:847 +msgid "API Password (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:839 +msgid "API Username (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:832 +msgid "Signature (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:825 +msgid "API Password (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:817 +msgid "API Username (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:799 +msgid "This message is displayed at the top of the gateway settings page to store admins. It's a good place to inform them of your fees or put any sales messages." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:787 +msgid "Please enter your PayPal email address or business ID you want to recieve fees at." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:786 +msgid "PayPal E-mail" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:772 +msgid "Fees to Collect (%)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:375 +#: includes/public/class-mp-checkout.php:341 +msgid "Email Address" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:299 +msgid "Sorry, your order was not completed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:126 +#: includes/common/payment-gateways/paypal-express.php:780 +msgid "You will be redirected to the PayPal site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:90 +#: includes/common/payment-gateways/skrill.php:94 +msgid "USD - U.S. Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:89 +msgid "TRY - Turkish lira" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:88 +#: includes/common/payment-gateways/stripe.php:170 +msgid "THB - Thai Baht" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:87 +msgid "TWD - Taiwan New Dollars" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:86 +#: includes/common/payment-gateways/pin.php:59 +#: includes/common/payment-gateways/skrill.php:88 +#: includes/common/payment-gateways/stripe.php:162 +msgid "SGD - Singapore Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:84 +msgid "RUB - Russian Rubles" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:82 +msgid "PHP - Philippine Pesos" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:81 +#: includes/common/payment-gateways/pin.php:58 +#: includes/common/payment-gateways/skrill.php:79 +#: includes/common/payment-gateways/stripe.php:145 +msgid "NZD - New Zealand Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:79 +msgid "MXN - Mexican Peso" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:78 +msgid "MYR - Malaysian Ringgits" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:77 +#: includes/common/payment-gateways/pin.php:64 +#: includes/common/payment-gateways/skrill.php:73 +#: includes/common/payment-gateways/stripe.php:112 +msgid "JPY - Japanese Yen" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:75 +#: includes/common/payment-gateways/pin.php:63 +#: includes/common/payment-gateways/skrill.php:66 +#: includes/common/payment-gateways/stripe.php:102 +msgid "HKD - Hong Kong Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:73 +msgid "GBP - Pound Sterling" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:68 +#: includes/common/payment-gateways/pin.php:62 +#: includes/common/payment-gateways/skrill.php:59 +msgid "CAD - Canadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:67 +msgid "BRL - Brazilian Real" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:66 +#: includes/common/payment-gateways/pin.php:56 +#: includes/common/payment-gateways/skrill.php:57 +msgid "AUD - Australian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:288 +msgid "There was an error processing your card: \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:163 +msgid "When running on a live site, Paymill recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:161 +#: includes/common/payment-gateways/pin.php:157 +#: includes/common/payment-gateways/simplify.php:103 +#: includes/common/payment-gateways/stripe.php:260 +#: includes/common/payment-gateways/wepay.php:153 +msgid "Force SSL?" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:151 +msgid "Accept Visa, Mastercard, Maestro UK, Discover and Solo cards directly on your site. You don't need a merchant account or gateway. Credit cards go directly to Paymill's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:131 +msgid "CVV2" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:72 +#: includes/common/payment-gateways/pin.php:61 +#: includes/common/payment-gateways/skrill.php:65 +#: includes/common/payment-gateways/stripe.php:95 +msgid "GBP - British Pound" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:71 +#: includes/common/payment-gateways/stripe.php:173 +msgid "TRY - Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:70 +#: includes/common/payment-gateways/paypal-chained-payments.php:85 +#: includes/common/payment-gateways/skrill.php:87 +#: includes/common/payment-gateways/stripe.php:161 +msgid "SEK - Swedish Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:69 +#: includes/common/payment-gateways/skrill.php:84 +msgid "RON - Romanian Leu New" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:68 +#: includes/common/payment-gateways/paypal-chained-payments.php:83 +#: includes/common/payment-gateways/skrill.php:82 +msgid "PLN - Polish Zloty" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:67 +#: includes/common/payment-gateways/paypal-chained-payments.php:80 +#: includes/common/payment-gateways/stripe.php:143 +msgid "NOK - Norwegian Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:66 +#: includes/common/payment-gateways/skrill.php:75 +#: includes/common/payment-gateways/stripe.php:125 +msgid "LTL - Lithuanian Litas" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:65 +#: includes/common/payment-gateways/paypal-chained-payments.php:69 +#: includes/common/payment-gateways/skrill.php:60 +#: includes/common/payment-gateways/stripe.php:78 +msgid "CHF - Swiss Franc" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:64 +#: includes/common/payment-gateways/skrill.php:76 +msgid "LVL - Latvian Lat" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:63 +#: includes/common/payment-gateways/paypal-chained-payments.php:74 +#: includes/common/payment-gateways/skrill.php:69 +msgid "ILS - Israeli Shekel" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:62 +#: includes/common/payment-gateways/skrill.php:71 +msgid "ISK - Iceland Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:61 +#: includes/common/payment-gateways/paypal-chained-payments.php:76 +#: includes/common/payment-gateways/skrill.php:68 +#: includes/common/payment-gateways/stripe.php:106 +msgid "HUF - Hungarian Forint" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:60 +#: includes/common/payment-gateways/paypal-chained-payments.php:71 +#: includes/common/payment-gateways/skrill.php:62 +#: includes/common/payment-gateways/stripe.php:86 +msgid "DKK - Danish Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:59 +#: includes/common/payment-gateways/skrill.php:67 +#: includes/common/payment-gateways/stripe.php:104 +msgid "HRK - Croatian Kuna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:58 +#: includes/common/payment-gateways/paypal-chained-payments.php:70 +#: includes/common/payment-gateways/skrill.php:61 +msgid "CZK - Czech Koruna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:57 +#: includes/common/payment-gateways/skrill.php:58 +msgid "BGN - Bulgarian Leva" +msgstr "" + +#: includes/common/payment-gateways/payflow/class-mp-gateway-worker-payflow.php:123 +msgid "There was an error connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:344 +msgid "This setting will log all PayFast communication to the \"payfast.log\" file." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:342 +msgid "Log Debugging Info?" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:335 +msgid "DO NOT INPUT A VALUE UNLESS YOU HAVE SET ONE IN THE SETTINGS SECTION OF YOUR PAYFAST SETTINGS." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:333 +msgid "PayFast Passphrase" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:323 +msgid "You can find your credentials on your integration page." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:321 +msgid "PayFast Merchant Credentials" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:311 +msgid "PayFast Mode" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:308 +msgid "PayFast is a payments processing service for South Africa. We make it safe for buyers to send money and easy for sellers to receive money. More Info »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:306 +msgid "PayFast Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:285 +msgid "Your payment via PayFast for this order totaling %s is complete. The transaction number is %s." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:278 +msgid "Your payment via PayFast for this order totaling %s is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:124 +msgid "Your PayFast transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:82 +#: includes/common/payment-gateways/payfast.php:83 +msgid "PayFast" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:157 +msgid "API error: - \"%s\"" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:198 +msgid "The payment request is under process" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:140 +msgid "Order: #" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:116 +msgid "You will be redirected to the Mollie site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:73 +msgid "%sMollie%s provides a fully PCI Compliant and secure way to collect payments via iDeal, Credit Card, Bancontact / Mister Cash, SOFORT Banking, Overbooking, Bitcoin, PayPal, paysafecard and AcceptEmail." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:53 +#: includes/common/payment-gateways/mollie.php:54 +#: includes/common/payment-gateways/mollie.php:195 +#: includes/common/payment-gateways/mollie.php:245 +msgid "Mollie" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:50 +#: includes/common/payment-gateways/paymill.php:56 +#: includes/common/payment-gateways/paypal-chained-payments.php:72 +#: includes/common/payment-gateways/pin.php:60 +#: includes/common/payment-gateways/skrill.php:64 +#: includes/common/payment-gateways/stripe.php:92 +msgid "EUR - Euro" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:306 +msgid "Access Key" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:300 +msgid "You must login to the Mijireh.com dashboard to obtain the Access Key." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:299 +msgid "Credentials" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:289 +msgid "Mijireh Checkout provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:269 +msgid "Mijireh Error: " +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:89 +msgid "You will be redirected to the Mijireh.com site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:87 +msgid "Your Mijireh transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:42 +#: includes/common/payment-gateways/mijireh.php:43 +#: includes/common/payment-gateways/mijireh.php:324 +msgid "Mijireh" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:145 +msgid "These are the manual payment instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:189 +msgid "This is the email text to send to those who have made free order checkouts. You should include your free order instructions / information here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:183 +msgid "This is the free order information to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:182 +msgid "Confirmation User Information" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:177 +msgid "This is the information to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:163 +msgid "If enabled, all free orders will be automatically marked as paid." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:159 +msgid "Payment Status" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:149 +msgid "This gateway is automatically activated if order totalling 0 and it can't be disabled" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:35 +#: includes/common/payment-gateways/free_orders.php:36 +#: includes/common/payment-gateways/free_orders.php:89 +msgid "Free Order" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:34 +#: includes/common/payment-gateways/free_orders.php:197 +msgid "Free Orders" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:515 +msgid "Sandbox API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:266 +#: includes/common/payment-gateways/eway31.php:542 +msgid "eWay Rapid 3.1 Payments (beta)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:403 +msgid "Hosted Payment Page Language" +msgstr "" + +#: includes/common/payment-gateways/eway.php:373 +msgid "Note when testing in sandbox mode it will use the default eWay test API credentials. Also, please note that cart total needs to be a whole number (e.g. 10.00) in order to generate a successful transaction, otherwise the transaction will fail." +msgstr "" + +#: includes/common/payment-gateways/eway.php:267 +msgid "You will be redirected to https://www.eway.com.au to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:380 +msgid "You have chosen to checkout using %s. Please confirm your order details and click \"Submit Order\" when finished." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:272 +#: includes/common/payment-gateways/paymill.php:131 +#: includes/common/payment-gateways/stripe.php:231 +msgid "Security Code " +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Enter in MM/YYYY or MM/YY format" +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Expiration" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:321 +msgid "Delim Data" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:307 +#: includes/common/payment-gateways/paypal-payflow.php:456 +msgid "This text will appear as the footer of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:287 +#: includes/common/payment-gateways/paypal-payflow.php:440 +msgid "Email Customer (on success)" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:278 +msgid "Authorize.net default is \",\". Otherwise, get this from your credit card processor. If the transactions are not going through, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:277 +msgid "Delimeter Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:193 +msgid "Held For Review" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:310 +#: includes/common/payment-gateways/payfast.php:314 +msgid "Test" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:300 +#: includes/common/payment-gateways/pin.php:170 +#: includes/common/payment-gateways/stripe.php:272 +msgid "Secret Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:283 +msgid "Select Your Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:97 +msgid "Your payment will be processed by the iDEAL network" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:208 +msgid "These are the CubePoints to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:203 +msgid "These are the CubePoints instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:266 +msgid "If enabled, all API calls will be made to https://test.bitpay.com." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:263 +msgid "Use Test Mode?" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:259 +msgid "If checked, response fron bitpay will be stored in log file, keep it disabled unless required." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:256 +msgid "Enable Debug Log" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:249 +msgid "Full Notifications" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:231 +#: includes/common/payment-gateways/eway31.php:499 +#: includes/common/payment-gateways/eway31.php:526 +#: includes/common/payment-gateways/mollie.php:83 +#: includes/common/shipping-modules/mp-fedex.php:269 +msgid "API Key" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:222 +msgid "You can now accept a payment from any country on Earth, with no risk of fraud. To use Bitpay, you need to signup on Bitpay. \\n After completing the signup process, you can get api keys at Bitpay API key. You can read more about Bitpay at Bitpay API. \\n Bitpay requires SSL(https) for payment notifications to work." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:61 +msgid "You will be redirected to bitpay.com, for bitcoin payment. It is completely safe." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:346 +msgid "You must login to the 2Checkout vendor dashboard to obtain the seller ID and secret word. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:345 +#: includes/common/payment-gateways/authorizenet-aim.php:239 +#: includes/common/payment-gateways/paymill.php:168 +#: includes/common/payment-gateways/paypal-express.php:704 +#: includes/common/payment-gateways/simplify.php:80 +#: includes/common/payment-gateways/stripe.php:265 +#: includes/common/payment-gateways/wepay.php:158 +msgid "API Credentials" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:325 +#: includes/common/payment-gateways/_bitpay.php:220 +#: includes/common/payment-gateways/_cubepoints.php:185 +#: includes/common/payment-gateways/_ideal.php:268 +#: includes/common/payment-gateways/_payway.php:255 +#: includes/common/payment-gateways/authorizenet-aim.php:219 +#: includes/common/payment-gateways/eway.php:352 +#: includes/common/payment-gateways/eway31.php:460 +#: includes/common/payment-gateways/free_orders.php:147 +#: includes/common/payment-gateways/manual-payments.php:126 +#: includes/common/payment-gateways/mijireh.php:287 +#: includes/common/payment-gateways/mollie.php:71 +#: includes/common/payment-gateways/paymill.php:149 +#: includes/common/payment-gateways/paypal-chained-payments.php:344 +#: includes/common/payment-gateways/paypal-payflow.php:376 +#: includes/common/payment-gateways/pin.php:145 +#: includes/common/payment-gateways/simplify.php:69 +#: includes/common/payment-gateways/skrill.php:121 +#: includes/common/payment-gateways/stripe.php:249 +#: includes/common/payment-gateways/wepay.php:119 +#: includes/common/shipping-modules/mp-fedex.php:243 +#: includes/common/shipping-modules/mp-flat-rate.php:63 +#: includes/common/shipping-modules/mp-pickup.php:140 +#: includes/common/shipping-modules/mp-table-rate.php:94 +#: includes/common/shipping-modules/mp-ups.php:122 +#: includes/common/shipping-modules/mp-usps.php:167 +#: includes/common/shipping-modules/mp-weight-rate.php:110 +msgid "%s Settings" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:136 +msgid "You will be redirected to the 2Checkout site to finalize your payment." +msgstr "" + +#: includes/common/helpers.php:169 includes/public/class-mp-checkout.php:1277 +msgid "Billing" +msgstr "" + +#: includes/common/helpers.php:144 +msgid "FREE" +msgstr "" + +#: includes/common/helpers.php:134 +msgid "Coupons:" +msgstr "" + +#: includes/common/helpers.php:95 +msgid "Qty" +msgstr "" + +#: includes/common/helpers.php:94 +msgid "Sku" +msgstr "" + +#: includes/common/data.php:59 +msgid "Zip Code" +msgstr "" + +#: includes/common/class-mp-taxes.php:336 +msgid "Standard Table" +msgstr "" + +#: includes/common/class-mp-product.php:2698 +msgid "Tweet" +msgstr "" + +#: includes/common/class-mp-product.php:2321 +msgid "Notification Preferences: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2320 +msgid "Edit Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2318 +msgid "Link: %s

    " +msgstr "" + +#: includes/common/class-mp-product.php:2317 +msgid "Current Inventory: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2316 +msgid "Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2314 +msgid "This message is being sent to notify you of low stock of a product in your online store according to your preferences.

    " +msgstr "" + +#: includes/common/class-mp-product.php:1817 +msgid "" +msgstr "" + +#: includes/common/class-mp-product.php:1427 +#: includes/common/class-mp-product.php:1430 +msgid "(tax incl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1422 +#: includes/common/class-mp-product.php:1425 +msgid "(tax excl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1300 +#: includes/common/class-mp-product.php:1315 +msgid "%s each" +msgstr "" + +#: includes/common/class-mp-product.php:988 +msgid "Choose Options" +msgstr "" + +#: includes/common/class-mp-product.php:526 +msgid "Choose a %s" +msgstr "" + +#: includes/common/class-mp-product.php:284 +#: includes/common/class-mp-product.php:292 +#: includes/common/class-mp-product.php:615 +msgid "We're sorry, we only have %d of this item in stock right now." +msgstr "" + +#: includes/common/class-mp-order.php:1456 +msgid "Shipped: Track Shipment" +msgstr "" + +#: includes/common/class-mp-order.php:1049 +msgid "Order Received" +msgstr "" + +#: includes/common/class-mp-order.php:1014 +msgid "In Process" +msgstr "" + +#: includes/common/class-mp-order.php:969 +msgid "Order #" +msgstr "" + +#: includes/common/class-mp-order.php:866 +msgid "Copy billing address to shipping address" +msgstr "" + +#: includes/common/class-mp-order.php:822 +#: includes/public/class-mp-checkout.php:1314 +msgid "Special Instructions" +msgstr "" + +#: includes/common/class-mp-order.php:817 +#: includes/common/payment-gateways/stripe.php:335 +msgid "Email" +msgstr "" + +#: includes/common/class-mp-order.php:813 +#: includes/common/payment-gateways/stripe.php:341 +#: includes/public/class-mp-checkout.php:416 +msgid "Phone" +msgstr "" + +#: includes/common/class-mp-order.php:791 +#: includes/common/payment-gateways/stripe.php:337 +msgid "State" +msgstr "" + +#: includes/common/class-mp-order.php:776 +msgid "Address 1" +msgstr "" + +#: includes/common/class-mp-order.php:766 +msgid "Last Name" +msgstr "" + +#: includes/common/class-mp-order.php:762 +msgid "First Name" +msgstr "" + +#: includes/common/class-mp-installer.php:677 +msgid "MarketPress requires a database update to continue working correctly. Go to update page" +msgstr "" + +#: includes/common/class-mp-installer.php:657 +msgid "MarketPress performed a quick automatic update successfully!" +msgstr "" + +#: includes/common/class-mp-installer.php:653 +msgid "Perform Update" +msgstr "" + +#: includes/common/class-mp-installer.php:647 +msgid "Please update each subsite in your WordPress network where you have older version of the MarketPress plugin." +msgstr "" + +#: includes/common/class-mp-installer.php:641 +msgid "Depending on the amount of products you have, this update could take quite some time. Please keep this window open while the update completes. If you have products with multiple variations, the progress bar may move slower, please don't exit the window." +msgstr "" + +#: includes/common/class-mp-installer.php:632 +msgid "Product Metadata" +msgstr "" + +#: includes/common/class-mp-installer.php:601 +msgid "MarketPress requires a database update to continue working correctly.
    Below you will find a list of items that require your attention." +msgstr "" + +#: includes/common/class-mp-installer.php:600 +msgid "Update MarketPress Data" +msgstr "" + +#: includes/common/class-mp-installer.php:530 +msgid "Update Data" +msgstr "" + +#: includes/common/class-mp-installer.php:67 +msgid "Complete!" +msgstr "" + +#: includes/common/class-mp-installer.php:66 +msgid "Upgrading Database...Please Wait..." +msgstr "" + +#: includes/common/class-mp-installer.php:64 +msgid "An error occurred while updating. Please refresh this page and try again." +msgstr "" + +#: includes/common/class-mp-cart.php:2447 +msgid "Some items in your cart have fallen below the quantity you currently have in your cart. We have adjusted the quantity in your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:2443 +msgid "Some items in your cart are no longer available. We have removed these items from your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:1566 +msgid "item" +msgstr "" + +#: includes/common/class-mp-cart.php:1563 +#: includes/common/class-mp-cart.php:1568 +msgid "items" +msgstr "" + +#: includes/common/class-mp-cart.php:1363 +msgid "Items/Products added to Cart will show here." +msgstr "" + +#: includes/common/class-mp-cart.php:1362 +msgid "Your shopping cart is empty." +msgstr "" + +#: includes/common/class-mp-cart.php:1357 +msgid "View Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1241 +#: includes/common/class-mp-cart.php:1298 +#: includes/public/class-mp-short-codes.php:159 +msgid "Adding..." +msgstr "" + +#: includes/common/class-mp-cart.php:1033 +msgid "Continue Shopping?" +msgstr "" + +#: includes/common/class-mp-cart.php:961 +msgid "Secure Checkout
    Shopping is always safe and secure." +msgstr "" + +#: includes/common/class-mp-cart.php:959 +msgid "You are about to submit your order!
    Please review your order details before continuing. You will be charged immediately upon clicking \"Submit Order\"." +msgstr "" + +#: includes/common/class-mp-cart.php:956 +msgid "Continue »" +msgstr "" + +#: includes/common/class-mp-cart.php:955 +msgid "Submit Order" +msgstr "" + +#: includes/common/class-mp-cart.php:818 +msgid "There are no items in your cart - go add some !" +msgstr "" + +#: includes/common/class-mp-cart.php:816 +msgid "The cart is disabled." +msgstr "" + +#: includes/common/class-mp-cart.php:735 +msgid "Estimated %s" +msgstr "" + +#: includes/common/class-mp-cart.php:717 +msgid "Estimated Shipping" +msgstr "" + +#: includes/common/class-mp-cart.php:697 +msgid "Product Total" +msgstr "" + +#: includes/common/class-mp-cart.php:670 includes/common/class-mp-cart.php:672 +msgid "Estimated Total (%s, %s)" +msgstr "" + +#: includes/common/class-mp-cart.php:668 +msgid "Estimated Total (%s)" +msgstr "" + +#: includes/common/class-mp-cart.php:666 includes/common/class-mp-cart.php:752 +msgid "Estimated Total" +msgstr "" + +#: includes/admin/widgets/product-list.php:247 +msgid "Show Thumbnail Placeholder image (if image is not set)" +msgstr "" + +#: includes/admin/widgets/cart.php:73 +msgid "Display product price" +msgstr "" + +#: includes/admin/widgets/cart.php:71 +msgid "Display product quantity" +msgstr "" + +#: includes/admin/widgets/cart.php:69 +msgid "Display product image" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:93 +msgid "General Shipping Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:773 +msgid "If you are having conflicts with the lightbox library from your theme or another plugin you should uncheck this." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:772 +msgid "Use Built-In Lightbox for Images?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:762 +msgid "Disable Large Image Display?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:688 +msgid "Show Product Image?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:682 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:684 +msgid "Show Tags List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:676 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:678 +msgid "Show Categories List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:671 +msgid "If enabled, description excerpt will be added above Add to cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:669 +msgid "Show Excerpt?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:665 +msgid "If enabled, users will be able to choose how many of the product they want to purchase before adding to their cart. If not checked, quantity could be change later on the cart page." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:663 +msgid "Show Quantity Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:649 +msgid "Settings related to the display of individual product pages." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:648 +msgid "Product Page Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:605 +msgid "Related Products Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:573 +msgid "Show Related Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:568 +msgid "Related Product Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:549 +msgid "Order Status Entries Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:510 +msgid "Sort Products By" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:497 +msgid "Products Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:492 +msgid "Paginate Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:478 +msgid "Excerpts Length" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:473 +msgid "Show Excerpts?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:450 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:746 +msgid "Image Alignment" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:412 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:708 +msgid "Custom Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:401 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:697 +msgid "Large - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:400 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:696 +msgid "Medium - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:399 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:695 +msgid "Thumbnail - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:397 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:693 +msgid "Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:386 +msgid "Select default placeholder image thumbnail when product image is not available (if empty, plugin's built-in image will be used)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:380 +msgid "Show default product placeholder thumbnail when product image is not available?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:374 +msgid "Show Product Thumbnail?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:369 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:658 +msgid "Redirect to cart page for immediate checkout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:368 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:657 +msgid "Stay on current product page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:366 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:655 +msgid "MarketPress supports two \"flows\" for adding products to the shopping cart. After adding a product to their cart, two things can happen:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:365 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:654 +msgid "Add To Cart Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:355 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:628 +msgid "Four" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:354 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:627 +msgid "Three" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:353 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:626 +msgid "Two" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:625 +msgid "One" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:349 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:622 +msgid "Set the number of products that show up in a grid row to best fit your theme" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:348 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:621 +msgid "How many products per row?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:342 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:609 +msgid "Display as grid" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:341 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:608 +msgid "Display as list" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:339 +msgid "Product Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:334 +msgid "Settings related to the display of product lists/grids." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:333 +msgid "Product List/Grid Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:314 +msgid "Show Twitter Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:309 +msgid "Twitter" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:303 +msgid "Show Share Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:297 +msgid "Recommend" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:296 +msgid "Like" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:294 +msgid "Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:283 +msgid "Show Facebook Like Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:278 +msgid "Facebook" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:257 +msgid "Show \"Pin It\" Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:252 +msgid "Pinterest" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:246 +msgid "Social Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:193 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:202 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:211 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:220 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:229 +#: includes/multisite/class-mp-admin-multisite.php:532 +#: includes/multisite/class-mp-admin-multisite.php:541 +#: includes/multisite/class-mp-admin-multisite.php:550 +msgid "Choose a Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:191 +msgid "This page will be used as the root for your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:168 +#: includes/multisite/class-mp-admin-multisite.php:586 +msgid "Create Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "uncropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "cropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:87 +#: includes/multisite/class-mp-admin-multisite.php:121 +#: includes/multisite/class-mp-admin-multisite.php:620 +msgid "An error occurred while creating the store page. Please try again." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:66 +msgid "Choose the gateway(s) that you would like to be available for checkout." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:65 +msgid "Enabled Gateways" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:78 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:146 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:179 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:213 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:274 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:307 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:341 +msgid "Text" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:71 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:139 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:172 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:206 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:267 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:300 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:334 +msgid "Subject" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:52 +msgid "Notification Email" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:510 +msgid "Enabling this option will display label `excl. tax` or `incl. tax` after price" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:509 +msgid "Display tax label?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:504 +msgid "Enabling this option will show Price + Tax, eg. if your price is 100 and your tax 20, your price will be 120" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:416 +#: includes/multisite/class-mp-admin-multisite.php:234 +msgid "Price Format" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:366 +msgid "Enabling this field will display a textbox on the shipping checkout page for users to enter special instructions for their order. Useful for product personalization, etc." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:365 +msgid "Show Special Instructions Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:360 +msgid "Universal" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:359 +msgid "Old" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1167 +#: includes/admin/store-settings/class-mp-store-settings-general.php:358 +msgid "New" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:353 +msgid "If you already use Google Analytics for your website, you can track detailed ecommerce information by enabling this setting. Choose whether you are using the new asynchronous or old tracking code. Before Google Analytics can report ecommerce activity for your website, you must enable ecommerce tracking on the profile settings page for your website. Also keep in mind that some gateways do not reliably show the receipt page, so tracking may not be accurate in those cases. It is recommended to use the PayPal gateway for the most accurate data. More information »" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:347 +msgid "Do you want to display the product price on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:346 +msgid "Show product price on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:340 +msgid "Do you want to display the product quantity on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:339 +msgid "Show product quantity on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:333 +msgid "Do you want to display the product image on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:332 +msgid "Show product image on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:327 +msgid "This option hide floating Mini Cart in top right corner." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:326 +msgid "Disable Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:316 +msgid "If unchecked your Orders admin page will be hidden" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:315 +msgid "Show admin Orders page?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:309 +msgid "Disable Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:303 +msgid "Force Login?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:297 +msgid "Hide Out of Stock Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:555 +msgid "This will prevent multiples of the same downloadable product form being added to the cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:554 +msgid "Limit Digital Products Per-order?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:268 +msgid "If you're having issues downloading large files and have worked with your hosting provider to increase your memory limits, try enabling this - just keep in mind, it's not as secure!" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:267 +msgid "Use Alternative Download Method?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:252 +msgid "Download Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:230 +msgid "Change product post type" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:51 +msgid "%s Capabilities" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-addons.php:47 +msgid "Store Settings: Add Ons: %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:254 +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:56 +msgid "Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Edit Product Attribute %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:246 +msgid "Exporters" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:238 +msgid "Short Codes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:207 +msgid "An appropriate message for key \"%s\" could not be found." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:204 +msgid "Product attribute updated successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:203 +msgid "Product attribute added successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +msgid "Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +#: includes/admin/store-settings/class-mp-store-settings-addons.php:121 +msgid "Store Settings: Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "Store Settings: Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:118 +msgid "Store Settings: Product Tags" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:117 +msgid "Store Settings: Product Categories" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Store Settings: Product Attributes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +msgid "Store Settings: Payments" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:114 +msgid "Store Settings: Shipping" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +#: includes/admin/class-mp-store-settings-admin.php:226 +msgid "Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +msgid "Store Settings: Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:112 +msgid "Store Settings: Presentation" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:111 +msgid "Store Settings: General" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1489 +msgid "Select a Product" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1447 +msgid "Reset to Defaults" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1446 +msgid "Insert Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1202 +#: includes/admin/class-mp-shortcode-builder.php:1227 +#: includes/admin/class-mp-shortcode-builder.php:1252 +msgid "The text to show in the link." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1196 +#: includes/admin/class-mp-shortcode-builder.php:1221 +#: includes/admin/class-mp-shortcode-builder.php:1246 +msgid "Whether to return a clickable link or url." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1177 +msgid "Whether to display the cart only on store pages or not." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1171 +msgid "Whether to show or hide the product price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1165 +msgid "Whether to show or hide the product quantity." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1159 +msgid "Whether to show or hide the product image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1153 +msgid "The text displayed before the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1147 +msgid "The title of the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1058 +#: includes/admin/class-mp-shortcode-builder.php:1121 +msgid "A label to prepend to the price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1032 +#: includes/admin/class-mp-shortcode-builder.php:1127 +msgid "What context for display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1004 +msgid "Set the alignment of the image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:998 +msgid "Set a custom pixel width/height. If omitted defaults to the size set by \"context\"." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:993 +msgid "Widget" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:988 +msgid "What context for preset size options." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:982 +#: includes/admin/class-mp-shortcode-builder.php:1026 +#: includes/admin/class-mp-shortcode-builder.php:1052 +#: includes/admin/class-mp-shortcode-builder.php:1077 +#: includes/admin/class-mp-shortcode-builder.php:1096 +#: includes/admin/class-mp-shortcode-builder.php:1115 +msgid "The ID of the product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:963 +msgid "Whether to display the product meta (e.g. price, buy button)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:738 +#: includes/admin/class-mp-shortcode-builder.php:905 +#: includes/admin/class-mp-shortcode-builder.php:958 +#: includes/admin/class-mp-shortcode-builder.php:992 +#: includes/admin/class-mp-shortcode-builder.php:1035 +#: includes/admin/class-mp-shortcode-builder.php:1130 +#: includes/admin/class-mp-shortcode-builder.php:1349 +msgid "List" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:957 +#: includes/admin/class-mp-shortcode-builder.php:991 +#: includes/admin/class-mp-shortcode-builder.php:1034 +#: includes/admin/class-mp-shortcode-builder.php:1129 +msgid "Single" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:953 +msgid "Whether and what context of image size to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:948 +msgid "Full" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:943 +msgid "Whether and what type of content to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:937 +msgid "Whether to display the product title." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:931 +msgid "The ID of the product to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:747 +#: includes/admin/class-mp-shortcode-builder.php:914 +msgid "Hide" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:746 +#: includes/admin/class-mp-shortcode-builder.php:913 +msgid "Show" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:744 +#: includes/admin/class-mp-shortcode-builder.php:911 +msgid "Whether or not to show the product filters." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:724 +#: includes/admin/class-mp-shortcode-builder.php:891 +#: includes/admin/class-mp-shortcode-builder.php:1335 +msgid "Limits list to a specific product tag." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:713 +#: includes/admin/class-mp-shortcode-builder.php:880 +#: includes/admin/class-mp-shortcode-builder.php:1324 +msgid "Limits list to a specific product category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:706 +#: includes/admin/class-mp-shortcode-builder.php:873 +#: includes/admin/class-mp-shortcode-builder.php:1317 +msgid "Direction to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:684 +#: includes/admin/class-mp-shortcode-builder.php:851 +#: includes/admin/class-mp-shortcode-builder.php:1295 +msgid "What field to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:678 +#: includes/admin/class-mp-shortcode-builder.php:845 +#: includes/admin/class-mp-shortcode-builder.php:1283 +msgid "How many products to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:672 +#: includes/admin/class-mp-shortcode-builder.php:839 +#: includes/admin/class-mp-shortcode-builder.php:1277 +msgid "The page number to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:666 +#: includes/admin/class-mp-shortcode-builder.php:833 +#: includes/admin/class-mp-shortcode-builder.php:1271 +msgid "Whether to paginate the product list. This is useful to only show a subset." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:808 +msgid "How many related items to show." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:790 +msgid "How to relate the products" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:784 +msgid "The product to show related items for." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:765 +msgid "The maximum number of products to display" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:647 +msgid "Comma separated list of tags (term_id) to include. For example, include=5,27 means tags that have the term_id 5 or 27 will be the only tags displayed. Defaults to include everything." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:641 +msgid "Comma separated list of tags (term_id) to exclude. For example, exclude=5,27 means tags that have the term_id 5 or 27 will NOT be displayed. Defaults to exclude nothing." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:633 +#: includes/admin/class-mp-shortcode-builder.php:1420 +msgid "Sort order." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:629 +#: includes/admin/class-mp-shortcode-builder.php:1416 +msgid "Count" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:626 +#: includes/admin/class-mp-shortcode-builder.php:1413 +msgid "Order of the tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:620 +msgid "The text/space between tags)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:616 +msgid "UL with a class of \"wp-tag-cloud\"" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:615 +msgid "separated by whitespace defined by \"separator\" parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:613 +msgid "Format of the cloud display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:607 +msgid "The number of actual tags to display in the cloud. (Use \"0\" to display all tags.)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:601 +msgid "Unit of measure as pertains to the smallest and largest values. This can be any CSS length value, e.g. pt, px, em, %." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:595 +msgid "The text size of the tag with the largest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:589 +msgid "The text size of the tag with the smallest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:570 +msgid "The \"tabindex\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:564 +msgid "The \"name\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:558 +msgid "The \"id\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:552 +msgid "Which category ID is selected." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:540 +msgid "The max depth. This is ignored unless hierarchical is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:536 +#: includes/multisite/template-functions.php:816 +msgid "No Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:414 +#: includes/admin/class-mp-shortcode-builder.php:546 +msgid "Calculates link or post counts by including items from child categories. If show_counts and hierarchical are true this is automatically set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:409 +msgid "Value of n (some number) specifies the depth (or level) to descend in displaying Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:408 +msgid "Show only top level Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:407 +msgid "All Categories displayed in flat (no indent) form (overrides hierarchical)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:406 +msgid "All Categories and child Categories (Default)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:402 +msgid "This parameter controls how many levels in the hierarchy of Categories are to be included in the list of Categories. NOTE: The \"hierarchical\" argument, which is disabled by default, will override the depth argument, unless it is true. When the argument is false, it will display all of the categories. When it is enabled it will use the value in the \"depth\" argument." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:396 +#: includes/admin/class-mp-shortcode-builder.php:1394 +msgid "Sets the number of Categories to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:390 +#: includes/admin/class-mp-shortcode-builder.php:534 +msgid "Set the text to show when no categories are listed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:384 +msgid "Set the title and style of the outer list item. If present but empty, the outer list item will not be displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:378 +#: includes/admin/class-mp-shortcode-builder.php:528 +msgid "Display sub-categories as inner list items (below the parent list item) or inline." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:368 +#: includes/admin/class-mp-shortcode-builder.php:511 +msgid "Exclude category-tree from the results. The parameter include must be empty. If the hierarchical parameter is true, then use exclude instead of exclude_tree." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:354 +msgid "Only include these categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:340 +#: includes/admin/class-mp-shortcode-builder.php:356 +#: includes/admin/class-mp-shortcode-builder.php:370 +#: includes/admin/class-mp-shortcode-builder.php:496 +#: includes/admin/class-mp-shortcode-builder.php:513 +msgid "Select Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:338 +#: includes/admin/class-mp-shortcode-builder.php:494 +msgid "Exclude one or more categories from the results. The parameter include must be empty." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:332 +msgid "Set a URI for an image (usually an rss feed icon) to act as a link to each categories' rss-2 feed. This parameter overrides the feed parameter. There is no default for this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:320 +msgid "Display a link to each category's rss-2 feed and set the link text to display. The default is no text and no feed displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:313 +#: includes/admin/class-mp-shortcode-builder.php:487 +msgid "Any" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:307 +#: includes/admin/class-mp-shortcode-builder.php:481 +msgid "Only display categories that are children of the category identified by this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:301 +msgid "Sets whether a category's description is inserted into the title attribute of the links created (i.e. <a title=\"<em>Category Description</em>\" href=\"...)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:295 +#: includes/admin/class-mp-shortcode-builder.php:475 +msgid "Toggles the display of categories with no posts." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:289 +#: includes/admin/class-mp-shortcode-builder.php:469 +#: includes/admin/class-mp-shortcode-builder.php:1388 +msgid "Toggles the display of the current count of posts in each category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:279 +msgid "Style to display the categories list in. A value of list displays the categories as list items while none generates no special display method (the list items are separated by
    tags)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:269 +#: includes/admin/class-mp-shortcode-builder.php:449 +#: includes/admin/class-mp-shortcode-builder.php:1378 +msgid "Sort order for categories (either ascending or descending)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:259 +#: includes/admin/class-mp-shortcode-builder.php:439 +#: includes/admin/class-mp-shortcode-builder.php:1368 +msgid "Sort categories alphabetically, by unique Category ID, or by the count of posts in that Category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:253 +#: includes/admin/class-mp-shortcode-builder.php:433 +msgid "If a value is entered, causes the display of a link to all categories if the style is set to list." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:219 +msgid "Select an Action" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:217 +msgid "What would you like to do?" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:216 +#: includes/admin/class-mp-shortcode-builder.php:1522 +msgid "Add E-Commerce Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:197 +msgid "Display a list of links to your store pages." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:196 +msgid "Display a link or url to the order status page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:195 +msgid "Display a link or url to the current products list page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:194 +msgid "Display a link or url to the current store page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:193 +msgid "Display a link or url to the current shopping cart page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:192 +msgid "Display the cart widget." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:191 +msgid "Display the full product meta box with price and buy now/add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:190 +msgid "Display the product stock." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:189 +msgid "Display the product SKU number(s)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:188 +msgid "Display the product price (and sale price)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:187 +msgid "Display the buy or add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:186 +msgid "Display the featured image of a given product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:185 +msgid "Display a single product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:184 +msgid "Display a list of products according to preference." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:183 +msgid "Display products related to the one being viewed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:182 +msgid "Display a list of popular products ordered by sales." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:180 +msgid "Display an HTML dropdown of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:179 +msgid "Display an HTML list of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:178 +msgid "Display a cloud or list of your product tags." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:655 +msgid "Setup your payment gateway" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:643 +#: includes/admin/class-mp-setup-wizard.php:649 +msgid "Other Gateways" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:617 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:150 +msgid "Select which calculated shipping methods the customer will be able to choose from." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:601 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:134 +#: includes/public/class-mp-checkout.php:82 +msgid "Shipping Method" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:568 +msgid "I want to charge shipping" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:523 +#: includes/admin/store-settings/class-mp-store-settings-general.php:503 +msgid "Show Price + Tax?" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:507 +msgid "I.e. Taxes, VAT, GST, etc" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:491 +#: includes/admin/store-settings/class-mp-store-settings-general.php:471 +msgid "Current Rates" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:473 +msgid "Default Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:434 +#: includes/admin/class-mp-setup-wizard.php:442 +#: includes/admin/store-settings/class-mp-store-settings-general.php:386 +#: includes/admin/store-settings/class-mp-store-settings-general.php:394 +#: includes/multisite/class-mp-admin-multisite.php:204 +#: includes/multisite/class-mp-admin-multisite.php:212 +msgid "Select a Currency" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:414 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:105 +msgid "Choose Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:411 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:103 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:104 +msgid "All Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:410 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:102 +msgid "These are the countries that you will ship to." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:409 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:101 +msgid "Target Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:401 +msgid "Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:387 +#: includes/admin/store-settings/class-mp-store-settings-general.php:640 +msgid "Zip/Postal Code Label" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:352 +#: includes/admin/store-settings/class-mp-store-settings-general.php:606 +msgid "Select a State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:335 +#: includes/admin/store-settings/class-mp-store-settings-general.php:590 +msgid "Select A Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:332 +#: includes/admin/store-settings/class-mp-store-settings-general.php:587 +msgid "Select a Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:324 +msgid "Location" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:304 +#: includes/admin/class-mp-setup-wizard.php:312 +#: includes/admin/class-mp-store-settings-admin.php:129 +#: includes/admin/class-mp-store-settings-admin.php:262 +msgid "Quick Setup" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:289 +msgid "MarketPress setup is not complete! Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2479 +msgid "Enter your product name here" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2440 +msgid "Select a %s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2426 +msgid "Each product variation needs to have product attributes assigned to it so the system knows how to differentiate one product variation from the other. It is important that you assign a category to this product before choosing any attributes." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2409 +msgid "If you would like this variation to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2320 +msgid "Sale Price (if applicable)" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2281 +msgid "If you would like the description to be different than the main product enter it here." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2229 +msgid "Image" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2202 +#: includes/admin/class-mp-shortcode-builder.php:226 +msgid "Attributes" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2166 +msgid "Create your product variations here. You can reorder variations by using the number to left of each variation, or delete one by clicking the \"x\" to the right of each variation. NOTE: The variation that shows up first in this list will be considered the \"main variation\". The details from this variation will be used in product listings." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2061 +#: includes/admin/class-mp-products-admin.php:2332 +msgid "Value must be less than regular price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2043 +#: includes/admin/class-mp-products-admin.php:2306 +msgid "Regular Price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2023 +#: includes/admin/class-mp-products-admin.php:2286 +msgid "External URL" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1988 +#: includes/admin/class-mp-products-admin.php:2245 +msgid "Enter the quantity that you have available to sell." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1987 +#: includes/admin/class-mp-products-admin.php:2244 +msgid "Inventory Count" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1977 +#: includes/admin/class-mp-products-admin.php:2234 +msgid "Track Inventory?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1871 +msgid "%1$sProduct Images%2$s %3$sAdd images of the product. The first image on the list is the featured image for this product (you can reorder images on the list)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1806 +msgid "Add variations for this product. e.g. If you are selling t-shirts, you can create Color & Size variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1804 +msgid "%3$sAdd variations for%2$s %1$sProduct%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1776 +msgid "This product has a multiple variations %1$s(e.g. Multiple colors, sizes)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1775 +msgid "This is a unique product without variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1700 +msgid "Extra Shipping Cost %1$s(if applicable)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1659 +#: includes/admin/class-mp-products-admin.php:2112 +#: includes/admin/class-mp-products-admin.php:2359 +msgid "Weight" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1636 +#: includes/admin/class-mp-products-admin.php:2098 +#: includes/admin/class-mp-products-admin.php:2416 +msgid "Please enter a valid tax rate" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1531 +msgid "Limit Per Order %1$s(limit the number of the item a shopper can buy per order)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1513 +msgid "SKU %1$s(Stock Keeping Unit)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "%1$sPrice, Inventory & Variants%2$s %3$sSet price, manage inventory and create Product Variants (if appropriate for your product).%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "Product Variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1480 +msgid "External / Affiliate Link" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1471 +msgid "Digital Download" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1470 +msgid "Physical / Tangible Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1464 +msgid "Product Kind %1$s(Physical Product, Digital, etc)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1426 +msgid "Choose Products" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1420 +msgid "If you would like, you can choose specific related products instead of using the ones generated by MarketPress" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1019 +msgid "Changes saved successfully" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:826 +msgid "Option cannot be saved. Try again." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:821 +msgid "Option saved successfully." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:467 +msgid "Img" +msgstr "" + +#: includes/admin/class-mp-product-attributes-list-table.php:57 +msgid "Product attribute(s) deleted successfully." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:162 +msgid "- Create New Variation -" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:144 +msgid "Only lowercase letters and dashes (-) are allowed." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:139 +msgid "If a slug is not entered, it will be generated automatically. Max 32 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:138 +#: includes/admin/class-mp-product-attributes-list-table.php:23 +msgid "Slug" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:130 +msgid "Max 45 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:123 +msgid "Use the numbers on the left to sort. To delete - click the \"X\" to the right of each row." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:122 +msgid "Attribute Options" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:121 +msgid "Add Option" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:105 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:523 +msgid "Sort Order" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:87 +msgid "Alphabetical" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:86 +msgid "ID" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:84 +msgid "Select how the options will be sorted." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:82 +msgid "Sort By" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:75 +msgid "The name of the attribute (e.g. color, size, etc)" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:74 +msgid "Attribute Name" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:69 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Product Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Product Attributes" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:71 +msgid "You can choose to make this page one of the following core store pages." +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:66 +msgid "Network Store Base" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:61 +msgid "Checkout Page" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:52 +msgid "Store Page Settings" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1108 +msgid "Display billing/shipping info for this customer" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1097 +msgid "View order “%s”" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1072 +msgid "Flag as:" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:952 +msgid "Move To Trash" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:948 +msgid " Received" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:927 +msgid "Enter coupon code here" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:812 +msgid "The order status could not be updated due to unexpected error. Please try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:740 +msgid "An invalid bulk action was requested. Please go back and try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:692 +msgid "The order status for order ID %1$s was updated successfully." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:688 +msgid "Order statuses successfully updated." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:530 +msgid "Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:518 +msgid "Actual Shipping Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:513 +msgid "Method Paid For" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:504 +msgid "Amount Collected" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:477 +msgid "DHL" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:408 +msgid "There is no IPN history to show at this time" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:345 +msgid "Type" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:343 +msgid "Gateway" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:301 +#: includes/common/template-functions.php:528 +msgid "Order History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:291 +msgid "IPN History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:283 +msgid "Customer Info" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:279 +msgid "Order Details" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:157 +msgid "All Dates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:320 +msgid "Add Pages to Menu" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:318 +msgid "Add-ons" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:317 +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "User Capabilities" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:316 +#: includes/admin/class-mp-setup-wizard.php:631 +#: includes/admin/store-settings/class-mp-store-settings-payments.php:50 +msgid "Payment Gateways" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:315 +msgid "Shipping Rates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:312 +msgid "Configure" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:309 +#: includes/admin/class-mp-products-admin.php:466 +#: includes/admin/class-mp-shortcode-builder.php:797 +msgid "Tags" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:308 +#: includes/admin/class-mp-products-admin.php:465 +msgid "Categories" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:300 +msgid "Manage" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:297 +msgid "Here's some quick links to manage your store and products." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:288 +msgid "low in stock" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:287 +msgid "%s product" +msgid_plural "%s products" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-dashboard-widgets.php:280 +msgid "received" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:279 +#: includes/admin/class-mp-dashboard-widgets.php:283 +msgid "%s order" +msgid_plural "%s orders" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-dashboard-widgets.php:276 +msgid "Stock & Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:261 +msgid "Last 30 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:256 +msgid "Last 7 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:251 +msgid "Yesterday" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:248 +#: includes/admin/class-mp-dashboard-widgets.php:253 +#: includes/admin/class-mp-dashboard-widgets.php:258 +#: includes/admin/class-mp-dashboard-widgets.php:263 +msgid " Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:246 +msgid "Today" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:241 +msgid "Welcome back! Here's a quick summary of your store's performance." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:196 +#: includes/admin/class-mp-products-admin.php:895 +msgid "No products out of stock." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:136 +#: includes/admin/class-mp-products-admin.php:839 +msgid "Stock Level" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:135 +#: includes/admin/class-mp-products-admin.php:838 +msgid "Variation" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:121 +msgid "Low Stock (%s)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:116 +msgid "Store Management" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:115 +msgid "Store Reports" +msgstr "" + +#: includes/admin/class-mp-ajax.php:579 +#: includes/admin/class-mp-orders-admin.php:520 +#: includes/common/payment-gateways/2checkout.php:370 +#: includes/common/payment-gateways/authorizenet-aim.php:264 +#: includes/common/payment-gateways/mollie.php:93 +#: includes/common/payment-gateways/paymill.php:196 +#: includes/common/payment-gateways/pin.php:190 +#: includes/common/payment-gateways/skrill.php:157 +#: includes/common/payment-gateways/skrill.php:168 +#: includes/common/payment-gateways/wepay.php:143 +#: includes/public/class-mp-checkout.php:404 +msgid "Select One" +msgstr "" + +#: includes/admin/class-mp-ajax.php:511 +msgid "Oops... we could not locate any orders by that ID. Please double check your order ID and try again." +msgstr "" + +#: includes/admin/class-mp-ajax.php:482 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:166 +#: includes/multisite/class-mp-admin-multisite.php:584 +msgid "Edit Page" +msgstr "" + +#: includes/admin/class-mp-ajax.php:346 +msgid "Cancel " +msgstr "" + +#: includes/admin/class-mp-ajax.php:345 +msgid "Save " +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "Edit Description" +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "HTML Markup" +msgstr "" + +#: includes/admin/class-mp-ajax.php:333 +msgid "Plain Text Only" +msgstr "" + +#: includes/admin/class-mp-ajax.php:329 +msgid "Additional Content / Information for this Variation" +msgstr "" + +#: includes/admin/class-mp-ajax.php:317 +#: includes/admin/class-mp-products-admin.php:1762 +msgid "Allow this product to be purchased even if it's out of stock" +msgstr "" + +#: includes/admin/class-mp-ajax.php:313 +#: includes/admin/class-mp-products-admin.php:1711 +msgid "Track Product Inventory" +msgstr "" + +#: includes/admin/class-mp-ajax.php:300 +msgid "Extra Shipping Cost (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:295 +msgid "Ounces:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:294 +msgid "Pounds:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:292 +msgid "Kilograms:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:287 +#: includes/admin/class-mp-products-admin.php:1649 +msgid "Charge Shipping" +msgstr "" + +#: includes/admin/class-mp-ajax.php:273 +#: includes/admin/class-mp-products-admin.php:1623 +#: includes/admin/store-settings/class-mp-store-settings-general.php:454 +msgid "Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:272 +#: includes/admin/class-mp-products-admin.php:1622 +#: includes/admin/class-mp-products-admin.php:2090 +#: includes/admin/class-mp-products-admin.php:2408 +msgid "Special Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:271 +#: includes/admin/class-mp-products-admin.php:1625 +#: includes/admin/class-mp-products-admin.php:2092 +msgid "If you would like this product to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-ajax.php:268 +#: includes/admin/class-mp-products-admin.php:1599 +msgid "Charge Taxes (Special Rate)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:256 +#: includes/admin/class-mp-products-admin.php:1593 +#: includes/admin/class-mp-products-admin.php:2077 +#: includes/admin/class-mp-products-admin.php:2348 +msgid "End Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:255 +#: includes/admin/class-mp-products-admin.php:1589 +#: includes/admin/class-mp-products-admin.php:2072 +msgid "Start Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:1568 +msgid "Enter Sale Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:250 +#: includes/admin/class-mp-products-admin.php:1547 +msgid "Set up a Sale for this Product" +msgstr "" + +#: includes/admin/class-mp-ajax.php:206 includes/admin/class-mp-ajax.php:223 +msgid "Enter " +msgstr "" + +#: includes/admin/class-mp-ajax.php:193 +msgid "Browse" +msgstr "" + +#: includes/admin/class-mp-ajax.php:184 includes/admin/class-mp-ajax.php:192 +msgid "http://" +msgstr "" + +#: includes/admin/class-mp-ajax.php:183 +msgid "External Product URL" +msgstr "" + +#: includes/admin/class-mp-ajax.php:237 +msgid "Limit Per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:177 +#: includes/admin/class-mp-products-admin.php:1520 +msgid "Enter Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:174 +#: includes/admin/class-mp-products-admin.php:1512 +msgid "Enter SKU" +msgstr "" + +#: includes/admin/class-mp-ajax.php:173 +msgid "(Stock Keeping Unit)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:158 +msgid "Remove Image" +msgstr "" + +#: includes/admin/class-mp-ajax.php:74 +msgid "Variation Draft" +msgstr "" + +#: includes/admin/class-mp-admin.php:296 +#: includes/admin/class-mp-dashboard-widgets.php:70 +msgid "Please wait...saving in progress..." +msgstr "" + +#: includes/admin/class-mp-admin.php:295 +#: includes/admin/class-mp-dashboard-widgets.php:69 +msgid "Input is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:294 +#: includes/admin/class-mp-dashboard-widgets.php:68 +msgid "Valid number is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:292 +#: includes/admin/class-mp-dashboard-widgets.php:66 +msgid "Delete %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:291 +#: includes/admin/class-mp-dashboard-widgets.php:65 +msgid "Delete %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:290 +#: includes/admin/class-mp-dashboard-widgets.php:64 +msgid "Update inventory for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:289 +#: includes/admin/class-mp-dashboard-widgets.php:63 +msgid "Update inventory for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:288 +#: includes/admin/class-mp-dashboard-widgets.php:62 +msgid "Update price for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:287 +#: includes/admin/class-mp-dashboard-widgets.php:61 +msgid "Update prices for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:285 +#: includes/admin/class-mp-dashboard-widgets.php:59 +msgid "Creating variations, please wait..." +msgstr "" + +#: includes/admin/class-mp-admin.php:96 +msgid "The following payment gateways have been deprecated, Cubepoints, Bitpay, iDEAL, Skrill, Google Checkout. If you were using one of these gateways, please setup a new payment gateway here." +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:61 +msgid "Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:71 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:71 +#: includes/common/class-mp-gdpr.php:399 includes/common/class-mp-order.php:872 +#: includes/common/helpers.php:164 includes/public/class-mp-checkout.php:1434 +msgid "Shipping Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:66 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:66 +#: includes/common/class-mp-gdpr.php:392 includes/common/class-mp-order.php:864 +#: includes/common/helpers.php:163 includes/public/class-mp-checkout.php:1427 +msgid "Billing Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:61 +msgid "Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:258 +msgid "Shipping Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:256 +msgid "Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:235 +msgid "Payment Method: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:79 +msgid "The dir %s not exist or not writeable" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:239 +msgid "Shop header/logo" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:233 +msgid "Choose a template" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:226 +msgid "Template Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:221 +msgid "Disable automatic creation/attachment of invoices when only free products are ordered" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:220 +msgid "Disable for free products" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:216 +msgid "Attach invoice to" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:214 +msgid "Customer Order Shipped email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:212 +msgid "Customer New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:211 +msgid "Admin New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:206 +msgid "download" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:205 +msgid "How do you want to view the PDF?" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:203 +msgid "Open the PDF in a new browser tab/window" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:202 +msgid "Download the PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:158 +msgid "Export PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:103 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:106 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:109 +msgid "You can't download this order invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:76 +msgid "Invalid Request" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:72 +msgid "Order not exist!" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:67 +msgid "Invalid ID" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1293 +msgid "Coupon added successfully" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1292 +msgid "Please enter a code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1247 +msgid "No end" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1200 +msgid "Valid Dates" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1195 +msgid "Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1027 +msgid "No Coupons found in Trash" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1026 +msgid "No Coupons Found" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1025 +msgid "Search Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1024 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1028 +msgid "View Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1023 +msgid "New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1020 +msgid "Create New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1017 +msgid "Manage Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1002 +msgid "An error occurred while removing your coupon. Please try again." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:964 +msgid "Coupon can't be applied to this cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:951 +msgid "Invalid coupon code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:794 +msgid "Help Text" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:789 +msgid "Form Title" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:783 +msgid "Coupons Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:764 +msgid "End Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:758 +msgid "Does coupon have an end date?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:696 +msgid "Select Products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:688 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:723 +#: includes/common/payment-gateways/paypal-payflow.php:402 +msgid "User" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:638 +msgid "Max Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:636 +msgid "Enter the maximum number of times this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:623 +msgid "Leave blank to allow all other coupons." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:622 +msgid "Select combinable coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:618 +msgid "Can this coupon be combined with other coupons?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:613 +msgid "Apply to each applicable item once per cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:612 +msgid "Apply to each applicable item and quantity ordered" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:609 +msgid "How should the discount amount be applied?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:605 +msgid "Discount Amount" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:604 +msgid "Value must either be a decimal number or a percentage" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:602 +msgid "If you would like to give a percentage-based discount make sure to include the percent (%) symbol. Otherwise, the discount will be applied as a fixed amount off." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:595 +msgid "Letters and Numbers only." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:589 +msgid "Coupon Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:447 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:795 +msgid "More than one code? That's OK! Just be sure to enter one at a time." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:444 +msgid "Apply Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:314 +msgid "Coupon Discounts" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:89 +msgid "1 add-on disabled" +msgid_plural "%s add-ons disabled" +msgstr[0] "" +msgstr[1] "" + +#: includes/addons/class-mp-addons-list-table.php:84 +msgid "1 add-on enabled" +msgid_plural "%s add-ons enabled" +msgstr[0] "" +msgstr[1] "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Disabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Enable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:129 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:67 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:135 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:168 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:202 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:263 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:296 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:330 +msgid "Enabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +msgid "Disable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:34 +msgid "Disable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:33 +msgid "Enable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:21 +#: includes/admin/class-mp-products-admin.php:2280 +#: includes/common/class-mp-product.php:2916 +msgid "Description" +msgstr "" + +#: includes/common/template-functions.php:2889 +#: includes/multisite/template-functions.php:407 +msgid "Popularity (Least Popular - Most Popular)" +msgstr "" + +#: includes/common/template-functions.php:2888 +#: includes/multisite/template-functions.php:406 +msgid "Popularity (Most Popular - Least Popular)" +msgstr "" + +#: includes/common/template-functions.php:2885 +#: includes/multisite/template-functions.php:403 +msgid "Name (Z-A)" +msgstr "" + +#: includes/common/template-functions.php:2884 +#: includes/multisite/template-functions.php:402 +msgid "Name (A-Z)" +msgstr "" + +#: includes/common/template-functions.php:2883 +#: includes/multisite/template-functions.php:401 +msgid "Release Date (Oldest to Latest)" +msgstr "" + +#: includes/common/template-functions.php:2882 +#: includes/multisite/template-functions.php:400 +msgid "Release Date (Latest to Oldest)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:284 +msgid "paid" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "One Time Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Customer Counter" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Daily Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:182 +msgid "For the most accurate rates, please select the appropriate pick up type for your business." +msgstr "" + +#: includes/admin/class-mp-admin.php:374 +msgid "Page saved." +msgstr "" + +#: includes/admin/class-mp-admin.php:370 +msgid "Custom field deleted." +msgstr "" + +#: includes/admin/class-mp-admin.php:369 +msgid "Custom field updated." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:541 +msgid "%s - The payment request expired, - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:536 +msgid "%s - The payment not credited in merchants bitpay account, action required. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:252 +msgid "If enabled, you will recieve an email for each status update on payment." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:240 +msgid "Speed at which the bitcoin transaction registers as \"confirmed\" to the store. This overrides your merchant settings on the Bitpay website." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:238 +msgid "Transaction Speed" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:244 +msgid "Low" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:243 +msgid "Medium" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:242 +msgid "High" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:177 +#: includes/common/payment-gateways/_bitpay.php:517 +#: includes/common/payment-gateways/_bitpay.php:522 +msgid "%s - The payment request is under process. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:175 +#: includes/common/payment-gateways/_bitpay.php:527 +msgid "%s - The payment request has been processed - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:150 +#: includes/common/payment-gateways/_bitpay.php:294 +msgid "Incorrect order invoice, please contact site administrator" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:141 +msgid "We could not verify order invoice details, please try again or contact site administrator for help" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:81 +msgid "Login to Simplify to get your API credentials. Enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:605 +#: includes/common/payment-gateways/paypal-express.php:647 +msgid "Express Checkout is PayPal's premier checkout solution, which streamlines the checkout process for buyers and keeps them on your site after making a purchase. Unlike PayPal Pro, there are no additional fees to use Express Checkout, though you may need to do a free upgrade to a business account. More Info »" +msgstr "" + +#. Plugin URI of the plugin/theme +msgid "https://premium.wpmudev.org/project/e-commerce/" +msgstr "" + +#. Author of the plugin/theme +msgid "WPMU DEV" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:541 +#: includes/admin/class-mp-orders-admin.php:543 +msgid "Tracking Number" +msgstr "" + +#: includes/common/class-mp-order.php:805 +#: includes/common/payment-gateways/stripe.php:336 +#: includes/public/class-mp-checkout.php:402 +msgid "Country" +msgstr "" + +#: includes/common/class-mp-order.php:784 +#: includes/common/payment-gateways/stripe.php:338 +msgid "City" +msgstr "" + +#: includes/common/class-mp-order.php:780 +msgid "Address 2" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:340 +msgid "Address" +msgstr "" + +#: includes/common/class-mp-cart.php:752 includes/common/class-mp-gdpr.php:378 +msgid "Order Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:360 +msgid "Payment Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:347 +msgid "Transaction ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:207 +msgid "The WePay Card Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:186 +#: includes/common/shipping-modules/mp-fedex.php:283 +msgid "Account ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:179 +msgid "Access Token" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:172 +msgid "Client Secret" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:165 +msgid "Client ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:159 +msgid "You must login to WePay to get your API credentials. Make sure to check \"Tokenize credit cards\" option under \"API Keys\" section of your WePay app." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:154 +msgid "When in live mode it is recommended to use SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:148 +msgid "Donation" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:147 +msgid "Event" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:146 +msgid "Personal" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:145 +msgid "Service" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:144 +msgid "Goods" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:141 +msgid "Choose type of payments" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:140 +msgid "Checkout Type" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:134 +msgid "Staging" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:131 +msgid "Choose STAGING if you have registered the app on stage.wepay.com, or PRODUCTION if you registered on www.wepay.com" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:36 +#: includes/common/payment-gateways/wepay.php:299 +msgid "WePay" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:366 +msgid "Rejected - A payment was rejected." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:360 +msgid "Failed - A payment was rejected due to an error." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:342 +msgid "PayWay balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:298 +msgid "Full path of the cacerts.crt file" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:284 +msgid "User Name" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:277 +msgid "Biller Code" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:273 +msgid "Log Directory" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:266 +msgid "Encryption Key" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:60 +msgid "Your PayWay transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:40 +#: includes/common/payment-gateways/_payway.php:41 +msgid "PayWay" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:862 +msgid "You must register this application with PayPal using your business account login to get an Application ID that will work with your API credentials. A bit of a hassle, but worth it! In the near future we will be looking for ways to simplify this process. Register then submit your application while logged in to the developer portal. Note that you do not need an Application ID for testing in sandbox mode. More Information »" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:818 +#: includes/common/payment-gateways/paypal-chained-payments.php:840 +#: includes/common/payment-gateways/paypal-express.php:705 +msgid "You must login to PayPal and create an API signature to get your credentials. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:378 +msgid "Use Payflow payment gateway to accept online payments using your Internet merchant account and processing network. PayPal Payflow Pro is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:595 +msgid "Tags Only" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:594 +msgid "Category Only" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:795 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:593 +msgid "Category & Tags" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:591 +msgid "Relate Products By" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1008 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:455 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:751 +msgid "Right" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1007 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:454 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:749 +msgid "Left" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1009 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:750 +msgid "Center" +msgstr "" + +#: marketpress.php:273 +msgid "Orders from your e-commerce store." +msgstr "" + +#: marketpress.php:231 +msgid "Products for your e-commerce store." +msgstr "" + +#: marketpress.php:222 +msgid "Edit Product" +msgstr "" + +#. Description of the plugin/theme +msgid "The complete WordPress ecommerce plugin - works perfectly with BuddyPress and Multisite too to create a social marketplace, where you can take a percentage! Activate the plugin, adjust your settings then add some products to your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:272 +msgid "Beside" +msgstr "До" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:271 +msgid "Above" +msgstr "Над" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:268 +msgid "Pin Count" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:261 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:287 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:318 +msgid "All View" +msgstr "Виж Всички" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:260 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:286 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:317 +msgid "Single View" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:259 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:285 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:316 +msgid "Off" +msgstr "Изключено" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:578 +msgid "Related Product Limit" +msgstr "Свързани Продукти Ограничение" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:681 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1201 +msgid "Applies To" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:685 +msgid "All Products" +msgstr "Всички Продукти" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:487 +msgid "The label shown for the tax line item in the cart. Taxes, VAT, GST, etc." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:485 +msgid "Tax Label" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:81 +msgid "Apply" +msgstr "Приложи" + +#: includes/admin/class-mp-admin.php:192 +msgid "MarketPress Instructions" +msgstr "MarketPress Инструкции" + +#: includes/admin/class-mp-products-admin.php:1954 +#: includes/admin/class-mp-products-admin.php:2194 includes/common/data.php:62 +#: includes/common/helpers.php:150 +msgid "Taxes" +msgstr "Данъци" + +#: includes/admin/class-mp-products-admin.php:1417 +#: includes/common/class-mp-product.php:2900 +msgid "Related Products" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:282 +#: includes/common/shipping-modules/mp-usps.php:316 +msgid "@ Max" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "(3-5 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "Priority Mail Express International Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:92 +msgid "Priority Mail Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:171 +#: includes/common/shipping-modules/mp-pickup.php:247 +msgid "In Store" +msgstr "В Магазина" + +#: includes/common/shipping-modules/mp-pickup.php:159 +msgid "Pickup Fee" +msgstr "Такса за Прибиране" + +#: includes/common/shipping-modules/mp-pickup.php:141 +msgid "This option allows your customers to indicate that they will pick-up their order at your place of business." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:60 +#: includes/common/shipping-modules/mp-pickup.php:76 +#: includes/common/shipping-modules/mp-pickup.php:176 +msgid "Pickup Instructions" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:24 +#: includes/common/shipping-modules/mp-pickup.php:254 +msgid "Pickup" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping - 0.00" +msgstr "Безплатна Доставка - 0.00" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:256 +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:440 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping" +msgstr "Безплатна доставка" + +#: includes/common/shipping-modules/mp-fedex.php:309 +msgid "Your Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:301 +msgid "Station" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:300 +msgid "Request Courier" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:299 +msgid "Drop Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:298 +msgid "Business Service Center" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:297 +msgid "Regular Pickup" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:135 +#: includes/common/shipping-modules/mp-fedex.php:264 +msgid "Production" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:207 +msgid "Simplify Commerce by MasterCard" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:104 +msgid "When in live mode, although it is not required, Simplify recommends you have an SSL certificate." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:183 +#: includes/common/payment-gateways/simplify.php:87 +msgid "Public Key" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:175 +#: includes/common/payment-gateways/simplify.php:94 +msgid "Private Key" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:71 +msgid "Simplify helps merchants to accept online payments from Mastercard, Visa, American Express, Discover, JCB, and Diners Club cards. It's that simple. We offer a merchant account and payment gateway in a single, secure package so you can concentrate on what really matters to your business. Only supports USD currently." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:267 +msgid "%1$s" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:151 +msgid "The Simplify Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/simplify.php:18 +msgid "Simplify" +msgstr "" + +#: includes/common/payment-gateways/pin.php:255 +msgid "%1$s Card %2$s" +msgstr "" + +#: includes/common/payment-gateways/pin.php:211 +msgid "The PIN Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:187 +msgid "Selecting a currency other than currency supported by PIN may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/pin.php:164 +msgid "You must login to PIN to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/pin.php:158 +msgid "When in live mode PIN recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/pin.php:45 +#: includes/common/payment-gateways/pin.php:286 +msgid "PIN" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:830 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:534 +#: includes/common/payment-gateways/paypal-express.php:865 +msgid "The payment is pending" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:235 +msgid "The Paymill Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:169 +msgid "You must login to Paymill to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:45 +#: includes/common/payment-gateways/paymill.php:308 +msgid "Paymill" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:90 +msgid "Invalid cardholder" +msgstr "Невалиден Картодържател" + +#: includes/common/payment-gateways/paymill.php:89 +msgid "Card is no longer valid or has expired" +msgstr "Картата не е валидна или е изтекла" + +#: includes/common/payment-gateways/paymill.php:88 +msgid "Please enter a valid Card CVC" +msgstr "Моля въведете валиден CVC на карта" + +#: includes/common/payment-gateways/paymill.php:87 +msgid "Please choose a valid Expiration Date." +msgstr "Моля, изберете дата на изтичане на картата" + +#: includes/common/payment-gateways/skrill.php:99 +#: includes/common/payment-gateways/skrill.php:100 +msgid "Skrill (Moneybookers)" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:24 +#: includes/common/shipping-modules/mp-weight-rate.php:292 +msgid "Weight Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:303 +msgid "USPS Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:270 +msgid "USPS Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:264 +msgid "USPS Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:145 +msgid "Flat Rate Large" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:140 +msgid "Flat Rate Medium 2" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:135 +msgid "Flat Rate Medium 1" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:130 +msgid "Flat Rate Small" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:118 +msgid "First Class International Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:114 +msgid "Priority Mail International Small Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:112 +msgid "Priority Mail International Medium Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:110 +msgid "Priority Mail International Large Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:108 +msgid "Priority Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:106 +msgid "Express Mail International Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:104 +msgid "Express Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:98 +msgid "Library Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:96 +msgid "Media Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "First-Class Mail Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:90 +msgid "Priority Mail Small Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:88 +msgid "Priority Mail Medium Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +#: includes/common/shipping-modules/mp-usps.php:88 +#: includes/common/shipping-modules/mp-usps.php:90 +#: includes/common/shipping-modules/mp-usps.php:92 +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "(2-4 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +msgid "Priority Mail Large Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "(2-4) days" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "Priority Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "Express Mail Sunday/Holiday Delivery Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:80 +msgid "Express Mail Flat Rate Boxes Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:78 +msgid "Express Mail Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:76 +msgid "Express Mail Sunday/Holiday Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:74 +msgid "Express Mail Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:72 +#: includes/common/shipping-modules/mp-usps.php:74 +#: includes/common/shipping-modules/mp-usps.php:76 +#: includes/common/shipping-modules/mp-usps.php:78 +#: includes/common/shipping-modules/mp-usps.php:80 +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "(1-2 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:72 +msgid "Express Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:67 +#: includes/common/shipping-modules/mp-usps.php:902 +msgid "USPS" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:534 +msgid "UPS (beta)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:166 +msgid "Required if using negotiated rates" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "Worldwide Express Plus" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "(Scheduled)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "Standard" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "(2-5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "Worldwide Expedited" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:54 +msgid "Worldwide Express" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "2nd Day Air AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "(1 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "Next Day Air Early AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "Next Day Air Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "3 Day Select" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:49 +msgid "Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:48 +msgid "2nd Day Air" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "Next Day Air" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:475 +#: includes/common/shipping-modules/mp-ups.php:43 +msgid "UPS" +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:27 +#: includes/common/shipping-modules/mp-table-rate.php:318 +msgid "Table Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:71 +#: includes/common/shipping-modules/mp-table-quantity.php:77 +msgid "Shipping Cost: " +msgstr "Цена за Доставка" + +#: includes/common/shipping-modules/mp-table-quantity.php:70 +#: includes/common/shipping-modules/mp-table-quantity.php:76 +msgid "If quantity is greater than:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:66 +msgid "Each band must be a higher price than the one above it." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:56 +msgid "Number of Bands:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:53 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Each layer must be a higher quantity than the previous." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:51 +msgid "Table Quantity Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:31 +msgid "Table Quantity" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:135 +#: includes/common/shipping-modules/mp-table-rate.php:174 +#: includes/common/shipping-modules/mp-weight-rate.php:189 +msgid "European Union" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:123 +#: includes/common/shipping-modules/mp-table-rate.php:162 +#: includes/common/shipping-modules/mp-weight-rate.php:177 +msgid "United States" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:111 +#: includes/common/shipping-modules/mp-table-rate.php:151 +#: includes/common/shipping-modules/mp-weight-rate.php:166 +msgid "In Country" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:146 +#: includes/common/shipping-modules/mp-table-rate.php:186 +#: includes/common/shipping-modules/mp-weight-rate.php:201 +msgid "International" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:101 +#: includes/common/shipping-modules/mp-table-rate.php:141 +#: includes/common/shipping-modules/mp-weight-rate.php:156 +msgid "Canada" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:92 +#: includes/common/shipping-modules/mp-table-rate.php:132 +#: includes/common/shipping-modules/mp-weight-rate.php:147 +msgid "Hawaii and Alaska" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:83 +#: includes/common/shipping-modules/mp-table-rate.php:123 +#: includes/common/shipping-modules/mp-weight-rate.php:138 +msgid "Lower 48 States" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:64 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping." +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:25 +#: includes/common/shipping-modules/mp-flat-rate.php:223 +msgid "Flat Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:761 +msgid "FedEx (beta)" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Centimeters" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Inches" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1676 +#: includes/admin/class-mp-setup-wizard.php:547 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:166 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +msgid "Kilograms" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:103 +msgid " %1$s - %2$s" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:358 +msgid "Max Weight per Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:356 +msgid "Box Dimensions" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:354 +msgid "Box Name" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:344 +msgid "Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:343 +msgid "For each box defined enter the maximum weight it can contain." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:341 +msgid "Enter your standard box sizes as LengthxWidthxHeight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:386 +#: includes/common/shipping-modules/mp-ups.php:193 +#: includes/common/shipping-modules/mp-usps.php:234 +#: includes/common/shipping-modules/mp-usps.php:338 +msgid "Standard Boxes and Weight Limits" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:328 +msgid "Handling Charge per Interntional Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:294 +msgid "Handling Charge per Domestic Shipment " +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:388 +#: includes/common/shipping-modules/mp-ups.php:196 +#: includes/common/shipping-modules/mp-usps.php:237 +msgid "Add Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "(Next Day)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +msgid "Europe First International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:62 +msgid "International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:61 +#: includes/common/shipping-modules/mp-fedex.php:62 +#: includes/common/shipping-modules/mp-ups.php:54 +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "(1-3 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:61 +msgid "International First" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "(5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "International Economy" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "(2-7 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "Smart Post" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:55 +#: includes/common/shipping-modules/mp-ups.php:49 +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "(1-5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:55 +msgid "Ground Home Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "(1-7 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "Fedex Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:53 +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "(3 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:53 +msgid "Fedex Express Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +#: includes/common/shipping-modules/mp-ups.php:48 +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "(2 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +msgid "Fedex 2 Day" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "(2 Days am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "Fedex 2 Day AM" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "(1 Day)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +msgid "Standard Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "(1 Day am )" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "Priority Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "(1 Day am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "First Overnight" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:476 +#: includes/common/shipping-modules/mp-fedex.php:31 +msgid "FedEx" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:270 +#: includes/common/payment-gateways/simplify.php:179 +#: includes/common/payment-gateways/stripe.php:365 +msgid "%1$s Card ending in %2$s - Expires %3$s" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:259 +#: includes/common/payment-gateways/pin.php:238 +#: includes/common/payment-gateways/simplify.php:171 +msgid "%s Store Purchase - Order ID: %s, Email: %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:266 +msgid "You must login to Stripe to get your API credentials. You can enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:261 +msgid "When in live mode Stripe recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:311 +msgid "The Stripe Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:263 +#: includes/common/payment-gateways/paymill.php:122 +#: includes/common/payment-gateways/stripe.php:222 +msgid "Card Number" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:86 +msgid "Please enter a valid Credit Card Number." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:45 +#: includes/common/payment-gateways/stripe.php:433 +msgid "Stripe" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:750 +msgid "Sets the background color for the payment page. By default, the color is white." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:745 +msgid "Sets the background color for the header of the payment page. By default, the color is white." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:740 +msgid "Sets the border color around the header of the payment page. The border is a 2-pixel perimeter around the header space, which is 750 pixels wide by 90 pixels high. By default, the color is black." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:735 +msgid "URL for an image you want to appear at the top left of the payment page. The image has a maximum size of 750 pixels wide by 90 pixels high. PayPal recommends that you provide an image that is stored on a secure (https) server. If you do not specify an image, the business name is displayed." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:857 +#: includes/common/payment-gateways/paypal-express.php:1131 +msgid "The payment is pending because it is part of an order that has been authorized but not settled." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:853 +#: includes/common/payment-gateways/paypal-express.php:1127 +msgid "The payment is pending because it has been authorized but not settled. You must capture the funds first." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:847 +#: includes/common/payment-gateways/paypal-express.php:1120 +msgid "You denied the payment when it was marked as pending." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:837 +#: includes/common/payment-gateways/paypal-express.php:1108 +msgid "A reversal has occurred on this transaction due to an unknown reason." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:836 +#: includes/common/payment-gateways/paypal-express.php:1107 +msgid "A reversal has occurred on this transaction because you have given the customer a refund." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:835 +#: includes/common/payment-gateways/paypal-express.php:1106 +msgid "A reversal has occurred on this transaction due to a complaint about the transaction from your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:834 +#: includes/common/payment-gateways/paypal-express.php:1105 +msgid "A reversal has occurred on this transaction due to your customer triggering a money-back guarantee." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:833 +#: includes/common/payment-gateways/paypal-express.php:1104 +msgid "A reversal has occurred on this transaction due to a chargeback by your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:1101 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer:" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:826 +#: includes/common/payment-gateways/paypal-express.php:1097 +msgid "A payment has been accepted." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:818 +#: includes/common/payment-gateways/paypal-express.php:1087 +msgid "The transaction has not terminated, e.g. an authorization may be awaiting completion." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:531 +#: includes/common/payment-gateways/paypal-express.php:810 +#: includes/common/payment-gateways/paypal-express.php:1077 +msgid "The payment has failed. This happens only if the payment was made from your customer's bank account." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:806 +#: includes/common/payment-gateways/paypal-express.php:1072 +msgid "An authorization for this transaction has been voided." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:802 +#: includes/common/payment-gateways/paypal-express.php:1067 +msgid "The authorization period for this payment has been reached." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:798 +#: includes/common/payment-gateways/paypal-express.php:1062 +msgid "A reversal has been canceled; for example, when you win a dispute and the funds for the reversal have been returned to you." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:499 +#: includes/common/payment-gateways/paypal-express.php:1163 +msgid "PayPal Express Checkout" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:798 +msgid "Gateway Settings Page Message" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:725 +msgid "Signature" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:506 +#: includes/common/payment-gateways/eway31.php:533 +#: includes/common/shipping-modules/mp-fedex.php:276 +msgid "API Password" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:773 +msgid "Enter a percentage of all store sales to collect as a fee. Decimals allowed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:757 +msgid "Using PayPal Chained Payments allows you as the multisite network owner to collect a predefined fee or percentage of all sales on network MarketPress stores! This is invisible to the customers who purchase items in a store, and all PayPal fees will be charged to the store owner. To use this option you must create API credentials, and you should make all other gateways unavailable or limited above." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:338 +msgid "Please be aware that we will deduct a ?% fee from the total of each transaction in addition to any fees PayPal may charge you. If for any reason you need to refund a customer for an order, please contact us with a screenshot of the refund receipt in your PayPal history as well as the Transaction ID of our fee deduction so we can issue you a refund. Thank you!" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:698 +#: includes/common/payment-gateways/paypal-express.php:149 +msgid "There was a problem connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:470 +#: includes/common/payment-gateways/paypal-express.php:1053 +msgid "There was a problem verifying the IPN string with PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:310 +msgid "There was a problem connecting to PayPal to check the status of your purchase. Please check the status of your order here »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:539 +#: includes/common/payment-gateways/paypal-chained-payments.php:254 +#: includes/common/payment-gateways/paypal-express.php:1139 +msgid "The payment is pending." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:251 +#: includes/common/payment-gateways/paypal-chained-payments.php:531 +#: includes/common/payment-gateways/paypal-express.php:862 +#: includes/common/payment-gateways/paypal-express.php:1136 +msgid "The payment is pending for an unknown reason. For more information, contact PayPal customer service." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:250 +#: includes/common/payment-gateways/paypal-chained-payments.php:530 +#: includes/common/payment-gateways/paypal-express.php:861 +#: includes/common/payment-gateways/paypal-express.php:1135 +msgid "The payment is pending because you are not yet verified. You must verify your account before you can accept this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:249 +#: includes/common/payment-gateways/paypal-chained-payments.php:529 +#: includes/common/payment-gateways/paypal-express.php:860 +#: includes/common/payment-gateways/paypal-express.php:1134 +msgid "The payment is pending because it was made via credit card and you must upgrade your account to Business or Premier status in order to receive the funds. It can also mean that you have reached the monthly limit for transactions on your account." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:248 +#: includes/common/payment-gateways/paypal-chained-payments.php:528 +#: includes/common/payment-gateways/paypal-express.php:859 +#: includes/common/payment-gateways/paypal-express.php:1133 +msgid "The payment is pending because it was made to an email address that is not yet registered or confirmed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:247 +#: includes/common/payment-gateways/paypal-chained-payments.php:527 +#: includes/common/payment-gateways/paypal-express.php:858 +#: includes/common/payment-gateways/paypal-express.php:1132 +msgid "The payment is pending while it is being reviewed by PayPal for risk." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:246 +#: includes/common/payment-gateways/paypal-chained-payments.php:526 +#: includes/common/payment-gateways/paypal-express.php:856 +#: includes/common/payment-gateways/paypal-express.php:1130 +msgid "You do not have a balance in the currency sent, and you do not have your Payment Receiving Preferences set to automatically convert and accept this payment. You must manually accept or deny this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:245 +#: includes/common/payment-gateways/paypal-chained-payments.php:525 +#: includes/common/payment-gateways/paypal-express.php:855 +#: includes/common/payment-gateways/paypal-express.php:1129 +msgid "The payment is pending because you hold a non-U.S. account and do not have a withdrawal mechanism. You must manually accept or deny this payment from your Account Overview." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:244 +#: includes/common/payment-gateways/paypal-chained-payments.php:524 +#: includes/common/payment-gateways/paypal-express.php:854 +#: includes/common/payment-gateways/paypal-express.php:1128 +msgid "The payment is pending because it was made by an eCheck that has not yet cleared." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:243 +#: includes/common/payment-gateways/paypal-chained-payments.php:523 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:236 +#: includes/common/payment-gateways/paypal-chained-payments.php:516 +msgid "The transaction was rejected by the receiver (you)." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:510 +#: includes/common/payment-gateways/paypal-express.php:843 +#: includes/common/payment-gateways/paypal-express.php:1115 +msgid "You refunded the payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:224 +#: includes/common/payment-gateways/paypal-chained-payments.php:504 +msgid "The transaction is in progress." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:212 +#: includes/common/payment-gateways/paypal-chained-payments.php:491 +#: includes/common/payment-gateways/paypal-express.php:814 +#: includes/common/payment-gateways/paypal-express.php:1082 +msgid "The payment has been partially refunded." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:202 +#: includes/common/payment-gateways/paypal-chained-payments.php:481 +msgid "PayPal balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:177 +msgid "There was a problem connecting to PayPal to setup your purchase. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:122 +msgid "Your PayPal transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:50 +#: includes/common/payment-gateways/paypal-chained-payments.php:53 +#: includes/common/payment-gateways/paypal-chained-payments.php:732 +#: includes/common/payment-gateways/paypal-express.php:500 +#: includes/common/payment-gateways/paypal-express.php:938 +msgid "PayPal" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:48 +#: includes/common/payment-gateways/paypal-chained-payments.php:730 +#: includes/common/payment-gateways/paypal-chained-payments.php:756 +#: includes/common/payment-gateways/paypal-chained-payments.php:873 +msgid "PayPal Chained Payments" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:59 +#: includes/common/payment-gateways/paypal-payflow.php:467 +msgid "PayPal Payflow Pro" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:378 +msgid "Chargeback - A payment was reversed due to a chargeback. The funds have been removed from your account balance and returned to the buyer." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:372 +msgid "Failed - The Credit Card or Direct Debit transaction was declined." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:354 +#: includes/common/payment-gateways/skrill.php:366 +msgid "Cancelled - The payment was cancelled manually by the sender in their online account history or was auto-cancelled after 14 days pending." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:360 +msgid "Pending - The payment is pending. It can take 2-3 days for bank transfers to complete." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:349 +#: includes/common/payment-gateways/skrill.php:354 +msgid "Processed - The payment has been completed, and the funds have been added successfully to your Moneybookers account balance." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:189 +msgid "Shown to the customer on the confirmation screen - the end step of the process - a note, confirmation number, or any other message. Line breaks <br> may be used for longer messages." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:188 +msgid "Confirmation Note (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:183 +msgid "The URL of the logo which you would like to appear at the top of the payment form. The logo must be accessible via HTTPS otherwise it will not be shown. For best integration results we recommend that you use a logo with dimensions up to 200px in width and 50px in height." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:182 +msgid "Logo Image (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:177 +msgid "The name of this store, which will be shown on the gateway. If no value is submitted, the account email will be shown as the recipient of the payment." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:176 +msgid "Merchant Name (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:165 +msgid "Language" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:368 +#: includes/common/payment-gateways/authorizenet-aim.php:262 +#: includes/common/payment-gateways/eway.php:363 +#: includes/common/payment-gateways/eway31.php:471 +#: includes/common/payment-gateways/mollie.php:91 +#: includes/common/payment-gateways/paymill.php:193 +#: includes/common/payment-gateways/paypal-chained-payments.php:356 +#: includes/common/payment-gateways/paypal-express.php:688 +#: includes/common/payment-gateways/paypal-payflow.php:432 +#: includes/common/payment-gateways/pin.php:186 +#: includes/common/payment-gateways/skrill.php:152 +#: includes/common/payment-gateways/stripe.php:288 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:104 +msgid "Currency" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:359 +#: includes/common/payment-gateways/skrill.php:143 +msgid "Secret Word" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:261 +msgid "Order ID:" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:234 +msgid "Complete Checkout" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:204 +msgid "Your Moneybookers transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:155 +msgid "This is the email text to send to those who have made manual payment checkouts. You should include your manual payment instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:257 +#: includes/common/payment-gateways/manual-payments.php:128 +msgid "Record payments manually, such as by Cash, Check, or EFT." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:71 +msgid "Manual/Invoice" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:648 +#: includes/common/payment-gateways/manual-payments.php:35 +#: includes/common/payment-gateways/manual-payments.php:36 +msgid "Manual Payment" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:34 +#: includes/common/payment-gateways/manual-payments.php:163 +msgid "Manual Payments" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:288 +msgid "iDEAL Simulator (for testing)" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:287 +msgid "ABN Amro Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:286 +msgid "Friesland Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:285 +msgid "Rabobank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:284 +msgid "ING Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:279 +msgid "Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:270 +msgid "To make it easier to pay for online products and services, the Dutch banking community has developed the iDEAL online payment method. iDEAL allows online payments to be made using online banking in EUR only." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:247 +#: includes/common/payment-gateways/_payway.php:199 +#: includes/common/payment-gateways/manual-payments.php:68 +msgid "Invoiced" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1016 +msgid "Coupon" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:77 +#: includes/common/payment-gateways/_ideal.php:250 +#: includes/common/payment-gateways/_payway.php:202 +msgid "iDEAL" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:76 +msgid "iDEAL (beta)" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:327 +msgid "Merchant Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:293 +#: includes/common/payment-gateways/_payway.php:302 +#: includes/common/payment-gateways/payfast.php:324 +msgid "Merchant ID" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:462 +msgid "eWay Rapid 3.0 Payments lets merchants recieve credit card payments through eWay without need for users to leave the shop. Note this gateway requires a valid SSL certificate configured for this site." +msgstr "" + +#: includes/common/payment-gateways/eway.php:452 +msgid "There was a problem connecting to eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/eway.php:432 +#: includes/common/payment-gateways/eway.php:437 +msgid "The url of the image can be hosted on your website and pass the secure https:// path of the image to be displayed at the top of the website. This is the second image block on the webpage and is restricted to 960px X 65px. A default secure image is used if none is supplied." +msgstr "" + +#: includes/common/payment-gateways/eway.php:431 +#: includes/common/payment-gateways/eway.php:436 +msgid "Company Logo (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:427 +msgid "The page footer text can be customised and populated below the customer's order details. Useful for contact information." +msgstr "" + +#: includes/common/payment-gateways/eway.php:426 +msgid "Page Footer (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:421 +msgid "Page Description (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:417 +#: includes/common/payment-gateways/eway.php:422 +msgid "This value is used to populate the browsers title bar at the top of the screen." +msgstr "" + +#: includes/common/payment-gateways/eway.php:416 +msgid "Page Title (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:412 +msgid "This will be displayed as the company the customer is purchasing from, including this is highly recommended." +msgstr "" + +#: includes/common/payment-gateways/eway.php:411 +msgid "Company Name" +msgstr "" + +#: includes/common/payment-gateways/eway.php:394 +msgid "Customer ID" +msgstr "" + +#: includes/common/payment-gateways/eway.php:381 +#: includes/common/payment-gateways/eway31.php:488 +msgid "Live API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway.php:371 +#: includes/common/payment-gateways/eway31.php:479 +msgid "Gateway Mode" +msgstr "" + +#: includes/common/payment-gateways/eway.php:354 +msgid "The Hosted Page is a webpage hosted on eWAY's side eliminating the need for merchants to capture, transmit or store credit card numbers. At the checkout time the merchant automatically redirects the customer to the Hosted Page where they would enter their details and have the transaction processed. Upon completion of the transaction the customer is redirected back to the MarketPress checkout confirmation page." +msgstr "" + +#: includes/common/payment-gateways/eway.php:314 +msgid "There was a problem with your credit card information: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:300 +msgid "Paid - The card has been processed - %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:253 +msgid "There was a problem setting up the transaction with eWay: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:245 +#: includes/common/payment-gateways/eway.php:289 +msgid "There was a problem parsing the response from eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:159 +#: includes/common/payment-gateways/eway.php:189 +#: includes/common/payment-gateways/paypal-chained-payments.php:634 +#: includes/common/payment-gateways/paypal-express.php:322 +#: includes/common/payment-gateways/paypal-express.php:473 +msgid "%s Store Purchase - Order ID: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:147 +#: includes/common/payment-gateways/eway.php:462 +msgid "eWay Shared Payments" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:214 +msgid "This is the email text to send to those who have made CubePoints checkouts. You should include your CubePoints instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:212 +#: includes/common/payment-gateways/free_orders.php:188 +#: includes/common/payment-gateways/manual-payments.php:154 +msgid "Order Confirmation Email" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:207 +#: includes/common/payment-gateways/manual-payments.php:149 +msgid "Confirmation User Instructions" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:202 +#: includes/common/payment-gateways/manual-payments.php:144 +msgid "User Instructions" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:198 +#: includes/common/payment-gateways/free_orders.php:170 +#: includes/common/payment-gateways/manual-payments.php:139 +msgid "Enter a public name for this payment method that is displayed to users - No HTML" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:532 +#: includes/common/payment-gateways/_cubepoints.php:196 +#: includes/common/payment-gateways/free_orders.php:169 +#: includes/common/payment-gateways/manual-payments.php:138 +msgid "Method Name" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:187 +msgid "Accept CubePoints as payment(requires the CubePoints plugin)." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:140 +msgid "Sorry, but you do not appear to have enough points to complete this purchase!" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:124 +msgid "%s Store Purchase" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:79 +#: includes/common/payment-gateways/_cubepoints.php:171 +msgid "Your current points: " +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:133 +#: includes/common/payment-gateways/_cubepoints.php:197 +msgid "CubePoints" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:344 +msgid "Authorize.net AIM Checkout" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:331 +msgid "Custom API URL" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:332 +msgid "Many other gateways have Authorize.net API emulators. To use one of these gateways input their API post url here." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:322 +msgid "Request a delimited response from the payment gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:316 +msgid "Security: MD5 Hash" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:317 +msgid "The payment gateway generated MD5 hash value that can be used to authenticate the transaction response. Not needed because responses are returned using an SSL connection." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:306 +msgid "Customer Receipt Email Footer" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:296 +msgid "Customer Receipt Email Header" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:297 +#: includes/common/payment-gateways/paypal-payflow.php:446 +msgid "This text will appear as the header of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:282 +msgid "Encapsulation Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:283 +msgid "Authorize.net default is blank. Otherwise, get this from your credit card processor. If the transactions are going through, but getting strange responses, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:273 +msgid "Optional settings to control advanced options" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:224 +#: includes/common/payment-gateways/authorizenet-aim.php:272 +msgid "Advanced Settings" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:253 +msgid "Transaction Key" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:246 +msgid "Login ID" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:396 +msgid "Gateway Credentials" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:221 +msgid "Authorize.net AIM is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway. USD is the only currency supported by this gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:205 +msgid "There was a problem finalizing your purchase. %s Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:519 +#: includes/common/payment-gateways/paypal-chained-payments.php:218 +#: includes/common/payment-gateways/paypal-chained-payments.php:498 +#: includes/common/payment-gateways/paypal-express.php:822 +#: includes/common/payment-gateways/paypal-express.php:1092 +msgid "The payment has been completed, and the funds have been added successfully to your account balance." +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:233 +msgid "Please enter a valid credit card security code" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:224 +#: includes/public/class-mp-checkout.php:867 +msgid "Please enter a valid credit card number" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:221 +msgid "Please enter your credit card number" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:217 +msgid "Please enter your credit card security code" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:213 +msgid "Please select your credit card expiration date." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:299 +#: includes/common/payment-gateways/authorizenet-aim.php:50 +#: includes/common/payment-gateways/eway.php:148 +#: includes/common/payment-gateways/eway.php:298 +#: includes/common/payment-gateways/eway31.php:267 +#: includes/common/payment-gateways/paymill.php:46 +#: includes/common/payment-gateways/paypal-express.php:972 +#: includes/common/payment-gateways/paypal-payflow.php:60 +#: includes/common/payment-gateways/pin.php:46 +#: includes/common/payment-gateways/simplify.php:19 +#: includes/common/payment-gateways/stripe.php:46 +#: includes/common/payment-gateways/wepay.php:37 +msgid "Credit Card" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:49 +msgid "Authorize.net Checkout" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:156 +#: includes/common/payment-gateways/stripe.php:293 +msgid "Selecting a currency other than that used for your store may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:352 +msgid "Seller ID" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:340 +#: includes/common/payment-gateways/_ideal.php:311 +#: includes/common/payment-gateways/authorizenet-aim.php:234 +#: includes/common/payment-gateways/eway.php:376 +#: includes/common/payment-gateways/payfast.php:315 +#: includes/common/payment-gateways/paypal-chained-payments.php:368 +#: includes/common/payment-gateways/paypal-express.php:699 +#: includes/common/payment-gateways/paypal-payflow.php:391 +msgid "Live" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:339 +#: includes/common/payment-gateways/authorizenet-aim.php:233 +#: includes/common/payment-gateways/eway.php:375 +#: includes/common/payment-gateways/paypal-chained-payments.php:367 +#: includes/common/payment-gateways/paypal-express.php:698 +#: includes/common/payment-gateways/paypal-payflow.php:390 +#: includes/common/shipping-modules/mp-fedex.php:263 +msgid "Sandbox" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:336 +#: includes/common/payment-gateways/_ideal.php:307 +#: includes/common/payment-gateways/authorizenet-aim.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:365 +#: includes/common/payment-gateways/paypal-express.php:695 +#: includes/common/payment-gateways/paypal-payflow.php:387 +#: includes/common/payment-gateways/wepay.php:130 +#: includes/common/shipping-modules/mp-fedex.php:260 +msgid "Mode" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:288 +#: includes/common/payment-gateways/mijireh.php:242 +#: includes/common/payment-gateways/mollie.php:212 +msgid "The order has been received" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:74 +#: includes/common/payment-gateways/2checkout.php:75 +#: includes/common/payment-gateways/2checkout.php:435 +msgid "2Checkout" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:306 +msgid "Confirm" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:218 +#: includes/common/class-mp-cart.php:974 includes/common/class-mp-cart.php:1354 +#: includes/common/template-functions.php:918 +msgid "Checkout" +msgstr "" + +#: includes/common/template-functions.php:207 +msgid "Check Order Status" +msgstr "" + +#: includes/common/template-functions.php:235 +msgid "View Products" +msgstr "" + +#: includes/common/template-functions.php:263 +msgid "Visit Store" +msgstr "" + +#: includes/common/template-functions.php:2912 +#: includes/multisite/template-functions.php:448 +msgid "Order By" +msgstr "" + +#: includes/common/template-functions.php:2887 +#: includes/multisite/template-functions.php:405 +msgid "Price (High to Low)" +msgstr "" + +#: includes/common/template-functions.php:2886 +#: includes/multisite/template-functions.php:404 +msgid "Price (Low to High)" +msgstr "" + +#: includes/common/template-functions.php:2881 +#: includes/multisite/template-functions.php:399 +msgid "Default" +msgstr "" + +#: includes/common/template-functions.php:2858 +msgid "Show All" +msgstr "" + +#: includes/common/class-mp-product.php:2048 +msgid "View Larger Image »" +msgstr "" + +#: includes/common/class-mp-product.php:979 +msgid "Out of Stock" +msgstr "" + +#: includes/common/template-functions.php:148 +msgid "Price: " +msgstr "" + +#: includes/multisite/template-functions.php:833 +msgid "No Tags" +msgstr "" + +#: includes/common/template-functions.php:3162 +msgid "Uncategorized" +msgstr "" + +#: includes/common/class-mp-cart.php:569 includes/common/class-mp-order.php:604 +#: includes/common/helpers.php:115 +msgid "Download" +msgstr "" + +#: includes/common/class-mp-cart.php:1353 +msgid "Empty Cart" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:291 +#: includes/common/payment-gateways/paypal-express.php:718 +#: includes/common/payment-gateways/paypal-payflow.php:423 +#: includes/common/shipping-modules/mp-ups.php:158 +#: includes/public/class-mp-checkout.php:1254 +#: includes/public/class-mp-checkout.php:1383 +msgid "Password" +msgstr "" + +#: includes/common/payment-gateways/eway.php:387 +#: includes/common/payment-gateways/paypal-express.php:711 +#: includes/common/shipping-modules/mp-usps.php:185 +#: includes/public/class-mp-checkout.php:1249 +msgid "Username" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:437 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:790 +msgid "Have a coupon code?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:321 +#: includes/admin/class-mp-orders-admin.php:526 +#: includes/common/class-mp-cart.php:592 +msgid "Remove" +msgstr "" + +#: includes/admin/class-mp-ajax.php:316 +msgid "Quantity:" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2140 +#: includes/admin/class-mp-products-admin.php:2387 +#: includes/common/shipping-modules/class-mp-shipping-api.php:507 +msgid "Extra Shipping Cost" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:403 +msgid "Choose a Shipping Method:" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1691 +#: includes/admin/class-mp-products-admin.php:2131 +#: includes/admin/class-mp-products-admin.php:2378 +#: includes/common/shipping-modules/class-mp-shipping-api.php:228 +msgid "Ounces" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1684 +#: includes/admin/class-mp-products-admin.php:2123 +#: includes/admin/class-mp-products-admin.php:2369 +#: includes/admin/class-mp-setup-wizard.php:546 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:165 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +#: includes/common/shipping-modules/class-mp-shipping-api.php:227 +msgid "Pounds" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:226 +msgid "Product Weight:" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:214 +msgid "Weight (Kilograms)" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:82 +msgid "Number of Categories:" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:72 +msgid "Product Count" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:20 +#: includes/admin/class-mp-product-attributes-admin.php:129 +#: includes/admin/class-mp-product-attributes-list-table.php:22 +#: includes/admin/class-mp-products-admin.php:2216 +#: includes/admin/class-mp-shortcode-builder.php:628 +#: includes/admin/class-mp-shortcode-builder.php:1415 +#: includes/admin/widgets/ms-global-categories.php:70 +#: includes/common/shipping-modules/mp-fedex.php:395 +#: includes/common/shipping-modules/mp-ups.php:202 +#: includes/common/shipping-modules/mp-usps.php:243 +#: includes/public/class-mp-checkout.php:314 +msgid "Name" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:67 +msgid "Order Categories By:" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:24 +#: includes/admin/widgets/ms-global-categories.php:50 +msgid "Global Product Categories" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:15 +msgid "Global Product Category List" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:13 +msgid "Displays a network-wide HTML list of product categories from network MarketPress stores." +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:24 +#: includes/admin/widgets/ms-global-tag-cloud.php:45 +msgid "Global Product Tags" +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:15 +msgid "Global Product Tag Cloud" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:947 +#: includes/admin/widgets/ms-global-product-list.php:173 +msgid "Excerpt" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:169 +msgid "Content To Show:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:140 +msgid "Limit To Product Tag:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:132 +msgid "Limit To Product Category:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:72 +msgid "Global Products" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:16 +msgid "Global Product List" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:14 +msgid "Shows a customizable global list of products from network MarketPress stores." +msgstr "" + +#: includes/common/class-mp-product.php:974 +#: includes/multisite/template-functions.php:731 +msgid "Buy Now »" +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:13 +msgid "Displays global most used product tags in cloud format from network MarketPress stores." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:438 +msgid "Theme Permissions" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:402 +#: includes/multisite/class-mp-admin-multisite.php:448 +msgid "No Access" +msgstr "" + +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:120 +msgid "Pro Site Level" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:401 +#: includes/multisite/class-mp-admin-multisite.php:447 +msgid "All Can Use" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:390 +msgid "Gateway Permissions" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:375 +msgid "Select a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:350 +msgid "Global Gateway" +msgstr "" + +#. Plugin Name of the plugin/theme +msgid "MarketPress" +msgstr "" + +#: includes/admin/widgets/product-tag-cloud.php:7 +msgid "Your most used product tags in cloud format from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/categories.php:79 +msgid "Show hierarchy" +msgstr "" + +#: includes/admin/widgets/categories.php:76 +#: includes/admin/widgets/ms-global-categories.php:92 +msgid "Show product counts" +msgstr "" + +#: includes/admin/widgets/categories.php:73 +msgid "Show as dropdown" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:710 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:736 +#: includes/admin/widgets/categories.php:30 +msgid "Select Category" +msgstr "" + +#: includes/admin/widgets/categories.php:7 +msgid "A list or dropdown of product categories from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/product-list.php:250 +msgid "Show Buy Button" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:183 +#: includes/admin/widgets/product-list.php:244 +msgid "Show Price" +msgstr "" + +#: includes/admin/widgets/product-list.php:241 +msgid "Show Excerpt" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:155 +#: includes/admin/widgets/product-list.php:238 +msgid "Thumbnail Size:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:153 +#: includes/admin/widgets/product-list.php:237 +msgid "Show Thumbnail" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:147 +#: includes/admin/widgets/product-list.php:233 +msgid "Display Settings" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:136 +#: includes/admin/widgets/ms-global-product-list.php:144 +#: includes/admin/widgets/product-list.php:230 +msgid "Enter the Slug" +msgstr "" + +#: includes/admin/widgets/product-list.php:228 +#: includes/common/template-functions.php:894 +msgid "Tag" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:686 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:712 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:739 +#: includes/admin/class-mp-shortcode-builder.php:796 +#: includes/admin/widgets/product-list.php:227 +#: includes/common/template-functions.php:886 +#: includes/common/template-functions.php:2907 +msgid "Category" +msgstr "" + +#: includes/admin/widgets/product-list.php:226 +msgid "No Filter" +msgstr "" + +#: includes/admin/widgets/product-list.php:224 +msgid "Taxonomy Filter:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:108 +#: includes/admin/widgets/product-list.php:209 +msgid "Order Products By:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:101 +#: includes/admin/widgets/product-list.php:206 +msgid "Number of Products:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:98 +#: includes/admin/widgets/product-list.php:204 +msgid "List Settings" +msgstr "" + +#: includes/admin/widgets/product-list.php:177 +msgid "Our Products" +msgstr "" + +#: includes/admin/widgets/product-list.php:144 +#: includes/common/template-functions.php:2070 +#: includes/common/template-functions.php:2347 +#: includes/multisite/template-functions.php:303 +#: includes/multisite/template-functions.php:623 +msgid "No Products" +msgstr "" + +#: includes/admin/widgets/product-list.php:8 +msgid "Product List" +msgstr "" + +#: includes/admin/widgets/product-list.php:7 +msgid "Shows a customizable list of products from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/cart.php:75 includes/admin/widgets/categories.php:82 +#: includes/admin/widgets/product-list.php:253 +#: includes/admin/widgets/product-tag-cloud.php:57 +msgid "Only show on store pages" +msgstr "" + +#: includes/admin/widgets/cart.php:65 +#: includes/admin/widgets/ms-global-product-list.php:92 +#: includes/admin/widgets/product-list.php:200 +msgid "Custom Text:" +msgstr "" + +#: includes/admin/widgets/cart.php:64 includes/admin/widgets/categories.php:69 +#: includes/admin/widgets/ms-global-categories.php:59 +#: includes/admin/widgets/ms-global-product-list.php:87 +#: includes/admin/widgets/ms-global-tag-cloud.php:49 +#: includes/admin/widgets/product-list.php:199 +#: includes/admin/widgets/product-tag-cloud.php:49 +msgid "Title:" +msgstr "" + +#: includes/admin/widgets/cart.php:7 +msgid "Shows dynamic shopping cart contents along with a checkout button for your MarketPress store." +msgstr "" + +#: includes/admin/widgets/product-tag-cloud.php:8 +msgid "Product Tag Cloud" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:539 +#: includes/admin/class-mp-setup-wizard.php:575 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:163 +msgid "Measurement System" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:616 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:149 +msgid "Select Shipping Options" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:596 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:129 +msgid "Calculated Options" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:582 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:115 +msgid "No Shipping" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:110 +msgid "EU" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:109 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:93 +msgid "All" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:92 +msgid "Select:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:185 +msgid "Store Pages" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:223 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:256 +msgid "Order Shipped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:60 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:95 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:128 +#: marketpress.php:266 +msgid "New Order" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:314 +msgid "Email Notifications" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:59 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:200 +msgid "Products List" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:58 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:190 +msgid "Store Base" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:108 +#: includes/admin/class-mp-shortcode-builder.php:635 +#: includes/admin/class-mp-shortcode-builder.php:708 +#: includes/admin/class-mp-shortcode-builder.php:875 +#: includes/admin/class-mp-shortcode-builder.php:1319 +#: includes/admin/class-mp-shortcode-builder.php:1422 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:526 +#: includes/admin/widgets/ms-global-categories.php:78 +#: includes/admin/widgets/ms-global-product-list.php:127 +#: includes/admin/widgets/product-list.php:221 +msgid "Ascending" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:109 +#: includes/admin/class-mp-shortcode-builder.php:636 +#: includes/admin/class-mp-shortcode-builder.php:709 +#: includes/admin/class-mp-shortcode-builder.php:876 +#: includes/admin/class-mp-shortcode-builder.php:1320 +#: includes/admin/class-mp-shortcode-builder.php:1423 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:525 +#: includes/admin/widgets/ms-global-categories.php:75 +#: includes/admin/widgets/ms-global-product-list.php:124 +#: includes/admin/widgets/product-list.php:220 +msgid "Descending" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:637 +#: includes/admin/class-mp-shortcode-builder.php:695 +#: includes/admin/class-mp-shortcode-builder.php:862 +#: includes/admin/class-mp-shortcode-builder.php:1306 +#: includes/admin/class-mp-shortcode-builder.php:1424 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:518 +#: includes/admin/widgets/ms-global-product-list.php:121 +#: includes/admin/widgets/product-list.php:218 +msgid "Random" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:694 +#: includes/admin/class-mp-shortcode-builder.php:861 +#: includes/admin/class-mp-shortcode-builder.php:1305 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:517 +#: includes/admin/widgets/ms-global-product-list.php:119 +#: includes/admin/widgets/product-list.php:216 +msgid "Product Price" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:693 +#: includes/admin/class-mp-shortcode-builder.php:860 +#: includes/admin/class-mp-shortcode-builder.php:1304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:516 +#: includes/admin/widgets/ms-global-product-list.php:117 +#: includes/admin/widgets/product-list.php:215 +msgid "Number of Sales" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:692 +#: includes/admin/class-mp-shortcode-builder.php:859 +#: includes/admin/class-mp-shortcode-builder.php:1303 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:515 +#: includes/admin/widgets/product-list.php:214 +msgid "Product Author" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:691 +#: includes/admin/class-mp-shortcode-builder.php:858 +#: includes/admin/class-mp-shortcode-builder.php:1302 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:514 +#: includes/admin/widgets/product-list.php:213 +msgid "Product ID" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:690 +#: includes/admin/class-mp-shortcode-builder.php:857 +#: includes/admin/class-mp-shortcode-builder.php:1301 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:513 +#: includes/admin/widgets/ms-global-product-list.php:113 +#: includes/admin/widgets/product-list.php:212 +msgid "Publish Date" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:430 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:726 +msgid "Width" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:439 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:735 +msgid "Height" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:88 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:402 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:698 +msgid "Custom" +msgstr "" + +#: includes/common/class-mp-product.php:179 +#: includes/common/class-mp-product.php:992 +#: includes/common/class-mp-product.php:1000 +#: includes/multisite/template-functions.php:579 +msgid "Buy Now" +msgstr "" + +#: includes/common/class-mp-product.php:175 +#: includes/common/class-mp-product.php:990 +#: includes/common/class-mp-product.php:998 +msgid "Add To Cart" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:807 +msgid "Store Style" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1021 +msgid "Edit Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupon.php:580 +#: includes/admin/class-mp-ajax.php:238 +#: includes/admin/class-mp-products-admin.php:1532 +msgid "Unlimited" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1198 +msgid "Remaining Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1197 +msgid "Used" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:752 +#: includes/admin/class-mp-products-admin.php:2343 +msgid "Start Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:598 +msgid "Coupon Code" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:444 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:284 +msgid "Save Changes" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:57 +#: includes/admin/class-mp-shortcode-builder.php:716 +#: includes/admin/class-mp-shortcode-builder.php:727 +#: includes/admin/class-mp-shortcode-builder.php:883 +#: includes/admin/class-mp-shortcode-builder.php:894 +#: includes/admin/class-mp-shortcode-builder.php:946 +#: includes/admin/class-mp-shortcode-builder.php:956 +#: includes/admin/class-mp-shortcode-builder.php:1006 +#: includes/admin/class-mp-shortcode-builder.php:1327 +#: includes/admin/class-mp-shortcode-builder.php:1338 +#: includes/admin/store-settings/class-mp-store-settings-general.php:357 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:270 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:108 +#: includes/admin/widgets/ms-global-product-list.php:172 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:94 +msgid "None" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:352 +msgid "Google Analytics Ecommerce Tracking" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:310 +msgid "This option turns MarketPress into more of a product listing plugin, disabling shopping carts, checkout, and order management. This is useful if you simply want to list items you can buy in a store somewhere else, optionally linking the \"Buy Now\" buttons to an external site. Some examples are a car dealership, or linking to songs/albums in itunes, or linking to products on another site with your own affiliate links." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:304 +msgid "Whether or not customers must be registered and logged in to checkout. (Not recommended: Enabling this can lower conversions)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:258 +msgid "How many times may a customer download a file they have purchased? (It's best to set this higher than one in case they have any problems downloading)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:257 +msgid "Maximum Downloads" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:298 +msgid "This will set the product to draft if inventory of all variations is gone." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:288 +msgid "At what low stock count do you want to be warned for products you have enabled inventory tracking for?" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:208 +#: includes/admin/store-settings/class-mp-store-settings-general.php:287 +msgid "Inventory Warning Threshold" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:282 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:542 +msgid "Miscellaneous Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:429 +#: includes/multisite/class-mp-admin-multisite.php:247 +msgid "Show Decimal in Prices" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:451 +#: includes/admin/store-settings/class-mp-store-settings-general.php:403 +#: includes/multisite/class-mp-admin-multisite.php:221 +msgid "Currency Symbol Position" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:444 +#: includes/admin/store-settings/class-mp-store-settings-general.php:396 +msgid "Store Currency" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:429 +#: includes/admin/store-settings/class-mp-store-settings-general.php:381 +msgid "Currency Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:516 +msgid "Please see your local tax laws. Note if this is enabled and a downloadable only cart, rates will be the default for your base location." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:529 +msgid "Apply Tax to Downloadable Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:498 +msgid "Enabling this option allows you to enter and show all prices inclusive of tax, while still listing the tax total as a line item in shopping carts. Please see your local tax laws." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:497 +msgid "Enter Prices Inclusive of Tax?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:492 +msgid "Please see your local tax laws. Most areas charge tax on shipping fees." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:491 +msgid "Apply Tax To Shipping Fees?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:674 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:565 +#: includes/common/payment-gateways/authorizenet-aim.php:291 +#: includes/common/payment-gateways/authorizenet-aim.php:326 +#: includes/common/payment-gateways/payfast.php:347 +msgid "No" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:675 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:759 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:512 +#: includes/admin/class-mp-setup-wizard.php:518 +#: includes/admin/class-mp-setup-wizard.php:524 +#: includes/admin/class-mp-setup-wizard.php:530 +#: includes/admin/class-mp-setup-wizard.php:564 +#: includes/admin/store-settings/class-mp-store-settings-general.php:232 +#: includes/admin/store-settings/class-mp-store-settings-general.php:299 +#: includes/admin/store-settings/class-mp-store-settings-general.php:305 +#: includes/admin/store-settings/class-mp-store-settings-general.php:311 +#: includes/admin/store-settings/class-mp-store-settings-general.php:317 +#: includes/admin/store-settings/class-mp-store-settings-general.php:328 +#: includes/admin/store-settings/class-mp-store-settings-general.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:341 +#: includes/admin/store-settings/class-mp-store-settings-general.php:348 +#: includes/admin/store-settings/class-mp-store-settings-general.php:367 +#: includes/admin/store-settings/class-mp-store-settings-general.php:493 +#: includes/admin/store-settings/class-mp-store-settings-general.php:499 +#: includes/admin/store-settings/class-mp-store-settings-general.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:556 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:375 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:381 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:387 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:474 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:493 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:532 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:574 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:606 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:664 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:670 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:677 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:683 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:689 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:763 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:774 +#: includes/common/payment-gateways/_bitpay.php:250 +#: includes/common/payment-gateways/_bitpay.php:257 +#: includes/common/payment-gateways/_bitpay.php:264 +#: includes/common/payment-gateways/authorizenet-aim.php:290 +#: includes/common/payment-gateways/authorizenet-aim.php:325 +#: includes/common/payment-gateways/free_orders.php:160 +#: includes/common/payment-gateways/payfast.php:346 +#: includes/common/payment-gateways/paymill.php:162 +#: includes/common/payment-gateways/paypal-payflow.php:441 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-checkbox.php:22 +msgid "Yes" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:492 +#: includes/admin/store-settings/class-mp-store-settings-general.php:472 +msgid "%s Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:467 +#: includes/admin/store-settings/class-mp-store-settings-general.php:449 +msgid "Tax Settings" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:370 +#: includes/admin/store-settings/class-mp-store-settings-general.php:624 +msgid "Base Zip/Postal Code" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:354 +#: includes/admin/store-settings/class-mp-store-settings-general.php:608 +msgid "Base State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:589 +msgid "Base Country" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:582 +msgid "Location Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:195 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:800 +#: includes/multisite/class-mp-admin-multisite.php:172 +msgid "General Settings" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1945 +#: includes/admin/class-mp-products-admin.php:2185 +#: includes/admin/class-mp-store-settings-admin.php:111 +#: includes/admin/class-mp-store-settings-admin.php:266 +msgid "General" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:242 +msgid "Importers" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +#: includes/admin/class-mp-store-settings-admin.php:234 +msgid "Payments" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:313 +#: includes/admin/class-mp-store-settings-admin.php:112 +#: includes/admin/class-mp-store-settings-admin.php:222 +msgid "Presentation" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:916 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1015 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1018 +#: includes/admin/class-mp-dashboard-widgets.php:305 marketpress.php:702 +msgid "Coupons" +msgstr "" + +#: includes/admin/class-mp-admin.php:251 +msgid "Download »" +msgstr "" + +#: includes/admin/class-mp-admin.php:245 +#: includes/admin/class-mp-exporter-orders.php:170 +msgid "All Statuses" +msgstr "" + +#: includes/admin/class-mp-admin.php:209 +#: includes/admin/class-mp-exporter-orders.php:150 +#: includes/admin/class-mp-exporter-orders.php:178 +msgid "Export Orders" +msgstr "" + +#: includes/admin/class-mp-admin.php:228 +msgid "Show all dates" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:947 +msgid "Change Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:287 +msgid "Order Notes" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:478 +msgid "Other" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:205 +msgid "Subtotal" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:84 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:87 +#: includes/admin/class-mp-products-admin.php:1737 +#: includes/common/class-mp-cart.php:1409 +#: includes/common/class-mp-product.php:559 +msgid "Quantity" +msgstr "" + +#: includes/common/helpers.php:93 +msgid "Item" +msgstr "" + +#: includes/common/class-mp-order.php:1050 +msgid "Current Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:297 +msgid "Order Actions" +msgstr "" + +#: includes/common/class-mp-product.php:1084 +msgid "More Info »" +msgstr "" + +#: includes/common/class-mp-product.php:2313 +msgid "Low Product Inventory Notification" +msgstr "" + +#: includes/common/class-mp-order.php:338 includes/common/data.php:154 +msgid "New Order Notification: ORDERID" +msgstr "" + +#: includes/common/helpers.php:259 +msgid "Your payment for this order is complete." +msgstr "" + +#: includes/common/helpers.php:261 +msgid "Your payment for this order is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/helpers.php:256 +msgid "Payment Total:" +msgstr "" + +#: includes/common/helpers.php:253 +msgid "Transaction ID:" +msgstr "" + +#: includes/common/helpers.php:249 +msgid "Payment Type:" +msgstr "" + +#: includes/common/helpers.php:246 +msgid "Payment Method:" +msgstr "" + +#: includes/common/helpers.php:242 +msgid "Order Notes:" +msgstr "" + +#: includes/common/helpers.php:237 +msgid "Special Instructions:" +msgstr "" + +#: includes/common/helpers.php:232 +msgid "Tracking Number:" +msgstr "" + +#: includes/common/helpers.php:223 includes/common/helpers.php:226 +#: includes/common/helpers.php:228 +#: includes/common/shipping-modules/class-mp-shipping-api.php:406 +#: includes/common/shipping-modules/class-mp-shipping-api.php:428 +msgid "Shipping Method:" +msgstr "" + +#: includes/common/helpers.php:168 +msgid "No shipping required for this order." +msgstr "" + +#: includes/common/helpers.php:155 +msgid "Order Total:" +msgstr "" + +#: includes/common/class-mp-order.php:1025 +msgid "Taxes:" +msgstr "" + +#: includes/common/class-mp-order.php:1032 includes/common/helpers.php:144 +msgid "Shipping:" +msgstr "" + +#: includes/public/class-mp-checkout.php:367 +msgid "Street address, P.O. box, company name, c/o" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:314 +msgid "Shipping Info" +msgstr "" + +#: includes/public/class-mp-public.php:740 +msgid "Whoops, there was a problem loading up this file for your download. Please contact us for help." +msgstr "" + +#: includes/public/class-mp-public.php:683 +msgid "Sorry, our records show you've downloaded this file %d out of %d times allowed. Please contact us if you still need help." +msgstr "" + +#: includes/public/class-mp-public.php:634 +msgid "Sorry, your order has been marked as unpaid." +msgstr "" + +#: includes/public/class-mp-public.php:629 +msgid "Sorry, the link is invalid for this download." +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:15 +#: includes/admin/class-mp-products-admin.php:1172 +msgid "Cheatin’ uh?" +msgstr "" + +#: includes/public/class-mp-public.php:407 +#: includes/public/class-mp-short-codes.php:128 +msgid "Please enter a valid email address." +msgstr "" + +#: includes/admin/class-mp-ajax.php:191 +#: includes/admin/class-mp-products-admin.php:1821 +#: includes/admin/class-mp-products-admin.php:2010 +#: includes/admin/class-mp-products-admin.php:2267 +msgid "File URL" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1842 +msgid "External Link" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2177 +msgid "Add Variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:126 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:289 +msgid "Inventory" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:438 +#: includes/admin/class-mp-products-admin.php:578 +#: includes/admin/class-mp-products-admin.php:1552 +#: includes/admin/class-mp-products-admin.php:2053 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:134 +msgid "Sale Price" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "Variation Name" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1931 +msgid "Product Details" +msgstr "" + +#: includes/admin/class-mp-product-attributes-list-table.php:33 +msgid "Delete" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1057 +msgid "Trashed" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:231 +#: includes/admin/class-mp-orders-admin.php:1015 +#: includes/common/class-mp-order.php:1052 includes/common/helpers.php:97 +msgid "Total" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1196 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:210 +#: includes/admin/class-mp-orders-admin.php:1014 +msgid "Discount" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:221 +#: includes/admin/class-mp-orders-admin.php:1013 +#: includes/common/payment-gateways/_ideal.php:148 +#: includes/common/payment-gateways/_payway.php:134 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:108 +msgid "Tax" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:216 +#: includes/admin/class-mp-orders-admin.php:1012 +#: includes/admin/class-mp-products-admin.php:1958 +#: includes/admin/class-mp-products-admin.php:2198 +#: includes/admin/class-mp-store-settings-admin.php:114 +#: includes/admin/class-mp-store-settings-admin.php:230 +#: includes/common/class-mp-cart.php:717 includes/common/helpers.php:168 +#: includes/common/payment-gateways/_ideal.php:137 +#: includes/common/payment-gateways/_payway.php:116 +#: includes/public/class-mp-checkout.php:1304 +msgid "Shipping" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1011 +msgid "Items" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1010 +msgid "From" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:154 +#: includes/admin/class-mp-orders-admin.php:1009 +#: includes/common/class-mp-gdpr.php:370 +msgid "Order Date" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1008 +#: includes/common/class-mp-gdpr.php:366 +#: includes/common/template-functions.php:2134 +msgid "Order ID" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:22 +#: includes/admin/class-mp-orders-admin.php:1007 +msgid "Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1155 +msgid "N/A" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:243 +#: includes/admin/class-mp-products-admin.php:464 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:142 +msgid "Sales" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:463 +msgid "Stock" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:85 +#: includes/admin/class-mp-ajax.php:176 includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:434 +#: includes/admin/class-mp-products-admin.php:462 +#: includes/admin/class-mp-products-admin.php:576 +#: includes/admin/class-mp-products-admin.php:1519 +#: includes/admin/class-mp-products-admin.php:1569 +#: includes/admin/class-mp-products-admin.php:1950 +#: includes/admin/class-mp-products-admin.php:2059 +#: includes/admin/class-mp-products-admin.php:2190 +#: includes/admin/class-mp-products-admin.php:2330 +#: includes/common/class-mp-cart.php:1415 includes/common/helpers.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:130 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:276 +msgid "Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:173 +#: includes/admin/class-mp-products-admin.php:461 +#: includes/admin/class-mp-products-admin.php:1972 +#: includes/admin/class-mp-products-admin.php:2224 +msgid "SKU" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:459 +#: includes/admin/class-mp-products-admin.php:1793 +#: includes/admin/class-mp-products-admin.php:1805 +#: includes/admin/class-mp-products-admin.php:2163 +msgid "Variations" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:83 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:86 +#: includes/admin/class-mp-dashboard-widgets.php:134 +#: includes/admin/class-mp-products-admin.php:458 +#: includes/admin/class-mp-products-admin.php:837 +#: includes/admin/class-mp-shortcode-builder.php:689 +#: includes/admin/class-mp-shortcode-builder.php:856 +#: includes/admin/class-mp-shortcode-builder.php:1300 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:512 +#: includes/admin/widgets/ms-global-product-list.php:115 +#: includes/admin/widgets/product-list.php:211 +msgid "Product Name" +msgstr "" + +#: includes/common/template-functions.php:2575 +msgid "Categorized in " +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:305 +#: includes/common/payment-gateways/free_orders.php:176 +msgid "Payment Information" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:167 +#: includes/admin/class-mp-orders-admin.php:432 +#: includes/admin/class-mp-pages-admin.php:62 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:227 +#: includes/common/class-mp-gdpr.php:374 +#: includes/common/template-functions.php:175 +#: includes/common/template-functions.php:926 +msgid "Order Status" +msgstr "" + +#. translators: %s: orders closed +#: marketpress.php:327 +msgid "Closed (%s)" +msgid_plural "Closed (%s)" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:249 +#: includes/admin/class-mp-orders-admin.php:375 +#: includes/admin/class-mp-orders-admin.php:951 +#: includes/admin/class-mp-orders-admin.php:1053 +#: includes/admin/class-mp-orders-admin.php:1065 +#: includes/common/class-mp-gdpr.php:330 +#: includes/common/class-mp-order.php:1019 marketpress.php:325 +msgid "Closed" +msgstr "" + +#. translators: %s: shipped orders +#: marketpress.php:320 +msgid "Shipped (%s)" +msgid_plural "Shipped (%s)" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:248 +#: includes/admin/class-mp-orders-admin.php:376 +#: includes/admin/class-mp-orders-admin.php:950 +#: includes/admin/class-mp-orders-admin.php:1049 +#: includes/admin/class-mp-orders-admin.php:1064 +#: includes/common/class-mp-gdpr.php:329 +#: includes/common/class-mp-order.php:1002 marketpress.php:318 +msgid "Shipped" +msgstr "" + +#. translators: %s: paid orders +#: marketpress.php:313 +msgid "Paid (%s)" +msgid_plural "Paid (%s)" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:247 +#: includes/admin/class-mp-orders-admin.php:377 +#: includes/admin/class-mp-orders-admin.php:949 +#: includes/admin/class-mp-orders-admin.php:1045 +#: includes/admin/class-mp-orders-admin.php:1063 +#: includes/common/class-mp-gdpr.php:328 +#: includes/common/payment-gateways/2checkout.php:294 +#: includes/common/payment-gateways/_cubepoints.php:130 +#: includes/common/payment-gateways/authorizenet-aim.php:193 +#: includes/common/payment-gateways/free_orders.php:91 +#: includes/common/payment-gateways/mijireh.php:248 +#: includes/common/payment-gateways/paymill.php:273 +#: includes/common/payment-gateways/paypal-express.php:933 +#: includes/common/payment-gateways/paypal-express.php:967 +#: includes/common/payment-gateways/pin.php:258 +#: includes/common/payment-gateways/simplify.php:181 +#: includes/common/payment-gateways/stripe.php:368 +#: includes/common/payment-gateways/wepay.php:269 marketpress.php:311 +msgid "Paid" +msgstr "" + +#. translators: %s: orders received +#: marketpress.php:306 +msgid "Received (%s)" +msgid_plural "Received (%s)" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:246 +#: includes/admin/class-mp-orders-admin.php:378 +#: includes/admin/class-mp-orders-admin.php:1041 +#: includes/admin/class-mp-orders-admin.php:1062 +#: includes/common/class-mp-gdpr.php:327 includes/common/class-mp-order.php:995 +#: includes/common/payment-gateways/payfast.php:244 marketpress.php:304 +msgid "Received" +msgstr "" + +#: marketpress.php:268 +msgid "Search Orders" +msgstr "" + +#: marketpress.php:267 +msgid "View Order" +msgstr "" + +#: marketpress.php:262 +msgid "Order" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:301 +#: includes/admin/class-mp-orders-admin.php:989 marketpress.php:261 +msgid "Orders" +msgstr "" + +#: marketpress.php:228 +msgid "No Products found in Trash" +msgstr "" + +#: marketpress.php:227 +msgid "No Products Found" +msgstr "" + +#: marketpress.php:226 +msgid "Search Products" +msgstr "" + +#: marketpress.php:225 marketpress.php:229 +msgid "View Product" +msgstr "" + +#: marketpress.php:224 +msgid "New Product" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1022 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:258 +#: marketpress.php:223 +msgid "Edit" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1019 +msgid "Create New" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:687 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:698 +#: marketpress.php:217 +msgid "Product" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:307 +#: includes/common/template-functions.php:173 +#: includes/common/template-functions.php:179 +#: includes/common/template-functions.php:902 +#: includes/multisite/template-functions.php:82 marketpress.php:216 +#: marketpress.php:219 +msgid "Products" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:118 +#: includes/admin/widgets/product-tag-cloud.php:46 +#: includes/multisite/class-mp-admin-multisite.php:548 +msgid "Product Tags" +msgstr "" + +#: includes/common/template-functions.php:2906 +#: includes/multisite/template-functions.php:449 +msgid "Product Category" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:117 +#: includes/admin/widgets/categories.php:8 +#: includes/admin/widgets/categories.php:18 +#: includes/multisite/class-mp-admin-multisite.php:539 +msgid "Product Categories" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:332 +#: includes/common/template-functions.php:872 marketpress.php:218 +msgid "Store" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:60 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:209 +#: includes/admin/widgets/cart.php:8 includes/admin/widgets/cart.php:56 +#: includes/common/template-functions.php:174 +#: includes/common/template-functions.php:811 +msgid "Shopping Cart" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:110 +#: includes/admin/class-mp-store-settings-admin.php:218 +msgid "Store Settings" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:128 marketpress.php:607 +msgid "Settings" +msgstr "" + +#: includes/common/data.php:178 includes/common/data.php:190 +msgid "Your Order Has Been Shipped! (ORDERID)" +msgstr "" + +#: includes/common/data.php:159 includes/common/data.php:166 +#: includes/common/data.php:172 +msgid "Your Order Confirmation (ORDERID)" +msgstr "" + +#: includes/common/data.php:148 +msgid "

    Thank you for your order! We appreciate your business, and please come back often to check out our new products.

    " +msgstr "" + +#: includes/common/data.php:147 +msgid "

    You are almost done! Please do a final review of your order to make sure everything is correct then click the \"Confirm Payment\" button.

    " +msgstr "" + +#: includes/common/data.php:145 +msgid "

    Please enter your shipping information in the form below to proceed with your order.

    " +msgstr "" + +#: includes/common/data.php:143 +msgid "

    If you have any questions about your order please do not hesitate to contact us.

    " +msgstr "" + +#: includes/common/data.php:106 +msgid "tag" +msgstr "" + +#: includes/common/data.php:105 +msgid "category" +msgstr "" + +#: includes/common/data.php:104 +msgid "order-status" +msgstr "" + +#: includes/common/data.php:103 +msgid "shopping-cart" +msgstr "" + +#: includes/common/data.php:102 +msgid "products" +msgstr "" + +#. Translators: change default slugs here +#: includes/common/data.php:101 +msgid "store" +msgstr "" \ No newline at end of file diff --git a/languages/mp-ca.mo b/languages/mp-ca.mo new file mode 100644 index 0000000000000000000000000000000000000000..695fdb16cd41ed8762f6224064cfcc2d6dd15ee1 GIT binary patch literal 275 zcmYLD!AiqW5Uk+o9X)$^f;Zi?sh9FXPTH1&!63Etx~6N4#(iPmR`f&sJ#YSpFU_F? z!_2U=Fu!M~Kck3~$n(g{K15s(a?ro%q0i+5JknFTvDMa#lKOdu-Y9b L7bx#EyqM8HeQ!^p literal 0 HcmV?d00001 diff --git a/languages/mp-ca.po b/languages/mp-ca.po new file mode 100644 index 00000000..e081d358 --- /dev/null +++ b/languages/mp-ca.po @@ -0,0 +1,8954 @@ +# Translation of MarketPress in Catalan +# This file is distributed under the same license as the MarketPress package. +msgid "" +msgstr "" +"PO-Revision-Date: +0000\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-Generator: GlotPress/2.3.1\n" +"Language: ca\n" +"Project-Id-Version: MarketPress\n" + +#: includes/public/class-mp-checkout.php:1285 +msgid "By clicking this checkbox you allow the website to process your personal data." +msgstr "" + +#: includes/common/class-mp-gdpr.php:382 +msgid "Order Info" +msgstr "" + +#: includes/common/class-mp-gdpr.php:268 +msgid "Shipping Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:267 +msgid "Shipping Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:266 +msgid "Shipping ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:265 +msgid "Shipping State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:264 +msgid "Shipping City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:263 +msgid "Shipping Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:262 +msgid "Shipping Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:261 +msgid "Shipping Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:260 +msgid "Shipping Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:259 +msgid "Shipping Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:258 +msgid "Shipping First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:254 +msgid "Billing Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:253 +msgid "Billing Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:252 +msgid "Billing ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:251 +msgid "Billing State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:250 +msgid "Billing City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:249 +msgid "Billing Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:248 +msgid "Billing Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:247 +msgid "Billing Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:246 +msgid "Billing Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:245 +msgid "Billing Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:244 +msgid "Billing First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:151 +msgid "Orders Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:139 +msgid "Customer Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:100 includes/common/class-mp-gdpr.php:116 +msgid "MarketPress User Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:81 +msgid "" +"In addition to standard WordPress session cookies, this site might be setting an\n" +"\t\t additional cookie to remember your cart settings. This cookie will last for one year." +msgstr "" + +#: includes/common/class-mp-gdpr.php:80 +msgid "Cookies" +msgstr "" + +#: includes/common/class-mp-gdpr.php:77 +msgid "" +"The following information will be collected in order to process orders: your name,\n" +"\t\t username, email address, avatar and profile URLs, address and phone number. This data can be\n" +"\t\t exported and removed." +msgstr "" + +#: includes/common/class-mp-gdpr.php:76 +msgid "Additional data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:71 +msgid "" +"This site might be using third party services and tools to process payments or/and\n" +"\t\t process shipping data when creating orders on the MarketPress store. These services include payment\n" +"\t\t gateways: 2Checkout, Authorize.net AIM, eWay shared payments, eWay Rapid 3.1 Payments, Mijireh,\n" +"\t\t Mollie, Paymill, PayPal, PIN, Simplify Commerce by MasterCard, Stripe and WePay; shipping gateways:\n" +"\t\t Fedex, UPS, USPS." +msgstr "" + +#: includes/common/class-mp-gdpr.php:70 +msgid "Third parties" +msgstr "" + +#: includes/admin/class-mp-admin.php:403 +msgid "Start creating store pages and products for your online shop here." +msgstr "" + +#: includes/admin/class-mp-admin.php:402 +msgid "Create Online Shop" +msgstr "" + +#: includes/admin/class-mp-admin.php:394 +msgid "Run Setup Wizard" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:234 +msgid "If having problems during invoice generation, add define( 'DOMPDF_ENABLE_HTML5PARSER', true ); to the wp-config.php file." +msgstr "" + +#: includes/public/class-mp-checkout.php:723 +msgid "Invalid Email" +msgstr "" + +#: includes/public/class-mp-checkout.php:721 +#: includes/public/class-mp-checkout.php:729 +msgid "This field is required" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:804 +msgid "This option changes the built-in css styles for store pages. For a custom css style, save your css file with the /* MarketPress Style: Your CSS Theme Name Here */ header line in the \"%s\" folder and it will appear in this list so you may select it. You should select \"None\" if you don't wish to use custom CSS styles or if you are using default theme templates or custom theme templates and css to make your own completely unique store design. For more information on custom theme templates click here »." +msgstr "" + +#: includes/public/class-mp-public.php:421 +#: includes/public/class-mp-short-codes.php:142 +msgid "Please enter a value greater than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:420 +#: includes/public/class-mp-short-codes.php:141 +msgid "Please enter a value less than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:419 +#: includes/public/class-mp-short-codes.php:140 +msgid "Please enter a value between {0} and {1}." +msgstr "" + +#: includes/public/class-mp-public.php:418 +#: includes/public/class-mp-short-codes.php:139 +msgid "Please enter a value between {0} and {1} characters long." +msgstr "" + +#: includes/public/class-mp-public.php:417 +#: includes/public/class-mp-short-codes.php:138 +msgid "Please enter at least {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:416 +#: includes/public/class-mp-short-codes.php:137 +msgid "Please enter no more than {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:415 +#: includes/public/class-mp-short-codes.php:136 +msgid "Please enter a value with a valid extension." +msgstr "" + +#: includes/public/class-mp-public.php:414 +#: includes/public/class-mp-short-codes.php:135 +msgid "Please enter the same value again." +msgstr "" + +#: includes/public/class-mp-public.php:413 +#: includes/public/class-mp-short-codes.php:134 +msgid "Please enter a valid credit card number." +msgstr "" + +#: includes/public/class-mp-public.php:412 +#: includes/public/class-mp-short-codes.php:133 +msgid "Please enter only digits." +msgstr "" + +#: includes/public/class-mp-public.php:411 +#: includes/public/class-mp-short-codes.php:132 +msgid "Please enter a valid number." +msgstr "" + +#: includes/public/class-mp-public.php:410 +#: includes/public/class-mp-short-codes.php:131 +msgid "Please enter a valid date (ISO)." +msgstr "" + +#: includes/public/class-mp-public.php:409 +#: includes/public/class-mp-short-codes.php:130 +msgid "Please enter a valid date." +msgstr "" + +#: includes/public/class-mp-public.php:408 +#: includes/public/class-mp-short-codes.php:129 +msgid "Please enter a valid URL." +msgstr "" + +#: includes/public/class-mp-public.php:406 +#: includes/public/class-mp-short-codes.php:127 +msgid "Please fix this field." +msgstr "" + +#: includes/public/class-mp-checkout.php:1287 +#: includes/public/class-mp-public.php:405 +#: includes/public/class-mp-short-codes.php:126 +msgid "This field is required." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:810 +msgid "None - Without Special CSS-styles" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:809 +msgid "Default - Using Default CSS-styles" +msgstr "" + +#: marketpress.php:739 +msgid "Enable multiple downloads per product" +msgstr "" + +#: marketpress.php:738 +msgid "Multiple Downloads" +msgstr "" + +#: includes/public/class-mp-checkout.php:715 +msgid "Invalid Zip Code" +msgstr "" + +#: includes/common/template-functions.php:2126 +msgid "Guest Email" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:195 +msgid "There was a problem finalizing your purchase. Please re-enter your credit card information and try again" +msgstr "" + +#: includes/common/class-mp-cart.php:565 includes/common/class-mp-order.php:600 +#: includes/common/helpers.php:111 +msgid "Download %1$s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:331 +msgid "Export products to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:328 +msgid "The import process uses the WordPress importer plugin." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:326 +msgid "Import / Export Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:325 +msgid "Export settings to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:324 +msgid "Import configuration" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:320 +msgid "Use the text below to export to a new installation. Or paste in the new configuration to import." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:318 +msgid "Import / Export Settings" +msgstr "" + +#. translators: URL to wp-admin/import.php +#: includes/admin/store-settings/class-mp-store-settings-import.php:266 +msgid "This importer is not installed. Please install importers from the main site." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:261 +msgid "Install Now" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:260 +msgid "Install %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:240 +msgid "Run Importer" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:239 +msgid "Run %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:258 +msgid "Import/Export" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1199 +msgid "Requires Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:737 +msgid "Optionally limit the user to some categories" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:671 +msgid "Should this coupon only be available to logged in users?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:670 +msgid "Require Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:655 +msgid "Mimimum number of products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:653 +msgid "Enter the minimum number of products in the cart that this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:648 +msgid "Can this coupon be limited to a number of products in the cart?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:334 +msgid "Add all values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:265 +msgid "Set as default variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:154 +msgid "Set Default" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:150 +msgid "More Info" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:40 +msgid "MarketPress - Quick Setup" +msgstr "" + +#: includes/public/class-mp-checkout.php:1399 +msgid "Proceed to checkout and create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1241 +#: includes/public/class-mp-checkout.php:1245 +msgid "Register account" +msgstr "" + +#: includes/public/class-mp-checkout.php:1233 +msgid "Register as customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:765 +msgid "

    Oops!

    Looks like you haven't added anything your cart. Let's go shopping!

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:763 +msgid "

    Oops!

    The cart is disabled.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing Information" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:214 +msgid "Global Currency" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:198 +msgid "Global Store Currency" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:507 +msgid "There are no shipping services available for this type of package in your location." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:168 +msgid "Using this USPS Shipping calculator requires requesting an Ecommerce API Username and Password. Get your free set of credentials here ». The password is no longer used for the API, just the username which you should enter below. The USPS test site has not yet been updated and currently doesn't work - you should just request activating your credentials with USPS and go live." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:339 +msgid "ZIP Code" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:334 +msgid "Last name" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:333 +msgid "First name" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:150 +msgid "These are the manual payment instructions to display on the order confirmation screen. TOTAL will be replaced with the order total and ORDERID will be replaced with Order ID." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:240 +msgid "You must login to Authorize.net merchant dashboard to obtain the API login ID and API transaction key. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:327 +msgid "
    1. Set the \"Return Method\" within Site Management to Header Redirect and set the \"Return URL\" to %s
    2. Set your notifications url to %s
    " +msgstr "" + +#: includes/common/data.php:191 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Also, digital downloads included in your order are now ready to be downloaded. Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:185 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order is now available to download! Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:184 +msgid "Your Order Is Ready To Be Downloaded! (ORDERID)" +msgstr "" + +#: includes/common/data.php:179 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:173 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received, your digital goods are ready to be downloaded and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:167 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received and your digital goods are ready to be downloaded. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:160 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +" Your order has been received, and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information: \n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/class-mp-product.php:638 +msgid "You can not add more items to cart." +msgstr "" + +#: includes/common/class-mp-product.php:635 +msgid "You can only add {0} to cart." +msgstr "" + +#: includes/common/class-mp-product.php:625 +msgid "This product has an order limit of %d." +msgstr "" + +#: includes/common/class-mp-order.php:1454 +msgid "Shipped: tracking code: %s" +msgstr "" + +#: includes/common/class-mp-order.php:1000 +#: includes/common/class-mp-order.php:1012 +msgid "Finished" +msgstr "" + +#: includes/common/class-mp-order.php:858 +msgid "Contact Details" +msgstr "" + +#: includes/common/class-mp-order.php:339 includes/common/data.php:155 +msgid "" +"A new order (ORDERID) was created in your store:\n" +"\n" +" ORDERINFOSKU\n" +"\n" +" SHIPPINGINFO\n" +"\n" +" PAYMENTINFO\n" +"\n" +msgstr "\n" + +#: includes/common/class-mp-cart.php:1858 +msgid "Add again" +msgstr "" + +#: includes/common/class-mp-cart.php:1852 +msgid "was removed from Shopping Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1242 +#: includes/public/class-mp-short-codes.php:160 +msgid "Cart update notice: this item has a limit per order or you have reached the stock limit." +msgstr "" + +#: includes/admin/widgets/product-list.php:235 +msgid "Show Only Featured Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:533 +msgid "If enabled, users won't be able to filter products per category and/or to order by release date/name/price." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:531 +msgid "Hide Products Filter?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:353 +msgid "Notification to registration email instead of billing email?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:322 +msgid "Order Shipped - Mixed orders (with both digital and physical products)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:289 +msgid "Order Shipped - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:224 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:194 +msgid "New Order - Mixed" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:161 +msgid "New Order - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:115 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:243 +msgid "Mixed orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:110 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:238 +msgid "Digital downloads orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:105 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:233 +msgid "Physical orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:96 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed.
    For orders placed with manual payment, emails set here will be overriden by the one configured in manual payments settings, under payments settings page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:89 +msgid "Customer Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:47 +msgid "Admin Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:566 +msgid "Only contact details" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:565 +msgid "Full billing info" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:561 +msgid "Details Collection" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:548 +msgid "Digital Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:515 +msgid "Apply Tax to Digital Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:236 +msgid "product (default)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:231 +msgid "If you are experiencing conflicts with other e-commerce plugins change this setting. This will change the internal post type of all your products. Please note that changing this option may break 3rd party themes or plugins." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1203 +msgid "Hide details" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1202 +msgid "Show all changes" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1184 +msgid "Version %s" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1161 +msgid "Current" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1131 +msgid "%s changelog" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:952 +msgid "We did not find any data for this plugin or theme..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:285 +msgid "Activate WPMU DEV Dashboard" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:279 +msgid "Just one more step - activate the WPMU DEV Dashboard plugin and you're all done!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:277 +msgid "Important updates are available for your WPMU DEV plugins/themes. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:273 +msgid "Just one more step to enable updates and support for %s!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:271 +msgid "Important updates are available for %s. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:264 +msgid "activate" +msgstr "" + +#: includes/admin/class-mp-admin.php:398 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:248 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:289 +msgid "Dismiss" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:247 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:288 +msgid "Saving..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:244 +msgid "Install Plugin" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:238 +msgid "Almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:236 +msgid "Important updates are available for your WPMU DEV plugins/themes. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:232 +msgid "%s is almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:230 +msgid "Important updates are available for %s. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:223 +msgid "install" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1428 +msgid "Sets the number of Tags to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1289 +msgid "How many products to display in the product list if \"paginate\" is set to false." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:739 +#: includes/admin/class-mp-shortcode-builder.php:906 +#: includes/admin/class-mp-shortcode-builder.php:1350 +msgid "Grid" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:735 +#: includes/admin/class-mp-shortcode-builder.php:902 +#: includes/admin/class-mp-shortcode-builder.php:1346 +msgid "Products will be displayed as list or grid." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:206 +msgid "Display a cloud or list of your global product tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:205 +msgid "Display a list of your global categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:204 +msgid "Display a list or grid of your global products." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:181 +msgid "Display a list of featured products." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1451 +msgid "Is Featured?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1444 +msgid "Featured Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:581 +#: includes/admin/class-mp-products-admin.php:1580 +msgid "% discount" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:579 +msgid "OR" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:460 +#: includes/admin/class-mp-products-admin.php:586 +#: includes/admin/widgets/product-list.php:217 +msgid "Featured" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:536 +#: includes/admin/class-mp-orders-admin.php:538 +msgid "Tracking Link" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:508 +msgid "Shipping Tax" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:356 +msgid "Shipping Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:352 +msgid "Taxes Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:349 +msgid "Products Total" +msgstr "" + +#: includes/admin/class-mp-ajax.php:366 +msgid "Oops! You entered an invalid username/email and or password." +msgstr "" + +#: includes/admin/class-mp-ajax.php:254 +msgid "Percentage Discount" +msgstr "" + +#: includes/admin/class-mp-ajax.php:234 +msgid "Limit the Amount of Items per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:214 +msgid "Unused Attributes" +msgstr "" + +#: includes/admin/class-mp-admin.php:82 +msgid "Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-admin.php:79 +msgid "MarketPress setup is not complete! Once you've completed this quick setup wizard you'll have a fully working online store - exciting! " +msgstr "" + +#: marketpress.php:263 +msgctxt "mp_order" +msgid "Add New" +msgstr "" + +#: marketpress.php:184 +msgctxt "product_tag" +msgid "Product Tag" +msgstr "" + +#: marketpress.php:183 +msgctxt "product_tag" +msgid "Product Tags" +msgstr "" + +#: marketpress.php:150 +msgctxt "product_category" +msgid "Product Category" +msgstr "" + +#: marketpress.php:149 +msgctxt "product_category" +msgid "Product Categories" +msgstr "" + +#. Author URI of the plugin/theme +msgid "http://premium.wpmudev.org" +msgstr "" + +#: marketpress.php:729 +msgid "Invoice PDF" +msgstr "" + +#: marketpress.php:712 +msgid "Grant access to themes and gateways depending on the user's Pro Site level" +msgstr "" + +#: marketpress.php:711 +msgid "Pro Sites" +msgstr "" + +#: marketpress.php:703 +msgid "Offer and accept coupon codes" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:687 +msgid "Install %s Pages" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:682 +msgid "Welcome to %s – Install pages required by the plugin automatically." +msgstr "" + +#: marketpress.php:668 +msgid "Your pages were created successfully." +msgstr "" + +#: marketpress.php:436 +msgid "Add a Product" +msgstr "" + +#: marketpress.php:271 +msgid "Parent Order" +msgstr "" + +#: marketpress.php:270 +msgid "No orders found in trash" +msgstr "" + +#: marketpress.php:269 +msgid "No orders found" +msgstr "" + +#: marketpress.php:265 +msgid "Edit Order" +msgstr "" + +#: marketpress.php:264 +msgid "Add New Order" +msgstr "" + +#: marketpress.php:220 marketpress.php:221 +msgid "Add New Product" +msgstr "" + +#: marketpress.php:197 +msgid "No product tags found" +msgstr "" + +#: marketpress.php:196 +msgid "Choose from the most used product tags" +msgstr "" + +#: marketpress.php:195 +msgid "Add or remove product tags" +msgstr "" + +#: marketpress.php:194 +msgid "Separate product tags with commas" +msgstr "" + +#: marketpress.php:193 +msgid "Search Product Tags" +msgstr "" + +#: marketpress.php:192 +msgid "Parent Product Tag:" +msgstr "" + +#: marketpress.php:191 +msgid "Parent Product Tag" +msgstr "" + +#: marketpress.php:190 +msgid "New Product Tag Name" +msgstr "" + +#: marketpress.php:189 +msgid "Add New Product Tag" +msgstr "" + +#: marketpress.php:188 +msgid "Update Product Tag" +msgstr "" + +#: marketpress.php:187 +msgid "View Product Tag" +msgstr "" + +#: marketpress.php:186 +msgid "Edit Product Tag" +msgstr "" + +#: marketpress.php:185 +msgid "All Product Tags" +msgstr "" + +#: marketpress.php:163 +msgid "No product categories found" +msgstr "" + +#: marketpress.php:162 +msgid "Choose from the most used product categories" +msgstr "" + +#: marketpress.php:161 +msgid "Add or remove product categories" +msgstr "" + +#: marketpress.php:160 +msgid "Separate product categories with commas" +msgstr "" + +#: marketpress.php:159 +msgid "Search Product Categories" +msgstr "" + +#: marketpress.php:158 +msgid "Parent Product Category:" +msgstr "" + +#: marketpress.php:157 +msgid "Parent Product Category" +msgstr "" + +#: marketpress.php:156 +msgid "New Product Category Name" +msgstr "" + +#: marketpress.php:155 +msgid "Add New Product Category" +msgstr "" + +#: marketpress.php:154 +msgid "Update Product Category" +msgstr "" + +#: marketpress.php:153 +msgid "View Product Category" +msgstr "" + +#: marketpress.php:152 +msgid "Edit Product Category" +msgstr "" + +#: marketpress.php:151 +msgid "All Product Categories" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Please fix the %s1 and then try submitting the form again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Oops! The form contains %s1 which %s2 been highlighted below." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:660 +msgid "have" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:659 +msgid "has" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:651 +msgid "Value must be less than {0}" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:650 +msgid "Please enter only letters and numbers" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:539 +msgid "Due to prolonged inactivity on this page, one or more settings were not saved. Please try again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:535 +msgid "Settings Saved" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-user-select.php:22 +msgid "Select Some Users" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-section.php:18 +msgid "Section Title" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:425 +msgid "Are you sure you want to delete this?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:30 +msgid "Add Row" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-post-select.php:24 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-taxonomy-select.php:22 +msgid "Select Posts" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:210 +msgid "Add Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:129 +msgid "Select the image that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:93 +msgid "Select image(s) that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:79 +msgid "Select the image that you would like to use for this variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:48 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:82 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:68 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:132 +msgid "Select Image" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:31 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:160 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:168 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:19 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:115 +msgid "Select File" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:30 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:18 +msgid "Select the file that you would like to use." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:357 +msgid "Create Variations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:356 +msgid "Add Another Variant" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Insert a value and press ENTER" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "(e.g. White, Grey, Red etc.)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Variation Values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:333 +msgid "Or create new variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "(e.g. Color)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:303 +msgid "You are about to delete selected variants.
    If you want to continue please confirm." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:302 +msgid "Confirmation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:290 +msgid "Insert quantity available. Empty for unlimited." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:281 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:294 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:307 +msgid "Cancel" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:280 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:293 +msgid "Update" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:277 +msgid "Insert the price i.e. 25 or 25.50" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:115 +msgid "Img." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:85 +msgid "Add New Variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:79 +msgid "Delete Variants" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:78 +msgid "Update Prices" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:77 +msgid "Update Inventory" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:76 +msgid "Update Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:75 +msgid "Bulk Actions" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:73 +msgid "Select bulk action" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:196 +msgid "Configure Store" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:195 +msgid "Configure shipping rates, emails and your store's appearance. " +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:190 +msgid "Add Product" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:189 +msgid "Add your first product for sale and get familiar with adding products." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:184 +msgid "Your store is almost ready for its first customers, but first it needs some products. Get started by adding products below, or jump straight into further configuring your store’s settings." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:183 +msgid "Woohoo! Your online store is up and running." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:160 +msgid "Finish Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:124 +msgid "And what metric system do you want to use?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:113 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:142 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:159 +msgid "Back" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:109 +msgid "Do you want to apply tax for your products? You can customize this for each product and variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:105 +msgid "What currency do you want to sell with?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:93 +msgid "And, which countries do you want to sell to?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:89 +msgid "Where is your online store based?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:80 +msgid "Payment Gateway" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:79 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:123 +msgid "Metric System" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:78 +msgid "Currency & Tax" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:77 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:88 +msgid "Locations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:70 +msgid "Choose where you want to sell your stuff and what currency. Easy!" +msgstr "" + +#: includes/public/class-mp-checkout.php:1400 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:58 +msgid "Continue" +msgstr "" + +#: includes/admin/class-mp-admin.php:83 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:53 +msgid "Skip this step, I'll do this manually" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:49 +msgid "Install store pages" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:44 +msgid "Once you've completed this quick setup wizard you'll have a fully working online store - exciting! Start
    by creating the default store pages for the online store such as the cart, checkout and store pages." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:42 +msgid "MarketPress adds a full online store to your website, with heaps of configuration options and addons
    to suit your needs. It's really easy to get going, and only takes a few minutes to setup!" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:41 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:69 +msgid "Welcome to MarketPress - Quick Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-advanced-select.php:23 +msgid "Select Some Options" +msgstr "" + +#: includes/wpmudev-metaboxes/class-wpmudev-field.php:694 +msgid "You must the WPMUDEV_Field::display() method in your form field class" +msgstr "" + +#: includes/public/class-mp-short-codes.php:636 +msgid "Only %s left in stock..." +msgstr "" + +#: includes/public/class-mp-short-codes.php:633 +msgid "Unlimited stock" +msgstr "" + +#: includes/public/class-mp-short-codes.php:430 +msgid "product_id must be defined" +msgstr "" + +#: includes/public/class-mp-checkout.php:1250 +msgid "An account with this username already exists" +msgstr "" + +#: includes/public/class-mp-checkout.php:1394 +msgid "Continue as Guest" +msgstr "" + +#: includes/public/class-mp-checkout.php:1393 +msgid "Proceed to checkout and you'll have an opportunity to create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1392 +#: includes/public/class-mp-checkout.php:1398 +msgid "First-time customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1386 +msgid "Login" +msgstr "" + +#: includes/public/class-mp-checkout.php:1379 +msgid "E-Mail Address/Username" +msgstr "" + +#: includes/public/class-mp-checkout.php:1377 +msgid "Sign in to speed up the checkout process." +msgstr "" + +#: includes/public/class-mp-checkout.php:1376 +msgid "Have an account?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1297 +msgid "Shipping address different than billing?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1184 +msgid "There are no available gateways to process this payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1160 +msgid "Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:1123 +msgid "Oops! An error occurred while processing your payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1051 +msgid "Next Step »" +msgstr "" + +#: includes/public/class-mp-checkout.php:1045 +msgid "« Previous Step" +msgstr "" + +#: includes/public/class-mp-checkout.php:873 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:657 +msgid "error" +msgstr "" + +#: includes/public/class-mp-checkout.php:872 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:658 +msgid "errors" +msgstr "" + +#: includes/public/class-mp-checkout.php:871 +msgid "

    Oops! We found %d %s in the form below.

    Fields that have errors are highlighted in red below. Entering into a field will reveal the actual error that occurred.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:870 +msgid "Please enter a valid first and last name" +msgstr "" + +#: includes/public/class-mp-checkout.php:869 +msgid " Please enter a valid card security code" +msgstr "" + +#: includes/public/class-mp-checkout.php:868 +msgid "Please enter a valid card expiration" +msgstr "" + +#: includes/public/class-mp-checkout.php:773 +msgid "Javascript is required in order to checkout. Please enable Javascript in your browser and then refresh this page." +msgstr "" + +#: includes/public/class-mp-checkout.php:588 +msgid "An unknown error occurred. Please try again." +msgstr "" + +#: includes/public/class-mp-checkout.php:386 +msgid "Town/City" +msgstr "" + +#: includes/public/class-mp-checkout.php:380 +msgid "Apartment, suite, unit, building, floor, etc" +msgstr "" + +#: includes/public/class-mp-checkout.php:376 +msgid "Address Line 2" +msgstr "" + +#: includes/public/class-mp-checkout.php:363 +msgid "Address Line 1" +msgstr "" + +#: includes/common/class-mp-order.php:770 +#: includes/public/class-mp-checkout.php:354 +msgid "Company" +msgstr "" + +#: includes/public/class-mp-checkout.php:330 +msgid "Last" +msgstr "" + +#: includes/public/class-mp-checkout.php:321 +msgid "First" +msgstr "" + +#: includes/public/class-mp-checkout.php:284 +msgid "State/Province" +msgstr "" + +#: includes/public/class-mp-checkout.php:83 +msgid "Review Order/Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing/Shipping Address" +msgstr "" + +#: includes/public/class-mp-checkout.php:80 +msgid "Login/Register" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:530 +msgid "Marketplace" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:523 +msgid "Global Marketplace Pages" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +msgid "Store Network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +#: includes/multisite/class-mp-admin-multisite.php:494 +msgid "Store Network Settings" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:440 +msgid "Set theme access permissions for network stores. For a custom css theme, save your css file with the MarketPress Theme: NAME header in the /marketpress/ui/themes/ folder and it will appear in this list so you may select it." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:361 +msgid "Choose a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:336 +msgid "%d products get indexed" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:285 +msgid "Product Indexer" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:281 +msgid "Please hold on..." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:280 +msgid "Index Products" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:279 +msgid "%d products have been indexed in whole network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:182 +msgid "Enable Global Shopping Cart?" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:178 +msgid "Limit Global Widgets/Shortcodes To Main Blog?" +msgstr "" + +#: includes/common/template-functions.php:2802 +#: includes/multisite/template-functions.php:355 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:97 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:114 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:143 +msgid "Next" +msgstr "" + +#: includes/common/template-functions.php:2801 +#: includes/multisite/template-functions.php:354 +msgid "Prev" +msgstr "" + +#: includes/common/template-functions.php:2597 +msgid "Tagged in " +msgstr "" + +#: includes/common/template-functions.php:2196 +#: includes/common/template-functions.php:2202 +#: includes/common/template-functions.php:2214 +#: includes/common/template-functions.php:2217 +msgid "Oops! We couldn't locate any orders matching that order number. Please verify the order number and try again." +msgstr "" + +#: includes/common/template-functions.php:2138 +msgid "Look Up" +msgstr "" + +#: includes/common/template-functions.php:1423 +msgid "Please choose a shipping method" +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "If you have your order ID you can look it up using the form below." +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "Order Search" +msgstr "" + +#: includes/common/template-functions.php:910 +#: includes/public/class-mp-checkout.php:1440 +msgid "Cart" +msgstr "" + +#: includes/common/template-functions.php:895 +msgid "[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:887 +msgid "[mp_global_categories_list]" +msgstr "" + +#: includes/common/template-functions.php:880 +msgid "" +"Welcome to our market place!\n" +"\n" +"Check out our network of products:\n" +"\n" +"[mp_list_global_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_global_categories_list]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:879 +msgid "Global Store" +msgstr "" + +#: includes/common/template-functions.php:873 +msgid "" +"Welcome to our online store! Feel free to browse around:\n" +"\n" +"[mp_store_navigation]\n" +"\n" +"Check out our most popular products:\n" +"\n" +"[mp_popular_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_list_categories]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_tag_cloud]" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:127 +msgid "If cart weight is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:126 +msgid "Cart Weight" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:222 +msgid "Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:206 +msgid "Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:196 +msgid "Retail Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:195 +msgid "Online Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:193 +msgid "Rates Request Type" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:189 +msgid "Maximum Weight Per Package" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:195 +#: includes/common/shipping-modules/mp-usps.php:236 +msgid "Enter your standard box sizes as LengthxWidthxHeight (e.g. 12x8x6) For each box defined enter the maximum weight it can contain. Note: the shipping prices this plugin calculates are estimates. If they are consistently too low or too high, please check that the list of boxes above and the product weights are accurate and complete." +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:187 +msgid "Handling Charge Per Box Shipped" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:176 +#: includes/common/shipping-modules/mp-ups.php:181 +msgid "Offered Services" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:165 +msgid "Shipper Number" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:151 +msgid "User ID" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:144 +msgid "Developer Kit Access Key" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:140 +msgid "Use Sandbox Mode?" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:123 +msgid "In order to use UPS, you will need a UPS Developer Kit access key and the UPS user ID and password associated with the access key. Set these up for free here. If this information is missing or incorrect, an error will appear during the checkout process and the buyer will not be able to complete the transaction." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:112 +msgid "If cart total is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:111 +msgid "Cart Total" +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:95 +#: includes/common/shipping-modules/mp-weight-rate.php:111 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Don't worry about sorting as this will be done automatically upon saving." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:170 +msgid "Method Title (visible for clients)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:409 +#: includes/common/shipping-modules/mp-ups.php:216 +#: includes/common/shipping-modules/mp-usps.php:251 +msgid "Max Weight (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:402 +#: includes/common/shipping-modules/mp-ups.php:209 +#: includes/common/shipping-modules/mp-usps.php:247 +msgid "Size (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:387 +msgid "Enter your standard box sizes as LengthxWidthxHeight ( 12x8x6 ) For each box defined enter the maximum weight it can contain. Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:361 +#: includes/common/shipping-modules/mp-usps.php:229 +msgid "Handling Charge per International Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:353 +msgid "International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:339 +#: includes/common/shipping-modules/mp-usps.php:213 +msgid "Handling Charge per Domestic Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:331 +msgid "Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:321 +msgid "When checked the customer can chose Residential or Commercial delivery with Residential the default. Unchecked it's only Residential rates." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:320 +msgid "Allow Commercial Delivery?" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:315 +msgid "Fedex 10kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:314 +msgid "Fedex 25kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:313 +msgid "Fedex Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:312 +msgid "Fedex Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:311 +msgid "Fedex Pak" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:310 +msgid "Fedex Tube" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:306 +msgid "Default Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:294 +msgid "Dropoff Type" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:290 +msgid "Meter ID" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:134 +msgid "This is a residential address" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:283 +msgid "There was an error processing your card: \"%s\". Please check your credit card info and try again." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:121 +msgid "Wepay makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept cards directly on your site. You don't need a merchant account or gateway. WePay handles everything including storing cards. Credit cards go directly to WePay's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:385 +msgid "There was an error processing your card - \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:356 +msgid "%s Store Purchase - Order ID - %s, Email - %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:251 +msgid "Stripe makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept Visa, MasterCard, American Express, Discover, JCB, and Diners Club cards directly on your site. You don't need a merchant account or gateway. Stripe handles everything, including storing cards, subscriptions, and direct payouts to your bank account. Credit cards go directly to Stripe's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:192 +msgid "ZMW - Zambian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:191 +msgid "ZAR - South African Rand" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:190 +msgid "YER - Yemeni Rial" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:189 +msgid "XPF - Cfp Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:188 +msgid "XOF - West African Cfa Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:187 +msgid "XCD - East Caribbean Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:186 +msgid "XAF - Central African Cfa Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:185 +msgid "WST - Samoan Tala" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:184 +msgid "VUV - Vanuatu Vatu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:183 +msgid "VND - Vietnamese Đồng" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:182 +msgid "VEF - Venezuelan Bolívar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:181 +msgid "UZS - Uzbekistani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:180 +msgid "UYI - Uruguayan Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:178 +msgid "UGX - Ugandan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:177 +msgid "UAH - Ukrainian Hryvnia" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:176 +msgid "TZS - Tanzanian Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:175 +msgid "TWD - New Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:174 +msgid "TTD - Trinidad and Tobago Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:172 +msgid "TOP - Tongan Paʻanga" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:171 +msgid "TJS - Tajikistani Somoni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:169 +msgid "SZL - Swazi Lilangeni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:168 +msgid "SVC - Salvadoran Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:167 +msgid "STD - São Tomé and Príncipe Dobra" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:166 +msgid "SRD - Surinamese Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:165 +msgid "SOS - Somali Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:164 +msgid "SLL - Sierra Leonean Leone" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:163 +msgid "SHP - Saint Helenian Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:160 +msgid "SCR - Seychellois Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:159 +msgid "SBD - Solomon Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:157 +msgid "RWF - Rwandan Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:156 +msgid "RUB - Russian Ruble" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:155 +msgid "RSD - Serbian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:154 +msgid "RON - Romanian Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:153 +msgid "QAR - Qatari Riyal" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:152 +msgid "PYG - Paraguayan Guaraní*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:151 +msgid "PLN - Polish Złoty" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:150 +msgid "PKR - Pakistani Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:149 +msgid "PHP - Philippine Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:148 +msgid "PGK - Papua New Guinean Kina" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:147 +msgid "PEN - Peruvian Nuevo Sol*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:146 +msgid "PAB - Panamanian Balboa*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:144 +msgid "NPR - Nepalese Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:142 +msgid "NIO - Nicaraguan Córdoba*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:141 +msgid "NGN - Nigerian Naira" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:140 +msgid "NAD - Namibian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:139 +msgid "MZN - Mozambican Metical" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:137 +msgid "MXN - Mexican Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:136 +msgid "MWK - Malawian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:135 +msgid "MVR - Maldivian Rufiyaa" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:134 +msgid "MUR - Mauritian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:133 +msgid "MRO - Mauritanian Ouguiya" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:132 +msgid "MOP - Macanese Pataca" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:131 +msgid "MNT - Mongolian Tögrög" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:130 +msgid "MKD - Macedonian Denar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:129 +msgid "MGA - Malagasy Ariary" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:128 +msgid "MDL - Moldovan Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:126 +msgid "LVL - Latvian Lats" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:124 +msgid "LSL - Lesotho Loti" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:123 +msgid "LRD - Liberian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:122 +msgid "LKR - Sri Lankan Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:121 +msgid "LBP - Lebanese Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:120 +msgid "LAK - Lao Kip*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:119 +msgid "KZT - Kazakhstani Tenge" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:118 +msgid "KYD - Cayman Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:117 +msgid "KRW - South Korean Won" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:116 +msgid "KMF - Comorian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:115 +msgid "KHR - Cambodian Riel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:114 +msgid "KGS - Kyrgyzstani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:113 +msgid "KES - Kenyan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:111 +msgid "JMD - Jamaican Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:110 +msgid "ISK - Icelandic Króna" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:109 +msgid "INR - Indian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:108 +msgid "ILS - Israeli New Sheqel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:107 +msgid "IDR - Indonesian Rupiah" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:105 +msgid "HTG - Haitian Gourde" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:103 +msgid "HNL - Honduran Lempira*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:101 +msgid "GYD - Guyanese Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:100 +msgid "GTQ - Guatemalan Quetzal*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:99 +msgid "GNF - Guinean Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:98 +msgid "GMD - Gambian Dalasi" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:97 +msgid "GIP - Gibraltar Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:96 +msgid "GEL - Georgian Lari" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:94 +msgid "FKP - Falkland Islands Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:93 +msgid "FJD - Fijian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:91 +msgid "ETB - Ethiopian Birr" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:90 +msgid "EGP - Egyptian Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:89 +msgid "EEK - Estonian Kroon*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:88 +msgid "DZD - Algerian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:87 +msgid "DOP - Dominican Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:85 +msgid "DJF - Djiboutian Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:84 +msgid "CZK - Czech Koruna*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:83 +msgid "CVE - Cape Verdean Escudo*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:82 +msgid "CRC - Costa Rican Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:81 +msgid "COP - Colombian Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:80 +msgid "CNY - Chinese Renminbi Yuan" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:79 +msgid "CLP - Chilean Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:77 +msgid "CDF - Congolese Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:76 +msgid "CAD - Canadian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:75 +msgid "BZD - Belize Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:74 +msgid "BWP - Botswana Pula" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:73 +msgid "BSD - Bahamian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:72 +msgid "BRL - Brazilian Real*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:71 +msgid "BOB - Bolivian Boliviano*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:70 +msgid "BND - Brunei Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:69 +msgid "BMD - Bermudian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:68 +msgid "BIF - Burundian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:67 +msgid "BGN - Bulgarian Lev" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:66 +msgid "BDT - Bangladeshi Taka" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:65 +msgid "BBD - Barbadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:64 +msgid "BAM - Bosnia & Herzegovina Convertible Mark" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:63 +msgid "AZN - Azerbaijani Manat" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:62 +msgid "AWG - Aruban Florin" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:61 +msgid "AUD - Australian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:60 +msgid "ARS - Argentine Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:59 +msgid "AOA - Angolan Kwanza*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:58 +msgid "ANG - Netherlands Antillean Gulden" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:57 +msgid "AMD - Armenian Dram" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:56 +msgid "ALL - Albanian Lek" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:55 +msgid "AFN - Afghan Afghani*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:54 +msgid "AED - United Arab Emirates Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:345 +msgid "Skrill balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:327 +msgid "Skrill IPN message received." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:283 +msgid "Skrill" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:278 +msgid "Pending payment" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:144 +msgid "The secret word must match the word submitted in the \"Merchant Tools\" section of your Skrill account." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:134 +msgid "You must use your valid Skrill merchant email. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:133 +msgid "Skrill Email" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:123 +msgid "Resell your inventory via Skrill.com (Moneybookers)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:95 +msgid "ZAR - South-African Rand" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:93 +msgid "TWD - Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:92 +msgid "TRY - New Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:91 +msgid "TND - Tunisian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:90 +msgid "THB - Thailand Baht" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:89 +msgid "SKK - Slovakian Koruna" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:86 +#: includes/common/payment-gateways/stripe.php:158 +msgid "SAR - Saudi Riyal" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:85 +msgid "RSD - Serbian dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:83 +msgid "QAR - Qatari Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:81 +msgid "OMR - Omani Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:80 +msgid "NOK - Norwegian Krone " +msgstr "" + +#: includes/common/payment-gateways/skrill.php:78 +#: includes/common/payment-gateways/stripe.php:138 +msgid "MYR - Malaysian Ringgit" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:77 +#: includes/common/payment-gateways/stripe.php:127 +msgid "MAD - Moroccan Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:74 +msgid "KRW - South-Korean Won" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:72 +msgid "JOD - Jordanian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:70 +msgid "INR - Indian Rupee" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:63 +msgid "EEK - Estonian Kroon" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:56 +msgid "AED - Utd. Arab Emir. Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:52 +msgid "Turkish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:51 +msgid "Swedish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:50 +msgid "Spanish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:49 +msgid "Russian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:48 +msgid "Romainian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:47 +msgid "Polish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:46 +msgid "Italian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:45 +msgid "Greek" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:44 +msgid "German" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:43 +msgid "French" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:42 +msgid "Finnish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:41 +msgid "English" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:40 +msgid "Dutch" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:39 +msgid "Danish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:38 +msgid "Czech" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:37 +msgid "Chinese" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:201 +msgid "There was an error processing your card: %s. Please re-enter your credit card info and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:278 +msgid "
  • There was an error processing your card: \"%s\". Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:274 +msgid "
  • There was an error processing your card. Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:177 +#: includes/common/payment-gateways/stripe.php:279 +msgid "Publishable Key" +msgstr "" + +#: includes/common/payment-gateways/pin.php:163 +msgid "API Credentials?" +msgstr "" + +#: includes/common/payment-gateways/pin.php:147 +msgid "PIN makes it easy to start accepting credit card payments with Australia’s first all-in-one online payment system. Accept all major credit cards directly on your site. Your sales proceeds are deposited to any Australian bank account, no merchant account required." +msgstr "" + +#: includes/common/payment-gateways/pin.php:57 +#: includes/common/payment-gateways/stripe.php:179 +msgid "USD - United States Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:455 +msgid "Email Footer" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:445 +msgid "Email Header" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:416 +msgid "Partner" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:409 +msgid "Vendor" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:852 +#: includes/common/payment-gateways/paypal-express.php:1126 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences\t section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:749 +msgid "Page Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:744 +msgid "Header Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:739 +msgid "Header Border Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:734 +msgid "Header Image" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:680 +msgid "Locale" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:624 +#: includes/common/payment-gateways/paypal-express.php:658 +msgid "Merchant Email" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:645 +msgid "Paypal Express Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:603 +msgid "Paypal Express Network Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:861 +msgid "Application ID (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:854 +msgid "Signature (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:847 +msgid "API Password (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:839 +msgid "API Username (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:832 +msgid "Signature (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:825 +msgid "API Password (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:817 +msgid "API Username (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:799 +msgid "This message is displayed at the top of the gateway settings page to store admins. It's a good place to inform them of your fees or put any sales messages." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:787 +msgid "Please enter your PayPal email address or business ID you want to recieve fees at." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:786 +msgid "PayPal E-mail" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:772 +msgid "Fees to Collect (%)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:375 +#: includes/public/class-mp-checkout.php:341 +msgid "Email Address" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:299 +msgid "Sorry, your order was not completed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:126 +#: includes/common/payment-gateways/paypal-express.php:780 +msgid "You will be redirected to the PayPal site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:90 +#: includes/common/payment-gateways/skrill.php:94 +msgid "USD - U.S. Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:89 +msgid "TRY - Turkish lira" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:88 +#: includes/common/payment-gateways/stripe.php:170 +msgid "THB - Thai Baht" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:87 +msgid "TWD - Taiwan New Dollars" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:86 +#: includes/common/payment-gateways/pin.php:59 +#: includes/common/payment-gateways/skrill.php:88 +#: includes/common/payment-gateways/stripe.php:162 +msgid "SGD - Singapore Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:84 +msgid "RUB - Russian Rubles" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:82 +msgid "PHP - Philippine Pesos" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:81 +#: includes/common/payment-gateways/pin.php:58 +#: includes/common/payment-gateways/skrill.php:79 +#: includes/common/payment-gateways/stripe.php:145 +msgid "NZD - New Zealand Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:79 +msgid "MXN - Mexican Peso" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:78 +msgid "MYR - Malaysian Ringgits" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:77 +#: includes/common/payment-gateways/pin.php:64 +#: includes/common/payment-gateways/skrill.php:73 +#: includes/common/payment-gateways/stripe.php:112 +msgid "JPY - Japanese Yen" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:75 +#: includes/common/payment-gateways/pin.php:63 +#: includes/common/payment-gateways/skrill.php:66 +#: includes/common/payment-gateways/stripe.php:102 +msgid "HKD - Hong Kong Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:73 +msgid "GBP - Pound Sterling" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:68 +#: includes/common/payment-gateways/pin.php:62 +#: includes/common/payment-gateways/skrill.php:59 +msgid "CAD - Canadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:67 +msgid "BRL - Brazilian Real" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:66 +#: includes/common/payment-gateways/pin.php:56 +#: includes/common/payment-gateways/skrill.php:57 +msgid "AUD - Australian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:288 +msgid "There was an error processing your card: \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:163 +msgid "When running on a live site, Paymill recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:161 +#: includes/common/payment-gateways/pin.php:157 +#: includes/common/payment-gateways/simplify.php:103 +#: includes/common/payment-gateways/stripe.php:260 +#: includes/common/payment-gateways/wepay.php:153 +msgid "Force SSL?" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:151 +msgid "Accept Visa, Mastercard, Maestro UK, Discover and Solo cards directly on your site. You don't need a merchant account or gateway. Credit cards go directly to Paymill's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:131 +msgid "CVV2" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:72 +#: includes/common/payment-gateways/pin.php:61 +#: includes/common/payment-gateways/skrill.php:65 +#: includes/common/payment-gateways/stripe.php:95 +msgid "GBP - British Pound" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:71 +#: includes/common/payment-gateways/stripe.php:173 +msgid "TRY - Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:70 +#: includes/common/payment-gateways/paypal-chained-payments.php:85 +#: includes/common/payment-gateways/skrill.php:87 +#: includes/common/payment-gateways/stripe.php:161 +msgid "SEK - Swedish Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:69 +#: includes/common/payment-gateways/skrill.php:84 +msgid "RON - Romanian Leu New" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:68 +#: includes/common/payment-gateways/paypal-chained-payments.php:83 +#: includes/common/payment-gateways/skrill.php:82 +msgid "PLN - Polish Zloty" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:67 +#: includes/common/payment-gateways/paypal-chained-payments.php:80 +#: includes/common/payment-gateways/stripe.php:143 +msgid "NOK - Norwegian Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:66 +#: includes/common/payment-gateways/skrill.php:75 +#: includes/common/payment-gateways/stripe.php:125 +msgid "LTL - Lithuanian Litas" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:65 +#: includes/common/payment-gateways/paypal-chained-payments.php:69 +#: includes/common/payment-gateways/skrill.php:60 +#: includes/common/payment-gateways/stripe.php:78 +msgid "CHF - Swiss Franc" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:64 +#: includes/common/payment-gateways/skrill.php:76 +msgid "LVL - Latvian Lat" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:63 +#: includes/common/payment-gateways/paypal-chained-payments.php:74 +#: includes/common/payment-gateways/skrill.php:69 +msgid "ILS - Israeli Shekel" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:62 +#: includes/common/payment-gateways/skrill.php:71 +msgid "ISK - Iceland Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:61 +#: includes/common/payment-gateways/paypal-chained-payments.php:76 +#: includes/common/payment-gateways/skrill.php:68 +#: includes/common/payment-gateways/stripe.php:106 +msgid "HUF - Hungarian Forint" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:60 +#: includes/common/payment-gateways/paypal-chained-payments.php:71 +#: includes/common/payment-gateways/skrill.php:62 +#: includes/common/payment-gateways/stripe.php:86 +msgid "DKK - Danish Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:59 +#: includes/common/payment-gateways/skrill.php:67 +#: includes/common/payment-gateways/stripe.php:104 +msgid "HRK - Croatian Kuna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:58 +#: includes/common/payment-gateways/paypal-chained-payments.php:70 +#: includes/common/payment-gateways/skrill.php:61 +msgid "CZK - Czech Koruna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:57 +#: includes/common/payment-gateways/skrill.php:58 +msgid "BGN - Bulgarian Leva" +msgstr "" + +#: includes/common/payment-gateways/payflow/class-mp-gateway-worker-payflow.php:123 +msgid "There was an error connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:344 +msgid "This setting will log all PayFast communication to the \"payfast.log\" file." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:342 +msgid "Log Debugging Info?" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:335 +msgid "DO NOT INPUT A VALUE UNLESS YOU HAVE SET ONE IN THE SETTINGS SECTION OF YOUR PAYFAST SETTINGS." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:333 +msgid "PayFast Passphrase" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:323 +msgid "You can find your credentials on your integration page." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:321 +msgid "PayFast Merchant Credentials" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:311 +msgid "PayFast Mode" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:308 +msgid "PayFast is a payments processing service for South Africa. We make it safe for buyers to send money and easy for sellers to receive money. More Info »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:306 +msgid "PayFast Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:285 +msgid "Your payment via PayFast for this order totaling %s is complete. The transaction number is %s." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:278 +msgid "Your payment via PayFast for this order totaling %s is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:124 +msgid "Your PayFast transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:82 +#: includes/common/payment-gateways/payfast.php:83 +msgid "PayFast" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:157 +msgid "API error: - \"%s\"" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:198 +msgid "The payment request is under process" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:140 +msgid "Order: #" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:116 +msgid "You will be redirected to the Mollie site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:73 +msgid "%sMollie%s provides a fully PCI Compliant and secure way to collect payments via iDeal, Credit Card, Bancontact / Mister Cash, SOFORT Banking, Overbooking, Bitcoin, PayPal, paysafecard and AcceptEmail." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:53 +#: includes/common/payment-gateways/mollie.php:54 +#: includes/common/payment-gateways/mollie.php:195 +#: includes/common/payment-gateways/mollie.php:245 +msgid "Mollie" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:50 +#: includes/common/payment-gateways/paymill.php:56 +#: includes/common/payment-gateways/paypal-chained-payments.php:72 +#: includes/common/payment-gateways/pin.php:60 +#: includes/common/payment-gateways/skrill.php:64 +#: includes/common/payment-gateways/stripe.php:92 +msgid "EUR - Euro" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:306 +msgid "Access Key" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:300 +msgid "You must login to the Mijireh.com dashboard to obtain the Access Key." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:299 +msgid "Credentials" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:289 +msgid "Mijireh Checkout provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:269 +msgid "Mijireh Error: " +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:89 +msgid "You will be redirected to the Mijireh.com site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:87 +msgid "Your Mijireh transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:42 +#: includes/common/payment-gateways/mijireh.php:43 +#: includes/common/payment-gateways/mijireh.php:324 +msgid "Mijireh" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:145 +msgid "These are the manual payment instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:189 +msgid "This is the email text to send to those who have made free order checkouts. You should include your free order instructions / information here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:183 +msgid "This is the free order information to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:182 +msgid "Confirmation User Information" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:177 +msgid "This is the information to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:163 +msgid "If enabled, all free orders will be automatically marked as paid." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:159 +msgid "Payment Status" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:149 +msgid "This gateway is automatically activated if order totalling 0 and it can't be disabled" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:35 +#: includes/common/payment-gateways/free_orders.php:36 +#: includes/common/payment-gateways/free_orders.php:89 +msgid "Free Order" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:34 +#: includes/common/payment-gateways/free_orders.php:197 +msgid "Free Orders" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:515 +msgid "Sandbox API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:266 +#: includes/common/payment-gateways/eway31.php:542 +msgid "eWay Rapid 3.1 Payments (beta)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:403 +msgid "Hosted Payment Page Language" +msgstr "" + +#: includes/common/payment-gateways/eway.php:373 +msgid "Note when testing in sandbox mode it will use the default eWay test API credentials. Also, please note that cart total needs to be a whole number (e.g. 10.00) in order to generate a successful transaction, otherwise the transaction will fail." +msgstr "" + +#: includes/common/payment-gateways/eway.php:267 +msgid "You will be redirected to https://www.eway.com.au to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:380 +msgid "You have chosen to checkout using %s. Please confirm your order details and click \"Submit Order\" when finished." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:272 +#: includes/common/payment-gateways/paymill.php:131 +#: includes/common/payment-gateways/stripe.php:231 +msgid "Security Code " +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Enter in MM/YYYY or MM/YY format" +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Expiration" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:321 +msgid "Delim Data" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:307 +#: includes/common/payment-gateways/paypal-payflow.php:456 +msgid "This text will appear as the footer of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:287 +#: includes/common/payment-gateways/paypal-payflow.php:440 +msgid "Email Customer (on success)" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:278 +msgid "Authorize.net default is \",\". Otherwise, get this from your credit card processor. If the transactions are not going through, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:277 +msgid "Delimeter Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:193 +msgid "Held For Review" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:310 +#: includes/common/payment-gateways/payfast.php:314 +msgid "Test" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:300 +#: includes/common/payment-gateways/pin.php:170 +#: includes/common/payment-gateways/stripe.php:272 +msgid "Secret Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:283 +msgid "Select Your Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:97 +msgid "Your payment will be processed by the iDEAL network" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:208 +msgid "These are the CubePoints to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:203 +msgid "These are the CubePoints instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:266 +msgid "If enabled, all API calls will be made to https://test.bitpay.com." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:263 +msgid "Use Test Mode?" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:259 +msgid "If checked, response fron bitpay will be stored in log file, keep it disabled unless required." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:256 +msgid "Enable Debug Log" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:249 +msgid "Full Notifications" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:231 +#: includes/common/payment-gateways/eway31.php:499 +#: includes/common/payment-gateways/eway31.php:526 +#: includes/common/payment-gateways/mollie.php:83 +#: includes/common/shipping-modules/mp-fedex.php:269 +msgid "API Key" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:222 +msgid "You can now accept a payment from any country on Earth, with no risk of fraud. To use Bitpay, you need to signup on Bitpay. \\n After completing the signup process, you can get api keys at Bitpay API key. You can read more about Bitpay at Bitpay API. \\n Bitpay requires SSL(https) for payment notifications to work." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:61 +msgid "You will be redirected to bitpay.com, for bitcoin payment. It is completely safe." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:346 +msgid "You must login to the 2Checkout vendor dashboard to obtain the seller ID and secret word. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:345 +#: includes/common/payment-gateways/authorizenet-aim.php:239 +#: includes/common/payment-gateways/paymill.php:168 +#: includes/common/payment-gateways/paypal-express.php:704 +#: includes/common/payment-gateways/simplify.php:80 +#: includes/common/payment-gateways/stripe.php:265 +#: includes/common/payment-gateways/wepay.php:158 +msgid "API Credentials" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:325 +#: includes/common/payment-gateways/_bitpay.php:220 +#: includes/common/payment-gateways/_cubepoints.php:185 +#: includes/common/payment-gateways/_ideal.php:268 +#: includes/common/payment-gateways/_payway.php:255 +#: includes/common/payment-gateways/authorizenet-aim.php:219 +#: includes/common/payment-gateways/eway.php:352 +#: includes/common/payment-gateways/eway31.php:460 +#: includes/common/payment-gateways/free_orders.php:147 +#: includes/common/payment-gateways/manual-payments.php:126 +#: includes/common/payment-gateways/mijireh.php:287 +#: includes/common/payment-gateways/mollie.php:71 +#: includes/common/payment-gateways/paymill.php:149 +#: includes/common/payment-gateways/paypal-chained-payments.php:344 +#: includes/common/payment-gateways/paypal-payflow.php:376 +#: includes/common/payment-gateways/pin.php:145 +#: includes/common/payment-gateways/simplify.php:69 +#: includes/common/payment-gateways/skrill.php:121 +#: includes/common/payment-gateways/stripe.php:249 +#: includes/common/payment-gateways/wepay.php:119 +#: includes/common/shipping-modules/mp-fedex.php:243 +#: includes/common/shipping-modules/mp-flat-rate.php:63 +#: includes/common/shipping-modules/mp-pickup.php:140 +#: includes/common/shipping-modules/mp-table-rate.php:94 +#: includes/common/shipping-modules/mp-ups.php:122 +#: includes/common/shipping-modules/mp-usps.php:167 +#: includes/common/shipping-modules/mp-weight-rate.php:110 +msgid "%s Settings" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:136 +msgid "You will be redirected to the 2Checkout site to finalize your payment." +msgstr "" + +#: includes/common/helpers.php:169 includes/public/class-mp-checkout.php:1277 +msgid "Billing" +msgstr "" + +#: includes/common/helpers.php:144 +msgid "FREE" +msgstr "" + +#: includes/common/helpers.php:134 +msgid "Coupons:" +msgstr "" + +#: includes/common/helpers.php:95 +msgid "Qty" +msgstr "" + +#: includes/common/helpers.php:94 +msgid "Sku" +msgstr "" + +#: includes/common/data.php:59 +msgid "Zip Code" +msgstr "" + +#: includes/common/class-mp-taxes.php:336 +msgid "Standard Table" +msgstr "" + +#: includes/common/class-mp-product.php:2698 +msgid "Tweet" +msgstr "" + +#: includes/common/class-mp-product.php:2321 +msgid "Notification Preferences: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2320 +msgid "Edit Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2318 +msgid "Link: %s

    " +msgstr "" + +#: includes/common/class-mp-product.php:2317 +msgid "Current Inventory: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2316 +msgid "Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2314 +msgid "This message is being sent to notify you of low stock of a product in your online store according to your preferences.

    " +msgstr "" + +#: includes/common/class-mp-product.php:1817 +msgid "" +msgstr "" + +#: includes/common/class-mp-product.php:1427 +#: includes/common/class-mp-product.php:1430 +msgid "(tax incl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1422 +#: includes/common/class-mp-product.php:1425 +msgid "(tax excl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1300 +#: includes/common/class-mp-product.php:1315 +msgid "%s each" +msgstr "" + +#: includes/common/class-mp-product.php:988 +msgid "Choose Options" +msgstr "" + +#: includes/common/class-mp-product.php:526 +msgid "Choose a %s" +msgstr "" + +#: includes/common/class-mp-product.php:284 +#: includes/common/class-mp-product.php:292 +#: includes/common/class-mp-product.php:615 +msgid "We're sorry, we only have %d of this item in stock right now." +msgstr "" + +#: includes/common/class-mp-order.php:1456 +msgid "Shipped: Track Shipment" +msgstr "" + +#: includes/common/class-mp-order.php:1049 +msgid "Order Received" +msgstr "" + +#: includes/common/class-mp-order.php:1014 +msgid "In Process" +msgstr "" + +#: includes/common/class-mp-order.php:969 +msgid "Order #" +msgstr "" + +#: includes/common/class-mp-order.php:866 +msgid "Copy billing address to shipping address" +msgstr "" + +#: includes/common/class-mp-order.php:822 +#: includes/public/class-mp-checkout.php:1314 +msgid "Special Instructions" +msgstr "" + +#: includes/common/class-mp-order.php:817 +#: includes/common/payment-gateways/stripe.php:335 +msgid "Email" +msgstr "" + +#: includes/common/class-mp-order.php:813 +#: includes/common/payment-gateways/stripe.php:341 +#: includes/public/class-mp-checkout.php:416 +msgid "Phone" +msgstr "" + +#: includes/common/class-mp-order.php:791 +#: includes/common/payment-gateways/stripe.php:337 +msgid "State" +msgstr "" + +#: includes/common/class-mp-order.php:776 +msgid "Address 1" +msgstr "" + +#: includes/common/class-mp-order.php:766 +msgid "Last Name" +msgstr "" + +#: includes/common/class-mp-order.php:762 +msgid "First Name" +msgstr "" + +#: includes/common/class-mp-installer.php:677 +msgid "MarketPress requires a database update to continue working correctly. Go to update page" +msgstr "" + +#: includes/common/class-mp-installer.php:657 +msgid "MarketPress performed a quick automatic update successfully!" +msgstr "" + +#: includes/common/class-mp-installer.php:653 +msgid "Perform Update" +msgstr "" + +#: includes/common/class-mp-installer.php:647 +msgid "Please update each subsite in your WordPress network where you have older version of the MarketPress plugin." +msgstr "" + +#: includes/common/class-mp-installer.php:641 +msgid "Depending on the amount of products you have, this update could take quite some time. Please keep this window open while the update completes. If you have products with multiple variations, the progress bar may move slower, please don't exit the window." +msgstr "" + +#: includes/common/class-mp-installer.php:632 +msgid "Product Metadata" +msgstr "" + +#: includes/common/class-mp-installer.php:601 +msgid "MarketPress requires a database update to continue working correctly.
    Below you will find a list of items that require your attention." +msgstr "" + +#: includes/common/class-mp-installer.php:600 +msgid "Update MarketPress Data" +msgstr "" + +#: includes/common/class-mp-installer.php:530 +msgid "Update Data" +msgstr "" + +#: includes/common/class-mp-installer.php:67 +msgid "Complete!" +msgstr "" + +#: includes/common/class-mp-installer.php:66 +msgid "Upgrading Database...Please Wait..." +msgstr "" + +#: includes/common/class-mp-installer.php:64 +msgid "An error occurred while updating. Please refresh this page and try again." +msgstr "" + +#: includes/common/class-mp-cart.php:2447 +msgid "Some items in your cart have fallen below the quantity you currently have in your cart. We have adjusted the quantity in your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:2443 +msgid "Some items in your cart are no longer available. We have removed these items from your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:1566 +msgid "item" +msgstr "" + +#: includes/common/class-mp-cart.php:1563 +#: includes/common/class-mp-cart.php:1568 +msgid "items" +msgstr "" + +#: includes/common/class-mp-cart.php:1363 +msgid "Items/Products added to Cart will show here." +msgstr "" + +#: includes/common/class-mp-cart.php:1362 +msgid "Your shopping cart is empty." +msgstr "" + +#: includes/common/class-mp-cart.php:1357 +msgid "View Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1241 +#: includes/common/class-mp-cart.php:1298 +#: includes/public/class-mp-short-codes.php:159 +msgid "Adding..." +msgstr "" + +#: includes/common/class-mp-cart.php:1033 +msgid "Continue Shopping?" +msgstr "" + +#: includes/common/class-mp-cart.php:961 +msgid "Secure Checkout
    Shopping is always safe and secure." +msgstr "" + +#: includes/common/class-mp-cart.php:959 +msgid "You are about to submit your order!
    Please review your order details before continuing. You will be charged immediately upon clicking \"Submit Order\"." +msgstr "" + +#: includes/common/class-mp-cart.php:956 +msgid "Continue »" +msgstr "" + +#: includes/common/class-mp-cart.php:955 +msgid "Submit Order" +msgstr "" + +#: includes/common/class-mp-cart.php:818 +msgid "There are no items in your cart - go add some !" +msgstr "" + +#: includes/common/class-mp-cart.php:816 +msgid "The cart is disabled." +msgstr "" + +#: includes/common/class-mp-cart.php:735 +msgid "Estimated %s" +msgstr "" + +#: includes/common/class-mp-cart.php:717 +msgid "Estimated Shipping" +msgstr "" + +#: includes/common/class-mp-cart.php:697 +msgid "Product Total" +msgstr "" + +#: includes/common/class-mp-cart.php:670 includes/common/class-mp-cart.php:672 +msgid "Estimated Total (%s, %s)" +msgstr "" + +#: includes/common/class-mp-cart.php:668 +msgid "Estimated Total (%s)" +msgstr "" + +#: includes/common/class-mp-cart.php:666 includes/common/class-mp-cart.php:752 +msgid "Estimated Total" +msgstr "" + +#: includes/admin/widgets/product-list.php:247 +msgid "Show Thumbnail Placeholder image (if image is not set)" +msgstr "" + +#: includes/admin/widgets/cart.php:73 +msgid "Display product price" +msgstr "" + +#: includes/admin/widgets/cart.php:71 +msgid "Display product quantity" +msgstr "" + +#: includes/admin/widgets/cart.php:69 +msgid "Display product image" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:93 +msgid "General Shipping Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:773 +msgid "If you are having conflicts with the lightbox library from your theme or another plugin you should uncheck this." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:772 +msgid "Use Built-In Lightbox for Images?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:762 +msgid "Disable Large Image Display?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:688 +msgid "Show Product Image?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:682 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:684 +msgid "Show Tags List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:676 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:678 +msgid "Show Categories List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:671 +msgid "If enabled, description excerpt will be added above Add to cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:669 +msgid "Show Excerpt?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:665 +msgid "If enabled, users will be able to choose how many of the product they want to purchase before adding to their cart. If not checked, quantity could be change later on the cart page." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:663 +msgid "Show Quantity Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:649 +msgid "Settings related to the display of individual product pages." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:648 +msgid "Product Page Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:605 +msgid "Related Products Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:573 +msgid "Show Related Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:568 +msgid "Related Product Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:549 +msgid "Order Status Entries Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:510 +msgid "Sort Products By" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:497 +msgid "Products Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:492 +msgid "Paginate Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:478 +msgid "Excerpts Length" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:473 +msgid "Show Excerpts?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:450 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:746 +msgid "Image Alignment" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:412 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:708 +msgid "Custom Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:401 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:697 +msgid "Large - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:400 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:696 +msgid "Medium - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:399 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:695 +msgid "Thumbnail - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:397 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:693 +msgid "Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:386 +msgid "Select default placeholder image thumbnail when product image is not available (if empty, plugin's built-in image will be used)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:380 +msgid "Show default product placeholder thumbnail when product image is not available?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:374 +msgid "Show Product Thumbnail?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:369 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:658 +msgid "Redirect to cart page for immediate checkout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:368 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:657 +msgid "Stay on current product page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:366 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:655 +msgid "MarketPress supports two \"flows\" for adding products to the shopping cart. After adding a product to their cart, two things can happen:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:365 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:654 +msgid "Add To Cart Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:355 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:628 +msgid "Four" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:354 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:627 +msgid "Three" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:353 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:626 +msgid "Two" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:625 +msgid "One" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:349 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:622 +msgid "Set the number of products that show up in a grid row to best fit your theme" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:348 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:621 +msgid "How many products per row?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:342 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:609 +msgid "Display as grid" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:341 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:608 +msgid "Display as list" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:339 +msgid "Product Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:334 +msgid "Settings related to the display of product lists/grids." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:333 +msgid "Product List/Grid Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:314 +msgid "Show Twitter Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:309 +msgid "Twitter" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:303 +msgid "Show Share Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:297 +msgid "Recommend" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:296 +msgid "Like" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:294 +msgid "Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:283 +msgid "Show Facebook Like Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:278 +msgid "Facebook" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:257 +msgid "Show \"Pin It\" Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:252 +msgid "Pinterest" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:246 +msgid "Social Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:193 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:202 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:211 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:220 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:229 +#: includes/multisite/class-mp-admin-multisite.php:532 +#: includes/multisite/class-mp-admin-multisite.php:541 +#: includes/multisite/class-mp-admin-multisite.php:550 +msgid "Choose a Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:191 +msgid "This page will be used as the root for your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:168 +#: includes/multisite/class-mp-admin-multisite.php:586 +msgid "Create Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "uncropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "cropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:87 +#: includes/multisite/class-mp-admin-multisite.php:121 +#: includes/multisite/class-mp-admin-multisite.php:620 +msgid "An error occurred while creating the store page. Please try again." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:66 +msgid "Choose the gateway(s) that you would like to be available for checkout." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:65 +msgid "Enabled Gateways" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:78 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:146 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:179 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:213 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:274 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:307 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:341 +msgid "Text" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:71 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:139 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:172 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:206 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:267 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:300 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:334 +msgid "Subject" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:52 +msgid "Notification Email" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:510 +msgid "Enabling this option will display label `excl. tax` or `incl. tax` after price" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:509 +msgid "Display tax label?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:504 +msgid "Enabling this option will show Price + Tax, eg. if your price is 100 and your tax 20, your price will be 120" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:416 +#: includes/multisite/class-mp-admin-multisite.php:234 +msgid "Price Format" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:366 +msgid "Enabling this field will display a textbox on the shipping checkout page for users to enter special instructions for their order. Useful for product personalization, etc." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:365 +msgid "Show Special Instructions Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:360 +msgid "Universal" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:359 +msgid "Old" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1167 +#: includes/admin/store-settings/class-mp-store-settings-general.php:358 +msgid "New" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:353 +msgid "If you already use Google Analytics for your website, you can track detailed ecommerce information by enabling this setting. Choose whether you are using the new asynchronous or old tracking code. Before Google Analytics can report ecommerce activity for your website, you must enable ecommerce tracking on the profile settings page for your website. Also keep in mind that some gateways do not reliably show the receipt page, so tracking may not be accurate in those cases. It is recommended to use the PayPal gateway for the most accurate data. More information »" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:347 +msgid "Do you want to display the product price on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:346 +msgid "Show product price on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:340 +msgid "Do you want to display the product quantity on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:339 +msgid "Show product quantity on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:333 +msgid "Do you want to display the product image on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:332 +msgid "Show product image on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:327 +msgid "This option hide floating Mini Cart in top right corner." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:326 +msgid "Disable Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:316 +msgid "If unchecked your Orders admin page will be hidden" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:315 +msgid "Show admin Orders page?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:309 +msgid "Disable Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:303 +msgid "Force Login?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:297 +msgid "Hide Out of Stock Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:555 +msgid "This will prevent multiples of the same downloadable product form being added to the cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:554 +msgid "Limit Digital Products Per-order?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:268 +msgid "If you're having issues downloading large files and have worked with your hosting provider to increase your memory limits, try enabling this - just keep in mind, it's not as secure!" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:267 +msgid "Use Alternative Download Method?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:252 +msgid "Download Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:230 +msgid "Change product post type" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:51 +msgid "%s Capabilities" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-addons.php:47 +msgid "Store Settings: Add Ons: %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:254 +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:56 +msgid "Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Edit Product Attribute %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:246 +msgid "Exporters" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:238 +msgid "Short Codes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:207 +msgid "An appropriate message for key \"%s\" could not be found." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:204 +msgid "Product attribute updated successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:203 +msgid "Product attribute added successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +msgid "Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +#: includes/admin/store-settings/class-mp-store-settings-addons.php:121 +msgid "Store Settings: Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "Store Settings: Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:118 +msgid "Store Settings: Product Tags" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:117 +msgid "Store Settings: Product Categories" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Store Settings: Product Attributes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +msgid "Store Settings: Payments" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:114 +msgid "Store Settings: Shipping" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +#: includes/admin/class-mp-store-settings-admin.php:226 +msgid "Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +msgid "Store Settings: Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:112 +msgid "Store Settings: Presentation" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:111 +msgid "Store Settings: General" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1489 +msgid "Select a Product" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1447 +msgid "Reset to Defaults" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1446 +msgid "Insert Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1202 +#: includes/admin/class-mp-shortcode-builder.php:1227 +#: includes/admin/class-mp-shortcode-builder.php:1252 +msgid "The text to show in the link." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1196 +#: includes/admin/class-mp-shortcode-builder.php:1221 +#: includes/admin/class-mp-shortcode-builder.php:1246 +msgid "Whether to return a clickable link or url." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1177 +msgid "Whether to display the cart only on store pages or not." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1171 +msgid "Whether to show or hide the product price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1165 +msgid "Whether to show or hide the product quantity." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1159 +msgid "Whether to show or hide the product image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1153 +msgid "The text displayed before the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1147 +msgid "The title of the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1058 +#: includes/admin/class-mp-shortcode-builder.php:1121 +msgid "A label to prepend to the price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1032 +#: includes/admin/class-mp-shortcode-builder.php:1127 +msgid "What context for display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1004 +msgid "Set the alignment of the image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:998 +msgid "Set a custom pixel width/height. If omitted defaults to the size set by \"context\"." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:993 +msgid "Widget" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:988 +msgid "What context for preset size options." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:982 +#: includes/admin/class-mp-shortcode-builder.php:1026 +#: includes/admin/class-mp-shortcode-builder.php:1052 +#: includes/admin/class-mp-shortcode-builder.php:1077 +#: includes/admin/class-mp-shortcode-builder.php:1096 +#: includes/admin/class-mp-shortcode-builder.php:1115 +msgid "The ID of the product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:963 +msgid "Whether to display the product meta (e.g. price, buy button)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:738 +#: includes/admin/class-mp-shortcode-builder.php:905 +#: includes/admin/class-mp-shortcode-builder.php:958 +#: includes/admin/class-mp-shortcode-builder.php:992 +#: includes/admin/class-mp-shortcode-builder.php:1035 +#: includes/admin/class-mp-shortcode-builder.php:1130 +#: includes/admin/class-mp-shortcode-builder.php:1349 +msgid "List" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:957 +#: includes/admin/class-mp-shortcode-builder.php:991 +#: includes/admin/class-mp-shortcode-builder.php:1034 +#: includes/admin/class-mp-shortcode-builder.php:1129 +msgid "Single" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:953 +msgid "Whether and what context of image size to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:948 +msgid "Full" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:943 +msgid "Whether and what type of content to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:937 +msgid "Whether to display the product title." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:931 +msgid "The ID of the product to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:747 +#: includes/admin/class-mp-shortcode-builder.php:914 +msgid "Hide" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:746 +#: includes/admin/class-mp-shortcode-builder.php:913 +msgid "Show" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:744 +#: includes/admin/class-mp-shortcode-builder.php:911 +msgid "Whether or not to show the product filters." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:724 +#: includes/admin/class-mp-shortcode-builder.php:891 +#: includes/admin/class-mp-shortcode-builder.php:1335 +msgid "Limits list to a specific product tag." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:713 +#: includes/admin/class-mp-shortcode-builder.php:880 +#: includes/admin/class-mp-shortcode-builder.php:1324 +msgid "Limits list to a specific product category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:706 +#: includes/admin/class-mp-shortcode-builder.php:873 +#: includes/admin/class-mp-shortcode-builder.php:1317 +msgid "Direction to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:684 +#: includes/admin/class-mp-shortcode-builder.php:851 +#: includes/admin/class-mp-shortcode-builder.php:1295 +msgid "What field to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:678 +#: includes/admin/class-mp-shortcode-builder.php:845 +#: includes/admin/class-mp-shortcode-builder.php:1283 +msgid "How many products to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:672 +#: includes/admin/class-mp-shortcode-builder.php:839 +#: includes/admin/class-mp-shortcode-builder.php:1277 +msgid "The page number to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:666 +#: includes/admin/class-mp-shortcode-builder.php:833 +#: includes/admin/class-mp-shortcode-builder.php:1271 +msgid "Whether to paginate the product list. This is useful to only show a subset." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:808 +msgid "How many related items to show." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:790 +msgid "How to relate the products" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:784 +msgid "The product to show related items for." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:765 +msgid "The maximum number of products to display" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:647 +msgid "Comma separated list of tags (term_id) to include. For example, include=5,27 means tags that have the term_id 5 or 27 will be the only tags displayed. Defaults to include everything." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:641 +msgid "Comma separated list of tags (term_id) to exclude. For example, exclude=5,27 means tags that have the term_id 5 or 27 will NOT be displayed. Defaults to exclude nothing." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:633 +#: includes/admin/class-mp-shortcode-builder.php:1420 +msgid "Sort order." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:629 +#: includes/admin/class-mp-shortcode-builder.php:1416 +msgid "Count" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:626 +#: includes/admin/class-mp-shortcode-builder.php:1413 +msgid "Order of the tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:620 +msgid "The text/space between tags)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:616 +msgid "UL with a class of \"wp-tag-cloud\"" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:615 +msgid "separated by whitespace defined by \"separator\" parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:613 +msgid "Format of the cloud display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:607 +msgid "The number of actual tags to display in the cloud. (Use \"0\" to display all tags.)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:601 +msgid "Unit of measure as pertains to the smallest and largest values. This can be any CSS length value, e.g. pt, px, em, %." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:595 +msgid "The text size of the tag with the largest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:589 +msgid "The text size of the tag with the smallest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:570 +msgid "The \"tabindex\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:564 +msgid "The \"name\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:558 +msgid "The \"id\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:552 +msgid "Which category ID is selected." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:540 +msgid "The max depth. This is ignored unless hierarchical is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:536 +#: includes/multisite/template-functions.php:816 +msgid "No Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:414 +#: includes/admin/class-mp-shortcode-builder.php:546 +msgid "Calculates link or post counts by including items from child categories. If show_counts and hierarchical are true this is automatically set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:409 +msgid "Value of n (some number) specifies the depth (or level) to descend in displaying Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:408 +msgid "Show only top level Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:407 +msgid "All Categories displayed in flat (no indent) form (overrides hierarchical)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:406 +msgid "All Categories and child Categories (Default)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:402 +msgid "This parameter controls how many levels in the hierarchy of Categories are to be included in the list of Categories. NOTE: The \"hierarchical\" argument, which is disabled by default, will override the depth argument, unless it is true. When the argument is false, it will display all of the categories. When it is enabled it will use the value in the \"depth\" argument." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:396 +#: includes/admin/class-mp-shortcode-builder.php:1394 +msgid "Sets the number of Categories to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:390 +#: includes/admin/class-mp-shortcode-builder.php:534 +msgid "Set the text to show when no categories are listed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:384 +msgid "Set the title and style of the outer list item. If present but empty, the outer list item will not be displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:378 +#: includes/admin/class-mp-shortcode-builder.php:528 +msgid "Display sub-categories as inner list items (below the parent list item) or inline." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:368 +#: includes/admin/class-mp-shortcode-builder.php:511 +msgid "Exclude category-tree from the results. The parameter include must be empty. If the hierarchical parameter is true, then use exclude instead of exclude_tree." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:354 +msgid "Only include these categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:340 +#: includes/admin/class-mp-shortcode-builder.php:356 +#: includes/admin/class-mp-shortcode-builder.php:370 +#: includes/admin/class-mp-shortcode-builder.php:496 +#: includes/admin/class-mp-shortcode-builder.php:513 +msgid "Select Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:338 +#: includes/admin/class-mp-shortcode-builder.php:494 +msgid "Exclude one or more categories from the results. The parameter include must be empty." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:332 +msgid "Set a URI for an image (usually an rss feed icon) to act as a link to each categories' rss-2 feed. This parameter overrides the feed parameter. There is no default for this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:320 +msgid "Display a link to each category's rss-2 feed and set the link text to display. The default is no text and no feed displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:313 +#: includes/admin/class-mp-shortcode-builder.php:487 +msgid "Any" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:307 +#: includes/admin/class-mp-shortcode-builder.php:481 +msgid "Only display categories that are children of the category identified by this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:301 +msgid "Sets whether a category's description is inserted into the title attribute of the links created (i.e. <a title=\"<em>Category Description</em>\" href=\"...)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:295 +#: includes/admin/class-mp-shortcode-builder.php:475 +msgid "Toggles the display of categories with no posts." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:289 +#: includes/admin/class-mp-shortcode-builder.php:469 +#: includes/admin/class-mp-shortcode-builder.php:1388 +msgid "Toggles the display of the current count of posts in each category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:279 +msgid "Style to display the categories list in. A value of list displays the categories as list items while none generates no special display method (the list items are separated by
    tags)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:269 +#: includes/admin/class-mp-shortcode-builder.php:449 +#: includes/admin/class-mp-shortcode-builder.php:1378 +msgid "Sort order for categories (either ascending or descending)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:259 +#: includes/admin/class-mp-shortcode-builder.php:439 +#: includes/admin/class-mp-shortcode-builder.php:1368 +msgid "Sort categories alphabetically, by unique Category ID, or by the count of posts in that Category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:253 +#: includes/admin/class-mp-shortcode-builder.php:433 +msgid "If a value is entered, causes the display of a link to all categories if the style is set to list." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:219 +msgid "Select an Action" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:217 +msgid "What would you like to do?" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:216 +#: includes/admin/class-mp-shortcode-builder.php:1522 +msgid "Add E-Commerce Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:197 +msgid "Display a list of links to your store pages." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:196 +msgid "Display a link or url to the order status page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:195 +msgid "Display a link or url to the current products list page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:194 +msgid "Display a link or url to the current store page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:193 +msgid "Display a link or url to the current shopping cart page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:192 +msgid "Display the cart widget." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:191 +msgid "Display the full product meta box with price and buy now/add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:190 +msgid "Display the product stock." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:189 +msgid "Display the product SKU number(s)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:188 +msgid "Display the product price (and sale price)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:187 +msgid "Display the buy or add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:186 +msgid "Display the featured image of a given product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:185 +msgid "Display a single product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:184 +msgid "Display a list of products according to preference." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:183 +msgid "Display products related to the one being viewed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:182 +msgid "Display a list of popular products ordered by sales." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:180 +msgid "Display an HTML dropdown of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:179 +msgid "Display an HTML list of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:178 +msgid "Display a cloud or list of your product tags." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:655 +msgid "Setup your payment gateway" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:643 +#: includes/admin/class-mp-setup-wizard.php:649 +msgid "Other Gateways" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:617 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:150 +msgid "Select which calculated shipping methods the customer will be able to choose from." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:601 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:134 +#: includes/public/class-mp-checkout.php:82 +msgid "Shipping Method" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:568 +msgid "I want to charge shipping" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:523 +#: includes/admin/store-settings/class-mp-store-settings-general.php:503 +msgid "Show Price + Tax?" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:507 +msgid "I.e. Taxes, VAT, GST, etc" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:491 +#: includes/admin/store-settings/class-mp-store-settings-general.php:471 +msgid "Current Rates" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:473 +msgid "Default Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:434 +#: includes/admin/class-mp-setup-wizard.php:442 +#: includes/admin/store-settings/class-mp-store-settings-general.php:386 +#: includes/admin/store-settings/class-mp-store-settings-general.php:394 +#: includes/multisite/class-mp-admin-multisite.php:204 +#: includes/multisite/class-mp-admin-multisite.php:212 +msgid "Select a Currency" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:414 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:105 +msgid "Choose Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:411 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:103 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:104 +msgid "All Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:410 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:102 +msgid "These are the countries that you will ship to." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:409 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:101 +msgid "Target Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:401 +msgid "Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:387 +#: includes/admin/store-settings/class-mp-store-settings-general.php:640 +msgid "Zip/Postal Code Label" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:352 +#: includes/admin/store-settings/class-mp-store-settings-general.php:606 +msgid "Select a State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:335 +#: includes/admin/store-settings/class-mp-store-settings-general.php:590 +msgid "Select A Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:332 +#: includes/admin/store-settings/class-mp-store-settings-general.php:587 +msgid "Select a Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:324 +msgid "Location" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:304 +#: includes/admin/class-mp-setup-wizard.php:312 +#: includes/admin/class-mp-store-settings-admin.php:129 +#: includes/admin/class-mp-store-settings-admin.php:262 +msgid "Quick Setup" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:289 +msgid "MarketPress setup is not complete! Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2479 +msgid "Enter your product name here" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2440 +msgid "Select a %s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2426 +msgid "Each product variation needs to have product attributes assigned to it so the system knows how to differentiate one product variation from the other. It is important that you assign a category to this product before choosing any attributes." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2409 +msgid "If you would like this variation to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2320 +msgid "Sale Price (if applicable)" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2281 +msgid "If you would like the description to be different than the main product enter it here." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2229 +msgid "Image" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2202 +#: includes/admin/class-mp-shortcode-builder.php:226 +msgid "Attributes" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2166 +msgid "Create your product variations here. You can reorder variations by using the number to left of each variation, or delete one by clicking the \"x\" to the right of each variation. NOTE: The variation that shows up first in this list will be considered the \"main variation\". The details from this variation will be used in product listings." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2061 +#: includes/admin/class-mp-products-admin.php:2332 +msgid "Value must be less than regular price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2043 +#: includes/admin/class-mp-products-admin.php:2306 +msgid "Regular Price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2023 +#: includes/admin/class-mp-products-admin.php:2286 +msgid "External URL" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1988 +#: includes/admin/class-mp-products-admin.php:2245 +msgid "Enter the quantity that you have available to sell." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1987 +#: includes/admin/class-mp-products-admin.php:2244 +msgid "Inventory Count" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1977 +#: includes/admin/class-mp-products-admin.php:2234 +msgid "Track Inventory?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1871 +msgid "%1$sProduct Images%2$s %3$sAdd images of the product. The first image on the list is the featured image for this product (you can reorder images on the list)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1806 +msgid "Add variations for this product. e.g. If you are selling t-shirts, you can create Color & Size variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1804 +msgid "%3$sAdd variations for%2$s %1$sProduct%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1776 +msgid "This product has a multiple variations %1$s(e.g. Multiple colors, sizes)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1775 +msgid "This is a unique product without variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1700 +msgid "Extra Shipping Cost %1$s(if applicable)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1659 +#: includes/admin/class-mp-products-admin.php:2112 +#: includes/admin/class-mp-products-admin.php:2359 +msgid "Weight" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1636 +#: includes/admin/class-mp-products-admin.php:2098 +#: includes/admin/class-mp-products-admin.php:2416 +msgid "Please enter a valid tax rate" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1531 +msgid "Limit Per Order %1$s(limit the number of the item a shopper can buy per order)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1513 +msgid "SKU %1$s(Stock Keeping Unit)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "%1$sPrice, Inventory & Variants%2$s %3$sSet price, manage inventory and create Product Variants (if appropriate for your product).%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "Product Variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1480 +msgid "External / Affiliate Link" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1471 +msgid "Digital Download" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1470 +msgid "Physical / Tangible Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1464 +msgid "Product Kind %1$s(Physical Product, Digital, etc)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1426 +msgid "Choose Products" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1420 +msgid "If you would like, you can choose specific related products instead of using the ones generated by MarketPress" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1019 +msgid "Changes saved successfully" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:826 +msgid "Option cannot be saved. Try again." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:821 +msgid "Option saved successfully." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:467 +msgid "Img" +msgstr "" + +#: includes/admin/class-mp-product-attributes-list-table.php:57 +msgid "Product attribute(s) deleted successfully." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:162 +msgid "- Create New Variation -" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:144 +msgid "Only lowercase letters and dashes (-) are allowed." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:139 +msgid "If a slug is not entered, it will be generated automatically. Max 32 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:138 +#: includes/admin/class-mp-product-attributes-list-table.php:23 +msgid "Slug" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:130 +msgid "Max 45 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:123 +msgid "Use the numbers on the left to sort. To delete - click the \"X\" to the right of each row." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:122 +msgid "Attribute Options" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:121 +msgid "Add Option" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:105 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:523 +msgid "Sort Order" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:87 +msgid "Alphabetical" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:86 +msgid "ID" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:84 +msgid "Select how the options will be sorted." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:82 +msgid "Sort By" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:75 +msgid "The name of the attribute (e.g. color, size, etc)" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:74 +msgid "Attribute Name" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:69 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Product Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Product Attributes" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:71 +msgid "You can choose to make this page one of the following core store pages." +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:66 +msgid "Network Store Base" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:61 +msgid "Checkout Page" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:52 +msgid "Store Page Settings" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1108 +msgid "Display billing/shipping info for this customer" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1097 +msgid "View order “%s”" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1072 +msgid "Flag as:" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:952 +msgid "Move To Trash" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:948 +msgid " Received" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:927 +msgid "Enter coupon code here" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:812 +msgid "The order status could not be updated due to unexpected error. Please try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:740 +msgid "An invalid bulk action was requested. Please go back and try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:692 +msgid "The order status for order ID %1$s was updated successfully." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:688 +msgid "Order statuses successfully updated." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:530 +msgid "Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:518 +msgid "Actual Shipping Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:513 +msgid "Method Paid For" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:504 +msgid "Amount Collected" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:477 +msgid "DHL" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:408 +msgid "There is no IPN history to show at this time" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:345 +msgid "Type" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:343 +msgid "Gateway" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:301 +#: includes/common/template-functions.php:528 +msgid "Order History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:291 +msgid "IPN History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:283 +msgid "Customer Info" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:279 +msgid "Order Details" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:157 +msgid "All Dates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:320 +msgid "Add Pages to Menu" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:318 +msgid "Add-ons" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:317 +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "User Capabilities" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:316 +#: includes/admin/class-mp-setup-wizard.php:631 +#: includes/admin/store-settings/class-mp-store-settings-payments.php:50 +msgid "Payment Gateways" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:315 +msgid "Shipping Rates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:312 +msgid "Configure" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:309 +#: includes/admin/class-mp-products-admin.php:466 +#: includes/admin/class-mp-shortcode-builder.php:797 +msgid "Tags" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:308 +#: includes/admin/class-mp-products-admin.php:465 +msgid "Categories" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:300 +msgid "Manage" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:297 +msgid "Here's some quick links to manage your store and products." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:288 +msgid "low in stock" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:287 +msgid "%s product" +msgid_plural "%s products" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-dashboard-widgets.php:280 +msgid "received" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:279 +#: includes/admin/class-mp-dashboard-widgets.php:283 +msgid "%s order" +msgid_plural "%s orders" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-dashboard-widgets.php:276 +msgid "Stock & Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:261 +msgid "Last 30 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:256 +msgid "Last 7 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:251 +msgid "Yesterday" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:248 +#: includes/admin/class-mp-dashboard-widgets.php:253 +#: includes/admin/class-mp-dashboard-widgets.php:258 +#: includes/admin/class-mp-dashboard-widgets.php:263 +msgid " Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:246 +msgid "Today" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:241 +msgid "Welcome back! Here's a quick summary of your store's performance." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:196 +#: includes/admin/class-mp-products-admin.php:895 +msgid "No products out of stock." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:136 +#: includes/admin/class-mp-products-admin.php:839 +msgid "Stock Level" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:135 +#: includes/admin/class-mp-products-admin.php:838 +msgid "Variation" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:121 +msgid "Low Stock (%s)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:116 +msgid "Store Management" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:115 +msgid "Store Reports" +msgstr "" + +#: includes/admin/class-mp-ajax.php:579 +#: includes/admin/class-mp-orders-admin.php:520 +#: includes/common/payment-gateways/2checkout.php:370 +#: includes/common/payment-gateways/authorizenet-aim.php:264 +#: includes/common/payment-gateways/mollie.php:93 +#: includes/common/payment-gateways/paymill.php:196 +#: includes/common/payment-gateways/pin.php:190 +#: includes/common/payment-gateways/skrill.php:157 +#: includes/common/payment-gateways/skrill.php:168 +#: includes/common/payment-gateways/wepay.php:143 +#: includes/public/class-mp-checkout.php:404 +msgid "Select One" +msgstr "" + +#: includes/admin/class-mp-ajax.php:511 +msgid "Oops... we could not locate any orders by that ID. Please double check your order ID and try again." +msgstr "" + +#: includes/admin/class-mp-ajax.php:482 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:166 +#: includes/multisite/class-mp-admin-multisite.php:584 +msgid "Edit Page" +msgstr "" + +#: includes/admin/class-mp-ajax.php:346 +msgid "Cancel " +msgstr "" + +#: includes/admin/class-mp-ajax.php:345 +msgid "Save " +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "Edit Description" +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "HTML Markup" +msgstr "" + +#: includes/admin/class-mp-ajax.php:333 +msgid "Plain Text Only" +msgstr "" + +#: includes/admin/class-mp-ajax.php:329 +msgid "Additional Content / Information for this Variation" +msgstr "" + +#: includes/admin/class-mp-ajax.php:317 +#: includes/admin/class-mp-products-admin.php:1762 +msgid "Allow this product to be purchased even if it's out of stock" +msgstr "" + +#: includes/admin/class-mp-ajax.php:313 +#: includes/admin/class-mp-products-admin.php:1711 +msgid "Track Product Inventory" +msgstr "" + +#: includes/admin/class-mp-ajax.php:300 +msgid "Extra Shipping Cost (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:295 +msgid "Ounces:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:294 +msgid "Pounds:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:292 +msgid "Kilograms:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:287 +#: includes/admin/class-mp-products-admin.php:1649 +msgid "Charge Shipping" +msgstr "" + +#: includes/admin/class-mp-ajax.php:273 +#: includes/admin/class-mp-products-admin.php:1623 +#: includes/admin/store-settings/class-mp-store-settings-general.php:454 +msgid "Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:272 +#: includes/admin/class-mp-products-admin.php:1622 +#: includes/admin/class-mp-products-admin.php:2090 +#: includes/admin/class-mp-products-admin.php:2408 +msgid "Special Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:271 +#: includes/admin/class-mp-products-admin.php:1625 +#: includes/admin/class-mp-products-admin.php:2092 +msgid "If you would like this product to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-ajax.php:268 +#: includes/admin/class-mp-products-admin.php:1599 +msgid "Charge Taxes (Special Rate)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:256 +#: includes/admin/class-mp-products-admin.php:1593 +#: includes/admin/class-mp-products-admin.php:2077 +#: includes/admin/class-mp-products-admin.php:2348 +msgid "End Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:255 +#: includes/admin/class-mp-products-admin.php:1589 +#: includes/admin/class-mp-products-admin.php:2072 +msgid "Start Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:1568 +msgid "Enter Sale Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:250 +#: includes/admin/class-mp-products-admin.php:1547 +msgid "Set up a Sale for this Product" +msgstr "" + +#: includes/admin/class-mp-ajax.php:206 includes/admin/class-mp-ajax.php:223 +msgid "Enter " +msgstr "" + +#: includes/admin/class-mp-ajax.php:193 +msgid "Browse" +msgstr "" + +#: includes/admin/class-mp-ajax.php:184 includes/admin/class-mp-ajax.php:192 +msgid "http://" +msgstr "" + +#: includes/admin/class-mp-ajax.php:183 +msgid "External Product URL" +msgstr "" + +#: includes/admin/class-mp-ajax.php:237 +msgid "Limit Per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:177 +#: includes/admin/class-mp-products-admin.php:1520 +msgid "Enter Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:174 +#: includes/admin/class-mp-products-admin.php:1512 +msgid "Enter SKU" +msgstr "" + +#: includes/admin/class-mp-ajax.php:173 +msgid "(Stock Keeping Unit)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:158 +msgid "Remove Image" +msgstr "" + +#: includes/admin/class-mp-ajax.php:74 +msgid "Variation Draft" +msgstr "" + +#: includes/admin/class-mp-admin.php:296 +#: includes/admin/class-mp-dashboard-widgets.php:70 +msgid "Please wait...saving in progress..." +msgstr "" + +#: includes/admin/class-mp-admin.php:295 +#: includes/admin/class-mp-dashboard-widgets.php:69 +msgid "Input is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:294 +#: includes/admin/class-mp-dashboard-widgets.php:68 +msgid "Valid number is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:292 +#: includes/admin/class-mp-dashboard-widgets.php:66 +msgid "Delete %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:291 +#: includes/admin/class-mp-dashboard-widgets.php:65 +msgid "Delete %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:290 +#: includes/admin/class-mp-dashboard-widgets.php:64 +msgid "Update inventory for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:289 +#: includes/admin/class-mp-dashboard-widgets.php:63 +msgid "Update inventory for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:288 +#: includes/admin/class-mp-dashboard-widgets.php:62 +msgid "Update price for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:287 +#: includes/admin/class-mp-dashboard-widgets.php:61 +msgid "Update prices for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:285 +#: includes/admin/class-mp-dashboard-widgets.php:59 +msgid "Creating variations, please wait..." +msgstr "" + +#: includes/admin/class-mp-admin.php:96 +msgid "The following payment gateways have been deprecated, Cubepoints, Bitpay, iDEAL, Skrill, Google Checkout. If you were using one of these gateways, please setup a new payment gateway here." +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:61 +msgid "Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:71 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:71 +#: includes/common/class-mp-gdpr.php:399 includes/common/class-mp-order.php:872 +#: includes/common/helpers.php:164 includes/public/class-mp-checkout.php:1434 +msgid "Shipping Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:66 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:66 +#: includes/common/class-mp-gdpr.php:392 includes/common/class-mp-order.php:864 +#: includes/common/helpers.php:163 includes/public/class-mp-checkout.php:1427 +msgid "Billing Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:61 +msgid "Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:258 +msgid "Shipping Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:256 +msgid "Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:235 +msgid "Payment Method: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:79 +msgid "The dir %s not exist or not writeable" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:239 +msgid "Shop header/logo" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:233 +msgid "Choose a template" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:226 +msgid "Template Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:221 +msgid "Disable automatic creation/attachment of invoices when only free products are ordered" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:220 +msgid "Disable for free products" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:216 +msgid "Attach invoice to" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:214 +msgid "Customer Order Shipped email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:212 +msgid "Customer New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:211 +msgid "Admin New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:206 +msgid "download" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:205 +msgid "How do you want to view the PDF?" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:203 +msgid "Open the PDF in a new browser tab/window" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:202 +msgid "Download the PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:158 +msgid "Export PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:103 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:106 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:109 +msgid "You can't download this order invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:76 +msgid "Invalid Request" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:72 +msgid "Order not exist!" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:67 +msgid "Invalid ID" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1293 +msgid "Coupon added successfully" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1292 +msgid "Please enter a code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1247 +msgid "No end" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1200 +msgid "Valid Dates" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1195 +msgid "Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1027 +msgid "No Coupons found in Trash" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1026 +msgid "No Coupons Found" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1025 +msgid "Search Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1024 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1028 +msgid "View Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1023 +msgid "New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1020 +msgid "Create New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1017 +msgid "Manage Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1002 +msgid "An error occurred while removing your coupon. Please try again." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:964 +msgid "Coupon can't be applied to this cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:951 +msgid "Invalid coupon code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:794 +msgid "Help Text" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:789 +msgid "Form Title" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:783 +msgid "Coupons Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:764 +msgid "End Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:758 +msgid "Does coupon have an end date?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:696 +msgid "Select Products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:688 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:723 +#: includes/common/payment-gateways/paypal-payflow.php:402 +msgid "User" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:638 +msgid "Max Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:636 +msgid "Enter the maximum number of times this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:623 +msgid "Leave blank to allow all other coupons." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:622 +msgid "Select combinable coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:618 +msgid "Can this coupon be combined with other coupons?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:613 +msgid "Apply to each applicable item once per cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:612 +msgid "Apply to each applicable item and quantity ordered" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:609 +msgid "How should the discount amount be applied?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:605 +msgid "Discount Amount" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:604 +msgid "Value must either be a decimal number or a percentage" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:602 +msgid "If you would like to give a percentage-based discount make sure to include the percent (%) symbol. Otherwise, the discount will be applied as a fixed amount off." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:595 +msgid "Letters and Numbers only." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:589 +msgid "Coupon Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:447 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:795 +msgid "More than one code? That's OK! Just be sure to enter one at a time." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:444 +msgid "Apply Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:314 +msgid "Coupon Discounts" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:89 +msgid "1 add-on disabled" +msgid_plural "%s add-ons disabled" +msgstr[0] "" +msgstr[1] "" + +#: includes/addons/class-mp-addons-list-table.php:84 +msgid "1 add-on enabled" +msgid_plural "%s add-ons enabled" +msgstr[0] "" +msgstr[1] "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Disabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Enable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:129 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:67 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:135 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:168 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:202 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:263 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:296 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:330 +msgid "Enabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +msgid "Disable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:34 +msgid "Disable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:33 +msgid "Enable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:21 +#: includes/admin/class-mp-products-admin.php:2280 +#: includes/common/class-mp-product.php:2916 +msgid "Description" +msgstr "" + +#: includes/common/template-functions.php:2889 +#: includes/multisite/template-functions.php:407 +msgid "Popularity (Least Popular - Most Popular)" +msgstr "" + +#: includes/common/template-functions.php:2888 +#: includes/multisite/template-functions.php:406 +msgid "Popularity (Most Popular - Least Popular)" +msgstr "" + +#: includes/common/template-functions.php:2885 +#: includes/multisite/template-functions.php:403 +msgid "Name (Z-A)" +msgstr "" + +#: includes/common/template-functions.php:2884 +#: includes/multisite/template-functions.php:402 +msgid "Name (A-Z)" +msgstr "" + +#: includes/common/template-functions.php:2883 +#: includes/multisite/template-functions.php:401 +msgid "Release Date (Oldest to Latest)" +msgstr "" + +#: includes/common/template-functions.php:2882 +#: includes/multisite/template-functions.php:400 +msgid "Release Date (Latest to Oldest)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:284 +msgid "paid" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "One Time Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Customer Counter" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Daily Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:182 +msgid "For the most accurate rates, please select the appropriate pick up type for your business." +msgstr "" + +#: includes/admin/class-mp-admin.php:374 +msgid "Page saved." +msgstr "" + +#: includes/admin/class-mp-admin.php:370 +msgid "Custom field deleted." +msgstr "" + +#: includes/admin/class-mp-admin.php:369 +msgid "Custom field updated." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:541 +msgid "%s - The payment request expired, - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:536 +msgid "%s - The payment not credited in merchants bitpay account, action required. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:252 +msgid "If enabled, you will recieve an email for each status update on payment." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:240 +msgid "Speed at which the bitcoin transaction registers as \"confirmed\" to the store. This overrides your merchant settings on the Bitpay website." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:238 +msgid "Transaction Speed" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:244 +msgid "Low" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:243 +msgid "Medium" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:242 +msgid "High" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:177 +#: includes/common/payment-gateways/_bitpay.php:517 +#: includes/common/payment-gateways/_bitpay.php:522 +msgid "%s - The payment request is under process. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:175 +#: includes/common/payment-gateways/_bitpay.php:527 +msgid "%s - The payment request has been processed - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:150 +#: includes/common/payment-gateways/_bitpay.php:294 +msgid "Incorrect order invoice, please contact site administrator" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:141 +msgid "We could not verify order invoice details, please try again or contact site administrator for help" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:81 +msgid "Login to Simplify to get your API credentials. Enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:605 +#: includes/common/payment-gateways/paypal-express.php:647 +msgid "Express Checkout is PayPal's premier checkout solution, which streamlines the checkout process for buyers and keeps them on your site after making a purchase. Unlike PayPal Pro, there are no additional fees to use Express Checkout, though you may need to do a free upgrade to a business account. More Info »" +msgstr "" + +#. Plugin URI of the plugin/theme +msgid "https://premium.wpmudev.org/project/e-commerce/" +msgstr "" + +#. Author of the plugin/theme +msgid "WPMU DEV" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:541 +#: includes/admin/class-mp-orders-admin.php:543 +msgid "Tracking Number" +msgstr "" + +#: includes/common/class-mp-order.php:805 +#: includes/common/payment-gateways/stripe.php:336 +#: includes/public/class-mp-checkout.php:402 +msgid "Country" +msgstr "" + +#: includes/common/class-mp-order.php:784 +#: includes/common/payment-gateways/stripe.php:338 +msgid "City" +msgstr "" + +#: includes/common/class-mp-order.php:780 +msgid "Address 2" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:340 +msgid "Address" +msgstr "" + +#: includes/common/class-mp-cart.php:752 includes/common/class-mp-gdpr.php:378 +msgid "Order Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:360 +msgid "Payment Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:347 +msgid "Transaction ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:207 +msgid "The WePay Card Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:186 +#: includes/common/shipping-modules/mp-fedex.php:283 +msgid "Account ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:179 +msgid "Access Token" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:172 +msgid "Client Secret" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:165 +msgid "Client ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:159 +msgid "You must login to WePay to get your API credentials. Make sure to check \"Tokenize credit cards\" option under \"API Keys\" section of your WePay app." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:154 +msgid "When in live mode it is recommended to use SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:148 +msgid "Donation" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:147 +msgid "Event" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:146 +msgid "Personal" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:145 +msgid "Service" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:144 +msgid "Goods" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:141 +msgid "Choose type of payments" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:140 +msgid "Checkout Type" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:134 +msgid "Staging" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:131 +msgid "Choose STAGING if you have registered the app on stage.wepay.com, or PRODUCTION if you registered on www.wepay.com" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:36 +#: includes/common/payment-gateways/wepay.php:299 +msgid "WePay" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:366 +msgid "Rejected - A payment was rejected." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:360 +msgid "Failed - A payment was rejected due to an error." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:342 +msgid "PayWay balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:298 +msgid "Full path of the cacerts.crt file" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:284 +msgid "User Name" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:277 +msgid "Biller Code" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:273 +msgid "Log Directory" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:266 +msgid "Encryption Key" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:60 +msgid "Your PayWay transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:40 +#: includes/common/payment-gateways/_payway.php:41 +msgid "PayWay" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:862 +msgid "You must register this application with PayPal using your business account login to get an Application ID that will work with your API credentials. A bit of a hassle, but worth it! In the near future we will be looking for ways to simplify this process. Register then submit your application while logged in to the developer portal. Note that you do not need an Application ID for testing in sandbox mode. More Information »" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:818 +#: includes/common/payment-gateways/paypal-chained-payments.php:840 +#: includes/common/payment-gateways/paypal-express.php:705 +msgid "You must login to PayPal and create an API signature to get your credentials. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:378 +msgid "Use Payflow payment gateway to accept online payments using your Internet merchant account and processing network. PayPal Payflow Pro is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:595 +msgid "Tags Only" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:594 +msgid "Category Only" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:795 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:593 +msgid "Category & Tags" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:591 +msgid "Relate Products By" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1008 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:455 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:751 +msgid "Right" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1007 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:454 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:749 +msgid "Left" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1009 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:750 +msgid "Center" +msgstr "" + +#: marketpress.php:273 +msgid "Orders from your e-commerce store." +msgstr "" + +#: marketpress.php:231 +msgid "Products for your e-commerce store." +msgstr "" + +#: marketpress.php:222 +msgid "Edit Product" +msgstr "" + +#. Description of the plugin/theme +msgid "The complete WordPress ecommerce plugin - works perfectly with BuddyPress and Multisite too to create a social marketplace, where you can take a percentage! Activate the plugin, adjust your settings then add some products to your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:272 +msgid "Beside" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:271 +msgid "Above" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:268 +msgid "Pin Count" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:261 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:287 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:318 +msgid "All View" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:260 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:286 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:317 +msgid "Single View" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:259 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:285 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:316 +msgid "Off" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:578 +msgid "Related Product Limit" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:681 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1201 +msgid "Applies To" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:685 +msgid "All Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:487 +msgid "The label shown for the tax line item in the cart. Taxes, VAT, GST, etc." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:485 +msgid "Tax Label" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:81 +msgid "Apply" +msgstr "" + +#: includes/admin/class-mp-admin.php:192 +msgid "MarketPress Instructions" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1954 +#: includes/admin/class-mp-products-admin.php:2194 includes/common/data.php:62 +#: includes/common/helpers.php:150 +msgid "Taxes" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1417 +#: includes/common/class-mp-product.php:2900 +msgid "Related Products" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:282 +#: includes/common/shipping-modules/mp-usps.php:316 +msgid "@ Max" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "(3-5 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "Priority Mail Express International Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:92 +msgid "Priority Mail Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:171 +#: includes/common/shipping-modules/mp-pickup.php:247 +msgid "In Store" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:159 +msgid "Pickup Fee" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:141 +msgid "This option allows your customers to indicate that they will pick-up their order at your place of business." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:60 +#: includes/common/shipping-modules/mp-pickup.php:76 +#: includes/common/shipping-modules/mp-pickup.php:176 +msgid "Pickup Instructions" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:24 +#: includes/common/shipping-modules/mp-pickup.php:254 +msgid "Pickup" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping - 0.00" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:256 +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:440 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:309 +msgid "Your Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:301 +msgid "Station" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:300 +msgid "Request Courier" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:299 +msgid "Drop Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:298 +msgid "Business Service Center" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:297 +msgid "Regular Pickup" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:135 +#: includes/common/shipping-modules/mp-fedex.php:264 +msgid "Production" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:207 +msgid "Simplify Commerce by MasterCard" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:104 +msgid "When in live mode, although it is not required, Simplify recommends you have an SSL certificate." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:183 +#: includes/common/payment-gateways/simplify.php:87 +msgid "Public Key" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:175 +#: includes/common/payment-gateways/simplify.php:94 +msgid "Private Key" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:71 +msgid "Simplify helps merchants to accept online payments from Mastercard, Visa, American Express, Discover, JCB, and Diners Club cards. It's that simple. We offer a merchant account and payment gateway in a single, secure package so you can concentrate on what really matters to your business. Only supports USD currently." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:267 +msgid "%1$s" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:151 +msgid "The Simplify Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/simplify.php:18 +msgid "Simplify" +msgstr "" + +#: includes/common/payment-gateways/pin.php:255 +msgid "%1$s Card %2$s" +msgstr "" + +#: includes/common/payment-gateways/pin.php:211 +msgid "The PIN Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:187 +msgid "Selecting a currency other than currency supported by PIN may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/pin.php:164 +msgid "You must login to PIN to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/pin.php:158 +msgid "When in live mode PIN recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/pin.php:45 +#: includes/common/payment-gateways/pin.php:286 +msgid "PIN" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:830 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:534 +#: includes/common/payment-gateways/paypal-express.php:865 +msgid "The payment is pending" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:235 +msgid "The Paymill Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:169 +msgid "You must login to Paymill to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:45 +#: includes/common/payment-gateways/paymill.php:308 +msgid "Paymill" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:90 +msgid "Invalid cardholder" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:89 +msgid "Card is no longer valid or has expired" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:88 +msgid "Please enter a valid Card CVC" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:87 +msgid "Please choose a valid Expiration Date." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:99 +#: includes/common/payment-gateways/skrill.php:100 +msgid "Skrill (Moneybookers)" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:24 +#: includes/common/shipping-modules/mp-weight-rate.php:292 +msgid "Weight Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:303 +msgid "USPS Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:270 +msgid "USPS Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:264 +msgid "USPS Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:145 +msgid "Flat Rate Large" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:140 +msgid "Flat Rate Medium 2" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:135 +msgid "Flat Rate Medium 1" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:130 +msgid "Flat Rate Small" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:118 +msgid "First Class International Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:114 +msgid "Priority Mail International Small Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:112 +msgid "Priority Mail International Medium Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:110 +msgid "Priority Mail International Large Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:108 +msgid "Priority Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:106 +msgid "Express Mail International Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:104 +msgid "Express Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:98 +msgid "Library Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:96 +msgid "Media Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "First-Class Mail Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:90 +msgid "Priority Mail Small Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:88 +msgid "Priority Mail Medium Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +#: includes/common/shipping-modules/mp-usps.php:88 +#: includes/common/shipping-modules/mp-usps.php:90 +#: includes/common/shipping-modules/mp-usps.php:92 +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "(2-4 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +msgid "Priority Mail Large Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "(2-4) days" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "Priority Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "Express Mail Sunday/Holiday Delivery Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:80 +msgid "Express Mail Flat Rate Boxes Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:78 +msgid "Express Mail Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:76 +msgid "Express Mail Sunday/Holiday Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:74 +msgid "Express Mail Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:72 +#: includes/common/shipping-modules/mp-usps.php:74 +#: includes/common/shipping-modules/mp-usps.php:76 +#: includes/common/shipping-modules/mp-usps.php:78 +#: includes/common/shipping-modules/mp-usps.php:80 +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "(1-2 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:72 +msgid "Express Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:67 +#: includes/common/shipping-modules/mp-usps.php:902 +msgid "USPS" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:534 +msgid "UPS (beta)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:166 +msgid "Required if using negotiated rates" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "Worldwide Express Plus" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "(Scheduled)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "Standard" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "(2-5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "Worldwide Expedited" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:54 +msgid "Worldwide Express" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "2nd Day Air AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "(1 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "Next Day Air Early AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "Next Day Air Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "3 Day Select" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:49 +msgid "Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:48 +msgid "2nd Day Air" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "Next Day Air" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:475 +#: includes/common/shipping-modules/mp-ups.php:43 +msgid "UPS" +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:27 +#: includes/common/shipping-modules/mp-table-rate.php:318 +msgid "Table Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:71 +#: includes/common/shipping-modules/mp-table-quantity.php:77 +msgid "Shipping Cost: " +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:70 +#: includes/common/shipping-modules/mp-table-quantity.php:76 +msgid "If quantity is greater than:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:66 +msgid "Each band must be a higher price than the one above it." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:56 +msgid "Number of Bands:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:53 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Each layer must be a higher quantity than the previous." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:51 +msgid "Table Quantity Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:31 +msgid "Table Quantity" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:135 +#: includes/common/shipping-modules/mp-table-rate.php:174 +#: includes/common/shipping-modules/mp-weight-rate.php:189 +msgid "European Union" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:123 +#: includes/common/shipping-modules/mp-table-rate.php:162 +#: includes/common/shipping-modules/mp-weight-rate.php:177 +msgid "United States" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:111 +#: includes/common/shipping-modules/mp-table-rate.php:151 +#: includes/common/shipping-modules/mp-weight-rate.php:166 +msgid "In Country" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:146 +#: includes/common/shipping-modules/mp-table-rate.php:186 +#: includes/common/shipping-modules/mp-weight-rate.php:201 +msgid "International" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:101 +#: includes/common/shipping-modules/mp-table-rate.php:141 +#: includes/common/shipping-modules/mp-weight-rate.php:156 +msgid "Canada" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:92 +#: includes/common/shipping-modules/mp-table-rate.php:132 +#: includes/common/shipping-modules/mp-weight-rate.php:147 +msgid "Hawaii and Alaska" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:83 +#: includes/common/shipping-modules/mp-table-rate.php:123 +#: includes/common/shipping-modules/mp-weight-rate.php:138 +msgid "Lower 48 States" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:64 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping." +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:25 +#: includes/common/shipping-modules/mp-flat-rate.php:223 +msgid "Flat Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:761 +msgid "FedEx (beta)" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Centimeters" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Inches" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1676 +#: includes/admin/class-mp-setup-wizard.php:547 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:166 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +msgid "Kilograms" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:103 +msgid " %1$s - %2$s" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:358 +msgid "Max Weight per Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:356 +msgid "Box Dimensions" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:354 +msgid "Box Name" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:344 +msgid "Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:343 +msgid "For each box defined enter the maximum weight it can contain." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:341 +msgid "Enter your standard box sizes as LengthxWidthxHeight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:386 +#: includes/common/shipping-modules/mp-ups.php:193 +#: includes/common/shipping-modules/mp-usps.php:234 +#: includes/common/shipping-modules/mp-usps.php:338 +msgid "Standard Boxes and Weight Limits" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:328 +msgid "Handling Charge per Interntional Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:294 +msgid "Handling Charge per Domestic Shipment " +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:388 +#: includes/common/shipping-modules/mp-ups.php:196 +#: includes/common/shipping-modules/mp-usps.php:237 +msgid "Add Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "(Next Day)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +msgid "Europe First International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:62 +msgid "International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:61 +#: includes/common/shipping-modules/mp-fedex.php:62 +#: includes/common/shipping-modules/mp-ups.php:54 +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "(1-3 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:61 +msgid "International First" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "(5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "International Economy" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "(2-7 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "Smart Post" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:55 +#: includes/common/shipping-modules/mp-ups.php:49 +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "(1-5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:55 +msgid "Ground Home Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "(1-7 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "Fedex Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:53 +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "(3 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:53 +msgid "Fedex Express Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +#: includes/common/shipping-modules/mp-ups.php:48 +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "(2 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +msgid "Fedex 2 Day" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "(2 Days am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "Fedex 2 Day AM" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "(1 Day)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +msgid "Standard Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "(1 Day am )" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "Priority Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "(1 Day am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "First Overnight" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:476 +#: includes/common/shipping-modules/mp-fedex.php:31 +msgid "FedEx" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:270 +#: includes/common/payment-gateways/simplify.php:179 +#: includes/common/payment-gateways/stripe.php:365 +msgid "%1$s Card ending in %2$s - Expires %3$s" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:259 +#: includes/common/payment-gateways/pin.php:238 +#: includes/common/payment-gateways/simplify.php:171 +msgid "%s Store Purchase - Order ID: %s, Email: %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:266 +msgid "You must login to Stripe to get your API credentials. You can enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:261 +msgid "When in live mode Stripe recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:311 +msgid "The Stripe Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:263 +#: includes/common/payment-gateways/paymill.php:122 +#: includes/common/payment-gateways/stripe.php:222 +msgid "Card Number" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:86 +msgid "Please enter a valid Credit Card Number." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:45 +#: includes/common/payment-gateways/stripe.php:433 +msgid "Stripe" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:750 +msgid "Sets the background color for the payment page. By default, the color is white." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:745 +msgid "Sets the background color for the header of the payment page. By default, the color is white." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:740 +msgid "Sets the border color around the header of the payment page. The border is a 2-pixel perimeter around the header space, which is 750 pixels wide by 90 pixels high. By default, the color is black." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:735 +msgid "URL for an image you want to appear at the top left of the payment page. The image has a maximum size of 750 pixels wide by 90 pixels high. PayPal recommends that you provide an image that is stored on a secure (https) server. If you do not specify an image, the business name is displayed." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:857 +#: includes/common/payment-gateways/paypal-express.php:1131 +msgid "The payment is pending because it is part of an order that has been authorized but not settled." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:853 +#: includes/common/payment-gateways/paypal-express.php:1127 +msgid "The payment is pending because it has been authorized but not settled. You must capture the funds first." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:847 +#: includes/common/payment-gateways/paypal-express.php:1120 +msgid "You denied the payment when it was marked as pending." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:837 +#: includes/common/payment-gateways/paypal-express.php:1108 +msgid "A reversal has occurred on this transaction due to an unknown reason." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:836 +#: includes/common/payment-gateways/paypal-express.php:1107 +msgid "A reversal has occurred on this transaction because you have given the customer a refund." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:835 +#: includes/common/payment-gateways/paypal-express.php:1106 +msgid "A reversal has occurred on this transaction due to a complaint about the transaction from your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:834 +#: includes/common/payment-gateways/paypal-express.php:1105 +msgid "A reversal has occurred on this transaction due to your customer triggering a money-back guarantee." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:833 +#: includes/common/payment-gateways/paypal-express.php:1104 +msgid "A reversal has occurred on this transaction due to a chargeback by your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:1101 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer:" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:826 +#: includes/common/payment-gateways/paypal-express.php:1097 +msgid "A payment has been accepted." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:818 +#: includes/common/payment-gateways/paypal-express.php:1087 +msgid "The transaction has not terminated, e.g. an authorization may be awaiting completion." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:531 +#: includes/common/payment-gateways/paypal-express.php:810 +#: includes/common/payment-gateways/paypal-express.php:1077 +msgid "The payment has failed. This happens only if the payment was made from your customer's bank account." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:806 +#: includes/common/payment-gateways/paypal-express.php:1072 +msgid "An authorization for this transaction has been voided." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:802 +#: includes/common/payment-gateways/paypal-express.php:1067 +msgid "The authorization period for this payment has been reached." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:798 +#: includes/common/payment-gateways/paypal-express.php:1062 +msgid "A reversal has been canceled; for example, when you win a dispute and the funds for the reversal have been returned to you." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:499 +#: includes/common/payment-gateways/paypal-express.php:1163 +msgid "PayPal Express Checkout" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:798 +msgid "Gateway Settings Page Message" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:725 +msgid "Signature" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:506 +#: includes/common/payment-gateways/eway31.php:533 +#: includes/common/shipping-modules/mp-fedex.php:276 +msgid "API Password" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:773 +msgid "Enter a percentage of all store sales to collect as a fee. Decimals allowed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:757 +msgid "Using PayPal Chained Payments allows you as the multisite network owner to collect a predefined fee or percentage of all sales on network MarketPress stores! This is invisible to the customers who purchase items in a store, and all PayPal fees will be charged to the store owner. To use this option you must create API credentials, and you should make all other gateways unavailable or limited above." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:338 +msgid "Please be aware that we will deduct a ?% fee from the total of each transaction in addition to any fees PayPal may charge you. If for any reason you need to refund a customer for an order, please contact us with a screenshot of the refund receipt in your PayPal history as well as the Transaction ID of our fee deduction so we can issue you a refund. Thank you!" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:698 +#: includes/common/payment-gateways/paypal-express.php:149 +msgid "There was a problem connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:470 +#: includes/common/payment-gateways/paypal-express.php:1053 +msgid "There was a problem verifying the IPN string with PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:310 +msgid "There was a problem connecting to PayPal to check the status of your purchase. Please check the status of your order here »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:539 +#: includes/common/payment-gateways/paypal-chained-payments.php:254 +#: includes/common/payment-gateways/paypal-express.php:1139 +msgid "The payment is pending." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:251 +#: includes/common/payment-gateways/paypal-chained-payments.php:531 +#: includes/common/payment-gateways/paypal-express.php:862 +#: includes/common/payment-gateways/paypal-express.php:1136 +msgid "The payment is pending for an unknown reason. For more information, contact PayPal customer service." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:250 +#: includes/common/payment-gateways/paypal-chained-payments.php:530 +#: includes/common/payment-gateways/paypal-express.php:861 +#: includes/common/payment-gateways/paypal-express.php:1135 +msgid "The payment is pending because you are not yet verified. You must verify your account before you can accept this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:249 +#: includes/common/payment-gateways/paypal-chained-payments.php:529 +#: includes/common/payment-gateways/paypal-express.php:860 +#: includes/common/payment-gateways/paypal-express.php:1134 +msgid "The payment is pending because it was made via credit card and you must upgrade your account to Business or Premier status in order to receive the funds. It can also mean that you have reached the monthly limit for transactions on your account." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:248 +#: includes/common/payment-gateways/paypal-chained-payments.php:528 +#: includes/common/payment-gateways/paypal-express.php:859 +#: includes/common/payment-gateways/paypal-express.php:1133 +msgid "The payment is pending because it was made to an email address that is not yet registered or confirmed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:247 +#: includes/common/payment-gateways/paypal-chained-payments.php:527 +#: includes/common/payment-gateways/paypal-express.php:858 +#: includes/common/payment-gateways/paypal-express.php:1132 +msgid "The payment is pending while it is being reviewed by PayPal for risk." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:246 +#: includes/common/payment-gateways/paypal-chained-payments.php:526 +#: includes/common/payment-gateways/paypal-express.php:856 +#: includes/common/payment-gateways/paypal-express.php:1130 +msgid "You do not have a balance in the currency sent, and you do not have your Payment Receiving Preferences set to automatically convert and accept this payment. You must manually accept or deny this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:245 +#: includes/common/payment-gateways/paypal-chained-payments.php:525 +#: includes/common/payment-gateways/paypal-express.php:855 +#: includes/common/payment-gateways/paypal-express.php:1129 +msgid "The payment is pending because you hold a non-U.S. account and do not have a withdrawal mechanism. You must manually accept or deny this payment from your Account Overview." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:244 +#: includes/common/payment-gateways/paypal-chained-payments.php:524 +#: includes/common/payment-gateways/paypal-express.php:854 +#: includes/common/payment-gateways/paypal-express.php:1128 +msgid "The payment is pending because it was made by an eCheck that has not yet cleared." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:243 +#: includes/common/payment-gateways/paypal-chained-payments.php:523 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:236 +#: includes/common/payment-gateways/paypal-chained-payments.php:516 +msgid "The transaction was rejected by the receiver (you)." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:510 +#: includes/common/payment-gateways/paypal-express.php:843 +#: includes/common/payment-gateways/paypal-express.php:1115 +msgid "You refunded the payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:224 +#: includes/common/payment-gateways/paypal-chained-payments.php:504 +msgid "The transaction is in progress." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:212 +#: includes/common/payment-gateways/paypal-chained-payments.php:491 +#: includes/common/payment-gateways/paypal-express.php:814 +#: includes/common/payment-gateways/paypal-express.php:1082 +msgid "The payment has been partially refunded." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:202 +#: includes/common/payment-gateways/paypal-chained-payments.php:481 +msgid "PayPal balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:177 +msgid "There was a problem connecting to PayPal to setup your purchase. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:122 +msgid "Your PayPal transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:50 +#: includes/common/payment-gateways/paypal-chained-payments.php:53 +#: includes/common/payment-gateways/paypal-chained-payments.php:732 +#: includes/common/payment-gateways/paypal-express.php:500 +#: includes/common/payment-gateways/paypal-express.php:938 +msgid "PayPal" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:48 +#: includes/common/payment-gateways/paypal-chained-payments.php:730 +#: includes/common/payment-gateways/paypal-chained-payments.php:756 +#: includes/common/payment-gateways/paypal-chained-payments.php:873 +msgid "PayPal Chained Payments" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:59 +#: includes/common/payment-gateways/paypal-payflow.php:467 +msgid "PayPal Payflow Pro" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:378 +msgid "Chargeback - A payment was reversed due to a chargeback. The funds have been removed from your account balance and returned to the buyer." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:372 +msgid "Failed - The Credit Card or Direct Debit transaction was declined." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:354 +#: includes/common/payment-gateways/skrill.php:366 +msgid "Cancelled - The payment was cancelled manually by the sender in their online account history or was auto-cancelled after 14 days pending." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:360 +msgid "Pending - The payment is pending. It can take 2-3 days for bank transfers to complete." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:349 +#: includes/common/payment-gateways/skrill.php:354 +msgid "Processed - The payment has been completed, and the funds have been added successfully to your Moneybookers account balance." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:189 +msgid "Shown to the customer on the confirmation screen - the end step of the process - a note, confirmation number, or any other message. Line breaks <br> may be used for longer messages." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:188 +msgid "Confirmation Note (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:183 +msgid "The URL of the logo which you would like to appear at the top of the payment form. The logo must be accessible via HTTPS otherwise it will not be shown. For best integration results we recommend that you use a logo with dimensions up to 200px in width and 50px in height." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:182 +msgid "Logo Image (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:177 +msgid "The name of this store, which will be shown on the gateway. If no value is submitted, the account email will be shown as the recipient of the payment." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:176 +msgid "Merchant Name (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:165 +msgid "Language" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:368 +#: includes/common/payment-gateways/authorizenet-aim.php:262 +#: includes/common/payment-gateways/eway.php:363 +#: includes/common/payment-gateways/eway31.php:471 +#: includes/common/payment-gateways/mollie.php:91 +#: includes/common/payment-gateways/paymill.php:193 +#: includes/common/payment-gateways/paypal-chained-payments.php:356 +#: includes/common/payment-gateways/paypal-express.php:688 +#: includes/common/payment-gateways/paypal-payflow.php:432 +#: includes/common/payment-gateways/pin.php:186 +#: includes/common/payment-gateways/skrill.php:152 +#: includes/common/payment-gateways/stripe.php:288 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:104 +msgid "Currency" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:359 +#: includes/common/payment-gateways/skrill.php:143 +msgid "Secret Word" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:261 +msgid "Order ID:" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:234 +msgid "Complete Checkout" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:204 +msgid "Your Moneybookers transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:155 +msgid "This is the email text to send to those who have made manual payment checkouts. You should include your manual payment instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:257 +#: includes/common/payment-gateways/manual-payments.php:128 +msgid "Record payments manually, such as by Cash, Check, or EFT." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:71 +msgid "Manual/Invoice" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:648 +#: includes/common/payment-gateways/manual-payments.php:35 +#: includes/common/payment-gateways/manual-payments.php:36 +msgid "Manual Payment" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:34 +#: includes/common/payment-gateways/manual-payments.php:163 +msgid "Manual Payments" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:288 +msgid "iDEAL Simulator (for testing)" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:287 +msgid "ABN Amro Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:286 +msgid "Friesland Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:285 +msgid "Rabobank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:284 +msgid "ING Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:279 +msgid "Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:270 +msgid "To make it easier to pay for online products and services, the Dutch banking community has developed the iDEAL online payment method. iDEAL allows online payments to be made using online banking in EUR only." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:247 +#: includes/common/payment-gateways/_payway.php:199 +#: includes/common/payment-gateways/manual-payments.php:68 +msgid "Invoiced" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1016 +msgid "Coupon" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:77 +#: includes/common/payment-gateways/_ideal.php:250 +#: includes/common/payment-gateways/_payway.php:202 +msgid "iDEAL" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:76 +msgid "iDEAL (beta)" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:327 +msgid "Merchant Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:293 +#: includes/common/payment-gateways/_payway.php:302 +#: includes/common/payment-gateways/payfast.php:324 +msgid "Merchant ID" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:462 +msgid "eWay Rapid 3.0 Payments lets merchants recieve credit card payments through eWay without need for users to leave the shop. Note this gateway requires a valid SSL certificate configured for this site." +msgstr "" + +#: includes/common/payment-gateways/eway.php:452 +msgid "There was a problem connecting to eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/eway.php:432 +#: includes/common/payment-gateways/eway.php:437 +msgid "The url of the image can be hosted on your website and pass the secure https:// path of the image to be displayed at the top of the website. This is the second image block on the webpage and is restricted to 960px X 65px. A default secure image is used if none is supplied." +msgstr "" + +#: includes/common/payment-gateways/eway.php:431 +#: includes/common/payment-gateways/eway.php:436 +msgid "Company Logo (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:427 +msgid "The page footer text can be customised and populated below the customer's order details. Useful for contact information." +msgstr "" + +#: includes/common/payment-gateways/eway.php:426 +msgid "Page Footer (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:421 +msgid "Page Description (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:417 +#: includes/common/payment-gateways/eway.php:422 +msgid "This value is used to populate the browsers title bar at the top of the screen." +msgstr "" + +#: includes/common/payment-gateways/eway.php:416 +msgid "Page Title (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:412 +msgid "This will be displayed as the company the customer is purchasing from, including this is highly recommended." +msgstr "" + +#: includes/common/payment-gateways/eway.php:411 +msgid "Company Name" +msgstr "" + +#: includes/common/payment-gateways/eway.php:394 +msgid "Customer ID" +msgstr "" + +#: includes/common/payment-gateways/eway.php:381 +#: includes/common/payment-gateways/eway31.php:488 +msgid "Live API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway.php:371 +#: includes/common/payment-gateways/eway31.php:479 +msgid "Gateway Mode" +msgstr "" + +#: includes/common/payment-gateways/eway.php:354 +msgid "The Hosted Page is a webpage hosted on eWAY's side eliminating the need for merchants to capture, transmit or store credit card numbers. At the checkout time the merchant automatically redirects the customer to the Hosted Page where they would enter their details and have the transaction processed. Upon completion of the transaction the customer is redirected back to the MarketPress checkout confirmation page." +msgstr "" + +#: includes/common/payment-gateways/eway.php:314 +msgid "There was a problem with your credit card information: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:300 +msgid "Paid - The card has been processed - %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:253 +msgid "There was a problem setting up the transaction with eWay: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:245 +#: includes/common/payment-gateways/eway.php:289 +msgid "There was a problem parsing the response from eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:159 +#: includes/common/payment-gateways/eway.php:189 +#: includes/common/payment-gateways/paypal-chained-payments.php:634 +#: includes/common/payment-gateways/paypal-express.php:322 +#: includes/common/payment-gateways/paypal-express.php:473 +msgid "%s Store Purchase - Order ID: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:147 +#: includes/common/payment-gateways/eway.php:462 +msgid "eWay Shared Payments" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:214 +msgid "This is the email text to send to those who have made CubePoints checkouts. You should include your CubePoints instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:212 +#: includes/common/payment-gateways/free_orders.php:188 +#: includes/common/payment-gateways/manual-payments.php:154 +msgid "Order Confirmation Email" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:207 +#: includes/common/payment-gateways/manual-payments.php:149 +msgid "Confirmation User Instructions" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:202 +#: includes/common/payment-gateways/manual-payments.php:144 +msgid "User Instructions" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:198 +#: includes/common/payment-gateways/free_orders.php:170 +#: includes/common/payment-gateways/manual-payments.php:139 +msgid "Enter a public name for this payment method that is displayed to users - No HTML" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:532 +#: includes/common/payment-gateways/_cubepoints.php:196 +#: includes/common/payment-gateways/free_orders.php:169 +#: includes/common/payment-gateways/manual-payments.php:138 +msgid "Method Name" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:187 +msgid "Accept CubePoints as payment(requires the CubePoints plugin)." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:140 +msgid "Sorry, but you do not appear to have enough points to complete this purchase!" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:124 +msgid "%s Store Purchase" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:79 +#: includes/common/payment-gateways/_cubepoints.php:171 +msgid "Your current points: " +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:133 +#: includes/common/payment-gateways/_cubepoints.php:197 +msgid "CubePoints" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:344 +msgid "Authorize.net AIM Checkout" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:331 +msgid "Custom API URL" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:332 +msgid "Many other gateways have Authorize.net API emulators. To use one of these gateways input their API post url here." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:322 +msgid "Request a delimited response from the payment gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:316 +msgid "Security: MD5 Hash" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:317 +msgid "The payment gateway generated MD5 hash value that can be used to authenticate the transaction response. Not needed because responses are returned using an SSL connection." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:306 +msgid "Customer Receipt Email Footer" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:296 +msgid "Customer Receipt Email Header" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:297 +#: includes/common/payment-gateways/paypal-payflow.php:446 +msgid "This text will appear as the header of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:282 +msgid "Encapsulation Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:283 +msgid "Authorize.net default is blank. Otherwise, get this from your credit card processor. If the transactions are going through, but getting strange responses, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:273 +msgid "Optional settings to control advanced options" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:224 +#: includes/common/payment-gateways/authorizenet-aim.php:272 +msgid "Advanced Settings" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:253 +msgid "Transaction Key" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:246 +msgid "Login ID" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:396 +msgid "Gateway Credentials" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:221 +msgid "Authorize.net AIM is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway. USD is the only currency supported by this gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:205 +msgid "There was a problem finalizing your purchase. %s Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:519 +#: includes/common/payment-gateways/paypal-chained-payments.php:218 +#: includes/common/payment-gateways/paypal-chained-payments.php:498 +#: includes/common/payment-gateways/paypal-express.php:822 +#: includes/common/payment-gateways/paypal-express.php:1092 +msgid "The payment has been completed, and the funds have been added successfully to your account balance." +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:233 +msgid "Please enter a valid credit card security code" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:224 +#: includes/public/class-mp-checkout.php:867 +msgid "Please enter a valid credit card number" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:221 +msgid "Please enter your credit card number" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:217 +msgid "Please enter your credit card security code" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:213 +msgid "Please select your credit card expiration date." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:299 +#: includes/common/payment-gateways/authorizenet-aim.php:50 +#: includes/common/payment-gateways/eway.php:148 +#: includes/common/payment-gateways/eway.php:298 +#: includes/common/payment-gateways/eway31.php:267 +#: includes/common/payment-gateways/paymill.php:46 +#: includes/common/payment-gateways/paypal-express.php:972 +#: includes/common/payment-gateways/paypal-payflow.php:60 +#: includes/common/payment-gateways/pin.php:46 +#: includes/common/payment-gateways/simplify.php:19 +#: includes/common/payment-gateways/stripe.php:46 +#: includes/common/payment-gateways/wepay.php:37 +msgid "Credit Card" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:49 +msgid "Authorize.net Checkout" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:156 +#: includes/common/payment-gateways/stripe.php:293 +msgid "Selecting a currency other than that used for your store may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:352 +msgid "Seller ID" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:340 +#: includes/common/payment-gateways/_ideal.php:311 +#: includes/common/payment-gateways/authorizenet-aim.php:234 +#: includes/common/payment-gateways/eway.php:376 +#: includes/common/payment-gateways/payfast.php:315 +#: includes/common/payment-gateways/paypal-chained-payments.php:368 +#: includes/common/payment-gateways/paypal-express.php:699 +#: includes/common/payment-gateways/paypal-payflow.php:391 +msgid "Live" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:339 +#: includes/common/payment-gateways/authorizenet-aim.php:233 +#: includes/common/payment-gateways/eway.php:375 +#: includes/common/payment-gateways/paypal-chained-payments.php:367 +#: includes/common/payment-gateways/paypal-express.php:698 +#: includes/common/payment-gateways/paypal-payflow.php:390 +#: includes/common/shipping-modules/mp-fedex.php:263 +msgid "Sandbox" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:336 +#: includes/common/payment-gateways/_ideal.php:307 +#: includes/common/payment-gateways/authorizenet-aim.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:365 +#: includes/common/payment-gateways/paypal-express.php:695 +#: includes/common/payment-gateways/paypal-payflow.php:387 +#: includes/common/payment-gateways/wepay.php:130 +#: includes/common/shipping-modules/mp-fedex.php:260 +msgid "Mode" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:288 +#: includes/common/payment-gateways/mijireh.php:242 +#: includes/common/payment-gateways/mollie.php:212 +msgid "The order has been received" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:74 +#: includes/common/payment-gateways/2checkout.php:75 +#: includes/common/payment-gateways/2checkout.php:435 +msgid "2Checkout" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:306 +msgid "Confirm" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:218 +#: includes/common/class-mp-cart.php:974 includes/common/class-mp-cart.php:1354 +#: includes/common/template-functions.php:918 +msgid "Checkout" +msgstr "" + +#: includes/common/template-functions.php:207 +msgid "Check Order Status" +msgstr "" + +#: includes/common/template-functions.php:235 +msgid "View Products" +msgstr "" + +#: includes/common/template-functions.php:263 +msgid "Visit Store" +msgstr "" + +#: includes/common/template-functions.php:2912 +#: includes/multisite/template-functions.php:448 +msgid "Order By" +msgstr "" + +#: includes/common/template-functions.php:2887 +#: includes/multisite/template-functions.php:405 +msgid "Price (High to Low)" +msgstr "" + +#: includes/common/template-functions.php:2886 +#: includes/multisite/template-functions.php:404 +msgid "Price (Low to High)" +msgstr "" + +#: includes/common/template-functions.php:2881 +#: includes/multisite/template-functions.php:399 +msgid "Default" +msgstr "" + +#: includes/common/template-functions.php:2858 +msgid "Show All" +msgstr "" + +#: includes/common/class-mp-product.php:2048 +msgid "View Larger Image »" +msgstr "" + +#: includes/common/class-mp-product.php:979 +msgid "Out of Stock" +msgstr "" + +#: includes/common/template-functions.php:148 +msgid "Price: " +msgstr "" + +#: includes/multisite/template-functions.php:833 +msgid "No Tags" +msgstr "" + +#: includes/common/template-functions.php:3162 +msgid "Uncategorized" +msgstr "" + +#: includes/common/class-mp-cart.php:569 includes/common/class-mp-order.php:604 +#: includes/common/helpers.php:115 +msgid "Download" +msgstr "" + +#: includes/common/class-mp-cart.php:1353 +msgid "Empty Cart" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:291 +#: includes/common/payment-gateways/paypal-express.php:718 +#: includes/common/payment-gateways/paypal-payflow.php:423 +#: includes/common/shipping-modules/mp-ups.php:158 +#: includes/public/class-mp-checkout.php:1254 +#: includes/public/class-mp-checkout.php:1383 +msgid "Password" +msgstr "" + +#: includes/common/payment-gateways/eway.php:387 +#: includes/common/payment-gateways/paypal-express.php:711 +#: includes/common/shipping-modules/mp-usps.php:185 +#: includes/public/class-mp-checkout.php:1249 +msgid "Username" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:437 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:790 +msgid "Have a coupon code?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:321 +#: includes/admin/class-mp-orders-admin.php:526 +#: includes/common/class-mp-cart.php:592 +msgid "Remove" +msgstr "" + +#: includes/admin/class-mp-ajax.php:316 +msgid "Quantity:" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2140 +#: includes/admin/class-mp-products-admin.php:2387 +#: includes/common/shipping-modules/class-mp-shipping-api.php:507 +msgid "Extra Shipping Cost" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:403 +msgid "Choose a Shipping Method:" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1691 +#: includes/admin/class-mp-products-admin.php:2131 +#: includes/admin/class-mp-products-admin.php:2378 +#: includes/common/shipping-modules/class-mp-shipping-api.php:228 +msgid "Ounces" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1684 +#: includes/admin/class-mp-products-admin.php:2123 +#: includes/admin/class-mp-products-admin.php:2369 +#: includes/admin/class-mp-setup-wizard.php:546 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:165 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +#: includes/common/shipping-modules/class-mp-shipping-api.php:227 +msgid "Pounds" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:226 +msgid "Product Weight:" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:214 +msgid "Weight (Kilograms)" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:82 +msgid "Number of Categories:" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:72 +msgid "Product Count" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:20 +#: includes/admin/class-mp-product-attributes-admin.php:129 +#: includes/admin/class-mp-product-attributes-list-table.php:22 +#: includes/admin/class-mp-products-admin.php:2216 +#: includes/admin/class-mp-shortcode-builder.php:628 +#: includes/admin/class-mp-shortcode-builder.php:1415 +#: includes/admin/widgets/ms-global-categories.php:70 +#: includes/common/shipping-modules/mp-fedex.php:395 +#: includes/common/shipping-modules/mp-ups.php:202 +#: includes/common/shipping-modules/mp-usps.php:243 +#: includes/public/class-mp-checkout.php:314 +msgid "Name" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:67 +msgid "Order Categories By:" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:24 +#: includes/admin/widgets/ms-global-categories.php:50 +msgid "Global Product Categories" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:15 +msgid "Global Product Category List" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:13 +msgid "Displays a network-wide HTML list of product categories from network MarketPress stores." +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:24 +#: includes/admin/widgets/ms-global-tag-cloud.php:45 +msgid "Global Product Tags" +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:15 +msgid "Global Product Tag Cloud" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:947 +#: includes/admin/widgets/ms-global-product-list.php:173 +msgid "Excerpt" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:169 +msgid "Content To Show:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:140 +msgid "Limit To Product Tag:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:132 +msgid "Limit To Product Category:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:72 +msgid "Global Products" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:16 +msgid "Global Product List" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:14 +msgid "Shows a customizable global list of products from network MarketPress stores." +msgstr "" + +#: includes/common/class-mp-product.php:974 +#: includes/multisite/template-functions.php:731 +msgid "Buy Now »" +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:13 +msgid "Displays global most used product tags in cloud format from network MarketPress stores." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:438 +msgid "Theme Permissions" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:402 +#: includes/multisite/class-mp-admin-multisite.php:448 +msgid "No Access" +msgstr "" + +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:120 +msgid "Pro Site Level" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:401 +#: includes/multisite/class-mp-admin-multisite.php:447 +msgid "All Can Use" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:390 +msgid "Gateway Permissions" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:375 +msgid "Select a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:350 +msgid "Global Gateway" +msgstr "" + +#. Plugin Name of the plugin/theme +msgid "MarketPress" +msgstr "" + +#: includes/admin/widgets/product-tag-cloud.php:7 +msgid "Your most used product tags in cloud format from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/categories.php:79 +msgid "Show hierarchy" +msgstr "" + +#: includes/admin/widgets/categories.php:76 +#: includes/admin/widgets/ms-global-categories.php:92 +msgid "Show product counts" +msgstr "" + +#: includes/admin/widgets/categories.php:73 +msgid "Show as dropdown" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:710 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:736 +#: includes/admin/widgets/categories.php:30 +msgid "Select Category" +msgstr "" + +#: includes/admin/widgets/categories.php:7 +msgid "A list or dropdown of product categories from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/product-list.php:250 +msgid "Show Buy Button" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:183 +#: includes/admin/widgets/product-list.php:244 +msgid "Show Price" +msgstr "" + +#: includes/admin/widgets/product-list.php:241 +msgid "Show Excerpt" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:155 +#: includes/admin/widgets/product-list.php:238 +msgid "Thumbnail Size:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:153 +#: includes/admin/widgets/product-list.php:237 +msgid "Show Thumbnail" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:147 +#: includes/admin/widgets/product-list.php:233 +msgid "Display Settings" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:136 +#: includes/admin/widgets/ms-global-product-list.php:144 +#: includes/admin/widgets/product-list.php:230 +msgid "Enter the Slug" +msgstr "" + +#: includes/admin/widgets/product-list.php:228 +#: includes/common/template-functions.php:894 +msgid "Tag" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:686 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:712 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:739 +#: includes/admin/class-mp-shortcode-builder.php:796 +#: includes/admin/widgets/product-list.php:227 +#: includes/common/template-functions.php:886 +#: includes/common/template-functions.php:2907 +msgid "Category" +msgstr "" + +#: includes/admin/widgets/product-list.php:226 +msgid "No Filter" +msgstr "" + +#: includes/admin/widgets/product-list.php:224 +msgid "Taxonomy Filter:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:108 +#: includes/admin/widgets/product-list.php:209 +msgid "Order Products By:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:101 +#: includes/admin/widgets/product-list.php:206 +msgid "Number of Products:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:98 +#: includes/admin/widgets/product-list.php:204 +msgid "List Settings" +msgstr "" + +#: includes/admin/widgets/product-list.php:177 +msgid "Our Products" +msgstr "" + +#: includes/admin/widgets/product-list.php:144 +#: includes/common/template-functions.php:2070 +#: includes/common/template-functions.php:2347 +#: includes/multisite/template-functions.php:303 +#: includes/multisite/template-functions.php:623 +msgid "No Products" +msgstr "" + +#: includes/admin/widgets/product-list.php:8 +msgid "Product List" +msgstr "" + +#: includes/admin/widgets/product-list.php:7 +msgid "Shows a customizable list of products from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/cart.php:75 includes/admin/widgets/categories.php:82 +#: includes/admin/widgets/product-list.php:253 +#: includes/admin/widgets/product-tag-cloud.php:57 +msgid "Only show on store pages" +msgstr "" + +#: includes/admin/widgets/cart.php:65 +#: includes/admin/widgets/ms-global-product-list.php:92 +#: includes/admin/widgets/product-list.php:200 +msgid "Custom Text:" +msgstr "" + +#: includes/admin/widgets/cart.php:64 includes/admin/widgets/categories.php:69 +#: includes/admin/widgets/ms-global-categories.php:59 +#: includes/admin/widgets/ms-global-product-list.php:87 +#: includes/admin/widgets/ms-global-tag-cloud.php:49 +#: includes/admin/widgets/product-list.php:199 +#: includes/admin/widgets/product-tag-cloud.php:49 +msgid "Title:" +msgstr "" + +#: includes/admin/widgets/cart.php:7 +msgid "Shows dynamic shopping cart contents along with a checkout button for your MarketPress store." +msgstr "" + +#: includes/admin/widgets/product-tag-cloud.php:8 +msgid "Product Tag Cloud" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:539 +#: includes/admin/class-mp-setup-wizard.php:575 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:163 +msgid "Measurement System" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:616 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:149 +msgid "Select Shipping Options" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:596 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:129 +msgid "Calculated Options" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:582 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:115 +msgid "No Shipping" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:110 +msgid "EU" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:109 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:93 +msgid "All" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:92 +msgid "Select:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:185 +msgid "Store Pages" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:223 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:256 +msgid "Order Shipped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:60 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:95 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:128 +#: marketpress.php:266 +msgid "New Order" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:314 +msgid "Email Notifications" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:59 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:200 +msgid "Products List" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:58 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:190 +msgid "Store Base" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:108 +#: includes/admin/class-mp-shortcode-builder.php:635 +#: includes/admin/class-mp-shortcode-builder.php:708 +#: includes/admin/class-mp-shortcode-builder.php:875 +#: includes/admin/class-mp-shortcode-builder.php:1319 +#: includes/admin/class-mp-shortcode-builder.php:1422 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:526 +#: includes/admin/widgets/ms-global-categories.php:78 +#: includes/admin/widgets/ms-global-product-list.php:127 +#: includes/admin/widgets/product-list.php:221 +msgid "Ascending" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:109 +#: includes/admin/class-mp-shortcode-builder.php:636 +#: includes/admin/class-mp-shortcode-builder.php:709 +#: includes/admin/class-mp-shortcode-builder.php:876 +#: includes/admin/class-mp-shortcode-builder.php:1320 +#: includes/admin/class-mp-shortcode-builder.php:1423 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:525 +#: includes/admin/widgets/ms-global-categories.php:75 +#: includes/admin/widgets/ms-global-product-list.php:124 +#: includes/admin/widgets/product-list.php:220 +msgid "Descending" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:637 +#: includes/admin/class-mp-shortcode-builder.php:695 +#: includes/admin/class-mp-shortcode-builder.php:862 +#: includes/admin/class-mp-shortcode-builder.php:1306 +#: includes/admin/class-mp-shortcode-builder.php:1424 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:518 +#: includes/admin/widgets/ms-global-product-list.php:121 +#: includes/admin/widgets/product-list.php:218 +msgid "Random" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:694 +#: includes/admin/class-mp-shortcode-builder.php:861 +#: includes/admin/class-mp-shortcode-builder.php:1305 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:517 +#: includes/admin/widgets/ms-global-product-list.php:119 +#: includes/admin/widgets/product-list.php:216 +msgid "Product Price" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:693 +#: includes/admin/class-mp-shortcode-builder.php:860 +#: includes/admin/class-mp-shortcode-builder.php:1304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:516 +#: includes/admin/widgets/ms-global-product-list.php:117 +#: includes/admin/widgets/product-list.php:215 +msgid "Number of Sales" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:692 +#: includes/admin/class-mp-shortcode-builder.php:859 +#: includes/admin/class-mp-shortcode-builder.php:1303 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:515 +#: includes/admin/widgets/product-list.php:214 +msgid "Product Author" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:691 +#: includes/admin/class-mp-shortcode-builder.php:858 +#: includes/admin/class-mp-shortcode-builder.php:1302 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:514 +#: includes/admin/widgets/product-list.php:213 +msgid "Product ID" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:690 +#: includes/admin/class-mp-shortcode-builder.php:857 +#: includes/admin/class-mp-shortcode-builder.php:1301 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:513 +#: includes/admin/widgets/ms-global-product-list.php:113 +#: includes/admin/widgets/product-list.php:212 +msgid "Publish Date" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:430 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:726 +msgid "Width" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:439 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:735 +msgid "Height" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:88 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:402 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:698 +msgid "Custom" +msgstr "" + +#: includes/common/class-mp-product.php:179 +#: includes/common/class-mp-product.php:992 +#: includes/common/class-mp-product.php:1000 +#: includes/multisite/template-functions.php:579 +msgid "Buy Now" +msgstr "" + +#: includes/common/class-mp-product.php:175 +#: includes/common/class-mp-product.php:990 +#: includes/common/class-mp-product.php:998 +msgid "Add To Cart" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:807 +msgid "Store Style" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1021 +msgid "Edit Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupon.php:580 +#: includes/admin/class-mp-ajax.php:238 +#: includes/admin/class-mp-products-admin.php:1532 +msgid "Unlimited" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1198 +msgid "Remaining Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1197 +msgid "Used" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:752 +#: includes/admin/class-mp-products-admin.php:2343 +msgid "Start Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:598 +msgid "Coupon Code" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:444 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:284 +msgid "Save Changes" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:57 +#: includes/admin/class-mp-shortcode-builder.php:716 +#: includes/admin/class-mp-shortcode-builder.php:727 +#: includes/admin/class-mp-shortcode-builder.php:883 +#: includes/admin/class-mp-shortcode-builder.php:894 +#: includes/admin/class-mp-shortcode-builder.php:946 +#: includes/admin/class-mp-shortcode-builder.php:956 +#: includes/admin/class-mp-shortcode-builder.php:1006 +#: includes/admin/class-mp-shortcode-builder.php:1327 +#: includes/admin/class-mp-shortcode-builder.php:1338 +#: includes/admin/store-settings/class-mp-store-settings-general.php:357 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:270 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:108 +#: includes/admin/widgets/ms-global-product-list.php:172 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:94 +msgid "None" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:352 +msgid "Google Analytics Ecommerce Tracking" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:310 +msgid "This option turns MarketPress into more of a product listing plugin, disabling shopping carts, checkout, and order management. This is useful if you simply want to list items you can buy in a store somewhere else, optionally linking the \"Buy Now\" buttons to an external site. Some examples are a car dealership, or linking to songs/albums in itunes, or linking to products on another site with your own affiliate links." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:304 +msgid "Whether or not customers must be registered and logged in to checkout. (Not recommended: Enabling this can lower conversions)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:258 +msgid "How many times may a customer download a file they have purchased? (It's best to set this higher than one in case they have any problems downloading)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:257 +msgid "Maximum Downloads" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:298 +msgid "This will set the product to draft if inventory of all variations is gone." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:288 +msgid "At what low stock count do you want to be warned for products you have enabled inventory tracking for?" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:208 +#: includes/admin/store-settings/class-mp-store-settings-general.php:287 +msgid "Inventory Warning Threshold" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:282 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:542 +msgid "Miscellaneous Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:429 +#: includes/multisite/class-mp-admin-multisite.php:247 +msgid "Show Decimal in Prices" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:451 +#: includes/admin/store-settings/class-mp-store-settings-general.php:403 +#: includes/multisite/class-mp-admin-multisite.php:221 +msgid "Currency Symbol Position" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:444 +#: includes/admin/store-settings/class-mp-store-settings-general.php:396 +msgid "Store Currency" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:429 +#: includes/admin/store-settings/class-mp-store-settings-general.php:381 +msgid "Currency Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:516 +msgid "Please see your local tax laws. Note if this is enabled and a downloadable only cart, rates will be the default for your base location." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:529 +msgid "Apply Tax to Downloadable Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:498 +msgid "Enabling this option allows you to enter and show all prices inclusive of tax, while still listing the tax total as a line item in shopping carts. Please see your local tax laws." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:497 +msgid "Enter Prices Inclusive of Tax?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:492 +msgid "Please see your local tax laws. Most areas charge tax on shipping fees." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:491 +msgid "Apply Tax To Shipping Fees?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:674 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:565 +#: includes/common/payment-gateways/authorizenet-aim.php:291 +#: includes/common/payment-gateways/authorizenet-aim.php:326 +#: includes/common/payment-gateways/payfast.php:347 +msgid "No" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:675 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:759 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:512 +#: includes/admin/class-mp-setup-wizard.php:518 +#: includes/admin/class-mp-setup-wizard.php:524 +#: includes/admin/class-mp-setup-wizard.php:530 +#: includes/admin/class-mp-setup-wizard.php:564 +#: includes/admin/store-settings/class-mp-store-settings-general.php:232 +#: includes/admin/store-settings/class-mp-store-settings-general.php:299 +#: includes/admin/store-settings/class-mp-store-settings-general.php:305 +#: includes/admin/store-settings/class-mp-store-settings-general.php:311 +#: includes/admin/store-settings/class-mp-store-settings-general.php:317 +#: includes/admin/store-settings/class-mp-store-settings-general.php:328 +#: includes/admin/store-settings/class-mp-store-settings-general.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:341 +#: includes/admin/store-settings/class-mp-store-settings-general.php:348 +#: includes/admin/store-settings/class-mp-store-settings-general.php:367 +#: includes/admin/store-settings/class-mp-store-settings-general.php:493 +#: includes/admin/store-settings/class-mp-store-settings-general.php:499 +#: includes/admin/store-settings/class-mp-store-settings-general.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:556 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:375 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:381 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:387 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:474 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:493 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:532 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:574 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:606 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:664 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:670 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:677 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:683 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:689 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:763 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:774 +#: includes/common/payment-gateways/_bitpay.php:250 +#: includes/common/payment-gateways/_bitpay.php:257 +#: includes/common/payment-gateways/_bitpay.php:264 +#: includes/common/payment-gateways/authorizenet-aim.php:290 +#: includes/common/payment-gateways/authorizenet-aim.php:325 +#: includes/common/payment-gateways/free_orders.php:160 +#: includes/common/payment-gateways/payfast.php:346 +#: includes/common/payment-gateways/paymill.php:162 +#: includes/common/payment-gateways/paypal-payflow.php:441 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-checkbox.php:22 +msgid "Yes" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:492 +#: includes/admin/store-settings/class-mp-store-settings-general.php:472 +msgid "%s Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:467 +#: includes/admin/store-settings/class-mp-store-settings-general.php:449 +msgid "Tax Settings" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:370 +#: includes/admin/store-settings/class-mp-store-settings-general.php:624 +msgid "Base Zip/Postal Code" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:354 +#: includes/admin/store-settings/class-mp-store-settings-general.php:608 +msgid "Base State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:589 +msgid "Base Country" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:582 +msgid "Location Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:195 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:800 +#: includes/multisite/class-mp-admin-multisite.php:172 +msgid "General Settings" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1945 +#: includes/admin/class-mp-products-admin.php:2185 +#: includes/admin/class-mp-store-settings-admin.php:111 +#: includes/admin/class-mp-store-settings-admin.php:266 +msgid "General" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:242 +msgid "Importers" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +#: includes/admin/class-mp-store-settings-admin.php:234 +msgid "Payments" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:313 +#: includes/admin/class-mp-store-settings-admin.php:112 +#: includes/admin/class-mp-store-settings-admin.php:222 +msgid "Presentation" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:916 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1015 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1018 +#: includes/admin/class-mp-dashboard-widgets.php:305 marketpress.php:702 +msgid "Coupons" +msgstr "" + +#: includes/admin/class-mp-admin.php:251 +msgid "Download »" +msgstr "" + +#: includes/admin/class-mp-admin.php:245 +#: includes/admin/class-mp-exporter-orders.php:170 +msgid "All Statuses" +msgstr "" + +#: includes/admin/class-mp-admin.php:209 +#: includes/admin/class-mp-exporter-orders.php:150 +#: includes/admin/class-mp-exporter-orders.php:178 +msgid "Export Orders" +msgstr "" + +#: includes/admin/class-mp-admin.php:228 +msgid "Show all dates" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:947 +msgid "Change Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:287 +msgid "Order Notes" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:478 +msgid "Other" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:205 +msgid "Subtotal" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:84 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:87 +#: includes/admin/class-mp-products-admin.php:1737 +#: includes/common/class-mp-cart.php:1409 +#: includes/common/class-mp-product.php:559 +msgid "Quantity" +msgstr "" + +#: includes/common/helpers.php:93 +msgid "Item" +msgstr "" + +#: includes/common/class-mp-order.php:1050 +msgid "Current Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:297 +msgid "Order Actions" +msgstr "" + +#: includes/common/class-mp-product.php:1084 +msgid "More Info »" +msgstr "" + +#: includes/common/class-mp-product.php:2313 +msgid "Low Product Inventory Notification" +msgstr "" + +#: includes/common/class-mp-order.php:338 includes/common/data.php:154 +msgid "New Order Notification: ORDERID" +msgstr "" + +#: includes/common/helpers.php:259 +msgid "Your payment for this order is complete." +msgstr "" + +#: includes/common/helpers.php:261 +msgid "Your payment for this order is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/helpers.php:256 +msgid "Payment Total:" +msgstr "" + +#: includes/common/helpers.php:253 +msgid "Transaction ID:" +msgstr "" + +#: includes/common/helpers.php:249 +msgid "Payment Type:" +msgstr "" + +#: includes/common/helpers.php:246 +msgid "Payment Method:" +msgstr "" + +#: includes/common/helpers.php:242 +msgid "Order Notes:" +msgstr "" + +#: includes/common/helpers.php:237 +msgid "Special Instructions:" +msgstr "" + +#: includes/common/helpers.php:232 +msgid "Tracking Number:" +msgstr "" + +#: includes/common/helpers.php:223 includes/common/helpers.php:226 +#: includes/common/helpers.php:228 +#: includes/common/shipping-modules/class-mp-shipping-api.php:406 +#: includes/common/shipping-modules/class-mp-shipping-api.php:428 +msgid "Shipping Method:" +msgstr "" + +#: includes/common/helpers.php:168 +msgid "No shipping required for this order." +msgstr "" + +#: includes/common/helpers.php:155 +msgid "Order Total:" +msgstr "" + +#: includes/common/class-mp-order.php:1025 +msgid "Taxes:" +msgstr "" + +#: includes/common/class-mp-order.php:1032 includes/common/helpers.php:144 +msgid "Shipping:" +msgstr "" + +#: includes/public/class-mp-checkout.php:367 +msgid "Street address, P.O. box, company name, c/o" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:314 +msgid "Shipping Info" +msgstr "" + +#: includes/public/class-mp-public.php:740 +msgid "Whoops, there was a problem loading up this file for your download. Please contact us for help." +msgstr "" + +#: includes/public/class-mp-public.php:683 +msgid "Sorry, our records show you've downloaded this file %d out of %d times allowed. Please contact us if you still need help." +msgstr "" + +#: includes/public/class-mp-public.php:634 +msgid "Sorry, your order has been marked as unpaid." +msgstr "" + +#: includes/public/class-mp-public.php:629 +msgid "Sorry, the link is invalid for this download." +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:15 +#: includes/admin/class-mp-products-admin.php:1172 +msgid "Cheatin’ uh?" +msgstr "" + +#: includes/public/class-mp-public.php:407 +#: includes/public/class-mp-short-codes.php:128 +msgid "Please enter a valid email address." +msgstr "" + +#: includes/admin/class-mp-ajax.php:191 +#: includes/admin/class-mp-products-admin.php:1821 +#: includes/admin/class-mp-products-admin.php:2010 +#: includes/admin/class-mp-products-admin.php:2267 +msgid "File URL" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1842 +msgid "External Link" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2177 +msgid "Add Variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:126 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:289 +msgid "Inventory" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:438 +#: includes/admin/class-mp-products-admin.php:578 +#: includes/admin/class-mp-products-admin.php:1552 +#: includes/admin/class-mp-products-admin.php:2053 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:134 +msgid "Sale Price" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "Variation Name" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1931 +msgid "Product Details" +msgstr "" + +#: includes/admin/class-mp-product-attributes-list-table.php:33 +msgid "Delete" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1057 +msgid "Trashed" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:231 +#: includes/admin/class-mp-orders-admin.php:1015 +#: includes/common/class-mp-order.php:1052 includes/common/helpers.php:97 +msgid "Total" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1196 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:210 +#: includes/admin/class-mp-orders-admin.php:1014 +msgid "Discount" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:221 +#: includes/admin/class-mp-orders-admin.php:1013 +#: includes/common/payment-gateways/_ideal.php:148 +#: includes/common/payment-gateways/_payway.php:134 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:108 +msgid "Tax" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:216 +#: includes/admin/class-mp-orders-admin.php:1012 +#: includes/admin/class-mp-products-admin.php:1958 +#: includes/admin/class-mp-products-admin.php:2198 +#: includes/admin/class-mp-store-settings-admin.php:114 +#: includes/admin/class-mp-store-settings-admin.php:230 +#: includes/common/class-mp-cart.php:717 includes/common/helpers.php:168 +#: includes/common/payment-gateways/_ideal.php:137 +#: includes/common/payment-gateways/_payway.php:116 +#: includes/public/class-mp-checkout.php:1304 +msgid "Shipping" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1011 +msgid "Items" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1010 +msgid "From" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:154 +#: includes/admin/class-mp-orders-admin.php:1009 +#: includes/common/class-mp-gdpr.php:370 +msgid "Order Date" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1008 +#: includes/common/class-mp-gdpr.php:366 +#: includes/common/template-functions.php:2134 +msgid "Order ID" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:22 +#: includes/admin/class-mp-orders-admin.php:1007 +msgid "Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1155 +msgid "N/A" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:243 +#: includes/admin/class-mp-products-admin.php:464 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:142 +msgid "Sales" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:463 +msgid "Stock" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:85 +#: includes/admin/class-mp-ajax.php:176 includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:434 +#: includes/admin/class-mp-products-admin.php:462 +#: includes/admin/class-mp-products-admin.php:576 +#: includes/admin/class-mp-products-admin.php:1519 +#: includes/admin/class-mp-products-admin.php:1569 +#: includes/admin/class-mp-products-admin.php:1950 +#: includes/admin/class-mp-products-admin.php:2059 +#: includes/admin/class-mp-products-admin.php:2190 +#: includes/admin/class-mp-products-admin.php:2330 +#: includes/common/class-mp-cart.php:1415 includes/common/helpers.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:130 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:276 +msgid "Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:173 +#: includes/admin/class-mp-products-admin.php:461 +#: includes/admin/class-mp-products-admin.php:1972 +#: includes/admin/class-mp-products-admin.php:2224 +msgid "SKU" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:459 +#: includes/admin/class-mp-products-admin.php:1793 +#: includes/admin/class-mp-products-admin.php:1805 +#: includes/admin/class-mp-products-admin.php:2163 +msgid "Variations" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:83 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:86 +#: includes/admin/class-mp-dashboard-widgets.php:134 +#: includes/admin/class-mp-products-admin.php:458 +#: includes/admin/class-mp-products-admin.php:837 +#: includes/admin/class-mp-shortcode-builder.php:689 +#: includes/admin/class-mp-shortcode-builder.php:856 +#: includes/admin/class-mp-shortcode-builder.php:1300 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:512 +#: includes/admin/widgets/ms-global-product-list.php:115 +#: includes/admin/widgets/product-list.php:211 +msgid "Product Name" +msgstr "" + +#: includes/common/template-functions.php:2575 +msgid "Categorized in " +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:305 +#: includes/common/payment-gateways/free_orders.php:176 +msgid "Payment Information" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:167 +#: includes/admin/class-mp-orders-admin.php:432 +#: includes/admin/class-mp-pages-admin.php:62 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:227 +#: includes/common/class-mp-gdpr.php:374 +#: includes/common/template-functions.php:175 +#: includes/common/template-functions.php:926 +msgid "Order Status" +msgstr "" + +#. translators: %s: orders closed +#: marketpress.php:327 +msgid "Closed (%s)" +msgid_plural "Closed (%s)" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:249 +#: includes/admin/class-mp-orders-admin.php:375 +#: includes/admin/class-mp-orders-admin.php:951 +#: includes/admin/class-mp-orders-admin.php:1053 +#: includes/admin/class-mp-orders-admin.php:1065 +#: includes/common/class-mp-gdpr.php:330 +#: includes/common/class-mp-order.php:1019 marketpress.php:325 +msgid "Closed" +msgstr "" + +#. translators: %s: shipped orders +#: marketpress.php:320 +msgid "Shipped (%s)" +msgid_plural "Shipped (%s)" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:248 +#: includes/admin/class-mp-orders-admin.php:376 +#: includes/admin/class-mp-orders-admin.php:950 +#: includes/admin/class-mp-orders-admin.php:1049 +#: includes/admin/class-mp-orders-admin.php:1064 +#: includes/common/class-mp-gdpr.php:329 +#: includes/common/class-mp-order.php:1002 marketpress.php:318 +msgid "Shipped" +msgstr "" + +#. translators: %s: paid orders +#: marketpress.php:313 +msgid "Paid (%s)" +msgid_plural "Paid (%s)" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:247 +#: includes/admin/class-mp-orders-admin.php:377 +#: includes/admin/class-mp-orders-admin.php:949 +#: includes/admin/class-mp-orders-admin.php:1045 +#: includes/admin/class-mp-orders-admin.php:1063 +#: includes/common/class-mp-gdpr.php:328 +#: includes/common/payment-gateways/2checkout.php:294 +#: includes/common/payment-gateways/_cubepoints.php:130 +#: includes/common/payment-gateways/authorizenet-aim.php:193 +#: includes/common/payment-gateways/free_orders.php:91 +#: includes/common/payment-gateways/mijireh.php:248 +#: includes/common/payment-gateways/paymill.php:273 +#: includes/common/payment-gateways/paypal-express.php:933 +#: includes/common/payment-gateways/paypal-express.php:967 +#: includes/common/payment-gateways/pin.php:258 +#: includes/common/payment-gateways/simplify.php:181 +#: includes/common/payment-gateways/stripe.php:368 +#: includes/common/payment-gateways/wepay.php:269 marketpress.php:311 +msgid "Paid" +msgstr "" + +#. translators: %s: orders received +#: marketpress.php:306 +msgid "Received (%s)" +msgid_plural "Received (%s)" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:246 +#: includes/admin/class-mp-orders-admin.php:378 +#: includes/admin/class-mp-orders-admin.php:1041 +#: includes/admin/class-mp-orders-admin.php:1062 +#: includes/common/class-mp-gdpr.php:327 includes/common/class-mp-order.php:995 +#: includes/common/payment-gateways/payfast.php:244 marketpress.php:304 +msgid "Received" +msgstr "" + +#: marketpress.php:268 +msgid "Search Orders" +msgstr "" + +#: marketpress.php:267 +msgid "View Order" +msgstr "" + +#: marketpress.php:262 +msgid "Order" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:301 +#: includes/admin/class-mp-orders-admin.php:989 marketpress.php:261 +msgid "Orders" +msgstr "" + +#: marketpress.php:228 +msgid "No Products found in Trash" +msgstr "" + +#: marketpress.php:227 +msgid "No Products Found" +msgstr "" + +#: marketpress.php:226 +msgid "Search Products" +msgstr "" + +#: marketpress.php:225 marketpress.php:229 +msgid "View Product" +msgstr "" + +#: marketpress.php:224 +msgid "New Product" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1022 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:258 +#: marketpress.php:223 +msgid "Edit" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1019 +msgid "Create New" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:687 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:698 +#: marketpress.php:217 +msgid "Product" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:307 +#: includes/common/template-functions.php:173 +#: includes/common/template-functions.php:179 +#: includes/common/template-functions.php:902 +#: includes/multisite/template-functions.php:82 marketpress.php:216 +#: marketpress.php:219 +msgid "Products" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:118 +#: includes/admin/widgets/product-tag-cloud.php:46 +#: includes/multisite/class-mp-admin-multisite.php:548 +msgid "Product Tags" +msgstr "" + +#: includes/common/template-functions.php:2906 +#: includes/multisite/template-functions.php:449 +msgid "Product Category" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:117 +#: includes/admin/widgets/categories.php:8 +#: includes/admin/widgets/categories.php:18 +#: includes/multisite/class-mp-admin-multisite.php:539 +msgid "Product Categories" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:332 +#: includes/common/template-functions.php:872 marketpress.php:218 +msgid "Store" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:60 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:209 +#: includes/admin/widgets/cart.php:8 includes/admin/widgets/cart.php:56 +#: includes/common/template-functions.php:174 +#: includes/common/template-functions.php:811 +msgid "Shopping Cart" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:110 +#: includes/admin/class-mp-store-settings-admin.php:218 +msgid "Store Settings" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:128 marketpress.php:607 +msgid "Settings" +msgstr "" + +#: includes/common/data.php:178 includes/common/data.php:190 +msgid "Your Order Has Been Shipped! (ORDERID)" +msgstr "" + +#: includes/common/data.php:159 includes/common/data.php:166 +#: includes/common/data.php:172 +msgid "Your Order Confirmation (ORDERID)" +msgstr "" + +#: includes/common/data.php:148 +msgid "

    Thank you for your order! We appreciate your business, and please come back often to check out our new products.

    " +msgstr "" + +#: includes/common/data.php:147 +msgid "

    You are almost done! Please do a final review of your order to make sure everything is correct then click the \"Confirm Payment\" button.

    " +msgstr "" + +#: includes/common/data.php:145 +msgid "

    Please enter your shipping information in the form below to proceed with your order.

    " +msgstr "" + +#: includes/common/data.php:143 +msgid "

    If you have any questions about your order please do not hesitate to contact us.

    " +msgstr "" + +#: includes/common/data.php:106 +msgid "tag" +msgstr "" + +#: includes/common/data.php:105 +msgid "category" +msgstr "" + +#: includes/common/data.php:104 +msgid "order-status" +msgstr "" + +#: includes/common/data.php:103 +msgid "shopping-cart" +msgstr "" + +#: includes/common/data.php:102 +msgid "products" +msgstr "" + +#. Translators: change default slugs here +#: includes/common/data.php:101 +msgid "store" +msgstr "" \ No newline at end of file diff --git a/languages/mp-cs.mo b/languages/mp-cs.mo new file mode 100644 index 0000000000000000000000000000000000000000..391c2025362fa7b60328f73c1a019b6e1f081a2a GIT binary patch literal 307 zcmYLE!AiqG5Urq>J$m*q2PqZZG)X;_jjM;+mV&_`Rm6*|=@_GNw#;rtKg8ejTii5< zK6uQ$H*a9(?{NRO7qAz26nNZp>XGRu{MO4!>$wTawqtqk_{oK;(;jDj$&B zfr2E8#l(_F@^bmJ4k?e{ez3dS$B7e%vS z)5w|SPp5#^Tj}&DgRa#B(mFYTD~LhCfG%|k{XWozK5xw=m}w>+=2 && n<=4) ? 1 : 2;\n" +"X-Generator: GlotPress/2.3.1\n" +"Language: cs_CZ\n" +"Project-Id-Version: MarketPress\n" + +#: includes/public/class-mp-checkout.php:1285 +msgid "By clicking this checkbox you allow the website to process your personal data." +msgstr "" + +#: includes/common/class-mp-gdpr.php:382 +msgid "Order Info" +msgstr "" + +#: includes/common/class-mp-gdpr.php:268 +msgid "Shipping Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:267 +msgid "Shipping Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:266 +msgid "Shipping ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:265 +msgid "Shipping State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:264 +msgid "Shipping City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:263 +msgid "Shipping Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:262 +msgid "Shipping Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:261 +msgid "Shipping Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:260 +msgid "Shipping Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:259 +msgid "Shipping Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:258 +msgid "Shipping First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:254 +msgid "Billing Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:253 +msgid "Billing Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:252 +msgid "Billing ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:251 +msgid "Billing State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:250 +msgid "Billing City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:249 +msgid "Billing Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:248 +msgid "Billing Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:247 +msgid "Billing Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:246 +msgid "Billing Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:245 +msgid "Billing Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:244 +msgid "Billing First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:151 +msgid "Orders Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:139 +msgid "Customer Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:100 includes/common/class-mp-gdpr.php:116 +msgid "MarketPress User Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:81 +msgid "" +"In addition to standard WordPress session cookies, this site might be setting an\n" +"\t\t additional cookie to remember your cart settings. This cookie will last for one year." +msgstr "" + +#: includes/common/class-mp-gdpr.php:80 +msgid "Cookies" +msgstr "" + +#: includes/common/class-mp-gdpr.php:77 +msgid "" +"The following information will be collected in order to process orders: your name,\n" +"\t\t username, email address, avatar and profile URLs, address and phone number. This data can be\n" +"\t\t exported and removed." +msgstr "" + +#: includes/common/class-mp-gdpr.php:76 +msgid "Additional data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:71 +msgid "" +"This site might be using third party services and tools to process payments or/and\n" +"\t\t process shipping data when creating orders on the MarketPress store. These services include payment\n" +"\t\t gateways: 2Checkout, Authorize.net AIM, eWay shared payments, eWay Rapid 3.1 Payments, Mijireh,\n" +"\t\t Mollie, Paymill, PayPal, PIN, Simplify Commerce by MasterCard, Stripe and WePay; shipping gateways:\n" +"\t\t Fedex, UPS, USPS." +msgstr "" + +#: includes/common/class-mp-gdpr.php:70 +msgid "Third parties" +msgstr "" + +#: includes/admin/class-mp-admin.php:403 +msgid "Start creating store pages and products for your online shop here." +msgstr "" + +#: includes/admin/class-mp-admin.php:402 +msgid "Create Online Shop" +msgstr "" + +#: includes/admin/class-mp-admin.php:394 +msgid "Run Setup Wizard" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:234 +msgid "If having problems during invoice generation, add define( 'DOMPDF_ENABLE_HTML5PARSER', true ); to the wp-config.php file." +msgstr "" + +#: includes/public/class-mp-checkout.php:723 +msgid "Invalid Email" +msgstr "" + +#: includes/public/class-mp-checkout.php:721 +#: includes/public/class-mp-checkout.php:729 +msgid "This field is required" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:804 +msgid "This option changes the built-in css styles for store pages. For a custom css style, save your css file with the /* MarketPress Style: Your CSS Theme Name Here */ header line in the \"%s\" folder and it will appear in this list so you may select it. You should select \"None\" if you don't wish to use custom CSS styles or if you are using default theme templates or custom theme templates and css to make your own completely unique store design. For more information on custom theme templates click here »." +msgstr "" + +#: includes/public/class-mp-public.php:421 +#: includes/public/class-mp-short-codes.php:142 +msgid "Please enter a value greater than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:420 +#: includes/public/class-mp-short-codes.php:141 +msgid "Please enter a value less than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:419 +#: includes/public/class-mp-short-codes.php:140 +msgid "Please enter a value between {0} and {1}." +msgstr "" + +#: includes/public/class-mp-public.php:418 +#: includes/public/class-mp-short-codes.php:139 +msgid "Please enter a value between {0} and {1} characters long." +msgstr "" + +#: includes/public/class-mp-public.php:417 +#: includes/public/class-mp-short-codes.php:138 +msgid "Please enter at least {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:416 +#: includes/public/class-mp-short-codes.php:137 +msgid "Please enter no more than {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:415 +#: includes/public/class-mp-short-codes.php:136 +msgid "Please enter a value with a valid extension." +msgstr "" + +#: includes/public/class-mp-public.php:414 +#: includes/public/class-mp-short-codes.php:135 +msgid "Please enter the same value again." +msgstr "" + +#: includes/public/class-mp-public.php:413 +#: includes/public/class-mp-short-codes.php:134 +msgid "Please enter a valid credit card number." +msgstr "" + +#: includes/public/class-mp-public.php:412 +#: includes/public/class-mp-short-codes.php:133 +msgid "Please enter only digits." +msgstr "" + +#: includes/public/class-mp-public.php:411 +#: includes/public/class-mp-short-codes.php:132 +msgid "Please enter a valid number." +msgstr "" + +#: includes/public/class-mp-public.php:410 +#: includes/public/class-mp-short-codes.php:131 +msgid "Please enter a valid date (ISO)." +msgstr "" + +#: includes/public/class-mp-public.php:409 +#: includes/public/class-mp-short-codes.php:130 +msgid "Please enter a valid date." +msgstr "" + +#: includes/public/class-mp-public.php:408 +#: includes/public/class-mp-short-codes.php:129 +msgid "Please enter a valid URL." +msgstr "" + +#: includes/public/class-mp-public.php:406 +#: includes/public/class-mp-short-codes.php:127 +msgid "Please fix this field." +msgstr "" + +#: includes/public/class-mp-checkout.php:1287 +#: includes/public/class-mp-public.php:405 +#: includes/public/class-mp-short-codes.php:126 +msgid "This field is required." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:810 +msgid "None - Without Special CSS-styles" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:809 +msgid "Default - Using Default CSS-styles" +msgstr "" + +#: marketpress.php:739 +msgid "Enable multiple downloads per product" +msgstr "" + +#: marketpress.php:738 +msgid "Multiple Downloads" +msgstr "" + +#: includes/public/class-mp-checkout.php:715 +msgid "Invalid Zip Code" +msgstr "" + +#: includes/common/template-functions.php:2126 +msgid "Guest Email" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:195 +msgid "There was a problem finalizing your purchase. Please re-enter your credit card information and try again" +msgstr "" + +#: includes/common/class-mp-cart.php:565 includes/common/class-mp-order.php:600 +#: includes/common/helpers.php:111 +msgid "Download %1$s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:331 +msgid "Export products to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:328 +msgid "The import process uses the WordPress importer plugin." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:326 +msgid "Import / Export Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:325 +msgid "Export settings to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:324 +msgid "Import configuration" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:320 +msgid "Use the text below to export to a new installation. Or paste in the new configuration to import." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:318 +msgid "Import / Export Settings" +msgstr "" + +#. translators: URL to wp-admin/import.php +#: includes/admin/store-settings/class-mp-store-settings-import.php:266 +msgid "This importer is not installed. Please install importers from the main site." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:261 +msgid "Install Now" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:260 +msgid "Install %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:240 +msgid "Run Importer" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:239 +msgid "Run %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:258 +msgid "Import/Export" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1199 +msgid "Requires Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:737 +msgid "Optionally limit the user to some categories" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:671 +msgid "Should this coupon only be available to logged in users?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:670 +msgid "Require Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:655 +msgid "Mimimum number of products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:653 +msgid "Enter the minimum number of products in the cart that this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:648 +msgid "Can this coupon be limited to a number of products in the cart?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:334 +msgid "Add all values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:265 +msgid "Set as default variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:154 +msgid "Set Default" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:150 +msgid "More Info" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:40 +msgid "MarketPress - Quick Setup" +msgstr "" + +#: includes/public/class-mp-checkout.php:1399 +msgid "Proceed to checkout and create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1241 +#: includes/public/class-mp-checkout.php:1245 +msgid "Register account" +msgstr "" + +#: includes/public/class-mp-checkout.php:1233 +msgid "Register as customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:765 +msgid "

    Oops!

    Looks like you haven't added anything your cart. Let's go shopping!

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:763 +msgid "

    Oops!

    The cart is disabled.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing Information" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:214 +msgid "Global Currency" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:198 +msgid "Global Store Currency" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:507 +msgid "There are no shipping services available for this type of package in your location." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:168 +msgid "Using this USPS Shipping calculator requires requesting an Ecommerce API Username and Password. Get your free set of credentials here ». The password is no longer used for the API, just the username which you should enter below. The USPS test site has not yet been updated and currently doesn't work - you should just request activating your credentials with USPS and go live." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:339 +msgid "ZIP Code" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:334 +msgid "Last name" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:333 +msgid "First name" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:150 +msgid "These are the manual payment instructions to display on the order confirmation screen. TOTAL will be replaced with the order total and ORDERID will be replaced with Order ID." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:240 +msgid "You must login to Authorize.net merchant dashboard to obtain the API login ID and API transaction key. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:327 +msgid "
    1. Set the \"Return Method\" within Site Management to Header Redirect and set the \"Return URL\" to %s
    2. Set your notifications url to %s
    " +msgstr "" + +#: includes/common/data.php:191 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Also, digital downloads included in your order are now ready to be downloaded. Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:185 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order is now available to download! Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:184 +msgid "Your Order Is Ready To Be Downloaded! (ORDERID)" +msgstr "" + +#: includes/common/data.php:179 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:173 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received, your digital goods are ready to be downloaded and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:167 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received and your digital goods are ready to be downloaded. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:160 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +" Your order has been received, and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information: \n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/class-mp-product.php:638 +msgid "You can not add more items to cart." +msgstr "" + +#: includes/common/class-mp-product.php:635 +msgid "You can only add {0} to cart." +msgstr "" + +#: includes/common/class-mp-product.php:625 +msgid "This product has an order limit of %d." +msgstr "" + +#: includes/common/class-mp-order.php:1454 +msgid "Shipped: tracking code: %s" +msgstr "" + +#: includes/common/class-mp-order.php:1000 +#: includes/common/class-mp-order.php:1012 +msgid "Finished" +msgstr "" + +#: includes/common/class-mp-order.php:858 +msgid "Contact Details" +msgstr "" + +#: includes/common/class-mp-order.php:339 includes/common/data.php:155 +msgid "" +"A new order (ORDERID) was created in your store:\n" +"\n" +" ORDERINFOSKU\n" +"\n" +" SHIPPINGINFO\n" +"\n" +" PAYMENTINFO\n" +"\n" +msgstr "\n" + +#: includes/common/class-mp-cart.php:1858 +msgid "Add again" +msgstr "" + +#: includes/common/class-mp-cart.php:1852 +msgid "was removed from Shopping Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1242 +#: includes/public/class-mp-short-codes.php:160 +msgid "Cart update notice: this item has a limit per order or you have reached the stock limit." +msgstr "" + +#: includes/admin/widgets/product-list.php:235 +msgid "Show Only Featured Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:533 +msgid "If enabled, users won't be able to filter products per category and/or to order by release date/name/price." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:531 +msgid "Hide Products Filter?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:353 +msgid "Notification to registration email instead of billing email?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:322 +msgid "Order Shipped - Mixed orders (with both digital and physical products)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:289 +msgid "Order Shipped - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:224 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:194 +msgid "New Order - Mixed" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:161 +msgid "New Order - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:115 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:243 +msgid "Mixed orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:110 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:238 +msgid "Digital downloads orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:105 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:233 +msgid "Physical orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:96 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed.
    For orders placed with manual payment, emails set here will be overriden by the one configured in manual payments settings, under payments settings page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:89 +msgid "Customer Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:47 +msgid "Admin Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:566 +msgid "Only contact details" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:565 +msgid "Full billing info" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:561 +msgid "Details Collection" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:548 +msgid "Digital Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:515 +msgid "Apply Tax to Digital Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:236 +msgid "product (default)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:231 +msgid "If you are experiencing conflicts with other e-commerce plugins change this setting. This will change the internal post type of all your products. Please note that changing this option may break 3rd party themes or plugins." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1203 +msgid "Hide details" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1202 +msgid "Show all changes" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1184 +msgid "Version %s" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1161 +msgid "Current" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1131 +msgid "%s changelog" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:952 +msgid "We did not find any data for this plugin or theme..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:285 +msgid "Activate WPMU DEV Dashboard" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:279 +msgid "Just one more step - activate the WPMU DEV Dashboard plugin and you're all done!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:277 +msgid "Important updates are available for your WPMU DEV plugins/themes. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:273 +msgid "Just one more step to enable updates and support for %s!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:271 +msgid "Important updates are available for %s. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:264 +msgid "activate" +msgstr "" + +#: includes/admin/class-mp-admin.php:398 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:248 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:289 +msgid "Dismiss" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:247 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:288 +msgid "Saving..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:244 +msgid "Install Plugin" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:238 +msgid "Almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:236 +msgid "Important updates are available for your WPMU DEV plugins/themes. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:232 +msgid "%s is almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:230 +msgid "Important updates are available for %s. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:223 +msgid "install" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1428 +msgid "Sets the number of Tags to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1289 +msgid "How many products to display in the product list if \"paginate\" is set to false." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:739 +#: includes/admin/class-mp-shortcode-builder.php:906 +#: includes/admin/class-mp-shortcode-builder.php:1350 +msgid "Grid" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:735 +#: includes/admin/class-mp-shortcode-builder.php:902 +#: includes/admin/class-mp-shortcode-builder.php:1346 +msgid "Products will be displayed as list or grid." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:206 +msgid "Display a cloud or list of your global product tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:205 +msgid "Display a list of your global categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:204 +msgid "Display a list or grid of your global products." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:181 +msgid "Display a list of featured products." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1451 +msgid "Is Featured?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1444 +msgid "Featured Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:581 +#: includes/admin/class-mp-products-admin.php:1580 +msgid "% discount" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:579 +msgid "OR" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:460 +#: includes/admin/class-mp-products-admin.php:586 +#: includes/admin/widgets/product-list.php:217 +msgid "Featured" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:536 +#: includes/admin/class-mp-orders-admin.php:538 +msgid "Tracking Link" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:508 +msgid "Shipping Tax" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:356 +msgid "Shipping Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:352 +msgid "Taxes Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:349 +msgid "Products Total" +msgstr "" + +#: includes/admin/class-mp-ajax.php:366 +msgid "Oops! You entered an invalid username/email and or password." +msgstr "" + +#: includes/admin/class-mp-ajax.php:254 +msgid "Percentage Discount" +msgstr "" + +#: includes/admin/class-mp-ajax.php:234 +msgid "Limit the Amount of Items per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:214 +msgid "Unused Attributes" +msgstr "" + +#: includes/admin/class-mp-admin.php:82 +msgid "Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-admin.php:79 +msgid "MarketPress setup is not complete! Once you've completed this quick setup wizard you'll have a fully working online store - exciting! " +msgstr "" + +#: marketpress.php:263 +msgctxt "mp_order" +msgid "Add New" +msgstr "" + +#: marketpress.php:184 +msgctxt "product_tag" +msgid "Product Tag" +msgstr "" + +#: marketpress.php:183 +msgctxt "product_tag" +msgid "Product Tags" +msgstr "" + +#: marketpress.php:150 +msgctxt "product_category" +msgid "Product Category" +msgstr "" + +#: marketpress.php:149 +msgctxt "product_category" +msgid "Product Categories" +msgstr "" + +#. Author URI of the plugin/theme +msgid "http://premium.wpmudev.org" +msgstr "" + +#: marketpress.php:729 +msgid "Invoice PDF" +msgstr "" + +#: marketpress.php:712 +msgid "Grant access to themes and gateways depending on the user's Pro Site level" +msgstr "" + +#: marketpress.php:711 +msgid "Pro Sites" +msgstr "" + +#: marketpress.php:703 +msgid "Offer and accept coupon codes" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:687 +msgid "Install %s Pages" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:682 +msgid "Welcome to %s – Install pages required by the plugin automatically." +msgstr "" + +#: marketpress.php:668 +msgid "Your pages were created successfully." +msgstr "" + +#: marketpress.php:436 +msgid "Add a Product" +msgstr "" + +#: marketpress.php:271 +msgid "Parent Order" +msgstr "" + +#: marketpress.php:270 +msgid "No orders found in trash" +msgstr "" + +#: marketpress.php:269 +msgid "No orders found" +msgstr "" + +#: marketpress.php:265 +msgid "Edit Order" +msgstr "" + +#: marketpress.php:264 +msgid "Add New Order" +msgstr "" + +#: marketpress.php:220 marketpress.php:221 +msgid "Add New Product" +msgstr "" + +#: marketpress.php:197 +msgid "No product tags found" +msgstr "" + +#: marketpress.php:196 +msgid "Choose from the most used product tags" +msgstr "" + +#: marketpress.php:195 +msgid "Add or remove product tags" +msgstr "" + +#: marketpress.php:194 +msgid "Separate product tags with commas" +msgstr "" + +#: marketpress.php:193 +msgid "Search Product Tags" +msgstr "" + +#: marketpress.php:192 +msgid "Parent Product Tag:" +msgstr "" + +#: marketpress.php:191 +msgid "Parent Product Tag" +msgstr "" + +#: marketpress.php:190 +msgid "New Product Tag Name" +msgstr "" + +#: marketpress.php:189 +msgid "Add New Product Tag" +msgstr "" + +#: marketpress.php:188 +msgid "Update Product Tag" +msgstr "" + +#: marketpress.php:187 +msgid "View Product Tag" +msgstr "" + +#: marketpress.php:186 +msgid "Edit Product Tag" +msgstr "" + +#: marketpress.php:185 +msgid "All Product Tags" +msgstr "" + +#: marketpress.php:163 +msgid "No product categories found" +msgstr "" + +#: marketpress.php:162 +msgid "Choose from the most used product categories" +msgstr "" + +#: marketpress.php:161 +msgid "Add or remove product categories" +msgstr "" + +#: marketpress.php:160 +msgid "Separate product categories with commas" +msgstr "" + +#: marketpress.php:159 +msgid "Search Product Categories" +msgstr "" + +#: marketpress.php:158 +msgid "Parent Product Category:" +msgstr "" + +#: marketpress.php:157 +msgid "Parent Product Category" +msgstr "" + +#: marketpress.php:156 +msgid "New Product Category Name" +msgstr "" + +#: marketpress.php:155 +msgid "Add New Product Category" +msgstr "" + +#: marketpress.php:154 +msgid "Update Product Category" +msgstr "" + +#: marketpress.php:153 +msgid "View Product Category" +msgstr "" + +#: marketpress.php:152 +msgid "Edit Product Category" +msgstr "" + +#: marketpress.php:151 +msgid "All Product Categories" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Please fix the %s1 and then try submitting the form again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Oops! The form contains %s1 which %s2 been highlighted below." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:660 +msgid "have" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:659 +msgid "has" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:651 +msgid "Value must be less than {0}" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:650 +msgid "Please enter only letters and numbers" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:539 +msgid "Due to prolonged inactivity on this page, one or more settings were not saved. Please try again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:535 +msgid "Settings Saved" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-user-select.php:22 +msgid "Select Some Users" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-section.php:18 +msgid "Section Title" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:425 +msgid "Are you sure you want to delete this?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:30 +msgid "Add Row" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-post-select.php:24 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-taxonomy-select.php:22 +msgid "Select Posts" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:210 +msgid "Add Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:129 +msgid "Select the image that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:93 +msgid "Select image(s) that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:79 +msgid "Select the image that you would like to use for this variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:48 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:82 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:68 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:132 +msgid "Select Image" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:31 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:160 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:168 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:19 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:115 +msgid "Select File" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:30 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:18 +msgid "Select the file that you would like to use." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:357 +msgid "Create Variations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:356 +msgid "Add Another Variant" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Insert a value and press ENTER" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "(e.g. White, Grey, Red etc.)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Variation Values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:333 +msgid "Or create new variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "(e.g. Color)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:303 +msgid "You are about to delete selected variants.
    If you want to continue please confirm." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:302 +msgid "Confirmation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:290 +msgid "Insert quantity available. Empty for unlimited." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:281 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:294 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:307 +msgid "Cancel" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:280 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:293 +msgid "Update" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:277 +msgid "Insert the price i.e. 25 or 25.50" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:115 +msgid "Img." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:85 +msgid "Add New Variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:79 +msgid "Delete Variants" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:78 +msgid "Update Prices" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:77 +msgid "Update Inventory" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:76 +msgid "Update Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:75 +msgid "Bulk Actions" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:73 +msgid "Select bulk action" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:196 +msgid "Configure Store" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:195 +msgid "Configure shipping rates, emails and your store's appearance. " +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:190 +msgid "Add Product" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:189 +msgid "Add your first product for sale and get familiar with adding products." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:184 +msgid "Your store is almost ready for its first customers, but first it needs some products. Get started by adding products below, or jump straight into further configuring your store’s settings." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:183 +msgid "Woohoo! Your online store is up and running." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:160 +msgid "Finish Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:124 +msgid "And what metric system do you want to use?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:113 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:142 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:159 +msgid "Back" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:109 +msgid "Do you want to apply tax for your products? You can customize this for each product and variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:105 +msgid "What currency do you want to sell with?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:93 +msgid "And, which countries do you want to sell to?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:89 +msgid "Where is your online store based?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:80 +msgid "Payment Gateway" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:79 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:123 +msgid "Metric System" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:78 +msgid "Currency & Tax" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:77 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:88 +msgid "Locations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:70 +msgid "Choose where you want to sell your stuff and what currency. Easy!" +msgstr "" + +#: includes/public/class-mp-checkout.php:1400 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:58 +msgid "Continue" +msgstr "" + +#: includes/admin/class-mp-admin.php:83 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:53 +msgid "Skip this step, I'll do this manually" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:49 +msgid "Install store pages" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:44 +msgid "Once you've completed this quick setup wizard you'll have a fully working online store - exciting! Start
    by creating the default store pages for the online store such as the cart, checkout and store pages." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:42 +msgid "MarketPress adds a full online store to your website, with heaps of configuration options and addons
    to suit your needs. It's really easy to get going, and only takes a few minutes to setup!" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:41 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:69 +msgid "Welcome to MarketPress - Quick Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-advanced-select.php:23 +msgid "Select Some Options" +msgstr "" + +#: includes/wpmudev-metaboxes/class-wpmudev-field.php:694 +msgid "You must the WPMUDEV_Field::display() method in your form field class" +msgstr "" + +#: includes/public/class-mp-short-codes.php:636 +msgid "Only %s left in stock..." +msgstr "" + +#: includes/public/class-mp-short-codes.php:633 +msgid "Unlimited stock" +msgstr "" + +#: includes/public/class-mp-short-codes.php:430 +msgid "product_id must be defined" +msgstr "" + +#: includes/public/class-mp-checkout.php:1250 +msgid "An account with this username already exists" +msgstr "" + +#: includes/public/class-mp-checkout.php:1394 +msgid "Continue as Guest" +msgstr "" + +#: includes/public/class-mp-checkout.php:1393 +msgid "Proceed to checkout and you'll have an opportunity to create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1392 +#: includes/public/class-mp-checkout.php:1398 +msgid "First-time customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1386 +msgid "Login" +msgstr "" + +#: includes/public/class-mp-checkout.php:1379 +msgid "E-Mail Address/Username" +msgstr "" + +#: includes/public/class-mp-checkout.php:1377 +msgid "Sign in to speed up the checkout process." +msgstr "" + +#: includes/public/class-mp-checkout.php:1376 +msgid "Have an account?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1297 +msgid "Shipping address different than billing?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1184 +msgid "There are no available gateways to process this payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1160 +msgid "Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:1123 +msgid "Oops! An error occurred while processing your payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1051 +msgid "Next Step »" +msgstr "" + +#: includes/public/class-mp-checkout.php:1045 +msgid "« Previous Step" +msgstr "" + +#: includes/public/class-mp-checkout.php:873 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:657 +msgid "error" +msgstr "" + +#: includes/public/class-mp-checkout.php:872 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:658 +msgid "errors" +msgstr "" + +#: includes/public/class-mp-checkout.php:871 +msgid "

    Oops! We found %d %s in the form below.

    Fields that have errors are highlighted in red below. Entering into a field will reveal the actual error that occurred.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:870 +msgid "Please enter a valid first and last name" +msgstr "" + +#: includes/public/class-mp-checkout.php:869 +msgid " Please enter a valid card security code" +msgstr "" + +#: includes/public/class-mp-checkout.php:868 +msgid "Please enter a valid card expiration" +msgstr "" + +#: includes/public/class-mp-checkout.php:773 +msgid "Javascript is required in order to checkout. Please enable Javascript in your browser and then refresh this page." +msgstr "" + +#: includes/public/class-mp-checkout.php:588 +msgid "An unknown error occurred. Please try again." +msgstr "" + +#: includes/public/class-mp-checkout.php:386 +msgid "Town/City" +msgstr "" + +#: includes/public/class-mp-checkout.php:380 +msgid "Apartment, suite, unit, building, floor, etc" +msgstr "" + +#: includes/public/class-mp-checkout.php:376 +msgid "Address Line 2" +msgstr "" + +#: includes/public/class-mp-checkout.php:363 +msgid "Address Line 1" +msgstr "" + +#: includes/common/class-mp-order.php:770 +#: includes/public/class-mp-checkout.php:354 +msgid "Company" +msgstr "" + +#: includes/public/class-mp-checkout.php:330 +msgid "Last" +msgstr "" + +#: includes/public/class-mp-checkout.php:321 +msgid "First" +msgstr "" + +#: includes/public/class-mp-checkout.php:284 +msgid "State/Province" +msgstr "" + +#: includes/public/class-mp-checkout.php:83 +msgid "Review Order/Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing/Shipping Address" +msgstr "" + +#: includes/public/class-mp-checkout.php:80 +msgid "Login/Register" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:530 +msgid "Marketplace" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:523 +msgid "Global Marketplace Pages" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +msgid "Store Network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +#: includes/multisite/class-mp-admin-multisite.php:494 +msgid "Store Network Settings" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:440 +msgid "Set theme access permissions for network stores. For a custom css theme, save your css file with the MarketPress Theme: NAME header in the /marketpress/ui/themes/ folder and it will appear in this list so you may select it." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:361 +msgid "Choose a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:336 +msgid "%d products get indexed" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:285 +msgid "Product Indexer" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:281 +msgid "Please hold on..." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:280 +msgid "Index Products" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:279 +msgid "%d products have been indexed in whole network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:182 +msgid "Enable Global Shopping Cart?" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:178 +msgid "Limit Global Widgets/Shortcodes To Main Blog?" +msgstr "" + +#: includes/common/template-functions.php:2802 +#: includes/multisite/template-functions.php:355 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:97 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:114 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:143 +msgid "Next" +msgstr "" + +#: includes/common/template-functions.php:2801 +#: includes/multisite/template-functions.php:354 +msgid "Prev" +msgstr "" + +#: includes/common/template-functions.php:2597 +msgid "Tagged in " +msgstr "" + +#: includes/common/template-functions.php:2196 +#: includes/common/template-functions.php:2202 +#: includes/common/template-functions.php:2214 +#: includes/common/template-functions.php:2217 +msgid "Oops! We couldn't locate any orders matching that order number. Please verify the order number and try again." +msgstr "" + +#: includes/common/template-functions.php:2138 +msgid "Look Up" +msgstr "" + +#: includes/common/template-functions.php:1423 +msgid "Please choose a shipping method" +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "If you have your order ID you can look it up using the form below." +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "Order Search" +msgstr "" + +#: includes/common/template-functions.php:910 +#: includes/public/class-mp-checkout.php:1440 +msgid "Cart" +msgstr "" + +#: includes/common/template-functions.php:895 +msgid "[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:887 +msgid "[mp_global_categories_list]" +msgstr "" + +#: includes/common/template-functions.php:880 +msgid "" +"Welcome to our market place!\n" +"\n" +"Check out our network of products:\n" +"\n" +"[mp_list_global_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_global_categories_list]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:879 +msgid "Global Store" +msgstr "" + +#: includes/common/template-functions.php:873 +msgid "" +"Welcome to our online store! Feel free to browse around:\n" +"\n" +"[mp_store_navigation]\n" +"\n" +"Check out our most popular products:\n" +"\n" +"[mp_popular_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_list_categories]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_tag_cloud]" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:127 +msgid "If cart weight is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:126 +msgid "Cart Weight" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:222 +msgid "Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:206 +msgid "Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:196 +msgid "Retail Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:195 +msgid "Online Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:193 +msgid "Rates Request Type" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:189 +msgid "Maximum Weight Per Package" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:195 +#: includes/common/shipping-modules/mp-usps.php:236 +msgid "Enter your standard box sizes as LengthxWidthxHeight (e.g. 12x8x6) For each box defined enter the maximum weight it can contain. Note: the shipping prices this plugin calculates are estimates. If they are consistently too low or too high, please check that the list of boxes above and the product weights are accurate and complete." +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:187 +msgid "Handling Charge Per Box Shipped" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:176 +#: includes/common/shipping-modules/mp-ups.php:181 +msgid "Offered Services" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:165 +msgid "Shipper Number" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:151 +msgid "User ID" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:144 +msgid "Developer Kit Access Key" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:140 +msgid "Use Sandbox Mode?" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:123 +msgid "In order to use UPS, you will need a UPS Developer Kit access key and the UPS user ID and password associated with the access key. Set these up for free here. If this information is missing or incorrect, an error will appear during the checkout process and the buyer will not be able to complete the transaction." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:112 +msgid "If cart total is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:111 +msgid "Cart Total" +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:95 +#: includes/common/shipping-modules/mp-weight-rate.php:111 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Don't worry about sorting as this will be done automatically upon saving." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:170 +msgid "Method Title (visible for clients)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:409 +#: includes/common/shipping-modules/mp-ups.php:216 +#: includes/common/shipping-modules/mp-usps.php:251 +msgid "Max Weight (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:402 +#: includes/common/shipping-modules/mp-ups.php:209 +#: includes/common/shipping-modules/mp-usps.php:247 +msgid "Size (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:387 +msgid "Enter your standard box sizes as LengthxWidthxHeight ( 12x8x6 ) For each box defined enter the maximum weight it can contain. Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:361 +#: includes/common/shipping-modules/mp-usps.php:229 +msgid "Handling Charge per International Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:353 +msgid "International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:339 +#: includes/common/shipping-modules/mp-usps.php:213 +msgid "Handling Charge per Domestic Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:331 +msgid "Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:321 +msgid "When checked the customer can chose Residential or Commercial delivery with Residential the default. Unchecked it's only Residential rates." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:320 +msgid "Allow Commercial Delivery?" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:315 +msgid "Fedex 10kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:314 +msgid "Fedex 25kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:313 +msgid "Fedex Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:312 +msgid "Fedex Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:311 +msgid "Fedex Pak" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:310 +msgid "Fedex Tube" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:306 +msgid "Default Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:294 +msgid "Dropoff Type" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:290 +msgid "Meter ID" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:134 +msgid "This is a residential address" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:283 +msgid "There was an error processing your card: \"%s\". Please check your credit card info and try again." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:121 +msgid "Wepay makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept cards directly on your site. You don't need a merchant account or gateway. WePay handles everything including storing cards. Credit cards go directly to WePay's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:385 +msgid "There was an error processing your card - \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:356 +msgid "%s Store Purchase - Order ID - %s, Email - %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:251 +msgid "Stripe makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept Visa, MasterCard, American Express, Discover, JCB, and Diners Club cards directly on your site. You don't need a merchant account or gateway. Stripe handles everything, including storing cards, subscriptions, and direct payouts to your bank account. Credit cards go directly to Stripe's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:192 +msgid "ZMW - Zambian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:191 +msgid "ZAR - South African Rand" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:190 +msgid "YER - Yemeni Rial" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:189 +msgid "XPF - Cfp Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:188 +msgid "XOF - West African Cfa Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:187 +msgid "XCD - East Caribbean Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:186 +msgid "XAF - Central African Cfa Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:185 +msgid "WST - Samoan Tala" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:184 +msgid "VUV - Vanuatu Vatu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:183 +msgid "VND - Vietnamese Đồng" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:182 +msgid "VEF - Venezuelan Bolívar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:181 +msgid "UZS - Uzbekistani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:180 +msgid "UYI - Uruguayan Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:178 +msgid "UGX - Ugandan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:177 +msgid "UAH - Ukrainian Hryvnia" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:176 +msgid "TZS - Tanzanian Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:175 +msgid "TWD - New Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:174 +msgid "TTD - Trinidad and Tobago Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:172 +msgid "TOP - Tongan Paʻanga" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:171 +msgid "TJS - Tajikistani Somoni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:169 +msgid "SZL - Swazi Lilangeni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:168 +msgid "SVC - Salvadoran Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:167 +msgid "STD - São Tomé and Príncipe Dobra" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:166 +msgid "SRD - Surinamese Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:165 +msgid "SOS - Somali Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:164 +msgid "SLL - Sierra Leonean Leone" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:163 +msgid "SHP - Saint Helenian Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:160 +msgid "SCR - Seychellois Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:159 +msgid "SBD - Solomon Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:157 +msgid "RWF - Rwandan Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:156 +msgid "RUB - Russian Ruble" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:155 +msgid "RSD - Serbian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:154 +msgid "RON - Romanian Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:153 +msgid "QAR - Qatari Riyal" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:152 +msgid "PYG - Paraguayan Guaraní*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:151 +msgid "PLN - Polish Złoty" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:150 +msgid "PKR - Pakistani Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:149 +msgid "PHP - Philippine Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:148 +msgid "PGK - Papua New Guinean Kina" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:147 +msgid "PEN - Peruvian Nuevo Sol*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:146 +msgid "PAB - Panamanian Balboa*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:144 +msgid "NPR - Nepalese Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:142 +msgid "NIO - Nicaraguan Córdoba*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:141 +msgid "NGN - Nigerian Naira" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:140 +msgid "NAD - Namibian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:139 +msgid "MZN - Mozambican Metical" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:137 +msgid "MXN - Mexican Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:136 +msgid "MWK - Malawian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:135 +msgid "MVR - Maldivian Rufiyaa" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:134 +msgid "MUR - Mauritian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:133 +msgid "MRO - Mauritanian Ouguiya" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:132 +msgid "MOP - Macanese Pataca" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:131 +msgid "MNT - Mongolian Tögrög" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:130 +msgid "MKD - Macedonian Denar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:129 +msgid "MGA - Malagasy Ariary" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:128 +msgid "MDL - Moldovan Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:126 +msgid "LVL - Latvian Lats" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:124 +msgid "LSL - Lesotho Loti" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:123 +msgid "LRD - Liberian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:122 +msgid "LKR - Sri Lankan Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:121 +msgid "LBP - Lebanese Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:120 +msgid "LAK - Lao Kip*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:119 +msgid "KZT - Kazakhstani Tenge" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:118 +msgid "KYD - Cayman Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:117 +msgid "KRW - South Korean Won" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:116 +msgid "KMF - Comorian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:115 +msgid "KHR - Cambodian Riel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:114 +msgid "KGS - Kyrgyzstani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:113 +msgid "KES - Kenyan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:111 +msgid "JMD - Jamaican Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:110 +msgid "ISK - Icelandic Króna" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:109 +msgid "INR - Indian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:108 +msgid "ILS - Israeli New Sheqel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:107 +msgid "IDR - Indonesian Rupiah" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:105 +msgid "HTG - Haitian Gourde" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:103 +msgid "HNL - Honduran Lempira*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:101 +msgid "GYD - Guyanese Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:100 +msgid "GTQ - Guatemalan Quetzal*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:99 +msgid "GNF - Guinean Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:98 +msgid "GMD - Gambian Dalasi" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:97 +msgid "GIP - Gibraltar Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:96 +msgid "GEL - Georgian Lari" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:94 +msgid "FKP - Falkland Islands Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:93 +msgid "FJD - Fijian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:91 +msgid "ETB - Ethiopian Birr" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:90 +msgid "EGP - Egyptian Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:89 +msgid "EEK - Estonian Kroon*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:88 +msgid "DZD - Algerian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:87 +msgid "DOP - Dominican Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:85 +msgid "DJF - Djiboutian Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:84 +msgid "CZK - Czech Koruna*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:83 +msgid "CVE - Cape Verdean Escudo*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:82 +msgid "CRC - Costa Rican Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:81 +msgid "COP - Colombian Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:80 +msgid "CNY - Chinese Renminbi Yuan" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:79 +msgid "CLP - Chilean Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:77 +msgid "CDF - Congolese Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:76 +msgid "CAD - Canadian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:75 +msgid "BZD - Belize Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:74 +msgid "BWP - Botswana Pula" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:73 +msgid "BSD - Bahamian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:72 +msgid "BRL - Brazilian Real*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:71 +msgid "BOB - Bolivian Boliviano*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:70 +msgid "BND - Brunei Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:69 +msgid "BMD - Bermudian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:68 +msgid "BIF - Burundian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:67 +msgid "BGN - Bulgarian Lev" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:66 +msgid "BDT - Bangladeshi Taka" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:65 +msgid "BBD - Barbadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:64 +msgid "BAM - Bosnia & Herzegovina Convertible Mark" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:63 +msgid "AZN - Azerbaijani Manat" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:62 +msgid "AWG - Aruban Florin" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:61 +msgid "AUD - Australian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:60 +msgid "ARS - Argentine Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:59 +msgid "AOA - Angolan Kwanza*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:58 +msgid "ANG - Netherlands Antillean Gulden" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:57 +msgid "AMD - Armenian Dram" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:56 +msgid "ALL - Albanian Lek" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:55 +msgid "AFN - Afghan Afghani*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:54 +msgid "AED - United Arab Emirates Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:345 +msgid "Skrill balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:327 +msgid "Skrill IPN message received." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:283 +msgid "Skrill" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:278 +msgid "Pending payment" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:144 +msgid "The secret word must match the word submitted in the \"Merchant Tools\" section of your Skrill account." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:134 +msgid "You must use your valid Skrill merchant email. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:133 +msgid "Skrill Email" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:123 +msgid "Resell your inventory via Skrill.com (Moneybookers)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:95 +msgid "ZAR - South-African Rand" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:93 +msgid "TWD - Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:92 +msgid "TRY - New Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:91 +msgid "TND - Tunisian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:90 +msgid "THB - Thailand Baht" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:89 +msgid "SKK - Slovakian Koruna" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:86 +#: includes/common/payment-gateways/stripe.php:158 +msgid "SAR - Saudi Riyal" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:85 +msgid "RSD - Serbian dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:83 +msgid "QAR - Qatari Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:81 +msgid "OMR - Omani Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:80 +msgid "NOK - Norwegian Krone " +msgstr "" + +#: includes/common/payment-gateways/skrill.php:78 +#: includes/common/payment-gateways/stripe.php:138 +msgid "MYR - Malaysian Ringgit" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:77 +#: includes/common/payment-gateways/stripe.php:127 +msgid "MAD - Moroccan Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:74 +msgid "KRW - South-Korean Won" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:72 +msgid "JOD - Jordanian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:70 +msgid "INR - Indian Rupee" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:63 +msgid "EEK - Estonian Kroon" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:56 +msgid "AED - Utd. Arab Emir. Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:52 +msgid "Turkish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:51 +msgid "Swedish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:50 +msgid "Spanish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:49 +msgid "Russian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:48 +msgid "Romainian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:47 +msgid "Polish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:46 +msgid "Italian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:45 +msgid "Greek" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:44 +msgid "German" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:43 +msgid "French" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:42 +msgid "Finnish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:41 +msgid "English" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:40 +msgid "Dutch" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:39 +msgid "Danish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:38 +msgid "Czech" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:37 +msgid "Chinese" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:201 +msgid "There was an error processing your card: %s. Please re-enter your credit card info and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:278 +msgid "
  • There was an error processing your card: \"%s\". Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:274 +msgid "
  • There was an error processing your card. Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:177 +#: includes/common/payment-gateways/stripe.php:279 +msgid "Publishable Key" +msgstr "" + +#: includes/common/payment-gateways/pin.php:163 +msgid "API Credentials?" +msgstr "" + +#: includes/common/payment-gateways/pin.php:147 +msgid "PIN makes it easy to start accepting credit card payments with Australia’s first all-in-one online payment system. Accept all major credit cards directly on your site. Your sales proceeds are deposited to any Australian bank account, no merchant account required." +msgstr "" + +#: includes/common/payment-gateways/pin.php:57 +#: includes/common/payment-gateways/stripe.php:179 +msgid "USD - United States Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:455 +msgid "Email Footer" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:445 +msgid "Email Header" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:416 +msgid "Partner" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:409 +msgid "Vendor" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:852 +#: includes/common/payment-gateways/paypal-express.php:1126 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences\t section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:749 +msgid "Page Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:744 +msgid "Header Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:739 +msgid "Header Border Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:734 +msgid "Header Image" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:680 +msgid "Locale" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:624 +#: includes/common/payment-gateways/paypal-express.php:658 +msgid "Merchant Email" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:645 +msgid "Paypal Express Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:603 +msgid "Paypal Express Network Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:861 +msgid "Application ID (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:854 +msgid "Signature (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:847 +msgid "API Password (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:839 +msgid "API Username (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:832 +msgid "Signature (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:825 +msgid "API Password (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:817 +msgid "API Username (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:799 +msgid "This message is displayed at the top of the gateway settings page to store admins. It's a good place to inform them of your fees or put any sales messages." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:787 +msgid "Please enter your PayPal email address or business ID you want to recieve fees at." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:786 +msgid "PayPal E-mail" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:772 +msgid "Fees to Collect (%)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:375 +#: includes/public/class-mp-checkout.php:341 +msgid "Email Address" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:299 +msgid "Sorry, your order was not completed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:126 +#: includes/common/payment-gateways/paypal-express.php:780 +msgid "You will be redirected to the PayPal site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:90 +#: includes/common/payment-gateways/skrill.php:94 +msgid "USD - U.S. Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:89 +msgid "TRY - Turkish lira" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:88 +#: includes/common/payment-gateways/stripe.php:170 +msgid "THB - Thai Baht" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:87 +msgid "TWD - Taiwan New Dollars" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:86 +#: includes/common/payment-gateways/pin.php:59 +#: includes/common/payment-gateways/skrill.php:88 +#: includes/common/payment-gateways/stripe.php:162 +msgid "SGD - Singapore Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:84 +msgid "RUB - Russian Rubles" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:82 +msgid "PHP - Philippine Pesos" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:81 +#: includes/common/payment-gateways/pin.php:58 +#: includes/common/payment-gateways/skrill.php:79 +#: includes/common/payment-gateways/stripe.php:145 +msgid "NZD - New Zealand Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:79 +msgid "MXN - Mexican Peso" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:78 +msgid "MYR - Malaysian Ringgits" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:77 +#: includes/common/payment-gateways/pin.php:64 +#: includes/common/payment-gateways/skrill.php:73 +#: includes/common/payment-gateways/stripe.php:112 +msgid "JPY - Japanese Yen" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:75 +#: includes/common/payment-gateways/pin.php:63 +#: includes/common/payment-gateways/skrill.php:66 +#: includes/common/payment-gateways/stripe.php:102 +msgid "HKD - Hong Kong Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:73 +msgid "GBP - Pound Sterling" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:68 +#: includes/common/payment-gateways/pin.php:62 +#: includes/common/payment-gateways/skrill.php:59 +msgid "CAD - Canadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:67 +msgid "BRL - Brazilian Real" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:66 +#: includes/common/payment-gateways/pin.php:56 +#: includes/common/payment-gateways/skrill.php:57 +msgid "AUD - Australian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:288 +msgid "There was an error processing your card: \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:163 +msgid "When running on a live site, Paymill recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:161 +#: includes/common/payment-gateways/pin.php:157 +#: includes/common/payment-gateways/simplify.php:103 +#: includes/common/payment-gateways/stripe.php:260 +#: includes/common/payment-gateways/wepay.php:153 +msgid "Force SSL?" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:151 +msgid "Accept Visa, Mastercard, Maestro UK, Discover and Solo cards directly on your site. You don't need a merchant account or gateway. Credit cards go directly to Paymill's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:131 +msgid "CVV2" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:72 +#: includes/common/payment-gateways/pin.php:61 +#: includes/common/payment-gateways/skrill.php:65 +#: includes/common/payment-gateways/stripe.php:95 +msgid "GBP - British Pound" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:71 +#: includes/common/payment-gateways/stripe.php:173 +msgid "TRY - Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:70 +#: includes/common/payment-gateways/paypal-chained-payments.php:85 +#: includes/common/payment-gateways/skrill.php:87 +#: includes/common/payment-gateways/stripe.php:161 +msgid "SEK - Swedish Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:69 +#: includes/common/payment-gateways/skrill.php:84 +msgid "RON - Romanian Leu New" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:68 +#: includes/common/payment-gateways/paypal-chained-payments.php:83 +#: includes/common/payment-gateways/skrill.php:82 +msgid "PLN - Polish Zloty" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:67 +#: includes/common/payment-gateways/paypal-chained-payments.php:80 +#: includes/common/payment-gateways/stripe.php:143 +msgid "NOK - Norwegian Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:66 +#: includes/common/payment-gateways/skrill.php:75 +#: includes/common/payment-gateways/stripe.php:125 +msgid "LTL - Lithuanian Litas" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:65 +#: includes/common/payment-gateways/paypal-chained-payments.php:69 +#: includes/common/payment-gateways/skrill.php:60 +#: includes/common/payment-gateways/stripe.php:78 +msgid "CHF - Swiss Franc" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:64 +#: includes/common/payment-gateways/skrill.php:76 +msgid "LVL - Latvian Lat" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:63 +#: includes/common/payment-gateways/paypal-chained-payments.php:74 +#: includes/common/payment-gateways/skrill.php:69 +msgid "ILS - Israeli Shekel" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:62 +#: includes/common/payment-gateways/skrill.php:71 +msgid "ISK - Iceland Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:61 +#: includes/common/payment-gateways/paypal-chained-payments.php:76 +#: includes/common/payment-gateways/skrill.php:68 +#: includes/common/payment-gateways/stripe.php:106 +msgid "HUF - Hungarian Forint" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:60 +#: includes/common/payment-gateways/paypal-chained-payments.php:71 +#: includes/common/payment-gateways/skrill.php:62 +#: includes/common/payment-gateways/stripe.php:86 +msgid "DKK - Danish Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:59 +#: includes/common/payment-gateways/skrill.php:67 +#: includes/common/payment-gateways/stripe.php:104 +msgid "HRK - Croatian Kuna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:58 +#: includes/common/payment-gateways/paypal-chained-payments.php:70 +#: includes/common/payment-gateways/skrill.php:61 +msgid "CZK - Czech Koruna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:57 +#: includes/common/payment-gateways/skrill.php:58 +msgid "BGN - Bulgarian Leva" +msgstr "" + +#: includes/common/payment-gateways/payflow/class-mp-gateway-worker-payflow.php:123 +msgid "There was an error connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:344 +msgid "This setting will log all PayFast communication to the \"payfast.log\" file." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:342 +msgid "Log Debugging Info?" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:335 +msgid "DO NOT INPUT A VALUE UNLESS YOU HAVE SET ONE IN THE SETTINGS SECTION OF YOUR PAYFAST SETTINGS." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:333 +msgid "PayFast Passphrase" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:323 +msgid "You can find your credentials on your integration page." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:321 +msgid "PayFast Merchant Credentials" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:311 +msgid "PayFast Mode" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:308 +msgid "PayFast is a payments processing service for South Africa. We make it safe for buyers to send money and easy for sellers to receive money. More Info »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:306 +msgid "PayFast Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:285 +msgid "Your payment via PayFast for this order totaling %s is complete. The transaction number is %s." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:278 +msgid "Your payment via PayFast for this order totaling %s is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:124 +msgid "Your PayFast transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:82 +#: includes/common/payment-gateways/payfast.php:83 +msgid "PayFast" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:157 +msgid "API error: - \"%s\"" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:198 +msgid "The payment request is under process" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:140 +msgid "Order: #" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:116 +msgid "You will be redirected to the Mollie site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:73 +msgid "%sMollie%s provides a fully PCI Compliant and secure way to collect payments via iDeal, Credit Card, Bancontact / Mister Cash, SOFORT Banking, Overbooking, Bitcoin, PayPal, paysafecard and AcceptEmail." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:53 +#: includes/common/payment-gateways/mollie.php:54 +#: includes/common/payment-gateways/mollie.php:195 +#: includes/common/payment-gateways/mollie.php:245 +msgid "Mollie" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:50 +#: includes/common/payment-gateways/paymill.php:56 +#: includes/common/payment-gateways/paypal-chained-payments.php:72 +#: includes/common/payment-gateways/pin.php:60 +#: includes/common/payment-gateways/skrill.php:64 +#: includes/common/payment-gateways/stripe.php:92 +msgid "EUR - Euro" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:306 +msgid "Access Key" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:300 +msgid "You must login to the Mijireh.com dashboard to obtain the Access Key." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:299 +msgid "Credentials" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:289 +msgid "Mijireh Checkout provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:269 +msgid "Mijireh Error: " +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:89 +msgid "You will be redirected to the Mijireh.com site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:87 +msgid "Your Mijireh transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:42 +#: includes/common/payment-gateways/mijireh.php:43 +#: includes/common/payment-gateways/mijireh.php:324 +msgid "Mijireh" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:145 +msgid "These are the manual payment instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:189 +msgid "This is the email text to send to those who have made free order checkouts. You should include your free order instructions / information here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:183 +msgid "This is the free order information to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:182 +msgid "Confirmation User Information" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:177 +msgid "This is the information to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:163 +msgid "If enabled, all free orders will be automatically marked as paid." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:159 +msgid "Payment Status" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:149 +msgid "This gateway is automatically activated if order totalling 0 and it can't be disabled" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:35 +#: includes/common/payment-gateways/free_orders.php:36 +#: includes/common/payment-gateways/free_orders.php:89 +msgid "Free Order" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:34 +#: includes/common/payment-gateways/free_orders.php:197 +msgid "Free Orders" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:515 +msgid "Sandbox API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:266 +#: includes/common/payment-gateways/eway31.php:542 +msgid "eWay Rapid 3.1 Payments (beta)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:403 +msgid "Hosted Payment Page Language" +msgstr "" + +#: includes/common/payment-gateways/eway.php:373 +msgid "Note when testing in sandbox mode it will use the default eWay test API credentials. Also, please note that cart total needs to be a whole number (e.g. 10.00) in order to generate a successful transaction, otherwise the transaction will fail." +msgstr "" + +#: includes/common/payment-gateways/eway.php:267 +msgid "You will be redirected to https://www.eway.com.au to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:380 +msgid "You have chosen to checkout using %s. Please confirm your order details and click \"Submit Order\" when finished." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:272 +#: includes/common/payment-gateways/paymill.php:131 +#: includes/common/payment-gateways/stripe.php:231 +msgid "Security Code " +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Enter in MM/YYYY or MM/YY format" +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Expiration" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:321 +msgid "Delim Data" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:307 +#: includes/common/payment-gateways/paypal-payflow.php:456 +msgid "This text will appear as the footer of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:287 +#: includes/common/payment-gateways/paypal-payflow.php:440 +msgid "Email Customer (on success)" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:278 +msgid "Authorize.net default is \",\". Otherwise, get this from your credit card processor. If the transactions are not going through, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:277 +msgid "Delimeter Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:193 +msgid "Held For Review" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:310 +#: includes/common/payment-gateways/payfast.php:314 +msgid "Test" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:300 +#: includes/common/payment-gateways/pin.php:170 +#: includes/common/payment-gateways/stripe.php:272 +msgid "Secret Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:283 +msgid "Select Your Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:97 +msgid "Your payment will be processed by the iDEAL network" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:208 +msgid "These are the CubePoints to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:203 +msgid "These are the CubePoints instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:266 +msgid "If enabled, all API calls will be made to https://test.bitpay.com." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:263 +msgid "Use Test Mode?" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:259 +msgid "If checked, response fron bitpay will be stored in log file, keep it disabled unless required." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:256 +msgid "Enable Debug Log" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:249 +msgid "Full Notifications" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:231 +#: includes/common/payment-gateways/eway31.php:499 +#: includes/common/payment-gateways/eway31.php:526 +#: includes/common/payment-gateways/mollie.php:83 +#: includes/common/shipping-modules/mp-fedex.php:269 +msgid "API Key" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:222 +msgid "You can now accept a payment from any country on Earth, with no risk of fraud. To use Bitpay, you need to signup on Bitpay. \\n After completing the signup process, you can get api keys at Bitpay API key. You can read more about Bitpay at Bitpay API. \\n Bitpay requires SSL(https) for payment notifications to work." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:61 +msgid "You will be redirected to bitpay.com, for bitcoin payment. It is completely safe." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:346 +msgid "You must login to the 2Checkout vendor dashboard to obtain the seller ID and secret word. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:345 +#: includes/common/payment-gateways/authorizenet-aim.php:239 +#: includes/common/payment-gateways/paymill.php:168 +#: includes/common/payment-gateways/paypal-express.php:704 +#: includes/common/payment-gateways/simplify.php:80 +#: includes/common/payment-gateways/stripe.php:265 +#: includes/common/payment-gateways/wepay.php:158 +msgid "API Credentials" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:325 +#: includes/common/payment-gateways/_bitpay.php:220 +#: includes/common/payment-gateways/_cubepoints.php:185 +#: includes/common/payment-gateways/_ideal.php:268 +#: includes/common/payment-gateways/_payway.php:255 +#: includes/common/payment-gateways/authorizenet-aim.php:219 +#: includes/common/payment-gateways/eway.php:352 +#: includes/common/payment-gateways/eway31.php:460 +#: includes/common/payment-gateways/free_orders.php:147 +#: includes/common/payment-gateways/manual-payments.php:126 +#: includes/common/payment-gateways/mijireh.php:287 +#: includes/common/payment-gateways/mollie.php:71 +#: includes/common/payment-gateways/paymill.php:149 +#: includes/common/payment-gateways/paypal-chained-payments.php:344 +#: includes/common/payment-gateways/paypal-payflow.php:376 +#: includes/common/payment-gateways/pin.php:145 +#: includes/common/payment-gateways/simplify.php:69 +#: includes/common/payment-gateways/skrill.php:121 +#: includes/common/payment-gateways/stripe.php:249 +#: includes/common/payment-gateways/wepay.php:119 +#: includes/common/shipping-modules/mp-fedex.php:243 +#: includes/common/shipping-modules/mp-flat-rate.php:63 +#: includes/common/shipping-modules/mp-pickup.php:140 +#: includes/common/shipping-modules/mp-table-rate.php:94 +#: includes/common/shipping-modules/mp-ups.php:122 +#: includes/common/shipping-modules/mp-usps.php:167 +#: includes/common/shipping-modules/mp-weight-rate.php:110 +msgid "%s Settings" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:136 +msgid "You will be redirected to the 2Checkout site to finalize your payment." +msgstr "" + +#: includes/common/helpers.php:169 includes/public/class-mp-checkout.php:1277 +msgid "Billing" +msgstr "" + +#: includes/common/helpers.php:144 +msgid "FREE" +msgstr "" + +#: includes/common/helpers.php:134 +msgid "Coupons:" +msgstr "" + +#: includes/common/helpers.php:95 +msgid "Qty" +msgstr "" + +#: includes/common/helpers.php:94 +msgid "Sku" +msgstr "" + +#: includes/common/data.php:59 +msgid "Zip Code" +msgstr "" + +#: includes/common/class-mp-taxes.php:336 +msgid "Standard Table" +msgstr "" + +#: includes/common/class-mp-product.php:2698 +msgid "Tweet" +msgstr "" + +#: includes/common/class-mp-product.php:2321 +msgid "Notification Preferences: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2320 +msgid "Edit Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2318 +msgid "Link: %s

    " +msgstr "" + +#: includes/common/class-mp-product.php:2317 +msgid "Current Inventory: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2316 +msgid "Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2314 +msgid "This message is being sent to notify you of low stock of a product in your online store according to your preferences.

    " +msgstr "" + +#: includes/common/class-mp-product.php:1817 +msgid "" +msgstr "" + +#: includes/common/class-mp-product.php:1427 +#: includes/common/class-mp-product.php:1430 +msgid "(tax incl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1422 +#: includes/common/class-mp-product.php:1425 +msgid "(tax excl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1300 +#: includes/common/class-mp-product.php:1315 +msgid "%s each" +msgstr "" + +#: includes/common/class-mp-product.php:988 +msgid "Choose Options" +msgstr "" + +#: includes/common/class-mp-product.php:526 +msgid "Choose a %s" +msgstr "" + +#: includes/common/class-mp-product.php:284 +#: includes/common/class-mp-product.php:292 +#: includes/common/class-mp-product.php:615 +msgid "We're sorry, we only have %d of this item in stock right now." +msgstr "" + +#: includes/common/class-mp-order.php:1456 +msgid "Shipped: Track Shipment" +msgstr "" + +#: includes/common/class-mp-order.php:1049 +msgid "Order Received" +msgstr "" + +#: includes/common/class-mp-order.php:1014 +msgid "In Process" +msgstr "" + +#: includes/common/class-mp-order.php:969 +msgid "Order #" +msgstr "" + +#: includes/common/class-mp-order.php:866 +msgid "Copy billing address to shipping address" +msgstr "" + +#: includes/common/class-mp-order.php:822 +#: includes/public/class-mp-checkout.php:1314 +msgid "Special Instructions" +msgstr "" + +#: includes/common/class-mp-order.php:817 +#: includes/common/payment-gateways/stripe.php:335 +msgid "Email" +msgstr "" + +#: includes/common/class-mp-order.php:813 +#: includes/common/payment-gateways/stripe.php:341 +#: includes/public/class-mp-checkout.php:416 +msgid "Phone" +msgstr "" + +#: includes/common/class-mp-order.php:791 +#: includes/common/payment-gateways/stripe.php:337 +msgid "State" +msgstr "" + +#: includes/common/class-mp-order.php:776 +msgid "Address 1" +msgstr "" + +#: includes/common/class-mp-order.php:766 +msgid "Last Name" +msgstr "" + +#: includes/common/class-mp-order.php:762 +msgid "First Name" +msgstr "" + +#: includes/common/class-mp-installer.php:677 +msgid "MarketPress requires a database update to continue working correctly. Go to update page" +msgstr "" + +#: includes/common/class-mp-installer.php:657 +msgid "MarketPress performed a quick automatic update successfully!" +msgstr "" + +#: includes/common/class-mp-installer.php:653 +msgid "Perform Update" +msgstr "" + +#: includes/common/class-mp-installer.php:647 +msgid "Please update each subsite in your WordPress network where you have older version of the MarketPress plugin." +msgstr "" + +#: includes/common/class-mp-installer.php:641 +msgid "Depending on the amount of products you have, this update could take quite some time. Please keep this window open while the update completes. If you have products with multiple variations, the progress bar may move slower, please don't exit the window." +msgstr "" + +#: includes/common/class-mp-installer.php:632 +msgid "Product Metadata" +msgstr "" + +#: includes/common/class-mp-installer.php:601 +msgid "MarketPress requires a database update to continue working correctly.
    Below you will find a list of items that require your attention." +msgstr "" + +#: includes/common/class-mp-installer.php:600 +msgid "Update MarketPress Data" +msgstr "" + +#: includes/common/class-mp-installer.php:530 +msgid "Update Data" +msgstr "" + +#: includes/common/class-mp-installer.php:67 +msgid "Complete!" +msgstr "" + +#: includes/common/class-mp-installer.php:66 +msgid "Upgrading Database...Please Wait..." +msgstr "" + +#: includes/common/class-mp-installer.php:64 +msgid "An error occurred while updating. Please refresh this page and try again." +msgstr "" + +#: includes/common/class-mp-cart.php:2447 +msgid "Some items in your cart have fallen below the quantity you currently have in your cart. We have adjusted the quantity in your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:2443 +msgid "Some items in your cart are no longer available. We have removed these items from your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:1566 +msgid "item" +msgstr "" + +#: includes/common/class-mp-cart.php:1563 +#: includes/common/class-mp-cart.php:1568 +msgid "items" +msgstr "" + +#: includes/common/class-mp-cart.php:1363 +msgid "Items/Products added to Cart will show here." +msgstr "" + +#: includes/common/class-mp-cart.php:1362 +msgid "Your shopping cart is empty." +msgstr "" + +#: includes/common/class-mp-cart.php:1357 +msgid "View Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1241 +#: includes/common/class-mp-cart.php:1298 +#: includes/public/class-mp-short-codes.php:159 +msgid "Adding..." +msgstr "" + +#: includes/common/class-mp-cart.php:1033 +msgid "Continue Shopping?" +msgstr "" + +#: includes/common/class-mp-cart.php:961 +msgid "Secure Checkout
    Shopping is always safe and secure." +msgstr "" + +#: includes/common/class-mp-cart.php:959 +msgid "You are about to submit your order!
    Please review your order details before continuing. You will be charged immediately upon clicking \"Submit Order\"." +msgstr "" + +#: includes/common/class-mp-cart.php:956 +msgid "Continue »" +msgstr "" + +#: includes/common/class-mp-cart.php:955 +msgid "Submit Order" +msgstr "" + +#: includes/common/class-mp-cart.php:818 +msgid "There are no items in your cart - go add some !" +msgstr "" + +#: includes/common/class-mp-cart.php:816 +msgid "The cart is disabled." +msgstr "" + +#: includes/common/class-mp-cart.php:735 +msgid "Estimated %s" +msgstr "" + +#: includes/common/class-mp-cart.php:717 +msgid "Estimated Shipping" +msgstr "" + +#: includes/common/class-mp-cart.php:697 +msgid "Product Total" +msgstr "" + +#: includes/common/class-mp-cart.php:670 includes/common/class-mp-cart.php:672 +msgid "Estimated Total (%s, %s)" +msgstr "" + +#: includes/common/class-mp-cart.php:668 +msgid "Estimated Total (%s)" +msgstr "" + +#: includes/common/class-mp-cart.php:666 includes/common/class-mp-cart.php:752 +msgid "Estimated Total" +msgstr "" + +#: includes/admin/widgets/product-list.php:247 +msgid "Show Thumbnail Placeholder image (if image is not set)" +msgstr "" + +#: includes/admin/widgets/cart.php:73 +msgid "Display product price" +msgstr "" + +#: includes/admin/widgets/cart.php:71 +msgid "Display product quantity" +msgstr "" + +#: includes/admin/widgets/cart.php:69 +msgid "Display product image" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:93 +msgid "General Shipping Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:773 +msgid "If you are having conflicts with the lightbox library from your theme or another plugin you should uncheck this." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:772 +msgid "Use Built-In Lightbox for Images?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:762 +msgid "Disable Large Image Display?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:688 +msgid "Show Product Image?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:682 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:684 +msgid "Show Tags List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:676 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:678 +msgid "Show Categories List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:671 +msgid "If enabled, description excerpt will be added above Add to cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:669 +msgid "Show Excerpt?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:665 +msgid "If enabled, users will be able to choose how many of the product they want to purchase before adding to their cart. If not checked, quantity could be change later on the cart page." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:663 +msgid "Show Quantity Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:649 +msgid "Settings related to the display of individual product pages." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:648 +msgid "Product Page Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:605 +msgid "Related Products Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:573 +msgid "Show Related Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:568 +msgid "Related Product Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:549 +msgid "Order Status Entries Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:510 +msgid "Sort Products By" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:497 +msgid "Products Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:492 +msgid "Paginate Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:478 +msgid "Excerpts Length" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:473 +msgid "Show Excerpts?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:450 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:746 +msgid "Image Alignment" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:412 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:708 +msgid "Custom Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:401 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:697 +msgid "Large - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:400 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:696 +msgid "Medium - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:399 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:695 +msgid "Thumbnail - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:397 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:693 +msgid "Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:386 +msgid "Select default placeholder image thumbnail when product image is not available (if empty, plugin's built-in image will be used)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:380 +msgid "Show default product placeholder thumbnail when product image is not available?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:374 +msgid "Show Product Thumbnail?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:369 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:658 +msgid "Redirect to cart page for immediate checkout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:368 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:657 +msgid "Stay on current product page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:366 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:655 +msgid "MarketPress supports two \"flows\" for adding products to the shopping cart. After adding a product to their cart, two things can happen:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:365 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:654 +msgid "Add To Cart Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:355 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:628 +msgid "Four" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:354 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:627 +msgid "Three" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:353 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:626 +msgid "Two" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:625 +msgid "One" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:349 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:622 +msgid "Set the number of products that show up in a grid row to best fit your theme" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:348 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:621 +msgid "How many products per row?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:342 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:609 +msgid "Display as grid" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:341 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:608 +msgid "Display as list" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:339 +msgid "Product Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:334 +msgid "Settings related to the display of product lists/grids." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:333 +msgid "Product List/Grid Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:314 +msgid "Show Twitter Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:309 +msgid "Twitter" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:303 +msgid "Show Share Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:297 +msgid "Recommend" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:296 +msgid "Like" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:294 +msgid "Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:283 +msgid "Show Facebook Like Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:278 +msgid "Facebook" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:257 +msgid "Show \"Pin It\" Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:252 +msgid "Pinterest" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:246 +msgid "Social Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:193 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:202 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:211 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:220 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:229 +#: includes/multisite/class-mp-admin-multisite.php:532 +#: includes/multisite/class-mp-admin-multisite.php:541 +#: includes/multisite/class-mp-admin-multisite.php:550 +msgid "Choose a Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:191 +msgid "This page will be used as the root for your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:168 +#: includes/multisite/class-mp-admin-multisite.php:586 +msgid "Create Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "uncropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "cropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:87 +#: includes/multisite/class-mp-admin-multisite.php:121 +#: includes/multisite/class-mp-admin-multisite.php:620 +msgid "An error occurred while creating the store page. Please try again." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:66 +msgid "Choose the gateway(s) that you would like to be available for checkout." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:65 +msgid "Enabled Gateways" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:78 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:146 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:179 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:213 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:274 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:307 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:341 +msgid "Text" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:71 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:139 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:172 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:206 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:267 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:300 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:334 +msgid "Subject" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:52 +msgid "Notification Email" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:510 +msgid "Enabling this option will display label `excl. tax` or `incl. tax` after price" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:509 +msgid "Display tax label?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:504 +msgid "Enabling this option will show Price + Tax, eg. if your price is 100 and your tax 20, your price will be 120" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:416 +#: includes/multisite/class-mp-admin-multisite.php:234 +msgid "Price Format" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:366 +msgid "Enabling this field will display a textbox on the shipping checkout page for users to enter special instructions for their order. Useful for product personalization, etc." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:365 +msgid "Show Special Instructions Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:360 +msgid "Universal" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:359 +msgid "Old" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1167 +#: includes/admin/store-settings/class-mp-store-settings-general.php:358 +msgid "New" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:353 +msgid "If you already use Google Analytics for your website, you can track detailed ecommerce information by enabling this setting. Choose whether you are using the new asynchronous or old tracking code. Before Google Analytics can report ecommerce activity for your website, you must enable ecommerce tracking on the profile settings page for your website. Also keep in mind that some gateways do not reliably show the receipt page, so tracking may not be accurate in those cases. It is recommended to use the PayPal gateway for the most accurate data. More information »" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:347 +msgid "Do you want to display the product price on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:346 +msgid "Show product price on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:340 +msgid "Do you want to display the product quantity on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:339 +msgid "Show product quantity on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:333 +msgid "Do you want to display the product image on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:332 +msgid "Show product image on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:327 +msgid "This option hide floating Mini Cart in top right corner." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:326 +msgid "Disable Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:316 +msgid "If unchecked your Orders admin page will be hidden" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:315 +msgid "Show admin Orders page?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:309 +msgid "Disable Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:303 +msgid "Force Login?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:297 +msgid "Hide Out of Stock Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:555 +msgid "This will prevent multiples of the same downloadable product form being added to the cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:554 +msgid "Limit Digital Products Per-order?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:268 +msgid "If you're having issues downloading large files and have worked with your hosting provider to increase your memory limits, try enabling this - just keep in mind, it's not as secure!" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:267 +msgid "Use Alternative Download Method?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:252 +msgid "Download Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:230 +msgid "Change product post type" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:51 +msgid "%s Capabilities" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-addons.php:47 +msgid "Store Settings: Add Ons: %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:254 +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:56 +msgid "Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Edit Product Attribute %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:246 +msgid "Exporters" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:238 +msgid "Short Codes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:207 +msgid "An appropriate message for key \"%s\" could not be found." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:204 +msgid "Product attribute updated successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:203 +msgid "Product attribute added successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +msgid "Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +#: includes/admin/store-settings/class-mp-store-settings-addons.php:121 +msgid "Store Settings: Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "Store Settings: Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:118 +msgid "Store Settings: Product Tags" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:117 +msgid "Store Settings: Product Categories" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Store Settings: Product Attributes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +msgid "Store Settings: Payments" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:114 +msgid "Store Settings: Shipping" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +#: includes/admin/class-mp-store-settings-admin.php:226 +msgid "Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +msgid "Store Settings: Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:112 +msgid "Store Settings: Presentation" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:111 +msgid "Store Settings: General" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1489 +msgid "Select a Product" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1447 +msgid "Reset to Defaults" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1446 +msgid "Insert Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1202 +#: includes/admin/class-mp-shortcode-builder.php:1227 +#: includes/admin/class-mp-shortcode-builder.php:1252 +msgid "The text to show in the link." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1196 +#: includes/admin/class-mp-shortcode-builder.php:1221 +#: includes/admin/class-mp-shortcode-builder.php:1246 +msgid "Whether to return a clickable link or url." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1177 +msgid "Whether to display the cart only on store pages or not." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1171 +msgid "Whether to show or hide the product price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1165 +msgid "Whether to show or hide the product quantity." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1159 +msgid "Whether to show or hide the product image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1153 +msgid "The text displayed before the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1147 +msgid "The title of the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1058 +#: includes/admin/class-mp-shortcode-builder.php:1121 +msgid "A label to prepend to the price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1032 +#: includes/admin/class-mp-shortcode-builder.php:1127 +msgid "What context for display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1004 +msgid "Set the alignment of the image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:998 +msgid "Set a custom pixel width/height. If omitted defaults to the size set by \"context\"." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:993 +msgid "Widget" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:988 +msgid "What context for preset size options." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:982 +#: includes/admin/class-mp-shortcode-builder.php:1026 +#: includes/admin/class-mp-shortcode-builder.php:1052 +#: includes/admin/class-mp-shortcode-builder.php:1077 +#: includes/admin/class-mp-shortcode-builder.php:1096 +#: includes/admin/class-mp-shortcode-builder.php:1115 +msgid "The ID of the product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:963 +msgid "Whether to display the product meta (e.g. price, buy button)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:738 +#: includes/admin/class-mp-shortcode-builder.php:905 +#: includes/admin/class-mp-shortcode-builder.php:958 +#: includes/admin/class-mp-shortcode-builder.php:992 +#: includes/admin/class-mp-shortcode-builder.php:1035 +#: includes/admin/class-mp-shortcode-builder.php:1130 +#: includes/admin/class-mp-shortcode-builder.php:1349 +msgid "List" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:957 +#: includes/admin/class-mp-shortcode-builder.php:991 +#: includes/admin/class-mp-shortcode-builder.php:1034 +#: includes/admin/class-mp-shortcode-builder.php:1129 +msgid "Single" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:953 +msgid "Whether and what context of image size to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:948 +msgid "Full" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:943 +msgid "Whether and what type of content to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:937 +msgid "Whether to display the product title." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:931 +msgid "The ID of the product to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:747 +#: includes/admin/class-mp-shortcode-builder.php:914 +msgid "Hide" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:746 +#: includes/admin/class-mp-shortcode-builder.php:913 +msgid "Show" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:744 +#: includes/admin/class-mp-shortcode-builder.php:911 +msgid "Whether or not to show the product filters." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:724 +#: includes/admin/class-mp-shortcode-builder.php:891 +#: includes/admin/class-mp-shortcode-builder.php:1335 +msgid "Limits list to a specific product tag." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:713 +#: includes/admin/class-mp-shortcode-builder.php:880 +#: includes/admin/class-mp-shortcode-builder.php:1324 +msgid "Limits list to a specific product category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:706 +#: includes/admin/class-mp-shortcode-builder.php:873 +#: includes/admin/class-mp-shortcode-builder.php:1317 +msgid "Direction to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:684 +#: includes/admin/class-mp-shortcode-builder.php:851 +#: includes/admin/class-mp-shortcode-builder.php:1295 +msgid "What field to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:678 +#: includes/admin/class-mp-shortcode-builder.php:845 +#: includes/admin/class-mp-shortcode-builder.php:1283 +msgid "How many products to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:672 +#: includes/admin/class-mp-shortcode-builder.php:839 +#: includes/admin/class-mp-shortcode-builder.php:1277 +msgid "The page number to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:666 +#: includes/admin/class-mp-shortcode-builder.php:833 +#: includes/admin/class-mp-shortcode-builder.php:1271 +msgid "Whether to paginate the product list. This is useful to only show a subset." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:808 +msgid "How many related items to show." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:790 +msgid "How to relate the products" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:784 +msgid "The product to show related items for." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:765 +msgid "The maximum number of products to display" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:647 +msgid "Comma separated list of tags (term_id) to include. For example, include=5,27 means tags that have the term_id 5 or 27 will be the only tags displayed. Defaults to include everything." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:641 +msgid "Comma separated list of tags (term_id) to exclude. For example, exclude=5,27 means tags that have the term_id 5 or 27 will NOT be displayed. Defaults to exclude nothing." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:633 +#: includes/admin/class-mp-shortcode-builder.php:1420 +msgid "Sort order." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:629 +#: includes/admin/class-mp-shortcode-builder.php:1416 +msgid "Count" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:626 +#: includes/admin/class-mp-shortcode-builder.php:1413 +msgid "Order of the tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:620 +msgid "The text/space between tags)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:616 +msgid "UL with a class of \"wp-tag-cloud\"" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:615 +msgid "separated by whitespace defined by \"separator\" parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:613 +msgid "Format of the cloud display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:607 +msgid "The number of actual tags to display in the cloud. (Use \"0\" to display all tags.)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:601 +msgid "Unit of measure as pertains to the smallest and largest values. This can be any CSS length value, e.g. pt, px, em, %." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:595 +msgid "The text size of the tag with the largest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:589 +msgid "The text size of the tag with the smallest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:570 +msgid "The \"tabindex\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:564 +msgid "The \"name\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:558 +msgid "The \"id\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:552 +msgid "Which category ID is selected." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:540 +msgid "The max depth. This is ignored unless hierarchical is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:536 +#: includes/multisite/template-functions.php:816 +msgid "No Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:414 +#: includes/admin/class-mp-shortcode-builder.php:546 +msgid "Calculates link or post counts by including items from child categories. If show_counts and hierarchical are true this is automatically set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:409 +msgid "Value of n (some number) specifies the depth (or level) to descend in displaying Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:408 +msgid "Show only top level Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:407 +msgid "All Categories displayed in flat (no indent) form (overrides hierarchical)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:406 +msgid "All Categories and child Categories (Default)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:402 +msgid "This parameter controls how many levels in the hierarchy of Categories are to be included in the list of Categories. NOTE: The \"hierarchical\" argument, which is disabled by default, will override the depth argument, unless it is true. When the argument is false, it will display all of the categories. When it is enabled it will use the value in the \"depth\" argument." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:396 +#: includes/admin/class-mp-shortcode-builder.php:1394 +msgid "Sets the number of Categories to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:390 +#: includes/admin/class-mp-shortcode-builder.php:534 +msgid "Set the text to show when no categories are listed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:384 +msgid "Set the title and style of the outer list item. If present but empty, the outer list item will not be displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:378 +#: includes/admin/class-mp-shortcode-builder.php:528 +msgid "Display sub-categories as inner list items (below the parent list item) or inline." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:368 +#: includes/admin/class-mp-shortcode-builder.php:511 +msgid "Exclude category-tree from the results. The parameter include must be empty. If the hierarchical parameter is true, then use exclude instead of exclude_tree." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:354 +msgid "Only include these categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:340 +#: includes/admin/class-mp-shortcode-builder.php:356 +#: includes/admin/class-mp-shortcode-builder.php:370 +#: includes/admin/class-mp-shortcode-builder.php:496 +#: includes/admin/class-mp-shortcode-builder.php:513 +msgid "Select Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:338 +#: includes/admin/class-mp-shortcode-builder.php:494 +msgid "Exclude one or more categories from the results. The parameter include must be empty." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:332 +msgid "Set a URI for an image (usually an rss feed icon) to act as a link to each categories' rss-2 feed. This parameter overrides the feed parameter. There is no default for this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:320 +msgid "Display a link to each category's rss-2 feed and set the link text to display. The default is no text and no feed displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:313 +#: includes/admin/class-mp-shortcode-builder.php:487 +msgid "Any" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:307 +#: includes/admin/class-mp-shortcode-builder.php:481 +msgid "Only display categories that are children of the category identified by this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:301 +msgid "Sets whether a category's description is inserted into the title attribute of the links created (i.e. <a title=\"<em>Category Description</em>\" href=\"...)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:295 +#: includes/admin/class-mp-shortcode-builder.php:475 +msgid "Toggles the display of categories with no posts." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:289 +#: includes/admin/class-mp-shortcode-builder.php:469 +#: includes/admin/class-mp-shortcode-builder.php:1388 +msgid "Toggles the display of the current count of posts in each category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:279 +msgid "Style to display the categories list in. A value of list displays the categories as list items while none generates no special display method (the list items are separated by
    tags)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:269 +#: includes/admin/class-mp-shortcode-builder.php:449 +#: includes/admin/class-mp-shortcode-builder.php:1378 +msgid "Sort order for categories (either ascending or descending)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:259 +#: includes/admin/class-mp-shortcode-builder.php:439 +#: includes/admin/class-mp-shortcode-builder.php:1368 +msgid "Sort categories alphabetically, by unique Category ID, or by the count of posts in that Category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:253 +#: includes/admin/class-mp-shortcode-builder.php:433 +msgid "If a value is entered, causes the display of a link to all categories if the style is set to list." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:219 +msgid "Select an Action" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:217 +msgid "What would you like to do?" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:216 +#: includes/admin/class-mp-shortcode-builder.php:1522 +msgid "Add E-Commerce Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:197 +msgid "Display a list of links to your store pages." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:196 +msgid "Display a link or url to the order status page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:195 +msgid "Display a link or url to the current products list page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:194 +msgid "Display a link or url to the current store page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:193 +msgid "Display a link or url to the current shopping cart page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:192 +msgid "Display the cart widget." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:191 +msgid "Display the full product meta box with price and buy now/add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:190 +msgid "Display the product stock." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:189 +msgid "Display the product SKU number(s)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:188 +msgid "Display the product price (and sale price)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:187 +msgid "Display the buy or add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:186 +msgid "Display the featured image of a given product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:185 +msgid "Display a single product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:184 +msgid "Display a list of products according to preference." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:183 +msgid "Display products related to the one being viewed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:182 +msgid "Display a list of popular products ordered by sales." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:180 +msgid "Display an HTML dropdown of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:179 +msgid "Display an HTML list of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:178 +msgid "Display a cloud or list of your product tags." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:655 +msgid "Setup your payment gateway" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:643 +#: includes/admin/class-mp-setup-wizard.php:649 +msgid "Other Gateways" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:617 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:150 +msgid "Select which calculated shipping methods the customer will be able to choose from." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:601 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:134 +#: includes/public/class-mp-checkout.php:82 +msgid "Shipping Method" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:568 +msgid "I want to charge shipping" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:523 +#: includes/admin/store-settings/class-mp-store-settings-general.php:503 +msgid "Show Price + Tax?" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:507 +msgid "I.e. Taxes, VAT, GST, etc" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:491 +#: includes/admin/store-settings/class-mp-store-settings-general.php:471 +msgid "Current Rates" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:473 +msgid "Default Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:434 +#: includes/admin/class-mp-setup-wizard.php:442 +#: includes/admin/store-settings/class-mp-store-settings-general.php:386 +#: includes/admin/store-settings/class-mp-store-settings-general.php:394 +#: includes/multisite/class-mp-admin-multisite.php:204 +#: includes/multisite/class-mp-admin-multisite.php:212 +msgid "Select a Currency" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:414 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:105 +msgid "Choose Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:411 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:103 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:104 +msgid "All Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:410 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:102 +msgid "These are the countries that you will ship to." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:409 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:101 +msgid "Target Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:401 +msgid "Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:387 +#: includes/admin/store-settings/class-mp-store-settings-general.php:640 +msgid "Zip/Postal Code Label" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:352 +#: includes/admin/store-settings/class-mp-store-settings-general.php:606 +msgid "Select a State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:335 +#: includes/admin/store-settings/class-mp-store-settings-general.php:590 +msgid "Select A Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:332 +#: includes/admin/store-settings/class-mp-store-settings-general.php:587 +msgid "Select a Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:324 +msgid "Location" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:304 +#: includes/admin/class-mp-setup-wizard.php:312 +#: includes/admin/class-mp-store-settings-admin.php:129 +#: includes/admin/class-mp-store-settings-admin.php:262 +msgid "Quick Setup" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:289 +msgid "MarketPress setup is not complete! Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2479 +msgid "Enter your product name here" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2440 +msgid "Select a %s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2426 +msgid "Each product variation needs to have product attributes assigned to it so the system knows how to differentiate one product variation from the other. It is important that you assign a category to this product before choosing any attributes." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2409 +msgid "If you would like this variation to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2320 +msgid "Sale Price (if applicable)" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2281 +msgid "If you would like the description to be different than the main product enter it here." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2229 +msgid "Image" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2202 +#: includes/admin/class-mp-shortcode-builder.php:226 +msgid "Attributes" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2166 +msgid "Create your product variations here. You can reorder variations by using the number to left of each variation, or delete one by clicking the \"x\" to the right of each variation. NOTE: The variation that shows up first in this list will be considered the \"main variation\". The details from this variation will be used in product listings." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2061 +#: includes/admin/class-mp-products-admin.php:2332 +msgid "Value must be less than regular price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2043 +#: includes/admin/class-mp-products-admin.php:2306 +msgid "Regular Price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2023 +#: includes/admin/class-mp-products-admin.php:2286 +msgid "External URL" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1988 +#: includes/admin/class-mp-products-admin.php:2245 +msgid "Enter the quantity that you have available to sell." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1987 +#: includes/admin/class-mp-products-admin.php:2244 +msgid "Inventory Count" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1977 +#: includes/admin/class-mp-products-admin.php:2234 +msgid "Track Inventory?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1871 +msgid "%1$sProduct Images%2$s %3$sAdd images of the product. The first image on the list is the featured image for this product (you can reorder images on the list)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1806 +msgid "Add variations for this product. e.g. If you are selling t-shirts, you can create Color & Size variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1804 +msgid "%3$sAdd variations for%2$s %1$sProduct%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1776 +msgid "This product has a multiple variations %1$s(e.g. Multiple colors, sizes)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1775 +msgid "This is a unique product without variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1700 +msgid "Extra Shipping Cost %1$s(if applicable)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1659 +#: includes/admin/class-mp-products-admin.php:2112 +#: includes/admin/class-mp-products-admin.php:2359 +msgid "Weight" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1636 +#: includes/admin/class-mp-products-admin.php:2098 +#: includes/admin/class-mp-products-admin.php:2416 +msgid "Please enter a valid tax rate" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1531 +msgid "Limit Per Order %1$s(limit the number of the item a shopper can buy per order)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1513 +msgid "SKU %1$s(Stock Keeping Unit)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "%1$sPrice, Inventory & Variants%2$s %3$sSet price, manage inventory and create Product Variants (if appropriate for your product).%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "Product Variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1480 +msgid "External / Affiliate Link" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1471 +msgid "Digital Download" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1470 +msgid "Physical / Tangible Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1464 +msgid "Product Kind %1$s(Physical Product, Digital, etc)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1426 +msgid "Choose Products" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1420 +msgid "If you would like, you can choose specific related products instead of using the ones generated by MarketPress" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1019 +msgid "Changes saved successfully" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:826 +msgid "Option cannot be saved. Try again." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:821 +msgid "Option saved successfully." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:467 +msgid "Img" +msgstr "" + +#: includes/admin/class-mp-product-attributes-list-table.php:57 +msgid "Product attribute(s) deleted successfully." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:162 +msgid "- Create New Variation -" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:144 +msgid "Only lowercase letters and dashes (-) are allowed." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:139 +msgid "If a slug is not entered, it will be generated automatically. Max 32 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:138 +#: includes/admin/class-mp-product-attributes-list-table.php:23 +msgid "Slug" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:130 +msgid "Max 45 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:123 +msgid "Use the numbers on the left to sort. To delete - click the \"X\" to the right of each row." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:122 +msgid "Attribute Options" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:121 +msgid "Add Option" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:105 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:523 +msgid "Sort Order" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:87 +msgid "Alphabetical" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:86 +msgid "ID" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:84 +msgid "Select how the options will be sorted." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:82 +msgid "Sort By" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:75 +msgid "The name of the attribute (e.g. color, size, etc)" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:74 +msgid "Attribute Name" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:69 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Product Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Product Attributes" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:71 +msgid "You can choose to make this page one of the following core store pages." +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:66 +msgid "Network Store Base" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:61 +msgid "Checkout Page" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:52 +msgid "Store Page Settings" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1108 +msgid "Display billing/shipping info for this customer" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1097 +msgid "View order “%s”" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1072 +msgid "Flag as:" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:952 +msgid "Move To Trash" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:948 +msgid " Received" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:927 +msgid "Enter coupon code here" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:812 +msgid "The order status could not be updated due to unexpected error. Please try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:740 +msgid "An invalid bulk action was requested. Please go back and try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:692 +msgid "The order status for order ID %1$s was updated successfully." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:688 +msgid "Order statuses successfully updated." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:530 +msgid "Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:518 +msgid "Actual Shipping Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:513 +msgid "Method Paid For" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:504 +msgid "Amount Collected" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:477 +msgid "DHL" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:408 +msgid "There is no IPN history to show at this time" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:345 +msgid "Type" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:343 +msgid "Gateway" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:301 +#: includes/common/template-functions.php:528 +msgid "Order History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:291 +msgid "IPN History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:283 +msgid "Customer Info" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:279 +msgid "Order Details" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:157 +msgid "All Dates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:320 +msgid "Add Pages to Menu" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:318 +msgid "Add-ons" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:317 +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "User Capabilities" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:316 +#: includes/admin/class-mp-setup-wizard.php:631 +#: includes/admin/store-settings/class-mp-store-settings-payments.php:50 +msgid "Payment Gateways" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:315 +msgid "Shipping Rates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:312 +msgid "Configure" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:309 +#: includes/admin/class-mp-products-admin.php:466 +#: includes/admin/class-mp-shortcode-builder.php:797 +msgid "Tags" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:308 +#: includes/admin/class-mp-products-admin.php:465 +msgid "Categories" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:300 +msgid "Manage" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:297 +msgid "Here's some quick links to manage your store and products." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:288 +msgid "low in stock" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:287 +msgid "%s product" +msgid_plural "%s products" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/admin/class-mp-dashboard-widgets.php:280 +msgid "received" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:279 +#: includes/admin/class-mp-dashboard-widgets.php:283 +msgid "%s order" +msgid_plural "%s orders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/admin/class-mp-dashboard-widgets.php:276 +msgid "Stock & Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:261 +msgid "Last 30 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:256 +msgid "Last 7 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:251 +msgid "Yesterday" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:248 +#: includes/admin/class-mp-dashboard-widgets.php:253 +#: includes/admin/class-mp-dashboard-widgets.php:258 +#: includes/admin/class-mp-dashboard-widgets.php:263 +msgid " Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:246 +msgid "Today" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:241 +msgid "Welcome back! Here's a quick summary of your store's performance." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:196 +#: includes/admin/class-mp-products-admin.php:895 +msgid "No products out of stock." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:136 +#: includes/admin/class-mp-products-admin.php:839 +msgid "Stock Level" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:135 +#: includes/admin/class-mp-products-admin.php:838 +msgid "Variation" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:121 +msgid "Low Stock (%s)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:116 +msgid "Store Management" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:115 +msgid "Store Reports" +msgstr "" + +#: includes/admin/class-mp-ajax.php:579 +#: includes/admin/class-mp-orders-admin.php:520 +#: includes/common/payment-gateways/2checkout.php:370 +#: includes/common/payment-gateways/authorizenet-aim.php:264 +#: includes/common/payment-gateways/mollie.php:93 +#: includes/common/payment-gateways/paymill.php:196 +#: includes/common/payment-gateways/pin.php:190 +#: includes/common/payment-gateways/skrill.php:157 +#: includes/common/payment-gateways/skrill.php:168 +#: includes/common/payment-gateways/wepay.php:143 +#: includes/public/class-mp-checkout.php:404 +msgid "Select One" +msgstr "" + +#: includes/admin/class-mp-ajax.php:511 +msgid "Oops... we could not locate any orders by that ID. Please double check your order ID and try again." +msgstr "" + +#: includes/admin/class-mp-ajax.php:482 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:166 +#: includes/multisite/class-mp-admin-multisite.php:584 +msgid "Edit Page" +msgstr "" + +#: includes/admin/class-mp-ajax.php:346 +msgid "Cancel " +msgstr "" + +#: includes/admin/class-mp-ajax.php:345 +msgid "Save " +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "Edit Description" +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "HTML Markup" +msgstr "" + +#: includes/admin/class-mp-ajax.php:333 +msgid "Plain Text Only" +msgstr "" + +#: includes/admin/class-mp-ajax.php:329 +msgid "Additional Content / Information for this Variation" +msgstr "" + +#: includes/admin/class-mp-ajax.php:317 +#: includes/admin/class-mp-products-admin.php:1762 +msgid "Allow this product to be purchased even if it's out of stock" +msgstr "" + +#: includes/admin/class-mp-ajax.php:313 +#: includes/admin/class-mp-products-admin.php:1711 +msgid "Track Product Inventory" +msgstr "" + +#: includes/admin/class-mp-ajax.php:300 +msgid "Extra Shipping Cost (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:295 +msgid "Ounces:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:294 +msgid "Pounds:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:292 +msgid "Kilograms:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:287 +#: includes/admin/class-mp-products-admin.php:1649 +msgid "Charge Shipping" +msgstr "" + +#: includes/admin/class-mp-ajax.php:273 +#: includes/admin/class-mp-products-admin.php:1623 +#: includes/admin/store-settings/class-mp-store-settings-general.php:454 +msgid "Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:272 +#: includes/admin/class-mp-products-admin.php:1622 +#: includes/admin/class-mp-products-admin.php:2090 +#: includes/admin/class-mp-products-admin.php:2408 +msgid "Special Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:271 +#: includes/admin/class-mp-products-admin.php:1625 +#: includes/admin/class-mp-products-admin.php:2092 +msgid "If you would like this product to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-ajax.php:268 +#: includes/admin/class-mp-products-admin.php:1599 +msgid "Charge Taxes (Special Rate)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:256 +#: includes/admin/class-mp-products-admin.php:1593 +#: includes/admin/class-mp-products-admin.php:2077 +#: includes/admin/class-mp-products-admin.php:2348 +msgid "End Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:255 +#: includes/admin/class-mp-products-admin.php:1589 +#: includes/admin/class-mp-products-admin.php:2072 +msgid "Start Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:1568 +msgid "Enter Sale Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:250 +#: includes/admin/class-mp-products-admin.php:1547 +msgid "Set up a Sale for this Product" +msgstr "" + +#: includes/admin/class-mp-ajax.php:206 includes/admin/class-mp-ajax.php:223 +msgid "Enter " +msgstr "" + +#: includes/admin/class-mp-ajax.php:193 +msgid "Browse" +msgstr "" + +#: includes/admin/class-mp-ajax.php:184 includes/admin/class-mp-ajax.php:192 +msgid "http://" +msgstr "" + +#: includes/admin/class-mp-ajax.php:183 +msgid "External Product URL" +msgstr "" + +#: includes/admin/class-mp-ajax.php:237 +msgid "Limit Per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:177 +#: includes/admin/class-mp-products-admin.php:1520 +msgid "Enter Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:174 +#: includes/admin/class-mp-products-admin.php:1512 +msgid "Enter SKU" +msgstr "" + +#: includes/admin/class-mp-ajax.php:173 +msgid "(Stock Keeping Unit)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:158 +msgid "Remove Image" +msgstr "" + +#: includes/admin/class-mp-ajax.php:74 +msgid "Variation Draft" +msgstr "" + +#: includes/admin/class-mp-admin.php:296 +#: includes/admin/class-mp-dashboard-widgets.php:70 +msgid "Please wait...saving in progress..." +msgstr "" + +#: includes/admin/class-mp-admin.php:295 +#: includes/admin/class-mp-dashboard-widgets.php:69 +msgid "Input is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:294 +#: includes/admin/class-mp-dashboard-widgets.php:68 +msgid "Valid number is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:292 +#: includes/admin/class-mp-dashboard-widgets.php:66 +msgid "Delete %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:291 +#: includes/admin/class-mp-dashboard-widgets.php:65 +msgid "Delete %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:290 +#: includes/admin/class-mp-dashboard-widgets.php:64 +msgid "Update inventory for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:289 +#: includes/admin/class-mp-dashboard-widgets.php:63 +msgid "Update inventory for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:288 +#: includes/admin/class-mp-dashboard-widgets.php:62 +msgid "Update price for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:287 +#: includes/admin/class-mp-dashboard-widgets.php:61 +msgid "Update prices for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:285 +#: includes/admin/class-mp-dashboard-widgets.php:59 +msgid "Creating variations, please wait..." +msgstr "" + +#: includes/admin/class-mp-admin.php:96 +msgid "The following payment gateways have been deprecated, Cubepoints, Bitpay, iDEAL, Skrill, Google Checkout. If you were using one of these gateways, please setup a new payment gateway here." +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:61 +msgid "Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:71 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:71 +#: includes/common/class-mp-gdpr.php:399 includes/common/class-mp-order.php:872 +#: includes/common/helpers.php:164 includes/public/class-mp-checkout.php:1434 +msgid "Shipping Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:66 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:66 +#: includes/common/class-mp-gdpr.php:392 includes/common/class-mp-order.php:864 +#: includes/common/helpers.php:163 includes/public/class-mp-checkout.php:1427 +msgid "Billing Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:61 +msgid "Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:258 +msgid "Shipping Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:256 +msgid "Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:235 +msgid "Payment Method: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:79 +msgid "The dir %s not exist or not writeable" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:239 +msgid "Shop header/logo" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:233 +msgid "Choose a template" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:226 +msgid "Template Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:221 +msgid "Disable automatic creation/attachment of invoices when only free products are ordered" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:220 +msgid "Disable for free products" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:216 +msgid "Attach invoice to" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:214 +msgid "Customer Order Shipped email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:212 +msgid "Customer New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:211 +msgid "Admin New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:206 +msgid "download" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:205 +msgid "How do you want to view the PDF?" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:203 +msgid "Open the PDF in a new browser tab/window" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:202 +msgid "Download the PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:158 +msgid "Export PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:103 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:106 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:109 +msgid "You can't download this order invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:76 +msgid "Invalid Request" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:72 +msgid "Order not exist!" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:67 +msgid "Invalid ID" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1293 +msgid "Coupon added successfully" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1292 +msgid "Please enter a code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1247 +msgid "No end" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1200 +msgid "Valid Dates" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1195 +msgid "Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1027 +msgid "No Coupons found in Trash" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1026 +msgid "No Coupons Found" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1025 +msgid "Search Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1024 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1028 +msgid "View Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1023 +msgid "New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1020 +msgid "Create New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1017 +msgid "Manage Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1002 +msgid "An error occurred while removing your coupon. Please try again." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:964 +msgid "Coupon can't be applied to this cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:951 +msgid "Invalid coupon code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:794 +msgid "Help Text" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:789 +msgid "Form Title" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:783 +msgid "Coupons Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:764 +msgid "End Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:758 +msgid "Does coupon have an end date?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:696 +msgid "Select Products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:688 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:723 +#: includes/common/payment-gateways/paypal-payflow.php:402 +msgid "User" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:638 +msgid "Max Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:636 +msgid "Enter the maximum number of times this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:623 +msgid "Leave blank to allow all other coupons." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:622 +msgid "Select combinable coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:618 +msgid "Can this coupon be combined with other coupons?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:613 +msgid "Apply to each applicable item once per cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:612 +msgid "Apply to each applicable item and quantity ordered" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:609 +msgid "How should the discount amount be applied?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:605 +msgid "Discount Amount" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:604 +msgid "Value must either be a decimal number or a percentage" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:602 +msgid "If you would like to give a percentage-based discount make sure to include the percent (%) symbol. Otherwise, the discount will be applied as a fixed amount off." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:595 +msgid "Letters and Numbers only." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:589 +msgid "Coupon Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:447 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:795 +msgid "More than one code? That's OK! Just be sure to enter one at a time." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:444 +msgid "Apply Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:314 +msgid "Coupon Discounts" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:89 +msgid "1 add-on disabled" +msgid_plural "%s add-ons disabled" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/addons/class-mp-addons-list-table.php:84 +msgid "1 add-on enabled" +msgid_plural "%s add-ons enabled" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Disabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Enable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:129 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:67 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:135 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:168 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:202 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:263 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:296 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:330 +msgid "Enabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +msgid "Disable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:34 +msgid "Disable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:33 +msgid "Enable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:21 +#: includes/admin/class-mp-products-admin.php:2280 +#: includes/common/class-mp-product.php:2916 +msgid "Description" +msgstr "" + +#: includes/common/template-functions.php:2889 +#: includes/multisite/template-functions.php:407 +msgid "Popularity (Least Popular - Most Popular)" +msgstr "" + +#: includes/common/template-functions.php:2888 +#: includes/multisite/template-functions.php:406 +msgid "Popularity (Most Popular - Least Popular)" +msgstr "" + +#: includes/common/template-functions.php:2885 +#: includes/multisite/template-functions.php:403 +msgid "Name (Z-A)" +msgstr "" + +#: includes/common/template-functions.php:2884 +#: includes/multisite/template-functions.php:402 +msgid "Name (A-Z)" +msgstr "" + +#: includes/common/template-functions.php:2883 +#: includes/multisite/template-functions.php:401 +msgid "Release Date (Oldest to Latest)" +msgstr "" + +#: includes/common/template-functions.php:2882 +#: includes/multisite/template-functions.php:400 +msgid "Release Date (Latest to Oldest)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:284 +msgid "paid" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "One Time Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Customer Counter" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Daily Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:182 +msgid "For the most accurate rates, please select the appropriate pick up type for your business." +msgstr "" + +#: includes/admin/class-mp-admin.php:374 +msgid "Page saved." +msgstr "" + +#: includes/admin/class-mp-admin.php:370 +msgid "Custom field deleted." +msgstr "" + +#: includes/admin/class-mp-admin.php:369 +msgid "Custom field updated." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:541 +msgid "%s - The payment request expired, - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:536 +msgid "%s - The payment not credited in merchants bitpay account, action required. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:252 +msgid "If enabled, you will recieve an email for each status update on payment." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:240 +msgid "Speed at which the bitcoin transaction registers as \"confirmed\" to the store. This overrides your merchant settings on the Bitpay website." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:238 +msgid "Transaction Speed" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:244 +msgid "Low" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:243 +msgid "Medium" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:242 +msgid "High" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:177 +#: includes/common/payment-gateways/_bitpay.php:517 +#: includes/common/payment-gateways/_bitpay.php:522 +msgid "%s - The payment request is under process. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:175 +#: includes/common/payment-gateways/_bitpay.php:527 +msgid "%s - The payment request has been processed - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:150 +#: includes/common/payment-gateways/_bitpay.php:294 +msgid "Incorrect order invoice, please contact site administrator" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:141 +msgid "We could not verify order invoice details, please try again or contact site administrator for help" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:81 +msgid "Login to Simplify to get your API credentials. Enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:605 +#: includes/common/payment-gateways/paypal-express.php:647 +msgid "Express Checkout is PayPal's premier checkout solution, which streamlines the checkout process for buyers and keeps them on your site after making a purchase. Unlike PayPal Pro, there are no additional fees to use Express Checkout, though you may need to do a free upgrade to a business account. More Info »" +msgstr "" + +#. Plugin URI of the plugin/theme +msgid "https://premium.wpmudev.org/project/e-commerce/" +msgstr "" + +#. Author of the plugin/theme +msgid "WPMU DEV" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:541 +#: includes/admin/class-mp-orders-admin.php:543 +msgid "Tracking Number" +msgstr "" + +#: includes/common/class-mp-order.php:805 +#: includes/common/payment-gateways/stripe.php:336 +#: includes/public/class-mp-checkout.php:402 +msgid "Country" +msgstr "" + +#: includes/common/class-mp-order.php:784 +#: includes/common/payment-gateways/stripe.php:338 +msgid "City" +msgstr "" + +#: includes/common/class-mp-order.php:780 +msgid "Address 2" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:340 +msgid "Address" +msgstr "" + +#: includes/common/class-mp-cart.php:752 includes/common/class-mp-gdpr.php:378 +msgid "Order Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:360 +msgid "Payment Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:347 +msgid "Transaction ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:207 +msgid "The WePay Card Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:186 +#: includes/common/shipping-modules/mp-fedex.php:283 +msgid "Account ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:179 +msgid "Access Token" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:172 +msgid "Client Secret" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:165 +msgid "Client ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:159 +msgid "You must login to WePay to get your API credentials. Make sure to check \"Tokenize credit cards\" option under \"API Keys\" section of your WePay app." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:154 +msgid "When in live mode it is recommended to use SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:148 +msgid "Donation" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:147 +msgid "Event" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:146 +msgid "Personal" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:145 +msgid "Service" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:144 +msgid "Goods" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:141 +msgid "Choose type of payments" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:140 +msgid "Checkout Type" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:134 +msgid "Staging" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:131 +msgid "Choose STAGING if you have registered the app on stage.wepay.com, or PRODUCTION if you registered on www.wepay.com" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:36 +#: includes/common/payment-gateways/wepay.php:299 +msgid "WePay" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:366 +msgid "Rejected - A payment was rejected." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:360 +msgid "Failed - A payment was rejected due to an error." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:342 +msgid "PayWay balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:298 +msgid "Full path of the cacerts.crt file" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:284 +msgid "User Name" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:277 +msgid "Biller Code" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:273 +msgid "Log Directory" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:266 +msgid "Encryption Key" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:60 +msgid "Your PayWay transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:40 +#: includes/common/payment-gateways/_payway.php:41 +msgid "PayWay" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:862 +msgid "You must register this application with PayPal using your business account login to get an Application ID that will work with your API credentials. A bit of a hassle, but worth it! In the near future we will be looking for ways to simplify this process. Register then submit your application while logged in to the developer portal. Note that you do not need an Application ID for testing in sandbox mode. More Information »" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:818 +#: includes/common/payment-gateways/paypal-chained-payments.php:840 +#: includes/common/payment-gateways/paypal-express.php:705 +msgid "You must login to PayPal and create an API signature to get your credentials. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:378 +msgid "Use Payflow payment gateway to accept online payments using your Internet merchant account and processing network. PayPal Payflow Pro is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:595 +msgid "Tags Only" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:594 +msgid "Category Only" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:795 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:593 +msgid "Category & Tags" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:591 +msgid "Relate Products By" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1008 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:455 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:751 +msgid "Right" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1007 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:454 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:749 +msgid "Left" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1009 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:750 +msgid "Center" +msgstr "" + +#: marketpress.php:273 +msgid "Orders from your e-commerce store." +msgstr "" + +#: marketpress.php:231 +msgid "Products for your e-commerce store." +msgstr "" + +#: marketpress.php:222 +msgid "Edit Product" +msgstr "" + +#. Description of the plugin/theme +msgid "The complete WordPress ecommerce plugin - works perfectly with BuddyPress and Multisite too to create a social marketplace, where you can take a percentage! Activate the plugin, adjust your settings then add some products to your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:272 +msgid "Beside" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:271 +msgid "Above" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:268 +msgid "Pin Count" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:261 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:287 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:318 +msgid "All View" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:260 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:286 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:317 +msgid "Single View" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:259 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:285 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:316 +msgid "Off" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:578 +msgid "Related Product Limit" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:681 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1201 +msgid "Applies To" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:685 +msgid "All Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:487 +msgid "The label shown for the tax line item in the cart. Taxes, VAT, GST, etc." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:485 +msgid "Tax Label" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:81 +msgid "Apply" +msgstr "" + +#: includes/admin/class-mp-admin.php:192 +msgid "MarketPress Instructions" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1954 +#: includes/admin/class-mp-products-admin.php:2194 includes/common/data.php:62 +#: includes/common/helpers.php:150 +msgid "Taxes" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1417 +#: includes/common/class-mp-product.php:2900 +msgid "Related Products" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:282 +#: includes/common/shipping-modules/mp-usps.php:316 +msgid "@ Max" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "(3-5 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "Priority Mail Express International Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:92 +msgid "Priority Mail Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:171 +#: includes/common/shipping-modules/mp-pickup.php:247 +msgid "In Store" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:159 +msgid "Pickup Fee" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:141 +msgid "This option allows your customers to indicate that they will pick-up their order at your place of business." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:60 +#: includes/common/shipping-modules/mp-pickup.php:76 +#: includes/common/shipping-modules/mp-pickup.php:176 +msgid "Pickup Instructions" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:24 +#: includes/common/shipping-modules/mp-pickup.php:254 +msgid "Pickup" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping - 0.00" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:256 +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:440 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:309 +msgid "Your Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:301 +msgid "Station" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:300 +msgid "Request Courier" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:299 +msgid "Drop Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:298 +msgid "Business Service Center" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:297 +msgid "Regular Pickup" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:135 +#: includes/common/shipping-modules/mp-fedex.php:264 +msgid "Production" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:207 +msgid "Simplify Commerce by MasterCard" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:104 +msgid "When in live mode, although it is not required, Simplify recommends you have an SSL certificate." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:183 +#: includes/common/payment-gateways/simplify.php:87 +msgid "Public Key" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:175 +#: includes/common/payment-gateways/simplify.php:94 +msgid "Private Key" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:71 +msgid "Simplify helps merchants to accept online payments from Mastercard, Visa, American Express, Discover, JCB, and Diners Club cards. It's that simple. We offer a merchant account and payment gateway in a single, secure package so you can concentrate on what really matters to your business. Only supports USD currently." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:267 +msgid "%1$s" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:151 +msgid "The Simplify Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/simplify.php:18 +msgid "Simplify" +msgstr "" + +#: includes/common/payment-gateways/pin.php:255 +msgid "%1$s Card %2$s" +msgstr "" + +#: includes/common/payment-gateways/pin.php:211 +msgid "The PIN Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:187 +msgid "Selecting a currency other than currency supported by PIN may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/pin.php:164 +msgid "You must login to PIN to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/pin.php:158 +msgid "When in live mode PIN recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/pin.php:45 +#: includes/common/payment-gateways/pin.php:286 +msgid "PIN" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:830 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:534 +#: includes/common/payment-gateways/paypal-express.php:865 +msgid "The payment is pending" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:235 +msgid "The Paymill Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:169 +msgid "You must login to Paymill to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:45 +#: includes/common/payment-gateways/paymill.php:308 +msgid "Paymill" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:90 +msgid "Invalid cardholder" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:89 +msgid "Card is no longer valid or has expired" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:88 +msgid "Please enter a valid Card CVC" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:87 +msgid "Please choose a valid Expiration Date." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:99 +#: includes/common/payment-gateways/skrill.php:100 +msgid "Skrill (Moneybookers)" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:24 +#: includes/common/shipping-modules/mp-weight-rate.php:292 +msgid "Weight Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:303 +msgid "USPS Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:270 +msgid "USPS Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:264 +msgid "USPS Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:145 +msgid "Flat Rate Large" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:140 +msgid "Flat Rate Medium 2" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:135 +msgid "Flat Rate Medium 1" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:130 +msgid "Flat Rate Small" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:118 +msgid "First Class International Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:114 +msgid "Priority Mail International Small Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:112 +msgid "Priority Mail International Medium Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:110 +msgid "Priority Mail International Large Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:108 +msgid "Priority Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:106 +msgid "Express Mail International Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:104 +msgid "Express Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:98 +msgid "Library Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:96 +msgid "Media Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "First-Class Mail Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:90 +msgid "Priority Mail Small Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:88 +msgid "Priority Mail Medium Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +#: includes/common/shipping-modules/mp-usps.php:88 +#: includes/common/shipping-modules/mp-usps.php:90 +#: includes/common/shipping-modules/mp-usps.php:92 +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "(2-4 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +msgid "Priority Mail Large Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "(2-4) days" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "Priority Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "Express Mail Sunday/Holiday Delivery Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:80 +msgid "Express Mail Flat Rate Boxes Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:78 +msgid "Express Mail Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:76 +msgid "Express Mail Sunday/Holiday Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:74 +msgid "Express Mail Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:72 +#: includes/common/shipping-modules/mp-usps.php:74 +#: includes/common/shipping-modules/mp-usps.php:76 +#: includes/common/shipping-modules/mp-usps.php:78 +#: includes/common/shipping-modules/mp-usps.php:80 +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "(1-2 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:72 +msgid "Express Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:67 +#: includes/common/shipping-modules/mp-usps.php:902 +msgid "USPS" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:534 +msgid "UPS (beta)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:166 +msgid "Required if using negotiated rates" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "Worldwide Express Plus" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "(Scheduled)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "Standard" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "(2-5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "Worldwide Expedited" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:54 +msgid "Worldwide Express" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "2nd Day Air AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "(1 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "Next Day Air Early AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "Next Day Air Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "3 Day Select" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:49 +msgid "Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:48 +msgid "2nd Day Air" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "Next Day Air" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:475 +#: includes/common/shipping-modules/mp-ups.php:43 +msgid "UPS" +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:27 +#: includes/common/shipping-modules/mp-table-rate.php:318 +msgid "Table Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:71 +#: includes/common/shipping-modules/mp-table-quantity.php:77 +msgid "Shipping Cost: " +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:70 +#: includes/common/shipping-modules/mp-table-quantity.php:76 +msgid "If quantity is greater than:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:66 +msgid "Each band must be a higher price than the one above it." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:56 +msgid "Number of Bands:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:53 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Each layer must be a higher quantity than the previous." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:51 +msgid "Table Quantity Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:31 +msgid "Table Quantity" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:135 +#: includes/common/shipping-modules/mp-table-rate.php:174 +#: includes/common/shipping-modules/mp-weight-rate.php:189 +msgid "European Union" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:123 +#: includes/common/shipping-modules/mp-table-rate.php:162 +#: includes/common/shipping-modules/mp-weight-rate.php:177 +msgid "United States" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:111 +#: includes/common/shipping-modules/mp-table-rate.php:151 +#: includes/common/shipping-modules/mp-weight-rate.php:166 +msgid "In Country" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:146 +#: includes/common/shipping-modules/mp-table-rate.php:186 +#: includes/common/shipping-modules/mp-weight-rate.php:201 +msgid "International" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:101 +#: includes/common/shipping-modules/mp-table-rate.php:141 +#: includes/common/shipping-modules/mp-weight-rate.php:156 +msgid "Canada" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:92 +#: includes/common/shipping-modules/mp-table-rate.php:132 +#: includes/common/shipping-modules/mp-weight-rate.php:147 +msgid "Hawaii and Alaska" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:83 +#: includes/common/shipping-modules/mp-table-rate.php:123 +#: includes/common/shipping-modules/mp-weight-rate.php:138 +msgid "Lower 48 States" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:64 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping." +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:25 +#: includes/common/shipping-modules/mp-flat-rate.php:223 +msgid "Flat Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:761 +msgid "FedEx (beta)" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Centimeters" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Inches" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1676 +#: includes/admin/class-mp-setup-wizard.php:547 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:166 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +msgid "Kilograms" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:103 +msgid " %1$s - %2$s" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:358 +msgid "Max Weight per Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:356 +msgid "Box Dimensions" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:354 +msgid "Box Name" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:344 +msgid "Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:343 +msgid "For each box defined enter the maximum weight it can contain." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:341 +msgid "Enter your standard box sizes as LengthxWidthxHeight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:386 +#: includes/common/shipping-modules/mp-ups.php:193 +#: includes/common/shipping-modules/mp-usps.php:234 +#: includes/common/shipping-modules/mp-usps.php:338 +msgid "Standard Boxes and Weight Limits" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:328 +msgid "Handling Charge per Interntional Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:294 +msgid "Handling Charge per Domestic Shipment " +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:388 +#: includes/common/shipping-modules/mp-ups.php:196 +#: includes/common/shipping-modules/mp-usps.php:237 +msgid "Add Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "(Next Day)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +msgid "Europe First International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:62 +msgid "International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:61 +#: includes/common/shipping-modules/mp-fedex.php:62 +#: includes/common/shipping-modules/mp-ups.php:54 +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "(1-3 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:61 +msgid "International First" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "(5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "International Economy" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "(2-7 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "Smart Post" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:55 +#: includes/common/shipping-modules/mp-ups.php:49 +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "(1-5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:55 +msgid "Ground Home Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "(1-7 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "Fedex Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:53 +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "(3 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:53 +msgid "Fedex Express Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +#: includes/common/shipping-modules/mp-ups.php:48 +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "(2 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +msgid "Fedex 2 Day" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "(2 Days am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "Fedex 2 Day AM" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "(1 Day)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +msgid "Standard Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "(1 Day am )" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "Priority Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "(1 Day am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "First Overnight" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:476 +#: includes/common/shipping-modules/mp-fedex.php:31 +msgid "FedEx" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:270 +#: includes/common/payment-gateways/simplify.php:179 +#: includes/common/payment-gateways/stripe.php:365 +msgid "%1$s Card ending in %2$s - Expires %3$s" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:259 +#: includes/common/payment-gateways/pin.php:238 +#: includes/common/payment-gateways/simplify.php:171 +msgid "%s Store Purchase - Order ID: %s, Email: %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:266 +msgid "You must login to Stripe to get your API credentials. You can enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:261 +msgid "When in live mode Stripe recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:311 +msgid "The Stripe Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:263 +#: includes/common/payment-gateways/paymill.php:122 +#: includes/common/payment-gateways/stripe.php:222 +msgid "Card Number" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:86 +msgid "Please enter a valid Credit Card Number." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:45 +#: includes/common/payment-gateways/stripe.php:433 +msgid "Stripe" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:750 +msgid "Sets the background color for the payment page. By default, the color is white." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:745 +msgid "Sets the background color for the header of the payment page. By default, the color is white." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:740 +msgid "Sets the border color around the header of the payment page. The border is a 2-pixel perimeter around the header space, which is 750 pixels wide by 90 pixels high. By default, the color is black." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:735 +msgid "URL for an image you want to appear at the top left of the payment page. The image has a maximum size of 750 pixels wide by 90 pixels high. PayPal recommends that you provide an image that is stored on a secure (https) server. If you do not specify an image, the business name is displayed." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:857 +#: includes/common/payment-gateways/paypal-express.php:1131 +msgid "The payment is pending because it is part of an order that has been authorized but not settled." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:853 +#: includes/common/payment-gateways/paypal-express.php:1127 +msgid "The payment is pending because it has been authorized but not settled. You must capture the funds first." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:847 +#: includes/common/payment-gateways/paypal-express.php:1120 +msgid "You denied the payment when it was marked as pending." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:837 +#: includes/common/payment-gateways/paypal-express.php:1108 +msgid "A reversal has occurred on this transaction due to an unknown reason." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:836 +#: includes/common/payment-gateways/paypal-express.php:1107 +msgid "A reversal has occurred on this transaction because you have given the customer a refund." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:835 +#: includes/common/payment-gateways/paypal-express.php:1106 +msgid "A reversal has occurred on this transaction due to a complaint about the transaction from your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:834 +#: includes/common/payment-gateways/paypal-express.php:1105 +msgid "A reversal has occurred on this transaction due to your customer triggering a money-back guarantee." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:833 +#: includes/common/payment-gateways/paypal-express.php:1104 +msgid "A reversal has occurred on this transaction due to a chargeback by your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:1101 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer:" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:826 +#: includes/common/payment-gateways/paypal-express.php:1097 +msgid "A payment has been accepted." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:818 +#: includes/common/payment-gateways/paypal-express.php:1087 +msgid "The transaction has not terminated, e.g. an authorization may be awaiting completion." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:531 +#: includes/common/payment-gateways/paypal-express.php:810 +#: includes/common/payment-gateways/paypal-express.php:1077 +msgid "The payment has failed. This happens only if the payment was made from your customer's bank account." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:806 +#: includes/common/payment-gateways/paypal-express.php:1072 +msgid "An authorization for this transaction has been voided." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:802 +#: includes/common/payment-gateways/paypal-express.php:1067 +msgid "The authorization period for this payment has been reached." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:798 +#: includes/common/payment-gateways/paypal-express.php:1062 +msgid "A reversal has been canceled; for example, when you win a dispute and the funds for the reversal have been returned to you." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:499 +#: includes/common/payment-gateways/paypal-express.php:1163 +msgid "PayPal Express Checkout" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:798 +msgid "Gateway Settings Page Message" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:725 +msgid "Signature" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:506 +#: includes/common/payment-gateways/eway31.php:533 +#: includes/common/shipping-modules/mp-fedex.php:276 +msgid "API Password" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:773 +msgid "Enter a percentage of all store sales to collect as a fee. Decimals allowed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:757 +msgid "Using PayPal Chained Payments allows you as the multisite network owner to collect a predefined fee or percentage of all sales on network MarketPress stores! This is invisible to the customers who purchase items in a store, and all PayPal fees will be charged to the store owner. To use this option you must create API credentials, and you should make all other gateways unavailable or limited above." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:338 +msgid "Please be aware that we will deduct a ?% fee from the total of each transaction in addition to any fees PayPal may charge you. If for any reason you need to refund a customer for an order, please contact us with a screenshot of the refund receipt in your PayPal history as well as the Transaction ID of our fee deduction so we can issue you a refund. Thank you!" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:698 +#: includes/common/payment-gateways/paypal-express.php:149 +msgid "There was a problem connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:470 +#: includes/common/payment-gateways/paypal-express.php:1053 +msgid "There was a problem verifying the IPN string with PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:310 +msgid "There was a problem connecting to PayPal to check the status of your purchase. Please check the status of your order here »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:539 +#: includes/common/payment-gateways/paypal-chained-payments.php:254 +#: includes/common/payment-gateways/paypal-express.php:1139 +msgid "The payment is pending." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:251 +#: includes/common/payment-gateways/paypal-chained-payments.php:531 +#: includes/common/payment-gateways/paypal-express.php:862 +#: includes/common/payment-gateways/paypal-express.php:1136 +msgid "The payment is pending for an unknown reason. For more information, contact PayPal customer service." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:250 +#: includes/common/payment-gateways/paypal-chained-payments.php:530 +#: includes/common/payment-gateways/paypal-express.php:861 +#: includes/common/payment-gateways/paypal-express.php:1135 +msgid "The payment is pending because you are not yet verified. You must verify your account before you can accept this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:249 +#: includes/common/payment-gateways/paypal-chained-payments.php:529 +#: includes/common/payment-gateways/paypal-express.php:860 +#: includes/common/payment-gateways/paypal-express.php:1134 +msgid "The payment is pending because it was made via credit card and you must upgrade your account to Business or Premier status in order to receive the funds. It can also mean that you have reached the monthly limit for transactions on your account." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:248 +#: includes/common/payment-gateways/paypal-chained-payments.php:528 +#: includes/common/payment-gateways/paypal-express.php:859 +#: includes/common/payment-gateways/paypal-express.php:1133 +msgid "The payment is pending because it was made to an email address that is not yet registered or confirmed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:247 +#: includes/common/payment-gateways/paypal-chained-payments.php:527 +#: includes/common/payment-gateways/paypal-express.php:858 +#: includes/common/payment-gateways/paypal-express.php:1132 +msgid "The payment is pending while it is being reviewed by PayPal for risk." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:246 +#: includes/common/payment-gateways/paypal-chained-payments.php:526 +#: includes/common/payment-gateways/paypal-express.php:856 +#: includes/common/payment-gateways/paypal-express.php:1130 +msgid "You do not have a balance in the currency sent, and you do not have your Payment Receiving Preferences set to automatically convert and accept this payment. You must manually accept or deny this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:245 +#: includes/common/payment-gateways/paypal-chained-payments.php:525 +#: includes/common/payment-gateways/paypal-express.php:855 +#: includes/common/payment-gateways/paypal-express.php:1129 +msgid "The payment is pending because you hold a non-U.S. account and do not have a withdrawal mechanism. You must manually accept or deny this payment from your Account Overview." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:244 +#: includes/common/payment-gateways/paypal-chained-payments.php:524 +#: includes/common/payment-gateways/paypal-express.php:854 +#: includes/common/payment-gateways/paypal-express.php:1128 +msgid "The payment is pending because it was made by an eCheck that has not yet cleared." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:243 +#: includes/common/payment-gateways/paypal-chained-payments.php:523 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:236 +#: includes/common/payment-gateways/paypal-chained-payments.php:516 +msgid "The transaction was rejected by the receiver (you)." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:510 +#: includes/common/payment-gateways/paypal-express.php:843 +#: includes/common/payment-gateways/paypal-express.php:1115 +msgid "You refunded the payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:224 +#: includes/common/payment-gateways/paypal-chained-payments.php:504 +msgid "The transaction is in progress." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:212 +#: includes/common/payment-gateways/paypal-chained-payments.php:491 +#: includes/common/payment-gateways/paypal-express.php:814 +#: includes/common/payment-gateways/paypal-express.php:1082 +msgid "The payment has been partially refunded." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:202 +#: includes/common/payment-gateways/paypal-chained-payments.php:481 +msgid "PayPal balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:177 +msgid "There was a problem connecting to PayPal to setup your purchase. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:122 +msgid "Your PayPal transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:50 +#: includes/common/payment-gateways/paypal-chained-payments.php:53 +#: includes/common/payment-gateways/paypal-chained-payments.php:732 +#: includes/common/payment-gateways/paypal-express.php:500 +#: includes/common/payment-gateways/paypal-express.php:938 +msgid "PayPal" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:48 +#: includes/common/payment-gateways/paypal-chained-payments.php:730 +#: includes/common/payment-gateways/paypal-chained-payments.php:756 +#: includes/common/payment-gateways/paypal-chained-payments.php:873 +msgid "PayPal Chained Payments" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:59 +#: includes/common/payment-gateways/paypal-payflow.php:467 +msgid "PayPal Payflow Pro" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:378 +msgid "Chargeback - A payment was reversed due to a chargeback. The funds have been removed from your account balance and returned to the buyer." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:372 +msgid "Failed - The Credit Card or Direct Debit transaction was declined." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:354 +#: includes/common/payment-gateways/skrill.php:366 +msgid "Cancelled - The payment was cancelled manually by the sender in their online account history or was auto-cancelled after 14 days pending." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:360 +msgid "Pending - The payment is pending. It can take 2-3 days for bank transfers to complete." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:349 +#: includes/common/payment-gateways/skrill.php:354 +msgid "Processed - The payment has been completed, and the funds have been added successfully to your Moneybookers account balance." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:189 +msgid "Shown to the customer on the confirmation screen - the end step of the process - a note, confirmation number, or any other message. Line breaks <br> may be used for longer messages." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:188 +msgid "Confirmation Note (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:183 +msgid "The URL of the logo which you would like to appear at the top of the payment form. The logo must be accessible via HTTPS otherwise it will not be shown. For best integration results we recommend that you use a logo with dimensions up to 200px in width and 50px in height." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:182 +msgid "Logo Image (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:177 +msgid "The name of this store, which will be shown on the gateway. If no value is submitted, the account email will be shown as the recipient of the payment." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:176 +msgid "Merchant Name (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:165 +msgid "Language" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:368 +#: includes/common/payment-gateways/authorizenet-aim.php:262 +#: includes/common/payment-gateways/eway.php:363 +#: includes/common/payment-gateways/eway31.php:471 +#: includes/common/payment-gateways/mollie.php:91 +#: includes/common/payment-gateways/paymill.php:193 +#: includes/common/payment-gateways/paypal-chained-payments.php:356 +#: includes/common/payment-gateways/paypal-express.php:688 +#: includes/common/payment-gateways/paypal-payflow.php:432 +#: includes/common/payment-gateways/pin.php:186 +#: includes/common/payment-gateways/skrill.php:152 +#: includes/common/payment-gateways/stripe.php:288 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:104 +msgid "Currency" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:359 +#: includes/common/payment-gateways/skrill.php:143 +msgid "Secret Word" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:261 +msgid "Order ID:" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:234 +msgid "Complete Checkout" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:204 +msgid "Your Moneybookers transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:155 +msgid "This is the email text to send to those who have made manual payment checkouts. You should include your manual payment instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:257 +#: includes/common/payment-gateways/manual-payments.php:128 +msgid "Record payments manually, such as by Cash, Check, or EFT." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:71 +msgid "Manual/Invoice" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:648 +#: includes/common/payment-gateways/manual-payments.php:35 +#: includes/common/payment-gateways/manual-payments.php:36 +msgid "Manual Payment" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:34 +#: includes/common/payment-gateways/manual-payments.php:163 +msgid "Manual Payments" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:288 +msgid "iDEAL Simulator (for testing)" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:287 +msgid "ABN Amro Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:286 +msgid "Friesland Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:285 +msgid "Rabobank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:284 +msgid "ING Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:279 +msgid "Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:270 +msgid "To make it easier to pay for online products and services, the Dutch banking community has developed the iDEAL online payment method. iDEAL allows online payments to be made using online banking in EUR only." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:247 +#: includes/common/payment-gateways/_payway.php:199 +#: includes/common/payment-gateways/manual-payments.php:68 +msgid "Invoiced" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1016 +msgid "Coupon" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:77 +#: includes/common/payment-gateways/_ideal.php:250 +#: includes/common/payment-gateways/_payway.php:202 +msgid "iDEAL" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:76 +msgid "iDEAL (beta)" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:327 +msgid "Merchant Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:293 +#: includes/common/payment-gateways/_payway.php:302 +#: includes/common/payment-gateways/payfast.php:324 +msgid "Merchant ID" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:462 +msgid "eWay Rapid 3.0 Payments lets merchants recieve credit card payments through eWay without need for users to leave the shop. Note this gateway requires a valid SSL certificate configured for this site." +msgstr "" + +#: includes/common/payment-gateways/eway.php:452 +msgid "There was a problem connecting to eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/eway.php:432 +#: includes/common/payment-gateways/eway.php:437 +msgid "The url of the image can be hosted on your website and pass the secure https:// path of the image to be displayed at the top of the website. This is the second image block on the webpage and is restricted to 960px X 65px. A default secure image is used if none is supplied." +msgstr "" + +#: includes/common/payment-gateways/eway.php:431 +#: includes/common/payment-gateways/eway.php:436 +msgid "Company Logo (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:427 +msgid "The page footer text can be customised and populated below the customer's order details. Useful for contact information." +msgstr "" + +#: includes/common/payment-gateways/eway.php:426 +msgid "Page Footer (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:421 +msgid "Page Description (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:417 +#: includes/common/payment-gateways/eway.php:422 +msgid "This value is used to populate the browsers title bar at the top of the screen." +msgstr "" + +#: includes/common/payment-gateways/eway.php:416 +msgid "Page Title (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:412 +msgid "This will be displayed as the company the customer is purchasing from, including this is highly recommended." +msgstr "" + +#: includes/common/payment-gateways/eway.php:411 +msgid "Company Name" +msgstr "" + +#: includes/common/payment-gateways/eway.php:394 +msgid "Customer ID" +msgstr "" + +#: includes/common/payment-gateways/eway.php:381 +#: includes/common/payment-gateways/eway31.php:488 +msgid "Live API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway.php:371 +#: includes/common/payment-gateways/eway31.php:479 +msgid "Gateway Mode" +msgstr "" + +#: includes/common/payment-gateways/eway.php:354 +msgid "The Hosted Page is a webpage hosted on eWAY's side eliminating the need for merchants to capture, transmit or store credit card numbers. At the checkout time the merchant automatically redirects the customer to the Hosted Page where they would enter their details and have the transaction processed. Upon completion of the transaction the customer is redirected back to the MarketPress checkout confirmation page." +msgstr "" + +#: includes/common/payment-gateways/eway.php:314 +msgid "There was a problem with your credit card information: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:300 +msgid "Paid - The card has been processed - %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:253 +msgid "There was a problem setting up the transaction with eWay: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:245 +#: includes/common/payment-gateways/eway.php:289 +msgid "There was a problem parsing the response from eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:159 +#: includes/common/payment-gateways/eway.php:189 +#: includes/common/payment-gateways/paypal-chained-payments.php:634 +#: includes/common/payment-gateways/paypal-express.php:322 +#: includes/common/payment-gateways/paypal-express.php:473 +msgid "%s Store Purchase - Order ID: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:147 +#: includes/common/payment-gateways/eway.php:462 +msgid "eWay Shared Payments" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:214 +msgid "This is the email text to send to those who have made CubePoints checkouts. You should include your CubePoints instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:212 +#: includes/common/payment-gateways/free_orders.php:188 +#: includes/common/payment-gateways/manual-payments.php:154 +msgid "Order Confirmation Email" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:207 +#: includes/common/payment-gateways/manual-payments.php:149 +msgid "Confirmation User Instructions" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:202 +#: includes/common/payment-gateways/manual-payments.php:144 +msgid "User Instructions" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:198 +#: includes/common/payment-gateways/free_orders.php:170 +#: includes/common/payment-gateways/manual-payments.php:139 +msgid "Enter a public name for this payment method that is displayed to users - No HTML" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:532 +#: includes/common/payment-gateways/_cubepoints.php:196 +#: includes/common/payment-gateways/free_orders.php:169 +#: includes/common/payment-gateways/manual-payments.php:138 +msgid "Method Name" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:187 +msgid "Accept CubePoints as payment(requires the CubePoints plugin)." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:140 +msgid "Sorry, but you do not appear to have enough points to complete this purchase!" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:124 +msgid "%s Store Purchase" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:79 +#: includes/common/payment-gateways/_cubepoints.php:171 +msgid "Your current points: " +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:133 +#: includes/common/payment-gateways/_cubepoints.php:197 +msgid "CubePoints" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:344 +msgid "Authorize.net AIM Checkout" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:331 +msgid "Custom API URL" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:332 +msgid "Many other gateways have Authorize.net API emulators. To use one of these gateways input their API post url here." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:322 +msgid "Request a delimited response from the payment gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:316 +msgid "Security: MD5 Hash" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:317 +msgid "The payment gateway generated MD5 hash value that can be used to authenticate the transaction response. Not needed because responses are returned using an SSL connection." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:306 +msgid "Customer Receipt Email Footer" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:296 +msgid "Customer Receipt Email Header" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:297 +#: includes/common/payment-gateways/paypal-payflow.php:446 +msgid "This text will appear as the header of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:282 +msgid "Encapsulation Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:283 +msgid "Authorize.net default is blank. Otherwise, get this from your credit card processor. If the transactions are going through, but getting strange responses, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:273 +msgid "Optional settings to control advanced options" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:224 +#: includes/common/payment-gateways/authorizenet-aim.php:272 +msgid "Advanced Settings" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:253 +msgid "Transaction Key" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:246 +msgid "Login ID" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:396 +msgid "Gateway Credentials" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:221 +msgid "Authorize.net AIM is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway. USD is the only currency supported by this gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:205 +msgid "There was a problem finalizing your purchase. %s Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:519 +#: includes/common/payment-gateways/paypal-chained-payments.php:218 +#: includes/common/payment-gateways/paypal-chained-payments.php:498 +#: includes/common/payment-gateways/paypal-express.php:822 +#: includes/common/payment-gateways/paypal-express.php:1092 +msgid "The payment has been completed, and the funds have been added successfully to your account balance." +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:233 +msgid "Please enter a valid credit card security code" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:224 +#: includes/public/class-mp-checkout.php:867 +msgid "Please enter a valid credit card number" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:221 +msgid "Please enter your credit card number" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:217 +msgid "Please enter your credit card security code" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:213 +msgid "Please select your credit card expiration date." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:299 +#: includes/common/payment-gateways/authorizenet-aim.php:50 +#: includes/common/payment-gateways/eway.php:148 +#: includes/common/payment-gateways/eway.php:298 +#: includes/common/payment-gateways/eway31.php:267 +#: includes/common/payment-gateways/paymill.php:46 +#: includes/common/payment-gateways/paypal-express.php:972 +#: includes/common/payment-gateways/paypal-payflow.php:60 +#: includes/common/payment-gateways/pin.php:46 +#: includes/common/payment-gateways/simplify.php:19 +#: includes/common/payment-gateways/stripe.php:46 +#: includes/common/payment-gateways/wepay.php:37 +msgid "Credit Card" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:49 +msgid "Authorize.net Checkout" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:156 +#: includes/common/payment-gateways/stripe.php:293 +msgid "Selecting a currency other than that used for your store may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:352 +msgid "Seller ID" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:340 +#: includes/common/payment-gateways/_ideal.php:311 +#: includes/common/payment-gateways/authorizenet-aim.php:234 +#: includes/common/payment-gateways/eway.php:376 +#: includes/common/payment-gateways/payfast.php:315 +#: includes/common/payment-gateways/paypal-chained-payments.php:368 +#: includes/common/payment-gateways/paypal-express.php:699 +#: includes/common/payment-gateways/paypal-payflow.php:391 +msgid "Live" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:339 +#: includes/common/payment-gateways/authorizenet-aim.php:233 +#: includes/common/payment-gateways/eway.php:375 +#: includes/common/payment-gateways/paypal-chained-payments.php:367 +#: includes/common/payment-gateways/paypal-express.php:698 +#: includes/common/payment-gateways/paypal-payflow.php:390 +#: includes/common/shipping-modules/mp-fedex.php:263 +msgid "Sandbox" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:336 +#: includes/common/payment-gateways/_ideal.php:307 +#: includes/common/payment-gateways/authorizenet-aim.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:365 +#: includes/common/payment-gateways/paypal-express.php:695 +#: includes/common/payment-gateways/paypal-payflow.php:387 +#: includes/common/payment-gateways/wepay.php:130 +#: includes/common/shipping-modules/mp-fedex.php:260 +msgid "Mode" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:288 +#: includes/common/payment-gateways/mijireh.php:242 +#: includes/common/payment-gateways/mollie.php:212 +msgid "The order has been received" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:74 +#: includes/common/payment-gateways/2checkout.php:75 +#: includes/common/payment-gateways/2checkout.php:435 +msgid "2Checkout" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:306 +msgid "Confirm" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:218 +#: includes/common/class-mp-cart.php:974 includes/common/class-mp-cart.php:1354 +#: includes/common/template-functions.php:918 +msgid "Checkout" +msgstr "" + +#: includes/common/template-functions.php:207 +msgid "Check Order Status" +msgstr "" + +#: includes/common/template-functions.php:235 +msgid "View Products" +msgstr "" + +#: includes/common/template-functions.php:263 +msgid "Visit Store" +msgstr "" + +#: includes/common/template-functions.php:2912 +#: includes/multisite/template-functions.php:448 +msgid "Order By" +msgstr "" + +#: includes/common/template-functions.php:2887 +#: includes/multisite/template-functions.php:405 +msgid "Price (High to Low)" +msgstr "" + +#: includes/common/template-functions.php:2886 +#: includes/multisite/template-functions.php:404 +msgid "Price (Low to High)" +msgstr "" + +#: includes/common/template-functions.php:2881 +#: includes/multisite/template-functions.php:399 +msgid "Default" +msgstr "" + +#: includes/common/template-functions.php:2858 +msgid "Show All" +msgstr "" + +#: includes/common/class-mp-product.php:2048 +msgid "View Larger Image »" +msgstr "" + +#: includes/common/class-mp-product.php:979 +msgid "Out of Stock" +msgstr "" + +#: includes/common/template-functions.php:148 +msgid "Price: " +msgstr "" + +#: includes/multisite/template-functions.php:833 +msgid "No Tags" +msgstr "" + +#: includes/common/template-functions.php:3162 +msgid "Uncategorized" +msgstr "" + +#: includes/common/class-mp-cart.php:569 includes/common/class-mp-order.php:604 +#: includes/common/helpers.php:115 +msgid "Download" +msgstr "" + +#: includes/common/class-mp-cart.php:1353 +msgid "Empty Cart" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:291 +#: includes/common/payment-gateways/paypal-express.php:718 +#: includes/common/payment-gateways/paypal-payflow.php:423 +#: includes/common/shipping-modules/mp-ups.php:158 +#: includes/public/class-mp-checkout.php:1254 +#: includes/public/class-mp-checkout.php:1383 +msgid "Password" +msgstr "" + +#: includes/common/payment-gateways/eway.php:387 +#: includes/common/payment-gateways/paypal-express.php:711 +#: includes/common/shipping-modules/mp-usps.php:185 +#: includes/public/class-mp-checkout.php:1249 +msgid "Username" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:437 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:790 +msgid "Have a coupon code?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:321 +#: includes/admin/class-mp-orders-admin.php:526 +#: includes/common/class-mp-cart.php:592 +msgid "Remove" +msgstr "" + +#: includes/admin/class-mp-ajax.php:316 +msgid "Quantity:" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2140 +#: includes/admin/class-mp-products-admin.php:2387 +#: includes/common/shipping-modules/class-mp-shipping-api.php:507 +msgid "Extra Shipping Cost" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:403 +msgid "Choose a Shipping Method:" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1691 +#: includes/admin/class-mp-products-admin.php:2131 +#: includes/admin/class-mp-products-admin.php:2378 +#: includes/common/shipping-modules/class-mp-shipping-api.php:228 +msgid "Ounces" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1684 +#: includes/admin/class-mp-products-admin.php:2123 +#: includes/admin/class-mp-products-admin.php:2369 +#: includes/admin/class-mp-setup-wizard.php:546 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:165 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +#: includes/common/shipping-modules/class-mp-shipping-api.php:227 +msgid "Pounds" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:226 +msgid "Product Weight:" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:214 +msgid "Weight (Kilograms)" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:82 +msgid "Number of Categories:" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:72 +msgid "Product Count" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:20 +#: includes/admin/class-mp-product-attributes-admin.php:129 +#: includes/admin/class-mp-product-attributes-list-table.php:22 +#: includes/admin/class-mp-products-admin.php:2216 +#: includes/admin/class-mp-shortcode-builder.php:628 +#: includes/admin/class-mp-shortcode-builder.php:1415 +#: includes/admin/widgets/ms-global-categories.php:70 +#: includes/common/shipping-modules/mp-fedex.php:395 +#: includes/common/shipping-modules/mp-ups.php:202 +#: includes/common/shipping-modules/mp-usps.php:243 +#: includes/public/class-mp-checkout.php:314 +msgid "Name" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:67 +msgid "Order Categories By:" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:24 +#: includes/admin/widgets/ms-global-categories.php:50 +msgid "Global Product Categories" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:15 +msgid "Global Product Category List" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:13 +msgid "Displays a network-wide HTML list of product categories from network MarketPress stores." +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:24 +#: includes/admin/widgets/ms-global-tag-cloud.php:45 +msgid "Global Product Tags" +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:15 +msgid "Global Product Tag Cloud" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:947 +#: includes/admin/widgets/ms-global-product-list.php:173 +msgid "Excerpt" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:169 +msgid "Content To Show:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:140 +msgid "Limit To Product Tag:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:132 +msgid "Limit To Product Category:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:72 +msgid "Global Products" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:16 +msgid "Global Product List" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:14 +msgid "Shows a customizable global list of products from network MarketPress stores." +msgstr "" + +#: includes/common/class-mp-product.php:974 +#: includes/multisite/template-functions.php:731 +msgid "Buy Now »" +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:13 +msgid "Displays global most used product tags in cloud format from network MarketPress stores." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:438 +msgid "Theme Permissions" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:402 +#: includes/multisite/class-mp-admin-multisite.php:448 +msgid "No Access" +msgstr "" + +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:120 +msgid "Pro Site Level" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:401 +#: includes/multisite/class-mp-admin-multisite.php:447 +msgid "All Can Use" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:390 +msgid "Gateway Permissions" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:375 +msgid "Select a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:350 +msgid "Global Gateway" +msgstr "" + +#. Plugin Name of the plugin/theme +msgid "MarketPress" +msgstr "" + +#: includes/admin/widgets/product-tag-cloud.php:7 +msgid "Your most used product tags in cloud format from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/categories.php:79 +msgid "Show hierarchy" +msgstr "" + +#: includes/admin/widgets/categories.php:76 +#: includes/admin/widgets/ms-global-categories.php:92 +msgid "Show product counts" +msgstr "" + +#: includes/admin/widgets/categories.php:73 +msgid "Show as dropdown" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:710 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:736 +#: includes/admin/widgets/categories.php:30 +msgid "Select Category" +msgstr "" + +#: includes/admin/widgets/categories.php:7 +msgid "A list or dropdown of product categories from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/product-list.php:250 +msgid "Show Buy Button" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:183 +#: includes/admin/widgets/product-list.php:244 +msgid "Show Price" +msgstr "" + +#: includes/admin/widgets/product-list.php:241 +msgid "Show Excerpt" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:155 +#: includes/admin/widgets/product-list.php:238 +msgid "Thumbnail Size:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:153 +#: includes/admin/widgets/product-list.php:237 +msgid "Show Thumbnail" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:147 +#: includes/admin/widgets/product-list.php:233 +msgid "Display Settings" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:136 +#: includes/admin/widgets/ms-global-product-list.php:144 +#: includes/admin/widgets/product-list.php:230 +msgid "Enter the Slug" +msgstr "" + +#: includes/admin/widgets/product-list.php:228 +#: includes/common/template-functions.php:894 +msgid "Tag" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:686 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:712 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:739 +#: includes/admin/class-mp-shortcode-builder.php:796 +#: includes/admin/widgets/product-list.php:227 +#: includes/common/template-functions.php:886 +#: includes/common/template-functions.php:2907 +msgid "Category" +msgstr "" + +#: includes/admin/widgets/product-list.php:226 +msgid "No Filter" +msgstr "" + +#: includes/admin/widgets/product-list.php:224 +msgid "Taxonomy Filter:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:108 +#: includes/admin/widgets/product-list.php:209 +msgid "Order Products By:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:101 +#: includes/admin/widgets/product-list.php:206 +msgid "Number of Products:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:98 +#: includes/admin/widgets/product-list.php:204 +msgid "List Settings" +msgstr "" + +#: includes/admin/widgets/product-list.php:177 +msgid "Our Products" +msgstr "" + +#: includes/admin/widgets/product-list.php:144 +#: includes/common/template-functions.php:2070 +#: includes/common/template-functions.php:2347 +#: includes/multisite/template-functions.php:303 +#: includes/multisite/template-functions.php:623 +msgid "No Products" +msgstr "" + +#: includes/admin/widgets/product-list.php:8 +msgid "Product List" +msgstr "" + +#: includes/admin/widgets/product-list.php:7 +msgid "Shows a customizable list of products from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/cart.php:75 includes/admin/widgets/categories.php:82 +#: includes/admin/widgets/product-list.php:253 +#: includes/admin/widgets/product-tag-cloud.php:57 +msgid "Only show on store pages" +msgstr "" + +#: includes/admin/widgets/cart.php:65 +#: includes/admin/widgets/ms-global-product-list.php:92 +#: includes/admin/widgets/product-list.php:200 +msgid "Custom Text:" +msgstr "" + +#: includes/admin/widgets/cart.php:64 includes/admin/widgets/categories.php:69 +#: includes/admin/widgets/ms-global-categories.php:59 +#: includes/admin/widgets/ms-global-product-list.php:87 +#: includes/admin/widgets/ms-global-tag-cloud.php:49 +#: includes/admin/widgets/product-list.php:199 +#: includes/admin/widgets/product-tag-cloud.php:49 +msgid "Title:" +msgstr "" + +#: includes/admin/widgets/cart.php:7 +msgid "Shows dynamic shopping cart contents along with a checkout button for your MarketPress store." +msgstr "" + +#: includes/admin/widgets/product-tag-cloud.php:8 +msgid "Product Tag Cloud" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:539 +#: includes/admin/class-mp-setup-wizard.php:575 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:163 +msgid "Measurement System" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:616 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:149 +msgid "Select Shipping Options" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:596 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:129 +msgid "Calculated Options" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:582 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:115 +msgid "No Shipping" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:110 +msgid "EU" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:109 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:93 +msgid "All" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:92 +msgid "Select:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:185 +msgid "Store Pages" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:223 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:256 +msgid "Order Shipped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:60 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:95 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:128 +#: marketpress.php:266 +msgid "New Order" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:314 +msgid "Email Notifications" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:59 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:200 +msgid "Products List" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:58 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:190 +msgid "Store Base" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:108 +#: includes/admin/class-mp-shortcode-builder.php:635 +#: includes/admin/class-mp-shortcode-builder.php:708 +#: includes/admin/class-mp-shortcode-builder.php:875 +#: includes/admin/class-mp-shortcode-builder.php:1319 +#: includes/admin/class-mp-shortcode-builder.php:1422 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:526 +#: includes/admin/widgets/ms-global-categories.php:78 +#: includes/admin/widgets/ms-global-product-list.php:127 +#: includes/admin/widgets/product-list.php:221 +msgid "Ascending" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:109 +#: includes/admin/class-mp-shortcode-builder.php:636 +#: includes/admin/class-mp-shortcode-builder.php:709 +#: includes/admin/class-mp-shortcode-builder.php:876 +#: includes/admin/class-mp-shortcode-builder.php:1320 +#: includes/admin/class-mp-shortcode-builder.php:1423 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:525 +#: includes/admin/widgets/ms-global-categories.php:75 +#: includes/admin/widgets/ms-global-product-list.php:124 +#: includes/admin/widgets/product-list.php:220 +msgid "Descending" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:637 +#: includes/admin/class-mp-shortcode-builder.php:695 +#: includes/admin/class-mp-shortcode-builder.php:862 +#: includes/admin/class-mp-shortcode-builder.php:1306 +#: includes/admin/class-mp-shortcode-builder.php:1424 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:518 +#: includes/admin/widgets/ms-global-product-list.php:121 +#: includes/admin/widgets/product-list.php:218 +msgid "Random" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:694 +#: includes/admin/class-mp-shortcode-builder.php:861 +#: includes/admin/class-mp-shortcode-builder.php:1305 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:517 +#: includes/admin/widgets/ms-global-product-list.php:119 +#: includes/admin/widgets/product-list.php:216 +msgid "Product Price" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:693 +#: includes/admin/class-mp-shortcode-builder.php:860 +#: includes/admin/class-mp-shortcode-builder.php:1304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:516 +#: includes/admin/widgets/ms-global-product-list.php:117 +#: includes/admin/widgets/product-list.php:215 +msgid "Number of Sales" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:692 +#: includes/admin/class-mp-shortcode-builder.php:859 +#: includes/admin/class-mp-shortcode-builder.php:1303 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:515 +#: includes/admin/widgets/product-list.php:214 +msgid "Product Author" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:691 +#: includes/admin/class-mp-shortcode-builder.php:858 +#: includes/admin/class-mp-shortcode-builder.php:1302 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:514 +#: includes/admin/widgets/product-list.php:213 +msgid "Product ID" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:690 +#: includes/admin/class-mp-shortcode-builder.php:857 +#: includes/admin/class-mp-shortcode-builder.php:1301 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:513 +#: includes/admin/widgets/ms-global-product-list.php:113 +#: includes/admin/widgets/product-list.php:212 +msgid "Publish Date" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:430 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:726 +msgid "Width" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:439 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:735 +msgid "Height" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:88 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:402 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:698 +msgid "Custom" +msgstr "" + +#: includes/common/class-mp-product.php:179 +#: includes/common/class-mp-product.php:992 +#: includes/common/class-mp-product.php:1000 +#: includes/multisite/template-functions.php:579 +msgid "Buy Now" +msgstr "" + +#: includes/common/class-mp-product.php:175 +#: includes/common/class-mp-product.php:990 +#: includes/common/class-mp-product.php:998 +msgid "Add To Cart" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:807 +msgid "Store Style" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1021 +msgid "Edit Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupon.php:580 +#: includes/admin/class-mp-ajax.php:238 +#: includes/admin/class-mp-products-admin.php:1532 +msgid "Unlimited" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1198 +msgid "Remaining Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1197 +msgid "Used" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:752 +#: includes/admin/class-mp-products-admin.php:2343 +msgid "Start Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:598 +msgid "Coupon Code" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:444 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:284 +msgid "Save Changes" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:57 +#: includes/admin/class-mp-shortcode-builder.php:716 +#: includes/admin/class-mp-shortcode-builder.php:727 +#: includes/admin/class-mp-shortcode-builder.php:883 +#: includes/admin/class-mp-shortcode-builder.php:894 +#: includes/admin/class-mp-shortcode-builder.php:946 +#: includes/admin/class-mp-shortcode-builder.php:956 +#: includes/admin/class-mp-shortcode-builder.php:1006 +#: includes/admin/class-mp-shortcode-builder.php:1327 +#: includes/admin/class-mp-shortcode-builder.php:1338 +#: includes/admin/store-settings/class-mp-store-settings-general.php:357 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:270 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:108 +#: includes/admin/widgets/ms-global-product-list.php:172 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:94 +msgid "None" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:352 +msgid "Google Analytics Ecommerce Tracking" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:310 +msgid "This option turns MarketPress into more of a product listing plugin, disabling shopping carts, checkout, and order management. This is useful if you simply want to list items you can buy in a store somewhere else, optionally linking the \"Buy Now\" buttons to an external site. Some examples are a car dealership, or linking to songs/albums in itunes, or linking to products on another site with your own affiliate links." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:304 +msgid "Whether or not customers must be registered and logged in to checkout. (Not recommended: Enabling this can lower conversions)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:258 +msgid "How many times may a customer download a file they have purchased? (It's best to set this higher than one in case they have any problems downloading)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:257 +msgid "Maximum Downloads" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:298 +msgid "This will set the product to draft if inventory of all variations is gone." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:288 +msgid "At what low stock count do you want to be warned for products you have enabled inventory tracking for?" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:208 +#: includes/admin/store-settings/class-mp-store-settings-general.php:287 +msgid "Inventory Warning Threshold" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:282 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:542 +msgid "Miscellaneous Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:429 +#: includes/multisite/class-mp-admin-multisite.php:247 +msgid "Show Decimal in Prices" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:451 +#: includes/admin/store-settings/class-mp-store-settings-general.php:403 +#: includes/multisite/class-mp-admin-multisite.php:221 +msgid "Currency Symbol Position" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:444 +#: includes/admin/store-settings/class-mp-store-settings-general.php:396 +msgid "Store Currency" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:429 +#: includes/admin/store-settings/class-mp-store-settings-general.php:381 +msgid "Currency Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:516 +msgid "Please see your local tax laws. Note if this is enabled and a downloadable only cart, rates will be the default for your base location." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:529 +msgid "Apply Tax to Downloadable Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:498 +msgid "Enabling this option allows you to enter and show all prices inclusive of tax, while still listing the tax total as a line item in shopping carts. Please see your local tax laws." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:497 +msgid "Enter Prices Inclusive of Tax?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:492 +msgid "Please see your local tax laws. Most areas charge tax on shipping fees." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:491 +msgid "Apply Tax To Shipping Fees?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:674 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:565 +#: includes/common/payment-gateways/authorizenet-aim.php:291 +#: includes/common/payment-gateways/authorizenet-aim.php:326 +#: includes/common/payment-gateways/payfast.php:347 +msgid "No" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:675 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:759 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:512 +#: includes/admin/class-mp-setup-wizard.php:518 +#: includes/admin/class-mp-setup-wizard.php:524 +#: includes/admin/class-mp-setup-wizard.php:530 +#: includes/admin/class-mp-setup-wizard.php:564 +#: includes/admin/store-settings/class-mp-store-settings-general.php:232 +#: includes/admin/store-settings/class-mp-store-settings-general.php:299 +#: includes/admin/store-settings/class-mp-store-settings-general.php:305 +#: includes/admin/store-settings/class-mp-store-settings-general.php:311 +#: includes/admin/store-settings/class-mp-store-settings-general.php:317 +#: includes/admin/store-settings/class-mp-store-settings-general.php:328 +#: includes/admin/store-settings/class-mp-store-settings-general.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:341 +#: includes/admin/store-settings/class-mp-store-settings-general.php:348 +#: includes/admin/store-settings/class-mp-store-settings-general.php:367 +#: includes/admin/store-settings/class-mp-store-settings-general.php:493 +#: includes/admin/store-settings/class-mp-store-settings-general.php:499 +#: includes/admin/store-settings/class-mp-store-settings-general.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:556 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:375 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:381 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:387 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:474 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:493 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:532 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:574 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:606 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:664 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:670 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:677 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:683 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:689 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:763 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:774 +#: includes/common/payment-gateways/_bitpay.php:250 +#: includes/common/payment-gateways/_bitpay.php:257 +#: includes/common/payment-gateways/_bitpay.php:264 +#: includes/common/payment-gateways/authorizenet-aim.php:290 +#: includes/common/payment-gateways/authorizenet-aim.php:325 +#: includes/common/payment-gateways/free_orders.php:160 +#: includes/common/payment-gateways/payfast.php:346 +#: includes/common/payment-gateways/paymill.php:162 +#: includes/common/payment-gateways/paypal-payflow.php:441 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-checkbox.php:22 +msgid "Yes" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:492 +#: includes/admin/store-settings/class-mp-store-settings-general.php:472 +msgid "%s Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:467 +#: includes/admin/store-settings/class-mp-store-settings-general.php:449 +msgid "Tax Settings" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:370 +#: includes/admin/store-settings/class-mp-store-settings-general.php:624 +msgid "Base Zip/Postal Code" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:354 +#: includes/admin/store-settings/class-mp-store-settings-general.php:608 +msgid "Base State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:589 +msgid "Base Country" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:582 +msgid "Location Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:195 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:800 +#: includes/multisite/class-mp-admin-multisite.php:172 +msgid "General Settings" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1945 +#: includes/admin/class-mp-products-admin.php:2185 +#: includes/admin/class-mp-store-settings-admin.php:111 +#: includes/admin/class-mp-store-settings-admin.php:266 +msgid "General" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:242 +msgid "Importers" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +#: includes/admin/class-mp-store-settings-admin.php:234 +msgid "Payments" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:313 +#: includes/admin/class-mp-store-settings-admin.php:112 +#: includes/admin/class-mp-store-settings-admin.php:222 +msgid "Presentation" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:916 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1015 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1018 +#: includes/admin/class-mp-dashboard-widgets.php:305 marketpress.php:702 +msgid "Coupons" +msgstr "" + +#: includes/admin/class-mp-admin.php:251 +msgid "Download »" +msgstr "" + +#: includes/admin/class-mp-admin.php:245 +#: includes/admin/class-mp-exporter-orders.php:170 +msgid "All Statuses" +msgstr "" + +#: includes/admin/class-mp-admin.php:209 +#: includes/admin/class-mp-exporter-orders.php:150 +#: includes/admin/class-mp-exporter-orders.php:178 +msgid "Export Orders" +msgstr "" + +#: includes/admin/class-mp-admin.php:228 +msgid "Show all dates" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:947 +msgid "Change Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:287 +msgid "Order Notes" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:478 +msgid "Other" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:205 +msgid "Subtotal" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:84 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:87 +#: includes/admin/class-mp-products-admin.php:1737 +#: includes/common/class-mp-cart.php:1409 +#: includes/common/class-mp-product.php:559 +msgid "Quantity" +msgstr "" + +#: includes/common/helpers.php:93 +msgid "Item" +msgstr "" + +#: includes/common/class-mp-order.php:1050 +msgid "Current Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:297 +msgid "Order Actions" +msgstr "" + +#: includes/common/class-mp-product.php:1084 +msgid "More Info »" +msgstr "" + +#: includes/common/class-mp-product.php:2313 +msgid "Low Product Inventory Notification" +msgstr "" + +#: includes/common/class-mp-order.php:338 includes/common/data.php:154 +msgid "New Order Notification: ORDERID" +msgstr "" + +#: includes/common/helpers.php:259 +msgid "Your payment for this order is complete." +msgstr "" + +#: includes/common/helpers.php:261 +msgid "Your payment for this order is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/helpers.php:256 +msgid "Payment Total:" +msgstr "" + +#: includes/common/helpers.php:253 +msgid "Transaction ID:" +msgstr "" + +#: includes/common/helpers.php:249 +msgid "Payment Type:" +msgstr "" + +#: includes/common/helpers.php:246 +msgid "Payment Method:" +msgstr "" + +#: includes/common/helpers.php:242 +msgid "Order Notes:" +msgstr "" + +#: includes/common/helpers.php:237 +msgid "Special Instructions:" +msgstr "" + +#: includes/common/helpers.php:232 +msgid "Tracking Number:" +msgstr "" + +#: includes/common/helpers.php:223 includes/common/helpers.php:226 +#: includes/common/helpers.php:228 +#: includes/common/shipping-modules/class-mp-shipping-api.php:406 +#: includes/common/shipping-modules/class-mp-shipping-api.php:428 +msgid "Shipping Method:" +msgstr "" + +#: includes/common/helpers.php:168 +msgid "No shipping required for this order." +msgstr "" + +#: includes/common/helpers.php:155 +msgid "Order Total:" +msgstr "" + +#: includes/common/class-mp-order.php:1025 +msgid "Taxes:" +msgstr "" + +#: includes/common/class-mp-order.php:1032 includes/common/helpers.php:144 +msgid "Shipping:" +msgstr "" + +#: includes/public/class-mp-checkout.php:367 +msgid "Street address, P.O. box, company name, c/o" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:314 +msgid "Shipping Info" +msgstr "" + +#: includes/public/class-mp-public.php:740 +msgid "Whoops, there was a problem loading up this file for your download. Please contact us for help." +msgstr "" + +#: includes/public/class-mp-public.php:683 +msgid "Sorry, our records show you've downloaded this file %d out of %d times allowed. Please contact us if you still need help." +msgstr "" + +#: includes/public/class-mp-public.php:634 +msgid "Sorry, your order has been marked as unpaid." +msgstr "" + +#: includes/public/class-mp-public.php:629 +msgid "Sorry, the link is invalid for this download." +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:15 +#: includes/admin/class-mp-products-admin.php:1172 +msgid "Cheatin’ uh?" +msgstr "" + +#: includes/public/class-mp-public.php:407 +#: includes/public/class-mp-short-codes.php:128 +msgid "Please enter a valid email address." +msgstr "" + +#: includes/admin/class-mp-ajax.php:191 +#: includes/admin/class-mp-products-admin.php:1821 +#: includes/admin/class-mp-products-admin.php:2010 +#: includes/admin/class-mp-products-admin.php:2267 +msgid "File URL" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1842 +msgid "External Link" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2177 +msgid "Add Variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:126 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:289 +msgid "Inventory" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:438 +#: includes/admin/class-mp-products-admin.php:578 +#: includes/admin/class-mp-products-admin.php:1552 +#: includes/admin/class-mp-products-admin.php:2053 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:134 +msgid "Sale Price" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "Variation Name" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1931 +msgid "Product Details" +msgstr "" + +#: includes/admin/class-mp-product-attributes-list-table.php:33 +msgid "Delete" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1057 +msgid "Trashed" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:231 +#: includes/admin/class-mp-orders-admin.php:1015 +#: includes/common/class-mp-order.php:1052 includes/common/helpers.php:97 +msgid "Total" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1196 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:210 +#: includes/admin/class-mp-orders-admin.php:1014 +msgid "Discount" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:221 +#: includes/admin/class-mp-orders-admin.php:1013 +#: includes/common/payment-gateways/_ideal.php:148 +#: includes/common/payment-gateways/_payway.php:134 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:108 +msgid "Tax" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:216 +#: includes/admin/class-mp-orders-admin.php:1012 +#: includes/admin/class-mp-products-admin.php:1958 +#: includes/admin/class-mp-products-admin.php:2198 +#: includes/admin/class-mp-store-settings-admin.php:114 +#: includes/admin/class-mp-store-settings-admin.php:230 +#: includes/common/class-mp-cart.php:717 includes/common/helpers.php:168 +#: includes/common/payment-gateways/_ideal.php:137 +#: includes/common/payment-gateways/_payway.php:116 +#: includes/public/class-mp-checkout.php:1304 +msgid "Shipping" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1011 +msgid "Items" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1010 +msgid "From" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:154 +#: includes/admin/class-mp-orders-admin.php:1009 +#: includes/common/class-mp-gdpr.php:370 +msgid "Order Date" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1008 +#: includes/common/class-mp-gdpr.php:366 +#: includes/common/template-functions.php:2134 +msgid "Order ID" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:22 +#: includes/admin/class-mp-orders-admin.php:1007 +msgid "Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1155 +msgid "N/A" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:243 +#: includes/admin/class-mp-products-admin.php:464 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:142 +msgid "Sales" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:463 +msgid "Stock" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:85 +#: includes/admin/class-mp-ajax.php:176 includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:434 +#: includes/admin/class-mp-products-admin.php:462 +#: includes/admin/class-mp-products-admin.php:576 +#: includes/admin/class-mp-products-admin.php:1519 +#: includes/admin/class-mp-products-admin.php:1569 +#: includes/admin/class-mp-products-admin.php:1950 +#: includes/admin/class-mp-products-admin.php:2059 +#: includes/admin/class-mp-products-admin.php:2190 +#: includes/admin/class-mp-products-admin.php:2330 +#: includes/common/class-mp-cart.php:1415 includes/common/helpers.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:130 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:276 +msgid "Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:173 +#: includes/admin/class-mp-products-admin.php:461 +#: includes/admin/class-mp-products-admin.php:1972 +#: includes/admin/class-mp-products-admin.php:2224 +msgid "SKU" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:459 +#: includes/admin/class-mp-products-admin.php:1793 +#: includes/admin/class-mp-products-admin.php:1805 +#: includes/admin/class-mp-products-admin.php:2163 +msgid "Variations" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:83 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:86 +#: includes/admin/class-mp-dashboard-widgets.php:134 +#: includes/admin/class-mp-products-admin.php:458 +#: includes/admin/class-mp-products-admin.php:837 +#: includes/admin/class-mp-shortcode-builder.php:689 +#: includes/admin/class-mp-shortcode-builder.php:856 +#: includes/admin/class-mp-shortcode-builder.php:1300 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:512 +#: includes/admin/widgets/ms-global-product-list.php:115 +#: includes/admin/widgets/product-list.php:211 +msgid "Product Name" +msgstr "" + +#: includes/common/template-functions.php:2575 +msgid "Categorized in " +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:305 +#: includes/common/payment-gateways/free_orders.php:176 +msgid "Payment Information" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:167 +#: includes/admin/class-mp-orders-admin.php:432 +#: includes/admin/class-mp-pages-admin.php:62 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:227 +#: includes/common/class-mp-gdpr.php:374 +#: includes/common/template-functions.php:175 +#: includes/common/template-functions.php:926 +msgid "Order Status" +msgstr "" + +#. translators: %s: orders closed +#: marketpress.php:327 +msgid "Closed (%s)" +msgid_plural "Closed (%s)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/admin/class-mp-admin.php:249 +#: includes/admin/class-mp-orders-admin.php:375 +#: includes/admin/class-mp-orders-admin.php:951 +#: includes/admin/class-mp-orders-admin.php:1053 +#: includes/admin/class-mp-orders-admin.php:1065 +#: includes/common/class-mp-gdpr.php:330 +#: includes/common/class-mp-order.php:1019 marketpress.php:325 +msgid "Closed" +msgstr "" + +#. translators: %s: shipped orders +#: marketpress.php:320 +msgid "Shipped (%s)" +msgid_plural "Shipped (%s)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/admin/class-mp-admin.php:248 +#: includes/admin/class-mp-orders-admin.php:376 +#: includes/admin/class-mp-orders-admin.php:950 +#: includes/admin/class-mp-orders-admin.php:1049 +#: includes/admin/class-mp-orders-admin.php:1064 +#: includes/common/class-mp-gdpr.php:329 +#: includes/common/class-mp-order.php:1002 marketpress.php:318 +msgid "Shipped" +msgstr "" + +#. translators: %s: paid orders +#: marketpress.php:313 +msgid "Paid (%s)" +msgid_plural "Paid (%s)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/admin/class-mp-admin.php:247 +#: includes/admin/class-mp-orders-admin.php:377 +#: includes/admin/class-mp-orders-admin.php:949 +#: includes/admin/class-mp-orders-admin.php:1045 +#: includes/admin/class-mp-orders-admin.php:1063 +#: includes/common/class-mp-gdpr.php:328 +#: includes/common/payment-gateways/2checkout.php:294 +#: includes/common/payment-gateways/_cubepoints.php:130 +#: includes/common/payment-gateways/authorizenet-aim.php:193 +#: includes/common/payment-gateways/free_orders.php:91 +#: includes/common/payment-gateways/mijireh.php:248 +#: includes/common/payment-gateways/paymill.php:273 +#: includes/common/payment-gateways/paypal-express.php:933 +#: includes/common/payment-gateways/paypal-express.php:967 +#: includes/common/payment-gateways/pin.php:258 +#: includes/common/payment-gateways/simplify.php:181 +#: includes/common/payment-gateways/stripe.php:368 +#: includes/common/payment-gateways/wepay.php:269 marketpress.php:311 +msgid "Paid" +msgstr "" + +#. translators: %s: orders received +#: marketpress.php:306 +msgid "Received (%s)" +msgid_plural "Received (%s)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/admin/class-mp-admin.php:246 +#: includes/admin/class-mp-orders-admin.php:378 +#: includes/admin/class-mp-orders-admin.php:1041 +#: includes/admin/class-mp-orders-admin.php:1062 +#: includes/common/class-mp-gdpr.php:327 includes/common/class-mp-order.php:995 +#: includes/common/payment-gateways/payfast.php:244 marketpress.php:304 +msgid "Received" +msgstr "" + +#: marketpress.php:268 +msgid "Search Orders" +msgstr "" + +#: marketpress.php:267 +msgid "View Order" +msgstr "" + +#: marketpress.php:262 +msgid "Order" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:301 +#: includes/admin/class-mp-orders-admin.php:989 marketpress.php:261 +msgid "Orders" +msgstr "" + +#: marketpress.php:228 +msgid "No Products found in Trash" +msgstr "" + +#: marketpress.php:227 +msgid "No Products Found" +msgstr "" + +#: marketpress.php:226 +msgid "Search Products" +msgstr "" + +#: marketpress.php:225 marketpress.php:229 +msgid "View Product" +msgstr "" + +#: marketpress.php:224 +msgid "New Product" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1022 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:258 +#: marketpress.php:223 +msgid "Edit" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1019 +msgid "Create New" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:687 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:698 +#: marketpress.php:217 +msgid "Product" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:307 +#: includes/common/template-functions.php:173 +#: includes/common/template-functions.php:179 +#: includes/common/template-functions.php:902 +#: includes/multisite/template-functions.php:82 marketpress.php:216 +#: marketpress.php:219 +msgid "Products" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:118 +#: includes/admin/widgets/product-tag-cloud.php:46 +#: includes/multisite/class-mp-admin-multisite.php:548 +msgid "Product Tags" +msgstr "" + +#: includes/common/template-functions.php:2906 +#: includes/multisite/template-functions.php:449 +msgid "Product Category" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:117 +#: includes/admin/widgets/categories.php:8 +#: includes/admin/widgets/categories.php:18 +#: includes/multisite/class-mp-admin-multisite.php:539 +msgid "Product Categories" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:332 +#: includes/common/template-functions.php:872 marketpress.php:218 +msgid "Store" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:60 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:209 +#: includes/admin/widgets/cart.php:8 includes/admin/widgets/cart.php:56 +#: includes/common/template-functions.php:174 +#: includes/common/template-functions.php:811 +msgid "Shopping Cart" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:110 +#: includes/admin/class-mp-store-settings-admin.php:218 +msgid "Store Settings" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:128 marketpress.php:607 +msgid "Settings" +msgstr "" + +#: includes/common/data.php:178 includes/common/data.php:190 +msgid "Your Order Has Been Shipped! (ORDERID)" +msgstr "" + +#: includes/common/data.php:159 includes/common/data.php:166 +#: includes/common/data.php:172 +msgid "Your Order Confirmation (ORDERID)" +msgstr "" + +#: includes/common/data.php:148 +msgid "

    Thank you for your order! We appreciate your business, and please come back often to check out our new products.

    " +msgstr "" + +#: includes/common/data.php:147 +msgid "

    You are almost done! Please do a final review of your order to make sure everything is correct then click the \"Confirm Payment\" button.

    " +msgstr "" + +#: includes/common/data.php:145 +msgid "

    Please enter your shipping information in the form below to proceed with your order.

    " +msgstr "" + +#: includes/common/data.php:143 +msgid "

    If you have any questions about your order please do not hesitate to contact us.

    " +msgstr "" + +#: includes/common/data.php:106 +msgid "tag" +msgstr "" + +#: includes/common/data.php:105 +msgid "category" +msgstr "" + +#: includes/common/data.php:104 +msgid "order-status" +msgstr "" + +#: includes/common/data.php:103 +msgid "shopping-cart" +msgstr "" + +#: includes/common/data.php:102 +msgid "products" +msgstr "" + +#. Translators: change default slugs here +#: includes/common/data.php:101 +msgid "store" +msgstr "" \ No newline at end of file diff --git a/languages/mp-da.mo b/languages/mp-da.mo new file mode 100644 index 0000000000000000000000000000000000000000..869645ecc39040b94038fc6628508cd87c521382 GIT binary patch literal 168283 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 literal 0 HcmV?d00001 diff --git a/languages/mp-da.po b/languages/mp-da.po new file mode 100644 index 00000000..95903b1b --- /dev/null +++ b/languages/mp-da.po @@ -0,0 +1,9089 @@ +# Translation of MarketPress in Danish +# This file is distributed under the same license as the MarketPress package. +msgid "" +msgstr "" +"PO-Revision-Date: 2017-02-15 14:58:58+0000\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-Generator: GlotPress/2.3.1\n" +"Language: da_DK\n" +"Project-Id-Version: MarketPress\n" + +#: includes/public/class-mp-checkout.php:1285 +msgid "By clicking this checkbox you allow the website to process your personal data." +msgstr "" + +#: includes/common/class-mp-gdpr.php:382 +msgid "Order Info" +msgstr "" + +#: includes/common/class-mp-gdpr.php:268 +msgid "Shipping Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:267 +msgid "Shipping Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:266 +msgid "Shipping ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:265 +msgid "Shipping State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:264 +msgid "Shipping City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:263 +msgid "Shipping Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:262 +msgid "Shipping Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:261 +msgid "Shipping Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:260 +msgid "Shipping Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:259 +msgid "Shipping Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:258 +msgid "Shipping First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:254 +msgid "Billing Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:253 +msgid "Billing Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:252 +msgid "Billing ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:251 +msgid "Billing State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:250 +msgid "Billing City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:249 +msgid "Billing Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:248 +msgid "Billing Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:247 +msgid "Billing Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:246 +msgid "Billing Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:245 +msgid "Billing Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:244 +msgid "Billing First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:151 +msgid "Orders Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:139 +msgid "Customer Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:100 includes/common/class-mp-gdpr.php:116 +msgid "MarketPress User Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:81 +msgid "" +"In addition to standard WordPress session cookies, this site might be setting an\n" +"\t\t additional cookie to remember your cart settings. This cookie will last for one year." +msgstr "" + +#: includes/common/class-mp-gdpr.php:80 +msgid "Cookies" +msgstr "" + +#: includes/common/class-mp-gdpr.php:77 +msgid "" +"The following information will be collected in order to process orders: your name,\n" +"\t\t username, email address, avatar and profile URLs, address and phone number. This data can be\n" +"\t\t exported and removed." +msgstr "" + +#: includes/common/class-mp-gdpr.php:76 +msgid "Additional data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:71 +msgid "" +"This site might be using third party services and tools to process payments or/and\n" +"\t\t process shipping data when creating orders on the MarketPress store. These services include payment\n" +"\t\t gateways: 2Checkout, Authorize.net AIM, eWay shared payments, eWay Rapid 3.1 Payments, Mijireh,\n" +"\t\t Mollie, Paymill, PayPal, PIN, Simplify Commerce by MasterCard, Stripe and WePay; shipping gateways:\n" +"\t\t Fedex, UPS, USPS." +msgstr "" + +#: includes/common/class-mp-gdpr.php:70 +msgid "Third parties" +msgstr "" + +#: includes/admin/class-mp-admin.php:403 +msgid "Start creating store pages and products for your online shop here." +msgstr "" + +#: includes/admin/class-mp-admin.php:402 +msgid "Create Online Shop" +msgstr "" + +#: includes/admin/class-mp-admin.php:394 +msgid "Run Setup Wizard" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:234 +msgid "If having problems during invoice generation, add define( 'DOMPDF_ENABLE_HTML5PARSER', true ); to the wp-config.php file." +msgstr "" + +#: includes/public/class-mp-checkout.php:723 +msgid "Invalid Email" +msgstr "" + +#: includes/public/class-mp-checkout.php:721 +#: includes/public/class-mp-checkout.php:729 +msgid "This field is required" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:804 +msgid "This option changes the built-in css styles for store pages. For a custom css style, save your css file with the /* MarketPress Style: Your CSS Theme Name Here */ header line in the \"%s\" folder and it will appear in this list so you may select it. You should select \"None\" if you don't wish to use custom CSS styles or if you are using default theme templates or custom theme templates and css to make your own completely unique store design. For more information on custom theme templates click here »." +msgstr "" + +#: includes/public/class-mp-public.php:421 +#: includes/public/class-mp-short-codes.php:142 +msgid "Please enter a value greater than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:420 +#: includes/public/class-mp-short-codes.php:141 +msgid "Please enter a value less than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:419 +#: includes/public/class-mp-short-codes.php:140 +msgid "Please enter a value between {0} and {1}." +msgstr "" + +#: includes/public/class-mp-public.php:418 +#: includes/public/class-mp-short-codes.php:139 +msgid "Please enter a value between {0} and {1} characters long." +msgstr "" + +#: includes/public/class-mp-public.php:417 +#: includes/public/class-mp-short-codes.php:138 +msgid "Please enter at least {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:416 +#: includes/public/class-mp-short-codes.php:137 +msgid "Please enter no more than {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:415 +#: includes/public/class-mp-short-codes.php:136 +msgid "Please enter a value with a valid extension." +msgstr "" + +#: includes/public/class-mp-public.php:414 +#: includes/public/class-mp-short-codes.php:135 +msgid "Please enter the same value again." +msgstr "" + +#: includes/public/class-mp-public.php:413 +#: includes/public/class-mp-short-codes.php:134 +msgid "Please enter a valid credit card number." +msgstr "" + +#: includes/public/class-mp-public.php:412 +#: includes/public/class-mp-short-codes.php:133 +msgid "Please enter only digits." +msgstr "" + +#: includes/public/class-mp-public.php:411 +#: includes/public/class-mp-short-codes.php:132 +msgid "Please enter a valid number." +msgstr "" + +#: includes/public/class-mp-public.php:410 +#: includes/public/class-mp-short-codes.php:131 +msgid "Please enter a valid date (ISO)." +msgstr "" + +#: includes/public/class-mp-public.php:409 +#: includes/public/class-mp-short-codes.php:130 +msgid "Please enter a valid date." +msgstr "" + +#: includes/public/class-mp-public.php:408 +#: includes/public/class-mp-short-codes.php:129 +msgid "Please enter a valid URL." +msgstr "" + +#: includes/public/class-mp-public.php:406 +#: includes/public/class-mp-short-codes.php:127 +msgid "Please fix this field." +msgstr "" + +#: includes/public/class-mp-checkout.php:1287 +#: includes/public/class-mp-public.php:405 +#: includes/public/class-mp-short-codes.php:126 +msgid "This field is required." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:810 +msgid "None - Without Special CSS-styles" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:809 +msgid "Default - Using Default CSS-styles" +msgstr "" + +#: marketpress.php:739 +msgid "Enable multiple downloads per product" +msgstr "" + +#: marketpress.php:738 +msgid "Multiple Downloads" +msgstr "" + +#: includes/public/class-mp-checkout.php:715 +msgid "Invalid Zip Code" +msgstr "" + +#: includes/common/template-functions.php:2126 +msgid "Guest Email" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:195 +msgid "There was a problem finalizing your purchase. Please re-enter your credit card information and try again" +msgstr "" + +#: includes/common/class-mp-cart.php:565 includes/common/class-mp-order.php:600 +#: includes/common/helpers.php:111 +msgid "Download %1$s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:331 +msgid "Export products to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:328 +msgid "The import process uses the WordPress importer plugin." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:326 +msgid "Import / Export Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:325 +msgid "Export settings to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:324 +msgid "Import configuration" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:320 +msgid "Use the text below to export to a new installation. Or paste in the new configuration to import." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:318 +msgid "Import / Export Settings" +msgstr "" + +#. translators: URL to wp-admin/import.php +#: includes/admin/store-settings/class-mp-store-settings-import.php:266 +msgid "This importer is not installed. Please install importers from the main site." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:261 +msgid "Install Now" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:260 +msgid "Install %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:240 +msgid "Run Importer" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:239 +msgid "Run %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:258 +msgid "Import/Export" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1199 +msgid "Requires Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:737 +msgid "Optionally limit the user to some categories" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:671 +msgid "Should this coupon only be available to logged in users?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:670 +msgid "Require Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:655 +msgid "Mimimum number of products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:653 +msgid "Enter the minimum number of products in the cart that this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:648 +msgid "Can this coupon be limited to a number of products in the cart?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:334 +msgid "Add all values" +msgstr "Tilføj alle værdier" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:265 +msgid "Set as default variation." +msgstr "Vælg som standard variation." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:154 +msgid "Set Default" +msgstr "Vælg standard" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:150 +msgid "More Info" +msgstr "Mere info" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:40 +msgid "MarketPress - Quick Setup" +msgstr "MarketPress - Hurtig opsætning" + +#: includes/public/class-mp-checkout.php:1399 +msgid "Proceed to checkout and create an account at the end." +msgstr "Fortsæt til kassen og opret en konto til sidst." + +#: includes/public/class-mp-checkout.php:1241 +#: includes/public/class-mp-checkout.php:1245 +msgid "Register account" +msgstr "Registrer konto" + +#: includes/public/class-mp-checkout.php:1233 +msgid "Register as customer?" +msgstr "Registrer som kunde?" + +#: includes/public/class-mp-checkout.php:765 +msgid "

    Oops!

    Looks like you haven't added anything your cart. Let's go shopping!

    " +msgstr "

    Ups!

    Det ser ud til du ikke har tilføjet noget til din kurv. Lad os gå på indkøb!

    " + +#: includes/public/class-mp-checkout.php:763 +msgid "

    Oops!

    The cart is disabled.

    " +msgstr "

    Ups!

    Kurven er deaktiveret.

    " + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing Information" +msgstr "Faktureringsoplysninger" + +#: includes/multisite/class-mp-admin-multisite.php:214 +msgid "Global Currency" +msgstr "Global valuta" + +#: includes/multisite/class-mp-admin-multisite.php:198 +msgid "Global Store Currency" +msgstr "Global butiksvaluta" + +#: includes/common/shipping-modules/mp-usps.php:507 +msgid "There are no shipping services available for this type of package in your location." +msgstr "Der er ingen forsendelse tjenester til rådighed for denne type pakke i dit område." + +#: includes/common/shipping-modules/mp-usps.php:168 +msgid "Using this USPS Shipping calculator requires requesting an Ecommerce API Username and Password. Get your free set of credentials here ». The password is no longer used for the API, just the username which you should enter below. The USPS test site has not yet been updated and currently doesn't work - you should just request activating your credentials with USPS and go live." +msgstr "Med denne USPS forsendelsesberegner er det nødvendigt med et E-handel API brugernavn og kodeord. Få dit gratis sæt af legitimationsoplysninger her ». Adgangskoden skal ikke længere anvendes til API, det er kun brugernavnet, som du skal indtaste nedenfor. USPS test websted er endnu ikke blevet opdateret og virker i øjeblikket ikke - du skal blot anmode om dine legitimationsoplysninger og aktivere dem ved USPS og gå live." + +#: includes/common/payment-gateways/stripe.php:339 +msgid "ZIP Code" +msgstr "Postnummer" + +#: includes/common/payment-gateways/stripe.php:334 +msgid "Last name" +msgstr "Efternavn" + +#: includes/common/payment-gateways/stripe.php:333 +msgid "First name" +msgstr "Fornavn" + +#: includes/common/payment-gateways/manual-payments.php:150 +msgid "These are the manual payment instructions to display on the order confirmation screen. TOTAL will be replaced with the order total and ORDERID will be replaced with Order ID." +msgstr "Dette er manuelle betalingsinstrukser der vises på ordrebekræftelse skærmen. TOTAL vil blive erstattet med den samlede ordre og ORDERID vil blive erstattet med ordre-id." + +#: includes/common/payment-gateways/authorizenet-aim.php:240 +msgid "You must login to Authorize.net merchant dashboard to obtain the API login ID and API transaction key. Instructions »" +msgstr "Du må logge ind på Authorize.net forretnings kontrolpanel for at indhente API login ID´et og API transaktionsnøgle. Instruktioner »" + +#: includes/common/payment-gateways/2checkout.php:327 +msgid "
    1. Set the \"Return Method\" within Site Management to Header Redirect and set the \"Return URL\" to %s
    2. Set your notifications url to %s
    " +msgstr "
    1. Indstil \"Return Method\" igennem Site Management i Header Redirect og indstil \"Return URL\" til %s
    2. Indstil din underretnings url til %s
    " + +#: includes/common/data.php:191 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Also, digital downloads included in your order are now ready to be downloaded. Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" +"Kære CUSTOMERNAME,\n" +"Din ordre er blevet afsendt! Dine digitale downloads inkluderet i din ordre er nu også klar til download. Afhængig af leveringsmetode og leveringssted, så skulle den snarest ankomme. Referer venligst til dig ordre ID (ORDERID) hvis du tager kontakt til os.\n" +"\n" +"Her er en bekræftelse på dine ordredetaljer:\n" +"\n" +"Ordreoplysninger:\n" +"ORDERINFO\n" +"\n" +"Forsendelseoplysninger:\n" +"SHIPPINGINFO\n" +"\n" +"Betalingsoplysninger:\n" +"PAYMENTINFO\n" +"\n" +"ORDERNOTES\n" +"\n" +"Du kan spore den seneste status for din ordre her: TRACKINGURL\n" +"\n" +"Tak for du valgte at handle ved os!" + +#: includes/common/data.php:185 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order is now available to download! Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" +"Kære CUSTOMERNAME,\n" +"Din ordre er nu tilgængelig til download! Referer venligst til dit ordre ID (ORDERID) hvis du tager kontakt til os.\n" +"\n" +"Her er en bekræftelse på dine ordredetaljer:\n" +"\n" +"Ordreoplysninger:\n" +"ORDERINFO\n" +"\n" +"Forsendelseoplysninger:\n" +"SHIPPINGINFO\n" +"\n" +"Betalingsoplysninger:\n" +"PAYMENTINFO\n" +"\n" +"ORDERNOTES\n" +"\n" +"Du kan spore den seneste status for din ordre her: TRACKINGURL\n" +"\n" +"Tak for du valgte at handle ved os!" + +#: includes/common/data.php:184 +msgid "Your Order Is Ready To Be Downloaded! (ORDERID)" +msgstr "Din Ordre Er Klar Til At Blive Downloadet! (ORDERID)" + +#: includes/common/data.php:179 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" +"Kære CUSTOMERNAME,\n" +"Din ordre er blevet afsendt! Afhængig af leveringsmetode og leveringssted, så skulle den snarest ankomme. Referer venligst til dit ordre ID (ORDERID) hvis du tager kontakt til os.\n" +"\n" +"Her er en bekræftelse på dine ordredetaljer:\n" +"\n" +"Ordreoplysninger:\n" +"ORDERINFO\n" +"\n" +"Forsendelseoplysninger:\n" +"SHIPPINGINFO\n" +"\n" +"Betalingsoplysninger:\n" +"PAYMENTINFO\n" +"\n" +"ORDERNOTES\n" +"\n" +"Du kan spore den seneste status for din ordre her: TRACKINGURL\n" +"\n" +"Tak for du valgte at handle ved os!" + +#: includes/common/data.php:173 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received, your digital goods are ready to be downloaded and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" +"Tak for din ordre CUSTOMERNAME!\n" +"\n" +"Din ordre er modtaget og dine digitale produkter er klar til at blive downloadet og ethvert produkt der skal afsendes vil blive behandlet hurtigst muligt. Referer venligst til dit ordre ID (ORDERID) hvis du skulle få brug for at kontakte os.\n" +"\n" +"Her er en bekræftelse på dine ordredetaljer:\n" +"\n" +"Ordreoplysninger:\n" +"ORDERINFO\n" +"\n" +"Forsendelseoplysninger:\n" +"SHIPPINGINFO\n" +"\n" +"Betalingsoplysninger:\n" +"PAYMENTINFO\n" +"\n" +"ORDERNOTES\n" +"\n" +"Du kan spore den seneste status for din ordre her:\n" +"TRACKINGURL\n" +"\n" +"Endnu engang tak for din ordre!" + +#: includes/common/data.php:167 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received and your digital goods are ready to be downloaded. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" +"Tak for din bestilling CUSTOMERNAME!\n" +"\n" +"Din ordre er modtaget og dine digitale produkter er klar til at blive downloadet. Henvis til dit ordre ID (ORDERID) hvis du kontakter os.\n" +"\n" +"Her er en bekræftelse på dine ordredetaljer:\n" +"\n" +"Ordre information:\n" +"ORDERINFO\n" +"\n" +"Betalings information:\n" +"PAYMENTINFO\n" +"\n" +"ORDERNOTES\n" +"\n" +"Du kan spore den seneste status på din ordre her: TRACKINGURL\n" +"\n" +"Tak for din bestilling!" + +#: includes/common/data.php:160 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +" Your order has been received, and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information: \n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/class-mp-product.php:638 +msgid "You can not add more items to cart." +msgstr "Du kan ikke tilføje flere ting til din kurv" + +#: includes/common/class-mp-product.php:635 +msgid "You can only add {0} to cart." +msgstr "Du kan kun tilføje {0} til kurven." + +#: includes/common/class-mp-product.php:625 +msgid "This product has an order limit of %d." +msgstr "Dette produkt har en ordre begrænsning på %d." + +#: includes/common/class-mp-order.php:1454 +msgid "Shipped: tracking code: %s" +msgstr "Afsendt: sporingskode: %s" + +#: includes/common/class-mp-order.php:1000 +#: includes/common/class-mp-order.php:1012 +msgid "Finished" +msgstr "Gennemført" + +#: includes/common/class-mp-order.php:858 +msgid "Contact Details" +msgstr "Kontaktdetaljer" + +#: includes/common/class-mp-order.php:339 includes/common/data.php:155 +msgid "" +"A new order (ORDERID) was created in your store:\n" +"\n" +" ORDERINFOSKU\n" +"\n" +" SHIPPINGINFO\n" +"\n" +" PAYMENTINFO\n" +"\n" +msgstr "" +"En ny ordre (ORDERID) blev lavet i din shop:\n" +"\n" +"ORDERINFOSKU\n" +"\n" +"SHIPPINGINFO\n" +"\n" +"PAYMENTINFO\n" +"\n" + +#: includes/common/class-mp-cart.php:1858 +msgid "Add again" +msgstr "Tilføj igen" + +#: includes/common/class-mp-cart.php:1852 +msgid "was removed from Shopping Cart" +msgstr "blev fjernet fra indkøbskurven" + +#: includes/common/class-mp-cart.php:1242 +#: includes/public/class-mp-short-codes.php:160 +msgid "Cart update notice: this item has a limit per order or you have reached the stock limit." +msgstr "Kurv opdatering note: denne genstand har en grænse per ordre, eller du har nået grænsen for lagerbeholdningen." + +#: includes/admin/widgets/product-list.php:235 +msgid "Show Only Featured Products" +msgstr "Vis kun fremhævede produkter" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:533 +msgid "If enabled, users won't be able to filter products per category and/or to order by release date/name/price." +msgstr "Hvis aktiveret, vil brugerne ikke kunne filtrere produkter efter kategori og/eller sortere efter udgivelsesdato/navn/pris." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:531 +msgid "Hide Products Filter?" +msgstr "Skjul produktfiltre?" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:353 +msgid "Notification to registration email instead of billing email?" +msgstr "Underretning til registrering email i stedet for fakturering email?" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:322 +msgid "Order Shipped - Mixed orders (with both digital and physical products)" +msgstr "Ordre afsendt - Blandet ordrer (med både digitale og fysiske produkter)" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:289 +msgid "Order Shipped - Digital downloads only orders" +msgstr "Ordre afsendt - Kun digitale downloads ordrer" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:224 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "Disse koder vil blive erstattet med ordredetaljer: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. HTML ikke tilladt." + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:194 +msgid "New Order - Mixed" +msgstr "Ny ordre - Blandet" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:161 +msgid "New Order - Digital downloads only orders" +msgstr "Ny ordre - Kun digitale downloads ordrer" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:115 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:243 +msgid "Mixed orders" +msgstr "Blandet ordrer" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:110 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:238 +msgid "Digital downloads orders" +msgstr "Digitale downloads ordrer" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:105 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:233 +msgid "Physical orders" +msgstr "Fysiske ordrer" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:96 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed.
    For orders placed with manual payment, emails set here will be overriden by the one configured in manual payments settings, under payments settings page" +msgstr "Disse koder vil blive erstattet med ordredetaljer: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. HTML ikke tilladt.
    For ordrer med manuel betaling, vil e-mails der er her tilsidesættes af den der er konfigureret i manuelle betalinger indstillingerne under betalings indstillinger" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:89 +msgid "Customer Notification Settings" +msgstr "Kundeunderretning indstillinger" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:47 +msgid "Admin Notification Settings" +msgstr "Adminunderretning indstillinger" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:566 +msgid "Only contact details" +msgstr "Kun kontaktdetaljer" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:565 +msgid "Full billing info" +msgstr "Komplet fakturering info" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:561 +msgid "Details Collection" +msgstr "Detaljer kollektion" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:548 +msgid "Digital Settings" +msgstr "Digitale Indstillinger" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:515 +msgid "Apply Tax to Digital Products?" +msgstr "Anvend moms på digitale produkter?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:236 +msgid "product (default)" +msgstr "produkt (standard)" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:231 +msgid "If you are experiencing conflicts with other e-commerce plugins change this setting. This will change the internal post type of all your products. Please note that changing this option may break 3rd party themes or plugins." +msgstr "Hvis du oplever konflikter med andre e-handel plugin, så ændre denne indstilling. Dette vil ændre den interne posttype for alle dine produkter. Bemærk at ved ændring af denne mulighed kan 3. parts temaer eller plugins stoppe med at fungere korrekt." + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1203 +msgid "Hide details" +msgstr "Skjul detaljer" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1202 +msgid "Show all changes" +msgstr "Gem alle ændringer" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1184 +msgid "Version %s" +msgstr "Version %s" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1161 +msgid "Current" +msgstr "Aktuel" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1131 +msgid "%s changelog" +msgstr "%s ændringslog" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:952 +msgid "We did not find any data for this plugin or theme..." +msgstr "Vi fandt ingen data for dette plugin eller tema..." + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:285 +msgid "Activate WPMU DEV Dashboard" +msgstr "Aktiver WPMU DEV Dashboard" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:279 +msgid "Just one more step - activate the WPMU DEV Dashboard plugin and you're all done!" +msgstr "Bare et skridt til - aktiver WPMU DEV Dashboard plugin og så er du klar!" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:277 +msgid "Important updates are available for your WPMU DEV plugins/themes. Activate the WPMU DEV Dashboard to update now!" +msgstr "Vigtige opdateringer er tilgængelige for dine WPMU DEV plugins/temaer. Aktiver WPMU DEV Dashboard for at opdatere nu!" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:273 +msgid "Just one more step to enable updates and support for %s!" +msgstr "Bare et skridt mere for at aktivere opdateringer og support for %s!" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:271 +msgid "Important updates are available for %s. Activate the WPMU DEV Dashboard to update now!" +msgstr "Vigtige opdateringer er tilgængelige for %s. Aktiver WPMU DEV Dashboard for at opdatere nu!" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:264 +msgid "activate" +msgstr "aktiver" + +#: includes/admin/class-mp-admin.php:398 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:248 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:289 +msgid "Dismiss" +msgstr "Afvis" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:247 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:288 +msgid "Saving..." +msgstr "Gemmer..." + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:244 +msgid "Install Plugin" +msgstr "Installer plugin" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:238 +msgid "Almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "Næsten klar - installer det gratis WPMU DEV Dashboard plugin for opdateringer og support!" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:236 +msgid "Important updates are available for your WPMU DEV plugins/themes. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "Vigtige opdateringer er tilgængelige for dine WPMU DEV plugins/temaer. Installer det gratis WPMU DEV Dashboard plugin nu for opdateringer og support!" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:232 +msgid "%s is almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "%s er stort set klar - installer det gratis WPMU DEV Dashboard plugin for opdateringer og support!" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:230 +msgid "Important updates are available for %s. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "Vigtige opdateringer er tilgængelige for %s. Installer det gratis WPMU DEV Dashboard plugin nu for opdateringer og support!" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:223 +msgid "install" +msgstr "installer" + +#: includes/admin/class-mp-shortcode-builder.php:1428 +msgid "Sets the number of Tags to display. This causes the SQL LIMIT value to be defined." +msgstr "Indstiller antallet af tags der vises. Dette afhænger af at SQL-grænseværdien er defineret." + +#: includes/admin/class-mp-shortcode-builder.php:1289 +msgid "How many products to display in the product list if \"paginate\" is set to false." +msgstr "Hvor mange produkter der skal vises i produktlisten hvis \"sideinddel\" er sat til falsk." + +#: includes/admin/class-mp-shortcode-builder.php:739 +#: includes/admin/class-mp-shortcode-builder.php:906 +#: includes/admin/class-mp-shortcode-builder.php:1350 +msgid "Grid" +msgstr "Gitter" + +#: includes/admin/class-mp-shortcode-builder.php:735 +#: includes/admin/class-mp-shortcode-builder.php:902 +#: includes/admin/class-mp-shortcode-builder.php:1346 +msgid "Products will be displayed as list or grid." +msgstr "Produkter vil blive vist som en liste eller gitter." + +#: includes/admin/class-mp-shortcode-builder.php:206 +msgid "Display a cloud or list of your global product tags." +msgstr "Vis en cloud eller liste af dine globale produkt tags." + +#: includes/admin/class-mp-shortcode-builder.php:205 +msgid "Display a list of your global categories." +msgstr "Vis en liste af dine globale kategorier." + +#: includes/admin/class-mp-shortcode-builder.php:204 +msgid "Display a list or grid of your global products." +msgstr "Vis en liste eller gitter med dine globale produkter." + +#: includes/admin/class-mp-shortcode-builder.php:181 +msgid "Display a list of featured products." +msgstr "Vis en liste af fremhævede produkter." + +#: includes/admin/class-mp-products-admin.php:1451 +msgid "Is Featured?" +msgstr "Er fremhævet?" + +#: includes/admin/class-mp-products-admin.php:1444 +msgid "Featured Product" +msgstr "Fremhævet produkt" + +#: includes/admin/class-mp-products-admin.php:581 +#: includes/admin/class-mp-products-admin.php:1580 +msgid "% discount" +msgstr "% rabat" + +#: includes/admin/class-mp-products-admin.php:579 +msgid "OR" +msgstr "OR" + +#: includes/admin/class-mp-products-admin.php:460 +#: includes/admin/class-mp-products-admin.php:586 +#: includes/admin/widgets/product-list.php:217 +msgid "Featured" +msgstr "Fremhævet" + +#: includes/admin/class-mp-orders-admin.php:536 +#: includes/admin/class-mp-orders-admin.php:538 +msgid "Tracking Link" +msgstr "Sporingslink" + +#: includes/admin/class-mp-orders-admin.php:508 +msgid "Shipping Tax" +msgstr "Forsendelsesmoms" + +#: includes/admin/class-mp-orders-admin.php:356 +msgid "Shipping Total" +msgstr "Forsendelse ialt" + +#: includes/admin/class-mp-orders-admin.php:352 +msgid "Taxes Total" +msgstr "Skatter ialt" + +#: includes/admin/class-mp-orders-admin.php:349 +msgid "Products Total" +msgstr "Produkter ialt" + +#: includes/admin/class-mp-ajax.php:366 +msgid "Oops! You entered an invalid username/email and or password." +msgstr "Ups! Du indtastede et ugyldigt brugernavn/email og/eller kodeord." + +#: includes/admin/class-mp-ajax.php:254 +msgid "Percentage Discount" +msgstr "Procentrabat" + +#: includes/admin/class-mp-ajax.php:234 +msgid "Limit the Amount of Items per Order" +msgstr "Begræns mængden af varer per ordre" + +#: includes/admin/class-mp-ajax.php:214 +msgid "Unused Attributes" +msgstr "Ubrugte attributter" + +#: includes/admin/class-mp-admin.php:82 +msgid "Run setup wizard" +msgstr "Start opsætnings guide" + +#: includes/admin/class-mp-admin.php:79 +msgid "MarketPress setup is not complete! Once you've completed this quick setup wizard you'll have a fully working online store - exciting! " +msgstr "MarketPress opsætning er ikke gennemført! Først når du har gennemført denne hurtige opsætnings guide, så vil du have en fuldt fungerende online shop - spændende! " + +#: marketpress.php:263 +msgctxt "mp_order" +msgid "Add New" +msgstr "Tilføj ny" + +#: marketpress.php:184 +msgctxt "product_tag" +msgid "Product Tag" +msgstr "Produkt Tag" + +#: marketpress.php:183 +msgctxt "product_tag" +msgid "Product Tags" +msgstr "Produkt tags" + +#: marketpress.php:150 +msgctxt "product_category" +msgid "Product Category" +msgstr "Produktkategori" + +#: marketpress.php:149 +msgctxt "product_category" +msgid "Product Categories" +msgstr "Produktkategorier" + +#. Author URI of the plugin/theme +msgid "http://premium.wpmudev.org" +msgstr "http://premium.wpmudev.org" + +#: marketpress.php:729 +msgid "Invoice PDF" +msgstr "PDF Faktura" + +#: marketpress.php:712 +msgid "Grant access to themes and gateways depending on the user's Pro Site level" +msgstr "Tillad adgang til temaer og gateways afhængig af brugerens Pro side niveau" + +#: marketpress.php:711 +msgid "Pro Sites" +msgstr "Pro sider" + +#: marketpress.php:703 +msgid "Offer and accept coupon codes" +msgstr "Tilbyd og accepter kupon koder" + +#. translators: %s: plugin title +#: marketpress.php:687 +msgid "Install %s Pages" +msgstr "Installer %s sider" + +#. translators: %s: plugin title +#: marketpress.php:682 +msgid "Welcome to %s – Install pages required by the plugin automatically." +msgstr "Velkommen til %s – Installer automatisk sider der kræves af pluginnet." + +#: marketpress.php:668 +msgid "Your pages were created successfully." +msgstr "Dine sider blev oprettet." + +#: marketpress.php:436 +msgid "Add a Product" +msgstr "Tilføj et produkt" + +#: marketpress.php:271 +msgid "Parent Order" +msgstr "Forældre ordre" + +#: marketpress.php:270 +msgid "No orders found in trash" +msgstr "Ingen ordre fundet i papirkurv." + +#: marketpress.php:269 +msgid "No orders found" +msgstr "Ingen ordrer fundet" + +#: marketpress.php:265 +msgid "Edit Order" +msgstr "Rediger ordre" + +#: marketpress.php:264 +msgid "Add New Order" +msgstr "Tilføj Ny Ordre" + +#: marketpress.php:220 marketpress.php:221 +msgid "Add New Product" +msgstr "Tilføj nyt produkt" + +#: marketpress.php:197 +msgid "No product tags found" +msgstr "Ingen produkt tags blev fundet" + +#: marketpress.php:196 +msgid "Choose from the most used product tags" +msgstr "Vælg ud fra de mest brugte produkt tags" + +#: marketpress.php:195 +msgid "Add or remove product tags" +msgstr "Tilføj eller fjern produkt tags" + +#: marketpress.php:194 +msgid "Separate product tags with commas" +msgstr "Adskil produkt tags med komma" + +#: marketpress.php:193 +msgid "Search Product Tags" +msgstr "Søg produkt tags" + +#: marketpress.php:192 +msgid "Parent Product Tag:" +msgstr "Forældre product tag:" + +#: marketpress.php:191 +msgid "Parent Product Tag" +msgstr "Forældre produkt tag" + +#: marketpress.php:190 +msgid "New Product Tag Name" +msgstr "Nyt produkt tag navn" + +#: marketpress.php:189 +msgid "Add New Product Tag" +msgstr "Tilføj nyt produkt tag" + +#: marketpress.php:188 +msgid "Update Product Tag" +msgstr "Opdater produkt tag" + +#: marketpress.php:187 +msgid "View Product Tag" +msgstr "Vis produkt tag" + +#: marketpress.php:186 +msgid "Edit Product Tag" +msgstr "Rediger produkt tag" + +#: marketpress.php:185 +msgid "All Product Tags" +msgstr "Alle produkt tags" + +#: marketpress.php:163 +msgid "No product categories found" +msgstr "Ingen produktkategorier fundet" + +#: marketpress.php:162 +msgid "Choose from the most used product categories" +msgstr "Vælg ud fra de mest brugte produktkategorier" + +#: marketpress.php:161 +msgid "Add or remove product categories" +msgstr "Tilføj eller fjern produktkategorier" + +#: marketpress.php:160 +msgid "Separate product categories with commas" +msgstr "Adskil produktkategorier med komma" + +#: marketpress.php:159 +msgid "Search Product Categories" +msgstr "Søg produktkategorier" + +#: marketpress.php:158 +msgid "Parent Product Category:" +msgstr "Forældre produktkategori:" + +#: marketpress.php:157 +msgid "Parent Product Category" +msgstr "Forældre produktkategori" + +#: marketpress.php:156 +msgid "New Product Category Name" +msgstr "Nyt produktkategori navn" + +#: marketpress.php:155 +msgid "Add New Product Category" +msgstr "Tilføj ny produktkategori" + +#: marketpress.php:154 +msgid "Update Product Category" +msgstr "Opdater produktkategori" + +#: marketpress.php:153 +msgid "View Product Category" +msgstr "Vis Produktkategori" + +#: marketpress.php:152 +msgid "Edit Product Category" +msgstr "Rediger produktkategori" + +#: marketpress.php:151 +msgid "All Product Categories" +msgstr "Alle produktkategorier" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Please fix the %s1 and then try submitting the form again." +msgstr "Venligst ret %s1 og derefter prøv at indsende formularen igen." + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Oops! The form contains %s1 which %s2 been highlighted below." +msgstr "Ups! Formularen indeholder %s1 som %s2 er fremhævet herunder." + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:660 +msgid "have" +msgstr "har" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:659 +msgid "has" +msgstr "har" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:651 +msgid "Value must be less than {0}" +msgstr "Værdi skal være mindre end {0}" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:650 +msgid "Please enter only letters and numbers" +msgstr "Indtast venligst kun bogstaver og tal" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:539 +msgid "Due to prolonged inactivity on this page, one or more settings were not saved. Please try again." +msgstr "På grund af længere tids inaktivitet på denne side, blev en eller flere indstillinger ikke gemt. Prøv venligst igen." + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:535 +msgid "Settings Saved" +msgstr "Indstillinger Gemt" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-user-select.php:22 +msgid "Select Some Users" +msgstr "Vælg Nogle Brugere" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-section.php:18 +msgid "Section Title" +msgstr "Sektion Overskrift" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:425 +msgid "Are you sure you want to delete this?" +msgstr "Er du sikker på at du vil slette dette?" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:30 +msgid "Add Row" +msgstr "Tilføj Række" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-post-select.php:24 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-taxonomy-select.php:22 +msgid "Select Posts" +msgstr "Vælg Indlæg" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:210 +msgid "Add Images" +msgstr "Tilføj billeder" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:129 +msgid "Select the image that you would like to use for this product." +msgstr "Vælg det billede du vil bruge til dette produkt. " + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:93 +msgid "Select image(s) that you would like to use for this product." +msgstr "Vælg det billede du vil bruge til dette produkt. " + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:79 +msgid "Select the image that you would like to use for this variation." +msgstr "Vælg det billede eller de billeder du vil bruge til dette produkt." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:48 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:82 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:68 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:132 +msgid "Select Image" +msgstr "Vælg billede" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:31 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:160 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:168 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:19 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:115 +msgid "Select File" +msgstr "Vælg fil" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:30 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:18 +msgid "Select the file that you would like to use." +msgstr "Vælg filen som du ønsker at bruge." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:357 +msgid "Create Variations" +msgstr "Opret variationer" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:356 +msgid "Add Another Variant" +msgstr "Tilføj anden variant" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Insert a value and press ENTER" +msgstr "Indsæt en værdig og tryk ENTER" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "(e.g. White, Grey, Red etc.)" +msgstr "(fx Hvid, Grå, Rød osv.)" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Variation Values" +msgstr "Variation værdier" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:333 +msgid "Or create new variation" +msgstr "Eller opret ny variation" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "(e.g. Color)" +msgstr "(fx Farve)" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:303 +msgid "You are about to delete selected variants.
    If you want to continue please confirm." +msgstr "Du er ved at slette valgte varianter.
    Hvis du ønsker at fortsætte, så tryk på bekræft." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:302 +msgid "Confirmation" +msgstr "Bekræftelse" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:290 +msgid "Insert quantity available. Empty for unlimited." +msgstr "Indtast tilgængeligt antal. Tom for ubegrænset." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:281 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:294 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:307 +msgid "Cancel" +msgstr "Annuller" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:280 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:293 +msgid "Update" +msgstr "Opdater" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:277 +msgid "Insert the price i.e. 25 or 25.50" +msgstr "Indtast prisen som 25 eller 25.50" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:115 +msgid "Img." +msgstr "Bld." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:85 +msgid "Add New Variation" +msgstr "Tilføj ny variant" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:79 +msgid "Delete Variants" +msgstr "Slet varianter" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:78 +msgid "Update Prices" +msgstr "Opdater priser" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:77 +msgid "Update Inventory" +msgstr "Opdater beholdning" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:76 +msgid "Update Images" +msgstr "Opdater billeder" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:75 +msgid "Bulk Actions" +msgstr "Massehandlinger" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:73 +msgid "Select bulk action" +msgstr "Vælg massehandling" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:196 +msgid "Configure Store" +msgstr "Konfigurer butik" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:195 +msgid "Configure shipping rates, emails and your store's appearance. " +msgstr "Konfigurer forsendelsestakster, emails og din butik udseende. " + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:190 +msgid "Add Product" +msgstr "Tilføj produkt" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:189 +msgid "Add your first product for sale and get familiar with adding products." +msgstr "Tilføj dit første produkt til salg og bliv fortrolig med at tilføje produkter." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:184 +msgid "Your store is almost ready for its first customers, but first it needs some products. Get started by adding products below, or jump straight into further configuring your store’s settings." +msgstr "Din butik er næsten klar til dens første kunder, men først skal den have nogle produkter. Kom i gang ved at tilføje produkter herunder eller springe direkte ud i yderligere konfiguration af butikkens indstillinger" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:183 +msgid "Woohoo! Your online store is up and running." +msgstr "Fantastisk! Din online webshop er oppe at køre." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:160 +msgid "Finish Setup" +msgstr "Færdiggør installation" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:124 +msgid "And what metric system do you want to use?" +msgstr "Og hvilket meter system ønsker du at bruge?" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:113 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:142 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:159 +msgid "Back" +msgstr "Tilbage" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:109 +msgid "Do you want to apply tax for your products? You can customize this for each product and variation." +msgstr "Ønsker du at opkræve moms for dine produkter? Du kan tilpasse dette for hvert produkt og variation." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:105 +msgid "What currency do you want to sell with?" +msgstr "Hvilken valuta vil du sælge i?" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:93 +msgid "And, which countries do you want to sell to?" +msgstr "Og hvilke lande ønsker du at sælge til?" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:89 +msgid "Where is your online store based?" +msgstr "Hvor er din online butik placeret?" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:80 +msgid "Payment Gateway" +msgstr "Betalings gateway" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:79 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:123 +msgid "Metric System" +msgstr "Meter system" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:78 +msgid "Currency & Tax" +msgstr "Valuta & Moms" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:77 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:88 +msgid "Locations" +msgstr "Lakalitioner" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:70 +msgid "Choose where you want to sell your stuff and what currency. Easy!" +msgstr "Vælg hvor du ønsker at sælge dit grej og hvilken valuta. Nemt!" + +#: includes/public/class-mp-checkout.php:1400 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:58 +msgid "Continue" +msgstr "Fortsæt" + +#: includes/admin/class-mp-admin.php:83 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:53 +msgid "Skip this step, I'll do this manually" +msgstr "Spring dette trin over, det vil jeg gøre manuelt" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:49 +msgid "Install store pages" +msgstr "Installer butiksider" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:44 +msgid "Once you've completed this quick setup wizard you'll have a fully working online store - exciting! Start
    by creating the default store pages for the online store such as the cart, checkout and store pages." +msgstr "Så snart du har gennemført denne hurtige opsætnings guide, så vil du have en fuldt fungerende online butik - spændende! Start
    med at oprette standard butiks siderne for online butikken, så som kurv, kassen og butikssider." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:42 +msgid "MarketPress adds a full online store to your website, with heaps of configuration options and addons
    to suit your needs. It's really easy to get going, and only takes a few minutes to setup!" +msgstr "MarketPress tilføjer en fuldt fungerende online butik til din hjemmeside, med dynger af konfigurationsmuligheder og tilføjelser
    der kan tilpasses dine behov. Det er virkelig nemt at komme i gang og tager kun et par minutter at opsætte!" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:41 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:69 +msgid "Welcome to MarketPress - Quick Setup" +msgstr "Velkommen til MarketPress - Hurtig opsætning" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-advanced-select.php:23 +msgid "Select Some Options" +msgstr "Vælg nogle muligheder" + +#: includes/wpmudev-metaboxes/class-wpmudev-field.php:694 +msgid "You must the WPMUDEV_Field::display() method in your form field class" +msgstr "" + +#: includes/public/class-mp-short-codes.php:636 +msgid "Only %s left in stock..." +msgstr "Kun %s tilbage på lager..." + +#: includes/public/class-mp-short-codes.php:633 +msgid "Unlimited stock" +msgstr "Ubegrænset lager" + +#: includes/public/class-mp-short-codes.php:430 +msgid "product_id must be defined" +msgstr "product_id skal defineres" + +#: includes/public/class-mp-checkout.php:1250 +msgid "An account with this username already exists" +msgstr "En konto med denne brugernavn eksisterer allerede" + +#: includes/public/class-mp-checkout.php:1394 +msgid "Continue as Guest" +msgstr "Fortsæt som Gæst" + +#: includes/public/class-mp-checkout.php:1393 +msgid "Proceed to checkout and you'll have an opportunity to create an account at the end." +msgstr "Fortsæt til check-ud og du vil få muligheden til at etablere dig som bruger." + +#: includes/public/class-mp-checkout.php:1392 +#: includes/public/class-mp-checkout.php:1398 +msgid "First-time customer?" +msgstr "Første-gangs kunde ?" + +#: includes/public/class-mp-checkout.php:1386 +msgid "Login" +msgstr "Login" + +#: includes/public/class-mp-checkout.php:1379 +msgid "E-Mail Address/Username" +msgstr "E-Mail Adresse/Brugernavn" + +#: includes/public/class-mp-checkout.php:1377 +msgid "Sign in to speed up the checkout process." +msgstr "Log in hvis du vil speede udcheckningsprocessen op." + +#: includes/public/class-mp-checkout.php:1376 +msgid "Have an account?" +msgstr "Er du oprettet som bruger ?" + +#: includes/public/class-mp-checkout.php:1297 +msgid "Shipping address different than billing?" +msgstr "Er forsendelsesadresse anderledes end faktureringsadresse?" + +#: includes/public/class-mp-checkout.php:1184 +msgid "There are no available gateways to process this payment." +msgstr "Der er ingen tilgængelige gateways til at behandle denne betaling." + +#: includes/public/class-mp-checkout.php:1160 +msgid "Payment" +msgstr "Betaling" + +#: includes/public/class-mp-checkout.php:1123 +msgid "Oops! An error occurred while processing your payment." +msgstr "Ups! Der opstod en fejl under behandlingen af din betaling." + +#: includes/public/class-mp-checkout.php:1051 +msgid "Next Step »" +msgstr "Fortsæt »" + +#: includes/public/class-mp-checkout.php:1045 +msgid "« Previous Step" +msgstr "« Forrige trin" + +#: includes/public/class-mp-checkout.php:873 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:657 +msgid "error" +msgstr "fejl" + +#: includes/public/class-mp-checkout.php:872 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:658 +msgid "errors" +msgstr "fejl" + +#: includes/public/class-mp-checkout.php:871 +msgid "

    Oops! We found %d %s in the form below.

    Fields that have errors are highlighted in red below. Entering into a field will reveal the actual error that occurred.

    " +msgstr "

    Ups! Vi fandt %d %s i formularen herunder.

    Felter med fejl er markeret med rød herunder. Indtastning i et felt vil afsløre den faktiske fejl der opstod.

    " + +#: includes/public/class-mp-checkout.php:870 +msgid "Please enter a valid first and last name" +msgstr "Venligst indtast et gyldigt for og efternavn" + +#: includes/public/class-mp-checkout.php:869 +msgid " Please enter a valid card security code" +msgstr "Indtast venligst en valid sikkerheds kode" + +#: includes/public/class-mp-checkout.php:868 +msgid "Please enter a valid card expiration" +msgstr "Indtast en gyldig udløbsdato" + +#: includes/public/class-mp-checkout.php:773 +msgid "Javascript is required in order to checkout. Please enable Javascript in your browser and then refresh this page." +msgstr "Javascript er påkrævet for at tjekke ud. Du bedes aktivere Javascript i din browser og derefter opdatere denne side." + +#: includes/public/class-mp-checkout.php:588 +msgid "An unknown error occurred. Please try again." +msgstr "Der opstod en ukendt fejl. Prøv venligst igen." + +#: includes/public/class-mp-checkout.php:386 +msgid "Town/City" +msgstr "By" + +#: includes/public/class-mp-checkout.php:380 +msgid "Apartment, suite, unit, building, floor, etc" +msgstr "Øvrige adresseoplysninger" + +#: includes/public/class-mp-checkout.php:376 +msgid "Address Line 2" +msgstr "Adresse linie 2" + +#: includes/public/class-mp-checkout.php:363 +msgid "Address Line 1" +msgstr "Adresse linie 1" + +#: includes/common/class-mp-order.php:770 +#: includes/public/class-mp-checkout.php:354 +msgid "Company" +msgstr "Firma" + +#: includes/public/class-mp-checkout.php:330 +msgid "Last" +msgstr "Efternavn" + +#: includes/public/class-mp-checkout.php:321 +msgid "First" +msgstr "Fornavn" + +#: includes/public/class-mp-checkout.php:284 +msgid "State/Province" +msgstr "Stat/Provins" + +#: includes/public/class-mp-checkout.php:83 +msgid "Review Order/Payment" +msgstr "Gennemse Ordre/Betaling" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing/Shipping Address" +msgstr "Opkrævnings/Forsendelsesadresse" + +#: includes/public/class-mp-checkout.php:80 +msgid "Login/Register" +msgstr "Log ind/Registrer" + +#: includes/multisite/class-mp-admin-multisite.php:530 +msgid "Marketplace" +msgstr "Markedsplads" + +#: includes/multisite/class-mp-admin-multisite.php:523 +msgid "Global Marketplace Pages" +msgstr "Global markedsplads sider" + +#: includes/multisite/class-mp-admin-multisite.php:478 +msgid "Store Network" +msgstr "Butik netværk" + +#: includes/multisite/class-mp-admin-multisite.php:478 +#: includes/multisite/class-mp-admin-multisite.php:494 +msgid "Store Network Settings" +msgstr "Butik netværks-indtillinger" + +#: includes/multisite/class-mp-admin-multisite.php:440 +msgid "Set theme access permissions for network stores. For a custom css theme, save your css file with the MarketPress Theme: NAME header in the /marketpress/ui/themes/ folder and it will appear in this list so you may select it." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:361 +msgid "Choose a Gateway" +msgstr "Vælg en Gateway" + +#: includes/multisite/class-mp-admin-multisite.php:336 +msgid "%d products get indexed" +msgstr "%d produkter bliver indekseret" + +#: includes/multisite/class-mp-admin-multisite.php:285 +msgid "Product Indexer" +msgstr "Produkt Indeksering" + +#: includes/multisite/class-mp-admin-multisite.php:281 +msgid "Please hold on..." +msgstr "Vent venligst..." + +#: includes/multisite/class-mp-admin-multisite.php:280 +msgid "Index Products" +msgstr "Indekser produkter" + +#: includes/multisite/class-mp-admin-multisite.php:279 +msgid "%d products have been indexed in whole network" +msgstr "%d produkter er blevet indekseret i hele netværket" + +#: includes/multisite/class-mp-admin-multisite.php:182 +msgid "Enable Global Shopping Cart?" +msgstr "Aktiver global indkøbskurv?" + +#: includes/multisite/class-mp-admin-multisite.php:178 +msgid "Limit Global Widgets/Shortcodes To Main Blog?" +msgstr "Begræns globale widgets/kortkoder til hovedbloggen?" + +#: includes/common/template-functions.php:2802 +#: includes/multisite/template-functions.php:355 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:97 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:114 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:143 +msgid "Next" +msgstr "Næste" + +#: includes/common/template-functions.php:2801 +#: includes/multisite/template-functions.php:354 +msgid "Prev" +msgstr "Forrige" + +#: includes/common/template-functions.php:2597 +msgid "Tagged in " +msgstr "Tagget i " + +#: includes/common/template-functions.php:2196 +#: includes/common/template-functions.php:2202 +#: includes/common/template-functions.php:2214 +#: includes/common/template-functions.php:2217 +msgid "Oops! We couldn't locate any orders matching that order number. Please verify the order number and try again." +msgstr "Ups! Vi kunne ikke finde nogen ordrer der matcher dette ordrenummer. Kontroller ordrenummer og prøv igen." + +#: includes/common/template-functions.php:2138 +msgid "Look Up" +msgstr "Find" + +#: includes/common/template-functions.php:1423 +msgid "Please choose a shipping method" +msgstr "Vælg en forsendelsesmetode" + +#: includes/common/template-functions.php:927 +msgid "If you have your order ID you can look it up using the form below." +msgstr "Hvis du har dit ordre ID, så kan du slå det op ved at anvende nedenstående formular." + +#: includes/common/template-functions.php:927 +msgid "Order Search" +msgstr "Søg ordre" + +#: includes/common/template-functions.php:910 +#: includes/public/class-mp-checkout.php:1440 +msgid "Cart" +msgstr "Kurv" + +#: includes/common/template-functions.php:895 +msgid "[mp_global_tag_cloud]" +msgstr "[mp_global_tag_cloud]" + +#: includes/common/template-functions.php:887 +msgid "[mp_global_categories_list]" +msgstr "[mp_global_categories_list]" + +#: includes/common/template-functions.php:880 +msgid "" +"Welcome to our market place!\n" +"\n" +"Check out our network of products:\n" +"\n" +"[mp_list_global_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_global_categories_list]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_global_tag_cloud]" +msgstr "" +"Velkommen til vores markedsplads!\n" +"\n" +"Tjek produkter fra vores netværk:\n" +"\n" +"[mp_list_global_products]\n" +"\n" +"Gennemse efter kategori:\n" +"\n" +"[mp_global_categories_list]\n" +"\n" +"Gennemse efter tag:\n" +"\n" +"[mp_global_tag_cloud]" + +#: includes/common/template-functions.php:879 +msgid "Global Store" +msgstr "Global butik" + +#: includes/common/template-functions.php:873 +msgid "" +"Welcome to our online store! Feel free to browse around:\n" +"\n" +"[mp_store_navigation]\n" +"\n" +"Check out our most popular products:\n" +"\n" +"[mp_popular_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_list_categories]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_tag_cloud]" +msgstr "" +"Velkommen til vores online butik! Du er velkommen til at kigge rundt:\n" +"\n" +"[mp_store_navigation]\n" +"\n" +"Tjek vores mest populære produkter:\n" +"\n" +"[mp_popular_products]\n" +"\n" +"Gennemse efter kategori:\n" +"\n" +"[mp_list_categories]\n" +"\n" +"Gennemse efter tag:\n" +"\n" +"[mp_tag_cloud]" + +#: includes/common/shipping-modules/mp-weight-rate.php:127 +msgid "If cart weight is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "Hvis vægten på indkøbskurven er større end eller lig med denne værdi, så er det satser fra denne række, der vil blive anvendt i kassen." + +#: includes/common/shipping-modules/mp-weight-rate.php:126 +msgid "Cart Weight" +msgstr "Vægt på kurv" + +#: includes/common/shipping-modules/mp-usps.php:222 +msgid "Offered International Services" +msgstr "Tilbudte Internationale Services" + +#: includes/common/shipping-modules/mp-usps.php:206 +msgid "Offered Domestic Services" +msgstr "Tilbud Internationale Services" + +#: includes/common/shipping-modules/mp-usps.php:196 +msgid "Retail Rates" +msgstr "Detail priser" + +#: includes/common/shipping-modules/mp-usps.php:195 +msgid "Online Rates" +msgstr "Online priser" + +#: includes/common/shipping-modules/mp-usps.php:193 +msgid "Rates Request Type" +msgstr "Priser anmodningstype" + +#: includes/common/shipping-modules/mp-usps.php:189 +msgid "Maximum Weight Per Package" +msgstr "Maksimal vægt per pakke" + +#: includes/common/shipping-modules/mp-ups.php:195 +#: includes/common/shipping-modules/mp-usps.php:236 +msgid "Enter your standard box sizes as LengthxWidthxHeight (e.g. 12x8x6) For each box defined enter the maximum weight it can contain. Note: the shipping prices this plugin calculates are estimates. If they are consistently too low or too high, please check that the list of boxes above and the product weights are accurate and complete." +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:187 +msgid "Handling Charge Per Box Shipped" +msgstr "Håndteringsgebyr per afsendt kasse" + +#: includes/common/shipping-modules/mp-ups.php:176 +#: includes/common/shipping-modules/mp-ups.php:181 +msgid "Offered Services" +msgstr "Tilbudte tjenester" + +#: includes/common/shipping-modules/mp-ups.php:165 +msgid "Shipper Number" +msgstr "Forsendelsesnummer" + +#: includes/common/shipping-modules/mp-ups.php:151 +msgid "User ID" +msgstr "Bruger ID" + +#: includes/common/shipping-modules/mp-ups.php:144 +msgid "Developer Kit Access Key" +msgstr "Developer Kit Adgangsnøgle" + +#: includes/common/shipping-modules/mp-ups.php:140 +msgid "Use Sandbox Mode?" +msgstr "Brug Sandkasse tilstand?" + +#: includes/common/shipping-modules/mp-ups.php:123 +msgid "In order to use UPS, you will need a UPS Developer Kit access key and the UPS user ID and password associated with the access key. Set these up for free here. If this information is missing or incorrect, an error will appear during the checkout process and the buyer will not be able to complete the transaction." +msgstr "For at bruge UPS, så skal du bruge en UPS Developer Kit adgangsnøgle, samt UPS bruger-ID´et og kodeord som er forbundet med adgangsnøglen. Få disse gratis her. Hvis der mangler eller der er forkerte oplysninger, så vil en fejl vises under købsprocessen og køberen vil ikke være i stand til at fuldføre transaktionen." + +#: includes/common/shipping-modules/mp-table-rate.php:112 +msgid "If cart total is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "Hvis total for kurv er større end eller lig med denne værdi, så er det satser fra denne række, der vil blive anvendt i kassen." + +#: includes/common/shipping-modules/mp-table-rate.php:111 +msgid "Cart Total" +msgstr "Total Indkøbsvogn" + +#: includes/common/shipping-modules/mp-table-rate.php:95 +#: includes/common/shipping-modules/mp-weight-rate.php:111 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Don't worry about sorting as this will be done automatically upon saving." +msgstr "Sørg for at indtaste en forsendelses pris for hver mulighed ellers vil disse kunder få gratis forsendelse. Du må ikke bekymre dig om sorteringen, da dette vil ske automatisk når der gemmes." + +#: includes/common/shipping-modules/mp-pickup.php:170 +msgid "Method Title (visible for clients)" +msgstr "Metode Titel (synlig for klienter)" + +#: includes/common/shipping-modules/mp-fedex.php:409 +#: includes/common/shipping-modules/mp-ups.php:216 +#: includes/common/shipping-modules/mp-usps.php:251 +msgid "Max Weight (%s)" +msgstr "Maks vægt (%s)" + +#: includes/common/shipping-modules/mp-fedex.php:402 +#: includes/common/shipping-modules/mp-ups.php:209 +#: includes/common/shipping-modules/mp-usps.php:247 +msgid "Size (%s)" +msgstr "Størrelse (%s)" + +#: includes/common/shipping-modules/mp-fedex.php:387 +msgid "Enter your standard box sizes as LengthxWidthxHeight ( 12x8x6 ) For each box defined enter the maximum weight it can contain. Total weight selects the box size used for calculating Shipping costs." +msgstr "" +"Indtast din standard kassestørrelser som LængdexBreddexHøjde (12x8x6) For hver kasse defineret, indtast den maksimale vægt den må indeholde.\n" +"Totalvægten vælger kassestørrelse der anvendes til beregning af forsendelsesomkostninger." + +#: includes/common/shipping-modules/mp-fedex.php:361 +#: includes/common/shipping-modules/mp-usps.php:229 +msgid "Handling Charge per International Shipment" +msgstr "Ekspeditionsgebyr på International forsendelse" + +#: includes/common/shipping-modules/mp-fedex.php:353 +msgid "International Services" +msgstr "Internationale serviceydelser" + +#: includes/common/shipping-modules/mp-fedex.php:339 +#: includes/common/shipping-modules/mp-usps.php:213 +msgid "Handling Charge per Domestic Shipment" +msgstr "Ekspeditionsgebyr på National forsendelse" + +#: includes/common/shipping-modules/mp-fedex.php:331 +msgid "Domestic Services" +msgstr "Nationale serviceydelser" + +#: includes/common/shipping-modules/mp-fedex.php:321 +msgid "When checked the customer can chose Residential or Commercial delivery with Residential the default. Unchecked it's only Residential rates." +msgstr "Hvis markeret kan kunden vælge mellem privat eller firma levering, med privat som standard. Hvis ikke markeret, så er det kun privat leveringstakster." + +#: includes/common/shipping-modules/mp-fedex.php:320 +msgid "Allow Commercial Delivery?" +msgstr "Tillad levering til firma?" + +#: includes/common/shipping-modules/mp-fedex.php:315 +msgid "Fedex 10kg Box" +msgstr "Fedex 10kg Boks" + +#: includes/common/shipping-modules/mp-fedex.php:314 +msgid "Fedex 25kg Box" +msgstr "Fedex 25kg Boks" + +#: includes/common/shipping-modules/mp-fedex.php:313 +msgid "Fedex Box" +msgstr "Fedex Box" + +#: includes/common/shipping-modules/mp-fedex.php:312 +msgid "Fedex Envelope" +msgstr "Fedex Envelope" + +#: includes/common/shipping-modules/mp-fedex.php:311 +msgid "Fedex Pak" +msgstr "Fedex Pak" + +#: includes/common/shipping-modules/mp-fedex.php:310 +msgid "Fedex Tube" +msgstr "Fedex Tube" + +#: includes/common/shipping-modules/mp-fedex.php:306 +msgid "Default Packaging" +msgstr "Standard emballage" + +#: includes/common/shipping-modules/mp-fedex.php:294 +msgid "Dropoff Type" +msgstr "Leveringsservice type" + +#: includes/common/shipping-modules/mp-fedex.php:290 +msgid "Meter ID" +msgstr "Meter ID" + +#: includes/common/shipping-modules/mp-fedex.php:134 +msgid "This is a residential address" +msgstr "Dette er en hjemme adresse" + +#: includes/common/payment-gateways/wepay.php:283 +msgid "There was an error processing your card: \"%s\". Please check your credit card info and try again." +msgstr "Der opstod en fejl under behandling af dit kort: \"%s\". Kontrollér venligst dit kredit korts info og prøv igen." + +#: includes/common/payment-gateways/wepay.php:121 +msgid "Wepay makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept cards directly on your site. You don't need a merchant account or gateway. WePay handles everything including storing cards. Credit cards go directly to WePay's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "Wepay gør det nemt at starte med at tage imod kreditkort direkte på dit websted med fuld overholdelse af PCI. Tag imod kort direkte på din side. Du behøver ikke en forhandlerkonto eller gateway. Wepay håndtere det hele også at gemme kort. Kreditkort komme direkte til WePay´s sikre miljø og aldrig til dine servere, så du kan undgå de fleste PCI krav." + +#: includes/common/payment-gateways/stripe.php:385 +msgid "There was an error processing your card - \"%s\". Please try again." +msgstr "Der opstod en fejl under behandlingen af dit kort - \"%s\". Prøv venligst igen." + +#: includes/common/payment-gateways/stripe.php:356 +msgid "%s Store Purchase - Order ID - %s, Email - %s" +msgstr "%s Store Purchase - Order ID - %s, Email - %s" + +#: includes/common/payment-gateways/stripe.php:251 +msgid "Stripe makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept Visa, MasterCard, American Express, Discover, JCB, and Diners Club cards directly on your site. You don't need a merchant account or gateway. Stripe handles everything, including storing cards, subscriptions, and direct payouts to your bank account. Credit cards go directly to Stripe's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" +"Stripe gør det nemt at starte med at tage imod kreditkort direkte på dit website med fuld overholdelse af PCI. Accepter Visa, MasterCard, American Express, Discover, JCB og Diners Club kort direkte på din side. Du behøver ingen forhandler konto eller gateway.\n" +"Stripe håndtere alting også at gemme kort, abonnementer og direkte udbetalinger til din bankkonto. Kreditkort går direkte til Stripe´s sikre miljø og rammer aldrig dine servere, så du kan undgå de fleste PCI krav." + +#: includes/common/payment-gateways/stripe.php:192 +msgid "ZMW - Zambian Kwacha" +msgstr "ZMW - Zambian Kwacha" + +#: includes/common/payment-gateways/stripe.php:191 +msgid "ZAR - South African Rand" +msgstr "ZAR - South African Rand" + +#: includes/common/payment-gateways/stripe.php:190 +msgid "YER - Yemeni Rial" +msgstr "YER - Yemeni Rial" + +#: includes/common/payment-gateways/stripe.php:189 +msgid "XPF - Cfp Franc*" +msgstr "XPF - Cfp Franc*" + +#: includes/common/payment-gateways/stripe.php:188 +msgid "XOF - West African Cfa Franc*" +msgstr "XOF - West African Cfa Franc*" + +#: includes/common/payment-gateways/stripe.php:187 +msgid "XCD - East Caribbean Dollar" +msgstr "XCD - East Caribbean Dollar" + +#: includes/common/payment-gateways/stripe.php:186 +msgid "XAF - Central African Cfa Franc" +msgstr "XAF - Central African Cfa Franc" + +#: includes/common/payment-gateways/stripe.php:185 +msgid "WST - Samoan Tala" +msgstr "WST - Samoan Tala" + +#: includes/common/payment-gateways/stripe.php:184 +msgid "VUV - Vanuatu Vatu" +msgstr "VUV - Vanuatu Vatu" + +#: includes/common/payment-gateways/stripe.php:183 +msgid "VND - Vietnamese Đồng" +msgstr "VND - Vietnamese Đồng" + +#: includes/common/payment-gateways/stripe.php:182 +msgid "VEF - Venezuelan Bolívar*" +msgstr "VEF - Venezuelan Bolívar*" + +#: includes/common/payment-gateways/stripe.php:181 +msgid "UZS - Uzbekistani Som" +msgstr "UZS - Uzbekistani Som" + +#: includes/common/payment-gateways/stripe.php:180 +msgid "UYI - Uruguayan Peso*" +msgstr "UYI - Uruguayan Peso*" + +#: includes/common/payment-gateways/stripe.php:178 +msgid "UGX - Ugandan Shilling" +msgstr "UGX - Ugandan Shilling" + +#: includes/common/payment-gateways/stripe.php:177 +msgid "UAH - Ukrainian Hryvnia" +msgstr "UAH - Ukrainian Hryvnia" + +#: includes/common/payment-gateways/stripe.php:176 +msgid "TZS - Tanzanian Shilling" +msgstr "TZS - Tanzanian Shilling" + +#: includes/common/payment-gateways/stripe.php:175 +msgid "TWD - New Taiwan Dollar" +msgstr "TWD - New Taiwan Dollar" + +#: includes/common/payment-gateways/stripe.php:174 +msgid "TTD - Trinidad and Tobago Dollar" +msgstr "TTD - Trinidad and Tobago Dollar" + +#: includes/common/payment-gateways/stripe.php:172 +msgid "TOP - Tongan Paʻanga" +msgstr "TOP - Tongan Paʻanga" + +#: includes/common/payment-gateways/stripe.php:171 +msgid "TJS - Tajikistani Somoni" +msgstr "TJS - Tajikistani Somoni" + +#: includes/common/payment-gateways/stripe.php:169 +msgid "SZL - Swazi Lilangeni" +msgstr "SZL - Swazi Lilangeni" + +#: includes/common/payment-gateways/stripe.php:168 +msgid "SVC - Salvadoran Colón*" +msgstr "SVC - Salvadoran Colón*" + +#: includes/common/payment-gateways/stripe.php:167 +msgid "STD - São Tomé and Príncipe Dobra" +msgstr "STD - São Tomé and Príncipe Dobra" + +#: includes/common/payment-gateways/stripe.php:166 +msgid "SRD - Surinamese Dollar*" +msgstr "SRD - Surinamese Dollar*" + +#: includes/common/payment-gateways/stripe.php:165 +msgid "SOS - Somali Shilling" +msgstr "SOS - Somali Shilling" + +#: includes/common/payment-gateways/stripe.php:164 +msgid "SLL - Sierra Leonean Leone" +msgstr "SLL - Sierra Leonean Leone" + +#: includes/common/payment-gateways/stripe.php:163 +msgid "SHP - Saint Helenian Pound*" +msgstr "SHP - Saint Helenian Pound*" + +#: includes/common/payment-gateways/stripe.php:160 +msgid "SCR - Seychellois Rupee" +msgstr "SCR - Seychellois Rupee" + +#: includes/common/payment-gateways/stripe.php:159 +msgid "SBD - Solomon Islands Dollar" +msgstr "SBD - Solomon Islands Dollar" + +#: includes/common/payment-gateways/stripe.php:157 +msgid "RWF - Rwandan Franc" +msgstr "RWF - Rwandan Franc" + +#: includes/common/payment-gateways/stripe.php:156 +msgid "RUB - Russian Ruble" +msgstr "RUB - Russian Ruble" + +#: includes/common/payment-gateways/stripe.php:155 +msgid "RSD - Serbian Dinar" +msgstr "RSD - Serbian Dinar" + +#: includes/common/payment-gateways/stripe.php:154 +msgid "RON - Romanian Leu" +msgstr "RON - Romanian Leu" + +#: includes/common/payment-gateways/stripe.php:153 +msgid "QAR - Qatari Riyal" +msgstr "QAR - Qatari Riyal" + +#: includes/common/payment-gateways/stripe.php:152 +msgid "PYG - Paraguayan Guaraní*" +msgstr "PYG - Paraguayan Guaraní*" + +#: includes/common/payment-gateways/stripe.php:151 +msgid "PLN - Polish Złoty" +msgstr "PLN - Polish Złoty" + +#: includes/common/payment-gateways/stripe.php:150 +msgid "PKR - Pakistani Rupee" +msgstr "PKR - Pakistani Rupee" + +#: includes/common/payment-gateways/stripe.php:149 +msgid "PHP - Philippine Peso" +msgstr "PHP - Philippine Peso" + +#: includes/common/payment-gateways/stripe.php:148 +msgid "PGK - Papua New Guinean Kina" +msgstr "PGK - Papua New Guinean Kina" + +#: includes/common/payment-gateways/stripe.php:147 +msgid "PEN - Peruvian Nuevo Sol*" +msgstr "PEN - Peruvian Nuevo Sol*" + +#: includes/common/payment-gateways/stripe.php:146 +msgid "PAB - Panamanian Balboa*" +msgstr "PAB - Panamanian Balboa*" + +#: includes/common/payment-gateways/stripe.php:144 +msgid "NPR - Nepalese Rupee" +msgstr "NPR - Nepalese Rupee" + +#: includes/common/payment-gateways/stripe.php:142 +msgid "NIO - Nicaraguan Córdoba*" +msgstr "NIO - Nicaraguan Córdoba*" + +#: includes/common/payment-gateways/stripe.php:141 +msgid "NGN - Nigerian Naira" +msgstr "NGN - Nigerian Naira" + +#: includes/common/payment-gateways/stripe.php:140 +msgid "NAD - Namibian Dollar" +msgstr "NAD - Namibian Dollar" + +#: includes/common/payment-gateways/stripe.php:139 +msgid "MZN - Mozambican Metical" +msgstr "MZN - Mozambican Metical" + +#: includes/common/payment-gateways/stripe.php:137 +msgid "MXN - Mexican Peso*" +msgstr "MXN - Mexican Peso*" + +#: includes/common/payment-gateways/stripe.php:136 +msgid "MWK - Malawian Kwacha" +msgstr "MWK - Malawian Kwacha" + +#: includes/common/payment-gateways/stripe.php:135 +msgid "MVR - Maldivian Rufiyaa" +msgstr "MVR - Maldivian Rufiyaa" + +#: includes/common/payment-gateways/stripe.php:134 +msgid "MUR - Mauritian Rupee*" +msgstr "MUR - Mauritian Rupee*" + +#: includes/common/payment-gateways/stripe.php:133 +msgid "MRO - Mauritanian Ouguiya" +msgstr "MRO - Mauritanian Ouguiya" + +#: includes/common/payment-gateways/stripe.php:132 +msgid "MOP - Macanese Pataca" +msgstr "MOP - Macanese Pataca" + +#: includes/common/payment-gateways/stripe.php:131 +msgid "MNT - Mongolian Tögrög" +msgstr "MNT - Mongolian Tögrög" + +#: includes/common/payment-gateways/stripe.php:130 +msgid "MKD - Macedonian Denar" +msgstr "MKD - Macedonian Denar" + +#: includes/common/payment-gateways/stripe.php:129 +msgid "MGA - Malagasy Ariary" +msgstr "MGA - Malagasy Ariary" + +#: includes/common/payment-gateways/stripe.php:128 +msgid "MDL - Moldovan Leu" +msgstr "MDL - Moldovan Leu" + +#: includes/common/payment-gateways/stripe.php:126 +msgid "LVL - Latvian Lats" +msgstr "LVL - Latvian Lats" + +#: includes/common/payment-gateways/stripe.php:124 +msgid "LSL - Lesotho Loti" +msgstr "LSL - Lesotho Loti" + +#: includes/common/payment-gateways/stripe.php:123 +msgid "LRD - Liberian Dollar" +msgstr "LRD - Liberian Dollar" + +#: includes/common/payment-gateways/stripe.php:122 +msgid "LKR - Sri Lankan Rupee" +msgstr "LKR - Sri Lankan Rupee" + +#: includes/common/payment-gateways/stripe.php:121 +msgid "LBP - Lebanese Pound" +msgstr "LBP - Lebanese Pound" + +#: includes/common/payment-gateways/stripe.php:120 +msgid "LAK - Lao Kip*" +msgstr "LAK - Lao Kip*" + +#: includes/common/payment-gateways/stripe.php:119 +msgid "KZT - Kazakhstani Tenge" +msgstr "KZT - Kazakhstani Tenge" + +#: includes/common/payment-gateways/stripe.php:118 +msgid "KYD - Cayman Islands Dollar" +msgstr "KYD - Cayman Islands Dollar" + +#: includes/common/payment-gateways/stripe.php:117 +msgid "KRW - South Korean Won" +msgstr "KRW - South Korean Won" + +#: includes/common/payment-gateways/stripe.php:116 +msgid "KMF - Comorian Franc" +msgstr "KMF - Comorian Franc" + +#: includes/common/payment-gateways/stripe.php:115 +msgid "KHR - Cambodian Riel" +msgstr "KHR - Cambodian Riel" + +#: includes/common/payment-gateways/stripe.php:114 +msgid "KGS - Kyrgyzstani Som" +msgstr "KGS - Kyrgyzstani Som" + +#: includes/common/payment-gateways/stripe.php:113 +msgid "KES - Kenyan Shilling" +msgstr "KES - Kenyan Shilling" + +#: includes/common/payment-gateways/stripe.php:111 +msgid "JMD - Jamaican Dollar" +msgstr "JMD - Jamaican Dollar" + +#: includes/common/payment-gateways/stripe.php:110 +msgid "ISK - Icelandic Króna" +msgstr "ISK - Icelandic Króna" + +#: includes/common/payment-gateways/stripe.php:109 +msgid "INR - Indian Rupee*" +msgstr "INR - Indian Rupee*" + +#: includes/common/payment-gateways/stripe.php:108 +msgid "ILS - Israeli New Sheqel" +msgstr "ILS - Israeli New Sheqel" + +#: includes/common/payment-gateways/stripe.php:107 +msgid "IDR - Indonesian Rupiah" +msgstr "IDR - Indonesian Rupiah" + +#: includes/common/payment-gateways/stripe.php:105 +msgid "HTG - Haitian Gourde" +msgstr "HTG - Haitian Gourde" + +#: includes/common/payment-gateways/stripe.php:103 +msgid "HNL - Honduran Lempira*" +msgstr "HNL - Honduran Lempira*" + +#: includes/common/payment-gateways/stripe.php:101 +msgid "GYD - Guyanese Dollar" +msgstr "GYD - Guyanese Dollar" + +#: includes/common/payment-gateways/stripe.php:100 +msgid "GTQ - Guatemalan Quetzal*" +msgstr "GTQ - Guatemalan Quetzal*" + +#: includes/common/payment-gateways/stripe.php:99 +msgid "GNF - Guinean Franc*" +msgstr "GNF - Guinean Franc*" + +#: includes/common/payment-gateways/stripe.php:98 +msgid "GMD - Gambian Dalasi" +msgstr "GMD - Gambian Dalasi" + +#: includes/common/payment-gateways/stripe.php:97 +msgid "GIP - Gibraltar Pound" +msgstr "GIP - Gibraltar Pound" + +#: includes/common/payment-gateways/stripe.php:96 +msgid "GEL - Georgian Lari" +msgstr "GEL - Georgian Lari" + +#: includes/common/payment-gateways/stripe.php:94 +msgid "FKP - Falkland Islands Pound*" +msgstr "FKP - Falkland Islands Pound*" + +#: includes/common/payment-gateways/stripe.php:93 +msgid "FJD - Fijian Dollar" +msgstr "FJD - Fijian Dollar" + +#: includes/common/payment-gateways/stripe.php:91 +msgid "ETB - Ethiopian Birr" +msgstr "ETB - Ethiopian Birr" + +#: includes/common/payment-gateways/stripe.php:90 +msgid "EGP - Egyptian Pound" +msgstr "EGP - Egyptian Pound" + +#: includes/common/payment-gateways/stripe.php:89 +msgid "EEK - Estonian Kroon*" +msgstr "EEK - Estonian Kroon*" + +#: includes/common/payment-gateways/stripe.php:88 +msgid "DZD - Algerian Dinar" +msgstr "DZD - Algerian Dinar" + +#: includes/common/payment-gateways/stripe.php:87 +msgid "DOP - Dominican Peso" +msgstr "DOP - Dominican Peso" + +#: includes/common/payment-gateways/stripe.php:85 +msgid "DJF - Djiboutian Franc*" +msgstr "DJF - Djiboutian Franc*" + +#: includes/common/payment-gateways/stripe.php:84 +msgid "CZK - Czech Koruna*" +msgstr "CZK - Czech Koruna*" + +#: includes/common/payment-gateways/stripe.php:83 +msgid "CVE - Cape Verdean Escudo*" +msgstr "CVE - Cape Verdean Escudo*" + +#: includes/common/payment-gateways/stripe.php:82 +msgid "CRC - Costa Rican Colón*" +msgstr "CRC - Costa Rican Colón*" + +#: includes/common/payment-gateways/stripe.php:81 +msgid "COP - Colombian Peso*" +msgstr "COP - Colombian Peso*" + +#: includes/common/payment-gateways/stripe.php:80 +msgid "CNY - Chinese Renminbi Yuan" +msgstr "CNY - Chinese Renminbi Yuan" + +#: includes/common/payment-gateways/stripe.php:79 +msgid "CLP - Chilean Peso*" +msgstr "CLP - Chilean Peso*" + +#: includes/common/payment-gateways/stripe.php:77 +msgid "CDF - Congolese Franc" +msgstr "CDF - Congolese Franc" + +#: includes/common/payment-gateways/stripe.php:76 +msgid "CAD - Canadian Dollar*" +msgstr "CAD - Canadian Dollar*" + +#: includes/common/payment-gateways/stripe.php:75 +msgid "BZD - Belize Dollar" +msgstr "BZD - Belize Dollar" + +#: includes/common/payment-gateways/stripe.php:74 +msgid "BWP - Botswana Pula" +msgstr "BWP - Botswana Pula" + +#: includes/common/payment-gateways/stripe.php:73 +msgid "BSD - Bahamian Dollar" +msgstr "BSD - Bahamian Dollar" + +#: includes/common/payment-gateways/stripe.php:72 +msgid "BRL - Brazilian Real*" +msgstr "BRL - Brazilian Real*" + +#: includes/common/payment-gateways/stripe.php:71 +msgid "BOB - Bolivian Boliviano*" +msgstr "BOB - Bolivian Boliviano*" + +#: includes/common/payment-gateways/stripe.php:70 +msgid "BND - Brunei Dollar" +msgstr "BND - Brunei Dollar" + +#: includes/common/payment-gateways/stripe.php:69 +msgid "BMD - Bermudian Dollar" +msgstr "BMD - Bermudian Dollar" + +#: includes/common/payment-gateways/stripe.php:68 +msgid "BIF - Burundian Franc" +msgstr "BIF - Burundian Franc" + +#: includes/common/payment-gateways/stripe.php:67 +msgid "BGN - Bulgarian Lev" +msgstr "BGN - Bulgarian Lev" + +#: includes/common/payment-gateways/stripe.php:66 +msgid "BDT - Bangladeshi Taka" +msgstr "BDT - Bangladeshi Taka" + +#: includes/common/payment-gateways/stripe.php:65 +msgid "BBD - Barbadian Dollar" +msgstr "BBD - Barbadian Dollar" + +#: includes/common/payment-gateways/stripe.php:64 +msgid "BAM - Bosnia & Herzegovina Convertible Mark" +msgstr "BAM - Bosnia & Herzegovina Convertible Mark" + +#: includes/common/payment-gateways/stripe.php:63 +msgid "AZN - Azerbaijani Manat" +msgstr "AZN - Azerbaijani Manat" + +#: includes/common/payment-gateways/stripe.php:62 +msgid "AWG - Aruban Florin" +msgstr "AWG - Aruban Florin" + +#: includes/common/payment-gateways/stripe.php:61 +msgid "AUD - Australian Dollar*" +msgstr "AUD - Australian Dollar*" + +#: includes/common/payment-gateways/stripe.php:60 +msgid "ARS - Argentine Peso*" +msgstr "ARS - Argentine Peso*" + +#: includes/common/payment-gateways/stripe.php:59 +msgid "AOA - Angolan Kwanza*" +msgstr "AOA - Angolan Kwanza*" + +#: includes/common/payment-gateways/stripe.php:58 +msgid "ANG - Netherlands Antillean Gulden" +msgstr "ANG - Netherlands Antillean Gulden" + +#: includes/common/payment-gateways/stripe.php:57 +msgid "AMD - Armenian Dram" +msgstr "AMD - Armenian Dram" + +#: includes/common/payment-gateways/stripe.php:56 +msgid "ALL - Albanian Lek" +msgstr "ALL - Albanian Lek" + +#: includes/common/payment-gateways/stripe.php:55 +msgid "AFN - Afghan Afghani*" +msgstr "AFN - Afghan Afghani*" + +#: includes/common/payment-gateways/stripe.php:54 +msgid "AED - United Arab Emirates Dirham" +msgstr "AED - United Arab Emirates Dirham" + +#: includes/common/payment-gateways/skrill.php:345 +msgid "Skrill balance, Credit Card, or Instant Transfer" +msgstr "Skrill balance, kreditkort eller øjeblikkelig overførsel" + +#: includes/common/payment-gateways/skrill.php:327 +msgid "Skrill IPN message received." +msgstr "Skrill IPN besked modtaget." + +#: includes/common/payment-gateways/skrill.php:283 +msgid "Skrill" +msgstr "Skrill" + +#: includes/common/payment-gateways/skrill.php:278 +msgid "Pending payment" +msgstr "Afventer betaling" + +#: includes/common/payment-gateways/skrill.php:144 +msgid "The secret word must match the word submitted in the \"Merchant Tools\" section of your Skrill account." +msgstr "Det hemmelige ord skal matche ordet der er indgivet i afsnittet \"Merchant Tools\" på din Skrill konto." + +#: includes/common/payment-gateways/skrill.php:134 +msgid "You must use your valid Skrill merchant email. Instructions »" +msgstr "Du skal bruge din gyldige Skrill forretnings email. Instruktioner »" + +#: includes/common/payment-gateways/skrill.php:133 +msgid "Skrill Email" +msgstr "Skrill Email" + +#: includes/common/payment-gateways/skrill.php:123 +msgid "Resell your inventory via Skrill.com (Moneybookers)" +msgstr "Videresælge din beholdning via Skrill.com (Moneybookers)" + +#: includes/common/payment-gateways/skrill.php:95 +msgid "ZAR - South-African Rand" +msgstr "ZAR - South-African Rand" + +#: includes/common/payment-gateways/skrill.php:93 +msgid "TWD - Taiwan Dollar" +msgstr "TWD - Taiwan Dollar" + +#: includes/common/payment-gateways/skrill.php:92 +msgid "TRY - New Turkish Lira" +msgstr "TRY - New Turkish Lira" + +#: includes/common/payment-gateways/skrill.php:91 +msgid "TND - Tunisian Dinar" +msgstr "TND - Tunisian Dinar" + +#: includes/common/payment-gateways/skrill.php:90 +msgid "THB - Thailand Baht" +msgstr "THB - Thailand Baht" + +#: includes/common/payment-gateways/skrill.php:89 +msgid "SKK - Slovakian Koruna" +msgstr "SKK - Slovakian Koruna" + +#: includes/common/payment-gateways/skrill.php:86 +#: includes/common/payment-gateways/stripe.php:158 +msgid "SAR - Saudi Riyal" +msgstr "SAR - Saudi Riyal" + +#: includes/common/payment-gateways/skrill.php:85 +msgid "RSD - Serbian dinar" +msgstr "RSD - Serbian dinar" + +#: includes/common/payment-gateways/skrill.php:83 +msgid "QAR - Qatari Rial" +msgstr "QAR - Qatari Rial" + +#: includes/common/payment-gateways/skrill.php:81 +msgid "OMR - Omani Rial" +msgstr "OMR - Omani Rial" + +#: includes/common/payment-gateways/skrill.php:80 +msgid "NOK - Norwegian Krone " +msgstr "NOK - Norwegian Krone " + +#: includes/common/payment-gateways/skrill.php:78 +#: includes/common/payment-gateways/stripe.php:138 +msgid "MYR - Malaysian Ringgit" +msgstr "MYR - Malaysian Ringgit" + +#: includes/common/payment-gateways/skrill.php:77 +#: includes/common/payment-gateways/stripe.php:127 +msgid "MAD - Moroccan Dirham" +msgstr "MAD - Moroccan Dirham" + +#: includes/common/payment-gateways/skrill.php:74 +msgid "KRW - South-Korean Won" +msgstr "KRW - South-Korean Won" + +#: includes/common/payment-gateways/skrill.php:72 +msgid "JOD - Jordanian Dinar" +msgstr "JOD - Jordanian Dinar" + +#: includes/common/payment-gateways/skrill.php:70 +msgid "INR - Indian Rupee" +msgstr "INR - Indian Rupee" + +#: includes/common/payment-gateways/skrill.php:63 +msgid "EEK - Estonian Kroon" +msgstr "EEK - Estonian Kroon" + +#: includes/common/payment-gateways/skrill.php:56 +msgid "AED - Utd. Arab Emir. Dirham" +msgstr "AED - Utd. Arab Emir. Dirham" + +#: includes/common/payment-gateways/skrill.php:52 +msgid "Turkish" +msgstr "Tyrkisk" + +#: includes/common/payment-gateways/skrill.php:51 +msgid "Swedish" +msgstr "Svensk" + +#: includes/common/payment-gateways/skrill.php:50 +msgid "Spanish" +msgstr "Spansk" + +#: includes/common/payment-gateways/skrill.php:49 +msgid "Russian" +msgstr "Russisk" + +#: includes/common/payment-gateways/skrill.php:48 +msgid "Romainian" +msgstr "Rumænsk" + +#: includes/common/payment-gateways/skrill.php:47 +msgid "Polish" +msgstr "Polsk" + +#: includes/common/payment-gateways/skrill.php:46 +msgid "Italian" +msgstr "Italiensk" + +#: includes/common/payment-gateways/skrill.php:45 +msgid "Greek" +msgstr "Græsk" + +#: includes/common/payment-gateways/skrill.php:44 +msgid "German" +msgstr "Tysk" + +#: includes/common/payment-gateways/skrill.php:43 +msgid "French" +msgstr "Fransk" + +#: includes/common/payment-gateways/skrill.php:42 +msgid "Finnish" +msgstr "Finsk" + +#: includes/common/payment-gateways/skrill.php:41 +msgid "English" +msgstr "Engelsk" + +#: includes/common/payment-gateways/skrill.php:40 +msgid "Dutch" +msgstr "Hollandsk" + +#: includes/common/payment-gateways/skrill.php:39 +msgid "Danish" +msgstr "Dansk" + +#: includes/common/payment-gateways/skrill.php:38 +msgid "Czech" +msgstr "Tjekkisk" + +#: includes/common/payment-gateways/skrill.php:37 +msgid "Chinese" +msgstr "Kinesisk" + +#: includes/common/payment-gateways/simplify.php:201 +msgid "There was an error processing your card: %s. Please re-enter your credit card info and try again." +msgstr "Der opstod en fejl under behandling af dit kort: %s. Gen-indtast venligst dit kredit korts info og prøv igen." + +#: includes/common/payment-gateways/pin.php:278 +msgid "
  • There was an error processing your card: \"%s\". Please verify your credit card information and try again.
  • " +msgstr "
  • Der opstod en fejl under validering af dit kort: \"%s\" Vær venlig at checke dine kreditkortoplysninger og prøv igen
  • " + +#: includes/common/payment-gateways/pin.php:274 +msgid "
  • There was an error processing your card. Please verify your credit card information and try again.
  • " +msgstr "
  • Der opstod en fejl under validering af dit kort. Vær venlig at checke dine kreditkortoplysninger og prøv igen
  • " + +#: includes/common/payment-gateways/pin.php:177 +#: includes/common/payment-gateways/stripe.php:279 +msgid "Publishable Key" +msgstr "Publishable Key" + +#: includes/common/payment-gateways/pin.php:163 +msgid "API Credentials?" +msgstr "API Credentials?" + +#: includes/common/payment-gateways/pin.php:147 +msgid "PIN makes it easy to start accepting credit card payments with Australia’s first all-in-one online payment system. Accept all major credit cards directly on your site. Your sales proceeds are deposited to any Australian bank account, no merchant account required." +msgstr "PIN gør det nemt at starte med at tage imod kreditkort betalinger med Australiens første online alt-i-en betalingsløsning. Accepter alle de vigtigste kreditkort direkte på dit websted. Dit salgsprovenuet deponeres til enhver australsk bankkonto, ingen erhvervskonto krævet." + +#: includes/common/payment-gateways/pin.php:57 +#: includes/common/payment-gateways/stripe.php:179 +msgid "USD - United States Dollar" +msgstr "USD - Amerikanske Dollars" + +#: includes/common/payment-gateways/paypal-payflow.php:455 +msgid "Email Footer" +msgstr "Email Footer" + +#: includes/common/payment-gateways/paypal-payflow.php:445 +msgid "Email Header" +msgstr "Email Header" + +#: includes/common/payment-gateways/paypal-payflow.php:416 +msgid "Partner" +msgstr "Partner" + +#: includes/common/payment-gateways/paypal-payflow.php:409 +msgid "Vendor" +msgstr "Forhandler" + +#: includes/common/payment-gateways/paypal-express.php:852 +#: includes/common/payment-gateways/paypal-express.php:1126 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences\t section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:749 +msgid "Page Background Color" +msgstr "Baggrundsfarve side" + +#: includes/common/payment-gateways/paypal-express.php:744 +msgid "Header Background Color" +msgstr "Sidehoved baggrundsfarve" + +#: includes/common/payment-gateways/paypal-express.php:739 +msgid "Header Border Color" +msgstr "Sidehoved kantfarve" + +#: includes/common/payment-gateways/paypal-express.php:734 +msgid "Header Image" +msgstr "Sidehoved billede" + +#: includes/common/payment-gateways/paypal-express.php:680 +msgid "Locale" +msgstr "Landestandard" + +#: includes/common/payment-gateways/paypal-express.php:624 +#: includes/common/payment-gateways/paypal-express.php:658 +msgid "Merchant Email" +msgstr "Shopemail" + +#: includes/common/payment-gateways/paypal-express.php:645 +msgid "Paypal Express Checkout Settings" +msgstr "Paypal Express Checkout indstillinger" + +#: includes/common/payment-gateways/paypal-express.php:603 +msgid "Paypal Express Network Settings" +msgstr "Paypal Express Netværksindstillinger" + +#: includes/common/payment-gateways/paypal-chained-payments.php:861 +msgid "Application ID (Live)" +msgstr "Applikations ID (Live)" + +#: includes/common/payment-gateways/paypal-chained-payments.php:854 +msgid "Signature (Live)" +msgstr "Signatur (Live)" + +#: includes/common/payment-gateways/paypal-chained-payments.php:847 +msgid "API Password (Live)" +msgstr "API Kodeord (Live)" + +#: includes/common/payment-gateways/paypal-chained-payments.php:839 +msgid "API Username (Live)" +msgstr "API Brugernavn (Live)" + +#: includes/common/payment-gateways/paypal-chained-payments.php:832 +msgid "Signature (Sandbox)" +msgstr "Signatur (Sandkasse)" + +#: includes/common/payment-gateways/paypal-chained-payments.php:825 +msgid "API Password (Sandbox)" +msgstr "API Kodeords (Sandkasse)" + +#: includes/common/payment-gateways/paypal-chained-payments.php:817 +msgid "API Username (Sandbox)" +msgstr "API Brugernavn (Sandkasse)" + +#: includes/common/payment-gateways/paypal-chained-payments.php:799 +msgid "This message is displayed at the top of the gateway settings page to store admins. It's a good place to inform them of your fees or put any sales messages." +msgstr "Denne besked vises i toppen af siden med gateway indstillinger for butik admins. Det er et godt sted at informere dem om dine gebyrer eller til enhver anden salgsbesked." + +#: includes/common/payment-gateways/paypal-chained-payments.php:787 +msgid "Please enter your PayPal email address or business ID you want to recieve fees at." +msgstr "Indtast venligst din PayPal e-mail-adresse eller virksomheds id, som du vil modtage betalinger på." + +#: includes/common/payment-gateways/paypal-chained-payments.php:786 +msgid "PayPal E-mail" +msgstr "PayPal E-mail" + +#: includes/common/payment-gateways/paypal-chained-payments.php:772 +msgid "Fees to Collect (%)" +msgstr "Gebyr (%)" + +#: includes/common/payment-gateways/paypal-chained-payments.php:375 +#: includes/public/class-mp-checkout.php:341 +msgid "Email Address" +msgstr "Email Adresse" + +#: includes/common/payment-gateways/paypal-chained-payments.php:299 +msgid "Sorry, your order was not completed." +msgstr "Beklager, men din ordre blev ikke gennemført." + +#: includes/common/payment-gateways/paypal-chained-payments.php:126 +#: includes/common/payment-gateways/paypal-express.php:780 +msgid "You will be redirected to the PayPal site to finalize your payment." +msgstr "Du vil blive videresendt til PayPal for at fuldføre din betaling." + +#: includes/common/payment-gateways/paypal-chained-payments.php:90 +#: includes/common/payment-gateways/skrill.php:94 +msgid "USD - U.S. Dollar" +msgstr "USD - Amerikanske dollars" + +#: includes/common/payment-gateways/paypal-chained-payments.php:89 +msgid "TRY - Turkish lira" +msgstr "TRY - Tyrkiske lira" + +#: includes/common/payment-gateways/paypal-chained-payments.php:88 +#: includes/common/payment-gateways/stripe.php:170 +msgid "THB - Thai Baht" +msgstr "THB - Thailandske baht" + +#: includes/common/payment-gateways/paypal-chained-payments.php:87 +msgid "TWD - Taiwan New Dollars" +msgstr "TWD - Taiwan New Dollars" + +#: includes/common/payment-gateways/paypal-chained-payments.php:86 +#: includes/common/payment-gateways/pin.php:59 +#: includes/common/payment-gateways/skrill.php:88 +#: includes/common/payment-gateways/stripe.php:162 +msgid "SGD - Singapore Dollar" +msgstr "SGD - Singapore Dollars" + +#: includes/common/payment-gateways/paypal-chained-payments.php:84 +msgid "RUB - Russian Rubles" +msgstr "RUB - Russiske rubler" + +#: includes/common/payment-gateways/paypal-chained-payments.php:82 +msgid "PHP - Philippine Pesos" +msgstr "PHP - Filippinske Pesos" + +#: includes/common/payment-gateways/paypal-chained-payments.php:81 +#: includes/common/payment-gateways/pin.php:58 +#: includes/common/payment-gateways/skrill.php:79 +#: includes/common/payment-gateways/stripe.php:145 +msgid "NZD - New Zealand Dollar" +msgstr "NZD - New Zealand Dollars" + +#: includes/common/payment-gateways/paypal-chained-payments.php:79 +msgid "MXN - Mexican Peso" +msgstr "MXN - Mexicansk peso" + +#: includes/common/payment-gateways/paypal-chained-payments.php:78 +msgid "MYR - Malaysian Ringgits" +msgstr "MYR - Malaysiske Ringgits" + +#: includes/common/payment-gateways/paypal-chained-payments.php:77 +#: includes/common/payment-gateways/pin.php:64 +#: includes/common/payment-gateways/skrill.php:73 +#: includes/common/payment-gateways/stripe.php:112 +msgid "JPY - Japanese Yen" +msgstr "JPY - Japanske Yen" + +#: includes/common/payment-gateways/paypal-chained-payments.php:75 +#: includes/common/payment-gateways/pin.php:63 +#: includes/common/payment-gateways/skrill.php:66 +#: includes/common/payment-gateways/stripe.php:102 +msgid "HKD - Hong Kong Dollar" +msgstr "HKD - Hong Kong Dollars" + +#: includes/common/payment-gateways/paypal-chained-payments.php:73 +msgid "GBP - Pound Sterling" +msgstr "GBP - Britiske pund" + +#: includes/common/payment-gateways/paypal-chained-payments.php:68 +#: includes/common/payment-gateways/pin.php:62 +#: includes/common/payment-gateways/skrill.php:59 +msgid "CAD - Canadian Dollar" +msgstr "CAD - Canadiske dollars" + +#: includes/common/payment-gateways/paypal-chained-payments.php:67 +msgid "BRL - Brazilian Real" +msgstr "BRL - Brasilianske Real" + +#: includes/common/payment-gateways/paypal-chained-payments.php:66 +#: includes/common/payment-gateways/pin.php:56 +#: includes/common/payment-gateways/skrill.php:57 +msgid "AUD - Australian Dollar" +msgstr "AUD - Australske Dollars" + +#: includes/common/payment-gateways/paymill.php:288 +msgid "There was an error processing your card: \"%s\". Please try again." +msgstr "Der opstod en fejl under behandlingen af dit kort: \"%s\". Prøv venligst igen." + +#: includes/common/payment-gateways/paymill.php:163 +msgid "When running on a live site, Paymill recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "Når du kører et live website, så anbefaler Paymill at du har opsat et SSL certifikat for siden hvor tjek ud formularen vil blive vist." + +#: includes/common/payment-gateways/paymill.php:161 +#: includes/common/payment-gateways/pin.php:157 +#: includes/common/payment-gateways/simplify.php:103 +#: includes/common/payment-gateways/stripe.php:260 +#: includes/common/payment-gateways/wepay.php:153 +msgid "Force SSL?" +msgstr "Tving SSL?" + +#: includes/common/payment-gateways/paymill.php:151 +msgid "Accept Visa, Mastercard, Maestro UK, Discover and Solo cards directly on your site. You don't need a merchant account or gateway. Credit cards go directly to Paymill's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "Accepter Visa, Mastercard, Maestro UK, Discover og Solo kort direkte på din side. Du behøver ikke en forhandlerkonto eller gateway. Kreditkort ryger direkte til Paymill´s sikre miljø og rammer aldrig dine servere, så du kan undgå de fleste PCI krav." + +#: includes/common/payment-gateways/paymill.php:131 +msgid "CVV2" +msgstr "CVV2" + +#: includes/common/payment-gateways/paymill.php:72 +#: includes/common/payment-gateways/pin.php:61 +#: includes/common/payment-gateways/skrill.php:65 +#: includes/common/payment-gateways/stripe.php:95 +msgid "GBP - British Pound" +msgstr "GBP - Britiske pund" + +#: includes/common/payment-gateways/paymill.php:71 +#: includes/common/payment-gateways/stripe.php:173 +msgid "TRY - Turkish Lira" +msgstr "TRY - Tyrkiske Lira" + +#: includes/common/payment-gateways/paymill.php:70 +#: includes/common/payment-gateways/paypal-chained-payments.php:85 +#: includes/common/payment-gateways/skrill.php:87 +#: includes/common/payment-gateways/stripe.php:161 +msgid "SEK - Swedish Krona" +msgstr "SEK - Svensk krone" + +#: includes/common/payment-gateways/paymill.php:69 +#: includes/common/payment-gateways/skrill.php:84 +msgid "RON - Romanian Leu New" +msgstr "RON - Rumænsk Leu New" + +#: includes/common/payment-gateways/paymill.php:68 +#: includes/common/payment-gateways/paypal-chained-payments.php:83 +#: includes/common/payment-gateways/skrill.php:82 +msgid "PLN - Polish Zloty" +msgstr "PLN - Polske Zloty" + +#: includes/common/payment-gateways/paymill.php:67 +#: includes/common/payment-gateways/paypal-chained-payments.php:80 +#: includes/common/payment-gateways/stripe.php:143 +msgid "NOK - Norwegian Krone" +msgstr "NOK - Norske kroner" + +#: includes/common/payment-gateways/paymill.php:66 +#: includes/common/payment-gateways/skrill.php:75 +#: includes/common/payment-gateways/stripe.php:125 +msgid "LTL - Lithuanian Litas" +msgstr "LTL - Litauiske Litas" + +#: includes/common/payment-gateways/paymill.php:65 +#: includes/common/payment-gateways/paypal-chained-payments.php:69 +#: includes/common/payment-gateways/skrill.php:60 +#: includes/common/payment-gateways/stripe.php:78 +msgid "CHF - Swiss Franc" +msgstr "CHF - Schweiziske franc" + +#: includes/common/payment-gateways/paymill.php:64 +#: includes/common/payment-gateways/skrill.php:76 +msgid "LVL - Latvian Lat" +msgstr "LVL - Lettisk Lat" + +#: includes/common/payment-gateways/paymill.php:63 +#: includes/common/payment-gateways/paypal-chained-payments.php:74 +#: includes/common/payment-gateways/skrill.php:69 +msgid "ILS - Israeli Shekel" +msgstr "ILS - Israelske Shekel" + +#: includes/common/payment-gateways/paymill.php:62 +#: includes/common/payment-gateways/skrill.php:71 +msgid "ISK - Iceland Krona" +msgstr "ISK - Islandske kroner" + +#: includes/common/payment-gateways/paymill.php:61 +#: includes/common/payment-gateways/paypal-chained-payments.php:76 +#: includes/common/payment-gateways/skrill.php:68 +#: includes/common/payment-gateways/stripe.php:106 +msgid "HUF - Hungarian Forint" +msgstr "HUF - Ungarske Forint" + +#: includes/common/payment-gateways/paymill.php:60 +#: includes/common/payment-gateways/paypal-chained-payments.php:71 +#: includes/common/payment-gateways/skrill.php:62 +#: includes/common/payment-gateways/stripe.php:86 +msgid "DKK - Danish Krone" +msgstr "DKK - Danske kroner" + +#: includes/common/payment-gateways/paymill.php:59 +#: includes/common/payment-gateways/skrill.php:67 +#: includes/common/payment-gateways/stripe.php:104 +msgid "HRK - Croatian Kuna" +msgstr "HRK - Kroatiske Kuna" + +#: includes/common/payment-gateways/paymill.php:58 +#: includes/common/payment-gateways/paypal-chained-payments.php:70 +#: includes/common/payment-gateways/skrill.php:61 +msgid "CZK - Czech Koruna" +msgstr "CZK - Tjekkiske Koruna" + +#: includes/common/payment-gateways/paymill.php:57 +#: includes/common/payment-gateways/skrill.php:58 +msgid "BGN - Bulgarian Leva" +msgstr "BGN - Bulgarske Leva" + +#: includes/common/payment-gateways/payflow/class-mp-gateway-worker-payflow.php:123 +msgid "There was an error connecting to PayPal. Please try again." +msgstr "Der skete en fejl ved tilslutning til PayPal. Prøv venligst igen." + +#: includes/common/payment-gateways/payfast.php:344 +msgid "This setting will log all PayFast communication to the \"payfast.log\" file." +msgstr "Denne indstilling vil logge al PayFast kommunikation til \"payfast.log\" filen." + +#: includes/common/payment-gateways/payfast.php:342 +msgid "Log Debugging Info?" +msgstr "Log af fejlfindingsoplysninger?" + +#: includes/common/payment-gateways/payfast.php:335 +msgid "DO NOT INPUT A VALUE UNLESS YOU HAVE SET ONE IN THE SETTINGS SECTION OF YOUR PAYFAST SETTINGS." +msgstr "INDTAST IKKE EN VÆRDI MEDMINDRE DU HAR SAT EN I INDSTILLINGER SEKTIONEN UNDER DINE PAYFAST INDSTILLINGER." + +#: includes/common/payment-gateways/payfast.php:333 +msgid "PayFast Passphrase" +msgstr "PayFast Adgangsudtryk" + +#: includes/common/payment-gateways/payfast.php:323 +msgid "You can find your credentials on your integration page." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:321 +msgid "PayFast Merchant Credentials" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:311 +msgid "PayFast Mode" +msgstr "PayFast tilstand" + +#: includes/common/payment-gateways/payfast.php:308 +msgid "PayFast is a payments processing service for South Africa. We make it safe for buyers to send money and easy for sellers to receive money. More Info »" +msgstr "PayFast er en betalingsservice for Sydafrika. Vi gør det sikker for købere at sende penge og nemt for sælgere at modtage penge. Mere info »" + +#: includes/common/payment-gateways/payfast.php:306 +msgid "PayFast Checkout Settings" +msgstr "PayFast kasse indstillinger" + +#: includes/common/payment-gateways/payfast.php:285 +msgid "Your payment via PayFast for this order totaling %s is complete. The transaction number is %s." +msgstr "Din betaling via PayFast for denne ordre på ialt %s er gennemført. Dit transaktionsnummer er: %s." + +#: includes/common/payment-gateways/payfast.php:278 +msgid "Your payment via PayFast for this order totaling %s is not yet complete. Here is the latest status:" +msgstr "Din betaling via PayFast for denne ordre på ialt %s er endnu ikke gennemført. Her er den seneste status:" + +#: includes/common/payment-gateways/payfast.php:124 +msgid "Your PayFast transaction has been canceled." +msgstr "Dik PayFast transaktion er blevet annulleret." + +#: includes/common/payment-gateways/payfast.php:82 +#: includes/common/payment-gateways/payfast.php:83 +msgid "PayFast" +msgstr "PayFast" + +#: includes/common/payment-gateways/mollie.php:157 +msgid "API error: - \"%s\"" +msgstr "API fejl: - \"%s\"" + +#: includes/common/payment-gateways/mollie.php:198 +msgid "The payment request is under process" +msgstr "Betalingsanmodningen er under behandling" + +#: includes/common/payment-gateways/mollie.php:140 +msgid "Order: #" +msgstr "Ordre: #" + +#: includes/common/payment-gateways/mollie.php:116 +msgid "You will be redirected to the Mollie site to finalize your payment." +msgstr "Du vil blive omdirigeret til Mollie hjemmesiden for at fuldføre din betaling." + +#: includes/common/payment-gateways/mollie.php:73 +msgid "%sMollie%s provides a fully PCI Compliant and secure way to collect payments via iDeal, Credit Card, Bancontact / Mister Cash, SOFORT Banking, Overbooking, Bitcoin, PayPal, paysafecard and AcceptEmail." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:53 +#: includes/common/payment-gateways/mollie.php:54 +#: includes/common/payment-gateways/mollie.php:195 +#: includes/common/payment-gateways/mollie.php:245 +msgid "Mollie" +msgstr "Mollie" + +#: includes/common/payment-gateways/mollie.php:50 +#: includes/common/payment-gateways/paymill.php:56 +#: includes/common/payment-gateways/paypal-chained-payments.php:72 +#: includes/common/payment-gateways/pin.php:60 +#: includes/common/payment-gateways/skrill.php:64 +#: includes/common/payment-gateways/stripe.php:92 +msgid "EUR - Euro" +msgstr "EUR - Euro" + +#: includes/common/payment-gateways/mijireh.php:306 +msgid "Access Key" +msgstr "Adgangsnøgle" + +#: includes/common/payment-gateways/mijireh.php:300 +msgid "You must login to the Mijireh.com dashboard to obtain the Access Key." +msgstr "Du skal logge ind på Mijireh.com kontrolpanelet for at finde en adgangsnøgle." + +#: includes/common/payment-gateways/mijireh.php:299 +msgid "Credentials" +msgstr "Legitimationsoplysninger" + +#: includes/common/payment-gateways/mijireh.php:289 +msgid "Mijireh Checkout provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:269 +msgid "Mijireh Error: " +msgstr "Mijireh Fejl: " + +#: includes/common/payment-gateways/mijireh.php:89 +msgid "You will be redirected to the Mijireh.com site to finalize your payment." +msgstr "Du vil blive videresendt til Mijireh.com hjemmesiden for at gennemføre din betaling." + +#: includes/common/payment-gateways/mijireh.php:87 +msgid "Your Mijireh transaction has been canceled." +msgstr "Din Mijireh transaktion er blevet annulleret." + +#: includes/common/payment-gateways/mijireh.php:42 +#: includes/common/payment-gateways/mijireh.php:43 +#: includes/common/payment-gateways/mijireh.php:324 +msgid "Mijireh" +msgstr "Mijireh" + +#: includes/common/payment-gateways/manual-payments.php:145 +msgid "These are the manual payment instructions to display on the payments screen." +msgstr "Dette er manuelle betalingsinstrukser der vises på skærmen betalinger." + +#: includes/common/payment-gateways/free_orders.php:189 +msgid "This is the email text to send to those who have made free order checkouts. You should include your free order instructions / information here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:183 +msgid "This is the free order information to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:182 +msgid "Confirmation User Information" +msgstr "Bekræftelse Brugerinformation" + +#: includes/common/payment-gateways/free_orders.php:177 +msgid "This is the information to display on the payments screen." +msgstr "Dette er informationen der vises på betalingssiderne." + +#: includes/common/payment-gateways/free_orders.php:163 +msgid "If enabled, all free orders will be automatically marked as paid." +msgstr "Hvis slået til, så vil alle gratis ordrer automatisk blive markeret som betalt." + +#: includes/common/payment-gateways/free_orders.php:159 +msgid "Payment Status" +msgstr "Betalingstatus" + +#: includes/common/payment-gateways/free_orders.php:149 +msgid "This gateway is automatically activated if order totalling 0 and it can't be disabled" +msgstr "Denne gateway aktiveres automatisk hvis ordre totalen er 0 og det kan ikke deaktiveres." + +#: includes/common/payment-gateways/free_orders.php:35 +#: includes/common/payment-gateways/free_orders.php:36 +#: includes/common/payment-gateways/free_orders.php:89 +msgid "Free Order" +msgstr "Gratis ordre" + +#: includes/common/payment-gateways/free_orders.php:34 +#: includes/common/payment-gateways/free_orders.php:197 +msgid "Free Orders" +msgstr "Gratis ordre" + +#: includes/common/payment-gateways/eway31.php:515 +msgid "Sandbox API Credentials" +msgstr "Sandkasse API Legitimationsoplysninger" + +#: includes/common/payment-gateways/eway31.php:266 +#: includes/common/payment-gateways/eway31.php:542 +msgid "eWay Rapid 3.1 Payments (beta)" +msgstr "eWay Rapid 3.1 Payments (beta)" + +#: includes/common/payment-gateways/eway.php:403 +msgid "Hosted Payment Page Language" +msgstr "" + +#: includes/common/payment-gateways/eway.php:373 +msgid "Note when testing in sandbox mode it will use the default eWay test API credentials. Also, please note that cart total needs to be a whole number (e.g. 10.00) in order to generate a successful transaction, otherwise the transaction will fail." +msgstr "" + +#: includes/common/payment-gateways/eway.php:267 +msgid "You will be redirected to https://www.eway.com.au to finalize your payment." +msgstr "Du vil blive videresendt til https://www.eway.com.au for at fuldføre din betaling." + +#: includes/common/payment-gateways/class-mp-gateway-api.php:380 +msgid "You have chosen to checkout using %s. Please confirm your order details and click \"Submit Order\" when finished." +msgstr "Du har valgt at tjekke ud ved hjælp af %s. Bekræft venligst dine ordredetaljer og tryk \"Indsend ordre\" når du er klar." + +#: includes/common/payment-gateways/class-mp-gateway-api.php:272 +#: includes/common/payment-gateways/paymill.php:131 +#: includes/common/payment-gateways/stripe.php:231 +msgid "Security Code " +msgstr "Sikkerhedskode" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Enter in MM/YYYY or MM/YY format" +msgstr "Indtast i MM/YYYY eller MM/YY format" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Expiration" +msgstr "Udløb" + +#: includes/common/payment-gateways/authorizenet-aim.php:321 +msgid "Delim Data" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:307 +#: includes/common/payment-gateways/paypal-payflow.php:456 +msgid "This text will appear as the footer of the email receipt sent to the customer." +msgstr "Denne tekst vises nederst i den email-kvittering der sendes til kunden." + +#: includes/common/payment-gateways/authorizenet-aim.php:287 +#: includes/common/payment-gateways/paypal-payflow.php:440 +msgid "Email Customer (on success)" +msgstr "Email kunde (ved gennemført)" + +#: includes/common/payment-gateways/authorizenet-aim.php:278 +msgid "Authorize.net default is \",\". Otherwise, get this from your credit card processor. If the transactions are not going through, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:277 +msgid "Delimeter Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:193 +msgid "Held For Review" +msgstr "Gennemses nu" + +#: includes/common/payment-gateways/_ideal.php:310 +#: includes/common/payment-gateways/payfast.php:314 +msgid "Test" +msgstr "Test" + +#: includes/common/payment-gateways/_ideal.php:300 +#: includes/common/payment-gateways/pin.php:170 +#: includes/common/payment-gateways/stripe.php:272 +msgid "Secret Key" +msgstr "Hemmelig-nøgle" + +#: includes/common/payment-gateways/_ideal.php:283 +msgid "Select Your Bank" +msgstr "Vælg din bank" + +#: includes/common/payment-gateways/_ideal.php:97 +msgid "Your payment will be processed by the iDEAL network" +msgstr "Din betaling vil blive behandlet af iDEAL netværket" + +#: includes/common/payment-gateways/_cubepoints.php:208 +msgid "These are the CubePoints to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "Dette er CubePoints´ene der vises på ordrebekræftelse skærmen. TOTAL vil blive erstattet med ordre totallen." + +#: includes/common/payment-gateways/_cubepoints.php:203 +msgid "These are the CubePoints instructions to display on the payments screen." +msgstr "Dette er CubePoints instruktionerne til visning på betalingssiden." + +#: includes/common/payment-gateways/_bitpay.php:266 +msgid "If enabled, all API calls will be made to https://test.bitpay.com." +msgstr "Hvis aktiveret, så vil alle API kald blive lave til https://test.bitpay.com." + +#: includes/common/payment-gateways/_bitpay.php:263 +msgid "Use Test Mode?" +msgstr "Brug Test tilstand?" + +#: includes/common/payment-gateways/_bitpay.php:259 +msgid "If checked, response fron bitpay will be stored in log file, keep it disabled unless required." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:256 +msgid "Enable Debug Log" +msgstr "Aktiver Fejlsøg Log" + +#: includes/common/payment-gateways/_bitpay.php:249 +msgid "Full Notifications" +msgstr "Fulde underretninger" + +#: includes/common/payment-gateways/_bitpay.php:231 +#: includes/common/payment-gateways/eway31.php:499 +#: includes/common/payment-gateways/eway31.php:526 +#: includes/common/payment-gateways/mollie.php:83 +#: includes/common/shipping-modules/mp-fedex.php:269 +msgid "API Key" +msgstr "API-nøgle" + +#: includes/common/payment-gateways/_bitpay.php:222 +msgid "You can now accept a payment from any country on Earth, with no risk of fraud. To use Bitpay, you need to signup on Bitpay. \\n After completing the signup process, you can get api keys at Bitpay API key. You can read more about Bitpay at Bitpay API. \\n Bitpay requires SSL(https) for payment notifications to work." +msgstr "Du kan nu modtage betalinger fra et hvilket som helt land i verden uden risiko for svig. For at bruge Bitpay, så skal du registrere dig på Bitpay. \\n Efter du har gennemført din registrering, så kan du hente app nøgler under Bitpay API key. Du kan læse mere om Bitpay på Bitpay API. \\n Bitpay kræver SSL(https) hvis betalings underretninger skal virke." + +#: includes/common/payment-gateways/_bitpay.php:61 +msgid "You will be redirected to bitpay.com, for bitcoin payment. It is completely safe." +msgstr "Du vil blive videresendt til bitpay.com, for bitcoin betaling. Det er helt sikkert." + +#: includes/common/payment-gateways/2checkout.php:346 +msgid "You must login to the 2Checkout vendor dashboard to obtain the seller ID and secret word. Instructions »" +msgstr "Du skal logge ind på 2Checkout sælger kontrolpanelet for at hente sælger ID´et og et hemmeligt ord. Instruktioner »" + +#: includes/common/payment-gateways/2checkout.php:345 +#: includes/common/payment-gateways/authorizenet-aim.php:239 +#: includes/common/payment-gateways/paymill.php:168 +#: includes/common/payment-gateways/paypal-express.php:704 +#: includes/common/payment-gateways/simplify.php:80 +#: includes/common/payment-gateways/stripe.php:265 +#: includes/common/payment-gateways/wepay.php:158 +msgid "API Credentials" +msgstr "API legitimationsoplysninger" + +#: includes/common/payment-gateways/2checkout.php:325 +#: includes/common/payment-gateways/_bitpay.php:220 +#: includes/common/payment-gateways/_cubepoints.php:185 +#: includes/common/payment-gateways/_ideal.php:268 +#: includes/common/payment-gateways/_payway.php:255 +#: includes/common/payment-gateways/authorizenet-aim.php:219 +#: includes/common/payment-gateways/eway.php:352 +#: includes/common/payment-gateways/eway31.php:460 +#: includes/common/payment-gateways/free_orders.php:147 +#: includes/common/payment-gateways/manual-payments.php:126 +#: includes/common/payment-gateways/mijireh.php:287 +#: includes/common/payment-gateways/mollie.php:71 +#: includes/common/payment-gateways/paymill.php:149 +#: includes/common/payment-gateways/paypal-chained-payments.php:344 +#: includes/common/payment-gateways/paypal-payflow.php:376 +#: includes/common/payment-gateways/pin.php:145 +#: includes/common/payment-gateways/simplify.php:69 +#: includes/common/payment-gateways/skrill.php:121 +#: includes/common/payment-gateways/stripe.php:249 +#: includes/common/payment-gateways/wepay.php:119 +#: includes/common/shipping-modules/mp-fedex.php:243 +#: includes/common/shipping-modules/mp-flat-rate.php:63 +#: includes/common/shipping-modules/mp-pickup.php:140 +#: includes/common/shipping-modules/mp-table-rate.php:94 +#: includes/common/shipping-modules/mp-ups.php:122 +#: includes/common/shipping-modules/mp-usps.php:167 +#: includes/common/shipping-modules/mp-weight-rate.php:110 +msgid "%s Settings" +msgstr "%s indstillinger" + +#: includes/common/payment-gateways/2checkout.php:136 +msgid "You will be redirected to the 2Checkout site to finalize your payment." +msgstr "Du vil blive videresendt til 2Checkout hjemmesiden for at gennemføre din betaling." + +#: includes/common/helpers.php:169 includes/public/class-mp-checkout.php:1277 +msgid "Billing" +msgstr "Opkrævning" + +#: includes/common/helpers.php:144 +msgid "FREE" +msgstr "GRATIS" + +#: includes/common/helpers.php:134 +msgid "Coupons:" +msgstr "Kuponer:" + +#: includes/common/helpers.php:95 +msgid "Qty" +msgstr "Antal" + +#: includes/common/helpers.php:94 +msgid "Sku" +msgstr "Sku" + +#: includes/common/data.php:59 +msgid "Zip Code" +msgstr "Postnummer" + +#: includes/common/class-mp-taxes.php:336 +msgid "Standard Table" +msgstr "Standard Tabel" + +#: includes/common/class-mp-product.php:2698 +msgid "Tweet" +msgstr "Tweet" + +#: includes/common/class-mp-product.php:2321 +msgid "Notification Preferences: %s" +msgstr "Indstillinger for meddelelser: %s" + +#: includes/common/class-mp-product.php:2320 +msgid "Edit Product: %s" +msgstr "Rediger produkt: %s" + +#: includes/common/class-mp-product.php:2318 +msgid "Link: %s

    " +msgstr "Link: %s

    " + +#: includes/common/class-mp-product.php:2317 +msgid "Current Inventory: %s" +msgstr "Aktuel beholdning: %s" + +#: includes/common/class-mp-product.php:2316 +msgid "Product: %s" +msgstr "Produkt: %s" + +#: includes/common/class-mp-product.php:2314 +msgid "This message is being sent to notify you of low stock of a product in your online store according to your preferences.

    " +msgstr "Denne besked bliver sendt for at underrette dig om lav beholding for et produkt i din online butik i henhold til dine indstillinger.

    " + +#: includes/common/class-mp-product.php:1817 +msgid "" +msgstr "" + +#: includes/common/class-mp-product.php:1427 +#: includes/common/class-mp-product.php:1430 +msgid "(tax incl.)" +msgstr "(Incl. moms)" + +#: includes/common/class-mp-product.php:1422 +#: includes/common/class-mp-product.php:1425 +msgid "(tax excl.)" +msgstr "(Excl. moms)" + +#: includes/common/class-mp-product.php:1300 +#: includes/common/class-mp-product.php:1315 +msgid "%s each" +msgstr "%s per enhed" + +#: includes/common/class-mp-product.php:988 +msgid "Choose Options" +msgstr "Vælg" + +#: includes/common/class-mp-product.php:526 +msgid "Choose a %s" +msgstr "Vælg en %s" + +#: includes/common/class-mp-product.php:284 +#: includes/common/class-mp-product.php:292 +#: includes/common/class-mp-product.php:615 +msgid "We're sorry, we only have %d of this item in stock right now." +msgstr "Vi beklager, men vi har kun %d af denne vare tilbage på lager lige nu." + +#: includes/common/class-mp-order.php:1456 +msgid "Shipped: Track Shipment" +msgstr "Afsendt: Spor forsendelse" + +#: includes/common/class-mp-order.php:1049 +msgid "Order Received" +msgstr "Ordre modtaget" + +#: includes/common/class-mp-order.php:1014 +msgid "In Process" +msgstr "Behandles" + +#: includes/common/class-mp-order.php:969 +msgid "Order #" +msgstr "Ordre #" + +#: includes/common/class-mp-order.php:866 +msgid "Copy billing address to shipping address" +msgstr "Kopier betalingsadresse til forsendelsesadresse" + +#: includes/common/class-mp-order.php:822 +#: includes/public/class-mp-checkout.php:1314 +msgid "Special Instructions" +msgstr "Specielle instruktioner" + +#: includes/common/class-mp-order.php:817 +#: includes/common/payment-gateways/stripe.php:335 +msgid "Email" +msgstr "Email" + +#: includes/common/class-mp-order.php:813 +#: includes/common/payment-gateways/stripe.php:341 +#: includes/public/class-mp-checkout.php:416 +msgid "Phone" +msgstr "Telefon" + +#: includes/common/class-mp-order.php:791 +#: includes/common/payment-gateways/stripe.php:337 +msgid "State" +msgstr "Region" + +#: includes/common/class-mp-order.php:776 +msgid "Address 1" +msgstr "Adresse 1" + +#: includes/common/class-mp-order.php:766 +msgid "Last Name" +msgstr "Efternavn" + +#: includes/common/class-mp-order.php:762 +msgid "First Name" +msgstr "Fornavn" + +#: includes/common/class-mp-installer.php:677 +msgid "MarketPress requires a database update to continue working correctly. Go to update page" +msgstr "MarketPress har brug for en database opdatering for at fortsætte med at virke korrekt. Gå til opdater-siden" + +#: includes/common/class-mp-installer.php:657 +msgid "MarketPress performed a quick automatic update successfully!" +msgstr "MarketPress har udført en hurtig automatisk opdatering med succes!" + +#: includes/common/class-mp-installer.php:653 +msgid "Perform Update" +msgstr "Udfør opdatering" + +#: includes/common/class-mp-installer.php:647 +msgid "Please update each subsite in your WordPress network where you have older version of the MarketPress plugin." +msgstr "Venligst opdater hver sub side i dit Wordpress netværk, hvor du har en ældre version af MarketPress pluginnet." + +#: includes/common/class-mp-installer.php:641 +msgid "Depending on the amount of products you have, this update could take quite some time. Please keep this window open while the update completes. If you have products with multiple variations, the progress bar may move slower, please don't exit the window." +msgstr "" + +#: includes/common/class-mp-installer.php:632 +msgid "Product Metadata" +msgstr "Produkt Metadata" + +#: includes/common/class-mp-installer.php:601 +msgid "MarketPress requires a database update to continue working correctly.
    Below you will find a list of items that require your attention." +msgstr "MarketPress kræver en database opdatering for at fortsætte med at fungere korrekt.
    Nedenfor finder du en liste over emner, der kræver din opmærksomhed." + +#: includes/common/class-mp-installer.php:600 +msgid "Update MarketPress Data" +msgstr "Opdater MarketPress data" + +#: includes/common/class-mp-installer.php:530 +msgid "Update Data" +msgstr "Opdater data" + +#: includes/common/class-mp-installer.php:67 +msgid "Complete!" +msgstr "Gennemført!" + +#: includes/common/class-mp-installer.php:66 +msgid "Upgrading Database...Please Wait..." +msgstr "Opgradere database...Vent venligst..." + +#: includes/common/class-mp-installer.php:64 +msgid "An error occurred while updating. Please refresh this page and try again." +msgstr "Der opstod en fejl under opdatering. Genindlæs denne side og prøv igen." + +#: includes/common/class-mp-cart.php:2447 +msgid "Some items in your cart have fallen below the quantity you currently have in your cart. We have adjusted the quantity in your cart automatically." +msgstr "Nogle varer i din kurv er faldet til under den mængde som du har tilføjet til din indkøbskurv. Vi har justeret mængden automatisk i din kurv." + +#: includes/common/class-mp-cart.php:2443 +msgid "Some items in your cart are no longer available. We have removed these items from your cart automatically." +msgstr "Nogle varer i din kurv er ikke længere tilgængelige. Vi har fjernet disse varer fra din kurv automatisk." + +#: includes/common/class-mp-cart.php:1566 +msgid "item" +msgstr "vare" + +#: includes/common/class-mp-cart.php:1563 +#: includes/common/class-mp-cart.php:1568 +msgid "items" +msgstr "varer" + +#: includes/common/class-mp-cart.php:1363 +msgid "Items/Products added to Cart will show here." +msgstr "Varer/Produkter tilføjet til kurven vil blive vist her." + +#: includes/common/class-mp-cart.php:1362 +msgid "Your shopping cart is empty." +msgstr "Din indløbskurv er tom." + +#: includes/common/class-mp-cart.php:1357 +msgid "View Cart" +msgstr "Se indkøbsvogn" + +#: includes/common/class-mp-cart.php:1241 +#: includes/common/class-mp-cart.php:1298 +#: includes/public/class-mp-short-codes.php:159 +msgid "Adding..." +msgstr "Tilføjer..." + +#: includes/common/class-mp-cart.php:1033 +msgid "Continue Shopping?" +msgstr "Fortsæt med indkøb ?" + +#: includes/common/class-mp-cart.php:961 +msgid "Secure Checkout
    Shopping is always safe and secure." +msgstr "Sikker betaling
    Shopping er altid trygt og sikkert." + +#: includes/common/class-mp-cart.php:959 +msgid "You are about to submit your order!
    Please review your order details before continuing. You will be charged immediately upon clicking \"Submit Order\"." +msgstr "Du er ved at indsende din ordre!!
    Se venligst din ordre igennem før du fortsætter. Du vil blive opkrævet umiddelbart efter du har godkendt ordre." + +#: includes/common/class-mp-cart.php:956 +msgid "Continue »" +msgstr "Fortsæt »" + +#: includes/common/class-mp-cart.php:955 +msgid "Submit Order" +msgstr "Indsend ordre" + +#: includes/common/class-mp-cart.php:818 +msgid "There are no items in your cart - go add some !" +msgstr "Din indkøbsvogn er tom - tilføj varer her!" + +#: includes/common/class-mp-cart.php:816 +msgid "The cart is disabled." +msgstr "Kurven er deaktiveret." + +#: includes/common/class-mp-cart.php:735 +msgid "Estimated %s" +msgstr "Estimeret %s" + +#: includes/common/class-mp-cart.php:717 +msgid "Estimated Shipping" +msgstr "Beregnet forsendelse" + +#: includes/common/class-mp-cart.php:697 +msgid "Product Total" +msgstr "Total for Indkøb" + +#: includes/common/class-mp-cart.php:670 includes/common/class-mp-cart.php:672 +msgid "Estimated Total (%s, %s)" +msgstr "Beregnet Total (%s, %s)" + +#: includes/common/class-mp-cart.php:668 +msgid "Estimated Total (%s)" +msgstr "Beregnet Total (%s)" + +#: includes/common/class-mp-cart.php:666 includes/common/class-mp-cart.php:752 +msgid "Estimated Total" +msgstr "Beregnet Total" + +#: includes/admin/widgets/product-list.php:247 +msgid "Show Thumbnail Placeholder image (if image is not set)" +msgstr "" + +#: includes/admin/widgets/cart.php:73 +msgid "Display product price" +msgstr "Vis produktpris" + +#: includes/admin/widgets/cart.php:71 +msgid "Display product quantity" +msgstr "Vis produktmængde" + +#: includes/admin/widgets/cart.php:69 +msgid "Display product image" +msgstr "Vis produktbillede" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:93 +msgid "General Shipping Settings" +msgstr "General forsendelse indstillinger" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:773 +msgid "If you are having conflicts with the lightbox library from your theme or another plugin you should uncheck this." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:772 +msgid "Use Built-In Lightbox for Images?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:762 +msgid "Disable Large Image Display?" +msgstr "Deaktiver stor billedvisning?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:688 +msgid "Show Product Image?" +msgstr "Vis produktbillede?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:682 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:684 +msgid "Show Tags List?" +msgstr "Vis tags liste?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:676 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:678 +msgid "Show Categories List?" +msgstr "Vis kategorier liste?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:671 +msgid "If enabled, description excerpt will be added above Add to cart." +msgstr "Ved aktiveret, så vil uddrag ad beskrivelsen blive tilføjet over Tilføj til kurv." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:669 +msgid "Show Excerpt?" +msgstr "Vis uddrag?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:665 +msgid "If enabled, users will be able to choose how many of the product they want to purchase before adding to their cart. If not checked, quantity could be change later on the cart page." +msgstr "Ved aktivering af dette vil brugere have mulighed for at vælge hvor mange af produktet de ønsker at købe, før de tilføjer dem til kurven. Hvis ikke aktiveret, så vil antal skulle ændres senere på kurv siden." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:663 +msgid "Show Quantity Field?" +msgstr "Vis mængde felt?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:649 +msgid "Settings related to the display of individual product pages." +msgstr "Indstillinger relateret til visningen af de enkelte produktsider." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:648 +msgid "Product Page Settings" +msgstr "Produktside indstillinger" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:605 +msgid "Related Products Layout" +msgstr "Relaterede Produkter Layout" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:573 +msgid "Show Related Products?" +msgstr "Vis relaterede produkter?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:568 +msgid "Related Product Settings" +msgstr "Relateret produkt indstillinger" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:549 +msgid "Order Status Entries Per Page" +msgstr "Ordrestatus poster per side" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:510 +msgid "Sort Products By" +msgstr "Sorter produkter efter" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:497 +msgid "Products Per Page" +msgstr "Produkter per side" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:492 +msgid "Paginate Products?" +msgstr "Sideinddel produkter?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:478 +msgid "Excerpts Length" +msgstr "Uddragslængde" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:473 +msgid "Show Excerpts?" +msgstr "Vis uddrag?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:450 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:746 +msgid "Image Alignment" +msgstr "Billedejustering" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:412 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:708 +msgid "Custom Image Size" +msgstr "Tilpasset billedstørrelse" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:401 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:697 +msgid "Large - %s" +msgstr "Stor - %s" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:400 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:696 +msgid "Medium - %s" +msgstr "Mellem - %s" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:399 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:695 +msgid "Thumbnail - %s" +msgstr "Miniaturebillede - %s" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:397 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:693 +msgid "Image Size" +msgstr "Billedestørrelse" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:386 +msgid "Select default placeholder image thumbnail when product image is not available (if empty, plugin's built-in image will be used)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:380 +msgid "Show default product placeholder thumbnail when product image is not available?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:374 +msgid "Show Product Thumbnail?" +msgstr "Vis produkt miniaturebillede?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:369 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:658 +msgid "Redirect to cart page for immediate checkout" +msgstr "Videresend til Kurv siden for efterfølgende at gå til kassen" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:368 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:657 +msgid "Stay on current product page" +msgstr "Bliv på aktuel produktside" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:366 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:655 +msgid "MarketPress supports two \"flows\" for adding products to the shopping cart. After adding a product to their cart, two things can happen:" +msgstr "MarketPress understøtter to \"flows\" for at tilføje produkter til indkøbskurven. Efter at have tilføjet et produkt til deres kurv, kan to ting ske:" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:365 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:654 +msgid "Add To Cart Action" +msgstr "Tilføj til Kurv handling" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:355 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:628 +msgid "Four" +msgstr "Fire" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:354 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:627 +msgid "Three" +msgstr "Tre" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:353 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:626 +msgid "Two" +msgstr "To" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:625 +msgid "One" +msgstr "En" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:349 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:622 +msgid "Set the number of products that show up in a grid row to best fit your theme" +msgstr "Angiv antallet af produkter der skal vises i en gitterrække for at det passer bedst muligt til dit tema" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:348 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:621 +msgid "How many products per row?" +msgstr "Hvor mange produkter per række?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:342 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:609 +msgid "Display as grid" +msgstr "Vis som gitter" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:341 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:608 +msgid "Display as list" +msgstr "Vis som liste" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:339 +msgid "Product Layout" +msgstr "Produkt layout" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:334 +msgid "Settings related to the display of product lists/grids." +msgstr "Indstillinger relateret til visningen af produktlister/gitre." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:333 +msgid "Product List/Grid Settings" +msgstr "Produkt liste/gitter indstillinger" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:314 +msgid "Show Twitter Button" +msgstr "Vis Twitter knap" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:309 +msgid "Twitter" +msgstr "Twitter" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:303 +msgid "Show Share Button" +msgstr "Vis dele knap" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:297 +msgid "Recommend" +msgstr "Anbefal" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:296 +msgid "Like" +msgstr "Synes godt om" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:294 +msgid "Action" +msgstr "Handling" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:283 +msgid "Show Facebook Like Button" +msgstr "Vis Facebook synes godt om knap" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:278 +msgid "Facebook" +msgstr "Facebook" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:257 +msgid "Show \"Pin It\" Button" +msgstr "Vis \"Pin It\" knap" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:252 +msgid "Pinterest" +msgstr "Pinterest" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:246 +msgid "Social Settings" +msgstr "Sociale indstillinger" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:193 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:202 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:211 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:220 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:229 +#: includes/multisite/class-mp-admin-multisite.php:532 +#: includes/multisite/class-mp-admin-multisite.php:541 +#: includes/multisite/class-mp-admin-multisite.php:550 +msgid "Choose a Page" +msgstr "Vælg en side" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:191 +msgid "This page will be used as the root for your store." +msgstr "Denne side vil blive brugt som rod for din butik." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:168 +#: includes/multisite/class-mp-admin-multisite.php:586 +msgid "Create Page" +msgstr "Opret side" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "uncropped" +msgstr "ubeskåret" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "cropped" +msgstr "beskåret" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:87 +#: includes/multisite/class-mp-admin-multisite.php:121 +#: includes/multisite/class-mp-admin-multisite.php:620 +msgid "An error occurred while creating the store page. Please try again." +msgstr "Der opstod en fejl under oprettelse af butik siden. Prøv venligst igen." + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:66 +msgid "Choose the gateway(s) that you would like to be available for checkout." +msgstr "Vælg de gateways som du ønsker skal være tilgængelige i kassen." + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:65 +msgid "Enabled Gateways" +msgstr "Aktiverede gateways" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:78 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:146 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:179 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:213 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:274 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:307 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:341 +msgid "Text" +msgstr "Tekst" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:71 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:139 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:172 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:206 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:267 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:300 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:334 +msgid "Subject" +msgstr "Emne" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:52 +msgid "Notification Email" +msgstr "Underretning email" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:510 +msgid "Enabling this option will display label `excl. tax` or `incl. tax` after price" +msgstr "Aktivering af dette vil vise etiketten `ekskl. moms` eller `inkl. moms` efter pris" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:509 +msgid "Display tax label?" +msgstr "Vis afgift etiket?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:504 +msgid "Enabling this option will show Price + Tax, eg. if your price is 100 and your tax 20, your price will be 120" +msgstr "Aktivering af dette vil vise Pris + Moms, f.eks. hvis din pris er 100 og din moms 20, så vil din pris være 120" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:416 +#: includes/multisite/class-mp-admin-multisite.php:234 +msgid "Price Format" +msgstr "Pris format" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:366 +msgid "Enabling this field will display a textbox on the shipping checkout page for users to enter special instructions for their order. Useful for product personalization, etc." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:365 +msgid "Show Special Instructions Field?" +msgstr "Vis specielle instruktioner felt?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:360 +msgid "Universal" +msgstr "Universal" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:359 +msgid "Old" +msgstr "Gammel" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1167 +#: includes/admin/store-settings/class-mp-store-settings-general.php:358 +msgid "New" +msgstr "Ny" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:353 +msgid "If you already use Google Analytics for your website, you can track detailed ecommerce information by enabling this setting. Choose whether you are using the new asynchronous or old tracking code. Before Google Analytics can report ecommerce activity for your website, you must enable ecommerce tracking on the profile settings page for your website. Also keep in mind that some gateways do not reliably show the receipt page, so tracking may not be accurate in those cases. It is recommended to use the PayPal gateway for the most accurate data. More information »" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:347 +msgid "Do you want to display the product price on floating Mini Cart." +msgstr "Ønsker du at vise produktprisen i Mini Kurv." + +#: includes/admin/store-settings/class-mp-store-settings-general.php:346 +msgid "Show product price on Mini Cart?" +msgstr "Vis produktpris i Mini kurv" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:340 +msgid "Do you want to display the product quantity on floating Mini Cart." +msgstr "Ønsker du at vise produkt antallet i Mini Kurv." + +#: includes/admin/store-settings/class-mp-store-settings-general.php:339 +msgid "Show product quantity on Mini Cart?" +msgstr "Vis produktmængde på Mini Kurv?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:333 +msgid "Do you want to display the product image on floating Mini Cart." +msgstr "Ønsker du at vise produktbilledet i Mini Kurv." + +#: includes/admin/store-settings/class-mp-store-settings-general.php:332 +msgid "Show product image on Mini Cart?" +msgstr "Vis produktbillede i Mini Kurv?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:327 +msgid "This option hide floating Mini Cart in top right corner." +msgstr "Denne indstilling skjuler Mini Kurv i øverste højre hjørne." + +#: includes/admin/store-settings/class-mp-store-settings-general.php:326 +msgid "Disable Mini Cart?" +msgstr "Deaktiver Mini Kurv" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:316 +msgid "If unchecked your Orders admin page will be hidden" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:315 +msgid "Show admin Orders page?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:309 +msgid "Disable Cart?" +msgstr "Deaktiver kurv?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:303 +msgid "Force Login?" +msgstr "Tving Login?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:297 +msgid "Hide Out of Stock Products?" +msgstr "Skjul udsolgte produkter?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:555 +msgid "This will prevent multiples of the same downloadable product form being added to the cart." +msgstr "Dette vil forhindre enheder af samme slags, fra download produkter, i at blive tilføjet til kurv." + +#: includes/admin/store-settings/class-mp-store-settings-general.php:554 +msgid "Limit Digital Products Per-order?" +msgstr "Begræns digitale produkter per ordre?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:268 +msgid "If you're having issues downloading large files and have worked with your hosting provider to increase your memory limits, try enabling this - just keep in mind, it's not as secure!" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:267 +msgid "Use Alternative Download Method?" +msgstr "Brug alternativ download metode?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:252 +msgid "Download Settings" +msgstr "Download indstillinger" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:230 +msgid "Change product post type" +msgstr "Ændre produkt posttype" + +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:51 +msgid "%s Capabilities" +msgstr "%s kapaciteter" + +#: includes/admin/store-settings/class-mp-store-settings-addons.php:47 +msgid "Store Settings: Add Ons: %s" +msgstr "Butik Indstillinger: Tilføjelser: %s" + +#: includes/admin/class-mp-store-settings-admin.php:254 +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:56 +msgid "Capabilities" +msgstr "Kapaciteter" + +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Edit Product Attribute %s" +msgstr "Rediger produkt attribut %s" + +#: includes/admin/class-mp-store-settings-admin.php:246 +msgid "Exporters" +msgstr "Eksportører" + +#: includes/admin/class-mp-store-settings-admin.php:238 +msgid "Short Codes" +msgstr "Kortkoder" + +#: includes/admin/class-mp-store-settings-admin.php:207 +msgid "An appropriate message for key \"%s\" could not be found." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:204 +msgid "Product attribute updated successfully." +msgstr "Produkt attribut opdateret." + +#: includes/admin/class-mp-store-settings-admin.php:203 +msgid "Product attribute added successfully." +msgstr "Produkt attribut tilføjet." + +#: includes/admin/class-mp-store-settings-admin.php:123 +msgid "Add Ons" +msgstr "Tilføjelser" + +#: includes/admin/class-mp-store-settings-admin.php:123 +#: includes/admin/store-settings/class-mp-store-settings-addons.php:121 +msgid "Store Settings: Add Ons" +msgstr "Butik Indstillinger: Tilføjelser" + +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "Store Settings: Capabilities" +msgstr "Butik indstillinger: Kapaciteter" + +#: includes/admin/class-mp-store-settings-admin.php:118 +msgid "Store Settings: Product Tags" +msgstr "Butik indstillinger: Produkt tags" + +#: includes/admin/class-mp-store-settings-admin.php:117 +msgid "Store Settings: Product Categories" +msgstr "Butik Indstillinger: Produktkategorier" + +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Store Settings: Product Attributes" +msgstr "Butik indstillinger: Produkt attributter" + +#: includes/admin/class-mp-store-settings-admin.php:115 +msgid "Store Settings: Payments" +msgstr "Butik Indstillinger: Betalinger" + +#: includes/admin/class-mp-store-settings-admin.php:114 +msgid "Store Settings: Shipping" +msgstr "Butik Indstillinger: Forsendelse" + +#: includes/admin/class-mp-store-settings-admin.php:113 +#: includes/admin/class-mp-store-settings-admin.php:226 +msgid "Notifications" +msgstr "Underretninger" + +#: includes/admin/class-mp-store-settings-admin.php:113 +msgid "Store Settings: Notifications" +msgstr "Butik Indstillinger: Underretninger" + +#: includes/admin/class-mp-store-settings-admin.php:112 +msgid "Store Settings: Presentation" +msgstr "Butik Indstillinger: Præsentation" + +#: includes/admin/class-mp-store-settings-admin.php:111 +msgid "Store Settings: General" +msgstr "Butik Indstillinger: Generelt" + +#: includes/admin/class-mp-shortcode-builder.php:1489 +msgid "Select a Product" +msgstr "Vælg et produkt" + +#: includes/admin/class-mp-shortcode-builder.php:1447 +msgid "Reset to Defaults" +msgstr "Nulstil til standard" + +#: includes/admin/class-mp-shortcode-builder.php:1446 +msgid "Insert Short Code" +msgstr "Indsæt kortkode" + +#: includes/admin/class-mp-shortcode-builder.php:1202 +#: includes/admin/class-mp-shortcode-builder.php:1227 +#: includes/admin/class-mp-shortcode-builder.php:1252 +msgid "The text to show in the link." +msgstr "Teksten der vises i linket." + +#: includes/admin/class-mp-shortcode-builder.php:1196 +#: includes/admin/class-mp-shortcode-builder.php:1221 +#: includes/admin/class-mp-shortcode-builder.php:1246 +msgid "Whether to return a clickable link or url." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1177 +msgid "Whether to display the cart only on store pages or not." +msgstr "Hvorvidt kurven kun skal vises på butikssider eller ej." + +#: includes/admin/class-mp-shortcode-builder.php:1171 +msgid "Whether to show or hide the product price." +msgstr "Hvorvidt man vil vise eller skjule produktpris." + +#: includes/admin/class-mp-shortcode-builder.php:1165 +msgid "Whether to show or hide the product quantity." +msgstr "Hvorvidt man vil vise eller skjule produkt mængde." + +#: includes/admin/class-mp-shortcode-builder.php:1159 +msgid "Whether to show or hide the product image." +msgstr "Hvorvidt man vil vise eller skjule produkt billede." + +#: includes/admin/class-mp-shortcode-builder.php:1153 +msgid "The text displayed before the cart." +msgstr "Den tekst, der vises, før kurven." + +#: includes/admin/class-mp-shortcode-builder.php:1147 +msgid "The title of the cart." +msgstr "Titlen på kurven." + +#: includes/admin/class-mp-shortcode-builder.php:1058 +#: includes/admin/class-mp-shortcode-builder.php:1121 +msgid "A label to prepend to the price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1032 +#: includes/admin/class-mp-shortcode-builder.php:1127 +msgid "What context for display." +msgstr "Hvad kontekst til visning." + +#: includes/admin/class-mp-shortcode-builder.php:1004 +msgid "Set the alignment of the image." +msgstr "Indstil justeringen af billedet." + +#: includes/admin/class-mp-shortcode-builder.php:998 +msgid "Set a custom pixel width/height. If omitted defaults to the size set by \"context\"." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:993 +msgid "Widget" +msgstr "Widget" + +#: includes/admin/class-mp-shortcode-builder.php:988 +msgid "What context for preset size options." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:982 +#: includes/admin/class-mp-shortcode-builder.php:1026 +#: includes/admin/class-mp-shortcode-builder.php:1052 +#: includes/admin/class-mp-shortcode-builder.php:1077 +#: includes/admin/class-mp-shortcode-builder.php:1096 +#: includes/admin/class-mp-shortcode-builder.php:1115 +msgid "The ID of the product." +msgstr "ID´et på produktet." + +#: includes/admin/class-mp-shortcode-builder.php:963 +msgid "Whether to display the product meta (e.g. price, buy button)." +msgstr "Hvorvidt der skal vises produkt meta (fx pris, køb knap)." + +#: includes/admin/class-mp-shortcode-builder.php:738 +#: includes/admin/class-mp-shortcode-builder.php:905 +#: includes/admin/class-mp-shortcode-builder.php:958 +#: includes/admin/class-mp-shortcode-builder.php:992 +#: includes/admin/class-mp-shortcode-builder.php:1035 +#: includes/admin/class-mp-shortcode-builder.php:1130 +#: includes/admin/class-mp-shortcode-builder.php:1349 +msgid "List" +msgstr "Liste" + +#: includes/admin/class-mp-shortcode-builder.php:957 +#: includes/admin/class-mp-shortcode-builder.php:991 +#: includes/admin/class-mp-shortcode-builder.php:1034 +#: includes/admin/class-mp-shortcode-builder.php:1129 +msgid "Single" +msgstr "Single" + +#: includes/admin/class-mp-shortcode-builder.php:953 +msgid "Whether and what context of image size to display." +msgstr "Hvorvidt og hvilken sammenhæng billedstørrelse skal vises." + +#: includes/admin/class-mp-shortcode-builder.php:948 +msgid "Full" +msgstr "Komplet" + +#: includes/admin/class-mp-shortcode-builder.php:943 +msgid "Whether and what type of content to display." +msgstr "Hvorvidt og hvilken type indhold skal vises." + +#: includes/admin/class-mp-shortcode-builder.php:937 +msgid "Whether to display the product title." +msgstr "Hvorvidt produkttitlen skal vises." + +#: includes/admin/class-mp-shortcode-builder.php:931 +msgid "The ID of the product to display." +msgstr "ID´et på produktet der skal vises." + +#: includes/admin/class-mp-shortcode-builder.php:747 +#: includes/admin/class-mp-shortcode-builder.php:914 +msgid "Hide" +msgstr "Skjul" + +#: includes/admin/class-mp-shortcode-builder.php:746 +#: includes/admin/class-mp-shortcode-builder.php:913 +msgid "Show" +msgstr "Vis" + +#: includes/admin/class-mp-shortcode-builder.php:744 +#: includes/admin/class-mp-shortcode-builder.php:911 +msgid "Whether or not to show the product filters." +msgstr "Hvorvidt der skal vises produktfiltre eller ej." + +#: includes/admin/class-mp-shortcode-builder.php:724 +#: includes/admin/class-mp-shortcode-builder.php:891 +#: includes/admin/class-mp-shortcode-builder.php:1335 +msgid "Limits list to a specific product tag." +msgstr "Begræns listen til et bestemt produkt tag." + +#: includes/admin/class-mp-shortcode-builder.php:713 +#: includes/admin/class-mp-shortcode-builder.php:880 +#: includes/admin/class-mp-shortcode-builder.php:1324 +msgid "Limits list to a specific product category." +msgstr "Begræns listen til en bestemt produktkategori." + +#: includes/admin/class-mp-shortcode-builder.php:706 +#: includes/admin/class-mp-shortcode-builder.php:873 +#: includes/admin/class-mp-shortcode-builder.php:1317 +msgid "Direction to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:684 +#: includes/admin/class-mp-shortcode-builder.php:851 +#: includes/admin/class-mp-shortcode-builder.php:1295 +msgid "What field to order products by." +msgstr "Hvilket felt produkter sorteres efter." + +#: includes/admin/class-mp-shortcode-builder.php:678 +#: includes/admin/class-mp-shortcode-builder.php:845 +#: includes/admin/class-mp-shortcode-builder.php:1283 +msgid "How many products to display in the product list if \"paginate\" is set to true." +msgstr "Hvor mange produkter der skal vises hvis produktlisten \"sideinddel\" er sat til korrekt." + +#: includes/admin/class-mp-shortcode-builder.php:672 +#: includes/admin/class-mp-shortcode-builder.php:839 +#: includes/admin/class-mp-shortcode-builder.php:1277 +msgid "The page number to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:666 +#: includes/admin/class-mp-shortcode-builder.php:833 +#: includes/admin/class-mp-shortcode-builder.php:1271 +msgid "Whether to paginate the product list. This is useful to only show a subset." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:808 +msgid "How many related items to show." +msgstr "Hvor mange relaterede varer der vises." + +#: includes/admin/class-mp-shortcode-builder.php:790 +msgid "How to relate the products" +msgstr "Hvordan produkter skal relateres" + +#: includes/admin/class-mp-shortcode-builder.php:784 +msgid "The product to show related items for." +msgstr "Produktet der vises relaterede elementer for." + +#: includes/admin/class-mp-shortcode-builder.php:765 +msgid "The maximum number of products to display" +msgstr "Det maksimale antal af produkter der vises" + +#: includes/admin/class-mp-shortcode-builder.php:647 +msgid "Comma separated list of tags (term_id) to include. For example, include=5,27 means tags that have the term_id 5 or 27 will be the only tags displayed. Defaults to include everything." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:641 +msgid "Comma separated list of tags (term_id) to exclude. For example, exclude=5,27 means tags that have the term_id 5 or 27 will NOT be displayed. Defaults to exclude nothing." +msgstr "Kommasepareret liste over tags (term_id) der skal udelukkes. For eksempel, exclude=5,27 betyder at tags som har term_id 5 eller 27 ikke vil blive vist. Standard er ikke at udelukke nogen." + +#: includes/admin/class-mp-shortcode-builder.php:633 +#: includes/admin/class-mp-shortcode-builder.php:1420 +msgid "Sort order." +msgstr "Sorteringsrækkefølge." + +#: includes/admin/class-mp-shortcode-builder.php:629 +#: includes/admin/class-mp-shortcode-builder.php:1416 +msgid "Count" +msgstr "Tælle" + +#: includes/admin/class-mp-shortcode-builder.php:626 +#: includes/admin/class-mp-shortcode-builder.php:1413 +msgid "Order of the tags." +msgstr "Rækkefølgen af tags." + +#: includes/admin/class-mp-shortcode-builder.php:620 +msgid "The text/space between tags)" +msgstr "Teksten/mellemrummet mellem tags)" + +#: includes/admin/class-mp-shortcode-builder.php:616 +msgid "UL with a class of \"wp-tag-cloud\"" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:615 +msgid "separated by whitespace defined by \"separator\" parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:613 +msgid "Format of the cloud display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:607 +msgid "The number of actual tags to display in the cloud. (Use \"0\" to display all tags.)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:601 +msgid "Unit of measure as pertains to the smallest and largest values. This can be any CSS length value, e.g. pt, px, em, %." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:595 +msgid "The text size of the tag with the largest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:589 +msgid "The text size of the tag with the smallest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:570 +msgid "The \"tabindex\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:564 +msgid "The \"name\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:558 +msgid "The \"id\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:552 +msgid "Which category ID is selected." +msgstr "Hvilket kategori ID er valgt." + +#: includes/admin/class-mp-shortcode-builder.php:540 +msgid "The max depth. This is ignored unless hierarchical is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:536 +#: includes/multisite/template-functions.php:816 +msgid "No Categories" +msgstr "Ingen kategorier" + +#: includes/admin/class-mp-shortcode-builder.php:414 +#: includes/admin/class-mp-shortcode-builder.php:546 +msgid "Calculates link or post counts by including items from child categories. If show_counts and hierarchical are true this is automatically set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:409 +msgid "Value of n (some number) specifies the depth (or level) to descend in displaying Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:408 +msgid "Show only top level Categories." +msgstr "Vis kun hovedkategorier." + +#: includes/admin/class-mp-shortcode-builder.php:407 +msgid "All Categories displayed in flat (no indent) form (overrides hierarchical)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:406 +msgid "All Categories and child Categories (Default)." +msgstr "Alle kategorier og underkategorier (standard)." + +#: includes/admin/class-mp-shortcode-builder.php:402 +msgid "This parameter controls how many levels in the hierarchy of Categories are to be included in the list of Categories. NOTE: The \"hierarchical\" argument, which is disabled by default, will override the depth argument, unless it is true. When the argument is false, it will display all of the categories. When it is enabled it will use the value in the \"depth\" argument." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:396 +#: includes/admin/class-mp-shortcode-builder.php:1394 +msgid "Sets the number of Categories to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:390 +#: includes/admin/class-mp-shortcode-builder.php:534 +msgid "Set the text to show when no categories are listed." +msgstr "Angiv teksten der vises, når ingen kategorier er angivet." + +#: includes/admin/class-mp-shortcode-builder.php:384 +msgid "Set the title and style of the outer list item. If present but empty, the outer list item will not be displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:378 +#: includes/admin/class-mp-shortcode-builder.php:528 +msgid "Display sub-categories as inner list items (below the parent list item) or inline." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:368 +#: includes/admin/class-mp-shortcode-builder.php:511 +msgid "Exclude category-tree from the results. The parameter include must be empty. If the hierarchical parameter is true, then use exclude instead of exclude_tree." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:354 +msgid "Only include these categories." +msgstr "Inkluder kun disse kategorier." + +#: includes/admin/class-mp-shortcode-builder.php:340 +#: includes/admin/class-mp-shortcode-builder.php:356 +#: includes/admin/class-mp-shortcode-builder.php:370 +#: includes/admin/class-mp-shortcode-builder.php:496 +#: includes/admin/class-mp-shortcode-builder.php:513 +msgid "Select Categories" +msgstr "Vælg kategorier" + +#: includes/admin/class-mp-shortcode-builder.php:338 +#: includes/admin/class-mp-shortcode-builder.php:494 +msgid "Exclude one or more categories from the results. The parameter include must be empty." +msgstr "Udeluk en eller flere kategorier fra resultaterne. Parameteren inkluder skal være tom." + +#: includes/admin/class-mp-shortcode-builder.php:332 +msgid "Set a URI for an image (usually an rss feed icon) to act as a link to each categories' rss-2 feed. This parameter overrides the feed parameter. There is no default for this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:320 +msgid "Display a link to each category's rss-2 feed and set the link text to display. The default is no text and no feed displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:313 +#: includes/admin/class-mp-shortcode-builder.php:487 +msgid "Any" +msgstr "Enhver" + +#: includes/admin/class-mp-shortcode-builder.php:307 +#: includes/admin/class-mp-shortcode-builder.php:481 +msgid "Only display categories that are children of the category identified by this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:301 +msgid "Sets whether a category's description is inserted into the title attribute of the links created (i.e. <a title=\"<em>Category Description</em>\" href=\"...)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:295 +#: includes/admin/class-mp-shortcode-builder.php:475 +msgid "Toggles the display of categories with no posts." +msgstr "Skifte visning af kategorier uden indlæg." + +#: includes/admin/class-mp-shortcode-builder.php:289 +#: includes/admin/class-mp-shortcode-builder.php:469 +#: includes/admin/class-mp-shortcode-builder.php:1388 +msgid "Toggles the display of the current count of posts in each category." +msgstr "Skifte mellem at vise den aktuelle optælling af emner i hver kategori." + +#: includes/admin/class-mp-shortcode-builder.php:279 +msgid "Style to display the categories list in. A value of list displays the categories as list items while none generates no special display method (the list items are separated by
    tags)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:269 +#: includes/admin/class-mp-shortcode-builder.php:449 +#: includes/admin/class-mp-shortcode-builder.php:1378 +msgid "Sort order for categories (either ascending or descending)." +msgstr "Sorter efter for kategorier (enten stigende eller faldende)." + +#: includes/admin/class-mp-shortcode-builder.php:259 +#: includes/admin/class-mp-shortcode-builder.php:439 +#: includes/admin/class-mp-shortcode-builder.php:1368 +msgid "Sort categories alphabetically, by unique Category ID, or by the count of posts in that Category." +msgstr "Sorter kategorier alfabetisk, med unik kategori ID eller ved optælling af emner i denne kategori." + +#: includes/admin/class-mp-shortcode-builder.php:253 +#: includes/admin/class-mp-shortcode-builder.php:433 +msgid "If a value is entered, causes the display of a link to all categories if the style is set to list." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:219 +msgid "Select an Action" +msgstr "Vælg en handling" + +#: includes/admin/class-mp-shortcode-builder.php:217 +msgid "What would you like to do?" +msgstr "Hvad ønsker du at gøre?" + +#: includes/admin/class-mp-shortcode-builder.php:216 +#: includes/admin/class-mp-shortcode-builder.php:1522 +msgid "Add E-Commerce Short Code" +msgstr "Tilføj e-handel kortkode" + +#: includes/admin/class-mp-shortcode-builder.php:197 +msgid "Display a list of links to your store pages." +msgstr "Vis en liste med links til dine butikssider." + +#: includes/admin/class-mp-shortcode-builder.php:196 +msgid "Display a link or url to the order status page." +msgstr "Få vist et link eller url til ordrestatus siden." + +#: includes/admin/class-mp-shortcode-builder.php:195 +msgid "Display a link or url to the current products list page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:194 +msgid "Display a link or url to the current store page." +msgstr "Få vist et link eller url til den aktuelle butiksside." + +#: includes/admin/class-mp-shortcode-builder.php:193 +msgid "Display a link or url to the current shopping cart page." +msgstr "Vis et link eller url til den aktuelle indkøbskurv side." + +#: includes/admin/class-mp-shortcode-builder.php:192 +msgid "Display the cart widget." +msgstr "Vis kurv widget." + +#: includes/admin/class-mp-shortcode-builder.php:191 +msgid "Display the full product meta box with price and buy now/add to cart button." +msgstr "Vis hele produkt metaboksen med pris og køb nu/tilføj til kurv knap." + +#: includes/admin/class-mp-shortcode-builder.php:190 +msgid "Display the product stock." +msgstr "Vis produkt lager." + +#: includes/admin/class-mp-shortcode-builder.php:189 +msgid "Display the product SKU number(s)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:188 +msgid "Display the product price (and sale price)." +msgstr "Vis produktprisen (og salgspris)." + +#: includes/admin/class-mp-shortcode-builder.php:187 +msgid "Display the buy or add to cart button." +msgstr "Vis køb eller tilføj til kurv knappen." + +#: includes/admin/class-mp-shortcode-builder.php:186 +msgid "Display the featured image of a given product." +msgstr "Vis fremhævede billede af et bestemt produkt." + +#: includes/admin/class-mp-shortcode-builder.php:185 +msgid "Display a single product." +msgstr "Vis et enkelt produkt." + +#: includes/admin/class-mp-shortcode-builder.php:184 +msgid "Display a list of products according to preference." +msgstr "Vis en liste over produkter, i overensstemmelse med præference." + +#: includes/admin/class-mp-shortcode-builder.php:183 +msgid "Display products related to the one being viewed." +msgstr "Få vist produkter i relation til det der bliver set." + +#: includes/admin/class-mp-shortcode-builder.php:182 +msgid "Display a list of popular products ordered by sales." +msgstr "Vis en liste over populære produkter sorteret efter salg." + +#: includes/admin/class-mp-shortcode-builder.php:180 +msgid "Display an HTML dropdown of your product categories." +msgstr "Vis en HTML dropdown med dine produkterkategorier." + +#: includes/admin/class-mp-shortcode-builder.php:179 +msgid "Display an HTML list of your product categories." +msgstr "Få vist en HTML liste over dine produktkategorier." + +#: includes/admin/class-mp-shortcode-builder.php:178 +msgid "Display a cloud or list of your product tags." +msgstr "Vis en sky eller liste med dine produkt tags." + +#: includes/admin/class-mp-setup-wizard.php:655 +msgid "Setup your payment gateway" +msgstr "Opsæt din betalings gateway" + +#: includes/admin/class-mp-setup-wizard.php:643 +#: includes/admin/class-mp-setup-wizard.php:649 +msgid "Other Gateways" +msgstr "Andre Gateways" + +#: includes/admin/class-mp-setup-wizard.php:617 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:150 +msgid "Select which calculated shipping methods the customer will be able to choose from." +msgstr "Vælg hvilke beregnede forsendelsesmetoder kunden vil være i stand til at vælge fra." + +#: includes/admin/class-mp-setup-wizard.php:601 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:134 +#: includes/public/class-mp-checkout.php:82 +msgid "Shipping Method" +msgstr "Fragtmetode" + +#: includes/admin/class-mp-setup-wizard.php:568 +msgid "I want to charge shipping" +msgstr "Jeg ønsker at opkræve forsendelse" + +#: includes/admin/class-mp-setup-wizard.php:523 +#: includes/admin/store-settings/class-mp-store-settings-general.php:503 +msgid "Show Price + Tax?" +msgstr "Vis Pris + Moms?" + +#: includes/admin/class-mp-setup-wizard.php:507 +msgid "I.e. Taxes, VAT, GST, etc" +msgstr "Det vil sige skatter, moms, osv" + +#: includes/admin/class-mp-setup-wizard.php:491 +#: includes/admin/store-settings/class-mp-store-settings-general.php:471 +msgid "Current Rates" +msgstr "Aktuelle priser" + +#: includes/admin/class-mp-setup-wizard.php:473 +msgid "Default Tax Rate" +msgstr "Standard momssats" + +#: includes/admin/class-mp-setup-wizard.php:434 +#: includes/admin/class-mp-setup-wizard.php:442 +#: includes/admin/store-settings/class-mp-store-settings-general.php:386 +#: includes/admin/store-settings/class-mp-store-settings-general.php:394 +#: includes/multisite/class-mp-admin-multisite.php:204 +#: includes/multisite/class-mp-admin-multisite.php:212 +msgid "Select a Currency" +msgstr "Vælg en valuta" + +#: includes/admin/class-mp-setup-wizard.php:414 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:105 +msgid "Choose Countries" +msgstr "Vælg lande" + +#: includes/admin/class-mp-setup-wizard.php:411 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:103 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:104 +msgid "All Countries" +msgstr "Alle lande" + +#: includes/admin/class-mp-setup-wizard.php:410 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:102 +msgid "These are the countries that you will ship to." +msgstr "Dette er landene som du vil sende til." + +#: includes/admin/class-mp-setup-wizard.php:409 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:101 +msgid "Target Countries" +msgstr "Målrettede lande" + +#: includes/admin/class-mp-setup-wizard.php:401 +msgid "Countries" +msgstr "Lande" + +#: includes/admin/class-mp-setup-wizard.php:387 +#: includes/admin/store-settings/class-mp-store-settings-general.php:640 +msgid "Zip/Postal Code Label" +msgstr "Postnummer etiket" + +#: includes/admin/class-mp-setup-wizard.php:352 +#: includes/admin/store-settings/class-mp-store-settings-general.php:606 +msgid "Select a State/Province/Region" +msgstr "Vælg en stat/provins/region" + +#: includes/admin/class-mp-setup-wizard.php:335 +#: includes/admin/store-settings/class-mp-store-settings-general.php:590 +msgid "Select A Country" +msgstr "Vælg et land" + +#: includes/admin/class-mp-setup-wizard.php:332 +#: includes/admin/store-settings/class-mp-store-settings-general.php:587 +msgid "Select a Country" +msgstr "Vælg et land" + +#: includes/admin/class-mp-setup-wizard.php:324 +msgid "Location" +msgstr "Lokalitet" + +#: includes/admin/class-mp-setup-wizard.php:304 +#: includes/admin/class-mp-setup-wizard.php:312 +#: includes/admin/class-mp-store-settings-admin.php:129 +#: includes/admin/class-mp-store-settings-admin.php:262 +msgid "Quick Setup" +msgstr "Hurtig opsætning" + +#: includes/admin/class-mp-setup-wizard.php:289 +msgid "MarketPress setup is not complete! Run setup wizard" +msgstr "MarketPress opsætning er ikke fuldført! Start opsætningsguide" + +#: includes/admin/class-mp-products-admin.php:2479 +msgid "Enter your product name here" +msgstr "Indtast dit produktnavn her" + +#: includes/admin/class-mp-products-admin.php:2440 +msgid "Select a %s" +msgstr "Vælg en %s" + +#: includes/admin/class-mp-products-admin.php:2426 +msgid "Each product variation needs to have product attributes assigned to it so the system knows how to differentiate one product variation from the other. It is important that you assign a category to this product before choosing any attributes." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2409 +msgid "If you would like this variation to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "Hvis du ønsker denne variation skal bruge en speciel momssats, så indtast den her. Hvis du udelader symbolet \"%\" symbolet, så vil satsen blive beregnet som et fast beløb for hvert af dette produkt i kundernes kurve." + +#: includes/admin/class-mp-products-admin.php:2320 +msgid "Sale Price (if applicable)" +msgstr "Salgspris (hvis relevant)" + +#: includes/admin/class-mp-products-admin.php:2281 +msgid "If you would like the description to be different than the main product enter it here." +msgstr "Hvis du ønsker beskrivelsen skal være anderledes end hovedproduktet, så indtast den her." + +#: includes/admin/class-mp-products-admin.php:2229 +msgid "Image" +msgstr "Billede" + +#: includes/admin/class-mp-products-admin.php:2202 +#: includes/admin/class-mp-shortcode-builder.php:226 +msgid "Attributes" +msgstr "Attributter" + +#: includes/admin/class-mp-products-admin.php:2166 +msgid "Create your product variations here. You can reorder variations by using the number to left of each variation, or delete one by clicking the \"x\" to the right of each variation. NOTE: The variation that shows up first in this list will be considered the \"main variation\". The details from this variation will be used in product listings." +msgstr "Opret dine produktvarianter her. Du kan omarrangere varianter ved at bruge nummeret til venstre for hver variant eller slette en ved at trykke på \"x\" til højre for hver variant. BEMÆRK: Varianten der står først på denne liste vil fungere som \"hovedvariant\". Detaljerne fra denne variant vil blive brugt i produktlisterne." + +#: includes/admin/class-mp-products-admin.php:2061 +#: includes/admin/class-mp-products-admin.php:2332 +msgid "Value must be less than regular price" +msgstr "Værdien skal være mindre en den normale pris" + +#: includes/admin/class-mp-products-admin.php:2043 +#: includes/admin/class-mp-products-admin.php:2306 +msgid "Regular Price" +msgstr "Normal pris" + +#: includes/admin/class-mp-products-admin.php:2023 +#: includes/admin/class-mp-products-admin.php:2286 +msgid "External URL" +msgstr "Ekstern URL" + +#: includes/admin/class-mp-products-admin.php:1988 +#: includes/admin/class-mp-products-admin.php:2245 +msgid "Enter the quantity that you have available to sell." +msgstr "Angiv den mængde, som du har til rådighed til at sælge." + +#: includes/admin/class-mp-products-admin.php:1987 +#: includes/admin/class-mp-products-admin.php:2244 +msgid "Inventory Count" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1977 +#: includes/admin/class-mp-products-admin.php:2234 +msgid "Track Inventory?" +msgstr "Spor beholdning?" + +#: includes/admin/class-mp-products-admin.php:1871 +msgid "%1$sProduct Images%2$s %3$sAdd images of the product. The first image on the list is the featured image for this product (you can reorder images on the list)%2$s" +msgstr "%1$sProduktbilleder%2$s %3$sTilføj billeder af produktet. Første billede på listen er det fremhævede billede for dette produkt (du kan ændre rækkefølge for billeder på listen)%2$s" + +#: includes/admin/class-mp-products-admin.php:1806 +msgid "Add variations for this product. e.g. If you are selling t-shirts, you can create Color & Size variations" +msgstr "Tilføj variationer for dette produkt. Fx hvis du sælger t-shirts, så kan du oprette farve og størrelse variationer" + +#: includes/admin/class-mp-products-admin.php:1804 +msgid "%3$sAdd variations for%2$s %1$sProduct%2$s" +msgstr "%3$sTilføj varianter til%2$s %1$sProdukt%2$s" + +#: includes/admin/class-mp-products-admin.php:1776 +msgid "This product has a multiple variations %1$s(e.g. Multiple colors, sizes)%2$s" +msgstr "Dette produkt har flere variationer %1$s(fx. Flere forskellige farver, størrelser)%2$s" + +#: includes/admin/class-mp-products-admin.php:1775 +msgid "This is a unique product without variations" +msgstr "Dette er et unikt produkt uden variationer" + +#: includes/admin/class-mp-products-admin.php:1700 +msgid "Extra Shipping Cost %1$s(if applicable)%2$s" +msgstr "Ekstra forsendelse omkostninger %1$s(hvis relevant)%2$s" + +#: includes/admin/class-mp-products-admin.php:1659 +#: includes/admin/class-mp-products-admin.php:2112 +#: includes/admin/class-mp-products-admin.php:2359 +msgid "Weight" +msgstr "Vægt" + +#: includes/admin/class-mp-products-admin.php:1636 +#: includes/admin/class-mp-products-admin.php:2098 +#: includes/admin/class-mp-products-admin.php:2416 +msgid "Please enter a valid tax rate" +msgstr "Indtast venligst en gyldig momssats" + +#: includes/admin/class-mp-products-admin.php:1531 +msgid "Limit Per Order %1$s(limit the number of the item a shopper can buy per order)%2$s" +msgstr "Begræns per ordre %1$s(begræns antallet af emner en handlende kan købe per ordre)%2$s" + +#: includes/admin/class-mp-products-admin.php:1513 +msgid "SKU %1$s(Stock Keeping Unit)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "%1$sPrice, Inventory & Variants%2$s %3$sSet price, manage inventory and create Product Variants (if appropriate for your product).%2$s" +msgstr "%1$sPris, beholdning & varianter%2$s %3$sSæt pris, administrer beholdning og opret produktvarianter (hvis det er relevant for dit produkt).%2$s" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "Product Variations" +msgstr "Produktvariationer" + +#: includes/admin/class-mp-products-admin.php:1480 +msgid "External / Affiliate Link" +msgstr "Ekstern / Affiliate link" + +#: includes/admin/class-mp-products-admin.php:1471 +msgid "Digital Download" +msgstr "Digital Download" + +#: includes/admin/class-mp-products-admin.php:1470 +msgid "Physical / Tangible Product" +msgstr "Fysisk/konkret produkt" + +#: includes/admin/class-mp-products-admin.php:1464 +msgid "Product Kind %1$s(Physical Product, Digital, etc)%2$s" +msgstr "Produkttype %1$s(Fysisk produkt, Digitalt, osv)%2$s" + +#: includes/admin/class-mp-products-admin.php:1426 +msgid "Choose Products" +msgstr "Vælg produkter" + +#: includes/admin/class-mp-products-admin.php:1420 +msgid "If you would like, you can choose specific related products instead of using the ones generated by MarketPress" +msgstr "Hvis du ønsker, så kan du vælge bestemte relaterede produkter i stedet for at bruge dem, der genereres af MarketPress" + +#: includes/admin/class-mp-products-admin.php:1019 +msgid "Changes saved successfully" +msgstr "Ændringer gemt" + +#: includes/admin/class-mp-products-admin.php:826 +msgid "Option cannot be saved. Try again." +msgstr "Mulighed kan ikke gemmes. Prøv igen." + +#: includes/admin/class-mp-products-admin.php:821 +msgid "Option saved successfully." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:467 +msgid "Img" +msgstr "Bld" + +#: includes/admin/class-mp-product-attributes-list-table.php:57 +msgid "Product attribute(s) deleted successfully." +msgstr "Produkt attribut(ter) slettet." + +#: includes/admin/class-mp-product-attributes-admin.php:162 +msgid "- Create New Variation -" +msgstr "- Opret ny variation -" + +#: includes/admin/class-mp-product-attributes-admin.php:144 +msgid "Only lowercase letters and dashes (-) are allowed." +msgstr "Kun små bogstaver og bindestreger (-) er tilladt." + +#: includes/admin/class-mp-product-attributes-admin.php:139 +msgid "If a slug is not entered, it will be generated automatically. Max 32 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:138 +#: includes/admin/class-mp-product-attributes-list-table.php:23 +msgid "Slug" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:130 +msgid "Max 45 characters." +msgstr "Maks 45 tegn." + +#: includes/admin/class-mp-product-attributes-admin.php:123 +msgid "Use the numbers on the left to sort. To delete - click the \"X\" to the right of each row." +msgstr "Brug numrene til venstre for at sortere. For at slette - tryk på \"X\" til højre ved hver række." + +#: includes/admin/class-mp-product-attributes-admin.php:122 +msgid "Attribute Options" +msgstr "Attribut egenskaber" + +#: includes/admin/class-mp-product-attributes-admin.php:121 +msgid "Add Option" +msgstr "Tilføj mulighed" + +#: includes/admin/class-mp-product-attributes-admin.php:105 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:523 +msgid "Sort Order" +msgstr "Sorteringsrækkefølge" + +#: includes/admin/class-mp-product-attributes-admin.php:87 +msgid "Alphabetical" +msgstr "Alfabetisk" + +#: includes/admin/class-mp-product-attributes-admin.php:86 +msgid "ID" +msgstr "ID" + +#: includes/admin/class-mp-product-attributes-admin.php:84 +msgid "Select how the options will be sorted." +msgstr "Vælg hvordan egenskaberne vil blive sorteret" + +#: includes/admin/class-mp-product-attributes-admin.php:82 +msgid "Sort By" +msgstr "Sorter efter" + +#: includes/admin/class-mp-product-attributes-admin.php:75 +msgid "The name of the attribute (e.g. color, size, etc)" +msgstr "Navnet på attribut (fx farve, størrelse, osv)" + +#: includes/admin/class-mp-product-attributes-admin.php:74 +msgid "Attribute Name" +msgstr "Attribut navn" + +#: includes/admin/class-mp-product-attributes-admin.php:69 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Product Attribute" +msgstr "Tilføj produkt attribut" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Attribute" +msgstr "Tilføj attribut" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Product Attributes" +msgstr "Produkt attributter" + +#: includes/admin/class-mp-pages-admin.php:71 +msgid "You can choose to make this page one of the following core store pages." +msgstr "Du kan vælge at gøre denne side en af følgende centrale butikssider." + +#: includes/admin/class-mp-pages-admin.php:66 +msgid "Network Store Base" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:61 +msgid "Checkout Page" +msgstr "Kasse side" + +#: includes/admin/class-mp-pages-admin.php:52 +msgid "Store Page Settings" +msgstr "Butik side indstillinger" + +#: includes/admin/class-mp-orders-admin.php:1108 +msgid "Display billing/shipping info for this customer" +msgstr "Vis fakturerings/forsendelses info for denne kunde" + +#: includes/admin/class-mp-orders-admin.php:1097 +msgid "View order “%s”" +msgstr "Vis ordre “%s”" + +#: includes/admin/class-mp-orders-admin.php:1072 +msgid "Flag as:" +msgstr "Marker som:" + +#: includes/admin/class-mp-orders-admin.php:952 +msgid "Move To Trash" +msgstr "Flyt til papirkurv" + +#: includes/admin/class-mp-orders-admin.php:948 +msgid " Received" +msgstr "Modtaget" + +#: includes/admin/class-mp-orders-admin.php:927 +msgid "Enter coupon code here" +msgstr "Indtast kuponkode her" + +#: includes/admin/class-mp-orders-admin.php:812 +msgid "The order status could not be updated due to unexpected error. Please try again." +msgstr "Ordrestatusen kunne ikke opdateres på grund af en uventet fejl. Prøv igen." + +#: includes/admin/class-mp-orders-admin.php:740 +msgid "An invalid bulk action was requested. Please go back and try again." +msgstr "Der blev anmodet om en ugyldig massehandling. Gå tilbage og prøv igen." + +#: includes/admin/class-mp-orders-admin.php:692 +msgid "The order status for order ID %1$s was updated successfully." +msgstr "Ordrestatus for ordre ID %1$s blev opdateret." + +#: includes/admin/class-mp-orders-admin.php:688 +msgid "Order statuses successfully updated." +msgstr "Ordrestatusser blevet opdateret." + +#: includes/admin/class-mp-orders-admin.php:530 +msgid "Method" +msgstr "Metode" + +#: includes/admin/class-mp-orders-admin.php:518 +msgid "Actual Shipping Method" +msgstr "Aktuel forsendelsesmetode" + +#: includes/admin/class-mp-orders-admin.php:513 +msgid "Method Paid For" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:504 +msgid "Amount Collected" +msgstr "Beløb indsamlet" + +#: includes/admin/class-mp-orders-admin.php:477 +msgid "DHL" +msgstr "DHL" + +#: includes/admin/class-mp-orders-admin.php:408 +msgid "There is no IPN history to show at this time" +msgstr "Der er ingen IPN historie at vise i øjeblikket" + +#: includes/admin/class-mp-orders-admin.php:345 +msgid "Type" +msgstr "Type" + +#: includes/admin/class-mp-orders-admin.php:343 +msgid "Gateway" +msgstr "Gateway" + +#: includes/admin/class-mp-orders-admin.php:301 +#: includes/common/template-functions.php:528 +msgid "Order History" +msgstr "Ordrehistorik" + +#: includes/admin/class-mp-orders-admin.php:291 +msgid "IPN History" +msgstr "IPN Historik" + +#: includes/admin/class-mp-orders-admin.php:283 +msgid "Customer Info" +msgstr "Kunde info" + +#: includes/admin/class-mp-orders-admin.php:279 +msgid "Order Details" +msgstr "Ordredetaljer" + +#: includes/admin/class-mp-exporter-orders.php:157 +msgid "All Dates" +msgstr "Alle datoer" + +#: includes/admin/class-mp-dashboard-widgets.php:320 +msgid "Add Pages to Menu" +msgstr "Tilføj sider til menu" + +#: includes/admin/class-mp-dashboard-widgets.php:318 +msgid "Add-ons" +msgstr "Tilføjelser" + +#: includes/admin/class-mp-dashboard-widgets.php:317 +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "User Capabilities" +msgstr "Bruger kapaciteter" + +#: includes/admin/class-mp-dashboard-widgets.php:316 +#: includes/admin/class-mp-setup-wizard.php:631 +#: includes/admin/store-settings/class-mp-store-settings-payments.php:50 +msgid "Payment Gateways" +msgstr "Betaling Gateways" + +#: includes/admin/class-mp-dashboard-widgets.php:315 +msgid "Shipping Rates" +msgstr "Forsendelsespriser" + +#: includes/admin/class-mp-dashboard-widgets.php:312 +msgid "Configure" +msgstr "Konfigurer" + +#: includes/admin/class-mp-dashboard-widgets.php:309 +#: includes/admin/class-mp-products-admin.php:466 +#: includes/admin/class-mp-shortcode-builder.php:797 +msgid "Tags" +msgstr "Tags" + +#: includes/admin/class-mp-dashboard-widgets.php:308 +#: includes/admin/class-mp-products-admin.php:465 +msgid "Categories" +msgstr "Kategorier" + +#: includes/admin/class-mp-dashboard-widgets.php:300 +msgid "Manage" +msgstr "Administrer" + +#: includes/admin/class-mp-dashboard-widgets.php:297 +msgid "Here's some quick links to manage your store and products." +msgstr "Her er nogle hurtige links til at styre din butik og produkter." + +#: includes/admin/class-mp-dashboard-widgets.php:288 +msgid "low in stock" +msgstr "få på lager" + +#: includes/admin/class-mp-dashboard-widgets.php:287 +msgid "%s product" +msgid_plural "%s products" +msgstr[0] "%s produkt" +msgstr[1] "%s produkter" + +#: includes/admin/class-mp-dashboard-widgets.php:280 +msgid "received" +msgstr "modtaget" + +#: includes/admin/class-mp-dashboard-widgets.php:279 +#: includes/admin/class-mp-dashboard-widgets.php:283 +msgid "%s order" +msgid_plural "%s orders" +msgstr[0] "%s ordre" +msgstr[1] "%s ordre" + +#: includes/admin/class-mp-dashboard-widgets.php:276 +msgid "Stock & Orders" +msgstr "Lagerstatus og ordrer" + +#: includes/admin/class-mp-dashboard-widgets.php:261 +msgid "Last 30 Days" +msgstr "Seneste 30 dage" + +#: includes/admin/class-mp-dashboard-widgets.php:256 +msgid "Last 7 Days" +msgstr "Seneste 7 dage" + +#: includes/admin/class-mp-dashboard-widgets.php:251 +msgid "Yesterday" +msgstr "Igår" + +#: includes/admin/class-mp-dashboard-widgets.php:248 +#: includes/admin/class-mp-dashboard-widgets.php:253 +#: includes/admin/class-mp-dashboard-widgets.php:258 +#: includes/admin/class-mp-dashboard-widgets.php:263 +msgid " Orders" +msgstr "Ordre" + +#: includes/admin/class-mp-dashboard-widgets.php:246 +msgid "Today" +msgstr "I dag" + +#: includes/admin/class-mp-dashboard-widgets.php:241 +msgid "Welcome back! Here's a quick summary of your store's performance." +msgstr "Velkommen tilbage! Her er en hurtig oversigt over din butiks muligheder." + +#: includes/admin/class-mp-dashboard-widgets.php:196 +#: includes/admin/class-mp-products-admin.php:895 +msgid "No products out of stock." +msgstr "Ingen produkter udsolgt." + +#: includes/admin/class-mp-dashboard-widgets.php:136 +#: includes/admin/class-mp-products-admin.php:839 +msgid "Stock Level" +msgstr "Beholdningsniveau" + +#: includes/admin/class-mp-dashboard-widgets.php:135 +#: includes/admin/class-mp-products-admin.php:838 +msgid "Variation" +msgstr "Variation" + +#: includes/admin/class-mp-dashboard-widgets.php:121 +msgid "Low Stock (%s)" +msgstr "Lavt antal (%s)" + +#: includes/admin/class-mp-dashboard-widgets.php:116 +msgid "Store Management" +msgstr "Butik Administration" + +#: includes/admin/class-mp-dashboard-widgets.php:115 +msgid "Store Reports" +msgstr "Butik Rapporter" + +#: includes/admin/class-mp-ajax.php:579 +#: includes/admin/class-mp-orders-admin.php:520 +#: includes/common/payment-gateways/2checkout.php:370 +#: includes/common/payment-gateways/authorizenet-aim.php:264 +#: includes/common/payment-gateways/mollie.php:93 +#: includes/common/payment-gateways/paymill.php:196 +#: includes/common/payment-gateways/pin.php:190 +#: includes/common/payment-gateways/skrill.php:157 +#: includes/common/payment-gateways/skrill.php:168 +#: includes/common/payment-gateways/wepay.php:143 +#: includes/public/class-mp-checkout.php:404 +msgid "Select One" +msgstr "Vælg" + +#: includes/admin/class-mp-ajax.php:511 +msgid "Oops... we could not locate any orders by that ID. Please double check your order ID and try again." +msgstr "Ups... vi kunne ikke finde nogen ordrer med dette id. Venligst dobbelt tjek dit ordre id og prøv igen." + +#: includes/admin/class-mp-ajax.php:482 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:166 +#: includes/multisite/class-mp-admin-multisite.php:584 +msgid "Edit Page" +msgstr "Rediger side" + +#: includes/admin/class-mp-ajax.php:346 +msgid "Cancel " +msgstr "Annuller" + +#: includes/admin/class-mp-ajax.php:345 +msgid "Save " +msgstr "Gem" + +#: includes/admin/class-mp-ajax.php:336 +msgid "Edit Description" +msgstr "Rediger beskrivelse" + +#: includes/admin/class-mp-ajax.php:336 +msgid "HTML Markup" +msgstr "HTML Opmærkning" + +#: includes/admin/class-mp-ajax.php:333 +msgid "Plain Text Only" +msgstr "Kun ren tekst" + +#: includes/admin/class-mp-ajax.php:329 +msgid "Additional Content / Information for this Variation" +msgstr "Yderligere Indhold / Information for denne variant" + +#: includes/admin/class-mp-ajax.php:317 +#: includes/admin/class-mp-products-admin.php:1762 +msgid "Allow this product to be purchased even if it's out of stock" +msgstr "Tillad at dette produkt kan bestilles også selvom det ikke er på lager" + +#: includes/admin/class-mp-ajax.php:313 +#: includes/admin/class-mp-products-admin.php:1711 +msgid "Track Product Inventory" +msgstr "Spor produkt beholdning" + +#: includes/admin/class-mp-ajax.php:300 +msgid "Extra Shipping Cost (if applicable)" +msgstr "Ekstra forsendelses omkostninger (hvis relevant)" + +#: includes/admin/class-mp-ajax.php:295 +msgid "Ounces:" +msgstr "Ounce:" + +#: includes/admin/class-mp-ajax.php:294 +msgid "Pounds:" +msgstr "Pund:" + +#: includes/admin/class-mp-ajax.php:292 +msgid "Kilograms:" +msgstr "Kilogram:" + +#: includes/admin/class-mp-ajax.php:287 +#: includes/admin/class-mp-products-admin.php:1649 +msgid "Charge Shipping" +msgstr "Opkræv forsendelse" + +#: includes/admin/class-mp-ajax.php:273 +#: includes/admin/class-mp-products-admin.php:1623 +#: includes/admin/store-settings/class-mp-store-settings-general.php:454 +msgid "Tax Rate" +msgstr "Moms Sats" + +#: includes/admin/class-mp-ajax.php:272 +#: includes/admin/class-mp-products-admin.php:1622 +#: includes/admin/class-mp-products-admin.php:2090 +#: includes/admin/class-mp-products-admin.php:2408 +msgid "Special Tax Rate" +msgstr "Speciel momssats" + +#: includes/admin/class-mp-ajax.php:271 +#: includes/admin/class-mp-products-admin.php:1625 +#: includes/admin/class-mp-products-admin.php:2092 +msgid "If you would like this product to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "Hvis du ønsker at dette produkt skal bruge en speciel afgiftssats, så indtast den her. Hvis du undlader \"%\" symbolet, så vil satsen blive beregnet som et fast beløb for hver af dette produkt i brugerens kurv." + +#: includes/admin/class-mp-ajax.php:268 +#: includes/admin/class-mp-products-admin.php:1599 +msgid "Charge Taxes (Special Rate)" +msgstr "Opkræv afgifter (Speciel sats)" + +#: includes/admin/class-mp-ajax.php:256 +#: includes/admin/class-mp-products-admin.php:1593 +#: includes/admin/class-mp-products-admin.php:2077 +#: includes/admin/class-mp-products-admin.php:2348 +msgid "End Date (if applicable)" +msgstr "Slutdato (hvis relevant)" + +#: includes/admin/class-mp-ajax.php:255 +#: includes/admin/class-mp-products-admin.php:1589 +#: includes/admin/class-mp-products-admin.php:2072 +msgid "Start Date (if applicable)" +msgstr "Startdato (hvis relevant)" + +#: includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:1568 +msgid "Enter Sale Price" +msgstr "Indtast salgspris" + +#: includes/admin/class-mp-ajax.php:250 +#: includes/admin/class-mp-products-admin.php:1547 +msgid "Set up a Sale for this Product" +msgstr "Opsæt et udsalg for dette produkt" + +#: includes/admin/class-mp-ajax.php:206 includes/admin/class-mp-ajax.php:223 +msgid "Enter " +msgstr "Indsend" + +#: includes/admin/class-mp-ajax.php:193 +msgid "Browse" +msgstr "Gennemse" + +#: includes/admin/class-mp-ajax.php:184 includes/admin/class-mp-ajax.php:192 +msgid "http://" +msgstr "http://" + +#: includes/admin/class-mp-ajax.php:183 +msgid "External Product URL" +msgstr "Ekstern produkt URL" + +#: includes/admin/class-mp-ajax.php:237 +msgid "Limit Per Order" +msgstr "Begræns per ordre" + +#: includes/admin/class-mp-ajax.php:177 +#: includes/admin/class-mp-products-admin.php:1520 +msgid "Enter Price" +msgstr "Indtast pris" + +#: includes/admin/class-mp-ajax.php:174 +#: includes/admin/class-mp-products-admin.php:1512 +msgid "Enter SKU" +msgstr "Indtast SKU" + +#: includes/admin/class-mp-ajax.php:173 +msgid "(Stock Keeping Unit)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:158 +msgid "Remove Image" +msgstr "Fjern billede" + +#: includes/admin/class-mp-ajax.php:74 +msgid "Variation Draft" +msgstr "Variation kladde" + +#: includes/admin/class-mp-admin.php:296 +#: includes/admin/class-mp-dashboard-widgets.php:70 +msgid "Please wait...saving in progress..." +msgstr "Vent venligst...er i gang med at gemme..." + +#: includes/admin/class-mp-admin.php:295 +#: includes/admin/class-mp-dashboard-widgets.php:69 +msgid "Input is required" +msgstr "Input er påkrævet" + +#: includes/admin/class-mp-admin.php:294 +#: includes/admin/class-mp-dashboard-widgets.php:68 +msgid "Valid number is required" +msgstr "Gyldigt nummer er påkrævet" + +#: includes/admin/class-mp-admin.php:292 +#: includes/admin/class-mp-dashboard-widgets.php:66 +msgid "Delete %s product variant" +msgstr "Slet %s produktvariant" + +#: includes/admin/class-mp-admin.php:291 +#: includes/admin/class-mp-dashboard-widgets.php:65 +msgid "Delete %s product variants" +msgstr "Slet %s produktvarianter" + +#: includes/admin/class-mp-admin.php:290 +#: includes/admin/class-mp-dashboard-widgets.php:64 +msgid "Update inventory for %s product variant" +msgstr "Opdater beholdning for %s produktvariant" + +#: includes/admin/class-mp-admin.php:289 +#: includes/admin/class-mp-dashboard-widgets.php:63 +msgid "Update inventory for %s product variants" +msgstr "Opdater beholdning for %s produktvarianter" + +#: includes/admin/class-mp-admin.php:288 +#: includes/admin/class-mp-dashboard-widgets.php:62 +msgid "Update price for %s product variant" +msgstr "Opdater pris for %s produktvariant" + +#: includes/admin/class-mp-admin.php:287 +#: includes/admin/class-mp-dashboard-widgets.php:61 +msgid "Update prices for %s product variants" +msgstr "Opdater priser for %s produktvarianter" + +#: includes/admin/class-mp-admin.php:285 +#: includes/admin/class-mp-dashboard-widgets.php:59 +msgid "Creating variations, please wait..." +msgstr "Opretter variationer, vent venligst..." + +#: includes/admin/class-mp-admin.php:96 +msgid "The following payment gateways have been deprecated, Cubepoints, Bitpay, iDEAL, Skrill, Google Checkout. If you were using one of these gateways, please setup a new payment gateway here." +msgstr "De følgende betaling gateways er forældet, Cubepoints, Bitpay, iDEAL, Skrill, Google Checkout. Hvis du gjorde brug af en af disse gateways, så venligst installer en ny betalings gateway her." + +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:61 +msgid "Packing Slip" +msgstr "Pakkeseddel" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:71 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:71 +#: includes/common/class-mp-gdpr.php:399 includes/common/class-mp-order.php:872 +#: includes/common/helpers.php:164 includes/public/class-mp-checkout.php:1434 +msgid "Shipping Address" +msgstr "Forsendelsesadresse" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:66 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:66 +#: includes/common/class-mp-gdpr.php:392 includes/common/class-mp-order.php:864 +#: includes/common/helpers.php:163 includes/public/class-mp-checkout.php:1427 +msgid "Billing Address" +msgstr "Opkrævningsadresse" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:61 +msgid "Invoice" +msgstr "Faktura" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:258 +msgid "Shipping Email: %s" +msgstr "Forsendelse Email: %s" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:256 +msgid "Email: %s" +msgstr "Email: %s" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:235 +msgid "Payment Method: %s" +msgstr "Betalingsmetode: %s" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:79 +msgid "The dir %s not exist or not writeable" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Packing Slip" +msgstr "PDF Pakkeseddel" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Invoice" +msgstr "PDF Faktura" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:239 +msgid "Shop header/logo" +msgstr "Shop sidehoved/logo" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:233 +msgid "Choose a template" +msgstr "Vælg en skabelon" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:226 +msgid "Template Settings" +msgstr "Skabelon indstillinger" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:221 +msgid "Disable automatic creation/attachment of invoices when only free products are ordered" +msgstr "Deaktiver automatisk oprettelse/vedhæftning af faktura, hvis der kun bestilles gratis produkter" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:220 +msgid "Disable for free products" +msgstr "Deaktiver for gratis produkter" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:216 +msgid "Attach invoice to" +msgstr "Vedhæft faktura til" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:214 +msgid "Customer Order Shipped email" +msgstr "Kunde Ordre Afsendt email" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:212 +msgid "Customer New Order email" +msgstr "Kunde Ny Ordre email" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:211 +msgid "Admin New Order email" +msgstr "Admin Ny Ordre email" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:206 +msgid "download" +msgstr "download" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:205 +msgid "How do you want to view the PDF?" +msgstr "Hvordan ønsker du at vise PDF´en?" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:203 +msgid "Open the PDF in a new browser tab/window" +msgstr "Åbn PDF i et nyt faneblad/vindue" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:202 +msgid "Download the PDF" +msgstr "Download PDF" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:158 +msgid "Export PDF" +msgstr "Eksporter PDF" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:103 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:106 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:109 +msgid "You can't download this order invoice" +msgstr "Du kan ikke downloade denne ordre faktura" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:76 +msgid "Invalid Request" +msgstr "Ugyldig anmodning" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:72 +msgid "Order not exist!" +msgstr "Ordre eksistere ikke!" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:67 +msgid "Invalid ID" +msgstr "Ugyldig iD" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1293 +msgid "Coupon added successfully" +msgstr "Kupon tilføjet" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1292 +msgid "Please enter a code" +msgstr "Indtast venligst en kode" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1247 +msgid "No end" +msgstr "Slutter aldrig" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1200 +msgid "Valid Dates" +msgstr "Gyldige datoer" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1195 +msgid "Code" +msgstr "Kode" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1027 +msgid "No Coupons found in Trash" +msgstr "Ingen kuponer fundet i papirkurven" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1026 +msgid "No Coupons Found" +msgstr "Ingen kuponer fundet" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1025 +msgid "Search Coupons" +msgstr "Søg kuponer" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1024 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1028 +msgid "View Coupon" +msgstr "Se Kupon" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1023 +msgid "New Coupon" +msgstr "Ny kupon" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1020 +msgid "Create New Coupon" +msgstr "Opret ny kupon" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1017 +msgid "Manage Coupons" +msgstr "Administrer kuponer" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1002 +msgid "An error occurred while removing your coupon. Please try again." +msgstr "Der opstod en fejl under fjernelse af din kupon. Prøv venligst igen." + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:964 +msgid "Coupon can't be applied to this cart" +msgstr "Kupon kan ikke anvendes til denne kurv" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:951 +msgid "Invalid coupon code" +msgstr "Ugyldig kuponkode" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:794 +msgid "Help Text" +msgstr "Hjælpetekst" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:789 +msgid "Form Title" +msgstr "Formular titel" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:783 +msgid "Coupons Settings" +msgstr "Kuponindstillinger" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:764 +msgid "End Date" +msgstr "Slutdato" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:758 +msgid "Does coupon have an end date?" +msgstr "Har kuponen en slutdato?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:696 +msgid "Select Products" +msgstr "Vælg produkter" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:688 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:723 +#: includes/common/payment-gateways/paypal-payflow.php:402 +msgid "User" +msgstr "Bruger" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:638 +msgid "Max Uses" +msgstr "Max anvendelser" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:636 +msgid "Enter the maximum number of times this coupon can be used." +msgstr "Indtast det maksimale antal gange denne kupon kan anvendes." + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:623 +msgid "Leave blank to allow all other coupons." +msgstr "Efterlad bland for at tillade alle andre kuponer." + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:622 +msgid "Select combinable coupons" +msgstr "Vælg kombinerbare kuponer" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:618 +msgid "Can this coupon be combined with other coupons?" +msgstr "Kan denne kupin kombineres med andre kuponer?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:613 +msgid "Apply to each applicable item once per cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:612 +msgid "Apply to each applicable item and quantity ordered" +msgstr "Anvend på hver relevant element og mængde bestilt" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:609 +msgid "How should the discount amount be applied?" +msgstr "Hvordan skal rabatbeløbet anvendes?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:605 +msgid "Discount Amount" +msgstr "Rabat beløb" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:604 +msgid "Value must either be a decimal number or a percentage" +msgstr "Værdien skal enten være et decimaltal eller en procentdel" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:602 +msgid "If you would like to give a percentage-based discount make sure to include the percent (%) symbol. Otherwise, the discount will be applied as a fixed amount off." +msgstr "Hvis du gerne vil give en procentdel-baseret rabat så husk at inkludere procent (%) symbolet. Ellers vil rabatten blive anvendt som et fast beløb" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:595 +msgid "Letters and Numbers only." +msgstr "Kun bogstaver og tal." + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:589 +msgid "Coupon Settings" +msgstr "Kuponindstillinger" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:447 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:795 +msgid "More than one code? That's OK! Just be sure to enter one at a time." +msgstr "Mere end en kode? Det er helt okay! Bare husk kun at indtaste en ad gangen." + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:444 +msgid "Apply Code" +msgstr "Anvend kode" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:314 +msgid "Coupon Discounts" +msgstr "Kupon Rabatter" + +#: includes/addons/class-mp-addons-list-table.php:89 +msgid "1 add-on disabled" +msgid_plural "%s add-ons disabled" +msgstr[0] "1 tilføjelse deaktiveret" +msgstr[1] "%s tilføjelser deaktiveret" + +#: includes/addons/class-mp-addons-list-table.php:84 +msgid "1 add-on enabled" +msgid_plural "%s add-ons enabled" +msgstr[0] "1 tilføjelse aktiveret" +msgstr[1] "%s tilføjelser aktiveret" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Disabled" +msgstr "Deaktiveret" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Enable add-on" +msgstr "Aktiver tilføjelse" + +#: includes/addons/class-mp-addons-list-table.php:45 +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:129 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:67 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:135 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:168 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:202 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:263 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:296 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:330 +msgid "Enabled" +msgstr "Aktiveret" + +#: includes/addons/class-mp-addons-list-table.php:45 +msgid "Disable add-on" +msgstr "Deaktiver tilføjelse" + +#: includes/addons/class-mp-addons-list-table.php:34 +msgid "Disable" +msgstr "Deaktiver" + +#: includes/addons/class-mp-addons-list-table.php:33 +msgid "Enable" +msgstr "Aktiver" + +#: includes/addons/class-mp-addons-list-table.php:21 +#: includes/admin/class-mp-products-admin.php:2280 +#: includes/common/class-mp-product.php:2916 +msgid "Description" +msgstr "Beskrivelse" + +#: includes/common/template-functions.php:2889 +#: includes/multisite/template-functions.php:407 +msgid "Popularity (Least Popular - Most Popular)" +msgstr "Popularitet (Mindst populær - mest populær)" + +#: includes/common/template-functions.php:2888 +#: includes/multisite/template-functions.php:406 +msgid "Popularity (Most Popular - Least Popular)" +msgstr "Popularitet (Mest populær - Mindst populær)" + +#: includes/common/template-functions.php:2885 +#: includes/multisite/template-functions.php:403 +msgid "Name (Z-A)" +msgstr "Navn (Z-A)" + +#: includes/common/template-functions.php:2884 +#: includes/multisite/template-functions.php:402 +msgid "Name (A-Z)" +msgstr "Navn (A-Z)" + +#: includes/common/template-functions.php:2883 +#: includes/multisite/template-functions.php:401 +msgid "Release Date (Oldest to Latest)" +msgstr "Udgivelsesdato (Ældste til nyeste)" + +#: includes/common/template-functions.php:2882 +#: includes/multisite/template-functions.php:400 +msgid "Release Date (Latest to Oldest)" +msgstr "Udgivelsesdato (Nyeste til ældste)" + +#: includes/admin/class-mp-dashboard-widgets.php:284 +msgid "paid" +msgstr "betalt" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "One Time Pickup" +msgstr "Afhentning (engang)" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Customer Counter" +msgstr "Kundetæller" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Daily Pickup" +msgstr "Daglig afhentning" + +#: includes/common/shipping-modules/mp-ups.php:182 +msgid "For the most accurate rates, please select the appropriate pick up type for your business." +msgstr "For mere præcise priser, bedes du vælge den mest relevante afhentningsform for din virksomhed." + +#: includes/admin/class-mp-admin.php:374 +msgid "Page saved." +msgstr "Side gemt." + +#: includes/admin/class-mp-admin.php:370 +msgid "Custom field deleted." +msgstr "Brugerdefineret felt slettet." + +#: includes/admin/class-mp-admin.php:369 +msgid "Custom field updated." +msgstr "Brugerdefineret felt opdateret." + +#: includes/common/payment-gateways/_bitpay.php:541 +msgid "%s - The payment request expired, - %s" +msgstr "%s - Betalingsanmodningen er udløbet. - %s" + +#: includes/common/payment-gateways/_bitpay.php:536 +msgid "%s - The payment not credited in merchants bitpay account, action required. Bitpay invoice status - %s" +msgstr "%s - Betalingen godskrives ikke på bitpay forhandlerkonto, handling er påkrævet. Bitpay faktura status - %s" + +#: includes/common/payment-gateways/_bitpay.php:252 +msgid "If enabled, you will recieve an email for each status update on payment." +msgstr "Ved aktiveret, vil du modtage en e-mail for hver status ændring ved betaling." + +#: includes/common/payment-gateways/_bitpay.php:240 +msgid "Speed at which the bitcoin transaction registers as \"confirmed\" to the store. This overrides your merchant settings on the Bitpay website." +msgstr "Hastigheden på Bitcoin transaktion før den registrere som \"bekræftet\" til butikken. Dette tilsidesætter dine handelsindstillingerne på Bitpay hjemmeside." + +#: includes/common/payment-gateways/_bitpay.php:238 +msgid "Transaction Speed" +msgstr "Transaktionshastighed" + +#: includes/common/payment-gateways/_bitpay.php:244 +msgid "Low" +msgstr "Lav" + +#: includes/common/payment-gateways/_bitpay.php:243 +msgid "Medium" +msgstr "Medium" + +#: includes/common/payment-gateways/_bitpay.php:242 +msgid "High" +msgstr "Høj" + +#: includes/common/payment-gateways/_bitpay.php:177 +#: includes/common/payment-gateways/_bitpay.php:517 +#: includes/common/payment-gateways/_bitpay.php:522 +msgid "%s - The payment request is under process. Bitpay invoice status - %s" +msgstr "%s - Betalingsanmodningen behandles. Bitpay faktura status - %s" + +#: includes/common/payment-gateways/_bitpay.php:175 +#: includes/common/payment-gateways/_bitpay.php:527 +msgid "%s - The payment request has been processed - %s" +msgstr "%s - Betalingsanmodningen er blevet behandlet - %s" + +#: includes/common/payment-gateways/_bitpay.php:150 +#: includes/common/payment-gateways/_bitpay.php:294 +msgid "Incorrect order invoice, please contact site administrator" +msgstr "Forkert ordrefaktura, kontakt ventligst administratoren" + +#: includes/common/payment-gateways/_bitpay.php:141 +msgid "We could not verify order invoice details, please try again or contact site administrator for help" +msgstr "Vi kunne ikke bekræfte fakturaoplysninger, prøv igen eller kontakt administratoren for at få hjælp" + +#: includes/common/payment-gateways/simplify.php:81 +msgid "Login to Simplify to get your API credentials. Enter your test credentials, then live ones when ready." +msgstr "Log ind på Simplify for at få dine API legitimationsoplysninger. Indtast dine test legitimationsoplysninger, og når du er klar skal du bruge dem til live." + +#: includes/common/payment-gateways/paypal-express.php:605 +#: includes/common/payment-gateways/paypal-express.php:647 +msgid "Express Checkout is PayPal's premier checkout solution, which streamlines the checkout process for buyers and keeps them on your site after making a purchase. Unlike PayPal Pro, there are no additional fees to use Express Checkout, though you may need to do a free upgrade to a business account. More Info »" +msgstr "Express Checkout er PayPal's førsteklasses kasseløsning, som effektiviserer købsprocessen for køberne og holder dem på dit websted efter et køb. I modsætning til PayPal Pro er der ingen ekstra gebyrer forbundet med at bruge Express Checkout, dog er du nødt til at lave en gratis opgradering til en firmakonto. Mere info »" + +#. Plugin URI of the plugin/theme +msgid "https://premium.wpmudev.org/project/e-commerce/" +msgstr "https://premium.wpmudev.org/project/e-commerce/" + +#. Author of the plugin/theme +msgid "WPMU DEV" +msgstr "WPMU DEV" + +#: includes/admin/class-mp-orders-admin.php:541 +#: includes/admin/class-mp-orders-admin.php:543 +msgid "Tracking Number" +msgstr "Trackingnummer" + +#: includes/common/class-mp-order.php:805 +#: includes/common/payment-gateways/stripe.php:336 +#: includes/public/class-mp-checkout.php:402 +msgid "Country" +msgstr "Land" + +#: includes/common/class-mp-order.php:784 +#: includes/common/payment-gateways/stripe.php:338 +msgid "City" +msgstr "By" + +#: includes/common/class-mp-order.php:780 +msgid "Address 2" +msgstr "Adresse 2" + +#: includes/common/payment-gateways/stripe.php:340 +msgid "Address" +msgstr "Adresse" + +#: includes/common/class-mp-cart.php:752 includes/common/class-mp-gdpr.php:378 +msgid "Order Total" +msgstr "Total Ordre" + +#: includes/admin/class-mp-orders-admin.php:360 +msgid "Payment Total" +msgstr "Total Betaling" + +#: includes/admin/class-mp-orders-admin.php:347 +msgid "Transaction ID" +msgstr "Transaktions ID" + +#: includes/common/payment-gateways/wepay.php:207 +msgid "The WePay Card Token was not generated correctly. Please go back and try again." +msgstr "WePay kort poletten blev ikke genereret korrekt. Gå venligst tilbage og prøv igen." + +#: includes/common/payment-gateways/wepay.php:186 +#: includes/common/shipping-modules/mp-fedex.php:283 +msgid "Account ID" +msgstr "Konto ID" + +#: includes/common/payment-gateways/wepay.php:179 +msgid "Access Token" +msgstr "Adgangspolet" + +#: includes/common/payment-gateways/wepay.php:172 +msgid "Client Secret" +msgstr "Klient Secret" + +#: includes/common/payment-gateways/wepay.php:165 +msgid "Client ID" +msgstr "Klient ID" + +#: includes/common/payment-gateways/wepay.php:159 +msgid "You must login to WePay to get your API credentials. Make sure to check \"Tokenize credit cards\" option under \"API Keys\" section of your WePay app." +msgstr "Du må logge ind på WePay for at få dine API legitimationsoplysninger. Vær sikker på at afkrydse \"Tokenize credit cards\" muligheden under \"API Keys\" sektionen på din WePay app." + +#: includes/common/payment-gateways/wepay.php:154 +msgid "When in live mode it is recommended to use SSL certificate setup for the site where the checkout form will be displayed." +msgstr "Det anbefales man i live tilstand bruger et SSL certifikat på den del at sitet betalingsformularen vil blive vist." + +#: includes/common/payment-gateways/wepay.php:148 +msgid "Donation" +msgstr "Donation" + +#: includes/common/payment-gateways/wepay.php:147 +msgid "Event" +msgstr "Event" + +#: includes/common/payment-gateways/wepay.php:146 +msgid "Personal" +msgstr "Personlig" + +#: includes/common/payment-gateways/wepay.php:145 +msgid "Service" +msgstr "Service" + +#: includes/common/payment-gateways/wepay.php:144 +msgid "Goods" +msgstr "Varer" + +#: includes/common/payment-gateways/wepay.php:141 +msgid "Choose type of payments" +msgstr "Vælg betalingstype" + +#: includes/common/payment-gateways/wepay.php:140 +msgid "Checkout Type" +msgstr "Bestillingsform" + +#: includes/common/payment-gateways/wepay.php:134 +msgid "Staging" +msgstr "Staging" + +#: includes/common/payment-gateways/wepay.php:131 +msgid "Choose STAGING if you have registered the app on stage.wepay.com, or PRODUCTION if you registered on www.wepay.com" +msgstr "Vælg STAGING hvis du har registreret appen på stage.wepay.com eller PRODUKTION hvis du har registreret dig på www.wepay.com" + +#: includes/common/payment-gateways/wepay.php:36 +#: includes/common/payment-gateways/wepay.php:299 +msgid "WePay" +msgstr "WePay" + +#: includes/common/payment-gateways/_payway.php:366 +msgid "Rejected - A payment was rejected." +msgstr "Annulleret - En betaling blev annulleret." + +#: includes/common/payment-gateways/_payway.php:360 +msgid "Failed - A payment was rejected due to an error." +msgstr "Mislykket - En betaling blev afvist på grund af en fejl." + +#: includes/common/payment-gateways/_payway.php:342 +msgid "PayWay balance, Credit Card, or Instant Transfer" +msgstr "PayWay balance, kreditkort eller øjeblikkelig overførsel" + +#: includes/common/payment-gateways/_payway.php:298 +msgid "Full path of the cacerts.crt file" +msgstr "Fulde sti til cacerts.crt filen" + +#: includes/common/payment-gateways/_payway.php:284 +msgid "User Name" +msgstr "Brugernavn" + +#: includes/common/payment-gateways/_payway.php:277 +msgid "Biller Code" +msgstr "Faktureringskode" + +#: includes/common/payment-gateways/_payway.php:273 +msgid "Log Directory" +msgstr "Logmappen" + +#: includes/common/payment-gateways/_payway.php:266 +msgid "Encryption Key" +msgstr "Krypteringsnøgle" + +#: includes/common/payment-gateways/_payway.php:60 +msgid "Your PayWay transaction has been canceled." +msgstr "Din PayWay transaktion er blevet annulleret." + +#: includes/common/payment-gateways/_payway.php:40 +#: includes/common/payment-gateways/_payway.php:41 +msgid "PayWay" +msgstr "PayWay" + +#: includes/common/payment-gateways/paypal-chained-payments.php:862 +msgid "You must register this application with PayPal using your business account login to get an Application ID that will work with your API credentials. A bit of a hassle, but worth it! In the near future we will be looking for ways to simplify this process. Register then submit your application while logged in to the developer portal. Note that you do not need an Application ID for testing in sandbox mode. More Information »" +msgstr "Du skal registrere denne applikation med PayPal ved hjælp af din virksomheds konto, så du kan få et applikations-id, der skal arbejde sammen med dine API legitimationsoplysninger. Lidt besværligt, men det hele værd! Vi vil i nærmeste fremtid arbejde på at forenkle denne proces. Registrer og tilføj din applikation når du har logget ind på udviklerportalen. Vær opmærksom på du ikke behøver applikations-id for at teste i sandkasse tilstand. Mere information »" + +#: includes/common/payment-gateways/paypal-chained-payments.php:818 +#: includes/common/payment-gateways/paypal-chained-payments.php:840 +#: includes/common/payment-gateways/paypal-express.php:705 +msgid "You must login to PayPal and create an API signature to get your credentials. Instructions »" +msgstr "Du skal logge ind på Paypal og oprette en API signatur for at få dine legitimationsoplysninger. Instruktioner »" + +#: includes/common/payment-gateways/paypal-payflow.php:378 +msgid "Use Payflow payment gateway to accept online payments using your Internet merchant account and processing network. PayPal Payflow Pro is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway." +msgstr "Brug Payflow betalingsgateway til at acceptere online betalinger når du bruger din online købmandskonto og netværk. PayPal Payflow Pro er en tilpasselig betalingsløsning, der giver den handlende kontrol over alle trin i behandlingen af ​​en transaktion. Et SSL-certifikat er påkrævet for at bruge denne gateway." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:595 +msgid "Tags Only" +msgstr "Kun tags" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:594 +msgid "Category Only" +msgstr "Kun kategori" + +#: includes/admin/class-mp-shortcode-builder.php:795 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:593 +msgid "Category & Tags" +msgstr "Kategori & Tags" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:591 +msgid "Relate Products By" +msgstr "Relater produkter efter" + +#: includes/admin/class-mp-shortcode-builder.php:1008 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:455 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:751 +msgid "Right" +msgstr "Højre" + +#: includes/admin/class-mp-shortcode-builder.php:1007 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:454 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:749 +msgid "Left" +msgstr "Venstre" + +#: includes/admin/class-mp-shortcode-builder.php:1009 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:750 +msgid "Center" +msgstr "Centrer" + +#: marketpress.php:273 +msgid "Orders from your e-commerce store." +msgstr "Ordrer fra din netbutik." + +#: marketpress.php:231 +msgid "Products for your e-commerce store." +msgstr "Produkter fra din netbutik." + +#: marketpress.php:222 +msgid "Edit Product" +msgstr "Rediger produkt" + +#. Description of the plugin/theme +msgid "The complete WordPress ecommerce plugin - works perfectly with BuddyPress and Multisite too to create a social marketplace, where you can take a percentage! Activate the plugin, adjust your settings then add some products to your store." +msgstr "Det totale WordPress ecommerce plugin - virker perfekt med BuddyPress og også Multisite, hvis du vil lave en social markedsplads, hvor du kan tage procenter af salg! Aktivér pluginnet, tilpas indstillingerne og tilføj så nogle produkter til din butik." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:272 +msgid "Beside" +msgstr "Sidevers" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:271 +msgid "Above" +msgstr "Over" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:268 +msgid "Pin Count" +msgstr "Pin tæller" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:261 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:287 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:318 +msgid "All View" +msgstr "Se Alt" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:260 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:286 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:317 +msgid "Single View" +msgstr "Se Enkelt(e)" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:259 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:285 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:316 +msgid "Off" +msgstr "Sluk" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:578 +msgid "Related Product Limit" +msgstr "Begrænsning For Relaterede Produkter" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:681 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1201 +msgid "Applies To" +msgstr "Knyttes til" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:685 +msgid "All Products" +msgstr "Alle Produkter" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:487 +msgid "The label shown for the tax line item in the cart. Taxes, VAT, GST, etc." +msgstr "Etiketten som vises for skatter og afgifter i indkøbsvognen. Skatter, Moms, ETC." + +#: includes/admin/class-mp-setup-wizard.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:485 +msgid "Tax Label" +msgstr "Skatteetiket" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:81 +msgid "Apply" +msgstr "Anvend" + +#: includes/admin/class-mp-admin.php:192 +msgid "MarketPress Instructions" +msgstr "MarketPress Instruktioner" + +#: includes/admin/class-mp-products-admin.php:1954 +#: includes/admin/class-mp-products-admin.php:2194 includes/common/data.php:62 +#: includes/common/helpers.php:150 +msgid "Taxes" +msgstr "Skatter og Afgifter" + +#: includes/admin/class-mp-products-admin.php:1417 +#: includes/common/class-mp-product.php:2900 +msgid "Related Products" +msgstr "Relaterede Produkter" + +#: includes/common/shipping-modules/mp-usps.php:282 +#: includes/common/shipping-modules/mp-usps.php:316 +msgid "@ Max" +msgstr "@ Max" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "(3-5 days)" +msgstr "(3-5 dage)" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "Priority Mail Express International Padded Flat Rate Envelope" +msgstr "Priority Mail Express International Padded Flat Rate Envelope" + +#: includes/common/shipping-modules/mp-usps.php:92 +msgid "Priority Mail Padded Flat Rate Envelope" +msgstr "Priority Mail Padded Flat Rate Envelope" + +#: includes/common/shipping-modules/mp-pickup.php:171 +#: includes/common/shipping-modules/mp-pickup.php:247 +msgid "In Store" +msgstr "I butikken" + +#: includes/common/shipping-modules/mp-pickup.php:159 +msgid "Pickup Fee" +msgstr "Afhentningsgebyr" + +#: includes/common/shipping-modules/mp-pickup.php:141 +msgid "This option allows your customers to indicate that they will pick-up their order at your place of business." +msgstr "Denne indstilling lader din kunder fortælle dig, at de vil afhente ordren på din forretningsadresse." + +#: includes/common/shipping-modules/mp-pickup.php:60 +#: includes/common/shipping-modules/mp-pickup.php:76 +#: includes/common/shipping-modules/mp-pickup.php:176 +msgid "Pickup Instructions" +msgstr "Instruktioner om Afhentning" + +#: includes/common/shipping-modules/mp-pickup.php:24 +#: includes/common/shipping-modules/mp-pickup.php:254 +msgid "Pickup" +msgstr "Afhentning" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping - 0.00" +msgstr "Gratis Fragt - 0.00" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:256 +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:440 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping" +msgstr "Gratis Fragt" + +#: includes/common/shipping-modules/mp-fedex.php:309 +msgid "Your Packaging" +msgstr "Your Packaging" + +#: includes/common/shipping-modules/mp-fedex.php:301 +msgid "Station" +msgstr "Station" + +#: includes/common/shipping-modules/mp-fedex.php:300 +msgid "Request Courier" +msgstr "Anmod Kurer" + +#: includes/common/shipping-modules/mp-fedex.php:299 +msgid "Drop Box" +msgstr "Drop Box" + +#: includes/common/shipping-modules/mp-fedex.php:298 +msgid "Business Service Center" +msgstr "Business Service Center" + +#: includes/common/shipping-modules/mp-fedex.php:297 +msgid "Regular Pickup" +msgstr "Regular Pickup" + +#: includes/common/payment-gateways/wepay.php:135 +#: includes/common/shipping-modules/mp-fedex.php:264 +msgid "Production" +msgstr "Produktion" + +#: includes/common/payment-gateways/simplify.php:207 +msgid "Simplify Commerce by MasterCard" +msgstr "Simplify Commerce af MasterCard" + +#: includes/common/payment-gateways/simplify.php:104 +msgid "When in live mode, although it is not required, Simplify recommends you have an SSL certificate." +msgstr "Når du går live anbefaler Simplify - selvom det ikke er påkrævet - at anvende SSL certifikat." + +#: includes/common/payment-gateways/paymill.php:183 +#: includes/common/payment-gateways/simplify.php:87 +msgid "Public Key" +msgstr "Public Key" + +#: includes/common/payment-gateways/paymill.php:175 +#: includes/common/payment-gateways/simplify.php:94 +msgid "Private Key" +msgstr "Private Key" + +#: includes/common/payment-gateways/simplify.php:71 +msgid "Simplify helps merchants to accept online payments from Mastercard, Visa, American Express, Discover, JCB, and Diners Club cards. It's that simple. We offer a merchant account and payment gateway in a single, secure package so you can concentrate on what really matters to your business. Only supports USD currently." +msgstr "Simplify hjælper forretninger med at godkende online betalinger fra Mastercard, Visa, American Express, Discover, JCB og Diners Club. Det er så simpelt. Vi tilbyder en handlende konto og betalingsgateway i en enkelt, sikker pakke, så du kan koncentrere dig om, hvad der virkelig betyder noget for din virksomhed. Understøtter kun USD i øjeblikket." + +#: includes/common/payment-gateways/wepay.php:267 +msgid "%1$s" +msgstr "%1$s" + +#: includes/common/payment-gateways/simplify.php:151 +msgid "The Simplify Token was not generated correctly. Please go back and try again." +msgstr "Simplify Token blev ikke genereret korrekt. Vær venlig at prøve igen." + +#: includes/common/payment-gateways/simplify.php:18 +msgid "Simplify" +msgstr "Simplify" + +#: includes/common/payment-gateways/pin.php:255 +msgid "%1$s Card %2$s" +msgstr "%1$s Kort %2$s" + +#: includes/common/payment-gateways/pin.php:211 +msgid "The PIN Token was not generated correctly. Please go back and try again." +msgstr "Din PIN Token blev ikke genereret korrekt. Vær venlig at gå tilbage og prøv igen." + +#: includes/common/payment-gateways/pin.php:187 +msgid "Selecting a currency other than currency supported by PIN may cause problems at checkout." +msgstr "At vælge en anderledes valuta end den der understøttes af PIN kan forårsage problemer ved Check Out." + +#: includes/common/payment-gateways/pin.php:164 +msgid "You must login to PIN to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "Du skal logge ind på PIN for at få dine API credentials. Du kan indtaste dine test Keys og så de korrekte når du er klar." + +#: includes/common/payment-gateways/pin.php:158 +msgid "When in live mode PIN recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "Når du går live anbefaler PIN at du har et SSL certifikat opsat for den side hvor din check out formular bliver vist." + +#: includes/common/payment-gateways/pin.php:45 +#: includes/common/payment-gateways/pin.php:286 +msgid "PIN" +msgstr "PIN" + +#: includes/common/payment-gateways/paypal-express.php:830 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer" +msgstr "En betaling blev tilbageført grundet en chargeback eller en anden type tilbageførsel. Pengene er fjernet fra din konto og tilbageført til køber." + +#: includes/common/payment-gateways/paypal-chained-payments.php:534 +#: includes/common/payment-gateways/paypal-express.php:865 +msgid "The payment is pending" +msgstr "Betaling afventer" + +#: includes/common/payment-gateways/paymill.php:235 +msgid "The Paymill Token was not generated correctly. Please go back and try again." +msgstr "Paymill Token blev ikke genereret korrekt. Gå tilbage og prøv igen." + +#: includes/common/payment-gateways/paymill.php:169 +msgid "You must login to Paymill to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "Du skal logge ind på Paymill for at få dine API credentials. Du kan starte med ine testnøgler, derefter de korrekte når du er klar:" + +#: includes/common/payment-gateways/paymill.php:45 +#: includes/common/payment-gateways/paymill.php:308 +msgid "Paymill" +msgstr "Paymill" + +#: includes/common/payment-gateways/paymill.php:90 +msgid "Invalid cardholder" +msgstr "Forkert kort indehaver" + +#: includes/common/payment-gateways/paymill.php:89 +msgid "Card is no longer valid or has expired" +msgstr "Kortet er ikke længere gyldigt eller er udløbet" + +#: includes/common/payment-gateways/paymill.php:88 +msgid "Please enter a valid Card CVC" +msgstr "Indtast et gyldigt CVC for kortet" + +#: includes/common/payment-gateways/paymill.php:87 +msgid "Please choose a valid Expiration Date." +msgstr "Vælg en gyldig Udløbsdato." + +#: includes/common/payment-gateways/skrill.php:99 +#: includes/common/payment-gateways/skrill.php:100 +msgid "Skrill (Moneybookers)" +msgstr "Skrill (Moneybookers)" + +#: includes/common/shipping-modules/mp-weight-rate.php:24 +#: includes/common/shipping-modules/mp-weight-rate.php:292 +msgid "Weight Rate" +msgstr "Weight Rate" + +#: includes/common/shipping-modules/mp-usps.php:303 +msgid "USPS Offered International Services" +msgstr "USPS Offered International Services" + +#: includes/common/shipping-modules/mp-usps.php:270 +msgid "USPS Offered Domestic Services" +msgstr "USPS Offered Domestic Services" + +#: includes/common/shipping-modules/mp-usps.php:264 +msgid "USPS Settings" +msgstr "USPS Indstillinger" + +#: includes/common/shipping-modules/mp-usps.php:145 +msgid "Flat Rate Large" +msgstr "Flat Rate Large" + +#: includes/common/shipping-modules/mp-usps.php:140 +msgid "Flat Rate Medium 2" +msgstr "Flat Rate Medium 2" + +#: includes/common/shipping-modules/mp-usps.php:135 +msgid "Flat Rate Medium 1" +msgstr "Flat Rate Medium 1" + +#: includes/common/shipping-modules/mp-usps.php:130 +msgid "Flat Rate Small" +msgstr "Flat Rate Small" + +#: includes/common/shipping-modules/mp-usps.php:118 +msgid "First Class International Parcel" +msgstr "First Class International Parcel" + +#: includes/common/shipping-modules/mp-usps.php:114 +msgid "Priority Mail International Small Flat Rate Boxes" +msgstr "Priority Mail International Small Flat Rate Boxes" + +#: includes/common/shipping-modules/mp-usps.php:112 +msgid "Priority Mail International Medium Flat Rate Boxes" +msgstr "Priority Mail International Medium Flat Rate Boxes" + +#: includes/common/shipping-modules/mp-usps.php:110 +msgid "Priority Mail International Large Flat Rate Boxes" +msgstr "Priority Mail International Large Flat Rate Boxes" + +#: includes/common/shipping-modules/mp-usps.php:108 +msgid "Priority Mail International" +msgstr "Priority Mail International" + +#: includes/common/shipping-modules/mp-usps.php:106 +msgid "Express Mail International Flat Rate Boxes" +msgstr "Express Mail International Flat Rate Boxes" + +#: includes/common/shipping-modules/mp-usps.php:104 +msgid "Express Mail International" +msgstr "Express Mail International" + +#: includes/common/shipping-modules/mp-usps.php:98 +msgid "Library Mail" +msgstr "Library Mail" + +#: includes/common/shipping-modules/mp-usps.php:96 +msgid "Media Mail" +msgstr "Media Mail" + +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "First-Class Mail Parcel" +msgstr "First-Class Mail Parcel" + +#: includes/common/shipping-modules/mp-usps.php:90 +msgid "Priority Mail Small Flat Rate Box" +msgstr "Priority Mail Small Flat Rate Box" + +#: includes/common/shipping-modules/mp-usps.php:88 +msgid "Priority Mail Medium Flat Rate Box" +msgstr "Priority Mail Medium Flat Rate Box" + +#: includes/common/shipping-modules/mp-usps.php:86 +#: includes/common/shipping-modules/mp-usps.php:88 +#: includes/common/shipping-modules/mp-usps.php:90 +#: includes/common/shipping-modules/mp-usps.php:92 +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "(2-4 days)" +msgstr "(2-4 dage)" + +#: includes/common/shipping-modules/mp-usps.php:86 +msgid "Priority Mail Large Flat Rate Box" +msgstr "Priority Mail Large Flat Rate Box" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "(2-4) days" +msgstr "(2-4) dage" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "Priority Mail" +msgstr "Priority Mail" + +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "Express Mail Sunday/Holiday Delivery Flat Rate Boxes" +msgstr "Express Mail Sunday/Holiday Delivery Flat Rate Boxes" + +#: includes/common/shipping-modules/mp-usps.php:80 +msgid "Express Mail Flat Rate Boxes Hold For Pickup" +msgstr "Express Mail Flat Rate Boxes Hold For Pickup" + +#: includes/common/shipping-modules/mp-usps.php:78 +msgid "Express Mail Flat Rate Boxes" +msgstr "Express Mail Flat Rate Boxes" + +#: includes/common/shipping-modules/mp-usps.php:76 +msgid "Express Mail Sunday/Holiday Delivery" +msgstr "Express Mail Sunday/Holiday Delivery" + +#: includes/common/shipping-modules/mp-usps.php:74 +msgid "Express Mail Hold For Pickup" +msgstr "Express Mail Hold For Pickup" + +#: includes/common/shipping-modules/mp-usps.php:72 +#: includes/common/shipping-modules/mp-usps.php:74 +#: includes/common/shipping-modules/mp-usps.php:76 +#: includes/common/shipping-modules/mp-usps.php:78 +#: includes/common/shipping-modules/mp-usps.php:80 +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "(1-2 days)" +msgstr "(1-2 days)" + +#: includes/common/shipping-modules/mp-usps.php:72 +msgid "Express Mail" +msgstr "Express Mail" + +#: includes/common/shipping-modules/mp-usps.php:67 +#: includes/common/shipping-modules/mp-usps.php:902 +msgid "USPS" +msgstr "USPS" + +#: includes/common/shipping-modules/mp-ups.php:534 +msgid "UPS (beta)" +msgstr "UPS (beta)" + +#: includes/common/shipping-modules/mp-ups.php:166 +msgid "Required if using negotiated rates" +msgstr "Påkrævet hvis der anvendes forhandklede priser" + +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "Saver" +msgstr "Saver" + +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "Worldwide Express Plus" +msgstr "Worldwide Express Plus" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "(Scheduled)" +msgstr "(Planlagt)" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "Standard" +msgstr "Standard" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "(2-5 Days)" +msgstr "(2-5 Dage)" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "Worldwide Expedited" +msgstr "Worldwide Expedited" + +#: includes/common/shipping-modules/mp-ups.php:54 +msgid "Worldwide Express" +msgstr "Worldwide Express" + +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "2nd Day Air AM" +msgstr "2nd Day Air AM" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "(1 Days)" +msgstr "(1 Dag)" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "Next Day Air Early AM" +msgstr "Next Day Air Early AM" + +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "Next Day Air Saver" +msgstr "Next Day Air Saver" + +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "3 Day Select" +msgstr "3 Day Select" + +#: includes/common/shipping-modules/mp-ups.php:49 +msgid "Ground" +msgstr "Ground" + +#: includes/common/shipping-modules/mp-ups.php:48 +msgid "2nd Day Air" +msgstr "2nd Day Air" + +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "Next Day Air" +msgstr "Next Day Air" + +#: includes/admin/class-mp-orders-admin.php:475 +#: includes/common/shipping-modules/mp-ups.php:43 +msgid "UPS" +msgstr "UPS" + +#: includes/common/shipping-modules/mp-table-rate.php:27 +#: includes/common/shipping-modules/mp-table-rate.php:318 +msgid "Table Rate" +msgstr "Table Rate" + +#: includes/common/shipping-modules/mp-table-quantity.php:71 +#: includes/common/shipping-modules/mp-table-quantity.php:77 +msgid "Shipping Cost: " +msgstr "Shipping Cost: " + +#: includes/common/shipping-modules/mp-table-quantity.php:70 +#: includes/common/shipping-modules/mp-table-quantity.php:76 +msgid "If quantity is greater than:" +msgstr "Hvis kvantitet er større end:" + +#: includes/common/shipping-modules/mp-table-quantity.php:66 +msgid "Each band must be a higher price than the one above it." +msgstr "Hvert bånd skal have en højere pris end det ovenfor." + +#: includes/common/shipping-modules/mp-table-quantity.php:56 +msgid "Number of Bands:" +msgstr "Antal Bånd:" + +#: includes/common/shipping-modules/mp-table-quantity.php:53 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Each layer must be a higher quantity than the previous." +msgstr "Vær sikker på at indtaste en fragtpris for hver mulighed- i modsat fald får kunder disse kunder gratis shipping. Hvert lag skal have et højere antal end det foregående." + +#: includes/common/shipping-modules/mp-table-quantity.php:51 +msgid "Table Quantity Settings" +msgstr "Table Quantity Settings" + +#: includes/common/shipping-modules/mp-table-quantity.php:31 +msgid "Table Quantity" +msgstr "Table Quantity" + +#: includes/common/shipping-modules/mp-flat-rate.php:135 +#: includes/common/shipping-modules/mp-table-rate.php:174 +#: includes/common/shipping-modules/mp-weight-rate.php:189 +msgid "European Union" +msgstr "Den Europæiske Union" + +#: includes/common/shipping-modules/mp-flat-rate.php:123 +#: includes/common/shipping-modules/mp-table-rate.php:162 +#: includes/common/shipping-modules/mp-weight-rate.php:177 +msgid "United States" +msgstr "United States" + +#: includes/common/shipping-modules/mp-flat-rate.php:111 +#: includes/common/shipping-modules/mp-table-rate.php:151 +#: includes/common/shipping-modules/mp-weight-rate.php:166 +msgid "In Country" +msgstr "In Country" + +#: includes/common/shipping-modules/mp-flat-rate.php:146 +#: includes/common/shipping-modules/mp-table-rate.php:186 +#: includes/common/shipping-modules/mp-weight-rate.php:201 +msgid "International" +msgstr "International" + +#: includes/common/shipping-modules/mp-flat-rate.php:101 +#: includes/common/shipping-modules/mp-table-rate.php:141 +#: includes/common/shipping-modules/mp-weight-rate.php:156 +msgid "Canada" +msgstr "Canada" + +#: includes/common/shipping-modules/mp-flat-rate.php:92 +#: includes/common/shipping-modules/mp-table-rate.php:132 +#: includes/common/shipping-modules/mp-weight-rate.php:147 +msgid "Hawaii and Alaska" +msgstr "Hawaii and Alaska" + +#: includes/common/shipping-modules/mp-flat-rate.php:83 +#: includes/common/shipping-modules/mp-table-rate.php:123 +#: includes/common/shipping-modules/mp-weight-rate.php:138 +msgid "Lower 48 States" +msgstr "Lower 48 States" + +#: includes/common/shipping-modules/mp-flat-rate.php:64 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping." +msgstr "Vær sikker på at indtaste en shipping pris for hver mulighed eller dine kunder får gratis levering." + +#: includes/common/shipping-modules/mp-flat-rate.php:25 +#: includes/common/shipping-modules/mp-flat-rate.php:223 +msgid "Flat Rate" +msgstr "Flat Rate" + +#: includes/common/shipping-modules/mp-fedex.php:761 +msgid "FedEx (beta)" +msgstr "FedEx (beta)" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Centimeters" +msgstr "Centimeters" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Inches" +msgstr "Inches" + +#: includes/admin/class-mp-products-admin.php:1676 +#: includes/admin/class-mp-setup-wizard.php:547 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:166 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +msgid "Kilograms" +msgstr "Kilograms" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:103 +msgid " %1$s - %2$s" +msgstr " %1$s - %2$s" + +#: includes/common/shipping-modules/mp-usps.php:358 +msgid "Max Weight per Box" +msgstr "Max Weight per Box" + +#: includes/common/shipping-modules/mp-usps.php:356 +msgid "Box Dimensions" +msgstr "Kasse dimensioner" + +#: includes/common/shipping-modules/mp-usps.php:354 +msgid "Box Name" +msgstr "Kasse navn" + +#: includes/common/shipping-modules/mp-usps.php:344 +msgid "Total weight selects the box size used for calculating Shipping costs." +msgstr "Total weight selects the box size used for calculating Shipping costs." + +#: includes/common/shipping-modules/mp-usps.php:343 +msgid "For each box defined enter the maximum weight it can contain." +msgstr "For each box defined enter the maximum weight it can contain." + +#: includes/common/shipping-modules/mp-usps.php:341 +msgid "Enter your standard box sizes as LengthxWidthxHeight" +msgstr "Enter your standard box sizes as LengthxWidthxHeight" + +#: includes/common/shipping-modules/mp-fedex.php:386 +#: includes/common/shipping-modules/mp-ups.php:193 +#: includes/common/shipping-modules/mp-usps.php:234 +#: includes/common/shipping-modules/mp-usps.php:338 +msgid "Standard Boxes and Weight Limits" +msgstr "Standard Boxes and Weight Limits" + +#: includes/common/shipping-modules/mp-usps.php:328 +msgid "Handling Charge per Interntional Shipment" +msgstr "Handling Charge per Interntional Shipment" + +#: includes/common/shipping-modules/mp-usps.php:294 +msgid "Handling Charge per Domestic Shipment " +msgstr "Handling Charge per Domestic Shipment" + +#: includes/common/shipping-modules/mp-fedex.php:388 +#: includes/common/shipping-modules/mp-ups.php:196 +#: includes/common/shipping-modules/mp-usps.php:237 +msgid "Add Box" +msgstr "Add Box" + +#: includes/common/shipping-modules/mp-fedex.php:63 +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "(Next Day)" +msgstr "(Next Day)" + +#: includes/common/shipping-modules/mp-fedex.php:63 +msgid "Europe First International Priority" +msgstr "Europe First International Priority" + +#: includes/common/shipping-modules/mp-fedex.php:62 +msgid "International Priority" +msgstr "International Priority" + +#: includes/common/shipping-modules/mp-fedex.php:61 +#: includes/common/shipping-modules/mp-fedex.php:62 +#: includes/common/shipping-modules/mp-ups.php:54 +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "(1-3 Days)" +msgstr "(1-3 Days)" + +#: includes/common/shipping-modules/mp-fedex.php:61 +msgid "International First" +msgstr "International First" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "(5 Days)" +msgstr "(5 Days)" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "International Economy" +msgstr "International Economy" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "(2-7 Days)" +msgstr "(2-7 Days)" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "Smart Post" +msgstr "Smart Post" + +#: includes/common/shipping-modules/mp-fedex.php:55 +#: includes/common/shipping-modules/mp-ups.php:49 +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "(1-5 Days)" +msgstr "(1-5 Days)" + +#: includes/common/shipping-modules/mp-fedex.php:55 +msgid "Ground Home Delivery" +msgstr "Ground Home Delivery" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "(1-7 Days)" +msgstr "(1-7 Days)" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "Fedex Ground" +msgstr "Fedex Ground" + +#: includes/common/shipping-modules/mp-fedex.php:53 +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "(3 Days)" +msgstr "(3 Days)" + +#: includes/common/shipping-modules/mp-fedex.php:53 +msgid "Fedex Express Saver" +msgstr "Fedex Express Saver" + +#: includes/common/shipping-modules/mp-fedex.php:52 +#: includes/common/shipping-modules/mp-ups.php:48 +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "(2 Days)" +msgstr "(2 Days)" + +#: includes/common/shipping-modules/mp-fedex.php:52 +msgid "Fedex 2 Day" +msgstr "Fedex 2 Day" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "(2 Days am)" +msgstr "(2 Days am)" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "Fedex 2 Day AM" +msgstr "Fedex 2 Day AM" + +#: includes/common/shipping-modules/mp-fedex.php:50 +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "(1 Day)" +msgstr "(1 Day)" + +#: includes/common/shipping-modules/mp-fedex.php:50 +msgid "Standard Overnight" +msgstr "Standard Overnight" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "(1 Day am )" +msgstr "(1 Day am )" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "Priority Overnight" +msgstr "Priority Overnight" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "(1 Day am)" +msgstr "(1 Day am)" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "First Overnight" +msgstr "First Overnight" + +#: includes/admin/class-mp-orders-admin.php:476 +#: includes/common/shipping-modules/mp-fedex.php:31 +msgid "FedEx" +msgstr "FedEx" + +#: includes/common/payment-gateways/paymill.php:270 +#: includes/common/payment-gateways/simplify.php:179 +#: includes/common/payment-gateways/stripe.php:365 +msgid "%1$s Card ending in %2$s - Expires %3$s" +msgstr "%1$s Kort med endetal %2$s - Udløber %3$s" + +#: includes/common/payment-gateways/paymill.php:259 +#: includes/common/payment-gateways/pin.php:238 +#: includes/common/payment-gateways/simplify.php:171 +msgid "%s Store Purchase - Order ID: %s, Email: %s" +msgstr "%s Indkøb i butikken - Order ID: %s, Email: %s" + +#: includes/common/payment-gateways/stripe.php:266 +msgid "You must login to Stripe to get your API credentials. You can enter your test credentials, then live ones when ready." +msgstr "Du skal logge ind på Stripe for at få dine API oplysninger. Du kan indtaste dine testoplysninger, derefter de ægte når du er klar til at gå live." + +#: includes/common/payment-gateways/stripe.php:261 +msgid "When in live mode Stripe recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "Når du går live anbefaler Stripe at du har et SSL certifikat sat op for den side hvor din check ud formular vises." + +#: includes/common/payment-gateways/stripe.php:311 +msgid "The Stripe Token was not generated correctly. Please go back and try again." +msgstr "Din Stripe Token blev ikke genereret korrekt. Gå venligst tilbage og prøv igen." + +#: includes/common/payment-gateways/class-mp-gateway-api.php:263 +#: includes/common/payment-gateways/paymill.php:122 +#: includes/common/payment-gateways/stripe.php:222 +msgid "Card Number" +msgstr "Kortnummer" + +#: includes/common/payment-gateways/paymill.php:86 +msgid "Please enter a valid Credit Card Number." +msgstr "Indtast venligst et gyldigt kreditkortnummer." + +#: includes/common/payment-gateways/stripe.php:45 +#: includes/common/payment-gateways/stripe.php:433 +msgid "Stripe" +msgstr "Stripe" + +#: includes/common/payment-gateways/paypal-express.php:750 +msgid "Sets the background color for the payment page. By default, the color is white." +msgstr "Indstiller baggrundsfarven på betalingssiden. Som standard er farven hvid." + +#: includes/common/payment-gateways/paypal-express.php:745 +msgid "Sets the background color for the header of the payment page. By default, the color is white." +msgstr "Indstiller baggrundsfarven for sidehovedet på betalingssiden. Som standard er farven hvid." + +#: includes/common/payment-gateways/paypal-express.php:740 +msgid "Sets the border color around the header of the payment page. The border is a 2-pixel perimeter around the header space, which is 750 pixels wide by 90 pixels high. By default, the color is black." +msgstr "Indstiller kantfarven rundt om sidehovedet på betalingssiden. Kanten er 2px bred og løber rundt om sidehovedeområdet, som er 750px bredt og 90px højt. Som standard er farven sort." + +#: includes/common/payment-gateways/paypal-express.php:735 +msgid "URL for an image you want to appear at the top left of the payment page. The image has a maximum size of 750 pixels wide by 90 pixels high. PayPal recommends that you provide an image that is stored on a secure (https) server. If you do not specify an image, the business name is displayed." +msgstr "URL for et billede, som du ønsker at vise øverst til venstre på betalingssiden. Billede må max være 750px bredt og 90px højt. PayPal anbefaler at du bruger et billede der lages på en sikker (https) server. Hvis du ikke vælger et billede vises butikkens navn." + +#: includes/common/payment-gateways/paypal-express.php:857 +#: includes/common/payment-gateways/paypal-express.php:1131 +msgid "The payment is pending because it is part of an order that has been authorized but not settled." +msgstr "Betalingen er afventende fordi den er en del af en ordre, som er autoriseret men ikke tilendebragt." + +#: includes/common/payment-gateways/paypal-express.php:853 +#: includes/common/payment-gateways/paypal-express.php:1127 +msgid "The payment is pending because it has been authorized but not settled. You must capture the funds first." +msgstr "Betalingen er afventende fordi den er blevet autoriseret men ikke tilendebragt. Du skal opbringe pengene først." + +#: includes/common/payment-gateways/paypal-express.php:847 +#: includes/common/payment-gateways/paypal-express.php:1120 +msgid "You denied the payment when it was marked as pending." +msgstr "Du afviste betalingen mens den var markeret som afventende." + +#: includes/common/payment-gateways/paypal-express.php:837 +#: includes/common/payment-gateways/paypal-express.php:1108 +msgid "A reversal has occurred on this transaction due to an unknown reason." +msgstr "En tilbageførsel findes for denne transaktion af ukendte årsager." + +#: includes/common/payment-gateways/paypal-express.php:836 +#: includes/common/payment-gateways/paypal-express.php:1107 +msgid "A reversal has occurred on this transaction because you have given the customer a refund." +msgstr "En tilbageførsel findes for denne transaktion, idet du har givet din kunde en refusion." + +#: includes/common/payment-gateways/paypal-express.php:835 +#: includes/common/payment-gateways/paypal-express.php:1106 +msgid "A reversal has occurred on this transaction due to a complaint about the transaction from your customer." +msgstr "En tilbageførsel findes for denne transaktion grundet en klage fra din kunde omkring transaktionen." + +#: includes/common/payment-gateways/paypal-express.php:834 +#: includes/common/payment-gateways/paypal-express.php:1105 +msgid "A reversal has occurred on this transaction due to your customer triggering a money-back guarantee." +msgstr "En tilbageførsel findes for denne transaktion grundet det forhold at din kunde, har anvendt sin penge tilbage garanti." + +#: includes/common/payment-gateways/paypal-express.php:833 +#: includes/common/payment-gateways/paypal-express.php:1104 +msgid "A reversal has occurred on this transaction due to a chargeback by your customer." +msgstr "En tilbageførsel findes for denne transaktion grundet tilbagebetaling til din kunde." + +#: includes/common/payment-gateways/paypal-express.php:1101 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer:" +msgstr "En betaling blev tilbageført grundet tilbagebetalingskrav eller anden type af tilbageførsel. Pengene er fjernet fra din konto balance og returneret til køberen:" + +#: includes/common/payment-gateways/paypal-express.php:826 +#: includes/common/payment-gateways/paypal-express.php:1097 +msgid "A payment has been accepted." +msgstr "En betaling er accepteret." + +#: includes/common/payment-gateways/paypal-express.php:818 +#: includes/common/payment-gateways/paypal-express.php:1087 +msgid "The transaction has not terminated, e.g. an authorization may be awaiting completion." +msgstr "Transaktionen er ikke termineret, dette betyder at en autorisation venter at blive fuldført." + +#: includes/common/payment-gateways/payfast.php:531 +#: includes/common/payment-gateways/paypal-express.php:810 +#: includes/common/payment-gateways/paypal-express.php:1077 +msgid "The payment has failed. This happens only if the payment was made from your customer's bank account." +msgstr "Betalingen er fejlet. Dette sker udelukkende hvis betalingen var foretaget fra kundens bankkonto." + +#: includes/common/payment-gateways/paypal-express.php:806 +#: includes/common/payment-gateways/paypal-express.php:1072 +msgid "An authorization for this transaction has been voided." +msgstr "En autorisation for denne transaktion er blevet ugyldig." + +#: includes/common/payment-gateways/paypal-express.php:802 +#: includes/common/payment-gateways/paypal-express.php:1067 +msgid "The authorization period for this payment has been reached." +msgstr "Autorisationsperioden for denne betaling er nået." + +#: includes/common/payment-gateways/paypal-express.php:798 +#: includes/common/payment-gateways/paypal-express.php:1062 +msgid "A reversal has been canceled; for example, when you win a dispute and the funds for the reversal have been returned to you." +msgstr "En tilbageførsel er blevet annulleret; for eksempel når du vinder en disput og pengene derfra bliver returneret til dig." + +#: includes/common/payment-gateways/paypal-express.php:499 +#: includes/common/payment-gateways/paypal-express.php:1163 +msgid "PayPal Express Checkout" +msgstr "PayPal Express Checkout" + +#: includes/common/payment-gateways/paypal-chained-payments.php:798 +msgid "Gateway Settings Page Message" +msgstr "Besked til Gatewayindstillingssiden" + +#: includes/common/payment-gateways/paypal-express.php:725 +msgid "Signature" +msgstr "Signatur" + +#: includes/common/payment-gateways/eway31.php:506 +#: includes/common/payment-gateways/eway31.php:533 +#: includes/common/shipping-modules/mp-fedex.php:276 +msgid "API Password" +msgstr "API Password" + +#: includes/common/payment-gateways/paypal-chained-payments.php:773 +msgid "Enter a percentage of all store sales to collect as a fee. Decimals allowed." +msgstr "Indtast en procentsats for alle salg i butikken som opkræves som gebyr. Decimaler tilladt." + +#: includes/common/payment-gateways/paypal-chained-payments.php:757 +msgid "Using PayPal Chained Payments allows you as the multisite network owner to collect a predefined fee or percentage of all sales on network MarketPress stores! This is invisible to the customers who purchase items in a store, and all PayPal fees will be charged to the store owner. To use this option you must create API credentials, and you should make all other gateways unavailable or limited above." +msgstr "Using PayPal Chained Payments allows you as the multisite network owner to collect a predefined fee or percentage of all sales on network MarketPress stores! This is invisible to the customers who purchase items in a store, and all PayPal fees will be charged to the store owner. To use this option you must create API credentials, and you should make all other gateways unavailable or limited above." + +#: includes/common/payment-gateways/paypal-chained-payments.php:338 +msgid "Please be aware that we will deduct a ?% fee from the total of each transaction in addition to any fees PayPal may charge you. If for any reason you need to refund a customer for an order, please contact us with a screenshot of the refund receipt in your PayPal history as well as the Transaction ID of our fee deduction so we can issue you a refund. Thank you!" +msgstr "Venligst vær opmærksom på, at vi vil trække et ?% gebyr beregnet fra totalen af hver transaktion oveni hvad PayPal trækker. Hvis du af nogen som helst grund skal refundere din kunde for en ordre, så venligst kontakt os med et screenshot af din refunderingskvittering fra din PayPal historik såvel som transaktions ID'et for din refundering, så vi ligeledes kan refundere dig. Mange Tak!" + +#: includes/common/payment-gateways/paypal-chained-payments.php:698 +#: includes/common/payment-gateways/paypal-express.php:149 +msgid "There was a problem connecting to PayPal. Please try again." +msgstr "Der var et problem med at forbinde til PayPal. Prøv venligst igen." + +#: includes/common/payment-gateways/paypal-chained-payments.php:470 +#: includes/common/payment-gateways/paypal-express.php:1053 +msgid "There was a problem verifying the IPN string with PayPal. Please try again." +msgstr "Der var et problem med at verificere din IPN streng hos PayPal. Prøv venligst igen." + +#: includes/common/payment-gateways/paypal-chained-payments.php:310 +msgid "There was a problem connecting to PayPal to check the status of your purchase. Please check the status of your order here »" +msgstr "Der var et problem med at forbinde til PayPal for at checke status på dit køb. Vær venlig at checke status på din ordre her »" + +#: includes/common/payment-gateways/payfast.php:539 +#: includes/common/payment-gateways/paypal-chained-payments.php:254 +#: includes/common/payment-gateways/paypal-express.php:1139 +msgid "The payment is pending." +msgstr "Din betaling afventer." + +#: includes/common/payment-gateways/paypal-chained-payments.php:251 +#: includes/common/payment-gateways/paypal-chained-payments.php:531 +#: includes/common/payment-gateways/paypal-express.php:862 +#: includes/common/payment-gateways/paypal-express.php:1136 +msgid "The payment is pending for an unknown reason. For more information, contact PayPal customer service." +msgstr "Din betaling afventer af ukendte årsager. For yderligere information, kontakt PayPal kundeservice." + +#: includes/common/payment-gateways/paypal-chained-payments.php:250 +#: includes/common/payment-gateways/paypal-chained-payments.php:530 +#: includes/common/payment-gateways/paypal-express.php:861 +#: includes/common/payment-gateways/paypal-express.php:1135 +msgid "The payment is pending because you are not yet verified. You must verify your account before you can accept this payment." +msgstr "Din betaling afventer fordi du endnu ikke er verificeret. Du skal verificere din konto før du kan acceptere denne betaling." + +#: includes/common/payment-gateways/paypal-chained-payments.php:249 +#: includes/common/payment-gateways/paypal-chained-payments.php:529 +#: includes/common/payment-gateways/paypal-express.php:860 +#: includes/common/payment-gateways/paypal-express.php:1134 +msgid "The payment is pending because it was made via credit card and you must upgrade your account to Business or Premier status in order to receive the funds. It can also mean that you have reached the monthly limit for transactions on your account." +msgstr "Din betaling afventer fordi den er foretaget via et kredit kort og du skal opgradere din account til Business eller Premier status for at modtage penge. Det kan også skyldes, at di har nået din månedlige grænse for betalinger til din konto." + +#: includes/common/payment-gateways/paypal-chained-payments.php:248 +#: includes/common/payment-gateways/paypal-chained-payments.php:528 +#: includes/common/payment-gateways/paypal-express.php:859 +#: includes/common/payment-gateways/paypal-express.php:1133 +msgid "The payment is pending because it was made to an email address that is not yet registered or confirmed." +msgstr "Din betaling afventer fordi den foretaget til en email adresse som endnu ikke er registreret eller bekræftet." + +#: includes/common/payment-gateways/paypal-chained-payments.php:247 +#: includes/common/payment-gateways/paypal-chained-payments.php:527 +#: includes/common/payment-gateways/paypal-express.php:858 +#: includes/common/payment-gateways/paypal-express.php:1132 +msgid "The payment is pending while it is being reviewed by PayPal for risk." +msgstr "Din betaling afventer et risikotjek fra PayPal." + +#: includes/common/payment-gateways/paypal-chained-payments.php:246 +#: includes/common/payment-gateways/paypal-chained-payments.php:526 +#: includes/common/payment-gateways/paypal-express.php:856 +#: includes/common/payment-gateways/paypal-express.php:1130 +msgid "You do not have a balance in the currency sent, and you do not have your Payment Receiving Preferences set to automatically convert and accept this payment. You must manually accept or deny this payment." +msgstr "Du har ikke en balance i den afsendte valuta, og du har ikke dine Payment Receiving Preferences sat til automatisk at konvertere og acceptere denne betaling. Du skal manuelt acceptere eller afvise denne betaling." + +#: includes/common/payment-gateways/paypal-chained-payments.php:245 +#: includes/common/payment-gateways/paypal-chained-payments.php:525 +#: includes/common/payment-gateways/paypal-express.php:855 +#: includes/common/payment-gateways/paypal-express.php:1129 +msgid "The payment is pending because you hold a non-U.S. account and do not have a withdrawal mechanism. You must manually accept or deny this payment from your Account Overview." +msgstr "Betalingen er afventende fordi du har en ikke US account og ikke har en hævemekanisme. Du skal manuelt afvise eller acceptere denne betaling fra din kontooversigt." + +#: includes/common/payment-gateways/paypal-chained-payments.php:244 +#: includes/common/payment-gateways/paypal-chained-payments.php:524 +#: includes/common/payment-gateways/paypal-express.php:854 +#: includes/common/payment-gateways/paypal-express.php:1128 +msgid "The payment is pending because it was made by an eCheck that has not yet cleared." +msgstr "Betalingen er afventende fordi den var foretaget via en eCheck, som endnu ikke er gået igennem." + +#: includes/common/payment-gateways/paypal-chained-payments.php:243 +#: includes/common/payment-gateways/paypal-chained-payments.php:523 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences section of your Profile." +msgstr "Betalingen er afventende fordi din kunde ikke har inkluderet en bekræftet forsendelsesadresse og dine betalingsmodtagelses præferencer er sat op sådan, at du manuelt ønsker at afvise eller acceptere sådanne betalinger. For at ændre præferencer, gå til Præferencer for din Profil." + +#: includes/common/payment-gateways/paypal-chained-payments.php:236 +#: includes/common/payment-gateways/paypal-chained-payments.php:516 +msgid "The transaction was rejected by the receiver (you)." +msgstr "Transaktionen blev afvist af modtager (dig)." + +#: includes/common/payment-gateways/paypal-chained-payments.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:510 +#: includes/common/payment-gateways/paypal-express.php:843 +#: includes/common/payment-gateways/paypal-express.php:1115 +msgid "You refunded the payment." +msgstr "Du har refunderet betalingen." + +#: includes/common/payment-gateways/paypal-chained-payments.php:224 +#: includes/common/payment-gateways/paypal-chained-payments.php:504 +msgid "The transaction is in progress." +msgstr "Transaktionen er i gang" + +#: includes/common/payment-gateways/paypal-chained-payments.php:212 +#: includes/common/payment-gateways/paypal-chained-payments.php:491 +#: includes/common/payment-gateways/paypal-express.php:814 +#: includes/common/payment-gateways/paypal-express.php:1082 +msgid "The payment has been partially refunded." +msgstr "Din betaling er delvis refunderet." + +#: includes/common/payment-gateways/paypal-chained-payments.php:202 +#: includes/common/payment-gateways/paypal-chained-payments.php:481 +msgid "PayPal balance, Credit Card, or Instant Transfer" +msgstr "PayPal balance, Kreditkort eller Straksoverførsel" + +#: includes/common/payment-gateways/paypal-chained-payments.php:177 +msgid "There was a problem connecting to PayPal to setup your purchase. Please try again." +msgstr "Der var et problem med at forbinde til PayPal for at håndtere dit køb. Prøv igen." + +#: includes/common/payment-gateways/paypal-chained-payments.php:122 +msgid "Your PayPal transaction has been canceled." +msgstr "Din PayPal transaktion er blevet slettet. " + +#: includes/common/payment-gateways/paypal-chained-payments.php:50 +#: includes/common/payment-gateways/paypal-chained-payments.php:53 +#: includes/common/payment-gateways/paypal-chained-payments.php:732 +#: includes/common/payment-gateways/paypal-express.php:500 +#: includes/common/payment-gateways/paypal-express.php:938 +msgid "PayPal" +msgstr "PayPal" + +#: includes/common/payment-gateways/paypal-chained-payments.php:48 +#: includes/common/payment-gateways/paypal-chained-payments.php:730 +#: includes/common/payment-gateways/paypal-chained-payments.php:756 +#: includes/common/payment-gateways/paypal-chained-payments.php:873 +msgid "PayPal Chained Payments" +msgstr "PayPal Chained Payments" + +#: includes/common/payment-gateways/paypal-payflow.php:59 +#: includes/common/payment-gateways/paypal-payflow.php:467 +msgid "PayPal Payflow Pro" +msgstr "PayPal Payflow Pro" + +#: includes/common/payment-gateways/skrill.php:378 +msgid "Chargeback - A payment was reversed due to a chargeback. The funds have been removed from your account balance and returned to the buyer." +msgstr "Tilbagebetaling - En betaling blev tilbageført. Pengene er fjernet fra din balance og returneret til køber." + +#: includes/common/payment-gateways/skrill.php:372 +msgid "Failed - The Credit Card or Direct Debit transaction was declined." +msgstr "Fejl - Kredit- eller Debit kort transaktionen blev afvist." + +#: includes/common/payment-gateways/_payway.php:354 +#: includes/common/payment-gateways/skrill.php:366 +msgid "Cancelled - The payment was cancelled manually by the sender in their online account history or was auto-cancelled after 14 days pending." +msgstr "Cancelled - Betalingen blev slettet manuelt af køber i vedkommendes account historik eller belv slette automatisk efter 14 dages pending." + +#: includes/common/payment-gateways/skrill.php:360 +msgid "Pending - The payment is pending. It can take 2-3 days for bank transfers to complete." +msgstr "Pending - The payment is pending. It can take 2-3 days for bank transfers to complete." + +#: includes/common/payment-gateways/_payway.php:349 +#: includes/common/payment-gateways/skrill.php:354 +msgid "Processed - The payment has been completed, and the funds have been added successfully to your Moneybookers account balance." +msgstr "Processed - The payment has been completed, and the funds have been added successfully to your Moneybookers account balance." + +#: includes/common/payment-gateways/skrill.php:189 +msgid "Shown to the customer on the confirmation screen - the end step of the process - a note, confirmation number, or any other message. Line breaks <br> may be used for longer messages." +msgstr "Shown to the customer on the confirmation screen - the end step of the process - a note, confirmation number, or any other message. Line breaks <br> may be used for longer messages." + +#: includes/common/payment-gateways/skrill.php:188 +msgid "Confirmation Note (optional)" +msgstr "Confirmation Note (optional)" + +#: includes/common/payment-gateways/skrill.php:183 +msgid "The URL of the logo which you would like to appear at the top of the payment form. The logo must be accessible via HTTPS otherwise it will not be shown. For best integration results we recommend that you use a logo with dimensions up to 200px in width and 50px in height." +msgstr "The URL of the logo which you would like to appear at the top of the payment form. The logo must be accessible via HTTPS otherwise it will not be shown. For best integration results we recommend that you use a logo with dimensions up to 200px in width and 50px in height." + +#: includes/common/payment-gateways/skrill.php:182 +msgid "Logo Image (optional)" +msgstr "Logo billede (valgfri)" + +#: includes/common/payment-gateways/skrill.php:177 +msgid "The name of this store, which will be shown on the gateway. If no value is submitted, the account email will be shown as the recipient of the payment." +msgstr "Navnet på denne butik, som vil blive vist i gatewayen. Hvis ingen værdi er indsat, vil kontoens email blive vist som modtageren af betalingen." + +#: includes/common/payment-gateways/skrill.php:176 +msgid "Merchant Name (optional)" +msgstr "Forhandlernavn (valgfri)" + +#: includes/common/payment-gateways/skrill.php:165 +msgid "Language" +msgstr "Sprog" + +#: includes/common/payment-gateways/2checkout.php:368 +#: includes/common/payment-gateways/authorizenet-aim.php:262 +#: includes/common/payment-gateways/eway.php:363 +#: includes/common/payment-gateways/eway31.php:471 +#: includes/common/payment-gateways/mollie.php:91 +#: includes/common/payment-gateways/paymill.php:193 +#: includes/common/payment-gateways/paypal-chained-payments.php:356 +#: includes/common/payment-gateways/paypal-express.php:688 +#: includes/common/payment-gateways/paypal-payflow.php:432 +#: includes/common/payment-gateways/pin.php:186 +#: includes/common/payment-gateways/skrill.php:152 +#: includes/common/payment-gateways/stripe.php:288 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:104 +msgid "Currency" +msgstr "Valuta" + +#: includes/common/payment-gateways/2checkout.php:359 +#: includes/common/payment-gateways/skrill.php:143 +msgid "Secret Word" +msgstr "Secret Word" + +#: includes/common/payment-gateways/skrill.php:261 +msgid "Order ID:" +msgstr "Ordre ID:" + +#: includes/common/payment-gateways/skrill.php:234 +msgid "Complete Checkout" +msgstr "Fuldfør Checkout" + +#: includes/common/payment-gateways/skrill.php:204 +msgid "Your Moneybookers transaction has been canceled." +msgstr "Din Moneybookers transaktion er blevet slettet." + +#: includes/common/payment-gateways/manual-payments.php:155 +msgid "This is the email text to send to those who have made manual payment checkouts. You should include your manual payment instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "Dette er den text der skal sendes til de, der vælger manuel betaling ved checkout. Du bør skrive dine instruktioner for manuel betaling her. Dette erstatter standard ordre checkout emailen.. Disse koder erstattes med detaljer om ordren: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. Ingen HTML tilladt." + +#: includes/common/payment-gateways/_payway.php:257 +#: includes/common/payment-gateways/manual-payments.php:128 +msgid "Record payments manually, such as by Cash, Check, or EFT." +msgstr "Noter betalinger manuelt, såsom Kontant, Check eller EFT." + +#: includes/common/payment-gateways/manual-payments.php:71 +msgid "Manual/Invoice" +msgstr "Manuel/Faktura" + +#: includes/admin/class-mp-setup-wizard.php:648 +#: includes/common/payment-gateways/manual-payments.php:35 +#: includes/common/payment-gateways/manual-payments.php:36 +msgid "Manual Payment" +msgstr "Manuel Betaling" + +#: includes/common/payment-gateways/manual-payments.php:34 +#: includes/common/payment-gateways/manual-payments.php:163 +msgid "Manual Payments" +msgstr "Manuel Betaling" + +#: includes/common/payment-gateways/_ideal.php:288 +msgid "iDEAL Simulator (for testing)" +msgstr "iDEAL Simulator (for testing)" + +#: includes/common/payment-gateways/_ideal.php:287 +msgid "ABN Amro Bank" +msgstr "ABN Amro Bank" + +#: includes/common/payment-gateways/_ideal.php:286 +msgid "Friesland Bank" +msgstr "Friesland Bank" + +#: includes/common/payment-gateways/_ideal.php:285 +msgid "Rabobank" +msgstr "Rabobank" + +#: includes/common/payment-gateways/_ideal.php:284 +msgid "ING Bank" +msgstr "ING Bank" + +#: includes/common/payment-gateways/_ideal.php:279 +msgid "Bank" +msgstr "Bank" + +#: includes/common/payment-gateways/_ideal.php:270 +msgid "To make it easier to pay for online products and services, the Dutch banking community has developed the iDEAL online payment method. iDEAL allows online payments to be made using online banking in EUR only." +msgstr "For at gøre det lettere at betale for online produkter og service, har det Hollandske bankfællesskab udviklet iDEAL online payment metoden. iDEAL tillader online betalinger at blive betalt ved at anvende online banking udelukkende baseret i EURO." + +#: includes/common/payment-gateways/_ideal.php:247 +#: includes/common/payment-gateways/_payway.php:199 +#: includes/common/payment-gateways/manual-payments.php:68 +msgid "Invoiced" +msgstr "Faktureret" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1016 +msgid "Coupon" +msgstr "Kupon" + +#: includes/common/payment-gateways/_ideal.php:77 +#: includes/common/payment-gateways/_ideal.php:250 +#: includes/common/payment-gateways/_payway.php:202 +msgid "iDEAL" +msgstr "iDEAL" + +#: includes/common/payment-gateways/_ideal.php:76 +msgid "iDEAL (beta)" +msgstr "iDEAL (beta)" + +#: includes/common/payment-gateways/payfast.php:327 +msgid "Merchant Key" +msgstr "Merchant Key" + +#: includes/common/payment-gateways/_ideal.php:293 +#: includes/common/payment-gateways/_payway.php:302 +#: includes/common/payment-gateways/payfast.php:324 +msgid "Merchant ID" +msgstr "Merchant ID" + +#: includes/common/payment-gateways/eway31.php:462 +msgid "eWay Rapid 3.0 Payments lets merchants recieve credit card payments through eWay without need for users to leave the shop. Note this gateway requires a valid SSL certificate configured for this site." +msgstr "eWay Rapid 3.0 Payments lets merchants recieve credit card payments through eWay without need for users to leave the shop. Note this gateway requires a valid SSL certificate configured for this site." + +#: includes/common/payment-gateways/eway.php:452 +msgid "There was a problem connecting to eWay. Please try again." +msgstr "Der var et problem med at forbinde til eWay. Vær venlig at prøve igen." + +#: includes/common/payment-gateways/eway.php:432 +#: includes/common/payment-gateways/eway.php:437 +msgid "The url of the image can be hosted on your website and pass the secure https:// path of the image to be displayed at the top of the website. This is the second image block on the webpage and is restricted to 960px X 65px. A default secure image is used if none is supplied." +msgstr "The url of the image can be hosted on your website and pass the secure https:// path of the image to be displayed at the top of the website. This is the second image block on the webpage and is restricted to 960px X 65px. A default secure image is used if none is supplied." + +#: includes/common/payment-gateways/eway.php:431 +#: includes/common/payment-gateways/eway.php:436 +msgid "Company Logo (optional)" +msgstr "Firmaets Logo (valgfrit)" + +#: includes/common/payment-gateways/eway.php:427 +msgid "The page footer text can be customised and populated below the customer's order details. Useful for contact information." +msgstr "Sidefodsteksten kan justeres og vises under kundens ordredetaljer. Nyttigt til kontakt information." + +#: includes/common/payment-gateways/eway.php:426 +msgid "Page Footer (optional)" +msgstr "Sidefod (valgfrit)" + +#: includes/common/payment-gateways/eway.php:421 +msgid "Page Description (optional)" +msgstr "Side Beskrivelse (valgfrit)" + +#: includes/common/payment-gateways/eway.php:417 +#: includes/common/payment-gateways/eway.php:422 +msgid "This value is used to populate the browsers title bar at the top of the screen." +msgstr "Denne værdi bliver anvendt til at fylde browserens titel bar i toppen af skærmen." + +#: includes/common/payment-gateways/eway.php:416 +msgid "Page Title (optional)" +msgstr "Side Titel (valgfrit)" + +#: includes/common/payment-gateways/eway.php:412 +msgid "This will be displayed as the company the customer is purchasing from, including this is highly recommended." +msgstr "Dette vil vises som firmaet kunden køber fra. Det anbefales kraftigt at inkludere dette." + +#: includes/common/payment-gateways/eway.php:411 +msgid "Company Name" +msgstr "Firmanavn" + +#: includes/common/payment-gateways/eway.php:394 +msgid "Customer ID" +msgstr "Customer ID" + +#: includes/common/payment-gateways/eway.php:381 +#: includes/common/payment-gateways/eway31.php:488 +msgid "Live API Credentials" +msgstr "Live API Credentials" + +#: includes/common/payment-gateways/eway.php:371 +#: includes/common/payment-gateways/eway31.php:479 +msgid "Gateway Mode" +msgstr "Gateway Mode" + +#: includes/common/payment-gateways/eway.php:354 +msgid "The Hosted Page is a webpage hosted on eWAY's side eliminating the need for merchants to capture, transmit or store credit card numbers. At the checkout time the merchant automatically redirects the customer to the Hosted Page where they would enter their details and have the transaction processed. Upon completion of the transaction the customer is redirected back to the MarketPress checkout confirmation page." +msgstr "Den hostede site er en website som hostes hos eWay, hvilket eliminerer sælgers behov for at opsamle, transmittere eller lagre kreditkort numre. Ved check ud vil sælger automatisk omdirigere kunden til den hostede side, hvor kunden kan indtaste sine detaljer og få transaktionen behandlet. Ved færdiggørelse af transaktionen vil kunden dirigeres tilbage til MarketPress check ud." + +#: includes/common/payment-gateways/eway.php:314 +msgid "There was a problem with your credit card information: %s" +msgstr "Der var et problem med din kortinformation: %s" + +#: includes/common/payment-gateways/eway.php:300 +msgid "Paid - The card has been processed - %s" +msgstr "Betalt - Dit kreditkort er blevet anvendt - %s" + +#: includes/common/payment-gateways/eway.php:253 +msgid "There was a problem setting up the transaction with eWay: %s" +msgstr "Vi havde et problem med at sætte transaktionen op med eWay: %s" + +#: includes/common/payment-gateways/eway.php:245 +#: includes/common/payment-gateways/eway.php:289 +msgid "There was a problem parsing the response from eWay. Please try again." +msgstr "Vi havde et problem med at indlæse svaret fra eWay. Vær venlig at prøve igen." + +#: includes/common/payment-gateways/_ideal.php:159 +#: includes/common/payment-gateways/eway.php:189 +#: includes/common/payment-gateways/paypal-chained-payments.php:634 +#: includes/common/payment-gateways/paypal-express.php:322 +#: includes/common/payment-gateways/paypal-express.php:473 +msgid "%s Store Purchase - Order ID: %s" +msgstr "%s Køb i Butik - Ordre ID: %s" + +#: includes/common/payment-gateways/eway.php:147 +#: includes/common/payment-gateways/eway.php:462 +msgid "eWay Shared Payments" +msgstr "eWay Shared Payments" + +#: includes/common/payment-gateways/_cubepoints.php:214 +msgid "This is the email text to send to those who have made CubePoints checkouts. You should include your CubePoints instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "This is the email text to send to those who have made CubePoints checkouts. You should include your CubePoints instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." + +#: includes/common/payment-gateways/_cubepoints.php:212 +#: includes/common/payment-gateways/free_orders.php:188 +#: includes/common/payment-gateways/manual-payments.php:154 +msgid "Order Confirmation Email" +msgstr "Order Confirmation Email" + +#: includes/common/payment-gateways/_cubepoints.php:207 +#: includes/common/payment-gateways/manual-payments.php:149 +msgid "Confirmation User Instructions" +msgstr "Confirmation User Instructions" + +#: includes/common/payment-gateways/_cubepoints.php:202 +#: includes/common/payment-gateways/manual-payments.php:144 +msgid "User Instructions" +msgstr "Bruger Instructioner" + +#: includes/common/payment-gateways/_cubepoints.php:198 +#: includes/common/payment-gateways/free_orders.php:170 +#: includes/common/payment-gateways/manual-payments.php:139 +msgid "Enter a public name for this payment method that is displayed to users - No HTML" +msgstr "Enter a public name for this payment method that is displayed to users - No HTML" + +#: includes/admin/class-mp-orders-admin.php:532 +#: includes/common/payment-gateways/_cubepoints.php:196 +#: includes/common/payment-gateways/free_orders.php:169 +#: includes/common/payment-gateways/manual-payments.php:138 +msgid "Method Name" +msgstr "Method Name" + +#: includes/common/payment-gateways/_cubepoints.php:187 +msgid "Accept CubePoints as payment(requires the CubePoints plugin)." +msgstr "Accept CubePoints as payment(requires the CubePoints plugin)." + +#: includes/common/payment-gateways/_cubepoints.php:140 +msgid "Sorry, but you do not appear to have enough points to complete this purchase!" +msgstr "Beklager, du har ikke nok points til at gennemføre dette køb!" + +#: includes/common/payment-gateways/_cubepoints.php:124 +msgid "%s Store Purchase" +msgstr "%s Køb i Butikken" + +#: includes/common/payment-gateways/_cubepoints.php:79 +#: includes/common/payment-gateways/_cubepoints.php:171 +msgid "Your current points: " +msgstr "Dine nuværende points: " + +#: includes/common/payment-gateways/_cubepoints.php:133 +#: includes/common/payment-gateways/_cubepoints.php:197 +msgid "CubePoints" +msgstr "CubePoints" + +#: includes/common/payment-gateways/authorizenet-aim.php:344 +msgid "Authorize.net AIM Checkout" +msgstr "Authorize.net AIM Checkout" + +#: includes/common/payment-gateways/authorizenet-aim.php:331 +msgid "Custom API URL" +msgstr "Custom API URL" + +#: includes/common/payment-gateways/authorizenet-aim.php:332 +msgid "Many other gateways have Authorize.net API emulators. To use one of these gateways input their API post url here." +msgstr "Many other gateways have Authorize.net API emulators. To use one of these gateways input their API post url here." + +#: includes/common/payment-gateways/authorizenet-aim.php:322 +msgid "Request a delimited response from the payment gateway." +msgstr "Anmod om et begrænset svar fra betalings gatewayen." + +#: includes/common/payment-gateways/authorizenet-aim.php:316 +msgid "Security: MD5 Hash" +msgstr "Sikkerhed: MD5 Hash" + +#: includes/common/payment-gateways/authorizenet-aim.php:317 +msgid "The payment gateway generated MD5 hash value that can be used to authenticate the transaction response. Not needed because responses are returned using an SSL connection." +msgstr "Den betalingsgatewaygenererede MD5 værdi, som kan anvendes til at godkende transaktionens respons. Ikke nødvendig, idet svar returneres ved at anvende en SSL forbindelse." + +#: includes/common/payment-gateways/authorizenet-aim.php:306 +msgid "Customer Receipt Email Footer" +msgstr "Kunde Kvittering Email Footer" + +#: includes/common/payment-gateways/authorizenet-aim.php:296 +msgid "Customer Receipt Email Header" +msgstr "Kunde Kvittering Email Header" + +#: includes/common/payment-gateways/authorizenet-aim.php:297 +#: includes/common/payment-gateways/paypal-payflow.php:446 +msgid "This text will appear as the header of the email receipt sent to the customer." +msgstr "Denne tekst vil optræde i headeren på email bekræftelsen som sendes til kunden." + +#: includes/common/payment-gateways/authorizenet-aim.php:282 +msgid "Encapsulation Character" +msgstr "Indkapslingstegn" + +#: includes/common/payment-gateways/authorizenet-aim.php:283 +msgid "Authorize.net default is blank. Otherwise, get this from your credit card processor. If the transactions are going through, but getting strange responses, this character is most likely wrong." +msgstr "Authorize.net standard er blank. I modsat fald, hent dette fra din kreditkortudbyder. Hvis transaktionen går igennem - men giver mærkelige resultater, er dette tegn højst sandsynlig forkert.." + +#: includes/common/payment-gateways/authorizenet-aim.php:273 +msgid "Optional settings to control advanced options" +msgstr "Valgfri indstillinger for at styre avancerede muligheder" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:224 +#: includes/common/payment-gateways/authorizenet-aim.php:272 +msgid "Advanced Settings" +msgstr "Avancerede settings" + +#: includes/common/payment-gateways/authorizenet-aim.php:253 +msgid "Transaction Key" +msgstr "Transaction Key" + +#: includes/common/payment-gateways/authorizenet-aim.php:246 +msgid "Login ID" +msgstr "Login ID" + +#: includes/common/payment-gateways/paypal-payflow.php:396 +msgid "Gateway Credentials" +msgstr "Gateway Credentials" + +#: includes/common/payment-gateways/authorizenet-aim.php:221 +msgid "Authorize.net AIM is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway. USD is the only currency supported by this gateway." +msgstr "Authorize.net AIM er en tilpasningsklar betalingsløsning som giver sælgeren kontrol over alle trin i transaktionen. Et SSL certificat er påkrævet for at anvende denne gateway. USD er den eneste valuta som er supporteret af denne gateway." + +#: includes/common/payment-gateways/authorizenet-aim.php:205 +msgid "There was a problem finalizing your purchase. %s Please go back and try again." +msgstr "Der var et problem med at afslutte dit indkøb. %s Vær venlig at gå tilbage og prøve igen." + +#: includes/common/payment-gateways/payfast.php:519 +#: includes/common/payment-gateways/paypal-chained-payments.php:218 +#: includes/common/payment-gateways/paypal-chained-payments.php:498 +#: includes/common/payment-gateways/paypal-express.php:822 +#: includes/common/payment-gateways/paypal-express.php:1092 +msgid "The payment has been completed, and the funds have been added successfully to your account balance." +msgstr "Betaling er udført, og beløbet er blevet tillagt din kontos balance" + +#: includes/common/payment-gateways/paypal-payflow.php:233 +msgid "Please enter a valid credit card security code" +msgstr "Indtast en valid credit card sikkerhedskode" + +#: includes/common/payment-gateways/paypal-payflow.php:224 +#: includes/public/class-mp-checkout.php:867 +msgid "Please enter a valid credit card number" +msgstr "Indtast et gyldigt kortnummer" + +#: includes/common/payment-gateways/paypal-payflow.php:221 +msgid "Please enter your credit card number" +msgstr "Indtast dit kortnummer" + +#: includes/common/payment-gateways/paypal-payflow.php:217 +msgid "Please enter your credit card security code" +msgstr "Indtast din sikkerhedskode" + +#: includes/common/payment-gateways/paypal-payflow.php:213 +msgid "Please select your credit card expiration date." +msgstr "Vælg dit kreditkorts udløbsdato." + +#: includes/common/payment-gateways/2checkout.php:299 +#: includes/common/payment-gateways/authorizenet-aim.php:50 +#: includes/common/payment-gateways/eway.php:148 +#: includes/common/payment-gateways/eway.php:298 +#: includes/common/payment-gateways/eway31.php:267 +#: includes/common/payment-gateways/paymill.php:46 +#: includes/common/payment-gateways/paypal-express.php:972 +#: includes/common/payment-gateways/paypal-payflow.php:60 +#: includes/common/payment-gateways/pin.php:46 +#: includes/common/payment-gateways/simplify.php:19 +#: includes/common/payment-gateways/stripe.php:46 +#: includes/common/payment-gateways/wepay.php:37 +msgid "Credit Card" +msgstr "Kreditkort" + +#: includes/common/payment-gateways/authorizenet-aim.php:49 +msgid "Authorize.net Checkout" +msgstr "Authorize.net Checkout" + +#: includes/common/payment-gateways/skrill.php:156 +#: includes/common/payment-gateways/stripe.php:293 +msgid "Selecting a currency other than that used for your store may cause problems at checkout." +msgstr "Valg af anden valuta end den der anvendes i butikken kan forårsage problemer ved checkud." + +#: includes/common/payment-gateways/2checkout.php:352 +msgid "Seller ID" +msgstr "Seller ID" + +#: includes/common/payment-gateways/2checkout.php:340 +#: includes/common/payment-gateways/_ideal.php:311 +#: includes/common/payment-gateways/authorizenet-aim.php:234 +#: includes/common/payment-gateways/eway.php:376 +#: includes/common/payment-gateways/payfast.php:315 +#: includes/common/payment-gateways/paypal-chained-payments.php:368 +#: includes/common/payment-gateways/paypal-express.php:699 +#: includes/common/payment-gateways/paypal-payflow.php:391 +msgid "Live" +msgstr "Live" + +#: includes/common/payment-gateways/2checkout.php:339 +#: includes/common/payment-gateways/authorizenet-aim.php:233 +#: includes/common/payment-gateways/eway.php:375 +#: includes/common/payment-gateways/paypal-chained-payments.php:367 +#: includes/common/payment-gateways/paypal-express.php:698 +#: includes/common/payment-gateways/paypal-payflow.php:390 +#: includes/common/shipping-modules/mp-fedex.php:263 +msgid "Sandbox" +msgstr "Sandbox" + +#: includes/common/payment-gateways/2checkout.php:336 +#: includes/common/payment-gateways/_ideal.php:307 +#: includes/common/payment-gateways/authorizenet-aim.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:365 +#: includes/common/payment-gateways/paypal-express.php:695 +#: includes/common/payment-gateways/paypal-payflow.php:387 +#: includes/common/payment-gateways/wepay.php:130 +#: includes/common/shipping-modules/mp-fedex.php:260 +msgid "Mode" +msgstr "Indstilling" + +#: includes/common/payment-gateways/2checkout.php:288 +#: includes/common/payment-gateways/mijireh.php:242 +#: includes/common/payment-gateways/mollie.php:212 +msgid "The order has been received" +msgstr "Ordren er modtaget" + +#: includes/common/payment-gateways/2checkout.php:74 +#: includes/common/payment-gateways/2checkout.php:75 +#: includes/common/payment-gateways/2checkout.php:435 +msgid "2Checkout" +msgstr "2Checkout" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:306 +msgid "Confirm" +msgstr "Bekræft" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:218 +#: includes/common/class-mp-cart.php:974 includes/common/class-mp-cart.php:1354 +#: includes/common/template-functions.php:918 +msgid "Checkout" +msgstr "Kassen" + +#: includes/common/template-functions.php:207 +msgid "Check Order Status" +msgstr "Check Ordre Status" + +#: includes/common/template-functions.php:235 +msgid "View Products" +msgstr "Se Produkter" + +#: includes/common/template-functions.php:263 +msgid "Visit Store" +msgstr "Besøg Butik" + +#: includes/common/template-functions.php:2912 +#: includes/multisite/template-functions.php:448 +msgid "Order By" +msgstr "Sorter Efter" + +#: includes/common/template-functions.php:2887 +#: includes/multisite/template-functions.php:405 +msgid "Price (High to Low)" +msgstr "Pris (Højeste til Laveste)" + +#: includes/common/template-functions.php:2886 +#: includes/multisite/template-functions.php:404 +msgid "Price (Low to High)" +msgstr "Pris (Laveste til Højeste)" + +#: includes/common/template-functions.php:2881 +#: includes/multisite/template-functions.php:399 +msgid "Default" +msgstr "Standard" + +#: includes/common/template-functions.php:2858 +msgid "Show All" +msgstr "Vis Alt" + +#: includes/common/class-mp-product.php:2048 +msgid "View Larger Image »" +msgstr "Vis Større Billede »" + +#: includes/common/class-mp-product.php:979 +msgid "Out of Stock" +msgstr "Intet på Lager" + +#: includes/common/template-functions.php:148 +msgid "Price: " +msgstr "Pris:" + +#: includes/multisite/template-functions.php:833 +msgid "No Tags" +msgstr "Ingen Etiketter" + +#: includes/common/template-functions.php:3162 +msgid "Uncategorized" +msgstr "Ikke Kategoriseret" + +#: includes/common/class-mp-cart.php:569 includes/common/class-mp-order.php:604 +#: includes/common/helpers.php:115 +msgid "Download" +msgstr "Download" + +#: includes/common/class-mp-cart.php:1353 +msgid "Empty Cart" +msgstr "Tøm kurv" + +#: includes/common/payment-gateways/_payway.php:291 +#: includes/common/payment-gateways/paypal-express.php:718 +#: includes/common/payment-gateways/paypal-payflow.php:423 +#: includes/common/shipping-modules/mp-ups.php:158 +#: includes/public/class-mp-checkout.php:1254 +#: includes/public/class-mp-checkout.php:1383 +msgid "Password" +msgstr "Password" + +#: includes/common/payment-gateways/eway.php:387 +#: includes/common/payment-gateways/paypal-express.php:711 +#: includes/common/shipping-modules/mp-usps.php:185 +#: includes/public/class-mp-checkout.php:1249 +msgid "Username" +msgstr "Brugernavn" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:437 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:790 +msgid "Have a coupon code?" +msgstr "Har du en kupon kode?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:321 +#: includes/admin/class-mp-orders-admin.php:526 +#: includes/common/class-mp-cart.php:592 +msgid "Remove" +msgstr "Fjern" + +#: includes/admin/class-mp-ajax.php:316 +msgid "Quantity:" +msgstr "Antal:" + +#: includes/admin/class-mp-products-admin.php:2140 +#: includes/admin/class-mp-products-admin.php:2387 +#: includes/common/shipping-modules/class-mp-shipping-api.php:507 +msgid "Extra Shipping Cost" +msgstr "Ekstra Fragtpris" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:403 +msgid "Choose a Shipping Method:" +msgstr "Vælg Forsendelsesmetode:" + +#: includes/admin/class-mp-products-admin.php:1691 +#: includes/admin/class-mp-products-admin.php:2131 +#: includes/admin/class-mp-products-admin.php:2378 +#: includes/common/shipping-modules/class-mp-shipping-api.php:228 +msgid "Ounces" +msgstr "Ounces" + +#: includes/admin/class-mp-products-admin.php:1684 +#: includes/admin/class-mp-products-admin.php:2123 +#: includes/admin/class-mp-products-admin.php:2369 +#: includes/admin/class-mp-setup-wizard.php:546 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:165 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +#: includes/common/shipping-modules/class-mp-shipping-api.php:227 +msgid "Pounds" +msgstr "Pund" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:226 +msgid "Product Weight:" +msgstr "Produkt Vægt:" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:214 +msgid "Weight (Kilograms)" +msgstr "Vægt (Kilogram)" + +#: includes/admin/widgets/ms-global-categories.php:82 +msgid "Number of Categories:" +msgstr "Antal Kategorier:" + +#: includes/admin/widgets/ms-global-categories.php:72 +msgid "Product Count" +msgstr "Produkt Antal" + +#: includes/addons/class-mp-addons-list-table.php:20 +#: includes/admin/class-mp-product-attributes-admin.php:129 +#: includes/admin/class-mp-product-attributes-list-table.php:22 +#: includes/admin/class-mp-products-admin.php:2216 +#: includes/admin/class-mp-shortcode-builder.php:628 +#: includes/admin/class-mp-shortcode-builder.php:1415 +#: includes/admin/widgets/ms-global-categories.php:70 +#: includes/common/shipping-modules/mp-fedex.php:395 +#: includes/common/shipping-modules/mp-ups.php:202 +#: includes/common/shipping-modules/mp-usps.php:243 +#: includes/public/class-mp-checkout.php:314 +msgid "Name" +msgstr "Navn" + +#: includes/admin/widgets/ms-global-categories.php:67 +msgid "Order Categories By:" +msgstr "Sorter Kategorier Efter:" + +#: includes/admin/widgets/ms-global-categories.php:24 +#: includes/admin/widgets/ms-global-categories.php:50 +msgid "Global Product Categories" +msgstr "Globale Produkt Kategorier" + +#: includes/admin/widgets/ms-global-categories.php:15 +msgid "Global Product Category List" +msgstr "Global Produkt Kategori Liste" + +#: includes/admin/widgets/ms-global-categories.php:13 +msgid "Displays a network-wide HTML list of product categories from network MarketPress stores." +msgstr "Viser HTML liste af produkt kategorier fra hele MarketPress netværket" + +#: includes/admin/widgets/ms-global-tag-cloud.php:24 +#: includes/admin/widgets/ms-global-tag-cloud.php:45 +msgid "Global Product Tags" +msgstr "Globale Produkt Etiketter" + +#: includes/admin/widgets/ms-global-tag-cloud.php:15 +msgid "Global Product Tag Cloud" +msgstr "Global Produkt Etiket Sky" + +#: includes/admin/class-mp-shortcode-builder.php:947 +#: includes/admin/widgets/ms-global-product-list.php:173 +msgid "Excerpt" +msgstr "Uddrag" + +#: includes/admin/widgets/ms-global-product-list.php:169 +msgid "Content To Show:" +msgstr "Indhold at vise:" + +#: includes/admin/widgets/ms-global-product-list.php:140 +msgid "Limit To Product Tag:" +msgstr "Begræns til Produkt Etiket:" + +#: includes/admin/widgets/ms-global-product-list.php:132 +msgid "Limit To Product Category:" +msgstr "Begræns til Produkt Kategori:" + +#: includes/admin/widgets/ms-global-product-list.php:72 +msgid "Global Products" +msgstr "Globale Produkter" + +#: includes/admin/widgets/ms-global-product-list.php:16 +msgid "Global Product List" +msgstr "Global Produkt Liste" + +#: includes/admin/widgets/ms-global-product-list.php:14 +msgid "Shows a customizable global list of products from network MarketPress stores." +msgstr "Viser en redigerbar global liste over alle produkter i dit MarketPress netværk" + +#: includes/common/class-mp-product.php:974 +#: includes/multisite/template-functions.php:731 +msgid "Buy Now »" +msgstr "Køb Nu »" + +#: includes/admin/widgets/ms-global-tag-cloud.php:13 +msgid "Displays global most used product tags in cloud format from network MarketPress stores." +msgstr "Viser de mest anvendte produktetiketter fra hele netværket i skyformat." + +#: includes/multisite/class-mp-admin-multisite.php:438 +msgid "Theme Permissions" +msgstr "Tematilladelser" + +#: includes/multisite/class-mp-admin-multisite.php:402 +#: includes/multisite/class-mp-admin-multisite.php:448 +msgid "No Access" +msgstr "Ingen Adgang" + +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:120 +msgid "Pro Site Level" +msgstr "Pro Site Niveau" + +#: includes/multisite/class-mp-admin-multisite.php:401 +#: includes/multisite/class-mp-admin-multisite.php:447 +msgid "All Can Use" +msgstr "Alle Kan Anvende" + +#: includes/multisite/class-mp-admin-multisite.php:390 +msgid "Gateway Permissions" +msgstr "Gateway Tilladelser" + +#: includes/multisite/class-mp-admin-multisite.php:375 +msgid "Select a Gateway" +msgstr "Vælg Gateway" + +#: includes/multisite/class-mp-admin-multisite.php:350 +msgid "Global Gateway" +msgstr "Global Gateway" + +#. Plugin Name of the plugin/theme +msgid "MarketPress" +msgstr "MarketPress" + +#: includes/admin/widgets/product-tag-cloud.php:7 +msgid "Your most used product tags in cloud format from your MarketPress store." +msgstr "Dine mest brugte produktetiketter i sky format" + +#: includes/admin/widgets/categories.php:79 +msgid "Show hierarchy" +msgstr "Vis hierarki" + +#: includes/admin/widgets/categories.php:76 +#: includes/admin/widgets/ms-global-categories.php:92 +msgid "Show product counts" +msgstr "Vis produkt tæller" + +#: includes/admin/widgets/categories.php:73 +msgid "Show as dropdown" +msgstr "Vis som dropdown" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:710 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:736 +#: includes/admin/widgets/categories.php:30 +msgid "Select Category" +msgstr "Vælg Kategori" + +#: includes/admin/widgets/categories.php:7 +msgid "A list or dropdown of product categories from your MarketPress store." +msgstr "En liste eller dropdown af produkter fra din butik." + +#: includes/admin/widgets/product-list.php:250 +msgid "Show Buy Button" +msgstr "Vis Køb Knappen" + +#: includes/admin/widgets/ms-global-product-list.php:183 +#: includes/admin/widgets/product-list.php:244 +msgid "Show Price" +msgstr "Vis Pris" + +#: includes/admin/widgets/product-list.php:241 +msgid "Show Excerpt" +msgstr "Vis uddrag" + +#: includes/admin/widgets/ms-global-product-list.php:155 +#: includes/admin/widgets/product-list.php:238 +msgid "Thumbnail Size:" +msgstr "Thumbnail Størelse:" + +#: includes/admin/widgets/ms-global-product-list.php:153 +#: includes/admin/widgets/product-list.php:237 +msgid "Show Thumbnail" +msgstr "Vis Thumbnail" + +#: includes/admin/widgets/ms-global-product-list.php:147 +#: includes/admin/widgets/product-list.php:233 +msgid "Display Settings" +msgstr "Indstillinger for visning" + +#: includes/admin/widgets/ms-global-product-list.php:136 +#: includes/admin/widgets/ms-global-product-list.php:144 +#: includes/admin/widgets/product-list.php:230 +msgid "Enter the Slug" +msgstr "Indtast Slug" + +#: includes/admin/widgets/product-list.php:228 +#: includes/common/template-functions.php:894 +msgid "Tag" +msgstr "Etiket" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:686 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:712 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:739 +#: includes/admin/class-mp-shortcode-builder.php:796 +#: includes/admin/widgets/product-list.php:227 +#: includes/common/template-functions.php:886 +#: includes/common/template-functions.php:2907 +msgid "Category" +msgstr "Kategori" + +#: includes/admin/widgets/product-list.php:226 +msgid "No Filter" +msgstr "Intet Filter" + +#: includes/admin/widgets/product-list.php:224 +msgid "Taxonomy Filter:" +msgstr "Klassifikationsfilter:" + +#: includes/admin/widgets/ms-global-product-list.php:108 +#: includes/admin/widgets/product-list.php:209 +msgid "Order Products By:" +msgstr "Sorter Produkter efter:" + +#: includes/admin/widgets/ms-global-product-list.php:101 +#: includes/admin/widgets/product-list.php:206 +msgid "Number of Products:" +msgstr "Antal Produkter:" + +#: includes/admin/widgets/ms-global-product-list.php:98 +#: includes/admin/widgets/product-list.php:204 +msgid "List Settings" +msgstr "Listeindstillinger" + +#: includes/admin/widgets/product-list.php:177 +msgid "Our Products" +msgstr "Vores Produkter" + +#: includes/admin/widgets/product-list.php:144 +#: includes/common/template-functions.php:2070 +#: includes/common/template-functions.php:2347 +#: includes/multisite/template-functions.php:303 +#: includes/multisite/template-functions.php:623 +msgid "No Products" +msgstr "Ingen Produkter" + +#: includes/admin/widgets/product-list.php:8 +msgid "Product List" +msgstr "Produktliste" + +#: includes/admin/widgets/product-list.php:7 +msgid "Shows a customizable list of products from your MarketPress store." +msgstr "Viser en produktliste som kan tilpasses." + +#: includes/admin/widgets/cart.php:75 includes/admin/widgets/categories.php:82 +#: includes/admin/widgets/product-list.php:253 +#: includes/admin/widgets/product-tag-cloud.php:57 +msgid "Only show on store pages" +msgstr "Vis kun på butikssiderne" + +#: includes/admin/widgets/cart.php:65 +#: includes/admin/widgets/ms-global-product-list.php:92 +#: includes/admin/widgets/product-list.php:200 +msgid "Custom Text:" +msgstr "Tilpasset tekst:" + +#: includes/admin/widgets/cart.php:64 includes/admin/widgets/categories.php:69 +#: includes/admin/widgets/ms-global-categories.php:59 +#: includes/admin/widgets/ms-global-product-list.php:87 +#: includes/admin/widgets/ms-global-tag-cloud.php:49 +#: includes/admin/widgets/product-list.php:199 +#: includes/admin/widgets/product-tag-cloud.php:49 +msgid "Title:" +msgstr "Titel:" + +#: includes/admin/widgets/cart.php:7 +msgid "Shows dynamic shopping cart contents along with a checkout button for your MarketPress store." +msgstr "Viser indholdet i den dynamiske indkøbsvogn, sammen med en checkout knap." + +#: includes/admin/widgets/product-tag-cloud.php:8 +msgid "Product Tag Cloud" +msgstr "Produkt etiketsky" + +#: includes/admin/class-mp-setup-wizard.php:539 +#: includes/admin/class-mp-setup-wizard.php:575 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:163 +msgid "Measurement System" +msgstr "SI eller britiske mål" + +#: includes/admin/class-mp-setup-wizard.php:616 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:149 +msgid "Select Shipping Options" +msgstr "Vælg forsendelsesmetoder" + +#: includes/admin/class-mp-setup-wizard.php:596 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:129 +msgid "Calculated Options" +msgstr "Liveberegninger" + +#: includes/admin/class-mp-setup-wizard.php:582 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:115 +msgid "No Shipping" +msgstr "Ingen Fragt" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:110 +msgid "EU" +msgstr "EU" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:109 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:93 +msgid "All" +msgstr "Alle" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:92 +msgid "Select:" +msgstr "Vælg:" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:185 +msgid "Store Pages" +msgstr "Butikkens Sider" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:223 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:256 +msgid "Order Shipped" +msgstr "Ordre Afsendt" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:60 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:95 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:128 +#: marketpress.php:266 +msgid "New Order" +msgstr "Ny Ordre" + +#: includes/admin/class-mp-dashboard-widgets.php:314 +msgid "Email Notifications" +msgstr "Email Notifikationer" + +#: includes/admin/class-mp-pages-admin.php:59 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:200 +msgid "Products List" +msgstr "Produktliste" + +#: includes/admin/class-mp-pages-admin.php:58 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:190 +msgid "Store Base" +msgstr "Hovedbutik" + +#: includes/admin/class-mp-product-attributes-admin.php:108 +#: includes/admin/class-mp-shortcode-builder.php:635 +#: includes/admin/class-mp-shortcode-builder.php:708 +#: includes/admin/class-mp-shortcode-builder.php:875 +#: includes/admin/class-mp-shortcode-builder.php:1319 +#: includes/admin/class-mp-shortcode-builder.php:1422 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:526 +#: includes/admin/widgets/ms-global-categories.php:78 +#: includes/admin/widgets/ms-global-product-list.php:127 +#: includes/admin/widgets/product-list.php:221 +msgid "Ascending" +msgstr "Stigende" + +#: includes/admin/class-mp-product-attributes-admin.php:109 +#: includes/admin/class-mp-shortcode-builder.php:636 +#: includes/admin/class-mp-shortcode-builder.php:709 +#: includes/admin/class-mp-shortcode-builder.php:876 +#: includes/admin/class-mp-shortcode-builder.php:1320 +#: includes/admin/class-mp-shortcode-builder.php:1423 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:525 +#: includes/admin/widgets/ms-global-categories.php:75 +#: includes/admin/widgets/ms-global-product-list.php:124 +#: includes/admin/widgets/product-list.php:220 +msgid "Descending" +msgstr "Faldende" + +#: includes/admin/class-mp-shortcode-builder.php:637 +#: includes/admin/class-mp-shortcode-builder.php:695 +#: includes/admin/class-mp-shortcode-builder.php:862 +#: includes/admin/class-mp-shortcode-builder.php:1306 +#: includes/admin/class-mp-shortcode-builder.php:1424 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:518 +#: includes/admin/widgets/ms-global-product-list.php:121 +#: includes/admin/widgets/product-list.php:218 +msgid "Random" +msgstr "Tilfældigt" + +#: includes/admin/class-mp-shortcode-builder.php:694 +#: includes/admin/class-mp-shortcode-builder.php:861 +#: includes/admin/class-mp-shortcode-builder.php:1305 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:517 +#: includes/admin/widgets/ms-global-product-list.php:119 +#: includes/admin/widgets/product-list.php:216 +msgid "Product Price" +msgstr "Produktpris" + +#: includes/admin/class-mp-shortcode-builder.php:693 +#: includes/admin/class-mp-shortcode-builder.php:860 +#: includes/admin/class-mp-shortcode-builder.php:1304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:516 +#: includes/admin/widgets/ms-global-product-list.php:117 +#: includes/admin/widgets/product-list.php:215 +msgid "Number of Sales" +msgstr "Antal Salg" + +#: includes/admin/class-mp-shortcode-builder.php:692 +#: includes/admin/class-mp-shortcode-builder.php:859 +#: includes/admin/class-mp-shortcode-builder.php:1303 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:515 +#: includes/admin/widgets/product-list.php:214 +msgid "Product Author" +msgstr "Produkt forfatter" + +#: includes/admin/class-mp-shortcode-builder.php:691 +#: includes/admin/class-mp-shortcode-builder.php:858 +#: includes/admin/class-mp-shortcode-builder.php:1302 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:514 +#: includes/admin/widgets/product-list.php:213 +msgid "Product ID" +msgstr "Produkt ID" + +#: includes/admin/class-mp-shortcode-builder.php:690 +#: includes/admin/class-mp-shortcode-builder.php:857 +#: includes/admin/class-mp-shortcode-builder.php:1301 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:513 +#: includes/admin/widgets/ms-global-product-list.php:113 +#: includes/admin/widgets/product-list.php:212 +msgid "Publish Date" +msgstr "Udgivelsesdato" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:430 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:726 +msgid "Width" +msgstr "Bredde" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:439 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:735 +msgid "Height" +msgstr "Højde" + +#: includes/admin/class-mp-product-attributes-admin.php:88 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:402 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:698 +msgid "Custom" +msgstr "Tilpasset" + +#: includes/common/class-mp-product.php:179 +#: includes/common/class-mp-product.php:992 +#: includes/common/class-mp-product.php:1000 +#: includes/multisite/template-functions.php:579 +msgid "Buy Now" +msgstr "Køb Nu!" + +#: includes/common/class-mp-product.php:175 +#: includes/common/class-mp-product.php:990 +#: includes/common/class-mp-product.php:998 +msgid "Add To Cart" +msgstr "Læg i kurven!" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:807 +msgid "Store Style" +msgstr "Butiksstyles" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1021 +msgid "Edit Coupon" +msgstr "Rediger kupon" + +#: includes/addons/mp-coupons/class-mp-coupon.php:580 +#: includes/admin/class-mp-ajax.php:238 +#: includes/admin/class-mp-products-admin.php:1532 +msgid "Unlimited" +msgstr "Ubegrænset" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1198 +msgid "Remaining Uses" +msgstr "Tilbageværende brugere" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1197 +msgid "Used" +msgstr "Brugt" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:752 +#: includes/admin/class-mp-products-admin.php:2343 +msgid "Start Date" +msgstr "Startdato" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:598 +msgid "Coupon Code" +msgstr "Kupon kode" + +#: includes/admin/class-mp-orders-admin.php:444 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:284 +msgid "Save Changes" +msgstr "Gem Ændringer" + +#: includes/admin/class-mp-pages-admin.php:57 +#: includes/admin/class-mp-shortcode-builder.php:716 +#: includes/admin/class-mp-shortcode-builder.php:727 +#: includes/admin/class-mp-shortcode-builder.php:883 +#: includes/admin/class-mp-shortcode-builder.php:894 +#: includes/admin/class-mp-shortcode-builder.php:946 +#: includes/admin/class-mp-shortcode-builder.php:956 +#: includes/admin/class-mp-shortcode-builder.php:1006 +#: includes/admin/class-mp-shortcode-builder.php:1327 +#: includes/admin/class-mp-shortcode-builder.php:1338 +#: includes/admin/store-settings/class-mp-store-settings-general.php:357 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:270 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:108 +#: includes/admin/widgets/ms-global-product-list.php:172 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:94 +msgid "None" +msgstr "Ingen/intet" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:352 +msgid "Google Analytics Ecommerce Tracking" +msgstr "Google Analytics E-handelssporing" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:310 +msgid "This option turns MarketPress into more of a product listing plugin, disabling shopping carts, checkout, and order management. This is useful if you simply want to list items you can buy in a store somewhere else, optionally linking the \"Buy Now\" buttons to an external site. Some examples are a car dealership, or linking to songs/albums in itunes, or linking to products on another site with your own affiliate links." +msgstr "Denne indstilling gør MarketPress til mere en slags produktkatalog plugin, idet den deaktiverer vogn, checkout, og ordrestyring. Dette er anvendeligt, hvis du kun ønsker at liste produkter som skal købes andetsteds - alternativt kan \"Køb Nu\" knappen linkes til en ekstern side. Det kunne være relevant hvis du ikke ønsker at gennemføre salg online af den ene eller anden årsag, men gerne vil fremvise dine produkter." + +#: includes/admin/store-settings/class-mp-store-settings-general.php:304 +msgid "Whether or not customers must be registered and logged in to checkout. (Not recommended: Enabling this can lower conversions)" +msgstr "Vælg om kunden skal registrere sig og være logget ind for at Checke ud. (Ikke anbefalelsesværdigt, idet at aktivere dette kan hindre salg)" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:258 +msgid "How many times may a customer download a file they have purchased? (It's best to set this higher than one in case they have any problems downloading)" +msgstr "Hvor mange gange må en kunde downloade en købt fil? (det er bedst at sætte værdien højere end 1, i det tilfælde at der er problemer med at downloade)" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:257 +msgid "Maximum Downloads" +msgstr "Maksimale Downloads" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:298 +msgid "This will set the product to draft if inventory of all variations is gone." +msgstr "Dette vil markere produkter som kladde, dersom alle varianter i produktet er udsolgt" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:288 +msgid "At what low stock count do you want to be warned for products you have enabled inventory tracking for?" +msgstr "Ved hvilken lagerbeholdning vil du modtage advarsler for de produkter hvor du har aktiveret lagersporing?" + +#: includes/admin/class-mp-dashboard-widgets.php:208 +#: includes/admin/store-settings/class-mp-store-settings-general.php:287 +msgid "Inventory Warning Threshold" +msgstr "Grænse for advarsel ved lav lagerbeholdning" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:282 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:542 +msgid "Miscellaneous Settings" +msgstr "Øvrige Indstillinger" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:429 +#: includes/multisite/class-mp-admin-multisite.php:247 +msgid "Show Decimal in Prices" +msgstr "Vis decimaler i priser" + +#: includes/admin/class-mp-setup-wizard.php:451 +#: includes/admin/store-settings/class-mp-store-settings-general.php:403 +#: includes/multisite/class-mp-admin-multisite.php:221 +msgid "Currency Symbol Position" +msgstr "Valutasymbolets placering " + +#: includes/admin/class-mp-setup-wizard.php:444 +#: includes/admin/store-settings/class-mp-store-settings-general.php:396 +msgid "Store Currency" +msgstr "Butikkens Valuta" + +#: includes/admin/class-mp-setup-wizard.php:429 +#: includes/admin/store-settings/class-mp-store-settings-general.php:381 +msgid "Currency Settings" +msgstr "Valuta Indstillinger" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:516 +msgid "Please see your local tax laws. Note if this is enabled and a downloadable only cart, rates will be the default for your base location." +msgstr "Bemærk at hvis dette er aktiveret og der kun er downloads i indkøbskurven, vil satsen være standardsatsen for dit land." + +#: includes/admin/class-mp-setup-wizard.php:529 +msgid "Apply Tax to Downloadable Products?" +msgstr "Beregn moms af Download produkter?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:498 +msgid "Enabling this option allows you to enter and show all prices inclusive of tax, while still listing the tax total as a line item in shopping carts. Please see your local tax laws." +msgstr "Ved at aktivere denne funktion, kan du indtaste og vise alle priser inklusiv moms, og stadig angive momsen som en separat linje i indkøbsvognen. Du skal ved salg til private altid oplyse priser inklusiv moms, så sæt hak her!" + +#: includes/admin/class-mp-setup-wizard.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:497 +msgid "Enter Prices Inclusive of Tax?" +msgstr "Indtastes priser inklusiv moms?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:492 +msgid "Please see your local tax laws. Most areas charge tax on shipping fees." +msgstr "Post Danmark er i skrivende stund undtaget moms, men andre fragtfirmaer skal opkræve moms." + +#: includes/admin/class-mp-setup-wizard.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:491 +msgid "Apply Tax To Shipping Fees?" +msgstr "Skal der tillægges moms på fragt?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:674 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:565 +#: includes/common/payment-gateways/authorizenet-aim.php:291 +#: includes/common/payment-gateways/authorizenet-aim.php:326 +#: includes/common/payment-gateways/payfast.php:347 +msgid "No" +msgstr "Nej" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:675 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:759 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:512 +#: includes/admin/class-mp-setup-wizard.php:518 +#: includes/admin/class-mp-setup-wizard.php:524 +#: includes/admin/class-mp-setup-wizard.php:530 +#: includes/admin/class-mp-setup-wizard.php:564 +#: includes/admin/store-settings/class-mp-store-settings-general.php:232 +#: includes/admin/store-settings/class-mp-store-settings-general.php:299 +#: includes/admin/store-settings/class-mp-store-settings-general.php:305 +#: includes/admin/store-settings/class-mp-store-settings-general.php:311 +#: includes/admin/store-settings/class-mp-store-settings-general.php:317 +#: includes/admin/store-settings/class-mp-store-settings-general.php:328 +#: includes/admin/store-settings/class-mp-store-settings-general.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:341 +#: includes/admin/store-settings/class-mp-store-settings-general.php:348 +#: includes/admin/store-settings/class-mp-store-settings-general.php:367 +#: includes/admin/store-settings/class-mp-store-settings-general.php:493 +#: includes/admin/store-settings/class-mp-store-settings-general.php:499 +#: includes/admin/store-settings/class-mp-store-settings-general.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:556 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:375 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:381 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:387 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:474 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:493 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:532 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:574 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:606 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:664 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:670 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:677 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:683 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:689 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:763 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:774 +#: includes/common/payment-gateways/_bitpay.php:250 +#: includes/common/payment-gateways/_bitpay.php:257 +#: includes/common/payment-gateways/_bitpay.php:264 +#: includes/common/payment-gateways/authorizenet-aim.php:290 +#: includes/common/payment-gateways/authorizenet-aim.php:325 +#: includes/common/payment-gateways/free_orders.php:160 +#: includes/common/payment-gateways/payfast.php:346 +#: includes/common/payment-gateways/paymill.php:162 +#: includes/common/payment-gateways/paypal-payflow.php:441 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-checkbox.php:22 +msgid "Yes" +msgstr "Ja" + +#: includes/admin/class-mp-setup-wizard.php:492 +#: includes/admin/store-settings/class-mp-store-settings-general.php:472 +msgid "%s Tax Rate" +msgstr "%s Momssats" + +#: includes/admin/class-mp-setup-wizard.php:467 +#: includes/admin/store-settings/class-mp-store-settings-general.php:449 +msgid "Tax Settings" +msgstr "Moms Indstillinger" + +#: includes/admin/class-mp-setup-wizard.php:370 +#: includes/admin/store-settings/class-mp-store-settings-general.php:624 +msgid "Base Zip/Postal Code" +msgstr "Postnummer" + +#: includes/admin/class-mp-setup-wizard.php:354 +#: includes/admin/store-settings/class-mp-store-settings-general.php:608 +msgid "Base State/Province/Region" +msgstr "Kommune" + +#: includes/admin/class-mp-setup-wizard.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:589 +msgid "Base Country" +msgstr "Land" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:582 +msgid "Location Settings" +msgstr "Indstillinger for placering" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:195 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:800 +#: includes/multisite/class-mp-admin-multisite.php:172 +msgid "General Settings" +msgstr "Generelle Indstillinger" + +#: includes/admin/class-mp-products-admin.php:1945 +#: includes/admin/class-mp-products-admin.php:2185 +#: includes/admin/class-mp-store-settings-admin.php:111 +#: includes/admin/class-mp-store-settings-admin.php:266 +msgid "General" +msgstr "Generelle" + +#: includes/admin/class-mp-store-settings-admin.php:242 +msgid "Importers" +msgstr "Importører" + +#: includes/admin/class-mp-store-settings-admin.php:115 +#: includes/admin/class-mp-store-settings-admin.php:234 +msgid "Payments" +msgstr "Betalinger" + +#: includes/admin/class-mp-dashboard-widgets.php:313 +#: includes/admin/class-mp-store-settings-admin.php:112 +#: includes/admin/class-mp-store-settings-admin.php:222 +msgid "Presentation" +msgstr "Præsentation" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:916 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1015 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1018 +#: includes/admin/class-mp-dashboard-widgets.php:305 marketpress.php:702 +msgid "Coupons" +msgstr "Kuponer" + +#: includes/admin/class-mp-admin.php:251 +msgid "Download »" +msgstr "Download »" + +#: includes/admin/class-mp-admin.php:245 +#: includes/admin/class-mp-exporter-orders.php:170 +msgid "All Statuses" +msgstr "Alle Statusser" + +#: includes/admin/class-mp-admin.php:209 +#: includes/admin/class-mp-exporter-orders.php:150 +#: includes/admin/class-mp-exporter-orders.php:178 +msgid "Export Orders" +msgstr "Eksporter Ordrer" + +#: includes/admin/class-mp-admin.php:228 +msgid "Show all dates" +msgstr "Vis alle datoer" + +#: includes/admin/class-mp-orders-admin.php:947 +msgid "Change Status" +msgstr "Skift Status" + +#: includes/admin/class-mp-orders-admin.php:287 +msgid "Order Notes" +msgstr "Ordre Noter" + +#: includes/admin/class-mp-orders-admin.php:478 +msgid "Other" +msgstr "Øvrigt" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:205 +msgid "Subtotal" +msgstr "Subtotal" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:84 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:87 +#: includes/admin/class-mp-products-admin.php:1737 +#: includes/common/class-mp-cart.php:1409 +#: includes/common/class-mp-product.php:559 +msgid "Quantity" +msgstr "Antal" + +#: includes/common/helpers.php:93 +msgid "Item" +msgstr "Produkt" + +#: includes/common/class-mp-order.php:1050 +msgid "Current Status" +msgstr "Nuværende Status" + +#: includes/admin/class-mp-orders-admin.php:297 +msgid "Order Actions" +msgstr "Ordre Handlinger" + +#: includes/common/class-mp-product.php:1084 +msgid "More Info »" +msgstr "Mere Info »" + +#: includes/common/class-mp-product.php:2313 +msgid "Low Product Inventory Notification" +msgstr "Besked om lav lagerbeholdning" + +#: includes/common/class-mp-order.php:338 includes/common/data.php:154 +msgid "New Order Notification: ORDERID" +msgstr "Ny Ordrebesked: ORDERID" + +#: includes/common/helpers.php:259 +msgid "Your payment for this order is complete." +msgstr "Din betaling for denne ordre er gennemført." + +#: includes/common/helpers.php:261 +msgid "Your payment for this order is not yet complete. Here is the latest status:" +msgstr "Din betaling for denne ordre er ikke gennemført endnu. Her er seneste status:" + +#: includes/common/helpers.php:256 +msgid "Payment Total:" +msgstr "I alt til betaling:" + +#: includes/common/helpers.php:253 +msgid "Transaction ID:" +msgstr "Transaktions ID:" + +#: includes/common/helpers.php:249 +msgid "Payment Type:" +msgstr "Betalingsart:" + +#: includes/common/helpers.php:246 +msgid "Payment Method:" +msgstr "Betalingsmetode:" + +#: includes/common/helpers.php:242 +msgid "Order Notes:" +msgstr "Ordre Noter:" + +#: includes/common/helpers.php:237 +msgid "Special Instructions:" +msgstr "Særlige Instrukser:" + +#: includes/common/helpers.php:232 +msgid "Tracking Number:" +msgstr "Tracking Nummer:" + +#: includes/common/helpers.php:223 includes/common/helpers.php:226 +#: includes/common/helpers.php:228 +#: includes/common/shipping-modules/class-mp-shipping-api.php:406 +#: includes/common/shipping-modules/class-mp-shipping-api.php:428 +msgid "Shipping Method:" +msgstr "Forsendelsesmetode:" + +#: includes/common/helpers.php:168 +msgid "No shipping required for this order." +msgstr "Forsendelse ikke nødvendig for denne ordre:" + +#: includes/common/helpers.php:155 +msgid "Order Total:" +msgstr "Ordre Total:" + +#: includes/common/class-mp-order.php:1025 +msgid "Taxes:" +msgstr "Moms:" + +#: includes/common/class-mp-order.php:1032 includes/common/helpers.php:144 +msgid "Shipping:" +msgstr "Forsendelse:" + +#: includes/public/class-mp-checkout.php:367 +msgid "Street address, P.O. box, company name, c/o" +msgstr "Gadenavn, P.O. Box, Firmanavn, c/o" + +#: includes/admin/class-mp-orders-admin.php:314 +msgid "Shipping Info" +msgstr "Forsendelsesinformation" + +#: includes/public/class-mp-public.php:740 +msgid "Whoops, there was a problem loading up this file for your download. Please contact us for help." +msgstr "Whoops, der var et problem under upload af filen. Vær venlig at kontakte os for hjælp." + +#: includes/public/class-mp-public.php:683 +msgid "Sorry, our records show you've downloaded this file %d out of %d times allowed. Please contact us if you still need help." +msgstr "Beklager, vore optegnelser viser at du har downloadet denne fil %d ud af %d af de tilladte. Vær venlig at kontakte os for yderligere hjælp." + +#: includes/public/class-mp-public.php:634 +msgid "Sorry, your order has been marked as unpaid." +msgstr "Beklager, din ordre er noteret som værende ubetalt." + +#: includes/public/class-mp-public.php:629 +msgid "Sorry, the link is invalid for this download." +msgstr "Beklager, linket er ikke gyldigt til denne download." + +#: includes/admin/class-mp-exporter-orders.php:15 +#: includes/admin/class-mp-products-admin.php:1172 +msgid "Cheatin’ uh?" +msgstr "Snyder du?" + +#: includes/public/class-mp-public.php:407 +#: includes/public/class-mp-short-codes.php:128 +msgid "Please enter a valid email address." +msgstr "" + +#: includes/admin/class-mp-ajax.php:191 +#: includes/admin/class-mp-products-admin.php:1821 +#: includes/admin/class-mp-products-admin.php:2010 +#: includes/admin/class-mp-products-admin.php:2267 +msgid "File URL" +msgstr "Fil URL" + +#: includes/admin/class-mp-products-admin.php:1842 +msgid "External Link" +msgstr "Eksternt link" + +#: includes/admin/class-mp-products-admin.php:2177 +msgid "Add Variation" +msgstr "Tilføj Variant" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:126 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:289 +msgid "Inventory" +msgstr "Varer på Lager" + +#: includes/admin/class-mp-products-admin.php:438 +#: includes/admin/class-mp-products-admin.php:578 +#: includes/admin/class-mp-products-admin.php:1552 +#: includes/admin/class-mp-products-admin.php:2053 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:134 +msgid "Sale Price" +msgstr "Udsalgspris" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "Variation Name" +msgstr "Variationsnavn" + +#: includes/admin/class-mp-products-admin.php:1931 +msgid "Product Details" +msgstr "Produktdetaljer" + +#: includes/admin/class-mp-product-attributes-list-table.php:33 +msgid "Delete" +msgstr "Slet" + +#: includes/admin/class-mp-orders-admin.php:1057 +msgid "Trashed" +msgstr "Fjernet" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:231 +#: includes/admin/class-mp-orders-admin.php:1015 +#: includes/common/class-mp-order.php:1052 includes/common/helpers.php:97 +msgid "Total" +msgstr "Total" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1196 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:210 +#: includes/admin/class-mp-orders-admin.php:1014 +msgid "Discount" +msgstr "Rabat" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:221 +#: includes/admin/class-mp-orders-admin.php:1013 +#: includes/common/payment-gateways/_ideal.php:148 +#: includes/common/payment-gateways/_payway.php:134 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:108 +msgid "Tax" +msgstr "Moms" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:216 +#: includes/admin/class-mp-orders-admin.php:1012 +#: includes/admin/class-mp-products-admin.php:1958 +#: includes/admin/class-mp-products-admin.php:2198 +#: includes/admin/class-mp-store-settings-admin.php:114 +#: includes/admin/class-mp-store-settings-admin.php:230 +#: includes/common/class-mp-cart.php:717 includes/common/helpers.php:168 +#: includes/common/payment-gateways/_ideal.php:137 +#: includes/common/payment-gateways/_payway.php:116 +#: includes/public/class-mp-checkout.php:1304 +msgid "Shipping" +msgstr "Forsendelse" + +#: includes/admin/class-mp-orders-admin.php:1011 +msgid "Items" +msgstr "Produkter" + +#: includes/admin/class-mp-orders-admin.php:1010 +msgid "From" +msgstr "Fra" + +#: includes/admin/class-mp-exporter-orders.php:154 +#: includes/admin/class-mp-orders-admin.php:1009 +#: includes/common/class-mp-gdpr.php:370 +msgid "Order Date" +msgstr "Ordre Dato" + +#: includes/admin/class-mp-orders-admin.php:1008 +#: includes/common/class-mp-gdpr.php:366 +#: includes/common/template-functions.php:2134 +msgid "Order ID" +msgstr "Ordre ID" + +#: includes/addons/class-mp-addons-list-table.php:22 +#: includes/admin/class-mp-orders-admin.php:1007 +msgid "Status" +msgstr "Status" + +#: includes/admin/class-mp-orders-admin.php:1155 +msgid "N/A" +msgstr "N/A" + +#: includes/admin/class-mp-dashboard-widgets.php:243 +#: includes/admin/class-mp-products-admin.php:464 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:142 +msgid "Sales" +msgstr "Salg" + +#: includes/admin/class-mp-products-admin.php:463 +msgid "Stock" +msgstr "Beholdning" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:85 +#: includes/admin/class-mp-ajax.php:176 includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:434 +#: includes/admin/class-mp-products-admin.php:462 +#: includes/admin/class-mp-products-admin.php:576 +#: includes/admin/class-mp-products-admin.php:1519 +#: includes/admin/class-mp-products-admin.php:1569 +#: includes/admin/class-mp-products-admin.php:1950 +#: includes/admin/class-mp-products-admin.php:2059 +#: includes/admin/class-mp-products-admin.php:2190 +#: includes/admin/class-mp-products-admin.php:2330 +#: includes/common/class-mp-cart.php:1415 includes/common/helpers.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:130 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:276 +msgid "Price" +msgstr "Pris" + +#: includes/admin/class-mp-ajax.php:173 +#: includes/admin/class-mp-products-admin.php:461 +#: includes/admin/class-mp-products-admin.php:1972 +#: includes/admin/class-mp-products-admin.php:2224 +msgid "SKU" +msgstr "SKU" + +#: includes/admin/class-mp-products-admin.php:459 +#: includes/admin/class-mp-products-admin.php:1793 +#: includes/admin/class-mp-products-admin.php:1805 +#: includes/admin/class-mp-products-admin.php:2163 +msgid "Variations" +msgstr "Variationer" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:83 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:86 +#: includes/admin/class-mp-dashboard-widgets.php:134 +#: includes/admin/class-mp-products-admin.php:458 +#: includes/admin/class-mp-products-admin.php:837 +#: includes/admin/class-mp-shortcode-builder.php:689 +#: includes/admin/class-mp-shortcode-builder.php:856 +#: includes/admin/class-mp-shortcode-builder.php:1300 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:512 +#: includes/admin/widgets/ms-global-product-list.php:115 +#: includes/admin/widgets/product-list.php:211 +msgid "Product Name" +msgstr "Produktnavn" + +#: includes/common/template-functions.php:2575 +msgid "Categorized in " +msgstr "Kategoriseret i" + +#: includes/admin/class-mp-orders-admin.php:305 +#: includes/common/payment-gateways/free_orders.php:176 +msgid "Payment Information" +msgstr "Betalingsinformation" + +#: includes/admin/class-mp-exporter-orders.php:167 +#: includes/admin/class-mp-orders-admin.php:432 +#: includes/admin/class-mp-pages-admin.php:62 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:227 +#: includes/common/class-mp-gdpr.php:374 +#: includes/common/template-functions.php:175 +#: includes/common/template-functions.php:926 +msgid "Order Status" +msgstr "Ordre Status" + +#. translators: %s: orders closed +#: marketpress.php:327 +msgid "Closed (%s)" +msgid_plural "Closed (%s)" +msgstr[0] "Lukket (%s)" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:249 +#: includes/admin/class-mp-orders-admin.php:375 +#: includes/admin/class-mp-orders-admin.php:951 +#: includes/admin/class-mp-orders-admin.php:1053 +#: includes/admin/class-mp-orders-admin.php:1065 +#: includes/common/class-mp-gdpr.php:330 +#: includes/common/class-mp-order.php:1019 marketpress.php:325 +msgid "Closed" +msgstr "Lukket" + +#. translators: %s: shipped orders +#: marketpress.php:320 +msgid "Shipped (%s)" +msgid_plural "Shipped (%s)" +msgstr[0] "Afsendt (%s)" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:248 +#: includes/admin/class-mp-orders-admin.php:376 +#: includes/admin/class-mp-orders-admin.php:950 +#: includes/admin/class-mp-orders-admin.php:1049 +#: includes/admin/class-mp-orders-admin.php:1064 +#: includes/common/class-mp-gdpr.php:329 +#: includes/common/class-mp-order.php:1002 marketpress.php:318 +msgid "Shipped" +msgstr "Afsendt" + +#. translators: %s: paid orders +#: marketpress.php:313 +msgid "Paid (%s)" +msgid_plural "Paid (%s)" +msgstr[0] "Betalt (%s)" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:247 +#: includes/admin/class-mp-orders-admin.php:377 +#: includes/admin/class-mp-orders-admin.php:949 +#: includes/admin/class-mp-orders-admin.php:1045 +#: includes/admin/class-mp-orders-admin.php:1063 +#: includes/common/class-mp-gdpr.php:328 +#: includes/common/payment-gateways/2checkout.php:294 +#: includes/common/payment-gateways/_cubepoints.php:130 +#: includes/common/payment-gateways/authorizenet-aim.php:193 +#: includes/common/payment-gateways/free_orders.php:91 +#: includes/common/payment-gateways/mijireh.php:248 +#: includes/common/payment-gateways/paymill.php:273 +#: includes/common/payment-gateways/paypal-express.php:933 +#: includes/common/payment-gateways/paypal-express.php:967 +#: includes/common/payment-gateways/pin.php:258 +#: includes/common/payment-gateways/simplify.php:181 +#: includes/common/payment-gateways/stripe.php:368 +#: includes/common/payment-gateways/wepay.php:269 marketpress.php:311 +msgid "Paid" +msgstr "Betalt" + +#. translators: %s: orders received +#: marketpress.php:306 +msgid "Received (%s)" +msgid_plural "Received (%s)" +msgstr[0] "Modtaget (%s)" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:246 +#: includes/admin/class-mp-orders-admin.php:378 +#: includes/admin/class-mp-orders-admin.php:1041 +#: includes/admin/class-mp-orders-admin.php:1062 +#: includes/common/class-mp-gdpr.php:327 includes/common/class-mp-order.php:995 +#: includes/common/payment-gateways/payfast.php:244 marketpress.php:304 +msgid "Received" +msgstr "Modtaget" + +#: marketpress.php:268 +msgid "Search Orders" +msgstr "Søg efter ordre" + +#: marketpress.php:267 +msgid "View Order" +msgstr "Se Ordre" + +#: marketpress.php:262 +msgid "Order" +msgstr "Ordre" + +#: includes/admin/class-mp-dashboard-widgets.php:301 +#: includes/admin/class-mp-orders-admin.php:989 marketpress.php:261 +msgid "Orders" +msgstr "Ordrer" + +#: marketpress.php:228 +msgid "No Products found in Trash" +msgstr "Ingen Produkter Fundet i papirkurven" + +#: marketpress.php:227 +msgid "No Products Found" +msgstr "Ingen Produkter Fundet" + +#: marketpress.php:226 +msgid "Search Products" +msgstr "Søg Efter Produkt" + +#: marketpress.php:225 marketpress.php:229 +msgid "View Product" +msgstr "Se Produkt" + +#: marketpress.php:224 +msgid "New Product" +msgstr "Nyt Produkt" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1022 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:258 +#: marketpress.php:223 +msgid "Edit" +msgstr "Rediger" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1019 +msgid "Create New" +msgstr "Opret nyt" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:687 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:698 +#: marketpress.php:217 +msgid "Product" +msgstr "Produkt" + +#: includes/admin/class-mp-dashboard-widgets.php:307 +#: includes/common/template-functions.php:173 +#: includes/common/template-functions.php:179 +#: includes/common/template-functions.php:902 +#: includes/multisite/template-functions.php:82 marketpress.php:216 +#: marketpress.php:219 +msgid "Products" +msgstr "Produkter" + +#: includes/admin/class-mp-store-settings-admin.php:118 +#: includes/admin/widgets/product-tag-cloud.php:46 +#: includes/multisite/class-mp-admin-multisite.php:548 +msgid "Product Tags" +msgstr "Produktetiketter" + +#: includes/common/template-functions.php:2906 +#: includes/multisite/template-functions.php:449 +msgid "Product Category" +msgstr "Produktkategori" + +#: includes/admin/class-mp-store-settings-admin.php:117 +#: includes/admin/widgets/categories.php:8 +#: includes/admin/widgets/categories.php:18 +#: includes/multisite/class-mp-admin-multisite.php:539 +msgid "Product Categories" +msgstr "Produkt Kategorier" + +#: includes/common/payment-gateways/stripe.php:332 +#: includes/common/template-functions.php:872 marketpress.php:218 +msgid "Store" +msgstr "Butik" + +#: includes/admin/class-mp-pages-admin.php:60 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:209 +#: includes/admin/widgets/cart.php:8 includes/admin/widgets/cart.php:56 +#: includes/common/template-functions.php:174 +#: includes/common/template-functions.php:811 +msgid "Shopping Cart" +msgstr "Indkøbskurv" + +#: includes/admin/class-mp-store-settings-admin.php:110 +#: includes/admin/class-mp-store-settings-admin.php:218 +msgid "Store Settings" +msgstr "Butik Indstillinger" + +#: includes/addons/class-mp-addons-list-table.php:128 marketpress.php:607 +msgid "Settings" +msgstr "Indstillinger" + +#: includes/common/data.php:178 includes/common/data.php:190 +msgid "Your Order Has Been Shipped! (ORDERID)" +msgstr "Din ordre er afsendt ! (ORDERID) " + +#: includes/common/data.php:159 includes/common/data.php:166 +#: includes/common/data.php:172 +msgid "Your Order Confirmation (ORDERID)" +msgstr "Din ordrebekræftelse (ORDERID)" + +#: includes/common/data.php:148 +msgid "

    Thank you for your order! We appreciate your business, and please come back often to check out our new products.

    " +msgstr "

    Tak for din ordre! Vi er glade for at handle med dig, så kom tit tilbage og check om vi skulle have andre produkter, som kunne have din interesse.

    " + +#: includes/common/data.php:147 +msgid "

    You are almost done! Please do a final review of your order to make sure everything is correct then click the \"Confirm Payment\" button.

    " +msgstr "

    Du er lige ved at være færdig! Vær venlig at lave et sidste tjek, for at sikre dig at alt er korrekt, derefter skal du klikke på \"Bekræft Betaling\" knappen.

    " + +#: includes/common/data.php:145 +msgid "

    Please enter your shipping information in the form below to proceed with your order.

    " +msgstr "

    Vær venlig at indtaste din fragtinformation i nedenstående formular for at kunne fortsætte din bestilling.

    " + +#: includes/common/data.php:143 +msgid "

    If you have any questions about your order please do not hesitate to contact us.

    " +msgstr "

    Hvis du har nogle spørgsmål omkring din ordre, så tøv ikke med at kontakte os

    " + +#: includes/common/data.php:106 +msgid "tag" +msgstr "etiket" + +#: includes/common/data.php:105 +msgid "category" +msgstr "kategori" + +#: includes/common/data.php:104 +msgid "order-status" +msgstr "ordre-status" + +#: includes/common/data.php:103 +msgid "shopping-cart" +msgstr "vogn" + +#: includes/common/data.php:102 +msgid "products" +msgstr "produkter" + +#. Translators: change default slugs here +#: includes/common/data.php:101 +msgid "store" +msgstr "butik" \ No newline at end of file diff --git a/languages/mp-de-ch.mo b/languages/mp-de-ch.mo new file mode 100644 index 0000000000000000000000000000000000000000..dcf7c6b4b608675401a31cc43e67b9eb0f77d209 GIT binary patch literal 278 zcmYLD!AiqG6s+KBkDfiO;7woJ)JxfrQ*CR(&>&U3$(lUlYJ3~szKVW`zvtP{aMK(* zFw6{Z9?b8_@y{sYDDpJ&yblqVgY5M$dgybxfjj(k!FhsfD`@n^BtjMIVgV1x{lVxo znW(uZK@!-0cd;e-CF8EOjxt@nS`H}r{dNhnLys+m7i3sa`TUdJj z2u4%4k0GCCdaya^vs|Z{dW01cvK7xpuUao9V+iAEa+Rd&)>5;xOdefine( 'DOMPDF_ENABLE_HTML5PARSER', true ); to the wp-config.php file." +msgstr "" + +#: includes/public/class-mp-checkout.php:723 +msgid "Invalid Email" +msgstr "" + +#: includes/public/class-mp-checkout.php:721 +#: includes/public/class-mp-checkout.php:729 +msgid "This field is required" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:804 +msgid "This option changes the built-in css styles for store pages. For a custom css style, save your css file with the /* MarketPress Style: Your CSS Theme Name Here */ header line in the \"%s\" folder and it will appear in this list so you may select it. You should select \"None\" if you don't wish to use custom CSS styles or if you are using default theme templates or custom theme templates and css to make your own completely unique store design. For more information on custom theme templates click here »." +msgstr "" + +#: includes/public/class-mp-public.php:421 +#: includes/public/class-mp-short-codes.php:142 +msgid "Please enter a value greater than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:420 +#: includes/public/class-mp-short-codes.php:141 +msgid "Please enter a value less than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:419 +#: includes/public/class-mp-short-codes.php:140 +msgid "Please enter a value between {0} and {1}." +msgstr "" + +#: includes/public/class-mp-public.php:418 +#: includes/public/class-mp-short-codes.php:139 +msgid "Please enter a value between {0} and {1} characters long." +msgstr "" + +#: includes/public/class-mp-public.php:417 +#: includes/public/class-mp-short-codes.php:138 +msgid "Please enter at least {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:416 +#: includes/public/class-mp-short-codes.php:137 +msgid "Please enter no more than {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:415 +#: includes/public/class-mp-short-codes.php:136 +msgid "Please enter a value with a valid extension." +msgstr "" + +#: includes/public/class-mp-public.php:414 +#: includes/public/class-mp-short-codes.php:135 +msgid "Please enter the same value again." +msgstr "" + +#: includes/public/class-mp-public.php:413 +#: includes/public/class-mp-short-codes.php:134 +msgid "Please enter a valid credit card number." +msgstr "" + +#: includes/public/class-mp-public.php:412 +#: includes/public/class-mp-short-codes.php:133 +msgid "Please enter only digits." +msgstr "" + +#: includes/public/class-mp-public.php:411 +#: includes/public/class-mp-short-codes.php:132 +msgid "Please enter a valid number." +msgstr "" + +#: includes/public/class-mp-public.php:410 +#: includes/public/class-mp-short-codes.php:131 +msgid "Please enter a valid date (ISO)." +msgstr "" + +#: includes/public/class-mp-public.php:409 +#: includes/public/class-mp-short-codes.php:130 +msgid "Please enter a valid date." +msgstr "" + +#: includes/public/class-mp-public.php:408 +#: includes/public/class-mp-short-codes.php:129 +msgid "Please enter a valid URL." +msgstr "" + +#: includes/public/class-mp-public.php:406 +#: includes/public/class-mp-short-codes.php:127 +msgid "Please fix this field." +msgstr "" + +#: includes/public/class-mp-checkout.php:1287 +#: includes/public/class-mp-public.php:405 +#: includes/public/class-mp-short-codes.php:126 +msgid "This field is required." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:810 +msgid "None - Without Special CSS-styles" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:809 +msgid "Default - Using Default CSS-styles" +msgstr "" + +#: marketpress.php:739 +msgid "Enable multiple downloads per product" +msgstr "" + +#: marketpress.php:738 +msgid "Multiple Downloads" +msgstr "" + +#: includes/public/class-mp-checkout.php:715 +msgid "Invalid Zip Code" +msgstr "" + +#: includes/common/template-functions.php:2126 +msgid "Guest Email" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:195 +msgid "There was a problem finalizing your purchase. Please re-enter your credit card information and try again" +msgstr "" + +#: includes/common/class-mp-cart.php:565 includes/common/class-mp-order.php:600 +#: includes/common/helpers.php:111 +msgid "Download %1$s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:331 +msgid "Export products to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:328 +msgid "The import process uses the WordPress importer plugin." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:326 +msgid "Import / Export Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:325 +msgid "Export settings to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:324 +msgid "Import configuration" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:320 +msgid "Use the text below to export to a new installation. Or paste in the new configuration to import." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:318 +msgid "Import / Export Settings" +msgstr "" + +#. translators: URL to wp-admin/import.php +#: includes/admin/store-settings/class-mp-store-settings-import.php:266 +msgid "This importer is not installed. Please install importers from the main site." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:261 +msgid "Install Now" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:260 +msgid "Install %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:240 +msgid "Run Importer" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:239 +msgid "Run %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:258 +msgid "Import/Export" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1199 +msgid "Requires Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:737 +msgid "Optionally limit the user to some categories" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:671 +msgid "Should this coupon only be available to logged in users?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:670 +msgid "Require Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:655 +msgid "Mimimum number of products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:653 +msgid "Enter the minimum number of products in the cart that this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:648 +msgid "Can this coupon be limited to a number of products in the cart?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:334 +msgid "Add all values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:265 +msgid "Set as default variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:154 +msgid "Set Default" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:150 +msgid "More Info" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:40 +msgid "MarketPress - Quick Setup" +msgstr "" + +#: includes/public/class-mp-checkout.php:1399 +msgid "Proceed to checkout and create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1241 +#: includes/public/class-mp-checkout.php:1245 +msgid "Register account" +msgstr "" + +#: includes/public/class-mp-checkout.php:1233 +msgid "Register as customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:765 +msgid "

    Oops!

    Looks like you haven't added anything your cart. Let's go shopping!

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:763 +msgid "

    Oops!

    The cart is disabled.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing Information" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:214 +msgid "Global Currency" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:198 +msgid "Global Store Currency" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:507 +msgid "There are no shipping services available for this type of package in your location." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:168 +msgid "Using this USPS Shipping calculator requires requesting an Ecommerce API Username and Password. Get your free set of credentials here ». The password is no longer used for the API, just the username which you should enter below. The USPS test site has not yet been updated and currently doesn't work - you should just request activating your credentials with USPS and go live." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:339 +msgid "ZIP Code" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:334 +msgid "Last name" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:333 +msgid "First name" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:150 +msgid "These are the manual payment instructions to display on the order confirmation screen. TOTAL will be replaced with the order total and ORDERID will be replaced with Order ID." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:240 +msgid "You must login to Authorize.net merchant dashboard to obtain the API login ID and API transaction key. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:327 +msgid "
    1. Set the \"Return Method\" within Site Management to Header Redirect and set the \"Return URL\" to %s
    2. Set your notifications url to %s
    " +msgstr "" + +#: includes/common/data.php:191 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Also, digital downloads included in your order are now ready to be downloaded. Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:185 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order is now available to download! Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:184 +msgid "Your Order Is Ready To Be Downloaded! (ORDERID)" +msgstr "" + +#: includes/common/data.php:179 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:173 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received, your digital goods are ready to be downloaded and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:167 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received and your digital goods are ready to be downloaded. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:160 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +" Your order has been received, and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information: \n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/class-mp-product.php:638 +msgid "You can not add more items to cart." +msgstr "" + +#: includes/common/class-mp-product.php:635 +msgid "You can only add {0} to cart." +msgstr "" + +#: includes/common/class-mp-product.php:625 +msgid "This product has an order limit of %d." +msgstr "" + +#: includes/common/class-mp-order.php:1454 +msgid "Shipped: tracking code: %s" +msgstr "" + +#: includes/common/class-mp-order.php:1000 +#: includes/common/class-mp-order.php:1012 +msgid "Finished" +msgstr "" + +#: includes/common/class-mp-order.php:858 +msgid "Contact Details" +msgstr "" + +#: includes/common/class-mp-order.php:339 includes/common/data.php:155 +msgid "" +"A new order (ORDERID) was created in your store:\n" +"\n" +" ORDERINFOSKU\n" +"\n" +" SHIPPINGINFO\n" +"\n" +" PAYMENTINFO\n" +"\n" +msgstr "\n" + +#: includes/common/class-mp-cart.php:1858 +msgid "Add again" +msgstr "" + +#: includes/common/class-mp-cart.php:1852 +msgid "was removed from Shopping Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1242 +#: includes/public/class-mp-short-codes.php:160 +msgid "Cart update notice: this item has a limit per order or you have reached the stock limit." +msgstr "" + +#: includes/admin/widgets/product-list.php:235 +msgid "Show Only Featured Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:533 +msgid "If enabled, users won't be able to filter products per category and/or to order by release date/name/price." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:531 +msgid "Hide Products Filter?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:353 +msgid "Notification to registration email instead of billing email?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:322 +msgid "Order Shipped - Mixed orders (with both digital and physical products)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:289 +msgid "Order Shipped - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:224 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:194 +msgid "New Order - Mixed" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:161 +msgid "New Order - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:115 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:243 +msgid "Mixed orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:110 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:238 +msgid "Digital downloads orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:105 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:233 +msgid "Physical orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:96 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed.
    For orders placed with manual payment, emails set here will be overriden by the one configured in manual payments settings, under payments settings page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:89 +msgid "Customer Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:47 +msgid "Admin Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:566 +msgid "Only contact details" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:565 +msgid "Full billing info" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:561 +msgid "Details Collection" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:548 +msgid "Digital Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:515 +msgid "Apply Tax to Digital Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:236 +msgid "product (default)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:231 +msgid "If you are experiencing conflicts with other e-commerce plugins change this setting. This will change the internal post type of all your products. Please note that changing this option may break 3rd party themes or plugins." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1203 +msgid "Hide details" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1202 +msgid "Show all changes" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1184 +msgid "Version %s" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1161 +msgid "Current" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1131 +msgid "%s changelog" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:952 +msgid "We did not find any data for this plugin or theme..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:285 +msgid "Activate WPMU DEV Dashboard" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:279 +msgid "Just one more step - activate the WPMU DEV Dashboard plugin and you're all done!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:277 +msgid "Important updates are available for your WPMU DEV plugins/themes. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:273 +msgid "Just one more step to enable updates and support for %s!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:271 +msgid "Important updates are available for %s. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:264 +msgid "activate" +msgstr "" + +#: includes/admin/class-mp-admin.php:398 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:248 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:289 +msgid "Dismiss" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:247 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:288 +msgid "Saving..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:244 +msgid "Install Plugin" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:238 +msgid "Almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:236 +msgid "Important updates are available for your WPMU DEV plugins/themes. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:232 +msgid "%s is almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:230 +msgid "Important updates are available for %s. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:223 +msgid "install" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1428 +msgid "Sets the number of Tags to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1289 +msgid "How many products to display in the product list if \"paginate\" is set to false." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:739 +#: includes/admin/class-mp-shortcode-builder.php:906 +#: includes/admin/class-mp-shortcode-builder.php:1350 +msgid "Grid" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:735 +#: includes/admin/class-mp-shortcode-builder.php:902 +#: includes/admin/class-mp-shortcode-builder.php:1346 +msgid "Products will be displayed as list or grid." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:206 +msgid "Display a cloud or list of your global product tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:205 +msgid "Display a list of your global categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:204 +msgid "Display a list or grid of your global products." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:181 +msgid "Display a list of featured products." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1451 +msgid "Is Featured?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1444 +msgid "Featured Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:581 +#: includes/admin/class-mp-products-admin.php:1580 +msgid "% discount" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:579 +msgid "OR" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:460 +#: includes/admin/class-mp-products-admin.php:586 +#: includes/admin/widgets/product-list.php:217 +msgid "Featured" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:536 +#: includes/admin/class-mp-orders-admin.php:538 +msgid "Tracking Link" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:508 +msgid "Shipping Tax" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:356 +msgid "Shipping Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:352 +msgid "Taxes Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:349 +msgid "Products Total" +msgstr "" + +#: includes/admin/class-mp-ajax.php:366 +msgid "Oops! You entered an invalid username/email and or password." +msgstr "" + +#: includes/admin/class-mp-ajax.php:254 +msgid "Percentage Discount" +msgstr "" + +#: includes/admin/class-mp-ajax.php:234 +msgid "Limit the Amount of Items per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:214 +msgid "Unused Attributes" +msgstr "" + +#: includes/admin/class-mp-admin.php:82 +msgid "Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-admin.php:79 +msgid "MarketPress setup is not complete! Once you've completed this quick setup wizard you'll have a fully working online store - exciting! " +msgstr "" + +#: marketpress.php:263 +msgctxt "mp_order" +msgid "Add New" +msgstr "" + +#: marketpress.php:184 +msgctxt "product_tag" +msgid "Product Tag" +msgstr "" + +#: marketpress.php:183 +msgctxt "product_tag" +msgid "Product Tags" +msgstr "" + +#: marketpress.php:150 +msgctxt "product_category" +msgid "Product Category" +msgstr "" + +#: marketpress.php:149 +msgctxt "product_category" +msgid "Product Categories" +msgstr "" + +#. Author URI of the plugin/theme +msgid "http://premium.wpmudev.org" +msgstr "" + +#: marketpress.php:729 +msgid "Invoice PDF" +msgstr "" + +#: marketpress.php:712 +msgid "Grant access to themes and gateways depending on the user's Pro Site level" +msgstr "" + +#: marketpress.php:711 +msgid "Pro Sites" +msgstr "" + +#: marketpress.php:703 +msgid "Offer and accept coupon codes" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:687 +msgid "Install %s Pages" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:682 +msgid "Welcome to %s – Install pages required by the plugin automatically." +msgstr "" + +#: marketpress.php:668 +msgid "Your pages were created successfully." +msgstr "" + +#: marketpress.php:436 +msgid "Add a Product" +msgstr "" + +#: marketpress.php:271 +msgid "Parent Order" +msgstr "" + +#: marketpress.php:270 +msgid "No orders found in trash" +msgstr "" + +#: marketpress.php:269 +msgid "No orders found" +msgstr "" + +#: marketpress.php:265 +msgid "Edit Order" +msgstr "" + +#: marketpress.php:264 +msgid "Add New Order" +msgstr "" + +#: marketpress.php:220 marketpress.php:221 +msgid "Add New Product" +msgstr "" + +#: marketpress.php:197 +msgid "No product tags found" +msgstr "" + +#: marketpress.php:196 +msgid "Choose from the most used product tags" +msgstr "" + +#: marketpress.php:195 +msgid "Add or remove product tags" +msgstr "" + +#: marketpress.php:194 +msgid "Separate product tags with commas" +msgstr "" + +#: marketpress.php:193 +msgid "Search Product Tags" +msgstr "" + +#: marketpress.php:192 +msgid "Parent Product Tag:" +msgstr "" + +#: marketpress.php:191 +msgid "Parent Product Tag" +msgstr "" + +#: marketpress.php:190 +msgid "New Product Tag Name" +msgstr "" + +#: marketpress.php:189 +msgid "Add New Product Tag" +msgstr "" + +#: marketpress.php:188 +msgid "Update Product Tag" +msgstr "" + +#: marketpress.php:187 +msgid "View Product Tag" +msgstr "" + +#: marketpress.php:186 +msgid "Edit Product Tag" +msgstr "" + +#: marketpress.php:185 +msgid "All Product Tags" +msgstr "" + +#: marketpress.php:163 +msgid "No product categories found" +msgstr "" + +#: marketpress.php:162 +msgid "Choose from the most used product categories" +msgstr "" + +#: marketpress.php:161 +msgid "Add or remove product categories" +msgstr "" + +#: marketpress.php:160 +msgid "Separate product categories with commas" +msgstr "" + +#: marketpress.php:159 +msgid "Search Product Categories" +msgstr "" + +#: marketpress.php:158 +msgid "Parent Product Category:" +msgstr "" + +#: marketpress.php:157 +msgid "Parent Product Category" +msgstr "" + +#: marketpress.php:156 +msgid "New Product Category Name" +msgstr "" + +#: marketpress.php:155 +msgid "Add New Product Category" +msgstr "" + +#: marketpress.php:154 +msgid "Update Product Category" +msgstr "" + +#: marketpress.php:153 +msgid "View Product Category" +msgstr "" + +#: marketpress.php:152 +msgid "Edit Product Category" +msgstr "" + +#: marketpress.php:151 +msgid "All Product Categories" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Please fix the %s1 and then try submitting the form again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Oops! The form contains %s1 which %s2 been highlighted below." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:660 +msgid "have" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:659 +msgid "has" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:651 +msgid "Value must be less than {0}" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:650 +msgid "Please enter only letters and numbers" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:539 +msgid "Due to prolonged inactivity on this page, one or more settings were not saved. Please try again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:535 +msgid "Settings Saved" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-user-select.php:22 +msgid "Select Some Users" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-section.php:18 +msgid "Section Title" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:425 +msgid "Are you sure you want to delete this?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:30 +msgid "Add Row" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-post-select.php:24 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-taxonomy-select.php:22 +msgid "Select Posts" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:210 +msgid "Add Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:129 +msgid "Select the image that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:93 +msgid "Select image(s) that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:79 +msgid "Select the image that you would like to use for this variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:48 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:82 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:68 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:132 +msgid "Select Image" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:31 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:160 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:168 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:19 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:115 +msgid "Select File" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:30 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:18 +msgid "Select the file that you would like to use." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:357 +msgid "Create Variations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:356 +msgid "Add Another Variant" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Insert a value and press ENTER" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "(e.g. White, Grey, Red etc.)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Variation Values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:333 +msgid "Or create new variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "(e.g. Color)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:303 +msgid "You are about to delete selected variants.
    If you want to continue please confirm." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:302 +msgid "Confirmation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:290 +msgid "Insert quantity available. Empty for unlimited." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:281 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:294 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:307 +msgid "Cancel" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:280 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:293 +msgid "Update" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:277 +msgid "Insert the price i.e. 25 or 25.50" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:115 +msgid "Img." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:85 +msgid "Add New Variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:79 +msgid "Delete Variants" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:78 +msgid "Update Prices" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:77 +msgid "Update Inventory" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:76 +msgid "Update Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:75 +msgid "Bulk Actions" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:73 +msgid "Select bulk action" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:196 +msgid "Configure Store" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:195 +msgid "Configure shipping rates, emails and your store's appearance. " +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:190 +msgid "Add Product" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:189 +msgid "Add your first product for sale and get familiar with adding products." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:184 +msgid "Your store is almost ready for its first customers, but first it needs some products. Get started by adding products below, or jump straight into further configuring your store’s settings." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:183 +msgid "Woohoo! Your online store is up and running." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:160 +msgid "Finish Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:124 +msgid "And what metric system do you want to use?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:113 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:142 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:159 +msgid "Back" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:109 +msgid "Do you want to apply tax for your products? You can customize this for each product and variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:105 +msgid "What currency do you want to sell with?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:93 +msgid "And, which countries do you want to sell to?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:89 +msgid "Where is your online store based?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:80 +msgid "Payment Gateway" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:79 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:123 +msgid "Metric System" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:78 +msgid "Currency & Tax" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:77 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:88 +msgid "Locations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:70 +msgid "Choose where you want to sell your stuff and what currency. Easy!" +msgstr "" + +#: includes/public/class-mp-checkout.php:1400 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:58 +msgid "Continue" +msgstr "" + +#: includes/admin/class-mp-admin.php:83 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:53 +msgid "Skip this step, I'll do this manually" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:49 +msgid "Install store pages" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:44 +msgid "Once you've completed this quick setup wizard you'll have a fully working online store - exciting! Start
    by creating the default store pages for the online store such as the cart, checkout and store pages." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:42 +msgid "MarketPress adds a full online store to your website, with heaps of configuration options and addons
    to suit your needs. It's really easy to get going, and only takes a few minutes to setup!" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:41 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:69 +msgid "Welcome to MarketPress - Quick Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-advanced-select.php:23 +msgid "Select Some Options" +msgstr "" + +#: includes/wpmudev-metaboxes/class-wpmudev-field.php:694 +msgid "You must the WPMUDEV_Field::display() method in your form field class" +msgstr "" + +#: includes/public/class-mp-short-codes.php:636 +msgid "Only %s left in stock..." +msgstr "" + +#: includes/public/class-mp-short-codes.php:633 +msgid "Unlimited stock" +msgstr "" + +#: includes/public/class-mp-short-codes.php:430 +msgid "product_id must be defined" +msgstr "" + +#: includes/public/class-mp-checkout.php:1250 +msgid "An account with this username already exists" +msgstr "" + +#: includes/public/class-mp-checkout.php:1394 +msgid "Continue as Guest" +msgstr "" + +#: includes/public/class-mp-checkout.php:1393 +msgid "Proceed to checkout and you'll have an opportunity to create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1392 +#: includes/public/class-mp-checkout.php:1398 +msgid "First-time customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1386 +msgid "Login" +msgstr "" + +#: includes/public/class-mp-checkout.php:1379 +msgid "E-Mail Address/Username" +msgstr "" + +#: includes/public/class-mp-checkout.php:1377 +msgid "Sign in to speed up the checkout process." +msgstr "" + +#: includes/public/class-mp-checkout.php:1376 +msgid "Have an account?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1297 +msgid "Shipping address different than billing?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1184 +msgid "There are no available gateways to process this payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1160 +msgid "Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:1123 +msgid "Oops! An error occurred while processing your payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1051 +msgid "Next Step »" +msgstr "" + +#: includes/public/class-mp-checkout.php:1045 +msgid "« Previous Step" +msgstr "" + +#: includes/public/class-mp-checkout.php:873 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:657 +msgid "error" +msgstr "" + +#: includes/public/class-mp-checkout.php:872 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:658 +msgid "errors" +msgstr "" + +#: includes/public/class-mp-checkout.php:871 +msgid "

    Oops! We found %d %s in the form below.

    Fields that have errors are highlighted in red below. Entering into a field will reveal the actual error that occurred.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:870 +msgid "Please enter a valid first and last name" +msgstr "" + +#: includes/public/class-mp-checkout.php:869 +msgid " Please enter a valid card security code" +msgstr "" + +#: includes/public/class-mp-checkout.php:868 +msgid "Please enter a valid card expiration" +msgstr "" + +#: includes/public/class-mp-checkout.php:773 +msgid "Javascript is required in order to checkout. Please enable Javascript in your browser and then refresh this page." +msgstr "" + +#: includes/public/class-mp-checkout.php:588 +msgid "An unknown error occurred. Please try again." +msgstr "" + +#: includes/public/class-mp-checkout.php:386 +msgid "Town/City" +msgstr "" + +#: includes/public/class-mp-checkout.php:380 +msgid "Apartment, suite, unit, building, floor, etc" +msgstr "" + +#: includes/public/class-mp-checkout.php:376 +msgid "Address Line 2" +msgstr "" + +#: includes/public/class-mp-checkout.php:363 +msgid "Address Line 1" +msgstr "" + +#: includes/common/class-mp-order.php:770 +#: includes/public/class-mp-checkout.php:354 +msgid "Company" +msgstr "" + +#: includes/public/class-mp-checkout.php:330 +msgid "Last" +msgstr "" + +#: includes/public/class-mp-checkout.php:321 +msgid "First" +msgstr "" + +#: includes/public/class-mp-checkout.php:284 +msgid "State/Province" +msgstr "" + +#: includes/public/class-mp-checkout.php:83 +msgid "Review Order/Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing/Shipping Address" +msgstr "" + +#: includes/public/class-mp-checkout.php:80 +msgid "Login/Register" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:530 +msgid "Marketplace" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:523 +msgid "Global Marketplace Pages" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +msgid "Store Network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +#: includes/multisite/class-mp-admin-multisite.php:494 +msgid "Store Network Settings" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:440 +msgid "Set theme access permissions for network stores. For a custom css theme, save your css file with the MarketPress Theme: NAME header in the /marketpress/ui/themes/ folder and it will appear in this list so you may select it." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:361 +msgid "Choose a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:336 +msgid "%d products get indexed" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:285 +msgid "Product Indexer" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:281 +msgid "Please hold on..." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:280 +msgid "Index Products" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:279 +msgid "%d products have been indexed in whole network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:182 +msgid "Enable Global Shopping Cart?" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:178 +msgid "Limit Global Widgets/Shortcodes To Main Blog?" +msgstr "" + +#: includes/common/template-functions.php:2802 +#: includes/multisite/template-functions.php:355 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:97 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:114 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:143 +msgid "Next" +msgstr "" + +#: includes/common/template-functions.php:2801 +#: includes/multisite/template-functions.php:354 +msgid "Prev" +msgstr "" + +#: includes/common/template-functions.php:2597 +msgid "Tagged in " +msgstr "" + +#: includes/common/template-functions.php:2196 +#: includes/common/template-functions.php:2202 +#: includes/common/template-functions.php:2214 +#: includes/common/template-functions.php:2217 +msgid "Oops! We couldn't locate any orders matching that order number. Please verify the order number and try again." +msgstr "" + +#: includes/common/template-functions.php:2138 +msgid "Look Up" +msgstr "" + +#: includes/common/template-functions.php:1423 +msgid "Please choose a shipping method" +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "If you have your order ID you can look it up using the form below." +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "Order Search" +msgstr "" + +#: includes/common/template-functions.php:910 +#: includes/public/class-mp-checkout.php:1440 +msgid "Cart" +msgstr "" + +#: includes/common/template-functions.php:895 +msgid "[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:887 +msgid "[mp_global_categories_list]" +msgstr "" + +#: includes/common/template-functions.php:880 +msgid "" +"Welcome to our market place!\n" +"\n" +"Check out our network of products:\n" +"\n" +"[mp_list_global_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_global_categories_list]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:879 +msgid "Global Store" +msgstr "" + +#: includes/common/template-functions.php:873 +msgid "" +"Welcome to our online store! Feel free to browse around:\n" +"\n" +"[mp_store_navigation]\n" +"\n" +"Check out our most popular products:\n" +"\n" +"[mp_popular_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_list_categories]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_tag_cloud]" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:127 +msgid "If cart weight is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:126 +msgid "Cart Weight" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:222 +msgid "Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:206 +msgid "Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:196 +msgid "Retail Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:195 +msgid "Online Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:193 +msgid "Rates Request Type" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:189 +msgid "Maximum Weight Per Package" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:195 +#: includes/common/shipping-modules/mp-usps.php:236 +msgid "Enter your standard box sizes as LengthxWidthxHeight (e.g. 12x8x6) For each box defined enter the maximum weight it can contain. Note: the shipping prices this plugin calculates are estimates. If they are consistently too low or too high, please check that the list of boxes above and the product weights are accurate and complete." +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:187 +msgid "Handling Charge Per Box Shipped" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:176 +#: includes/common/shipping-modules/mp-ups.php:181 +msgid "Offered Services" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:165 +msgid "Shipper Number" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:151 +msgid "User ID" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:144 +msgid "Developer Kit Access Key" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:140 +msgid "Use Sandbox Mode?" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:123 +msgid "In order to use UPS, you will need a UPS Developer Kit access key and the UPS user ID and password associated with the access key. Set these up for free here. If this information is missing or incorrect, an error will appear during the checkout process and the buyer will not be able to complete the transaction." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:112 +msgid "If cart total is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:111 +msgid "Cart Total" +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:95 +#: includes/common/shipping-modules/mp-weight-rate.php:111 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Don't worry about sorting as this will be done automatically upon saving." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:170 +msgid "Method Title (visible for clients)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:409 +#: includes/common/shipping-modules/mp-ups.php:216 +#: includes/common/shipping-modules/mp-usps.php:251 +msgid "Max Weight (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:402 +#: includes/common/shipping-modules/mp-ups.php:209 +#: includes/common/shipping-modules/mp-usps.php:247 +msgid "Size (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:387 +msgid "Enter your standard box sizes as LengthxWidthxHeight ( 12x8x6 ) For each box defined enter the maximum weight it can contain. Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:361 +#: includes/common/shipping-modules/mp-usps.php:229 +msgid "Handling Charge per International Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:353 +msgid "International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:339 +#: includes/common/shipping-modules/mp-usps.php:213 +msgid "Handling Charge per Domestic Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:331 +msgid "Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:321 +msgid "When checked the customer can chose Residential or Commercial delivery with Residential the default. Unchecked it's only Residential rates." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:320 +msgid "Allow Commercial Delivery?" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:315 +msgid "Fedex 10kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:314 +msgid "Fedex 25kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:313 +msgid "Fedex Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:312 +msgid "Fedex Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:311 +msgid "Fedex Pak" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:310 +msgid "Fedex Tube" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:306 +msgid "Default Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:294 +msgid "Dropoff Type" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:290 +msgid "Meter ID" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:134 +msgid "This is a residential address" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:283 +msgid "There was an error processing your card: \"%s\". Please check your credit card info and try again." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:121 +msgid "Wepay makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept cards directly on your site. You don't need a merchant account or gateway. WePay handles everything including storing cards. Credit cards go directly to WePay's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:385 +msgid "There was an error processing your card - \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:356 +msgid "%s Store Purchase - Order ID - %s, Email - %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:251 +msgid "Stripe makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept Visa, MasterCard, American Express, Discover, JCB, and Diners Club cards directly on your site. You don't need a merchant account or gateway. Stripe handles everything, including storing cards, subscriptions, and direct payouts to your bank account. Credit cards go directly to Stripe's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:192 +msgid "ZMW - Zambian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:191 +msgid "ZAR - South African Rand" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:190 +msgid "YER - Yemeni Rial" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:189 +msgid "XPF - Cfp Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:188 +msgid "XOF - West African Cfa Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:187 +msgid "XCD - East Caribbean Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:186 +msgid "XAF - Central African Cfa Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:185 +msgid "WST - Samoan Tala" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:184 +msgid "VUV - Vanuatu Vatu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:183 +msgid "VND - Vietnamese Đồng" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:182 +msgid "VEF - Venezuelan Bolívar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:181 +msgid "UZS - Uzbekistani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:180 +msgid "UYI - Uruguayan Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:178 +msgid "UGX - Ugandan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:177 +msgid "UAH - Ukrainian Hryvnia" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:176 +msgid "TZS - Tanzanian Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:175 +msgid "TWD - New Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:174 +msgid "TTD - Trinidad and Tobago Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:172 +msgid "TOP - Tongan Paʻanga" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:171 +msgid "TJS - Tajikistani Somoni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:169 +msgid "SZL - Swazi Lilangeni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:168 +msgid "SVC - Salvadoran Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:167 +msgid "STD - São Tomé and Príncipe Dobra" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:166 +msgid "SRD - Surinamese Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:165 +msgid "SOS - Somali Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:164 +msgid "SLL - Sierra Leonean Leone" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:163 +msgid "SHP - Saint Helenian Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:160 +msgid "SCR - Seychellois Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:159 +msgid "SBD - Solomon Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:157 +msgid "RWF - Rwandan Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:156 +msgid "RUB - Russian Ruble" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:155 +msgid "RSD - Serbian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:154 +msgid "RON - Romanian Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:153 +msgid "QAR - Qatari Riyal" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:152 +msgid "PYG - Paraguayan Guaraní*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:151 +msgid "PLN - Polish Złoty" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:150 +msgid "PKR - Pakistani Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:149 +msgid "PHP - Philippine Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:148 +msgid "PGK - Papua New Guinean Kina" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:147 +msgid "PEN - Peruvian Nuevo Sol*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:146 +msgid "PAB - Panamanian Balboa*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:144 +msgid "NPR - Nepalese Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:142 +msgid "NIO - Nicaraguan Córdoba*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:141 +msgid "NGN - Nigerian Naira" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:140 +msgid "NAD - Namibian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:139 +msgid "MZN - Mozambican Metical" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:137 +msgid "MXN - Mexican Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:136 +msgid "MWK - Malawian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:135 +msgid "MVR - Maldivian Rufiyaa" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:134 +msgid "MUR - Mauritian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:133 +msgid "MRO - Mauritanian Ouguiya" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:132 +msgid "MOP - Macanese Pataca" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:131 +msgid "MNT - Mongolian Tögrög" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:130 +msgid "MKD - Macedonian Denar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:129 +msgid "MGA - Malagasy Ariary" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:128 +msgid "MDL - Moldovan Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:126 +msgid "LVL - Latvian Lats" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:124 +msgid "LSL - Lesotho Loti" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:123 +msgid "LRD - Liberian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:122 +msgid "LKR - Sri Lankan Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:121 +msgid "LBP - Lebanese Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:120 +msgid "LAK - Lao Kip*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:119 +msgid "KZT - Kazakhstani Tenge" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:118 +msgid "KYD - Cayman Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:117 +msgid "KRW - South Korean Won" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:116 +msgid "KMF - Comorian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:115 +msgid "KHR - Cambodian Riel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:114 +msgid "KGS - Kyrgyzstani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:113 +msgid "KES - Kenyan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:111 +msgid "JMD - Jamaican Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:110 +msgid "ISK - Icelandic Króna" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:109 +msgid "INR - Indian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:108 +msgid "ILS - Israeli New Sheqel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:107 +msgid "IDR - Indonesian Rupiah" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:105 +msgid "HTG - Haitian Gourde" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:103 +msgid "HNL - Honduran Lempira*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:101 +msgid "GYD - Guyanese Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:100 +msgid "GTQ - Guatemalan Quetzal*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:99 +msgid "GNF - Guinean Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:98 +msgid "GMD - Gambian Dalasi" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:97 +msgid "GIP - Gibraltar Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:96 +msgid "GEL - Georgian Lari" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:94 +msgid "FKP - Falkland Islands Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:93 +msgid "FJD - Fijian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:91 +msgid "ETB - Ethiopian Birr" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:90 +msgid "EGP - Egyptian Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:89 +msgid "EEK - Estonian Kroon*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:88 +msgid "DZD - Algerian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:87 +msgid "DOP - Dominican Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:85 +msgid "DJF - Djiboutian Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:84 +msgid "CZK - Czech Koruna*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:83 +msgid "CVE - Cape Verdean Escudo*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:82 +msgid "CRC - Costa Rican Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:81 +msgid "COP - Colombian Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:80 +msgid "CNY - Chinese Renminbi Yuan" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:79 +msgid "CLP - Chilean Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:77 +msgid "CDF - Congolese Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:76 +msgid "CAD - Canadian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:75 +msgid "BZD - Belize Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:74 +msgid "BWP - Botswana Pula" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:73 +msgid "BSD - Bahamian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:72 +msgid "BRL - Brazilian Real*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:71 +msgid "BOB - Bolivian Boliviano*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:70 +msgid "BND - Brunei Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:69 +msgid "BMD - Bermudian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:68 +msgid "BIF - Burundian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:67 +msgid "BGN - Bulgarian Lev" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:66 +msgid "BDT - Bangladeshi Taka" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:65 +msgid "BBD - Barbadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:64 +msgid "BAM - Bosnia & Herzegovina Convertible Mark" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:63 +msgid "AZN - Azerbaijani Manat" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:62 +msgid "AWG - Aruban Florin" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:61 +msgid "AUD - Australian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:60 +msgid "ARS - Argentine Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:59 +msgid "AOA - Angolan Kwanza*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:58 +msgid "ANG - Netherlands Antillean Gulden" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:57 +msgid "AMD - Armenian Dram" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:56 +msgid "ALL - Albanian Lek" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:55 +msgid "AFN - Afghan Afghani*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:54 +msgid "AED - United Arab Emirates Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:345 +msgid "Skrill balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:327 +msgid "Skrill IPN message received." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:283 +msgid "Skrill" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:278 +msgid "Pending payment" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:144 +msgid "The secret word must match the word submitted in the \"Merchant Tools\" section of your Skrill account." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:134 +msgid "You must use your valid Skrill merchant email. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:133 +msgid "Skrill Email" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:123 +msgid "Resell your inventory via Skrill.com (Moneybookers)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:95 +msgid "ZAR - South-African Rand" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:93 +msgid "TWD - Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:92 +msgid "TRY - New Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:91 +msgid "TND - Tunisian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:90 +msgid "THB - Thailand Baht" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:89 +msgid "SKK - Slovakian Koruna" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:86 +#: includes/common/payment-gateways/stripe.php:158 +msgid "SAR - Saudi Riyal" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:85 +msgid "RSD - Serbian dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:83 +msgid "QAR - Qatari Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:81 +msgid "OMR - Omani Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:80 +msgid "NOK - Norwegian Krone " +msgstr "" + +#: includes/common/payment-gateways/skrill.php:78 +#: includes/common/payment-gateways/stripe.php:138 +msgid "MYR - Malaysian Ringgit" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:77 +#: includes/common/payment-gateways/stripe.php:127 +msgid "MAD - Moroccan Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:74 +msgid "KRW - South-Korean Won" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:72 +msgid "JOD - Jordanian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:70 +msgid "INR - Indian Rupee" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:63 +msgid "EEK - Estonian Kroon" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:56 +msgid "AED - Utd. Arab Emir. Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:52 +msgid "Turkish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:51 +msgid "Swedish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:50 +msgid "Spanish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:49 +msgid "Russian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:48 +msgid "Romainian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:47 +msgid "Polish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:46 +msgid "Italian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:45 +msgid "Greek" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:44 +msgid "German" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:43 +msgid "French" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:42 +msgid "Finnish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:41 +msgid "English" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:40 +msgid "Dutch" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:39 +msgid "Danish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:38 +msgid "Czech" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:37 +msgid "Chinese" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:201 +msgid "There was an error processing your card: %s. Please re-enter your credit card info and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:278 +msgid "
  • There was an error processing your card: \"%s\". Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:274 +msgid "
  • There was an error processing your card. Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:177 +#: includes/common/payment-gateways/stripe.php:279 +msgid "Publishable Key" +msgstr "" + +#: includes/common/payment-gateways/pin.php:163 +msgid "API Credentials?" +msgstr "" + +#: includes/common/payment-gateways/pin.php:147 +msgid "PIN makes it easy to start accepting credit card payments with Australia’s first all-in-one online payment system. Accept all major credit cards directly on your site. Your sales proceeds are deposited to any Australian bank account, no merchant account required." +msgstr "" + +#: includes/common/payment-gateways/pin.php:57 +#: includes/common/payment-gateways/stripe.php:179 +msgid "USD - United States Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:455 +msgid "Email Footer" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:445 +msgid "Email Header" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:416 +msgid "Partner" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:409 +msgid "Vendor" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:852 +#: includes/common/payment-gateways/paypal-express.php:1126 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences\t section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:749 +msgid "Page Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:744 +msgid "Header Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:739 +msgid "Header Border Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:734 +msgid "Header Image" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:680 +msgid "Locale" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:624 +#: includes/common/payment-gateways/paypal-express.php:658 +msgid "Merchant Email" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:645 +msgid "Paypal Express Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:603 +msgid "Paypal Express Network Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:861 +msgid "Application ID (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:854 +msgid "Signature (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:847 +msgid "API Password (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:839 +msgid "API Username (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:832 +msgid "Signature (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:825 +msgid "API Password (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:817 +msgid "API Username (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:799 +msgid "This message is displayed at the top of the gateway settings page to store admins. It's a good place to inform them of your fees or put any sales messages." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:787 +msgid "Please enter your PayPal email address or business ID you want to recieve fees at." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:786 +msgid "PayPal E-mail" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:772 +msgid "Fees to Collect (%)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:375 +#: includes/public/class-mp-checkout.php:341 +msgid "Email Address" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:299 +msgid "Sorry, your order was not completed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:126 +#: includes/common/payment-gateways/paypal-express.php:780 +msgid "You will be redirected to the PayPal site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:90 +#: includes/common/payment-gateways/skrill.php:94 +msgid "USD - U.S. Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:89 +msgid "TRY - Turkish lira" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:88 +#: includes/common/payment-gateways/stripe.php:170 +msgid "THB - Thai Baht" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:87 +msgid "TWD - Taiwan New Dollars" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:86 +#: includes/common/payment-gateways/pin.php:59 +#: includes/common/payment-gateways/skrill.php:88 +#: includes/common/payment-gateways/stripe.php:162 +msgid "SGD - Singapore Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:84 +msgid "RUB - Russian Rubles" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:82 +msgid "PHP - Philippine Pesos" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:81 +#: includes/common/payment-gateways/pin.php:58 +#: includes/common/payment-gateways/skrill.php:79 +#: includes/common/payment-gateways/stripe.php:145 +msgid "NZD - New Zealand Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:79 +msgid "MXN - Mexican Peso" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:78 +msgid "MYR - Malaysian Ringgits" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:77 +#: includes/common/payment-gateways/pin.php:64 +#: includes/common/payment-gateways/skrill.php:73 +#: includes/common/payment-gateways/stripe.php:112 +msgid "JPY - Japanese Yen" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:75 +#: includes/common/payment-gateways/pin.php:63 +#: includes/common/payment-gateways/skrill.php:66 +#: includes/common/payment-gateways/stripe.php:102 +msgid "HKD - Hong Kong Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:73 +msgid "GBP - Pound Sterling" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:68 +#: includes/common/payment-gateways/pin.php:62 +#: includes/common/payment-gateways/skrill.php:59 +msgid "CAD - Canadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:67 +msgid "BRL - Brazilian Real" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:66 +#: includes/common/payment-gateways/pin.php:56 +#: includes/common/payment-gateways/skrill.php:57 +msgid "AUD - Australian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:288 +msgid "There was an error processing your card: \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:163 +msgid "When running on a live site, Paymill recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:161 +#: includes/common/payment-gateways/pin.php:157 +#: includes/common/payment-gateways/simplify.php:103 +#: includes/common/payment-gateways/stripe.php:260 +#: includes/common/payment-gateways/wepay.php:153 +msgid "Force SSL?" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:151 +msgid "Accept Visa, Mastercard, Maestro UK, Discover and Solo cards directly on your site. You don't need a merchant account or gateway. Credit cards go directly to Paymill's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:131 +msgid "CVV2" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:72 +#: includes/common/payment-gateways/pin.php:61 +#: includes/common/payment-gateways/skrill.php:65 +#: includes/common/payment-gateways/stripe.php:95 +msgid "GBP - British Pound" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:71 +#: includes/common/payment-gateways/stripe.php:173 +msgid "TRY - Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:70 +#: includes/common/payment-gateways/paypal-chained-payments.php:85 +#: includes/common/payment-gateways/skrill.php:87 +#: includes/common/payment-gateways/stripe.php:161 +msgid "SEK - Swedish Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:69 +#: includes/common/payment-gateways/skrill.php:84 +msgid "RON - Romanian Leu New" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:68 +#: includes/common/payment-gateways/paypal-chained-payments.php:83 +#: includes/common/payment-gateways/skrill.php:82 +msgid "PLN - Polish Zloty" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:67 +#: includes/common/payment-gateways/paypal-chained-payments.php:80 +#: includes/common/payment-gateways/stripe.php:143 +msgid "NOK - Norwegian Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:66 +#: includes/common/payment-gateways/skrill.php:75 +#: includes/common/payment-gateways/stripe.php:125 +msgid "LTL - Lithuanian Litas" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:65 +#: includes/common/payment-gateways/paypal-chained-payments.php:69 +#: includes/common/payment-gateways/skrill.php:60 +#: includes/common/payment-gateways/stripe.php:78 +msgid "CHF - Swiss Franc" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:64 +#: includes/common/payment-gateways/skrill.php:76 +msgid "LVL - Latvian Lat" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:63 +#: includes/common/payment-gateways/paypal-chained-payments.php:74 +#: includes/common/payment-gateways/skrill.php:69 +msgid "ILS - Israeli Shekel" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:62 +#: includes/common/payment-gateways/skrill.php:71 +msgid "ISK - Iceland Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:61 +#: includes/common/payment-gateways/paypal-chained-payments.php:76 +#: includes/common/payment-gateways/skrill.php:68 +#: includes/common/payment-gateways/stripe.php:106 +msgid "HUF - Hungarian Forint" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:60 +#: includes/common/payment-gateways/paypal-chained-payments.php:71 +#: includes/common/payment-gateways/skrill.php:62 +#: includes/common/payment-gateways/stripe.php:86 +msgid "DKK - Danish Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:59 +#: includes/common/payment-gateways/skrill.php:67 +#: includes/common/payment-gateways/stripe.php:104 +msgid "HRK - Croatian Kuna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:58 +#: includes/common/payment-gateways/paypal-chained-payments.php:70 +#: includes/common/payment-gateways/skrill.php:61 +msgid "CZK - Czech Koruna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:57 +#: includes/common/payment-gateways/skrill.php:58 +msgid "BGN - Bulgarian Leva" +msgstr "" + +#: includes/common/payment-gateways/payflow/class-mp-gateway-worker-payflow.php:123 +msgid "There was an error connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:344 +msgid "This setting will log all PayFast communication to the \"payfast.log\" file." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:342 +msgid "Log Debugging Info?" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:335 +msgid "DO NOT INPUT A VALUE UNLESS YOU HAVE SET ONE IN THE SETTINGS SECTION OF YOUR PAYFAST SETTINGS." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:333 +msgid "PayFast Passphrase" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:323 +msgid "You can find your credentials on your integration page." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:321 +msgid "PayFast Merchant Credentials" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:311 +msgid "PayFast Mode" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:308 +msgid "PayFast is a payments processing service for South Africa. We make it safe for buyers to send money and easy for sellers to receive money. More Info »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:306 +msgid "PayFast Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:285 +msgid "Your payment via PayFast for this order totaling %s is complete. The transaction number is %s." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:278 +msgid "Your payment via PayFast for this order totaling %s is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:124 +msgid "Your PayFast transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:82 +#: includes/common/payment-gateways/payfast.php:83 +msgid "PayFast" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:157 +msgid "API error: - \"%s\"" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:198 +msgid "The payment request is under process" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:140 +msgid "Order: #" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:116 +msgid "You will be redirected to the Mollie site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:73 +msgid "%sMollie%s provides a fully PCI Compliant and secure way to collect payments via iDeal, Credit Card, Bancontact / Mister Cash, SOFORT Banking, Overbooking, Bitcoin, PayPal, paysafecard and AcceptEmail." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:53 +#: includes/common/payment-gateways/mollie.php:54 +#: includes/common/payment-gateways/mollie.php:195 +#: includes/common/payment-gateways/mollie.php:245 +msgid "Mollie" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:50 +#: includes/common/payment-gateways/paymill.php:56 +#: includes/common/payment-gateways/paypal-chained-payments.php:72 +#: includes/common/payment-gateways/pin.php:60 +#: includes/common/payment-gateways/skrill.php:64 +#: includes/common/payment-gateways/stripe.php:92 +msgid "EUR - Euro" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:306 +msgid "Access Key" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:300 +msgid "You must login to the Mijireh.com dashboard to obtain the Access Key." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:299 +msgid "Credentials" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:289 +msgid "Mijireh Checkout provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:269 +msgid "Mijireh Error: " +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:89 +msgid "You will be redirected to the Mijireh.com site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:87 +msgid "Your Mijireh transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:42 +#: includes/common/payment-gateways/mijireh.php:43 +#: includes/common/payment-gateways/mijireh.php:324 +msgid "Mijireh" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:145 +msgid "These are the manual payment instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:189 +msgid "This is the email text to send to those who have made free order checkouts. You should include your free order instructions / information here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:183 +msgid "This is the free order information to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:182 +msgid "Confirmation User Information" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:177 +msgid "This is the information to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:163 +msgid "If enabled, all free orders will be automatically marked as paid." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:159 +msgid "Payment Status" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:149 +msgid "This gateway is automatically activated if order totalling 0 and it can't be disabled" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:35 +#: includes/common/payment-gateways/free_orders.php:36 +#: includes/common/payment-gateways/free_orders.php:89 +msgid "Free Order" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:34 +#: includes/common/payment-gateways/free_orders.php:197 +msgid "Free Orders" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:515 +msgid "Sandbox API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:266 +#: includes/common/payment-gateways/eway31.php:542 +msgid "eWay Rapid 3.1 Payments (beta)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:403 +msgid "Hosted Payment Page Language" +msgstr "" + +#: includes/common/payment-gateways/eway.php:373 +msgid "Note when testing in sandbox mode it will use the default eWay test API credentials. Also, please note that cart total needs to be a whole number (e.g. 10.00) in order to generate a successful transaction, otherwise the transaction will fail." +msgstr "" + +#: includes/common/payment-gateways/eway.php:267 +msgid "You will be redirected to https://www.eway.com.au to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:380 +msgid "You have chosen to checkout using %s. Please confirm your order details and click \"Submit Order\" when finished." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:272 +#: includes/common/payment-gateways/paymill.php:131 +#: includes/common/payment-gateways/stripe.php:231 +msgid "Security Code " +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Enter in MM/YYYY or MM/YY format" +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Expiration" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:321 +msgid "Delim Data" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:307 +#: includes/common/payment-gateways/paypal-payflow.php:456 +msgid "This text will appear as the footer of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:287 +#: includes/common/payment-gateways/paypal-payflow.php:440 +msgid "Email Customer (on success)" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:278 +msgid "Authorize.net default is \",\". Otherwise, get this from your credit card processor. If the transactions are not going through, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:277 +msgid "Delimeter Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:193 +msgid "Held For Review" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:310 +#: includes/common/payment-gateways/payfast.php:314 +msgid "Test" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:300 +#: includes/common/payment-gateways/pin.php:170 +#: includes/common/payment-gateways/stripe.php:272 +msgid "Secret Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:283 +msgid "Select Your Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:97 +msgid "Your payment will be processed by the iDEAL network" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:208 +msgid "These are the CubePoints to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:203 +msgid "These are the CubePoints instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:266 +msgid "If enabled, all API calls will be made to https://test.bitpay.com." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:263 +msgid "Use Test Mode?" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:259 +msgid "If checked, response fron bitpay will be stored in log file, keep it disabled unless required." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:256 +msgid "Enable Debug Log" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:249 +msgid "Full Notifications" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:231 +#: includes/common/payment-gateways/eway31.php:499 +#: includes/common/payment-gateways/eway31.php:526 +#: includes/common/payment-gateways/mollie.php:83 +#: includes/common/shipping-modules/mp-fedex.php:269 +msgid "API Key" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:222 +msgid "You can now accept a payment from any country on Earth, with no risk of fraud. To use Bitpay, you need to signup on Bitpay. \\n After completing the signup process, you can get api keys at Bitpay API key. You can read more about Bitpay at Bitpay API. \\n Bitpay requires SSL(https) for payment notifications to work." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:61 +msgid "You will be redirected to bitpay.com, for bitcoin payment. It is completely safe." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:346 +msgid "You must login to the 2Checkout vendor dashboard to obtain the seller ID and secret word. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:345 +#: includes/common/payment-gateways/authorizenet-aim.php:239 +#: includes/common/payment-gateways/paymill.php:168 +#: includes/common/payment-gateways/paypal-express.php:704 +#: includes/common/payment-gateways/simplify.php:80 +#: includes/common/payment-gateways/stripe.php:265 +#: includes/common/payment-gateways/wepay.php:158 +msgid "API Credentials" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:325 +#: includes/common/payment-gateways/_bitpay.php:220 +#: includes/common/payment-gateways/_cubepoints.php:185 +#: includes/common/payment-gateways/_ideal.php:268 +#: includes/common/payment-gateways/_payway.php:255 +#: includes/common/payment-gateways/authorizenet-aim.php:219 +#: includes/common/payment-gateways/eway.php:352 +#: includes/common/payment-gateways/eway31.php:460 +#: includes/common/payment-gateways/free_orders.php:147 +#: includes/common/payment-gateways/manual-payments.php:126 +#: includes/common/payment-gateways/mijireh.php:287 +#: includes/common/payment-gateways/mollie.php:71 +#: includes/common/payment-gateways/paymill.php:149 +#: includes/common/payment-gateways/paypal-chained-payments.php:344 +#: includes/common/payment-gateways/paypal-payflow.php:376 +#: includes/common/payment-gateways/pin.php:145 +#: includes/common/payment-gateways/simplify.php:69 +#: includes/common/payment-gateways/skrill.php:121 +#: includes/common/payment-gateways/stripe.php:249 +#: includes/common/payment-gateways/wepay.php:119 +#: includes/common/shipping-modules/mp-fedex.php:243 +#: includes/common/shipping-modules/mp-flat-rate.php:63 +#: includes/common/shipping-modules/mp-pickup.php:140 +#: includes/common/shipping-modules/mp-table-rate.php:94 +#: includes/common/shipping-modules/mp-ups.php:122 +#: includes/common/shipping-modules/mp-usps.php:167 +#: includes/common/shipping-modules/mp-weight-rate.php:110 +msgid "%s Settings" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:136 +msgid "You will be redirected to the 2Checkout site to finalize your payment." +msgstr "" + +#: includes/common/helpers.php:169 includes/public/class-mp-checkout.php:1277 +msgid "Billing" +msgstr "" + +#: includes/common/helpers.php:144 +msgid "FREE" +msgstr "" + +#: includes/common/helpers.php:134 +msgid "Coupons:" +msgstr "" + +#: includes/common/helpers.php:95 +msgid "Qty" +msgstr "" + +#: includes/common/helpers.php:94 +msgid "Sku" +msgstr "" + +#: includes/common/data.php:59 +msgid "Zip Code" +msgstr "" + +#: includes/common/class-mp-taxes.php:336 +msgid "Standard Table" +msgstr "" + +#: includes/common/class-mp-product.php:2698 +msgid "Tweet" +msgstr "" + +#: includes/common/class-mp-product.php:2321 +msgid "Notification Preferences: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2320 +msgid "Edit Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2318 +msgid "Link: %s

    " +msgstr "" + +#: includes/common/class-mp-product.php:2317 +msgid "Current Inventory: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2316 +msgid "Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2314 +msgid "This message is being sent to notify you of low stock of a product in your online store according to your preferences.

    " +msgstr "" + +#: includes/common/class-mp-product.php:1817 +msgid "" +msgstr "" + +#: includes/common/class-mp-product.php:1427 +#: includes/common/class-mp-product.php:1430 +msgid "(tax incl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1422 +#: includes/common/class-mp-product.php:1425 +msgid "(tax excl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1300 +#: includes/common/class-mp-product.php:1315 +msgid "%s each" +msgstr "" + +#: includes/common/class-mp-product.php:988 +msgid "Choose Options" +msgstr "" + +#: includes/common/class-mp-product.php:526 +msgid "Choose a %s" +msgstr "" + +#: includes/common/class-mp-product.php:284 +#: includes/common/class-mp-product.php:292 +#: includes/common/class-mp-product.php:615 +msgid "We're sorry, we only have %d of this item in stock right now." +msgstr "" + +#: includes/common/class-mp-order.php:1456 +msgid "Shipped: Track Shipment" +msgstr "" + +#: includes/common/class-mp-order.php:1049 +msgid "Order Received" +msgstr "" + +#: includes/common/class-mp-order.php:1014 +msgid "In Process" +msgstr "" + +#: includes/common/class-mp-order.php:969 +msgid "Order #" +msgstr "" + +#: includes/common/class-mp-order.php:866 +msgid "Copy billing address to shipping address" +msgstr "" + +#: includes/common/class-mp-order.php:822 +#: includes/public/class-mp-checkout.php:1314 +msgid "Special Instructions" +msgstr "" + +#: includes/common/class-mp-order.php:817 +#: includes/common/payment-gateways/stripe.php:335 +msgid "Email" +msgstr "" + +#: includes/common/class-mp-order.php:813 +#: includes/common/payment-gateways/stripe.php:341 +#: includes/public/class-mp-checkout.php:416 +msgid "Phone" +msgstr "" + +#: includes/common/class-mp-order.php:791 +#: includes/common/payment-gateways/stripe.php:337 +msgid "State" +msgstr "" + +#: includes/common/class-mp-order.php:776 +msgid "Address 1" +msgstr "" + +#: includes/common/class-mp-order.php:766 +msgid "Last Name" +msgstr "" + +#: includes/common/class-mp-order.php:762 +msgid "First Name" +msgstr "" + +#: includes/common/class-mp-installer.php:677 +msgid "MarketPress requires a database update to continue working correctly. Go to update page" +msgstr "" + +#: includes/common/class-mp-installer.php:657 +msgid "MarketPress performed a quick automatic update successfully!" +msgstr "" + +#: includes/common/class-mp-installer.php:653 +msgid "Perform Update" +msgstr "" + +#: includes/common/class-mp-installer.php:647 +msgid "Please update each subsite in your WordPress network where you have older version of the MarketPress plugin." +msgstr "" + +#: includes/common/class-mp-installer.php:641 +msgid "Depending on the amount of products you have, this update could take quite some time. Please keep this window open while the update completes. If you have products with multiple variations, the progress bar may move slower, please don't exit the window." +msgstr "" + +#: includes/common/class-mp-installer.php:632 +msgid "Product Metadata" +msgstr "" + +#: includes/common/class-mp-installer.php:601 +msgid "MarketPress requires a database update to continue working correctly.
    Below you will find a list of items that require your attention." +msgstr "" + +#: includes/common/class-mp-installer.php:600 +msgid "Update MarketPress Data" +msgstr "" + +#: includes/common/class-mp-installer.php:530 +msgid "Update Data" +msgstr "" + +#: includes/common/class-mp-installer.php:67 +msgid "Complete!" +msgstr "" + +#: includes/common/class-mp-installer.php:66 +msgid "Upgrading Database...Please Wait..." +msgstr "" + +#: includes/common/class-mp-installer.php:64 +msgid "An error occurred while updating. Please refresh this page and try again." +msgstr "" + +#: includes/common/class-mp-cart.php:2447 +msgid "Some items in your cart have fallen below the quantity you currently have in your cart. We have adjusted the quantity in your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:2443 +msgid "Some items in your cart are no longer available. We have removed these items from your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:1566 +msgid "item" +msgstr "" + +#: includes/common/class-mp-cart.php:1563 +#: includes/common/class-mp-cart.php:1568 +msgid "items" +msgstr "" + +#: includes/common/class-mp-cart.php:1363 +msgid "Items/Products added to Cart will show here." +msgstr "" + +#: includes/common/class-mp-cart.php:1362 +msgid "Your shopping cart is empty." +msgstr "" + +#: includes/common/class-mp-cart.php:1357 +msgid "View Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1241 +#: includes/common/class-mp-cart.php:1298 +#: includes/public/class-mp-short-codes.php:159 +msgid "Adding..." +msgstr "" + +#: includes/common/class-mp-cart.php:1033 +msgid "Continue Shopping?" +msgstr "" + +#: includes/common/class-mp-cart.php:961 +msgid "Secure Checkout
    Shopping is always safe and secure." +msgstr "" + +#: includes/common/class-mp-cart.php:959 +msgid "You are about to submit your order!
    Please review your order details before continuing. You will be charged immediately upon clicking \"Submit Order\"." +msgstr "" + +#: includes/common/class-mp-cart.php:956 +msgid "Continue »" +msgstr "" + +#: includes/common/class-mp-cart.php:955 +msgid "Submit Order" +msgstr "" + +#: includes/common/class-mp-cart.php:818 +msgid "There are no items in your cart - go add some !" +msgstr "" + +#: includes/common/class-mp-cart.php:816 +msgid "The cart is disabled." +msgstr "" + +#: includes/common/class-mp-cart.php:735 +msgid "Estimated %s" +msgstr "" + +#: includes/common/class-mp-cart.php:717 +msgid "Estimated Shipping" +msgstr "" + +#: includes/common/class-mp-cart.php:697 +msgid "Product Total" +msgstr "" + +#: includes/common/class-mp-cart.php:670 includes/common/class-mp-cart.php:672 +msgid "Estimated Total (%s, %s)" +msgstr "" + +#: includes/common/class-mp-cart.php:668 +msgid "Estimated Total (%s)" +msgstr "" + +#: includes/common/class-mp-cart.php:666 includes/common/class-mp-cart.php:752 +msgid "Estimated Total" +msgstr "" + +#: includes/admin/widgets/product-list.php:247 +msgid "Show Thumbnail Placeholder image (if image is not set)" +msgstr "" + +#: includes/admin/widgets/cart.php:73 +msgid "Display product price" +msgstr "" + +#: includes/admin/widgets/cart.php:71 +msgid "Display product quantity" +msgstr "" + +#: includes/admin/widgets/cart.php:69 +msgid "Display product image" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:93 +msgid "General Shipping Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:773 +msgid "If you are having conflicts with the lightbox library from your theme or another plugin you should uncheck this." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:772 +msgid "Use Built-In Lightbox for Images?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:762 +msgid "Disable Large Image Display?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:688 +msgid "Show Product Image?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:682 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:684 +msgid "Show Tags List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:676 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:678 +msgid "Show Categories List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:671 +msgid "If enabled, description excerpt will be added above Add to cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:669 +msgid "Show Excerpt?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:665 +msgid "If enabled, users will be able to choose how many of the product they want to purchase before adding to their cart. If not checked, quantity could be change later on the cart page." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:663 +msgid "Show Quantity Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:649 +msgid "Settings related to the display of individual product pages." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:648 +msgid "Product Page Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:605 +msgid "Related Products Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:573 +msgid "Show Related Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:568 +msgid "Related Product Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:549 +msgid "Order Status Entries Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:510 +msgid "Sort Products By" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:497 +msgid "Products Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:492 +msgid "Paginate Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:478 +msgid "Excerpts Length" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:473 +msgid "Show Excerpts?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:450 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:746 +msgid "Image Alignment" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:412 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:708 +msgid "Custom Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:401 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:697 +msgid "Large - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:400 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:696 +msgid "Medium - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:399 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:695 +msgid "Thumbnail - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:397 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:693 +msgid "Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:386 +msgid "Select default placeholder image thumbnail when product image is not available (if empty, plugin's built-in image will be used)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:380 +msgid "Show default product placeholder thumbnail when product image is not available?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:374 +msgid "Show Product Thumbnail?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:369 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:658 +msgid "Redirect to cart page for immediate checkout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:368 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:657 +msgid "Stay on current product page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:366 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:655 +msgid "MarketPress supports two \"flows\" for adding products to the shopping cart. After adding a product to their cart, two things can happen:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:365 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:654 +msgid "Add To Cart Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:355 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:628 +msgid "Four" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:354 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:627 +msgid "Three" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:353 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:626 +msgid "Two" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:625 +msgid "One" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:349 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:622 +msgid "Set the number of products that show up in a grid row to best fit your theme" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:348 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:621 +msgid "How many products per row?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:342 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:609 +msgid "Display as grid" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:341 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:608 +msgid "Display as list" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:339 +msgid "Product Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:334 +msgid "Settings related to the display of product lists/grids." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:333 +msgid "Product List/Grid Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:314 +msgid "Show Twitter Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:309 +msgid "Twitter" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:303 +msgid "Show Share Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:297 +msgid "Recommend" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:296 +msgid "Like" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:294 +msgid "Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:283 +msgid "Show Facebook Like Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:278 +msgid "Facebook" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:257 +msgid "Show \"Pin It\" Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:252 +msgid "Pinterest" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:246 +msgid "Social Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:193 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:202 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:211 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:220 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:229 +#: includes/multisite/class-mp-admin-multisite.php:532 +#: includes/multisite/class-mp-admin-multisite.php:541 +#: includes/multisite/class-mp-admin-multisite.php:550 +msgid "Choose a Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:191 +msgid "This page will be used as the root for your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:168 +#: includes/multisite/class-mp-admin-multisite.php:586 +msgid "Create Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "uncropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "cropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:87 +#: includes/multisite/class-mp-admin-multisite.php:121 +#: includes/multisite/class-mp-admin-multisite.php:620 +msgid "An error occurred while creating the store page. Please try again." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:66 +msgid "Choose the gateway(s) that you would like to be available for checkout." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:65 +msgid "Enabled Gateways" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:78 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:146 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:179 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:213 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:274 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:307 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:341 +msgid "Text" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:71 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:139 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:172 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:206 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:267 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:300 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:334 +msgid "Subject" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:52 +msgid "Notification Email" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:510 +msgid "Enabling this option will display label `excl. tax` or `incl. tax` after price" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:509 +msgid "Display tax label?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:504 +msgid "Enabling this option will show Price + Tax, eg. if your price is 100 and your tax 20, your price will be 120" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:416 +#: includes/multisite/class-mp-admin-multisite.php:234 +msgid "Price Format" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:366 +msgid "Enabling this field will display a textbox on the shipping checkout page for users to enter special instructions for their order. Useful for product personalization, etc." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:365 +msgid "Show Special Instructions Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:360 +msgid "Universal" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:359 +msgid "Old" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1167 +#: includes/admin/store-settings/class-mp-store-settings-general.php:358 +msgid "New" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:353 +msgid "If you already use Google Analytics for your website, you can track detailed ecommerce information by enabling this setting. Choose whether you are using the new asynchronous or old tracking code. Before Google Analytics can report ecommerce activity for your website, you must enable ecommerce tracking on the profile settings page for your website. Also keep in mind that some gateways do not reliably show the receipt page, so tracking may not be accurate in those cases. It is recommended to use the PayPal gateway for the most accurate data. More information »" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:347 +msgid "Do you want to display the product price on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:346 +msgid "Show product price on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:340 +msgid "Do you want to display the product quantity on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:339 +msgid "Show product quantity on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:333 +msgid "Do you want to display the product image on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:332 +msgid "Show product image on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:327 +msgid "This option hide floating Mini Cart in top right corner." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:326 +msgid "Disable Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:316 +msgid "If unchecked your Orders admin page will be hidden" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:315 +msgid "Show admin Orders page?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:309 +msgid "Disable Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:303 +msgid "Force Login?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:297 +msgid "Hide Out of Stock Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:555 +msgid "This will prevent multiples of the same downloadable product form being added to the cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:554 +msgid "Limit Digital Products Per-order?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:268 +msgid "If you're having issues downloading large files and have worked with your hosting provider to increase your memory limits, try enabling this - just keep in mind, it's not as secure!" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:267 +msgid "Use Alternative Download Method?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:252 +msgid "Download Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:230 +msgid "Change product post type" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:51 +msgid "%s Capabilities" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-addons.php:47 +msgid "Store Settings: Add Ons: %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:254 +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:56 +msgid "Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Edit Product Attribute %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:246 +msgid "Exporters" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:238 +msgid "Short Codes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:207 +msgid "An appropriate message for key \"%s\" could not be found." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:204 +msgid "Product attribute updated successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:203 +msgid "Product attribute added successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +msgid "Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +#: includes/admin/store-settings/class-mp-store-settings-addons.php:121 +msgid "Store Settings: Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "Store Settings: Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:118 +msgid "Store Settings: Product Tags" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:117 +msgid "Store Settings: Product Categories" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Store Settings: Product Attributes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +msgid "Store Settings: Payments" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:114 +msgid "Store Settings: Shipping" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +#: includes/admin/class-mp-store-settings-admin.php:226 +msgid "Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +msgid "Store Settings: Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:112 +msgid "Store Settings: Presentation" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:111 +msgid "Store Settings: General" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1489 +msgid "Select a Product" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1447 +msgid "Reset to Defaults" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1446 +msgid "Insert Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1202 +#: includes/admin/class-mp-shortcode-builder.php:1227 +#: includes/admin/class-mp-shortcode-builder.php:1252 +msgid "The text to show in the link." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1196 +#: includes/admin/class-mp-shortcode-builder.php:1221 +#: includes/admin/class-mp-shortcode-builder.php:1246 +msgid "Whether to return a clickable link or url." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1177 +msgid "Whether to display the cart only on store pages or not." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1171 +msgid "Whether to show or hide the product price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1165 +msgid "Whether to show or hide the product quantity." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1159 +msgid "Whether to show or hide the product image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1153 +msgid "The text displayed before the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1147 +msgid "The title of the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1058 +#: includes/admin/class-mp-shortcode-builder.php:1121 +msgid "A label to prepend to the price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1032 +#: includes/admin/class-mp-shortcode-builder.php:1127 +msgid "What context for display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1004 +msgid "Set the alignment of the image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:998 +msgid "Set a custom pixel width/height. If omitted defaults to the size set by \"context\"." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:993 +msgid "Widget" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:988 +msgid "What context for preset size options." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:982 +#: includes/admin/class-mp-shortcode-builder.php:1026 +#: includes/admin/class-mp-shortcode-builder.php:1052 +#: includes/admin/class-mp-shortcode-builder.php:1077 +#: includes/admin/class-mp-shortcode-builder.php:1096 +#: includes/admin/class-mp-shortcode-builder.php:1115 +msgid "The ID of the product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:963 +msgid "Whether to display the product meta (e.g. price, buy button)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:738 +#: includes/admin/class-mp-shortcode-builder.php:905 +#: includes/admin/class-mp-shortcode-builder.php:958 +#: includes/admin/class-mp-shortcode-builder.php:992 +#: includes/admin/class-mp-shortcode-builder.php:1035 +#: includes/admin/class-mp-shortcode-builder.php:1130 +#: includes/admin/class-mp-shortcode-builder.php:1349 +msgid "List" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:957 +#: includes/admin/class-mp-shortcode-builder.php:991 +#: includes/admin/class-mp-shortcode-builder.php:1034 +#: includes/admin/class-mp-shortcode-builder.php:1129 +msgid "Single" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:953 +msgid "Whether and what context of image size to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:948 +msgid "Full" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:943 +msgid "Whether and what type of content to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:937 +msgid "Whether to display the product title." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:931 +msgid "The ID of the product to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:747 +#: includes/admin/class-mp-shortcode-builder.php:914 +msgid "Hide" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:746 +#: includes/admin/class-mp-shortcode-builder.php:913 +msgid "Show" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:744 +#: includes/admin/class-mp-shortcode-builder.php:911 +msgid "Whether or not to show the product filters." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:724 +#: includes/admin/class-mp-shortcode-builder.php:891 +#: includes/admin/class-mp-shortcode-builder.php:1335 +msgid "Limits list to a specific product tag." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:713 +#: includes/admin/class-mp-shortcode-builder.php:880 +#: includes/admin/class-mp-shortcode-builder.php:1324 +msgid "Limits list to a specific product category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:706 +#: includes/admin/class-mp-shortcode-builder.php:873 +#: includes/admin/class-mp-shortcode-builder.php:1317 +msgid "Direction to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:684 +#: includes/admin/class-mp-shortcode-builder.php:851 +#: includes/admin/class-mp-shortcode-builder.php:1295 +msgid "What field to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:678 +#: includes/admin/class-mp-shortcode-builder.php:845 +#: includes/admin/class-mp-shortcode-builder.php:1283 +msgid "How many products to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:672 +#: includes/admin/class-mp-shortcode-builder.php:839 +#: includes/admin/class-mp-shortcode-builder.php:1277 +msgid "The page number to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:666 +#: includes/admin/class-mp-shortcode-builder.php:833 +#: includes/admin/class-mp-shortcode-builder.php:1271 +msgid "Whether to paginate the product list. This is useful to only show a subset." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:808 +msgid "How many related items to show." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:790 +msgid "How to relate the products" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:784 +msgid "The product to show related items for." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:765 +msgid "The maximum number of products to display" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:647 +msgid "Comma separated list of tags (term_id) to include. For example, include=5,27 means tags that have the term_id 5 or 27 will be the only tags displayed. Defaults to include everything." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:641 +msgid "Comma separated list of tags (term_id) to exclude. For example, exclude=5,27 means tags that have the term_id 5 or 27 will NOT be displayed. Defaults to exclude nothing." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:633 +#: includes/admin/class-mp-shortcode-builder.php:1420 +msgid "Sort order." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:629 +#: includes/admin/class-mp-shortcode-builder.php:1416 +msgid "Count" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:626 +#: includes/admin/class-mp-shortcode-builder.php:1413 +msgid "Order of the tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:620 +msgid "The text/space between tags)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:616 +msgid "UL with a class of \"wp-tag-cloud\"" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:615 +msgid "separated by whitespace defined by \"separator\" parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:613 +msgid "Format of the cloud display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:607 +msgid "The number of actual tags to display in the cloud. (Use \"0\" to display all tags.)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:601 +msgid "Unit of measure as pertains to the smallest and largest values. This can be any CSS length value, e.g. pt, px, em, %." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:595 +msgid "The text size of the tag with the largest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:589 +msgid "The text size of the tag with the smallest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:570 +msgid "The \"tabindex\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:564 +msgid "The \"name\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:558 +msgid "The \"id\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:552 +msgid "Which category ID is selected." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:540 +msgid "The max depth. This is ignored unless hierarchical is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:536 +#: includes/multisite/template-functions.php:816 +msgid "No Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:414 +#: includes/admin/class-mp-shortcode-builder.php:546 +msgid "Calculates link or post counts by including items from child categories. If show_counts and hierarchical are true this is automatically set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:409 +msgid "Value of n (some number) specifies the depth (or level) to descend in displaying Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:408 +msgid "Show only top level Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:407 +msgid "All Categories displayed in flat (no indent) form (overrides hierarchical)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:406 +msgid "All Categories and child Categories (Default)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:402 +msgid "This parameter controls how many levels in the hierarchy of Categories are to be included in the list of Categories. NOTE: The \"hierarchical\" argument, which is disabled by default, will override the depth argument, unless it is true. When the argument is false, it will display all of the categories. When it is enabled it will use the value in the \"depth\" argument." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:396 +#: includes/admin/class-mp-shortcode-builder.php:1394 +msgid "Sets the number of Categories to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:390 +#: includes/admin/class-mp-shortcode-builder.php:534 +msgid "Set the text to show when no categories are listed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:384 +msgid "Set the title and style of the outer list item. If present but empty, the outer list item will not be displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:378 +#: includes/admin/class-mp-shortcode-builder.php:528 +msgid "Display sub-categories as inner list items (below the parent list item) or inline." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:368 +#: includes/admin/class-mp-shortcode-builder.php:511 +msgid "Exclude category-tree from the results. The parameter include must be empty. If the hierarchical parameter is true, then use exclude instead of exclude_tree." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:354 +msgid "Only include these categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:340 +#: includes/admin/class-mp-shortcode-builder.php:356 +#: includes/admin/class-mp-shortcode-builder.php:370 +#: includes/admin/class-mp-shortcode-builder.php:496 +#: includes/admin/class-mp-shortcode-builder.php:513 +msgid "Select Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:338 +#: includes/admin/class-mp-shortcode-builder.php:494 +msgid "Exclude one or more categories from the results. The parameter include must be empty." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:332 +msgid "Set a URI for an image (usually an rss feed icon) to act as a link to each categories' rss-2 feed. This parameter overrides the feed parameter. There is no default for this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:320 +msgid "Display a link to each category's rss-2 feed and set the link text to display. The default is no text and no feed displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:313 +#: includes/admin/class-mp-shortcode-builder.php:487 +msgid "Any" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:307 +#: includes/admin/class-mp-shortcode-builder.php:481 +msgid "Only display categories that are children of the category identified by this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:301 +msgid "Sets whether a category's description is inserted into the title attribute of the links created (i.e. <a title=\"<em>Category Description</em>\" href=\"...)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:295 +#: includes/admin/class-mp-shortcode-builder.php:475 +msgid "Toggles the display of categories with no posts." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:289 +#: includes/admin/class-mp-shortcode-builder.php:469 +#: includes/admin/class-mp-shortcode-builder.php:1388 +msgid "Toggles the display of the current count of posts in each category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:279 +msgid "Style to display the categories list in. A value of list displays the categories as list items while none generates no special display method (the list items are separated by
    tags)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:269 +#: includes/admin/class-mp-shortcode-builder.php:449 +#: includes/admin/class-mp-shortcode-builder.php:1378 +msgid "Sort order for categories (either ascending or descending)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:259 +#: includes/admin/class-mp-shortcode-builder.php:439 +#: includes/admin/class-mp-shortcode-builder.php:1368 +msgid "Sort categories alphabetically, by unique Category ID, or by the count of posts in that Category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:253 +#: includes/admin/class-mp-shortcode-builder.php:433 +msgid "If a value is entered, causes the display of a link to all categories if the style is set to list." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:219 +msgid "Select an Action" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:217 +msgid "What would you like to do?" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:216 +#: includes/admin/class-mp-shortcode-builder.php:1522 +msgid "Add E-Commerce Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:197 +msgid "Display a list of links to your store pages." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:196 +msgid "Display a link or url to the order status page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:195 +msgid "Display a link or url to the current products list page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:194 +msgid "Display a link or url to the current store page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:193 +msgid "Display a link or url to the current shopping cart page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:192 +msgid "Display the cart widget." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:191 +msgid "Display the full product meta box with price and buy now/add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:190 +msgid "Display the product stock." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:189 +msgid "Display the product SKU number(s)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:188 +msgid "Display the product price (and sale price)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:187 +msgid "Display the buy or add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:186 +msgid "Display the featured image of a given product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:185 +msgid "Display a single product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:184 +msgid "Display a list of products according to preference." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:183 +msgid "Display products related to the one being viewed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:182 +msgid "Display a list of popular products ordered by sales." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:180 +msgid "Display an HTML dropdown of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:179 +msgid "Display an HTML list of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:178 +msgid "Display a cloud or list of your product tags." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:655 +msgid "Setup your payment gateway" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:643 +#: includes/admin/class-mp-setup-wizard.php:649 +msgid "Other Gateways" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:617 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:150 +msgid "Select which calculated shipping methods the customer will be able to choose from." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:601 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:134 +#: includes/public/class-mp-checkout.php:82 +msgid "Shipping Method" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:568 +msgid "I want to charge shipping" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:523 +#: includes/admin/store-settings/class-mp-store-settings-general.php:503 +msgid "Show Price + Tax?" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:507 +msgid "I.e. Taxes, VAT, GST, etc" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:491 +#: includes/admin/store-settings/class-mp-store-settings-general.php:471 +msgid "Current Rates" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:473 +msgid "Default Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:434 +#: includes/admin/class-mp-setup-wizard.php:442 +#: includes/admin/store-settings/class-mp-store-settings-general.php:386 +#: includes/admin/store-settings/class-mp-store-settings-general.php:394 +#: includes/multisite/class-mp-admin-multisite.php:204 +#: includes/multisite/class-mp-admin-multisite.php:212 +msgid "Select a Currency" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:414 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:105 +msgid "Choose Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:411 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:103 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:104 +msgid "All Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:410 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:102 +msgid "These are the countries that you will ship to." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:409 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:101 +msgid "Target Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:401 +msgid "Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:387 +#: includes/admin/store-settings/class-mp-store-settings-general.php:640 +msgid "Zip/Postal Code Label" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:352 +#: includes/admin/store-settings/class-mp-store-settings-general.php:606 +msgid "Select a State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:335 +#: includes/admin/store-settings/class-mp-store-settings-general.php:590 +msgid "Select A Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:332 +#: includes/admin/store-settings/class-mp-store-settings-general.php:587 +msgid "Select a Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:324 +msgid "Location" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:304 +#: includes/admin/class-mp-setup-wizard.php:312 +#: includes/admin/class-mp-store-settings-admin.php:129 +#: includes/admin/class-mp-store-settings-admin.php:262 +msgid "Quick Setup" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:289 +msgid "MarketPress setup is not complete! Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2479 +msgid "Enter your product name here" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2440 +msgid "Select a %s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2426 +msgid "Each product variation needs to have product attributes assigned to it so the system knows how to differentiate one product variation from the other. It is important that you assign a category to this product before choosing any attributes." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2409 +msgid "If you would like this variation to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2320 +msgid "Sale Price (if applicable)" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2281 +msgid "If you would like the description to be different than the main product enter it here." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2229 +msgid "Image" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2202 +#: includes/admin/class-mp-shortcode-builder.php:226 +msgid "Attributes" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2166 +msgid "Create your product variations here. You can reorder variations by using the number to left of each variation, or delete one by clicking the \"x\" to the right of each variation. NOTE: The variation that shows up first in this list will be considered the \"main variation\". The details from this variation will be used in product listings." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2061 +#: includes/admin/class-mp-products-admin.php:2332 +msgid "Value must be less than regular price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2043 +#: includes/admin/class-mp-products-admin.php:2306 +msgid "Regular Price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2023 +#: includes/admin/class-mp-products-admin.php:2286 +msgid "External URL" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1988 +#: includes/admin/class-mp-products-admin.php:2245 +msgid "Enter the quantity that you have available to sell." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1987 +#: includes/admin/class-mp-products-admin.php:2244 +msgid "Inventory Count" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1977 +#: includes/admin/class-mp-products-admin.php:2234 +msgid "Track Inventory?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1871 +msgid "%1$sProduct Images%2$s %3$sAdd images of the product. The first image on the list is the featured image for this product (you can reorder images on the list)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1806 +msgid "Add variations for this product. e.g. If you are selling t-shirts, you can create Color & Size variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1804 +msgid "%3$sAdd variations for%2$s %1$sProduct%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1776 +msgid "This product has a multiple variations %1$s(e.g. Multiple colors, sizes)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1775 +msgid "This is a unique product without variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1700 +msgid "Extra Shipping Cost %1$s(if applicable)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1659 +#: includes/admin/class-mp-products-admin.php:2112 +#: includes/admin/class-mp-products-admin.php:2359 +msgid "Weight" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1636 +#: includes/admin/class-mp-products-admin.php:2098 +#: includes/admin/class-mp-products-admin.php:2416 +msgid "Please enter a valid tax rate" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1531 +msgid "Limit Per Order %1$s(limit the number of the item a shopper can buy per order)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1513 +msgid "SKU %1$s(Stock Keeping Unit)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "%1$sPrice, Inventory & Variants%2$s %3$sSet price, manage inventory and create Product Variants (if appropriate for your product).%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "Product Variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1480 +msgid "External / Affiliate Link" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1471 +msgid "Digital Download" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1470 +msgid "Physical / Tangible Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1464 +msgid "Product Kind %1$s(Physical Product, Digital, etc)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1426 +msgid "Choose Products" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1420 +msgid "If you would like, you can choose specific related products instead of using the ones generated by MarketPress" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1019 +msgid "Changes saved successfully" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:826 +msgid "Option cannot be saved. Try again." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:821 +msgid "Option saved successfully." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:467 +msgid "Img" +msgstr "" + +#: includes/admin/class-mp-product-attributes-list-table.php:57 +msgid "Product attribute(s) deleted successfully." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:162 +msgid "- Create New Variation -" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:144 +msgid "Only lowercase letters and dashes (-) are allowed." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:139 +msgid "If a slug is not entered, it will be generated automatically. Max 32 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:138 +#: includes/admin/class-mp-product-attributes-list-table.php:23 +msgid "Slug" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:130 +msgid "Max 45 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:123 +msgid "Use the numbers on the left to sort. To delete - click the \"X\" to the right of each row." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:122 +msgid "Attribute Options" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:121 +msgid "Add Option" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:105 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:523 +msgid "Sort Order" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:87 +msgid "Alphabetical" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:86 +msgid "ID" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:84 +msgid "Select how the options will be sorted." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:82 +msgid "Sort By" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:75 +msgid "The name of the attribute (e.g. color, size, etc)" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:74 +msgid "Attribute Name" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:69 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Product Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Product Attributes" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:71 +msgid "You can choose to make this page one of the following core store pages." +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:66 +msgid "Network Store Base" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:61 +msgid "Checkout Page" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:52 +msgid "Store Page Settings" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1108 +msgid "Display billing/shipping info for this customer" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1097 +msgid "View order “%s”" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1072 +msgid "Flag as:" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:952 +msgid "Move To Trash" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:948 +msgid " Received" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:927 +msgid "Enter coupon code here" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:812 +msgid "The order status could not be updated due to unexpected error. Please try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:740 +msgid "An invalid bulk action was requested. Please go back and try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:692 +msgid "The order status for order ID %1$s was updated successfully." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:688 +msgid "Order statuses successfully updated." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:530 +msgid "Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:518 +msgid "Actual Shipping Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:513 +msgid "Method Paid For" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:504 +msgid "Amount Collected" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:477 +msgid "DHL" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:408 +msgid "There is no IPN history to show at this time" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:345 +msgid "Type" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:343 +msgid "Gateway" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:301 +#: includes/common/template-functions.php:528 +msgid "Order History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:291 +msgid "IPN History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:283 +msgid "Customer Info" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:279 +msgid "Order Details" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:157 +msgid "All Dates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:320 +msgid "Add Pages to Menu" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:318 +msgid "Add-ons" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:317 +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "User Capabilities" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:316 +#: includes/admin/class-mp-setup-wizard.php:631 +#: includes/admin/store-settings/class-mp-store-settings-payments.php:50 +msgid "Payment Gateways" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:315 +msgid "Shipping Rates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:312 +msgid "Configure" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:309 +#: includes/admin/class-mp-products-admin.php:466 +#: includes/admin/class-mp-shortcode-builder.php:797 +msgid "Tags" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:308 +#: includes/admin/class-mp-products-admin.php:465 +msgid "Categories" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:300 +msgid "Manage" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:297 +msgid "Here's some quick links to manage your store and products." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:288 +msgid "low in stock" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:287 +msgid "%s product" +msgid_plural "%s products" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-dashboard-widgets.php:280 +msgid "received" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:279 +#: includes/admin/class-mp-dashboard-widgets.php:283 +msgid "%s order" +msgid_plural "%s orders" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-dashboard-widgets.php:276 +msgid "Stock & Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:261 +msgid "Last 30 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:256 +msgid "Last 7 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:251 +msgid "Yesterday" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:248 +#: includes/admin/class-mp-dashboard-widgets.php:253 +#: includes/admin/class-mp-dashboard-widgets.php:258 +#: includes/admin/class-mp-dashboard-widgets.php:263 +msgid " Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:246 +msgid "Today" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:241 +msgid "Welcome back! Here's a quick summary of your store's performance." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:196 +#: includes/admin/class-mp-products-admin.php:895 +msgid "No products out of stock." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:136 +#: includes/admin/class-mp-products-admin.php:839 +msgid "Stock Level" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:135 +#: includes/admin/class-mp-products-admin.php:838 +msgid "Variation" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:121 +msgid "Low Stock (%s)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:116 +msgid "Store Management" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:115 +msgid "Store Reports" +msgstr "" + +#: includes/admin/class-mp-ajax.php:579 +#: includes/admin/class-mp-orders-admin.php:520 +#: includes/common/payment-gateways/2checkout.php:370 +#: includes/common/payment-gateways/authorizenet-aim.php:264 +#: includes/common/payment-gateways/mollie.php:93 +#: includes/common/payment-gateways/paymill.php:196 +#: includes/common/payment-gateways/pin.php:190 +#: includes/common/payment-gateways/skrill.php:157 +#: includes/common/payment-gateways/skrill.php:168 +#: includes/common/payment-gateways/wepay.php:143 +#: includes/public/class-mp-checkout.php:404 +msgid "Select One" +msgstr "" + +#: includes/admin/class-mp-ajax.php:511 +msgid "Oops... we could not locate any orders by that ID. Please double check your order ID and try again." +msgstr "" + +#: includes/admin/class-mp-ajax.php:482 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:166 +#: includes/multisite/class-mp-admin-multisite.php:584 +msgid "Edit Page" +msgstr "" + +#: includes/admin/class-mp-ajax.php:346 +msgid "Cancel " +msgstr "" + +#: includes/admin/class-mp-ajax.php:345 +msgid "Save " +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "Edit Description" +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "HTML Markup" +msgstr "" + +#: includes/admin/class-mp-ajax.php:333 +msgid "Plain Text Only" +msgstr "" + +#: includes/admin/class-mp-ajax.php:329 +msgid "Additional Content / Information for this Variation" +msgstr "" + +#: includes/admin/class-mp-ajax.php:317 +#: includes/admin/class-mp-products-admin.php:1762 +msgid "Allow this product to be purchased even if it's out of stock" +msgstr "" + +#: includes/admin/class-mp-ajax.php:313 +#: includes/admin/class-mp-products-admin.php:1711 +msgid "Track Product Inventory" +msgstr "" + +#: includes/admin/class-mp-ajax.php:300 +msgid "Extra Shipping Cost (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:295 +msgid "Ounces:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:294 +msgid "Pounds:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:292 +msgid "Kilograms:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:287 +#: includes/admin/class-mp-products-admin.php:1649 +msgid "Charge Shipping" +msgstr "" + +#: includes/admin/class-mp-ajax.php:273 +#: includes/admin/class-mp-products-admin.php:1623 +#: includes/admin/store-settings/class-mp-store-settings-general.php:454 +msgid "Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:272 +#: includes/admin/class-mp-products-admin.php:1622 +#: includes/admin/class-mp-products-admin.php:2090 +#: includes/admin/class-mp-products-admin.php:2408 +msgid "Special Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:271 +#: includes/admin/class-mp-products-admin.php:1625 +#: includes/admin/class-mp-products-admin.php:2092 +msgid "If you would like this product to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-ajax.php:268 +#: includes/admin/class-mp-products-admin.php:1599 +msgid "Charge Taxes (Special Rate)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:256 +#: includes/admin/class-mp-products-admin.php:1593 +#: includes/admin/class-mp-products-admin.php:2077 +#: includes/admin/class-mp-products-admin.php:2348 +msgid "End Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:255 +#: includes/admin/class-mp-products-admin.php:1589 +#: includes/admin/class-mp-products-admin.php:2072 +msgid "Start Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:1568 +msgid "Enter Sale Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:250 +#: includes/admin/class-mp-products-admin.php:1547 +msgid "Set up a Sale for this Product" +msgstr "" + +#: includes/admin/class-mp-ajax.php:206 includes/admin/class-mp-ajax.php:223 +msgid "Enter " +msgstr "" + +#: includes/admin/class-mp-ajax.php:193 +msgid "Browse" +msgstr "" + +#: includes/admin/class-mp-ajax.php:184 includes/admin/class-mp-ajax.php:192 +msgid "http://" +msgstr "" + +#: includes/admin/class-mp-ajax.php:183 +msgid "External Product URL" +msgstr "" + +#: includes/admin/class-mp-ajax.php:237 +msgid "Limit Per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:177 +#: includes/admin/class-mp-products-admin.php:1520 +msgid "Enter Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:174 +#: includes/admin/class-mp-products-admin.php:1512 +msgid "Enter SKU" +msgstr "" + +#: includes/admin/class-mp-ajax.php:173 +msgid "(Stock Keeping Unit)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:158 +msgid "Remove Image" +msgstr "" + +#: includes/admin/class-mp-ajax.php:74 +msgid "Variation Draft" +msgstr "" + +#: includes/admin/class-mp-admin.php:296 +#: includes/admin/class-mp-dashboard-widgets.php:70 +msgid "Please wait...saving in progress..." +msgstr "" + +#: includes/admin/class-mp-admin.php:295 +#: includes/admin/class-mp-dashboard-widgets.php:69 +msgid "Input is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:294 +#: includes/admin/class-mp-dashboard-widgets.php:68 +msgid "Valid number is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:292 +#: includes/admin/class-mp-dashboard-widgets.php:66 +msgid "Delete %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:291 +#: includes/admin/class-mp-dashboard-widgets.php:65 +msgid "Delete %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:290 +#: includes/admin/class-mp-dashboard-widgets.php:64 +msgid "Update inventory for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:289 +#: includes/admin/class-mp-dashboard-widgets.php:63 +msgid "Update inventory for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:288 +#: includes/admin/class-mp-dashboard-widgets.php:62 +msgid "Update price for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:287 +#: includes/admin/class-mp-dashboard-widgets.php:61 +msgid "Update prices for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:285 +#: includes/admin/class-mp-dashboard-widgets.php:59 +msgid "Creating variations, please wait..." +msgstr "" + +#: includes/admin/class-mp-admin.php:96 +msgid "The following payment gateways have been deprecated, Cubepoints, Bitpay, iDEAL, Skrill, Google Checkout. If you were using one of these gateways, please setup a new payment gateway here." +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:61 +msgid "Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:71 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:71 +#: includes/common/class-mp-gdpr.php:399 includes/common/class-mp-order.php:872 +#: includes/common/helpers.php:164 includes/public/class-mp-checkout.php:1434 +msgid "Shipping Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:66 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:66 +#: includes/common/class-mp-gdpr.php:392 includes/common/class-mp-order.php:864 +#: includes/common/helpers.php:163 includes/public/class-mp-checkout.php:1427 +msgid "Billing Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:61 +msgid "Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:258 +msgid "Shipping Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:256 +msgid "Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:235 +msgid "Payment Method: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:79 +msgid "The dir %s not exist or not writeable" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:239 +msgid "Shop header/logo" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:233 +msgid "Choose a template" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:226 +msgid "Template Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:221 +msgid "Disable automatic creation/attachment of invoices when only free products are ordered" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:220 +msgid "Disable for free products" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:216 +msgid "Attach invoice to" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:214 +msgid "Customer Order Shipped email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:212 +msgid "Customer New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:211 +msgid "Admin New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:206 +msgid "download" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:205 +msgid "How do you want to view the PDF?" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:203 +msgid "Open the PDF in a new browser tab/window" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:202 +msgid "Download the PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:158 +msgid "Export PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:103 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:106 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:109 +msgid "You can't download this order invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:76 +msgid "Invalid Request" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:72 +msgid "Order not exist!" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:67 +msgid "Invalid ID" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1293 +msgid "Coupon added successfully" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1292 +msgid "Please enter a code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1247 +msgid "No end" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1200 +msgid "Valid Dates" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1195 +msgid "Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1027 +msgid "No Coupons found in Trash" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1026 +msgid "No Coupons Found" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1025 +msgid "Search Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1024 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1028 +msgid "View Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1023 +msgid "New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1020 +msgid "Create New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1017 +msgid "Manage Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1002 +msgid "An error occurred while removing your coupon. Please try again." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:964 +msgid "Coupon can't be applied to this cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:951 +msgid "Invalid coupon code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:794 +msgid "Help Text" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:789 +msgid "Form Title" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:783 +msgid "Coupons Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:764 +msgid "End Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:758 +msgid "Does coupon have an end date?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:696 +msgid "Select Products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:688 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:723 +#: includes/common/payment-gateways/paypal-payflow.php:402 +msgid "User" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:638 +msgid "Max Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:636 +msgid "Enter the maximum number of times this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:623 +msgid "Leave blank to allow all other coupons." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:622 +msgid "Select combinable coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:618 +msgid "Can this coupon be combined with other coupons?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:613 +msgid "Apply to each applicable item once per cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:612 +msgid "Apply to each applicable item and quantity ordered" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:609 +msgid "How should the discount amount be applied?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:605 +msgid "Discount Amount" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:604 +msgid "Value must either be a decimal number or a percentage" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:602 +msgid "If you would like to give a percentage-based discount make sure to include the percent (%) symbol. Otherwise, the discount will be applied as a fixed amount off." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:595 +msgid "Letters and Numbers only." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:589 +msgid "Coupon Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:447 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:795 +msgid "More than one code? That's OK! Just be sure to enter one at a time." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:444 +msgid "Apply Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:314 +msgid "Coupon Discounts" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:89 +msgid "1 add-on disabled" +msgid_plural "%s add-ons disabled" +msgstr[0] "" +msgstr[1] "" + +#: includes/addons/class-mp-addons-list-table.php:84 +msgid "1 add-on enabled" +msgid_plural "%s add-ons enabled" +msgstr[0] "" +msgstr[1] "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Disabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Enable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:129 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:67 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:135 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:168 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:202 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:263 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:296 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:330 +msgid "Enabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +msgid "Disable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:34 +msgid "Disable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:33 +msgid "Enable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:21 +#: includes/admin/class-mp-products-admin.php:2280 +#: includes/common/class-mp-product.php:2916 +msgid "Description" +msgstr "" + +#: includes/common/template-functions.php:2889 +#: includes/multisite/template-functions.php:407 +msgid "Popularity (Least Popular - Most Popular)" +msgstr "" + +#: includes/common/template-functions.php:2888 +#: includes/multisite/template-functions.php:406 +msgid "Popularity (Most Popular - Least Popular)" +msgstr "" + +#: includes/common/template-functions.php:2885 +#: includes/multisite/template-functions.php:403 +msgid "Name (Z-A)" +msgstr "" + +#: includes/common/template-functions.php:2884 +#: includes/multisite/template-functions.php:402 +msgid "Name (A-Z)" +msgstr "" + +#: includes/common/template-functions.php:2883 +#: includes/multisite/template-functions.php:401 +msgid "Release Date (Oldest to Latest)" +msgstr "" + +#: includes/common/template-functions.php:2882 +#: includes/multisite/template-functions.php:400 +msgid "Release Date (Latest to Oldest)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:284 +msgid "paid" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "One Time Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Customer Counter" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Daily Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:182 +msgid "For the most accurate rates, please select the appropriate pick up type for your business." +msgstr "" + +#: includes/admin/class-mp-admin.php:374 +msgid "Page saved." +msgstr "" + +#: includes/admin/class-mp-admin.php:370 +msgid "Custom field deleted." +msgstr "" + +#: includes/admin/class-mp-admin.php:369 +msgid "Custom field updated." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:541 +msgid "%s - The payment request expired, - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:536 +msgid "%s - The payment not credited in merchants bitpay account, action required. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:252 +msgid "If enabled, you will recieve an email for each status update on payment." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:240 +msgid "Speed at which the bitcoin transaction registers as \"confirmed\" to the store. This overrides your merchant settings on the Bitpay website." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:238 +msgid "Transaction Speed" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:244 +msgid "Low" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:243 +msgid "Medium" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:242 +msgid "High" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:177 +#: includes/common/payment-gateways/_bitpay.php:517 +#: includes/common/payment-gateways/_bitpay.php:522 +msgid "%s - The payment request is under process. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:175 +#: includes/common/payment-gateways/_bitpay.php:527 +msgid "%s - The payment request has been processed - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:150 +#: includes/common/payment-gateways/_bitpay.php:294 +msgid "Incorrect order invoice, please contact site administrator" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:141 +msgid "We could not verify order invoice details, please try again or contact site administrator for help" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:81 +msgid "Login to Simplify to get your API credentials. Enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:605 +#: includes/common/payment-gateways/paypal-express.php:647 +msgid "Express Checkout is PayPal's premier checkout solution, which streamlines the checkout process for buyers and keeps them on your site after making a purchase. Unlike PayPal Pro, there are no additional fees to use Express Checkout, though you may need to do a free upgrade to a business account. More Info »" +msgstr "" + +#. Plugin URI of the plugin/theme +msgid "https://premium.wpmudev.org/project/e-commerce/" +msgstr "" + +#. Author of the plugin/theme +msgid "WPMU DEV" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:541 +#: includes/admin/class-mp-orders-admin.php:543 +msgid "Tracking Number" +msgstr "" + +#: includes/common/class-mp-order.php:805 +#: includes/common/payment-gateways/stripe.php:336 +#: includes/public/class-mp-checkout.php:402 +msgid "Country" +msgstr "" + +#: includes/common/class-mp-order.php:784 +#: includes/common/payment-gateways/stripe.php:338 +msgid "City" +msgstr "" + +#: includes/common/class-mp-order.php:780 +msgid "Address 2" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:340 +msgid "Address" +msgstr "" + +#: includes/common/class-mp-cart.php:752 includes/common/class-mp-gdpr.php:378 +msgid "Order Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:360 +msgid "Payment Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:347 +msgid "Transaction ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:207 +msgid "The WePay Card Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:186 +#: includes/common/shipping-modules/mp-fedex.php:283 +msgid "Account ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:179 +msgid "Access Token" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:172 +msgid "Client Secret" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:165 +msgid "Client ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:159 +msgid "You must login to WePay to get your API credentials. Make sure to check \"Tokenize credit cards\" option under \"API Keys\" section of your WePay app." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:154 +msgid "When in live mode it is recommended to use SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:148 +msgid "Donation" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:147 +msgid "Event" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:146 +msgid "Personal" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:145 +msgid "Service" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:144 +msgid "Goods" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:141 +msgid "Choose type of payments" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:140 +msgid "Checkout Type" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:134 +msgid "Staging" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:131 +msgid "Choose STAGING if you have registered the app on stage.wepay.com, or PRODUCTION if you registered on www.wepay.com" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:36 +#: includes/common/payment-gateways/wepay.php:299 +msgid "WePay" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:366 +msgid "Rejected - A payment was rejected." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:360 +msgid "Failed - A payment was rejected due to an error." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:342 +msgid "PayWay balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:298 +msgid "Full path of the cacerts.crt file" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:284 +msgid "User Name" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:277 +msgid "Biller Code" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:273 +msgid "Log Directory" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:266 +msgid "Encryption Key" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:60 +msgid "Your PayWay transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:40 +#: includes/common/payment-gateways/_payway.php:41 +msgid "PayWay" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:862 +msgid "You must register this application with PayPal using your business account login to get an Application ID that will work with your API credentials. A bit of a hassle, but worth it! In the near future we will be looking for ways to simplify this process. Register then submit your application while logged in to the developer portal. Note that you do not need an Application ID for testing in sandbox mode. More Information »" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:818 +#: includes/common/payment-gateways/paypal-chained-payments.php:840 +#: includes/common/payment-gateways/paypal-express.php:705 +msgid "You must login to PayPal and create an API signature to get your credentials. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:378 +msgid "Use Payflow payment gateway to accept online payments using your Internet merchant account and processing network. PayPal Payflow Pro is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:595 +msgid "Tags Only" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:594 +msgid "Category Only" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:795 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:593 +msgid "Category & Tags" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:591 +msgid "Relate Products By" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1008 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:455 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:751 +msgid "Right" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1007 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:454 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:749 +msgid "Left" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1009 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:750 +msgid "Center" +msgstr "" + +#: marketpress.php:273 +msgid "Orders from your e-commerce store." +msgstr "" + +#: marketpress.php:231 +msgid "Products for your e-commerce store." +msgstr "" + +#: marketpress.php:222 +msgid "Edit Product" +msgstr "" + +#. Description of the plugin/theme +msgid "The complete WordPress ecommerce plugin - works perfectly with BuddyPress and Multisite too to create a social marketplace, where you can take a percentage! Activate the plugin, adjust your settings then add some products to your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:272 +msgid "Beside" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:271 +msgid "Above" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:268 +msgid "Pin Count" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:261 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:287 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:318 +msgid "All View" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:260 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:286 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:317 +msgid "Single View" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:259 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:285 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:316 +msgid "Off" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:578 +msgid "Related Product Limit" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:681 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1201 +msgid "Applies To" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:685 +msgid "All Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:487 +msgid "The label shown for the tax line item in the cart. Taxes, VAT, GST, etc." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:485 +msgid "Tax Label" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:81 +msgid "Apply" +msgstr "" + +#: includes/admin/class-mp-admin.php:192 +msgid "MarketPress Instructions" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1954 +#: includes/admin/class-mp-products-admin.php:2194 includes/common/data.php:62 +#: includes/common/helpers.php:150 +msgid "Taxes" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1417 +#: includes/common/class-mp-product.php:2900 +msgid "Related Products" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:282 +#: includes/common/shipping-modules/mp-usps.php:316 +msgid "@ Max" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "(3-5 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "Priority Mail Express International Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:92 +msgid "Priority Mail Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:171 +#: includes/common/shipping-modules/mp-pickup.php:247 +msgid "In Store" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:159 +msgid "Pickup Fee" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:141 +msgid "This option allows your customers to indicate that they will pick-up their order at your place of business." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:60 +#: includes/common/shipping-modules/mp-pickup.php:76 +#: includes/common/shipping-modules/mp-pickup.php:176 +msgid "Pickup Instructions" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:24 +#: includes/common/shipping-modules/mp-pickup.php:254 +msgid "Pickup" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping - 0.00" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:256 +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:440 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:309 +msgid "Your Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:301 +msgid "Station" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:300 +msgid "Request Courier" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:299 +msgid "Drop Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:298 +msgid "Business Service Center" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:297 +msgid "Regular Pickup" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:135 +#: includes/common/shipping-modules/mp-fedex.php:264 +msgid "Production" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:207 +msgid "Simplify Commerce by MasterCard" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:104 +msgid "When in live mode, although it is not required, Simplify recommends you have an SSL certificate." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:183 +#: includes/common/payment-gateways/simplify.php:87 +msgid "Public Key" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:175 +#: includes/common/payment-gateways/simplify.php:94 +msgid "Private Key" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:71 +msgid "Simplify helps merchants to accept online payments from Mastercard, Visa, American Express, Discover, JCB, and Diners Club cards. It's that simple. We offer a merchant account and payment gateway in a single, secure package so you can concentrate on what really matters to your business. Only supports USD currently." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:267 +msgid "%1$s" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:151 +msgid "The Simplify Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/simplify.php:18 +msgid "Simplify" +msgstr "" + +#: includes/common/payment-gateways/pin.php:255 +msgid "%1$s Card %2$s" +msgstr "" + +#: includes/common/payment-gateways/pin.php:211 +msgid "The PIN Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:187 +msgid "Selecting a currency other than currency supported by PIN may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/pin.php:164 +msgid "You must login to PIN to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/pin.php:158 +msgid "When in live mode PIN recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/pin.php:45 +#: includes/common/payment-gateways/pin.php:286 +msgid "PIN" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:830 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:534 +#: includes/common/payment-gateways/paypal-express.php:865 +msgid "The payment is pending" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:235 +msgid "The Paymill Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:169 +msgid "You must login to Paymill to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:45 +#: includes/common/payment-gateways/paymill.php:308 +msgid "Paymill" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:90 +msgid "Invalid cardholder" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:89 +msgid "Card is no longer valid or has expired" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:88 +msgid "Please enter a valid Card CVC" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:87 +msgid "Please choose a valid Expiration Date." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:99 +#: includes/common/payment-gateways/skrill.php:100 +msgid "Skrill (Moneybookers)" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:24 +#: includes/common/shipping-modules/mp-weight-rate.php:292 +msgid "Weight Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:303 +msgid "USPS Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:270 +msgid "USPS Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:264 +msgid "USPS Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:145 +msgid "Flat Rate Large" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:140 +msgid "Flat Rate Medium 2" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:135 +msgid "Flat Rate Medium 1" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:130 +msgid "Flat Rate Small" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:118 +msgid "First Class International Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:114 +msgid "Priority Mail International Small Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:112 +msgid "Priority Mail International Medium Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:110 +msgid "Priority Mail International Large Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:108 +msgid "Priority Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:106 +msgid "Express Mail International Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:104 +msgid "Express Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:98 +msgid "Library Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:96 +msgid "Media Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "First-Class Mail Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:90 +msgid "Priority Mail Small Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:88 +msgid "Priority Mail Medium Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +#: includes/common/shipping-modules/mp-usps.php:88 +#: includes/common/shipping-modules/mp-usps.php:90 +#: includes/common/shipping-modules/mp-usps.php:92 +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "(2-4 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +msgid "Priority Mail Large Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "(2-4) days" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "Priority Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "Express Mail Sunday/Holiday Delivery Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:80 +msgid "Express Mail Flat Rate Boxes Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:78 +msgid "Express Mail Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:76 +msgid "Express Mail Sunday/Holiday Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:74 +msgid "Express Mail Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:72 +#: includes/common/shipping-modules/mp-usps.php:74 +#: includes/common/shipping-modules/mp-usps.php:76 +#: includes/common/shipping-modules/mp-usps.php:78 +#: includes/common/shipping-modules/mp-usps.php:80 +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "(1-2 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:72 +msgid "Express Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:67 +#: includes/common/shipping-modules/mp-usps.php:902 +msgid "USPS" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:534 +msgid "UPS (beta)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:166 +msgid "Required if using negotiated rates" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "Worldwide Express Plus" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "(Scheduled)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "Standard" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "(2-5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "Worldwide Expedited" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:54 +msgid "Worldwide Express" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "2nd Day Air AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "(1 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "Next Day Air Early AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "Next Day Air Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "3 Day Select" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:49 +msgid "Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:48 +msgid "2nd Day Air" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "Next Day Air" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:475 +#: includes/common/shipping-modules/mp-ups.php:43 +msgid "UPS" +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:27 +#: includes/common/shipping-modules/mp-table-rate.php:318 +msgid "Table Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:71 +#: includes/common/shipping-modules/mp-table-quantity.php:77 +msgid "Shipping Cost: " +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:70 +#: includes/common/shipping-modules/mp-table-quantity.php:76 +msgid "If quantity is greater than:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:66 +msgid "Each band must be a higher price than the one above it." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:56 +msgid "Number of Bands:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:53 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Each layer must be a higher quantity than the previous." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:51 +msgid "Table Quantity Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:31 +msgid "Table Quantity" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:135 +#: includes/common/shipping-modules/mp-table-rate.php:174 +#: includes/common/shipping-modules/mp-weight-rate.php:189 +msgid "European Union" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:123 +#: includes/common/shipping-modules/mp-table-rate.php:162 +#: includes/common/shipping-modules/mp-weight-rate.php:177 +msgid "United States" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:111 +#: includes/common/shipping-modules/mp-table-rate.php:151 +#: includes/common/shipping-modules/mp-weight-rate.php:166 +msgid "In Country" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:146 +#: includes/common/shipping-modules/mp-table-rate.php:186 +#: includes/common/shipping-modules/mp-weight-rate.php:201 +msgid "International" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:101 +#: includes/common/shipping-modules/mp-table-rate.php:141 +#: includes/common/shipping-modules/mp-weight-rate.php:156 +msgid "Canada" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:92 +#: includes/common/shipping-modules/mp-table-rate.php:132 +#: includes/common/shipping-modules/mp-weight-rate.php:147 +msgid "Hawaii and Alaska" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:83 +#: includes/common/shipping-modules/mp-table-rate.php:123 +#: includes/common/shipping-modules/mp-weight-rate.php:138 +msgid "Lower 48 States" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:64 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping." +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:25 +#: includes/common/shipping-modules/mp-flat-rate.php:223 +msgid "Flat Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:761 +msgid "FedEx (beta)" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Centimeters" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Inches" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1676 +#: includes/admin/class-mp-setup-wizard.php:547 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:166 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +msgid "Kilograms" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:103 +msgid " %1$s - %2$s" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:358 +msgid "Max Weight per Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:356 +msgid "Box Dimensions" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:354 +msgid "Box Name" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:344 +msgid "Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:343 +msgid "For each box defined enter the maximum weight it can contain." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:341 +msgid "Enter your standard box sizes as LengthxWidthxHeight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:386 +#: includes/common/shipping-modules/mp-ups.php:193 +#: includes/common/shipping-modules/mp-usps.php:234 +#: includes/common/shipping-modules/mp-usps.php:338 +msgid "Standard Boxes and Weight Limits" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:328 +msgid "Handling Charge per Interntional Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:294 +msgid "Handling Charge per Domestic Shipment " +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:388 +#: includes/common/shipping-modules/mp-ups.php:196 +#: includes/common/shipping-modules/mp-usps.php:237 +msgid "Add Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "(Next Day)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +msgid "Europe First International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:62 +msgid "International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:61 +#: includes/common/shipping-modules/mp-fedex.php:62 +#: includes/common/shipping-modules/mp-ups.php:54 +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "(1-3 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:61 +msgid "International First" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "(5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "International Economy" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "(2-7 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "Smart Post" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:55 +#: includes/common/shipping-modules/mp-ups.php:49 +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "(1-5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:55 +msgid "Ground Home Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "(1-7 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "Fedex Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:53 +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "(3 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:53 +msgid "Fedex Express Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +#: includes/common/shipping-modules/mp-ups.php:48 +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "(2 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +msgid "Fedex 2 Day" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "(2 Days am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "Fedex 2 Day AM" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "(1 Day)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +msgid "Standard Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "(1 Day am )" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "Priority Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "(1 Day am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "First Overnight" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:476 +#: includes/common/shipping-modules/mp-fedex.php:31 +msgid "FedEx" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:270 +#: includes/common/payment-gateways/simplify.php:179 +#: includes/common/payment-gateways/stripe.php:365 +msgid "%1$s Card ending in %2$s - Expires %3$s" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:259 +#: includes/common/payment-gateways/pin.php:238 +#: includes/common/payment-gateways/simplify.php:171 +msgid "%s Store Purchase - Order ID: %s, Email: %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:266 +msgid "You must login to Stripe to get your API credentials. You can enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:261 +msgid "When in live mode Stripe recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:311 +msgid "The Stripe Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:263 +#: includes/common/payment-gateways/paymill.php:122 +#: includes/common/payment-gateways/stripe.php:222 +msgid "Card Number" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:86 +msgid "Please enter a valid Credit Card Number." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:45 +#: includes/common/payment-gateways/stripe.php:433 +msgid "Stripe" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:750 +msgid "Sets the background color for the payment page. By default, the color is white." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:745 +msgid "Sets the background color for the header of the payment page. By default, the color is white." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:740 +msgid "Sets the border color around the header of the payment page. The border is a 2-pixel perimeter around the header space, which is 750 pixels wide by 90 pixels high. By default, the color is black." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:735 +msgid "URL for an image you want to appear at the top left of the payment page. The image has a maximum size of 750 pixels wide by 90 pixels high. PayPal recommends that you provide an image that is stored on a secure (https) server. If you do not specify an image, the business name is displayed." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:857 +#: includes/common/payment-gateways/paypal-express.php:1131 +msgid "The payment is pending because it is part of an order that has been authorized but not settled." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:853 +#: includes/common/payment-gateways/paypal-express.php:1127 +msgid "The payment is pending because it has been authorized but not settled. You must capture the funds first." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:847 +#: includes/common/payment-gateways/paypal-express.php:1120 +msgid "You denied the payment when it was marked as pending." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:837 +#: includes/common/payment-gateways/paypal-express.php:1108 +msgid "A reversal has occurred on this transaction due to an unknown reason." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:836 +#: includes/common/payment-gateways/paypal-express.php:1107 +msgid "A reversal has occurred on this transaction because you have given the customer a refund." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:835 +#: includes/common/payment-gateways/paypal-express.php:1106 +msgid "A reversal has occurred on this transaction due to a complaint about the transaction from your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:834 +#: includes/common/payment-gateways/paypal-express.php:1105 +msgid "A reversal has occurred on this transaction due to your customer triggering a money-back guarantee." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:833 +#: includes/common/payment-gateways/paypal-express.php:1104 +msgid "A reversal has occurred on this transaction due to a chargeback by your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:1101 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer:" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:826 +#: includes/common/payment-gateways/paypal-express.php:1097 +msgid "A payment has been accepted." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:818 +#: includes/common/payment-gateways/paypal-express.php:1087 +msgid "The transaction has not terminated, e.g. an authorization may be awaiting completion." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:531 +#: includes/common/payment-gateways/paypal-express.php:810 +#: includes/common/payment-gateways/paypal-express.php:1077 +msgid "The payment has failed. This happens only if the payment was made from your customer's bank account." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:806 +#: includes/common/payment-gateways/paypal-express.php:1072 +msgid "An authorization for this transaction has been voided." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:802 +#: includes/common/payment-gateways/paypal-express.php:1067 +msgid "The authorization period for this payment has been reached." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:798 +#: includes/common/payment-gateways/paypal-express.php:1062 +msgid "A reversal has been canceled; for example, when you win a dispute and the funds for the reversal have been returned to you." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:499 +#: includes/common/payment-gateways/paypal-express.php:1163 +msgid "PayPal Express Checkout" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:798 +msgid "Gateway Settings Page Message" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:725 +msgid "Signature" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:506 +#: includes/common/payment-gateways/eway31.php:533 +#: includes/common/shipping-modules/mp-fedex.php:276 +msgid "API Password" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:773 +msgid "Enter a percentage of all store sales to collect as a fee. Decimals allowed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:757 +msgid "Using PayPal Chained Payments allows you as the multisite network owner to collect a predefined fee or percentage of all sales on network MarketPress stores! This is invisible to the customers who purchase items in a store, and all PayPal fees will be charged to the store owner. To use this option you must create API credentials, and you should make all other gateways unavailable or limited above." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:338 +msgid "Please be aware that we will deduct a ?% fee from the total of each transaction in addition to any fees PayPal may charge you. If for any reason you need to refund a customer for an order, please contact us with a screenshot of the refund receipt in your PayPal history as well as the Transaction ID of our fee deduction so we can issue you a refund. Thank you!" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:698 +#: includes/common/payment-gateways/paypal-express.php:149 +msgid "There was a problem connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:470 +#: includes/common/payment-gateways/paypal-express.php:1053 +msgid "There was a problem verifying the IPN string with PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:310 +msgid "There was a problem connecting to PayPal to check the status of your purchase. Please check the status of your order here »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:539 +#: includes/common/payment-gateways/paypal-chained-payments.php:254 +#: includes/common/payment-gateways/paypal-express.php:1139 +msgid "The payment is pending." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:251 +#: includes/common/payment-gateways/paypal-chained-payments.php:531 +#: includes/common/payment-gateways/paypal-express.php:862 +#: includes/common/payment-gateways/paypal-express.php:1136 +msgid "The payment is pending for an unknown reason. For more information, contact PayPal customer service." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:250 +#: includes/common/payment-gateways/paypal-chained-payments.php:530 +#: includes/common/payment-gateways/paypal-express.php:861 +#: includes/common/payment-gateways/paypal-express.php:1135 +msgid "The payment is pending because you are not yet verified. You must verify your account before you can accept this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:249 +#: includes/common/payment-gateways/paypal-chained-payments.php:529 +#: includes/common/payment-gateways/paypal-express.php:860 +#: includes/common/payment-gateways/paypal-express.php:1134 +msgid "The payment is pending because it was made via credit card and you must upgrade your account to Business or Premier status in order to receive the funds. It can also mean that you have reached the monthly limit for transactions on your account." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:248 +#: includes/common/payment-gateways/paypal-chained-payments.php:528 +#: includes/common/payment-gateways/paypal-express.php:859 +#: includes/common/payment-gateways/paypal-express.php:1133 +msgid "The payment is pending because it was made to an email address that is not yet registered or confirmed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:247 +#: includes/common/payment-gateways/paypal-chained-payments.php:527 +#: includes/common/payment-gateways/paypal-express.php:858 +#: includes/common/payment-gateways/paypal-express.php:1132 +msgid "The payment is pending while it is being reviewed by PayPal for risk." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:246 +#: includes/common/payment-gateways/paypal-chained-payments.php:526 +#: includes/common/payment-gateways/paypal-express.php:856 +#: includes/common/payment-gateways/paypal-express.php:1130 +msgid "You do not have a balance in the currency sent, and you do not have your Payment Receiving Preferences set to automatically convert and accept this payment. You must manually accept or deny this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:245 +#: includes/common/payment-gateways/paypal-chained-payments.php:525 +#: includes/common/payment-gateways/paypal-express.php:855 +#: includes/common/payment-gateways/paypal-express.php:1129 +msgid "The payment is pending because you hold a non-U.S. account and do not have a withdrawal mechanism. You must manually accept or deny this payment from your Account Overview." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:244 +#: includes/common/payment-gateways/paypal-chained-payments.php:524 +#: includes/common/payment-gateways/paypal-express.php:854 +#: includes/common/payment-gateways/paypal-express.php:1128 +msgid "The payment is pending because it was made by an eCheck that has not yet cleared." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:243 +#: includes/common/payment-gateways/paypal-chained-payments.php:523 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:236 +#: includes/common/payment-gateways/paypal-chained-payments.php:516 +msgid "The transaction was rejected by the receiver (you)." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:510 +#: includes/common/payment-gateways/paypal-express.php:843 +#: includes/common/payment-gateways/paypal-express.php:1115 +msgid "You refunded the payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:224 +#: includes/common/payment-gateways/paypal-chained-payments.php:504 +msgid "The transaction is in progress." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:212 +#: includes/common/payment-gateways/paypal-chained-payments.php:491 +#: includes/common/payment-gateways/paypal-express.php:814 +#: includes/common/payment-gateways/paypal-express.php:1082 +msgid "The payment has been partially refunded." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:202 +#: includes/common/payment-gateways/paypal-chained-payments.php:481 +msgid "PayPal balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:177 +msgid "There was a problem connecting to PayPal to setup your purchase. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:122 +msgid "Your PayPal transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:50 +#: includes/common/payment-gateways/paypal-chained-payments.php:53 +#: includes/common/payment-gateways/paypal-chained-payments.php:732 +#: includes/common/payment-gateways/paypal-express.php:500 +#: includes/common/payment-gateways/paypal-express.php:938 +msgid "PayPal" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:48 +#: includes/common/payment-gateways/paypal-chained-payments.php:730 +#: includes/common/payment-gateways/paypal-chained-payments.php:756 +#: includes/common/payment-gateways/paypal-chained-payments.php:873 +msgid "PayPal Chained Payments" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:59 +#: includes/common/payment-gateways/paypal-payflow.php:467 +msgid "PayPal Payflow Pro" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:378 +msgid "Chargeback - A payment was reversed due to a chargeback. The funds have been removed from your account balance and returned to the buyer." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:372 +msgid "Failed - The Credit Card or Direct Debit transaction was declined." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:354 +#: includes/common/payment-gateways/skrill.php:366 +msgid "Cancelled - The payment was cancelled manually by the sender in their online account history or was auto-cancelled after 14 days pending." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:360 +msgid "Pending - The payment is pending. It can take 2-3 days for bank transfers to complete." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:349 +#: includes/common/payment-gateways/skrill.php:354 +msgid "Processed - The payment has been completed, and the funds have been added successfully to your Moneybookers account balance." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:189 +msgid "Shown to the customer on the confirmation screen - the end step of the process - a note, confirmation number, or any other message. Line breaks <br> may be used for longer messages." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:188 +msgid "Confirmation Note (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:183 +msgid "The URL of the logo which you would like to appear at the top of the payment form. The logo must be accessible via HTTPS otherwise it will not be shown. For best integration results we recommend that you use a logo with dimensions up to 200px in width and 50px in height." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:182 +msgid "Logo Image (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:177 +msgid "The name of this store, which will be shown on the gateway. If no value is submitted, the account email will be shown as the recipient of the payment." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:176 +msgid "Merchant Name (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:165 +msgid "Language" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:368 +#: includes/common/payment-gateways/authorizenet-aim.php:262 +#: includes/common/payment-gateways/eway.php:363 +#: includes/common/payment-gateways/eway31.php:471 +#: includes/common/payment-gateways/mollie.php:91 +#: includes/common/payment-gateways/paymill.php:193 +#: includes/common/payment-gateways/paypal-chained-payments.php:356 +#: includes/common/payment-gateways/paypal-express.php:688 +#: includes/common/payment-gateways/paypal-payflow.php:432 +#: includes/common/payment-gateways/pin.php:186 +#: includes/common/payment-gateways/skrill.php:152 +#: includes/common/payment-gateways/stripe.php:288 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:104 +msgid "Currency" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:359 +#: includes/common/payment-gateways/skrill.php:143 +msgid "Secret Word" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:261 +msgid "Order ID:" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:234 +msgid "Complete Checkout" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:204 +msgid "Your Moneybookers transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:155 +msgid "This is the email text to send to those who have made manual payment checkouts. You should include your manual payment instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:257 +#: includes/common/payment-gateways/manual-payments.php:128 +msgid "Record payments manually, such as by Cash, Check, or EFT." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:71 +msgid "Manual/Invoice" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:648 +#: includes/common/payment-gateways/manual-payments.php:35 +#: includes/common/payment-gateways/manual-payments.php:36 +msgid "Manual Payment" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:34 +#: includes/common/payment-gateways/manual-payments.php:163 +msgid "Manual Payments" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:288 +msgid "iDEAL Simulator (for testing)" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:287 +msgid "ABN Amro Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:286 +msgid "Friesland Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:285 +msgid "Rabobank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:284 +msgid "ING Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:279 +msgid "Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:270 +msgid "To make it easier to pay for online products and services, the Dutch banking community has developed the iDEAL online payment method. iDEAL allows online payments to be made using online banking in EUR only." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:247 +#: includes/common/payment-gateways/_payway.php:199 +#: includes/common/payment-gateways/manual-payments.php:68 +msgid "Invoiced" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1016 +msgid "Coupon" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:77 +#: includes/common/payment-gateways/_ideal.php:250 +#: includes/common/payment-gateways/_payway.php:202 +msgid "iDEAL" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:76 +msgid "iDEAL (beta)" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:327 +msgid "Merchant Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:293 +#: includes/common/payment-gateways/_payway.php:302 +#: includes/common/payment-gateways/payfast.php:324 +msgid "Merchant ID" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:462 +msgid "eWay Rapid 3.0 Payments lets merchants recieve credit card payments through eWay without need for users to leave the shop. Note this gateway requires a valid SSL certificate configured for this site." +msgstr "" + +#: includes/common/payment-gateways/eway.php:452 +msgid "There was a problem connecting to eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/eway.php:432 +#: includes/common/payment-gateways/eway.php:437 +msgid "The url of the image can be hosted on your website and pass the secure https:// path of the image to be displayed at the top of the website. This is the second image block on the webpage and is restricted to 960px X 65px. A default secure image is used if none is supplied." +msgstr "" + +#: includes/common/payment-gateways/eway.php:431 +#: includes/common/payment-gateways/eway.php:436 +msgid "Company Logo (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:427 +msgid "The page footer text can be customised and populated below the customer's order details. Useful for contact information." +msgstr "" + +#: includes/common/payment-gateways/eway.php:426 +msgid "Page Footer (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:421 +msgid "Page Description (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:417 +#: includes/common/payment-gateways/eway.php:422 +msgid "This value is used to populate the browsers title bar at the top of the screen." +msgstr "" + +#: includes/common/payment-gateways/eway.php:416 +msgid "Page Title (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:412 +msgid "This will be displayed as the company the customer is purchasing from, including this is highly recommended." +msgstr "" + +#: includes/common/payment-gateways/eway.php:411 +msgid "Company Name" +msgstr "" + +#: includes/common/payment-gateways/eway.php:394 +msgid "Customer ID" +msgstr "" + +#: includes/common/payment-gateways/eway.php:381 +#: includes/common/payment-gateways/eway31.php:488 +msgid "Live API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway.php:371 +#: includes/common/payment-gateways/eway31.php:479 +msgid "Gateway Mode" +msgstr "" + +#: includes/common/payment-gateways/eway.php:354 +msgid "The Hosted Page is a webpage hosted on eWAY's side eliminating the need for merchants to capture, transmit or store credit card numbers. At the checkout time the merchant automatically redirects the customer to the Hosted Page where they would enter their details and have the transaction processed. Upon completion of the transaction the customer is redirected back to the MarketPress checkout confirmation page." +msgstr "" + +#: includes/common/payment-gateways/eway.php:314 +msgid "There was a problem with your credit card information: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:300 +msgid "Paid - The card has been processed - %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:253 +msgid "There was a problem setting up the transaction with eWay: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:245 +#: includes/common/payment-gateways/eway.php:289 +msgid "There was a problem parsing the response from eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:159 +#: includes/common/payment-gateways/eway.php:189 +#: includes/common/payment-gateways/paypal-chained-payments.php:634 +#: includes/common/payment-gateways/paypal-express.php:322 +#: includes/common/payment-gateways/paypal-express.php:473 +msgid "%s Store Purchase - Order ID: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:147 +#: includes/common/payment-gateways/eway.php:462 +msgid "eWay Shared Payments" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:214 +msgid "This is the email text to send to those who have made CubePoints checkouts. You should include your CubePoints instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:212 +#: includes/common/payment-gateways/free_orders.php:188 +#: includes/common/payment-gateways/manual-payments.php:154 +msgid "Order Confirmation Email" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:207 +#: includes/common/payment-gateways/manual-payments.php:149 +msgid "Confirmation User Instructions" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:202 +#: includes/common/payment-gateways/manual-payments.php:144 +msgid "User Instructions" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:198 +#: includes/common/payment-gateways/free_orders.php:170 +#: includes/common/payment-gateways/manual-payments.php:139 +msgid "Enter a public name for this payment method that is displayed to users - No HTML" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:532 +#: includes/common/payment-gateways/_cubepoints.php:196 +#: includes/common/payment-gateways/free_orders.php:169 +#: includes/common/payment-gateways/manual-payments.php:138 +msgid "Method Name" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:187 +msgid "Accept CubePoints as payment(requires the CubePoints plugin)." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:140 +msgid "Sorry, but you do not appear to have enough points to complete this purchase!" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:124 +msgid "%s Store Purchase" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:79 +#: includes/common/payment-gateways/_cubepoints.php:171 +msgid "Your current points: " +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:133 +#: includes/common/payment-gateways/_cubepoints.php:197 +msgid "CubePoints" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:344 +msgid "Authorize.net AIM Checkout" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:331 +msgid "Custom API URL" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:332 +msgid "Many other gateways have Authorize.net API emulators. To use one of these gateways input their API post url here." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:322 +msgid "Request a delimited response from the payment gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:316 +msgid "Security: MD5 Hash" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:317 +msgid "The payment gateway generated MD5 hash value that can be used to authenticate the transaction response. Not needed because responses are returned using an SSL connection." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:306 +msgid "Customer Receipt Email Footer" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:296 +msgid "Customer Receipt Email Header" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:297 +#: includes/common/payment-gateways/paypal-payflow.php:446 +msgid "This text will appear as the header of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:282 +msgid "Encapsulation Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:283 +msgid "Authorize.net default is blank. Otherwise, get this from your credit card processor. If the transactions are going through, but getting strange responses, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:273 +msgid "Optional settings to control advanced options" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:224 +#: includes/common/payment-gateways/authorizenet-aim.php:272 +msgid "Advanced Settings" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:253 +msgid "Transaction Key" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:246 +msgid "Login ID" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:396 +msgid "Gateway Credentials" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:221 +msgid "Authorize.net AIM is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway. USD is the only currency supported by this gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:205 +msgid "There was a problem finalizing your purchase. %s Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:519 +#: includes/common/payment-gateways/paypal-chained-payments.php:218 +#: includes/common/payment-gateways/paypal-chained-payments.php:498 +#: includes/common/payment-gateways/paypal-express.php:822 +#: includes/common/payment-gateways/paypal-express.php:1092 +msgid "The payment has been completed, and the funds have been added successfully to your account balance." +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:233 +msgid "Please enter a valid credit card security code" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:224 +#: includes/public/class-mp-checkout.php:867 +msgid "Please enter a valid credit card number" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:221 +msgid "Please enter your credit card number" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:217 +msgid "Please enter your credit card security code" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:213 +msgid "Please select your credit card expiration date." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:299 +#: includes/common/payment-gateways/authorizenet-aim.php:50 +#: includes/common/payment-gateways/eway.php:148 +#: includes/common/payment-gateways/eway.php:298 +#: includes/common/payment-gateways/eway31.php:267 +#: includes/common/payment-gateways/paymill.php:46 +#: includes/common/payment-gateways/paypal-express.php:972 +#: includes/common/payment-gateways/paypal-payflow.php:60 +#: includes/common/payment-gateways/pin.php:46 +#: includes/common/payment-gateways/simplify.php:19 +#: includes/common/payment-gateways/stripe.php:46 +#: includes/common/payment-gateways/wepay.php:37 +msgid "Credit Card" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:49 +msgid "Authorize.net Checkout" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:156 +#: includes/common/payment-gateways/stripe.php:293 +msgid "Selecting a currency other than that used for your store may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:352 +msgid "Seller ID" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:340 +#: includes/common/payment-gateways/_ideal.php:311 +#: includes/common/payment-gateways/authorizenet-aim.php:234 +#: includes/common/payment-gateways/eway.php:376 +#: includes/common/payment-gateways/payfast.php:315 +#: includes/common/payment-gateways/paypal-chained-payments.php:368 +#: includes/common/payment-gateways/paypal-express.php:699 +#: includes/common/payment-gateways/paypal-payflow.php:391 +msgid "Live" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:339 +#: includes/common/payment-gateways/authorizenet-aim.php:233 +#: includes/common/payment-gateways/eway.php:375 +#: includes/common/payment-gateways/paypal-chained-payments.php:367 +#: includes/common/payment-gateways/paypal-express.php:698 +#: includes/common/payment-gateways/paypal-payflow.php:390 +#: includes/common/shipping-modules/mp-fedex.php:263 +msgid "Sandbox" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:336 +#: includes/common/payment-gateways/_ideal.php:307 +#: includes/common/payment-gateways/authorizenet-aim.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:365 +#: includes/common/payment-gateways/paypal-express.php:695 +#: includes/common/payment-gateways/paypal-payflow.php:387 +#: includes/common/payment-gateways/wepay.php:130 +#: includes/common/shipping-modules/mp-fedex.php:260 +msgid "Mode" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:288 +#: includes/common/payment-gateways/mijireh.php:242 +#: includes/common/payment-gateways/mollie.php:212 +msgid "The order has been received" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:74 +#: includes/common/payment-gateways/2checkout.php:75 +#: includes/common/payment-gateways/2checkout.php:435 +msgid "2Checkout" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:306 +msgid "Confirm" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:218 +#: includes/common/class-mp-cart.php:974 includes/common/class-mp-cart.php:1354 +#: includes/common/template-functions.php:918 +msgid "Checkout" +msgstr "" + +#: includes/common/template-functions.php:207 +msgid "Check Order Status" +msgstr "" + +#: includes/common/template-functions.php:235 +msgid "View Products" +msgstr "" + +#: includes/common/template-functions.php:263 +msgid "Visit Store" +msgstr "" + +#: includes/common/template-functions.php:2912 +#: includes/multisite/template-functions.php:448 +msgid "Order By" +msgstr "" + +#: includes/common/template-functions.php:2887 +#: includes/multisite/template-functions.php:405 +msgid "Price (High to Low)" +msgstr "" + +#: includes/common/template-functions.php:2886 +#: includes/multisite/template-functions.php:404 +msgid "Price (Low to High)" +msgstr "" + +#: includes/common/template-functions.php:2881 +#: includes/multisite/template-functions.php:399 +msgid "Default" +msgstr "" + +#: includes/common/template-functions.php:2858 +msgid "Show All" +msgstr "" + +#: includes/common/class-mp-product.php:2048 +msgid "View Larger Image »" +msgstr "" + +#: includes/common/class-mp-product.php:979 +msgid "Out of Stock" +msgstr "" + +#: includes/common/template-functions.php:148 +msgid "Price: " +msgstr "" + +#: includes/multisite/template-functions.php:833 +msgid "No Tags" +msgstr "" + +#: includes/common/template-functions.php:3162 +msgid "Uncategorized" +msgstr "" + +#: includes/common/class-mp-cart.php:569 includes/common/class-mp-order.php:604 +#: includes/common/helpers.php:115 +msgid "Download" +msgstr "" + +#: includes/common/class-mp-cart.php:1353 +msgid "Empty Cart" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:291 +#: includes/common/payment-gateways/paypal-express.php:718 +#: includes/common/payment-gateways/paypal-payflow.php:423 +#: includes/common/shipping-modules/mp-ups.php:158 +#: includes/public/class-mp-checkout.php:1254 +#: includes/public/class-mp-checkout.php:1383 +msgid "Password" +msgstr "" + +#: includes/common/payment-gateways/eway.php:387 +#: includes/common/payment-gateways/paypal-express.php:711 +#: includes/common/shipping-modules/mp-usps.php:185 +#: includes/public/class-mp-checkout.php:1249 +msgid "Username" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:437 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:790 +msgid "Have a coupon code?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:321 +#: includes/admin/class-mp-orders-admin.php:526 +#: includes/common/class-mp-cart.php:592 +msgid "Remove" +msgstr "" + +#: includes/admin/class-mp-ajax.php:316 +msgid "Quantity:" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2140 +#: includes/admin/class-mp-products-admin.php:2387 +#: includes/common/shipping-modules/class-mp-shipping-api.php:507 +msgid "Extra Shipping Cost" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:403 +msgid "Choose a Shipping Method:" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1691 +#: includes/admin/class-mp-products-admin.php:2131 +#: includes/admin/class-mp-products-admin.php:2378 +#: includes/common/shipping-modules/class-mp-shipping-api.php:228 +msgid "Ounces" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1684 +#: includes/admin/class-mp-products-admin.php:2123 +#: includes/admin/class-mp-products-admin.php:2369 +#: includes/admin/class-mp-setup-wizard.php:546 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:165 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +#: includes/common/shipping-modules/class-mp-shipping-api.php:227 +msgid "Pounds" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:226 +msgid "Product Weight:" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:214 +msgid "Weight (Kilograms)" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:82 +msgid "Number of Categories:" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:72 +msgid "Product Count" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:20 +#: includes/admin/class-mp-product-attributes-admin.php:129 +#: includes/admin/class-mp-product-attributes-list-table.php:22 +#: includes/admin/class-mp-products-admin.php:2216 +#: includes/admin/class-mp-shortcode-builder.php:628 +#: includes/admin/class-mp-shortcode-builder.php:1415 +#: includes/admin/widgets/ms-global-categories.php:70 +#: includes/common/shipping-modules/mp-fedex.php:395 +#: includes/common/shipping-modules/mp-ups.php:202 +#: includes/common/shipping-modules/mp-usps.php:243 +#: includes/public/class-mp-checkout.php:314 +msgid "Name" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:67 +msgid "Order Categories By:" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:24 +#: includes/admin/widgets/ms-global-categories.php:50 +msgid "Global Product Categories" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:15 +msgid "Global Product Category List" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:13 +msgid "Displays a network-wide HTML list of product categories from network MarketPress stores." +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:24 +#: includes/admin/widgets/ms-global-tag-cloud.php:45 +msgid "Global Product Tags" +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:15 +msgid "Global Product Tag Cloud" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:947 +#: includes/admin/widgets/ms-global-product-list.php:173 +msgid "Excerpt" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:169 +msgid "Content To Show:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:140 +msgid "Limit To Product Tag:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:132 +msgid "Limit To Product Category:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:72 +msgid "Global Products" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:16 +msgid "Global Product List" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:14 +msgid "Shows a customizable global list of products from network MarketPress stores." +msgstr "" + +#: includes/common/class-mp-product.php:974 +#: includes/multisite/template-functions.php:731 +msgid "Buy Now »" +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:13 +msgid "Displays global most used product tags in cloud format from network MarketPress stores." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:438 +msgid "Theme Permissions" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:402 +#: includes/multisite/class-mp-admin-multisite.php:448 +msgid "No Access" +msgstr "" + +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:120 +msgid "Pro Site Level" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:401 +#: includes/multisite/class-mp-admin-multisite.php:447 +msgid "All Can Use" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:390 +msgid "Gateway Permissions" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:375 +msgid "Select a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:350 +msgid "Global Gateway" +msgstr "" + +#. Plugin Name of the plugin/theme +msgid "MarketPress" +msgstr "" + +#: includes/admin/widgets/product-tag-cloud.php:7 +msgid "Your most used product tags in cloud format from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/categories.php:79 +msgid "Show hierarchy" +msgstr "" + +#: includes/admin/widgets/categories.php:76 +#: includes/admin/widgets/ms-global-categories.php:92 +msgid "Show product counts" +msgstr "" + +#: includes/admin/widgets/categories.php:73 +msgid "Show as dropdown" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:710 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:736 +#: includes/admin/widgets/categories.php:30 +msgid "Select Category" +msgstr "" + +#: includes/admin/widgets/categories.php:7 +msgid "A list or dropdown of product categories from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/product-list.php:250 +msgid "Show Buy Button" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:183 +#: includes/admin/widgets/product-list.php:244 +msgid "Show Price" +msgstr "" + +#: includes/admin/widgets/product-list.php:241 +msgid "Show Excerpt" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:155 +#: includes/admin/widgets/product-list.php:238 +msgid "Thumbnail Size:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:153 +#: includes/admin/widgets/product-list.php:237 +msgid "Show Thumbnail" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:147 +#: includes/admin/widgets/product-list.php:233 +msgid "Display Settings" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:136 +#: includes/admin/widgets/ms-global-product-list.php:144 +#: includes/admin/widgets/product-list.php:230 +msgid "Enter the Slug" +msgstr "" + +#: includes/admin/widgets/product-list.php:228 +#: includes/common/template-functions.php:894 +msgid "Tag" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:686 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:712 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:739 +#: includes/admin/class-mp-shortcode-builder.php:796 +#: includes/admin/widgets/product-list.php:227 +#: includes/common/template-functions.php:886 +#: includes/common/template-functions.php:2907 +msgid "Category" +msgstr "" + +#: includes/admin/widgets/product-list.php:226 +msgid "No Filter" +msgstr "" + +#: includes/admin/widgets/product-list.php:224 +msgid "Taxonomy Filter:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:108 +#: includes/admin/widgets/product-list.php:209 +msgid "Order Products By:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:101 +#: includes/admin/widgets/product-list.php:206 +msgid "Number of Products:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:98 +#: includes/admin/widgets/product-list.php:204 +msgid "List Settings" +msgstr "" + +#: includes/admin/widgets/product-list.php:177 +msgid "Our Products" +msgstr "" + +#: includes/admin/widgets/product-list.php:144 +#: includes/common/template-functions.php:2070 +#: includes/common/template-functions.php:2347 +#: includes/multisite/template-functions.php:303 +#: includes/multisite/template-functions.php:623 +msgid "No Products" +msgstr "" + +#: includes/admin/widgets/product-list.php:8 +msgid "Product List" +msgstr "" + +#: includes/admin/widgets/product-list.php:7 +msgid "Shows a customizable list of products from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/cart.php:75 includes/admin/widgets/categories.php:82 +#: includes/admin/widgets/product-list.php:253 +#: includes/admin/widgets/product-tag-cloud.php:57 +msgid "Only show on store pages" +msgstr "" + +#: includes/admin/widgets/cart.php:65 +#: includes/admin/widgets/ms-global-product-list.php:92 +#: includes/admin/widgets/product-list.php:200 +msgid "Custom Text:" +msgstr "" + +#: includes/admin/widgets/cart.php:64 includes/admin/widgets/categories.php:69 +#: includes/admin/widgets/ms-global-categories.php:59 +#: includes/admin/widgets/ms-global-product-list.php:87 +#: includes/admin/widgets/ms-global-tag-cloud.php:49 +#: includes/admin/widgets/product-list.php:199 +#: includes/admin/widgets/product-tag-cloud.php:49 +msgid "Title:" +msgstr "" + +#: includes/admin/widgets/cart.php:7 +msgid "Shows dynamic shopping cart contents along with a checkout button for your MarketPress store." +msgstr "" + +#: includes/admin/widgets/product-tag-cloud.php:8 +msgid "Product Tag Cloud" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:539 +#: includes/admin/class-mp-setup-wizard.php:575 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:163 +msgid "Measurement System" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:616 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:149 +msgid "Select Shipping Options" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:596 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:129 +msgid "Calculated Options" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:582 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:115 +msgid "No Shipping" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:110 +msgid "EU" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:109 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:93 +msgid "All" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:92 +msgid "Select:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:185 +msgid "Store Pages" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:223 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:256 +msgid "Order Shipped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:60 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:95 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:128 +#: marketpress.php:266 +msgid "New Order" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:314 +msgid "Email Notifications" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:59 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:200 +msgid "Products List" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:58 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:190 +msgid "Store Base" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:108 +#: includes/admin/class-mp-shortcode-builder.php:635 +#: includes/admin/class-mp-shortcode-builder.php:708 +#: includes/admin/class-mp-shortcode-builder.php:875 +#: includes/admin/class-mp-shortcode-builder.php:1319 +#: includes/admin/class-mp-shortcode-builder.php:1422 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:526 +#: includes/admin/widgets/ms-global-categories.php:78 +#: includes/admin/widgets/ms-global-product-list.php:127 +#: includes/admin/widgets/product-list.php:221 +msgid "Ascending" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:109 +#: includes/admin/class-mp-shortcode-builder.php:636 +#: includes/admin/class-mp-shortcode-builder.php:709 +#: includes/admin/class-mp-shortcode-builder.php:876 +#: includes/admin/class-mp-shortcode-builder.php:1320 +#: includes/admin/class-mp-shortcode-builder.php:1423 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:525 +#: includes/admin/widgets/ms-global-categories.php:75 +#: includes/admin/widgets/ms-global-product-list.php:124 +#: includes/admin/widgets/product-list.php:220 +msgid "Descending" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:637 +#: includes/admin/class-mp-shortcode-builder.php:695 +#: includes/admin/class-mp-shortcode-builder.php:862 +#: includes/admin/class-mp-shortcode-builder.php:1306 +#: includes/admin/class-mp-shortcode-builder.php:1424 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:518 +#: includes/admin/widgets/ms-global-product-list.php:121 +#: includes/admin/widgets/product-list.php:218 +msgid "Random" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:694 +#: includes/admin/class-mp-shortcode-builder.php:861 +#: includes/admin/class-mp-shortcode-builder.php:1305 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:517 +#: includes/admin/widgets/ms-global-product-list.php:119 +#: includes/admin/widgets/product-list.php:216 +msgid "Product Price" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:693 +#: includes/admin/class-mp-shortcode-builder.php:860 +#: includes/admin/class-mp-shortcode-builder.php:1304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:516 +#: includes/admin/widgets/ms-global-product-list.php:117 +#: includes/admin/widgets/product-list.php:215 +msgid "Number of Sales" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:692 +#: includes/admin/class-mp-shortcode-builder.php:859 +#: includes/admin/class-mp-shortcode-builder.php:1303 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:515 +#: includes/admin/widgets/product-list.php:214 +msgid "Product Author" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:691 +#: includes/admin/class-mp-shortcode-builder.php:858 +#: includes/admin/class-mp-shortcode-builder.php:1302 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:514 +#: includes/admin/widgets/product-list.php:213 +msgid "Product ID" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:690 +#: includes/admin/class-mp-shortcode-builder.php:857 +#: includes/admin/class-mp-shortcode-builder.php:1301 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:513 +#: includes/admin/widgets/ms-global-product-list.php:113 +#: includes/admin/widgets/product-list.php:212 +msgid "Publish Date" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:430 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:726 +msgid "Width" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:439 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:735 +msgid "Height" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:88 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:402 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:698 +msgid "Custom" +msgstr "" + +#: includes/common/class-mp-product.php:179 +#: includes/common/class-mp-product.php:992 +#: includes/common/class-mp-product.php:1000 +#: includes/multisite/template-functions.php:579 +msgid "Buy Now" +msgstr "" + +#: includes/common/class-mp-product.php:175 +#: includes/common/class-mp-product.php:990 +#: includes/common/class-mp-product.php:998 +msgid "Add To Cart" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:807 +msgid "Store Style" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1021 +msgid "Edit Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupon.php:580 +#: includes/admin/class-mp-ajax.php:238 +#: includes/admin/class-mp-products-admin.php:1532 +msgid "Unlimited" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1198 +msgid "Remaining Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1197 +msgid "Used" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:752 +#: includes/admin/class-mp-products-admin.php:2343 +msgid "Start Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:598 +msgid "Coupon Code" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:444 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:284 +msgid "Save Changes" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:57 +#: includes/admin/class-mp-shortcode-builder.php:716 +#: includes/admin/class-mp-shortcode-builder.php:727 +#: includes/admin/class-mp-shortcode-builder.php:883 +#: includes/admin/class-mp-shortcode-builder.php:894 +#: includes/admin/class-mp-shortcode-builder.php:946 +#: includes/admin/class-mp-shortcode-builder.php:956 +#: includes/admin/class-mp-shortcode-builder.php:1006 +#: includes/admin/class-mp-shortcode-builder.php:1327 +#: includes/admin/class-mp-shortcode-builder.php:1338 +#: includes/admin/store-settings/class-mp-store-settings-general.php:357 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:270 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:108 +#: includes/admin/widgets/ms-global-product-list.php:172 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:94 +msgid "None" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:352 +msgid "Google Analytics Ecommerce Tracking" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:310 +msgid "This option turns MarketPress into more of a product listing plugin, disabling shopping carts, checkout, and order management. This is useful if you simply want to list items you can buy in a store somewhere else, optionally linking the \"Buy Now\" buttons to an external site. Some examples are a car dealership, or linking to songs/albums in itunes, or linking to products on another site with your own affiliate links." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:304 +msgid "Whether or not customers must be registered and logged in to checkout. (Not recommended: Enabling this can lower conversions)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:258 +msgid "How many times may a customer download a file they have purchased? (It's best to set this higher than one in case they have any problems downloading)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:257 +msgid "Maximum Downloads" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:298 +msgid "This will set the product to draft if inventory of all variations is gone." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:288 +msgid "At what low stock count do you want to be warned for products you have enabled inventory tracking for?" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:208 +#: includes/admin/store-settings/class-mp-store-settings-general.php:287 +msgid "Inventory Warning Threshold" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:282 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:542 +msgid "Miscellaneous Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:429 +#: includes/multisite/class-mp-admin-multisite.php:247 +msgid "Show Decimal in Prices" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:451 +#: includes/admin/store-settings/class-mp-store-settings-general.php:403 +#: includes/multisite/class-mp-admin-multisite.php:221 +msgid "Currency Symbol Position" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:444 +#: includes/admin/store-settings/class-mp-store-settings-general.php:396 +msgid "Store Currency" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:429 +#: includes/admin/store-settings/class-mp-store-settings-general.php:381 +msgid "Currency Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:516 +msgid "Please see your local tax laws. Note if this is enabled and a downloadable only cart, rates will be the default for your base location." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:529 +msgid "Apply Tax to Downloadable Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:498 +msgid "Enabling this option allows you to enter and show all prices inclusive of tax, while still listing the tax total as a line item in shopping carts. Please see your local tax laws." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:497 +msgid "Enter Prices Inclusive of Tax?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:492 +msgid "Please see your local tax laws. Most areas charge tax on shipping fees." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:491 +msgid "Apply Tax To Shipping Fees?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:674 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:565 +#: includes/common/payment-gateways/authorizenet-aim.php:291 +#: includes/common/payment-gateways/authorizenet-aim.php:326 +#: includes/common/payment-gateways/payfast.php:347 +msgid "No" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:675 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:759 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:512 +#: includes/admin/class-mp-setup-wizard.php:518 +#: includes/admin/class-mp-setup-wizard.php:524 +#: includes/admin/class-mp-setup-wizard.php:530 +#: includes/admin/class-mp-setup-wizard.php:564 +#: includes/admin/store-settings/class-mp-store-settings-general.php:232 +#: includes/admin/store-settings/class-mp-store-settings-general.php:299 +#: includes/admin/store-settings/class-mp-store-settings-general.php:305 +#: includes/admin/store-settings/class-mp-store-settings-general.php:311 +#: includes/admin/store-settings/class-mp-store-settings-general.php:317 +#: includes/admin/store-settings/class-mp-store-settings-general.php:328 +#: includes/admin/store-settings/class-mp-store-settings-general.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:341 +#: includes/admin/store-settings/class-mp-store-settings-general.php:348 +#: includes/admin/store-settings/class-mp-store-settings-general.php:367 +#: includes/admin/store-settings/class-mp-store-settings-general.php:493 +#: includes/admin/store-settings/class-mp-store-settings-general.php:499 +#: includes/admin/store-settings/class-mp-store-settings-general.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:556 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:375 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:381 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:387 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:474 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:493 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:532 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:574 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:606 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:664 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:670 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:677 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:683 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:689 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:763 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:774 +#: includes/common/payment-gateways/_bitpay.php:250 +#: includes/common/payment-gateways/_bitpay.php:257 +#: includes/common/payment-gateways/_bitpay.php:264 +#: includes/common/payment-gateways/authorizenet-aim.php:290 +#: includes/common/payment-gateways/authorizenet-aim.php:325 +#: includes/common/payment-gateways/free_orders.php:160 +#: includes/common/payment-gateways/payfast.php:346 +#: includes/common/payment-gateways/paymill.php:162 +#: includes/common/payment-gateways/paypal-payflow.php:441 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-checkbox.php:22 +msgid "Yes" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:492 +#: includes/admin/store-settings/class-mp-store-settings-general.php:472 +msgid "%s Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:467 +#: includes/admin/store-settings/class-mp-store-settings-general.php:449 +msgid "Tax Settings" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:370 +#: includes/admin/store-settings/class-mp-store-settings-general.php:624 +msgid "Base Zip/Postal Code" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:354 +#: includes/admin/store-settings/class-mp-store-settings-general.php:608 +msgid "Base State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:589 +msgid "Base Country" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:582 +msgid "Location Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:195 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:800 +#: includes/multisite/class-mp-admin-multisite.php:172 +msgid "General Settings" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1945 +#: includes/admin/class-mp-products-admin.php:2185 +#: includes/admin/class-mp-store-settings-admin.php:111 +#: includes/admin/class-mp-store-settings-admin.php:266 +msgid "General" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:242 +msgid "Importers" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +#: includes/admin/class-mp-store-settings-admin.php:234 +msgid "Payments" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:313 +#: includes/admin/class-mp-store-settings-admin.php:112 +#: includes/admin/class-mp-store-settings-admin.php:222 +msgid "Presentation" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:916 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1015 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1018 +#: includes/admin/class-mp-dashboard-widgets.php:305 marketpress.php:702 +msgid "Coupons" +msgstr "" + +#: includes/admin/class-mp-admin.php:251 +msgid "Download »" +msgstr "" + +#: includes/admin/class-mp-admin.php:245 +#: includes/admin/class-mp-exporter-orders.php:170 +msgid "All Statuses" +msgstr "" + +#: includes/admin/class-mp-admin.php:209 +#: includes/admin/class-mp-exporter-orders.php:150 +#: includes/admin/class-mp-exporter-orders.php:178 +msgid "Export Orders" +msgstr "" + +#: includes/admin/class-mp-admin.php:228 +msgid "Show all dates" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:947 +msgid "Change Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:287 +msgid "Order Notes" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:478 +msgid "Other" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:205 +msgid "Subtotal" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:84 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:87 +#: includes/admin/class-mp-products-admin.php:1737 +#: includes/common/class-mp-cart.php:1409 +#: includes/common/class-mp-product.php:559 +msgid "Quantity" +msgstr "" + +#: includes/common/helpers.php:93 +msgid "Item" +msgstr "" + +#: includes/common/class-mp-order.php:1050 +msgid "Current Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:297 +msgid "Order Actions" +msgstr "" + +#: includes/common/class-mp-product.php:1084 +msgid "More Info »" +msgstr "" + +#: includes/common/class-mp-product.php:2313 +msgid "Low Product Inventory Notification" +msgstr "" + +#: includes/common/class-mp-order.php:338 includes/common/data.php:154 +msgid "New Order Notification: ORDERID" +msgstr "" + +#: includes/common/helpers.php:259 +msgid "Your payment for this order is complete." +msgstr "" + +#: includes/common/helpers.php:261 +msgid "Your payment for this order is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/helpers.php:256 +msgid "Payment Total:" +msgstr "" + +#: includes/common/helpers.php:253 +msgid "Transaction ID:" +msgstr "" + +#: includes/common/helpers.php:249 +msgid "Payment Type:" +msgstr "" + +#: includes/common/helpers.php:246 +msgid "Payment Method:" +msgstr "" + +#: includes/common/helpers.php:242 +msgid "Order Notes:" +msgstr "" + +#: includes/common/helpers.php:237 +msgid "Special Instructions:" +msgstr "" + +#: includes/common/helpers.php:232 +msgid "Tracking Number:" +msgstr "" + +#: includes/common/helpers.php:223 includes/common/helpers.php:226 +#: includes/common/helpers.php:228 +#: includes/common/shipping-modules/class-mp-shipping-api.php:406 +#: includes/common/shipping-modules/class-mp-shipping-api.php:428 +msgid "Shipping Method:" +msgstr "" + +#: includes/common/helpers.php:168 +msgid "No shipping required for this order." +msgstr "" + +#: includes/common/helpers.php:155 +msgid "Order Total:" +msgstr "" + +#: includes/common/class-mp-order.php:1025 +msgid "Taxes:" +msgstr "" + +#: includes/common/class-mp-order.php:1032 includes/common/helpers.php:144 +msgid "Shipping:" +msgstr "" + +#: includes/public/class-mp-checkout.php:367 +msgid "Street address, P.O. box, company name, c/o" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:314 +msgid "Shipping Info" +msgstr "" + +#: includes/public/class-mp-public.php:740 +msgid "Whoops, there was a problem loading up this file for your download. Please contact us for help." +msgstr "" + +#: includes/public/class-mp-public.php:683 +msgid "Sorry, our records show you've downloaded this file %d out of %d times allowed. Please contact us if you still need help." +msgstr "" + +#: includes/public/class-mp-public.php:634 +msgid "Sorry, your order has been marked as unpaid." +msgstr "" + +#: includes/public/class-mp-public.php:629 +msgid "Sorry, the link is invalid for this download." +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:15 +#: includes/admin/class-mp-products-admin.php:1172 +msgid "Cheatin’ uh?" +msgstr "" + +#: includes/public/class-mp-public.php:407 +#: includes/public/class-mp-short-codes.php:128 +msgid "Please enter a valid email address." +msgstr "" + +#: includes/admin/class-mp-ajax.php:191 +#: includes/admin/class-mp-products-admin.php:1821 +#: includes/admin/class-mp-products-admin.php:2010 +#: includes/admin/class-mp-products-admin.php:2267 +msgid "File URL" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1842 +msgid "External Link" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2177 +msgid "Add Variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:126 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:289 +msgid "Inventory" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:438 +#: includes/admin/class-mp-products-admin.php:578 +#: includes/admin/class-mp-products-admin.php:1552 +#: includes/admin/class-mp-products-admin.php:2053 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:134 +msgid "Sale Price" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "Variation Name" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1931 +msgid "Product Details" +msgstr "" + +#: includes/admin/class-mp-product-attributes-list-table.php:33 +msgid "Delete" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1057 +msgid "Trashed" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:231 +#: includes/admin/class-mp-orders-admin.php:1015 +#: includes/common/class-mp-order.php:1052 includes/common/helpers.php:97 +msgid "Total" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1196 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:210 +#: includes/admin/class-mp-orders-admin.php:1014 +msgid "Discount" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:221 +#: includes/admin/class-mp-orders-admin.php:1013 +#: includes/common/payment-gateways/_ideal.php:148 +#: includes/common/payment-gateways/_payway.php:134 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:108 +msgid "Tax" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:216 +#: includes/admin/class-mp-orders-admin.php:1012 +#: includes/admin/class-mp-products-admin.php:1958 +#: includes/admin/class-mp-products-admin.php:2198 +#: includes/admin/class-mp-store-settings-admin.php:114 +#: includes/admin/class-mp-store-settings-admin.php:230 +#: includes/common/class-mp-cart.php:717 includes/common/helpers.php:168 +#: includes/common/payment-gateways/_ideal.php:137 +#: includes/common/payment-gateways/_payway.php:116 +#: includes/public/class-mp-checkout.php:1304 +msgid "Shipping" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1011 +msgid "Items" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1010 +msgid "From" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:154 +#: includes/admin/class-mp-orders-admin.php:1009 +#: includes/common/class-mp-gdpr.php:370 +msgid "Order Date" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1008 +#: includes/common/class-mp-gdpr.php:366 +#: includes/common/template-functions.php:2134 +msgid "Order ID" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:22 +#: includes/admin/class-mp-orders-admin.php:1007 +msgid "Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1155 +msgid "N/A" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:243 +#: includes/admin/class-mp-products-admin.php:464 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:142 +msgid "Sales" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:463 +msgid "Stock" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:85 +#: includes/admin/class-mp-ajax.php:176 includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:434 +#: includes/admin/class-mp-products-admin.php:462 +#: includes/admin/class-mp-products-admin.php:576 +#: includes/admin/class-mp-products-admin.php:1519 +#: includes/admin/class-mp-products-admin.php:1569 +#: includes/admin/class-mp-products-admin.php:1950 +#: includes/admin/class-mp-products-admin.php:2059 +#: includes/admin/class-mp-products-admin.php:2190 +#: includes/admin/class-mp-products-admin.php:2330 +#: includes/common/class-mp-cart.php:1415 includes/common/helpers.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:130 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:276 +msgid "Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:173 +#: includes/admin/class-mp-products-admin.php:461 +#: includes/admin/class-mp-products-admin.php:1972 +#: includes/admin/class-mp-products-admin.php:2224 +msgid "SKU" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:459 +#: includes/admin/class-mp-products-admin.php:1793 +#: includes/admin/class-mp-products-admin.php:1805 +#: includes/admin/class-mp-products-admin.php:2163 +msgid "Variations" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:83 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:86 +#: includes/admin/class-mp-dashboard-widgets.php:134 +#: includes/admin/class-mp-products-admin.php:458 +#: includes/admin/class-mp-products-admin.php:837 +#: includes/admin/class-mp-shortcode-builder.php:689 +#: includes/admin/class-mp-shortcode-builder.php:856 +#: includes/admin/class-mp-shortcode-builder.php:1300 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:512 +#: includes/admin/widgets/ms-global-product-list.php:115 +#: includes/admin/widgets/product-list.php:211 +msgid "Product Name" +msgstr "" + +#: includes/common/template-functions.php:2575 +msgid "Categorized in " +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:305 +#: includes/common/payment-gateways/free_orders.php:176 +msgid "Payment Information" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:167 +#: includes/admin/class-mp-orders-admin.php:432 +#: includes/admin/class-mp-pages-admin.php:62 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:227 +#: includes/common/class-mp-gdpr.php:374 +#: includes/common/template-functions.php:175 +#: includes/common/template-functions.php:926 +msgid "Order Status" +msgstr "" + +#. translators: %s: orders closed +#: marketpress.php:327 +msgid "Closed (%s)" +msgid_plural "Closed (%s)" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:249 +#: includes/admin/class-mp-orders-admin.php:375 +#: includes/admin/class-mp-orders-admin.php:951 +#: includes/admin/class-mp-orders-admin.php:1053 +#: includes/admin/class-mp-orders-admin.php:1065 +#: includes/common/class-mp-gdpr.php:330 +#: includes/common/class-mp-order.php:1019 marketpress.php:325 +msgid "Closed" +msgstr "" + +#. translators: %s: shipped orders +#: marketpress.php:320 +msgid "Shipped (%s)" +msgid_plural "Shipped (%s)" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:248 +#: includes/admin/class-mp-orders-admin.php:376 +#: includes/admin/class-mp-orders-admin.php:950 +#: includes/admin/class-mp-orders-admin.php:1049 +#: includes/admin/class-mp-orders-admin.php:1064 +#: includes/common/class-mp-gdpr.php:329 +#: includes/common/class-mp-order.php:1002 marketpress.php:318 +msgid "Shipped" +msgstr "" + +#. translators: %s: paid orders +#: marketpress.php:313 +msgid "Paid (%s)" +msgid_plural "Paid (%s)" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:247 +#: includes/admin/class-mp-orders-admin.php:377 +#: includes/admin/class-mp-orders-admin.php:949 +#: includes/admin/class-mp-orders-admin.php:1045 +#: includes/admin/class-mp-orders-admin.php:1063 +#: includes/common/class-mp-gdpr.php:328 +#: includes/common/payment-gateways/2checkout.php:294 +#: includes/common/payment-gateways/_cubepoints.php:130 +#: includes/common/payment-gateways/authorizenet-aim.php:193 +#: includes/common/payment-gateways/free_orders.php:91 +#: includes/common/payment-gateways/mijireh.php:248 +#: includes/common/payment-gateways/paymill.php:273 +#: includes/common/payment-gateways/paypal-express.php:933 +#: includes/common/payment-gateways/paypal-express.php:967 +#: includes/common/payment-gateways/pin.php:258 +#: includes/common/payment-gateways/simplify.php:181 +#: includes/common/payment-gateways/stripe.php:368 +#: includes/common/payment-gateways/wepay.php:269 marketpress.php:311 +msgid "Paid" +msgstr "" + +#. translators: %s: orders received +#: marketpress.php:306 +msgid "Received (%s)" +msgid_plural "Received (%s)" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:246 +#: includes/admin/class-mp-orders-admin.php:378 +#: includes/admin/class-mp-orders-admin.php:1041 +#: includes/admin/class-mp-orders-admin.php:1062 +#: includes/common/class-mp-gdpr.php:327 includes/common/class-mp-order.php:995 +#: includes/common/payment-gateways/payfast.php:244 marketpress.php:304 +msgid "Received" +msgstr "" + +#: marketpress.php:268 +msgid "Search Orders" +msgstr "" + +#: marketpress.php:267 +msgid "View Order" +msgstr "" + +#: marketpress.php:262 +msgid "Order" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:301 +#: includes/admin/class-mp-orders-admin.php:989 marketpress.php:261 +msgid "Orders" +msgstr "" + +#: marketpress.php:228 +msgid "No Products found in Trash" +msgstr "" + +#: marketpress.php:227 +msgid "No Products Found" +msgstr "" + +#: marketpress.php:226 +msgid "Search Products" +msgstr "" + +#: marketpress.php:225 marketpress.php:229 +msgid "View Product" +msgstr "" + +#: marketpress.php:224 +msgid "New Product" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1022 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:258 +#: marketpress.php:223 +msgid "Edit" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1019 +msgid "Create New" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:687 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:698 +#: marketpress.php:217 +msgid "Product" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:307 +#: includes/common/template-functions.php:173 +#: includes/common/template-functions.php:179 +#: includes/common/template-functions.php:902 +#: includes/multisite/template-functions.php:82 marketpress.php:216 +#: marketpress.php:219 +msgid "Products" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:118 +#: includes/admin/widgets/product-tag-cloud.php:46 +#: includes/multisite/class-mp-admin-multisite.php:548 +msgid "Product Tags" +msgstr "" + +#: includes/common/template-functions.php:2906 +#: includes/multisite/template-functions.php:449 +msgid "Product Category" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:117 +#: includes/admin/widgets/categories.php:8 +#: includes/admin/widgets/categories.php:18 +#: includes/multisite/class-mp-admin-multisite.php:539 +msgid "Product Categories" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:332 +#: includes/common/template-functions.php:872 marketpress.php:218 +msgid "Store" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:60 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:209 +#: includes/admin/widgets/cart.php:8 includes/admin/widgets/cart.php:56 +#: includes/common/template-functions.php:174 +#: includes/common/template-functions.php:811 +msgid "Shopping Cart" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:110 +#: includes/admin/class-mp-store-settings-admin.php:218 +msgid "Store Settings" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:128 marketpress.php:607 +msgid "Settings" +msgstr "" + +#: includes/common/data.php:178 includes/common/data.php:190 +msgid "Your Order Has Been Shipped! (ORDERID)" +msgstr "" + +#: includes/common/data.php:159 includes/common/data.php:166 +#: includes/common/data.php:172 +msgid "Your Order Confirmation (ORDERID)" +msgstr "" + +#: includes/common/data.php:148 +msgid "

    Thank you for your order! We appreciate your business, and please come back often to check out our new products.

    " +msgstr "" + +#: includes/common/data.php:147 +msgid "

    You are almost done! Please do a final review of your order to make sure everything is correct then click the \"Confirm Payment\" button.

    " +msgstr "" + +#: includes/common/data.php:145 +msgid "

    Please enter your shipping information in the form below to proceed with your order.

    " +msgstr "" + +#: includes/common/data.php:143 +msgid "

    If you have any questions about your order please do not hesitate to contact us.

    " +msgstr "" + +#: includes/common/data.php:106 +msgid "tag" +msgstr "" + +#: includes/common/data.php:105 +msgid "category" +msgstr "" + +#: includes/common/data.php:104 +msgid "order-status" +msgstr "" + +#: includes/common/data.php:103 +msgid "shopping-cart" +msgstr "" + +#: includes/common/data.php:102 +msgid "products" +msgstr "" + +#. Translators: change default slugs here +#: includes/common/data.php:101 +msgid "store" +msgstr "" \ No newline at end of file diff --git a/languages/mp-de.mo b/languages/mp-de.mo new file mode 100644 index 0000000000000000000000000000000000000000..912bcaee132f23662a0214298ae5fd95c1e7cc6c GIT binary patch literal 200738 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

    +LGB@!@Oo=QqdX$+dO~Mx* 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%0Dhr@|UvkePncOX)FsIV= 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

    ptv|%%30y;eh!__ zh%0W?cDXGDXl9D5(O3D?1D#{6O}OC36ahY)L4xckrR4nSC_`^rJtYFJ09$japD}?0 znqC%(-N8Tv-0*v_`PIcr287mD&BFyGzu_qli2*A&8K4Ob@;LUkeIc-r zQrqftRk3nEA%DXW^ffwj)2EW;Wox<&bFkHLjS({{Us2vdC**5N{^Wk?sl(m~n$vJ& zD%k5`5aQ1NB0P~9V^9K66TSB&@08#)TvASQ4UJGDp=b@oB}owFx%s?25(l$aN5JHF z&Ua=fVB=@(zksiC@7-NpStA|N9yqGk9UoK5q`#9MXPi)qhSg+fUN0WFRLGQR4a7BW z-m#*_BQE62EH3y<^$RE1FeQ0553v)cI+`YEC^F3^4#P(E-I*fHP&10Wt5idRhYpbB zT$NZRQ`f5Uy@*OE)Y^w3eR2$iDCdO0it1#8{UmQ$%G(&ocPraW#1{X|&R)c|j8*aQZmkPd_ zbtq{~W|Bqyq5#D^I5Rvc-;kd1$L(3 z9Rz$ZQMORYe~H=vQGMD7n(}xfEW>;*$+BtL^Vy6Ra|gGMkW3~jS>T<6<8wzqH41>x zGEVkk!z!;fO;$e)aU>Bj4W@%%rZJAxT9^w3& z7)K5#)t{p}yb;qC4w?r77BMmuzAN&nNJ{pGRSARIMT-#cj~?Y4O{RHCrf!M2{^FyrOiWuzU z72Dz5P!?DbhD;DHYgF6_LD5_&%ATWj)21Wt;Qc?Jz4MCIU6y9}$a;2LuBH?{w03Iu zV<-T*+{q>jbbE=kPqY8piE69juef&AmJ-Ka;5B3dPLv5ac_to`0ByX#aIZ43iYGTJ zE-+T43L`_%!@?>%}MzZ3S9H3EEmy z`8-)R&}ht4-8G{#6G&JVr)Pl!b=!ry*TrZL3a=m02dX$S$MDF->K)n{ zC?RNOeRtH0TKh7lgN`3)o9V3g0~=yU`C+!Ez!YV_GNn-i3j9fOEo&o&*%Gsvhh|Ed zNV9I-uPa`zE1E_nH)SrIDG=-X0&U7o#SUs-9!_@4!q8b@DPi(` z(#ySs8d>a(#!AM%joR8lsM7e_g&T-m`oZmU+$>TIZFr+2f{>r$mo#@5%9cFS&~-SE zau0dAoj4j%VP>Cl*})qXSD_~$*|}e?<-~_FJ=2!2=@@2)4ewwX)Tg9+m(i&Tvu*E> zu7?KN%yBcNPI$UvBI<4G^A0u7F|cTePGgCe{fNpM^)pIM%@2~Dmq(328o~7@PnWiq zGA51}%6^LwhoHrQ#R2v0P%aMcHb2Byt~d}(HUpa0m@n+ZrjsS!tT2z{XKq|zF?*w_ zf9^FmQ%Czg#YuRV4iDo+^HI6nhGm#`j9f&gP4{*75TuzDkTLioJuPNwlVes~=|qQY z2IUa8Cl_c$6S8BZdW5nSbW_G7VKQ_)gWOzc&5Kl%DQJsZn<1gX6*nwDs546DK&6vB zdZ(Mi?Zm>1^hBqtBU7cvd=kI_UF&J&<>~QDG=TABEwTnL|1ewO1#Kq^5hjOE$yU&W z_+*x=rc8FZX9u#lFk$u^G`sEci79j0Ol0i(VY-GKXq_4Br5n#iJ6|obaTu7FiVgJF zMvq+kglWSnIVKVL{76d2 z>i;bW9yx4pobRpZcfpZ|#B;5e6E(Mwj}JJwbPJq7mR`{Jl?QO^OxTP(wHcEj60c&{ zrpy{_QmfRqd&Exl;>)Z^a~$2em)X101ZFLyQ|T@YBvprnQ#LA2 zUwR|nC7Aekk4$qiEs|fBhFp z=f;x2!~l}nyu!U|f_88jWi87l9|g^=&gJ9BVD&S!gdU}+Yse>`2z^l4NBsINv1 zu&6Y$qtsCmmw9KjR=kWO)MqjVpY%HA_PUOQ!8vXF{&ST=%31;PR(dYKt4GY3{b6rw zhBediK7N-REbdD#qN0fZX*$aBT*DB(RoEbBF$1C<-$|tWV;Tj~giIFwhw-ml<= z$IWjF~jLAsdH<+PP?_9CM8k7Y9w**`_0_5T+`du5iA`;;zr_;YX zKmHq^EA5Wr>bGF$Ne#t$gK6DbCPdd$as0plJ_MuuK{N7^2Fvo6zKUVnLHHy3$Yimf zS;gWt5@~aIS-VC%TFqcl3f^Oy_N~R;u0YjN|AjWa0P@kAvb!4HSbL)p<9CPT zy5#*Kh+fqw zi47)b5~i)rCZ(zesAK6*Y4#)28+K_cH|j#J?jISXX2_1`H5EDTx@-jPWo^CZcGgCW zzIBg}@3#+ia~)EOId06_qXsH718Iq**~sqdFlEq7AdnKj*)2XXJHZ}4)Q`(rF*(9q z(&byIF?>vu{u)}+Vv`rBoQd@A@mw<9XNFrZj+g*;k$W<&9L8vUUE74XHpzcAF6*#3BEY!fvyI zf@cEBXk|lApiMi0*l;KY>8NBCSi-|<+3pM(pADogRrB(;;(6ji67@oPsQ!Ly9_SKE zA8i^_QWqvNWnGIxR9I7K#Ide|u%hyfg9jJKvljNQj)5&AT(qKTk%}1VUXVjD8HF5( z=^3m^8O>iv_-2MM_QZ4xfA?zTt&=!)U~%lF_jT2#f7puR@B=!*qZQ$qVSePR(X#Cz z$e!LB#RlFioh~1Ue8ZX8L`9MXFa$r|jQQcu5U@y;xftJr?e#TggCit$psdL3KX0d2 zgJh(Qjr-OUyS@Ai){uznx{h!)(Qa9fDog8(LIv^&N=6n`h-U&}4I5pW7VpxZ)e$se zIu+@b)~mCZTk%)D#ON{Vdf~~kC+&9WuNCW^J{09&$(4(!iBGmMM`mkO<=;mwYkQqo00 z-+>mJHK{P5#Hh8h=82Y@2dx!Q66@_kVKn*_fmzwJYSNt_hV{6x{Y2hL@36b6BFQdr zgu(>w@hqanf%3=CA(iKH!_;XL}*QBq2AFq0z$ z<^4aaTn(*Y>4e#2i+2fG+%Nwk{=K|+7eTX>SCg@n4H-%EL!ho}(ZKWx10mbJ7oxF(!Uh>AUznl3_2sR!f2VY*L0pJQ#qj{iV#)P2N?)|jlBcQI6I~U6R@aVp5h{i+IUiC z1yr#`2A@hZt{g~KGagwzvn!vFe9y(;c4?04pK22^Zmtw%N%x7Ew0tZGe^*}OK1A!8 zO@#diZjbzp4P_Ej);;>g;US}gSXIM2&(4jOyxm1C<|9doIF+i;15zY~jvc0|$=~bb zN80m3FfM6#4`2sbfl2c=;UBZ(@+m`X?_A^tvGAMu8A-#XUSvzUyz}OuUPnP%9&rpICvlW!I8Fi@(9RC6 zmg2%jlr#8JZz=EWUow}_uv^Y9JNB&|)xf5n35nMtmiXIzP|xkSIv4)HABo9qKINk&4 zQA)&qr86t#l~6?^ill>3Av4?h6CKhukq-zFAhj1!Wa(z%Qdw~kgdb>lTzWKB?;qc= z7tKAcyQaeZw@;7XhzHxPmf?VuX=vO!vt<-S_5?~E z<=CgVU<);U(|s3Fn>AaY{uFmIi59Hg7SfTIQPXUfS!=#PLxVG0$Am6^FE_jpGBMZI zj03Dj_rbj=>dW4XtT(FWiO)H~xXT3pZu`xQLate|k%|NmJATpb>BSYyZnW3Hd8!P1*|l4M)Bd5P#K*6nZAq2-$yubxG8tGP32>n)i;n zG{pMn7IohiYa~kn9aT|YD!v$TH={SyA<0xfRMX8~77M<(R%CeQN>y8Mx zfiC5087xs|5oXX1(mS&=YWP|VMuTNSq%i5A3MOMHzcS1OW&XBQctL@DrQ||hA@GT# zCm~&>ab}fU#LoAGfn!&wx3g^;VI!?ane-tkwqY(1!L0JbdUg4S@Jk$-AWsqicnPl#LH^D zY9}(Kk@3aCM;0!RTC-K&8eeX`bNN~}#^@y}Ysv&)@v{zxSa|U1iTqQQdBtA+qRLYr zQUFDCpLics;RYw}<&~{9<1CCghh<)I@%=|JwK~HtHb*o3Gaot|j(4Yf#7RdmX!G*$ zGOi%3OxE9%T1$!9gX8J$B|KHon$!`vG?kXB49C&SjfejQDI*m9KWe- zt7LM;GZ*A-8}(R>GVq5`*3Kp+cep89$vDEvD=Bh>Jz9BIc{Ph~z!iEI!#sgCyRd2D zq>%T}fE~UZQ$TG*o*bH`-1QJQ9 z7m#MG91PCI{|G{KAh#2opg}n!P>SemEX9&UY_lp`$RpNbvJUhx|E5!cl=wV6vbZ)H zo+d$i(vDJ2gh1Btb-;~?U4$FSZhuaH)*Oh>4HLMJEBJU9`e{VYwO?He_ynWRCus-g zc^(mwx8s}<7`Gy-#R=fA%7NgMtQ9N!h{0SZxPmqwOfpZ6)C$N3*gAfBrhsHk$Lt5C z%4H89i;+kQrCUnlBh6W7BZNOG>?iX*1_PT_6I6JuO?1)6v-~?dtshALdKEeZtUX79 z_vUW>JUv2tl?%3BQB|<7Vr!YU;l^ z9^L*nDHnJn@>BtNV|P@iuOtZ6^v|N#m$P%c(xo~bCZJBgfVXh?j0@b^Y(jCQRQl29 z{aq&9TgPli(;30Ku{&xIS}a)u#3i7_g2v%gY&U(*k~%R1lL1de9Ek>G(;ApkrC_i) zY1vNz&>cVNxvCWD6iS}EG7i{E)~)5`OknZQm*zSo0Ns0fvOm{>jLX-4 zVFyJM?#ASlbP;KhiraJmvvsaY2aF&mM)nvOc;zx|V;N13*U)|(4HLql&%5Wj|CtwS zbas{c6b(qsGb;8K8g7KEy17`1U{%h+WffUzWAC(s1%isC1?32I$G{p%p%b7Ua>%qo*Qmgs#)1L*g>&=-TZ}i@RG-BtFxT;<;*JrURQvULA8rDa+-Uwxz!N zZdHfPeg~pR_SFGO;B5{<{3o=AFT3wtri`*iXCeTMh5zG!`oI6<{|x*1?&)`Wh67*8 z?&0s*d3PTiLw;HGdPY2ajrfTWZjBSWGm_$nbL)tVM9Q8sSs{nTLknz%8mLv<2-%WxzVM)+ONy&B%*~SPt(>8Yrab)2)UuQFj4^%Gxz7C;bB+aW z;^Mn{IwU(BH;TOlu0QSbm(uVeBFH`Kb88_8%yUFt#Ar+Ip{m+V!1uVfTgkKh7S+{q zXDF!U?z~GnO+Mee<0pUiS6_eq)!%$E_lKYUO?|0h>77}g|M+Zk{b_%9^}Fub);3hP zH9f>9Kp6YMw0lOqZ~`$bsI^pu6({3~yXuE3pf3&T-(Ra5oN|@tQXZOxQLO z1ArX6hmcD;skl;u!riMV@Dd@#-VvcpS}MS?qR@hy_i<9}Mi_#c)d`=goP5LERbvZ* zjlB(H%aSpbZ&B7c8%r4%=C_@FI#U@52CxE-L~X+S+h2dQ4-88_!{Lp3?FrkJ9v>WV z$fKBi=AeFVWPi{}U!TLFU^bS!xN}@)!=qkP;?{>+b59b6M6HCa(V7H#?P#3AA`-o^e_~bW+ zPyXFiBT73$^YgjR!n00WNAwc>QktG4z=9U@1qwx<{pM);J&`Xm>D8r6=R?Xp(C-ew zfn-jz^|Gat8{cy16@D?eI0i}^g&Y#Nc2b}So7Q_uL~c#*|DB4i&zyh} z8J-w9l~om~CVrw64IC~Qm-P;`dsen+y~@RXuX7WRRLe(!SWDf*5*Z3}RA!vm1W2~U zk=Fpm8=l#3@)a5LhA=CtJDUPg5V|lOLEno)TBt^-Ny;|WnFx9wM9wU+Xx#t|QT!&t z+{B`78wAA6XcTBRF%yPEDn^@?LNv>bJB6Tgg(gJmj!FgAsdtt^_5U>Ex@-lAb>ZvV0w)e&-U zc<11~6`HT$HzkHka0x3+L>To}q-w`i9(iE$yEyy#DqFaSBW_@sb@s|+%UHIm>|tTN z0-S_m5ZLWoWGEv^u^^C-e!&otv$)EuLrTQ3*2UM)wvZ*K)(h&PNpc8=6F|hrFHTZm zNXX&h3kpSQI+v00P4{@mmPe#p4ZB@bC19-hSt?l-SEKRz@zdI!hUXu~i8)t1^Ym!C zQ*ys|r!YdTS}B0imMxG)#9X6TAMa89#HK(olLg&-u<*?etSK(}3GNxvO|{XrAXakZ+>pvqtELF? zUwnLcA%&`^rDl+kQiasuwUv)c)%uhSa$pTbvnbbM(=w>k z<|HP20ZW=N9ayb~B}(sALIWib8wh>9)bZ9d_*cVeh9%d4;9{t94yDQ{?=EKm1C^`$<~XrhhN zgWWf{q01H7B=hc9D*^-VfcBl@I$ELn+zV{2J1?jGJv^N+x?kOq+iDe>?Kx6ve@8e& z@lyTjv7UW~tiJf*m));6-SW$mXz9!D*Q-ys{nrX0+b205=gqfMtP*y^DJ8g>gh-s3 zVm^oq4%JP28^^Z!poXZsBHb#25$QmB=8y(wFNx@3PK(Z=njD!=k~8fDOq|-huka7A zGe5I2prRU3CCI_sKzhVb{>_jiCG@a;f+5hSirtMH*5ad5T>|!rr|4H5w*=YYszQOv zVx5s$J8mf~S;hKPH3>aJ=HtMtILjLQy&c$Z9SP?#q+dbv>SMlzY6|qhr6O0&X;|oElKCTE`kTDLOlPL!w6;7_sOk?~3g6VxVKcJw2 zED28;`U6-$<)j$cpU!cO=Aetcqw|w%WP-#&Fis)p|NDN!@v-zD-7#LG*ax_dbH*{- zh)zcqgz|N>F1I^%f{(L$=h=SRJ0I#8;N;}>>@6h^vTp(#eW7+s0BX~wdRcMHp2=z` z&I=i;LXPR95ZK%8s<#h9pwLHK=gb+pKwGEe1nSCPli1;L9gxIM##XzJE3JO(cOyRNf2C!(Z zkXNJZLHkX-QBpZFAEt*r5V0fK(F`G)i}KjOwX6n)16uq)sA^1AmG;QKKVvKs&oM*=>Py*>{ zuOTH;uMu-%w_ezPys>PxaZ4Hg-)`3s-*wWkT80i6diY|ZEe?C?@1OOdVbbp~zZvrU_xe?x$EB z>HF_yOZZy*TBGDHrRa8!WyvKE3II0?1h65fBg+aS?o%6Onzc{DFX|8;GUn{z9Q+R- z^=-`0PvpB>B0p>B)Uv+4-dR?_-4EZOtj&J@LYDQ>*-!R&f4=gwzx<19zgQ{GI#@6( z-MBxzQe~mVLS;(`8I607DsQc5sn?ntN}{j~-CC8}>B z{0vgAKzAcHB*&sOudnZ90b@Zf>88Q}x`Oi(Ph9Vkoh8N#YeLr~&O3@yefrMDk^E|Q zaI*9@Nac&y$LD9BLlnsU7aW4Vd~fBK%g=?LvSni(Ltxgs_bFrD$N*nr&)$Sh#SJ(m?l&M6&0S#f;>(Erklhar3Pm!icQse z7akazi*6K;BH0E?npHUE-1$$qnR*>K_mYT1hbrj5=u{1?dDG(WuctN_98pLd3orf!YM6Pd1V9 ztcoxWFFNrN=0~?@;e6Ge6e~$wFqBxW(!wHH$%Y1)3QEKYh(@6q#Z95(MD&$y-jB^o zl~(QKj0D#KhXB5K%NAMQqd3K$u+HT_i>aBNGF8uvBq+>D=&Waul^V7NcFiII_j1|d zvHi_GGKO|<-69qqSKiy}H&DjVf&d+uKutE$v3b_OOKyBEQJPBgs7bF&9vwUDvt;@Z z^|pGb6XZ*YC#Hu8&ks(H>dz@^>lC-32;zcr6?(gtq3Gg?aY@0*(!3&=Bx)g)*jqaN zv>cwzPXb^7H1${1P>QaLVqsNbwTW$1lkM6shKpgGfv>aq`|scXo|GGDywG7e-%TUJ03kMr-1~PE)Ep>fiAcJC6nuD!GO}NzFvMECeOi{}p z3%uQQI_|#M>IXVmTXr52^clqj{$-7734^mD4nAeriybtL=3vug0MP?1iQpiWt=l=J zV6gl{aW2?8KC-tv$4F<=8{6Q^i%;}ju%^pOywnrA;-1EKigsY63j8|zyuZHk^d9v; z?r&{8UFX2L8y6lBt-;F~|HX5qVxg{T1TlU>as~V<8f7Z)2_*dRu^ysBH`%5@`+MUM*e*l9`W(`%MZtDq4fY6G$Q4EFgoP1T%sglQ+vT6r&mXmv-k9XQYse=HzI1VM^@bjE+bm_}q>f@G8VJ zm87EM-1Pn)r%#)WA5fCh;~Nw=UniPImE8?$c*a4JQ4CBpCC4$ftSpcop$jFpLNRMe z!sJxklMVu6MOTYb{y?dBw5;o*;&QWKr0`*7I`jO5qe9Em8J{6thqgkVEygJuEN)>e z?~ob=^n67a{}#G9M_HvaL5YxE^TTBHgYv~BGT#w{*F9f<#^cYYhdWAcdh`ZWYTAwO z*gsirFR+jB76nq+DG=z2u%7m}A#$aY6NW5jRPC<%f4Y^}N~%cA^)c`m=a})nnF8+r zeCeyAFfh{v6RFYpt^K9(g?ln#MsYR+?&BlSgcinvhF;3{70e(0C1}qo6R2yeXNKEi zs1F1+^+kJPX-3fo)%Ps*+tiODJ1TBelpLXKOWoptf7%Q<^TmA2eHbeq*5TJKiq4fk zBusYJvbxlV%3r*Ghx;T4zBxHOM|oWW!uL;e)S63v*xTkgC? zo^`p+`sdefine( 'DOMPDF_ENABLE_HTML5PARSER', true ); to the wp-config.php file." +msgstr "" + +#: includes/public/class-mp-checkout.php:723 +msgid "Invalid Email" +msgstr "Ungültige E-Mail Adresse" + +#: includes/public/class-mp-checkout.php:721 +#: includes/public/class-mp-checkout.php:729 +msgid "This field is required" +msgstr "Pflichtfeld" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:804 +msgid "This option changes the built-in css styles for store pages. For a custom css style, save your css file with the /* MarketPress Style: Your CSS Theme Name Here */ header line in the \"%s\" folder and it will appear in this list so you may select it. You should select \"None\" if you don't wish to use custom CSS styles or if you are using default theme templates or custom theme templates and css to make your own completely unique store design. For more information on custom theme templates click here »." +msgstr "" + +#: includes/public/class-mp-public.php:421 +#: includes/public/class-mp-short-codes.php:142 +msgid "Please enter a value greater than or equal to {0}." +msgstr "Bitte einen Wert grösser oder gleich {0} eingeben." + +#: includes/public/class-mp-public.php:420 +#: includes/public/class-mp-short-codes.php:141 +msgid "Please enter a value less than or equal to {0}." +msgstr "Bitte einen Wert kleiner oder gleich {0} eingeben." + +#: includes/public/class-mp-public.php:419 +#: includes/public/class-mp-short-codes.php:140 +msgid "Please enter a value between {0} and {1}." +msgstr "Bitte einen Wert zwischen {0} und {1} eingeben." + +#: includes/public/class-mp-public.php:418 +#: includes/public/class-mp-short-codes.php:139 +msgid "Please enter a value between {0} and {1} characters long." +msgstr "Bitte einen Wert mit einer Länge zwischen {0} und {1} Zeichen eingeben." + +#: includes/public/class-mp-public.php:417 +#: includes/public/class-mp-short-codes.php:138 +msgid "Please enter at least {0} characters." +msgstr "Bitte mindestens {0} Zeichen eingeben." + +#: includes/public/class-mp-public.php:416 +#: includes/public/class-mp-short-codes.php:137 +msgid "Please enter no more than {0} characters." +msgstr "Bitte nicht mehr als {0} Zeichen eingeben." + +#: includes/public/class-mp-public.php:415 +#: includes/public/class-mp-short-codes.php:136 +msgid "Please enter a value with a valid extension." +msgstr "Bitte geben Sie einen Wert mit einer gültigen Erweiterung ein." + +#: includes/public/class-mp-public.php:414 +#: includes/public/class-mp-short-codes.php:135 +msgid "Please enter the same value again." +msgstr "Bitte den gleichen Wert noch einmal eingeben." + +#: includes/public/class-mp-public.php:413 +#: includes/public/class-mp-short-codes.php:134 +msgid "Please enter a valid credit card number." +msgstr "Bitte eine gültige Kreditkartennummer eingeben." + +#: includes/public/class-mp-public.php:412 +#: includes/public/class-mp-short-codes.php:133 +msgid "Please enter only digits." +msgstr "Bitte nur Ziffern eingeben." + +#: includes/public/class-mp-public.php:411 +#: includes/public/class-mp-short-codes.php:132 +msgid "Please enter a valid number." +msgstr "Bitte eine gültige Nummer eingeben." + +#: includes/public/class-mp-public.php:410 +#: includes/public/class-mp-short-codes.php:131 +msgid "Please enter a valid date (ISO)." +msgstr "Bitte ein gültiges Datum angeben (ISO)." + +#: includes/public/class-mp-public.php:409 +#: includes/public/class-mp-short-codes.php:130 +msgid "Please enter a valid date." +msgstr "Bitte ein gültiges Datum eingeben." + +#: includes/public/class-mp-public.php:408 +#: includes/public/class-mp-short-codes.php:129 +msgid "Please enter a valid URL." +msgstr "Bitte eine gültige URL angeben." + +#: includes/public/class-mp-public.php:406 +#: includes/public/class-mp-short-codes.php:127 +msgid "Please fix this field." +msgstr "Bitte repariere dieses Feld." + +#: includes/public/class-mp-checkout.php:1287 +#: includes/public/class-mp-public.php:405 +#: includes/public/class-mp-short-codes.php:126 +msgid "This field is required." +msgstr "Dieses Feld ist erforderlich." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:810 +msgid "None - Without Special CSS-styles" +msgstr "Keine - ohne speizielle CSS-Styles" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:809 +msgid "Default - Using Default CSS-styles" +msgstr "Standart - benutze standart CSS-Styles" + +#: marketpress.php:739 +msgid "Enable multiple downloads per product" +msgstr "Mehrfache Downloads pro Produkt einschalten" + +#: marketpress.php:738 +msgid "Multiple Downloads" +msgstr "Mehrfache Downloads" + +#: includes/public/class-mp-checkout.php:715 +msgid "Invalid Zip Code" +msgstr "Ungültige Postleitzahl" + +#: includes/common/template-functions.php:2126 +msgid "Guest Email" +msgstr "Gast-Email" + +#: includes/common/payment-gateways/simplify.php:195 +msgid "There was a problem finalizing your purchase. Please re-enter your credit card information and try again" +msgstr "Es gab ein Problem mit der Verbuchung Ihrer Zahlung. Bitte geben Sie Ihre Kreditkarten-Informationen erneut ein und versuchen Sie es noch einmal" + +#: includes/common/class-mp-cart.php:565 includes/common/class-mp-order.php:600 +#: includes/common/helpers.php:111 +msgid "Download %1$s" +msgstr "Download %1$s" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:331 +msgid "Export products to file" +msgstr "Exportiere die Produkte in eine Datei" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:328 +msgid "The import process uses the WordPress importer plugin." +msgstr "Der Import-Vorgang basiert auf dem WordPress-Importer-Plugin" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:326 +msgid "Import / Export Products" +msgstr "Produkte importieren / exportieren" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:325 +msgid "Export settings to file" +msgstr "Einstellung in eine Datei exportieren" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:324 +msgid "Import configuration" +msgstr "Eine Konfiguration importieren" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:320 +msgid "Use the text below to export to a new installation. Or paste in the new configuration to import." +msgstr "Benutze den unten stehenden Text, um in eine andere Installation dieser Software zu exportieren. Oder füge hier die neue Konfiguration ein, um sie zu importieren." + +#: includes/admin/store-settings/class-mp-store-settings-import.php:318 +msgid "Import / Export Settings" +msgstr "Import- / Export-Einstellungen" + +#. translators: URL to wp-admin/import.php +#: includes/admin/store-settings/class-mp-store-settings-import.php:266 +msgid "This importer is not installed. Please install importers from the main site." +msgstr "Dieser Importer ist nicht installiert. Bitte installiere ihn von der Haupt-Website aus." + +#: includes/admin/store-settings/class-mp-store-settings-import.php:261 +msgid "Install Now" +msgstr "Jetzt installieren" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:260 +msgid "Install %s" +msgstr "Installiere %s" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:240 +msgid "Run Importer" +msgstr "Starte den Importer" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:239 +msgid "Run %s" +msgstr "Führe %s aus" + +#: includes/admin/class-mp-store-settings-admin.php:258 +msgid "Import/Export" +msgstr "Import / Export" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1199 +msgid "Requires Login" +msgstr "Anmeldung nötig" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:737 +msgid "Optionally limit the user to some categories" +msgstr "Wahlweise kann man den Benutzer auf einige Kategorien beschränken" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:671 +msgid "Should this coupon only be available to logged in users?" +msgstr "Soll dieser Coupon nur für angemeldete Benutzer zur Verfügung stehen?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:670 +msgid "Require Login" +msgstr "Anmeldung nötig" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:655 +msgid "Mimimum number of products" +msgstr "Minimale Produkt-Zahl" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:653 +msgid "Enter the minimum number of products in the cart that this coupon can be used." +msgstr "Gib die minimale Anzahl von Produkten im Einkaufskorb an, so dass dieser Coupon eingesetzt werden kann." + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:648 +msgid "Can this coupon be limited to a number of products in the cart?" +msgstr "Kann dieser Coupon beschränkt werden auf eine bestimmte Anzahl von Produkten im Einkaufskorb?" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:334 +msgid "Add all values" +msgstr "Alle Werte hinzufügen" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:265 +msgid "Set as default variation." +msgstr "Als Standardvariation einstellen." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:154 +msgid "Set Default" +msgstr "Default einstellen" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:150 +msgid "More Info" +msgstr "Mehr Info" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:40 +msgid "MarketPress - Quick Setup" +msgstr "MarketPress - Quick Setup" + +#: includes/public/class-mp-checkout.php:1399 +msgid "Proceed to checkout and create an account at the end." +msgstr "Gehe zum Checkout und lege am Ende ein Benutzerkonto an." + +#: includes/public/class-mp-checkout.php:1241 +#: includes/public/class-mp-checkout.php:1245 +msgid "Register account" +msgstr "Account registrieren" + +#: includes/public/class-mp-checkout.php:1233 +msgid "Register as customer?" +msgstr "Als Kunde registrieren?" + +#: includes/public/class-mp-checkout.php:765 +msgid "

    Oops!

    Looks like you haven't added anything your cart. Let's go shopping!

    " +msgstr "

    Hoppla!

    Anscheinend hast du nichts in den Einkaufskorb gelegt. Lass uns weiter einkaufen gehen!

    " + +#: includes/public/class-mp-checkout.php:763 +msgid "

    Oops!

    The cart is disabled.

    " +msgstr "

    Hoppla!

    Der Einkaufswagen ist nicht aktiv.

    " + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing Information" +msgstr "Abrechnungsdaten" + +#: includes/multisite/class-mp-admin-multisite.php:214 +msgid "Global Currency" +msgstr "Globale Währung" + +#: includes/multisite/class-mp-admin-multisite.php:198 +msgid "Global Store Currency" +msgstr "Globale Store-Währung" + +#: includes/common/shipping-modules/mp-usps.php:507 +msgid "There are no shipping services available for this type of package in your location." +msgstr "Für diese Art der Verpackung ist leider ist keine Versandmöglichkeit an deine Adresse verfügbar." + +#: includes/common/shipping-modules/mp-usps.php:168 +msgid "Using this USPS Shipping calculator requires requesting an Ecommerce API Username and Password. Get your free set of credentials here ». The password is no longer used for the API, just the username which you should enter below. The USPS test site has not yet been updated and currently doesn't work - you should just request activating your credentials with USPS and go live." +msgstr "Dieser USPS-Versandkosten-Rechner benötigt einen Ecommerce-API- Benutzernamen und -Passwort. Du kannst deine kostenlosen Zugangsdaten hier » erhalten. Das Passwort wird für die API nicht länger verwendet, nur noch der Benutzernamen, den du unten eingeben kannst. Die USPS-Testseite wurde noch nicht auf den neusten Stand gebracht und funktioniert derzeit nicht - du solltest einfach die Aktivierung deiner Zugangsdaten bei USPS beantragen und gleich damit online gehen. " + +#: includes/common/payment-gateways/stripe.php:339 +msgid "ZIP Code" +msgstr "Postleitzahl" + +#: includes/common/payment-gateways/stripe.php:334 +msgid "Last name" +msgstr "Nachname" + +#: includes/common/payment-gateways/stripe.php:333 +msgid "First name" +msgstr "Vorname" + +#: includes/common/payment-gateways/manual-payments.php:150 +msgid "These are the manual payment instructions to display on the order confirmation screen. TOTAL will be replaced with the order total and ORDERID will be replaced with Order ID." +msgstr "Dies ist die Anleitung für manuelles Bezahlen. Sie werden bei der Bestätigung des Einkaufs mit angezeigt. TOTAL wird durch die Gesamtsumme der Bestellung ersetzt und ORDERID liefert die Bestell-Nummer." + +#: includes/common/payment-gateways/authorizenet-aim.php:240 +msgid "You must login to Authorize.net merchant dashboard to obtain the API login ID and API transaction key. Instructions »" +msgstr "Du musst dich beim Authorize.net Merchant Dashboard anmelden, um deine API Login ID und einen API Transaction Key zu erhalten. Anleitung dazu »" + +#: includes/common/payment-gateways/2checkout.php:327 +msgid "
    1. Set the \"Return Method\" within Site Management to Header Redirect and set the \"Return URL\" to %s
    2. Set your notifications url to %s
    " +msgstr "
    1. Setze die \"Return Method\" innerhalb des Site Managements auf Header Redirect und setze die \"Return URL\" auf %s
    2. Setze deine notifications url auf %s
    " + +#: includes/common/data.php:191 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Also, digital downloads included in your order are now ready to be downloaded. Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" +"Sehr geehrte CUSTOMERNAME,\n" +"Ihre Bestellung wurde versandt! Auch digitale Downloads, die in Ihrer Bestellung enthalten sind, können nun heruntergeladen werden. Abhängig von der Versandart und Ihrem Standort sollte es in Kürze ankommen. Bitte wenden Sie sich an Ihre Bestell-ID (ORDERID), wenn Sie mit uns Kontakt aufnehmen.\n" +"\n" +"Hier ist eine Bestätigung Ihrer Bestellangaben:\n" +"\n" +"  Bestellinformationen:\n" +"  ORDERINFO\n" +"\n" +"  Versandinformationen:\n" +"  VERSANDINFORMATION\n" +"\n" +"  Zahlungsinformationen:\n" +"  ZAHLUNGSINFORMATIONEN\n" +"\n" +"  ORDERNOTEN\n" +"\n" +"Hier können Sie den aktuellen Status Ihrer Bestellung verfolgen: TRACKINGURL\n" +"\n" +"Danke noch einmal!" + +#: includes/common/data.php:185 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order is now available to download! Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" +"Sehr geehrte CUSTOMERNAME,\n" +"Ihre Bestellung steht ab sofort zum Download bereit! Bitte wenden Sie sich an Ihre Bestell-ID (ORDERID), wenn Sie mit uns Kontakt aufnehmen.\n" +"\n" +"Hier ist eine Bestätigung Ihrer Bestellangaben:\n" +"\n" +"  Bestellinformationen:\n" +"  ORDERINFO\n" +"\n" +"  Zahlungsinformationen:\n" +"  ZAHLUNGSINFORMATIONEN\n" +"\n" +"  ORDERNOTEN\n" +"\n" +"Hier können Sie den aktuellen Status Ihrer Bestellung verfolgen: TRACKINGURL\n" +"\n" +"Danke noch einmal!" + +#: includes/common/data.php:184 +msgid "Your Order Is Ready To Be Downloaded! (ORDERID)" +msgstr "Ihre Bestellung ist bereit, heruntergeladen werden! (AUFTRAGSNUMMER)" + +#: includes/common/data.php:179 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" +"Sehr geehrte CUSTOMERNAME,\n" +"Ihre Bestellung wurde versandt! Abhängig von der Versandart und Ihrem Standort sollte es in Kürze ankommen. Bitte wenden Sie sich an Ihre Bestell-ID (ORDERID), wenn Sie mit uns Kontakt aufnehmen.\n" +"\n" +"Hier ist eine Bestätigung Ihrer Bestellangaben:\n" +"\n" +"  Bestellinformationen:\n" +"  ORDERINFO\n" +"\n" +"  Versandinformationen:\n" +"  VERSANDINFORMATION\n" +"\n" +"  Zahlungsinformationen:\n" +"  ZAHLUNGSINFORMATIONEN\n" +"\n" +"  ORDERNOTEN\n" +"\n" +"Hier können Sie den aktuellen Status Ihrer Bestellung verfolgen: TRACKINGURL\n" +"\n" +"Danke noch einmal!" + +#: includes/common/data.php:173 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received, your digital goods are ready to be downloaded and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" +"Vielen Dank für Ihre Bestellung CUSTOMERNAME!\n" +"\n" +"Ihre Bestellung wurde empfangen, Ihre digitalen Waren sind bereit, heruntergeladen zu werden und alle zu versendenden Artikel werden so schnell wie möglich bearbeitet. Bitte wenden Sie sich an Ihre Bestell-ID (ORDERID), wenn Sie mit uns Kontakt aufnehmen.\n" +"\n" +"Hier ist eine Bestätigung Ihrer Bestellangaben:\n" +"\n" +"  Bestellinformationen:\n" +"  ORDERINFO\n" +"\n" +"  Versandinformationen:\n" +"  VERSANDINFORMATION\n" +"\n" +"  Zahlungsinformationen:\n" +"  ZAHLUNGSINFORMATIONEN\n" +"\n" +"  ORDERNOTEN\n" +"\n" +"Hier können Sie den aktuellen Status Ihrer Bestellung verfolgen: TRACKINGURL\n" +"\n" +"Danke noch einmal!" + +#: includes/common/data.php:167 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received and your digital goods are ready to be downloaded. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" +"Vielen Dank für Ihre Bestellung CUSTOMERNAME!\n" +"\n" +"Ihre Bestellung wurde empfangen und Ihre digitalen Waren sind zum Herunterladen bereit. Bitte wenden Sie sich an Ihre Bestell-ID (ORDERID), wenn Sie mit uns Kontakt aufnehmen.\n" +"\n" +"Hier ist eine Bestätigung Ihrer Bestellangaben:\n" +"\n" +"  Bestellinformationen:\n" +"  ORDERINFO\n" +"\n" +"  Zahlungsinformationen:\n" +"  ZAHLUNGSINFORMATIONEN\n" +"\n" +"  ORDERNOTEN\n" +"\n" +"Hier können Sie den aktuellen Status Ihrer Bestellung verfolgen: TRACKINGURL\n" +"\n" +"Danke noch einmal!" + +#: includes/common/data.php:160 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +" Your order has been received, and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information: \n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" +"Danke für Deine Bestellung, CUSTOMERNAME!\n" +"\n" +"Deine Bestellung ist bei uns eingegangen, und alle Artikel, die versand werden sollen, werden schnellmöglichst bearbeitet. Bei Nachfragen, gib bitte immer Deine Bestellnummer (ORDERID) an.\n" +"\n" +"Hier ist eine Bestätigung Deiner Bestellung:\n" +"\n" +" Bestellte Artikel:\n" +" ORDERINFO\n" +"\n" +" Versandinformationen: \n" +" SHIPPINGINFO\n" +"\n" +" Zahlungsinformationen:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"\n" +"Du kannst den aktuellen Zustand Deiner Bestellung hier nachschlagen: TRACKINGURL\n" +"\n" +"Vielen Dank für Deine Bestellung!" + +#: includes/common/class-mp-product.php:638 +msgid "You can not add more items to cart." +msgstr "Sie können nicht mehr Artikel in den Warenkorb legen" + +#: includes/common/class-mp-product.php:635 +msgid "You can only add {0} to cart." +msgstr "Sie können nur {0} zum Warenkorb hinzufügen." + +#: includes/common/class-mp-product.php:625 +msgid "This product has an order limit of %d." +msgstr "Dieses Produkt hat eine Bestellgrenze von %d." + +#: includes/common/class-mp-order.php:1454 +msgid "Shipped: tracking code: %s" +msgstr "Sendungsverfolgung: %s" + +#: includes/common/class-mp-order.php:1000 +#: includes/common/class-mp-order.php:1012 +msgid "Finished" +msgstr "Fertig" + +#: includes/common/class-mp-order.php:858 +msgid "Contact Details" +msgstr "Kontakt-Details" + +#: includes/common/class-mp-order.php:339 includes/common/data.php:155 +msgid "" +"A new order (ORDERID) was created in your store:\n" +"\n" +" ORDERINFOSKU\n" +"\n" +" SHIPPINGINFO\n" +"\n" +" PAYMENTINFO\n" +"\n" +msgstr "" +"Eine neue Bestellung (ORDERID) wurde in Deinen Shop erstellt:\n" +"\n" +" ORDERINFOSKU\n" +"\n" +" SHIPPINGINFO\n" +"\n" +" PAYMENTINFO\n" + +#: includes/common/class-mp-cart.php:1858 +msgid "Add again" +msgstr "Nochmal hinzufügen" + +#: includes/common/class-mp-cart.php:1852 +msgid "was removed from Shopping Cart" +msgstr "Wurde aus dem Warenkorb entfernt" + +#: includes/common/class-mp-cart.php:1242 +#: includes/public/class-mp-short-codes.php:160 +msgid "Cart update notice: this item has a limit per order or you have reached the stock limit." +msgstr "Einkaufskorb aktualisieren Hinweis: dieses Element hat eine Grenze pro Bestellung oder Sie haben die Bestandsgrenze erreicht." + +#: includes/admin/widgets/product-list.php:235 +msgid "Show Only Featured Products" +msgstr "Nur hervorgehobene Produkte anzeigen" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:533 +msgid "If enabled, users won't be able to filter products per category and/or to order by release date/name/price." +msgstr "Wenn diese Option aktiviert ist, können die Benutzer keine Produkte nach Kategorie filtern und/oder nach Release-Datum/Name/Preis bestellen." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:531 +msgid "Hide Products Filter?" +msgstr "Filter ausblenden?" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:353 +msgid "Notification to registration email instead of billing email?" +msgstr "Benachrichtigung zur Registrierungs-E-Mail anstelle der E-Mail-Abrechnung?" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:322 +msgid "Order Shipped - Mixed orders (with both digital and physical products)" +msgstr "Bestellung versendet - Mischbestellungen (mit digitalen und physikalischen Produkten)" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:289 +msgid "Order Shipped - Digital downloads only orders" +msgstr "Bestellung versendet - Digitale Downloads nur Bestellungen" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:224 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "Diese Codes werden durch Bestelldetails ersetzt: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. Kein HTML erlaubt." + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:194 +msgid "New Order - Mixed" +msgstr "Neue Bestellung - gemischt" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:161 +msgid "New Order - Digital downloads only orders" +msgstr "Neue Bestellung - Digitale Downloads nur Bestellungen" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:115 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:243 +msgid "Mixed orders" +msgstr "Gemischte Bestellungen" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:110 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:238 +msgid "Digital downloads orders" +msgstr "Digitale Downloads Bestellungen" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:105 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:233 +msgid "Physical orders" +msgstr "Physische Bestellungen" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:96 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed.
    For orders placed with manual payment, emails set here will be overriden by the one configured in manual payments settings, under payments settings page" +msgstr "Diese Codes werden durch Bestelldetails ersetzt: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. Es ist kein HTML erlaubt.
    Bei Bestellungen mit manueller Zahlung werden die hier eingestellten E-Mails von den in den Einstellungen für die manuellen Zahlungen konfigurierten Einstellungen auf der Seite \"Zahlungseinstellungen\" überschrieben" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:89 +msgid "Customer Notification Settings" +msgstr "Einstellungen für Kundenbenachrichtigungen" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:47 +msgid "Admin Notification Settings" +msgstr "Admin-Benachrichtigungseinstellungen" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:566 +msgid "Only contact details" +msgstr "Nur Kontaktdaten" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:565 +msgid "Full billing info" +msgstr "Volle Abrechnung info" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:561 +msgid "Details Collection" +msgstr "Details Auflistung" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:548 +msgid "Digital Settings" +msgstr "Digitale Einstellungen" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:515 +msgid "Apply Tax to Digital Products?" +msgstr "Steuer auf digitale Produkte anwenden?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:236 +msgid "product (default)" +msgstr "Produkt (Standard)" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:231 +msgid "If you are experiencing conflicts with other e-commerce plugins change this setting. This will change the internal post type of all your products. Please note that changing this option may break 3rd party themes or plugins." +msgstr "Wenn Sie Konflikte mit anderen E-Commerce-Plugins erleben, ändern Sie diese Einstellung. Dadurch ändert sich der interne Posttyp aller Ihrer Produkte. Bitte beachten Sie, dass das Ändern dieser Option Themen oder Plugins von Drittanbietern brechen kann." + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1203 +msgid "Hide details" +msgstr "Details ausblenden" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1202 +msgid "Show all changes" +msgstr "Zeige alle Änderungen" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1184 +msgid "Version %s" +msgstr "Version %s" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1161 +msgid "Current" +msgstr "Aktuell" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1131 +msgid "%s changelog" +msgstr "%s Änderungsprotokoll" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:952 +msgid "We did not find any data for this plugin or theme..." +msgstr "Wir haben keine Daten für dieses Plugin oder Thema gefunden ..." + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:285 +msgid "Activate WPMU DEV Dashboard" +msgstr "Aktivieren Sie WPMU DEV Dashboard" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:279 +msgid "Just one more step - activate the WPMU DEV Dashboard plugin and you're all done!" +msgstr "Noch ein Schritt - das WPMU DEV Dashboard Plugin aktivieren und fertig!" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:277 +msgid "Important updates are available for your WPMU DEV plugins/themes. Activate the WPMU DEV Dashboard to update now!" +msgstr "Wichtige Updates stehen Ihnen für Ihre WPMU DEV Plugins/Themen zur Verfügung. Aktivieren Sie das WPMU DEV Dashboard, um es jetzt zu aktualisieren!" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:273 +msgid "Just one more step to enable updates and support for %s!" +msgstr "Nur ein weiterer Schritt, um Updates und Support für %s zu aktivieren!" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:271 +msgid "Important updates are available for %s. Activate the WPMU DEV Dashboard to update now!" +msgstr "Wichtige Updates stehen für %s zur Verfügung. Aktivieren Sie das WPMU DEV Dashboard, um es jetzt zu aktualisieren!" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:264 +msgid "activate" +msgstr "aktivieren" + +#: includes/admin/class-mp-admin.php:398 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:248 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:289 +msgid "Dismiss" +msgstr "Entlassen" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:247 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:288 +msgid "Saving..." +msgstr "Speichern ..." + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:244 +msgid "Install Plugin" +msgstr "PIugin installieren" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:238 +msgid "Almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "Fast fertig - installiere das kostenlose WPMU DEV Dashboard Plugin für Aktualisierungen und Unterstützung!" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:236 +msgid "Important updates are available for your WPMU DEV plugins/themes. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "Wichtige Aktualisierungen für deine WPMU DEV Plugins und Themen stehen bereit. Installiere das kostenlose WPMU DEV Dashboard Plugin für Aktualisierungen und Unterstützung!" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:232 +msgid "%s is almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "%s ist fast fertig - installiere das kostenlose WPMU DEV Dashboard Plugin für Aktualisierungen und Unterstützung!" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:230 +msgid "Important updates are available for %s. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "Wichtige Aktualisierungen für %s sind verfügbar. Installiere jetzt das freie Plugin WPMU DEV Dashboard für Aktualisierungen und Unterstützung!" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:223 +msgid "install" +msgstr "installieren" + +#: includes/admin/class-mp-shortcode-builder.php:1428 +msgid "Sets the number of Tags to display. This causes the SQL LIMIT value to be defined." +msgstr "Legt die Anzahl der anzuzeigenden Tags fest. Dadurch wird der SQL-GRENZWERT definiert." + +#: includes/admin/class-mp-shortcode-builder.php:1289 +msgid "How many products to display in the product list if \"paginate\" is set to false." +msgstr "Wie viele Produkte in der Produktliste angezeigt werden sollen, wenn \"paginate\" auf false gesetzt ist." + +#: includes/admin/class-mp-shortcode-builder.php:739 +#: includes/admin/class-mp-shortcode-builder.php:906 +#: includes/admin/class-mp-shortcode-builder.php:1350 +msgid "Grid" +msgstr "Gitter" + +#: includes/admin/class-mp-shortcode-builder.php:735 +#: includes/admin/class-mp-shortcode-builder.php:902 +#: includes/admin/class-mp-shortcode-builder.php:1346 +msgid "Products will be displayed as list or grid." +msgstr "Die Produkte werden als Liste oder Raster angezeigt." + +#: includes/admin/class-mp-shortcode-builder.php:206 +msgid "Display a cloud or list of your global product tags." +msgstr "Zeigen Sie eine Wolke oder eine Liste Ihrer globalen Produkt-Tags an." + +#: includes/admin/class-mp-shortcode-builder.php:205 +msgid "Display a list of your global categories." +msgstr "Zeigt eine Liste Ihrer globalen Kategorien an." + +#: includes/admin/class-mp-shortcode-builder.php:204 +msgid "Display a list or grid of your global products." +msgstr "Zeigen Sie eine Liste oder ein Gitter Ihrer globalen Produkte an." + +#: includes/admin/class-mp-shortcode-builder.php:181 +msgid "Display a list of featured products." +msgstr "Zeigen Sie eine Liste der vorgestellten Produkte an." + +#: includes/admin/class-mp-products-admin.php:1451 +msgid "Is Featured?" +msgstr "Ist Featured?" + +#: includes/admin/class-mp-products-admin.php:1444 +msgid "Featured Product" +msgstr "Vorgestelltes Produkt" + +#: includes/admin/class-mp-products-admin.php:581 +#: includes/admin/class-mp-products-admin.php:1580 +msgid "% discount" +msgstr "% Rabatt" + +#: includes/admin/class-mp-products-admin.php:579 +msgid "OR" +msgstr "ODER" + +#: includes/admin/class-mp-products-admin.php:460 +#: includes/admin/class-mp-products-admin.php:586 +#: includes/admin/widgets/product-list.php:217 +msgid "Featured" +msgstr "Ausgezeichnet" + +#: includes/admin/class-mp-orders-admin.php:536 +#: includes/admin/class-mp-orders-admin.php:538 +msgid "Tracking Link" +msgstr "Tracking-Link" + +#: includes/admin/class-mp-orders-admin.php:508 +msgid "Shipping Tax" +msgstr "Versandkosten" + +#: includes/admin/class-mp-orders-admin.php:356 +msgid "Shipping Total" +msgstr "Versand Gesamt" + +#: includes/admin/class-mp-orders-admin.php:352 +msgid "Taxes Total" +msgstr "Steuern Total" + +#: includes/admin/class-mp-orders-admin.php:349 +msgid "Products Total" +msgstr "Produkte gesamt" + +#: includes/admin/class-mp-ajax.php:366 +msgid "Oops! You entered an invalid username/email and or password." +msgstr "Hoppla! Sie haben einen ungültigen Benutzernamen / E-Mail-Adresse und / oder Passwort eingegeben." + +#: includes/admin/class-mp-ajax.php:254 +msgid "Percentage Discount" +msgstr "Prozentsatz Rabatt" + +#: includes/admin/class-mp-ajax.php:234 +msgid "Limit the Amount of Items per Order" +msgstr "Begrenzen Sie die Anzahl der Artikel pro Bestellung" + +#: includes/admin/class-mp-ajax.php:214 +msgid "Unused Attributes" +msgstr "Unbenutzte Attribute" + +#: includes/admin/class-mp-admin.php:82 +msgid "Run setup wizard" +msgstr "Setup-Assistent starten" + +#: includes/admin/class-mp-admin.php:79 +msgid "MarketPress setup is not complete! Once you've completed this quick setup wizard you'll have a fully working online store - exciting! " +msgstr "MarketPress-Setup ist nicht abgeschlossen! Sobald Sie diese schnelle Setup-Assistent abgeschlossen haben Sie eine voll funktionsfähige Online-Shop - spannend!" + +#: marketpress.php:263 +msgctxt "mp_order" +msgid "Add New" +msgstr "Neue hinzufügen" + +#: marketpress.php:184 +msgctxt "product_tag" +msgid "Product Tag" +msgstr "Produktbezeichnung" + +#: marketpress.php:183 +msgctxt "product_tag" +msgid "Product Tags" +msgstr "Produktbezeichnungen" + +#: marketpress.php:150 +msgctxt "product_category" +msgid "Product Category" +msgstr "Produktkategorie" + +#: marketpress.php:149 +msgctxt "product_category" +msgid "Product Categories" +msgstr "Produktkategorien " + +#. Author URI of the plugin/theme +msgid "http://premium.wpmudev.org" +msgstr "http://premium.wpmudev.org" + +#: marketpress.php:729 +msgid "Invoice PDF" +msgstr "Rechnung PDF" + +#: marketpress.php:712 +msgid "Grant access to themes and gateways depending on the user's Pro Site level" +msgstr "Gewähren Sie den Zugriff auf Themen und Gateways abhängig von der Pro-Site-Ebene des Benutzers" + +#: marketpress.php:711 +msgid "Pro Sites" +msgstr "Pro Sites" + +#: marketpress.php:703 +msgid "Offer and accept coupon codes" +msgstr "Gutscheincodes anbieten und akzeptieren" + +#. translators: %s: plugin title +#: marketpress.php:687 +msgid "Install %s Pages" +msgstr "Installiere %s Seiten" + +#. translators: %s: plugin title +#: marketpress.php:682 +msgid "Welcome to %s – Install pages required by the plugin automatically." +msgstr "Willkommen bei %s – Installieren Sie die Seiten, die das Plugin automatisch benötigt." + +#: marketpress.php:668 +msgid "Your pages were created successfully." +msgstr "Ihre Seiten wurden erfolgreich erstellt." + +#: marketpress.php:436 +msgid "Add a Product" +msgstr "Hinzufügen eines Produkts" + +#: marketpress.php:271 +msgid "Parent Order" +msgstr "Übergeordnete Reihenfolge" + +#: marketpress.php:270 +msgid "No orders found in trash" +msgstr "Keine Bestellungen im Papierkorb gefunden" + +#: marketpress.php:269 +msgid "No orders found" +msgstr "Keine Bestellungen gefunden" + +#: marketpress.php:265 +msgid "Edit Order" +msgstr "Bestellung bearbeiten" + +#: marketpress.php:264 +msgid "Add New Order" +msgstr "Neue Bestellung hinzufügen" + +#: marketpress.php:220 marketpress.php:221 +msgid "Add New Product" +msgstr "Neues Produkt hinzufügen" + +#: marketpress.php:197 +msgid "No product tags found" +msgstr "Keine Produkt-Tags gefunden" + +#: marketpress.php:196 +msgid "Choose from the most used product tags" +msgstr "Wählen Sie aus den am häufigsten verwendeten Produkt-Tags" + +#: marketpress.php:195 +msgid "Add or remove product tags" +msgstr "Produkttags hinzufügen oder entfernen" + +#: marketpress.php:194 +msgid "Separate product tags with commas" +msgstr "Produkt-Tags mit Kommas trennen" + +#: marketpress.php:193 +msgid "Search Product Tags" +msgstr "Suche nach Produkt-Tags" + +#: marketpress.php:192 +msgid "Parent Product Tag:" +msgstr "Übergeordneter Produkt-Tag:" + +#: marketpress.php:191 +msgid "Parent Product Tag" +msgstr "Übergeordneter Produkt-Tag" + +#: marketpress.php:190 +msgid "New Product Tag Name" +msgstr "Name des neuen Produkts" + +#: marketpress.php:189 +msgid "Add New Product Tag" +msgstr "Neues Produkt-Tag hinzufügen" + +#: marketpress.php:188 +msgid "Update Product Tag" +msgstr "Produkt-Tag aktualisieren" + +#: marketpress.php:187 +msgid "View Product Tag" +msgstr "Produkt-Tag anzeigen" + +#: marketpress.php:186 +msgid "Edit Product Tag" +msgstr "Produkt-Tag bearbeiten" + +#: marketpress.php:185 +msgid "All Product Tags" +msgstr "Alle Artikel-Tags" + +#: marketpress.php:163 +msgid "No product categories found" +msgstr "Keine Produktkategorien gefunden" + +#: marketpress.php:162 +msgid "Choose from the most used product categories" +msgstr "Wählen Sie aus den am häufigsten verwendeten Produktkategorien" + +#: marketpress.php:161 +msgid "Add or remove product categories" +msgstr "Hinzufügen oder Entfernen von Produktkategorien" + +#: marketpress.php:160 +msgid "Separate product categories with commas" +msgstr "Trennen Sie die Produktkategorien durch Kommas" + +#: marketpress.php:159 +msgid "Search Product Categories" +msgstr "Produktsuche" + +#: marketpress.php:158 +msgid "Parent Product Category:" +msgstr "Übergeordnete Produktkategorie:" + +#: marketpress.php:157 +msgid "Parent Product Category" +msgstr "Übergeordnete Produktkategorie" + +#: marketpress.php:156 +msgid "New Product Category Name" +msgstr "Name der neuen Produktkategorie" + +#: marketpress.php:155 +msgid "Add New Product Category" +msgstr "Neue Produktkategorie hinzufügen" + +#: marketpress.php:154 +msgid "Update Product Category" +msgstr "Produktkategorie aktualisieren" + +#: marketpress.php:153 +msgid "View Product Category" +msgstr "Ansicht Produktkategorie" + +#: marketpress.php:152 +msgid "Edit Product Category" +msgstr "Produktkategorie bearbeiten" + +#: marketpress.php:151 +msgid "All Product Categories" +msgstr "Alle Produktkategorien anzeigen" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Please fix the %s1 and then try submitting the form again." +msgstr "Bitte beheben Sie das %s1 und versuchen Sie erneut, das Formular zu senden." + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Oops! The form contains %s1 which %s2 been highlighted below." +msgstr "Hoppla! Das Formular enthält %s1, wobei %s2 unten hervorgehoben wurde." + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:660 +msgid "have" +msgstr "haben" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:659 +msgid "has" +msgstr "hat" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:651 +msgid "Value must be less than {0}" +msgstr "Wert muss kleiner als {0} sein" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:650 +msgid "Please enter only letters and numbers" +msgstr "Bitte geben Sie nur Buchstaben und Nummern ein" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:539 +msgid "Due to prolonged inactivity on this page, one or more settings were not saved. Please try again." +msgstr "Aufgrund längerer Inaktivität auf dieser Seite wurden eine oder mehrere Einstellungen nicht gespeichert. Bitte versuche es erneut." + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:535 +msgid "Settings Saved" +msgstr "Einstellungen gespeichert" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-user-select.php:22 +msgid "Select Some Users" +msgstr "Wählen Sie einige Benutzer aus" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-section.php:18 +msgid "Section Title" +msgstr "Abschnittsüberschrift" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:425 +msgid "Are you sure you want to delete this?" +msgstr "Möchten Sie das wirklich löschen?" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:30 +msgid "Add Row" +msgstr "Zeile hinzufügen" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-post-select.php:24 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-taxonomy-select.php:22 +msgid "Select Posts" +msgstr "Wählen Sie Beiträge" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:210 +msgid "Add Images" +msgstr "Bilder hinzufügen" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:129 +msgid "Select the image that you would like to use for this product." +msgstr "Wählen Sie das Bild aus, das Sie für dieses Produkt verwenden möchten." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:93 +msgid "Select image(s) that you would like to use for this product." +msgstr "Wählen Sie Bilder, die Sie für dieses Produkt verwenden möchten." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:79 +msgid "Select the image that you would like to use for this variation." +msgstr "Wählen Sie das Bild aus, das Sie für diese Variation verwenden möchten." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:48 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:82 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:68 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:132 +msgid "Select Image" +msgstr "Bild auswählen" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:31 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:160 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:168 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:19 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:115 +msgid "Select File" +msgstr "Datei aussuchen" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:30 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:18 +msgid "Select the file that you would like to use." +msgstr "Wählen Sie die Datei aus, die Sie verwenden möchten." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:357 +msgid "Create Variations" +msgstr "Erstellen Sie Variationen" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:356 +msgid "Add Another Variant" +msgstr "Weitere Variante hinzufügen" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Insert a value and press ENTER" +msgstr "Geben Sie einen Wert ein und drücken Sie ENTER" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "(e.g. White, Grey, Red etc.)" +msgstr "(Z. B. Weiß, Grau, Rot usw.)" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Variation Values" +msgstr "Variationswerte" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:333 +msgid "Or create new variation" +msgstr "Oder erstellen Sie neue Variante" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "(e.g. Color)" +msgstr "(Z.B. Farbe)" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:303 +msgid "You are about to delete selected variants.
    If you want to continue please confirm." +msgstr "Sie sind dabei, ausgewählte Varianten zu löschen.
    Wenn Sie fortfahren möchten, bestätigen Sie bitte." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:302 +msgid "Confirmation" +msgstr "Bestätigung" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:290 +msgid "Insert quantity available. Empty for unlimited." +msgstr "Menge vorhanden. Leer für unbegrenzt." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:281 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:294 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:307 +msgid "Cancel" +msgstr "Stornieren" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:280 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:293 +msgid "Update" +msgstr "Aktualisieren" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:277 +msgid "Insert the price i.e. 25 or 25.50" +msgstr "Geben Sie den Preis ein, d. H. 25 oder 25,50" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:115 +msgid "Img." +msgstr "Img." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:85 +msgid "Add New Variation" +msgstr "Neue Variante hinzufügen" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:79 +msgid "Delete Variants" +msgstr "Varianten löschen" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:78 +msgid "Update Prices" +msgstr "Preise aktualisieren" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:77 +msgid "Update Inventory" +msgstr "Inventar aktualisieren" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:76 +msgid "Update Images" +msgstr "Bilder aktualisieren" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:75 +msgid "Bulk Actions" +msgstr "Massen-Aktionen" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:73 +msgid "Select bulk action" +msgstr "Wählen Sie Massenaktion aus" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:196 +msgid "Configure Store" +msgstr "Konfigurieren des Shops" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:195 +msgid "Configure shipping rates, emails and your store's appearance. " +msgstr "Konfigurieren Versandraten, E-Mails und das Aussehen Ihres Shops" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:190 +msgid "Add Product" +msgstr "Produkt hinzufügen" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:189 +msgid "Add your first product for sale and get familiar with adding products." +msgstr "Fügen Sie Ihr erstes Produkt zum Verkauf hinzu und machen Sie sich mit dem Hinzufügen von Produkten vertraut." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:184 +msgid "Your store is almost ready for its first customers, but first it needs some products. Get started by adding products below, or jump straight into further configuring your store’s settings." +msgstr "Ihr Geschäft ist fast fertig für seine ersten Kunden, aber zuerst braucht es einige Produkte. Fangen Sie mit dem Hinzufügen von Produkten unten an, oder springen Sie direkt in die weitere Konfiguration der Einstellungen Ihres Shops." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:183 +msgid "Woohoo! Your online store is up and running." +msgstr "Woohoo! Ihr Online-Shop läuft." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:160 +msgid "Finish Setup" +msgstr "Setup beenden" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:124 +msgid "And what metric system do you want to use?" +msgstr "Und welches metrische System wollen Sie verwenden?" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:113 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:142 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:159 +msgid "Back" +msgstr "Zurück" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:109 +msgid "Do you want to apply tax for your products? You can customize this for each product and variation." +msgstr "Wollen Sie Steuern für Ihre Produkte anwenden? Sie können dieses für jedes Produkt und Variation besonders anfertigen." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:105 +msgid "What currency do you want to sell with?" +msgstr "In welcher Währung möchten Sie verkaufen?" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:93 +msgid "And, which countries do you want to sell to?" +msgstr "Und in welche Länder wollen Sie verkaufen?" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:89 +msgid "Where is your online store based?" +msgstr "Wo ist Ihr Online-Shop basiert?" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:80 +msgid "Payment Gateway" +msgstr "Zahlungs-Gateway" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:79 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:123 +msgid "Metric System" +msgstr "Metrisches System" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:78 +msgid "Currency & Tax" +msgstr "Währung & Steuern" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:77 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:88 +msgid "Locations" +msgstr "Niederlassungen" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:70 +msgid "Choose where you want to sell your stuff and what currency. Easy!" +msgstr "Wählen Sie, wo Sie Ihre Produkte und in welcher Währung Sie verkaufen möchten. Einfach!" + +#: includes/public/class-mp-checkout.php:1400 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:58 +msgid "Continue" +msgstr "Fortsetzen" + +#: includes/admin/class-mp-admin.php:83 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:53 +msgid "Skip this step, I'll do this manually" +msgstr "Überspringen Sie diesen Schritt, ich werde das manuell tun" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:49 +msgid "Install store pages" +msgstr "Shopseiten installieren" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:44 +msgid "Once you've completed this quick setup wizard you'll have a fully working online store - exciting! Start
    by creating the default store pages for the online store such as the cart, checkout and store pages." +msgstr "Sobald Sie diese schnelle Setup-Assistent abgeschlossen haben Sie einen voll funktionsfähigen Online-Shop - spannend! Starten Sie, indem Sie die Standardshop-Seiten für den Onlineshop wie den Warenkorb, die Kasse und die Shopseiten erstellen." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:42 +msgid "MarketPress adds a full online store to your website, with heaps of configuration options and addons
    to suit your needs. It's really easy to get going, and only takes a few minutes to setup!" +msgstr "MarketPress fügt einen vollständigen Online-Shop Ihrer Webseite hinzu, mit unzähligen Möglichkeiten der Konfigurationswahlen und Addons
    um Ihren Bedürfnissen zu entsprechen. Es ist wirklich leicht zu bekommen, und dauert nur ein paar Minuten zum Setup!" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:41 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:69 +msgid "Welcome to MarketPress - Quick Setup" +msgstr "Willkommen bei MarketPress - Quick Setup" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-advanced-select.php:23 +msgid "Select Some Options" +msgstr "Wählen Sie einige Optionen" + +#: includes/wpmudev-metaboxes/class-wpmudev-field.php:694 +msgid "You must the WPMUDEV_Field::display() method in your form field class" +msgstr "Sie müssen die WPMUDEV_Field::display() Methode in Ihrer Formularfeldklasse haben" + +#: includes/public/class-mp-short-codes.php:636 +msgid "Only %s left in stock..." +msgstr "Nur noch %s auf Lager..." + +#: includes/public/class-mp-short-codes.php:633 +msgid "Unlimited stock" +msgstr "Unbegrenzter Vorrat" + +#: includes/public/class-mp-short-codes.php:430 +msgid "product_id must be defined" +msgstr "Produkt_id muss definiert sein" + +#: includes/public/class-mp-checkout.php:1250 +msgid "An account with this username already exists" +msgstr "Ein Konto mit diesem Benutzernamen ist bereits vorhanden" + +#: includes/public/class-mp-checkout.php:1394 +msgid "Continue as Guest" +msgstr "Als Gast fortfahren" + +#: includes/public/class-mp-checkout.php:1393 +msgid "Proceed to checkout and you'll have an opportunity to create an account at the end." +msgstr "Gehen Sie zur Kasse und Sie haben die Möglichkeit, ein Konto am Ende erstellen." + +#: includes/public/class-mp-checkout.php:1392 +#: includes/public/class-mp-checkout.php:1398 +msgid "First-time customer?" +msgstr "Erstmaliger Kunde?" + +#: includes/public/class-mp-checkout.php:1386 +msgid "Login" +msgstr "Login" + +#: includes/public/class-mp-checkout.php:1379 +msgid "E-Mail Address/Username" +msgstr "E-Mail-Adresse/Benutzername" + +#: includes/public/class-mp-checkout.php:1377 +msgid "Sign in to speed up the checkout process." +msgstr "Melden Sie sich an, um den Kassenprozess zu beschleunigen." + +#: includes/public/class-mp-checkout.php:1376 +msgid "Have an account?" +msgstr "Hast Du einen Account?" + +#: includes/public/class-mp-checkout.php:1297 +msgid "Shipping address different than billing?" +msgstr "Versandadresse anders als Abrechnung?" + +#: includes/public/class-mp-checkout.php:1184 +msgid "There are no available gateways to process this payment." +msgstr "Es gibt keine verfügbaren Gateways, um diese Zahlung zu bearbeiten." + +#: includes/public/class-mp-checkout.php:1160 +msgid "Payment" +msgstr "Zahlung" + +#: includes/public/class-mp-checkout.php:1123 +msgid "Oops! An error occurred while processing your payment." +msgstr "Hoppla! Bei der Bearbeitung Ihrer Zahlung ist ein Fehler aufgetreten." + +#: includes/public/class-mp-checkout.php:1051 +msgid "Next Step »" +msgstr "Nächster Schritt »" + +#: includes/public/class-mp-checkout.php:1045 +msgid "« Previous Step" +msgstr "« Vorheriger Schritt" + +#: includes/public/class-mp-checkout.php:873 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:657 +msgid "error" +msgstr "Fehler" + +#: includes/public/class-mp-checkout.php:872 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:658 +msgid "errors" +msgstr "Fehler" + +#: includes/public/class-mp-checkout.php:871 +msgid "

    Oops! We found %d %s in the form below.

    Fields that have errors are highlighted in red below. Entering into a field will reveal the actual error that occurred.

    " +msgstr "

    Oops! Wir fanden %d %s in das untere Formular ein.

    Die Felder , die Fehler aufweisen , werden in rot markiert unten. Die Eingabe in ein Feld wird den tatsächlichen Fehler aufzudecken, die aufgetreten sind. " + +#: includes/public/class-mp-checkout.php:870 +msgid "Please enter a valid first and last name" +msgstr "Bitte geben Sie einen gültigen Vor- und Nachnamen ein" + +#: includes/public/class-mp-checkout.php:869 +msgid " Please enter a valid card security code" +msgstr "Bitte geben Sie einen gültigen Kartencode ein" + +#: includes/public/class-mp-checkout.php:868 +msgid "Please enter a valid card expiration" +msgstr "Bitte geben Sie einen gültigen Kartenablauf ein" + +#: includes/public/class-mp-checkout.php:773 +msgid "Javascript is required in order to checkout. Please enable Javascript in your browser and then refresh this page." +msgstr "Javascript wird benötigt, um zu überprüfen. Bitte aktivieren Sie Javascript in Ihrem Browser und aktualisieren Sie diese Seite." + +#: includes/public/class-mp-checkout.php:588 +msgid "An unknown error occurred. Please try again." +msgstr "Ein unbekannter Fehler ist aufgetreten. Bitte versuche es erneut." + +#: includes/public/class-mp-checkout.php:386 +msgid "Town/City" +msgstr "Stadt/Ortschaft" + +#: includes/public/class-mp-checkout.php:380 +msgid "Apartment, suite, unit, building, floor, etc" +msgstr "Wohnung, Suite, Einheit, Gebäude, Etage etc" + +#: includes/public/class-mp-checkout.php:376 +msgid "Address Line 2" +msgstr "Adresszeile 2" + +#: includes/public/class-mp-checkout.php:363 +msgid "Address Line 1" +msgstr "Anschrift Zeile 1" + +#: includes/common/class-mp-order.php:770 +#: includes/public/class-mp-checkout.php:354 +msgid "Company" +msgstr "Unternehmen" + +#: includes/public/class-mp-checkout.php:330 +msgid "Last" +msgstr "Nachname" + +#: includes/public/class-mp-checkout.php:321 +msgid "First" +msgstr "Vorname" + +#: includes/public/class-mp-checkout.php:284 +msgid "State/Province" +msgstr "Bundesstaat/Provinz" + +#: includes/public/class-mp-checkout.php:83 +msgid "Review Order/Payment" +msgstr "Bestellung/Zahlung überprüfen" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing/Shipping Address" +msgstr "Rechnungs-/Lieferadresse" + +#: includes/public/class-mp-checkout.php:80 +msgid "Login/Register" +msgstr "Anmelden/Registrieren" + +#: includes/multisite/class-mp-admin-multisite.php:530 +msgid "Marketplace" +msgstr "Marktplatz" + +#: includes/multisite/class-mp-admin-multisite.php:523 +msgid "Global Marketplace Pages" +msgstr "Globale Marktplatzseiten" + +#: includes/multisite/class-mp-admin-multisite.php:478 +msgid "Store Network" +msgstr "Shop-Netzwerk" + +#: includes/multisite/class-mp-admin-multisite.php:478 +#: includes/multisite/class-mp-admin-multisite.php:494 +msgid "Store Network Settings" +msgstr "Shop Netzwerk-Einstellungen" + +#: includes/multisite/class-mp-admin-multisite.php:440 +msgid "Set theme access permissions for network stores. For a custom css theme, save your css file with the MarketPress Theme: NAME header in the /marketpress/ui/themes/ folder and it will appear in this list so you may select it." +msgstr "Legen Thema Zugriffsberechtigungen für Netzwerkspeicher. Für eine benutzerdefinierte CSS-Thema, speichern Sie Ihre CSS-Datei mit dem MarketPress Thema: NAME Header in der / marketpress / ui / themes / Ordner, und es wird, so dass Sie in dieser Liste erscheinen kann es wählen." + +#: includes/multisite/class-mp-admin-multisite.php:361 +msgid "Choose a Gateway" +msgstr "Wählen Sie ein Gateway" + +#: includes/multisite/class-mp-admin-multisite.php:336 +msgid "%d products get indexed" +msgstr "%d Produkte indiziert" + +#: includes/multisite/class-mp-admin-multisite.php:285 +msgid "Product Indexer" +msgstr "Produkt-Indexer" + +#: includes/multisite/class-mp-admin-multisite.php:281 +msgid "Please hold on..." +msgstr "Bitte warten..." + +#: includes/multisite/class-mp-admin-multisite.php:280 +msgid "Index Products" +msgstr "Inhaltsverzeichnis" + +#: includes/multisite/class-mp-admin-multisite.php:279 +msgid "%d products have been indexed in whole network" +msgstr "%d Produkte in ganzen Netzwerk indiziert" + +#: includes/multisite/class-mp-admin-multisite.php:182 +msgid "Enable Global Shopping Cart?" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:178 +msgid "Limit Global Widgets/Shortcodes To Main Blog?" +msgstr "Limit Globale Widgets / Short To Main Blog?" + +#: includes/common/template-functions.php:2802 +#: includes/multisite/template-functions.php:355 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:97 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:114 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:143 +msgid "Next" +msgstr "Nächstes" + +#: includes/common/template-functions.php:2801 +#: includes/multisite/template-functions.php:354 +msgid "Prev" +msgstr "Vorheriges" + +#: includes/common/template-functions.php:2597 +msgid "Tagged in " +msgstr "Markiert in" + +#: includes/common/template-functions.php:2196 +#: includes/common/template-functions.php:2202 +#: includes/common/template-functions.php:2214 +#: includes/common/template-functions.php:2217 +msgid "Oops! We couldn't locate any orders matching that order number. Please verify the order number and try again." +msgstr "Hoppla! Wir konnten keine Bestellungen finden, die mit dieser Bestellnummer übereinstimmen. Bitte überprüfen Sie die Bestellnummer und versuchen Sie es erneut." + +#: includes/common/template-functions.php:2138 +msgid "Look Up" +msgstr "Sieh nach oben" + +#: includes/common/template-functions.php:1423 +msgid "Please choose a shipping method" +msgstr "Bitte wählen Sie eine Versandart" + +#: includes/common/template-functions.php:927 +msgid "If you have your order ID you can look it up using the form below." +msgstr "Wenn Sie Ihre Bestellung ID haben, können Sie es in das nachstehende Formular eingeben." + +#: includes/common/template-functions.php:927 +msgid "Order Search" +msgstr "Bestellsuche" + +#: includes/common/template-functions.php:910 +#: includes/public/class-mp-checkout.php:1440 +msgid "Cart" +msgstr "Einkaufskorb" + +#: includes/common/template-functions.php:895 +msgid "[mp_global_tag_cloud]" +msgstr "[mp_global_tag_cloud]" + +#: includes/common/template-functions.php:887 +msgid "[mp_global_categories_list]" +msgstr "[mp_global_categories_list]" + +#: includes/common/template-functions.php:880 +msgid "" +"Welcome to our market place!\n" +"\n" +"Check out our network of products:\n" +"\n" +"[mp_list_global_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_global_categories_list]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_global_tag_cloud]" +msgstr "" +"Willkommen auf unserem Marktplatz!\n" +"\n" +"Schauen Sie sich unser Produktkategorien an:\n" +"\n" +"[mp_list_global_products]\n" +"\n" +"Suche nach Kategorie:\n" +"\n" +"[mp_global_categories_list]\n" +"\n" +"Suche nach Eigenschaften:\n" +"\n" +"[mp_global_tag_cloud]" + +#: includes/common/template-functions.php:879 +msgid "Global Store" +msgstr "Globaler Shop" + +#: includes/common/template-functions.php:873 +msgid "" +"Welcome to our online store! Feel free to browse around:\n" +"\n" +"[mp_store_navigation]\n" +"\n" +"Check out our most popular products:\n" +"\n" +"[mp_popular_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_list_categories]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_tag_cloud]" +msgstr "" +"Willkommen auf unserem Online-Shop! Fühlen Sie sich frei zu durchsuchen:\n" +"\n" +"[mp_store_navigation]\n" +"\n" +"Schauen Sie sich unsere beliebtesten Produkte an:\n" +"\n" +"[mp_popular_products]\n" +"\n" +"Suche nach Kategorie:\n" +"\n" +"[mp_list_categories]\n" +"\n" +"Suche nach Eigenschaft:\n" +"\n" +"[mp_tag_cloud]" + +#: includes/common/shipping-modules/mp-weight-rate.php:127 +msgid "If cart weight is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "Wenn das Wagengewicht größer oder gleich diesem Wert ist, werden die Raten aus dieser Zeile während der Kasse verwendet." + +#: includes/common/shipping-modules/mp-weight-rate.php:126 +msgid "Cart Weight" +msgstr "Warenkorb Gewicht" + +#: includes/common/shipping-modules/mp-usps.php:222 +msgid "Offered International Services" +msgstr "Angeboten International Services" + +#: includes/common/shipping-modules/mp-usps.php:206 +msgid "Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:196 +msgid "Retail Rates" +msgstr "Einzelhandel Preise" + +#: includes/common/shipping-modules/mp-usps.php:195 +msgid "Online Rates" +msgstr "Online Preise" + +#: includes/common/shipping-modules/mp-usps.php:193 +msgid "Rates Request Type" +msgstr "Preise Anfragetyp" + +#: includes/common/shipping-modules/mp-usps.php:189 +msgid "Maximum Weight Per Package" +msgstr "Maximalgewicht pro Packung" + +#: includes/common/shipping-modules/mp-ups.php:195 +#: includes/common/shipping-modules/mp-usps.php:236 +msgid "Enter your standard box sizes as LengthxWidthxHeight (e.g. 12x8x6) For each box defined enter the maximum weight it can contain. Note: the shipping prices this plugin calculates are estimates. If they are consistently too low or too high, please check that the list of boxes above and the product weights are accurate and complete." +msgstr "Geben Sie Ihre Standard-Kastengrößen wie LängexBreitexHöhe (zB 12x8x6) Für jedes Feld geben Sie das maximale Gewicht definiert es enthalten kann. Hinweis: Die Versandpreise dieses Plugin berechnet Schätzungen. Wenn sie konsequent zu niedrig oder zu hoch sind, überprüfen Sie bitte, dass die Liste der Boxen oben und die Produktgewichte richtig und vollständig sind. " + +#: includes/common/shipping-modules/mp-ups.php:187 +msgid "Handling Charge Per Box Shipped" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:176 +#: includes/common/shipping-modules/mp-ups.php:181 +msgid "Offered Services" +msgstr "Dienstleistungen" + +#: includes/common/shipping-modules/mp-ups.php:165 +msgid "Shipper Number" +msgstr "Shipper Anzahl" + +#: includes/common/shipping-modules/mp-ups.php:151 +msgid "User ID" +msgstr "Benutzer ID" + +#: includes/common/shipping-modules/mp-ups.php:144 +msgid "Developer Kit Access Key" +msgstr "Developer Kit Access Key" + +#: includes/common/shipping-modules/mp-ups.php:140 +msgid "Use Sandbox Mode?" +msgstr "Verwenden Sie Sandbox-Modus?" + +#: includes/common/shipping-modules/mp-ups.php:123 +msgid "In order to use UPS, you will need a UPS Developer Kit access key and the UPS user ID and password associated with the access key. Set these up for free here. If this information is missing or incorrect, an error will appear during the checkout process and the buyer will not be able to complete the transaction." +msgstr "Um UPS zu verwenden, erhalten Sie eine UPS Developer Kit Zugriffsschlüssel benötigen und die USV-Benutzer-ID und Passwort mit dem Zugriffsschlüssel zugeordnet ist. Stellen Sie diese hier kostenlos up. Wenn diese Information fehlt oder falsch ist, wird ein Fehler während des Prüfungsprozesses erscheinen und der Käufer nicht in der Lage sein, um die Transaktion abzuschließen." + +#: includes/common/shipping-modules/mp-table-rate.php:112 +msgid "If cart total is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "Wenn Warenkorb insgesamt größer oder gleich diesem Wert dann aus dieser Reihe die Preise werden während der Prüfung verwendet werden." + +#: includes/common/shipping-modules/mp-table-rate.php:111 +msgid "Cart Total" +msgstr "Warenkorb Summe" + +#: includes/common/shipping-modules/mp-table-rate.php:95 +#: includes/common/shipping-modules/mp-weight-rate.php:111 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Don't worry about sorting as this will be done automatically upon saving." +msgstr "Achten Sie darauf, einen Versandpreis für jede Option einzugeben oder die Kunden können kostenlos Versand. Mach dir keine Sorgen über das Sortieren, da dies automatisch beim Speichern getan wird." + +#: includes/common/shipping-modules/mp-pickup.php:170 +msgid "Method Title (visible for clients)" +msgstr "Methode Titel (Für Kunden sichtbar)" + +#: includes/common/shipping-modules/mp-fedex.php:409 +#: includes/common/shipping-modules/mp-ups.php:216 +#: includes/common/shipping-modules/mp-usps.php:251 +msgid "Max Weight (%s)" +msgstr "Gewicht max. (%s)" + +#: includes/common/shipping-modules/mp-fedex.php:402 +#: includes/common/shipping-modules/mp-ups.php:209 +#: includes/common/shipping-modules/mp-usps.php:247 +msgid "Size (%s)" +msgstr "Grösse (%s)" + +#: includes/common/shipping-modules/mp-fedex.php:387 +msgid "Enter your standard box sizes as LengthxWidthxHeight ( 12x8x6 ) For each box defined enter the maximum weight it can contain. Total weight selects the box size used for calculating Shipping costs." +msgstr "Geben Sie Ihre Standard-Kastengrößen wie LängexBreitexHöhe (12x8x6) Für jedes Feld geben Sie das maximale Gewicht definiert es enthalten kann. Gesamtgewicht wählt die Kastengröße für die Berechnung der Versandkosten verwendet." + +#: includes/common/shipping-modules/mp-fedex.php:361 +#: includes/common/shipping-modules/mp-usps.php:229 +msgid "Handling Charge per International Shipment" +msgstr "Bearbeitungsgebühr pro Internationalen Versand" + +#: includes/common/shipping-modules/mp-fedex.php:353 +msgid "International Services" +msgstr "international Services" + +#: includes/common/shipping-modules/mp-fedex.php:339 +#: includes/common/shipping-modules/mp-usps.php:213 +msgid "Handling Charge per Domestic Shipment" +msgstr "Bearbeitungsgebühr pro Haus Versand" + +#: includes/common/shipping-modules/mp-fedex.php:331 +msgid "Domestic Services" +msgstr "Haushaltsdienstleistungen" + +#: includes/common/shipping-modules/mp-fedex.php:321 +msgid "When checked the customer can chose Residential or Commercial delivery with Residential the default. Unchecked it's only Residential rates." +msgstr "Wenn diese Option aktiviert kann der Kunde wählen Wohn-oder Gewerbe Lieferung mit Wohn Standard fest. Ungeprüfter es ist nur Wohn Raten." + +#: includes/common/shipping-modules/mp-fedex.php:320 +msgid "Allow Commercial Delivery?" +msgstr "Erlauben Handels Lieferung?" + +#: includes/common/shipping-modules/mp-fedex.php:315 +msgid "Fedex 10kg Box" +msgstr "Fedex 10kg Box" + +#: includes/common/shipping-modules/mp-fedex.php:314 +msgid "Fedex 25kg Box" +msgstr "Fedex 25kg Box" + +#: includes/common/shipping-modules/mp-fedex.php:313 +msgid "Fedex Box" +msgstr "Fedex Box" + +#: includes/common/shipping-modules/mp-fedex.php:312 +msgid "Fedex Envelope" +msgstr "Fedex-Umschlag" + +#: includes/common/shipping-modules/mp-fedex.php:311 +msgid "Fedex Pak" +msgstr "Fedex Pak" + +#: includes/common/shipping-modules/mp-fedex.php:310 +msgid "Fedex Tube" +msgstr "Fedex-Schlauch" + +#: includes/common/shipping-modules/mp-fedex.php:306 +msgid "Default Packaging" +msgstr "Standard Verpackung" + +#: includes/common/shipping-modules/mp-fedex.php:294 +msgid "Dropoff Type" +msgstr "Dropoff Typ" + +#: includes/common/shipping-modules/mp-fedex.php:290 +msgid "Meter ID" +msgstr "Meter ID" + +#: includes/common/shipping-modules/mp-fedex.php:134 +msgid "This is a residential address" +msgstr "Dies ist eine Wohnadresse" + +#: includes/common/payment-gateways/wepay.php:283 +msgid "There was an error processing your card: \"%s\". Please check your credit card info and try again." +msgstr "Bei der Übermittlung Ihrer Kreditkartendaten ist ein Fehler aufgetreten: \"%s\". Bitte überprüfen Sie Ihre Angaben und versuchen Sie es erneut." + +#: includes/common/payment-gateways/wepay.php:121 +msgid "Wepay makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept cards directly on your site. You don't need a merchant account or gateway. WePay handles everything including storing cards. Credit cards go directly to WePay's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "WePay macht es einfach, Kreditkarten direkt auf Ihrer Website mit voller PCI-Compliance zu beginnen zu akzeptieren. Akzeptieren Karten direkt auf Ihrer Website. Sie brauchen nicht ein Händler-Konto oder Gateway. WePay kümmert sich um alles, einschließlich Speichern von Karten. Kreditkarten gehen direkt an WePay der sicheren Umgebung, und drücken Sie nie Ihre Server so können Sie die meisten PCI-Anforderungen zu vermeiden." + +#: includes/common/payment-gateways/stripe.php:385 +msgid "There was an error processing your card - \"%s\". Please try again." +msgstr "Es gab einen Fehler beim Verarbeiten ihrer Karte - \"%s\". Bitte versuchen Sie es erneut." + +#: includes/common/payment-gateways/stripe.php:356 +msgid "%s Store Purchase - Order ID - %s, Email - %s" +msgstr "%s Einkaufen - Bestell ID - %s, Email - %s" + +#: includes/common/payment-gateways/stripe.php:251 +msgid "Stripe makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept Visa, MasterCard, American Express, Discover, JCB, and Diners Club cards directly on your site. You don't need a merchant account or gateway. Stripe handles everything, including storing cards, subscriptions, and direct payouts to your bank account. Credit cards go directly to Stripe's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "Streifen macht es einfach, Kreditkarten direkt auf Ihrer Website mit voller PCI-Compliance zu beginnen zu akzeptieren. Akzeptieren Visa, Mastercard, American Express, Discover, JCB und Diners Club-Karten direkt auf Ihrer Website. Sie brauchen nicht ein Händler-Konto oder Gateway. Stripe kümmert sich um alles, einschließlich der Speicherung von Karten, Abonnements und direkte Auszahlungen auf Ihr Bankkonto. Kreditkarten gehen Sie direkt zum Stripe der sicheren Umgebung, und drücken Sie nie Ihre Server so können Sie die meisten PCI-Anforderungen zu vermeiden." + +#: includes/common/payment-gateways/stripe.php:192 +msgid "ZMW - Zambian Kwacha" +msgstr "ZMW - Zambian Kwacha" + +#: includes/common/payment-gateways/stripe.php:191 +msgid "ZAR - South African Rand" +msgstr "ZAR - South African Rand" + +#: includes/common/payment-gateways/stripe.php:190 +msgid "YER - Yemeni Rial" +msgstr "YER - Yemeni Rial" + +#: includes/common/payment-gateways/stripe.php:189 +msgid "XPF - Cfp Franc*" +msgstr "XPF - Cfp Franc*" + +#: includes/common/payment-gateways/stripe.php:188 +msgid "XOF - West African Cfa Franc*" +msgstr "XOF - West African Cfa Franc*" + +#: includes/common/payment-gateways/stripe.php:187 +msgid "XCD - East Caribbean Dollar" +msgstr "XCD - East Caribbean Dollar" + +#: includes/common/payment-gateways/stripe.php:186 +msgid "XAF - Central African Cfa Franc" +msgstr "XAF - Central African Cfa Franc" + +#: includes/common/payment-gateways/stripe.php:185 +msgid "WST - Samoan Tala" +msgstr "WST - Samoan Tala" + +#: includes/common/payment-gateways/stripe.php:184 +msgid "VUV - Vanuatu Vatu" +msgstr "VUV - Vanuatu Vatu" + +#: includes/common/payment-gateways/stripe.php:183 +msgid "VND - Vietnamese Đồng" +msgstr "VND - Vietnamese Đồng" + +#: includes/common/payment-gateways/stripe.php:182 +msgid "VEF - Venezuelan Bolívar*" +msgstr "VEF - Venezuelan Bolívar*" + +#: includes/common/payment-gateways/stripe.php:181 +msgid "UZS - Uzbekistani Som" +msgstr "UZS - Uzbekistani Som" + +#: includes/common/payment-gateways/stripe.php:180 +msgid "UYI - Uruguayan Peso*" +msgstr "UYI - Uruguayan Peso*" + +#: includes/common/payment-gateways/stripe.php:178 +msgid "UGX - Ugandan Shilling" +msgstr "UGX - Ugandan Shilling" + +#: includes/common/payment-gateways/stripe.php:177 +msgid "UAH - Ukrainian Hryvnia" +msgstr "UAH - Ukrainian Hryvnia" + +#: includes/common/payment-gateways/stripe.php:176 +msgid "TZS - Tanzanian Shilling" +msgstr "TZS - Tanzanian Shilling" + +#: includes/common/payment-gateways/stripe.php:175 +msgid "TWD - New Taiwan Dollar" +msgstr "TWD - New Taiwan Dollar" + +#: includes/common/payment-gateways/stripe.php:174 +msgid "TTD - Trinidad and Tobago Dollar" +msgstr "TTD - Trinidad and Tobago Dollar" + +#: includes/common/payment-gateways/stripe.php:172 +msgid "TOP - Tongan Paʻanga" +msgstr "TOP - Tongan Paʻanga" + +#: includes/common/payment-gateways/stripe.php:171 +msgid "TJS - Tajikistani Somoni" +msgstr "TJS - Tajikistani Somoni" + +#: includes/common/payment-gateways/stripe.php:169 +msgid "SZL - Swazi Lilangeni" +msgstr "SZL - Swazi Lilangeni" + +#: includes/common/payment-gateways/stripe.php:168 +msgid "SVC - Salvadoran Colón*" +msgstr "SVC - Salvadoran Colón*" + +#: includes/common/payment-gateways/stripe.php:167 +msgid "STD - São Tomé and Príncipe Dobra" +msgstr "STD - São Tomé and Príncipe Dobra" + +#: includes/common/payment-gateways/stripe.php:166 +msgid "SRD - Surinamese Dollar*" +msgstr "SRD - Surinamese Dollar*" + +#: includes/common/payment-gateways/stripe.php:165 +msgid "SOS - Somali Shilling" +msgstr "SOS - Somali Shilling" + +#: includes/common/payment-gateways/stripe.php:164 +msgid "SLL - Sierra Leonean Leone" +msgstr "SLL - Sierra Leonean Leone" + +#: includes/common/payment-gateways/stripe.php:163 +msgid "SHP - Saint Helenian Pound*" +msgstr "SHP - Saint Helenian Pound*" + +#: includes/common/payment-gateways/stripe.php:160 +msgid "SCR - Seychellois Rupee" +msgstr "SCR - Seychellois Rupee" + +#: includes/common/payment-gateways/stripe.php:159 +msgid "SBD - Solomon Islands Dollar" +msgstr "SBD - Solomon Islands Dollar" + +#: includes/common/payment-gateways/stripe.php:157 +msgid "RWF - Rwandan Franc" +msgstr "RWF - Rwandan Franc" + +#: includes/common/payment-gateways/stripe.php:156 +msgid "RUB - Russian Ruble" +msgstr "RUB - Russian Ruble" + +#: includes/common/payment-gateways/stripe.php:155 +msgid "RSD - Serbian Dinar" +msgstr "RSD - Serbian Dinar" + +#: includes/common/payment-gateways/stripe.php:154 +msgid "RON - Romanian Leu" +msgstr "RON - Romanian Leu" + +#: includes/common/payment-gateways/stripe.php:153 +msgid "QAR - Qatari Riyal" +msgstr "QAR - Qatari Riyal" + +#: includes/common/payment-gateways/stripe.php:152 +msgid "PYG - Paraguayan Guaraní*" +msgstr "PYG - Paraguayan Guaraní*" + +#: includes/common/payment-gateways/stripe.php:151 +msgid "PLN - Polish Złoty" +msgstr "PLN - Polish Złoty" + +#: includes/common/payment-gateways/stripe.php:150 +msgid "PKR - Pakistani Rupee" +msgstr "PKR - Pakistani Rupee" + +#: includes/common/payment-gateways/stripe.php:149 +msgid "PHP - Philippine Peso" +msgstr "PHP - Philippine Peso" + +#: includes/common/payment-gateways/stripe.php:148 +msgid "PGK - Papua New Guinean Kina" +msgstr "PGK - Papua New Guinean Kina" + +#: includes/common/payment-gateways/stripe.php:147 +msgid "PEN - Peruvian Nuevo Sol*" +msgstr "PEN - Peruvian Nuevo Sol*" + +#: includes/common/payment-gateways/stripe.php:146 +msgid "PAB - Panamanian Balboa*" +msgstr "PAB - Panamanian Balboa*" + +#: includes/common/payment-gateways/stripe.php:144 +msgid "NPR - Nepalese Rupee" +msgstr "NPR - Nepalese Rupee" + +#: includes/common/payment-gateways/stripe.php:142 +msgid "NIO - Nicaraguan Córdoba*" +msgstr "NIO - Nicaraguan Córdoba*" + +#: includes/common/payment-gateways/stripe.php:141 +msgid "NGN - Nigerian Naira" +msgstr "NGN - Nigerian Naira" + +#: includes/common/payment-gateways/stripe.php:140 +msgid "NAD - Namibian Dollar" +msgstr "NAD - Namibian Dollar" + +#: includes/common/payment-gateways/stripe.php:139 +msgid "MZN - Mozambican Metical" +msgstr "MZN - Mozambican Metical" + +#: includes/common/payment-gateways/stripe.php:137 +msgid "MXN - Mexican Peso*" +msgstr "MXN - Mexican Peso*" + +#: includes/common/payment-gateways/stripe.php:136 +msgid "MWK - Malawian Kwacha" +msgstr "MWK - Malawian Kwacha" + +#: includes/common/payment-gateways/stripe.php:135 +msgid "MVR - Maldivian Rufiyaa" +msgstr "MVR - Maldivian Rufiyaa" + +#: includes/common/payment-gateways/stripe.php:134 +msgid "MUR - Mauritian Rupee*" +msgstr "MUR - Mauritian Rupee*" + +#: includes/common/payment-gateways/stripe.php:133 +msgid "MRO - Mauritanian Ouguiya" +msgstr "MRO - Mauritanian Ouguiya" + +#: includes/common/payment-gateways/stripe.php:132 +msgid "MOP - Macanese Pataca" +msgstr "MOP - Macanese Pataca" + +#: includes/common/payment-gateways/stripe.php:131 +msgid "MNT - Mongolian Tögrög" +msgstr "MNT - Mongolian Tögrög" + +#: includes/common/payment-gateways/stripe.php:130 +msgid "MKD - Macedonian Denar" +msgstr "MKD - Macedonian Denar" + +#: includes/common/payment-gateways/stripe.php:129 +msgid "MGA - Malagasy Ariary" +msgstr "MGA - Malagasy Ariary" + +#: includes/common/payment-gateways/stripe.php:128 +msgid "MDL - Moldovan Leu" +msgstr "MDL - Moldovan Leu" + +#: includes/common/payment-gateways/stripe.php:126 +msgid "LVL - Latvian Lats" +msgstr "LVL - Latvian Lats" + +#: includes/common/payment-gateways/stripe.php:124 +msgid "LSL - Lesotho Loti" +msgstr "LSL - Lesotho Loti" + +#: includes/common/payment-gateways/stripe.php:123 +msgid "LRD - Liberian Dollar" +msgstr "LRD - Liberian Dollar" + +#: includes/common/payment-gateways/stripe.php:122 +msgid "LKR - Sri Lankan Rupee" +msgstr "LKR - Sri Lankan Rupee" + +#: includes/common/payment-gateways/stripe.php:121 +msgid "LBP - Lebanese Pound" +msgstr "LBP - Lebanese Pound" + +#: includes/common/payment-gateways/stripe.php:120 +msgid "LAK - Lao Kip*" +msgstr "LAK - Lao Kip*" + +#: includes/common/payment-gateways/stripe.php:119 +msgid "KZT - Kazakhstani Tenge" +msgstr "KZT - Kazakhstani Tenge" + +#: includes/common/payment-gateways/stripe.php:118 +msgid "KYD - Cayman Islands Dollar" +msgstr "KYD - Cayman Islands Dollar" + +#: includes/common/payment-gateways/stripe.php:117 +msgid "KRW - South Korean Won" +msgstr "KRW - South Korean Won" + +#: includes/common/payment-gateways/stripe.php:116 +msgid "KMF - Comorian Franc" +msgstr "KMF - Comorian Franc" + +#: includes/common/payment-gateways/stripe.php:115 +msgid "KHR - Cambodian Riel" +msgstr "KHR - Cambodian Riel" + +#: includes/common/payment-gateways/stripe.php:114 +msgid "KGS - Kyrgyzstani Som" +msgstr "KGS - Kyrgyzstani Som" + +#: includes/common/payment-gateways/stripe.php:113 +msgid "KES - Kenyan Shilling" +msgstr "KES - Kenyan Shilling" + +#: includes/common/payment-gateways/stripe.php:111 +msgid "JMD - Jamaican Dollar" +msgstr "JMD - Jamaican Dollar" + +#: includes/common/payment-gateways/stripe.php:110 +msgid "ISK - Icelandic Króna" +msgstr "ISK - Icelandic Króna" + +#: includes/common/payment-gateways/stripe.php:109 +msgid "INR - Indian Rupee*" +msgstr "INR - Indian Rupee*" + +#: includes/common/payment-gateways/stripe.php:108 +msgid "ILS - Israeli New Sheqel" +msgstr "ILS - Israeli New Sheqel" + +#: includes/common/payment-gateways/stripe.php:107 +msgid "IDR - Indonesian Rupiah" +msgstr "IDR - Indonesian Rupiah" + +#: includes/common/payment-gateways/stripe.php:105 +msgid "HTG - Haitian Gourde" +msgstr "HTG - Haitian Gourde" + +#: includes/common/payment-gateways/stripe.php:103 +msgid "HNL - Honduran Lempira*" +msgstr "HNL - Honduran Lempira*" + +#: includes/common/payment-gateways/stripe.php:101 +msgid "GYD - Guyanese Dollar" +msgstr "GYD - Guyanese Dollar" + +#: includes/common/payment-gateways/stripe.php:100 +msgid "GTQ - Guatemalan Quetzal*" +msgstr "GTQ - Guatemalan Quetzal*" + +#: includes/common/payment-gateways/stripe.php:99 +msgid "GNF - Guinean Franc*" +msgstr "GNF - Guinean Franc*" + +#: includes/common/payment-gateways/stripe.php:98 +msgid "GMD - Gambian Dalasi" +msgstr "GMD - Gambian Dalasi" + +#: includes/common/payment-gateways/stripe.php:97 +msgid "GIP - Gibraltar Pound" +msgstr "GIP - Gibraltar Pound" + +#: includes/common/payment-gateways/stripe.php:96 +msgid "GEL - Georgian Lari" +msgstr "GEL - Georgian Lari" + +#: includes/common/payment-gateways/stripe.php:94 +msgid "FKP - Falkland Islands Pound*" +msgstr "FKP - Falkland Islands Pound*" + +#: includes/common/payment-gateways/stripe.php:93 +msgid "FJD - Fijian Dollar" +msgstr "FJD - Fijian Dollar" + +#: includes/common/payment-gateways/stripe.php:91 +msgid "ETB - Ethiopian Birr" +msgstr "ETB - Ethiopian Birr" + +#: includes/common/payment-gateways/stripe.php:90 +msgid "EGP - Egyptian Pound" +msgstr "EGP - Egyptian Pound" + +#: includes/common/payment-gateways/stripe.php:89 +msgid "EEK - Estonian Kroon*" +msgstr "EEK - Estonian Kroon*" + +#: includes/common/payment-gateways/stripe.php:88 +msgid "DZD - Algerian Dinar" +msgstr "DZD - Algerian Dinar" + +#: includes/common/payment-gateways/stripe.php:87 +msgid "DOP - Dominican Peso" +msgstr "DOP - Dominican Peso" + +#: includes/common/payment-gateways/stripe.php:85 +msgid "DJF - Djiboutian Franc*" +msgstr "DJF - Djiboutian Franc*" + +#: includes/common/payment-gateways/stripe.php:84 +msgid "CZK - Czech Koruna*" +msgstr "CZK - Czech Koruna*" + +#: includes/common/payment-gateways/stripe.php:83 +msgid "CVE - Cape Verdean Escudo*" +msgstr "CVE - Cape Verdean Escudo*" + +#: includes/common/payment-gateways/stripe.php:82 +msgid "CRC - Costa Rican Colón*" +msgstr "CRC - Costa Rican Colón*" + +#: includes/common/payment-gateways/stripe.php:81 +msgid "COP - Colombian Peso*" +msgstr "COP - Colombian Peso*" + +#: includes/common/payment-gateways/stripe.php:80 +msgid "CNY - Chinese Renminbi Yuan" +msgstr "CNY - Chinese Renminbi Yuan" + +#: includes/common/payment-gateways/stripe.php:79 +msgid "CLP - Chilean Peso*" +msgstr "CLP - Chilean Peso*" + +#: includes/common/payment-gateways/stripe.php:77 +msgid "CDF - Congolese Franc" +msgstr "CDF - Congolese Franc" + +#: includes/common/payment-gateways/stripe.php:76 +msgid "CAD - Canadian Dollar*" +msgstr "CAD - Canadian Dollar*" + +#: includes/common/payment-gateways/stripe.php:75 +msgid "BZD - Belize Dollar" +msgstr "BZD - Belize Dollar" + +#: includes/common/payment-gateways/stripe.php:74 +msgid "BWP - Botswana Pula" +msgstr "BWP - Botswana Pula" + +#: includes/common/payment-gateways/stripe.php:73 +msgid "BSD - Bahamian Dollar" +msgstr "BSD - Bahamian Dollar" + +#: includes/common/payment-gateways/stripe.php:72 +msgid "BRL - Brazilian Real*" +msgstr "BRL - Brazilian Real*" + +#: includes/common/payment-gateways/stripe.php:71 +msgid "BOB - Bolivian Boliviano*" +msgstr "BOB - Bolivian Boliviano*" + +#: includes/common/payment-gateways/stripe.php:70 +msgid "BND - Brunei Dollar" +msgstr "BND - Brunei Dollar" + +#: includes/common/payment-gateways/stripe.php:69 +msgid "BMD - Bermudian Dollar" +msgstr "BMD - Bermudian Dollar" + +#: includes/common/payment-gateways/stripe.php:68 +msgid "BIF - Burundian Franc" +msgstr "BIF - Burundian Franc" + +#: includes/common/payment-gateways/stripe.php:67 +msgid "BGN - Bulgarian Lev" +msgstr "BGN - Bulgarian Lev" + +#: includes/common/payment-gateways/stripe.php:66 +msgid "BDT - Bangladeshi Taka" +msgstr "BDT - Bangladeshi Taka" + +#: includes/common/payment-gateways/stripe.php:65 +msgid "BBD - Barbadian Dollar" +msgstr "BBD - Barbadian Dollar" + +#: includes/common/payment-gateways/stripe.php:64 +msgid "BAM - Bosnia & Herzegovina Convertible Mark" +msgstr "BAM - Bosnia & Herzegovina Convertible Mark" + +#: includes/common/payment-gateways/stripe.php:63 +msgid "AZN - Azerbaijani Manat" +msgstr "AZN - Azerbaijani Manat" + +#: includes/common/payment-gateways/stripe.php:62 +msgid "AWG - Aruban Florin" +msgstr "AWG - Aruban Florin" + +#: includes/common/payment-gateways/stripe.php:61 +msgid "AUD - Australian Dollar*" +msgstr "AUD - Australian Dollar*" + +#: includes/common/payment-gateways/stripe.php:60 +msgid "ARS - Argentine Peso*" +msgstr "ARS - Argentine Peso*" + +#: includes/common/payment-gateways/stripe.php:59 +msgid "AOA - Angolan Kwanza*" +msgstr "AOA - Angolan Kwanza*" + +#: includes/common/payment-gateways/stripe.php:58 +msgid "ANG - Netherlands Antillean Gulden" +msgstr "ANG - Netherlands Antillean Gulden" + +#: includes/common/payment-gateways/stripe.php:57 +msgid "AMD - Armenian Dram" +msgstr "AMD - Armenian Dram" + +#: includes/common/payment-gateways/stripe.php:56 +msgid "ALL - Albanian Lek" +msgstr "ALL - Albanian Lek" + +#: includes/common/payment-gateways/stripe.php:55 +msgid "AFN - Afghan Afghani*" +msgstr "AFN - Afghan Afghani*" + +#: includes/common/payment-gateways/stripe.php:54 +msgid "AED - United Arab Emirates Dirham" +msgstr "AED - United Arab Emirates Dirham" + +#: includes/common/payment-gateways/skrill.php:345 +msgid "Skrill balance, Credit Card, or Instant Transfer" +msgstr "Skrill Zahlung, Kreditkarte, oder Instant Transfer" + +#: includes/common/payment-gateways/skrill.php:327 +msgid "Skrill IPN message received." +msgstr "Skrill IPN Nachricht erhalten." + +#: includes/common/payment-gateways/skrill.php:283 +msgid "Skrill" +msgstr "Skrill" + +#: includes/common/payment-gateways/skrill.php:278 +msgid "Pending payment" +msgstr "Zahlung noch ausstehend" + +#: includes/common/payment-gateways/skrill.php:144 +msgid "The secret word must match the word submitted in the \"Merchant Tools\" section of your Skrill account." +msgstr "Das Geheimwort muss übereinstimmen mit jenem, welches aus dem \"Merchant Tools\" Sektion Ihres Skrill Kontos übermittelt wurde." + +#: includes/common/payment-gateways/skrill.php:134 +msgid "You must use your valid Skrill merchant email. Instructions »" +msgstr "Sie müssen Ihre gültige Skrill Händler Email Adresse benutzen. Instructions »" + +#: includes/common/payment-gateways/skrill.php:133 +msgid "Skrill Email" +msgstr "Skrill E-Mail" + +#: includes/common/payment-gateways/skrill.php:123 +msgid "Resell your inventory via Skrill.com (Moneybookers)" +msgstr "Wiederverkaufen Sie Ihr Inventar über Skrill.com (Moneybookers)" + +#: includes/common/payment-gateways/skrill.php:95 +msgid "ZAR - South-African Rand" +msgstr "ZAR - South-African Rand" + +#: includes/common/payment-gateways/skrill.php:93 +msgid "TWD - Taiwan Dollar" +msgstr "TWD - Taiwan Dollar" + +#: includes/common/payment-gateways/skrill.php:92 +msgid "TRY - New Turkish Lira" +msgstr "TRY - New Turkish Lira" + +#: includes/common/payment-gateways/skrill.php:91 +msgid "TND - Tunisian Dinar" +msgstr "TND - Tunisian Dinar" + +#: includes/common/payment-gateways/skrill.php:90 +msgid "THB - Thailand Baht" +msgstr "THB - Thailand Baht" + +#: includes/common/payment-gateways/skrill.php:89 +msgid "SKK - Slovakian Koruna" +msgstr "SKK - Slovakian Koruna" + +#: includes/common/payment-gateways/skrill.php:86 +#: includes/common/payment-gateways/stripe.php:158 +msgid "SAR - Saudi Riyal" +msgstr "SAR - Saudi Riyal" + +#: includes/common/payment-gateways/skrill.php:85 +msgid "RSD - Serbian dinar" +msgstr "RSD - Serbian dinar" + +#: includes/common/payment-gateways/skrill.php:83 +msgid "QAR - Qatari Rial" +msgstr "QAR - Qatari Rial" + +#: includes/common/payment-gateways/skrill.php:81 +msgid "OMR - Omani Rial" +msgstr "OMR - Omani Rial" + +#: includes/common/payment-gateways/skrill.php:80 +msgid "NOK - Norwegian Krone " +msgstr "NOK - Norwegian Krone " + +#: includes/common/payment-gateways/skrill.php:78 +#: includes/common/payment-gateways/stripe.php:138 +msgid "MYR - Malaysian Ringgit" +msgstr "MYR - Malaysian Ringgit" + +#: includes/common/payment-gateways/skrill.php:77 +#: includes/common/payment-gateways/stripe.php:127 +msgid "MAD - Moroccan Dirham" +msgstr "MAD - Moroccan Dirham" + +#: includes/common/payment-gateways/skrill.php:74 +msgid "KRW - South-Korean Won" +msgstr "KRW - South-Korean Won" + +#: includes/common/payment-gateways/skrill.php:72 +msgid "JOD - Jordanian Dinar" +msgstr "JOD - Jordanian Dinar" + +#: includes/common/payment-gateways/skrill.php:70 +msgid "INR - Indian Rupee" +msgstr "INR - Indian Rupee" + +#: includes/common/payment-gateways/skrill.php:63 +msgid "EEK - Estonian Kroon" +msgstr "EEK - Estonian Kroon" + +#: includes/common/payment-gateways/skrill.php:56 +msgid "AED - Utd. Arab Emir. Dirham" +msgstr "AED - Utd. Arab Emir. Dirham" + +#: includes/common/payment-gateways/skrill.php:52 +msgid "Turkish" +msgstr "Turkish" + +#: includes/common/payment-gateways/skrill.php:51 +msgid "Swedish" +msgstr "Swedish" + +#: includes/common/payment-gateways/skrill.php:50 +msgid "Spanish" +msgstr "Spanish" + +#: includes/common/payment-gateways/skrill.php:49 +msgid "Russian" +msgstr "Russian" + +#: includes/common/payment-gateways/skrill.php:48 +msgid "Romainian" +msgstr "Romainian" + +#: includes/common/payment-gateways/skrill.php:47 +msgid "Polish" +msgstr "Polish" + +#: includes/common/payment-gateways/skrill.php:46 +msgid "Italian" +msgstr "Italian" + +#: includes/common/payment-gateways/skrill.php:45 +msgid "Greek" +msgstr "Greek" + +#: includes/common/payment-gateways/skrill.php:44 +msgid "German" +msgstr "German" + +#: includes/common/payment-gateways/skrill.php:43 +msgid "French" +msgstr "French" + +#: includes/common/payment-gateways/skrill.php:42 +msgid "Finnish" +msgstr "Finnish" + +#: includes/common/payment-gateways/skrill.php:41 +msgid "English" +msgstr "English" + +#: includes/common/payment-gateways/skrill.php:40 +msgid "Dutch" +msgstr "Dutch" + +#: includes/common/payment-gateways/skrill.php:39 +msgid "Danish" +msgstr "Danish" + +#: includes/common/payment-gateways/skrill.php:38 +msgid "Czech" +msgstr "Czech" + +#: includes/common/payment-gateways/skrill.php:37 +msgid "Chinese" +msgstr "Chinese" + +#: includes/common/payment-gateways/simplify.php:201 +msgid "There was an error processing your card: %s. Please re-enter your credit card info and try again." +msgstr "Bei der Übermittlung Ihrer Kreditkartendaten ist ein Fehler aufgetreten: %s. Bitte geben Sie Ihre Kreditkartendaten erneut eine und versuchen Sie es noch einmal." + +#: includes/common/payment-gateways/pin.php:278 +msgid "

  • There was an error processing your card: \"%s\". Please verify your credit card information and try again.
  • " +msgstr "
  • Bei der Übermittlung der Kreditkartendaten ist ein Fehler aufgetreten: \"%s\". Bitte überprüfen Sie Ihre Angaben und versuchen Sie es erneut.
  • " + +#: includes/common/payment-gateways/pin.php:274 +msgid "
  • There was an error processing your card. Please verify your credit card information and try again.
  • " +msgstr "
  • Bei der Übermittlung der Kreditkartendaten ist ein Fehler aufgetreten. Bitte überprüfen Sie Ihre Angaben und versuchen Sie es erneut.
  • " + +#: includes/common/payment-gateways/pin.php:177 +#: includes/common/payment-gateways/stripe.php:279 +msgid "Publishable Key" +msgstr "Schlüssel zur Veröffentlichung" + +#: includes/common/payment-gateways/pin.php:163 +msgid "API Credentials?" +msgstr "API Zugangsdaten?" + +#: includes/common/payment-gateways/pin.php:147 +msgid "PIN makes it easy to start accepting credit card payments with Australia’s first all-in-one online payment system. Accept all major credit cards directly on your site. Your sales proceeds are deposited to any Australian bank account, no merchant account required." +msgstr "PIN macht es einfach, Kreditkartenzahlungen mit Australiens erste All-in-One-Online-Zahlungssystem zu starten akzeptieren. Akzeptieren Sie alle gängigen Kreditkarten direkt auf Ihrer Website. Ihr Verkaufserlös in jedem australischen Bankkonto eingezahlt werden, kein Händler-Konto erforderlich." + +#: includes/common/payment-gateways/pin.php:57 +#: includes/common/payment-gateways/stripe.php:179 +msgid "USD - United States Dollar" +msgstr "USD - United States Dollar" + +#: includes/common/payment-gateways/paypal-payflow.php:455 +msgid "Email Footer" +msgstr "E-Mail Fußzeile" + +#: includes/common/payment-gateways/paypal-payflow.php:445 +msgid "Email Header" +msgstr "E-Mail Kopfzeile" + +#: includes/common/payment-gateways/paypal-payflow.php:416 +msgid "Partner" +msgstr "Partner" + +#: includes/common/payment-gateways/paypal-payflow.php:409 +msgid "Vendor" +msgstr "Verkäufer" + +#: includes/common/payment-gateways/paypal-express.php:852 +#: includes/common/payment-gateways/paypal-express.php:1126 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences\t section of your Profile." +msgstr "Die Zahlung anhängig ist, weil Ihr Kunde nicht eine bestätigte Lieferadresse und Ihre Zahlungsempfang enthalten waren so eingestellt, dass Sie manuell zu akzeptieren, oder jede dieser Zahlungen zu verweigern. Gehen Sie zu Ihrer Präferenz zu ändern, auf die Einstellungen t Bereich Ihres Profils." + +#: includes/common/payment-gateways/paypal-express.php:749 +msgid "Page Background Color" +msgstr "Hintergrundfarbe Seite" + +#: includes/common/payment-gateways/paypal-express.php:744 +msgid "Header Background Color" +msgstr "Hintergrundfarbe Header" + +#: includes/common/payment-gateways/paypal-express.php:739 +msgid "Header Border Color" +msgstr "Rahmenfarbe Header" + +#: includes/common/payment-gateways/paypal-express.php:734 +msgid "Header Image" +msgstr "Header Image" + +#: includes/common/payment-gateways/paypal-express.php:680 +msgid "Locale" +msgstr "Sprache" + +#: includes/common/payment-gateways/paypal-express.php:624 +#: includes/common/payment-gateways/paypal-express.php:658 +msgid "Merchant Email" +msgstr "Verkäufer E-Mail" + +#: includes/common/payment-gateways/paypal-express.php:645 +msgid "Paypal Express Checkout Settings" +msgstr "Paypal Express Checkout Einstellungen" + +#: includes/common/payment-gateways/paypal-express.php:603 +msgid "Paypal Express Network Settings" +msgstr "Paypal Express Netzwerkeinstellungen" + +#: includes/common/payment-gateways/paypal-chained-payments.php:861 +msgid "Application ID (Live)" +msgstr "Anwendungs-ID (Live)" + +#: includes/common/payment-gateways/paypal-chained-payments.php:854 +msgid "Signature (Live)" +msgstr "Signature (Live)" + +#: includes/common/payment-gateways/paypal-chained-payments.php:847 +msgid "API Password (Live)" +msgstr "API Passwort (Live)" + +#: includes/common/payment-gateways/paypal-chained-payments.php:839 +msgid "API Username (Live)" +msgstr "API Benutzername (Live)" + +#: includes/common/payment-gateways/paypal-chained-payments.php:832 +msgid "Signature (Sandbox)" +msgstr "Signature (Sandbox)" + +#: includes/common/payment-gateways/paypal-chained-payments.php:825 +msgid "API Password (Sandbox)" +msgstr "API Passwort (Sandbox)" + +#: includes/common/payment-gateways/paypal-chained-payments.php:817 +msgid "API Username (Sandbox)" +msgstr "API Benutzername (Sandbox)" + +#: includes/common/payment-gateways/paypal-chained-payments.php:799 +msgid "This message is displayed at the top of the gateway settings page to store admins. It's a good place to inform them of your fees or put any sales messages." +msgstr "Diese Nachricht wird an der Spitze der Gateway-Einstellungen Seite zu speichern Administratoren angezeigt. Es ist ein guter Ort, um Ihre Gebühren zu informieren oder jegliche Verkaufsbotschaften setzen." + +#: includes/common/payment-gateways/paypal-chained-payments.php:787 +msgid "Please enter your PayPal email address or business ID you want to recieve fees at." +msgstr "Bitte geben Sie Ihre PayPal-E-Mail-Adresse oder Ihre Geschäfts-ID an, für die Sie Gebühren erhalten möchten." + +#: includes/common/payment-gateways/paypal-chained-payments.php:786 +msgid "PayPal E-mail" +msgstr "PayPal E-mail" + +#: includes/common/payment-gateways/paypal-chained-payments.php:772 +msgid "Fees to Collect (%)" +msgstr "Gebühren (%)" + +#: includes/common/payment-gateways/paypal-chained-payments.php:375 +#: includes/public/class-mp-checkout.php:341 +msgid "Email Address" +msgstr "E-Mail-Addresse" + +#: includes/common/payment-gateways/paypal-chained-payments.php:299 +msgid "Sorry, your order was not completed." +msgstr "Ihre Bestellung wurde nicht abgeschlossen." + +#: includes/common/payment-gateways/paypal-chained-payments.php:126 +#: includes/common/payment-gateways/paypal-express.php:780 +msgid "You will be redirected to the PayPal site to finalize your payment." +msgstr "Sie werden zur PayPal-Seite weitergeleitet, um Ihre Zahlung abzuschließen." + +#: includes/common/payment-gateways/paypal-chained-payments.php:90 +#: includes/common/payment-gateways/skrill.php:94 +msgid "USD - U.S. Dollar" +msgstr "USD - U.S. Dollar" + +#: includes/common/payment-gateways/paypal-chained-payments.php:89 +msgid "TRY - Turkish lira" +msgstr "TRY - Turkish lira" + +#: includes/common/payment-gateways/paypal-chained-payments.php:88 +#: includes/common/payment-gateways/stripe.php:170 +msgid "THB - Thai Baht" +msgstr "THB - Thai Baht" + +#: includes/common/payment-gateways/paypal-chained-payments.php:87 +msgid "TWD - Taiwan New Dollars" +msgstr "TWD - Taiwan New Dollars" + +#: includes/common/payment-gateways/paypal-chained-payments.php:86 +#: includes/common/payment-gateways/pin.php:59 +#: includes/common/payment-gateways/skrill.php:88 +#: includes/common/payment-gateways/stripe.php:162 +msgid "SGD - Singapore Dollar" +msgstr "SGD - Singapore Dollar" + +#: includes/common/payment-gateways/paypal-chained-payments.php:84 +msgid "RUB - Russian Rubles" +msgstr "RUB - Russian Rubles" + +#: includes/common/payment-gateways/paypal-chained-payments.php:82 +msgid "PHP - Philippine Pesos" +msgstr "PHP - Philippine Pesos" + +#: includes/common/payment-gateways/paypal-chained-payments.php:81 +#: includes/common/payment-gateways/pin.php:58 +#: includes/common/payment-gateways/skrill.php:79 +#: includes/common/payment-gateways/stripe.php:145 +msgid "NZD - New Zealand Dollar" +msgstr "NZD - New Zealand Dollar" + +#: includes/common/payment-gateways/paypal-chained-payments.php:79 +msgid "MXN - Mexican Peso" +msgstr "MXN - Mexican Peso" + +#: includes/common/payment-gateways/paypal-chained-payments.php:78 +msgid "MYR - Malaysian Ringgits" +msgstr "MYR - Malaysian Ringgits" + +#: includes/common/payment-gateways/paypal-chained-payments.php:77 +#: includes/common/payment-gateways/pin.php:64 +#: includes/common/payment-gateways/skrill.php:73 +#: includes/common/payment-gateways/stripe.php:112 +msgid "JPY - Japanese Yen" +msgstr "JPY - Japanese Yen" + +#: includes/common/payment-gateways/paypal-chained-payments.php:75 +#: includes/common/payment-gateways/pin.php:63 +#: includes/common/payment-gateways/skrill.php:66 +#: includes/common/payment-gateways/stripe.php:102 +msgid "HKD - Hong Kong Dollar" +msgstr "HKD - Hong Kong Dollar" + +#: includes/common/payment-gateways/paypal-chained-payments.php:73 +msgid "GBP - Pound Sterling" +msgstr "GBP - Pound Sterling" + +#: includes/common/payment-gateways/paypal-chained-payments.php:68 +#: includes/common/payment-gateways/pin.php:62 +#: includes/common/payment-gateways/skrill.php:59 +msgid "CAD - Canadian Dollar" +msgstr "CAD - Canadian Dollar" + +#: includes/common/payment-gateways/paypal-chained-payments.php:67 +msgid "BRL - Brazilian Real" +msgstr "BRL - Brazilian Real" + +#: includes/common/payment-gateways/paypal-chained-payments.php:66 +#: includes/common/payment-gateways/pin.php:56 +#: includes/common/payment-gateways/skrill.php:57 +msgid "AUD - Australian Dollar" +msgstr "AUD - Australian Dollar" + +#: includes/common/payment-gateways/paymill.php:288 +msgid "There was an error processing your card: \"%s\". Please try again." +msgstr "Es ist ein Fehler aufgetreten Karte Verarbeitung: \" %s \". Bitte versuche es erneut." + +#: includes/common/payment-gateways/paymill.php:163 +msgid "When running on a live site, Paymill recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "Wenn Sie auf einer Live-Site ausgeführt werden, empfiehlt Paymill, dass Sie über eine SSL-Zertifikat-Einrichtung für die Website verfügen, auf der das Kassenformular angezeigt wird." + +#: includes/common/payment-gateways/paymill.php:161 +#: includes/common/payment-gateways/pin.php:157 +#: includes/common/payment-gateways/simplify.php:103 +#: includes/common/payment-gateways/stripe.php:260 +#: includes/common/payment-gateways/wepay.php:153 +msgid "Force SSL?" +msgstr "SSL erzwingen?" + +#: includes/common/payment-gateways/paymill.php:151 +msgid "Accept Visa, Mastercard, Maestro UK, Discover and Solo cards directly on your site. You don't need a merchant account or gateway. Credit cards go directly to Paymill's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "Akzeptieren Sie Visa, Mastercard, Maestro UK, Discover und Solo Karten direkt auf Ihrer Website. Sie brauchen kein Händlerkonto oder Gateway. Kreditkarten gehen direkt an die sichere Umgebung von Paymill und schlagen nie Ihre Bediener, also können Sie die meisten PCI Anforderungen vermeiden." + +#: includes/common/payment-gateways/paymill.php:131 +msgid "CVV2" +msgstr "CVV2" + +#: includes/common/payment-gateways/paymill.php:72 +#: includes/common/payment-gateways/pin.php:61 +#: includes/common/payment-gateways/skrill.php:65 +#: includes/common/payment-gateways/stripe.php:95 +msgid "GBP - British Pound" +msgstr "GBP - British Pound" + +#: includes/common/payment-gateways/paymill.php:71 +#: includes/common/payment-gateways/stripe.php:173 +msgid "TRY - Turkish Lira" +msgstr "TRY - Turkish Lira" + +#: includes/common/payment-gateways/paymill.php:70 +#: includes/common/payment-gateways/paypal-chained-payments.php:85 +#: includes/common/payment-gateways/skrill.php:87 +#: includes/common/payment-gateways/stripe.php:161 +msgid "SEK - Swedish Krona" +msgstr "SEK - Swedish Krona" + +#: includes/common/payment-gateways/paymill.php:69 +#: includes/common/payment-gateways/skrill.php:84 +msgid "RON - Romanian Leu New" +msgstr "RON - Romanian Leu New" + +#: includes/common/payment-gateways/paymill.php:68 +#: includes/common/payment-gateways/paypal-chained-payments.php:83 +#: includes/common/payment-gateways/skrill.php:82 +msgid "PLN - Polish Zloty" +msgstr "PLN - Polish Zloty" + +#: includes/common/payment-gateways/paymill.php:67 +#: includes/common/payment-gateways/paypal-chained-payments.php:80 +#: includes/common/payment-gateways/stripe.php:143 +msgid "NOK - Norwegian Krone" +msgstr "NOK - Norwegian Krone" + +#: includes/common/payment-gateways/paymill.php:66 +#: includes/common/payment-gateways/skrill.php:75 +#: includes/common/payment-gateways/stripe.php:125 +msgid "LTL - Lithuanian Litas" +msgstr "LTL - Lithuanian Litas" + +#: includes/common/payment-gateways/paymill.php:65 +#: includes/common/payment-gateways/paypal-chained-payments.php:69 +#: includes/common/payment-gateways/skrill.php:60 +#: includes/common/payment-gateways/stripe.php:78 +msgid "CHF - Swiss Franc" +msgstr "CHF - Swiss Franc" + +#: includes/common/payment-gateways/paymill.php:64 +#: includes/common/payment-gateways/skrill.php:76 +msgid "LVL - Latvian Lat" +msgstr "LVL - Latvian Lat" + +#: includes/common/payment-gateways/paymill.php:63 +#: includes/common/payment-gateways/paypal-chained-payments.php:74 +#: includes/common/payment-gateways/skrill.php:69 +msgid "ILS - Israeli Shekel" +msgstr "ILS - Israeli Shekel" + +#: includes/common/payment-gateways/paymill.php:62 +#: includes/common/payment-gateways/skrill.php:71 +msgid "ISK - Iceland Krona" +msgstr "ISK - Iceland Krona" + +#: includes/common/payment-gateways/paymill.php:61 +#: includes/common/payment-gateways/paypal-chained-payments.php:76 +#: includes/common/payment-gateways/skrill.php:68 +#: includes/common/payment-gateways/stripe.php:106 +msgid "HUF - Hungarian Forint" +msgstr "HUF - Hungarian Forint" + +#: includes/common/payment-gateways/paymill.php:60 +#: includes/common/payment-gateways/paypal-chained-payments.php:71 +#: includes/common/payment-gateways/skrill.php:62 +#: includes/common/payment-gateways/stripe.php:86 +msgid "DKK - Danish Krone" +msgstr "DKK - Danish Krone" + +#: includes/common/payment-gateways/paymill.php:59 +#: includes/common/payment-gateways/skrill.php:67 +#: includes/common/payment-gateways/stripe.php:104 +msgid "HRK - Croatian Kuna" +msgstr "HRK - Croatian Kuna" + +#: includes/common/payment-gateways/paymill.php:58 +#: includes/common/payment-gateways/paypal-chained-payments.php:70 +#: includes/common/payment-gateways/skrill.php:61 +msgid "CZK - Czech Koruna" +msgstr "CZK - Czech Koruna" + +#: includes/common/payment-gateways/paymill.php:57 +#: includes/common/payment-gateways/skrill.php:58 +msgid "BGN - Bulgarian Leva" +msgstr "BGN - Bulgarian Leva" + +#: includes/common/payment-gateways/payflow/class-mp-gateway-worker-payflow.php:123 +msgid "There was an error connecting to PayPal. Please try again." +msgstr "Es gab einen Fehler zu PayPal zu verbinden. Bitte versuche es erneut." + +#: includes/common/payment-gateways/payfast.php:344 +msgid "This setting will log all PayFast communication to the \"payfast.log\" file." +msgstr "Diese Einstellung protokolliert alle PayFast Kommunikation mit dem \"payfast.log \" Datei." + +#: includes/common/payment-gateways/payfast.php:342 +msgid "Log Debugging Info?" +msgstr "Melden Sie Informationen zur Fehlersuche?" + +#: includes/common/payment-gateways/payfast.php:335 +msgid "DO NOT INPUT A VALUE UNLESS YOU HAVE SET ONE IN THE SETTINGS SECTION OF YOUR PAYFAST SETTINGS." +msgstr "NICHT einen Wert eingeben, WENN SIE EINE IN DER Einstellungen Ihrer PAYFAST Einstellungen vorgenommen haben." + +#: includes/common/payment-gateways/payfast.php:333 +msgid "PayFast Passphrase" +msgstr "PayFast Paßphrase" + +#: includes/common/payment-gateways/payfast.php:323 +msgid "You can find your credentials on your integration page." +msgstr "Sie können Ihre Anmeldeinformationen auf Ihrer Integrationsseite finden." + +#: includes/common/payment-gateways/payfast.php:321 +msgid "PayFast Merchant Credentials" +msgstr "Credentials PayFast Händler" + +#: includes/common/payment-gateways/payfast.php:311 +msgid "PayFast Mode" +msgstr "PayFast Modus" + +#: includes/common/payment-gateways/payfast.php:308 +msgid "PayFast is a payments processing service for South Africa. We make it safe for buyers to send money and easy for sellers to receive money. More Info »" +msgstr "PayFast ist eine Zahlungsabwicklung Service für Südafrika. Wir machen es für Kunden sicher, Geld zu senden und einfach für Verkäufer Geld zu erhalten. Mehr Infos & raquo; " + +#: includes/common/payment-gateways/payfast.php:306 +msgid "PayFast Checkout Settings" +msgstr "PayFast Checkout Einstellungen" + +#: includes/common/payment-gateways/payfast.php:285 +msgid "Your payment via PayFast for this order totaling %s is complete. The transaction number is %s." +msgstr "Ihre Zahlung durch PayFast für diesen Auftrag in Höhe von insgesamt %s ist abgeschlossen. Die Transaktionsnummer ist %s ." + +#: includes/common/payment-gateways/payfast.php:278 +msgid "Your payment via PayFast for this order totaling %s is not yet complete. Here is the latest status:" +msgstr "Ihre Zahlung durch PayFast für diesen Auftrag in Höhe von insgesamt %s ist noch nicht abgeschlossen. Hier ist der aktuelle Stand:" + +#: includes/common/payment-gateways/payfast.php:124 +msgid "Your PayFast transaction has been canceled." +msgstr "Ihre PayFast Transaktion wurde abgebrochen." + +#: includes/common/payment-gateways/payfast.php:82 +#: includes/common/payment-gateways/payfast.php:83 +msgid "PayFast" +msgstr "PayFast" + +#: includes/common/payment-gateways/mollie.php:157 +msgid "API error: - \"%s\"" +msgstr "API - Fehler: - \" %s \"" + +#: includes/common/payment-gateways/mollie.php:198 +msgid "The payment request is under process" +msgstr "Der Zahlungsantrag ist unter Prozess" + +#: includes/common/payment-gateways/mollie.php:140 +msgid "Order: #" +msgstr "Bestellung: #" + +#: includes/common/payment-gateways/mollie.php:116 +msgid "You will be redirected to the Mollie site to finalize your payment." +msgstr "Sie werden auf die Mollie Website umgeleitet werden, um Ihre Zahlung abzuschließen." + +#: includes/common/payment-gateways/mollie.php:73 +msgid "%sMollie%s provides a fully PCI Compliant and secure way to collect payments via iDeal, Credit Card, Bancontact / Mister Cash, SOFORT Banking, Overbooking, Bitcoin, PayPal, paysafecard and AcceptEmail." +msgstr "%s Mollie %s bietet eine vollständig PCI - konform und sicher Zahlungen über iDeal, Kreditkarte zu sammeln, Bancontact / Mister Cash, SOFORT Banking, Überbuchung, Bitcoin, PayPal, paysafecard und AcceptEmail." + +#: includes/common/payment-gateways/mollie.php:53 +#: includes/common/payment-gateways/mollie.php:54 +#: includes/common/payment-gateways/mollie.php:195 +#: includes/common/payment-gateways/mollie.php:245 +msgid "Mollie" +msgstr "Mollie" + +#: includes/common/payment-gateways/mollie.php:50 +#: includes/common/payment-gateways/paymill.php:56 +#: includes/common/payment-gateways/paypal-chained-payments.php:72 +#: includes/common/payment-gateways/pin.php:60 +#: includes/common/payment-gateways/skrill.php:64 +#: includes/common/payment-gateways/stripe.php:92 +msgid "EUR - Euro" +msgstr "EUR - Euro" + +#: includes/common/payment-gateways/mijireh.php:306 +msgid "Access Key" +msgstr "Zugriffsschlüssel" + +#: includes/common/payment-gateways/mijireh.php:300 +msgid "You must login to the Mijireh.com dashboard to obtain the Access Key." +msgstr "Sie müssen mit dem Mijireh.com Armaturenbrett anmelden, um den Access Key zu erhalten." + +#: includes/common/payment-gateways/mijireh.php:299 +msgid "Credentials" +msgstr "Referenzen" + +#: includes/common/payment-gateways/mijireh.php:289 +msgid "Mijireh Checkout provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site." +msgstr "Mijireh Checkout bietet eine vollständig PCI-konform, sichere Art und Weise zu sammeln und Kreditkartendaten zu Ihrem Payment-Gateway übertragen, während Sie die Kontrolle über die Gestaltung Ihrer Website zu halten." + +#: includes/common/payment-gateways/mijireh.php:269 +msgid "Mijireh Error: " +msgstr "Mijireh Fehler: " + +#: includes/common/payment-gateways/mijireh.php:89 +msgid "You will be redirected to the Mijireh.com site to finalize your payment." +msgstr "Sie werden auf die Mijireh.com Website umgeleitet werden, um Ihre Zahlung abzuschließen." + +#: includes/common/payment-gateways/mijireh.php:87 +msgid "Your Mijireh transaction has been canceled." +msgstr "Ihre Mijireh Transaktion wurde abgebrochen." + +#: includes/common/payment-gateways/mijireh.php:42 +#: includes/common/payment-gateways/mijireh.php:43 +#: includes/common/payment-gateways/mijireh.php:324 +msgid "Mijireh" +msgstr "Mijireh" + +#: includes/common/payment-gateways/manual-payments.php:145 +msgid "These are the manual payment instructions to display on the payments screen." +msgstr "Dies sind die manuelle Zahlungsanweisungen auf dem Zahlungsbildschirm anzuzeigen." + +#: includes/common/payment-gateways/free_orders.php:189 +msgid "This is the email text to send to those who have made free order checkouts. You should include your free order instructions / information here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "Dies ist die E-Mail-Text an diejenigen senden, die kostenlose Bestellung Kassen gemacht haben. Sie sollten Ihre kostenlose Bestellung Anweisungen / Informationen hier enthalten. Er überschreibt die Kasse E-Mail-Standard um. Diese Codes werden mit Bestellangaben ersetzt: CUSTOMER, ORDERID, Order, Versandinfo, Payment, TOTAL, TRACKINGURL. Kein HTML erlaubt." + +#: includes/common/payment-gateways/free_orders.php:183 +msgid "This is the free order information to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "Dies ist die kostenlose, um Informationen über die Auftragsbestätigung Bildschirm anzuzeigen. Insgesamt werden mit der Auftragssumme ersetzt werden." + +#: includes/common/payment-gateways/free_orders.php:182 +msgid "Confirmation User Information" +msgstr "Bestätigung Benutzerinformation" + +#: includes/common/payment-gateways/free_orders.php:177 +msgid "This is the information to display on the payments screen." +msgstr "Dies sind die Informationen über die Zahlungen Bildschirm anzuzeigen." + +#: includes/common/payment-gateways/free_orders.php:163 +msgid "If enabled, all free orders will be automatically marked as paid." +msgstr "Wenn diese Option aktiviert, werden alle frei, Aufträge automatisch als bezahlt markiert." + +#: includes/common/payment-gateways/free_orders.php:159 +msgid "Payment Status" +msgstr "Bezahlstatus" + +#: includes/common/payment-gateways/free_orders.php:149 +msgid "This gateway is automatically activated if order totalling 0 and it can't be disabled" +msgstr "Dieses Gateway wird automatisch aktiviert, wenn Auftrag 0 in Höhe und es kann nicht deaktiviert werden" + +#: includes/common/payment-gateways/free_orders.php:35 +#: includes/common/payment-gateways/free_orders.php:36 +#: includes/common/payment-gateways/free_orders.php:89 +msgid "Free Order" +msgstr "Kostenlose Bestellung" + +#: includes/common/payment-gateways/free_orders.php:34 +#: includes/common/payment-gateways/free_orders.php:197 +msgid "Free Orders" +msgstr "Kostenfreie Bestellungen" + +#: includes/common/payment-gateways/eway31.php:515 +msgid "Sandbox API Credentials" +msgstr "Sandbox API Credentials" + +#: includes/common/payment-gateways/eway31.php:266 +#: includes/common/payment-gateways/eway31.php:542 +msgid "eWay Rapid 3.1 Payments (beta)" +msgstr "eWay Schnelle 3.1 Zahlungen (beta)" + +#: includes/common/payment-gateways/eway.php:403 +msgid "Hosted Payment Page Language" +msgstr "Hosted Payment Page Sprache" + +#: includes/common/payment-gateways/eway.php:373 +msgid "Note when testing in sandbox mode it will use the default eWay test API credentials. Also, please note that cart total needs to be a whole number (e.g. 10.00) in order to generate a successful transaction, otherwise the transaction will fail." +msgstr "Beachten Sie, wenn im Sandbox-Modus testen, werden sie zunächst die Standard eWay Test API Anmeldeinformationen verwenden. Beachten Sie auch, dass Warenkorb Gesamtbedarf für eine ganze Zahl (zB 10.00) zu sein, um eine erfolgreiche Transaktion zu generieren, da sonst die Transaktion fehlschlagen." + +#: includes/common/payment-gateways/eway.php:267 +msgid "You will be redirected to https://www.eway.com.au to finalize your payment." +msgstr "Sie werden umgeleitet zu https://www.eway.com.au Ihre Zahlung abzuschließen." + +#: includes/common/payment-gateways/class-mp-gateway-api.php:380 +msgid "You have chosen to checkout using %s. Please confirm your order details and click \"Submit Order\" when finished." +msgstr "Sie haben %s als Zahlungsmethode ausgewählt. Bitte überprüfen Sie noch einmal die Bestelldetails und klicken Sie auf \"Bestellung absenden\", wenn Sie fertig sind." + +#: includes/common/payment-gateways/class-mp-gateway-api.php:272 +#: includes/common/payment-gateways/paymill.php:131 +#: includes/common/payment-gateways/stripe.php:231 +msgid "Security Code " +msgstr "CCV Code" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Enter in MM/YYYY or MM/YY format" +msgstr "Geben Sie in MM / YYYY oder MM / JJ Format" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Expiration" +msgstr "Gültig bis" + +#: includes/common/payment-gateways/authorizenet-aim.php:321 +msgid "Delim Data" +msgstr "delim Daten" + +#: includes/common/payment-gateways/authorizenet-aim.php:307 +#: includes/common/payment-gateways/paypal-payflow.php:456 +msgid "This text will appear as the footer of the email receipt sent to the customer." +msgstr "Dieser Text wird als der Fußzeile des E-Mail-Empfang erscheinen an den Kunden gesendet." + +#: includes/common/payment-gateways/authorizenet-aim.php:287 +#: includes/common/payment-gateways/paypal-payflow.php:440 +msgid "Email Customer (on success)" +msgstr "E-Mail-Kunden (auf Erfolg)" + +#: includes/common/payment-gateways/authorizenet-aim.php:278 +msgid "Authorize.net default is \",\". Otherwise, get this from your credit card processor. If the transactions are not going through, this character is most likely wrong." +msgstr "Authorize.net Standardwert ist \", \". Andernfalls erhalten diese von Ihrem Kreditkartenprozessor. Wenn die Transaktionen nicht durchmacht, ist dieser Charakter höchstwahrscheinlich falsch." + +#: includes/common/payment-gateways/authorizenet-aim.php:277 +msgid "Delimeter Character" +msgstr "delimeter Charakter" + +#: includes/common/payment-gateways/authorizenet-aim.php:193 +msgid "Held For Review" +msgstr "Zur Überprüfung gehalten" + +#: includes/common/payment-gateways/_ideal.php:310 +#: includes/common/payment-gateways/payfast.php:314 +msgid "Test" +msgstr "Test" + +#: includes/common/payment-gateways/_ideal.php:300 +#: includes/common/payment-gateways/pin.php:170 +#: includes/common/payment-gateways/stripe.php:272 +msgid "Secret Key" +msgstr "Secret Key" + +#: includes/common/payment-gateways/_ideal.php:283 +msgid "Select Your Bank" +msgstr "Wählen Sie Ihre Bank" + +#: includes/common/payment-gateways/_ideal.php:97 +msgid "Your payment will be processed by the iDEAL network" +msgstr "Ihre Zahlung wird durch die iDEAL-Netzwerk verarbeitet werden," + +#: includes/common/payment-gateways/_cubepoints.php:208 +msgid "These are the CubePoints to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "Dies sind die CubePoints auf der Auftragsbestätigung Bildschirm anzuzeigen. Insgesamt werden mit der Auftragssumme ersetzt werden." + +#: includes/common/payment-gateways/_cubepoints.php:203 +msgid "These are the CubePoints instructions to display on the payments screen." +msgstr "Dies sind die CubePoints Anweisungen auf dem Zahlungsbildschirm anzuzeigen." + +#: includes/common/payment-gateways/_bitpay.php:266 +msgid "If enabled, all API calls will be made to https://test.bitpay.com." +msgstr "Wenn diese Option aktiviert, werden alle API-Aufrufe an https://test.bitpay.com gemacht werden." + +#: includes/common/payment-gateways/_bitpay.php:263 +msgid "Use Test Mode?" +msgstr "Test-Modus verwenden?" + +#: includes/common/payment-gateways/_bitpay.php:259 +msgid "If checked, response fron bitpay will be stored in log file, keep it disabled unless required." +msgstr "Wenn diese Option aktiviert, Antwort fron bitpay wird in Log-Datei gespeichert werden, halten sie deaktiviert, es sei denn erforderlich." + +#: includes/common/payment-gateways/_bitpay.php:256 +msgid "Enable Debug Log" +msgstr "Aktivieren Debug Log" + +#: includes/common/payment-gateways/_bitpay.php:249 +msgid "Full Notifications" +msgstr "Vollständige Benachrichtigungen" + +#: includes/common/payment-gateways/_bitpay.php:231 +#: includes/common/payment-gateways/eway31.php:499 +#: includes/common/payment-gateways/eway31.php:526 +#: includes/common/payment-gateways/mollie.php:83 +#: includes/common/shipping-modules/mp-fedex.php:269 +msgid "API Key" +msgstr "API Key" + +#: includes/common/payment-gateways/_bitpay.php:222 +msgid "You can now accept a payment from any country on Earth, with no risk of fraud. To use Bitpay, you need to signup on Bitpay. \\n After completing the signup process, you can get api keys at Bitpay API key. You can read more about Bitpay at Bitpay API. \\n Bitpay requires SSL(https) for payment notifications to work." +msgstr "Sie können jetzt eine Zahlung aus jedem Land auf der Erde, ohne dass die Gefahr von Betrug zu akzeptieren. So verwenden Sie Bitpay, müssen Sie anmeldet und auf Bitpay . \\ N Nach dem Anmeldevorgang abgeschlossen haben, können Sie api Schlüssel unter Bitpay API-Schlüssel erhalten . Sie können mehr über Bitpay unter Bitpay API . \\ N Bitpay erfordert SSL (https) für Zahlungsmitteilungen zu arbeiten. " + +#: includes/common/payment-gateways/_bitpay.php:61 +msgid "You will be redirected to bitpay.com, for bitcoin payment. It is completely safe." +msgstr "Sie werden zur Bitcoin-Zahlung weitergeleitet. bitpay.com. Es ist völlig sicher." + +#: includes/common/payment-gateways/2checkout.php:346 +msgid "You must login to the 2Checkout vendor dashboard to obtain the seller ID and secret word. Instructions »" +msgstr "Sie müssen mit dem 2Checkout Verkäufer Dashboard anmelden, um den Verkäufer-ID und das Geheimwort zu erhalten. Anleitung & raquo; < / a>" + +#: includes/common/payment-gateways/2checkout.php:345 +#: includes/common/payment-gateways/authorizenet-aim.php:239 +#: includes/common/payment-gateways/paymill.php:168 +#: includes/common/payment-gateways/paypal-express.php:704 +#: includes/common/payment-gateways/simplify.php:80 +#: includes/common/payment-gateways/stripe.php:265 +#: includes/common/payment-gateways/wepay.php:158 +msgid "API Credentials" +msgstr "API Credentials" + +#: includes/common/payment-gateways/2checkout.php:325 +#: includes/common/payment-gateways/_bitpay.php:220 +#: includes/common/payment-gateways/_cubepoints.php:185 +#: includes/common/payment-gateways/_ideal.php:268 +#: includes/common/payment-gateways/_payway.php:255 +#: includes/common/payment-gateways/authorizenet-aim.php:219 +#: includes/common/payment-gateways/eway.php:352 +#: includes/common/payment-gateways/eway31.php:460 +#: includes/common/payment-gateways/free_orders.php:147 +#: includes/common/payment-gateways/manual-payments.php:126 +#: includes/common/payment-gateways/mijireh.php:287 +#: includes/common/payment-gateways/mollie.php:71 +#: includes/common/payment-gateways/paymill.php:149 +#: includes/common/payment-gateways/paypal-chained-payments.php:344 +#: includes/common/payment-gateways/paypal-payflow.php:376 +#: includes/common/payment-gateways/pin.php:145 +#: includes/common/payment-gateways/simplify.php:69 +#: includes/common/payment-gateways/skrill.php:121 +#: includes/common/payment-gateways/stripe.php:249 +#: includes/common/payment-gateways/wepay.php:119 +#: includes/common/shipping-modules/mp-fedex.php:243 +#: includes/common/shipping-modules/mp-flat-rate.php:63 +#: includes/common/shipping-modules/mp-pickup.php:140 +#: includes/common/shipping-modules/mp-table-rate.php:94 +#: includes/common/shipping-modules/mp-ups.php:122 +#: includes/common/shipping-modules/mp-usps.php:167 +#: includes/common/shipping-modules/mp-weight-rate.php:110 +msgid "%s Settings" +msgstr "%s Einstellungen" + +#: includes/common/payment-gateways/2checkout.php:136 +msgid "You will be redirected to the 2Checkout site to finalize your payment." +msgstr "Sie werden zur 2Checkout Seite weitergeleitet, um Ihre Zahlung zu beenden." + +#: includes/common/helpers.php:169 includes/public/class-mp-checkout.php:1277 +msgid "Billing" +msgstr "Abrechnung" + +#: includes/common/helpers.php:144 +msgid "FREE" +msgstr "GRATIS" + +#: includes/common/helpers.php:134 +msgid "Coupons:" +msgstr "Gutscheine:" + +#: includes/common/helpers.php:95 +msgid "Qty" +msgstr "Menge" + +#: includes/common/helpers.php:94 +msgid "Sku" +msgstr "Artikel Nr." + +#: includes/common/data.php:59 +msgid "Zip Code" +msgstr "Postleitzahl" + +#: includes/common/class-mp-taxes.php:336 +msgid "Standard Table" +msgstr "Standardtabelle" + +#: includes/common/class-mp-product.php:2698 +msgid "Tweet" +msgstr "Tweet" + +#: includes/common/class-mp-product.php:2321 +msgid "Notification Preferences: %s" +msgstr "Benachrichtigungseinstellungen: %s" + +#: includes/common/class-mp-product.php:2320 +msgid "Edit Product: %s" +msgstr "Produkt bearbeiten: %s" + +#: includes/common/class-mp-product.php:2318 +msgid "Link: %s

    " +msgstr "Link: %s

    " + +#: includes/common/class-mp-product.php:2317 +msgid "Current Inventory: %s" +msgstr "Aktueller Bestand: %s" + +#: includes/common/class-mp-product.php:2316 +msgid "Product: %s" +msgstr "Produkt: %s" + +#: includes/common/class-mp-product.php:2314 +msgid "This message is being sent to notify you of low stock of a product in your online store according to your preferences.

    " +msgstr "Diese Nachricht wird gesendet, um Sie über einen niedrigen Lagerbestand eines Produkts in Ihrem Online-Shop nach Ihren Wünschen zu informieren.

    " + +#: includes/common/class-mp-product.php:1817 +msgid "" +msgstr "" + +#: includes/common/class-mp-product.php:1427 +#: includes/common/class-mp-product.php:1430 +msgid "(tax incl.)" +msgstr "(Steuer inkl.)" + +#: includes/common/class-mp-product.php:1422 +#: includes/common/class-mp-product.php:1425 +msgid "(tax excl.)" +msgstr "(Ohne MwSt.)" + +#: includes/common/class-mp-product.php:1300 +#: includes/common/class-mp-product.php:1315 +msgid "%s each" +msgstr "%s / Stück" + +#: includes/common/class-mp-product.php:988 +msgid "Choose Options" +msgstr "Wählen Sie Optionen" + +#: includes/common/class-mp-product.php:526 +msgid "Choose a %s" +msgstr "Wählen Sie %s aus" + +#: includes/common/class-mp-product.php:284 +#: includes/common/class-mp-product.php:292 +#: includes/common/class-mp-product.php:615 +msgid "We're sorry, we only have %d of this item in stock right now." +msgstr "Es tut uns leid, wir haben nur noch %d dieses Artikels auf Lager." + +#: includes/common/class-mp-order.php:1456 +msgid "Shipped: Track Shipment" +msgstr "Versendet: Sendungsverfolgung" + +#: includes/common/class-mp-order.php:1049 +msgid "Order Received" +msgstr "Bestellung erhalten" + +#: includes/common/class-mp-order.php:1014 +msgid "In Process" +msgstr "In Bearbeitung" + +#: includes/common/class-mp-order.php:969 +msgid "Order #" +msgstr "Bestellung #" + +#: includes/common/class-mp-order.php:866 +msgid "Copy billing address to shipping address" +msgstr "Rechnungsadresse an Lieferadresse kopieren" + +#: includes/common/class-mp-order.php:822 +#: includes/public/class-mp-checkout.php:1314 +msgid "Special Instructions" +msgstr "spezielle Anweisungen" + +#: includes/common/class-mp-order.php:817 +#: includes/common/payment-gateways/stripe.php:335 +msgid "Email" +msgstr "Email" + +#: includes/common/class-mp-order.php:813 +#: includes/common/payment-gateways/stripe.php:341 +#: includes/public/class-mp-checkout.php:416 +msgid "Phone" +msgstr "Telefon" + +#: includes/common/class-mp-order.php:791 +#: includes/common/payment-gateways/stripe.php:337 +msgid "State" +msgstr "Bundesland" + +#: includes/common/class-mp-order.php:776 +msgid "Address 1" +msgstr "Anschrift 1" + +#: includes/common/class-mp-order.php:766 +msgid "Last Name" +msgstr "Familienname" + +#: includes/common/class-mp-order.php:762 +msgid "First Name" +msgstr "Vorname" + +#: includes/common/class-mp-installer.php:677 +msgid "MarketPress requires a database update to continue working correctly.
    Go to update page" +msgstr "MarketPress setzt eine Aktualisierung der Datenbank voraus. Zum aktualisieren" + +#: includes/common/class-mp-installer.php:657 +msgid "MarketPress performed a quick automatic update successfully!" +msgstr "MarketPress hat ein schnelles automatisches Update erfolgreich durchgeführt!" + +#: includes/common/class-mp-installer.php:653 +msgid "Perform Update" +msgstr "Führen Sie die Aktualisierung durch" + +#: includes/common/class-mp-installer.php:647 +msgid "Please update each subsite in your WordPress network where you have older version of the MarketPress plugin." +msgstr "Bitte aktualisieren Sie jede Unterwebsite in Ihrem WordPress-Netzwerk, wo Sie eine ältere Version des MarketPress-Plugins haben." + +#: includes/common/class-mp-installer.php:641 +msgid "Depending on the amount of products you have, this update could take quite some time. Please keep this window open while the update completes. If you have products with multiple variations, the progress bar may move slower, please don't exit the window." +msgstr "Abhängig von der Menge der Produkte, die Sie haben, könnte dieses Update einige Zeit dauern. Bitte halten Sie dieses Fenster geöffnet, während das Update abgeschlossen ist. Wenn Sie Produkte mit mehreren Variationen haben, kann sich die Fortschrittsanzeige langsamer bewegen, bitte beenden Sie das Fenster bitte nicht." + +#: includes/common/class-mp-installer.php:632 +msgid "Product Metadata" +msgstr "Produkt-Metadaten" + +#: includes/common/class-mp-installer.php:601 +msgid "MarketPress requires a database update to continue working correctly.
    Below you will find a list of items that require your attention." +msgstr "MarketPress setzt eine Aktualisierung der Datenbank voraus.
    Unten finden Sie eine Liste der Artikel, die Ihre Aufmerksamkeit erfordern." + +#: includes/common/class-mp-installer.php:600 +msgid "Update MarketPress Data" +msgstr "Aktualisieren Sie MarketPress Daten" + +#: includes/common/class-mp-installer.php:530 +msgid "Update Data" +msgstr "Daten aktualisieren" + +#: includes/common/class-mp-installer.php:67 +msgid "Complete!" +msgstr "Komplett!" + +#: includes/common/class-mp-installer.php:66 +msgid "Upgrading Database...Please Wait..." +msgstr "Datenbank wird aktualisiert ... Bitte warten ..." + +#: includes/common/class-mp-installer.php:64 +msgid "An error occurred while updating. Please refresh this page and try again." +msgstr "Fehler beim Aktualisieren. Bitte aktualisieren Sie diese Seite und versuchen Sie es erneut." + +#: includes/common/class-mp-cart.php:2447 +msgid "Some items in your cart have fallen below the quantity you currently have in your cart. We have adjusted the quantity in your cart automatically." +msgstr "Sie haben noch keine Artikel in Ihrem Warenkorb. Wir haben die Menge automatisch in Ihrem Warenkorb eingestellt." + +#: includes/common/class-mp-cart.php:2443 +msgid "Some items in your cart are no longer available. We have removed these items from your cart automatically." +msgstr "Einige Artikel in Ihrem Warenkorb sind nicht mehr verfügbar. Wir haben diese Artikel automatisch aus Ihrem Warenkorb entfernt." + +#: includes/common/class-mp-cart.php:1566 +msgid "item" +msgstr "Artikel" + +#: includes/common/class-mp-cart.php:1563 +#: includes/common/class-mp-cart.php:1568 +msgid "items" +msgstr "Artikel" + +#: includes/common/class-mp-cart.php:1363 +msgid "Items/Products added to Cart will show here." +msgstr "Artikel/Produkte, die zum Warenkorb hinzugefügt werden, werden hier angezeigt." + +#: includes/common/class-mp-cart.php:1362 +msgid "Your shopping cart is empty." +msgstr "Dein Einkaufswagen ist leer." + +#: includes/common/class-mp-cart.php:1357 +msgid "View Cart" +msgstr "Zum Warenkorb" + +#: includes/common/class-mp-cart.php:1241 +#: includes/common/class-mp-cart.php:1298 +#: includes/public/class-mp-short-codes.php:159 +msgid "Adding..." +msgstr "Hinzufügen..." + +#: includes/common/class-mp-cart.php:1033 +msgid "Continue Shopping?" +msgstr "Mit dem Einkaufen fortfahren?" + +#: includes/common/class-mp-cart.php:961 +msgid "Secure Checkout
    Shopping is always safe and secure." +msgstr "Sicherer Checkout
    Einkaufen ist immer sicher und einfach." + +#: includes/common/class-mp-cart.php:959 +msgid "You are about to submit your order!
    Please review your order details before continuing. You will be charged immediately upon clicking \"Submit Order\"." +msgstr "Sie sind dabei, Ihre Bestellung einzureichen!
    Bitte überprüfen Sie Ihre Bestelldaten bevor Sie fortfahren. Sie werden sofort nach dem Klick auf \"Bestellung abschicken\" belastet." + +#: includes/common/class-mp-cart.php:956 +msgid "Continue »" +msgstr "Fortsetzen »" + +#: includes/common/class-mp-cart.php:955 +msgid "Submit Order" +msgstr "Bestellung abschicken" + +#: includes/common/class-mp-cart.php:818 +msgid "There are no items in your cart - go add some !" +msgstr "Es befinden sich keine Artikel im Warenkorb - füge welche hinzu !" + +#: includes/common/class-mp-cart.php:816 +msgid "The cart is disabled." +msgstr "Der Einkaufswagen ist deaktiviert." + +#: includes/common/class-mp-cart.php:735 +msgid "Estimated %s" +msgstr "Geschätzte %s" + +#: includes/common/class-mp-cart.php:717 +msgid "Estimated Shipping" +msgstr "Voraussichtlicher Versand" + +#: includes/common/class-mp-cart.php:697 +msgid "Product Total" +msgstr "Produkt Gesamt" + +#: includes/common/class-mp-cart.php:670 includes/common/class-mp-cart.php:672 +msgid "Estimated Total (%s, %s)" +msgstr "Gesamtwert (%s, %s)" + +#: includes/common/class-mp-cart.php:668 +msgid "Estimated Total (%s)" +msgstr "Gesamtwert (%s)" + +#: includes/common/class-mp-cart.php:666 includes/common/class-mp-cart.php:752 +msgid "Estimated Total" +msgstr "Gesamtwert" + +#: includes/admin/widgets/product-list.php:247 +msgid "Show Thumbnail Placeholder image (if image is not set)" +msgstr "Miniaturvorschau anzeigen Platzhalterbild (falls das Bild nicht gesetzt ist)" + +#: includes/admin/widgets/cart.php:73 +msgid "Display product price" +msgstr "Produktpreis anzeigen" + +#: includes/admin/widgets/cart.php:71 +msgid "Display product quantity" +msgstr "Produktmenge anzeigen" + +#: includes/admin/widgets/cart.php:69 +msgid "Display product image" +msgstr "Produktbild anzeigen" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:93 +msgid "General Shipping Settings" +msgstr "Allgemeine Versandeinstellungen" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:773 +msgid "If you are having conflicts with the lightbox library from your theme or another plugin you should uncheck this." +msgstr "Wenn Sie Konflikte mit der Lightbox-Bibliothek von Ihrem Thema oder ein anderes Plugin haben, sollten Sie dies deaktivieren." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:772 +msgid "Use Built-In Lightbox for Images?" +msgstr "Verwenden Sie Built-In Lightbox für Bilder?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:762 +msgid "Disable Large Image Display?" +msgstr "Deaktivieren Sie Großbilddarstellung?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:688 +msgid "Show Product Image?" +msgstr "Produktbild anzeigen?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:682 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:684 +msgid "Show Tags List?" +msgstr "Eigenschaftsliste anzeigen?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:676 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:678 +msgid "Show Categories List?" +msgstr "Kategorienverzeichnis anzeigen?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:671 +msgid "If enabled, description excerpt will be added above Add to cart." +msgstr "Wenn aktiviert, wird der Beschreibungstext im Warenkorb hinzugefügt." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:669 +msgid "Show Excerpt?" +msgstr "Auszug zeigen?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:665 +msgid "If enabled, users will be able to choose how many of the product they want to purchase before adding to their cart. If not checked, quantity could be change later on the cart page." +msgstr "Wenn diese Option aktiviert ist, können die Benutzer auswählen, wie viele Produkte sie kaufen möchten, bevor sie ihren Einkaufswagen hinzufügen. Wenn nicht geprüft, könnte die Menge später auf der Wagenseite geändert werden." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:663 +msgid "Show Quantity Field?" +msgstr "Mengenfeld anzeigen?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:649 +msgid "Settings related to the display of individual product pages." +msgstr "Einstellungen zur Darstellung einzelner Produktseiten." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:648 +msgid "Product Page Settings" +msgstr "Produktseiteneinstellungen" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:605 +msgid "Related Products Layout" +msgstr "Ähnliche Produkte Layout" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:573 +msgid "Show Related Products?" +msgstr "Ähnliche Produkte anzeigen?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:568 +msgid "Related Product Settings" +msgstr "Ähnliche Produkteinstellungen" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:549 +msgid "Order Status Entries Per Page" +msgstr "Bestellstatus - Einträge pro Seite" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:510 +msgid "Sort Products By" +msgstr "Produkte sortieren nach" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:497 +msgid "Products Per Page" +msgstr "Produkte pro Seite" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:492 +msgid "Paginate Products?" +msgstr "Paginierte Produkte?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:478 +msgid "Excerpts Length" +msgstr "Auszug Länge" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:473 +msgid "Show Excerpts?" +msgstr "Auszüge anzeigen?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:450 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:746 +msgid "Image Alignment" +msgstr "Bildausrichtung" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:412 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:708 +msgid "Custom Image Size" +msgstr "Benutzerdefinierte Bildgröße" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:401 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:697 +msgid "Large - %s" +msgstr "Groß - %s" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:400 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:696 +msgid "Medium - %s" +msgstr "Mittel - %s" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:399 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:695 +msgid "Thumbnail - %s" +msgstr "Miniaturansicht - %s" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:397 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:693 +msgid "Image Size" +msgstr "Bildgröße" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:386 +msgid "Select default placeholder image thumbnail when product image is not available (if empty, plugin's built-in image will be used)" +msgstr "Standard-Platzhalter-Image-Miniaturansicht auswählen, wenn das Produktbild nicht verfügbar ist (falls leer, wird das integrierte Bild des Plugins verwendet)" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:380 +msgid "Show default product placeholder thumbnail when product image is not available?" +msgstr "Standardprodukt-Platzhalter-Thumbnail anzeigen, wenn das Produktimage nicht verfügbar ist?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:374 +msgid "Show Product Thumbnail?" +msgstr "Produkt-Miniaturansicht anzeigen?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:369 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:658 +msgid "Redirect to cart page for immediate checkout" +msgstr "Weiterleitung zur Warenkorb-Seite für den sofortigen Checkout" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:368 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:657 +msgid "Stay on current product page" +msgstr "Bleiben Sie auf der aktuellen Produktseite" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:366 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:655 +msgid "MarketPress supports two \"flows\" for adding products to the shopping cart. After adding a product to their cart, two things can happen:" +msgstr "MarketPress unterstützt zwei \"Flows\" zum Hinzufügen von Produkten zum Einkaufswagen. Nach dem Hinzufügen eines Produkts zu ihrem Wagen können zwei Dinge passieren:" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:365 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:654 +msgid "Add To Cart Action" +msgstr "In den Warenkorb Aktion" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:355 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:628 +msgid "Four" +msgstr "Vier" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:354 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:627 +msgid "Three" +msgstr "Drei" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:353 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:626 +msgid "Two" +msgstr "Zwei" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:625 +msgid "One" +msgstr "Eins" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:349 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:622 +msgid "Set the number of products that show up in a grid row to best fit your theme" +msgstr "Legen Sie die Anzahl der Produkte, die in einer Rasterreihe angezeigt werden, am besten zu Ihrem Thema passen" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:348 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:621 +msgid "How many products per row?" +msgstr "Wie viele Produkte pro Zeile?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:342 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:609 +msgid "Display as grid" +msgstr "Anzeige als Raster" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:341 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:608 +msgid "Display as list" +msgstr "Als Liste anzeigen" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:339 +msgid "Product Layout" +msgstr "Produktaufbau" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:334 +msgid "Settings related to the display of product lists/grids." +msgstr "Einstellungen zur Anzeige von Produktlisten/Gittern." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:333 +msgid "Product List/Grid Settings" +msgstr "Produktliste/Rastereinstellungen" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:314 +msgid "Show Twitter Button" +msgstr "Anzeigen Twitter Button" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:309 +msgid "Twitter" +msgstr "Twitter" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:303 +msgid "Show Share Button" +msgstr "Zeige Share Button" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:297 +msgid "Recommend" +msgstr "Empfehlen" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:296 +msgid "Like" +msgstr "Like" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:294 +msgid "Action" +msgstr "Aktion" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:283 +msgid "Show Facebook Like Button" +msgstr "Anzeigen Facebook Like Button" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:278 +msgid "Facebook" +msgstr "Facebook" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:257 +msgid "Show \"Pin It\" Button" +msgstr "Zeigen Sie \"Pin It\" Button" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:252 +msgid "Pinterest" +msgstr "Pinterest" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:246 +msgid "Social Settings" +msgstr "Soziale Einstellungen" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:193 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:202 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:211 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:220 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:229 +#: includes/multisite/class-mp-admin-multisite.php:532 +#: includes/multisite/class-mp-admin-multisite.php:541 +#: includes/multisite/class-mp-admin-multisite.php:550 +msgid "Choose a Page" +msgstr "Wählen Sie eine Seite aus" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:191 +msgid "This page will be used as the root for your store." +msgstr "Diese Seite wird als Stammverzeichnis für Ihren Shop verwendet." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:168 +#: includes/multisite/class-mp-admin-multisite.php:586 +msgid "Create Page" +msgstr "Seite erstellen" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "uncropped" +msgstr "Ungekürzt" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "cropped" +msgstr "Abgeschnitten" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:87 +#: includes/multisite/class-mp-admin-multisite.php:121 +#: includes/multisite/class-mp-admin-multisite.php:620 +msgid "An error occurred while creating the store page. Please try again." +msgstr "Beim Erstellen der Store-Seite ist ein Fehler aufgetreten. Bitte versuche es erneut." + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:66 +msgid "Choose the gateway(s) that you would like to be available for checkout." +msgstr "Wählen Sie die Gateways aus, die für die Kasse zur Verfügung stehen möchten." + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:65 +msgid "Enabled Gateways" +msgstr "Aktivierte Gateways" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:78 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:146 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:179 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:213 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:274 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:307 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:341 +msgid "Text" +msgstr "Text" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:71 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:139 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:172 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:206 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:267 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:300 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:334 +msgid "Subject" +msgstr "Betreff" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:52 +msgid "Notification Email" +msgstr "Benachrichtigungs-E-Mail" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:510 +msgid "Enabling this option will display label `excl. tax` or `incl. tax` after price" +msgstr "Wenn Sie diese Option aktivieren, wird das Label `excl. Steuer \"oder\" inkl. Steuer \"nach dem Preis gesetzt" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:509 +msgid "Display tax label?" +msgstr "Steuernummer anzeigen?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:504 +msgid "Enabling this option will show Price + Tax, eg. if your price is 100 and your tax 20, your price will be 120" +msgstr "Wenn Sie diese Option aktivieren, wird Preis + Steuern angezeigt. Wenn Ihr Preis 100 und Ihre Steuer 20 ist, wird Ihr Preis 120 sein" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:416 +#: includes/multisite/class-mp-admin-multisite.php:234 +msgid "Price Format" +msgstr "Preis-Format" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:366 +msgid "Enabling this field will display a textbox on the shipping checkout page for users to enter special instructions for their order. Useful for product personalization, etc." +msgstr "Wenn Sie dieses Feld aktivieren, wird ein Textfeld auf der Versand-Checkout-Seite angezeigt, damit Benutzer spezielle Anweisungen für ihre Bestellung eingeben können. Nützlich für Produkt-Personalisierung, etc." + +#: includes/admin/store-settings/class-mp-store-settings-general.php:365 +msgid "Show Special Instructions Field?" +msgstr "Spezielle Instruktionen anzeigen?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:360 +msgid "Universal" +msgstr "Universal" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:359 +msgid "Old" +msgstr "Alt" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1167 +#: includes/admin/store-settings/class-mp-store-settings-general.php:358 +msgid "New" +msgstr "Neu" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:353 +msgid "If you already use Google Analytics for your website, you can track detailed ecommerce information by enabling this setting. Choose whether you are using the new asynchronous or old tracking code. Before Google Analytics can report ecommerce activity for your website, you must enable ecommerce tracking on the profile settings page for your website. Also keep in mind that some gateways do not reliably show the receipt page, so tracking may not be accurate in those cases. It is recommended to use the PayPal gateway for the most accurate data. More information »" +msgstr "Wenn Sie bereits Google Analytics für Ihre Website verwenden, können Sie detaillierte E-Commerce-Informationen verfolgen, indem Sie diese Einstellung aktivieren. Wählen Sie, ob Sie den neuen asynchronen oder alten Tracking-Code verwenden. Bevor Google Analytics ecommerce-Aktivitäten für Ihre Website melden kann, müssen Sie das E-Commerce-Tracking auf der Seite \"Profileinstellungen\" für Ihre Website aktivieren. Beachten Sie auch, dass einige Gateways nicht zuverlässig die Quittungsseite anzeigen, so dass Tracking möglicherweise nicht genau in diesen Fällen. Es wird empfohlen, das PayPal-Gateway für die genauesten Daten zu verwenden. More information »" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:347 +msgid "Do you want to display the product price on floating Mini Cart." +msgstr "Möchten Sie den Produktpreis auf schwiebenden Mini-Korb anzeigen." + +#: includes/admin/store-settings/class-mp-store-settings-general.php:346 +msgid "Show product price on Mini Cart?" +msgstr "Produktpreis auf Mini-Korb zeigen?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:340 +msgid "Do you want to display the product quantity on floating Mini Cart." +msgstr "Möchten Sie die Produktmenge auf schwebenden Mini-Korb anzeigen." + +#: includes/admin/store-settings/class-mp-store-settings-general.php:339 +msgid "Show product quantity on Mini Cart?" +msgstr "Produktmenge anzeigen auf Mini-Korb?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:333 +msgid "Do you want to display the product image on floating Mini Cart." +msgstr "Möchten Sie das Produktbild auf einem schwebenden Mini-Korb anzeigen." + +#: includes/admin/store-settings/class-mp-store-settings-general.php:332 +msgid "Show product image on Mini Cart?" +msgstr "Produktbild im Minikorb anzeigen?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:327 +msgid "This option hide floating Mini Cart in top right corner." +msgstr "Diese Option versteckt den Minikorb in der oberen rechten Ecke." + +#: includes/admin/store-settings/class-mp-store-settings-general.php:326 +msgid "Disable Mini Cart?" +msgstr "Minikorb deaktivieren?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:316 +msgid "If unchecked your Orders admin page will be hidden" +msgstr "Unchecked Ihre Orders Admin-Seite wird ausgeblendet" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:315 +msgid "Show admin Orders page?" +msgstr "Admin-Seite anzeigen?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:309 +msgid "Disable Cart?" +msgstr "Warenkorb deaktivieren?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:303 +msgid "Force Login?" +msgstr "Login erzwingen?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:297 +msgid "Hide Out of Stock Products?" +msgstr "Ausverkaufte Produkte verbergen?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:555 +msgid "This will prevent multiples of the same downloadable product form being added to the cart." +msgstr "Dadurch wird verhindert, dass dem Einkaufswagen ein Vielfaches des gleichen herunterladbaren Produktformulars hinzugefügt wird." + +#: includes/admin/store-settings/class-mp-store-settings-general.php:554 +msgid "Limit Digital Products Per-order?" +msgstr "Beschränken Sie digitale Produkte auf Bestellung?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:268 +msgid "If you're having issues downloading large files and have worked with your hosting provider to increase your memory limits, try enabling this - just keep in mind, it's not as secure!" +msgstr "Wenn Sie Probleme beim Herunterladen großer Dateien haben und mit Ihrem Hosting-Provider gearbeitet haben, um Ihre Speichergrenzen zu erhöhen, versuchen Sie dies - nur im Kopf behalten, es ist nicht so sicher!" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:267 +msgid "Use Alternative Download Method?" +msgstr "Verwenden Sie Alternative Download-Methode?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:252 +msgid "Download Settings" +msgstr "Download-Einstellungen" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:230 +msgid "Change product post type" +msgstr "Ändern Sie die Produkt Beitragsart" + +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:51 +msgid "%s Capabilities" +msgstr "%s Berechtigungen" + +#: includes/admin/store-settings/class-mp-store-settings-addons.php:47 +msgid "Store Settings: Add Ons: %s" +msgstr "Shop Einstellungen: Addons: %s" + +#: includes/admin/class-mp-store-settings-admin.php:254 +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:56 +msgid "Capabilities" +msgstr "Berechtigungen" + +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Edit Product Attribute %s" +msgstr "Produktattribut bearbeiten &s" + +#: includes/admin/class-mp-store-settings-admin.php:246 +msgid "Exporters" +msgstr "Exporteure" + +#: includes/admin/class-mp-store-settings-admin.php:238 +msgid "Short Codes" +msgstr "Kurzcodes" + +#: includes/admin/class-mp-store-settings-admin.php:207 +msgid "An appropriate message for key \"%s\" could not be found." +msgstr "Eine entsprechende Meldung für Schlüssel \"%s\" konnte nicht gefunden werden." + +#: includes/admin/class-mp-store-settings-admin.php:204 +msgid "Product attribute updated successfully." +msgstr "Produktattribut wurde erfolgreich aktualisiert." + +#: includes/admin/class-mp-store-settings-admin.php:203 +msgid "Product attribute added successfully." +msgstr "Produktattribut erfolgreich hinzugefügt." + +#: includes/admin/class-mp-store-settings-admin.php:123 +msgid "Add Ons" +msgstr "Addons" + +#: includes/admin/class-mp-store-settings-admin.php:123 +#: includes/admin/store-settings/class-mp-store-settings-addons.php:121 +msgid "Store Settings: Add Ons" +msgstr "Shop Einstellungen: Addons" + +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "Store Settings: Capabilities" +msgstr "Shop Einstellungen: Berechtigungen" + +#: includes/admin/class-mp-store-settings-admin.php:118 +msgid "Store Settings: Product Tags" +msgstr "Shop Einstellungen: Produkttags" + +#: includes/admin/class-mp-store-settings-admin.php:117 +msgid "Store Settings: Product Categories" +msgstr "Shop Einstellungen: Produktkategorien" + +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Store Settings: Product Attributes" +msgstr "Shop Einstellungen: Produktattribute" + +#: includes/admin/class-mp-store-settings-admin.php:115 +msgid "Store Settings: Payments" +msgstr "Shop Einstellungen: Zahlungen" + +#: includes/admin/class-mp-store-settings-admin.php:114 +msgid "Store Settings: Shipping" +msgstr "Shop Einstellungen: Versand" + +#: includes/admin/class-mp-store-settings-admin.php:113 +#: includes/admin/class-mp-store-settings-admin.php:226 +msgid "Notifications" +msgstr "Benachrichtigungen" + +#: includes/admin/class-mp-store-settings-admin.php:113 +msgid "Store Settings: Notifications" +msgstr "Shop Einstellungen: " + +#: includes/admin/class-mp-store-settings-admin.php:112 +msgid "Store Settings: Presentation" +msgstr "Shop Einstellungen: Präsentation" + +#: includes/admin/class-mp-store-settings-admin.php:111 +msgid "Store Settings: General" +msgstr "Shop Einstellungen: Allgemein" + +#: includes/admin/class-mp-shortcode-builder.php:1489 +msgid "Select a Product" +msgstr "Wähle ein Produkt" + +#: includes/admin/class-mp-shortcode-builder.php:1447 +msgid "Reset to Defaults" +msgstr "Auf Standardeinstellung zurücksetzen" + +#: includes/admin/class-mp-shortcode-builder.php:1446 +msgid "Insert Short Code" +msgstr "Kurzcode einfügen" + +#: includes/admin/class-mp-shortcode-builder.php:1202 +#: includes/admin/class-mp-shortcode-builder.php:1227 +#: includes/admin/class-mp-shortcode-builder.php:1252 +msgid "The text to show in the link." +msgstr "Der zu zeigende Text im Link." + +#: includes/admin/class-mp-shortcode-builder.php:1196 +#: includes/admin/class-mp-shortcode-builder.php:1221 +#: includes/admin/class-mp-shortcode-builder.php:1246 +msgid "Whether to return a clickable link or url." +msgstr "Ob eine klickbare Link oder URL zurückzugeben ist." + +#: includes/admin/class-mp-shortcode-builder.php:1177 +msgid "Whether to display the cart only on store pages or not." +msgstr "Ob der Warenkorb nur auf Shopseiten angezeigt wird oder nicht." + +#: includes/admin/class-mp-shortcode-builder.php:1171 +msgid "Whether to show or hide the product price." +msgstr "Ob der Produktpreis zu zeigen oder zu verbergen ist." + +#: includes/admin/class-mp-shortcode-builder.php:1165 +msgid "Whether to show or hide the product quantity." +msgstr "Unabhängig davon, ob die Produktmenge angezeigt oder ausgeblendet werden soll." + +#: includes/admin/class-mp-shortcode-builder.php:1159 +msgid "Whether to show or hide the product image." +msgstr "Ob das Produktbild angezeigt oder ausgeblendet wird." + +#: includes/admin/class-mp-shortcode-builder.php:1153 +msgid "The text displayed before the cart." +msgstr "Der Text wird vor dem Warenkorb angezeigt." + +#: includes/admin/class-mp-shortcode-builder.php:1147 +msgid "The title of the cart." +msgstr "Der Titel des Einkaufskorbs." + +#: includes/admin/class-mp-shortcode-builder.php:1058 +#: includes/admin/class-mp-shortcode-builder.php:1121 +msgid "A label to prepend to the price." +msgstr "Ein Label, um den Preis vorzugeben." + +#: includes/admin/class-mp-shortcode-builder.php:1032 +#: includes/admin/class-mp-shortcode-builder.php:1127 +msgid "What context for display." +msgstr "Welcher Kontext für die Anzeige." + +#: includes/admin/class-mp-shortcode-builder.php:1004 +msgid "Set the alignment of the image." +msgstr "Legen Sie die Ausrichtung des Bildes fest." + +#: includes/admin/class-mp-shortcode-builder.php:998 +msgid "Set a custom pixel width/height. If omitted defaults to the size set by \"context\"." +msgstr "Legen Sie eine benutzerdefinierte Pixelbreite / -höhe fest. Wenn die Standardeinstellung auf die von \"context\" festgelegte Größe zurückgesetzt wird." + +#: includes/admin/class-mp-shortcode-builder.php:993 +msgid "Widget" +msgstr "Widget" + +#: includes/admin/class-mp-shortcode-builder.php:988 +msgid "What context for preset size options." +msgstr "Welchen Kontext für voreingestellte Größenoptionen." + +#: includes/admin/class-mp-shortcode-builder.php:982 +#: includes/admin/class-mp-shortcode-builder.php:1026 +#: includes/admin/class-mp-shortcode-builder.php:1052 +#: includes/admin/class-mp-shortcode-builder.php:1077 +#: includes/admin/class-mp-shortcode-builder.php:1096 +#: includes/admin/class-mp-shortcode-builder.php:1115 +msgid "The ID of the product." +msgstr "Die ID des Produkts." + +#: includes/admin/class-mp-shortcode-builder.php:963 +msgid "Whether to display the product meta (e.g. price, buy button)." +msgstr "Ob die Produktmeta (z. B. Preis, Kauftaste) angezeigt wird." + +#: includes/admin/class-mp-shortcode-builder.php:738 +#: includes/admin/class-mp-shortcode-builder.php:905 +#: includes/admin/class-mp-shortcode-builder.php:958 +#: includes/admin/class-mp-shortcode-builder.php:992 +#: includes/admin/class-mp-shortcode-builder.php:1035 +#: includes/admin/class-mp-shortcode-builder.php:1130 +#: includes/admin/class-mp-shortcode-builder.php:1349 +msgid "List" +msgstr "Liste" + +#: includes/admin/class-mp-shortcode-builder.php:957 +#: includes/admin/class-mp-shortcode-builder.php:991 +#: includes/admin/class-mp-shortcode-builder.php:1034 +#: includes/admin/class-mp-shortcode-builder.php:1129 +msgid "Single" +msgstr "Einzeln" + +#: includes/admin/class-mp-shortcode-builder.php:953 +msgid "Whether and what context of image size to display." +msgstr "Ob und welcher Kontext die Bildgröße angezeigt werden soll." + +#: includes/admin/class-mp-shortcode-builder.php:948 +msgid "Full" +msgstr "Voll" + +#: includes/admin/class-mp-shortcode-builder.php:943 +msgid "Whether and what type of content to display." +msgstr "Ob und welche Art von Inhalt angezeigt werden soll." + +#: includes/admin/class-mp-shortcode-builder.php:937 +msgid "Whether to display the product title." +msgstr "Ob der Produkttitel angezeigt werden soll." + +#: includes/admin/class-mp-shortcode-builder.php:931 +msgid "The ID of the product to display." +msgstr "Die ID des anzuzeigenden Produkts." + +#: includes/admin/class-mp-shortcode-builder.php:747 +#: includes/admin/class-mp-shortcode-builder.php:914 +msgid "Hide" +msgstr "Verberge" + +#: includes/admin/class-mp-shortcode-builder.php:746 +#: includes/admin/class-mp-shortcode-builder.php:913 +msgid "Show" +msgstr "Zeige" + +#: includes/admin/class-mp-shortcode-builder.php:744 +#: includes/admin/class-mp-shortcode-builder.php:911 +msgid "Whether or not to show the product filters." +msgstr "Ob die Produktfilter angezeigt werden oder nicht." + +#: includes/admin/class-mp-shortcode-builder.php:724 +#: includes/admin/class-mp-shortcode-builder.php:891 +#: includes/admin/class-mp-shortcode-builder.php:1335 +msgid "Limits list to a specific product tag." +msgstr "Begrenzt die Liste auf ein bestimmtes Produkt-Tag." + +#: includes/admin/class-mp-shortcode-builder.php:713 +#: includes/admin/class-mp-shortcode-builder.php:880 +#: includes/admin/class-mp-shortcode-builder.php:1324 +msgid "Limits list to a specific product category." +msgstr "Limitiert eine bestimmte Produktkategorie." + +#: includes/admin/class-mp-shortcode-builder.php:706 +#: includes/admin/class-mp-shortcode-builder.php:873 +#: includes/admin/class-mp-shortcode-builder.php:1317 +msgid "Direction to order products by." +msgstr "Ablauf der Produktbestellung." + +#: includes/admin/class-mp-shortcode-builder.php:684 +#: includes/admin/class-mp-shortcode-builder.php:851 +#: includes/admin/class-mp-shortcode-builder.php:1295 +msgid "What field to order products by." +msgstr "Welches Feld um Artikel zu bestellen." + +#: includes/admin/class-mp-shortcode-builder.php:678 +#: includes/admin/class-mp-shortcode-builder.php:845 +#: includes/admin/class-mp-shortcode-builder.php:1283 +msgid "How many products to display in the product list if \"paginate\" is set to true." +msgstr "Wie viele Produkte in der Produktliste angezeigt werden sollen, wenn \"paginate\" auf true gesetzt ist." + +#: includes/admin/class-mp-shortcode-builder.php:672 +#: includes/admin/class-mp-shortcode-builder.php:839 +#: includes/admin/class-mp-shortcode-builder.php:1277 +msgid "The page number to display in the product list if \"paginate\" is set to true." +msgstr "Die Seitenzahl, die in der Produktliste angezeigt werden soll, wenn \"paginate\" auf true gesetzt ist." + +#: includes/admin/class-mp-shortcode-builder.php:666 +#: includes/admin/class-mp-shortcode-builder.php:833 +#: includes/admin/class-mp-shortcode-builder.php:1271 +msgid "Whether to paginate the product list. This is useful to only show a subset." +msgstr "Ob die Produktliste paginiert werden soll. Dies ist nützlich, um nur eine Teilmenge anzuzeigen." + +#: includes/admin/class-mp-shortcode-builder.php:808 +msgid "How many related items to show." +msgstr "Wie viele verwandte Artikel zeigen." + +#: includes/admin/class-mp-shortcode-builder.php:790 +msgid "How to relate the products" +msgstr "Wie die Produkte zu beziehen" + +#: includes/admin/class-mp-shortcode-builder.php:784 +msgid "The product to show related items for." +msgstr "Das Produkt zum anzeigen der verwandten Einzelteile." + +#: includes/admin/class-mp-shortcode-builder.php:765 +msgid "The maximum number of products to display" +msgstr "Die maximale Anzahl der anzuzeigenden Produkte" + +#: includes/admin/class-mp-shortcode-builder.php:647 +msgid "Comma separated list of tags (term_id) to include. For example, include=5,27 means tags that have the term_id 5 or 27 will be the only tags displayed. Defaults to include everything." +msgstr "Kommagetrennte Liste von Tags (term_id), die eingeschlossen werden sollen. Beispiel: include = 5,27 bedeutet, dass Tags, die die term_id 5 oder 27 haben, als einzige Tags angezeigt werden. Defaults enthalten alles." + +#: includes/admin/class-mp-shortcode-builder.php:641 +msgid "Comma separated list of tags (term_id) to exclude. For example, exclude=5,27 means tags that have the term_id 5 or 27 will NOT be displayed. Defaults to exclude nothing." +msgstr "Von Kommata getrennte Liste von Tags (term_id) zum Ausschluss. Beispiel: exclude = 5,27 bedeutet, dass Tags, die die term_id 5 oder 27 haben, NICHT angezeigt werden. Standardmäßig wird nichts ausgeschlossen." + +#: includes/admin/class-mp-shortcode-builder.php:633 +#: includes/admin/class-mp-shortcode-builder.php:1420 +msgid "Sort order." +msgstr "Sortierreihenfolge." + +#: includes/admin/class-mp-shortcode-builder.php:629 +#: includes/admin/class-mp-shortcode-builder.php:1416 +msgid "Count" +msgstr "Zähler" + +#: includes/admin/class-mp-shortcode-builder.php:626 +#: includes/admin/class-mp-shortcode-builder.php:1413 +msgid "Order of the tags." +msgstr "Reihenfolge der Tags." + +#: includes/admin/class-mp-shortcode-builder.php:620 +msgid "The text/space between tags)" +msgstr "Der Text/Leerzeichen zwischen den Tags)" + +#: includes/admin/class-mp-shortcode-builder.php:616 +msgid "UL with a class of \"wp-tag-cloud\"" +msgstr "UL mit einer Klasse von \"wp-tag-cloud\"" + +#: includes/admin/class-mp-shortcode-builder.php:615 +msgid "separated by whitespace defined by \"separator\" parameter." +msgstr "Getrennt durch Leerzeichen durch den Parameter \"separator\" definiert." + +#: includes/admin/class-mp-shortcode-builder.php:613 +msgid "Format of the cloud display." +msgstr "Format der Cloud-Anzeige." + +#: includes/admin/class-mp-shortcode-builder.php:607 +msgid "The number of actual tags to display in the cloud. (Use \"0\" to display all tags.)" +msgstr "Die Anzahl der tatsächlich in der Cloud anzuzeigenden Tags. (Verwenden Sie \"0\", um alle Tags anzuzeigen.)" + +#: includes/admin/class-mp-shortcode-builder.php:601 +msgid "Unit of measure as pertains to the smallest and largest values. This can be any CSS length value, e.g. pt, px, em, %." +msgstr "Maßeinheit bezieht sich auf die kleinsten und größten Werte. Dies kann jeder CSS-Längenwert sein, z.B. Pt, px, em,%." + +#: includes/admin/class-mp-shortcode-builder.php:595 +msgid "The text size of the tag with the largest count value (units given by unit parameter)." +msgstr "Die Textgröße des Tags mit dem größten Zählwert (Einheiten, die durch den Einheitsparameter angegeben werden)." + +#: includes/admin/class-mp-shortcode-builder.php:589 +msgid "The text size of the tag with the smallest count value (units given by unit parameter)." +msgstr "Die Textgröße des Tags mit dem kleinsten Zählwert (Einheiten, die durch den Einheitsparameter angegeben werden)." + +#: includes/admin/class-mp-shortcode-builder.php:570 +msgid "The \"tabindex\" attribute value for select element. " +msgstr "Der Attributwert \"tabindex\" für ausgewähltes Element." + +#: includes/admin/class-mp-shortcode-builder.php:564 +msgid "The \"name\" attribute value for select element. " +msgstr "Der Attributwert \"Name\" für ausgewähltes Element." + +#: includes/admin/class-mp-shortcode-builder.php:558 +msgid "The \"id\" attribute value for select element. " +msgstr "Der Attributwert \"ID\" für ausgewähltes Element." + +#: includes/admin/class-mp-shortcode-builder.php:552 +msgid "Which category ID is selected." +msgstr "Welche Kategorie-ID ausgewählt ist." + +#: includes/admin/class-mp-shortcode-builder.php:540 +msgid "The max depth. This is ignored unless hierarchical is set to true." +msgstr "Die maximale Tiefe. Dies wird ignoriert, es sei denn, hierarchisch auf true gesetzt ist." + +#: includes/admin/class-mp-shortcode-builder.php:536 +#: includes/multisite/template-functions.php:816 +msgid "No Categories" +msgstr "Keine Kategorien" + +#: includes/admin/class-mp-shortcode-builder.php:414 +#: includes/admin/class-mp-shortcode-builder.php:546 +msgid "Calculates link or post counts by including items from child categories. If show_counts and hierarchical are true this is automatically set to true." +msgstr "Berechnet die Verknüpfung oder das Posten von Zählungen, indem Elemente aus untergeordneten Kategorien eingefügt werden. Wenn show_counts und hierarchical true sind, wird diese automatisch auf true gesetzt." + +#: includes/admin/class-mp-shortcode-builder.php:409 +msgid "Value of n (some number) specifies the depth (or level) to descend in displaying Categories." +msgstr "Der Wert von n (einige Zahl) gibt die Tiefe (oder den Pegel) an, um in der Anzeige von Kategorien abzusteigen." + +#: includes/admin/class-mp-shortcode-builder.php:408 +msgid "Show only top level Categories." +msgstr "Nur Top-Kategorien anzeigen." + +#: includes/admin/class-mp-shortcode-builder.php:407 +msgid "All Categories displayed in flat (no indent) form (overrides hierarchical)." +msgstr "Alle Kategorien werden in flachem (keinem Einzug) Formular angezeigt (überschreibt hierarchisch)." + +#: includes/admin/class-mp-shortcode-builder.php:406 +msgid "All Categories and child Categories (Default)." +msgstr "Alle Kategorien und Kind Kategorien (Standard)." + +#: includes/admin/class-mp-shortcode-builder.php:402 +msgid "This parameter controls how many levels in the hierarchy of Categories are to be included in the list of Categories. NOTE: The \"hierarchical\" argument, which is disabled by default, will override the depth argument, unless it is true. When the argument is false, it will display all of the categories. When it is enabled it will use the value in the \"depth\" argument." +msgstr "Dieser Parameter steuert, wie viele Stufen in der Hierarchie von Kategorien in die Liste der Kategorien aufgenommen werden sollen. HINWEIS: Das hierarchische Argument, das standardmäßig deaktiviert ist, überschreibt das Tiefenargument, sofern es nicht wahr ist. Wenn das Argument falsch ist, werden alle Kategorien angezeigt. Wenn er aktiviert ist, wird er den Wert im Argument \"depth\" verwenden." + +#: includes/admin/class-mp-shortcode-builder.php:396 +#: includes/admin/class-mp-shortcode-builder.php:1394 +msgid "Sets the number of Categories to display. This causes the SQL LIMIT value to be defined." +msgstr "Legt die Anzahl der anzuzeigenden Kategorien fest. Dadurch wird der SQL-GRENZWERT definiert." + +#: includes/admin/class-mp-shortcode-builder.php:390 +#: includes/admin/class-mp-shortcode-builder.php:534 +msgid "Set the text to show when no categories are listed." +msgstr "Legen Sie den Text fest, der angezeigt werden soll, wenn keine Kategorien aufgeführt sind." + +#: includes/admin/class-mp-shortcode-builder.php:384 +msgid "Set the title and style of the outer list item. If present but empty, the outer list item will not be displayed." +msgstr "Legen Sie den Titel und den Stil des äußeren Listenelements fest. Wenn vorhanden, aber leer, wird das äußere Listenelement nicht angezeigt." + +#: includes/admin/class-mp-shortcode-builder.php:378 +#: includes/admin/class-mp-shortcode-builder.php:528 +msgid "Display sub-categories as inner list items (below the parent list item) or inline." +msgstr "Zeigen Sie Unterkategorien als innere Listenelemente (unter dem übergeordneten Listenelement) oder inline an." + +#: includes/admin/class-mp-shortcode-builder.php:368 +#: includes/admin/class-mp-shortcode-builder.php:511 +msgid "Exclude category-tree from the results. The parameter include must be empty. If the hierarchical parameter is true, then use exclude instead of exclude_tree." +msgstr "Kategorie-Baum aus den Ergebnissen ausschließen. Der Parameter include muss leer sein. Wenn der hierarchische Parameter true ist, verwenden Sie exclude anstelle von exclude_tree." + +#: includes/admin/class-mp-shortcode-builder.php:354 +msgid "Only include these categories." +msgstr "Nur diese Kategorien." + +#: includes/admin/class-mp-shortcode-builder.php:340 +#: includes/admin/class-mp-shortcode-builder.php:356 +#: includes/admin/class-mp-shortcode-builder.php:370 +#: includes/admin/class-mp-shortcode-builder.php:496 +#: includes/admin/class-mp-shortcode-builder.php:513 +msgid "Select Categories" +msgstr "Wählen Sie Kategorien" + +#: includes/admin/class-mp-shortcode-builder.php:338 +#: includes/admin/class-mp-shortcode-builder.php:494 +msgid "Exclude one or more categories from the results. The parameter include must be empty." +msgstr "Eine oder mehrere Kategorien aus den Ergebnissen ausschließen. Der Parameter include muss leer sein." + +#: includes/admin/class-mp-shortcode-builder.php:332 +msgid "Set a URI for an image (usually an rss feed icon) to act as a link to each categories' rss-2 feed. This parameter overrides the feed parameter. There is no default for this parameter." +msgstr "Setzen Sie einen URI für ein Bild (in der Regel ein RSS-Symbol), um als ein Link zu jeder Kategorie 'rss-2-Feed. Dieser Parameter überschreibt den Feedparameter. Für diesen Parameter gibt es keine Vorgabe." + +#: includes/admin/class-mp-shortcode-builder.php:320 +msgid "Display a link to each category's rss-2 feed and set the link text to display. The default is no text and no feed displayed." +msgstr "Zeigen Sie einen Link zu jeder Kategorie rss-2-Feed und legen Sie den Link-Text anzuzeigen. Der Standardwert ist kein Text und es wird kein Feed angezeigt." + +#: includes/admin/class-mp-shortcode-builder.php:313 +#: includes/admin/class-mp-shortcode-builder.php:487 +msgid "Any" +msgstr "Beliebig" + +#: includes/admin/class-mp-shortcode-builder.php:307 +#: includes/admin/class-mp-shortcode-builder.php:481 +msgid "Only display categories that are children of the category identified by this parameter." +msgstr "Nur Kategorien anzeigen, die Kinder der Kategorie sind, die mit diesem Parameter gekennzeichnet ist." + +#: includes/admin/class-mp-shortcode-builder.php:301 +msgid "Sets whether a category's description is inserted into the title attribute of the links created (i.e. <a title=\"<em>Category Description</em>\" href=\"...)." +msgstr "Legt fest, ob eine Kategorienbeschreibung in das title-Attribut der erzeugten Links eingefügt wird (D.H. <a title=\"<em>Kategoriebeschreibung</em>\" href=\"...)." + +#: includes/admin/class-mp-shortcode-builder.php:295 +#: includes/admin/class-mp-shortcode-builder.php:475 +msgid "Toggles the display of categories with no posts." +msgstr "Schaltet die Anzeige von Kategorien ohne Einträge um." + +#: includes/admin/class-mp-shortcode-builder.php:289 +#: includes/admin/class-mp-shortcode-builder.php:469 +#: includes/admin/class-mp-shortcode-builder.php:1388 +msgid "Toggles the display of the current count of posts in each category." +msgstr "Schaltet die Anzeige der aktuellen Anzahl von Posts in jeder Kategorie um." + +#: includes/admin/class-mp-shortcode-builder.php:279 +msgid "Style to display the categories list in. A value of list displays the categories as list items while none generates no special display method (the list items are separated by
    tags)." +msgstr "Stil, um die Kategorienliste anzuzeigen. Ein Wert der Liste zeigt die Kategorien als Listenelemente an, während keine keine spezielle Anzeigemethode erzeugt (die Listenelemente sind durch
    Tags getrennt)." + +#: includes/admin/class-mp-shortcode-builder.php:269 +#: includes/admin/class-mp-shortcode-builder.php:449 +#: includes/admin/class-mp-shortcode-builder.php:1378 +msgid "Sort order for categories (either ascending or descending)." +msgstr "Sortierung nach Kategorien (aufsteigend oder absteigend)." + +#: includes/admin/class-mp-shortcode-builder.php:259 +#: includes/admin/class-mp-shortcode-builder.php:439 +#: includes/admin/class-mp-shortcode-builder.php:1368 +msgid "Sort categories alphabetically, by unique Category ID, or by the count of posts in that Category." +msgstr "Sortieren Sie die Kategorien alphabetisch, nach der eindeutigen Kategorie-ID oder nach der Anzahl der Stellen in dieser Kategorie." + +#: includes/admin/class-mp-shortcode-builder.php:253 +#: includes/admin/class-mp-shortcode-builder.php:433 +msgid "If a value is entered, causes the display of a link to all categories if the style is set to list." +msgstr "Wenn ein Wert eingegeben wird, wird die Anzeige einer Verknüpfung zu allen Kategorien angezeigt, wenn der Stil auf Liste gesetzt ist." + +#: includes/admin/class-mp-shortcode-builder.php:219 +msgid "Select an Action" +msgstr "Wählen Sie eine Aktion aus" + +#: includes/admin/class-mp-shortcode-builder.php:217 +msgid "What would you like to do?" +msgstr "Was würdest du gern tun?" + +#: includes/admin/class-mp-shortcode-builder.php:216 +#: includes/admin/class-mp-shortcode-builder.php:1522 +msgid "Add E-Commerce Short Code" +msgstr "Fügen Sie E-Commerce-Kurzcode hinzu" + +#: includes/admin/class-mp-shortcode-builder.php:197 +msgid "Display a list of links to your store pages." +msgstr "Zeigt eine Liste der Links zu Ihren Shop-Seiten an." + +#: includes/admin/class-mp-shortcode-builder.php:196 +msgid "Display a link or url to the order status page." +msgstr "Zeigen Sie einen Link oder eine URL zur Bestellstatusseite an." + +#: includes/admin/class-mp-shortcode-builder.php:195 +msgid "Display a link or url to the current products list page." +msgstr "Zeigen Sie einen Link oder eine URL zur aktuellen Produktliste an." + +#: includes/admin/class-mp-shortcode-builder.php:194 +msgid "Display a link or url to the current store page." +msgstr "Zeigen Sie einen Link oder eine URL zur aktuellen Shopseite an." + +#: includes/admin/class-mp-shortcode-builder.php:193 +msgid "Display a link or url to the current shopping cart page." +msgstr "Zeigen Sie einen Link oder eine URL zur aktuellen Warenkorbseite an." + +#: includes/admin/class-mp-shortcode-builder.php:192 +msgid "Display the cart widget." +msgstr "Anzeigen des Warenkorb Widgets." + +#: includes/admin/class-mp-shortcode-builder.php:191 +msgid "Display the full product meta box with price and buy now/add to cart button." +msgstr "Zeigen Sie die volle Produktmetabox mit Preis und kaufen Sie jetzt/hinzufügen zu Warenkorb, an." + +#: includes/admin/class-mp-shortcode-builder.php:190 +msgid "Display the product stock." +msgstr "Zeigen Sie den Produktbestand an." + +#: includes/admin/class-mp-shortcode-builder.php:189 +msgid "Display the product SKU number(s)." +msgstr "Produkt-Artikel-Nummer(n) anzeigen." + +#: includes/admin/class-mp-shortcode-builder.php:188 +msgid "Display the product price (and sale price)." +msgstr "Zeigen Sie den Produktpreis (und den Verkaufspreis) an." + +#: includes/admin/class-mp-shortcode-builder.php:187 +msgid "Display the buy or add to cart button." +msgstr "Zeigen Sie den Kauf oder fügen Sie den Warenkorb-Button hinzu." + +#: includes/admin/class-mp-shortcode-builder.php:186 +msgid "Display the featured image of a given product." +msgstr "Zeigen Sie das vorgestellte Bild eines bestimmten Produkts an." + +#: includes/admin/class-mp-shortcode-builder.php:185 +msgid "Display a single product." +msgstr "Zeigt ein einzelnes Produkt an." + +#: includes/admin/class-mp-shortcode-builder.php:184 +msgid "Display a list of products according to preference." +msgstr "Zeigen Sie eine Liste der Produkte nach Vorliebe an." + +#: includes/admin/class-mp-shortcode-builder.php:183 +msgid "Display products related to the one being viewed." +msgstr "Zeigen Sie Produkte an, die betrachtet werden." + +#: includes/admin/class-mp-shortcode-builder.php:182 +msgid "Display a list of popular products ordered by sales." +msgstr "Zeigen Sie eine Liste der beliebten Produkte nach Umsatz sortiert." + +#: includes/admin/class-mp-shortcode-builder.php:180 +msgid "Display an HTML dropdown of your product categories." +msgstr "Zeigen Sie ein HTML-Dropdown Ihrer Produktkategorien an." + +#: includes/admin/class-mp-shortcode-builder.php:179 +msgid "Display an HTML list of your product categories." +msgstr "Zeigen Sie eine HTML-Liste Ihrer Produktkategorien an." + +#: includes/admin/class-mp-shortcode-builder.php:178 +msgid "Display a cloud or list of your product tags." +msgstr "Zeigen Sie eine Wolke oder eine Liste Ihrer Produkt-Tags an." + +#: includes/admin/class-mp-setup-wizard.php:655 +msgid "Setup your payment gateway" +msgstr "Richten Sie Ihr Zahlungs-Gateway ein" + +#: includes/admin/class-mp-setup-wizard.php:643 +#: includes/admin/class-mp-setup-wizard.php:649 +msgid "Other Gateways" +msgstr "Andere Gateways" + +#: includes/admin/class-mp-setup-wizard.php:617 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:150 +msgid "Select which calculated shipping methods the customer will be able to choose from." +msgstr "Wählen Sie aus, welche Versandmethoden der Kunde wählen kann." + +#: includes/admin/class-mp-setup-wizard.php:601 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:134 +#: includes/public/class-mp-checkout.php:82 +msgid "Shipping Method" +msgstr "Versandmethode" + +#: includes/admin/class-mp-setup-wizard.php:568 +msgid "I want to charge shipping" +msgstr "Ich werde Versandgebühren verrechnen" + +#: includes/admin/class-mp-setup-wizard.php:523 +#: includes/admin/store-settings/class-mp-store-settings-general.php:503 +msgid "Show Price + Tax?" +msgstr "Preis + Steuern anzeigen?" + +#: includes/admin/class-mp-setup-wizard.php:507 +msgid "I.e. Taxes, VAT, GST, etc" +msgstr "D.h. Steuern, VAT, GST, etc" + +#: includes/admin/class-mp-setup-wizard.php:491 +#: includes/admin/store-settings/class-mp-store-settings-general.php:471 +msgid "Current Rates" +msgstr "Aktuelle Preise" + +#: includes/admin/class-mp-setup-wizard.php:473 +msgid "Default Tax Rate" +msgstr "Standardsteuersatz" + +#: includes/admin/class-mp-setup-wizard.php:434 +#: includes/admin/class-mp-setup-wizard.php:442 +#: includes/admin/store-settings/class-mp-store-settings-general.php:386 +#: includes/admin/store-settings/class-mp-store-settings-general.php:394 +#: includes/multisite/class-mp-admin-multisite.php:204 +#: includes/multisite/class-mp-admin-multisite.php:212 +msgid "Select a Currency" +msgstr "Wählen Sie eine Währung" + +#: includes/admin/class-mp-setup-wizard.php:414 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:105 +msgid "Choose Countries" +msgstr "Wählen Sie Länder" + +#: includes/admin/class-mp-setup-wizard.php:411 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:103 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:104 +msgid "All Countries" +msgstr "Alle Länder" + +#: includes/admin/class-mp-setup-wizard.php:410 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:102 +msgid "These are the countries that you will ship to." +msgstr "Dies sind die Länder, in welche Sie versenden." + +#: includes/admin/class-mp-setup-wizard.php:409 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:101 +msgid "Target Countries" +msgstr "Zielländer" + +#: includes/admin/class-mp-setup-wizard.php:401 +msgid "Countries" +msgstr "Länder" + +#: includes/admin/class-mp-setup-wizard.php:387 +#: includes/admin/store-settings/class-mp-store-settings-general.php:640 +msgid "Zip/Postal Code Label" +msgstr "Zip/Postleitzahl Bezeichnung" + +#: includes/admin/class-mp-setup-wizard.php:352 +#: includes/admin/store-settings/class-mp-store-settings-general.php:606 +msgid "Select a State/Province/Region" +msgstr "Wählen Sie ein Bundesland/eine Region" + +#: includes/admin/class-mp-setup-wizard.php:335 +#: includes/admin/store-settings/class-mp-store-settings-general.php:590 +msgid "Select A Country" +msgstr "Wähle ein Land" + +#: includes/admin/class-mp-setup-wizard.php:332 +#: includes/admin/store-settings/class-mp-store-settings-general.php:587 +msgid "Select a Country" +msgstr "Wähle ein Land" + +#: includes/admin/class-mp-setup-wizard.php:324 +msgid "Location" +msgstr "Ort" + +#: includes/admin/class-mp-setup-wizard.php:304 +#: includes/admin/class-mp-setup-wizard.php:312 +#: includes/admin/class-mp-store-settings-admin.php:129 +#: includes/admin/class-mp-store-settings-admin.php:262 +msgid "Quick Setup" +msgstr "Schnellinstallation" + +#: includes/admin/class-mp-setup-wizard.php:289 +msgid "MarketPress setup is not complete! Run setup wizard" +msgstr "MarketPress-Setup ist nicht vollständig! Setup starten" + +#: includes/admin/class-mp-products-admin.php:2479 +msgid "Enter your product name here" +msgstr "Geben Sie hier Ihren Produktnamen ein" + +#: includes/admin/class-mp-products-admin.php:2440 +msgid "Select a %s" +msgstr "Wählen Sie %s aus" + +#: includes/admin/class-mp-products-admin.php:2426 +msgid "Each product variation needs to have product attributes assigned to it so the system knows how to differentiate one product variation from the other. It is important that you assign a category to this product before choosing any attributes." +msgstr "Jede Produktvariation muss Produktattributen zugeordnet sein, damit das System weiß, wie man eine Produktvariation von der anderen unterscheidet. Es ist wichtig, dass Sie diesem Produkt eine Kategorie zuordnen, bevor Sie Attribute auswählen." + +#: includes/admin/class-mp-products-admin.php:2409 +msgid "If you would like this variation to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "Wenn Sie diese Variante verwenden möchten, geben Sie sie hier ein. Wenn Sie das Symbol \"%\" weglassen, wird der Preis als fester Betrag für jedes Produkt im Warenkorb des Benutzers berechnet." + +#: includes/admin/class-mp-products-admin.php:2320 +msgid "Sale Price (if applicable)" +msgstr "Verkaufspreis (falls zutreffend)" + +#: includes/admin/class-mp-products-admin.php:2281 +msgid "If you would like the description to be different than the main product enter it here." +msgstr "Wenn Sie möchten, dass die Beschreibung anders als das Hauptprodukt ist, geben Sie es hier ein." + +#: includes/admin/class-mp-products-admin.php:2229 +msgid "Image" +msgstr "Bild" + +#: includes/admin/class-mp-products-admin.php:2202 +#: includes/admin/class-mp-shortcode-builder.php:226 +msgid "Attributes" +msgstr "Attribute" + +#: includes/admin/class-mp-products-admin.php:2166 +msgid "Create your product variations here. You can reorder variations by using the number to left of each variation, or delete one by clicking the \"x\" to the right of each variation. NOTE: The variation that shows up first in this list will be considered the \"main variation\". The details from this variation will be used in product listings." +msgstr "Erstellen Sie hier Ihre Produktvarianten. Sie können Variationen anpassen, indem Sie die Zahl links von jeder Variation verwenden, oder sie löschen, indem Sie auf das \"x\" rechts neben jeder Variation klicken. ANMERKUNG: Die Variation, die zuerst in dieser Liste angezeigt wird, wird als die \"Hauptvariation\" betrachtet. Die Details dieser Variante werden in Produktlisten verwendet." + +#: includes/admin/class-mp-products-admin.php:2061 +#: includes/admin/class-mp-products-admin.php:2332 +msgid "Value must be less than regular price" +msgstr "Wert muss kleiner sein als regulärer Preis" + +#: includes/admin/class-mp-products-admin.php:2043 +#: includes/admin/class-mp-products-admin.php:2306 +msgid "Regular Price" +msgstr "Regulärer Preis" + +#: includes/admin/class-mp-products-admin.php:2023 +#: includes/admin/class-mp-products-admin.php:2286 +msgid "External URL" +msgstr "Externe URL" + +#: includes/admin/class-mp-products-admin.php:1988 +#: includes/admin/class-mp-products-admin.php:2245 +msgid "Enter the quantity that you have available to sell." +msgstr "Geben Sie die Menge ein, die Sie zum Verkaufen zur Verfügung haben." + +#: includes/admin/class-mp-products-admin.php:1987 +#: includes/admin/class-mp-products-admin.php:2244 +msgid "Inventory Count" +msgstr "Inventurzählung" + +#: includes/admin/class-mp-products-admin.php:1977 +#: includes/admin/class-mp-products-admin.php:2234 +msgid "Track Inventory?" +msgstr "Track Inventar?" + +#: includes/admin/class-mp-products-admin.php:1871 +msgid "%1$sProduct Images%2$s %3$sAdd images of the product. The first image on the list is the featured image for this product (you can reorder images on the list)%2$s" +msgstr "%1$sProduktbilder%2$s %3$sAd Bilder des Produkts. Das erste Bild auf der Liste ist das vorgestellte Bild für dieses Produkt (Sie können Bilder in der Liste neu anordnen)%2$s" + +#: includes/admin/class-mp-products-admin.php:1806 +msgid "Add variations for this product. e.g. If you are selling t-shirts, you can create Color & Size variations" +msgstr "Fügen Sie Variationen für dieses Produkt hinzu. z.B. Wenn Sie T-Shirts verkaufen, können Sie Color & Size Variationen erstellen" + +#: includes/admin/class-mp-products-admin.php:1804 +msgid "%3$sAdd variations for%2$s %1$sProduct%2$s" +msgstr "%3$sAdd-Variationen für%2$s %1$sProdukt%2$s" + +#: includes/admin/class-mp-products-admin.php:1776 +msgid "This product has a multiple variations %1$s(e.g. Multiple colors, sizes)%2$s" +msgstr "Dieses Produkt hat mehrere Variationen %1$s(z. B. mehrere Farben, Größen)%2$s" + +#: includes/admin/class-mp-products-admin.php:1775 +msgid "This is a unique product without variations" +msgstr "Dies ist ein einzigartiges Produkt ohne Variationen" + +#: includes/admin/class-mp-products-admin.php:1700 +msgid "Extra Shipping Cost %1$s(if applicable)%2$s" +msgstr "Zusätzliche Versandkosten %1$s(falls zutreffend)%2$s" + +#: includes/admin/class-mp-products-admin.php:1659 +#: includes/admin/class-mp-products-admin.php:2112 +#: includes/admin/class-mp-products-admin.php:2359 +msgid "Weight" +msgstr "Gewicht" + +#: includes/admin/class-mp-products-admin.php:1636 +#: includes/admin/class-mp-products-admin.php:2098 +#: includes/admin/class-mp-products-admin.php:2416 +msgid "Please enter a valid tax rate" +msgstr "Bitte geben Sie einen gültigen Steuersatz ein" + +#: includes/admin/class-mp-products-admin.php:1531 +msgid "Limit Per Order %1$s(limit the number of the item a shopper can buy per order)%2$s" +msgstr "Limit pro Bestellung %1$s(Begrenzung der Anzahl der Artikel, die ein Kunde pro Bestellung bestellen kann)%2$s" + +#: includes/admin/class-mp-products-admin.php:1513 +msgid "SKU %1$s(Stock Keeping Unit)%2$s" +msgstr "SKU %1$s(Lagerhaltung Einheit)%2$s" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "%1$sPrice, Inventory & Variants%2$s %3$sSet price, manage inventory and create Product Variants (if appropriate for your product).%2$s" +msgstr "%1$sPreis, Inventar & Varianten%2$s %3$Preis festlegen, Inventar verwalten und Produktvarianten erstellen (falls für Ihr Produkt geeignet).%2$s" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "Product Variations" +msgstr "Produktvarianten" + +#: includes/admin/class-mp-products-admin.php:1480 +msgid "External / Affiliate Link" +msgstr "Externer / Affiliate-Link" + +#: includes/admin/class-mp-products-admin.php:1471 +msgid "Digital Download" +msgstr "Digitaler Download" + +#: includes/admin/class-mp-products-admin.php:1470 +msgid "Physical / Tangible Product" +msgstr "Physisches / Sachliches Produkt" + +#: includes/admin/class-mp-products-admin.php:1464 +msgid "Product Kind %1$s(Physical Product, Digital, etc)%2$s" +msgstr "Produkt-Art %1$s(Physisches Produkt, Digital, usw)%2$s" + +#: includes/admin/class-mp-products-admin.php:1426 +msgid "Choose Products" +msgstr "Wählen Sie Produkte" + +#: includes/admin/class-mp-products-admin.php:1420 +msgid "If you would like, you can choose specific related products instead of using the ones generated by MarketPress" +msgstr "Wenn Sie möchten, können Sie spezifische verwandte Produkte anstatt mit denen, die von MarketPress generiert werden" + +#: includes/admin/class-mp-products-admin.php:1019 +msgid "Changes saved successfully" +msgstr "Änderungen erfolgreich gespeichert" + +#: includes/admin/class-mp-products-admin.php:826 +msgid "Option cannot be saved. Try again." +msgstr "Option kann nicht gespeichert werden. Versuch es noch einmal." + +#: includes/admin/class-mp-products-admin.php:821 +msgid "Option saved successfully." +msgstr "Option wurde erfolgreich gespeichert." + +#: includes/admin/class-mp-products-admin.php:467 +msgid "Img" +msgstr "Bild" + +#: includes/admin/class-mp-product-attributes-list-table.php:57 +msgid "Product attribute(s) deleted successfully." +msgstr "Produktattribut(e) erfolgreich gelöscht." + +#: includes/admin/class-mp-product-attributes-admin.php:162 +msgid "- Create New Variation -" +msgstr "- Neue Variante erstellen -" + +#: includes/admin/class-mp-product-attributes-admin.php:144 +msgid "Only lowercase letters and dashes (-) are allowed." +msgstr "Nur Kleinbuchstaben und Bindestriche (-) sind erlaubt." + +#: includes/admin/class-mp-product-attributes-admin.php:139 +msgid "If a slug is not entered, it will be generated automatically. Max 32 characters." +msgstr "Wenn kein Slug eingegeben wird, wird dieser automatisch generiert. Maximal 32 Zeichen." + +#: includes/admin/class-mp-product-attributes-admin.php:138 +#: includes/admin/class-mp-product-attributes-list-table.php:23 +msgid "Slug" +msgstr "Slug" + +#: includes/admin/class-mp-product-attributes-admin.php:130 +msgid "Max 45 characters." +msgstr "Max. 45 Zeichen." + +#: includes/admin/class-mp-product-attributes-admin.php:123 +msgid "Use the numbers on the left to sort. To delete - click the \"X\" to the right of each row." +msgstr "Verwenden Sie die Zahlen auf der linken Seite zu sortieren. Zum Löschen - klicken Sie auf das \"X\" rechts neben jeder Zeile." + +#: includes/admin/class-mp-product-attributes-admin.php:122 +msgid "Attribute Options" +msgstr "Attributoptionen" + +#: includes/admin/class-mp-product-attributes-admin.php:121 +msgid "Add Option" +msgstr "Option hinzufügen" + +#: includes/admin/class-mp-product-attributes-admin.php:105 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:523 +msgid "Sort Order" +msgstr "Sortierreihenfolge" + +#: includes/admin/class-mp-product-attributes-admin.php:87 +msgid "Alphabetical" +msgstr "Alphabetisch" + +#: includes/admin/class-mp-product-attributes-admin.php:86 +msgid "ID" +msgstr "ID" + +#: includes/admin/class-mp-product-attributes-admin.php:84 +msgid "Select how the options will be sorted." +msgstr "Wählen Sie aus, wie die Optionen sortiert werden sollen." + +#: includes/admin/class-mp-product-attributes-admin.php:82 +msgid "Sort By" +msgstr "Sortiere nach" + +#: includes/admin/class-mp-product-attributes-admin.php:75 +msgid "The name of the attribute (e.g. color, size, etc)" +msgstr "Der Name des Attributs (z. B. Farbe, Größe, etc.)" + +#: includes/admin/class-mp-product-attributes-admin.php:74 +msgid "Attribute Name" +msgstr "Attributname" + +#: includes/admin/class-mp-product-attributes-admin.php:69 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Product Attribute" +msgstr "Produktattribut hinzufügen" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Attribute" +msgstr "Attribute hinzufügen" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Product Attributes" +msgstr "Produkteigenschaften" + +#: includes/admin/class-mp-pages-admin.php:71 +msgid "You can choose to make this page one of the following core store pages." +msgstr "Sie können wählen um diese Seite als eine der folgenden Store-Coreseiten zu erstellen." + +#: includes/admin/class-mp-pages-admin.php:66 +msgid "Network Store Base" +msgstr "Netzwerk Storebasis" + +#: includes/admin/class-mp-pages-admin.php:61 +msgid "Checkout Page" +msgstr "Kasse Seite" + +#: includes/admin/class-mp-pages-admin.php:52 +msgid "Store Page Settings" +msgstr "Seiteneinstellungen speichern" + +#: includes/admin/class-mp-orders-admin.php:1108 +msgid "Display billing/shipping info for this customer" +msgstr "Zeigen Sie Abrechnungs- / Versandinformationen für diesen Kunden an" + +#: includes/admin/class-mp-orders-admin.php:1097 +msgid "View order “%s”" +msgstr "Bestellung “%s” ansehen" + +#: includes/admin/class-mp-orders-admin.php:1072 +msgid "Flag as:" +msgstr "Markieren als:" + +#: includes/admin/class-mp-orders-admin.php:952 +msgid "Move To Trash" +msgstr "Ab in den Müll" + +#: includes/admin/class-mp-orders-admin.php:948 +msgid " Received" +msgstr "Empfangen" + +#: includes/admin/class-mp-orders-admin.php:927 +msgid "Enter coupon code here" +msgstr "Geben Sie hier den Gutschein-Code ein" + +#: includes/admin/class-mp-orders-admin.php:812 +msgid "The order status could not be updated due to unexpected error. Please try again." +msgstr "Der Auftragsstatus konnte aufgrund eines unerwarteten Fehlers nicht aktualisiert werden. Bitte versuche es erneut." + +#: includes/admin/class-mp-orders-admin.php:740 +msgid "An invalid bulk action was requested. Please go back and try again." +msgstr "Eine ungültige Massenaktion wurde angefordert. Bitte gehen Sie zurück und versuchen Sie es erneut." + +#: includes/admin/class-mp-orders-admin.php:692 +msgid "The order status for order ID %1$s was updated successfully." +msgstr "Der Bestellstatus für Bestell-ID %1$s wurde erfolgreich aktualisiert." + +#: includes/admin/class-mp-orders-admin.php:688 +msgid "Order statuses successfully updated." +msgstr "Bestellstatus erfolgreich aktualisiert." + +#: includes/admin/class-mp-orders-admin.php:530 +msgid "Method" +msgstr "Methode" + +#: includes/admin/class-mp-orders-admin.php:518 +msgid "Actual Shipping Method" +msgstr "Aktuelle Versandmethode" + +#: includes/admin/class-mp-orders-admin.php:513 +msgid "Method Paid For" +msgstr "Bezahlmethode" + +#: includes/admin/class-mp-orders-admin.php:504 +msgid "Amount Collected" +msgstr "Betrag gesammelt" + +#: includes/admin/class-mp-orders-admin.php:477 +msgid "DHL" +msgstr "DHL" + +#: includes/admin/class-mp-orders-admin.php:408 +msgid "There is no IPN history to show at this time" +msgstr "Derzeit gibt es keine IPN-Historie" + +#: includes/admin/class-mp-orders-admin.php:345 +msgid "Type" +msgstr "Art" + +#: includes/admin/class-mp-orders-admin.php:343 +msgid "Gateway" +msgstr "Gateway" + +#: includes/admin/class-mp-orders-admin.php:301 +#: includes/common/template-functions.php:528 +msgid "Order History" +msgstr "Bestellverlauf" + +#: includes/admin/class-mp-orders-admin.php:291 +msgid "IPN History" +msgstr "IPN-Verlauf" + +#: includes/admin/class-mp-orders-admin.php:283 +msgid "Customer Info" +msgstr "Kundeninfo" + +#: includes/admin/class-mp-orders-admin.php:279 +msgid "Order Details" +msgstr "Bestelldetails" + +#: includes/admin/class-mp-exporter-orders.php:157 +msgid "All Dates" +msgstr "Alle Termine" + +#: includes/admin/class-mp-dashboard-widgets.php:320 +msgid "Add Pages to Menu" +msgstr "Seiten zum Menü hinzufügen" + +#: includes/admin/class-mp-dashboard-widgets.php:318 +msgid "Add-ons" +msgstr "Add-ons" + +#: includes/admin/class-mp-dashboard-widgets.php:317 +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "User Capabilities" +msgstr "Benutzerfähigkeiten" + +#: includes/admin/class-mp-dashboard-widgets.php:316 +#: includes/admin/class-mp-setup-wizard.php:631 +#: includes/admin/store-settings/class-mp-store-settings-payments.php:50 +msgid "Payment Gateways" +msgstr "Zahlungs-Gateways" + +#: includes/admin/class-mp-dashboard-widgets.php:315 +msgid "Shipping Rates" +msgstr "Versandkosten" + +#: includes/admin/class-mp-dashboard-widgets.php:312 +msgid "Configure" +msgstr "Konfigurieren" + +#: includes/admin/class-mp-dashboard-widgets.php:309 +#: includes/admin/class-mp-products-admin.php:466 +#: includes/admin/class-mp-shortcode-builder.php:797 +msgid "Tags" +msgstr "Schlagwörter" + +#: includes/admin/class-mp-dashboard-widgets.php:308 +#: includes/admin/class-mp-products-admin.php:465 +msgid "Categories" +msgstr "Kategorien" + +#: includes/admin/class-mp-dashboard-widgets.php:300 +msgid "Manage" +msgstr "Verwalten" + +#: includes/admin/class-mp-dashboard-widgets.php:297 +msgid "Here's some quick links to manage your store and products." +msgstr "Hier sind einige schnelle Links, um Ihr Geschäft und Produkte zu verwalten." + +#: includes/admin/class-mp-dashboard-widgets.php:288 +msgid "low in stock" +msgstr "Niedrig auf Lager" + +#: includes/admin/class-mp-dashboard-widgets.php:287 +msgid "%s product" +msgid_plural "%s products" +msgstr[0] "%s Produkt" +msgstr[1] "%s Produkte" + +#: includes/admin/class-mp-dashboard-widgets.php:280 +msgid "received" +msgstr "empfangen" + +#: includes/admin/class-mp-dashboard-widgets.php:279 +#: includes/admin/class-mp-dashboard-widgets.php:283 +msgid "%s order" +msgid_plural "%s orders" +msgstr[0] "%s Bestellung" +msgstr[1] "%s Bestellungen" + +#: includes/admin/class-mp-dashboard-widgets.php:276 +msgid "Stock & Orders" +msgstr "Lager & Aufträge" + +#: includes/admin/class-mp-dashboard-widgets.php:261 +msgid "Last 30 Days" +msgstr "Letzten 30 Tage" + +#: includes/admin/class-mp-dashboard-widgets.php:256 +msgid "Last 7 Days" +msgstr "Letzten 7 Tage" + +#: includes/admin/class-mp-dashboard-widgets.php:251 +msgid "Yesterday" +msgstr "Gestern" + +#: includes/admin/class-mp-dashboard-widgets.php:248 +#: includes/admin/class-mp-dashboard-widgets.php:253 +#: includes/admin/class-mp-dashboard-widgets.php:258 +#: includes/admin/class-mp-dashboard-widgets.php:263 +msgid " Orders" +msgstr "Bestellungen" + +#: includes/admin/class-mp-dashboard-widgets.php:246 +msgid "Today" +msgstr "Heute" + +#: includes/admin/class-mp-dashboard-widgets.php:241 +msgid "Welcome back! Here's a quick summary of your store's performance." +msgstr "Willkommen zurück! Hier ist eine kurze Zusammenfassung der Leistung Ihres Shops." + +#: includes/admin/class-mp-dashboard-widgets.php:196 +#: includes/admin/class-mp-products-admin.php:895 +msgid "No products out of stock." +msgstr "Keine Produkte auf Lager." + +#: includes/admin/class-mp-dashboard-widgets.php:136 +#: includes/admin/class-mp-products-admin.php:839 +msgid "Stock Level" +msgstr "Lagerbestand" + +#: includes/admin/class-mp-dashboard-widgets.php:135 +#: includes/admin/class-mp-products-admin.php:838 +msgid "Variation" +msgstr "Variation" + +#: includes/admin/class-mp-dashboard-widgets.php:121 +msgid "Low Stock (%s)" +msgstr "Geringer Bestand (%s)" + +#: includes/admin/class-mp-dashboard-widgets.php:116 +msgid "Store Management" +msgstr "Lagerverwaltung" + +#: includes/admin/class-mp-dashboard-widgets.php:115 +msgid "Store Reports" +msgstr "Lager-Berichte" + +#: includes/admin/class-mp-ajax.php:579 +#: includes/admin/class-mp-orders-admin.php:520 +#: includes/common/payment-gateways/2checkout.php:370 +#: includes/common/payment-gateways/authorizenet-aim.php:264 +#: includes/common/payment-gateways/mollie.php:93 +#: includes/common/payment-gateways/paymill.php:196 +#: includes/common/payment-gateways/pin.php:190 +#: includes/common/payment-gateways/skrill.php:157 +#: includes/common/payment-gateways/skrill.php:168 +#: includes/common/payment-gateways/wepay.php:143 +#: includes/public/class-mp-checkout.php:404 +msgid "Select One" +msgstr "Wähle eins" + +#: includes/admin/class-mp-ajax.php:511 +msgid "Oops... we could not locate any orders by that ID. Please double check your order ID and try again." +msgstr "Hoppla ... wir konnten keine Aufträge für diese ID zu finden. Bitte überprüfen Sie Ihre Bestell-ID und versuchen Sie es erneut." + +#: includes/admin/class-mp-ajax.php:482 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:166 +#: includes/multisite/class-mp-admin-multisite.php:584 +msgid "Edit Page" +msgstr "Seite bearbeiten" + +#: includes/admin/class-mp-ajax.php:346 +msgid "Cancel " +msgstr "Stornieren" + +#: includes/admin/class-mp-ajax.php:345 +msgid "Save " +msgstr "Spare" + +#: includes/admin/class-mp-ajax.php:336 +msgid "Edit Description" +msgstr "Beschreibung bearbeiten" + +#: includes/admin/class-mp-ajax.php:336 +msgid "HTML Markup" +msgstr "HTML Markup" + +#: includes/admin/class-mp-ajax.php:333 +msgid "Plain Text Only" +msgstr "Nur Text" + +#: includes/admin/class-mp-ajax.php:329 +msgid "Additional Content / Information for this Variation" +msgstr "Zusätzliche Inhalte / Informationen zu dieser Variation" + +#: includes/admin/class-mp-ajax.php:317 +#: includes/admin/class-mp-products-admin.php:1762 +msgid "Allow this product to be purchased even if it's out of stock" +msgstr "Dieses Produkt kann gekauft werden, auch wenn es nicht auf Lager ist" + +#: includes/admin/class-mp-ajax.php:313 +#: includes/admin/class-mp-products-admin.php:1711 +msgid "Track Product Inventory" +msgstr "Verfolge Produkt Inventar" + +#: includes/admin/class-mp-ajax.php:300 +msgid "Extra Shipping Cost (if applicable)" +msgstr "Zusätzliche Versandkosten (falls zutreffend)" + +#: includes/admin/class-mp-ajax.php:295 +msgid "Ounces:" +msgstr "Unzen:" + +#: includes/admin/class-mp-ajax.php:294 +msgid "Pounds:" +msgstr "Pfund:" + +#: includes/admin/class-mp-ajax.php:292 +msgid "Kilograms:" +msgstr "Kilogramm:" + +#: includes/admin/class-mp-ajax.php:287 +#: includes/admin/class-mp-products-admin.php:1649 +msgid "Charge Shipping" +msgstr "Versandgebühren" + +#: includes/admin/class-mp-ajax.php:273 +#: includes/admin/class-mp-products-admin.php:1623 +#: includes/admin/store-settings/class-mp-store-settings-general.php:454 +msgid "Tax Rate" +msgstr "Steuersatz" + +#: includes/admin/class-mp-ajax.php:272 +#: includes/admin/class-mp-products-admin.php:1622 +#: includes/admin/class-mp-products-admin.php:2090 +#: includes/admin/class-mp-products-admin.php:2408 +msgid "Special Tax Rate" +msgstr "Besondere Steuersätze" + +#: includes/admin/class-mp-ajax.php:271 +#: includes/admin/class-mp-products-admin.php:1625 +#: includes/admin/class-mp-products-admin.php:2092 +msgid "If you would like this product to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "Wenn Sie dieses Produkt mit einem speziellen Steuersatz verwenden möchten, geben Sie es hier ein. Wenn Sie das Symbol \"%\" weglassen, wird der Preis als fester Betrag für jedes Produkt im Warenkorb des Benutzers berechnet." + +#: includes/admin/class-mp-ajax.php:268 +#: includes/admin/class-mp-products-admin.php:1599 +msgid "Charge Taxes (Special Rate)" +msgstr "Berechne Steuern (Sonderpreis)" + +#: includes/admin/class-mp-ajax.php:256 +#: includes/admin/class-mp-products-admin.php:1593 +#: includes/admin/class-mp-products-admin.php:2077 +#: includes/admin/class-mp-products-admin.php:2348 +msgid "End Date (if applicable)" +msgstr "Enddatum (falls zutreffend)" + +#: includes/admin/class-mp-ajax.php:255 +#: includes/admin/class-mp-products-admin.php:1589 +#: includes/admin/class-mp-products-admin.php:2072 +msgid "Start Date (if applicable)" +msgstr "Startdatum (falls zutreffend)" + +#: includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:1568 +msgid "Enter Sale Price" +msgstr "Geben Sie den Kaufpreis ein" + +#: includes/admin/class-mp-ajax.php:250 +#: includes/admin/class-mp-products-admin.php:1547 +msgid "Set up a Sale for this Product" +msgstr "Richten Sie einen Verkauf für dieses Produkt ein" + +#: includes/admin/class-mp-ajax.php:206 includes/admin/class-mp-ajax.php:223 +msgid "Enter " +msgstr "Eingeben" + +#: includes/admin/class-mp-ajax.php:193 +msgid "Browse" +msgstr "Durchsuchen" + +#: includes/admin/class-mp-ajax.php:184 includes/admin/class-mp-ajax.php:192 +msgid "http://" +msgstr "http://" + +#: includes/admin/class-mp-ajax.php:183 +msgid "External Product URL" +msgstr "Externe Produkt-URL" + +#: includes/admin/class-mp-ajax.php:237 +msgid "Limit Per Order" +msgstr "Limit pro Bestellung" + +#: includes/admin/class-mp-ajax.php:177 +#: includes/admin/class-mp-products-admin.php:1520 +msgid "Enter Price" +msgstr "Geben Sie den Preis ein" + +#: includes/admin/class-mp-ajax.php:174 +#: includes/admin/class-mp-products-admin.php:1512 +msgid "Enter SKU" +msgstr "Artikel Nr. eingeben" + +#: includes/admin/class-mp-ajax.php:173 +msgid "(Stock Keeping Unit)" +msgstr "(Lagerbestand)" + +#: includes/admin/class-mp-ajax.php:158 +msgid "Remove Image" +msgstr "Bild entfernen" + +#: includes/admin/class-mp-ajax.php:74 +msgid "Variation Draft" +msgstr "Variation Entwurf" + +#: includes/admin/class-mp-admin.php:296 +#: includes/admin/class-mp-dashboard-widgets.php:70 +msgid "Please wait...saving in progress..." +msgstr "Bitte warten ... es wird gespeichert..." + +#: includes/admin/class-mp-admin.php:295 +#: includes/admin/class-mp-dashboard-widgets.php:69 +msgid "Input is required" +msgstr "Eingabe erforderlich" + +#: includes/admin/class-mp-admin.php:294 +#: includes/admin/class-mp-dashboard-widgets.php:68 +msgid "Valid number is required" +msgstr "Gültige Nummer ist erforderlich" + +#: includes/admin/class-mp-admin.php:292 +#: includes/admin/class-mp-dashboard-widgets.php:66 +msgid "Delete %s product variant" +msgstr "%S Produktvariante löschen" + +#: includes/admin/class-mp-admin.php:291 +#: includes/admin/class-mp-dashboard-widgets.php:65 +msgid "Delete %s product variants" +msgstr "%S Produktvarianten löschen" + +#: includes/admin/class-mp-admin.php:290 +#: includes/admin/class-mp-dashboard-widgets.php:64 +msgid "Update inventory for %s product variant" +msgstr "Update Inventar für %s Produktvariante" + +#: includes/admin/class-mp-admin.php:289 +#: includes/admin/class-mp-dashboard-widgets.php:63 +msgid "Update inventory for %s product variants" +msgstr "Update Inventar für %s Produktvarianten" + +#: includes/admin/class-mp-admin.php:288 +#: includes/admin/class-mp-dashboard-widgets.php:62 +msgid "Update price for %s product variant" +msgstr "Update-Preis für %s Produktvariante" + +#: includes/admin/class-mp-admin.php:287 +#: includes/admin/class-mp-dashboard-widgets.php:61 +msgid "Update prices for %s product variants" +msgstr "Aktualisierung der Preise für %s Produktvarianten" + +#: includes/admin/class-mp-admin.php:285 +#: includes/admin/class-mp-dashboard-widgets.php:59 +msgid "Creating variations, please wait..." +msgstr "Variationen erstellen, bitte warten ..." + +#: includes/admin/class-mp-admin.php:96 +msgid "The following payment gateways have been deprecated, Cubepoints, Bitpay, iDEAL, Skrill, Google Checkout. If you were using one of these gateways, please setup a new payment gateway here." +msgstr "Die folgenden Zahlungs-Gateways wurden abgelehnt, Cubepoints, Bitpay, iDEAL, Skrill, Google Checkout. Wenn Sie eines dieser Gateways verwenden, richten Sie bitte ein neues Payment-Gateway ein hier." + +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:61 +msgid "Packing Slip" +msgstr "Verpackungsbeilage" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:71 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:71 +#: includes/common/class-mp-gdpr.php:399 includes/common/class-mp-order.php:872 +#: includes/common/helpers.php:164 includes/public/class-mp-checkout.php:1434 +msgid "Shipping Address" +msgstr "Lieferanschrift" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:66 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:66 +#: includes/common/class-mp-gdpr.php:392 includes/common/class-mp-order.php:864 +#: includes/common/helpers.php:163 includes/public/class-mp-checkout.php:1427 +msgid "Billing Address" +msgstr "Rechnungsadresse" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:61 +msgid "Invoice" +msgstr "Rechnung" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:258 +msgid "Shipping Email: %s" +msgstr "Versand-E-Mail: %s" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:256 +msgid "Email: %s" +msgstr "Email: %s" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:235 +msgid "Payment Method: %s" +msgstr "Zahlungsarten: %s" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:79 +msgid "The dir %s not exist or not writeable" +msgstr "Das Verzeichnis %s ist nicht vorhanden oder nicht beschreibbar" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Packing Slip" +msgstr "PDF Verpackungsbeleg" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Invoice" +msgstr "PDF Rechnung" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:239 +msgid "Shop header/logo" +msgstr "Geschäft Header/Logo" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:233 +msgid "Choose a template" +msgstr "Wählen Sie eine Vorlage" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:226 +msgid "Template Settings" +msgstr "Vorlageneinstellungen" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:221 +msgid "Disable automatic creation/attachment of invoices when only free products are ordered" +msgstr "Deaktivieren Sie automatische Erstellung / Anlage von Rechnungen, wenn nur freie Produkte bestellt werden" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:220 +msgid "Disable for free products" +msgstr "Deaktivieren Sie für kostenlose Produkte" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:216 +msgid "Attach invoice to" +msgstr "Rechnung beifügen" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:214 +msgid "Customer Order Shipped email" +msgstr "Kundenauftrag Versand per E-Mail" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:212 +msgid "Customer New Order email" +msgstr "Kunde Neuer Auftrag email" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:211 +msgid "Admin New Order email" +msgstr "Admin Neue Bestellung E-Mail" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:206 +msgid "download" +msgstr "herunterladen" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:205 +msgid "How do you want to view the PDF?" +msgstr "Wie möchten Sie das PDF ansehen?" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:203 +msgid "Open the PDF in a new browser tab/window" +msgstr "Öffnen Sie das PDF in einem neuen Browser-Tab / Fenster" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:202 +msgid "Download the PDF" +msgstr "Laden Sie die PDF-Datei herunter" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:158 +msgid "Export PDF" +msgstr "PDF exportieren" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:103 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:106 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:109 +msgid "You can't download this order invoice" +msgstr "Sie können diese Bestellungsrechnung nicht herunterladen" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:76 +msgid "Invalid Request" +msgstr "ungültige Anfrage" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:72 +msgid "Order not exist!" +msgstr "Auftrag nicht vorhanden!" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:67 +msgid "Invalid ID" +msgstr "Ungültige ID" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1293 +msgid "Coupon added successfully" +msgstr "Gutschein wurde erfolgreich hinzugefügt" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1292 +msgid "Please enter a code" +msgstr "Bitte einen Code eingeben" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1247 +msgid "No end" +msgstr "Kein Ende" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1200 +msgid "Valid Dates" +msgstr "Gültige Daten" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1195 +msgid "Code" +msgstr "Code" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1027 +msgid "No Coupons found in Trash" +msgstr "Keine Gutscheine im Müll" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1026 +msgid "No Coupons Found" +msgstr "Keine Gutscheine gefunden" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1025 +msgid "Search Coupons" +msgstr "Suche Gutscheine" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1024 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1028 +msgid "View Coupon" +msgstr "Gutschein betrachten" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1023 +msgid "New Coupon" +msgstr "Neuer Gutschein" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1020 +msgid "Create New Coupon" +msgstr "Erstelle neuen Gutschein" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1017 +msgid "Manage Coupons" +msgstr "Verwalte Gutscheine" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1002 +msgid "An error occurred while removing your coupon. Please try again." +msgstr "Beim Entfernen des Gutscheins ist ein Fehler aufgetreten. Bitte versuche es erneut." + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:964 +msgid "Coupon can't be applied to this cart" +msgstr "Gutschein kann nicht auf diesen Einkaufskorb angewendet werden" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:951 +msgid "Invalid coupon code" +msgstr "Ungültiger Gutscheincode" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:794 +msgid "Help Text" +msgstr "Hilfstext" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:789 +msgid "Form Title" +msgstr "Formulartitel" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:783 +msgid "Coupons Settings" +msgstr "Gutscheine-Einstellungen" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:764 +msgid "End Date" +msgstr "Verfallsdatum" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:758 +msgid "Does coupon have an end date?" +msgstr "Haben Gutscheine ein Verfallsdatum?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:696 +msgid "Select Products" +msgstr "Wähle Produkte" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:688 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:723 +#: includes/common/payment-gateways/paypal-payflow.php:402 +msgid "User" +msgstr "Benutzer" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:638 +msgid "Max Uses" +msgstr "Max verwendbar" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:636 +msgid "Enter the maximum number of times this coupon can be used." +msgstr "Wie oft kann dieser Gutschein angewendet werden?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:623 +msgid "Leave blank to allow all other coupons." +msgstr "Leer lassen, um alle anderen Gutscheine zuzulassen." + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:622 +msgid "Select combinable coupons" +msgstr "Wählen Sie kombinierbare Gutscheine aus" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:618 +msgid "Can this coupon be combined with other coupons?" +msgstr "Kann dieser Gutschein mit anderen Gutscheinen kombiniert werden?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:613 +msgid "Apply to each applicable item once per cart" +msgstr "Tragen Sie auf jeden anwendbar Artikel einmal pro Warenkorb" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:612 +msgid "Apply to each applicable item and quantity ordered" +msgstr "Gültig für jeden einzelnen Artikel und bestellter Menge" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:609 +msgid "How should the discount amount be applied?" +msgstr "Wie soll der Rabatt angewendet werden?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:605 +msgid "Discount Amount" +msgstr "Rabatt-Betrag" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:604 +msgid "Value must either be a decimal number or a percentage" +msgstr "Der Wert muss eine Dezimalzahl oder ein Prozentsatz sein" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:602 +msgid "If you would like to give a percentage-based discount make sure to include the percent (%) symbol. Otherwise, the discount will be applied as a fixed amount off." +msgstr "Wenn Sie einen prozentualen Rabatt gewähren möchten, achten Sie darauf, das Prozentzeichen (%) einzufügen. Andernfalls gilt der Rabatt als fester Betrag." + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:595 +msgid "Letters and Numbers only." +msgstr "Nur Buchstaben und Zahlen." + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:589 +msgid "Coupon Settings" +msgstr "Gutschein-Einstellungen" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:447 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:795 +msgid "More than one code? That's OK! Just be sure to enter one at a time." +msgstr "Mehr als ein Code? Das ist ok! Bitte einen nach dem anderen eingeben." + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:444 +msgid "Apply Code" +msgstr "Gutschein anwenden" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:314 +msgid "Coupon Discounts" +msgstr "Gutschein Rabatte" + +#: includes/addons/class-mp-addons-list-table.php:89 +msgid "1 add-on disabled" +msgid_plural "%s add-ons disabled" +msgstr[0] "1 Add-On deaktiviert" +msgstr[1] "%s Add-Ons deaktiviert" + +#: includes/addons/class-mp-addons-list-table.php:84 +msgid "1 add-on enabled" +msgid_plural "%s add-ons enabled" +msgstr[0] "1 Add-On aktiviert" +msgstr[1] "%s Add-Ons aktiviert" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Disabled" +msgstr "Deaktiviert" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Enable add-on" +msgstr "Add-On aktivieren" + +#: includes/addons/class-mp-addons-list-table.php:45 +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:129 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:67 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:135 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:168 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:202 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:263 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:296 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:330 +msgid "Enabled" +msgstr "Aktiviert" + +#: includes/addons/class-mp-addons-list-table.php:45 +msgid "Disable add-on" +msgstr "Add-On deaktivieren" + +#: includes/addons/class-mp-addons-list-table.php:34 +msgid "Disable" +msgstr "Deaktivieren" + +#: includes/addons/class-mp-addons-list-table.php:33 +msgid "Enable" +msgstr "Aktivieren" + +#: includes/addons/class-mp-addons-list-table.php:21 +#: includes/admin/class-mp-products-admin.php:2280 +#: includes/common/class-mp-product.php:2916 +msgid "Description" +msgstr "Beschreibung" + +#: includes/common/template-functions.php:2889 +#: includes/multisite/template-functions.php:407 +msgid "Popularity (Least Popular - Most Popular)" +msgstr "Popularität (Kleinste zu Grösste)" + +#: includes/common/template-functions.php:2888 +#: includes/multisite/template-functions.php:406 +msgid "Popularity (Most Popular - Least Popular)" +msgstr "Beliebtheit (Viel zu Wenig)" + +#: includes/common/template-functions.php:2885 +#: includes/multisite/template-functions.php:403 +msgid "Name (Z-A)" +msgstr "Name (Z-A)" + +#: includes/common/template-functions.php:2884 +#: includes/multisite/template-functions.php:402 +msgid "Name (A-Z)" +msgstr "Name (A-Z)" + +#: includes/common/template-functions.php:2883 +#: includes/multisite/template-functions.php:401 +msgid "Release Date (Oldest to Latest)" +msgstr "Erscheinungsdatum (Älteste zuerst)" + +#: includes/common/template-functions.php:2882 +#: includes/multisite/template-functions.php:400 +msgid "Release Date (Latest to Oldest)" +msgstr "Erscheinungsdatum (Neueste zuerst)" + +#: includes/admin/class-mp-dashboard-widgets.php:284 +msgid "paid" +msgstr "bezahlt" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "One Time Pickup" +msgstr "One Time Pickup" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Customer Counter" +msgstr "Kunden Zähler" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Daily Pickup" +msgstr "Täglich Pickup" + +#: includes/common/shipping-modules/mp-ups.php:182 +msgid "For the most accurate rates, please select the appropriate pick up type for your business." +msgstr "Für die genaueste Preisen finden Sie in der entsprechenden abholen Typ für Ihr Unternehmen auswählen." + +#: includes/admin/class-mp-admin.php:374 +msgid "Page saved." +msgstr "Seite gespeichert." + +#: includes/admin/class-mp-admin.php:370 +msgid "Custom field deleted." +msgstr "Benutzerdefiniertes Feld gelöscht." + +#: includes/admin/class-mp-admin.php:369 +msgid "Custom field updated." +msgstr "Benutzerdefiniertes Feld aktualisiert." + +#: includes/common/payment-gateways/_bitpay.php:541 +msgid "%s - The payment request expired, - %s" +msgstr "%s - Die Zahlungsanforderung abgelaufen ist , - %s" + +#: includes/common/payment-gateways/_bitpay.php:536 +msgid "%s - The payment not credited in merchants bitpay account, action required. Bitpay invoice status - %s" +msgstr "%s - Die Zahlung nicht in Kauf bitpay Konto gutgeschrieben, Aktion erforderlich. Bitpay Rechnungsstatus - %s" + +#: includes/common/payment-gateways/_bitpay.php:252 +msgid "If enabled, you will recieve an email for each status update on payment." +msgstr "Wenn aktiviert, erhalten Sie eine E-Mail für jeden Status-Update auf Zahlung empfangen." + +#: includes/common/payment-gateways/_bitpay.php:240 +msgid "Speed at which the bitcoin transaction registers as \"confirmed\" to the store. This overrides your merchant settings on the Bitpay website." +msgstr "Geschwindigkeit, mit der die Bitcoin Transaktionsregister als \" bestätigt\" in den Laden. Dies über Händler Einstellungen auf der Bitpay Website." + +#: includes/common/payment-gateways/_bitpay.php:238 +msgid "Transaction Speed" +msgstr "Transaktionsgeschwindigkeit" + +#: includes/common/payment-gateways/_bitpay.php:244 +msgid "Low" +msgstr "Klein" + +#: includes/common/payment-gateways/_bitpay.php:243 +msgid "Medium" +msgstr "Mittel" + +#: includes/common/payment-gateways/_bitpay.php:242 +msgid "High" +msgstr "Hoch" + +#: includes/common/payment-gateways/_bitpay.php:177 +#: includes/common/payment-gateways/_bitpay.php:517 +#: includes/common/payment-gateways/_bitpay.php:522 +msgid "%s - The payment request is under process. Bitpay invoice status - %s" +msgstr "%s - Die Zahlung ist im Gange. Bitpay Rechnung Status - %s" + +#: includes/common/payment-gateways/_bitpay.php:175 +#: includes/common/payment-gateways/_bitpay.php:527 +msgid "%s - The payment request has been processed - %s" +msgstr "%s - Die Zahlungsaufforderung wurde bearbeitet - %s" + +#: includes/common/payment-gateways/_bitpay.php:150 +#: includes/common/payment-gateways/_bitpay.php:294 +msgid "Incorrect order invoice, please contact site administrator" +msgstr "Falsche Bestell-Rechnung, wenden Sie sich bitte an Website-Administrator" + +#: includes/common/payment-gateways/_bitpay.php:141 +msgid "We could not verify order invoice details, please try again or contact site administrator for help" +msgstr "Wir konnten die Rechnungsdaten der Bestellung nicht überprüfen. Bitte versuchen Sie es erneut oder wenden Sie sich an den Administrator der Website" + +#: includes/common/payment-gateways/simplify.php:81 +msgid "Login to Simplify to get your API credentials. Enter your test credentials, then live ones when ready." +msgstr "Login bei Simplify um deine API credentials zu erhalten. Bitte zuerst mit den Test credentials testen und dann Live schalten." + +#: includes/common/payment-gateways/paypal-express.php:605 +#: includes/common/payment-gateways/paypal-express.php:647 +msgid "Express Checkout is PayPal's premier checkout solution, which streamlines the checkout process for buyers and keeps them on your site after making a purchase. Unlike PayPal Pro, there are no additional fees to use Express Checkout, though you may need to do a free upgrade to a business account. More Info »" +msgstr "Express Check-out ist PayPal Premier Checkout-Lösung, die den Checkout-Prozess für Käufer strafft und hält sie auf Ihrer Website nach dem Kauf. Im Gegensatz zu PayPal Pro gibt es keine zusätzlichen Gebühren Express Checkout verwenden, wenn Sie ein kostenloses Upgrade auf ein Geschäftskonto zu tun brauchen. Mehr Infos & raquo; " + +#. Plugin URI of the plugin/theme +msgid "https://premium.wpmudev.org/project/e-commerce/" +msgstr "https://premium.wpmudev.org/project/e-commerce/" + +#. Author of the plugin/theme +msgid "WPMU DEV" +msgstr "WPMU DEV" + +#: includes/admin/class-mp-orders-admin.php:541 +#: includes/admin/class-mp-orders-admin.php:543 +msgid "Tracking Number" +msgstr "Sendungscode" + +#: includes/common/class-mp-order.php:805 +#: includes/common/payment-gateways/stripe.php:336 +#: includes/public/class-mp-checkout.php:402 +msgid "Country" +msgstr "Land" + +#: includes/common/class-mp-order.php:784 +#: includes/common/payment-gateways/stripe.php:338 +msgid "City" +msgstr "Stadt" + +#: includes/common/class-mp-order.php:780 +msgid "Address 2" +msgstr "Anschrift 2" + +#: includes/common/payment-gateways/stripe.php:340 +msgid "Address" +msgstr "Adresse" + +#: includes/common/class-mp-cart.php:752 includes/common/class-mp-gdpr.php:378 +msgid "Order Total" +msgstr "Bestellung Gesamt" + +#: includes/admin/class-mp-orders-admin.php:360 +msgid "Payment Total" +msgstr "Zahlung Gesamt" + +#: includes/admin/class-mp-orders-admin.php:347 +msgid "Transaction ID" +msgstr "Transaktions-ID" + +#: includes/common/payment-gateways/wepay.php:207 +msgid "The WePay Card Token was not generated correctly. Please go back and try again." +msgstr "Die WePay Karte Token wurde nicht korrekt generiert. Bitte gehen Sie zurück und versuchen Sie es erneut." + +#: includes/common/payment-gateways/wepay.php:186 +#: includes/common/shipping-modules/mp-fedex.php:283 +msgid "Account ID" +msgstr "Konto ID" + +#: includes/common/payment-gateways/wepay.php:179 +msgid "Access Token" +msgstr "Zugangstoken" + +#: includes/common/payment-gateways/wepay.php:172 +msgid "Client Secret" +msgstr "Client Secret" + +#: includes/common/payment-gateways/wepay.php:165 +msgid "Client ID" +msgstr "Nutzer ID" + +#: includes/common/payment-gateways/wepay.php:159 +msgid "You must login to WePay to get your API credentials. Make sure to check \"Tokenize credit cards\" option under \"API Keys\" section of your WePay app." +msgstr "Sie müssen WePay anmelden target=\"_blank\" zum Ihre API-Anmeldeinformationen erhalten. Stellen Sie sicher, \"tokenize Kreditkarten \" zu überprüfen Option unter \"API-Schlüssel \" Ihrer WePay App." + +#: includes/common/payment-gateways/wepay.php:154 +msgid "When in live mode it is recommended to use SSL certificate setup for the site where the checkout form will be displayed." +msgstr "Es wird empfohlen im Live Modus ein SSL Zertifikat zu verwenden, wenn das Bezahlformular angezeigt wird." + +#: includes/common/payment-gateways/wepay.php:148 +msgid "Donation" +msgstr "Spende" + +#: includes/common/payment-gateways/wepay.php:147 +msgid "Event" +msgstr "Ereignis" + +#: includes/common/payment-gateways/wepay.php:146 +msgid "Personal" +msgstr "Persönlich" + +#: includes/common/payment-gateways/wepay.php:145 +msgid "Service" +msgstr "Service" + +#: includes/common/payment-gateways/wepay.php:144 +msgid "Goods" +msgstr "Waren" + +#: includes/common/payment-gateways/wepay.php:141 +msgid "Choose type of payments" +msgstr "Wählen Sie die gewünschte Zahlungsart" + +#: includes/common/payment-gateways/wepay.php:140 +msgid "Checkout Type" +msgstr "Kasse Typ" + +#: includes/common/payment-gateways/wepay.php:134 +msgid "Staging" +msgstr "Aufführung" + +#: includes/common/payment-gateways/wepay.php:131 +msgid "Choose STAGING if you have registered the app on stage.wepay.com, or PRODUCTION if you registered on www.wepay.com" +msgstr "Wählen Sie STAGING, wenn Sie die App auf stage.wepay.com registriert haben, oder die Produktion, wenn Sie auf www.wepay.com registriert" + +#: includes/common/payment-gateways/wepay.php:36 +#: includes/common/payment-gateways/wepay.php:299 +msgid "WePay" +msgstr "WePay" + +#: includes/common/payment-gateways/_payway.php:366 +msgid "Rejected - A payment was rejected." +msgstr "Zurückgewiesen - Eine Bezahlung wurde zurückgewiesen." + +#: includes/common/payment-gateways/_payway.php:360 +msgid "Failed - A payment was rejected due to an error." +msgstr "Fehler - Eine Bezahlung wurde aufgrund eines Fehlers zurückgewiesen" + +#: includes/common/payment-gateways/_payway.php:342 +msgid "PayWay balance, Credit Card, or Instant Transfer" +msgstr "PayWay balance, Credit Card oder Instant Transfer" + +#: includes/common/payment-gateways/_payway.php:298 +msgid "Full path of the cacerts.crt file" +msgstr "Vollständiger Pfad der cacerts.crt Datei (Zertifikat)" + +#: includes/common/payment-gateways/_payway.php:284 +msgid "User Name" +msgstr "Benutzername" + +#: includes/common/payment-gateways/_payway.php:277 +msgid "Biller Code" +msgstr "Biller Code" + +#: includes/common/payment-gateways/_payway.php:273 +msgid "Log Directory" +msgstr "Log Directory" + +#: includes/common/payment-gateways/_payway.php:266 +msgid "Encryption Key" +msgstr "Encryption Key" + +#: includes/common/payment-gateways/_payway.php:60 +msgid "Your PayWay transaction has been canceled." +msgstr "Ihre PayWay Transaktion wurde abgebrochen." + +#: includes/common/payment-gateways/_payway.php:40 +#: includes/common/payment-gateways/_payway.php:41 +msgid "PayWay" +msgstr "PayWay" + +#: includes/common/payment-gateways/paypal-chained-payments.php:862 +msgid "You must register this application with PayPal using your business account login to get an Application ID that will work with your API credentials. A bit of a hassle, but worth it! In the near future we will be looking for ways to simplify this process. Register then submit your application while logged in to the developer portal. Note that you do not need an Application ID for testing in sandbox mode. More Information »" +msgstr "Sie müssen diese Anwendung registrieren mit PayPal Ihr Geschäftskonto Login mit einem Anwendungs-ID zu erhalten, die mit Ihrem API-Anmeldeinformationen arbeiten. Ein bisschen umständlich, aber es lohnt sich! In naher Zukunft werden wir nach Wegen suchen, diesen Prozess zu vereinfachen. dann registrieren Sie Ihre Anwendung einreichen, während in dem Entwickler-Portal angemeldet. Beachten Sie, dass Sie nicht eine Anwendungs-ID für die Prüfung im Sandbox-Modus benötigen. Weitere Informationen & raquo; " + +#: includes/common/payment-gateways/paypal-chained-payments.php:818 +#: includes/common/payment-gateways/paypal-chained-payments.php:840 +#: includes/common/payment-gateways/paypal-express.php:705 +msgid "You must login to PayPal and create an API signature to get your credentials. Instructions »" +msgstr "Sie müssen sich in PayPal einloggen und einen API Schlüssel erstellen, um Ihre Daten zu erhalten. Anleitung »" + +#: includes/common/payment-gateways/paypal-payflow.php:378 +msgid "Use Payflow payment gateway to accept online payments using your Internet merchant account and processing network. PayPal Payflow Pro is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway." +msgstr "Verwenden Sie Payflow Zahlungs-Gateway für Online-Zahlungen akzeptieren mit Ihrem Internet-Händler-Konto und Verarbeitungsnetz. PayPal Payflow Pro ist eine anpassbare Zahlungsverarbeitungslösung, die die Händler die Kontrolle über alle Schritte bei der Verarbeitung einer Transaktion gibt. Ein SSL-Zertifikat wird benötigt um dieses Gateway zu verwenden." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:595 +msgid "Tags Only" +msgstr "Nur Eigenschaften" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:594 +msgid "Category Only" +msgstr "Nur Kategorie" + +#: includes/admin/class-mp-shortcode-builder.php:795 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:593 +msgid "Category & Tags" +msgstr "Kategorie & Tags" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:591 +msgid "Relate Products By" +msgstr "Ähnliche Produkte von" + +#: includes/admin/class-mp-shortcode-builder.php:1008 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:455 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:751 +msgid "Right" +msgstr "Rechts" + +#: includes/admin/class-mp-shortcode-builder.php:1007 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:454 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:749 +msgid "Left" +msgstr "Links" + +#: includes/admin/class-mp-shortcode-builder.php:1009 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:750 +msgid "Center" +msgstr "Mittig" + +#: marketpress.php:273 +msgid "Orders from your e-commerce store." +msgstr "Bestellungen aus Ihrem E-Commerce Store." + +#: marketpress.php:231 +msgid "Products for your e-commerce store." +msgstr "Produkte für Ihren E-Commerce Store." + +#: marketpress.php:222 +msgid "Edit Product" +msgstr "Produkt bearbeiten" + +#. Description of the plugin/theme +msgid "The complete WordPress ecommerce plugin - works perfectly with BuddyPress and Multisite too to create a social marketplace, where you can take a percentage! Activate the plugin, adjust your settings then add some products to your store." +msgstr "Das komplette WordPress E-Commerce-Plugin - funktioniert perfekt mit BuddyPress und Multisite zu einem sozialen Markt zu schaffen, wo Sie einen Prozentsatz! Aktivieren Sie das Plugin, passen Sie Ihre Einstellungen dann fügen Sie einige Produkte zu Ihrem Shop hinzu." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:272 +msgid "Beside" +msgstr "Neben" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:271 +msgid "Above" +msgstr "Über" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:268 +msgid "Pin Count" +msgstr "Pinanzahl" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:261 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:287 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:318 +msgid "All View" +msgstr "Alle Ansichten" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:260 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:286 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:317 +msgid "Single View" +msgstr "Einzelansicht" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:259 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:285 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:316 +msgid "Off" +msgstr "Aus" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:578 +msgid "Related Product Limit" +msgstr "Ähnliche Produktbegrenzung" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:681 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1201 +msgid "Applies To" +msgstr "Gilt für" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:685 +msgid "All Products" +msgstr "Alle Produkte" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:487 +msgid "The label shown for the tax line item in the cart. Taxes, VAT, GST, etc." +msgstr "Das Etikett für die Steuerposition im Warenkorb angezeigt. Steuern, VAT, GST, etc." + +#: includes/admin/class-mp-setup-wizard.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:485 +msgid "Tax Label" +msgstr "Steuerbezeichnung" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:81 +msgid "Apply" +msgstr "Anwenden" + +#: includes/admin/class-mp-admin.php:192 +msgid "MarketPress Instructions" +msgstr "MarketPress Anleitungen" + +#: includes/admin/class-mp-products-admin.php:1954 +#: includes/admin/class-mp-products-admin.php:2194 includes/common/data.php:62 +#: includes/common/helpers.php:150 +msgid "Taxes" +msgstr "Steuern" + +#: includes/admin/class-mp-products-admin.php:1417 +#: includes/common/class-mp-product.php:2900 +msgid "Related Products" +msgstr "Ähnliche Produkte" + +#: includes/common/shipping-modules/mp-usps.php:282 +#: includes/common/shipping-modules/mp-usps.php:316 +msgid "@ Max" +msgstr "@ Max" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "(3-5 days)" +msgstr "(3-5 Tage)" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "Priority Mail Express International Padded Flat Rate Envelope" +msgstr "Priority Mail Express International Padded Flat Rate Umschlag" + +#: includes/common/shipping-modules/mp-usps.php:92 +msgid "Priority Mail Padded Flat Rate Envelope" +msgstr "Priority Mail Padded Flat Rate-Umschlag" + +#: includes/common/shipping-modules/mp-pickup.php:171 +#: includes/common/shipping-modules/mp-pickup.php:247 +msgid "In Store" +msgstr "Auf Lager" + +#: includes/common/shipping-modules/mp-pickup.php:159 +msgid "Pickup Fee" +msgstr "Abholgebühr" + +#: includes/common/shipping-modules/mp-pickup.php:141 +msgid "This option allows your customers to indicate that they will pick-up their order at your place of business." +msgstr "Diese Option ermöglicht es Ihren Kunden zu zeigen, dass sie ihre Bestellung an Ihrem Geschäftssitz wird Pick-up." + +#: includes/common/shipping-modules/mp-pickup.php:60 +#: includes/common/shipping-modules/mp-pickup.php:76 +#: includes/common/shipping-modules/mp-pickup.php:176 +msgid "Pickup Instructions" +msgstr "Abholinformationen" + +#: includes/common/shipping-modules/mp-pickup.php:24 +#: includes/common/shipping-modules/mp-pickup.php:254 +msgid "Pickup" +msgstr "Abholung" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping - 0.00" +msgstr "Kostenloser Versand - 0,00" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:256 +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:440 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping" +msgstr "Kostenloser Versand" + +#: includes/common/shipping-modules/mp-fedex.php:309 +msgid "Your Packaging" +msgstr "Ihre Verpackung" + +#: includes/common/shipping-modules/mp-fedex.php:301 +msgid "Station" +msgstr "Station" + +#: includes/common/shipping-modules/mp-fedex.php:300 +msgid "Request Courier" +msgstr "Anfrage Courier" + +#: includes/common/shipping-modules/mp-fedex.php:299 +msgid "Drop Box" +msgstr "Drop Box" + +#: includes/common/shipping-modules/mp-fedex.php:298 +msgid "Business Service Center" +msgstr "Business Service Center" + +#: includes/common/shipping-modules/mp-fedex.php:297 +msgid "Regular Pickup" +msgstr "Regelmäßige Pickup" + +#: includes/common/payment-gateways/wepay.php:135 +#: includes/common/shipping-modules/mp-fedex.php:264 +msgid "Production" +msgstr "Produktionsversion" + +#: includes/common/payment-gateways/simplify.php:207 +msgid "Simplify Commerce by MasterCard" +msgstr "Simplify Commerce by MasterCard" + +#: includes/common/payment-gateways/simplify.php:104 +msgid "When in live mode, although it is not required, Simplify recommends you have an SSL certificate." +msgstr "Wenn im Live-Modus, obwohl es nicht erforderlich ist, empfiehlt Vereinfachen haben Sie ein SSL-Zertifikat." + +#: includes/common/payment-gateways/paymill.php:183 +#: includes/common/payment-gateways/simplify.php:87 +msgid "Public Key" +msgstr "Public Key" + +#: includes/common/payment-gateways/paymill.php:175 +#: includes/common/payment-gateways/simplify.php:94 +msgid "Private Key" +msgstr "Private Key" + +#: includes/common/payment-gateways/simplify.php:71 +msgid "Simplify helps merchants to accept online payments from Mastercard, Visa, American Express, Discover, JCB, and Diners Club cards. It's that simple. We offer a merchant account and payment gateway in a single, secure package so you can concentrate on what really matters to your business. Only supports USD currently." +msgstr "Vereinfachen Sie hilft Händlern Online-Zahlungen von Mastercard zu akzeptieren, Visa, American Express, Discover, JCB und Diners Club-Karten. Es ist so einfach. Wir bieten ein Händler-Konto und Payment-Gateway in einem einzigen, sicheren Paket, so dass Sie sich auf das konzentrieren können, was Ihr Unternehmen wirklich zählt. Nur unterstützt derzeit USD." + +#: includes/common/payment-gateways/wepay.php:267 +msgid "%1$s" +msgstr "%1$s" + +#: includes/common/payment-gateways/simplify.php:151 +msgid "The Simplify Token was not generated correctly. Please go back and try again." +msgstr "Das Vereinfachen Token wurde nicht korrekt generiert. Bitte gehen Sie zurück und versuchen Sie es erneut." + +#: includes/common/payment-gateways/simplify.php:18 +msgid "Simplify" +msgstr "Simplify" + +#: includes/common/payment-gateways/pin.php:255 +msgid "%1$s Card %2$s" +msgstr "%1$s Karte %2$s" + +#: includes/common/payment-gateways/pin.php:211 +msgid "The PIN Token was not generated correctly. Please go back and try again." +msgstr "Die PIN-Token wurde nicht korrekt generiert. Bitte gehen Sie zurück und versuchen Sie es erneut." + +#: includes/common/payment-gateways/pin.php:187 +msgid "Selecting a currency other than currency supported by PIN may cause problems at checkout." +msgstr "eine andere Währung als Währung durch PIN unterstützt Auswahl kann es zu Problemen an der Kasse führen." + +#: includes/common/payment-gateways/pin.php:164 +msgid "You must login to PIN to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "Sie müssen auf PIN anmelden target=\"_blank\" zum Ihre API-Anmeldeinformationen erhalten. Sie können Ihre Testschlüssel, dann diejenigen leben, wenn Sie fertig ein." + +#: includes/common/payment-gateways/pin.php:158 +msgid "When in live mode PIN recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "Wenn im Live-Modus PIN empfiehlt haben Sie ein SSL-Zertifikat-Setup für die Stelle, wo die Kasse Form angezeigt." + +#: includes/common/payment-gateways/pin.php:45 +#: includes/common/payment-gateways/pin.php:286 +msgid "PIN" +msgstr "PIN" + +#: includes/common/payment-gateways/paypal-express.php:830 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer" +msgstr "Eine Zahlung wurde aufgrund einer Rückbelastung oder eine andere Art von Umkehrung umgekehrt. Die Mittel wurden von Ihrem Kontostand entfernt und zurück an den Käufer" + +#: includes/common/payment-gateways/paypal-chained-payments.php:534 +#: includes/common/payment-gateways/paypal-express.php:865 +msgid "The payment is pending" +msgstr "Die Zahlung ist ausstehend" + +#: includes/common/payment-gateways/paymill.php:235 +msgid "The Paymill Token was not generated correctly. Please go back and try again." +msgstr "Die Paymill Token wurde nicht korrekt generiert. Bitte gehen Sie zurück und versuchen Sie es erneut." + +#: includes/common/payment-gateways/paymill.php:169 +msgid "You must login to Paymill to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "Sie müssen sich anmelden, um Paymill target=\"_blank\" zum Ihre API-Anmeldeinformationen erhalten. Sie können Ihre Testschlüssel, dann diejenigen leben, wenn Sie fertig ein." + +#: includes/common/payment-gateways/paymill.php:45 +#: includes/common/payment-gateways/paymill.php:308 +msgid "Paymill" +msgstr "Paymill" + +#: includes/common/payment-gateways/paymill.php:90 +msgid "Invalid cardholder" +msgstr "Ungültiger Karteninhaber" + +#: includes/common/payment-gateways/paymill.php:89 +msgid "Card is no longer valid or has expired" +msgstr "Die Karte ist nicht mehr gültig oder abgelaufen" + +#: includes/common/payment-gateways/paymill.php:88 +msgid "Please enter a valid Card CVC" +msgstr "Bitte geben Sie eine gültige CVC-Karte ein" + +#: includes/common/payment-gateways/paymill.php:87 +msgid "Please choose a valid Expiration Date." +msgstr "Bitte wählen Sie ein gültiges Ablaufdatum." + +#: includes/common/payment-gateways/skrill.php:99 +#: includes/common/payment-gateways/skrill.php:100 +msgid "Skrill (Moneybookers)" +msgstr "Skrill (Moneybookers)" + +#: includes/common/shipping-modules/mp-weight-rate.php:24 +#: includes/common/shipping-modules/mp-weight-rate.php:292 +msgid "Weight Rate" +msgstr "Gewicht Rate" + +#: includes/common/shipping-modules/mp-usps.php:303 +msgid "USPS Offered International Services" +msgstr "USPS Angeboten International Services" + +#: includes/common/shipping-modules/mp-usps.php:270 +msgid "USPS Offered Domestic Services" +msgstr "USPS Angeboten Hausdienste" + +#: includes/common/shipping-modules/mp-usps.php:264 +msgid "USPS Settings" +msgstr "USPS Einstellungen" + +#: includes/common/shipping-modules/mp-usps.php:145 +msgid "Flat Rate Large" +msgstr "Flat Rate Large" + +#: includes/common/shipping-modules/mp-usps.php:140 +msgid "Flat Rate Medium 2" +msgstr "Flat Rate Medium 2" + +#: includes/common/shipping-modules/mp-usps.php:135 +msgid "Flat Rate Medium 1" +msgstr "Flat Rate Medium 1" + +#: includes/common/shipping-modules/mp-usps.php:130 +msgid "Flat Rate Small" +msgstr "Flat Rate Kleine" + +#: includes/common/shipping-modules/mp-usps.php:118 +msgid "First Class International Parcel" +msgstr "First Class Internationales Paket" + +#: includes/common/shipping-modules/mp-usps.php:114 +msgid "Priority Mail International Small Flat Rate Boxes" +msgstr "Priority Mail International Small Flatrate-Boxen" + +#: includes/common/shipping-modules/mp-usps.php:112 +msgid "Priority Mail International Medium Flat Rate Boxes" +msgstr "Priority Mail International Medium Flatrate-Boxen" + +#: includes/common/shipping-modules/mp-usps.php:110 +msgid "Priority Mail International Large Flat Rate Boxes" +msgstr "Priority Mail International Large-Flatrate-Boxen" + +#: includes/common/shipping-modules/mp-usps.php:108 +msgid "Priority Mail International" +msgstr "Priority Mail International" + +#: includes/common/shipping-modules/mp-usps.php:106 +msgid "Express Mail International Flat Rate Boxes" +msgstr "Express Mail International Flatrate-Boxen" + +#: includes/common/shipping-modules/mp-usps.php:104 +msgid "Express Mail International" +msgstr "Express Mail International" + +#: includes/common/shipping-modules/mp-usps.php:98 +msgid "Library Mail" +msgstr "Bibliothek E-Mail" + +#: includes/common/shipping-modules/mp-usps.php:96 +msgid "Media Mail" +msgstr "Medien-Post" + +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "First-Class Mail Parcel" +msgstr "First-Class Post-Paket" + +#: includes/common/shipping-modules/mp-usps.php:90 +msgid "Priority Mail Small Flat Rate Box" +msgstr "Priority Mail Kleine Flat Rate Box" + +#: includes/common/shipping-modules/mp-usps.php:88 +msgid "Priority Mail Medium Flat Rate Box" +msgstr "Priority Mail Medium Flat Rate Box" + +#: includes/common/shipping-modules/mp-usps.php:86 +#: includes/common/shipping-modules/mp-usps.php:88 +#: includes/common/shipping-modules/mp-usps.php:90 +#: includes/common/shipping-modules/mp-usps.php:92 +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "(2-4 days)" +msgstr "(2-4 Tage)" + +#: includes/common/shipping-modules/mp-usps.php:86 +msgid "Priority Mail Large Flat Rate Box" +msgstr "Priority Mail Large Flat Rate Box" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "(2-4) days" +msgstr "(2-4) Tage" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "Priority Mail" +msgstr "Prioritär Post" + +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "Express Mail Sunday/Holiday Delivery Flat Rate Boxes" +msgstr "Express Mail Sonntag / Feiertage Lieferung Flat Rate Boxes" + +#: includes/common/shipping-modules/mp-usps.php:80 +msgid "Express Mail Flat Rate Boxes Hold For Pickup" +msgstr "Express Post Pauschalraten Boxen für Selbstabholer zurückhalten" + +#: includes/common/shipping-modules/mp-usps.php:78 +msgid "Express Mail Flat Rate Boxes" +msgstr "Express Post Pauschalraten Boxen" + +#: includes/common/shipping-modules/mp-usps.php:76 +msgid "Express Mail Sunday/Holiday Delivery" +msgstr "Express Post Sonntag/Feiertag Auslieferung" + +#: includes/common/shipping-modules/mp-usps.php:74 +msgid "Express Mail Hold For Pickup" +msgstr "Express Post zurückhalten für Selbstabholer" + +#: includes/common/shipping-modules/mp-usps.php:72 +#: includes/common/shipping-modules/mp-usps.php:74 +#: includes/common/shipping-modules/mp-usps.php:76 +#: includes/common/shipping-modules/mp-usps.php:78 +#: includes/common/shipping-modules/mp-usps.php:80 +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "(1-2 days)" +msgstr "(1-2 Tage)" + +#: includes/common/shipping-modules/mp-usps.php:72 +msgid "Express Mail" +msgstr "Express Mail" + +#: includes/common/shipping-modules/mp-usps.php:67 +#: includes/common/shipping-modules/mp-usps.php:902 +msgid "USPS" +msgstr "USPS" + +#: includes/common/shipping-modules/mp-ups.php:534 +msgid "UPS (beta)" +msgstr "UPS (beta)" + +#: includes/common/shipping-modules/mp-ups.php:166 +msgid "Required if using negotiated rates" +msgstr "Pflichtfeld, wenn \"Vertragsrate\" verwendet wird" + +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "Saver" +msgstr "Sparer" + +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "Worldwide Express Plus" +msgstr "Worldwide Express Plus" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "(Scheduled)" +msgstr "(Terminiert)" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "Standard" +msgstr "Standard" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "(2-5 Days)" +msgstr "(2-5 Tage)" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "Worldwide Expedited" +msgstr "Weltweiter Versand" + +#: includes/common/shipping-modules/mp-ups.php:54 +msgid "Worldwide Express" +msgstr "Weltweit Express" + +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "2nd Day Air AM" +msgstr "Flugpost am zweiten Tag" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "(1 Days)" +msgstr "(1 Tag)" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "Next Day Air Early AM" +msgstr "Next Day Air Früh AM" + +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "Next Day Air Saver" +msgstr "Next Day Air Saver" + +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "3 Day Select" +msgstr "3-Tage-Select" + +#: includes/common/shipping-modules/mp-ups.php:49 +msgid "Ground" +msgstr "Boden" + +#: includes/common/shipping-modules/mp-ups.php:48 +msgid "2nd Day Air" +msgstr "2. Tag Luft" + +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "Next Day Air" +msgstr "Nächster Tag Luft" + +#: includes/admin/class-mp-orders-admin.php:475 +#: includes/common/shipping-modules/mp-ups.php:43 +msgid "UPS" +msgstr "UPS" + +#: includes/common/shipping-modules/mp-table-rate.php:27 +#: includes/common/shipping-modules/mp-table-rate.php:318 +msgid "Table Rate" +msgstr "Tabelle bewerten" + +#: includes/common/shipping-modules/mp-table-quantity.php:71 +#: includes/common/shipping-modules/mp-table-quantity.php:77 +msgid "Shipping Cost: " +msgstr "Versandkosten:" + +#: includes/common/shipping-modules/mp-table-quantity.php:70 +#: includes/common/shipping-modules/mp-table-quantity.php:76 +msgid "If quantity is greater than:" +msgstr "Wenn Menge größer ist als:" + +#: includes/common/shipping-modules/mp-table-quantity.php:66 +msgid "Each band must be a higher price than the one above it." +msgstr "Jedes Band muss mit einem höheren Preis als der oben es sein." + +#: includes/common/shipping-modules/mp-table-quantity.php:56 +msgid "Number of Bands:" +msgstr "Anzahl der Bänder:" + +#: includes/common/shipping-modules/mp-table-quantity.php:53 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Each layer must be a higher quantity than the previous." +msgstr "Achten Sie darauf, einen Versandpreis für jede Option einzugeben oder die Kunden können kostenlos Versand. Jede Schicht muss eine höhere Menge als die vorherige sein." + +#: includes/common/shipping-modules/mp-table-quantity.php:51 +msgid "Table Quantity Settings" +msgstr "Tabelle Menge Einstellungen" + +#: includes/common/shipping-modules/mp-table-quantity.php:31 +msgid "Table Quantity" +msgstr "Tabelle Menge" + +#: includes/common/shipping-modules/mp-flat-rate.php:135 +#: includes/common/shipping-modules/mp-table-rate.php:174 +#: includes/common/shipping-modules/mp-weight-rate.php:189 +msgid "European Union" +msgstr "European Union" + +#: includes/common/shipping-modules/mp-flat-rate.php:123 +#: includes/common/shipping-modules/mp-table-rate.php:162 +#: includes/common/shipping-modules/mp-weight-rate.php:177 +msgid "United States" +msgstr "United States" + +#: includes/common/shipping-modules/mp-flat-rate.php:111 +#: includes/common/shipping-modules/mp-table-rate.php:151 +#: includes/common/shipping-modules/mp-weight-rate.php:166 +msgid "In Country" +msgstr "Im Land" + +#: includes/common/shipping-modules/mp-flat-rate.php:146 +#: includes/common/shipping-modules/mp-table-rate.php:186 +#: includes/common/shipping-modules/mp-weight-rate.php:201 +msgid "International" +msgstr "International" + +#: includes/common/shipping-modules/mp-flat-rate.php:101 +#: includes/common/shipping-modules/mp-table-rate.php:141 +#: includes/common/shipping-modules/mp-weight-rate.php:156 +msgid "Canada" +msgstr "Canada" + +#: includes/common/shipping-modules/mp-flat-rate.php:92 +#: includes/common/shipping-modules/mp-table-rate.php:132 +#: includes/common/shipping-modules/mp-weight-rate.php:147 +msgid "Hawaii and Alaska" +msgstr "Hawaii and Alaska" + +#: includes/common/shipping-modules/mp-flat-rate.php:83 +#: includes/common/shipping-modules/mp-table-rate.php:123 +#: includes/common/shipping-modules/mp-weight-rate.php:138 +msgid "Lower 48 States" +msgstr "Untere 48 Staaten" + +#: includes/common/shipping-modules/mp-flat-rate.php:64 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping." +msgstr "Achten Sie darauf, geben Sie einen Versand Preis für jede Option oder die Kunden erhalten kostenlosen Versand." + +#: includes/common/shipping-modules/mp-flat-rate.php:25 +#: includes/common/shipping-modules/mp-flat-rate.php:223 +msgid "Flat Rate" +msgstr "Flatrate" + +#: includes/common/shipping-modules/mp-fedex.php:761 +msgid "FedEx (beta)" +msgstr "FedEx (beta)" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Centimeters" +msgstr "Zentimeter" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Inches" +msgstr "Zoll" + +#: includes/admin/class-mp-products-admin.php:1676 +#: includes/admin/class-mp-setup-wizard.php:547 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:166 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +msgid "Kilograms" +msgstr "Kilogramm" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:103 +msgid " %1$s - %2$s" +msgstr " %1$s - %2$s" + +#: includes/common/shipping-modules/mp-usps.php:358 +msgid "Max Weight per Box" +msgstr "Maximalgewicht pro Box" + +#: includes/common/shipping-modules/mp-usps.php:356 +msgid "Box Dimensions" +msgstr "Maße der Box" + +#: includes/common/shipping-modules/mp-usps.php:354 +msgid "Box Name" +msgstr "Name der Box" + +#: includes/common/shipping-modules/mp-usps.php:344 +msgid "Total weight selects the box size used for calculating Shipping costs." +msgstr "Gesamtgewicht wählt die Kastengröße für die Berechnung der Versandkosten verwendet." + +#: includes/common/shipping-modules/mp-usps.php:343 +msgid "For each box defined enter the maximum weight it can contain." +msgstr "Für jedes Feld definiert geben Sie das maximale Gewicht es enthalten kann." + +#: includes/common/shipping-modules/mp-usps.php:341 +msgid "Enter your standard box sizes as LengthxWidthxHeight" +msgstr "Geben Sie Ihre Standard-Kastengrößen wie LängexBreitexHöhe" + +#: includes/common/shipping-modules/mp-fedex.php:386 +#: includes/common/shipping-modules/mp-ups.php:193 +#: includes/common/shipping-modules/mp-usps.php:234 +#: includes/common/shipping-modules/mp-usps.php:338 +msgid "Standard Boxes and Weight Limits" +msgstr "Standardboxen und Gewichtsgrenzen" + +#: includes/common/shipping-modules/mp-usps.php:328 +msgid "Handling Charge per Interntional Shipment" +msgstr "Bearbeitungsgebühr pro Interntional Versand" + +#: includes/common/shipping-modules/mp-usps.php:294 +msgid "Handling Charge per Domestic Shipment " +msgstr "Bearbeitungsgebühr pro Haus Versand " + +#: includes/common/shipping-modules/mp-fedex.php:388 +#: includes/common/shipping-modules/mp-ups.php:196 +#: includes/common/shipping-modules/mp-usps.php:237 +msgid "Add Box" +msgstr "Box hinzufügen" + +#: includes/common/shipping-modules/mp-fedex.php:63 +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "(Next Day)" +msgstr "(nächster Tag)" + +#: includes/common/shipping-modules/mp-fedex.php:63 +msgid "Europe First International Priority" +msgstr "Europe First International Priority" + +#: includes/common/shipping-modules/mp-fedex.php:62 +msgid "International Priority" +msgstr "Internationale Priorität" + +#: includes/common/shipping-modules/mp-fedex.php:61 +#: includes/common/shipping-modules/mp-fedex.php:62 +#: includes/common/shipping-modules/mp-ups.php:54 +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "(1-3 Days)" +msgstr "(1-3 Tage)" + +#: includes/common/shipping-modules/mp-fedex.php:61 +msgid "International First" +msgstr "Internationale Erste" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "(5 Days)" +msgstr "(5 Tage)" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "International Economy" +msgstr "Internationale Wirtschaft" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "(2-7 Days)" +msgstr "(2-7 Tage)" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "Smart Post" +msgstr "Smart Post" + +#: includes/common/shipping-modules/mp-fedex.php:55 +#: includes/common/shipping-modules/mp-ups.php:49 +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "(1-5 Days)" +msgstr "(1-5 Tage)" + +#: includes/common/shipping-modules/mp-fedex.php:55 +msgid "Ground Home Delivery" +msgstr "Boden Home Delivery" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "(1-7 Days)" +msgstr "(1-7 Tage)" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "Fedex Ground" +msgstr "FedEx Ground" + +#: includes/common/shipping-modules/mp-fedex.php:53 +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "(3 Days)" +msgstr "(3 Tage)" + +#: includes/common/shipping-modules/mp-fedex.php:53 +msgid "Fedex Express Saver" +msgstr "Fedex Express Saver" + +#: includes/common/shipping-modules/mp-fedex.php:52 +#: includes/common/shipping-modules/mp-ups.php:48 +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "(2 Days)" +msgstr "(2 Tage)" + +#: includes/common/shipping-modules/mp-fedex.php:52 +msgid "Fedex 2 Day" +msgstr "Fedex 2 Tage" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "(2 Days am)" +msgstr "(2 Tage am)" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "Fedex 2 Day AM" +msgstr "Fedex 2 Tag AM" + +#: includes/common/shipping-modules/mp-fedex.php:50 +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "(1 Day)" +msgstr "(1 Tag)" + +#: includes/common/shipping-modules/mp-fedex.php:50 +msgid "Standard Overnight" +msgstr "Standard-Übernachtung" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "(1 Day am )" +msgstr "(1 Tag Uhr)" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "Priority Overnight" +msgstr "Priorität Übernachtung" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "(1 Day am)" +msgstr "(1 Tag Uhr)" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "First Overnight" +msgstr "Übernacht Transport zuerst" + +#: includes/admin/class-mp-orders-admin.php:476 +#: includes/common/shipping-modules/mp-fedex.php:31 +msgid "FedEx" +msgstr "FedEx" + +#: includes/common/payment-gateways/paymill.php:270 +#: includes/common/payment-gateways/simplify.php:179 +#: includes/common/payment-gateways/stripe.php:365 +msgid "%1$s Card ending in %2$s - Expires %3$s" +msgstr "%1$s Karte mit Endziffer %2$s - Verfällt %3$s" + +#: includes/common/payment-gateways/paymill.php:259 +#: includes/common/payment-gateways/pin.php:238 +#: includes/common/payment-gateways/simplify.php:171 +msgid "%s Store Purchase - Order ID: %s, Email: %s" +msgstr "%s Einkauf - Bestellnummer: %s, Email: %s" + +#: includes/common/payment-gateways/stripe.php:266 +msgid "You must login to Stripe to get your API credentials. You can enter your test credentials, then live ones when ready." +msgstr "Sie müssen sich anmelden, um Stripe target=\"_blank\" zum Ihre API-Anmeldeinformationen erhalten. Sie können Ihre Testanmeldeinformationen, dann diejenigen leben, wenn Sie fertig ein." + +#: includes/common/payment-gateways/stripe.php:261 +msgid "When in live mode Stripe recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "Wenn im Live-Modus Streifen empfiehlt haben Sie ein SSL-Zertifikat-Setup für die Stelle, wo die Kasse Form angezeigt." + +#: includes/common/payment-gateways/stripe.php:311 +msgid "The Stripe Token was not generated correctly. Please go back and try again." +msgstr "Stripe konnte keinen korrekten Token generieren. Bitte gehen Sie zurück und versuchen Sie es noch einmal." + +#: includes/common/payment-gateways/class-mp-gateway-api.php:263 +#: includes/common/payment-gateways/paymill.php:122 +#: includes/common/payment-gateways/stripe.php:222 +msgid "Card Number" +msgstr "Kartennummer" + +#: includes/common/payment-gateways/paymill.php:86 +msgid "Please enter a valid Credit Card Number." +msgstr "Bitte geben Sie eine gültige Kreditkartennummer ein." + +#: includes/common/payment-gateways/stripe.php:45 +#: includes/common/payment-gateways/stripe.php:433 +msgid "Stripe" +msgstr "Stripe" + +#: includes/common/payment-gateways/paypal-express.php:750 +msgid "Sets the background color for the payment page. By default, the color is white." +msgstr "Setzt die Hintergrundfarbe für die Zahlseite. Standardfarbe ist weiß." + +#: includes/common/payment-gateways/paypal-express.php:745 +msgid "Sets the background color for the header of the payment page. By default, the color is white." +msgstr "Legt die Hintergrundfarbe für die Kopfzeile der Zahlungsseite. Standardmäßig ist die Farbe weiß." + +#: includes/common/payment-gateways/paypal-express.php:740 +msgid "Sets the border color around the header of the payment page. The border is a 2-pixel perimeter around the header space, which is 750 pixels wide by 90 pixels high. By default, the color is black." +msgstr "Legt die Rahmenfarbe um den Header der Zahlungsseite. Die Grenze ist ein 2-Pixel-Perimeter rund um den Kopfraum, der um 90 Pixel hoch 750 Pixel breit ist. Standardmäßig ist die Farbe schwarz." + +#: includes/common/payment-gateways/paypal-express.php:735 +msgid "URL for an image you want to appear at the top left of the payment page. The image has a maximum size of 750 pixels wide by 90 pixels high. PayPal recommends that you provide an image that is stored on a secure (https) server. If you do not specify an image, the business name is displayed." +msgstr "URL für ein Bild, das Sie auf oben links auf der Zahlungsseite angezeigt werden soll. Das Bild hat eine maximale Größe von 750 Pixel breit und 90 Pixel hoch. PayPal empfiehlt, dass Sie ein Bild zur Verfügung stellen, die auf einem sicheren (https) Server gespeichert wird. Wenn Sie nicht ein Bild angeben, wird der Firmenname angezeigt." + +#: includes/common/payment-gateways/paypal-express.php:857 +#: includes/common/payment-gateways/paypal-express.php:1131 +msgid "The payment is pending because it is part of an order that has been authorized but not settled." +msgstr "Die Zahlung anhängig ist, weil es einen Teil des Auftrags ist, die autorisiert ist, aber nicht abgerechnet." + +#: includes/common/payment-gateways/paypal-express.php:853 +#: includes/common/payment-gateways/paypal-express.php:1127 +msgid "The payment is pending because it has been authorized but not settled. You must capture the funds first." +msgstr "Die Zahlung anhängig ist, weil es zugelassen worden ist, aber nicht abgerechnet. Sie müssen die Mittel zuerst zu erfassen." + +#: includes/common/payment-gateways/paypal-express.php:847 +#: includes/common/payment-gateways/paypal-express.php:1120 +msgid "You denied the payment when it was marked as pending." +msgstr "Sie verweigert die Zahlung, wenn sie als anhängig geprägt war." + +#: includes/common/payment-gateways/paypal-express.php:837 +#: includes/common/payment-gateways/paypal-express.php:1108 +msgid "A reversal has occurred on this transaction due to an unknown reason." +msgstr "Eine Umkehr hat bei dieser Transaktion erfolgte aufgrund eines unbekannten Grund." + +#: includes/common/payment-gateways/paypal-express.php:836 +#: includes/common/payment-gateways/paypal-express.php:1107 +msgid "A reversal has occurred on this transaction because you have given the customer a refund." +msgstr "Eine Umkehr hat bei dieser Transaktion kam es, weil Sie dem Kunden eine Rückerstattung gegeben haben." + +#: includes/common/payment-gateways/paypal-express.php:835 +#: includes/common/payment-gateways/paypal-express.php:1106 +msgid "A reversal has occurred on this transaction due to a complaint about the transaction from your customer." +msgstr "Eine Umkehr hat bei dieser Transaktion erfolgte aufgrund einer Beschwerde über die Transaktion von Ihrem Kunden." + +#: includes/common/payment-gateways/paypal-express.php:834 +#: includes/common/payment-gateways/paypal-express.php:1105 +msgid "A reversal has occurred on this transaction due to your customer triggering a money-back guarantee." +msgstr "Eine Umkehr hat bei dieser Transaktion erfolgte aufgrund Ihres Kunden eine Geld-zurück-Garantie ausgelöst wird." + +#: includes/common/payment-gateways/paypal-express.php:833 +#: includes/common/payment-gateways/paypal-express.php:1104 +msgid "A reversal has occurred on this transaction due to a chargeback by your customer." +msgstr "Eine Umkehr hat bei dieser Transaktion erfolgte aufgrund einer Rückbelastung durch Ihren Kunden." + +#: includes/common/payment-gateways/paypal-express.php:1101 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer:" +msgstr "Eine Zahlung wurde aufgrund einer Rückbelastung oder eine andere Art von Umkehrung umgekehrt. Die Mittel wurden von Ihrem Kontostand entfernt und auf den Käufer zurückgegeben:" + +#: includes/common/payment-gateways/paypal-express.php:826 +#: includes/common/payment-gateways/paypal-express.php:1097 +msgid "A payment has been accepted." +msgstr "Die Zahlung wurde akzeptiert" + +#: includes/common/payment-gateways/paypal-express.php:818 +#: includes/common/payment-gateways/paypal-express.php:1087 +msgid "The transaction has not terminated, e.g. an authorization may be awaiting completion." +msgstr "Die Transaktion wurde nicht beendet, zB eine Genehmigung Abschluss erwartet werden kann." + +#: includes/common/payment-gateways/payfast.php:531 +#: includes/common/payment-gateways/paypal-express.php:810 +#: includes/common/payment-gateways/paypal-express.php:1077 +msgid "The payment has failed. This happens only if the payment was made from your customer's bank account." +msgstr "Die Zahlung ist fehlgeschlagen. Dies geschieht nur, wenn die Zahlung von Ihrem Kunden das Bankkonto wurde." + +#: includes/common/payment-gateways/paypal-express.php:806 +#: includes/common/payment-gateways/paypal-express.php:1072 +msgid "An authorization for this transaction has been voided." +msgstr "Eine Berechtigung für diese Transaktion wurde für ungültig erklärt." + +#: includes/common/payment-gateways/paypal-express.php:802 +#: includes/common/payment-gateways/paypal-express.php:1067 +msgid "The authorization period for this payment has been reached." +msgstr "Die Ermächtigungsfrist für diese Zahlung erreicht ist." + +#: includes/common/payment-gateways/paypal-express.php:798 +#: includes/common/payment-gateways/paypal-express.php:1062 +msgid "A reversal has been canceled; for example, when you win a dispute and the funds for the reversal have been returned to you." +msgstr "Eine Umkehrung wurde abgebrochen; zum Beispiel, wenn Sie einen Streit und die Mittel für die Umkehr zu gewinnen wurden an Sie zurückgeschickt." + +#: includes/common/payment-gateways/paypal-express.php:499 +#: includes/common/payment-gateways/paypal-express.php:1163 +msgid "PayPal Express Checkout" +msgstr "PayPal Express Kasse" + +#: includes/common/payment-gateways/paypal-chained-payments.php:798 +msgid "Gateway Settings Page Message" +msgstr "Gateway-Einstellungen Seite Nachricht" + +#: includes/common/payment-gateways/paypal-express.php:725 +msgid "Signature" +msgstr "Unterschrift" + +#: includes/common/payment-gateways/eway31.php:506 +#: includes/common/payment-gateways/eway31.php:533 +#: includes/common/shipping-modules/mp-fedex.php:276 +msgid "API Password" +msgstr "API Passwort" + +#: includes/common/payment-gateways/paypal-chained-payments.php:773 +msgid "Enter a percentage of all store sales to collect as a fee. Decimals allowed." +msgstr "Geben Sie einen Prozentsatz aller Filialverkäufe ein, um als Gebühr zu sammeln. Dezimalstellen erlaubt." + +#: includes/common/payment-gateways/paypal-chained-payments.php:757 +msgid "Using PayPal Chained Payments allows you as the multisite network owner to collect a predefined fee or percentage of all sales on network MarketPress stores! This is invisible to the customers who purchase items in a store, and all PayPal fees will be charged to the store owner. To use this option you must create API credentials, and you should make all other gateways unavailable or limited above." +msgstr "Mit PayPal Chained Payments können Sie als Multisite-Netzwerk-Besitzer eine vordefinierte Gebühr oder Prozentsatz aller Verkäufe auf Netzwerk-MarketPress-Stores zu sammeln! Dies ist für die Kunden, die Artikel in einem Geschäft kaufen, unsichtbar, und alle PayPal-Gebühren werden dem Ladeninhaber in Rechnung gestellt. Um diese Option zu verwenden, müssen Sie API-Anmeldeinformationen erstellen, und alle anderen Gateways sollten nicht verfügbar sein." + +#: includes/common/payment-gateways/paypal-chained-payments.php:338 +msgid "Please be aware that we will deduct a ?% fee from the total of each transaction in addition to any fees PayPal may charge you. If for any reason you need to refund a customer for an order, please contact us with a screenshot of the refund receipt in your PayPal history as well as the Transaction ID of our fee deduction so we can issue you a refund. Thank you!" +msgstr "Bitte beachten Sie, dass wir zusätzlich zu den Gebühren, die Ihnen von PayPal berechnet werden können, eine ?% Gebühr von der Summe aller Transaktionen abziehen. Wenn Sie aus irgendeinem Grund einen Kunden für eine Bestellung zurückerstatten müssen, kontaktieren Sie uns bitte mit einem Screenshot der Erstattungsquittung in Ihrem PayPal-Verlauf sowie der Transaktions-ID unseres Gebührenabzugs, damit wir Ihnen eine Rückerstattung erteilen können. Vielen Dank!" + +#: includes/common/payment-gateways/paypal-chained-payments.php:698 +#: includes/common/payment-gateways/paypal-express.php:149 +msgid "There was a problem connecting to PayPal. Please try again." +msgstr "Beim Verbinden mit PayPal ist ein Problem aufgetreten. Bitte versuche es erneut." + +#: includes/common/payment-gateways/paypal-chained-payments.php:470 +#: includes/common/payment-gateways/paypal-express.php:1053 +msgid "There was a problem verifying the IPN string with PayPal. Please try again." +msgstr "Beim Überprüfen der IPN-Zeichenfolge mit PayPal ist ein Problem aufgetreten. Bitte versuche es erneut." + +#: includes/common/payment-gateways/paypal-chained-payments.php:310 +msgid "There was a problem connecting to PayPal to check the status of your purchase. Please check the status of your order here »" +msgstr "Beim Verbinden mit PayPal ist ein Problem aufgetreten, um den Status Ihres Kaufs zu überprüfen bitte prüfe den Status Deiner Bestellung hier »" + +#: includes/common/payment-gateways/payfast.php:539 +#: includes/common/payment-gateways/paypal-chained-payments.php:254 +#: includes/common/payment-gateways/paypal-express.php:1139 +msgid "The payment is pending." +msgstr "Die Zahlung ist noch anhängig." + +#: includes/common/payment-gateways/paypal-chained-payments.php:251 +#: includes/common/payment-gateways/paypal-chained-payments.php:531 +#: includes/common/payment-gateways/paypal-express.php:862 +#: includes/common/payment-gateways/paypal-express.php:1136 +msgid "The payment is pending for an unknown reason. For more information, contact PayPal customer service." +msgstr "Die Zahlung ist aus unbekanntem Grund anhängig. Für weitere Informationen wenden Sie sich an den PayPal Kundendienst." + +#: includes/common/payment-gateways/paypal-chained-payments.php:250 +#: includes/common/payment-gateways/paypal-chained-payments.php:530 +#: includes/common/payment-gateways/paypal-express.php:861 +#: includes/common/payment-gateways/paypal-express.php:1135 +msgid "The payment is pending because you are not yet verified. You must verify your account before you can accept this payment." +msgstr "Die Zahlung ist ausstehend, da Sie noch nicht bestätigt sind. Sie müssen Ihr Konto bestätigen, bevor Sie diese Zahlung annehmen können." + +#: includes/common/payment-gateways/paypal-chained-payments.php:249 +#: includes/common/payment-gateways/paypal-chained-payments.php:529 +#: includes/common/payment-gateways/paypal-express.php:860 +#: includes/common/payment-gateways/paypal-express.php:1134 +msgid "The payment is pending because it was made via credit card and you must upgrade your account to Business or Premier status in order to receive the funds. It can also mean that you have reached the monthly limit for transactions on your account." +msgstr "Die Zahlung ist ausstehend, weil sie über Kreditkarte gemacht wurde und Sie müssen Ihr Konto auf Business oder Premier-Status aktualisieren, um die Mittel zu erhalten. Es kann auch bedeuten, dass Sie die monatliche Grenze für Transaktionen auf Ihrem Konto erreicht haben." + +#: includes/common/payment-gateways/paypal-chained-payments.php:248 +#: includes/common/payment-gateways/paypal-chained-payments.php:528 +#: includes/common/payment-gateways/paypal-express.php:859 +#: includes/common/payment-gateways/paypal-express.php:1133 +msgid "The payment is pending because it was made to an email address that is not yet registered or confirmed." +msgstr "Die Zahlung ist ausstehend, da sie an eine E-Mail-Adresse geschickt wurde, die noch nicht registriert oder bestätigt wurde." + +#: includes/common/payment-gateways/paypal-chained-payments.php:247 +#: includes/common/payment-gateways/paypal-chained-payments.php:527 +#: includes/common/payment-gateways/paypal-express.php:858 +#: includes/common/payment-gateways/paypal-express.php:1132 +msgid "The payment is pending while it is being reviewed by PayPal for risk." +msgstr "Die Zahlung ist anhängig, während es von PayPal auf Risiko überprüft wird." + +#: includes/common/payment-gateways/paypal-chained-payments.php:246 +#: includes/common/payment-gateways/paypal-chained-payments.php:526 +#: includes/common/payment-gateways/paypal-express.php:856 +#: includes/common/payment-gateways/paypal-express.php:1130 +msgid "You do not have a balance in the currency sent, and you do not have your Payment Receiving Preferences set to automatically convert and accept this payment. You must manually accept or deny this payment." +msgstr "Sie verfügen nicht über einen Saldo in der Währung, die Sie gesendet haben, und Sie haben keine Zahlungsempfängereinstellungen, um diese Zahlung automatisch zu konvertieren und zu akzeptieren. Sie müssen diese Zahlung manuell akzeptieren oder verweigern." + +#: includes/common/payment-gateways/paypal-chained-payments.php:245 +#: includes/common/payment-gateways/paypal-chained-payments.php:525 +#: includes/common/payment-gateways/paypal-express.php:855 +#: includes/common/payment-gateways/paypal-express.php:1129 +msgid "The payment is pending because you hold a non-U.S. account and do not have a withdrawal mechanism. You must manually accept or deny this payment from your Account Overview." +msgstr "Die Zahlung ist ausstehend, weil Sie ein Nicht-U.S.-Konto besitzen und nicht über einen Abhebungsmechanismus verfügen. Sie müssen diese Zahlung manuell von Ihrer Kontoübersicht akzeptieren oder verweigern." + +#: includes/common/payment-gateways/paypal-chained-payments.php:244 +#: includes/common/payment-gateways/paypal-chained-payments.php:524 +#: includes/common/payment-gateways/paypal-express.php:854 +#: includes/common/payment-gateways/paypal-express.php:1128 +msgid "The payment is pending because it was made by an eCheck that has not yet cleared." +msgstr "Die Zahlung ist ausstehend, da sie von einem noch nicht gelöschten eCheck erstellt wurde." + +#: includes/common/payment-gateways/paypal-chained-payments.php:243 +#: includes/common/payment-gateways/paypal-chained-payments.php:523 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences section of your Profile." +msgstr "Die Zahlung ist ausstehend, weil Ihr Kunde keine bestätigte Versandadresse enthält und Ihre Zahlungsempfangseinstellungen so eingestellt sind, dass Sie jede dieser Zahlungen manuell akzeptieren oder verweigern möchten. Um Ihre Einstellungen zu ändern, gehen Sie zum Abschnitt \"Einstellungen\" Ihres Profils." + +#: includes/common/payment-gateways/paypal-chained-payments.php:236 +#: includes/common/payment-gateways/paypal-chained-payments.php:516 +msgid "The transaction was rejected by the receiver (you)." +msgstr "Die Transaktion wurde vom Empfänger (Sie) abgelehnt." + +#: includes/common/payment-gateways/paypal-chained-payments.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:510 +#: includes/common/payment-gateways/paypal-express.php:843 +#: includes/common/payment-gateways/paypal-express.php:1115 +msgid "You refunded the payment." +msgstr "Sie haben die Zahlung zurückerstattet." + +#: includes/common/payment-gateways/paypal-chained-payments.php:224 +#: includes/common/payment-gateways/paypal-chained-payments.php:504 +msgid "The transaction is in progress." +msgstr "Die Transaktion läuft." + +#: includes/common/payment-gateways/paypal-chained-payments.php:212 +#: includes/common/payment-gateways/paypal-chained-payments.php:491 +#: includes/common/payment-gateways/paypal-express.php:814 +#: includes/common/payment-gateways/paypal-express.php:1082 +msgid "The payment has been partially refunded." +msgstr "Die Zahlung wurde teilweise zurückerstattet." + +#: includes/common/payment-gateways/paypal-chained-payments.php:202 +#: includes/common/payment-gateways/paypal-chained-payments.php:481 +msgid "PayPal balance, Credit Card, or Instant Transfer" +msgstr "PayPal-Guthaben, Kreditkarte oder Sofortüberweisung" + +#: includes/common/payment-gateways/paypal-chained-payments.php:177 +msgid "There was a problem connecting to PayPal to setup your purchase. Please try again." +msgstr "Beim Herstellen einer Verbindung zum PayPal-Konto ist ein Problem aufgetreten. Bitte versuche es erneut." + +#: includes/common/payment-gateways/paypal-chained-payments.php:122 +msgid "Your PayPal transaction has been canceled." +msgstr "Ihre PayPal-Transaktion wurde storniert." + +#: includes/common/payment-gateways/paypal-chained-payments.php:50 +#: includes/common/payment-gateways/paypal-chained-payments.php:53 +#: includes/common/payment-gateways/paypal-chained-payments.php:732 +#: includes/common/payment-gateways/paypal-express.php:500 +#: includes/common/payment-gateways/paypal-express.php:938 +msgid "PayPal" +msgstr "PayPal" + +#: includes/common/payment-gateways/paypal-chained-payments.php:48 +#: includes/common/payment-gateways/paypal-chained-payments.php:730 +#: includes/common/payment-gateways/paypal-chained-payments.php:756 +#: includes/common/payment-gateways/paypal-chained-payments.php:873 +msgid "PayPal Chained Payments" +msgstr "PayPal Chained Zahlungen" + +#: includes/common/payment-gateways/paypal-payflow.php:59 +#: includes/common/payment-gateways/paypal-payflow.php:467 +msgid "PayPal Payflow Pro" +msgstr "PayPal Payflow Pro" + +#: includes/common/payment-gateways/skrill.php:378 +msgid "Chargeback - A payment was reversed due to a chargeback. The funds have been removed from your account balance and returned to the buyer." +msgstr "Chargeback - Eine Zahlung wurde umgekehrt aufgrund einer Rückbuchung. Die Mittel wurden von Ihrem Kontostand entfernt und an den Käufer zurück." + +#: includes/common/payment-gateways/skrill.php:372 +msgid "Failed - The Credit Card or Direct Debit transaction was declined." +msgstr "Fehler - Die Kreditkarte oder Lastschrift abgelehnt wurde." + +#: includes/common/payment-gateways/_payway.php:354 +#: includes/common/payment-gateways/skrill.php:366 +msgid "Cancelled - The payment was cancelled manually by the sender in their online account history or was auto-cancelled after 14 days pending." +msgstr "Abgebrochen - Die Zahlung wurde in ihrer Online-Kontoauszug manuell vom Absender storniert oder wurde automatisch storniert nach 14 Tagen noch aus." + +#: includes/common/payment-gateways/skrill.php:360 +msgid "Pending - The payment is pending. It can take 2-3 days for bank transfers to complete." +msgstr "Ausstehend - Die Zahlung ist noch anhängig. Es kann dauern 2-3 Tage für Banküberweisungen zu vervollständigen." + +#: includes/common/payment-gateways/_payway.php:349 +#: includes/common/payment-gateways/skrill.php:354 +msgid "Processed - The payment has been completed, and the funds have been added successfully to your Moneybookers account balance." +msgstr "Verarbeitet - Die Bezahlung abgeschlossen ist, und die Mittel wurden erfolgreich auf Ihr Moneybookers-Konto gutgeschrieben." + +#: includes/common/payment-gateways/skrill.php:189 +msgid "Shown to the customer on the confirmation screen - the end step of the process - a note, confirmation number, or any other message. Line breaks <br> may be used for longer messages." +msgstr "Dargestellt an den Kunden auf dem Bestätigungsbildschirm - das Ende Schritt des Prozesses - eine Note, die Bestätigungsnummer oder eine andere Nachricht. Zeilenumbrüche & lt; br & gt; kann für längere Nachrichten verwendet werden." + +#: includes/common/payment-gateways/skrill.php:188 +msgid "Confirmation Note (optional)" +msgstr "Bestätigung Hinweis (optional)" + +#: includes/common/payment-gateways/skrill.php:183 +msgid "The URL of the logo which you would like to appear at the top of the payment form. The logo must be accessible via HTTPS otherwise it will not be shown. For best integration results we recommend that you use a logo with dimensions up to 200px in width and 50px in height." +msgstr "Die URL des Logos, die Sie an der Spitze des Zahlungsformular angezeigt werden soll. Das Logo muss über HTTPS zugänglich sein sonst wird es nicht angezeigt. Für eine optimale Integration Ergebnisse empfehlen wir, dass Sie ein Logo mit Abmessungen bis zu 200 Pixel in der Breite und 50 Pixel in der Höhe verwendet werden." + +#: includes/common/payment-gateways/skrill.php:182 +msgid "Logo Image (optional)" +msgstr "Logo Bild (optional)" + +#: includes/common/payment-gateways/skrill.php:177 +msgid "The name of this store, which will be shown on the gateway. If no value is submitted, the account email will be shown as the recipient of the payment." +msgstr "Der Name dieses Geschäft, das auf dem Gateway angezeigt. Wenn kein Wert gesendet wird, wird das Konto E-Mail als Empfänger der Zahlung angezeigt." + +#: includes/common/payment-gateways/skrill.php:176 +msgid "Merchant Name (optional)" +msgstr "Verkäufer Name (optional)" + +#: includes/common/payment-gateways/skrill.php:165 +msgid "Language" +msgstr "Sprache" + +#: includes/common/payment-gateways/2checkout.php:368 +#: includes/common/payment-gateways/authorizenet-aim.php:262 +#: includes/common/payment-gateways/eway.php:363 +#: includes/common/payment-gateways/eway31.php:471 +#: includes/common/payment-gateways/mollie.php:91 +#: includes/common/payment-gateways/paymill.php:193 +#: includes/common/payment-gateways/paypal-chained-payments.php:356 +#: includes/common/payment-gateways/paypal-express.php:688 +#: includes/common/payment-gateways/paypal-payflow.php:432 +#: includes/common/payment-gateways/pin.php:186 +#: includes/common/payment-gateways/skrill.php:152 +#: includes/common/payment-gateways/stripe.php:288 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:104 +msgid "Currency" +msgstr "Währung" + +#: includes/common/payment-gateways/2checkout.php:359 +#: includes/common/payment-gateways/skrill.php:143 +msgid "Secret Word" +msgstr "Secret Word" + +#: includes/common/payment-gateways/skrill.php:261 +msgid "Order ID:" +msgstr "Auftragsnummer: " + +#: includes/common/payment-gateways/skrill.php:234 +msgid "Complete Checkout" +msgstr "Kostenpflichtig Kaufen " + +#: includes/common/payment-gateways/skrill.php:204 +msgid "Your Moneybookers transaction has been canceled." +msgstr "Deine Moneybookers Transaktion wurde abgebrochen. " + +#: includes/common/payment-gateways/manual-payments.php:155 +msgid "This is the email text to send to those who have made manual payment checkouts. You should include your manual payment instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "Dies ist die E-Mail-Text an diejenigen senden, die manuelle Zahlung Kassen gemacht haben. Sie sollten Ihre manuelle Zahlungsanweisungen hier enthalten. Er überschreibt die Kasse E-Mail-Standard um. Diese Codes werden mit Bestellangaben ersetzt: CUSTOMER, ORDERID, Order, Versandinfo, Payment, TOTAL, TRACKINGURL. Kein HTML erlaubt." + +#: includes/common/payment-gateways/_payway.php:257 +#: includes/common/payment-gateways/manual-payments.php:128 +msgid "Record payments manually, such as by Cash, Check, or EFT." +msgstr "Nehmen Sie Zahlungen manuell, beispielsweise durch Bargeld, Scheck oder EFT." + +#: includes/common/payment-gateways/manual-payments.php:71 +msgid "Manual/Invoice" +msgstr "Überweisung" + +#: includes/admin/class-mp-setup-wizard.php:648 +#: includes/common/payment-gateways/manual-payments.php:35 +#: includes/common/payment-gateways/manual-payments.php:36 +msgid "Manual Payment" +msgstr "Manuelle Zahlung" + +#: includes/common/payment-gateways/manual-payments.php:34 +#: includes/common/payment-gateways/manual-payments.php:163 +msgid "Manual Payments" +msgstr "Manuelle Zahlungen" + +#: includes/common/payment-gateways/_ideal.php:288 +msgid "iDEAL Simulator (for testing)" +msgstr "iDEAL Simulator (zum Testen)" + +#: includes/common/payment-gateways/_ideal.php:287 +msgid "ABN Amro Bank" +msgstr "ABN Amro Bank" + +#: includes/common/payment-gateways/_ideal.php:286 +msgid "Friesland Bank" +msgstr "Friesland Bank" + +#: includes/common/payment-gateways/_ideal.php:285 +msgid "Rabobank" +msgstr "Rabobank" + +#: includes/common/payment-gateways/_ideal.php:284 +msgid "ING Bank" +msgstr "ING Bank" + +#: includes/common/payment-gateways/_ideal.php:279 +msgid "Bank" +msgstr "Bank" + +#: includes/common/payment-gateways/_ideal.php:270 +msgid "To make it easier to pay for online products and services, the Dutch banking community has developed the iDEAL online payment method. iDEAL allows online payments to be made using online banking in EUR only." +msgstr "Um es einfacher für Online-Produkte und Dienstleistungen zu zahlen, hat die niederländische Bankengemeinschaft die ideale Online-Zahlungsmittel entwickelt. iDEAL ermöglicht Online-Zahlungen nur mit Online-Banking in EUR vorgenommen werden." + +#: includes/common/payment-gateways/_ideal.php:247 +#: includes/common/payment-gateways/_payway.php:199 +#: includes/common/payment-gateways/manual-payments.php:68 +msgid "Invoiced" +msgstr "Rechnung gestellt" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1016 +msgid "Coupon" +msgstr "Gutschein" + +#: includes/common/payment-gateways/_ideal.php:77 +#: includes/common/payment-gateways/_ideal.php:250 +#: includes/common/payment-gateways/_payway.php:202 +msgid "iDEAL" +msgstr "iDEAL" + +#: includes/common/payment-gateways/_ideal.php:76 +msgid "iDEAL (beta)" +msgstr "iDEAL (beta)" + +#: includes/common/payment-gateways/payfast.php:327 +msgid "Merchant Key" +msgstr "Merchant Key" + +#: includes/common/payment-gateways/_ideal.php:293 +#: includes/common/payment-gateways/_payway.php:302 +#: includes/common/payment-gateways/payfast.php:324 +msgid "Merchant ID" +msgstr "Händler-ID" + +#: includes/common/payment-gateways/eway31.php:462 +msgid "eWay Rapid 3.0 Payments lets merchants recieve credit card payments through eWay without need for users to leave the shop. Note this gateway requires a valid SSL certificate configured for this site." +msgstr "eWay Schnelle 3.0 Zahlungen können Händler Kreditkartenzahlungen über eWay ohne Notwendigkeit empfangen Anwender den Laden verlassen. Beachten Sie dieses Gateway ein gültiges SSL-Zertifikat für diesen Standort konfiguriert werden muss." + +#: includes/common/payment-gateways/eway.php:452 +msgid "There was a problem connecting to eWay. Please try again." +msgstr "Bei der Verbindung mit eWay ist ein Problem aufgetreten. Bitte versuchen Sie es erneut." + +#: includes/common/payment-gateways/eway.php:432 +#: includes/common/payment-gateways/eway.php:437 +msgid "The url of the image can be hosted on your website and pass the secure https:// path of the image to be displayed at the top of the website. This is the second image block on the webpage and is restricted to 960px X 65px. A default secure image is used if none is supplied." +msgstr "Die URL des Bildes kann auf Ihrer Website gehostet werden und die sichere https-Pass: // Pfad des Bildes an der Spitze der Website angezeigt werden. Dies ist der zweite Bildblock auf der Webseite und auf 960px X 65px beschränkt. Eine sichere Standard Bild wird verwendet, wenn keine zugeführt wird." + +#: includes/common/payment-gateways/eway.php:431 +#: includes/common/payment-gateways/eway.php:436 +msgid "Company Logo (optional)" +msgstr "Firmenlogo (optional)" + +#: includes/common/payment-gateways/eway.php:427 +msgid "The page footer text can be customised and populated below the customer's order details. Useful for contact information." +msgstr "Die Fußleiste Text kann unter die Bestellung des Kunden Details besonders angefertigt und aufgefüllt werden. Nützlich für die Kontaktinformationen angegeben." + +#: includes/common/payment-gateways/eway.php:426 +msgid "Page Footer (optional)" +msgstr "Seitenfooter (optional)" + +#: includes/common/payment-gateways/eway.php:421 +msgid "Page Description (optional)" +msgstr "Firmenbeschreibung (optional)" + +#: includes/common/payment-gateways/eway.php:417 +#: includes/common/payment-gateways/eway.php:422 +msgid "This value is used to populate the browsers title bar at the top of the screen." +msgstr "Dieser Wert wird verwendet, um den Browser Titelleiste am oberen Rand des Bildschirms zu füllen." + +#: includes/common/payment-gateways/eway.php:416 +msgid "Page Title (optional)" +msgstr "Seitentitel (optional)" + +#: includes/common/payment-gateways/eway.php:412 +msgid "This will be displayed as the company the customer is purchasing from, including this is highly recommended." +msgstr "Dies wird als das Unternehmen angezeigt werden der Kunde von kauft, einschließlich dieser sehr zu empfehlen ist." + +#: includes/common/payment-gateways/eway.php:411 +msgid "Company Name" +msgstr "Firmenname" + +#: includes/common/payment-gateways/eway.php:394 +msgid "Customer ID" +msgstr "Kundennummer" + +#: includes/common/payment-gateways/eway.php:381 +#: includes/common/payment-gateways/eway31.php:488 +msgid "Live API Credentials" +msgstr "Live-API Credentials" + +#: includes/common/payment-gateways/eway.php:371 +#: includes/common/payment-gateways/eway31.php:479 +msgid "Gateway Mode" +msgstr "Gateway-Modus" + +#: includes/common/payment-gateways/eway.php:354 +msgid "The Hosted Page is a webpage hosted on eWAY's side eliminating the need for merchants to capture, transmit or store credit card numbers. At the checkout time the merchant automatically redirects the customer to the Hosted Page where they would enter their details and have the transaction processed. Upon completion of the transaction the customer is redirected back to the MarketPress checkout confirmation page." +msgstr "Der gehostete Seite ist eine Webseite, auf eWay Seite gehostet die Notwendigkeit für Händler Beseitigung Zahlen zu erfassen, zu übertragen oder zu speichern Kreditkarte. An der Kasse Zeit leitet der Händler automatisch den Kunden auf dem gehosteten Seite, wo sie ihre Daten eingeben würden und haben die Transaktion verarbeitet. Nach Abschluss der Transaktion wird der Kunde auf die MarketPress Kasse Bestätigungsseite umgeleitet zurück." + +#: includes/common/payment-gateways/eway.php:314 +msgid "There was a problem with your credit card information: %s" +msgstr "Mit Ihrer Kreditkarteninformation ist ein Problem aufgetreten: %s" + +#: includes/common/payment-gateways/eway.php:300 +msgid "Paid - The card has been processed - %s" +msgstr "Paid - Die Karte verarbeitet wurde - %s" + +#: includes/common/payment-gateways/eway.php:253 +msgid "There was a problem setting up the transaction with eWay: %s" +msgstr "Es gab ein Problem , die Transaktion mit eWay Einrichtung: %s" + +#: includes/common/payment-gateways/eway.php:245 +#: includes/common/payment-gateways/eway.php:289 +msgid "There was a problem parsing the response from eWay. Please try again." +msgstr "Es gab ein Problem die Antwort von eWay Parsen. Bitte versuche es erneut." + +#: includes/common/payment-gateways/_ideal.php:159 +#: includes/common/payment-gateways/eway.php:189 +#: includes/common/payment-gateways/paypal-chained-payments.php:634 +#: includes/common/payment-gateways/paypal-express.php:322 +#: includes/common/payment-gateways/paypal-express.php:473 +msgid "%s Store Purchase - Order ID: %s" +msgstr "Kauf von %s Shop - Bestellnummer: %s" + +#: includes/common/payment-gateways/eway.php:147 +#: includes/common/payment-gateways/eway.php:462 +msgid "eWay Shared Payments" +msgstr "eWay Geteilt Zahlungen" + +#: includes/common/payment-gateways/_cubepoints.php:214 +msgid "This is the email text to send to those who have made CubePoints checkouts. You should include your CubePoints instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "Dies ist die E-Mail-Text an diejenigen senden, die CubePoints Kassen gemacht haben. Sie sollten Ihre CubePoints Anweisungen hier enthalten. Er überschreibt die Kasse E-Mail-Standard um. Diese Codes werden mit Bestellangaben ersetzt: CUSTOMER, ORDERID, Order, Versandinfo, Payment, TOTAL, TRACKINGURL. Kein HTML erlaubt." + +#: includes/common/payment-gateways/_cubepoints.php:212 +#: includes/common/payment-gateways/free_orders.php:188 +#: includes/common/payment-gateways/manual-payments.php:154 +msgid "Order Confirmation Email" +msgstr "Bestellung Bestätigungs-Email" + +#: includes/common/payment-gateways/_cubepoints.php:207 +#: includes/common/payment-gateways/manual-payments.php:149 +msgid "Confirmation User Instructions" +msgstr "Anleitung Bestätigung Benutzer" + +#: includes/common/payment-gateways/_cubepoints.php:202 +#: includes/common/payment-gateways/manual-payments.php:144 +msgid "User Instructions" +msgstr "Benutzeranleitung" + +#: includes/common/payment-gateways/_cubepoints.php:198 +#: includes/common/payment-gateways/free_orders.php:170 +#: includes/common/payment-gateways/manual-payments.php:139 +msgid "Enter a public name for this payment method that is displayed to users - No HTML" +msgstr "Geben Sie einen öffentlichen Namen für diese Zahlungsmethode, die den Benutzern angezeigt wird - kein HTML" + +#: includes/admin/class-mp-orders-admin.php:532 +#: includes/common/payment-gateways/_cubepoints.php:196 +#: includes/common/payment-gateways/free_orders.php:169 +#: includes/common/payment-gateways/manual-payments.php:138 +msgid "Method Name" +msgstr "Methodenname" + +#: includes/common/payment-gateways/_cubepoints.php:187 +msgid "Accept CubePoints as payment(requires the CubePoints plugin)." +msgstr "Akzeptieren CubePoints als Zahlung (das CubePoints Plugin benötigt)." + +#: includes/common/payment-gateways/_cubepoints.php:140 +msgid "Sorry, but you do not appear to have enough points to complete this purchase!" +msgstr "Sorry, aber Sie scheinen nicht genug Punkte haben, um den Kauf abzuschließen!" + +#: includes/common/payment-gateways/_cubepoints.php:124 +msgid "%s Store Purchase" +msgstr "%s Store kaufen" + +#: includes/common/payment-gateways/_cubepoints.php:79 +#: includes/common/payment-gateways/_cubepoints.php:171 +msgid "Your current points: " +msgstr "Ihre aktuellen Punkte:" + +#: includes/common/payment-gateways/_cubepoints.php:133 +#: includes/common/payment-gateways/_cubepoints.php:197 +msgid "CubePoints" +msgstr "CubePoints" + +#: includes/common/payment-gateways/authorizenet-aim.php:344 +msgid "Authorize.net AIM Checkout" +msgstr "Authorize.net AIM Checkout" + +#: includes/common/payment-gateways/authorizenet-aim.php:331 +msgid "Custom API URL" +msgstr "Benutzerdefinierte API-URL" + +#: includes/common/payment-gateways/authorizenet-aim.php:332 +msgid "Many other gateways have Authorize.net API emulators. To use one of these gateways input their API post url here." +msgstr "Viele andere Gateways verfügen über Authorize.net API Emulatoren. Um eines dieser Gateways Eingang ihre API Post-URL verwenden hier." + +#: includes/common/payment-gateways/authorizenet-aim.php:322 +msgid "Request a delimited response from the payment gateway." +msgstr "Fordern Sie eine begrenzte Antwort vom Payment Gateway." + +#: includes/common/payment-gateways/authorizenet-aim.php:316 +msgid "Security: MD5 Hash" +msgstr "Sicherheit: MD5 Hash" + +#: includes/common/payment-gateways/authorizenet-aim.php:317 +msgid "The payment gateway generated MD5 hash value that can be used to authenticate the transaction response. Not needed because responses are returned using an SSL connection." +msgstr "Das Payment-Gateway MD5-Hash-Wert erzeugt, die verwendet werden, um die Transaktionsantwort zu authentifizieren. Nicht erforderlich, da Antworten zurückgegeben werden über eine SSL-Verbindung." + +#: includes/common/payment-gateways/authorizenet-aim.php:306 +msgid "Customer Receipt Email Footer" +msgstr "Kassabon Kunde E-Mail Fußzeile" + +#: includes/common/payment-gateways/authorizenet-aim.php:296 +msgid "Customer Receipt Email Header" +msgstr "Kassabon Kunde E-Mail Kopfzeile" + +#: includes/common/payment-gateways/authorizenet-aim.php:297 +#: includes/common/payment-gateways/paypal-payflow.php:446 +msgid "This text will appear as the header of the email receipt sent to the customer." +msgstr "Dieser Text wird als der Kopfzeile der E-Mail-Empfang erscheinen an den Kunden gesendet." + +#: includes/common/payment-gateways/authorizenet-aim.php:282 +msgid "Encapsulation Character" +msgstr "Encapsulation Charakter" + +#: includes/common/payment-gateways/authorizenet-aim.php:283 +msgid "Authorize.net default is blank. Otherwise, get this from your credit card processor. If the transactions are going through, but getting strange responses, this character is most likely wrong." +msgstr "Authorize.net Standardeinstellung ist leer. Andernfalls erhalten diese von Ihrem Kreditkartenprozessor. Wenn die Transaktionen durchmachen, aber immer seltsame Antworten, ist dieser Charakter höchstwahrscheinlich falsch." + +#: includes/common/payment-gateways/authorizenet-aim.php:273 +msgid "Optional settings to control advanced options" +msgstr "Optionale Einstellungen erweiterten Optionen zu steuern" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:224 +#: includes/common/payment-gateways/authorizenet-aim.php:272 +msgid "Advanced Settings" +msgstr "Erweiterte Einstellungen" + +#: includes/common/payment-gateways/authorizenet-aim.php:253 +msgid "Transaction Key" +msgstr "Transactionsschlüssel" + +#: includes/common/payment-gateways/authorizenet-aim.php:246 +msgid "Login ID" +msgstr "Login ID" + +#: includes/common/payment-gateways/paypal-payflow.php:396 +msgid "Gateway Credentials" +msgstr "Gateway Credentials" + +#: includes/common/payment-gateways/authorizenet-aim.php:221 +msgid "Authorize.net AIM is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway. USD is the only currency supported by this gateway." +msgstr "Authorize.net AIM ist eine anpassbare Zahlungsverarbeitungslösung, die die Händler die Kontrolle über alle Schritte bei der Verarbeitung einer Transaktion gibt. Ein SSL-Zertifikat wird benötigt um dieses Gateway zu verwenden. USD ist die einzige Währung, die von diesem Gateway unterstützt." + +#: includes/common/payment-gateways/authorizenet-aim.php:205 +msgid "There was a problem finalizing your purchase. %s Please go back and try again." +msgstr "Es gab ein Problem beim Abschließen ihrer Bestellung. %s Bitte gehen Sie zurück und probieren Sie es erneut." + +#: includes/common/payment-gateways/payfast.php:519 +#: includes/common/payment-gateways/paypal-chained-payments.php:218 +#: includes/common/payment-gateways/paypal-chained-payments.php:498 +#: includes/common/payment-gateways/paypal-express.php:822 +#: includes/common/payment-gateways/paypal-express.php:1092 +msgid "The payment has been completed, and the funds have been added successfully to your account balance." +msgstr "Die Zahlung abgeschlossen worden ist, und die Mittel wurden erfolgreich auf Ihr Konto gutgeschrieben." + +#: includes/common/payment-gateways/paypal-payflow.php:233 +msgid "Please enter a valid credit card security code" +msgstr "Bitte geben Sie einen gültigen CCV Code ein." + +#: includes/common/payment-gateways/paypal-payflow.php:224 +#: includes/public/class-mp-checkout.php:867 +msgid "Please enter a valid credit card number" +msgstr "Bitte geben Sie eine gültige Kreditkartennummer ein." + +#: includes/common/payment-gateways/paypal-payflow.php:221 +msgid "Please enter your credit card number" +msgstr "Bitte Kreditkartennummer eingeben" + +#: includes/common/payment-gateways/paypal-payflow.php:217 +msgid "Please enter your credit card security code" +msgstr "Bitte geben Sie den CCV Code der Kreditkarte ein." + +#: includes/common/payment-gateways/paypal-payflow.php:213 +msgid "Please select your credit card expiration date." +msgstr "Bitte wählen Sie das Ablaufdatum Ihrer Kreditkarte aus." + +#: includes/common/payment-gateways/2checkout.php:299 +#: includes/common/payment-gateways/authorizenet-aim.php:50 +#: includes/common/payment-gateways/eway.php:148 +#: includes/common/payment-gateways/eway.php:298 +#: includes/common/payment-gateways/eway31.php:267 +#: includes/common/payment-gateways/paymill.php:46 +#: includes/common/payment-gateways/paypal-express.php:972 +#: includes/common/payment-gateways/paypal-payflow.php:60 +#: includes/common/payment-gateways/pin.php:46 +#: includes/common/payment-gateways/simplify.php:19 +#: includes/common/payment-gateways/stripe.php:46 +#: includes/common/payment-gateways/wepay.php:37 +msgid "Credit Card" +msgstr "Kreditkarte" + +#: includes/common/payment-gateways/authorizenet-aim.php:49 +msgid "Authorize.net Checkout" +msgstr "Authorize.net Checkout" + +#: includes/common/payment-gateways/skrill.php:156 +#: includes/common/payment-gateways/stripe.php:293 +msgid "Selecting a currency other than that used for your store may cause problems at checkout." +msgstr "eine andere Währung als für Ihren Speicher verwendet, dass Auswählen können Probleme an der Kasse führen." + +#: includes/common/payment-gateways/2checkout.php:352 +msgid "Seller ID" +msgstr "Verkäufer-ID" + +#: includes/common/payment-gateways/2checkout.php:340 +#: includes/common/payment-gateways/_ideal.php:311 +#: includes/common/payment-gateways/authorizenet-aim.php:234 +#: includes/common/payment-gateways/eway.php:376 +#: includes/common/payment-gateways/payfast.php:315 +#: includes/common/payment-gateways/paypal-chained-payments.php:368 +#: includes/common/payment-gateways/paypal-express.php:699 +#: includes/common/payment-gateways/paypal-payflow.php:391 +msgid "Live" +msgstr "Live" + +#: includes/common/payment-gateways/2checkout.php:339 +#: includes/common/payment-gateways/authorizenet-aim.php:233 +#: includes/common/payment-gateways/eway.php:375 +#: includes/common/payment-gateways/paypal-chained-payments.php:367 +#: includes/common/payment-gateways/paypal-express.php:698 +#: includes/common/payment-gateways/paypal-payflow.php:390 +#: includes/common/shipping-modules/mp-fedex.php:263 +msgid "Sandbox" +msgstr "Sandbox" + +#: includes/common/payment-gateways/2checkout.php:336 +#: includes/common/payment-gateways/_ideal.php:307 +#: includes/common/payment-gateways/authorizenet-aim.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:365 +#: includes/common/payment-gateways/paypal-express.php:695 +#: includes/common/payment-gateways/paypal-payflow.php:387 +#: includes/common/payment-gateways/wepay.php:130 +#: includes/common/shipping-modules/mp-fedex.php:260 +msgid "Mode" +msgstr "Modus" + +#: includes/common/payment-gateways/2checkout.php:288 +#: includes/common/payment-gateways/mijireh.php:242 +#: includes/common/payment-gateways/mollie.php:212 +msgid "The order has been received" +msgstr "Die Bestellung ist eingegangen" + +#: includes/common/payment-gateways/2checkout.php:74 +#: includes/common/payment-gateways/2checkout.php:75 +#: includes/common/payment-gateways/2checkout.php:435 +msgid "2Checkout" +msgstr "2Checkout" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:306 +msgid "Confirm" +msgstr "Bestätigen" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:218 +#: includes/common/class-mp-cart.php:974 includes/common/class-mp-cart.php:1354 +#: includes/common/template-functions.php:918 +msgid "Checkout" +msgstr "Zur Kasse" + +#: includes/common/template-functions.php:207 +msgid "Check Order Status" +msgstr "Bestellstatus überprüfen" + +#: includes/common/template-functions.php:235 +msgid "View Products" +msgstr "Produkte anzeigen" + +#: includes/common/template-functions.php:263 +msgid "Visit Store" +msgstr "Shop besuchen" + +#: includes/common/template-functions.php:2912 +#: includes/multisite/template-functions.php:448 +msgid "Order By" +msgstr "Sortiere nach" + +#: includes/common/template-functions.php:2887 +#: includes/multisite/template-functions.php:405 +msgid "Price (High to Low)" +msgstr "Preis (absteigend)" + +#: includes/common/template-functions.php:2886 +#: includes/multisite/template-functions.php:404 +msgid "Price (Low to High)" +msgstr "Preis (niedrig bis hoch)" + +#: includes/common/template-functions.php:2881 +#: includes/multisite/template-functions.php:399 +msgid "Default" +msgstr "Default" + +#: includes/common/template-functions.php:2858 +msgid "Show All" +msgstr "Zeige alles" + +#: includes/common/class-mp-product.php:2048 +msgid "View Larger Image »" +msgstr "Größeres Bild anzeigen »" + +#: includes/common/class-mp-product.php:979 +msgid "Out of Stock" +msgstr "Ausverkauft" + +#: includes/common/template-functions.php:148 +msgid "Price: " +msgstr "Preis:" + +#: includes/multisite/template-functions.php:833 +msgid "No Tags" +msgstr "Keine Eigenschaften" + +#: includes/common/template-functions.php:3162 +msgid "Uncategorized" +msgstr "Nicht kategorisiert" + +#: includes/common/class-mp-cart.php:569 includes/common/class-mp-order.php:604 +#: includes/common/helpers.php:115 +msgid "Download" +msgstr "Download" + +#: includes/common/class-mp-cart.php:1353 +msgid "Empty Cart" +msgstr "Zur Kasse" + +#: includes/common/payment-gateways/_payway.php:291 +#: includes/common/payment-gateways/paypal-express.php:718 +#: includes/common/payment-gateways/paypal-payflow.php:423 +#: includes/common/shipping-modules/mp-ups.php:158 +#: includes/public/class-mp-checkout.php:1254 +#: includes/public/class-mp-checkout.php:1383 +msgid "Password" +msgstr "Passwort" + +#: includes/common/payment-gateways/eway.php:387 +#: includes/common/payment-gateways/paypal-express.php:711 +#: includes/common/shipping-modules/mp-usps.php:185 +#: includes/public/class-mp-checkout.php:1249 +msgid "Username" +msgstr "Benutzername" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:437 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:790 +msgid "Have a coupon code?" +msgstr "Haben Sie einen Gutschein-Code?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:321 +#: includes/admin/class-mp-orders-admin.php:526 +#: includes/common/class-mp-cart.php:592 +msgid "Remove" +msgstr "Entfernen" + +#: includes/admin/class-mp-ajax.php:316 +msgid "Quantity:" +msgstr "Anzahl:" + +#: includes/admin/class-mp-products-admin.php:2140 +#: includes/admin/class-mp-products-admin.php:2387 +#: includes/common/shipping-modules/class-mp-shipping-api.php:507 +msgid "Extra Shipping Cost" +msgstr "Zusätzliche Versandkosten" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:403 +msgid "Choose a Shipping Method:" +msgstr "Versandmethode auswählen:" + +#: includes/admin/class-mp-products-admin.php:1691 +#: includes/admin/class-mp-products-admin.php:2131 +#: includes/admin/class-mp-products-admin.php:2378 +#: includes/common/shipping-modules/class-mp-shipping-api.php:228 +msgid "Ounces" +msgstr "Unzen" + +#: includes/admin/class-mp-products-admin.php:1684 +#: includes/admin/class-mp-products-admin.php:2123 +#: includes/admin/class-mp-products-admin.php:2369 +#: includes/admin/class-mp-setup-wizard.php:546 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:165 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +#: includes/common/shipping-modules/class-mp-shipping-api.php:227 +msgid "Pounds" +msgstr "Pfund" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:226 +msgid "Product Weight:" +msgstr "Produktgewicht:" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:214 +msgid "Weight (Kilograms)" +msgstr "Gewicht (Kilogramm)" + +#: includes/admin/widgets/ms-global-categories.php:82 +msgid "Number of Categories:" +msgstr "Anzahl der Kategorien:" + +#: includes/admin/widgets/ms-global-categories.php:72 +msgid "Product Count" +msgstr "Produktanzahl" + +#: includes/addons/class-mp-addons-list-table.php:20 +#: includes/admin/class-mp-product-attributes-admin.php:129 +#: includes/admin/class-mp-product-attributes-list-table.php:22 +#: includes/admin/class-mp-products-admin.php:2216 +#: includes/admin/class-mp-shortcode-builder.php:628 +#: includes/admin/class-mp-shortcode-builder.php:1415 +#: includes/admin/widgets/ms-global-categories.php:70 +#: includes/common/shipping-modules/mp-fedex.php:395 +#: includes/common/shipping-modules/mp-ups.php:202 +#: includes/common/shipping-modules/mp-usps.php:243 +#: includes/public/class-mp-checkout.php:314 +msgid "Name" +msgstr "Name" + +#: includes/admin/widgets/ms-global-categories.php:67 +msgid "Order Categories By:" +msgstr "Sortiere Kategorien nach:" + +#: includes/admin/widgets/ms-global-categories.php:24 +#: includes/admin/widgets/ms-global-categories.php:50 +msgid "Global Product Categories" +msgstr "Globale Produktkategorien" + +#: includes/admin/widgets/ms-global-categories.php:15 +msgid "Global Product Category List" +msgstr "Globale Produktkategorienliste" + +#: includes/admin/widgets/ms-global-categories.php:13 +msgid "Displays a network-wide HTML list of product categories from network MarketPress stores." +msgstr "Zeigt eine netzwerkweite HTML-Liste der Produktkategorien aus dem Network Market Store an." + +#: includes/admin/widgets/ms-global-tag-cloud.php:24 +#: includes/admin/widgets/ms-global-tag-cloud.php:45 +msgid "Global Product Tags" +msgstr "Globale Produkt-Eigenschaften" + +#: includes/admin/widgets/ms-global-tag-cloud.php:15 +msgid "Global Product Tag Cloud" +msgstr "Globale Produkt-Eigenschaften-Wolke" + +#: includes/admin/class-mp-shortcode-builder.php:947 +#: includes/admin/widgets/ms-global-product-list.php:173 +msgid "Excerpt" +msgstr "Auszug" + +#: includes/admin/widgets/ms-global-product-list.php:169 +msgid "Content To Show:" +msgstr "Inhalt anzeigen:" + +#: includes/admin/widgets/ms-global-product-list.php:140 +msgid "Limit To Product Tag:" +msgstr "Begrenzung auf Produkt-Eigenschaft:" + +#: includes/admin/widgets/ms-global-product-list.php:132 +msgid "Limit To Product Category:" +msgstr "Begrenzt auf Produktkategorie:" + +#: includes/admin/widgets/ms-global-product-list.php:72 +msgid "Global Products" +msgstr "Globale Produkte" + +#: includes/admin/widgets/ms-global-product-list.php:16 +msgid "Global Product List" +msgstr "Globale Produktliste" + +#: includes/admin/widgets/ms-global-product-list.php:14 +msgid "Shows a customizable global list of products from network MarketPress stores." +msgstr "Zeigt eine kundengerechte globale Liste der Produkte vom Netz MarketPress Shop an." + +#: includes/common/class-mp-product.php:974 +#: includes/multisite/template-functions.php:731 +msgid "Buy Now »" +msgstr "Kaufe jetzt »" + +#: includes/admin/widgets/ms-global-tag-cloud.php:13 +msgid "Displays global most used product tags in cloud format from network MarketPress stores." +msgstr "Zeigt die weltweit am häufigsten verwendeten Produkt-Eigenschaften im Cloud-Format aus dem Network Market-Store an." + +#: includes/multisite/class-mp-admin-multisite.php:438 +msgid "Theme Permissions" +msgstr "Theme Berechtigungen" + +#: includes/multisite/class-mp-admin-multisite.php:402 +#: includes/multisite/class-mp-admin-multisite.php:448 +msgid "No Access" +msgstr "Kein Zugriff" + +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:120 +msgid "Pro Site Level" +msgstr "Pro-Site-Stufe" + +#: includes/multisite/class-mp-admin-multisite.php:401 +#: includes/multisite/class-mp-admin-multisite.php:447 +msgid "All Can Use" +msgstr "Alle können verwenden" + +#: includes/multisite/class-mp-admin-multisite.php:390 +msgid "Gateway Permissions" +msgstr "Gateway Berechtigungen" + +#: includes/multisite/class-mp-admin-multisite.php:375 +msgid "Select a Gateway" +msgstr "Wählen Sie ein Gateway aus" + +#: includes/multisite/class-mp-admin-multisite.php:350 +msgid "Global Gateway" +msgstr "Globales Gateway" + +#. Plugin Name of the plugin/theme +msgid "MarketPress" +msgstr "MarketPress" + +#: includes/admin/widgets/product-tag-cloud.php:7 +msgid "Your most used product tags in cloud format from your MarketPress store." +msgstr "Ihre am meisten verwendeten Produkt-Eigenschaften im Cloud-Format von Ihrem MarketPress-Shop." + +#: includes/admin/widgets/categories.php:79 +msgid "Show hierarchy" +msgstr "Hierarchie anzeigen" + +#: includes/admin/widgets/categories.php:76 +#: includes/admin/widgets/ms-global-categories.php:92 +msgid "Show product counts" +msgstr "Produktzähler anzeigen" + +#: includes/admin/widgets/categories.php:73 +msgid "Show as dropdown" +msgstr "Als Dropdown anzeigen" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:710 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:736 +#: includes/admin/widgets/categories.php:30 +msgid "Select Category" +msgstr "Wähle Kategorie" + +#: includes/admin/widgets/categories.php:7 +msgid "A list or dropdown of product categories from your MarketPress store." +msgstr "Eine Liste oder ein Dropdown der Produktkategorien aus Ihrem MarketPress-Shop." + +#: includes/admin/widgets/product-list.php:250 +msgid "Show Buy Button" +msgstr "Anzeigen Kaufen Button" + +#: includes/admin/widgets/ms-global-product-list.php:183 +#: includes/admin/widgets/product-list.php:244 +msgid "Show Price" +msgstr "Zeige Preis" + +#: includes/admin/widgets/product-list.php:241 +msgid "Show Excerpt" +msgstr "Auszug anzeigen" + +#: includes/admin/widgets/ms-global-product-list.php:155 +#: includes/admin/widgets/product-list.php:238 +msgid "Thumbnail Size:" +msgstr "Miniaturansicht Größe:" + +#: includes/admin/widgets/ms-global-product-list.php:153 +#: includes/admin/widgets/product-list.php:237 +msgid "Show Thumbnail" +msgstr "Miniaturansicht anzeigen" + +#: includes/admin/widgets/ms-global-product-list.php:147 +#: includes/admin/widgets/product-list.php:233 +msgid "Display Settings" +msgstr "Bildschirmeinstellungen" + +#: includes/admin/widgets/ms-global-product-list.php:136 +#: includes/admin/widgets/ms-global-product-list.php:144 +#: includes/admin/widgets/product-list.php:230 +msgid "Enter the Slug" +msgstr "Geben Sie den Slug ein" + +#: includes/admin/widgets/product-list.php:228 +#: includes/common/template-functions.php:894 +msgid "Tag" +msgstr "Eigenschaft" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:686 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:712 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:739 +#: includes/admin/class-mp-shortcode-builder.php:796 +#: includes/admin/widgets/product-list.php:227 +#: includes/common/template-functions.php:886 +#: includes/common/template-functions.php:2907 +msgid "Category" +msgstr "Kategorie " + +#: includes/admin/widgets/product-list.php:226 +msgid "No Filter" +msgstr "Kein Filter" + +#: includes/admin/widgets/product-list.php:224 +msgid "Taxonomy Filter:" +msgstr "Taxonomie Filter:" + +#: includes/admin/widgets/ms-global-product-list.php:108 +#: includes/admin/widgets/product-list.php:209 +msgid "Order Products By:" +msgstr "Sortiere Produkte nach:" + +#: includes/admin/widgets/ms-global-product-list.php:101 +#: includes/admin/widgets/product-list.php:206 +msgid "Number of Products:" +msgstr "Anzahl der Produkte:" + +#: includes/admin/widgets/ms-global-product-list.php:98 +#: includes/admin/widgets/product-list.php:204 +msgid "List Settings" +msgstr "Listeneinstellungen" + +#: includes/admin/widgets/product-list.php:177 +msgid "Our Products" +msgstr "Unsere Produkte" + +#: includes/admin/widgets/product-list.php:144 +#: includes/common/template-functions.php:2070 +#: includes/common/template-functions.php:2347 +#: includes/multisite/template-functions.php:303 +#: includes/multisite/template-functions.php:623 +msgid "No Products" +msgstr "Keine Produkte" + +#: includes/admin/widgets/product-list.php:8 +msgid "Product List" +msgstr "Produktliste" + +#: includes/admin/widgets/product-list.php:7 +msgid "Shows a customizable list of products from your MarketPress store." +msgstr "Zeigt eine anpassbare Produktliste aus Ihrem MarketPress-Store an." + +#: includes/admin/widgets/cart.php:75 includes/admin/widgets/categories.php:82 +#: includes/admin/widgets/product-list.php:253 +#: includes/admin/widgets/product-tag-cloud.php:57 +msgid "Only show on store pages" +msgstr "Nur auf Shop-Seiten anzeigen" + +#: includes/admin/widgets/cart.php:65 +#: includes/admin/widgets/ms-global-product-list.php:92 +#: includes/admin/widgets/product-list.php:200 +msgid "Custom Text:" +msgstr "Kundenspezifischer Text:" + +#: includes/admin/widgets/cart.php:64 includes/admin/widgets/categories.php:69 +#: includes/admin/widgets/ms-global-categories.php:59 +#: includes/admin/widgets/ms-global-product-list.php:87 +#: includes/admin/widgets/ms-global-tag-cloud.php:49 +#: includes/admin/widgets/product-list.php:199 +#: includes/admin/widgets/product-tag-cloud.php:49 +msgid "Title:" +msgstr "Titel:" + +#: includes/admin/widgets/cart.php:7 +msgid "Shows dynamic shopping cart contents along with a checkout button for your MarketPress store." +msgstr "Zeigt dynamischen Warenkorbinhalt und eine Checkout-Schaltfläche für Ihren MarketPress-Store an." + +#: includes/admin/widgets/product-tag-cloud.php:8 +msgid "Product Tag Cloud" +msgstr "Produkt-Eigenschaften-Wolke" + +#: includes/admin/class-mp-setup-wizard.php:539 +#: includes/admin/class-mp-setup-wizard.php:575 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:163 +msgid "Measurement System" +msgstr "Mess-System" + +#: includes/admin/class-mp-setup-wizard.php:616 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:149 +msgid "Select Shipping Options" +msgstr "Wähle Versandmethode" + +#: includes/admin/class-mp-setup-wizard.php:596 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:129 +msgid "Calculated Options" +msgstr "Berechnung Optionen" + +#: includes/admin/class-mp-setup-wizard.php:582 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:115 +msgid "No Shipping" +msgstr "Kein Versand" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:110 +msgid "EU" +msgstr "EU" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:109 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:93 +msgid "All" +msgstr "Alle" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:92 +msgid "Select:" +msgstr "Wählen:" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:185 +msgid "Store Pages" +msgstr "Shop Seiten" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:223 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:256 +msgid "Order Shipped" +msgstr "Bestellung versendet" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:60 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:95 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:128 +#: marketpress.php:266 +msgid "New Order" +msgstr "Neue Bestellung" + +#: includes/admin/class-mp-dashboard-widgets.php:314 +msgid "Email Notifications" +msgstr "E-Mail Benachrichtigungen" + +#: includes/admin/class-mp-pages-admin.php:59 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:200 +msgid "Products List" +msgstr "Produkte Liste" + +#: includes/admin/class-mp-pages-admin.php:58 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:190 +msgid "Store Base" +msgstr "Store Basis" + +#: includes/admin/class-mp-product-attributes-admin.php:108 +#: includes/admin/class-mp-shortcode-builder.php:635 +#: includes/admin/class-mp-shortcode-builder.php:708 +#: includes/admin/class-mp-shortcode-builder.php:875 +#: includes/admin/class-mp-shortcode-builder.php:1319 +#: includes/admin/class-mp-shortcode-builder.php:1422 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:526 +#: includes/admin/widgets/ms-global-categories.php:78 +#: includes/admin/widgets/ms-global-product-list.php:127 +#: includes/admin/widgets/product-list.php:221 +msgid "Ascending" +msgstr "Aufsteigend" + +#: includes/admin/class-mp-product-attributes-admin.php:109 +#: includes/admin/class-mp-shortcode-builder.php:636 +#: includes/admin/class-mp-shortcode-builder.php:709 +#: includes/admin/class-mp-shortcode-builder.php:876 +#: includes/admin/class-mp-shortcode-builder.php:1320 +#: includes/admin/class-mp-shortcode-builder.php:1423 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:525 +#: includes/admin/widgets/ms-global-categories.php:75 +#: includes/admin/widgets/ms-global-product-list.php:124 +#: includes/admin/widgets/product-list.php:220 +msgid "Descending" +msgstr "Descending" + +#: includes/admin/class-mp-shortcode-builder.php:637 +#: includes/admin/class-mp-shortcode-builder.php:695 +#: includes/admin/class-mp-shortcode-builder.php:862 +#: includes/admin/class-mp-shortcode-builder.php:1306 +#: includes/admin/class-mp-shortcode-builder.php:1424 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:518 +#: includes/admin/widgets/ms-global-product-list.php:121 +#: includes/admin/widgets/product-list.php:218 +msgid "Random" +msgstr "Zufällig" + +#: includes/admin/class-mp-shortcode-builder.php:694 +#: includes/admin/class-mp-shortcode-builder.php:861 +#: includes/admin/class-mp-shortcode-builder.php:1305 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:517 +#: includes/admin/widgets/ms-global-product-list.php:119 +#: includes/admin/widgets/product-list.php:216 +msgid "Product Price" +msgstr "Produktpreis" + +#: includes/admin/class-mp-shortcode-builder.php:693 +#: includes/admin/class-mp-shortcode-builder.php:860 +#: includes/admin/class-mp-shortcode-builder.php:1304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:516 +#: includes/admin/widgets/ms-global-product-list.php:117 +#: includes/admin/widgets/product-list.php:215 +msgid "Number of Sales" +msgstr "Anzahl der Verkäufe" + +#: includes/admin/class-mp-shortcode-builder.php:692 +#: includes/admin/class-mp-shortcode-builder.php:859 +#: includes/admin/class-mp-shortcode-builder.php:1303 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:515 +#: includes/admin/widgets/product-list.php:214 +msgid "Product Author" +msgstr "Produkt-Autor" + +#: includes/admin/class-mp-shortcode-builder.php:691 +#: includes/admin/class-mp-shortcode-builder.php:858 +#: includes/admin/class-mp-shortcode-builder.php:1302 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:514 +#: includes/admin/widgets/product-list.php:213 +msgid "Product ID" +msgstr "Produkt ID" + +#: includes/admin/class-mp-shortcode-builder.php:690 +#: includes/admin/class-mp-shortcode-builder.php:857 +#: includes/admin/class-mp-shortcode-builder.php:1301 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:513 +#: includes/admin/widgets/ms-global-product-list.php:113 +#: includes/admin/widgets/product-list.php:212 +msgid "Publish Date" +msgstr "Datum der Veröffentlichung" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:430 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:726 +msgid "Width" +msgstr "Breite" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:439 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:735 +msgid "Height" +msgstr "Höhe" + +#: includes/admin/class-mp-product-attributes-admin.php:88 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:402 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:698 +msgid "Custom" +msgstr "Individuell" + +#: includes/common/class-mp-product.php:179 +#: includes/common/class-mp-product.php:992 +#: includes/common/class-mp-product.php:1000 +#: includes/multisite/template-functions.php:579 +msgid "Buy Now" +msgstr "Jetzt kaufen" + +#: includes/common/class-mp-product.php:175 +#: includes/common/class-mp-product.php:990 +#: includes/common/class-mp-product.php:998 +msgid "Add To Cart" +msgstr "In den Warenkorb legen" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:807 +msgid "Store Style" +msgstr "Shop-Stil" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1021 +msgid "Edit Coupon" +msgstr "Bearbeite Gutschein" + +#: includes/addons/mp-coupons/class-mp-coupon.php:580 +#: includes/admin/class-mp-ajax.php:238 +#: includes/admin/class-mp-products-admin.php:1532 +msgid "Unlimited" +msgstr "Unbegrenzt" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1198 +msgid "Remaining Uses" +msgstr "Verbleibende Verwendungen" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1197 +msgid "Used" +msgstr "Benutzt" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:752 +#: includes/admin/class-mp-products-admin.php:2343 +msgid "Start Date" +msgstr "Startdatum" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:598 +msgid "Coupon Code" +msgstr "Gutscheincode" + +#: includes/admin/class-mp-orders-admin.php:444 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:284 +msgid "Save Changes" +msgstr "Änderungen speichern" + +#: includes/admin/class-mp-pages-admin.php:57 +#: includes/admin/class-mp-shortcode-builder.php:716 +#: includes/admin/class-mp-shortcode-builder.php:727 +#: includes/admin/class-mp-shortcode-builder.php:883 +#: includes/admin/class-mp-shortcode-builder.php:894 +#: includes/admin/class-mp-shortcode-builder.php:946 +#: includes/admin/class-mp-shortcode-builder.php:956 +#: includes/admin/class-mp-shortcode-builder.php:1006 +#: includes/admin/class-mp-shortcode-builder.php:1327 +#: includes/admin/class-mp-shortcode-builder.php:1338 +#: includes/admin/store-settings/class-mp-store-settings-general.php:357 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:270 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:108 +#: includes/admin/widgets/ms-global-product-list.php:172 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:94 +msgid "None" +msgstr "Keiner" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:352 +msgid "Google Analytics Ecommerce Tracking" +msgstr "Google Analytics Ecommerce Tracking" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:310 +msgid "This option turns MarketPress into more of a product listing plugin, disabling shopping carts, checkout, and order management. This is useful if you simply want to list items you can buy in a store somewhere else, optionally linking the \"Buy Now\" buttons to an external site. Some examples are a car dealership, or linking to songs/albums in itunes, or linking to products on another site with your own affiliate links." +msgstr "Mit dieser Option verwandelt sich MarketPress in ein Produktlisten-Plugin, deaktiviert Einkaufswagen, Kasse und Bestellmanagement. Dies ist nützlich, wenn Sie einfach Elemente auflisten möchten, die Sie in einem Laden woanders kaufen können. Optional können Sie die Schaltflächen \"Jetzt kaufen\" auf eine externe Website verknüpfen. Einige Beispiele sind ein Autohaus, oder die Verknüpfung zu Songs / Alben in itunes, oder die Verknüpfung mit Produkten auf einer anderen Website mit Ihren eigenen Affiliate-Links." + +#: includes/admin/store-settings/class-mp-store-settings-general.php:304 +msgid "Whether or not customers must be registered and logged in to checkout. (Not recommended: Enabling this can lower conversions)" +msgstr "Unabhängig davon, ob Kunden registriert und eingeloggt sein müssen zur Kasse. (Nicht empfohlen: Aktivieren können Konvertierungen senken)" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:258 +msgid "How many times may a customer download a file they have purchased? (It's best to set this higher than one in case they have any problems downloading)" +msgstr "Wie oft kann ein Kunde eine heruntergeladene Datei herunterladen? (Es ist am besten, diese höher als eins zu setzen, falls sie Probleme beim Herunterladen haben)" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:257 +msgid "Maximum Downloads" +msgstr "Maximale Anzahl an Downloads" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:298 +msgid "This will set the product to draft if inventory of all variations is gone." +msgstr "Dies wird das Produkt zu Entwurf, wenn Inventar aller Variationen ist weg." + +#: includes/admin/store-settings/class-mp-store-settings-general.php:288 +msgid "At what low stock count do you want to be warned for products you have enabled inventory tracking for?" +msgstr "Bei welchen niedrigen Lagerbeständen möchten Sie für Produkte gewarnt werden, für die Sie das Inventar-Tracking aktiviert haben?" + +#: includes/admin/class-mp-dashboard-widgets.php:208 +#: includes/admin/store-settings/class-mp-store-settings-general.php:287 +msgid "Inventory Warning Threshold" +msgstr "Inventar Warnschwellenwert " + +#: includes/admin/store-settings/class-mp-store-settings-general.php:282 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:542 +msgid "Miscellaneous Settings" +msgstr "Verschiedene Einstellungen" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:429 +#: includes/multisite/class-mp-admin-multisite.php:247 +msgid "Show Decimal in Prices" +msgstr "Zeige Dezimal in Preisen" + +#: includes/admin/class-mp-setup-wizard.php:451 +#: includes/admin/store-settings/class-mp-store-settings-general.php:403 +#: includes/multisite/class-mp-admin-multisite.php:221 +msgid "Currency Symbol Position" +msgstr "Währungssymbolposition" + +#: includes/admin/class-mp-setup-wizard.php:444 +#: includes/admin/store-settings/class-mp-store-settings-general.php:396 +msgid "Store Currency" +msgstr "Shopwährung" + +#: includes/admin/class-mp-setup-wizard.php:429 +#: includes/admin/store-settings/class-mp-store-settings-general.php:381 +msgid "Currency Settings" +msgstr "Währungseinstellungen" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:516 +msgid "Please see your local tax laws. Note if this is enabled and a downloadable only cart, rates will be the default for your base location." +msgstr "Bitte beachten Sie die örtlichen Steuergesetze. Beachten Sie, dass diese Option aktiviert ist und ein herunterladbarer Nur-Einkaufswagen ist, gelten die Preise als Standard für Ihre Basisstation." + +#: includes/admin/class-mp-setup-wizard.php:529 +msgid "Apply Tax to Downloadable Products?" +msgstr "Steuer auf herunterladbare Produkte anwenden?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:498 +msgid "Enabling this option allows you to enter and show all prices inclusive of tax, while still listing the tax total as a line item in shopping carts. Please see your local tax laws." +msgstr "Wenn Sie diese Option aktivieren, können Sie alle Preise inklusive Steuern eingeben und anzeigen, während Sie die Gesamtsumme als Werbebuchung in den Einkaufswagen eintragen. Bitte beachten Sie die örtlichen Steuergesetze." + +#: includes/admin/class-mp-setup-wizard.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:497 +msgid "Enter Prices Inclusive of Tax?" +msgstr "Preisangaben inkl. MwSt." + +#: includes/admin/store-settings/class-mp-store-settings-general.php:492 +msgid "Please see your local tax laws. Most areas charge tax on shipping fees." +msgstr "Bitte beachten Sie die örtlichen Steuergesetze. Die meisten Gebiete berechnen die Versandkosten." + +#: includes/admin/class-mp-setup-wizard.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:491 +msgid "Apply Tax To Shipping Fees?" +msgstr "Wenden Sie Steuern auf Versandkosten an?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:674 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:565 +#: includes/common/payment-gateways/authorizenet-aim.php:291 +#: includes/common/payment-gateways/authorizenet-aim.php:326 +#: includes/common/payment-gateways/payfast.php:347 +msgid "No" +msgstr "Nein" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:675 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:759 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:512 +#: includes/admin/class-mp-setup-wizard.php:518 +#: includes/admin/class-mp-setup-wizard.php:524 +#: includes/admin/class-mp-setup-wizard.php:530 +#: includes/admin/class-mp-setup-wizard.php:564 +#: includes/admin/store-settings/class-mp-store-settings-general.php:232 +#: includes/admin/store-settings/class-mp-store-settings-general.php:299 +#: includes/admin/store-settings/class-mp-store-settings-general.php:305 +#: includes/admin/store-settings/class-mp-store-settings-general.php:311 +#: includes/admin/store-settings/class-mp-store-settings-general.php:317 +#: includes/admin/store-settings/class-mp-store-settings-general.php:328 +#: includes/admin/store-settings/class-mp-store-settings-general.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:341 +#: includes/admin/store-settings/class-mp-store-settings-general.php:348 +#: includes/admin/store-settings/class-mp-store-settings-general.php:367 +#: includes/admin/store-settings/class-mp-store-settings-general.php:493 +#: includes/admin/store-settings/class-mp-store-settings-general.php:499 +#: includes/admin/store-settings/class-mp-store-settings-general.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:556 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:375 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:381 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:387 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:474 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:493 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:532 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:574 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:606 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:664 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:670 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:677 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:683 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:689 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:763 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:774 +#: includes/common/payment-gateways/_bitpay.php:250 +#: includes/common/payment-gateways/_bitpay.php:257 +#: includes/common/payment-gateways/_bitpay.php:264 +#: includes/common/payment-gateways/authorizenet-aim.php:290 +#: includes/common/payment-gateways/authorizenet-aim.php:325 +#: includes/common/payment-gateways/free_orders.php:160 +#: includes/common/payment-gateways/payfast.php:346 +#: includes/common/payment-gateways/paymill.php:162 +#: includes/common/payment-gateways/paypal-payflow.php:441 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-checkbox.php:22 +msgid "Yes" +msgstr "Ja" + +#: includes/admin/class-mp-setup-wizard.php:492 +#: includes/admin/store-settings/class-mp-store-settings-general.php:472 +msgid "%s Tax Rate" +msgstr "%s Steuersatz" + +#: includes/admin/class-mp-setup-wizard.php:467 +#: includes/admin/store-settings/class-mp-store-settings-general.php:449 +msgid "Tax Settings" +msgstr "Steuereinstellungen" + +#: includes/admin/class-mp-setup-wizard.php:370 +#: includes/admin/store-settings/class-mp-store-settings-general.php:624 +msgid "Base Zip/Postal Code" +msgstr "Basis Zip/Postleitzahl" + +#: includes/admin/class-mp-setup-wizard.php:354 +#: includes/admin/store-settings/class-mp-store-settings-general.php:608 +msgid "Base State/Province/Region" +msgstr "Basis Staat/Provinz/Region" + +#: includes/admin/class-mp-setup-wizard.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:589 +msgid "Base Country" +msgstr "Basisland" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:582 +msgid "Location Settings" +msgstr "Ortseinstellungen" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:195 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:800 +#: includes/multisite/class-mp-admin-multisite.php:172 +msgid "General Settings" +msgstr "Allgemeine Einstellungen" + +#: includes/admin/class-mp-products-admin.php:1945 +#: includes/admin/class-mp-products-admin.php:2185 +#: includes/admin/class-mp-store-settings-admin.php:111 +#: includes/admin/class-mp-store-settings-admin.php:266 +msgid "General" +msgstr "Allgemein" + +#: includes/admin/class-mp-store-settings-admin.php:242 +msgid "Importers" +msgstr "Importeure" + +#: includes/admin/class-mp-store-settings-admin.php:115 +#: includes/admin/class-mp-store-settings-admin.php:234 +msgid "Payments" +msgstr "Zahlungen" + +#: includes/admin/class-mp-dashboard-widgets.php:313 +#: includes/admin/class-mp-store-settings-admin.php:112 +#: includes/admin/class-mp-store-settings-admin.php:222 +msgid "Presentation" +msgstr "Präsentation" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:916 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1015 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1018 +#: includes/admin/class-mp-dashboard-widgets.php:305 marketpress.php:702 +msgid "Coupons" +msgstr "Gutscheine" + +#: includes/admin/class-mp-admin.php:251 +msgid "Download »" +msgstr "Herunterladen »" + +#: includes/admin/class-mp-admin.php:245 +#: includes/admin/class-mp-exporter-orders.php:170 +msgid "All Statuses" +msgstr "Alle Statusanzeigen" + +#: includes/admin/class-mp-admin.php:209 +#: includes/admin/class-mp-exporter-orders.php:150 +#: includes/admin/class-mp-exporter-orders.php:178 +msgid "Export Orders" +msgstr "Aufträge exportieren" + +#: includes/admin/class-mp-admin.php:228 +msgid "Show all dates" +msgstr "Alle Termine anzeigen" + +#: includes/admin/class-mp-orders-admin.php:947 +msgid "Change Status" +msgstr "Status ändern" + +#: includes/admin/class-mp-orders-admin.php:287 +msgid "Order Notes" +msgstr "Bestellhinweise" + +#: includes/admin/class-mp-orders-admin.php:478 +msgid "Other" +msgstr "Andere" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:205 +msgid "Subtotal" +msgstr "Zwischensumme" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:84 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:87 +#: includes/admin/class-mp-products-admin.php:1737 +#: includes/common/class-mp-cart.php:1409 +#: includes/common/class-mp-product.php:559 +msgid "Quantity" +msgstr "Anzahl" + +#: includes/common/helpers.php:93 +msgid "Item" +msgstr "Artikel" + +#: includes/common/class-mp-order.php:1050 +msgid "Current Status" +msgstr "Aktueller Status" + +#: includes/admin/class-mp-orders-admin.php:297 +msgid "Order Actions" +msgstr "Bestellen Aktionen" + +#: includes/common/class-mp-product.php:1084 +msgid "More Info »" +msgstr "Mehr Info »" + +#: includes/common/class-mp-product.php:2313 +msgid "Low Product Inventory Notification" +msgstr "Niedrige Inventarbenachrichtigung" + +#: includes/common/class-mp-order.php:338 includes/common/data.php:154 +msgid "New Order Notification: ORDERID" +msgstr "Neue Bestellbenachrichtigung: ORDERID" + +#: includes/common/helpers.php:259 +msgid "Your payment for this order is complete." +msgstr "Ihre Zahlung für diese Bestellung ist abgeschlossen." + +#: includes/common/helpers.php:261 +msgid "Your payment for this order is not yet complete. Here is the latest status:" +msgstr "Ihre Zahlung für diese Bestellung ist noch nicht abgeschlossen. Hier ist der letzte Status:" + +#: includes/common/helpers.php:256 +msgid "Payment Total:" +msgstr "Zahlung Gesamt:" + +#: includes/common/helpers.php:253 +msgid "Transaction ID:" +msgstr "Transaktions-ID:" + +#: includes/common/helpers.php:249 +msgid "Payment Type:" +msgstr "Zahlungsart:" + +#: includes/common/helpers.php:246 +msgid "Payment Method:" +msgstr "Bezahlverfahren:" + +#: includes/common/helpers.php:242 +msgid "Order Notes:" +msgstr "Bestellhinweise:" + +#: includes/common/helpers.php:237 +msgid "Special Instructions:" +msgstr "Spezielle Anweisungen:" + +#: includes/common/helpers.php:232 +msgid "Tracking Number:" +msgstr "Sendungscode:" + +#: includes/common/helpers.php:223 includes/common/helpers.php:226 +#: includes/common/helpers.php:228 +#: includes/common/shipping-modules/class-mp-shipping-api.php:406 +#: includes/common/shipping-modules/class-mp-shipping-api.php:428 +msgid "Shipping Method:" +msgstr "Versand Methode:" + +#: includes/common/helpers.php:168 +msgid "No shipping required for this order." +msgstr "Kein Versand benötigt bei dieser Bestellung" + +#: includes/common/helpers.php:155 +msgid "Order Total:" +msgstr "Bestellung Gesamt:" + +#: includes/common/class-mp-order.php:1025 +msgid "Taxes:" +msgstr "Steuern:" + +#: includes/common/class-mp-order.php:1032 includes/common/helpers.php:144 +msgid "Shipping:" +msgstr "Versand:" + +#: includes/public/class-mp-checkout.php:367 +msgid "Street address, P.O. box, company name, c/o" +msgstr "Straße, P.O. Kasten, Firmenname, c/o" + +#: includes/admin/class-mp-orders-admin.php:314 +msgid "Shipping Info" +msgstr "Versandinformation" + +#: includes/public/class-mp-public.php:740 +msgid "Whoops, there was a problem loading up this file for your download. Please contact us for help." +msgstr "Whoops, es gab ein Problem beim Laden dieser Datei für Ihren Download. Bitte kontaktieren Sie uns für Hilfe." + +#: includes/public/class-mp-public.php:683 +msgid "Sorry, our records show you've downloaded this file %d out of %d times allowed. Please contact us if you still need help." +msgstr "Sorry, unsere Datensätze zeigen, dass Sie diese Datei %d aus %d mal erlaubt heruntergeladen haben. Bitte kontaktieren Sie uns, wenn Sie noch Hilfe benötigen." + +#: includes/public/class-mp-public.php:634 +msgid "Sorry, your order has been marked as unpaid." +msgstr "Leider wurde Ihre Bestellung als unbezahlt markiert." + +#: includes/public/class-mp-public.php:629 +msgid "Sorry, the link is invalid for this download." +msgstr "Leider ist der Link für diesen Download ungültig." + +#: includes/admin/class-mp-exporter-orders.php:15 +#: includes/admin/class-mp-products-admin.php:1172 +msgid "Cheatin’ uh?" +msgstr "Schummeln, was?" + +#: includes/public/class-mp-public.php:407 +#: includes/public/class-mp-short-codes.php:128 +msgid "Please enter a valid email address." +msgstr "Bitte geben Sie eine gültige Email-Adresse ein." + +#: includes/admin/class-mp-ajax.php:191 +#: includes/admin/class-mp-products-admin.php:1821 +#: includes/admin/class-mp-products-admin.php:2010 +#: includes/admin/class-mp-products-admin.php:2267 +msgid "File URL" +msgstr "Datei-URL" + +#: includes/admin/class-mp-products-admin.php:1842 +msgid "External Link" +msgstr "externer Link" + +#: includes/admin/class-mp-products-admin.php:2177 +msgid "Add Variation" +msgstr "Variation hinzufügen" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:126 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:289 +msgid "Inventory" +msgstr "Inventar" + +#: includes/admin/class-mp-products-admin.php:438 +#: includes/admin/class-mp-products-admin.php:578 +#: includes/admin/class-mp-products-admin.php:1552 +#: includes/admin/class-mp-products-admin.php:2053 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:134 +msgid "Sale Price" +msgstr "Verkaufspreis" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "Variation Name" +msgstr "Variationsname" + +#: includes/admin/class-mp-products-admin.php:1931 +msgid "Product Details" +msgstr "Produktdetails" + +#: includes/admin/class-mp-product-attributes-list-table.php:33 +msgid "Delete" +msgstr "Löschen" + +#: includes/admin/class-mp-orders-admin.php:1057 +msgid "Trashed" +msgstr "Zerschlagen" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:231 +#: includes/admin/class-mp-orders-admin.php:1015 +#: includes/common/class-mp-order.php:1052 includes/common/helpers.php:97 +msgid "Total" +msgstr "Gesamt" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1196 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:210 +#: includes/admin/class-mp-orders-admin.php:1014 +msgid "Discount" +msgstr "Rabatt" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:221 +#: includes/admin/class-mp-orders-admin.php:1013 +#: includes/common/payment-gateways/_ideal.php:148 +#: includes/common/payment-gateways/_payway.php:134 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:108 +msgid "Tax" +msgstr "Steuer" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:216 +#: includes/admin/class-mp-orders-admin.php:1012 +#: includes/admin/class-mp-products-admin.php:1958 +#: includes/admin/class-mp-products-admin.php:2198 +#: includes/admin/class-mp-store-settings-admin.php:114 +#: includes/admin/class-mp-store-settings-admin.php:230 +#: includes/common/class-mp-cart.php:717 includes/common/helpers.php:168 +#: includes/common/payment-gateways/_ideal.php:137 +#: includes/common/payment-gateways/_payway.php:116 +#: includes/public/class-mp-checkout.php:1304 +msgid "Shipping" +msgstr "Versand" + +#: includes/admin/class-mp-orders-admin.php:1011 +msgid "Items" +msgstr "Artikel" + +#: includes/admin/class-mp-orders-admin.php:1010 +msgid "From" +msgstr "Von" + +#: includes/admin/class-mp-exporter-orders.php:154 +#: includes/admin/class-mp-orders-admin.php:1009 +#: includes/common/class-mp-gdpr.php:370 +msgid "Order Date" +msgstr "Auftragsdatum" + +#: includes/admin/class-mp-orders-admin.php:1008 +#: includes/common/class-mp-gdpr.php:366 +#: includes/common/template-functions.php:2134 +msgid "Order ID" +msgstr "Auftragsnummer" + +#: includes/addons/class-mp-addons-list-table.php:22 +#: includes/admin/class-mp-orders-admin.php:1007 +msgid "Status" +msgstr "Status" + +#: includes/admin/class-mp-orders-admin.php:1155 +msgid "N/A" +msgstr "N/A" + +#: includes/admin/class-mp-dashboard-widgets.php:243 +#: includes/admin/class-mp-products-admin.php:464 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:142 +msgid "Sales" +msgstr "Der Umsatz" + +#: includes/admin/class-mp-products-admin.php:463 +msgid "Stock" +msgstr "Lager" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:85 +#: includes/admin/class-mp-ajax.php:176 includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:434 +#: includes/admin/class-mp-products-admin.php:462 +#: includes/admin/class-mp-products-admin.php:576 +#: includes/admin/class-mp-products-admin.php:1519 +#: includes/admin/class-mp-products-admin.php:1569 +#: includes/admin/class-mp-products-admin.php:1950 +#: includes/admin/class-mp-products-admin.php:2059 +#: includes/admin/class-mp-products-admin.php:2190 +#: includes/admin/class-mp-products-admin.php:2330 +#: includes/common/class-mp-cart.php:1415 includes/common/helpers.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:130 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:276 +msgid "Price" +msgstr "Preis" + +#: includes/admin/class-mp-ajax.php:173 +#: includes/admin/class-mp-products-admin.php:461 +#: includes/admin/class-mp-products-admin.php:1972 +#: includes/admin/class-mp-products-admin.php:2224 +msgid "SKU" +msgstr "Artikel Nr." + +#: includes/admin/class-mp-products-admin.php:459 +#: includes/admin/class-mp-products-admin.php:1793 +#: includes/admin/class-mp-products-admin.php:1805 +#: includes/admin/class-mp-products-admin.php:2163 +msgid "Variations" +msgstr "Variationen" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:83 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:86 +#: includes/admin/class-mp-dashboard-widgets.php:134 +#: includes/admin/class-mp-products-admin.php:458 +#: includes/admin/class-mp-products-admin.php:837 +#: includes/admin/class-mp-shortcode-builder.php:689 +#: includes/admin/class-mp-shortcode-builder.php:856 +#: includes/admin/class-mp-shortcode-builder.php:1300 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:512 +#: includes/admin/widgets/ms-global-product-list.php:115 +#: includes/admin/widgets/product-list.php:211 +msgid "Product Name" +msgstr "Produktname" + +#: includes/common/template-functions.php:2575 +msgid "Categorized in " +msgstr "Kategorisiert in" + +#: includes/admin/class-mp-orders-admin.php:305 +#: includes/common/payment-gateways/free_orders.php:176 +msgid "Payment Information" +msgstr "Zahlungsinformationen" + +#: includes/admin/class-mp-exporter-orders.php:167 +#: includes/admin/class-mp-orders-admin.php:432 +#: includes/admin/class-mp-pages-admin.php:62 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:227 +#: includes/common/class-mp-gdpr.php:374 +#: includes/common/template-functions.php:175 +#: includes/common/template-functions.php:926 +msgid "Order Status" +msgstr "Bestellstatus" + +#. translators: %s: orders closed +#: marketpress.php:327 +msgid "Closed (%s)" +msgid_plural "Closed (%s)" +msgstr[0] "Abgeschlossen (%s)" +msgstr[1] "Abgeschlossen (%s)" + +#: includes/admin/class-mp-admin.php:249 +#: includes/admin/class-mp-orders-admin.php:375 +#: includes/admin/class-mp-orders-admin.php:951 +#: includes/admin/class-mp-orders-admin.php:1053 +#: includes/admin/class-mp-orders-admin.php:1065 +#: includes/common/class-mp-gdpr.php:330 +#: includes/common/class-mp-order.php:1019 marketpress.php:325 +msgid "Closed" +msgstr "Abgeschlossen" + +#. translators: %s: shipped orders +#: marketpress.php:320 +msgid "Shipped (%s)" +msgid_plural "Shipped (%s)" +msgstr[0] "Versendet (%s)" +msgstr[1] "Versendet (%s)" + +#: includes/admin/class-mp-admin.php:248 +#: includes/admin/class-mp-orders-admin.php:376 +#: includes/admin/class-mp-orders-admin.php:950 +#: includes/admin/class-mp-orders-admin.php:1049 +#: includes/admin/class-mp-orders-admin.php:1064 +#: includes/common/class-mp-gdpr.php:329 +#: includes/common/class-mp-order.php:1002 marketpress.php:318 +msgid "Shipped" +msgstr "Versendet" + +#. translators: %s: paid orders +#: marketpress.php:313 +msgid "Paid (%s)" +msgid_plural "Paid (%s)" +msgstr[0] "Bezahlt (%s)" +msgstr[1] "Bezahlt (%s)" + +#: includes/admin/class-mp-admin.php:247 +#: includes/admin/class-mp-orders-admin.php:377 +#: includes/admin/class-mp-orders-admin.php:949 +#: includes/admin/class-mp-orders-admin.php:1045 +#: includes/admin/class-mp-orders-admin.php:1063 +#: includes/common/class-mp-gdpr.php:328 +#: includes/common/payment-gateways/2checkout.php:294 +#: includes/common/payment-gateways/_cubepoints.php:130 +#: includes/common/payment-gateways/authorizenet-aim.php:193 +#: includes/common/payment-gateways/free_orders.php:91 +#: includes/common/payment-gateways/mijireh.php:248 +#: includes/common/payment-gateways/paymill.php:273 +#: includes/common/payment-gateways/paypal-express.php:933 +#: includes/common/payment-gateways/paypal-express.php:967 +#: includes/common/payment-gateways/pin.php:258 +#: includes/common/payment-gateways/simplify.php:181 +#: includes/common/payment-gateways/stripe.php:368 +#: includes/common/payment-gateways/wepay.php:269 marketpress.php:311 +msgid "Paid" +msgstr "Bezahlt" + +#. translators: %s: orders received +#: marketpress.php:306 +msgid "Received (%s)" +msgid_plural "Received (%s)" +msgstr[0] "Empfangen (%s)" +msgstr[1] "Empfangen (%s)" + +#: includes/admin/class-mp-admin.php:246 +#: includes/admin/class-mp-orders-admin.php:378 +#: includes/admin/class-mp-orders-admin.php:1041 +#: includes/admin/class-mp-orders-admin.php:1062 +#: includes/common/class-mp-gdpr.php:327 includes/common/class-mp-order.php:995 +#: includes/common/payment-gateways/payfast.php:244 marketpress.php:304 +msgid "Received" +msgstr "Empfangen" + +#: marketpress.php:268 +msgid "Search Orders" +msgstr "Bestellungen durchsuchen" + +#: marketpress.php:267 +msgid "View Order" +msgstr "Bestellung ansehen" + +#: marketpress.php:262 +msgid "Order" +msgstr "Bestellung" + +#: includes/admin/class-mp-dashboard-widgets.php:301 +#: includes/admin/class-mp-orders-admin.php:989 marketpress.php:261 +msgid "Orders" +msgstr "Bestellungen" + +#: marketpress.php:228 +msgid "No Products found in Trash" +msgstr "Keine Produkte im Trash gefunden" + +#: marketpress.php:227 +msgid "No Products Found" +msgstr "Keine Produkte gefunden" + +#: marketpress.php:226 +msgid "Search Products" +msgstr "Produktsuche" + +#: marketpress.php:225 marketpress.php:229 +msgid "View Product" +msgstr "Produkt anzeigen" + +#: marketpress.php:224 +msgid "New Product" +msgstr "Neues Produkt" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1022 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:258 +#: marketpress.php:223 +msgid "Edit" +msgstr "Bearbeiten" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1019 +msgid "Create New" +msgstr "Erstelle neu" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:687 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:698 +#: marketpress.php:217 +msgid "Product" +msgstr "Produkt" + +#: includes/admin/class-mp-dashboard-widgets.php:307 +#: includes/common/template-functions.php:173 +#: includes/common/template-functions.php:179 +#: includes/common/template-functions.php:902 +#: includes/multisite/template-functions.php:82 marketpress.php:216 +#: marketpress.php:219 +msgid "Products" +msgstr "Produkte" + +#: includes/admin/class-mp-store-settings-admin.php:118 +#: includes/admin/widgets/product-tag-cloud.php:46 +#: includes/multisite/class-mp-admin-multisite.php:548 +msgid "Product Tags" +msgstr "Produkttags" + +#: includes/common/template-functions.php:2906 +#: includes/multisite/template-functions.php:449 +msgid "Product Category" +msgstr "Produktkategorie" + +#: includes/admin/class-mp-store-settings-admin.php:117 +#: includes/admin/widgets/categories.php:8 +#: includes/admin/widgets/categories.php:18 +#: includes/multisite/class-mp-admin-multisite.php:539 +msgid "Product Categories" +msgstr "Produktkategorien" + +#: includes/common/payment-gateways/stripe.php:332 +#: includes/common/template-functions.php:872 marketpress.php:218 +msgid "Store" +msgstr "Shop" + +#: includes/admin/class-mp-pages-admin.php:60 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:209 +#: includes/admin/widgets/cart.php:8 includes/admin/widgets/cart.php:56 +#: includes/common/template-functions.php:174 +#: includes/common/template-functions.php:811 +msgid "Shopping Cart" +msgstr "Einkaufskorb" + +#: includes/admin/class-mp-store-settings-admin.php:110 +#: includes/admin/class-mp-store-settings-admin.php:218 +msgid "Store Settings" +msgstr "Shop Einstellungen" + +#: includes/addons/class-mp-addons-list-table.php:128 marketpress.php:607 +msgid "Settings" +msgstr "Shop-Einstellungen" + +#: includes/common/data.php:178 includes/common/data.php:190 +msgid "Your Order Has Been Shipped! (ORDERID)" +msgstr "Ihre Bestellung wurde versandt! (AUFTRAGSNUMMER)" + +#: includes/common/data.php:159 includes/common/data.php:166 +#: includes/common/data.php:172 +msgid "Your Order Confirmation (ORDERID)" +msgstr "Ihre Auftragsbestätigung (ORDERID)" + +#: includes/common/data.php:148 +msgid "

    Thank you for your order! We appreciate your business, and please come back often to check out our new products.

    " +msgstr "

    Vielen Dank für Ihre Bestellung! Wir schätzen Ihr Geschäft, und kommen Sie oft zurück, um unsere neuen Angebote zu betrachten," + +#: includes/common/data.php:147 +msgid "

    You are almost done! Please do a final review of your order to make sure everything is correct then click the \"Confirm Payment\" button.

    " +msgstr "

    Du bist fast fertig! Bitte machen Sie eine abschließende Überprüfung Ihrer Bestellung, um sicherzustellen, dass alles korrekt ist, dann klicken Sie auf die Schaltfläche \"Zahlung bestätigen\".

    " + +#: includes/common/data.php:145 +msgid "

    Please enter your shipping information in the form below to proceed with your order.

    " +msgstr "

    Tragen Sie bitte Ihre Versandinformationen in das Formular unten ein, um mit Ihrer Bestellung fortzufahren.

    " + +#: includes/common/data.php:143 +msgid "

    If you have any questions about your order please do not hesitate to contact us.

    " +msgstr "

    Wenn Sie Fragen zu Ihrer Bestellung haben, zögern Sie bitte nicht uns zu kontaktieren.

    " + +#: includes/common/data.php:106 +msgid "tag" +msgstr "Eigenschaft" + +#: includes/common/data.php:105 +msgid "category" +msgstr "Kategorie" + +#: includes/common/data.php:104 +msgid "order-status" +msgstr "Bestell-Status" + +#: includes/common/data.php:103 +msgid "shopping-cart" +msgstr "Einkaufswagen" + +#: includes/common/data.php:102 +msgid "products" +msgstr "Produkte" + +#. Translators: change default slugs here +#: includes/common/data.php:101 +msgid "store" +msgstr "Shop" \ No newline at end of file diff --git a/languages/mp-el.mo b/languages/mp-el.mo new file mode 100644 index 0000000000000000000000000000000000000000..4250767deb2efd268ab847fed2ee0c82933dcfc9 GIT binary patch literal 42860 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 literal 0 HcmV?d00001 diff --git a/languages/mp-el.po b/languages/mp-el.po new file mode 100644 index 00000000..95d9641a --- /dev/null +++ b/languages/mp-el.po @@ -0,0 +1,8967 @@ +# Translation of MarketPress in Greek +# This file is distributed under the same license as the MarketPress package. +msgid "" +msgstr "" +"PO-Revision-Date: 2016-02-15 01:05:52+0000\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-Generator: GlotPress/2.3.1\n" +"Language: el_GR\n" +"Project-Id-Version: MarketPress\n" + +#: includes/public/class-mp-checkout.php:1285 +msgid "By clicking this checkbox you allow the website to process your personal data." +msgstr "" + +#: includes/common/class-mp-gdpr.php:382 +msgid "Order Info" +msgstr "" + +#: includes/common/class-mp-gdpr.php:268 +msgid "Shipping Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:267 +msgid "Shipping Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:266 +msgid "Shipping ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:265 +msgid "Shipping State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:264 +msgid "Shipping City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:263 +msgid "Shipping Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:262 +msgid "Shipping Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:261 +msgid "Shipping Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:260 +msgid "Shipping Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:259 +msgid "Shipping Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:258 +msgid "Shipping First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:254 +msgid "Billing Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:253 +msgid "Billing Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:252 +msgid "Billing ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:251 +msgid "Billing State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:250 +msgid "Billing City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:249 +msgid "Billing Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:248 +msgid "Billing Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:247 +msgid "Billing Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:246 +msgid "Billing Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:245 +msgid "Billing Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:244 +msgid "Billing First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:151 +msgid "Orders Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:139 +msgid "Customer Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:100 includes/common/class-mp-gdpr.php:116 +msgid "MarketPress User Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:81 +msgid "" +"In addition to standard WordPress session cookies, this site might be setting an\n" +"\t\t additional cookie to remember your cart settings. This cookie will last for one year." +msgstr "" + +#: includes/common/class-mp-gdpr.php:80 +msgid "Cookies" +msgstr "" + +#: includes/common/class-mp-gdpr.php:77 +msgid "" +"The following information will be collected in order to process orders: your name,\n" +"\t\t username, email address, avatar and profile URLs, address and phone number. This data can be\n" +"\t\t exported and removed." +msgstr "" + +#: includes/common/class-mp-gdpr.php:76 +msgid "Additional data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:71 +msgid "" +"This site might be using third party services and tools to process payments or/and\n" +"\t\t process shipping data when creating orders on the MarketPress store. These services include payment\n" +"\t\t gateways: 2Checkout, Authorize.net AIM, eWay shared payments, eWay Rapid 3.1 Payments, Mijireh,\n" +"\t\t Mollie, Paymill, PayPal, PIN, Simplify Commerce by MasterCard, Stripe and WePay; shipping gateways:\n" +"\t\t Fedex, UPS, USPS." +msgstr "" + +#: includes/common/class-mp-gdpr.php:70 +msgid "Third parties" +msgstr "" + +#: includes/admin/class-mp-admin.php:403 +msgid "Start creating store pages and products for your online shop here." +msgstr "" + +#: includes/admin/class-mp-admin.php:402 +msgid "Create Online Shop" +msgstr "" + +#: includes/admin/class-mp-admin.php:394 +msgid "Run Setup Wizard" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:234 +msgid "If having problems during invoice generation, add define( 'DOMPDF_ENABLE_HTML5PARSER', true ); to the wp-config.php file." +msgstr "" + +#: includes/public/class-mp-checkout.php:723 +msgid "Invalid Email" +msgstr "" + +#: includes/public/class-mp-checkout.php:721 +#: includes/public/class-mp-checkout.php:729 +msgid "This field is required" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:804 +msgid "This option changes the built-in css styles for store pages. For a custom css style, save your css file with the /* MarketPress Style: Your CSS Theme Name Here */ header line in the \"%s\" folder and it will appear in this list so you may select it. You should select \"None\" if you don't wish to use custom CSS styles or if you are using default theme templates or custom theme templates and css to make your own completely unique store design. For more information on custom theme templates click here »." +msgstr "" + +#: includes/public/class-mp-public.php:421 +#: includes/public/class-mp-short-codes.php:142 +msgid "Please enter a value greater than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:420 +#: includes/public/class-mp-short-codes.php:141 +msgid "Please enter a value less than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:419 +#: includes/public/class-mp-short-codes.php:140 +msgid "Please enter a value between {0} and {1}." +msgstr "" + +#: includes/public/class-mp-public.php:418 +#: includes/public/class-mp-short-codes.php:139 +msgid "Please enter a value between {0} and {1} characters long." +msgstr "" + +#: includes/public/class-mp-public.php:417 +#: includes/public/class-mp-short-codes.php:138 +msgid "Please enter at least {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:416 +#: includes/public/class-mp-short-codes.php:137 +msgid "Please enter no more than {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:415 +#: includes/public/class-mp-short-codes.php:136 +msgid "Please enter a value with a valid extension." +msgstr "" + +#: includes/public/class-mp-public.php:414 +#: includes/public/class-mp-short-codes.php:135 +msgid "Please enter the same value again." +msgstr "" + +#: includes/public/class-mp-public.php:413 +#: includes/public/class-mp-short-codes.php:134 +msgid "Please enter a valid credit card number." +msgstr "" + +#: includes/public/class-mp-public.php:412 +#: includes/public/class-mp-short-codes.php:133 +msgid "Please enter only digits." +msgstr "" + +#: includes/public/class-mp-public.php:411 +#: includes/public/class-mp-short-codes.php:132 +msgid "Please enter a valid number." +msgstr "" + +#: includes/public/class-mp-public.php:410 +#: includes/public/class-mp-short-codes.php:131 +msgid "Please enter a valid date (ISO)." +msgstr "" + +#: includes/public/class-mp-public.php:409 +#: includes/public/class-mp-short-codes.php:130 +msgid "Please enter a valid date." +msgstr "" + +#: includes/public/class-mp-public.php:408 +#: includes/public/class-mp-short-codes.php:129 +msgid "Please enter a valid URL." +msgstr "" + +#: includes/public/class-mp-public.php:406 +#: includes/public/class-mp-short-codes.php:127 +msgid "Please fix this field." +msgstr "" + +#: includes/public/class-mp-checkout.php:1287 +#: includes/public/class-mp-public.php:405 +#: includes/public/class-mp-short-codes.php:126 +msgid "This field is required." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:810 +msgid "None - Without Special CSS-styles" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:809 +msgid "Default - Using Default CSS-styles" +msgstr "" + +#: marketpress.php:739 +msgid "Enable multiple downloads per product" +msgstr "" + +#: marketpress.php:738 +msgid "Multiple Downloads" +msgstr "" + +#: includes/public/class-mp-checkout.php:715 +msgid "Invalid Zip Code" +msgstr "" + +#: includes/common/template-functions.php:2126 +msgid "Guest Email" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:195 +msgid "There was a problem finalizing your purchase. Please re-enter your credit card information and try again" +msgstr "" + +#: includes/common/class-mp-cart.php:565 includes/common/class-mp-order.php:600 +#: includes/common/helpers.php:111 +msgid "Download %1$s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:331 +msgid "Export products to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:328 +msgid "The import process uses the WordPress importer plugin." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:326 +msgid "Import / Export Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:325 +msgid "Export settings to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:324 +msgid "Import configuration" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:320 +msgid "Use the text below to export to a new installation. Or paste in the new configuration to import." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:318 +msgid "Import / Export Settings" +msgstr "" + +#. translators: URL to wp-admin/import.php +#: includes/admin/store-settings/class-mp-store-settings-import.php:266 +msgid "This importer is not installed. Please install importers from the main site." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:261 +msgid "Install Now" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:260 +msgid "Install %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:240 +msgid "Run Importer" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:239 +msgid "Run %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:258 +msgid "Import/Export" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1199 +msgid "Requires Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:737 +msgid "Optionally limit the user to some categories" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:671 +msgid "Should this coupon only be available to logged in users?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:670 +msgid "Require Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:655 +msgid "Mimimum number of products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:653 +msgid "Enter the minimum number of products in the cart that this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:648 +msgid "Can this coupon be limited to a number of products in the cart?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:334 +msgid "Add all values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:265 +msgid "Set as default variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:154 +msgid "Set Default" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:150 +msgid "More Info" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:40 +msgid "MarketPress - Quick Setup" +msgstr "" + +#: includes/public/class-mp-checkout.php:1399 +msgid "Proceed to checkout and create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1241 +#: includes/public/class-mp-checkout.php:1245 +msgid "Register account" +msgstr "" + +#: includes/public/class-mp-checkout.php:1233 +msgid "Register as customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:765 +msgid "

    Oops!

    Looks like you haven't added anything your cart. Let's go shopping!

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:763 +msgid "

    Oops!

    The cart is disabled.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing Information" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:214 +msgid "Global Currency" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:198 +msgid "Global Store Currency" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:507 +msgid "There are no shipping services available for this type of package in your location." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:168 +msgid "Using this USPS Shipping calculator requires requesting an Ecommerce API Username and Password. Get your free set of credentials here ». The password is no longer used for the API, just the username which you should enter below. The USPS test site has not yet been updated and currently doesn't work - you should just request activating your credentials with USPS and go live." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:339 +msgid "ZIP Code" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:334 +msgid "Last name" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:333 +msgid "First name" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:150 +msgid "These are the manual payment instructions to display on the order confirmation screen. TOTAL will be replaced with the order total and ORDERID will be replaced with Order ID." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:240 +msgid "You must login to Authorize.net merchant dashboard to obtain the API login ID and API transaction key. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:327 +msgid "
    1. Set the \"Return Method\" within Site Management to Header Redirect and set the \"Return URL\" to %s
    2. Set your notifications url to %s
    " +msgstr "" + +#: includes/common/data.php:191 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Also, digital downloads included in your order are now ready to be downloaded. Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:185 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order is now available to download! Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:184 +msgid "Your Order Is Ready To Be Downloaded! (ORDERID)" +msgstr "" + +#: includes/common/data.php:179 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:173 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received, your digital goods are ready to be downloaded and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:167 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received and your digital goods are ready to be downloaded. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:160 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +" Your order has been received, and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information: \n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/class-mp-product.php:638 +msgid "You can not add more items to cart." +msgstr "" + +#: includes/common/class-mp-product.php:635 +msgid "You can only add {0} to cart." +msgstr "" + +#: includes/common/class-mp-product.php:625 +msgid "This product has an order limit of %d." +msgstr "" + +#: includes/common/class-mp-order.php:1454 +msgid "Shipped: tracking code: %s" +msgstr "" + +#: includes/common/class-mp-order.php:1000 +#: includes/common/class-mp-order.php:1012 +msgid "Finished" +msgstr "" + +#: includes/common/class-mp-order.php:858 +msgid "Contact Details" +msgstr "" + +#: includes/common/class-mp-order.php:339 includes/common/data.php:155 +msgid "" +"A new order (ORDERID) was created in your store:\n" +"\n" +" ORDERINFOSKU\n" +"\n" +" SHIPPINGINFO\n" +"\n" +" PAYMENTINFO\n" +"\n" +msgstr "\n" + +#: includes/common/class-mp-cart.php:1858 +msgid "Add again" +msgstr "" + +#: includes/common/class-mp-cart.php:1852 +msgid "was removed from Shopping Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1242 +#: includes/public/class-mp-short-codes.php:160 +msgid "Cart update notice: this item has a limit per order or you have reached the stock limit." +msgstr "" + +#: includes/admin/widgets/product-list.php:235 +msgid "Show Only Featured Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:533 +msgid "If enabled, users won't be able to filter products per category and/or to order by release date/name/price." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:531 +msgid "Hide Products Filter?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:353 +msgid "Notification to registration email instead of billing email?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:322 +msgid "Order Shipped - Mixed orders (with both digital and physical products)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:289 +msgid "Order Shipped - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:224 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:194 +msgid "New Order - Mixed" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:161 +msgid "New Order - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:115 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:243 +msgid "Mixed orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:110 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:238 +msgid "Digital downloads orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:105 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:233 +msgid "Physical orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:96 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed.
    For orders placed with manual payment, emails set here will be overriden by the one configured in manual payments settings, under payments settings page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:89 +msgid "Customer Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:47 +msgid "Admin Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:566 +msgid "Only contact details" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:565 +msgid "Full billing info" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:561 +msgid "Details Collection" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:548 +msgid "Digital Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:515 +msgid "Apply Tax to Digital Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:236 +msgid "product (default)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:231 +msgid "If you are experiencing conflicts with other e-commerce plugins change this setting. This will change the internal post type of all your products. Please note that changing this option may break 3rd party themes or plugins." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1203 +msgid "Hide details" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1202 +msgid "Show all changes" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1184 +msgid "Version %s" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1161 +msgid "Current" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1131 +msgid "%s changelog" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:952 +msgid "We did not find any data for this plugin or theme..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:285 +msgid "Activate WPMU DEV Dashboard" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:279 +msgid "Just one more step - activate the WPMU DEV Dashboard plugin and you're all done!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:277 +msgid "Important updates are available for your WPMU DEV plugins/themes. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:273 +msgid "Just one more step to enable updates and support for %s!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:271 +msgid "Important updates are available for %s. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:264 +msgid "activate" +msgstr "" + +#: includes/admin/class-mp-admin.php:398 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:248 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:289 +msgid "Dismiss" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:247 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:288 +msgid "Saving..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:244 +msgid "Install Plugin" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:238 +msgid "Almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:236 +msgid "Important updates are available for your WPMU DEV plugins/themes. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:232 +msgid "%s is almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:230 +msgid "Important updates are available for %s. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:223 +msgid "install" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1428 +msgid "Sets the number of Tags to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1289 +msgid "How many products to display in the product list if \"paginate\" is set to false." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:739 +#: includes/admin/class-mp-shortcode-builder.php:906 +#: includes/admin/class-mp-shortcode-builder.php:1350 +msgid "Grid" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:735 +#: includes/admin/class-mp-shortcode-builder.php:902 +#: includes/admin/class-mp-shortcode-builder.php:1346 +msgid "Products will be displayed as list or grid." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:206 +msgid "Display a cloud or list of your global product tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:205 +msgid "Display a list of your global categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:204 +msgid "Display a list or grid of your global products." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:181 +msgid "Display a list of featured products." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1451 +msgid "Is Featured?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1444 +msgid "Featured Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:581 +#: includes/admin/class-mp-products-admin.php:1580 +msgid "% discount" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:579 +msgid "OR" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:460 +#: includes/admin/class-mp-products-admin.php:586 +#: includes/admin/widgets/product-list.php:217 +msgid "Featured" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:536 +#: includes/admin/class-mp-orders-admin.php:538 +msgid "Tracking Link" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:508 +msgid "Shipping Tax" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:356 +msgid "Shipping Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:352 +msgid "Taxes Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:349 +msgid "Products Total" +msgstr "" + +#: includes/admin/class-mp-ajax.php:366 +msgid "Oops! You entered an invalid username/email and or password." +msgstr "" + +#: includes/admin/class-mp-ajax.php:254 +msgid "Percentage Discount" +msgstr "" + +#: includes/admin/class-mp-ajax.php:234 +msgid "Limit the Amount of Items per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:214 +msgid "Unused Attributes" +msgstr "" + +#: includes/admin/class-mp-admin.php:82 +msgid "Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-admin.php:79 +msgid "MarketPress setup is not complete! Once you've completed this quick setup wizard you'll have a fully working online store - exciting! " +msgstr "" + +#: marketpress.php:263 +msgctxt "mp_order" +msgid "Add New" +msgstr "" + +#: marketpress.php:184 +msgctxt "product_tag" +msgid "Product Tag" +msgstr "" + +#: marketpress.php:183 +msgctxt "product_tag" +msgid "Product Tags" +msgstr "" + +#: marketpress.php:150 +msgctxt "product_category" +msgid "Product Category" +msgstr "" + +#: marketpress.php:149 +msgctxt "product_category" +msgid "Product Categories" +msgstr "" + +#. Author URI of the plugin/theme +msgid "http://premium.wpmudev.org" +msgstr "" + +#: marketpress.php:729 +msgid "Invoice PDF" +msgstr "" + +#: marketpress.php:712 +msgid "Grant access to themes and gateways depending on the user's Pro Site level" +msgstr "" + +#: marketpress.php:711 +msgid "Pro Sites" +msgstr "" + +#: marketpress.php:703 +msgid "Offer and accept coupon codes" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:687 +msgid "Install %s Pages" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:682 +msgid "Welcome to %s – Install pages required by the plugin automatically." +msgstr "" + +#: marketpress.php:668 +msgid "Your pages were created successfully." +msgstr "" + +#: marketpress.php:436 +msgid "Add a Product" +msgstr "" + +#: marketpress.php:271 +msgid "Parent Order" +msgstr "" + +#: marketpress.php:270 +msgid "No orders found in trash" +msgstr "" + +#: marketpress.php:269 +msgid "No orders found" +msgstr "Δεν βρέθηκαν παραγγελίες" + +#: marketpress.php:265 +msgid "Edit Order" +msgstr "" + +#: marketpress.php:264 +msgid "Add New Order" +msgstr "Προσθέστε Νέα Παραγγελία" + +#: marketpress.php:220 marketpress.php:221 +msgid "Add New Product" +msgstr "" + +#: marketpress.php:197 +msgid "No product tags found" +msgstr "" + +#: marketpress.php:196 +msgid "Choose from the most used product tags" +msgstr "" + +#: marketpress.php:195 +msgid "Add or remove product tags" +msgstr "" + +#: marketpress.php:194 +msgid "Separate product tags with commas" +msgstr "" + +#: marketpress.php:193 +msgid "Search Product Tags" +msgstr "" + +#: marketpress.php:192 +msgid "Parent Product Tag:" +msgstr "" + +#: marketpress.php:191 +msgid "Parent Product Tag" +msgstr "" + +#: marketpress.php:190 +msgid "New Product Tag Name" +msgstr "" + +#: marketpress.php:189 +msgid "Add New Product Tag" +msgstr "" + +#: marketpress.php:188 +msgid "Update Product Tag" +msgstr "" + +#: marketpress.php:187 +msgid "View Product Tag" +msgstr "" + +#: marketpress.php:186 +msgid "Edit Product Tag" +msgstr "" + +#: marketpress.php:185 +msgid "All Product Tags" +msgstr "" + +#: marketpress.php:163 +msgid "No product categories found" +msgstr "" + +#: marketpress.php:162 +msgid "Choose from the most used product categories" +msgstr "" + +#: marketpress.php:161 +msgid "Add or remove product categories" +msgstr "" + +#: marketpress.php:160 +msgid "Separate product categories with commas" +msgstr "" + +#: marketpress.php:159 +msgid "Search Product Categories" +msgstr "" + +#: marketpress.php:158 +msgid "Parent Product Category:" +msgstr "" + +#: marketpress.php:157 +msgid "Parent Product Category" +msgstr "" + +#: marketpress.php:156 +msgid "New Product Category Name" +msgstr "" + +#: marketpress.php:155 +msgid "Add New Product Category" +msgstr "" + +#: marketpress.php:154 +msgid "Update Product Category" +msgstr "" + +#: marketpress.php:153 +msgid "View Product Category" +msgstr "" + +#: marketpress.php:152 +msgid "Edit Product Category" +msgstr "" + +#: marketpress.php:151 +msgid "All Product Categories" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Please fix the %s1 and then try submitting the form again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Oops! The form contains %s1 which %s2 been highlighted below." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:660 +msgid "have" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:659 +msgid "has" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:651 +msgid "Value must be less than {0}" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:650 +msgid "Please enter only letters and numbers" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:539 +msgid "Due to prolonged inactivity on this page, one or more settings were not saved. Please try again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:535 +msgid "Settings Saved" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-user-select.php:22 +msgid "Select Some Users" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-section.php:18 +msgid "Section Title" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:425 +msgid "Are you sure you want to delete this?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:30 +msgid "Add Row" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-post-select.php:24 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-taxonomy-select.php:22 +msgid "Select Posts" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:210 +msgid "Add Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:129 +msgid "Select the image that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:93 +msgid "Select image(s) that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:79 +msgid "Select the image that you would like to use for this variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:48 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:82 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:68 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:132 +msgid "Select Image" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:31 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:160 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:168 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:19 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:115 +msgid "Select File" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:30 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:18 +msgid "Select the file that you would like to use." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:357 +msgid "Create Variations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:356 +msgid "Add Another Variant" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Insert a value and press ENTER" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "(e.g. White, Grey, Red etc.)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Variation Values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:333 +msgid "Or create new variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "(e.g. Color)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:303 +msgid "You are about to delete selected variants.
    If you want to continue please confirm." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:302 +msgid "Confirmation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:290 +msgid "Insert quantity available. Empty for unlimited." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:281 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:294 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:307 +msgid "Cancel" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:280 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:293 +msgid "Update" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:277 +msgid "Insert the price i.e. 25 or 25.50" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:115 +msgid "Img." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:85 +msgid "Add New Variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:79 +msgid "Delete Variants" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:78 +msgid "Update Prices" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:77 +msgid "Update Inventory" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:76 +msgid "Update Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:75 +msgid "Bulk Actions" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:73 +msgid "Select bulk action" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:196 +msgid "Configure Store" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:195 +msgid "Configure shipping rates, emails and your store's appearance. " +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:190 +msgid "Add Product" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:189 +msgid "Add your first product for sale and get familiar with adding products." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:184 +msgid "Your store is almost ready for its first customers, but first it needs some products. Get started by adding products below, or jump straight into further configuring your store’s settings." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:183 +msgid "Woohoo! Your online store is up and running." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:160 +msgid "Finish Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:124 +msgid "And what metric system do you want to use?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:113 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:142 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:159 +msgid "Back" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:109 +msgid "Do you want to apply tax for your products? You can customize this for each product and variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:105 +msgid "What currency do you want to sell with?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:93 +msgid "And, which countries do you want to sell to?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:89 +msgid "Where is your online store based?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:80 +msgid "Payment Gateway" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:79 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:123 +msgid "Metric System" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:78 +msgid "Currency & Tax" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:77 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:88 +msgid "Locations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:70 +msgid "Choose where you want to sell your stuff and what currency. Easy!" +msgstr "" + +#: includes/public/class-mp-checkout.php:1400 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:58 +msgid "Continue" +msgstr "" + +#: includes/admin/class-mp-admin.php:83 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:53 +msgid "Skip this step, I'll do this manually" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:49 +msgid "Install store pages" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:44 +msgid "Once you've completed this quick setup wizard you'll have a fully working online store - exciting! Start
    by creating the default store pages for the online store such as the cart, checkout and store pages." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:42 +msgid "MarketPress adds a full online store to your website, with heaps of configuration options and addons
    to suit your needs. It's really easy to get going, and only takes a few minutes to setup!" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:41 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:69 +msgid "Welcome to MarketPress - Quick Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-advanced-select.php:23 +msgid "Select Some Options" +msgstr "" + +#: includes/wpmudev-metaboxes/class-wpmudev-field.php:694 +msgid "You must the WPMUDEV_Field::display() method in your form field class" +msgstr "" + +#: includes/public/class-mp-short-codes.php:636 +msgid "Only %s left in stock..." +msgstr "" + +#: includes/public/class-mp-short-codes.php:633 +msgid "Unlimited stock" +msgstr "" + +#: includes/public/class-mp-short-codes.php:430 +msgid "product_id must be defined" +msgstr "" + +#: includes/public/class-mp-checkout.php:1250 +msgid "An account with this username already exists" +msgstr "" + +#: includes/public/class-mp-checkout.php:1394 +msgid "Continue as Guest" +msgstr "" + +#: includes/public/class-mp-checkout.php:1393 +msgid "Proceed to checkout and you'll have an opportunity to create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1392 +#: includes/public/class-mp-checkout.php:1398 +msgid "First-time customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1386 +msgid "Login" +msgstr "" + +#: includes/public/class-mp-checkout.php:1379 +msgid "E-Mail Address/Username" +msgstr "Διεύθυνση E-Mail / Όνομα Χρήστη" + +#: includes/public/class-mp-checkout.php:1377 +msgid "Sign in to speed up the checkout process." +msgstr "" + +#: includes/public/class-mp-checkout.php:1376 +msgid "Have an account?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1297 +msgid "Shipping address different than billing?" +msgstr "Διεύθυνση αποστολής είναι διαφορετική από τη Διεύθυνση χρέωσης;" + +#: includes/public/class-mp-checkout.php:1184 +msgid "There are no available gateways to process this payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1160 +msgid "Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:1123 +msgid "Oops! An error occurred while processing your payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1051 +msgid "Next Step »" +msgstr "" + +#: includes/public/class-mp-checkout.php:1045 +msgid "« Previous Step" +msgstr "" + +#: includes/public/class-mp-checkout.php:873 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:657 +msgid "error" +msgstr "" + +#: includes/public/class-mp-checkout.php:872 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:658 +msgid "errors" +msgstr "" + +#: includes/public/class-mp-checkout.php:871 +msgid "

    Oops! We found %d %s in the form below.

    Fields that have errors are highlighted in red below. Entering into a field will reveal the actual error that occurred.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:870 +msgid "Please enter a valid first and last name" +msgstr "" + +#: includes/public/class-mp-checkout.php:869 +msgid " Please enter a valid card security code" +msgstr "" + +#: includes/public/class-mp-checkout.php:868 +msgid "Please enter a valid card expiration" +msgstr "" + +#: includes/public/class-mp-checkout.php:773 +msgid "Javascript is required in order to checkout. Please enable Javascript in your browser and then refresh this page." +msgstr "" + +#: includes/public/class-mp-checkout.php:588 +msgid "An unknown error occurred. Please try again." +msgstr "" + +#: includes/public/class-mp-checkout.php:386 +msgid "Town/City" +msgstr "" + +#: includes/public/class-mp-checkout.php:380 +msgid "Apartment, suite, unit, building, floor, etc" +msgstr "Διαμέρισμα, σουίτα, μονάδα, κτίριο, όροφος, κ.λπ." + +#: includes/public/class-mp-checkout.php:376 +msgid "Address Line 2" +msgstr "Διεύθυνση (2η γραμμή)" + +#: includes/public/class-mp-checkout.php:363 +msgid "Address Line 1" +msgstr "Διεύθυνση (1η γραμμή)" + +#: includes/common/class-mp-order.php:770 +#: includes/public/class-mp-checkout.php:354 +msgid "Company" +msgstr "" + +#: includes/public/class-mp-checkout.php:330 +msgid "Last" +msgstr "" + +#: includes/public/class-mp-checkout.php:321 +msgid "First" +msgstr "" + +#: includes/public/class-mp-checkout.php:284 +msgid "State/Province" +msgstr "" + +#: includes/public/class-mp-checkout.php:83 +msgid "Review Order/Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing/Shipping Address" +msgstr "Διεύθυνση χρέωσης/ Διεύθυνση αποστολής" + +#: includes/public/class-mp-checkout.php:80 +msgid "Login/Register" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:530 +msgid "Marketplace" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:523 +msgid "Global Marketplace Pages" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +msgid "Store Network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +#: includes/multisite/class-mp-admin-multisite.php:494 +msgid "Store Network Settings" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:440 +msgid "Set theme access permissions for network stores. For a custom css theme, save your css file with the MarketPress Theme: NAME header in the /marketpress/ui/themes/ folder and it will appear in this list so you may select it." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:361 +msgid "Choose a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:336 +msgid "%d products get indexed" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:285 +msgid "Product Indexer" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:281 +msgid "Please hold on..." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:280 +msgid "Index Products" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:279 +msgid "%d products have been indexed in whole network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:182 +msgid "Enable Global Shopping Cart?" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:178 +msgid "Limit Global Widgets/Shortcodes To Main Blog?" +msgstr "" + +#: includes/common/template-functions.php:2802 +#: includes/multisite/template-functions.php:355 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:97 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:114 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:143 +msgid "Next" +msgstr "Επόμενο" + +#: includes/common/template-functions.php:2801 +#: includes/multisite/template-functions.php:354 +msgid "Prev" +msgstr "Προηγούμενο" + +#: includes/common/template-functions.php:2597 +msgid "Tagged in " +msgstr "" + +#: includes/common/template-functions.php:2196 +#: includes/common/template-functions.php:2202 +#: includes/common/template-functions.php:2214 +#: includes/common/template-functions.php:2217 +msgid "Oops! We couldn't locate any orders matching that order number. Please verify the order number and try again." +msgstr "" + +#: includes/common/template-functions.php:2138 +msgid "Look Up" +msgstr "" + +#: includes/common/template-functions.php:1423 +msgid "Please choose a shipping method" +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "If you have your order ID you can look it up using the form below." +msgstr "Εάν έχετε ID της παραγγελίας σας, μπορείτε να το αναζητήσετε χρησιμοποιώντας την παρακάτω φόρμα." + +#: includes/common/template-functions.php:927 +msgid "Order Search" +msgstr "Αναζήτηση Παραγγελίας" + +#: includes/common/template-functions.php:910 +#: includes/public/class-mp-checkout.php:1440 +msgid "Cart" +msgstr "Το Καλάθι" + +#: includes/common/template-functions.php:895 +msgid "[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:887 +msgid "[mp_global_categories_list]" +msgstr "" + +#: includes/common/template-functions.php:880 +msgid "" +"Welcome to our market place!\n" +"\n" +"Check out our network of products:\n" +"\n" +"[mp_list_global_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_global_categories_list]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_global_tag_cloud]" +msgstr "" +"Καλώς Ήρθατε στο Ηλεκτρονικό μας Κατάστημα\n" +"\n" +"Δείτε τα προϊόντα μας:\n" +"\n" +"[mp_list_global_products]\n" +"\n" +"Εμφάνιση ανά Κατηγορια:\n" +"\n" +"[mp_global_categories_list]\n" +"\n" +"Αναζήτηση με βάση την ετικέτα:\n" +"\n" +"[mp_global_tag_cloud]" + +#: includes/common/template-functions.php:879 +msgid "Global Store" +msgstr "" + +#: includes/common/template-functions.php:873 +msgid "" +"Welcome to our online store! Feel free to browse around:\n" +"\n" +"[mp_store_navigation]\n" +"\n" +"Check out our most popular products:\n" +"\n" +"[mp_popular_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_list_categories]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_tag_cloud]" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:127 +msgid "If cart weight is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:126 +msgid "Cart Weight" +msgstr "Βάρος" + +#: includes/common/shipping-modules/mp-usps.php:222 +msgid "Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:206 +msgid "Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:196 +msgid "Retail Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:195 +msgid "Online Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:193 +msgid "Rates Request Type" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:189 +msgid "Maximum Weight Per Package" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:195 +#: includes/common/shipping-modules/mp-usps.php:236 +msgid "Enter your standard box sizes as LengthxWidthxHeight (e.g. 12x8x6) For each box defined enter the maximum weight it can contain. Note: the shipping prices this plugin calculates are estimates. If they are consistently too low or too high, please check that the list of boxes above and the product weights are accurate and complete." +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:187 +msgid "Handling Charge Per Box Shipped" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:176 +#: includes/common/shipping-modules/mp-ups.php:181 +msgid "Offered Services" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:165 +msgid "Shipper Number" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:151 +msgid "User ID" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:144 +msgid "Developer Kit Access Key" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:140 +msgid "Use Sandbox Mode?" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:123 +msgid "In order to use UPS, you will need a UPS Developer Kit access key and the UPS user ID and password associated with the access key. Set these up for free here. If this information is missing or incorrect, an error will appear during the checkout process and the buyer will not be able to complete the transaction." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:112 +msgid "If cart total is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:111 +msgid "Cart Total" +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:95 +#: includes/common/shipping-modules/mp-weight-rate.php:111 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Don't worry about sorting as this will be done automatically upon saving." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:170 +msgid "Method Title (visible for clients)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:409 +#: includes/common/shipping-modules/mp-ups.php:216 +#: includes/common/shipping-modules/mp-usps.php:251 +msgid "Max Weight (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:402 +#: includes/common/shipping-modules/mp-ups.php:209 +#: includes/common/shipping-modules/mp-usps.php:247 +msgid "Size (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:387 +msgid "Enter your standard box sizes as LengthxWidthxHeight ( 12x8x6 ) For each box defined enter the maximum weight it can contain. Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:361 +#: includes/common/shipping-modules/mp-usps.php:229 +msgid "Handling Charge per International Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:353 +msgid "International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:339 +#: includes/common/shipping-modules/mp-usps.php:213 +msgid "Handling Charge per Domestic Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:331 +msgid "Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:321 +msgid "When checked the customer can chose Residential or Commercial delivery with Residential the default. Unchecked it's only Residential rates." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:320 +msgid "Allow Commercial Delivery?" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:315 +msgid "Fedex 10kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:314 +msgid "Fedex 25kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:313 +msgid "Fedex Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:312 +msgid "Fedex Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:311 +msgid "Fedex Pak" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:310 +msgid "Fedex Tube" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:306 +msgid "Default Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:294 +msgid "Dropoff Type" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:290 +msgid "Meter ID" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:134 +msgid "This is a residential address" +msgstr "Διεύθυνση Κατοικίας" + +#: includes/common/payment-gateways/wepay.php:283 +msgid "There was an error processing your card: \"%s\". Please check your credit card info and try again." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:121 +msgid "Wepay makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept cards directly on your site. You don't need a merchant account or gateway. WePay handles everything including storing cards. Credit cards go directly to WePay's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:385 +msgid "There was an error processing your card - \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:356 +msgid "%s Store Purchase - Order ID - %s, Email - %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:251 +msgid "Stripe makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept Visa, MasterCard, American Express, Discover, JCB, and Diners Club cards directly on your site. You don't need a merchant account or gateway. Stripe handles everything, including storing cards, subscriptions, and direct payouts to your bank account. Credit cards go directly to Stripe's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:192 +msgid "ZMW - Zambian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:191 +msgid "ZAR - South African Rand" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:190 +msgid "YER - Yemeni Rial" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:189 +msgid "XPF - Cfp Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:188 +msgid "XOF - West African Cfa Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:187 +msgid "XCD - East Caribbean Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:186 +msgid "XAF - Central African Cfa Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:185 +msgid "WST - Samoan Tala" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:184 +msgid "VUV - Vanuatu Vatu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:183 +msgid "VND - Vietnamese Đồng" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:182 +msgid "VEF - Venezuelan Bolívar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:181 +msgid "UZS - Uzbekistani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:180 +msgid "UYI - Uruguayan Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:178 +msgid "UGX - Ugandan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:177 +msgid "UAH - Ukrainian Hryvnia" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:176 +msgid "TZS - Tanzanian Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:175 +msgid "TWD - New Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:174 +msgid "TTD - Trinidad and Tobago Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:172 +msgid "TOP - Tongan Paʻanga" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:171 +msgid "TJS - Tajikistani Somoni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:169 +msgid "SZL - Swazi Lilangeni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:168 +msgid "SVC - Salvadoran Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:167 +msgid "STD - São Tomé and Príncipe Dobra" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:166 +msgid "SRD - Surinamese Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:165 +msgid "SOS - Somali Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:164 +msgid "SLL - Sierra Leonean Leone" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:163 +msgid "SHP - Saint Helenian Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:160 +msgid "SCR - Seychellois Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:159 +msgid "SBD - Solomon Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:157 +msgid "RWF - Rwandan Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:156 +msgid "RUB - Russian Ruble" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:155 +msgid "RSD - Serbian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:154 +msgid "RON - Romanian Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:153 +msgid "QAR - Qatari Riyal" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:152 +msgid "PYG - Paraguayan Guaraní*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:151 +msgid "PLN - Polish Złoty" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:150 +msgid "PKR - Pakistani Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:149 +msgid "PHP - Philippine Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:148 +msgid "PGK - Papua New Guinean Kina" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:147 +msgid "PEN - Peruvian Nuevo Sol*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:146 +msgid "PAB - Panamanian Balboa*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:144 +msgid "NPR - Nepalese Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:142 +msgid "NIO - Nicaraguan Córdoba*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:141 +msgid "NGN - Nigerian Naira" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:140 +msgid "NAD - Namibian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:139 +msgid "MZN - Mozambican Metical" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:137 +msgid "MXN - Mexican Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:136 +msgid "MWK - Malawian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:135 +msgid "MVR - Maldivian Rufiyaa" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:134 +msgid "MUR - Mauritian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:133 +msgid "MRO - Mauritanian Ouguiya" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:132 +msgid "MOP - Macanese Pataca" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:131 +msgid "MNT - Mongolian Tögrög" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:130 +msgid "MKD - Macedonian Denar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:129 +msgid "MGA - Malagasy Ariary" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:128 +msgid "MDL - Moldovan Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:126 +msgid "LVL - Latvian Lats" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:124 +msgid "LSL - Lesotho Loti" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:123 +msgid "LRD - Liberian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:122 +msgid "LKR - Sri Lankan Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:121 +msgid "LBP - Lebanese Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:120 +msgid "LAK - Lao Kip*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:119 +msgid "KZT - Kazakhstani Tenge" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:118 +msgid "KYD - Cayman Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:117 +msgid "KRW - South Korean Won" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:116 +msgid "KMF - Comorian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:115 +msgid "KHR - Cambodian Riel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:114 +msgid "KGS - Kyrgyzstani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:113 +msgid "KES - Kenyan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:111 +msgid "JMD - Jamaican Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:110 +msgid "ISK - Icelandic Króna" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:109 +msgid "INR - Indian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:108 +msgid "ILS - Israeli New Sheqel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:107 +msgid "IDR - Indonesian Rupiah" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:105 +msgid "HTG - Haitian Gourde" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:103 +msgid "HNL - Honduran Lempira*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:101 +msgid "GYD - Guyanese Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:100 +msgid "GTQ - Guatemalan Quetzal*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:99 +msgid "GNF - Guinean Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:98 +msgid "GMD - Gambian Dalasi" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:97 +msgid "GIP - Gibraltar Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:96 +msgid "GEL - Georgian Lari" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:94 +msgid "FKP - Falkland Islands Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:93 +msgid "FJD - Fijian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:91 +msgid "ETB - Ethiopian Birr" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:90 +msgid "EGP - Egyptian Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:89 +msgid "EEK - Estonian Kroon*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:88 +msgid "DZD - Algerian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:87 +msgid "DOP - Dominican Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:85 +msgid "DJF - Djiboutian Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:84 +msgid "CZK - Czech Koruna*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:83 +msgid "CVE - Cape Verdean Escudo*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:82 +msgid "CRC - Costa Rican Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:81 +msgid "COP - Colombian Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:80 +msgid "CNY - Chinese Renminbi Yuan" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:79 +msgid "CLP - Chilean Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:77 +msgid "CDF - Congolese Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:76 +msgid "CAD - Canadian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:75 +msgid "BZD - Belize Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:74 +msgid "BWP - Botswana Pula" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:73 +msgid "BSD - Bahamian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:72 +msgid "BRL - Brazilian Real*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:71 +msgid "BOB - Bolivian Boliviano*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:70 +msgid "BND - Brunei Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:69 +msgid "BMD - Bermudian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:68 +msgid "BIF - Burundian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:67 +msgid "BGN - Bulgarian Lev" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:66 +msgid "BDT - Bangladeshi Taka" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:65 +msgid "BBD - Barbadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:64 +msgid "BAM - Bosnia & Herzegovina Convertible Mark" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:63 +msgid "AZN - Azerbaijani Manat" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:62 +msgid "AWG - Aruban Florin" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:61 +msgid "AUD - Australian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:60 +msgid "ARS - Argentine Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:59 +msgid "AOA - Angolan Kwanza*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:58 +msgid "ANG - Netherlands Antillean Gulden" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:57 +msgid "AMD - Armenian Dram" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:56 +msgid "ALL - Albanian Lek" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:55 +msgid "AFN - Afghan Afghani*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:54 +msgid "AED - United Arab Emirates Dirham" +msgstr "AED - Ντιρχάμ Ηνωμένων Αραβικών Εμιράτων" + +#: includes/common/payment-gateways/skrill.php:345 +msgid "Skrill balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:327 +msgid "Skrill IPN message received." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:283 +msgid "Skrill" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:278 +msgid "Pending payment" +msgstr "Αναμονή πληρωμής" + +#: includes/common/payment-gateways/skrill.php:144 +msgid "The secret word must match the word submitted in the \"Merchant Tools\" section of your Skrill account." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:134 +msgid "You must use your valid Skrill merchant email. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:133 +msgid "Skrill Email" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:123 +msgid "Resell your inventory via Skrill.com (Moneybookers)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:95 +msgid "ZAR - South-African Rand" +msgstr "ZAR - Ραντ Νότιας-Αφρικής" + +#: includes/common/payment-gateways/skrill.php:93 +msgid "TWD - Taiwan Dollar" +msgstr "TWD - Δολάριο της Ταϊβάν" + +#: includes/common/payment-gateways/skrill.php:92 +msgid "TRY - New Turkish Lira" +msgstr "TRY - Νέα Τουρκική Λίρα" + +#: includes/common/payment-gateways/skrill.php:91 +msgid "TND - Tunisian Dinar" +msgstr "TND - Τυνησιακό Δηνάριο" + +#: includes/common/payment-gateways/skrill.php:90 +msgid "THB - Thailand Baht" +msgstr "THB - Μπατ Ταϊλάνδης" + +#: includes/common/payment-gateways/skrill.php:89 +msgid "SKK - Slovakian Koruna" +msgstr "SKK - Κορόνα Σλοβακίας" + +#: includes/common/payment-gateways/skrill.php:86 +#: includes/common/payment-gateways/stripe.php:158 +msgid "SAR - Saudi Riyal" +msgstr "SAR - Ριάλ Σαουδικής Αραβίας" + +#: includes/common/payment-gateways/skrill.php:85 +msgid "RSD - Serbian dinar" +msgstr "RSD - Σερβικό Δηνάριο" + +#: includes/common/payment-gateways/skrill.php:83 +msgid "QAR - Qatari Rial" +msgstr "QAR - Ριάλ Κατάρ" + +#: includes/common/payment-gateways/skrill.php:81 +msgid "OMR - Omani Rial" +msgstr "OMR - Ριάλ του Ομάν" + +#: includes/common/payment-gateways/skrill.php:80 +msgid "NOK - Norwegian Krone " +msgstr "NOK - Νορβηγική Κορόνα" + +#: includes/common/payment-gateways/skrill.php:78 +#: includes/common/payment-gateways/stripe.php:138 +msgid "MYR - Malaysian Ringgit" +msgstr "MYR - Ρινγκίτ Μαλαισίας" + +#: includes/common/payment-gateways/skrill.php:77 +#: includes/common/payment-gateways/stripe.php:127 +msgid "MAD - Moroccan Dirham" +msgstr "MAD - Ντιρχάμ Μαρόκου" + +#: includes/common/payment-gateways/skrill.php:74 +msgid "KRW - South-Korean Won" +msgstr "KRW - Γουόν Νότιας Κορέας" + +#: includes/common/payment-gateways/skrill.php:72 +msgid "JOD - Jordanian Dinar" +msgstr "JOD - Ιορδανικό Δηνάριο" + +#: includes/common/payment-gateways/skrill.php:70 +msgid "INR - Indian Rupee" +msgstr "INR - Ινδική Ρουπία" + +#: includes/common/payment-gateways/skrill.php:63 +msgid "EEK - Estonian Kroon" +msgstr "EEK - Κορόνα Εσθονίας" + +#: includes/common/payment-gateways/skrill.php:56 +msgid "AED - Utd. Arab Emir. Dirham" +msgstr "AED - Γιουνάιτεντ. Άραβα εμίρη. Ντιράμ" + +#: includes/common/payment-gateways/skrill.php:52 +msgid "Turkish" +msgstr "Τουρκικά" + +#: includes/common/payment-gateways/skrill.php:51 +msgid "Swedish" +msgstr "Σουηδικά" + +#: includes/common/payment-gateways/skrill.php:50 +msgid "Spanish" +msgstr "Ισπανικά" + +#: includes/common/payment-gateways/skrill.php:49 +msgid "Russian" +msgstr "Ρωσικά" + +#: includes/common/payment-gateways/skrill.php:48 +msgid "Romainian" +msgstr "Ρουμανικά" + +#: includes/common/payment-gateways/skrill.php:47 +msgid "Polish" +msgstr "Πολωνικά" + +#: includes/common/payment-gateways/skrill.php:46 +msgid "Italian" +msgstr "Ιταλικά" + +#: includes/common/payment-gateways/skrill.php:45 +msgid "Greek" +msgstr "Ελληνικά" + +#: includes/common/payment-gateways/skrill.php:44 +msgid "German" +msgstr "Γερμανικά" + +#: includes/common/payment-gateways/skrill.php:43 +msgid "French" +msgstr "Γαλλικά" + +#: includes/common/payment-gateways/skrill.php:42 +msgid "Finnish" +msgstr "Φινλανδικά" + +#: includes/common/payment-gateways/skrill.php:41 +msgid "English" +msgstr "Αγγλικά" + +#: includes/common/payment-gateways/skrill.php:40 +msgid "Dutch" +msgstr "Ολλανδικά" + +#: includes/common/payment-gateways/skrill.php:39 +msgid "Danish" +msgstr "Δανέζικα" + +#: includes/common/payment-gateways/skrill.php:38 +msgid "Czech" +msgstr "Τσεχική" + +#: includes/common/payment-gateways/skrill.php:37 +msgid "Chinese" +msgstr "Κινέζικα" + +#: includes/common/payment-gateways/simplify.php:201 +msgid "There was an error processing your card: %s. Please re-enter your credit card info and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:278 +msgid "
  • There was an error processing your card: \"%s\". Please verify your credit card information and try again.
  • " +msgstr "
  • Υπήρξε σφάλμα κατά την επεξεργασία της κάρτας σας: \"%s\". Παρακαλούμε επιβεβαιώστε τα στοιχεία της πιστωτικής κάρτας σας και δοκιμάστε ξανά.
  • " + +#: includes/common/payment-gateways/pin.php:274 +msgid "
  • There was an error processing your card. Please verify your credit card information and try again.
  • " +msgstr "
  • Υπήρξε σφάλμα κατά την επεξεργασία της κάρτας σας. Παρακαλούμε επιβεβαιώστε τα στοιχεία της πιστωτικής κάρτας σας και δοκιμάστε ξανά.
  • " + +#: includes/common/payment-gateways/pin.php:177 +#: includes/common/payment-gateways/stripe.php:279 +msgid "Publishable Key" +msgstr "" + +#: includes/common/payment-gateways/pin.php:163 +msgid "API Credentials?" +msgstr "" + +#: includes/common/payment-gateways/pin.php:147 +msgid "PIN makes it easy to start accepting credit card payments with Australia’s first all-in-one online payment system. Accept all major credit cards directly on your site. Your sales proceeds are deposited to any Australian bank account, no merchant account required." +msgstr "" + +#: includes/common/payment-gateways/pin.php:57 +#: includes/common/payment-gateways/stripe.php:179 +msgid "USD - United States Dollar" +msgstr "USD - Δολάριο ΗΠΑ" + +#: includes/common/payment-gateways/paypal-payflow.php:455 +msgid "Email Footer" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:445 +msgid "Email Header" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:416 +msgid "Partner" +msgstr "Συνέταιρος" + +#: includes/common/payment-gateways/paypal-payflow.php:409 +msgid "Vendor" +msgstr "Προμηθευτής" + +#: includes/common/payment-gateways/paypal-express.php:852 +#: includes/common/payment-gateways/paypal-express.php:1126 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences\t section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:749 +msgid "Page Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:744 +msgid "Header Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:739 +msgid "Header Border Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:734 +msgid "Header Image" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:680 +msgid "Locale" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:624 +#: includes/common/payment-gateways/paypal-express.php:658 +msgid "Merchant Email" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:645 +msgid "Paypal Express Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:603 +msgid "Paypal Express Network Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:861 +msgid "Application ID (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:854 +msgid "Signature (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:847 +msgid "API Password (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:839 +msgid "API Username (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:832 +msgid "Signature (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:825 +msgid "API Password (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:817 +msgid "API Username (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:799 +msgid "This message is displayed at the top of the gateway settings page to store admins. It's a good place to inform them of your fees or put any sales messages." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:787 +msgid "Please enter your PayPal email address or business ID you want to recieve fees at." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:786 +msgid "PayPal E-mail" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:772 +msgid "Fees to Collect (%)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:375 +#: includes/public/class-mp-checkout.php:341 +msgid "Email Address" +msgstr "Διεύθυνση ηλεκτρονικού ταχυδρομείου" + +#: includes/common/payment-gateways/paypal-chained-payments.php:299 +msgid "Sorry, your order was not completed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:126 +#: includes/common/payment-gateways/paypal-express.php:780 +msgid "You will be redirected to the PayPal site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:90 +#: includes/common/payment-gateways/skrill.php:94 +msgid "USD - U.S. Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:89 +msgid "TRY - Turkish lira" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:88 +#: includes/common/payment-gateways/stripe.php:170 +msgid "THB - Thai Baht" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:87 +msgid "TWD - Taiwan New Dollars" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:86 +#: includes/common/payment-gateways/pin.php:59 +#: includes/common/payment-gateways/skrill.php:88 +#: includes/common/payment-gateways/stripe.php:162 +msgid "SGD - Singapore Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:84 +msgid "RUB - Russian Rubles" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:82 +msgid "PHP - Philippine Pesos" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:81 +#: includes/common/payment-gateways/pin.php:58 +#: includes/common/payment-gateways/skrill.php:79 +#: includes/common/payment-gateways/stripe.php:145 +msgid "NZD - New Zealand Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:79 +msgid "MXN - Mexican Peso" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:78 +msgid "MYR - Malaysian Ringgits" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:77 +#: includes/common/payment-gateways/pin.php:64 +#: includes/common/payment-gateways/skrill.php:73 +#: includes/common/payment-gateways/stripe.php:112 +msgid "JPY - Japanese Yen" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:75 +#: includes/common/payment-gateways/pin.php:63 +#: includes/common/payment-gateways/skrill.php:66 +#: includes/common/payment-gateways/stripe.php:102 +msgid "HKD - Hong Kong Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:73 +msgid "GBP - Pound Sterling" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:68 +#: includes/common/payment-gateways/pin.php:62 +#: includes/common/payment-gateways/skrill.php:59 +msgid "CAD - Canadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:67 +msgid "BRL - Brazilian Real" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:66 +#: includes/common/payment-gateways/pin.php:56 +#: includes/common/payment-gateways/skrill.php:57 +msgid "AUD - Australian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:288 +msgid "There was an error processing your card: \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:163 +msgid "When running on a live site, Paymill recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:161 +#: includes/common/payment-gateways/pin.php:157 +#: includes/common/payment-gateways/simplify.php:103 +#: includes/common/payment-gateways/stripe.php:260 +#: includes/common/payment-gateways/wepay.php:153 +msgid "Force SSL?" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:151 +msgid "Accept Visa, Mastercard, Maestro UK, Discover and Solo cards directly on your site. You don't need a merchant account or gateway. Credit cards go directly to Paymill's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:131 +msgid "CVV2" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:72 +#: includes/common/payment-gateways/pin.php:61 +#: includes/common/payment-gateways/skrill.php:65 +#: includes/common/payment-gateways/stripe.php:95 +msgid "GBP - British Pound" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:71 +#: includes/common/payment-gateways/stripe.php:173 +msgid "TRY - Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:70 +#: includes/common/payment-gateways/paypal-chained-payments.php:85 +#: includes/common/payment-gateways/skrill.php:87 +#: includes/common/payment-gateways/stripe.php:161 +msgid "SEK - Swedish Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:69 +#: includes/common/payment-gateways/skrill.php:84 +msgid "RON - Romanian Leu New" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:68 +#: includes/common/payment-gateways/paypal-chained-payments.php:83 +#: includes/common/payment-gateways/skrill.php:82 +msgid "PLN - Polish Zloty" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:67 +#: includes/common/payment-gateways/paypal-chained-payments.php:80 +#: includes/common/payment-gateways/stripe.php:143 +msgid "NOK - Norwegian Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:66 +#: includes/common/payment-gateways/skrill.php:75 +#: includes/common/payment-gateways/stripe.php:125 +msgid "LTL - Lithuanian Litas" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:65 +#: includes/common/payment-gateways/paypal-chained-payments.php:69 +#: includes/common/payment-gateways/skrill.php:60 +#: includes/common/payment-gateways/stripe.php:78 +msgid "CHF - Swiss Franc" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:64 +#: includes/common/payment-gateways/skrill.php:76 +msgid "LVL - Latvian Lat" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:63 +#: includes/common/payment-gateways/paypal-chained-payments.php:74 +#: includes/common/payment-gateways/skrill.php:69 +msgid "ILS - Israeli Shekel" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:62 +#: includes/common/payment-gateways/skrill.php:71 +msgid "ISK - Iceland Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:61 +#: includes/common/payment-gateways/paypal-chained-payments.php:76 +#: includes/common/payment-gateways/skrill.php:68 +#: includes/common/payment-gateways/stripe.php:106 +msgid "HUF - Hungarian Forint" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:60 +#: includes/common/payment-gateways/paypal-chained-payments.php:71 +#: includes/common/payment-gateways/skrill.php:62 +#: includes/common/payment-gateways/stripe.php:86 +msgid "DKK - Danish Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:59 +#: includes/common/payment-gateways/skrill.php:67 +#: includes/common/payment-gateways/stripe.php:104 +msgid "HRK - Croatian Kuna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:58 +#: includes/common/payment-gateways/paypal-chained-payments.php:70 +#: includes/common/payment-gateways/skrill.php:61 +msgid "CZK - Czech Koruna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:57 +#: includes/common/payment-gateways/skrill.php:58 +msgid "BGN - Bulgarian Leva" +msgstr "" + +#: includes/common/payment-gateways/payflow/class-mp-gateway-worker-payflow.php:123 +msgid "There was an error connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:344 +msgid "This setting will log all PayFast communication to the \"payfast.log\" file." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:342 +msgid "Log Debugging Info?" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:335 +msgid "DO NOT INPUT A VALUE UNLESS YOU HAVE SET ONE IN THE SETTINGS SECTION OF YOUR PAYFAST SETTINGS." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:333 +msgid "PayFast Passphrase" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:323 +msgid "You can find your credentials on your integration page." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:321 +msgid "PayFast Merchant Credentials" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:311 +msgid "PayFast Mode" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:308 +msgid "PayFast is a payments processing service for South Africa. We make it safe for buyers to send money and easy for sellers to receive money. More Info »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:306 +msgid "PayFast Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:285 +msgid "Your payment via PayFast for this order totaling %s is complete. The transaction number is %s." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:278 +msgid "Your payment via PayFast for this order totaling %s is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:124 +msgid "Your PayFast transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:82 +#: includes/common/payment-gateways/payfast.php:83 +msgid "PayFast" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:157 +msgid "API error: - \"%s\"" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:198 +msgid "The payment request is under process" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:140 +msgid "Order: #" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:116 +msgid "You will be redirected to the Mollie site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:73 +msgid "%sMollie%s provides a fully PCI Compliant and secure way to collect payments via iDeal, Credit Card, Bancontact / Mister Cash, SOFORT Banking, Overbooking, Bitcoin, PayPal, paysafecard and AcceptEmail." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:53 +#: includes/common/payment-gateways/mollie.php:54 +#: includes/common/payment-gateways/mollie.php:195 +#: includes/common/payment-gateways/mollie.php:245 +msgid "Mollie" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:50 +#: includes/common/payment-gateways/paymill.php:56 +#: includes/common/payment-gateways/paypal-chained-payments.php:72 +#: includes/common/payment-gateways/pin.php:60 +#: includes/common/payment-gateways/skrill.php:64 +#: includes/common/payment-gateways/stripe.php:92 +msgid "EUR - Euro" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:306 +msgid "Access Key" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:300 +msgid "You must login to the Mijireh.com dashboard to obtain the Access Key." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:299 +msgid "Credentials" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:289 +msgid "Mijireh Checkout provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:269 +msgid "Mijireh Error: " +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:89 +msgid "You will be redirected to the Mijireh.com site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:87 +msgid "Your Mijireh transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:42 +#: includes/common/payment-gateways/mijireh.php:43 +#: includes/common/payment-gateways/mijireh.php:324 +msgid "Mijireh" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:145 +msgid "These are the manual payment instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:189 +msgid "This is the email text to send to those who have made free order checkouts. You should include your free order instructions / information here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:183 +msgid "This is the free order information to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:182 +msgid "Confirmation User Information" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:177 +msgid "This is the information to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:163 +msgid "If enabled, all free orders will be automatically marked as paid." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:159 +msgid "Payment Status" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:149 +msgid "This gateway is automatically activated if order totalling 0 and it can't be disabled" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:35 +#: includes/common/payment-gateways/free_orders.php:36 +#: includes/common/payment-gateways/free_orders.php:89 +msgid "Free Order" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:34 +#: includes/common/payment-gateways/free_orders.php:197 +msgid "Free Orders" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:515 +msgid "Sandbox API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:266 +#: includes/common/payment-gateways/eway31.php:542 +msgid "eWay Rapid 3.1 Payments (beta)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:403 +msgid "Hosted Payment Page Language" +msgstr "" + +#: includes/common/payment-gateways/eway.php:373 +msgid "Note when testing in sandbox mode it will use the default eWay test API credentials. Also, please note that cart total needs to be a whole number (e.g. 10.00) in order to generate a successful transaction, otherwise the transaction will fail." +msgstr "" + +#: includes/common/payment-gateways/eway.php:267 +msgid "You will be redirected to https://www.eway.com.au to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:380 +msgid "You have chosen to checkout using %s. Please confirm your order details and click \"Submit Order\" when finished." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:272 +#: includes/common/payment-gateways/paymill.php:131 +#: includes/common/payment-gateways/stripe.php:231 +msgid "Security Code " +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Enter in MM/YYYY or MM/YY format" +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Expiration" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:321 +msgid "Delim Data" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:307 +#: includes/common/payment-gateways/paypal-payflow.php:456 +msgid "This text will appear as the footer of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:287 +#: includes/common/payment-gateways/paypal-payflow.php:440 +msgid "Email Customer (on success)" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:278 +msgid "Authorize.net default is \",\". Otherwise, get this from your credit card processor. If the transactions are not going through, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:277 +msgid "Delimeter Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:193 +msgid "Held For Review" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:310 +#: includes/common/payment-gateways/payfast.php:314 +msgid "Test" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:300 +#: includes/common/payment-gateways/pin.php:170 +#: includes/common/payment-gateways/stripe.php:272 +msgid "Secret Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:283 +msgid "Select Your Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:97 +msgid "Your payment will be processed by the iDEAL network" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:208 +msgid "These are the CubePoints to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:203 +msgid "These are the CubePoints instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:266 +msgid "If enabled, all API calls will be made to https://test.bitpay.com." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:263 +msgid "Use Test Mode?" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:259 +msgid "If checked, response fron bitpay will be stored in log file, keep it disabled unless required." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:256 +msgid "Enable Debug Log" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:249 +msgid "Full Notifications" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:231 +#: includes/common/payment-gateways/eway31.php:499 +#: includes/common/payment-gateways/eway31.php:526 +#: includes/common/payment-gateways/mollie.php:83 +#: includes/common/shipping-modules/mp-fedex.php:269 +msgid "API Key" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:222 +msgid "You can now accept a payment from any country on Earth, with no risk of fraud. To use Bitpay, you need to signup on Bitpay. \\n After completing the signup process, you can get api keys at Bitpay API key. You can read more about Bitpay at Bitpay API. \\n Bitpay requires SSL(https) for payment notifications to work." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:61 +msgid "You will be redirected to bitpay.com, for bitcoin payment. It is completely safe." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:346 +msgid "You must login to the 2Checkout vendor dashboard to obtain the seller ID and secret word. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:345 +#: includes/common/payment-gateways/authorizenet-aim.php:239 +#: includes/common/payment-gateways/paymill.php:168 +#: includes/common/payment-gateways/paypal-express.php:704 +#: includes/common/payment-gateways/simplify.php:80 +#: includes/common/payment-gateways/stripe.php:265 +#: includes/common/payment-gateways/wepay.php:158 +msgid "API Credentials" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:325 +#: includes/common/payment-gateways/_bitpay.php:220 +#: includes/common/payment-gateways/_cubepoints.php:185 +#: includes/common/payment-gateways/_ideal.php:268 +#: includes/common/payment-gateways/_payway.php:255 +#: includes/common/payment-gateways/authorizenet-aim.php:219 +#: includes/common/payment-gateways/eway.php:352 +#: includes/common/payment-gateways/eway31.php:460 +#: includes/common/payment-gateways/free_orders.php:147 +#: includes/common/payment-gateways/manual-payments.php:126 +#: includes/common/payment-gateways/mijireh.php:287 +#: includes/common/payment-gateways/mollie.php:71 +#: includes/common/payment-gateways/paymill.php:149 +#: includes/common/payment-gateways/paypal-chained-payments.php:344 +#: includes/common/payment-gateways/paypal-payflow.php:376 +#: includes/common/payment-gateways/pin.php:145 +#: includes/common/payment-gateways/simplify.php:69 +#: includes/common/payment-gateways/skrill.php:121 +#: includes/common/payment-gateways/stripe.php:249 +#: includes/common/payment-gateways/wepay.php:119 +#: includes/common/shipping-modules/mp-fedex.php:243 +#: includes/common/shipping-modules/mp-flat-rate.php:63 +#: includes/common/shipping-modules/mp-pickup.php:140 +#: includes/common/shipping-modules/mp-table-rate.php:94 +#: includes/common/shipping-modules/mp-ups.php:122 +#: includes/common/shipping-modules/mp-usps.php:167 +#: includes/common/shipping-modules/mp-weight-rate.php:110 +msgid "%s Settings" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:136 +msgid "You will be redirected to the 2Checkout site to finalize your payment." +msgstr "" + +#: includes/common/helpers.php:169 includes/public/class-mp-checkout.php:1277 +msgid "Billing" +msgstr "" + +#: includes/common/helpers.php:144 +msgid "FREE" +msgstr "" + +#: includes/common/helpers.php:134 +msgid "Coupons:" +msgstr "" + +#: includes/common/helpers.php:95 +msgid "Qty" +msgstr "" + +#: includes/common/helpers.php:94 +msgid "Sku" +msgstr "" + +#: includes/common/data.php:59 +msgid "Zip Code" +msgstr "" + +#: includes/common/class-mp-taxes.php:336 +msgid "Standard Table" +msgstr "" + +#: includes/common/class-mp-product.php:2698 +msgid "Tweet" +msgstr "" + +#: includes/common/class-mp-product.php:2321 +msgid "Notification Preferences: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2320 +msgid "Edit Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2318 +msgid "Link: %s

    " +msgstr "" + +#: includes/common/class-mp-product.php:2317 +msgid "Current Inventory: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2316 +msgid "Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2314 +msgid "This message is being sent to notify you of low stock of a product in your online store according to your preferences.

    " +msgstr "" + +#: includes/common/class-mp-product.php:1817 +msgid "" +msgstr "" + +#: includes/common/class-mp-product.php:1427 +#: includes/common/class-mp-product.php:1430 +msgid "(tax incl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1422 +#: includes/common/class-mp-product.php:1425 +msgid "(tax excl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1300 +#: includes/common/class-mp-product.php:1315 +msgid "%s each" +msgstr "" + +#: includes/common/class-mp-product.php:988 +msgid "Choose Options" +msgstr "" + +#: includes/common/class-mp-product.php:526 +msgid "Choose a %s" +msgstr "" + +#: includes/common/class-mp-product.php:284 +#: includes/common/class-mp-product.php:292 +#: includes/common/class-mp-product.php:615 +msgid "We're sorry, we only have %d of this item in stock right now." +msgstr "" + +#: includes/common/class-mp-order.php:1456 +msgid "Shipped: Track Shipment" +msgstr "" + +#: includes/common/class-mp-order.php:1049 +msgid "Order Received" +msgstr "" + +#: includes/common/class-mp-order.php:1014 +msgid "In Process" +msgstr "" + +#: includes/common/class-mp-order.php:969 +msgid "Order #" +msgstr "" + +#: includes/common/class-mp-order.php:866 +msgid "Copy billing address to shipping address" +msgstr "Αντιγράψτε τη διεύθυνση χρέωσης στην διεύθυνση αποστολής" + +#: includes/common/class-mp-order.php:822 +#: includes/public/class-mp-checkout.php:1314 +msgid "Special Instructions" +msgstr "" + +#: includes/common/class-mp-order.php:817 +#: includes/common/payment-gateways/stripe.php:335 +msgid "Email" +msgstr "" + +#: includes/common/class-mp-order.php:813 +#: includes/common/payment-gateways/stripe.php:341 +#: includes/public/class-mp-checkout.php:416 +msgid "Phone" +msgstr "" + +#: includes/common/class-mp-order.php:791 +#: includes/common/payment-gateways/stripe.php:337 +msgid "State" +msgstr "" + +#: includes/common/class-mp-order.php:776 +msgid "Address 1" +msgstr "Διεύθυνση 1" + +#: includes/common/class-mp-order.php:766 +msgid "Last Name" +msgstr "" + +#: includes/common/class-mp-order.php:762 +msgid "First Name" +msgstr "" + +#: includes/common/class-mp-installer.php:677 +msgid "MarketPress requires a database update to continue working correctly. Go to update page" +msgstr "" + +#: includes/common/class-mp-installer.php:657 +msgid "MarketPress performed a quick automatic update successfully!" +msgstr "" + +#: includes/common/class-mp-installer.php:653 +msgid "Perform Update" +msgstr "" + +#: includes/common/class-mp-installer.php:647 +msgid "Please update each subsite in your WordPress network where you have older version of the MarketPress plugin." +msgstr "" + +#: includes/common/class-mp-installer.php:641 +msgid "Depending on the amount of products you have, this update could take quite some time. Please keep this window open while the update completes. If you have products with multiple variations, the progress bar may move slower, please don't exit the window." +msgstr "" + +#: includes/common/class-mp-installer.php:632 +msgid "Product Metadata" +msgstr "" + +#: includes/common/class-mp-installer.php:601 +msgid "MarketPress requires a database update to continue working correctly.
    Below you will find a list of items that require your attention." +msgstr "" + +#: includes/common/class-mp-installer.php:600 +msgid "Update MarketPress Data" +msgstr "" + +#: includes/common/class-mp-installer.php:530 +msgid "Update Data" +msgstr "" + +#: includes/common/class-mp-installer.php:67 +msgid "Complete!" +msgstr "" + +#: includes/common/class-mp-installer.php:66 +msgid "Upgrading Database...Please Wait..." +msgstr "" + +#: includes/common/class-mp-installer.php:64 +msgid "An error occurred while updating. Please refresh this page and try again." +msgstr "" + +#: includes/common/class-mp-cart.php:2447 +msgid "Some items in your cart have fallen below the quantity you currently have in your cart. We have adjusted the quantity in your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:2443 +msgid "Some items in your cart are no longer available. We have removed these items from your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:1566 +msgid "item" +msgstr "" + +#: includes/common/class-mp-cart.php:1563 +#: includes/common/class-mp-cart.php:1568 +msgid "items" +msgstr "" + +#: includes/common/class-mp-cart.php:1363 +msgid "Items/Products added to Cart will show here." +msgstr "" + +#: includes/common/class-mp-cart.php:1362 +msgid "Your shopping cart is empty." +msgstr "" + +#: includes/common/class-mp-cart.php:1357 +msgid "View Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1241 +#: includes/common/class-mp-cart.php:1298 +#: includes/public/class-mp-short-codes.php:159 +msgid "Adding..." +msgstr "" + +#: includes/common/class-mp-cart.php:1033 +msgid "Continue Shopping?" +msgstr "" + +#: includes/common/class-mp-cart.php:961 +msgid "Secure Checkout
    Shopping is always safe and secure." +msgstr "" + +#: includes/common/class-mp-cart.php:959 +msgid "You are about to submit your order!
    Please review your order details before continuing. You will be charged immediately upon clicking \"Submit Order\"." +msgstr "" + +#: includes/common/class-mp-cart.php:956 +msgid "Continue »" +msgstr "" + +#: includes/common/class-mp-cart.php:955 +msgid "Submit Order" +msgstr "" + +#: includes/common/class-mp-cart.php:818 +msgid "There are no items in your cart - go add some !" +msgstr "" + +#: includes/common/class-mp-cart.php:816 +msgid "The cart is disabled." +msgstr "" + +#: includes/common/class-mp-cart.php:735 +msgid "Estimated %s" +msgstr "" + +#: includes/common/class-mp-cart.php:717 +msgid "Estimated Shipping" +msgstr "" + +#: includes/common/class-mp-cart.php:697 +msgid "Product Total" +msgstr "" + +#: includes/common/class-mp-cart.php:670 includes/common/class-mp-cart.php:672 +msgid "Estimated Total (%s, %s)" +msgstr "" + +#: includes/common/class-mp-cart.php:668 +msgid "Estimated Total (%s)" +msgstr "" + +#: includes/common/class-mp-cart.php:666 includes/common/class-mp-cart.php:752 +msgid "Estimated Total" +msgstr "" + +#: includes/admin/widgets/product-list.php:247 +msgid "Show Thumbnail Placeholder image (if image is not set)" +msgstr "" + +#: includes/admin/widgets/cart.php:73 +msgid "Display product price" +msgstr "" + +#: includes/admin/widgets/cart.php:71 +msgid "Display product quantity" +msgstr "" + +#: includes/admin/widgets/cart.php:69 +msgid "Display product image" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:93 +msgid "General Shipping Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:773 +msgid "If you are having conflicts with the lightbox library from your theme or another plugin you should uncheck this." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:772 +msgid "Use Built-In Lightbox for Images?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:762 +msgid "Disable Large Image Display?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:688 +msgid "Show Product Image?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:682 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:684 +msgid "Show Tags List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:676 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:678 +msgid "Show Categories List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:671 +msgid "If enabled, description excerpt will be added above Add to cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:669 +msgid "Show Excerpt?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:665 +msgid "If enabled, users will be able to choose how many of the product they want to purchase before adding to their cart. If not checked, quantity could be change later on the cart page." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:663 +msgid "Show Quantity Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:649 +msgid "Settings related to the display of individual product pages." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:648 +msgid "Product Page Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:605 +msgid "Related Products Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:573 +msgid "Show Related Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:568 +msgid "Related Product Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:549 +msgid "Order Status Entries Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:510 +msgid "Sort Products By" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:497 +msgid "Products Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:492 +msgid "Paginate Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:478 +msgid "Excerpts Length" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:473 +msgid "Show Excerpts?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:450 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:746 +msgid "Image Alignment" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:412 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:708 +msgid "Custom Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:401 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:697 +msgid "Large - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:400 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:696 +msgid "Medium - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:399 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:695 +msgid "Thumbnail - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:397 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:693 +msgid "Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:386 +msgid "Select default placeholder image thumbnail when product image is not available (if empty, plugin's built-in image will be used)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:380 +msgid "Show default product placeholder thumbnail when product image is not available?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:374 +msgid "Show Product Thumbnail?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:369 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:658 +msgid "Redirect to cart page for immediate checkout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:368 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:657 +msgid "Stay on current product page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:366 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:655 +msgid "MarketPress supports two \"flows\" for adding products to the shopping cart. After adding a product to their cart, two things can happen:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:365 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:654 +msgid "Add To Cart Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:355 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:628 +msgid "Four" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:354 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:627 +msgid "Three" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:353 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:626 +msgid "Two" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:625 +msgid "One" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:349 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:622 +msgid "Set the number of products that show up in a grid row to best fit your theme" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:348 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:621 +msgid "How many products per row?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:342 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:609 +msgid "Display as grid" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:341 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:608 +msgid "Display as list" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:339 +msgid "Product Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:334 +msgid "Settings related to the display of product lists/grids." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:333 +msgid "Product List/Grid Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:314 +msgid "Show Twitter Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:309 +msgid "Twitter" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:303 +msgid "Show Share Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:297 +msgid "Recommend" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:296 +msgid "Like" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:294 +msgid "Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:283 +msgid "Show Facebook Like Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:278 +msgid "Facebook" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:257 +msgid "Show \"Pin It\" Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:252 +msgid "Pinterest" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:246 +msgid "Social Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:193 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:202 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:211 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:220 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:229 +#: includes/multisite/class-mp-admin-multisite.php:532 +#: includes/multisite/class-mp-admin-multisite.php:541 +#: includes/multisite/class-mp-admin-multisite.php:550 +msgid "Choose a Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:191 +msgid "This page will be used as the root for your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:168 +#: includes/multisite/class-mp-admin-multisite.php:586 +msgid "Create Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "uncropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "cropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:87 +#: includes/multisite/class-mp-admin-multisite.php:121 +#: includes/multisite/class-mp-admin-multisite.php:620 +msgid "An error occurred while creating the store page. Please try again." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:66 +msgid "Choose the gateway(s) that you would like to be available for checkout." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:65 +msgid "Enabled Gateways" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:78 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:146 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:179 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:213 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:274 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:307 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:341 +msgid "Text" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:71 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:139 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:172 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:206 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:267 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:300 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:334 +msgid "Subject" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:52 +msgid "Notification Email" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:510 +msgid "Enabling this option will display label `excl. tax` or `incl. tax` after price" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:509 +msgid "Display tax label?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:504 +msgid "Enabling this option will show Price + Tax, eg. if your price is 100 and your tax 20, your price will be 120" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:416 +#: includes/multisite/class-mp-admin-multisite.php:234 +msgid "Price Format" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:366 +msgid "Enabling this field will display a textbox on the shipping checkout page for users to enter special instructions for their order. Useful for product personalization, etc." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:365 +msgid "Show Special Instructions Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:360 +msgid "Universal" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:359 +msgid "Old" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1167 +#: includes/admin/store-settings/class-mp-store-settings-general.php:358 +msgid "New" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:353 +msgid "If you already use Google Analytics for your website, you can track detailed ecommerce information by enabling this setting. Choose whether you are using the new asynchronous or old tracking code. Before Google Analytics can report ecommerce activity for your website, you must enable ecommerce tracking on the profile settings page for your website. Also keep in mind that some gateways do not reliably show the receipt page, so tracking may not be accurate in those cases. It is recommended to use the PayPal gateway for the most accurate data. More information »" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:347 +msgid "Do you want to display the product price on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:346 +msgid "Show product price on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:340 +msgid "Do you want to display the product quantity on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:339 +msgid "Show product quantity on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:333 +msgid "Do you want to display the product image on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:332 +msgid "Show product image on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:327 +msgid "This option hide floating Mini Cart in top right corner." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:326 +msgid "Disable Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:316 +msgid "If unchecked your Orders admin page will be hidden" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:315 +msgid "Show admin Orders page?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:309 +msgid "Disable Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:303 +msgid "Force Login?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:297 +msgid "Hide Out of Stock Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:555 +msgid "This will prevent multiples of the same downloadable product form being added to the cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:554 +msgid "Limit Digital Products Per-order?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:268 +msgid "If you're having issues downloading large files and have worked with your hosting provider to increase your memory limits, try enabling this - just keep in mind, it's not as secure!" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:267 +msgid "Use Alternative Download Method?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:252 +msgid "Download Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:230 +msgid "Change product post type" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:51 +msgid "%s Capabilities" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-addons.php:47 +msgid "Store Settings: Add Ons: %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:254 +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:56 +msgid "Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Edit Product Attribute %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:246 +msgid "Exporters" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:238 +msgid "Short Codes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:207 +msgid "An appropriate message for key \"%s\" could not be found." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:204 +msgid "Product attribute updated successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:203 +msgid "Product attribute added successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +msgid "Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +#: includes/admin/store-settings/class-mp-store-settings-addons.php:121 +msgid "Store Settings: Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "Store Settings: Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:118 +msgid "Store Settings: Product Tags" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:117 +msgid "Store Settings: Product Categories" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Store Settings: Product Attributes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +msgid "Store Settings: Payments" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:114 +msgid "Store Settings: Shipping" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +#: includes/admin/class-mp-store-settings-admin.php:226 +msgid "Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +msgid "Store Settings: Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:112 +msgid "Store Settings: Presentation" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:111 +msgid "Store Settings: General" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1489 +msgid "Select a Product" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1447 +msgid "Reset to Defaults" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1446 +msgid "Insert Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1202 +#: includes/admin/class-mp-shortcode-builder.php:1227 +#: includes/admin/class-mp-shortcode-builder.php:1252 +msgid "The text to show in the link." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1196 +#: includes/admin/class-mp-shortcode-builder.php:1221 +#: includes/admin/class-mp-shortcode-builder.php:1246 +msgid "Whether to return a clickable link or url." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1177 +msgid "Whether to display the cart only on store pages or not." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1171 +msgid "Whether to show or hide the product price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1165 +msgid "Whether to show or hide the product quantity." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1159 +msgid "Whether to show or hide the product image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1153 +msgid "The text displayed before the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1147 +msgid "The title of the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1058 +#: includes/admin/class-mp-shortcode-builder.php:1121 +msgid "A label to prepend to the price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1032 +#: includes/admin/class-mp-shortcode-builder.php:1127 +msgid "What context for display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1004 +msgid "Set the alignment of the image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:998 +msgid "Set a custom pixel width/height. If omitted defaults to the size set by \"context\"." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:993 +msgid "Widget" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:988 +msgid "What context for preset size options." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:982 +#: includes/admin/class-mp-shortcode-builder.php:1026 +#: includes/admin/class-mp-shortcode-builder.php:1052 +#: includes/admin/class-mp-shortcode-builder.php:1077 +#: includes/admin/class-mp-shortcode-builder.php:1096 +#: includes/admin/class-mp-shortcode-builder.php:1115 +msgid "The ID of the product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:963 +msgid "Whether to display the product meta (e.g. price, buy button)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:738 +#: includes/admin/class-mp-shortcode-builder.php:905 +#: includes/admin/class-mp-shortcode-builder.php:958 +#: includes/admin/class-mp-shortcode-builder.php:992 +#: includes/admin/class-mp-shortcode-builder.php:1035 +#: includes/admin/class-mp-shortcode-builder.php:1130 +#: includes/admin/class-mp-shortcode-builder.php:1349 +msgid "List" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:957 +#: includes/admin/class-mp-shortcode-builder.php:991 +#: includes/admin/class-mp-shortcode-builder.php:1034 +#: includes/admin/class-mp-shortcode-builder.php:1129 +msgid "Single" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:953 +msgid "Whether and what context of image size to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:948 +msgid "Full" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:943 +msgid "Whether and what type of content to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:937 +msgid "Whether to display the product title." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:931 +msgid "The ID of the product to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:747 +#: includes/admin/class-mp-shortcode-builder.php:914 +msgid "Hide" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:746 +#: includes/admin/class-mp-shortcode-builder.php:913 +msgid "Show" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:744 +#: includes/admin/class-mp-shortcode-builder.php:911 +msgid "Whether or not to show the product filters." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:724 +#: includes/admin/class-mp-shortcode-builder.php:891 +#: includes/admin/class-mp-shortcode-builder.php:1335 +msgid "Limits list to a specific product tag." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:713 +#: includes/admin/class-mp-shortcode-builder.php:880 +#: includes/admin/class-mp-shortcode-builder.php:1324 +msgid "Limits list to a specific product category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:706 +#: includes/admin/class-mp-shortcode-builder.php:873 +#: includes/admin/class-mp-shortcode-builder.php:1317 +msgid "Direction to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:684 +#: includes/admin/class-mp-shortcode-builder.php:851 +#: includes/admin/class-mp-shortcode-builder.php:1295 +msgid "What field to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:678 +#: includes/admin/class-mp-shortcode-builder.php:845 +#: includes/admin/class-mp-shortcode-builder.php:1283 +msgid "How many products to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:672 +#: includes/admin/class-mp-shortcode-builder.php:839 +#: includes/admin/class-mp-shortcode-builder.php:1277 +msgid "The page number to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:666 +#: includes/admin/class-mp-shortcode-builder.php:833 +#: includes/admin/class-mp-shortcode-builder.php:1271 +msgid "Whether to paginate the product list. This is useful to only show a subset." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:808 +msgid "How many related items to show." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:790 +msgid "How to relate the products" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:784 +msgid "The product to show related items for." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:765 +msgid "The maximum number of products to display" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:647 +msgid "Comma separated list of tags (term_id) to include. For example, include=5,27 means tags that have the term_id 5 or 27 will be the only tags displayed. Defaults to include everything." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:641 +msgid "Comma separated list of tags (term_id) to exclude. For example, exclude=5,27 means tags that have the term_id 5 or 27 will NOT be displayed. Defaults to exclude nothing." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:633 +#: includes/admin/class-mp-shortcode-builder.php:1420 +msgid "Sort order." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:629 +#: includes/admin/class-mp-shortcode-builder.php:1416 +msgid "Count" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:626 +#: includes/admin/class-mp-shortcode-builder.php:1413 +msgid "Order of the tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:620 +msgid "The text/space between tags)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:616 +msgid "UL with a class of \"wp-tag-cloud\"" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:615 +msgid "separated by whitespace defined by \"separator\" parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:613 +msgid "Format of the cloud display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:607 +msgid "The number of actual tags to display in the cloud. (Use \"0\" to display all tags.)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:601 +msgid "Unit of measure as pertains to the smallest and largest values. This can be any CSS length value, e.g. pt, px, em, %." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:595 +msgid "The text size of the tag with the largest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:589 +msgid "The text size of the tag with the smallest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:570 +msgid "The \"tabindex\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:564 +msgid "The \"name\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:558 +msgid "The \"id\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:552 +msgid "Which category ID is selected." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:540 +msgid "The max depth. This is ignored unless hierarchical is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:536 +#: includes/multisite/template-functions.php:816 +msgid "No Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:414 +#: includes/admin/class-mp-shortcode-builder.php:546 +msgid "Calculates link or post counts by including items from child categories. If show_counts and hierarchical are true this is automatically set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:409 +msgid "Value of n (some number) specifies the depth (or level) to descend in displaying Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:408 +msgid "Show only top level Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:407 +msgid "All Categories displayed in flat (no indent) form (overrides hierarchical)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:406 +msgid "All Categories and child Categories (Default)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:402 +msgid "This parameter controls how many levels in the hierarchy of Categories are to be included in the list of Categories. NOTE: The \"hierarchical\" argument, which is disabled by default, will override the depth argument, unless it is true. When the argument is false, it will display all of the categories. When it is enabled it will use the value in the \"depth\" argument." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:396 +#: includes/admin/class-mp-shortcode-builder.php:1394 +msgid "Sets the number of Categories to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:390 +#: includes/admin/class-mp-shortcode-builder.php:534 +msgid "Set the text to show when no categories are listed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:384 +msgid "Set the title and style of the outer list item. If present but empty, the outer list item will not be displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:378 +#: includes/admin/class-mp-shortcode-builder.php:528 +msgid "Display sub-categories as inner list items (below the parent list item) or inline." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:368 +#: includes/admin/class-mp-shortcode-builder.php:511 +msgid "Exclude category-tree from the results. The parameter include must be empty. If the hierarchical parameter is true, then use exclude instead of exclude_tree." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:354 +msgid "Only include these categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:340 +#: includes/admin/class-mp-shortcode-builder.php:356 +#: includes/admin/class-mp-shortcode-builder.php:370 +#: includes/admin/class-mp-shortcode-builder.php:496 +#: includes/admin/class-mp-shortcode-builder.php:513 +msgid "Select Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:338 +#: includes/admin/class-mp-shortcode-builder.php:494 +msgid "Exclude one or more categories from the results. The parameter include must be empty." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:332 +msgid "Set a URI for an image (usually an rss feed icon) to act as a link to each categories' rss-2 feed. This parameter overrides the feed parameter. There is no default for this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:320 +msgid "Display a link to each category's rss-2 feed and set the link text to display. The default is no text and no feed displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:313 +#: includes/admin/class-mp-shortcode-builder.php:487 +msgid "Any" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:307 +#: includes/admin/class-mp-shortcode-builder.php:481 +msgid "Only display categories that are children of the category identified by this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:301 +msgid "Sets whether a category's description is inserted into the title attribute of the links created (i.e. <a title=\"<em>Category Description</em>\" href=\"...)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:295 +#: includes/admin/class-mp-shortcode-builder.php:475 +msgid "Toggles the display of categories with no posts." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:289 +#: includes/admin/class-mp-shortcode-builder.php:469 +#: includes/admin/class-mp-shortcode-builder.php:1388 +msgid "Toggles the display of the current count of posts in each category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:279 +msgid "Style to display the categories list in. A value of list displays the categories as list items while none generates no special display method (the list items are separated by
    tags)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:269 +#: includes/admin/class-mp-shortcode-builder.php:449 +#: includes/admin/class-mp-shortcode-builder.php:1378 +msgid "Sort order for categories (either ascending or descending)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:259 +#: includes/admin/class-mp-shortcode-builder.php:439 +#: includes/admin/class-mp-shortcode-builder.php:1368 +msgid "Sort categories alphabetically, by unique Category ID, or by the count of posts in that Category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:253 +#: includes/admin/class-mp-shortcode-builder.php:433 +msgid "If a value is entered, causes the display of a link to all categories if the style is set to list." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:219 +msgid "Select an Action" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:217 +msgid "What would you like to do?" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:216 +#: includes/admin/class-mp-shortcode-builder.php:1522 +msgid "Add E-Commerce Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:197 +msgid "Display a list of links to your store pages." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:196 +msgid "Display a link or url to the order status page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:195 +msgid "Display a link or url to the current products list page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:194 +msgid "Display a link or url to the current store page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:193 +msgid "Display a link or url to the current shopping cart page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:192 +msgid "Display the cart widget." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:191 +msgid "Display the full product meta box with price and buy now/add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:190 +msgid "Display the product stock." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:189 +msgid "Display the product SKU number(s)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:188 +msgid "Display the product price (and sale price)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:187 +msgid "Display the buy or add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:186 +msgid "Display the featured image of a given product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:185 +msgid "Display a single product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:184 +msgid "Display a list of products according to preference." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:183 +msgid "Display products related to the one being viewed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:182 +msgid "Display a list of popular products ordered by sales." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:180 +msgid "Display an HTML dropdown of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:179 +msgid "Display an HTML list of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:178 +msgid "Display a cloud or list of your product tags." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:655 +msgid "Setup your payment gateway" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:643 +#: includes/admin/class-mp-setup-wizard.php:649 +msgid "Other Gateways" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:617 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:150 +msgid "Select which calculated shipping methods the customer will be able to choose from." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:601 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:134 +#: includes/public/class-mp-checkout.php:82 +msgid "Shipping Method" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:568 +msgid "I want to charge shipping" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:523 +#: includes/admin/store-settings/class-mp-store-settings-general.php:503 +msgid "Show Price + Tax?" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:507 +msgid "I.e. Taxes, VAT, GST, etc" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:491 +#: includes/admin/store-settings/class-mp-store-settings-general.php:471 +msgid "Current Rates" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:473 +msgid "Default Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:434 +#: includes/admin/class-mp-setup-wizard.php:442 +#: includes/admin/store-settings/class-mp-store-settings-general.php:386 +#: includes/admin/store-settings/class-mp-store-settings-general.php:394 +#: includes/multisite/class-mp-admin-multisite.php:204 +#: includes/multisite/class-mp-admin-multisite.php:212 +msgid "Select a Currency" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:414 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:105 +msgid "Choose Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:411 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:103 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:104 +msgid "All Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:410 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:102 +msgid "These are the countries that you will ship to." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:409 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:101 +msgid "Target Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:401 +msgid "Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:387 +#: includes/admin/store-settings/class-mp-store-settings-general.php:640 +msgid "Zip/Postal Code Label" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:352 +#: includes/admin/store-settings/class-mp-store-settings-general.php:606 +msgid "Select a State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:335 +#: includes/admin/store-settings/class-mp-store-settings-general.php:590 +msgid "Select A Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:332 +#: includes/admin/store-settings/class-mp-store-settings-general.php:587 +msgid "Select a Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:324 +msgid "Location" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:304 +#: includes/admin/class-mp-setup-wizard.php:312 +#: includes/admin/class-mp-store-settings-admin.php:129 +#: includes/admin/class-mp-store-settings-admin.php:262 +msgid "Quick Setup" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:289 +msgid "MarketPress setup is not complete! Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2479 +msgid "Enter your product name here" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2440 +msgid "Select a %s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2426 +msgid "Each product variation needs to have product attributes assigned to it so the system knows how to differentiate one product variation from the other. It is important that you assign a category to this product before choosing any attributes." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2409 +msgid "If you would like this variation to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2320 +msgid "Sale Price (if applicable)" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2281 +msgid "If you would like the description to be different than the main product enter it here." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2229 +msgid "Image" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2202 +#: includes/admin/class-mp-shortcode-builder.php:226 +msgid "Attributes" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2166 +msgid "Create your product variations here. You can reorder variations by using the number to left of each variation, or delete one by clicking the \"x\" to the right of each variation. NOTE: The variation that shows up first in this list will be considered the \"main variation\". The details from this variation will be used in product listings." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2061 +#: includes/admin/class-mp-products-admin.php:2332 +msgid "Value must be less than regular price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2043 +#: includes/admin/class-mp-products-admin.php:2306 +msgid "Regular Price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2023 +#: includes/admin/class-mp-products-admin.php:2286 +msgid "External URL" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1988 +#: includes/admin/class-mp-products-admin.php:2245 +msgid "Enter the quantity that you have available to sell." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1987 +#: includes/admin/class-mp-products-admin.php:2244 +msgid "Inventory Count" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1977 +#: includes/admin/class-mp-products-admin.php:2234 +msgid "Track Inventory?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1871 +msgid "%1$sProduct Images%2$s %3$sAdd images of the product. The first image on the list is the featured image for this product (you can reorder images on the list)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1806 +msgid "Add variations for this product. e.g. If you are selling t-shirts, you can create Color & Size variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1804 +msgid "%3$sAdd variations for%2$s %1$sProduct%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1776 +msgid "This product has a multiple variations %1$s(e.g. Multiple colors, sizes)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1775 +msgid "This is a unique product without variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1700 +msgid "Extra Shipping Cost %1$s(if applicable)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1659 +#: includes/admin/class-mp-products-admin.php:2112 +#: includes/admin/class-mp-products-admin.php:2359 +msgid "Weight" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1636 +#: includes/admin/class-mp-products-admin.php:2098 +#: includes/admin/class-mp-products-admin.php:2416 +msgid "Please enter a valid tax rate" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1531 +msgid "Limit Per Order %1$s(limit the number of the item a shopper can buy per order)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1513 +msgid "SKU %1$s(Stock Keeping Unit)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "%1$sPrice, Inventory & Variants%2$s %3$sSet price, manage inventory and create Product Variants (if appropriate for your product).%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "Product Variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1480 +msgid "External / Affiliate Link" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1471 +msgid "Digital Download" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1470 +msgid "Physical / Tangible Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1464 +msgid "Product Kind %1$s(Physical Product, Digital, etc)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1426 +msgid "Choose Products" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1420 +msgid "If you would like, you can choose specific related products instead of using the ones generated by MarketPress" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1019 +msgid "Changes saved successfully" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:826 +msgid "Option cannot be saved. Try again." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:821 +msgid "Option saved successfully." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:467 +msgid "Img" +msgstr "" + +#: includes/admin/class-mp-product-attributes-list-table.php:57 +msgid "Product attribute(s) deleted successfully." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:162 +msgid "- Create New Variation -" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:144 +msgid "Only lowercase letters and dashes (-) are allowed." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:139 +msgid "If a slug is not entered, it will be generated automatically. Max 32 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:138 +#: includes/admin/class-mp-product-attributes-list-table.php:23 +msgid "Slug" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:130 +msgid "Max 45 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:123 +msgid "Use the numbers on the left to sort. To delete - click the \"X\" to the right of each row." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:122 +msgid "Attribute Options" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:121 +msgid "Add Option" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:105 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:523 +msgid "Sort Order" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:87 +msgid "Alphabetical" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:86 +msgid "ID" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:84 +msgid "Select how the options will be sorted." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:82 +msgid "Sort By" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:75 +msgid "The name of the attribute (e.g. color, size, etc)" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:74 +msgid "Attribute Name" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:69 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Product Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Product Attributes" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:71 +msgid "You can choose to make this page one of the following core store pages." +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:66 +msgid "Network Store Base" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:61 +msgid "Checkout Page" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:52 +msgid "Store Page Settings" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1108 +msgid "Display billing/shipping info for this customer" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1097 +msgid "View order “%s”" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1072 +msgid "Flag as:" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:952 +msgid "Move To Trash" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:948 +msgid " Received" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:927 +msgid "Enter coupon code here" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:812 +msgid "The order status could not be updated due to unexpected error. Please try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:740 +msgid "An invalid bulk action was requested. Please go back and try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:692 +msgid "The order status for order ID %1$s was updated successfully." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:688 +msgid "Order statuses successfully updated." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:530 +msgid "Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:518 +msgid "Actual Shipping Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:513 +msgid "Method Paid For" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:504 +msgid "Amount Collected" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:477 +msgid "DHL" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:408 +msgid "There is no IPN history to show at this time" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:345 +msgid "Type" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:343 +msgid "Gateway" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:301 +#: includes/common/template-functions.php:528 +msgid "Order History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:291 +msgid "IPN History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:283 +msgid "Customer Info" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:279 +msgid "Order Details" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:157 +msgid "All Dates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:320 +msgid "Add Pages to Menu" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:318 +msgid "Add-ons" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:317 +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "User Capabilities" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:316 +#: includes/admin/class-mp-setup-wizard.php:631 +#: includes/admin/store-settings/class-mp-store-settings-payments.php:50 +msgid "Payment Gateways" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:315 +msgid "Shipping Rates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:312 +msgid "Configure" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:309 +#: includes/admin/class-mp-products-admin.php:466 +#: includes/admin/class-mp-shortcode-builder.php:797 +msgid "Tags" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:308 +#: includes/admin/class-mp-products-admin.php:465 +msgid "Categories" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:300 +msgid "Manage" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:297 +msgid "Here's some quick links to manage your store and products." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:288 +msgid "low in stock" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:287 +msgid "%s product" +msgid_plural "%s products" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-dashboard-widgets.php:280 +msgid "received" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:279 +#: includes/admin/class-mp-dashboard-widgets.php:283 +msgid "%s order" +msgid_plural "%s orders" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-dashboard-widgets.php:276 +msgid "Stock & Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:261 +msgid "Last 30 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:256 +msgid "Last 7 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:251 +msgid "Yesterday" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:248 +#: includes/admin/class-mp-dashboard-widgets.php:253 +#: includes/admin/class-mp-dashboard-widgets.php:258 +#: includes/admin/class-mp-dashboard-widgets.php:263 +msgid " Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:246 +msgid "Today" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:241 +msgid "Welcome back! Here's a quick summary of your store's performance." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:196 +#: includes/admin/class-mp-products-admin.php:895 +msgid "No products out of stock." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:136 +#: includes/admin/class-mp-products-admin.php:839 +msgid "Stock Level" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:135 +#: includes/admin/class-mp-products-admin.php:838 +msgid "Variation" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:121 +msgid "Low Stock (%s)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:116 +msgid "Store Management" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:115 +msgid "Store Reports" +msgstr "" + +#: includes/admin/class-mp-ajax.php:579 +#: includes/admin/class-mp-orders-admin.php:520 +#: includes/common/payment-gateways/2checkout.php:370 +#: includes/common/payment-gateways/authorizenet-aim.php:264 +#: includes/common/payment-gateways/mollie.php:93 +#: includes/common/payment-gateways/paymill.php:196 +#: includes/common/payment-gateways/pin.php:190 +#: includes/common/payment-gateways/skrill.php:157 +#: includes/common/payment-gateways/skrill.php:168 +#: includes/common/payment-gateways/wepay.php:143 +#: includes/public/class-mp-checkout.php:404 +msgid "Select One" +msgstr "" + +#: includes/admin/class-mp-ajax.php:511 +msgid "Oops... we could not locate any orders by that ID. Please double check your order ID and try again." +msgstr "" + +#: includes/admin/class-mp-ajax.php:482 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:166 +#: includes/multisite/class-mp-admin-multisite.php:584 +msgid "Edit Page" +msgstr "" + +#: includes/admin/class-mp-ajax.php:346 +msgid "Cancel " +msgstr "" + +#: includes/admin/class-mp-ajax.php:345 +msgid "Save " +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "Edit Description" +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "HTML Markup" +msgstr "" + +#: includes/admin/class-mp-ajax.php:333 +msgid "Plain Text Only" +msgstr "" + +#: includes/admin/class-mp-ajax.php:329 +msgid "Additional Content / Information for this Variation" +msgstr "" + +#: includes/admin/class-mp-ajax.php:317 +#: includes/admin/class-mp-products-admin.php:1762 +msgid "Allow this product to be purchased even if it's out of stock" +msgstr "" + +#: includes/admin/class-mp-ajax.php:313 +#: includes/admin/class-mp-products-admin.php:1711 +msgid "Track Product Inventory" +msgstr "" + +#: includes/admin/class-mp-ajax.php:300 +msgid "Extra Shipping Cost (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:295 +msgid "Ounces:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:294 +msgid "Pounds:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:292 +msgid "Kilograms:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:287 +#: includes/admin/class-mp-products-admin.php:1649 +msgid "Charge Shipping" +msgstr "" + +#: includes/admin/class-mp-ajax.php:273 +#: includes/admin/class-mp-products-admin.php:1623 +#: includes/admin/store-settings/class-mp-store-settings-general.php:454 +msgid "Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:272 +#: includes/admin/class-mp-products-admin.php:1622 +#: includes/admin/class-mp-products-admin.php:2090 +#: includes/admin/class-mp-products-admin.php:2408 +msgid "Special Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:271 +#: includes/admin/class-mp-products-admin.php:1625 +#: includes/admin/class-mp-products-admin.php:2092 +msgid "If you would like this product to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-ajax.php:268 +#: includes/admin/class-mp-products-admin.php:1599 +msgid "Charge Taxes (Special Rate)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:256 +#: includes/admin/class-mp-products-admin.php:1593 +#: includes/admin/class-mp-products-admin.php:2077 +#: includes/admin/class-mp-products-admin.php:2348 +msgid "End Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:255 +#: includes/admin/class-mp-products-admin.php:1589 +#: includes/admin/class-mp-products-admin.php:2072 +msgid "Start Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:1568 +msgid "Enter Sale Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:250 +#: includes/admin/class-mp-products-admin.php:1547 +msgid "Set up a Sale for this Product" +msgstr "" + +#: includes/admin/class-mp-ajax.php:206 includes/admin/class-mp-ajax.php:223 +msgid "Enter " +msgstr "" + +#: includes/admin/class-mp-ajax.php:193 +msgid "Browse" +msgstr "" + +#: includes/admin/class-mp-ajax.php:184 includes/admin/class-mp-ajax.php:192 +msgid "http://" +msgstr "" + +#: includes/admin/class-mp-ajax.php:183 +msgid "External Product URL" +msgstr "" + +#: includes/admin/class-mp-ajax.php:237 +msgid "Limit Per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:177 +#: includes/admin/class-mp-products-admin.php:1520 +msgid "Enter Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:174 +#: includes/admin/class-mp-products-admin.php:1512 +msgid "Enter SKU" +msgstr "" + +#: includes/admin/class-mp-ajax.php:173 +msgid "(Stock Keeping Unit)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:158 +msgid "Remove Image" +msgstr "" + +#: includes/admin/class-mp-ajax.php:74 +msgid "Variation Draft" +msgstr "" + +#: includes/admin/class-mp-admin.php:296 +#: includes/admin/class-mp-dashboard-widgets.php:70 +msgid "Please wait...saving in progress..." +msgstr "" + +#: includes/admin/class-mp-admin.php:295 +#: includes/admin/class-mp-dashboard-widgets.php:69 +msgid "Input is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:294 +#: includes/admin/class-mp-dashboard-widgets.php:68 +msgid "Valid number is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:292 +#: includes/admin/class-mp-dashboard-widgets.php:66 +msgid "Delete %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:291 +#: includes/admin/class-mp-dashboard-widgets.php:65 +msgid "Delete %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:290 +#: includes/admin/class-mp-dashboard-widgets.php:64 +msgid "Update inventory for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:289 +#: includes/admin/class-mp-dashboard-widgets.php:63 +msgid "Update inventory for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:288 +#: includes/admin/class-mp-dashboard-widgets.php:62 +msgid "Update price for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:287 +#: includes/admin/class-mp-dashboard-widgets.php:61 +msgid "Update prices for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:285 +#: includes/admin/class-mp-dashboard-widgets.php:59 +msgid "Creating variations, please wait..." +msgstr "" + +#: includes/admin/class-mp-admin.php:96 +msgid "The following payment gateways have been deprecated, Cubepoints, Bitpay, iDEAL, Skrill, Google Checkout. If you were using one of these gateways, please setup a new payment gateway here." +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:61 +msgid "Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:71 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:71 +#: includes/common/class-mp-gdpr.php:399 includes/common/class-mp-order.php:872 +#: includes/common/helpers.php:164 includes/public/class-mp-checkout.php:1434 +msgid "Shipping Address" +msgstr "Διεύθυνση Αποστολής" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:66 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:66 +#: includes/common/class-mp-gdpr.php:392 includes/common/class-mp-order.php:864 +#: includes/common/helpers.php:163 includes/public/class-mp-checkout.php:1427 +msgid "Billing Address" +msgstr "Διεύθυνση Χρέωσης" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:61 +msgid "Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:258 +msgid "Shipping Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:256 +msgid "Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:235 +msgid "Payment Method: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:79 +msgid "The dir %s not exist or not writeable" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:239 +msgid "Shop header/logo" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:233 +msgid "Choose a template" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:226 +msgid "Template Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:221 +msgid "Disable automatic creation/attachment of invoices when only free products are ordered" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:220 +msgid "Disable for free products" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:216 +msgid "Attach invoice to" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:214 +msgid "Customer Order Shipped email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:212 +msgid "Customer New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:211 +msgid "Admin New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:206 +msgid "download" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:205 +msgid "How do you want to view the PDF?" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:203 +msgid "Open the PDF in a new browser tab/window" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:202 +msgid "Download the PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:158 +msgid "Export PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:103 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:106 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:109 +msgid "You can't download this order invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:76 +msgid "Invalid Request" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:72 +msgid "Order not exist!" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:67 +msgid "Invalid ID" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1293 +msgid "Coupon added successfully" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1292 +msgid "Please enter a code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1247 +msgid "No end" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1200 +msgid "Valid Dates" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1195 +msgid "Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1027 +msgid "No Coupons found in Trash" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1026 +msgid "No Coupons Found" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1025 +msgid "Search Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1024 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1028 +msgid "View Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1023 +msgid "New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1020 +msgid "Create New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1017 +msgid "Manage Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1002 +msgid "An error occurred while removing your coupon. Please try again." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:964 +msgid "Coupon can't be applied to this cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:951 +msgid "Invalid coupon code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:794 +msgid "Help Text" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:789 +msgid "Form Title" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:783 +msgid "Coupons Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:764 +msgid "End Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:758 +msgid "Does coupon have an end date?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:696 +msgid "Select Products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:688 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:723 +#: includes/common/payment-gateways/paypal-payflow.php:402 +msgid "User" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:638 +msgid "Max Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:636 +msgid "Enter the maximum number of times this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:623 +msgid "Leave blank to allow all other coupons." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:622 +msgid "Select combinable coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:618 +msgid "Can this coupon be combined with other coupons?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:613 +msgid "Apply to each applicable item once per cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:612 +msgid "Apply to each applicable item and quantity ordered" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:609 +msgid "How should the discount amount be applied?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:605 +msgid "Discount Amount" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:604 +msgid "Value must either be a decimal number or a percentage" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:602 +msgid "If you would like to give a percentage-based discount make sure to include the percent (%) symbol. Otherwise, the discount will be applied as a fixed amount off." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:595 +msgid "Letters and Numbers only." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:589 +msgid "Coupon Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:447 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:795 +msgid "More than one code? That's OK! Just be sure to enter one at a time." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:444 +msgid "Apply Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:314 +msgid "Coupon Discounts" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:89 +msgid "1 add-on disabled" +msgid_plural "%s add-ons disabled" +msgstr[0] "" +msgstr[1] "" + +#: includes/addons/class-mp-addons-list-table.php:84 +msgid "1 add-on enabled" +msgid_plural "%s add-ons enabled" +msgstr[0] "" +msgstr[1] "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Disabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Enable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:129 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:67 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:135 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:168 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:202 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:263 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:296 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:330 +msgid "Enabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +msgid "Disable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:34 +msgid "Disable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:33 +msgid "Enable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:21 +#: includes/admin/class-mp-products-admin.php:2280 +#: includes/common/class-mp-product.php:2916 +msgid "Description" +msgstr "" + +#: includes/common/template-functions.php:2889 +#: includes/multisite/template-functions.php:407 +msgid "Popularity (Least Popular - Most Popular)" +msgstr "" + +#: includes/common/template-functions.php:2888 +#: includes/multisite/template-functions.php:406 +msgid "Popularity (Most Popular - Least Popular)" +msgstr "" + +#: includes/common/template-functions.php:2885 +#: includes/multisite/template-functions.php:403 +msgid "Name (Z-A)" +msgstr "" + +#: includes/common/template-functions.php:2884 +#: includes/multisite/template-functions.php:402 +msgid "Name (A-Z)" +msgstr "" + +#: includes/common/template-functions.php:2883 +#: includes/multisite/template-functions.php:401 +msgid "Release Date (Oldest to Latest)" +msgstr "" + +#: includes/common/template-functions.php:2882 +#: includes/multisite/template-functions.php:400 +msgid "Release Date (Latest to Oldest)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:284 +msgid "paid" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "One Time Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Customer Counter" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Daily Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:182 +msgid "For the most accurate rates, please select the appropriate pick up type for your business." +msgstr "" + +#: includes/admin/class-mp-admin.php:374 +msgid "Page saved." +msgstr "Η σελίδα αποθηκεύτηκε." + +#: includes/admin/class-mp-admin.php:370 +msgid "Custom field deleted." +msgstr "Το προσαρμοσμένο πεδίο διεγράφη." + +#: includes/admin/class-mp-admin.php:369 +msgid "Custom field updated." +msgstr "Το προσαρμοσμένο πεδίο ενημερώθηκε." + +#: includes/common/payment-gateways/_bitpay.php:541 +msgid "%s - The payment request expired, - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:536 +msgid "%s - The payment not credited in merchants bitpay account, action required. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:252 +msgid "If enabled, you will recieve an email for each status update on payment." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:240 +msgid "Speed at which the bitcoin transaction registers as \"confirmed\" to the store. This overrides your merchant settings on the Bitpay website." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:238 +msgid "Transaction Speed" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:244 +msgid "Low" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:243 +msgid "Medium" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:242 +msgid "High" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:177 +#: includes/common/payment-gateways/_bitpay.php:517 +#: includes/common/payment-gateways/_bitpay.php:522 +msgid "%s - The payment request is under process. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:175 +#: includes/common/payment-gateways/_bitpay.php:527 +msgid "%s - The payment request has been processed - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:150 +#: includes/common/payment-gateways/_bitpay.php:294 +msgid "Incorrect order invoice, please contact site administrator" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:141 +msgid "We could not verify order invoice details, please try again or contact site administrator for help" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:81 +msgid "Login to Simplify to get your API credentials. Enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:605 +#: includes/common/payment-gateways/paypal-express.php:647 +msgid "Express Checkout is PayPal's premier checkout solution, which streamlines the checkout process for buyers and keeps them on your site after making a purchase. Unlike PayPal Pro, there are no additional fees to use Express Checkout, though you may need to do a free upgrade to a business account. More Info »" +msgstr "" + +#. Plugin URI of the plugin/theme +msgid "https://premium.wpmudev.org/project/e-commerce/" +msgstr "" + +#. Author of the plugin/theme +msgid "WPMU DEV" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:541 +#: includes/admin/class-mp-orders-admin.php:543 +msgid "Tracking Number" +msgstr "" + +#: includes/common/class-mp-order.php:805 +#: includes/common/payment-gateways/stripe.php:336 +#: includes/public/class-mp-checkout.php:402 +msgid "Country" +msgstr "Χώρα" + +#: includes/common/class-mp-order.php:784 +#: includes/common/payment-gateways/stripe.php:338 +msgid "City" +msgstr "Πόλη" + +#: includes/common/class-mp-order.php:780 +msgid "Address 2" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:340 +msgid "Address" +msgstr "" + +#: includes/common/class-mp-cart.php:752 includes/common/class-mp-gdpr.php:378 +msgid "Order Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:360 +msgid "Payment Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:347 +msgid "Transaction ID" +msgstr "ID Συναλλαγής" + +#: includes/common/payment-gateways/wepay.php:207 +msgid "The WePay Card Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:186 +#: includes/common/shipping-modules/mp-fedex.php:283 +msgid "Account ID" +msgstr "ID Λογαριασμού" + +#: includes/common/payment-gateways/wepay.php:179 +msgid "Access Token" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:172 +msgid "Client Secret" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:165 +msgid "Client ID" +msgstr "ID Πελάτη" + +#: includes/common/payment-gateways/wepay.php:159 +msgid "You must login to WePay to get your API credentials. Make sure to check \"Tokenize credit cards\" option under \"API Keys\" section of your WePay app." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:154 +msgid "When in live mode it is recommended to use SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:148 +msgid "Donation" +msgstr "Δωρεά" + +#: includes/common/payment-gateways/wepay.php:147 +msgid "Event" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:146 +msgid "Personal" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:145 +msgid "Service" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:144 +msgid "Goods" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:141 +msgid "Choose type of payments" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:140 +msgid "Checkout Type" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:134 +msgid "Staging" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:131 +msgid "Choose STAGING if you have registered the app on stage.wepay.com, or PRODUCTION if you registered on www.wepay.com" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:36 +#: includes/common/payment-gateways/wepay.php:299 +msgid "WePay" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:366 +msgid "Rejected - A payment was rejected." +msgstr "Απερίφθη - Η πληρωμή απερίφθη." + +#: includes/common/payment-gateways/_payway.php:360 +msgid "Failed - A payment was rejected due to an error." +msgstr "Απέτυχε - Η πληρωμή απέτυχε λόγω κάποιου σφάλματος." + +#: includes/common/payment-gateways/_payway.php:342 +msgid "PayWay balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:298 +msgid "Full path of the cacerts.crt file" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:284 +msgid "User Name" +msgstr "Όνομα Χρήστη" + +#: includes/common/payment-gateways/_payway.php:277 +msgid "Biller Code" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:273 +msgid "Log Directory" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:266 +msgid "Encryption Key" +msgstr "Κλειδί Κρυπτογράφησης" + +#: includes/common/payment-gateways/_payway.php:60 +msgid "Your PayWay transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:40 +#: includes/common/payment-gateways/_payway.php:41 +msgid "PayWay" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:862 +msgid "You must register this application with PayPal using your business account login to get an Application ID that will work with your API credentials. A bit of a hassle, but worth it! In the near future we will be looking for ways to simplify this process. Register then submit your application while logged in to the developer portal. Note that you do not need an Application ID for testing in sandbox mode. More Information »" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:818 +#: includes/common/payment-gateways/paypal-chained-payments.php:840 +#: includes/common/payment-gateways/paypal-express.php:705 +msgid "You must login to PayPal and create an API signature to get your credentials. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:378 +msgid "Use Payflow payment gateway to accept online payments using your Internet merchant account and processing network. PayPal Payflow Pro is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:595 +msgid "Tags Only" +msgstr "Μόνον Ετικέτες" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:594 +msgid "Category Only" +msgstr "Μόνον Κατηγορία" + +#: includes/admin/class-mp-shortcode-builder.php:795 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:593 +msgid "Category & Tags" +msgstr "Κατηγορία & Ετικέτες" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:591 +msgid "Relate Products By" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1008 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:455 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:751 +msgid "Right" +msgstr "Δεξιά" + +#: includes/admin/class-mp-shortcode-builder.php:1007 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:454 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:749 +msgid "Left" +msgstr "Αριστερά" + +#: includes/admin/class-mp-shortcode-builder.php:1009 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:750 +msgid "Center" +msgstr "Κέντρο" + +#: marketpress.php:273 +msgid "Orders from your e-commerce store." +msgstr "" + +#: marketpress.php:231 +msgid "Products for your e-commerce store." +msgstr "" + +#: marketpress.php:222 +msgid "Edit Product" +msgstr "" + +#. Description of the plugin/theme +msgid "The complete WordPress ecommerce plugin - works perfectly with BuddyPress and Multisite too to create a social marketplace, where you can take a percentage! Activate the plugin, adjust your settings then add some products to your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:272 +msgid "Beside" +msgstr "Δίπλα" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:271 +msgid "Above" +msgstr "Από Επάνω" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:268 +msgid "Pin Count" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:261 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:287 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:318 +msgid "All View" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:260 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:286 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:317 +msgid "Single View" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:259 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:285 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:316 +msgid "Off" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:578 +msgid "Related Product Limit" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:681 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1201 +msgid "Applies To" +msgstr "Ισχύει για:" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:685 +msgid "All Products" +msgstr "Όλα τα προϊόντα" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:487 +msgid "The label shown for the tax line item in the cart. Taxes, VAT, GST, etc." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:485 +msgid "Tax Label" +msgstr "Ετικέτα Φ.Π.Α." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:81 +msgid "Apply" +msgstr "Εφαρμογή" + +#: includes/admin/class-mp-admin.php:192 +msgid "MarketPress Instructions" +msgstr "Οδηγίες του MarketPress" + +#: includes/admin/class-mp-products-admin.php:1954 +#: includes/admin/class-mp-products-admin.php:2194 includes/common/data.php:62 +#: includes/common/helpers.php:150 +msgid "Taxes" +msgstr "Φόροι" + +#: includes/admin/class-mp-products-admin.php:1417 +#: includes/common/class-mp-product.php:2900 +msgid "Related Products" +msgstr "Σχετικά Προϊόντα" + +#: includes/common/shipping-modules/mp-usps.php:282 +#: includes/common/shipping-modules/mp-usps.php:316 +msgid "@ Max" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "(3-5 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "Priority Mail Express International Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:92 +msgid "Priority Mail Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:171 +#: includes/common/shipping-modules/mp-pickup.php:247 +msgid "In Store" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:159 +msgid "Pickup Fee" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:141 +msgid "This option allows your customers to indicate that they will pick-up their order at your place of business." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:60 +#: includes/common/shipping-modules/mp-pickup.php:76 +#: includes/common/shipping-modules/mp-pickup.php:176 +msgid "Pickup Instructions" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:24 +#: includes/common/shipping-modules/mp-pickup.php:254 +msgid "Pickup" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping - 0.00" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:256 +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:440 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:309 +msgid "Your Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:301 +msgid "Station" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:300 +msgid "Request Courier" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:299 +msgid "Drop Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:298 +msgid "Business Service Center" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:297 +msgid "Regular Pickup" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:135 +#: includes/common/shipping-modules/mp-fedex.php:264 +msgid "Production" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:207 +msgid "Simplify Commerce by MasterCard" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:104 +msgid "When in live mode, although it is not required, Simplify recommends you have an SSL certificate." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:183 +#: includes/common/payment-gateways/simplify.php:87 +msgid "Public Key" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:175 +#: includes/common/payment-gateways/simplify.php:94 +msgid "Private Key" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:71 +msgid "Simplify helps merchants to accept online payments from Mastercard, Visa, American Express, Discover, JCB, and Diners Club cards. It's that simple. We offer a merchant account and payment gateway in a single, secure package so you can concentrate on what really matters to your business. Only supports USD currently." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:267 +msgid "%1$s" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:151 +msgid "The Simplify Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/simplify.php:18 +msgid "Simplify" +msgstr "" + +#: includes/common/payment-gateways/pin.php:255 +msgid "%1$s Card %2$s" +msgstr "" + +#: includes/common/payment-gateways/pin.php:211 +msgid "The PIN Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:187 +msgid "Selecting a currency other than currency supported by PIN may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/pin.php:164 +msgid "You must login to PIN to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/pin.php:158 +msgid "When in live mode PIN recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/pin.php:45 +#: includes/common/payment-gateways/pin.php:286 +msgid "PIN" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:830 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:534 +#: includes/common/payment-gateways/paypal-express.php:865 +msgid "The payment is pending" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:235 +msgid "The Paymill Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:169 +msgid "You must login to Paymill to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:45 +#: includes/common/payment-gateways/paymill.php:308 +msgid "Paymill" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:90 +msgid "Invalid cardholder" +msgstr "Μη έγκυρος κάτοχος κάρτας" + +#: includes/common/payment-gateways/paymill.php:89 +msgid "Card is no longer valid or has expired" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:88 +msgid "Please enter a valid Card CVC" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:87 +msgid "Please choose a valid Expiration Date." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:99 +#: includes/common/payment-gateways/skrill.php:100 +msgid "Skrill (Moneybookers)" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:24 +#: includes/common/shipping-modules/mp-weight-rate.php:292 +msgid "Weight Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:303 +msgid "USPS Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:270 +msgid "USPS Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:264 +msgid "USPS Settings" +msgstr "Ρυθμίσεις USPS" + +#: includes/common/shipping-modules/mp-usps.php:145 +msgid "Flat Rate Large" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:140 +msgid "Flat Rate Medium 2" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:135 +msgid "Flat Rate Medium 1" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:130 +msgid "Flat Rate Small" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:118 +msgid "First Class International Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:114 +msgid "Priority Mail International Small Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:112 +msgid "Priority Mail International Medium Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:110 +msgid "Priority Mail International Large Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:108 +msgid "Priority Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:106 +msgid "Express Mail International Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:104 +msgid "Express Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:98 +msgid "Library Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:96 +msgid "Media Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "First-Class Mail Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:90 +msgid "Priority Mail Small Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:88 +msgid "Priority Mail Medium Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +#: includes/common/shipping-modules/mp-usps.php:88 +#: includes/common/shipping-modules/mp-usps.php:90 +#: includes/common/shipping-modules/mp-usps.php:92 +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "(2-4 days)" +msgstr "(2-4 ημέρες)" + +#: includes/common/shipping-modules/mp-usps.php:86 +msgid "Priority Mail Large Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "(2-4) days" +msgstr "(2-4) ημέρες" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "Priority Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "Express Mail Sunday/Holiday Delivery Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:80 +msgid "Express Mail Flat Rate Boxes Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:78 +msgid "Express Mail Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:76 +msgid "Express Mail Sunday/Holiday Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:74 +msgid "Express Mail Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:72 +#: includes/common/shipping-modules/mp-usps.php:74 +#: includes/common/shipping-modules/mp-usps.php:76 +#: includes/common/shipping-modules/mp-usps.php:78 +#: includes/common/shipping-modules/mp-usps.php:80 +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "(1-2 days)" +msgstr "(1-2 ημέρες)" + +#: includes/common/shipping-modules/mp-usps.php:72 +msgid "Express Mail" +msgstr "Express Mail" + +#: includes/common/shipping-modules/mp-usps.php:67 +#: includes/common/shipping-modules/mp-usps.php:902 +msgid "USPS" +msgstr "USPS" + +#: includes/common/shipping-modules/mp-ups.php:534 +msgid "UPS (beta)" +msgstr "UPS (beta)" + +#: includes/common/shipping-modules/mp-ups.php:166 +msgid "Required if using negotiated rates" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "Worldwide Express Plus" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "(Scheduled)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "Standard" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "(2-5 Days)" +msgstr "(2-5 Ημέρες)" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "Worldwide Expedited" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:54 +msgid "Worldwide Express" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "2nd Day Air AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "(1 Days)" +msgstr "(1 Ημέρα)" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "Next Day Air Early AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "Next Day Air Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "3 Day Select" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:49 +msgid "Ground" +msgstr "Οδικώς" + +#: includes/common/shipping-modules/mp-ups.php:48 +msgid "2nd Day Air" +msgstr "2η Ημέρα Αεροπορικώς" + +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "Next Day Air" +msgstr "Επόμενη Ημέρα Αεροπορικώς" + +#: includes/admin/class-mp-orders-admin.php:475 +#: includes/common/shipping-modules/mp-ups.php:43 +msgid "UPS" +msgstr "UPS" + +#: includes/common/shipping-modules/mp-table-rate.php:27 +#: includes/common/shipping-modules/mp-table-rate.php:318 +msgid "Table Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:71 +#: includes/common/shipping-modules/mp-table-quantity.php:77 +msgid "Shipping Cost: " +msgstr "Κόστος Αποστολής:" + +#: includes/common/shipping-modules/mp-table-quantity.php:70 +#: includes/common/shipping-modules/mp-table-quantity.php:76 +msgid "If quantity is greater than:" +msgstr "Αν η ποσότητα είναι μεγαλύτερη από:" + +#: includes/common/shipping-modules/mp-table-quantity.php:66 +msgid "Each band must be a higher price than the one above it." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:56 +msgid "Number of Bands:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:53 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Each layer must be a higher quantity than the previous." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:51 +msgid "Table Quantity Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:31 +msgid "Table Quantity" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:135 +#: includes/common/shipping-modules/mp-table-rate.php:174 +#: includes/common/shipping-modules/mp-weight-rate.php:189 +msgid "European Union" +msgstr "Ευρωπαϊκή Ένωση" + +#: includes/common/shipping-modules/mp-flat-rate.php:123 +#: includes/common/shipping-modules/mp-table-rate.php:162 +#: includes/common/shipping-modules/mp-weight-rate.php:177 +msgid "United States" +msgstr "Ηνωμένες Πολιτείες" + +#: includes/common/shipping-modules/mp-flat-rate.php:111 +#: includes/common/shipping-modules/mp-table-rate.php:151 +#: includes/common/shipping-modules/mp-weight-rate.php:166 +msgid "In Country" +msgstr "Εσωτερικό" + +#: includes/common/shipping-modules/mp-flat-rate.php:146 +#: includes/common/shipping-modules/mp-table-rate.php:186 +#: includes/common/shipping-modules/mp-weight-rate.php:201 +msgid "International" +msgstr "Διεθνής" + +#: includes/common/shipping-modules/mp-flat-rate.php:101 +#: includes/common/shipping-modules/mp-table-rate.php:141 +#: includes/common/shipping-modules/mp-weight-rate.php:156 +msgid "Canada" +msgstr "Καναδάς" + +#: includes/common/shipping-modules/mp-flat-rate.php:92 +#: includes/common/shipping-modules/mp-table-rate.php:132 +#: includes/common/shipping-modules/mp-weight-rate.php:147 +msgid "Hawaii and Alaska" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:83 +#: includes/common/shipping-modules/mp-table-rate.php:123 +#: includes/common/shipping-modules/mp-weight-rate.php:138 +msgid "Lower 48 States" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:64 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping." +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:25 +#: includes/common/shipping-modules/mp-flat-rate.php:223 +msgid "Flat Rate" +msgstr "Σταθερή Χρέωση" + +#: includes/common/shipping-modules/mp-fedex.php:761 +msgid "FedEx (beta)" +msgstr "FedEx (beta)" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Centimeters" +msgstr "Εκατοστά" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Inches" +msgstr "Ίντσες" + +#: includes/admin/class-mp-products-admin.php:1676 +#: includes/admin/class-mp-setup-wizard.php:547 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:166 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +msgid "Kilograms" +msgstr "Κιλά" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:103 +msgid " %1$s - %2$s" +msgstr " %1$s - %2$s" + +#: includes/common/shipping-modules/mp-usps.php:358 +msgid "Max Weight per Box" +msgstr "Μέγιστο Βάρος ανά Κουτί" + +#: includes/common/shipping-modules/mp-usps.php:356 +msgid "Box Dimensions" +msgstr "Διαστάσεις Συσκευασίας" + +#: includes/common/shipping-modules/mp-usps.php:354 +msgid "Box Name" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:344 +msgid "Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:343 +msgid "For each box defined enter the maximum weight it can contain." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:341 +msgid "Enter your standard box sizes as LengthxWidthxHeight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:386 +#: includes/common/shipping-modules/mp-ups.php:193 +#: includes/common/shipping-modules/mp-usps.php:234 +#: includes/common/shipping-modules/mp-usps.php:338 +msgid "Standard Boxes and Weight Limits" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:328 +msgid "Handling Charge per Interntional Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:294 +msgid "Handling Charge per Domestic Shipment " +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:388 +#: includes/common/shipping-modules/mp-ups.php:196 +#: includes/common/shipping-modules/mp-usps.php:237 +msgid "Add Box" +msgstr "Προσθήκη Κουτιού" + +#: includes/common/shipping-modules/mp-fedex.php:63 +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "(Next Day)" +msgstr "(Επόμενη Ημέρα)" + +#: includes/common/shipping-modules/mp-fedex.php:63 +msgid "Europe First International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:62 +msgid "International Priority" +msgstr "Διεθνής Προτεραιότητα (International Priority)" + +#: includes/common/shipping-modules/mp-fedex.php:61 +#: includes/common/shipping-modules/mp-fedex.php:62 +#: includes/common/shipping-modules/mp-ups.php:54 +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "(1-3 Days)" +msgstr "(1-3 Ημέρες)" + +#: includes/common/shipping-modules/mp-fedex.php:61 +msgid "International First" +msgstr "Διεθνής Πρώτη" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "(5 Days)" +msgstr "(5 Ημέρες)" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "International Economy" +msgstr "Διεθνής Οικονομική" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "(2-7 Days)" +msgstr "(2-7 Ημέρες)" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "Smart Post" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:55 +#: includes/common/shipping-modules/mp-ups.php:49 +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "(1-5 Days)" +msgstr "(1-5 Ημέρες)" + +#: includes/common/shipping-modules/mp-fedex.php:55 +msgid "Ground Home Delivery" +msgstr "Οδικώς Εσωτερικό" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "(1-7 Days)" +msgstr "(1-7 Ημέρες)" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "Fedex Ground" +msgstr "Fedex Οδικώς" + +#: includes/common/shipping-modules/mp-fedex.php:53 +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "(3 Days)" +msgstr "(3 Ημέρες)" + +#: includes/common/shipping-modules/mp-fedex.php:53 +msgid "Fedex Express Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +#: includes/common/shipping-modules/mp-ups.php:48 +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "(2 Days)" +msgstr "(2 Ημέρες)" + +#: includes/common/shipping-modules/mp-fedex.php:52 +msgid "Fedex 2 Day" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "(2 Days am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "Fedex 2 Day AM" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "(1 Day)" +msgstr "(1 Ημέρα)" + +#: includes/common/shipping-modules/mp-fedex.php:50 +msgid "Standard Overnight" +msgstr "Κανονικό Επόμενη Ημέρα" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "(1 Day am )" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "Priority Overnight" +msgstr "Επείγον Επόμενη Ημέρα" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "(1 Day am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "First Overnight" +msgstr "First Overnight" + +#: includes/admin/class-mp-orders-admin.php:476 +#: includes/common/shipping-modules/mp-fedex.php:31 +msgid "FedEx" +msgstr "FedEx" + +#: includes/common/payment-gateways/paymill.php:270 +#: includes/common/payment-gateways/simplify.php:179 +#: includes/common/payment-gateways/stripe.php:365 +msgid "%1$s Card ending in %2$s - Expires %3$s" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:259 +#: includes/common/payment-gateways/pin.php:238 +#: includes/common/payment-gateways/simplify.php:171 +msgid "%s Store Purchase - Order ID: %s, Email: %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:266 +msgid "You must login to Stripe to get your API credentials. You can enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:261 +msgid "When in live mode Stripe recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:311 +msgid "The Stripe Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:263 +#: includes/common/payment-gateways/paymill.php:122 +#: includes/common/payment-gateways/stripe.php:222 +msgid "Card Number" +msgstr "Αριθμός Κάρτας" + +#: includes/common/payment-gateways/paymill.php:86 +msgid "Please enter a valid Credit Card Number." +msgstr "Παρακαλώ δώστε έναν έγκυρο Αριθμό Πιστωτικής Κάρτας." + +#: includes/common/payment-gateways/stripe.php:45 +#: includes/common/payment-gateways/stripe.php:433 +msgid "Stripe" +msgstr "Stripe" + +#: includes/common/payment-gateways/paypal-express.php:750 +msgid "Sets the background color for the payment page. By default, the color is white." +msgstr "Καθορίστε το χρώμα φόντου γιά τη σελίδα πληρωμής. Εξ ορισμού, το χρώμα είναι λευκό." + +#: includes/common/payment-gateways/paypal-express.php:745 +msgid "Sets the background color for the header of the payment page. By default, the color is white." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:740 +msgid "Sets the border color around the header of the payment page. The border is a 2-pixel perimeter around the header space, which is 750 pixels wide by 90 pixels high. By default, the color is black." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:735 +msgid "URL for an image you want to appear at the top left of the payment page. The image has a maximum size of 750 pixels wide by 90 pixels high. PayPal recommends that you provide an image that is stored on a secure (https) server. If you do not specify an image, the business name is displayed." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:857 +#: includes/common/payment-gateways/paypal-express.php:1131 +msgid "The payment is pending because it is part of an order that has been authorized but not settled." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:853 +#: includes/common/payment-gateways/paypal-express.php:1127 +msgid "The payment is pending because it has been authorized but not settled. You must capture the funds first." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:847 +#: includes/common/payment-gateways/paypal-express.php:1120 +msgid "You denied the payment when it was marked as pending." +msgstr "Αρνηθήκατε την πληρωμή όταν είχε σημανθεί ως εκκρεμής." + +#: includes/common/payment-gateways/paypal-express.php:837 +#: includes/common/payment-gateways/paypal-express.php:1108 +msgid "A reversal has occurred on this transaction due to an unknown reason." +msgstr "Συνέβη μία αναστροφή σε αυτή τη συναλλαγή εξ αιτίας μιάς άγνωστης αιτίας." + +#: includes/common/payment-gateways/paypal-express.php:836 +#: includes/common/payment-gateways/paypal-express.php:1107 +msgid "A reversal has occurred on this transaction because you have given the customer a refund." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:835 +#: includes/common/payment-gateways/paypal-express.php:1106 +msgid "A reversal has occurred on this transaction due to a complaint about the transaction from your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:834 +#: includes/common/payment-gateways/paypal-express.php:1105 +msgid "A reversal has occurred on this transaction due to your customer triggering a money-back guarantee." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:833 +#: includes/common/payment-gateways/paypal-express.php:1104 +msgid "A reversal has occurred on this transaction due to a chargeback by your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:1101 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer:" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:826 +#: includes/common/payment-gateways/paypal-express.php:1097 +msgid "A payment has been accepted." +msgstr "Μία πληρωμή έγινε αποδεκτή." + +#: includes/common/payment-gateways/paypal-express.php:818 +#: includes/common/payment-gateways/paypal-express.php:1087 +msgid "The transaction has not terminated, e.g. an authorization may be awaiting completion." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:531 +#: includes/common/payment-gateways/paypal-express.php:810 +#: includes/common/payment-gateways/paypal-express.php:1077 +msgid "The payment has failed. This happens only if the payment was made from your customer's bank account." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:806 +#: includes/common/payment-gateways/paypal-express.php:1072 +msgid "An authorization for this transaction has been voided." +msgstr "Η εξουσιοδότηση γιά αυτή τη συναλλαγή έχει ακυρωθεί." + +#: includes/common/payment-gateways/paypal-express.php:802 +#: includes/common/payment-gateways/paypal-express.php:1067 +msgid "The authorization period for this payment has been reached." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:798 +#: includes/common/payment-gateways/paypal-express.php:1062 +msgid "A reversal has been canceled; for example, when you win a dispute and the funds for the reversal have been returned to you." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:499 +#: includes/common/payment-gateways/paypal-express.php:1163 +msgid "PayPal Express Checkout" +msgstr "Ολοκλήρωση Αγορών με PayPal Express" + +#: includes/common/payment-gateways/paypal-chained-payments.php:798 +msgid "Gateway Settings Page Message" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:725 +msgid "Signature" +msgstr "Υπογραφή" + +#: includes/common/payment-gateways/eway31.php:506 +#: includes/common/payment-gateways/eway31.php:533 +#: includes/common/shipping-modules/mp-fedex.php:276 +msgid "API Password" +msgstr "API Κωδικός" + +#: includes/common/payment-gateways/paypal-chained-payments.php:773 +msgid "Enter a percentage of all store sales to collect as a fee. Decimals allowed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:757 +msgid "Using PayPal Chained Payments allows you as the multisite network owner to collect a predefined fee or percentage of all sales on network MarketPress stores! This is invisible to the customers who purchase items in a store, and all PayPal fees will be charged to the store owner. To use this option you must create API credentials, and you should make all other gateways unavailable or limited above." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:338 +msgid "Please be aware that we will deduct a ?% fee from the total of each transaction in addition to any fees PayPal may charge you. If for any reason you need to refund a customer for an order, please contact us with a screenshot of the refund receipt in your PayPal history as well as the Transaction ID of our fee deduction so we can issue you a refund. Thank you!" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:698 +#: includes/common/payment-gateways/paypal-express.php:149 +msgid "There was a problem connecting to PayPal. Please try again." +msgstr "Παρουσιάστηκε κάποιο πρόβλημα κατά τη σύνδεση με το PayPal. Παρακαλώ προσπαθήστε πάλι." + +#: includes/common/payment-gateways/paypal-chained-payments.php:470 +#: includes/common/payment-gateways/paypal-express.php:1053 +msgid "There was a problem verifying the IPN string with PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:310 +msgid "There was a problem connecting to PayPal to check the status of your purchase. Please check the status of your order here »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:539 +#: includes/common/payment-gateways/paypal-chained-payments.php:254 +#: includes/common/payment-gateways/paypal-express.php:1139 +msgid "The payment is pending." +msgstr "Η πληρωμή εκκρεμεί." + +#: includes/common/payment-gateways/paypal-chained-payments.php:251 +#: includes/common/payment-gateways/paypal-chained-payments.php:531 +#: includes/common/payment-gateways/paypal-express.php:862 +#: includes/common/payment-gateways/paypal-express.php:1136 +msgid "The payment is pending for an unknown reason. For more information, contact PayPal customer service." +msgstr "Η πληρωμήη εκκρεμεί γιά άγνωστους λόγους. Γιά περισσότερες πληροφορίες επικοινωνήστε με την υπηρεσία υποστήριξης πελατών του PayPal." + +#: includes/common/payment-gateways/paypal-chained-payments.php:250 +#: includes/common/payment-gateways/paypal-chained-payments.php:530 +#: includes/common/payment-gateways/paypal-express.php:861 +#: includes/common/payment-gateways/paypal-express.php:1135 +msgid "The payment is pending because you are not yet verified. You must verify your account before you can accept this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:249 +#: includes/common/payment-gateways/paypal-chained-payments.php:529 +#: includes/common/payment-gateways/paypal-express.php:860 +#: includes/common/payment-gateways/paypal-express.php:1134 +msgid "The payment is pending because it was made via credit card and you must upgrade your account to Business or Premier status in order to receive the funds. It can also mean that you have reached the monthly limit for transactions on your account." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:248 +#: includes/common/payment-gateways/paypal-chained-payments.php:528 +#: includes/common/payment-gateways/paypal-express.php:859 +#: includes/common/payment-gateways/paypal-express.php:1133 +msgid "The payment is pending because it was made to an email address that is not yet registered or confirmed." +msgstr "Η πληρωμή εκκρεμεί επειδή έγινε σε μία διεύθυνση email που δεν έχει ακόμη καταχωρηθεί ή επιβεβαιωθεί." + +#: includes/common/payment-gateways/paypal-chained-payments.php:247 +#: includes/common/payment-gateways/paypal-chained-payments.php:527 +#: includes/common/payment-gateways/paypal-express.php:858 +#: includes/common/payment-gateways/paypal-express.php:1132 +msgid "The payment is pending while it is being reviewed by PayPal for risk." +msgstr "Η πληρωμή εκκρεμεί ενώ ελέγχεται από το PayPal γιά ενδεχόμενους κινδύνους." + +#: includes/common/payment-gateways/paypal-chained-payments.php:246 +#: includes/common/payment-gateways/paypal-chained-payments.php:526 +#: includes/common/payment-gateways/paypal-express.php:856 +#: includes/common/payment-gateways/paypal-express.php:1130 +msgid "You do not have a balance in the currency sent, and you do not have your Payment Receiving Preferences set to automatically convert and accept this payment. You must manually accept or deny this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:245 +#: includes/common/payment-gateways/paypal-chained-payments.php:525 +#: includes/common/payment-gateways/paypal-express.php:855 +#: includes/common/payment-gateways/paypal-express.php:1129 +msgid "The payment is pending because you hold a non-U.S. account and do not have a withdrawal mechanism. You must manually accept or deny this payment from your Account Overview." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:244 +#: includes/common/payment-gateways/paypal-chained-payments.php:524 +#: includes/common/payment-gateways/paypal-express.php:854 +#: includes/common/payment-gateways/paypal-express.php:1128 +msgid "The payment is pending because it was made by an eCheck that has not yet cleared." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:243 +#: includes/common/payment-gateways/paypal-chained-payments.php:523 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:236 +#: includes/common/payment-gateways/paypal-chained-payments.php:516 +msgid "The transaction was rejected by the receiver (you)." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:510 +#: includes/common/payment-gateways/paypal-express.php:843 +#: includes/common/payment-gateways/paypal-express.php:1115 +msgid "You refunded the payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:224 +#: includes/common/payment-gateways/paypal-chained-payments.php:504 +msgid "The transaction is in progress." +msgstr "Η συναλλαγή είναι σε εξέλιξη." + +#: includes/common/payment-gateways/paypal-chained-payments.php:212 +#: includes/common/payment-gateways/paypal-chained-payments.php:491 +#: includes/common/payment-gateways/paypal-express.php:814 +#: includes/common/payment-gateways/paypal-express.php:1082 +msgid "The payment has been partially refunded." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:202 +#: includes/common/payment-gateways/paypal-chained-payments.php:481 +msgid "PayPal balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:177 +msgid "There was a problem connecting to PayPal to setup your purchase. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:122 +msgid "Your PayPal transaction has been canceled." +msgstr "Η συναλλαγή σας μέσω PayPal ακυρώθηκε." + +#: includes/common/payment-gateways/paypal-chained-payments.php:50 +#: includes/common/payment-gateways/paypal-chained-payments.php:53 +#: includes/common/payment-gateways/paypal-chained-payments.php:732 +#: includes/common/payment-gateways/paypal-express.php:500 +#: includes/common/payment-gateways/paypal-express.php:938 +msgid "PayPal" +msgstr "PayPal" + +#: includes/common/payment-gateways/paypal-chained-payments.php:48 +#: includes/common/payment-gateways/paypal-chained-payments.php:730 +#: includes/common/payment-gateways/paypal-chained-payments.php:756 +#: includes/common/payment-gateways/paypal-chained-payments.php:873 +msgid "PayPal Chained Payments" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:59 +#: includes/common/payment-gateways/paypal-payflow.php:467 +msgid "PayPal Payflow Pro" +msgstr "PayPal Payflow Pro" + +#: includes/common/payment-gateways/skrill.php:378 +msgid "Chargeback - A payment was reversed due to a chargeback. The funds have been removed from your account balance and returned to the buyer." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:372 +msgid "Failed - The Credit Card or Direct Debit transaction was declined." +msgstr "Αποτυχία - Η συναλλαγή με Πιστωτική Κάρτα ή Άμεση Χρέωση απορρίφθηκε." + +#: includes/common/payment-gateways/_payway.php:354 +#: includes/common/payment-gateways/skrill.php:366 +msgid "Cancelled - The payment was cancelled manually by the sender in their online account history or was auto-cancelled after 14 days pending." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:360 +msgid "Pending - The payment is pending. It can take 2-3 days for bank transfers to complete." +msgstr "Εκκρεμεί - Η πληρωμή εκκρεμεί. Μπορεί να χρειασθούν 2-3 ημέρες γιά την ολοκλήρωση της τραπεζικής μεταφοράς." + +#: includes/common/payment-gateways/_payway.php:349 +#: includes/common/payment-gateways/skrill.php:354 +msgid "Processed - The payment has been completed, and the funds have been added successfully to your Moneybookers account balance." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:189 +msgid "Shown to the customer on the confirmation screen - the end step of the process - a note, confirmation number, or any other message. Line breaks <br> may be used for longer messages." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:188 +msgid "Confirmation Note (optional)" +msgstr "Σημείωμα Επιβεβαίωσης (προαιρετικό)" + +#: includes/common/payment-gateways/skrill.php:183 +msgid "The URL of the logo which you would like to appear at the top of the payment form. The logo must be accessible via HTTPS otherwise it will not be shown. For best integration results we recommend that you use a logo with dimensions up to 200px in width and 50px in height." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:182 +msgid "Logo Image (optional)" +msgstr "Εικόνα Λογότυπου (προαιρετική)" + +#: includes/common/payment-gateways/skrill.php:177 +msgid "The name of this store, which will be shown on the gateway. If no value is submitted, the account email will be shown as the recipient of the payment." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:176 +msgid "Merchant Name (optional)" +msgstr "Όνομα Εμπόρου (προαιρετικό)" + +#: includes/common/payment-gateways/skrill.php:165 +msgid "Language" +msgstr "Γλώσσα" + +#: includes/common/payment-gateways/2checkout.php:368 +#: includes/common/payment-gateways/authorizenet-aim.php:262 +#: includes/common/payment-gateways/eway.php:363 +#: includes/common/payment-gateways/eway31.php:471 +#: includes/common/payment-gateways/mollie.php:91 +#: includes/common/payment-gateways/paymill.php:193 +#: includes/common/payment-gateways/paypal-chained-payments.php:356 +#: includes/common/payment-gateways/paypal-express.php:688 +#: includes/common/payment-gateways/paypal-payflow.php:432 +#: includes/common/payment-gateways/pin.php:186 +#: includes/common/payment-gateways/skrill.php:152 +#: includes/common/payment-gateways/stripe.php:288 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:104 +msgid "Currency" +msgstr "Νόμισμα" + +#: includes/common/payment-gateways/2checkout.php:359 +#: includes/common/payment-gateways/skrill.php:143 +msgid "Secret Word" +msgstr "Μυστική Λέξη" + +#: includes/common/payment-gateways/skrill.php:261 +msgid "Order ID:" +msgstr "Κωδικός Παραγγελίας:" + +#: includes/common/payment-gateways/skrill.php:234 +msgid "Complete Checkout" +msgstr "Ολοκλήρωση Πληρωμής" + +#: includes/common/payment-gateways/skrill.php:204 +msgid "Your Moneybookers transaction has been canceled." +msgstr "Η συναλλαγή σας με Moneybookers έχει ακυρωθεί." + +#: includes/common/payment-gateways/manual-payments.php:155 +msgid "This is the email text to send to those who have made manual payment checkouts. You should include your manual payment instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "Αυτό είναι το μήνυμα που αποστέλεται στους πελάτες που έχουν επιλέξει το συγκεκριμένο τρόπο εξόφλησης. Παρακάμπτει το κανονικό μήνυμα που αποστέλεται. Οι παρακάτω κωδικοί θα αντικατασταθούν με λεπτομέρειες της παραγγελίας: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL." + +#: includes/common/payment-gateways/_payway.php:257 +#: includes/common/payment-gateways/manual-payments.php:128 +msgid "Record payments manually, such as by Cash, Check, or EFT." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:71 +msgid "Manual/Invoice" +msgstr "Μετρητά / Τιμολόγιο" + +#: includes/admin/class-mp-setup-wizard.php:648 +#: includes/common/payment-gateways/manual-payments.php:35 +#: includes/common/payment-gateways/manual-payments.php:36 +msgid "Manual Payment" +msgstr "Πληρωμή με Μετρητά" + +#: includes/common/payment-gateways/manual-payments.php:34 +#: includes/common/payment-gateways/manual-payments.php:163 +msgid "Manual Payments" +msgstr "Πληρωμές με Μετρητά" + +#: includes/common/payment-gateways/_ideal.php:288 +msgid "iDEAL Simulator (for testing)" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:287 +msgid "ABN Amro Bank" +msgstr "Τράπεζα ABN Amro" + +#: includes/common/payment-gateways/_ideal.php:286 +msgid "Friesland Bank" +msgstr "Τράπεζα Friesland" + +#: includes/common/payment-gateways/_ideal.php:285 +msgid "Rabobank" +msgstr "Rabobank" + +#: includes/common/payment-gateways/_ideal.php:284 +msgid "ING Bank" +msgstr "Τράπεζα ING" + +#: includes/common/payment-gateways/_ideal.php:279 +msgid "Bank" +msgstr "Τράπεζα" + +#: includes/common/payment-gateways/_ideal.php:270 +msgid "To make it easier to pay for online products and services, the Dutch banking community has developed the iDEAL online payment method. iDEAL allows online payments to be made using online banking in EUR only." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:247 +#: includes/common/payment-gateways/_payway.php:199 +#: includes/common/payment-gateways/manual-payments.php:68 +msgid "Invoiced" +msgstr "Τιμολογήθηκε" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1016 +msgid "Coupon" +msgstr "Κουπόνι" + +#: includes/common/payment-gateways/_ideal.php:77 +#: includes/common/payment-gateways/_ideal.php:250 +#: includes/common/payment-gateways/_payway.php:202 +msgid "iDEAL" +msgstr "iDEAL" + +#: includes/common/payment-gateways/_ideal.php:76 +msgid "iDEAL (beta)" +msgstr "iDEAL (beta)" + +#: includes/common/payment-gateways/payfast.php:327 +msgid "Merchant Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:293 +#: includes/common/payment-gateways/_payway.php:302 +#: includes/common/payment-gateways/payfast.php:324 +msgid "Merchant ID" +msgstr "ID Εμπόρου" + +#: includes/common/payment-gateways/eway31.php:462 +msgid "eWay Rapid 3.0 Payments lets merchants recieve credit card payments through eWay without need for users to leave the shop. Note this gateway requires a valid SSL certificate configured for this site." +msgstr "" + +#: includes/common/payment-gateways/eway.php:452 +msgid "There was a problem connecting to eWay. Please try again." +msgstr "Παρουσιάστηκε κάποιο πρόβλημα κατά τη σύνδεση με το eWay. Παρακαλώ προσπαθήστε πάλι." + +#: includes/common/payment-gateways/eway.php:432 +#: includes/common/payment-gateways/eway.php:437 +msgid "The url of the image can be hosted on your website and pass the secure https:// path of the image to be displayed at the top of the website. This is the second image block on the webpage and is restricted to 960px X 65px. A default secure image is used if none is supplied." +msgstr "" + +#: includes/common/payment-gateways/eway.php:431 +#: includes/common/payment-gateways/eway.php:436 +msgid "Company Logo (optional)" +msgstr "Σήμα Κατατεθέν Εταιρείας (προαιρετικό)" + +#: includes/common/payment-gateways/eway.php:427 +msgid "The page footer text can be customised and populated below the customer's order details. Useful for contact information." +msgstr "" + +#: includes/common/payment-gateways/eway.php:426 +msgid "Page Footer (optional)" +msgstr "Υποσέλιδο Σελίδας (προαιρετικό)" + +#: includes/common/payment-gateways/eway.php:421 +msgid "Page Description (optional)" +msgstr "Περιγραφή Σελίδας (προαιρετικό)" + +#: includes/common/payment-gateways/eway.php:417 +#: includes/common/payment-gateways/eway.php:422 +msgid "This value is used to populate the browsers title bar at the top of the screen." +msgstr "" + +#: includes/common/payment-gateways/eway.php:416 +msgid "Page Title (optional)" +msgstr "Τίτλος Σελίδας (προαιρετικό)" + +#: includes/common/payment-gateways/eway.php:412 +msgid "This will be displayed as the company the customer is purchasing from, including this is highly recommended." +msgstr "" + +#: includes/common/payment-gateways/eway.php:411 +msgid "Company Name" +msgstr "Όνομα εταιρίας" + +#: includes/common/payment-gateways/eway.php:394 +msgid "Customer ID" +msgstr "Κωδικός Πελάτη" + +#: includes/common/payment-gateways/eway.php:381 +#: includes/common/payment-gateways/eway31.php:488 +msgid "Live API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway.php:371 +#: includes/common/payment-gateways/eway31.php:479 +msgid "Gateway Mode" +msgstr "" + +#: includes/common/payment-gateways/eway.php:354 +msgid "The Hosted Page is a webpage hosted on eWAY's side eliminating the need for merchants to capture, transmit or store credit card numbers. At the checkout time the merchant automatically redirects the customer to the Hosted Page where they would enter their details and have the transaction processed. Upon completion of the transaction the customer is redirected back to the MarketPress checkout confirmation page." +msgstr "" + +#: includes/common/payment-gateways/eway.php:314 +msgid "There was a problem with your credit card information: %s" +msgstr "Υπήρξε κάποιο πρόβλημα με τις πληροφορίες της πιστωτικής σας κάρτας: %s" + +#: includes/common/payment-gateways/eway.php:300 +msgid "Paid - The card has been processed - %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:253 +msgid "There was a problem setting up the transaction with eWay: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:245 +#: includes/common/payment-gateways/eway.php:289 +msgid "There was a problem parsing the response from eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:159 +#: includes/common/payment-gateways/eway.php:189 +#: includes/common/payment-gateways/paypal-chained-payments.php:634 +#: includes/common/payment-gateways/paypal-express.php:322 +#: includes/common/payment-gateways/paypal-express.php:473 +msgid "%s Store Purchase - Order ID: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:147 +#: includes/common/payment-gateways/eway.php:462 +msgid "eWay Shared Payments" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:214 +msgid "This is the email text to send to those who have made CubePoints checkouts. You should include your CubePoints instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:212 +#: includes/common/payment-gateways/free_orders.php:188 +#: includes/common/payment-gateways/manual-payments.php:154 +msgid "Order Confirmation Email" +msgstr "email επιβεβαίωσης παραγγελίας" + +#: includes/common/payment-gateways/_cubepoints.php:207 +#: includes/common/payment-gateways/manual-payments.php:149 +msgid "Confirmation User Instructions" +msgstr "Οδηγίες σελίδας επιβεβαίωσης" + +#: includes/common/payment-gateways/_cubepoints.php:202 +#: includes/common/payment-gateways/manual-payments.php:144 +msgid "User Instructions" +msgstr "Οδηγίες προς τον χρήστη" + +#: includes/common/payment-gateways/_cubepoints.php:198 +#: includes/common/payment-gateways/free_orders.php:170 +#: includes/common/payment-gateways/manual-payments.php:139 +msgid "Enter a public name for this payment method that is displayed to users - No HTML" +msgstr "Πληκτρολογήστε το όνομα που θα εμφανίζεται στον τρόπο πληρωμής προς τους πελάτες. Π.χ.: Κατάθεση σε τραπεζικό λογαριασμό." + +#: includes/admin/class-mp-orders-admin.php:532 +#: includes/common/payment-gateways/_cubepoints.php:196 +#: includes/common/payment-gateways/free_orders.php:169 +#: includes/common/payment-gateways/manual-payments.php:138 +msgid "Method Name" +msgstr "Όνομα μεθόδου" + +#: includes/common/payment-gateways/_cubepoints.php:187 +msgid "Accept CubePoints as payment(requires the CubePoints plugin)." +msgstr "Αποδοχή των CubePoints ως πληρωμή (απαιτεί το πρόσθετο των CubePoints)." + +#: includes/common/payment-gateways/_cubepoints.php:140 +msgid "Sorry, but you do not appear to have enough points to complete this purchase!" +msgstr "Λυπούμαστε, αλλά φαίνεται οτι δεν έχετε αρκετούς πόντους γιά να ολοκληρώσετε αυτή την αγορά!" + +#: includes/common/payment-gateways/_cubepoints.php:124 +msgid "%s Store Purchase" +msgstr "%s Αγορά Καταστήματος" + +#: includes/common/payment-gateways/_cubepoints.php:79 +#: includes/common/payment-gateways/_cubepoints.php:171 +msgid "Your current points: " +msgstr "Οι τρέχοντες πόντοι σας:" + +#: includes/common/payment-gateways/_cubepoints.php:133 +#: includes/common/payment-gateways/_cubepoints.php:197 +msgid "CubePoints" +msgstr "CubePoints" + +#: includes/common/payment-gateways/authorizenet-aim.php:344 +msgid "Authorize.net AIM Checkout" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:331 +msgid "Custom API URL" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:332 +msgid "Many other gateways have Authorize.net API emulators. To use one of these gateways input their API post url here." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:322 +msgid "Request a delimited response from the payment gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:316 +msgid "Security: MD5 Hash" +msgstr "Ασφάλεια: MD5 Hash" + +#: includes/common/payment-gateways/authorizenet-aim.php:317 +msgid "The payment gateway generated MD5 hash value that can be used to authenticate the transaction response. Not needed because responses are returned using an SSL connection." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:306 +msgid "Customer Receipt Email Footer" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:296 +msgid "Customer Receipt Email Header" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:297 +#: includes/common/payment-gateways/paypal-payflow.php:446 +msgid "This text will appear as the header of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:282 +msgid "Encapsulation Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:283 +msgid "Authorize.net default is blank. Otherwise, get this from your credit card processor. If the transactions are going through, but getting strange responses, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:273 +msgid "Optional settings to control advanced options" +msgstr "Προαιρετικές ρυθμίσεις γιά να ελέγξετε προχωρημένες επιλογές" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:224 +#: includes/common/payment-gateways/authorizenet-aim.php:272 +msgid "Advanced Settings" +msgstr "Ρυθμίσεις για προχωρημένους" + +#: includes/common/payment-gateways/authorizenet-aim.php:253 +msgid "Transaction Key" +msgstr "Κλειδί Συναλλαγής" + +#: includes/common/payment-gateways/authorizenet-aim.php:246 +msgid "Login ID" +msgstr "ID Σύνδεσης" + +#: includes/common/payment-gateways/paypal-payflow.php:396 +msgid "Gateway Credentials" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:221 +msgid "Authorize.net AIM is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway. USD is the only currency supported by this gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:205 +msgid "There was a problem finalizing your purchase. %s Please go back and try again." +msgstr "Παρουσιάστηκε κάποιο πρόβλημα κατά την ολοκλήρωση της αγοράς σας. %s Παρακαλώ πηγαίνετε πίσω και προσπαθήστε πάλι." + +#: includes/common/payment-gateways/payfast.php:519 +#: includes/common/payment-gateways/paypal-chained-payments.php:218 +#: includes/common/payment-gateways/paypal-chained-payments.php:498 +#: includes/common/payment-gateways/paypal-express.php:822 +#: includes/common/payment-gateways/paypal-express.php:1092 +msgid "The payment has been completed, and the funds have been added successfully to your account balance." +msgstr "Η πληρωμή ολοκληρώθηκε και το ποσόν προστέθηκε με επιτυχία στο υπόλοιπο του λογαριασμού σας." + +#: includes/common/payment-gateways/paypal-payflow.php:233 +msgid "Please enter a valid credit card security code" +msgstr "Παρακαλώ δώστε έναν έγκυρο κωδικό ασφαλείας της πιστωτικής κάρτας" + +#: includes/common/payment-gateways/paypal-payflow.php:224 +#: includes/public/class-mp-checkout.php:867 +msgid "Please enter a valid credit card number" +msgstr "Παρακαλώ δώστε έναν έγκυρο αριθμό πιστωτικής κάρτας." + +#: includes/common/payment-gateways/paypal-payflow.php:221 +msgid "Please enter your credit card number" +msgstr "Παρακαλώ δώστε τον αριθμό της πιστωτικής σας κάρτας." + +#: includes/common/payment-gateways/paypal-payflow.php:217 +msgid "Please enter your credit card security code" +msgstr "Παρακαλώ δώστε τον κωδικό ασφαλείας της πιστωτικής σας κάρτας." + +#: includes/common/payment-gateways/paypal-payflow.php:213 +msgid "Please select your credit card expiration date." +msgstr "Παρακαλώ επιλέξτε την ημερομηνία λήξης της πιστωτικής σας κάρτας." + +#: includes/common/payment-gateways/2checkout.php:299 +#: includes/common/payment-gateways/authorizenet-aim.php:50 +#: includes/common/payment-gateways/eway.php:148 +#: includes/common/payment-gateways/eway.php:298 +#: includes/common/payment-gateways/eway31.php:267 +#: includes/common/payment-gateways/paymill.php:46 +#: includes/common/payment-gateways/paypal-express.php:972 +#: includes/common/payment-gateways/paypal-payflow.php:60 +#: includes/common/payment-gateways/pin.php:46 +#: includes/common/payment-gateways/simplify.php:19 +#: includes/common/payment-gateways/stripe.php:46 +#: includes/common/payment-gateways/wepay.php:37 +msgid "Credit Card" +msgstr "Πιστωτική Κάρτα" + +#: includes/common/payment-gateways/authorizenet-aim.php:49 +msgid "Authorize.net Checkout" +msgstr "Authorize.net Checkout" + +#: includes/common/payment-gateways/skrill.php:156 +#: includes/common/payment-gateways/stripe.php:293 +msgid "Selecting a currency other than that used for your store may cause problems at checkout." +msgstr "Η επιλογή ενός νομίσματος διαφορετικού από αυτό που χρησιμοποιείται γιά το κατάστημά σας μπορεί να προκαλέσει προβλήματα στην ολοκλήρωση αγορών." + +#: includes/common/payment-gateways/2checkout.php:352 +msgid "Seller ID" +msgstr "ID Πωλητή" + +#: includes/common/payment-gateways/2checkout.php:340 +#: includes/common/payment-gateways/_ideal.php:311 +#: includes/common/payment-gateways/authorizenet-aim.php:234 +#: includes/common/payment-gateways/eway.php:376 +#: includes/common/payment-gateways/payfast.php:315 +#: includes/common/payment-gateways/paypal-chained-payments.php:368 +#: includes/common/payment-gateways/paypal-express.php:699 +#: includes/common/payment-gateways/paypal-payflow.php:391 +msgid "Live" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:339 +#: includes/common/payment-gateways/authorizenet-aim.php:233 +#: includes/common/payment-gateways/eway.php:375 +#: includes/common/payment-gateways/paypal-chained-payments.php:367 +#: includes/common/payment-gateways/paypal-express.php:698 +#: includes/common/payment-gateways/paypal-payflow.php:390 +#: includes/common/shipping-modules/mp-fedex.php:263 +msgid "Sandbox" +msgstr "Sandbox" + +#: includes/common/payment-gateways/2checkout.php:336 +#: includes/common/payment-gateways/_ideal.php:307 +#: includes/common/payment-gateways/authorizenet-aim.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:365 +#: includes/common/payment-gateways/paypal-express.php:695 +#: includes/common/payment-gateways/paypal-payflow.php:387 +#: includes/common/payment-gateways/wepay.php:130 +#: includes/common/shipping-modules/mp-fedex.php:260 +msgid "Mode" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:288 +#: includes/common/payment-gateways/mijireh.php:242 +#: includes/common/payment-gateways/mollie.php:212 +msgid "The order has been received" +msgstr "Η παραγγελία ελήφθη" + +#: includes/common/payment-gateways/2checkout.php:74 +#: includes/common/payment-gateways/2checkout.php:75 +#: includes/common/payment-gateways/2checkout.php:435 +msgid "2Checkout" +msgstr "2Checkout" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:306 +msgid "Confirm" +msgstr "Επιβεβαίωση" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:218 +#: includes/common/class-mp-cart.php:974 includes/common/class-mp-cart.php:1354 +#: includes/common/template-functions.php:918 +msgid "Checkout" +msgstr "Πληρωμή" + +#: includes/common/template-functions.php:207 +msgid "Check Order Status" +msgstr "Έλεγχος Κατάστασης Παραγγελίας" + +#: includes/common/template-functions.php:235 +msgid "View Products" +msgstr "Προβολή Προϊόντων" + +#: includes/common/template-functions.php:263 +msgid "Visit Store" +msgstr "Επισκευθείτε το κατάστημα" + +#: includes/common/template-functions.php:2912 +#: includes/multisite/template-functions.php:448 +msgid "Order By" +msgstr "Ταξινόμηση Κατά" + +#: includes/common/template-functions.php:2887 +#: includes/multisite/template-functions.php:405 +msgid "Price (High to Low)" +msgstr "Τιμή (Υψηλή προς Χαμηλή)" + +#: includes/common/template-functions.php:2886 +#: includes/multisite/template-functions.php:404 +msgid "Price (Low to High)" +msgstr "Τιμή (Χαμηλή προς Υψηλή)" + +#: includes/common/template-functions.php:2881 +#: includes/multisite/template-functions.php:399 +msgid "Default" +msgstr "Προεπιλογή" + +#: includes/common/template-functions.php:2858 +msgid "Show All" +msgstr "Εμφάνιση Όλων" + +#: includes/common/class-mp-product.php:2048 +msgid "View Larger Image »" +msgstr "Εμφάνιση Μεγαλύτερης Εικόνας »" + +#: includes/common/class-mp-product.php:979 +msgid "Out of Stock" +msgstr "Εξαντλημένο" + +#: includes/common/template-functions.php:148 +msgid "Price: " +msgstr "Τιμή:" + +#: includes/multisite/template-functions.php:833 +msgid "No Tags" +msgstr "Καμία Ετικέτα" + +#: includes/common/template-functions.php:3162 +msgid "Uncategorized" +msgstr "Χωρίς κατηγορία" + +#: includes/common/class-mp-cart.php:569 includes/common/class-mp-order.php:604 +#: includes/common/helpers.php:115 +msgid "Download" +msgstr "Κατέβασμα" + +#: includes/common/class-mp-cart.php:1353 +msgid "Empty Cart" +msgstr "Άδειο Καλάθι" + +#: includes/common/payment-gateways/_payway.php:291 +#: includes/common/payment-gateways/paypal-express.php:718 +#: includes/common/payment-gateways/paypal-payflow.php:423 +#: includes/common/shipping-modules/mp-ups.php:158 +#: includes/public/class-mp-checkout.php:1254 +#: includes/public/class-mp-checkout.php:1383 +msgid "Password" +msgstr "Κωδικός" + +#: includes/common/payment-gateways/eway.php:387 +#: includes/common/payment-gateways/paypal-express.php:711 +#: includes/common/shipping-modules/mp-usps.php:185 +#: includes/public/class-mp-checkout.php:1249 +msgid "Username" +msgstr "Όνομα Χρήστη" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:437 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:790 +msgid "Have a coupon code?" +msgstr "Έχετε κωδικό κουπονιού;" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:321 +#: includes/admin/class-mp-orders-admin.php:526 +#: includes/common/class-mp-cart.php:592 +msgid "Remove" +msgstr "Αφαίρεση" + +#: includes/admin/class-mp-ajax.php:316 +msgid "Quantity:" +msgstr "Ποσότητα:" + +#: includes/admin/class-mp-products-admin.php:2140 +#: includes/admin/class-mp-products-admin.php:2387 +#: includes/common/shipping-modules/class-mp-shipping-api.php:507 +msgid "Extra Shipping Cost" +msgstr "Επιπλέον έξοδα αποστολής" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:403 +msgid "Choose a Shipping Method:" +msgstr "Επιλέξτε μία Μέθοδο Αποστολής:" + +#: includes/admin/class-mp-products-admin.php:1691 +#: includes/admin/class-mp-products-admin.php:2131 +#: includes/admin/class-mp-products-admin.php:2378 +#: includes/common/shipping-modules/class-mp-shipping-api.php:228 +msgid "Ounces" +msgstr "Ουγγιές" + +#: includes/admin/class-mp-products-admin.php:1684 +#: includes/admin/class-mp-products-admin.php:2123 +#: includes/admin/class-mp-products-admin.php:2369 +#: includes/admin/class-mp-setup-wizard.php:546 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:165 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +#: includes/common/shipping-modules/class-mp-shipping-api.php:227 +msgid "Pounds" +msgstr "Λίβρες" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:226 +msgid "Product Weight:" +msgstr "Βαρος Προϊόντων:" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:214 +msgid "Weight (Kilograms)" +msgstr "Βάρος (Κιλά)" + +#: includes/admin/widgets/ms-global-categories.php:82 +msgid "Number of Categories:" +msgstr "Πλήθος Κατηγοριών:" + +#: includes/admin/widgets/ms-global-categories.php:72 +msgid "Product Count" +msgstr "Πλήθος Προϊόντων" + +#: includes/addons/class-mp-addons-list-table.php:20 +#: includes/admin/class-mp-product-attributes-admin.php:129 +#: includes/admin/class-mp-product-attributes-list-table.php:22 +#: includes/admin/class-mp-products-admin.php:2216 +#: includes/admin/class-mp-shortcode-builder.php:628 +#: includes/admin/class-mp-shortcode-builder.php:1415 +#: includes/admin/widgets/ms-global-categories.php:70 +#: includes/common/shipping-modules/mp-fedex.php:395 +#: includes/common/shipping-modules/mp-ups.php:202 +#: includes/common/shipping-modules/mp-usps.php:243 +#: includes/public/class-mp-checkout.php:314 +msgid "Name" +msgstr "Όνομα" + +#: includes/admin/widgets/ms-global-categories.php:67 +msgid "Order Categories By:" +msgstr "Ταξινόμηση Κατηγοριών κατά:" + +#: includes/admin/widgets/ms-global-categories.php:24 +#: includes/admin/widgets/ms-global-categories.php:50 +msgid "Global Product Categories" +msgstr "Σφαιρικές Κατηγορίες Προϊόντων" + +#: includes/admin/widgets/ms-global-categories.php:15 +msgid "Global Product Category List" +msgstr "Σφαιρική Λίστα Κατηγοριών Προϊόντων" + +#: includes/admin/widgets/ms-global-categories.php:13 +msgid "Displays a network-wide HTML list of product categories from network MarketPress stores." +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:24 +#: includes/admin/widgets/ms-global-tag-cloud.php:45 +msgid "Global Product Tags" +msgstr "Σφαιρικές Ετικέτες Προϊόντων" + +#: includes/admin/widgets/ms-global-tag-cloud.php:15 +msgid "Global Product Tag Cloud" +msgstr "Σφαιρικό Νέφος Ετικετών Προϊόντων" + +#: includes/admin/class-mp-shortcode-builder.php:947 +#: includes/admin/widgets/ms-global-product-list.php:173 +msgid "Excerpt" +msgstr "Απόσπασμα" + +#: includes/admin/widgets/ms-global-product-list.php:169 +msgid "Content To Show:" +msgstr "Περιεχόμενο προς Εμφάνιση:" + +#: includes/admin/widgets/ms-global-product-list.php:140 +msgid "Limit To Product Tag:" +msgstr "Περιορισμός στην Ετικέτα Προϊόντων:" + +#: includes/admin/widgets/ms-global-product-list.php:132 +msgid "Limit To Product Category:" +msgstr "Περιορισμός στην Κατηγορία Προϊόντων:" + +#: includes/admin/widgets/ms-global-product-list.php:72 +msgid "Global Products" +msgstr "Σφαιρικά Προϊόντα" + +#: includes/admin/widgets/ms-global-product-list.php:16 +msgid "Global Product List" +msgstr "Σφαιρική Λίστα Προϊόντων" + +#: includes/admin/widgets/ms-global-product-list.php:14 +msgid "Shows a customizable global list of products from network MarketPress stores." +msgstr "" + +#: includes/common/class-mp-product.php:974 +#: includes/multisite/template-functions.php:731 +msgid "Buy Now »" +msgstr "Αγορά Τώρα »" + +#: includes/admin/widgets/ms-global-tag-cloud.php:13 +msgid "Displays global most used product tags in cloud format from network MarketPress stores." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:438 +msgid "Theme Permissions" +msgstr "Εξουσιοδοτήσεις Θέματος" + +#: includes/multisite/class-mp-admin-multisite.php:402 +#: includes/multisite/class-mp-admin-multisite.php:448 +msgid "No Access" +msgstr "Απαγορευμένη Πρόσβαση" + +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:120 +msgid "Pro Site Level" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:401 +#: includes/multisite/class-mp-admin-multisite.php:447 +msgid "All Can Use" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:390 +msgid "Gateway Permissions" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:375 +msgid "Select a Gateway" +msgstr "Επιλέξτε μία Πύλη" + +#: includes/multisite/class-mp-admin-multisite.php:350 +msgid "Global Gateway" +msgstr "" + +#. Plugin Name of the plugin/theme +msgid "MarketPress" +msgstr "MarketPress" + +#: includes/admin/widgets/product-tag-cloud.php:7 +msgid "Your most used product tags in cloud format from your MarketPress store." +msgstr "Οι πλέον χρησιμοποιούμενες από το κατάστημά σας ετικέτες προϊόντων σε μορφή νέφους." + +#: includes/admin/widgets/categories.php:79 +msgid "Show hierarchy" +msgstr "Προβολή Ιεραρχίας" + +#: includes/admin/widgets/categories.php:76 +#: includes/admin/widgets/ms-global-categories.php:92 +msgid "Show product counts" +msgstr "Προβολή πλήθους προϊόντων" + +#: includes/admin/widgets/categories.php:73 +msgid "Show as dropdown" +msgstr "Προβολή ως πτυσσόμενη λίστα" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:710 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:736 +#: includes/admin/widgets/categories.php:30 +msgid "Select Category" +msgstr "Επιλογή Κατηγορίας" + +#: includes/admin/widgets/categories.php:7 +msgid "A list or dropdown of product categories from your MarketPress store." +msgstr "Μια λίστα των κατηγοριών του καταστήματός σας." + +#: includes/admin/widgets/product-list.php:250 +msgid "Show Buy Button" +msgstr "Προβολή κουμπιού Αγοράς" + +#: includes/admin/widgets/ms-global-product-list.php:183 +#: includes/admin/widgets/product-list.php:244 +msgid "Show Price" +msgstr "Προβολή τιμής" + +#: includes/admin/widgets/product-list.php:241 +msgid "Show Excerpt" +msgstr "Προβολή αποσπάσματος" + +#: includes/admin/widgets/ms-global-product-list.php:155 +#: includes/admin/widgets/product-list.php:238 +msgid "Thumbnail Size:" +msgstr "Μέγεθος εικονιδίου" + +#: includes/admin/widgets/ms-global-product-list.php:153 +#: includes/admin/widgets/product-list.php:237 +msgid "Show Thumbnail" +msgstr "Προβολή εικονιδίου" + +#: includes/admin/widgets/ms-global-product-list.php:147 +#: includes/admin/widgets/product-list.php:233 +msgid "Display Settings" +msgstr "Ρυθμίσεις προβολής" + +#: includes/admin/widgets/ms-global-product-list.php:136 +#: includes/admin/widgets/ms-global-product-list.php:144 +#: includes/admin/widgets/product-list.php:230 +msgid "Enter the Slug" +msgstr "Πληκτρολογήστε το όνομα του συνδέσμου" + +#: includes/admin/widgets/product-list.php:228 +#: includes/common/template-functions.php:894 +msgid "Tag" +msgstr "Ετικέτα" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:686 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:712 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:739 +#: includes/admin/class-mp-shortcode-builder.php:796 +#: includes/admin/widgets/product-list.php:227 +#: includes/common/template-functions.php:886 +#: includes/common/template-functions.php:2907 +msgid "Category" +msgstr "Κατηγορία" + +#: includes/admin/widgets/product-list.php:226 +msgid "No Filter" +msgstr "Κανένα φίλτρο" + +#: includes/admin/widgets/product-list.php:224 +msgid "Taxonomy Filter:" +msgstr "Φίλτο ταξινόμησης:" + +#: includes/admin/widgets/ms-global-product-list.php:108 +#: includes/admin/widgets/product-list.php:209 +msgid "Order Products By:" +msgstr "Ταξινόμηση Προϊόντων κατά:" + +#: includes/admin/widgets/ms-global-product-list.php:101 +#: includes/admin/widgets/product-list.php:206 +msgid "Number of Products:" +msgstr "Αριθμός Προϊόντων:" + +#: includes/admin/widgets/ms-global-product-list.php:98 +#: includes/admin/widgets/product-list.php:204 +msgid "List Settings" +msgstr "Ρυθμίσεις Λίστας" + +#: includes/admin/widgets/product-list.php:177 +msgid "Our Products" +msgstr "Τα Προϊόντα μας" + +#: includes/admin/widgets/product-list.php:144 +#: includes/common/template-functions.php:2070 +#: includes/common/template-functions.php:2347 +#: includes/multisite/template-functions.php:303 +#: includes/multisite/template-functions.php:623 +msgid "No Products" +msgstr "Δε βρέθηκαν Προϊόντα" + +#: includes/admin/widgets/product-list.php:8 +msgid "Product List" +msgstr "Λίστα Προϊόντων" + +#: includes/admin/widgets/product-list.php:7 +msgid "Shows a customizable list of products from your MarketPress store." +msgstr "Προβολή προσωποποιημένης λίστας προϊόντων από το κατάστημά σας." + +#: includes/admin/widgets/cart.php:75 includes/admin/widgets/categories.php:82 +#: includes/admin/widgets/product-list.php:253 +#: includes/admin/widgets/product-tag-cloud.php:57 +msgid "Only show on store pages" +msgstr "Να εμφανίζεται μόνον στις σελίδες του καταστήματος" + +#: includes/admin/widgets/cart.php:65 +#: includes/admin/widgets/ms-global-product-list.php:92 +#: includes/admin/widgets/product-list.php:200 +msgid "Custom Text:" +msgstr "Προσαρμοσμένο Κείμενο:" + +#: includes/admin/widgets/cart.php:64 includes/admin/widgets/categories.php:69 +#: includes/admin/widgets/ms-global-categories.php:59 +#: includes/admin/widgets/ms-global-product-list.php:87 +#: includes/admin/widgets/ms-global-tag-cloud.php:49 +#: includes/admin/widgets/product-list.php:199 +#: includes/admin/widgets/product-tag-cloud.php:49 +msgid "Title:" +msgstr "Τίτλος:" + +#: includes/admin/widgets/cart.php:7 +msgid "Shows dynamic shopping cart contents along with a checkout button for your MarketPress store." +msgstr "Προβάλλει δυναμικά τα περιεχόμενα τα καλαθιού αγορών με ένα πλήκτρο ολοκλήρωσης αγορών γιά το κατάστημά σας με το MarketPress." + +#: includes/admin/widgets/product-tag-cloud.php:8 +msgid "Product Tag Cloud" +msgstr "Νέφος Ετικετών Προϊόντων" + +#: includes/admin/class-mp-setup-wizard.php:539 +#: includes/admin/class-mp-setup-wizard.php:575 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:163 +msgid "Measurement System" +msgstr "Σύστημα μέτρησης" + +#: includes/admin/class-mp-setup-wizard.php:616 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:149 +msgid "Select Shipping Options" +msgstr "Επιλέξτε επιλογές αποστολής" + +#: includes/admin/class-mp-setup-wizard.php:596 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:129 +msgid "Calculated Options" +msgstr "Επιλογές υπολογισμού" + +#: includes/admin/class-mp-setup-wizard.php:582 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:115 +msgid "No Shipping" +msgstr "Χωρίς αποστολή" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:110 +msgid "EU" +msgstr "ΕΕ" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:109 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:93 +msgid "All" +msgstr "Όλα" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:92 +msgid "Select:" +msgstr "Επιλογή:" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:185 +msgid "Store Pages" +msgstr "Σελίδες καταστήματος" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:223 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:256 +msgid "Order Shipped" +msgstr "Παραγγελία απεστάλη" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:60 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:95 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:128 +#: marketpress.php:266 +msgid "New Order" +msgstr "Νέα Παραγγελία" + +#: includes/admin/class-mp-dashboard-widgets.php:314 +msgid "Email Notifications" +msgstr "Ειδοποιήσεις e-mail" + +#: includes/admin/class-mp-pages-admin.php:59 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:200 +msgid "Products List" +msgstr "Λίστα Προϊόντων" + +#: includes/admin/class-mp-pages-admin.php:58 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:190 +msgid "Store Base" +msgstr "Βάση Καταστήματος" + +#: includes/admin/class-mp-product-attributes-admin.php:108 +#: includes/admin/class-mp-shortcode-builder.php:635 +#: includes/admin/class-mp-shortcode-builder.php:708 +#: includes/admin/class-mp-shortcode-builder.php:875 +#: includes/admin/class-mp-shortcode-builder.php:1319 +#: includes/admin/class-mp-shortcode-builder.php:1422 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:526 +#: includes/admin/widgets/ms-global-categories.php:78 +#: includes/admin/widgets/ms-global-product-list.php:127 +#: includes/admin/widgets/product-list.php:221 +msgid "Ascending" +msgstr "Αύξουσα" + +#: includes/admin/class-mp-product-attributes-admin.php:109 +#: includes/admin/class-mp-shortcode-builder.php:636 +#: includes/admin/class-mp-shortcode-builder.php:709 +#: includes/admin/class-mp-shortcode-builder.php:876 +#: includes/admin/class-mp-shortcode-builder.php:1320 +#: includes/admin/class-mp-shortcode-builder.php:1423 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:525 +#: includes/admin/widgets/ms-global-categories.php:75 +#: includes/admin/widgets/ms-global-product-list.php:124 +#: includes/admin/widgets/product-list.php:220 +msgid "Descending" +msgstr "Φθίνουσα" + +#: includes/admin/class-mp-shortcode-builder.php:637 +#: includes/admin/class-mp-shortcode-builder.php:695 +#: includes/admin/class-mp-shortcode-builder.php:862 +#: includes/admin/class-mp-shortcode-builder.php:1306 +#: includes/admin/class-mp-shortcode-builder.php:1424 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:518 +#: includes/admin/widgets/ms-global-product-list.php:121 +#: includes/admin/widgets/product-list.php:218 +msgid "Random" +msgstr "Τυχαία" + +#: includes/admin/class-mp-shortcode-builder.php:694 +#: includes/admin/class-mp-shortcode-builder.php:861 +#: includes/admin/class-mp-shortcode-builder.php:1305 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:517 +#: includes/admin/widgets/ms-global-product-list.php:119 +#: includes/admin/widgets/product-list.php:216 +msgid "Product Price" +msgstr "Τιμή προϊόντος" + +#: includes/admin/class-mp-shortcode-builder.php:693 +#: includes/admin/class-mp-shortcode-builder.php:860 +#: includes/admin/class-mp-shortcode-builder.php:1304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:516 +#: includes/admin/widgets/ms-global-product-list.php:117 +#: includes/admin/widgets/product-list.php:215 +msgid "Number of Sales" +msgstr "Αριθμός πωλήσεων" + +#: includes/admin/class-mp-shortcode-builder.php:692 +#: includes/admin/class-mp-shortcode-builder.php:859 +#: includes/admin/class-mp-shortcode-builder.php:1303 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:515 +#: includes/admin/widgets/product-list.php:214 +msgid "Product Author" +msgstr "Ποιος καταχώρησε το προϊόν" + +#: includes/admin/class-mp-shortcode-builder.php:691 +#: includes/admin/class-mp-shortcode-builder.php:858 +#: includes/admin/class-mp-shortcode-builder.php:1302 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:514 +#: includes/admin/widgets/product-list.php:213 +msgid "Product ID" +msgstr "Αριθμός προϊόντος" + +#: includes/admin/class-mp-shortcode-builder.php:690 +#: includes/admin/class-mp-shortcode-builder.php:857 +#: includes/admin/class-mp-shortcode-builder.php:1301 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:513 +#: includes/admin/widgets/ms-global-product-list.php:113 +#: includes/admin/widgets/product-list.php:212 +msgid "Publish Date" +msgstr "Ημερομηνία δημοσίευσης" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:430 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:726 +msgid "Width" +msgstr "Πλάτος" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:439 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:735 +msgid "Height" +msgstr "Ύψος" + +#: includes/admin/class-mp-product-attributes-admin.php:88 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:402 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:698 +msgid "Custom" +msgstr "Προσαρμοσμένο" + +#: includes/common/class-mp-product.php:179 +#: includes/common/class-mp-product.php:992 +#: includes/common/class-mp-product.php:1000 +#: includes/multisite/template-functions.php:579 +msgid "Buy Now" +msgstr "Αγορά" + +#: includes/common/class-mp-product.php:175 +#: includes/common/class-mp-product.php:990 +#: includes/common/class-mp-product.php:998 +msgid "Add To Cart" +msgstr "Προσθήκη στο Καλάθι" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:807 +msgid "Store Style" +msgstr "Τύπος καταστήματος" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1021 +msgid "Edit Coupon" +msgstr "Επεξεργασία κουπονιού" + +#: includes/addons/mp-coupons/class-mp-coupon.php:580 +#: includes/admin/class-mp-ajax.php:238 +#: includes/admin/class-mp-products-admin.php:1532 +msgid "Unlimited" +msgstr "Απεριόριστο" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1198 +msgid "Remaining Uses" +msgstr "Απομένουσες χρήσεις" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1197 +msgid "Used" +msgstr "Χρησιμοποιήθηκε" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:752 +#: includes/admin/class-mp-products-admin.php:2343 +msgid "Start Date" +msgstr "Ημερομηνία έναρξης" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:598 +msgid "Coupon Code" +msgstr "Κωδικός κουπονιού" + +#: includes/admin/class-mp-orders-admin.php:444 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:284 +msgid "Save Changes" +msgstr "Αποθήκευση αλλαγών" + +#: includes/admin/class-mp-pages-admin.php:57 +#: includes/admin/class-mp-shortcode-builder.php:716 +#: includes/admin/class-mp-shortcode-builder.php:727 +#: includes/admin/class-mp-shortcode-builder.php:883 +#: includes/admin/class-mp-shortcode-builder.php:894 +#: includes/admin/class-mp-shortcode-builder.php:946 +#: includes/admin/class-mp-shortcode-builder.php:956 +#: includes/admin/class-mp-shortcode-builder.php:1006 +#: includes/admin/class-mp-shortcode-builder.php:1327 +#: includes/admin/class-mp-shortcode-builder.php:1338 +#: includes/admin/store-settings/class-mp-store-settings-general.php:357 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:270 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:108 +#: includes/admin/widgets/ms-global-product-list.php:172 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:94 +msgid "None" +msgstr "Κανένα" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:352 +msgid "Google Analytics Ecommerce Tracking" +msgstr "Παρακολούθηση αγορών μέσω Google Analytics" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:310 +msgid "This option turns MarketPress into more of a product listing plugin, disabling shopping carts, checkout, and order management. This is useful if you simply want to list items you can buy in a store somewhere else, optionally linking the \"Buy Now\" buttons to an external site. Some examples are a car dealership, or linking to songs/albums in itunes, or linking to products on another site with your own affiliate links." +msgstr "Με την επιλογή αυτή το κατάστημά σας μετατρέπεται σε έκθεση. Απενεργοποιείται το καλάθι αλλά και η διαχείρηση των παραγγελιών. Η επιλογή αυτή είναι χρήσιμη αν θέλετε να προβάλλετε προϊόντα από άλλη ιστοσελίδα με την οποία έχετε κάποια σχέση affiliate, ή αν για παράδειγμα έχετε μια αντιπροσωπεία αυτοκινήτων ή αν πουλάτε τραγούδια από το iTunes και χρησιμοποιείτε δικούς σας συνδέσμους για τα κουμπιά αγοράς." + +#: includes/admin/store-settings/class-mp-store-settings-general.php:304 +msgid "Whether or not customers must be registered and logged in to checkout. (Not recommended: Enabling this can lower conversions)" +msgstr "Επιλέξτε αν οι επισκέπτες είναι αναγκασμένοι να εγγραφούν και συνδεθούν στο κατάστημά σας προκειμένου να κάνουν κάποια αγορά (Δε συστήνεται: ενεργοποιώντας αυτή την επιλογή μπορεί να μειωθούν οι πωλήσεις σας)." + +#: includes/admin/store-settings/class-mp-store-settings-general.php:258 +msgid "How many times may a customer download a file they have purchased? (It's best to set this higher than one in case they have any problems downloading)" +msgstr "Πόσες φορές μπορεί ένας πελάτης να λάβει ένα ηλεκτρονικό αρχείο που έχει αγοράσει; (Συμβουλεύουμε να επιλέξετε αριθμό μεγαλύτερο του ένα (1) σε περίπτωση που έχει πρόβλημα με τη λήψη)" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:257 +msgid "Maximum Downloads" +msgstr "Μέγιστος αριθμός λήψεων" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:298 +msgid "This will set the product to draft if inventory of all variations is gone." +msgstr "Αυτό θα σημάνει το προϊόν ως πρόχειρο αν τα απόθέματα σε όλες τις παραλλαγές έχουν εξαντληθεί." + +#: includes/admin/store-settings/class-mp-store-settings-general.php:288 +msgid "At what low stock count do you want to be warned for products you have enabled inventory tracking for?" +msgstr "Αν για κάποια προϊόντα σας έχετε ενεργοποιήσει την παρακολούθηση αποθέματος, σε ποιό σημείο θέλετε να ειδοποιείστε;" + +#: includes/admin/class-mp-dashboard-widgets.php:208 +#: includes/admin/store-settings/class-mp-store-settings-general.php:287 +msgid "Inventory Warning Threshold" +msgstr "Ελάχιστη ποσότητα ειδοποίησης αποθέματος" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:282 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:542 +msgid "Miscellaneous Settings" +msgstr "Διάφορες ρυθμίσεις" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:429 +#: includes/multisite/class-mp-admin-multisite.php:247 +msgid "Show Decimal in Prices" +msgstr "Προβολή δεκαδικών στις τιμές" + +#: includes/admin/class-mp-setup-wizard.php:451 +#: includes/admin/store-settings/class-mp-store-settings-general.php:403 +#: includes/multisite/class-mp-admin-multisite.php:221 +msgid "Currency Symbol Position" +msgstr "Θέση συμβόλου νομίσματος" + +#: includes/admin/class-mp-setup-wizard.php:444 +#: includes/admin/store-settings/class-mp-store-settings-general.php:396 +msgid "Store Currency" +msgstr "Νόμισμα καταστήματος" + +#: includes/admin/class-mp-setup-wizard.php:429 +#: includes/admin/store-settings/class-mp-store-settings-general.php:381 +msgid "Currency Settings" +msgstr "Ρυθμίσεις νομίσματος" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:516 +msgid "Please see your local tax laws. Note if this is enabled and a downloadable only cart, rates will be the default for your base location." +msgstr "Παρακαλώ συμβουλευτείτε τους φορολογικούς νόμους που ισχύουν γιά την περιοχή σας. Σημειώστε οτι αν αυτό ενεργοποιηθεί και έχετε καλάθι με μόνον ηλεκτρονικά μεταφορτώσιμα είδη, οι συντελεστές φόρων θα είναι οι προεπιλεγμένοι γιά την βασική σας τοποθεσία." + +#: includes/admin/class-mp-setup-wizard.php:529 +msgid "Apply Tax to Downloadable Products?" +msgstr "Να εφαρμόζεται φόρος σε Προϊόντα που Λαμβάνονται Ηλεκτρονικά;" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:498 +msgid "Enabling this option allows you to enter and show all prices inclusive of tax, while still listing the tax total as a line item in shopping carts. Please see your local tax laws." +msgstr "Ενεργοποιώντας αυτή την επιλογή πληκτρολογείτε τις τελικές σας τιμές, συμπεριλαμβανομένου του Φ.Π.Α. Το σύνολο του Φ.Π.Α. θα εμφανίζεται σε μια ξεχωριστή γραμμή στο καλάθι αγορών." + +#: includes/admin/class-mp-setup-wizard.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:497 +msgid "Enter Prices Inclusive of Tax?" +msgstr "Εισαγωγή τιμών συμπεριλαμβανομένου Φ.Π.Α.;" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:492 +msgid "Please see your local tax laws. Most areas charge tax on shipping fees." +msgstr "Τα έξοδα αποστολής κανονικά φορολογούνται." + +#: includes/admin/class-mp-setup-wizard.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:491 +msgid "Apply Tax To Shipping Fees?" +msgstr "Εφαρμογή φόρων στα έξοδα αποστολής;" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:674 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:565 +#: includes/common/payment-gateways/authorizenet-aim.php:291 +#: includes/common/payment-gateways/authorizenet-aim.php:326 +#: includes/common/payment-gateways/payfast.php:347 +msgid "No" +msgstr "Όχι" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:675 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:759 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:512 +#: includes/admin/class-mp-setup-wizard.php:518 +#: includes/admin/class-mp-setup-wizard.php:524 +#: includes/admin/class-mp-setup-wizard.php:530 +#: includes/admin/class-mp-setup-wizard.php:564 +#: includes/admin/store-settings/class-mp-store-settings-general.php:232 +#: includes/admin/store-settings/class-mp-store-settings-general.php:299 +#: includes/admin/store-settings/class-mp-store-settings-general.php:305 +#: includes/admin/store-settings/class-mp-store-settings-general.php:311 +#: includes/admin/store-settings/class-mp-store-settings-general.php:317 +#: includes/admin/store-settings/class-mp-store-settings-general.php:328 +#: includes/admin/store-settings/class-mp-store-settings-general.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:341 +#: includes/admin/store-settings/class-mp-store-settings-general.php:348 +#: includes/admin/store-settings/class-mp-store-settings-general.php:367 +#: includes/admin/store-settings/class-mp-store-settings-general.php:493 +#: includes/admin/store-settings/class-mp-store-settings-general.php:499 +#: includes/admin/store-settings/class-mp-store-settings-general.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:556 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:375 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:381 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:387 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:474 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:493 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:532 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:574 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:606 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:664 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:670 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:677 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:683 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:689 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:763 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:774 +#: includes/common/payment-gateways/_bitpay.php:250 +#: includes/common/payment-gateways/_bitpay.php:257 +#: includes/common/payment-gateways/_bitpay.php:264 +#: includes/common/payment-gateways/authorizenet-aim.php:290 +#: includes/common/payment-gateways/authorizenet-aim.php:325 +#: includes/common/payment-gateways/free_orders.php:160 +#: includes/common/payment-gateways/payfast.php:346 +#: includes/common/payment-gateways/paymill.php:162 +#: includes/common/payment-gateways/paypal-payflow.php:441 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-checkbox.php:22 +msgid "Yes" +msgstr "Ναι" + +#: includes/admin/class-mp-setup-wizard.php:492 +#: includes/admin/store-settings/class-mp-store-settings-general.php:472 +msgid "%s Tax Rate" +msgstr "%s ποσοστό Φ.Π.Α." + +#: includes/admin/class-mp-setup-wizard.php:467 +#: includes/admin/store-settings/class-mp-store-settings-general.php:449 +msgid "Tax Settings" +msgstr "Ρυθμίσεις φόρων" + +#: includes/admin/class-mp-setup-wizard.php:370 +#: includes/admin/store-settings/class-mp-store-settings-general.php:624 +msgid "Base Zip/Postal Code" +msgstr "Τ.Κ." + +#: includes/admin/class-mp-setup-wizard.php:354 +#: includes/admin/store-settings/class-mp-store-settings-general.php:608 +msgid "Base State/Province/Region" +msgstr "Περιοχή" + +#: includes/admin/class-mp-setup-wizard.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:589 +msgid "Base Country" +msgstr "Χώρα καταστήματος" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:582 +msgid "Location Settings" +msgstr "Ρυθμίσεις τοποθεσίας" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:195 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:800 +#: includes/multisite/class-mp-admin-multisite.php:172 +msgid "General Settings" +msgstr "Γενικές ρυθμίσεις" + +#: includes/admin/class-mp-products-admin.php:1945 +#: includes/admin/class-mp-products-admin.php:2185 +#: includes/admin/class-mp-store-settings-admin.php:111 +#: includes/admin/class-mp-store-settings-admin.php:266 +msgid "General" +msgstr "Γενικά" + +#: includes/admin/class-mp-store-settings-admin.php:242 +msgid "Importers" +msgstr "Εισαγωγείς" + +#: includes/admin/class-mp-store-settings-admin.php:115 +#: includes/admin/class-mp-store-settings-admin.php:234 +msgid "Payments" +msgstr "Πληρωμές" + +#: includes/admin/class-mp-dashboard-widgets.php:313 +#: includes/admin/class-mp-store-settings-admin.php:112 +#: includes/admin/class-mp-store-settings-admin.php:222 +msgid "Presentation" +msgstr "Παρουσίαση" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:916 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1015 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1018 +#: includes/admin/class-mp-dashboard-widgets.php:305 marketpress.php:702 +msgid "Coupons" +msgstr "Κουπόνια" + +#: includes/admin/class-mp-admin.php:251 +msgid "Download »" +msgstr "Λήψη »" + +#: includes/admin/class-mp-admin.php:245 +#: includes/admin/class-mp-exporter-orders.php:170 +msgid "All Statuses" +msgstr "Όλες οι καταστάσεις" + +#: includes/admin/class-mp-admin.php:209 +#: includes/admin/class-mp-exporter-orders.php:150 +#: includes/admin/class-mp-exporter-orders.php:178 +msgid "Export Orders" +msgstr "Εξαγωγή παραγγελιών" + +#: includes/admin/class-mp-admin.php:228 +msgid "Show all dates" +msgstr "Προβολή όλων των ημερομηνιών" + +#: includes/admin/class-mp-orders-admin.php:947 +msgid "Change Status" +msgstr "Αλλαγή κατάστασης" + +#: includes/admin/class-mp-orders-admin.php:287 +msgid "Order Notes" +msgstr "Σημειώσεις παραγγελίας" + +#: includes/admin/class-mp-orders-admin.php:478 +msgid "Other" +msgstr "Άλλο" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:205 +msgid "Subtotal" +msgstr "Υποσύνολο" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:84 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:87 +#: includes/admin/class-mp-products-admin.php:1737 +#: includes/common/class-mp-cart.php:1409 +#: includes/common/class-mp-product.php:559 +msgid "Quantity" +msgstr "Ποσότητα" + +#: includes/common/helpers.php:93 +msgid "Item" +msgstr "Είδος" + +#: includes/common/class-mp-order.php:1050 +msgid "Current Status" +msgstr "Τρέχουσα κατάσταση" + +#: includes/admin/class-mp-orders-admin.php:297 +msgid "Order Actions" +msgstr "Ενέργειες παραγγελίας" + +#: includes/common/class-mp-product.php:1084 +msgid "More Info »" +msgstr "Περισσότερες πληροφορίες »" + +#: includes/common/class-mp-product.php:2313 +msgid "Low Product Inventory Notification" +msgstr "Ειδοποίηση χαμηλού αποθέματος προϊόντος" + +#: includes/common/class-mp-order.php:338 includes/common/data.php:154 +msgid "New Order Notification: ORDERID" +msgstr "Ειδοποίηση νέας παραγγελίας: ORDERID" + +#: includes/common/helpers.php:259 +msgid "Your payment for this order is complete." +msgstr "Η πληρωμή σας για αυτή την παραγγελία έχει ολοκληρωθεί." + +#: includes/common/helpers.php:261 +msgid "Your payment for this order is not yet complete. Here is the latest status:" +msgstr "Η εξόφληση της παραγγελίας σας δεν έχει ολοκληρωθεί. Παρακάτω ακολουθεί η κατάσταση της συναλλαγής:" + +#: includes/common/helpers.php:256 +msgid "Payment Total:" +msgstr "Σύνολο πληρωμής:" + +#: includes/common/helpers.php:253 +msgid "Transaction ID:" +msgstr "Αριθμός συναλλαγής:" + +#: includes/common/helpers.php:249 +msgid "Payment Type:" +msgstr "Τύπος πληρωμής:" + +#: includes/common/helpers.php:246 +msgid "Payment Method:" +msgstr "Μέθοδος πληρωμής:" + +#: includes/common/helpers.php:242 +msgid "Order Notes:" +msgstr "Σημειώσεις παραγγελίας:" + +#: includes/common/helpers.php:237 +msgid "Special Instructions:" +msgstr "Ειδικές οδηγίες:" + +#: includes/common/helpers.php:232 +msgid "Tracking Number:" +msgstr "Αριθμός δέματος (Voucher / tracking code)" + +#: includes/common/helpers.php:223 includes/common/helpers.php:226 +#: includes/common/helpers.php:228 +#: includes/common/shipping-modules/class-mp-shipping-api.php:406 +#: includes/common/shipping-modules/class-mp-shipping-api.php:428 +msgid "Shipping Method:" +msgstr "Μέθοδος αποστολής:" + +#: includes/common/helpers.php:168 +msgid "No shipping required for this order." +msgstr "Δεν απαιτείται αποστολή γι' αυτή την παραγγελία." + +#: includes/common/helpers.php:155 +msgid "Order Total:" +msgstr "Σύνολο παραγγελίας:" + +#: includes/common/class-mp-order.php:1025 +msgid "Taxes:" +msgstr "Φόροι:" + +#: includes/common/class-mp-order.php:1032 includes/common/helpers.php:144 +msgid "Shipping:" +msgstr "Αποστολή:" + +#: includes/public/class-mp-checkout.php:367 +msgid "Street address, P.O. box, company name, c/o" +msgstr "Διεύθυνση, Επωνυμία εταιρίας, Τ.Θ κλπ" + +#: includes/admin/class-mp-orders-admin.php:314 +msgid "Shipping Info" +msgstr "Στοιχεία αποστολής:" + +#: includes/public/class-mp-public.php:740 +msgid "Whoops, there was a problem loading up this file for your download. Please contact us for help." +msgstr "Υπήρξε κάποιο σφάλμα κατά τη φόρτωση αυτού του αρχείου. Παρακαλούμε επικοινωνήστε μαζί μας για βοήθεια." + +#: includes/public/class-mp-public.php:683 +msgid "Sorry, our records show you've downloaded this file %d out of %d times allowed. Please contact us if you still need help." +msgstr "Λυπούμαστε, τα αρχεία μας δείχνουν ότι έχετε λάβει το αρχείο αυτό %d από τις %d λήψεις που επιτρέπονται. Αν χρειάζεστε κάποια βοήθεια επικοινωνήστε μαζί μας." + +#: includes/public/class-mp-public.php:634 +msgid "Sorry, your order has been marked as unpaid." +msgstr "Λυπούμαστε, η παραγγελία σας έχει σημειωθεί από το σύστημα ως μη εξοφλημένη." + +#: includes/public/class-mp-public.php:629 +msgid "Sorry, the link is invalid for this download." +msgstr "Λυπούμαστε, ο σύνδεσμος για αυτή τη λήψη δεν είναι σωστός." + +#: includes/admin/class-mp-exporter-orders.php:15 +#: includes/admin/class-mp-products-admin.php:1172 +msgid "Cheatin’ uh?" +msgstr "Κάνουμε και ζαβολιές’ ε;" + +#: includes/public/class-mp-public.php:407 +#: includes/public/class-mp-short-codes.php:128 +msgid "Please enter a valid email address." +msgstr "" + +#: includes/admin/class-mp-ajax.php:191 +#: includes/admin/class-mp-products-admin.php:1821 +#: includes/admin/class-mp-products-admin.php:2010 +#: includes/admin/class-mp-products-admin.php:2267 +msgid "File URL" +msgstr "Διεύθυνση URL αρχείου" + +#: includes/admin/class-mp-products-admin.php:1842 +msgid "External Link" +msgstr "Εξωτερικός σύνδεσμος" + +#: includes/admin/class-mp-products-admin.php:2177 +msgid "Add Variation" +msgstr "Προσθήκη παραλλαγής" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:126 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:289 +msgid "Inventory" +msgstr "Απόθεμα" + +#: includes/admin/class-mp-products-admin.php:438 +#: includes/admin/class-mp-products-admin.php:578 +#: includes/admin/class-mp-products-admin.php:1552 +#: includes/admin/class-mp-products-admin.php:2053 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:134 +msgid "Sale Price" +msgstr "Τιμή πώλησης" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "Variation Name" +msgstr "Όνομα παραλλαγής" + +#: includes/admin/class-mp-products-admin.php:1931 +msgid "Product Details" +msgstr "Λεπτομέρειες προϊόντος" + +#: includes/admin/class-mp-product-attributes-list-table.php:33 +msgid "Delete" +msgstr "Διαγραφή" + +#: includes/admin/class-mp-orders-admin.php:1057 +msgid "Trashed" +msgstr "Στον κάδο" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:231 +#: includes/admin/class-mp-orders-admin.php:1015 +#: includes/common/class-mp-order.php:1052 includes/common/helpers.php:97 +msgid "Total" +msgstr "Σύνολο" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1196 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:210 +#: includes/admin/class-mp-orders-admin.php:1014 +msgid "Discount" +msgstr "Έκπτωση" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:221 +#: includes/admin/class-mp-orders-admin.php:1013 +#: includes/common/payment-gateways/_ideal.php:148 +#: includes/common/payment-gateways/_payway.php:134 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:108 +msgid "Tax" +msgstr "Φόρος" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:216 +#: includes/admin/class-mp-orders-admin.php:1012 +#: includes/admin/class-mp-products-admin.php:1958 +#: includes/admin/class-mp-products-admin.php:2198 +#: includes/admin/class-mp-store-settings-admin.php:114 +#: includes/admin/class-mp-store-settings-admin.php:230 +#: includes/common/class-mp-cart.php:717 includes/common/helpers.php:168 +#: includes/common/payment-gateways/_ideal.php:137 +#: includes/common/payment-gateways/_payway.php:116 +#: includes/public/class-mp-checkout.php:1304 +msgid "Shipping" +msgstr "Αποστολή" + +#: includes/admin/class-mp-orders-admin.php:1011 +msgid "Items" +msgstr "Είδη" + +#: includes/admin/class-mp-orders-admin.php:1010 +msgid "From" +msgstr "Από" + +#: includes/admin/class-mp-exporter-orders.php:154 +#: includes/admin/class-mp-orders-admin.php:1009 +#: includes/common/class-mp-gdpr.php:370 +msgid "Order Date" +msgstr "Ημ/νία παραγγελίας" + +#: includes/admin/class-mp-orders-admin.php:1008 +#: includes/common/class-mp-gdpr.php:366 +#: includes/common/template-functions.php:2134 +msgid "Order ID" +msgstr "Κωδικός παραγγελίας" + +#: includes/addons/class-mp-addons-list-table.php:22 +#: includes/admin/class-mp-orders-admin.php:1007 +msgid "Status" +msgstr "Κατάσταση" + +#: includes/admin/class-mp-orders-admin.php:1155 +msgid "N/A" +msgstr "Μη διαθέσιμο" + +#: includes/admin/class-mp-dashboard-widgets.php:243 +#: includes/admin/class-mp-products-admin.php:464 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:142 +msgid "Sales" +msgstr "Πωλήσεις" + +#: includes/admin/class-mp-products-admin.php:463 +msgid "Stock" +msgstr "Απόθεμα" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:85 +#: includes/admin/class-mp-ajax.php:176 includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:434 +#: includes/admin/class-mp-products-admin.php:462 +#: includes/admin/class-mp-products-admin.php:576 +#: includes/admin/class-mp-products-admin.php:1519 +#: includes/admin/class-mp-products-admin.php:1569 +#: includes/admin/class-mp-products-admin.php:1950 +#: includes/admin/class-mp-products-admin.php:2059 +#: includes/admin/class-mp-products-admin.php:2190 +#: includes/admin/class-mp-products-admin.php:2330 +#: includes/common/class-mp-cart.php:1415 includes/common/helpers.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:130 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:276 +msgid "Price" +msgstr "Τιμή" + +#: includes/admin/class-mp-ajax.php:173 +#: includes/admin/class-mp-products-admin.php:461 +#: includes/admin/class-mp-products-admin.php:1972 +#: includes/admin/class-mp-products-admin.php:2224 +msgid "SKU" +msgstr "Κωδικός" + +#: includes/admin/class-mp-products-admin.php:459 +#: includes/admin/class-mp-products-admin.php:1793 +#: includes/admin/class-mp-products-admin.php:1805 +#: includes/admin/class-mp-products-admin.php:2163 +msgid "Variations" +msgstr "Παραλλαγές" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:83 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:86 +#: includes/admin/class-mp-dashboard-widgets.php:134 +#: includes/admin/class-mp-products-admin.php:458 +#: includes/admin/class-mp-products-admin.php:837 +#: includes/admin/class-mp-shortcode-builder.php:689 +#: includes/admin/class-mp-shortcode-builder.php:856 +#: includes/admin/class-mp-shortcode-builder.php:1300 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:512 +#: includes/admin/widgets/ms-global-product-list.php:115 +#: includes/admin/widgets/product-list.php:211 +msgid "Product Name" +msgstr "Όνομα προϊόντος" + +#: includes/common/template-functions.php:2575 +msgid "Categorized in " +msgstr "Κατηγοριοποίηση σε" + +#: includes/admin/class-mp-orders-admin.php:305 +#: includes/common/payment-gateways/free_orders.php:176 +msgid "Payment Information" +msgstr "Στοιχεία πληρωμής" + +#: includes/admin/class-mp-exporter-orders.php:167 +#: includes/admin/class-mp-orders-admin.php:432 +#: includes/admin/class-mp-pages-admin.php:62 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:227 +#: includes/common/class-mp-gdpr.php:374 +#: includes/common/template-functions.php:175 +#: includes/common/template-functions.php:926 +msgid "Order Status" +msgstr "Κατάσταση Παραγγελίας" + +#. translators: %s: orders closed +#: marketpress.php:327 +msgid "Closed (%s)" +msgid_plural "Closed (%s)" +msgstr[0] "Έκλεισε (%s)" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:249 +#: includes/admin/class-mp-orders-admin.php:375 +#: includes/admin/class-mp-orders-admin.php:951 +#: includes/admin/class-mp-orders-admin.php:1053 +#: includes/admin/class-mp-orders-admin.php:1065 +#: includes/common/class-mp-gdpr.php:330 +#: includes/common/class-mp-order.php:1019 marketpress.php:325 +msgid "Closed" +msgstr "Κλειστό" + +#. translators: %s: shipped orders +#: marketpress.php:320 +msgid "Shipped (%s)" +msgid_plural "Shipped (%s)" +msgstr[0] "Απεστάλη (%s)" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:248 +#: includes/admin/class-mp-orders-admin.php:376 +#: includes/admin/class-mp-orders-admin.php:950 +#: includes/admin/class-mp-orders-admin.php:1049 +#: includes/admin/class-mp-orders-admin.php:1064 +#: includes/common/class-mp-gdpr.php:329 +#: includes/common/class-mp-order.php:1002 marketpress.php:318 +msgid "Shipped" +msgstr "Απεστάλη" + +#. translators: %s: paid orders +#: marketpress.php:313 +msgid "Paid (%s)" +msgid_plural "Paid (%s)" +msgstr[0] "Εξοφλήθη (%s)" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:247 +#: includes/admin/class-mp-orders-admin.php:377 +#: includes/admin/class-mp-orders-admin.php:949 +#: includes/admin/class-mp-orders-admin.php:1045 +#: includes/admin/class-mp-orders-admin.php:1063 +#: includes/common/class-mp-gdpr.php:328 +#: includes/common/payment-gateways/2checkout.php:294 +#: includes/common/payment-gateways/_cubepoints.php:130 +#: includes/common/payment-gateways/authorizenet-aim.php:193 +#: includes/common/payment-gateways/free_orders.php:91 +#: includes/common/payment-gateways/mijireh.php:248 +#: includes/common/payment-gateways/paymill.php:273 +#: includes/common/payment-gateways/paypal-express.php:933 +#: includes/common/payment-gateways/paypal-express.php:967 +#: includes/common/payment-gateways/pin.php:258 +#: includes/common/payment-gateways/simplify.php:181 +#: includes/common/payment-gateways/stripe.php:368 +#: includes/common/payment-gateways/wepay.php:269 marketpress.php:311 +msgid "Paid" +msgstr "Εξοφλήθη" + +#. translators: %s: orders received +#: marketpress.php:306 +msgid "Received (%s)" +msgid_plural "Received (%s)" +msgstr[0] "Λήφθηκε (%s)" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:246 +#: includes/admin/class-mp-orders-admin.php:378 +#: includes/admin/class-mp-orders-admin.php:1041 +#: includes/admin/class-mp-orders-admin.php:1062 +#: includes/common/class-mp-gdpr.php:327 includes/common/class-mp-order.php:995 +#: includes/common/payment-gateways/payfast.php:244 marketpress.php:304 +msgid "Received" +msgstr "Λήφθηκε" + +#: marketpress.php:268 +msgid "Search Orders" +msgstr "Αναζήτηση Παραγγελιών" + +#: marketpress.php:267 +msgid "View Order" +msgstr "Προβολή Παραγγελίας" + +#: marketpress.php:262 +msgid "Order" +msgstr "Παραγγελία" + +#: includes/admin/class-mp-dashboard-widgets.php:301 +#: includes/admin/class-mp-orders-admin.php:989 marketpress.php:261 +msgid "Orders" +msgstr "Παραγγελίες" + +#: marketpress.php:228 +msgid "No Products found in Trash" +msgstr "Δε βρέθηκαν προϊόντα στον κάδο" + +#: marketpress.php:227 +msgid "No Products Found" +msgstr "Δε βρέθηκαν προϊόντα" + +#: marketpress.php:226 +msgid "Search Products" +msgstr "Αναζήτηση Προϊόντων" + +#: marketpress.php:225 marketpress.php:229 +msgid "View Product" +msgstr "Προβολή Προϊόντος" + +#: marketpress.php:224 +msgid "New Product" +msgstr "Νέο Προϊόν" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1022 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:258 +#: marketpress.php:223 +msgid "Edit" +msgstr "Επεξεργασία" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1019 +msgid "Create New" +msgstr "Δημιουργία Νέου" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:687 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:698 +#: marketpress.php:217 +msgid "Product" +msgstr "Προϊόν" + +#: includes/admin/class-mp-dashboard-widgets.php:307 +#: includes/common/template-functions.php:173 +#: includes/common/template-functions.php:179 +#: includes/common/template-functions.php:902 +#: includes/multisite/template-functions.php:82 marketpress.php:216 +#: marketpress.php:219 +msgid "Products" +msgstr "Προϊόντα" + +#: includes/admin/class-mp-store-settings-admin.php:118 +#: includes/admin/widgets/product-tag-cloud.php:46 +#: includes/multisite/class-mp-admin-multisite.php:548 +msgid "Product Tags" +msgstr "Ετικέτες Προϊόντων" + +#: includes/common/template-functions.php:2906 +#: includes/multisite/template-functions.php:449 +msgid "Product Category" +msgstr "Κατηγορία Προϊόντος" + +#: includes/admin/class-mp-store-settings-admin.php:117 +#: includes/admin/widgets/categories.php:8 +#: includes/admin/widgets/categories.php:18 +#: includes/multisite/class-mp-admin-multisite.php:539 +msgid "Product Categories" +msgstr "Κατηγορίες Προϊόντων" + +#: includes/common/payment-gateways/stripe.php:332 +#: includes/common/template-functions.php:872 marketpress.php:218 +msgid "Store" +msgstr "Κατάστημα" + +#: includes/admin/class-mp-pages-admin.php:60 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:209 +#: includes/admin/widgets/cart.php:8 includes/admin/widgets/cart.php:56 +#: includes/common/template-functions.php:174 +#: includes/common/template-functions.php:811 +msgid "Shopping Cart" +msgstr "Καλάθι" + +#: includes/admin/class-mp-store-settings-admin.php:110 +#: includes/admin/class-mp-store-settings-admin.php:218 +msgid "Store Settings" +msgstr "Ρυθμίσεις Καταστήματος" + +#: includes/addons/class-mp-addons-list-table.php:128 marketpress.php:607 +msgid "Settings" +msgstr "Ρυθμίσεις" + +#: includes/common/data.php:178 includes/common/data.php:190 +msgid "Your Order Has Been Shipped! (ORDERID)" +msgstr "Η παραγγελία σας έχει αποσταλεί! (ORDERID)" + +#: includes/common/data.php:159 includes/common/data.php:166 +#: includes/common/data.php:172 +msgid "Your Order Confirmation (ORDERID)" +msgstr "Η επιβεβαίωση της παραγγελίας σας (ORDERID)" + +#: includes/common/data.php:148 +msgid "

    Thank you for your order! We appreciate your business, and please come back often to check out our new products.

    " +msgstr "

    Ευχαριστούμε για την παραγγελία σας!

    " + +#: includes/common/data.php:147 +msgid "

    You are almost done! Please do a final review of your order to make sure everything is correct then click the \"Confirm Payment\" button.

    " +msgstr "

    Έχετε σχεδόν τελειώσει! Παρακαλώ κάντε έναν τελευταίο έλεγχο της παραγγελίας σας για να επιβεβαιώσετε ότι όλα τα στοιχεία είναι σωστά και στη συνέχεια πατήστε το κουμπί \\\"Επιβεβαίωση Πληρωμής\\\".

    " + +#: includes/common/data.php:145 +msgid "

    Please enter your shipping information in the form below to proceed with your order.

    " +msgstr "

    Παρακαλώ εισάγετε τα στοιχεία αποστολής στην παρακάτω φόρμα για να συνεχίσει η παραγγελία σας.

    " + +#: includes/common/data.php:143 +msgid "

    If you have any questions about your order please do not hesitate to contact us.

    " +msgstr "

    Αν έχετε κάποια απορία σχετικά με την παραγγελία σας μη διστάσετε να επικοινωνήσετε μαζί μας.

    " + +#: includes/common/data.php:106 +msgid "tag" +msgstr "ετικέτα" + +#: includes/common/data.php:105 +msgid "category" +msgstr "κατηγορία" + +#: includes/common/data.php:104 +msgid "order-status" +msgstr "κατάσταση παραγγελίας" + +#: includes/common/data.php:103 +msgid "shopping-cart" +msgstr "καλάθι" + +#: includes/common/data.php:102 +msgid "products" +msgstr "προϊόντα" + +#. Translators: change default slugs here +#: includes/common/data.php:101 +msgid "store" +msgstr "κατάστημα" \ No newline at end of file diff --git a/languages/mp-en-gb.mo b/languages/mp-en-gb.mo new file mode 100644 index 0000000000000000000000000000000000000000..a7b403d716edcecdac080d35e1d4987814f18aad GIT binary patch literal 278 zcmYLD!AiqG6s+KBkDfiO;7woJ)Jxfri`s^Q!60q%CTsePtMP4k`zrb&{+?$)!%cJO zz%Vnsc`&~x$3LTpqsY_9^FBme4zkz3=%LTmJv`v23(gbVT0x^PCK0M!mUGx3_XnfX zWTI|736j9-yNfNsFBx~Ob(HD))p9_|*Q*804n4LMUXWodefine( 'DOMPDF_ENABLE_HTML5PARSER', true ); to the wp-config.php file." +msgstr "" + +#: includes/public/class-mp-checkout.php:723 +msgid "Invalid Email" +msgstr "" + +#: includes/public/class-mp-checkout.php:721 +#: includes/public/class-mp-checkout.php:729 +msgid "This field is required" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:804 +msgid "This option changes the built-in css styles for store pages. For a custom css style, save your css file with the /* MarketPress Style: Your CSS Theme Name Here */ header line in the \"%s\" folder and it will appear in this list so you may select it. You should select \"None\" if you don't wish to use custom CSS styles or if you are using default theme templates or custom theme templates and css to make your own completely unique store design. For more information on custom theme templates click here »." +msgstr "" + +#: includes/public/class-mp-public.php:421 +#: includes/public/class-mp-short-codes.php:142 +msgid "Please enter a value greater than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:420 +#: includes/public/class-mp-short-codes.php:141 +msgid "Please enter a value less than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:419 +#: includes/public/class-mp-short-codes.php:140 +msgid "Please enter a value between {0} and {1}." +msgstr "" + +#: includes/public/class-mp-public.php:418 +#: includes/public/class-mp-short-codes.php:139 +msgid "Please enter a value between {0} and {1} characters long." +msgstr "" + +#: includes/public/class-mp-public.php:417 +#: includes/public/class-mp-short-codes.php:138 +msgid "Please enter at least {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:416 +#: includes/public/class-mp-short-codes.php:137 +msgid "Please enter no more than {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:415 +#: includes/public/class-mp-short-codes.php:136 +msgid "Please enter a value with a valid extension." +msgstr "" + +#: includes/public/class-mp-public.php:414 +#: includes/public/class-mp-short-codes.php:135 +msgid "Please enter the same value again." +msgstr "" + +#: includes/public/class-mp-public.php:413 +#: includes/public/class-mp-short-codes.php:134 +msgid "Please enter a valid credit card number." +msgstr "" + +#: includes/public/class-mp-public.php:412 +#: includes/public/class-mp-short-codes.php:133 +msgid "Please enter only digits." +msgstr "" + +#: includes/public/class-mp-public.php:411 +#: includes/public/class-mp-short-codes.php:132 +msgid "Please enter a valid number." +msgstr "" + +#: includes/public/class-mp-public.php:410 +#: includes/public/class-mp-short-codes.php:131 +msgid "Please enter a valid date (ISO)." +msgstr "" + +#: includes/public/class-mp-public.php:409 +#: includes/public/class-mp-short-codes.php:130 +msgid "Please enter a valid date." +msgstr "" + +#: includes/public/class-mp-public.php:408 +#: includes/public/class-mp-short-codes.php:129 +msgid "Please enter a valid URL." +msgstr "" + +#: includes/public/class-mp-public.php:406 +#: includes/public/class-mp-short-codes.php:127 +msgid "Please fix this field." +msgstr "" + +#: includes/public/class-mp-checkout.php:1287 +#: includes/public/class-mp-public.php:405 +#: includes/public/class-mp-short-codes.php:126 +msgid "This field is required." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:810 +msgid "None - Without Special CSS-styles" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:809 +msgid "Default - Using Default CSS-styles" +msgstr "" + +#: marketpress.php:739 +msgid "Enable multiple downloads per product" +msgstr "" + +#: marketpress.php:738 +msgid "Multiple Downloads" +msgstr "" + +#: includes/public/class-mp-checkout.php:715 +msgid "Invalid Zip Code" +msgstr "" + +#: includes/common/template-functions.php:2126 +msgid "Guest Email" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:195 +msgid "There was a problem finalizing your purchase. Please re-enter your credit card information and try again" +msgstr "" + +#: includes/common/class-mp-cart.php:565 includes/common/class-mp-order.php:600 +#: includes/common/helpers.php:111 +msgid "Download %1$s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:331 +msgid "Export products to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:328 +msgid "The import process uses the WordPress importer plugin." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:326 +msgid "Import / Export Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:325 +msgid "Export settings to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:324 +msgid "Import configuration" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:320 +msgid "Use the text below to export to a new installation. Or paste in the new configuration to import." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:318 +msgid "Import / Export Settings" +msgstr "" + +#. translators: URL to wp-admin/import.php +#: includes/admin/store-settings/class-mp-store-settings-import.php:266 +msgid "This importer is not installed. Please install importers from the main site." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:261 +msgid "Install Now" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:260 +msgid "Install %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:240 +msgid "Run Importer" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:239 +msgid "Run %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:258 +msgid "Import/Export" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1199 +msgid "Requires Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:737 +msgid "Optionally limit the user to some categories" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:671 +msgid "Should this coupon only be available to logged in users?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:670 +msgid "Require Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:655 +msgid "Mimimum number of products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:653 +msgid "Enter the minimum number of products in the cart that this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:648 +msgid "Can this coupon be limited to a number of products in the cart?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:334 +msgid "Add all values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:265 +msgid "Set as default variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:154 +msgid "Set Default" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:150 +msgid "More Info" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:40 +msgid "MarketPress - Quick Setup" +msgstr "" + +#: includes/public/class-mp-checkout.php:1399 +msgid "Proceed to checkout and create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1241 +#: includes/public/class-mp-checkout.php:1245 +msgid "Register account" +msgstr "" + +#: includes/public/class-mp-checkout.php:1233 +msgid "Register as customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:765 +msgid "

    Oops!

    Looks like you haven't added anything your cart. Let's go shopping!

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:763 +msgid "

    Oops!

    The cart is disabled.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing Information" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:214 +msgid "Global Currency" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:198 +msgid "Global Store Currency" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:507 +msgid "There are no shipping services available for this type of package in your location." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:168 +msgid "Using this USPS Shipping calculator requires requesting an Ecommerce API Username and Password. Get your free set of credentials here ». The password is no longer used for the API, just the username which you should enter below. The USPS test site has not yet been updated and currently doesn't work - you should just request activating your credentials with USPS and go live." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:339 +msgid "ZIP Code" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:334 +msgid "Last name" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:333 +msgid "First name" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:150 +msgid "These are the manual payment instructions to display on the order confirmation screen. TOTAL will be replaced with the order total and ORDERID will be replaced with Order ID." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:240 +msgid "You must login to Authorize.net merchant dashboard to obtain the API login ID and API transaction key. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:327 +msgid "
    1. Set the \"Return Method\" within Site Management to Header Redirect and set the \"Return URL\" to %s
    2. Set your notifications url to %s
    " +msgstr "" + +#: includes/common/data.php:191 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Also, digital downloads included in your order are now ready to be downloaded. Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:185 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order is now available to download! Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:184 +msgid "Your Order Is Ready To Be Downloaded! (ORDERID)" +msgstr "" + +#: includes/common/data.php:179 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:173 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received, your digital goods are ready to be downloaded and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:167 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received and your digital goods are ready to be downloaded. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:160 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +" Your order has been received, and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information: \n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/class-mp-product.php:638 +msgid "You can not add more items to cart." +msgstr "" + +#: includes/common/class-mp-product.php:635 +msgid "You can only add {0} to cart." +msgstr "" + +#: includes/common/class-mp-product.php:625 +msgid "This product has an order limit of %d." +msgstr "" + +#: includes/common/class-mp-order.php:1454 +msgid "Shipped: tracking code: %s" +msgstr "" + +#: includes/common/class-mp-order.php:1000 +#: includes/common/class-mp-order.php:1012 +msgid "Finished" +msgstr "" + +#: includes/common/class-mp-order.php:858 +msgid "Contact Details" +msgstr "" + +#: includes/common/class-mp-order.php:339 includes/common/data.php:155 +msgid "" +"A new order (ORDERID) was created in your store:\n" +"\n" +" ORDERINFOSKU\n" +"\n" +" SHIPPINGINFO\n" +"\n" +" PAYMENTINFO\n" +"\n" +msgstr "\n" + +#: includes/common/class-mp-cart.php:1858 +msgid "Add again" +msgstr "" + +#: includes/common/class-mp-cart.php:1852 +msgid "was removed from Shopping Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1242 +#: includes/public/class-mp-short-codes.php:160 +msgid "Cart update notice: this item has a limit per order or you have reached the stock limit." +msgstr "" + +#: includes/admin/widgets/product-list.php:235 +msgid "Show Only Featured Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:533 +msgid "If enabled, users won't be able to filter products per category and/or to order by release date/name/price." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:531 +msgid "Hide Products Filter?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:353 +msgid "Notification to registration email instead of billing email?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:322 +msgid "Order Shipped - Mixed orders (with both digital and physical products)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:289 +msgid "Order Shipped - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:224 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:194 +msgid "New Order - Mixed" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:161 +msgid "New Order - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:115 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:243 +msgid "Mixed orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:110 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:238 +msgid "Digital downloads orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:105 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:233 +msgid "Physical orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:96 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed.
    For orders placed with manual payment, emails set here will be overriden by the one configured in manual payments settings, under payments settings page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:89 +msgid "Customer Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:47 +msgid "Admin Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:566 +msgid "Only contact details" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:565 +msgid "Full billing info" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:561 +msgid "Details Collection" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:548 +msgid "Digital Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:515 +msgid "Apply Tax to Digital Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:236 +msgid "product (default)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:231 +msgid "If you are experiencing conflicts with other e-commerce plugins change this setting. This will change the internal post type of all your products. Please note that changing this option may break 3rd party themes or plugins." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1203 +msgid "Hide details" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1202 +msgid "Show all changes" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1184 +msgid "Version %s" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1161 +msgid "Current" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1131 +msgid "%s changelog" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:952 +msgid "We did not find any data for this plugin or theme..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:285 +msgid "Activate WPMU DEV Dashboard" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:279 +msgid "Just one more step - activate the WPMU DEV Dashboard plugin and you're all done!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:277 +msgid "Important updates are available for your WPMU DEV plugins/themes. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:273 +msgid "Just one more step to enable updates and support for %s!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:271 +msgid "Important updates are available for %s. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:264 +msgid "activate" +msgstr "" + +#: includes/admin/class-mp-admin.php:398 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:248 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:289 +msgid "Dismiss" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:247 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:288 +msgid "Saving..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:244 +msgid "Install Plugin" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:238 +msgid "Almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:236 +msgid "Important updates are available for your WPMU DEV plugins/themes. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:232 +msgid "%s is almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:230 +msgid "Important updates are available for %s. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:223 +msgid "install" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1428 +msgid "Sets the number of Tags to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1289 +msgid "How many products to display in the product list if \"paginate\" is set to false." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:739 +#: includes/admin/class-mp-shortcode-builder.php:906 +#: includes/admin/class-mp-shortcode-builder.php:1350 +msgid "Grid" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:735 +#: includes/admin/class-mp-shortcode-builder.php:902 +#: includes/admin/class-mp-shortcode-builder.php:1346 +msgid "Products will be displayed as list or grid." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:206 +msgid "Display a cloud or list of your global product tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:205 +msgid "Display a list of your global categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:204 +msgid "Display a list or grid of your global products." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:181 +msgid "Display a list of featured products." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1451 +msgid "Is Featured?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1444 +msgid "Featured Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:581 +#: includes/admin/class-mp-products-admin.php:1580 +msgid "% discount" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:579 +msgid "OR" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:460 +#: includes/admin/class-mp-products-admin.php:586 +#: includes/admin/widgets/product-list.php:217 +msgid "Featured" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:536 +#: includes/admin/class-mp-orders-admin.php:538 +msgid "Tracking Link" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:508 +msgid "Shipping Tax" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:356 +msgid "Shipping Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:352 +msgid "Taxes Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:349 +msgid "Products Total" +msgstr "" + +#: includes/admin/class-mp-ajax.php:366 +msgid "Oops! You entered an invalid username/email and or password." +msgstr "" + +#: includes/admin/class-mp-ajax.php:254 +msgid "Percentage Discount" +msgstr "" + +#: includes/admin/class-mp-ajax.php:234 +msgid "Limit the Amount of Items per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:214 +msgid "Unused Attributes" +msgstr "" + +#: includes/admin/class-mp-admin.php:82 +msgid "Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-admin.php:79 +msgid "MarketPress setup is not complete! Once you've completed this quick setup wizard you'll have a fully working online store - exciting! " +msgstr "" + +#: marketpress.php:263 +msgctxt "mp_order" +msgid "Add New" +msgstr "" + +#: marketpress.php:184 +msgctxt "product_tag" +msgid "Product Tag" +msgstr "" + +#: marketpress.php:183 +msgctxt "product_tag" +msgid "Product Tags" +msgstr "" + +#: marketpress.php:150 +msgctxt "product_category" +msgid "Product Category" +msgstr "" + +#: marketpress.php:149 +msgctxt "product_category" +msgid "Product Categories" +msgstr "" + +#. Author URI of the plugin/theme +msgid "http://premium.wpmudev.org" +msgstr "" + +#: marketpress.php:729 +msgid "Invoice PDF" +msgstr "" + +#: marketpress.php:712 +msgid "Grant access to themes and gateways depending on the user's Pro Site level" +msgstr "" + +#: marketpress.php:711 +msgid "Pro Sites" +msgstr "" + +#: marketpress.php:703 +msgid "Offer and accept coupon codes" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:687 +msgid "Install %s Pages" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:682 +msgid "Welcome to %s – Install pages required by the plugin automatically." +msgstr "" + +#: marketpress.php:668 +msgid "Your pages were created successfully." +msgstr "" + +#: marketpress.php:436 +msgid "Add a Product" +msgstr "" + +#: marketpress.php:271 +msgid "Parent Order" +msgstr "" + +#: marketpress.php:270 +msgid "No orders found in trash" +msgstr "" + +#: marketpress.php:269 +msgid "No orders found" +msgstr "" + +#: marketpress.php:265 +msgid "Edit Order" +msgstr "" + +#: marketpress.php:264 +msgid "Add New Order" +msgstr "" + +#: marketpress.php:220 marketpress.php:221 +msgid "Add New Product" +msgstr "" + +#: marketpress.php:197 +msgid "No product tags found" +msgstr "" + +#: marketpress.php:196 +msgid "Choose from the most used product tags" +msgstr "" + +#: marketpress.php:195 +msgid "Add or remove product tags" +msgstr "" + +#: marketpress.php:194 +msgid "Separate product tags with commas" +msgstr "" + +#: marketpress.php:193 +msgid "Search Product Tags" +msgstr "" + +#: marketpress.php:192 +msgid "Parent Product Tag:" +msgstr "" + +#: marketpress.php:191 +msgid "Parent Product Tag" +msgstr "" + +#: marketpress.php:190 +msgid "New Product Tag Name" +msgstr "" + +#: marketpress.php:189 +msgid "Add New Product Tag" +msgstr "" + +#: marketpress.php:188 +msgid "Update Product Tag" +msgstr "" + +#: marketpress.php:187 +msgid "View Product Tag" +msgstr "" + +#: marketpress.php:186 +msgid "Edit Product Tag" +msgstr "" + +#: marketpress.php:185 +msgid "All Product Tags" +msgstr "" + +#: marketpress.php:163 +msgid "No product categories found" +msgstr "" + +#: marketpress.php:162 +msgid "Choose from the most used product categories" +msgstr "" + +#: marketpress.php:161 +msgid "Add or remove product categories" +msgstr "" + +#: marketpress.php:160 +msgid "Separate product categories with commas" +msgstr "" + +#: marketpress.php:159 +msgid "Search Product Categories" +msgstr "" + +#: marketpress.php:158 +msgid "Parent Product Category:" +msgstr "" + +#: marketpress.php:157 +msgid "Parent Product Category" +msgstr "" + +#: marketpress.php:156 +msgid "New Product Category Name" +msgstr "" + +#: marketpress.php:155 +msgid "Add New Product Category" +msgstr "" + +#: marketpress.php:154 +msgid "Update Product Category" +msgstr "" + +#: marketpress.php:153 +msgid "View Product Category" +msgstr "" + +#: marketpress.php:152 +msgid "Edit Product Category" +msgstr "" + +#: marketpress.php:151 +msgid "All Product Categories" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Please fix the %s1 and then try submitting the form again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Oops! The form contains %s1 which %s2 been highlighted below." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:660 +msgid "have" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:659 +msgid "has" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:651 +msgid "Value must be less than {0}" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:650 +msgid "Please enter only letters and numbers" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:539 +msgid "Due to prolonged inactivity on this page, one or more settings were not saved. Please try again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:535 +msgid "Settings Saved" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-user-select.php:22 +msgid "Select Some Users" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-section.php:18 +msgid "Section Title" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:425 +msgid "Are you sure you want to delete this?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:30 +msgid "Add Row" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-post-select.php:24 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-taxonomy-select.php:22 +msgid "Select Posts" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:210 +msgid "Add Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:129 +msgid "Select the image that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:93 +msgid "Select image(s) that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:79 +msgid "Select the image that you would like to use for this variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:48 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:82 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:68 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:132 +msgid "Select Image" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:31 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:160 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:168 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:19 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:115 +msgid "Select File" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:30 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:18 +msgid "Select the file that you would like to use." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:357 +msgid "Create Variations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:356 +msgid "Add Another Variant" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Insert a value and press ENTER" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "(e.g. White, Grey, Red etc.)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Variation Values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:333 +msgid "Or create new variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "(e.g. Color)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:303 +msgid "You are about to delete selected variants.
    If you want to continue please confirm." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:302 +msgid "Confirmation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:290 +msgid "Insert quantity available. Empty for unlimited." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:281 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:294 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:307 +msgid "Cancel" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:280 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:293 +msgid "Update" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:277 +msgid "Insert the price i.e. 25 or 25.50" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:115 +msgid "Img." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:85 +msgid "Add New Variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:79 +msgid "Delete Variants" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:78 +msgid "Update Prices" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:77 +msgid "Update Inventory" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:76 +msgid "Update Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:75 +msgid "Bulk Actions" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:73 +msgid "Select bulk action" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:196 +msgid "Configure Store" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:195 +msgid "Configure shipping rates, emails and your store's appearance. " +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:190 +msgid "Add Product" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:189 +msgid "Add your first product for sale and get familiar with adding products." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:184 +msgid "Your store is almost ready for its first customers, but first it needs some products. Get started by adding products below, or jump straight into further configuring your store’s settings." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:183 +msgid "Woohoo! Your online store is up and running." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:160 +msgid "Finish Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:124 +msgid "And what metric system do you want to use?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:113 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:142 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:159 +msgid "Back" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:109 +msgid "Do you want to apply tax for your products? You can customize this for each product and variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:105 +msgid "What currency do you want to sell with?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:93 +msgid "And, which countries do you want to sell to?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:89 +msgid "Where is your online store based?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:80 +msgid "Payment Gateway" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:79 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:123 +msgid "Metric System" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:78 +msgid "Currency & Tax" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:77 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:88 +msgid "Locations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:70 +msgid "Choose where you want to sell your stuff and what currency. Easy!" +msgstr "" + +#: includes/public/class-mp-checkout.php:1400 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:58 +msgid "Continue" +msgstr "" + +#: includes/admin/class-mp-admin.php:83 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:53 +msgid "Skip this step, I'll do this manually" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:49 +msgid "Install store pages" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:44 +msgid "Once you've completed this quick setup wizard you'll have a fully working online store - exciting! Start
    by creating the default store pages for the online store such as the cart, checkout and store pages." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:42 +msgid "MarketPress adds a full online store to your website, with heaps of configuration options and addons
    to suit your needs. It's really easy to get going, and only takes a few minutes to setup!" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:41 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:69 +msgid "Welcome to MarketPress - Quick Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-advanced-select.php:23 +msgid "Select Some Options" +msgstr "" + +#: includes/wpmudev-metaboxes/class-wpmudev-field.php:694 +msgid "You must the WPMUDEV_Field::display() method in your form field class" +msgstr "" + +#: includes/public/class-mp-short-codes.php:636 +msgid "Only %s left in stock..." +msgstr "" + +#: includes/public/class-mp-short-codes.php:633 +msgid "Unlimited stock" +msgstr "" + +#: includes/public/class-mp-short-codes.php:430 +msgid "product_id must be defined" +msgstr "" + +#: includes/public/class-mp-checkout.php:1250 +msgid "An account with this username already exists" +msgstr "" + +#: includes/public/class-mp-checkout.php:1394 +msgid "Continue as Guest" +msgstr "" + +#: includes/public/class-mp-checkout.php:1393 +msgid "Proceed to checkout and you'll have an opportunity to create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1392 +#: includes/public/class-mp-checkout.php:1398 +msgid "First-time customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1386 +msgid "Login" +msgstr "" + +#: includes/public/class-mp-checkout.php:1379 +msgid "E-Mail Address/Username" +msgstr "" + +#: includes/public/class-mp-checkout.php:1377 +msgid "Sign in to speed up the checkout process." +msgstr "" + +#: includes/public/class-mp-checkout.php:1376 +msgid "Have an account?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1297 +msgid "Shipping address different than billing?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1184 +msgid "There are no available gateways to process this payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1160 +msgid "Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:1123 +msgid "Oops! An error occurred while processing your payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1051 +msgid "Next Step »" +msgstr "" + +#: includes/public/class-mp-checkout.php:1045 +msgid "« Previous Step" +msgstr "" + +#: includes/public/class-mp-checkout.php:873 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:657 +msgid "error" +msgstr "" + +#: includes/public/class-mp-checkout.php:872 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:658 +msgid "errors" +msgstr "" + +#: includes/public/class-mp-checkout.php:871 +msgid "

    Oops! We found %d %s in the form below.

    Fields that have errors are highlighted in red below. Entering into a field will reveal the actual error that occurred.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:870 +msgid "Please enter a valid first and last name" +msgstr "" + +#: includes/public/class-mp-checkout.php:869 +msgid " Please enter a valid card security code" +msgstr "" + +#: includes/public/class-mp-checkout.php:868 +msgid "Please enter a valid card expiration" +msgstr "" + +#: includes/public/class-mp-checkout.php:773 +msgid "Javascript is required in order to checkout. Please enable Javascript in your browser and then refresh this page." +msgstr "" + +#: includes/public/class-mp-checkout.php:588 +msgid "An unknown error occurred. Please try again." +msgstr "" + +#: includes/public/class-mp-checkout.php:386 +msgid "Town/City" +msgstr "" + +#: includes/public/class-mp-checkout.php:380 +msgid "Apartment, suite, unit, building, floor, etc" +msgstr "" + +#: includes/public/class-mp-checkout.php:376 +msgid "Address Line 2" +msgstr "" + +#: includes/public/class-mp-checkout.php:363 +msgid "Address Line 1" +msgstr "" + +#: includes/common/class-mp-order.php:770 +#: includes/public/class-mp-checkout.php:354 +msgid "Company" +msgstr "" + +#: includes/public/class-mp-checkout.php:330 +msgid "Last" +msgstr "" + +#: includes/public/class-mp-checkout.php:321 +msgid "First" +msgstr "" + +#: includes/public/class-mp-checkout.php:284 +msgid "State/Province" +msgstr "" + +#: includes/public/class-mp-checkout.php:83 +msgid "Review Order/Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing/Shipping Address" +msgstr "" + +#: includes/public/class-mp-checkout.php:80 +msgid "Login/Register" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:530 +msgid "Marketplace" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:523 +msgid "Global Marketplace Pages" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +msgid "Store Network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +#: includes/multisite/class-mp-admin-multisite.php:494 +msgid "Store Network Settings" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:440 +msgid "Set theme access permissions for network stores. For a custom css theme, save your css file with the MarketPress Theme: NAME header in the /marketpress/ui/themes/ folder and it will appear in this list so you may select it." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:361 +msgid "Choose a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:336 +msgid "%d products get indexed" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:285 +msgid "Product Indexer" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:281 +msgid "Please hold on..." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:280 +msgid "Index Products" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:279 +msgid "%d products have been indexed in whole network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:182 +msgid "Enable Global Shopping Cart?" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:178 +msgid "Limit Global Widgets/Shortcodes To Main Blog?" +msgstr "" + +#: includes/common/template-functions.php:2802 +#: includes/multisite/template-functions.php:355 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:97 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:114 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:143 +msgid "Next" +msgstr "" + +#: includes/common/template-functions.php:2801 +#: includes/multisite/template-functions.php:354 +msgid "Prev" +msgstr "" + +#: includes/common/template-functions.php:2597 +msgid "Tagged in " +msgstr "" + +#: includes/common/template-functions.php:2196 +#: includes/common/template-functions.php:2202 +#: includes/common/template-functions.php:2214 +#: includes/common/template-functions.php:2217 +msgid "Oops! We couldn't locate any orders matching that order number. Please verify the order number and try again." +msgstr "" + +#: includes/common/template-functions.php:2138 +msgid "Look Up" +msgstr "" + +#: includes/common/template-functions.php:1423 +msgid "Please choose a shipping method" +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "If you have your order ID you can look it up using the form below." +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "Order Search" +msgstr "" + +#: includes/common/template-functions.php:910 +#: includes/public/class-mp-checkout.php:1440 +msgid "Cart" +msgstr "" + +#: includes/common/template-functions.php:895 +msgid "[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:887 +msgid "[mp_global_categories_list]" +msgstr "" + +#: includes/common/template-functions.php:880 +msgid "" +"Welcome to our market place!\n" +"\n" +"Check out our network of products:\n" +"\n" +"[mp_list_global_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_global_categories_list]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:879 +msgid "Global Store" +msgstr "" + +#: includes/common/template-functions.php:873 +msgid "" +"Welcome to our online store! Feel free to browse around:\n" +"\n" +"[mp_store_navigation]\n" +"\n" +"Check out our most popular products:\n" +"\n" +"[mp_popular_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_list_categories]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_tag_cloud]" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:127 +msgid "If cart weight is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:126 +msgid "Cart Weight" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:222 +msgid "Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:206 +msgid "Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:196 +msgid "Retail Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:195 +msgid "Online Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:193 +msgid "Rates Request Type" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:189 +msgid "Maximum Weight Per Package" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:195 +#: includes/common/shipping-modules/mp-usps.php:236 +msgid "Enter your standard box sizes as LengthxWidthxHeight (e.g. 12x8x6) For each box defined enter the maximum weight it can contain. Note: the shipping prices this plugin calculates are estimates. If they are consistently too low or too high, please check that the list of boxes above and the product weights are accurate and complete." +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:187 +msgid "Handling Charge Per Box Shipped" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:176 +#: includes/common/shipping-modules/mp-ups.php:181 +msgid "Offered Services" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:165 +msgid "Shipper Number" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:151 +msgid "User ID" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:144 +msgid "Developer Kit Access Key" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:140 +msgid "Use Sandbox Mode?" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:123 +msgid "In order to use UPS, you will need a UPS Developer Kit access key and the UPS user ID and password associated with the access key. Set these up for free here. If this information is missing or incorrect, an error will appear during the checkout process and the buyer will not be able to complete the transaction." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:112 +msgid "If cart total is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:111 +msgid "Cart Total" +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:95 +#: includes/common/shipping-modules/mp-weight-rate.php:111 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Don't worry about sorting as this will be done automatically upon saving." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:170 +msgid "Method Title (visible for clients)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:409 +#: includes/common/shipping-modules/mp-ups.php:216 +#: includes/common/shipping-modules/mp-usps.php:251 +msgid "Max Weight (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:402 +#: includes/common/shipping-modules/mp-ups.php:209 +#: includes/common/shipping-modules/mp-usps.php:247 +msgid "Size (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:387 +msgid "Enter your standard box sizes as LengthxWidthxHeight ( 12x8x6 ) For each box defined enter the maximum weight it can contain. Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:361 +#: includes/common/shipping-modules/mp-usps.php:229 +msgid "Handling Charge per International Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:353 +msgid "International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:339 +#: includes/common/shipping-modules/mp-usps.php:213 +msgid "Handling Charge per Domestic Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:331 +msgid "Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:321 +msgid "When checked the customer can chose Residential or Commercial delivery with Residential the default. Unchecked it's only Residential rates." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:320 +msgid "Allow Commercial Delivery?" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:315 +msgid "Fedex 10kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:314 +msgid "Fedex 25kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:313 +msgid "Fedex Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:312 +msgid "Fedex Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:311 +msgid "Fedex Pak" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:310 +msgid "Fedex Tube" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:306 +msgid "Default Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:294 +msgid "Dropoff Type" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:290 +msgid "Meter ID" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:134 +msgid "This is a residential address" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:283 +msgid "There was an error processing your card: \"%s\". Please check your credit card info and try again." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:121 +msgid "Wepay makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept cards directly on your site. You don't need a merchant account or gateway. WePay handles everything including storing cards. Credit cards go directly to WePay's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:385 +msgid "There was an error processing your card - \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:356 +msgid "%s Store Purchase - Order ID - %s, Email - %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:251 +msgid "Stripe makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept Visa, MasterCard, American Express, Discover, JCB, and Diners Club cards directly on your site. You don't need a merchant account or gateway. Stripe handles everything, including storing cards, subscriptions, and direct payouts to your bank account. Credit cards go directly to Stripe's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:192 +msgid "ZMW - Zambian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:191 +msgid "ZAR - South African Rand" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:190 +msgid "YER - Yemeni Rial" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:189 +msgid "XPF - Cfp Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:188 +msgid "XOF - West African Cfa Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:187 +msgid "XCD - East Caribbean Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:186 +msgid "XAF - Central African Cfa Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:185 +msgid "WST - Samoan Tala" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:184 +msgid "VUV - Vanuatu Vatu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:183 +msgid "VND - Vietnamese Đồng" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:182 +msgid "VEF - Venezuelan Bolívar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:181 +msgid "UZS - Uzbekistani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:180 +msgid "UYI - Uruguayan Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:178 +msgid "UGX - Ugandan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:177 +msgid "UAH - Ukrainian Hryvnia" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:176 +msgid "TZS - Tanzanian Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:175 +msgid "TWD - New Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:174 +msgid "TTD - Trinidad and Tobago Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:172 +msgid "TOP - Tongan Paʻanga" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:171 +msgid "TJS - Tajikistani Somoni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:169 +msgid "SZL - Swazi Lilangeni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:168 +msgid "SVC - Salvadoran Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:167 +msgid "STD - São Tomé and Príncipe Dobra" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:166 +msgid "SRD - Surinamese Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:165 +msgid "SOS - Somali Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:164 +msgid "SLL - Sierra Leonean Leone" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:163 +msgid "SHP - Saint Helenian Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:160 +msgid "SCR - Seychellois Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:159 +msgid "SBD - Solomon Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:157 +msgid "RWF - Rwandan Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:156 +msgid "RUB - Russian Ruble" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:155 +msgid "RSD - Serbian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:154 +msgid "RON - Romanian Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:153 +msgid "QAR - Qatari Riyal" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:152 +msgid "PYG - Paraguayan Guaraní*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:151 +msgid "PLN - Polish Złoty" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:150 +msgid "PKR - Pakistani Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:149 +msgid "PHP - Philippine Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:148 +msgid "PGK - Papua New Guinean Kina" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:147 +msgid "PEN - Peruvian Nuevo Sol*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:146 +msgid "PAB - Panamanian Balboa*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:144 +msgid "NPR - Nepalese Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:142 +msgid "NIO - Nicaraguan Córdoba*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:141 +msgid "NGN - Nigerian Naira" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:140 +msgid "NAD - Namibian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:139 +msgid "MZN - Mozambican Metical" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:137 +msgid "MXN - Mexican Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:136 +msgid "MWK - Malawian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:135 +msgid "MVR - Maldivian Rufiyaa" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:134 +msgid "MUR - Mauritian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:133 +msgid "MRO - Mauritanian Ouguiya" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:132 +msgid "MOP - Macanese Pataca" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:131 +msgid "MNT - Mongolian Tögrög" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:130 +msgid "MKD - Macedonian Denar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:129 +msgid "MGA - Malagasy Ariary" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:128 +msgid "MDL - Moldovan Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:126 +msgid "LVL - Latvian Lats" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:124 +msgid "LSL - Lesotho Loti" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:123 +msgid "LRD - Liberian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:122 +msgid "LKR - Sri Lankan Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:121 +msgid "LBP - Lebanese Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:120 +msgid "LAK - Lao Kip*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:119 +msgid "KZT - Kazakhstani Tenge" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:118 +msgid "KYD - Cayman Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:117 +msgid "KRW - South Korean Won" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:116 +msgid "KMF - Comorian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:115 +msgid "KHR - Cambodian Riel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:114 +msgid "KGS - Kyrgyzstani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:113 +msgid "KES - Kenyan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:111 +msgid "JMD - Jamaican Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:110 +msgid "ISK - Icelandic Króna" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:109 +msgid "INR - Indian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:108 +msgid "ILS - Israeli New Sheqel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:107 +msgid "IDR - Indonesian Rupiah" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:105 +msgid "HTG - Haitian Gourde" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:103 +msgid "HNL - Honduran Lempira*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:101 +msgid "GYD - Guyanese Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:100 +msgid "GTQ - Guatemalan Quetzal*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:99 +msgid "GNF - Guinean Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:98 +msgid "GMD - Gambian Dalasi" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:97 +msgid "GIP - Gibraltar Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:96 +msgid "GEL - Georgian Lari" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:94 +msgid "FKP - Falkland Islands Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:93 +msgid "FJD - Fijian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:91 +msgid "ETB - Ethiopian Birr" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:90 +msgid "EGP - Egyptian Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:89 +msgid "EEK - Estonian Kroon*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:88 +msgid "DZD - Algerian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:87 +msgid "DOP - Dominican Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:85 +msgid "DJF - Djiboutian Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:84 +msgid "CZK - Czech Koruna*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:83 +msgid "CVE - Cape Verdean Escudo*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:82 +msgid "CRC - Costa Rican Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:81 +msgid "COP - Colombian Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:80 +msgid "CNY - Chinese Renminbi Yuan" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:79 +msgid "CLP - Chilean Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:77 +msgid "CDF - Congolese Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:76 +msgid "CAD - Canadian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:75 +msgid "BZD - Belize Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:74 +msgid "BWP - Botswana Pula" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:73 +msgid "BSD - Bahamian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:72 +msgid "BRL - Brazilian Real*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:71 +msgid "BOB - Bolivian Boliviano*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:70 +msgid "BND - Brunei Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:69 +msgid "BMD - Bermudian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:68 +msgid "BIF - Burundian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:67 +msgid "BGN - Bulgarian Lev" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:66 +msgid "BDT - Bangladeshi Taka" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:65 +msgid "BBD - Barbadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:64 +msgid "BAM - Bosnia & Herzegovina Convertible Mark" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:63 +msgid "AZN - Azerbaijani Manat" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:62 +msgid "AWG - Aruban Florin" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:61 +msgid "AUD - Australian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:60 +msgid "ARS - Argentine Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:59 +msgid "AOA - Angolan Kwanza*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:58 +msgid "ANG - Netherlands Antillean Gulden" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:57 +msgid "AMD - Armenian Dram" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:56 +msgid "ALL - Albanian Lek" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:55 +msgid "AFN - Afghan Afghani*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:54 +msgid "AED - United Arab Emirates Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:345 +msgid "Skrill balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:327 +msgid "Skrill IPN message received." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:283 +msgid "Skrill" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:278 +msgid "Pending payment" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:144 +msgid "The secret word must match the word submitted in the \"Merchant Tools\" section of your Skrill account." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:134 +msgid "You must use your valid Skrill merchant email. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:133 +msgid "Skrill Email" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:123 +msgid "Resell your inventory via Skrill.com (Moneybookers)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:95 +msgid "ZAR - South-African Rand" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:93 +msgid "TWD - Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:92 +msgid "TRY - New Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:91 +msgid "TND - Tunisian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:90 +msgid "THB - Thailand Baht" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:89 +msgid "SKK - Slovakian Koruna" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:86 +#: includes/common/payment-gateways/stripe.php:158 +msgid "SAR - Saudi Riyal" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:85 +msgid "RSD - Serbian dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:83 +msgid "QAR - Qatari Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:81 +msgid "OMR - Omani Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:80 +msgid "NOK - Norwegian Krone " +msgstr "" + +#: includes/common/payment-gateways/skrill.php:78 +#: includes/common/payment-gateways/stripe.php:138 +msgid "MYR - Malaysian Ringgit" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:77 +#: includes/common/payment-gateways/stripe.php:127 +msgid "MAD - Moroccan Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:74 +msgid "KRW - South-Korean Won" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:72 +msgid "JOD - Jordanian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:70 +msgid "INR - Indian Rupee" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:63 +msgid "EEK - Estonian Kroon" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:56 +msgid "AED - Utd. Arab Emir. Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:52 +msgid "Turkish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:51 +msgid "Swedish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:50 +msgid "Spanish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:49 +msgid "Russian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:48 +msgid "Romainian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:47 +msgid "Polish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:46 +msgid "Italian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:45 +msgid "Greek" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:44 +msgid "German" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:43 +msgid "French" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:42 +msgid "Finnish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:41 +msgid "English" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:40 +msgid "Dutch" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:39 +msgid "Danish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:38 +msgid "Czech" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:37 +msgid "Chinese" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:201 +msgid "There was an error processing your card: %s. Please re-enter your credit card info and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:278 +msgid "
  • There was an error processing your card: \"%s\". Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:274 +msgid "
  • There was an error processing your card. Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:177 +#: includes/common/payment-gateways/stripe.php:279 +msgid "Publishable Key" +msgstr "" + +#: includes/common/payment-gateways/pin.php:163 +msgid "API Credentials?" +msgstr "" + +#: includes/common/payment-gateways/pin.php:147 +msgid "PIN makes it easy to start accepting credit card payments with Australia’s first all-in-one online payment system. Accept all major credit cards directly on your site. Your sales proceeds are deposited to any Australian bank account, no merchant account required." +msgstr "" + +#: includes/common/payment-gateways/pin.php:57 +#: includes/common/payment-gateways/stripe.php:179 +msgid "USD - United States Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:455 +msgid "Email Footer" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:445 +msgid "Email Header" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:416 +msgid "Partner" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:409 +msgid "Vendor" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:852 +#: includes/common/payment-gateways/paypal-express.php:1126 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences\t section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:749 +msgid "Page Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:744 +msgid "Header Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:739 +msgid "Header Border Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:734 +msgid "Header Image" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:680 +msgid "Locale" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:624 +#: includes/common/payment-gateways/paypal-express.php:658 +msgid "Merchant Email" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:645 +msgid "Paypal Express Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:603 +msgid "Paypal Express Network Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:861 +msgid "Application ID (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:854 +msgid "Signature (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:847 +msgid "API Password (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:839 +msgid "API Username (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:832 +msgid "Signature (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:825 +msgid "API Password (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:817 +msgid "API Username (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:799 +msgid "This message is displayed at the top of the gateway settings page to store admins. It's a good place to inform them of your fees or put any sales messages." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:787 +msgid "Please enter your PayPal email address or business ID you want to recieve fees at." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:786 +msgid "PayPal E-mail" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:772 +msgid "Fees to Collect (%)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:375 +#: includes/public/class-mp-checkout.php:341 +msgid "Email Address" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:299 +msgid "Sorry, your order was not completed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:126 +#: includes/common/payment-gateways/paypal-express.php:780 +msgid "You will be redirected to the PayPal site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:90 +#: includes/common/payment-gateways/skrill.php:94 +msgid "USD - U.S. Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:89 +msgid "TRY - Turkish lira" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:88 +#: includes/common/payment-gateways/stripe.php:170 +msgid "THB - Thai Baht" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:87 +msgid "TWD - Taiwan New Dollars" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:86 +#: includes/common/payment-gateways/pin.php:59 +#: includes/common/payment-gateways/skrill.php:88 +#: includes/common/payment-gateways/stripe.php:162 +msgid "SGD - Singapore Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:84 +msgid "RUB - Russian Rubles" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:82 +msgid "PHP - Philippine Pesos" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:81 +#: includes/common/payment-gateways/pin.php:58 +#: includes/common/payment-gateways/skrill.php:79 +#: includes/common/payment-gateways/stripe.php:145 +msgid "NZD - New Zealand Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:79 +msgid "MXN - Mexican Peso" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:78 +msgid "MYR - Malaysian Ringgits" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:77 +#: includes/common/payment-gateways/pin.php:64 +#: includes/common/payment-gateways/skrill.php:73 +#: includes/common/payment-gateways/stripe.php:112 +msgid "JPY - Japanese Yen" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:75 +#: includes/common/payment-gateways/pin.php:63 +#: includes/common/payment-gateways/skrill.php:66 +#: includes/common/payment-gateways/stripe.php:102 +msgid "HKD - Hong Kong Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:73 +msgid "GBP - Pound Sterling" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:68 +#: includes/common/payment-gateways/pin.php:62 +#: includes/common/payment-gateways/skrill.php:59 +msgid "CAD - Canadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:67 +msgid "BRL - Brazilian Real" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:66 +#: includes/common/payment-gateways/pin.php:56 +#: includes/common/payment-gateways/skrill.php:57 +msgid "AUD - Australian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:288 +msgid "There was an error processing your card: \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:163 +msgid "When running on a live site, Paymill recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:161 +#: includes/common/payment-gateways/pin.php:157 +#: includes/common/payment-gateways/simplify.php:103 +#: includes/common/payment-gateways/stripe.php:260 +#: includes/common/payment-gateways/wepay.php:153 +msgid "Force SSL?" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:151 +msgid "Accept Visa, Mastercard, Maestro UK, Discover and Solo cards directly on your site. You don't need a merchant account or gateway. Credit cards go directly to Paymill's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:131 +msgid "CVV2" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:72 +#: includes/common/payment-gateways/pin.php:61 +#: includes/common/payment-gateways/skrill.php:65 +#: includes/common/payment-gateways/stripe.php:95 +msgid "GBP - British Pound" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:71 +#: includes/common/payment-gateways/stripe.php:173 +msgid "TRY - Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:70 +#: includes/common/payment-gateways/paypal-chained-payments.php:85 +#: includes/common/payment-gateways/skrill.php:87 +#: includes/common/payment-gateways/stripe.php:161 +msgid "SEK - Swedish Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:69 +#: includes/common/payment-gateways/skrill.php:84 +msgid "RON - Romanian Leu New" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:68 +#: includes/common/payment-gateways/paypal-chained-payments.php:83 +#: includes/common/payment-gateways/skrill.php:82 +msgid "PLN - Polish Zloty" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:67 +#: includes/common/payment-gateways/paypal-chained-payments.php:80 +#: includes/common/payment-gateways/stripe.php:143 +msgid "NOK - Norwegian Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:66 +#: includes/common/payment-gateways/skrill.php:75 +#: includes/common/payment-gateways/stripe.php:125 +msgid "LTL - Lithuanian Litas" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:65 +#: includes/common/payment-gateways/paypal-chained-payments.php:69 +#: includes/common/payment-gateways/skrill.php:60 +#: includes/common/payment-gateways/stripe.php:78 +msgid "CHF - Swiss Franc" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:64 +#: includes/common/payment-gateways/skrill.php:76 +msgid "LVL - Latvian Lat" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:63 +#: includes/common/payment-gateways/paypal-chained-payments.php:74 +#: includes/common/payment-gateways/skrill.php:69 +msgid "ILS - Israeli Shekel" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:62 +#: includes/common/payment-gateways/skrill.php:71 +msgid "ISK - Iceland Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:61 +#: includes/common/payment-gateways/paypal-chained-payments.php:76 +#: includes/common/payment-gateways/skrill.php:68 +#: includes/common/payment-gateways/stripe.php:106 +msgid "HUF - Hungarian Forint" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:60 +#: includes/common/payment-gateways/paypal-chained-payments.php:71 +#: includes/common/payment-gateways/skrill.php:62 +#: includes/common/payment-gateways/stripe.php:86 +msgid "DKK - Danish Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:59 +#: includes/common/payment-gateways/skrill.php:67 +#: includes/common/payment-gateways/stripe.php:104 +msgid "HRK - Croatian Kuna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:58 +#: includes/common/payment-gateways/paypal-chained-payments.php:70 +#: includes/common/payment-gateways/skrill.php:61 +msgid "CZK - Czech Koruna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:57 +#: includes/common/payment-gateways/skrill.php:58 +msgid "BGN - Bulgarian Leva" +msgstr "" + +#: includes/common/payment-gateways/payflow/class-mp-gateway-worker-payflow.php:123 +msgid "There was an error connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:344 +msgid "This setting will log all PayFast communication to the \"payfast.log\" file." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:342 +msgid "Log Debugging Info?" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:335 +msgid "DO NOT INPUT A VALUE UNLESS YOU HAVE SET ONE IN THE SETTINGS SECTION OF YOUR PAYFAST SETTINGS." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:333 +msgid "PayFast Passphrase" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:323 +msgid "You can find your credentials on your integration page." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:321 +msgid "PayFast Merchant Credentials" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:311 +msgid "PayFast Mode" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:308 +msgid "PayFast is a payments processing service for South Africa. We make it safe for buyers to send money and easy for sellers to receive money. More Info »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:306 +msgid "PayFast Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:285 +msgid "Your payment via PayFast for this order totaling %s is complete. The transaction number is %s." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:278 +msgid "Your payment via PayFast for this order totaling %s is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:124 +msgid "Your PayFast transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:82 +#: includes/common/payment-gateways/payfast.php:83 +msgid "PayFast" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:157 +msgid "API error: - \"%s\"" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:198 +msgid "The payment request is under process" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:140 +msgid "Order: #" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:116 +msgid "You will be redirected to the Mollie site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:73 +msgid "%sMollie%s provides a fully PCI Compliant and secure way to collect payments via iDeal, Credit Card, Bancontact / Mister Cash, SOFORT Banking, Overbooking, Bitcoin, PayPal, paysafecard and AcceptEmail." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:53 +#: includes/common/payment-gateways/mollie.php:54 +#: includes/common/payment-gateways/mollie.php:195 +#: includes/common/payment-gateways/mollie.php:245 +msgid "Mollie" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:50 +#: includes/common/payment-gateways/paymill.php:56 +#: includes/common/payment-gateways/paypal-chained-payments.php:72 +#: includes/common/payment-gateways/pin.php:60 +#: includes/common/payment-gateways/skrill.php:64 +#: includes/common/payment-gateways/stripe.php:92 +msgid "EUR - Euro" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:306 +msgid "Access Key" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:300 +msgid "You must login to the Mijireh.com dashboard to obtain the Access Key." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:299 +msgid "Credentials" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:289 +msgid "Mijireh Checkout provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:269 +msgid "Mijireh Error: " +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:89 +msgid "You will be redirected to the Mijireh.com site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:87 +msgid "Your Mijireh transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:42 +#: includes/common/payment-gateways/mijireh.php:43 +#: includes/common/payment-gateways/mijireh.php:324 +msgid "Mijireh" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:145 +msgid "These are the manual payment instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:189 +msgid "This is the email text to send to those who have made free order checkouts. You should include your free order instructions / information here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:183 +msgid "This is the free order information to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:182 +msgid "Confirmation User Information" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:177 +msgid "This is the information to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:163 +msgid "If enabled, all free orders will be automatically marked as paid." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:159 +msgid "Payment Status" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:149 +msgid "This gateway is automatically activated if order totalling 0 and it can't be disabled" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:35 +#: includes/common/payment-gateways/free_orders.php:36 +#: includes/common/payment-gateways/free_orders.php:89 +msgid "Free Order" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:34 +#: includes/common/payment-gateways/free_orders.php:197 +msgid "Free Orders" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:515 +msgid "Sandbox API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:266 +#: includes/common/payment-gateways/eway31.php:542 +msgid "eWay Rapid 3.1 Payments (beta)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:403 +msgid "Hosted Payment Page Language" +msgstr "" + +#: includes/common/payment-gateways/eway.php:373 +msgid "Note when testing in sandbox mode it will use the default eWay test API credentials. Also, please note that cart total needs to be a whole number (e.g. 10.00) in order to generate a successful transaction, otherwise the transaction will fail." +msgstr "" + +#: includes/common/payment-gateways/eway.php:267 +msgid "You will be redirected to https://www.eway.com.au to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:380 +msgid "You have chosen to checkout using %s. Please confirm your order details and click \"Submit Order\" when finished." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:272 +#: includes/common/payment-gateways/paymill.php:131 +#: includes/common/payment-gateways/stripe.php:231 +msgid "Security Code " +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Enter in MM/YYYY or MM/YY format" +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Expiration" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:321 +msgid "Delim Data" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:307 +#: includes/common/payment-gateways/paypal-payflow.php:456 +msgid "This text will appear as the footer of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:287 +#: includes/common/payment-gateways/paypal-payflow.php:440 +msgid "Email Customer (on success)" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:278 +msgid "Authorize.net default is \",\". Otherwise, get this from your credit card processor. If the transactions are not going through, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:277 +msgid "Delimeter Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:193 +msgid "Held For Review" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:310 +#: includes/common/payment-gateways/payfast.php:314 +msgid "Test" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:300 +#: includes/common/payment-gateways/pin.php:170 +#: includes/common/payment-gateways/stripe.php:272 +msgid "Secret Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:283 +msgid "Select Your Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:97 +msgid "Your payment will be processed by the iDEAL network" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:208 +msgid "These are the CubePoints to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:203 +msgid "These are the CubePoints instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:266 +msgid "If enabled, all API calls will be made to https://test.bitpay.com." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:263 +msgid "Use Test Mode?" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:259 +msgid "If checked, response fron bitpay will be stored in log file, keep it disabled unless required." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:256 +msgid "Enable Debug Log" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:249 +msgid "Full Notifications" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:231 +#: includes/common/payment-gateways/eway31.php:499 +#: includes/common/payment-gateways/eway31.php:526 +#: includes/common/payment-gateways/mollie.php:83 +#: includes/common/shipping-modules/mp-fedex.php:269 +msgid "API Key" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:222 +msgid "You can now accept a payment from any country on Earth, with no risk of fraud. To use Bitpay, you need to signup on Bitpay. \\n After completing the signup process, you can get api keys at Bitpay API key. You can read more about Bitpay at Bitpay API. \\n Bitpay requires SSL(https) for payment notifications to work." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:61 +msgid "You will be redirected to bitpay.com, for bitcoin payment. It is completely safe." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:346 +msgid "You must login to the 2Checkout vendor dashboard to obtain the seller ID and secret word. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:345 +#: includes/common/payment-gateways/authorizenet-aim.php:239 +#: includes/common/payment-gateways/paymill.php:168 +#: includes/common/payment-gateways/paypal-express.php:704 +#: includes/common/payment-gateways/simplify.php:80 +#: includes/common/payment-gateways/stripe.php:265 +#: includes/common/payment-gateways/wepay.php:158 +msgid "API Credentials" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:325 +#: includes/common/payment-gateways/_bitpay.php:220 +#: includes/common/payment-gateways/_cubepoints.php:185 +#: includes/common/payment-gateways/_ideal.php:268 +#: includes/common/payment-gateways/_payway.php:255 +#: includes/common/payment-gateways/authorizenet-aim.php:219 +#: includes/common/payment-gateways/eway.php:352 +#: includes/common/payment-gateways/eway31.php:460 +#: includes/common/payment-gateways/free_orders.php:147 +#: includes/common/payment-gateways/manual-payments.php:126 +#: includes/common/payment-gateways/mijireh.php:287 +#: includes/common/payment-gateways/mollie.php:71 +#: includes/common/payment-gateways/paymill.php:149 +#: includes/common/payment-gateways/paypal-chained-payments.php:344 +#: includes/common/payment-gateways/paypal-payflow.php:376 +#: includes/common/payment-gateways/pin.php:145 +#: includes/common/payment-gateways/simplify.php:69 +#: includes/common/payment-gateways/skrill.php:121 +#: includes/common/payment-gateways/stripe.php:249 +#: includes/common/payment-gateways/wepay.php:119 +#: includes/common/shipping-modules/mp-fedex.php:243 +#: includes/common/shipping-modules/mp-flat-rate.php:63 +#: includes/common/shipping-modules/mp-pickup.php:140 +#: includes/common/shipping-modules/mp-table-rate.php:94 +#: includes/common/shipping-modules/mp-ups.php:122 +#: includes/common/shipping-modules/mp-usps.php:167 +#: includes/common/shipping-modules/mp-weight-rate.php:110 +msgid "%s Settings" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:136 +msgid "You will be redirected to the 2Checkout site to finalize your payment." +msgstr "" + +#: includes/common/helpers.php:169 includes/public/class-mp-checkout.php:1277 +msgid "Billing" +msgstr "" + +#: includes/common/helpers.php:144 +msgid "FREE" +msgstr "" + +#: includes/common/helpers.php:134 +msgid "Coupons:" +msgstr "" + +#: includes/common/helpers.php:95 +msgid "Qty" +msgstr "" + +#: includes/common/helpers.php:94 +msgid "Sku" +msgstr "" + +#: includes/common/data.php:59 +msgid "Zip Code" +msgstr "" + +#: includes/common/class-mp-taxes.php:336 +msgid "Standard Table" +msgstr "" + +#: includes/common/class-mp-product.php:2698 +msgid "Tweet" +msgstr "" + +#: includes/common/class-mp-product.php:2321 +msgid "Notification Preferences: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2320 +msgid "Edit Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2318 +msgid "Link: %s

    " +msgstr "" + +#: includes/common/class-mp-product.php:2317 +msgid "Current Inventory: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2316 +msgid "Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2314 +msgid "This message is being sent to notify you of low stock of a product in your online store according to your preferences.

    " +msgstr "" + +#: includes/common/class-mp-product.php:1817 +msgid "" +msgstr "" + +#: includes/common/class-mp-product.php:1427 +#: includes/common/class-mp-product.php:1430 +msgid "(tax incl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1422 +#: includes/common/class-mp-product.php:1425 +msgid "(tax excl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1300 +#: includes/common/class-mp-product.php:1315 +msgid "%s each" +msgstr "" + +#: includes/common/class-mp-product.php:988 +msgid "Choose Options" +msgstr "" + +#: includes/common/class-mp-product.php:526 +msgid "Choose a %s" +msgstr "" + +#: includes/common/class-mp-product.php:284 +#: includes/common/class-mp-product.php:292 +#: includes/common/class-mp-product.php:615 +msgid "We're sorry, we only have %d of this item in stock right now." +msgstr "" + +#: includes/common/class-mp-order.php:1456 +msgid "Shipped: Track Shipment" +msgstr "" + +#: includes/common/class-mp-order.php:1049 +msgid "Order Received" +msgstr "" + +#: includes/common/class-mp-order.php:1014 +msgid "In Process" +msgstr "" + +#: includes/common/class-mp-order.php:969 +msgid "Order #" +msgstr "" + +#: includes/common/class-mp-order.php:866 +msgid "Copy billing address to shipping address" +msgstr "" + +#: includes/common/class-mp-order.php:822 +#: includes/public/class-mp-checkout.php:1314 +msgid "Special Instructions" +msgstr "" + +#: includes/common/class-mp-order.php:817 +#: includes/common/payment-gateways/stripe.php:335 +msgid "Email" +msgstr "" + +#: includes/common/class-mp-order.php:813 +#: includes/common/payment-gateways/stripe.php:341 +#: includes/public/class-mp-checkout.php:416 +msgid "Phone" +msgstr "" + +#: includes/common/class-mp-order.php:791 +#: includes/common/payment-gateways/stripe.php:337 +msgid "State" +msgstr "" + +#: includes/common/class-mp-order.php:776 +msgid "Address 1" +msgstr "" + +#: includes/common/class-mp-order.php:766 +msgid "Last Name" +msgstr "" + +#: includes/common/class-mp-order.php:762 +msgid "First Name" +msgstr "" + +#: includes/common/class-mp-installer.php:677 +msgid "MarketPress requires a database update to continue working correctly. Go to update page" +msgstr "" + +#: includes/common/class-mp-installer.php:657 +msgid "MarketPress performed a quick automatic update successfully!" +msgstr "" + +#: includes/common/class-mp-installer.php:653 +msgid "Perform Update" +msgstr "" + +#: includes/common/class-mp-installer.php:647 +msgid "Please update each subsite in your WordPress network where you have older version of the MarketPress plugin." +msgstr "" + +#: includes/common/class-mp-installer.php:641 +msgid "Depending on the amount of products you have, this update could take quite some time. Please keep this window open while the update completes. If you have products with multiple variations, the progress bar may move slower, please don't exit the window." +msgstr "" + +#: includes/common/class-mp-installer.php:632 +msgid "Product Metadata" +msgstr "" + +#: includes/common/class-mp-installer.php:601 +msgid "MarketPress requires a database update to continue working correctly.
    Below you will find a list of items that require your attention." +msgstr "" + +#: includes/common/class-mp-installer.php:600 +msgid "Update MarketPress Data" +msgstr "" + +#: includes/common/class-mp-installer.php:530 +msgid "Update Data" +msgstr "" + +#: includes/common/class-mp-installer.php:67 +msgid "Complete!" +msgstr "" + +#: includes/common/class-mp-installer.php:66 +msgid "Upgrading Database...Please Wait..." +msgstr "" + +#: includes/common/class-mp-installer.php:64 +msgid "An error occurred while updating. Please refresh this page and try again." +msgstr "" + +#: includes/common/class-mp-cart.php:2447 +msgid "Some items in your cart have fallen below the quantity you currently have in your cart. We have adjusted the quantity in your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:2443 +msgid "Some items in your cart are no longer available. We have removed these items from your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:1566 +msgid "item" +msgstr "" + +#: includes/common/class-mp-cart.php:1563 +#: includes/common/class-mp-cart.php:1568 +msgid "items" +msgstr "" + +#: includes/common/class-mp-cart.php:1363 +msgid "Items/Products added to Cart will show here." +msgstr "" + +#: includes/common/class-mp-cart.php:1362 +msgid "Your shopping cart is empty." +msgstr "" + +#: includes/common/class-mp-cart.php:1357 +msgid "View Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1241 +#: includes/common/class-mp-cart.php:1298 +#: includes/public/class-mp-short-codes.php:159 +msgid "Adding..." +msgstr "" + +#: includes/common/class-mp-cart.php:1033 +msgid "Continue Shopping?" +msgstr "" + +#: includes/common/class-mp-cart.php:961 +msgid "Secure Checkout
    Shopping is always safe and secure." +msgstr "" + +#: includes/common/class-mp-cart.php:959 +msgid "You are about to submit your order!
    Please review your order details before continuing. You will be charged immediately upon clicking \"Submit Order\"." +msgstr "" + +#: includes/common/class-mp-cart.php:956 +msgid "Continue »" +msgstr "" + +#: includes/common/class-mp-cart.php:955 +msgid "Submit Order" +msgstr "" + +#: includes/common/class-mp-cart.php:818 +msgid "There are no items in your cart - go add some !" +msgstr "" + +#: includes/common/class-mp-cart.php:816 +msgid "The cart is disabled." +msgstr "" + +#: includes/common/class-mp-cart.php:735 +msgid "Estimated %s" +msgstr "" + +#: includes/common/class-mp-cart.php:717 +msgid "Estimated Shipping" +msgstr "" + +#: includes/common/class-mp-cart.php:697 +msgid "Product Total" +msgstr "" + +#: includes/common/class-mp-cart.php:670 includes/common/class-mp-cart.php:672 +msgid "Estimated Total (%s, %s)" +msgstr "" + +#: includes/common/class-mp-cart.php:668 +msgid "Estimated Total (%s)" +msgstr "" + +#: includes/common/class-mp-cart.php:666 includes/common/class-mp-cart.php:752 +msgid "Estimated Total" +msgstr "" + +#: includes/admin/widgets/product-list.php:247 +msgid "Show Thumbnail Placeholder image (if image is not set)" +msgstr "" + +#: includes/admin/widgets/cart.php:73 +msgid "Display product price" +msgstr "" + +#: includes/admin/widgets/cart.php:71 +msgid "Display product quantity" +msgstr "" + +#: includes/admin/widgets/cart.php:69 +msgid "Display product image" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:93 +msgid "General Shipping Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:773 +msgid "If you are having conflicts with the lightbox library from your theme or another plugin you should uncheck this." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:772 +msgid "Use Built-In Lightbox for Images?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:762 +msgid "Disable Large Image Display?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:688 +msgid "Show Product Image?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:682 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:684 +msgid "Show Tags List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:676 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:678 +msgid "Show Categories List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:671 +msgid "If enabled, description excerpt will be added above Add to cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:669 +msgid "Show Excerpt?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:665 +msgid "If enabled, users will be able to choose how many of the product they want to purchase before adding to their cart. If not checked, quantity could be change later on the cart page." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:663 +msgid "Show Quantity Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:649 +msgid "Settings related to the display of individual product pages." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:648 +msgid "Product Page Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:605 +msgid "Related Products Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:573 +msgid "Show Related Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:568 +msgid "Related Product Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:549 +msgid "Order Status Entries Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:510 +msgid "Sort Products By" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:497 +msgid "Products Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:492 +msgid "Paginate Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:478 +msgid "Excerpts Length" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:473 +msgid "Show Excerpts?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:450 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:746 +msgid "Image Alignment" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:412 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:708 +msgid "Custom Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:401 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:697 +msgid "Large - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:400 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:696 +msgid "Medium - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:399 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:695 +msgid "Thumbnail - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:397 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:693 +msgid "Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:386 +msgid "Select default placeholder image thumbnail when product image is not available (if empty, plugin's built-in image will be used)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:380 +msgid "Show default product placeholder thumbnail when product image is not available?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:374 +msgid "Show Product Thumbnail?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:369 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:658 +msgid "Redirect to cart page for immediate checkout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:368 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:657 +msgid "Stay on current product page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:366 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:655 +msgid "MarketPress supports two \"flows\" for adding products to the shopping cart. After adding a product to their cart, two things can happen:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:365 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:654 +msgid "Add To Cart Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:355 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:628 +msgid "Four" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:354 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:627 +msgid "Three" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:353 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:626 +msgid "Two" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:625 +msgid "One" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:349 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:622 +msgid "Set the number of products that show up in a grid row to best fit your theme" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:348 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:621 +msgid "How many products per row?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:342 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:609 +msgid "Display as grid" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:341 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:608 +msgid "Display as list" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:339 +msgid "Product Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:334 +msgid "Settings related to the display of product lists/grids." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:333 +msgid "Product List/Grid Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:314 +msgid "Show Twitter Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:309 +msgid "Twitter" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:303 +msgid "Show Share Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:297 +msgid "Recommend" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:296 +msgid "Like" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:294 +msgid "Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:283 +msgid "Show Facebook Like Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:278 +msgid "Facebook" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:257 +msgid "Show \"Pin It\" Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:252 +msgid "Pinterest" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:246 +msgid "Social Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:193 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:202 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:211 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:220 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:229 +#: includes/multisite/class-mp-admin-multisite.php:532 +#: includes/multisite/class-mp-admin-multisite.php:541 +#: includes/multisite/class-mp-admin-multisite.php:550 +msgid "Choose a Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:191 +msgid "This page will be used as the root for your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:168 +#: includes/multisite/class-mp-admin-multisite.php:586 +msgid "Create Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "uncropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "cropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:87 +#: includes/multisite/class-mp-admin-multisite.php:121 +#: includes/multisite/class-mp-admin-multisite.php:620 +msgid "An error occurred while creating the store page. Please try again." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:66 +msgid "Choose the gateway(s) that you would like to be available for checkout." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:65 +msgid "Enabled Gateways" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:78 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:146 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:179 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:213 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:274 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:307 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:341 +msgid "Text" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:71 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:139 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:172 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:206 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:267 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:300 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:334 +msgid "Subject" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:52 +msgid "Notification Email" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:510 +msgid "Enabling this option will display label `excl. tax` or `incl. tax` after price" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:509 +msgid "Display tax label?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:504 +msgid "Enabling this option will show Price + Tax, eg. if your price is 100 and your tax 20, your price will be 120" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:416 +#: includes/multisite/class-mp-admin-multisite.php:234 +msgid "Price Format" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:366 +msgid "Enabling this field will display a textbox on the shipping checkout page for users to enter special instructions for their order. Useful for product personalization, etc." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:365 +msgid "Show Special Instructions Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:360 +msgid "Universal" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:359 +msgid "Old" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1167 +#: includes/admin/store-settings/class-mp-store-settings-general.php:358 +msgid "New" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:353 +msgid "If you already use Google Analytics for your website, you can track detailed ecommerce information by enabling this setting. Choose whether you are using the new asynchronous or old tracking code. Before Google Analytics can report ecommerce activity for your website, you must enable ecommerce tracking on the profile settings page for your website. Also keep in mind that some gateways do not reliably show the receipt page, so tracking may not be accurate in those cases. It is recommended to use the PayPal gateway for the most accurate data. More information »" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:347 +msgid "Do you want to display the product price on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:346 +msgid "Show product price on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:340 +msgid "Do you want to display the product quantity on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:339 +msgid "Show product quantity on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:333 +msgid "Do you want to display the product image on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:332 +msgid "Show product image on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:327 +msgid "This option hide floating Mini Cart in top right corner." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:326 +msgid "Disable Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:316 +msgid "If unchecked your Orders admin page will be hidden" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:315 +msgid "Show admin Orders page?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:309 +msgid "Disable Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:303 +msgid "Force Login?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:297 +msgid "Hide Out of Stock Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:555 +msgid "This will prevent multiples of the same downloadable product form being added to the cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:554 +msgid "Limit Digital Products Per-order?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:268 +msgid "If you're having issues downloading large files and have worked with your hosting provider to increase your memory limits, try enabling this - just keep in mind, it's not as secure!" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:267 +msgid "Use Alternative Download Method?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:252 +msgid "Download Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:230 +msgid "Change product post type" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:51 +msgid "%s Capabilities" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-addons.php:47 +msgid "Store Settings: Add Ons: %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:254 +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:56 +msgid "Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Edit Product Attribute %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:246 +msgid "Exporters" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:238 +msgid "Short Codes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:207 +msgid "An appropriate message for key \"%s\" could not be found." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:204 +msgid "Product attribute updated successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:203 +msgid "Product attribute added successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +msgid "Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +#: includes/admin/store-settings/class-mp-store-settings-addons.php:121 +msgid "Store Settings: Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "Store Settings: Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:118 +msgid "Store Settings: Product Tags" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:117 +msgid "Store Settings: Product Categories" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Store Settings: Product Attributes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +msgid "Store Settings: Payments" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:114 +msgid "Store Settings: Shipping" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +#: includes/admin/class-mp-store-settings-admin.php:226 +msgid "Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +msgid "Store Settings: Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:112 +msgid "Store Settings: Presentation" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:111 +msgid "Store Settings: General" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1489 +msgid "Select a Product" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1447 +msgid "Reset to Defaults" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1446 +msgid "Insert Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1202 +#: includes/admin/class-mp-shortcode-builder.php:1227 +#: includes/admin/class-mp-shortcode-builder.php:1252 +msgid "The text to show in the link." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1196 +#: includes/admin/class-mp-shortcode-builder.php:1221 +#: includes/admin/class-mp-shortcode-builder.php:1246 +msgid "Whether to return a clickable link or url." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1177 +msgid "Whether to display the cart only on store pages or not." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1171 +msgid "Whether to show or hide the product price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1165 +msgid "Whether to show or hide the product quantity." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1159 +msgid "Whether to show or hide the product image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1153 +msgid "The text displayed before the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1147 +msgid "The title of the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1058 +#: includes/admin/class-mp-shortcode-builder.php:1121 +msgid "A label to prepend to the price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1032 +#: includes/admin/class-mp-shortcode-builder.php:1127 +msgid "What context for display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1004 +msgid "Set the alignment of the image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:998 +msgid "Set a custom pixel width/height. If omitted defaults to the size set by \"context\"." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:993 +msgid "Widget" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:988 +msgid "What context for preset size options." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:982 +#: includes/admin/class-mp-shortcode-builder.php:1026 +#: includes/admin/class-mp-shortcode-builder.php:1052 +#: includes/admin/class-mp-shortcode-builder.php:1077 +#: includes/admin/class-mp-shortcode-builder.php:1096 +#: includes/admin/class-mp-shortcode-builder.php:1115 +msgid "The ID of the product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:963 +msgid "Whether to display the product meta (e.g. price, buy button)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:738 +#: includes/admin/class-mp-shortcode-builder.php:905 +#: includes/admin/class-mp-shortcode-builder.php:958 +#: includes/admin/class-mp-shortcode-builder.php:992 +#: includes/admin/class-mp-shortcode-builder.php:1035 +#: includes/admin/class-mp-shortcode-builder.php:1130 +#: includes/admin/class-mp-shortcode-builder.php:1349 +msgid "List" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:957 +#: includes/admin/class-mp-shortcode-builder.php:991 +#: includes/admin/class-mp-shortcode-builder.php:1034 +#: includes/admin/class-mp-shortcode-builder.php:1129 +msgid "Single" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:953 +msgid "Whether and what context of image size to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:948 +msgid "Full" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:943 +msgid "Whether and what type of content to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:937 +msgid "Whether to display the product title." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:931 +msgid "The ID of the product to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:747 +#: includes/admin/class-mp-shortcode-builder.php:914 +msgid "Hide" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:746 +#: includes/admin/class-mp-shortcode-builder.php:913 +msgid "Show" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:744 +#: includes/admin/class-mp-shortcode-builder.php:911 +msgid "Whether or not to show the product filters." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:724 +#: includes/admin/class-mp-shortcode-builder.php:891 +#: includes/admin/class-mp-shortcode-builder.php:1335 +msgid "Limits list to a specific product tag." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:713 +#: includes/admin/class-mp-shortcode-builder.php:880 +#: includes/admin/class-mp-shortcode-builder.php:1324 +msgid "Limits list to a specific product category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:706 +#: includes/admin/class-mp-shortcode-builder.php:873 +#: includes/admin/class-mp-shortcode-builder.php:1317 +msgid "Direction to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:684 +#: includes/admin/class-mp-shortcode-builder.php:851 +#: includes/admin/class-mp-shortcode-builder.php:1295 +msgid "What field to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:678 +#: includes/admin/class-mp-shortcode-builder.php:845 +#: includes/admin/class-mp-shortcode-builder.php:1283 +msgid "How many products to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:672 +#: includes/admin/class-mp-shortcode-builder.php:839 +#: includes/admin/class-mp-shortcode-builder.php:1277 +msgid "The page number to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:666 +#: includes/admin/class-mp-shortcode-builder.php:833 +#: includes/admin/class-mp-shortcode-builder.php:1271 +msgid "Whether to paginate the product list. This is useful to only show a subset." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:808 +msgid "How many related items to show." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:790 +msgid "How to relate the products" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:784 +msgid "The product to show related items for." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:765 +msgid "The maximum number of products to display" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:647 +msgid "Comma separated list of tags (term_id) to include. For example, include=5,27 means tags that have the term_id 5 or 27 will be the only tags displayed. Defaults to include everything." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:641 +msgid "Comma separated list of tags (term_id) to exclude. For example, exclude=5,27 means tags that have the term_id 5 or 27 will NOT be displayed. Defaults to exclude nothing." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:633 +#: includes/admin/class-mp-shortcode-builder.php:1420 +msgid "Sort order." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:629 +#: includes/admin/class-mp-shortcode-builder.php:1416 +msgid "Count" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:626 +#: includes/admin/class-mp-shortcode-builder.php:1413 +msgid "Order of the tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:620 +msgid "The text/space between tags)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:616 +msgid "UL with a class of \"wp-tag-cloud\"" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:615 +msgid "separated by whitespace defined by \"separator\" parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:613 +msgid "Format of the cloud display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:607 +msgid "The number of actual tags to display in the cloud. (Use \"0\" to display all tags.)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:601 +msgid "Unit of measure as pertains to the smallest and largest values. This can be any CSS length value, e.g. pt, px, em, %." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:595 +msgid "The text size of the tag with the largest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:589 +msgid "The text size of the tag with the smallest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:570 +msgid "The \"tabindex\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:564 +msgid "The \"name\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:558 +msgid "The \"id\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:552 +msgid "Which category ID is selected." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:540 +msgid "The max depth. This is ignored unless hierarchical is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:536 +#: includes/multisite/template-functions.php:816 +msgid "No Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:414 +#: includes/admin/class-mp-shortcode-builder.php:546 +msgid "Calculates link or post counts by including items from child categories. If show_counts and hierarchical are true this is automatically set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:409 +msgid "Value of n (some number) specifies the depth (or level) to descend in displaying Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:408 +msgid "Show only top level Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:407 +msgid "All Categories displayed in flat (no indent) form (overrides hierarchical)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:406 +msgid "All Categories and child Categories (Default)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:402 +msgid "This parameter controls how many levels in the hierarchy of Categories are to be included in the list of Categories. NOTE: The \"hierarchical\" argument, which is disabled by default, will override the depth argument, unless it is true. When the argument is false, it will display all of the categories. When it is enabled it will use the value in the \"depth\" argument." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:396 +#: includes/admin/class-mp-shortcode-builder.php:1394 +msgid "Sets the number of Categories to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:390 +#: includes/admin/class-mp-shortcode-builder.php:534 +msgid "Set the text to show when no categories are listed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:384 +msgid "Set the title and style of the outer list item. If present but empty, the outer list item will not be displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:378 +#: includes/admin/class-mp-shortcode-builder.php:528 +msgid "Display sub-categories as inner list items (below the parent list item) or inline." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:368 +#: includes/admin/class-mp-shortcode-builder.php:511 +msgid "Exclude category-tree from the results. The parameter include must be empty. If the hierarchical parameter is true, then use exclude instead of exclude_tree." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:354 +msgid "Only include these categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:340 +#: includes/admin/class-mp-shortcode-builder.php:356 +#: includes/admin/class-mp-shortcode-builder.php:370 +#: includes/admin/class-mp-shortcode-builder.php:496 +#: includes/admin/class-mp-shortcode-builder.php:513 +msgid "Select Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:338 +#: includes/admin/class-mp-shortcode-builder.php:494 +msgid "Exclude one or more categories from the results. The parameter include must be empty." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:332 +msgid "Set a URI for an image (usually an rss feed icon) to act as a link to each categories' rss-2 feed. This parameter overrides the feed parameter. There is no default for this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:320 +msgid "Display a link to each category's rss-2 feed and set the link text to display. The default is no text and no feed displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:313 +#: includes/admin/class-mp-shortcode-builder.php:487 +msgid "Any" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:307 +#: includes/admin/class-mp-shortcode-builder.php:481 +msgid "Only display categories that are children of the category identified by this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:301 +msgid "Sets whether a category's description is inserted into the title attribute of the links created (i.e. <a title=\"<em>Category Description</em>\" href=\"...)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:295 +#: includes/admin/class-mp-shortcode-builder.php:475 +msgid "Toggles the display of categories with no posts." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:289 +#: includes/admin/class-mp-shortcode-builder.php:469 +#: includes/admin/class-mp-shortcode-builder.php:1388 +msgid "Toggles the display of the current count of posts in each category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:279 +msgid "Style to display the categories list in. A value of list displays the categories as list items while none generates no special display method (the list items are separated by
    tags)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:269 +#: includes/admin/class-mp-shortcode-builder.php:449 +#: includes/admin/class-mp-shortcode-builder.php:1378 +msgid "Sort order for categories (either ascending or descending)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:259 +#: includes/admin/class-mp-shortcode-builder.php:439 +#: includes/admin/class-mp-shortcode-builder.php:1368 +msgid "Sort categories alphabetically, by unique Category ID, or by the count of posts in that Category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:253 +#: includes/admin/class-mp-shortcode-builder.php:433 +msgid "If a value is entered, causes the display of a link to all categories if the style is set to list." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:219 +msgid "Select an Action" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:217 +msgid "What would you like to do?" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:216 +#: includes/admin/class-mp-shortcode-builder.php:1522 +msgid "Add E-Commerce Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:197 +msgid "Display a list of links to your store pages." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:196 +msgid "Display a link or url to the order status page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:195 +msgid "Display a link or url to the current products list page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:194 +msgid "Display a link or url to the current store page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:193 +msgid "Display a link or url to the current shopping cart page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:192 +msgid "Display the cart widget." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:191 +msgid "Display the full product meta box with price and buy now/add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:190 +msgid "Display the product stock." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:189 +msgid "Display the product SKU number(s)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:188 +msgid "Display the product price (and sale price)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:187 +msgid "Display the buy or add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:186 +msgid "Display the featured image of a given product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:185 +msgid "Display a single product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:184 +msgid "Display a list of products according to preference." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:183 +msgid "Display products related to the one being viewed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:182 +msgid "Display a list of popular products ordered by sales." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:180 +msgid "Display an HTML dropdown of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:179 +msgid "Display an HTML list of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:178 +msgid "Display a cloud or list of your product tags." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:655 +msgid "Setup your payment gateway" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:643 +#: includes/admin/class-mp-setup-wizard.php:649 +msgid "Other Gateways" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:617 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:150 +msgid "Select which calculated shipping methods the customer will be able to choose from." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:601 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:134 +#: includes/public/class-mp-checkout.php:82 +msgid "Shipping Method" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:568 +msgid "I want to charge shipping" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:523 +#: includes/admin/store-settings/class-mp-store-settings-general.php:503 +msgid "Show Price + Tax?" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:507 +msgid "I.e. Taxes, VAT, GST, etc" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:491 +#: includes/admin/store-settings/class-mp-store-settings-general.php:471 +msgid "Current Rates" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:473 +msgid "Default Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:434 +#: includes/admin/class-mp-setup-wizard.php:442 +#: includes/admin/store-settings/class-mp-store-settings-general.php:386 +#: includes/admin/store-settings/class-mp-store-settings-general.php:394 +#: includes/multisite/class-mp-admin-multisite.php:204 +#: includes/multisite/class-mp-admin-multisite.php:212 +msgid "Select a Currency" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:414 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:105 +msgid "Choose Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:411 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:103 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:104 +msgid "All Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:410 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:102 +msgid "These are the countries that you will ship to." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:409 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:101 +msgid "Target Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:401 +msgid "Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:387 +#: includes/admin/store-settings/class-mp-store-settings-general.php:640 +msgid "Zip/Postal Code Label" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:352 +#: includes/admin/store-settings/class-mp-store-settings-general.php:606 +msgid "Select a State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:335 +#: includes/admin/store-settings/class-mp-store-settings-general.php:590 +msgid "Select A Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:332 +#: includes/admin/store-settings/class-mp-store-settings-general.php:587 +msgid "Select a Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:324 +msgid "Location" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:304 +#: includes/admin/class-mp-setup-wizard.php:312 +#: includes/admin/class-mp-store-settings-admin.php:129 +#: includes/admin/class-mp-store-settings-admin.php:262 +msgid "Quick Setup" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:289 +msgid "MarketPress setup is not complete! Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2479 +msgid "Enter your product name here" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2440 +msgid "Select a %s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2426 +msgid "Each product variation needs to have product attributes assigned to it so the system knows how to differentiate one product variation from the other. It is important that you assign a category to this product before choosing any attributes." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2409 +msgid "If you would like this variation to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2320 +msgid "Sale Price (if applicable)" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2281 +msgid "If you would like the description to be different than the main product enter it here." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2229 +msgid "Image" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2202 +#: includes/admin/class-mp-shortcode-builder.php:226 +msgid "Attributes" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2166 +msgid "Create your product variations here. You can reorder variations by using the number to left of each variation, or delete one by clicking the \"x\" to the right of each variation. NOTE: The variation that shows up first in this list will be considered the \"main variation\". The details from this variation will be used in product listings." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2061 +#: includes/admin/class-mp-products-admin.php:2332 +msgid "Value must be less than regular price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2043 +#: includes/admin/class-mp-products-admin.php:2306 +msgid "Regular Price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2023 +#: includes/admin/class-mp-products-admin.php:2286 +msgid "External URL" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1988 +#: includes/admin/class-mp-products-admin.php:2245 +msgid "Enter the quantity that you have available to sell." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1987 +#: includes/admin/class-mp-products-admin.php:2244 +msgid "Inventory Count" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1977 +#: includes/admin/class-mp-products-admin.php:2234 +msgid "Track Inventory?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1871 +msgid "%1$sProduct Images%2$s %3$sAdd images of the product. The first image on the list is the featured image for this product (you can reorder images on the list)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1806 +msgid "Add variations for this product. e.g. If you are selling t-shirts, you can create Color & Size variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1804 +msgid "%3$sAdd variations for%2$s %1$sProduct%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1776 +msgid "This product has a multiple variations %1$s(e.g. Multiple colors, sizes)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1775 +msgid "This is a unique product without variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1700 +msgid "Extra Shipping Cost %1$s(if applicable)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1659 +#: includes/admin/class-mp-products-admin.php:2112 +#: includes/admin/class-mp-products-admin.php:2359 +msgid "Weight" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1636 +#: includes/admin/class-mp-products-admin.php:2098 +#: includes/admin/class-mp-products-admin.php:2416 +msgid "Please enter a valid tax rate" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1531 +msgid "Limit Per Order %1$s(limit the number of the item a shopper can buy per order)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1513 +msgid "SKU %1$s(Stock Keeping Unit)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "%1$sPrice, Inventory & Variants%2$s %3$sSet price, manage inventory and create Product Variants (if appropriate for your product).%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "Product Variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1480 +msgid "External / Affiliate Link" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1471 +msgid "Digital Download" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1470 +msgid "Physical / Tangible Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1464 +msgid "Product Kind %1$s(Physical Product, Digital, etc)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1426 +msgid "Choose Products" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1420 +msgid "If you would like, you can choose specific related products instead of using the ones generated by MarketPress" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1019 +msgid "Changes saved successfully" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:826 +msgid "Option cannot be saved. Try again." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:821 +msgid "Option saved successfully." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:467 +msgid "Img" +msgstr "" + +#: includes/admin/class-mp-product-attributes-list-table.php:57 +msgid "Product attribute(s) deleted successfully." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:162 +msgid "- Create New Variation -" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:144 +msgid "Only lowercase letters and dashes (-) are allowed." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:139 +msgid "If a slug is not entered, it will be generated automatically. Max 32 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:138 +#: includes/admin/class-mp-product-attributes-list-table.php:23 +msgid "Slug" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:130 +msgid "Max 45 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:123 +msgid "Use the numbers on the left to sort. To delete - click the \"X\" to the right of each row." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:122 +msgid "Attribute Options" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:121 +msgid "Add Option" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:105 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:523 +msgid "Sort Order" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:87 +msgid "Alphabetical" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:86 +msgid "ID" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:84 +msgid "Select how the options will be sorted." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:82 +msgid "Sort By" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:75 +msgid "The name of the attribute (e.g. color, size, etc)" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:74 +msgid "Attribute Name" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:69 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Product Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Product Attributes" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:71 +msgid "You can choose to make this page one of the following core store pages." +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:66 +msgid "Network Store Base" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:61 +msgid "Checkout Page" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:52 +msgid "Store Page Settings" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1108 +msgid "Display billing/shipping info for this customer" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1097 +msgid "View order “%s”" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1072 +msgid "Flag as:" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:952 +msgid "Move To Trash" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:948 +msgid " Received" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:927 +msgid "Enter coupon code here" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:812 +msgid "The order status could not be updated due to unexpected error. Please try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:740 +msgid "An invalid bulk action was requested. Please go back and try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:692 +msgid "The order status for order ID %1$s was updated successfully." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:688 +msgid "Order statuses successfully updated." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:530 +msgid "Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:518 +msgid "Actual Shipping Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:513 +msgid "Method Paid For" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:504 +msgid "Amount Collected" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:477 +msgid "DHL" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:408 +msgid "There is no IPN history to show at this time" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:345 +msgid "Type" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:343 +msgid "Gateway" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:301 +#: includes/common/template-functions.php:528 +msgid "Order History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:291 +msgid "IPN History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:283 +msgid "Customer Info" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:279 +msgid "Order Details" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:157 +msgid "All Dates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:320 +msgid "Add Pages to Menu" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:318 +msgid "Add-ons" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:317 +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "User Capabilities" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:316 +#: includes/admin/class-mp-setup-wizard.php:631 +#: includes/admin/store-settings/class-mp-store-settings-payments.php:50 +msgid "Payment Gateways" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:315 +msgid "Shipping Rates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:312 +msgid "Configure" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:309 +#: includes/admin/class-mp-products-admin.php:466 +#: includes/admin/class-mp-shortcode-builder.php:797 +msgid "Tags" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:308 +#: includes/admin/class-mp-products-admin.php:465 +msgid "Categories" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:300 +msgid "Manage" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:297 +msgid "Here's some quick links to manage your store and products." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:288 +msgid "low in stock" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:287 +msgid "%s product" +msgid_plural "%s products" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-dashboard-widgets.php:280 +msgid "received" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:279 +#: includes/admin/class-mp-dashboard-widgets.php:283 +msgid "%s order" +msgid_plural "%s orders" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-dashboard-widgets.php:276 +msgid "Stock & Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:261 +msgid "Last 30 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:256 +msgid "Last 7 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:251 +msgid "Yesterday" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:248 +#: includes/admin/class-mp-dashboard-widgets.php:253 +#: includes/admin/class-mp-dashboard-widgets.php:258 +#: includes/admin/class-mp-dashboard-widgets.php:263 +msgid " Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:246 +msgid "Today" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:241 +msgid "Welcome back! Here's a quick summary of your store's performance." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:196 +#: includes/admin/class-mp-products-admin.php:895 +msgid "No products out of stock." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:136 +#: includes/admin/class-mp-products-admin.php:839 +msgid "Stock Level" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:135 +#: includes/admin/class-mp-products-admin.php:838 +msgid "Variation" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:121 +msgid "Low Stock (%s)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:116 +msgid "Store Management" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:115 +msgid "Store Reports" +msgstr "" + +#: includes/admin/class-mp-ajax.php:579 +#: includes/admin/class-mp-orders-admin.php:520 +#: includes/common/payment-gateways/2checkout.php:370 +#: includes/common/payment-gateways/authorizenet-aim.php:264 +#: includes/common/payment-gateways/mollie.php:93 +#: includes/common/payment-gateways/paymill.php:196 +#: includes/common/payment-gateways/pin.php:190 +#: includes/common/payment-gateways/skrill.php:157 +#: includes/common/payment-gateways/skrill.php:168 +#: includes/common/payment-gateways/wepay.php:143 +#: includes/public/class-mp-checkout.php:404 +msgid "Select One" +msgstr "" + +#: includes/admin/class-mp-ajax.php:511 +msgid "Oops... we could not locate any orders by that ID. Please double check your order ID and try again." +msgstr "" + +#: includes/admin/class-mp-ajax.php:482 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:166 +#: includes/multisite/class-mp-admin-multisite.php:584 +msgid "Edit Page" +msgstr "" + +#: includes/admin/class-mp-ajax.php:346 +msgid "Cancel " +msgstr "" + +#: includes/admin/class-mp-ajax.php:345 +msgid "Save " +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "Edit Description" +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "HTML Markup" +msgstr "" + +#: includes/admin/class-mp-ajax.php:333 +msgid "Plain Text Only" +msgstr "" + +#: includes/admin/class-mp-ajax.php:329 +msgid "Additional Content / Information for this Variation" +msgstr "" + +#: includes/admin/class-mp-ajax.php:317 +#: includes/admin/class-mp-products-admin.php:1762 +msgid "Allow this product to be purchased even if it's out of stock" +msgstr "" + +#: includes/admin/class-mp-ajax.php:313 +#: includes/admin/class-mp-products-admin.php:1711 +msgid "Track Product Inventory" +msgstr "" + +#: includes/admin/class-mp-ajax.php:300 +msgid "Extra Shipping Cost (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:295 +msgid "Ounces:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:294 +msgid "Pounds:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:292 +msgid "Kilograms:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:287 +#: includes/admin/class-mp-products-admin.php:1649 +msgid "Charge Shipping" +msgstr "" + +#: includes/admin/class-mp-ajax.php:273 +#: includes/admin/class-mp-products-admin.php:1623 +#: includes/admin/store-settings/class-mp-store-settings-general.php:454 +msgid "Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:272 +#: includes/admin/class-mp-products-admin.php:1622 +#: includes/admin/class-mp-products-admin.php:2090 +#: includes/admin/class-mp-products-admin.php:2408 +msgid "Special Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:271 +#: includes/admin/class-mp-products-admin.php:1625 +#: includes/admin/class-mp-products-admin.php:2092 +msgid "If you would like this product to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-ajax.php:268 +#: includes/admin/class-mp-products-admin.php:1599 +msgid "Charge Taxes (Special Rate)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:256 +#: includes/admin/class-mp-products-admin.php:1593 +#: includes/admin/class-mp-products-admin.php:2077 +#: includes/admin/class-mp-products-admin.php:2348 +msgid "End Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:255 +#: includes/admin/class-mp-products-admin.php:1589 +#: includes/admin/class-mp-products-admin.php:2072 +msgid "Start Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:1568 +msgid "Enter Sale Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:250 +#: includes/admin/class-mp-products-admin.php:1547 +msgid "Set up a Sale for this Product" +msgstr "" + +#: includes/admin/class-mp-ajax.php:206 includes/admin/class-mp-ajax.php:223 +msgid "Enter " +msgstr "" + +#: includes/admin/class-mp-ajax.php:193 +msgid "Browse" +msgstr "" + +#: includes/admin/class-mp-ajax.php:184 includes/admin/class-mp-ajax.php:192 +msgid "http://" +msgstr "" + +#: includes/admin/class-mp-ajax.php:183 +msgid "External Product URL" +msgstr "" + +#: includes/admin/class-mp-ajax.php:237 +msgid "Limit Per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:177 +#: includes/admin/class-mp-products-admin.php:1520 +msgid "Enter Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:174 +#: includes/admin/class-mp-products-admin.php:1512 +msgid "Enter SKU" +msgstr "" + +#: includes/admin/class-mp-ajax.php:173 +msgid "(Stock Keeping Unit)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:158 +msgid "Remove Image" +msgstr "" + +#: includes/admin/class-mp-ajax.php:74 +msgid "Variation Draft" +msgstr "" + +#: includes/admin/class-mp-admin.php:296 +#: includes/admin/class-mp-dashboard-widgets.php:70 +msgid "Please wait...saving in progress..." +msgstr "" + +#: includes/admin/class-mp-admin.php:295 +#: includes/admin/class-mp-dashboard-widgets.php:69 +msgid "Input is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:294 +#: includes/admin/class-mp-dashboard-widgets.php:68 +msgid "Valid number is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:292 +#: includes/admin/class-mp-dashboard-widgets.php:66 +msgid "Delete %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:291 +#: includes/admin/class-mp-dashboard-widgets.php:65 +msgid "Delete %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:290 +#: includes/admin/class-mp-dashboard-widgets.php:64 +msgid "Update inventory for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:289 +#: includes/admin/class-mp-dashboard-widgets.php:63 +msgid "Update inventory for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:288 +#: includes/admin/class-mp-dashboard-widgets.php:62 +msgid "Update price for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:287 +#: includes/admin/class-mp-dashboard-widgets.php:61 +msgid "Update prices for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:285 +#: includes/admin/class-mp-dashboard-widgets.php:59 +msgid "Creating variations, please wait..." +msgstr "" + +#: includes/admin/class-mp-admin.php:96 +msgid "The following payment gateways have been deprecated, Cubepoints, Bitpay, iDEAL, Skrill, Google Checkout. If you were using one of these gateways, please setup a new payment gateway here." +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:61 +msgid "Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:71 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:71 +#: includes/common/class-mp-gdpr.php:399 includes/common/class-mp-order.php:872 +#: includes/common/helpers.php:164 includes/public/class-mp-checkout.php:1434 +msgid "Shipping Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:66 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:66 +#: includes/common/class-mp-gdpr.php:392 includes/common/class-mp-order.php:864 +#: includes/common/helpers.php:163 includes/public/class-mp-checkout.php:1427 +msgid "Billing Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:61 +msgid "Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:258 +msgid "Shipping Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:256 +msgid "Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:235 +msgid "Payment Method: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:79 +msgid "The dir %s not exist or not writeable" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:239 +msgid "Shop header/logo" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:233 +msgid "Choose a template" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:226 +msgid "Template Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:221 +msgid "Disable automatic creation/attachment of invoices when only free products are ordered" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:220 +msgid "Disable for free products" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:216 +msgid "Attach invoice to" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:214 +msgid "Customer Order Shipped email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:212 +msgid "Customer New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:211 +msgid "Admin New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:206 +msgid "download" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:205 +msgid "How do you want to view the PDF?" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:203 +msgid "Open the PDF in a new browser tab/window" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:202 +msgid "Download the PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:158 +msgid "Export PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:103 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:106 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:109 +msgid "You can't download this order invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:76 +msgid "Invalid Request" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:72 +msgid "Order not exist!" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:67 +msgid "Invalid ID" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1293 +msgid "Coupon added successfully" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1292 +msgid "Please enter a code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1247 +msgid "No end" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1200 +msgid "Valid Dates" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1195 +msgid "Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1027 +msgid "No Coupons found in Trash" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1026 +msgid "No Coupons Found" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1025 +msgid "Search Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1024 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1028 +msgid "View Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1023 +msgid "New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1020 +msgid "Create New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1017 +msgid "Manage Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1002 +msgid "An error occurred while removing your coupon. Please try again." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:964 +msgid "Coupon can't be applied to this cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:951 +msgid "Invalid coupon code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:794 +msgid "Help Text" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:789 +msgid "Form Title" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:783 +msgid "Coupons Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:764 +msgid "End Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:758 +msgid "Does coupon have an end date?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:696 +msgid "Select Products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:688 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:723 +#: includes/common/payment-gateways/paypal-payflow.php:402 +msgid "User" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:638 +msgid "Max Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:636 +msgid "Enter the maximum number of times this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:623 +msgid "Leave blank to allow all other coupons." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:622 +msgid "Select combinable coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:618 +msgid "Can this coupon be combined with other coupons?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:613 +msgid "Apply to each applicable item once per cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:612 +msgid "Apply to each applicable item and quantity ordered" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:609 +msgid "How should the discount amount be applied?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:605 +msgid "Discount Amount" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:604 +msgid "Value must either be a decimal number or a percentage" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:602 +msgid "If you would like to give a percentage-based discount make sure to include the percent (%) symbol. Otherwise, the discount will be applied as a fixed amount off." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:595 +msgid "Letters and Numbers only." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:589 +msgid "Coupon Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:447 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:795 +msgid "More than one code? That's OK! Just be sure to enter one at a time." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:444 +msgid "Apply Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:314 +msgid "Coupon Discounts" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:89 +msgid "1 add-on disabled" +msgid_plural "%s add-ons disabled" +msgstr[0] "" +msgstr[1] "" + +#: includes/addons/class-mp-addons-list-table.php:84 +msgid "1 add-on enabled" +msgid_plural "%s add-ons enabled" +msgstr[0] "" +msgstr[1] "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Disabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Enable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:129 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:67 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:135 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:168 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:202 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:263 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:296 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:330 +msgid "Enabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +msgid "Disable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:34 +msgid "Disable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:33 +msgid "Enable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:21 +#: includes/admin/class-mp-products-admin.php:2280 +#: includes/common/class-mp-product.php:2916 +msgid "Description" +msgstr "" + +#: includes/common/template-functions.php:2889 +#: includes/multisite/template-functions.php:407 +msgid "Popularity (Least Popular - Most Popular)" +msgstr "" + +#: includes/common/template-functions.php:2888 +#: includes/multisite/template-functions.php:406 +msgid "Popularity (Most Popular - Least Popular)" +msgstr "" + +#: includes/common/template-functions.php:2885 +#: includes/multisite/template-functions.php:403 +msgid "Name (Z-A)" +msgstr "" + +#: includes/common/template-functions.php:2884 +#: includes/multisite/template-functions.php:402 +msgid "Name (A-Z)" +msgstr "" + +#: includes/common/template-functions.php:2883 +#: includes/multisite/template-functions.php:401 +msgid "Release Date (Oldest to Latest)" +msgstr "" + +#: includes/common/template-functions.php:2882 +#: includes/multisite/template-functions.php:400 +msgid "Release Date (Latest to Oldest)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:284 +msgid "paid" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "One Time Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Customer Counter" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Daily Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:182 +msgid "For the most accurate rates, please select the appropriate pick up type for your business." +msgstr "" + +#: includes/admin/class-mp-admin.php:374 +msgid "Page saved." +msgstr "" + +#: includes/admin/class-mp-admin.php:370 +msgid "Custom field deleted." +msgstr "" + +#: includes/admin/class-mp-admin.php:369 +msgid "Custom field updated." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:541 +msgid "%s - The payment request expired, - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:536 +msgid "%s - The payment not credited in merchants bitpay account, action required. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:252 +msgid "If enabled, you will recieve an email for each status update on payment." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:240 +msgid "Speed at which the bitcoin transaction registers as \"confirmed\" to the store. This overrides your merchant settings on the Bitpay website." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:238 +msgid "Transaction Speed" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:244 +msgid "Low" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:243 +msgid "Medium" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:242 +msgid "High" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:177 +#: includes/common/payment-gateways/_bitpay.php:517 +#: includes/common/payment-gateways/_bitpay.php:522 +msgid "%s - The payment request is under process. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:175 +#: includes/common/payment-gateways/_bitpay.php:527 +msgid "%s - The payment request has been processed - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:150 +#: includes/common/payment-gateways/_bitpay.php:294 +msgid "Incorrect order invoice, please contact site administrator" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:141 +msgid "We could not verify order invoice details, please try again or contact site administrator for help" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:81 +msgid "Login to Simplify to get your API credentials. Enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:605 +#: includes/common/payment-gateways/paypal-express.php:647 +msgid "Express Checkout is PayPal's premier checkout solution, which streamlines the checkout process for buyers and keeps them on your site after making a purchase. Unlike PayPal Pro, there are no additional fees to use Express Checkout, though you may need to do a free upgrade to a business account. More Info »" +msgstr "" + +#. Plugin URI of the plugin/theme +msgid "https://premium.wpmudev.org/project/e-commerce/" +msgstr "" + +#. Author of the plugin/theme +msgid "WPMU DEV" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:541 +#: includes/admin/class-mp-orders-admin.php:543 +msgid "Tracking Number" +msgstr "" + +#: includes/common/class-mp-order.php:805 +#: includes/common/payment-gateways/stripe.php:336 +#: includes/public/class-mp-checkout.php:402 +msgid "Country" +msgstr "" + +#: includes/common/class-mp-order.php:784 +#: includes/common/payment-gateways/stripe.php:338 +msgid "City" +msgstr "" + +#: includes/common/class-mp-order.php:780 +msgid "Address 2" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:340 +msgid "Address" +msgstr "" + +#: includes/common/class-mp-cart.php:752 includes/common/class-mp-gdpr.php:378 +msgid "Order Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:360 +msgid "Payment Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:347 +msgid "Transaction ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:207 +msgid "The WePay Card Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:186 +#: includes/common/shipping-modules/mp-fedex.php:283 +msgid "Account ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:179 +msgid "Access Token" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:172 +msgid "Client Secret" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:165 +msgid "Client ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:159 +msgid "You must login to WePay to get your API credentials. Make sure to check \"Tokenize credit cards\" option under \"API Keys\" section of your WePay app." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:154 +msgid "When in live mode it is recommended to use SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:148 +msgid "Donation" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:147 +msgid "Event" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:146 +msgid "Personal" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:145 +msgid "Service" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:144 +msgid "Goods" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:141 +msgid "Choose type of payments" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:140 +msgid "Checkout Type" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:134 +msgid "Staging" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:131 +msgid "Choose STAGING if you have registered the app on stage.wepay.com, or PRODUCTION if you registered on www.wepay.com" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:36 +#: includes/common/payment-gateways/wepay.php:299 +msgid "WePay" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:366 +msgid "Rejected - A payment was rejected." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:360 +msgid "Failed - A payment was rejected due to an error." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:342 +msgid "PayWay balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:298 +msgid "Full path of the cacerts.crt file" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:284 +msgid "User Name" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:277 +msgid "Biller Code" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:273 +msgid "Log Directory" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:266 +msgid "Encryption Key" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:60 +msgid "Your PayWay transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:40 +#: includes/common/payment-gateways/_payway.php:41 +msgid "PayWay" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:862 +msgid "You must register this application with PayPal using your business account login to get an Application ID that will work with your API credentials. A bit of a hassle, but worth it! In the near future we will be looking for ways to simplify this process. Register then submit your application while logged in to the developer portal. Note that you do not need an Application ID for testing in sandbox mode. More Information »" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:818 +#: includes/common/payment-gateways/paypal-chained-payments.php:840 +#: includes/common/payment-gateways/paypal-express.php:705 +msgid "You must login to PayPal and create an API signature to get your credentials. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:378 +msgid "Use Payflow payment gateway to accept online payments using your Internet merchant account and processing network. PayPal Payflow Pro is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:595 +msgid "Tags Only" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:594 +msgid "Category Only" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:795 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:593 +msgid "Category & Tags" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:591 +msgid "Relate Products By" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1008 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:455 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:751 +msgid "Right" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1007 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:454 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:749 +msgid "Left" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1009 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:750 +msgid "Center" +msgstr "" + +#: marketpress.php:273 +msgid "Orders from your e-commerce store." +msgstr "" + +#: marketpress.php:231 +msgid "Products for your e-commerce store." +msgstr "" + +#: marketpress.php:222 +msgid "Edit Product" +msgstr "" + +#. Description of the plugin/theme +msgid "The complete WordPress ecommerce plugin - works perfectly with BuddyPress and Multisite too to create a social marketplace, where you can take a percentage! Activate the plugin, adjust your settings then add some products to your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:272 +msgid "Beside" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:271 +msgid "Above" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:268 +msgid "Pin Count" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:261 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:287 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:318 +msgid "All View" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:260 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:286 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:317 +msgid "Single View" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:259 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:285 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:316 +msgid "Off" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:578 +msgid "Related Product Limit" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:681 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1201 +msgid "Applies To" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:685 +msgid "All Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:487 +msgid "The label shown for the tax line item in the cart. Taxes, VAT, GST, etc." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:485 +msgid "Tax Label" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:81 +msgid "Apply" +msgstr "" + +#: includes/admin/class-mp-admin.php:192 +msgid "MarketPress Instructions" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1954 +#: includes/admin/class-mp-products-admin.php:2194 includes/common/data.php:62 +#: includes/common/helpers.php:150 +msgid "Taxes" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1417 +#: includes/common/class-mp-product.php:2900 +msgid "Related Products" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:282 +#: includes/common/shipping-modules/mp-usps.php:316 +msgid "@ Max" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "(3-5 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "Priority Mail Express International Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:92 +msgid "Priority Mail Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:171 +#: includes/common/shipping-modules/mp-pickup.php:247 +msgid "In Store" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:159 +msgid "Pickup Fee" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:141 +msgid "This option allows your customers to indicate that they will pick-up their order at your place of business." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:60 +#: includes/common/shipping-modules/mp-pickup.php:76 +#: includes/common/shipping-modules/mp-pickup.php:176 +msgid "Pickup Instructions" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:24 +#: includes/common/shipping-modules/mp-pickup.php:254 +msgid "Pickup" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping - 0.00" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:256 +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:440 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:309 +msgid "Your Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:301 +msgid "Station" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:300 +msgid "Request Courier" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:299 +msgid "Drop Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:298 +msgid "Business Service Center" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:297 +msgid "Regular Pickup" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:135 +#: includes/common/shipping-modules/mp-fedex.php:264 +msgid "Production" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:207 +msgid "Simplify Commerce by MasterCard" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:104 +msgid "When in live mode, although it is not required, Simplify recommends you have an SSL certificate." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:183 +#: includes/common/payment-gateways/simplify.php:87 +msgid "Public Key" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:175 +#: includes/common/payment-gateways/simplify.php:94 +msgid "Private Key" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:71 +msgid "Simplify helps merchants to accept online payments from Mastercard, Visa, American Express, Discover, JCB, and Diners Club cards. It's that simple. We offer a merchant account and payment gateway in a single, secure package so you can concentrate on what really matters to your business. Only supports USD currently." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:267 +msgid "%1$s" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:151 +msgid "The Simplify Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/simplify.php:18 +msgid "Simplify" +msgstr "" + +#: includes/common/payment-gateways/pin.php:255 +msgid "%1$s Card %2$s" +msgstr "" + +#: includes/common/payment-gateways/pin.php:211 +msgid "The PIN Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:187 +msgid "Selecting a currency other than currency supported by PIN may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/pin.php:164 +msgid "You must login to PIN to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/pin.php:158 +msgid "When in live mode PIN recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/pin.php:45 +#: includes/common/payment-gateways/pin.php:286 +msgid "PIN" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:830 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:534 +#: includes/common/payment-gateways/paypal-express.php:865 +msgid "The payment is pending" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:235 +msgid "The Paymill Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:169 +msgid "You must login to Paymill to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:45 +#: includes/common/payment-gateways/paymill.php:308 +msgid "Paymill" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:90 +msgid "Invalid cardholder" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:89 +msgid "Card is no longer valid or has expired" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:88 +msgid "Please enter a valid Card CVC" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:87 +msgid "Please choose a valid Expiration Date." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:99 +#: includes/common/payment-gateways/skrill.php:100 +msgid "Skrill (Moneybookers)" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:24 +#: includes/common/shipping-modules/mp-weight-rate.php:292 +msgid "Weight Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:303 +msgid "USPS Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:270 +msgid "USPS Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:264 +msgid "USPS Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:145 +msgid "Flat Rate Large" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:140 +msgid "Flat Rate Medium 2" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:135 +msgid "Flat Rate Medium 1" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:130 +msgid "Flat Rate Small" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:118 +msgid "First Class International Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:114 +msgid "Priority Mail International Small Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:112 +msgid "Priority Mail International Medium Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:110 +msgid "Priority Mail International Large Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:108 +msgid "Priority Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:106 +msgid "Express Mail International Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:104 +msgid "Express Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:98 +msgid "Library Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:96 +msgid "Media Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "First-Class Mail Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:90 +msgid "Priority Mail Small Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:88 +msgid "Priority Mail Medium Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +#: includes/common/shipping-modules/mp-usps.php:88 +#: includes/common/shipping-modules/mp-usps.php:90 +#: includes/common/shipping-modules/mp-usps.php:92 +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "(2-4 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +msgid "Priority Mail Large Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "(2-4) days" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "Priority Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "Express Mail Sunday/Holiday Delivery Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:80 +msgid "Express Mail Flat Rate Boxes Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:78 +msgid "Express Mail Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:76 +msgid "Express Mail Sunday/Holiday Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:74 +msgid "Express Mail Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:72 +#: includes/common/shipping-modules/mp-usps.php:74 +#: includes/common/shipping-modules/mp-usps.php:76 +#: includes/common/shipping-modules/mp-usps.php:78 +#: includes/common/shipping-modules/mp-usps.php:80 +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "(1-2 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:72 +msgid "Express Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:67 +#: includes/common/shipping-modules/mp-usps.php:902 +msgid "USPS" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:534 +msgid "UPS (beta)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:166 +msgid "Required if using negotiated rates" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "Worldwide Express Plus" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "(Scheduled)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "Standard" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "(2-5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "Worldwide Expedited" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:54 +msgid "Worldwide Express" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "2nd Day Air AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "(1 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "Next Day Air Early AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "Next Day Air Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "3 Day Select" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:49 +msgid "Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:48 +msgid "2nd Day Air" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "Next Day Air" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:475 +#: includes/common/shipping-modules/mp-ups.php:43 +msgid "UPS" +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:27 +#: includes/common/shipping-modules/mp-table-rate.php:318 +msgid "Table Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:71 +#: includes/common/shipping-modules/mp-table-quantity.php:77 +msgid "Shipping Cost: " +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:70 +#: includes/common/shipping-modules/mp-table-quantity.php:76 +msgid "If quantity is greater than:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:66 +msgid "Each band must be a higher price than the one above it." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:56 +msgid "Number of Bands:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:53 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Each layer must be a higher quantity than the previous." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:51 +msgid "Table Quantity Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:31 +msgid "Table Quantity" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:135 +#: includes/common/shipping-modules/mp-table-rate.php:174 +#: includes/common/shipping-modules/mp-weight-rate.php:189 +msgid "European Union" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:123 +#: includes/common/shipping-modules/mp-table-rate.php:162 +#: includes/common/shipping-modules/mp-weight-rate.php:177 +msgid "United States" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:111 +#: includes/common/shipping-modules/mp-table-rate.php:151 +#: includes/common/shipping-modules/mp-weight-rate.php:166 +msgid "In Country" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:146 +#: includes/common/shipping-modules/mp-table-rate.php:186 +#: includes/common/shipping-modules/mp-weight-rate.php:201 +msgid "International" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:101 +#: includes/common/shipping-modules/mp-table-rate.php:141 +#: includes/common/shipping-modules/mp-weight-rate.php:156 +msgid "Canada" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:92 +#: includes/common/shipping-modules/mp-table-rate.php:132 +#: includes/common/shipping-modules/mp-weight-rate.php:147 +msgid "Hawaii and Alaska" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:83 +#: includes/common/shipping-modules/mp-table-rate.php:123 +#: includes/common/shipping-modules/mp-weight-rate.php:138 +msgid "Lower 48 States" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:64 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping." +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:25 +#: includes/common/shipping-modules/mp-flat-rate.php:223 +msgid "Flat Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:761 +msgid "FedEx (beta)" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Centimeters" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Inches" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1676 +#: includes/admin/class-mp-setup-wizard.php:547 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:166 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +msgid "Kilograms" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:103 +msgid " %1$s - %2$s" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:358 +msgid "Max Weight per Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:356 +msgid "Box Dimensions" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:354 +msgid "Box Name" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:344 +msgid "Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:343 +msgid "For each box defined enter the maximum weight it can contain." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:341 +msgid "Enter your standard box sizes as LengthxWidthxHeight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:386 +#: includes/common/shipping-modules/mp-ups.php:193 +#: includes/common/shipping-modules/mp-usps.php:234 +#: includes/common/shipping-modules/mp-usps.php:338 +msgid "Standard Boxes and Weight Limits" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:328 +msgid "Handling Charge per Interntional Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:294 +msgid "Handling Charge per Domestic Shipment " +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:388 +#: includes/common/shipping-modules/mp-ups.php:196 +#: includes/common/shipping-modules/mp-usps.php:237 +msgid "Add Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "(Next Day)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +msgid "Europe First International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:62 +msgid "International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:61 +#: includes/common/shipping-modules/mp-fedex.php:62 +#: includes/common/shipping-modules/mp-ups.php:54 +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "(1-3 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:61 +msgid "International First" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "(5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "International Economy" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "(2-7 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "Smart Post" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:55 +#: includes/common/shipping-modules/mp-ups.php:49 +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "(1-5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:55 +msgid "Ground Home Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "(1-7 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "Fedex Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:53 +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "(3 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:53 +msgid "Fedex Express Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +#: includes/common/shipping-modules/mp-ups.php:48 +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "(2 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +msgid "Fedex 2 Day" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "(2 Days am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "Fedex 2 Day AM" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "(1 Day)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +msgid "Standard Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "(1 Day am )" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "Priority Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "(1 Day am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "First Overnight" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:476 +#: includes/common/shipping-modules/mp-fedex.php:31 +msgid "FedEx" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:270 +#: includes/common/payment-gateways/simplify.php:179 +#: includes/common/payment-gateways/stripe.php:365 +msgid "%1$s Card ending in %2$s - Expires %3$s" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:259 +#: includes/common/payment-gateways/pin.php:238 +#: includes/common/payment-gateways/simplify.php:171 +msgid "%s Store Purchase - Order ID: %s, Email: %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:266 +msgid "You must login to Stripe to get your API credentials. You can enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:261 +msgid "When in live mode Stripe recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:311 +msgid "The Stripe Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:263 +#: includes/common/payment-gateways/paymill.php:122 +#: includes/common/payment-gateways/stripe.php:222 +msgid "Card Number" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:86 +msgid "Please enter a valid Credit Card Number." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:45 +#: includes/common/payment-gateways/stripe.php:433 +msgid "Stripe" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:750 +msgid "Sets the background color for the payment page. By default, the color is white." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:745 +msgid "Sets the background color for the header of the payment page. By default, the color is white." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:740 +msgid "Sets the border color around the header of the payment page. The border is a 2-pixel perimeter around the header space, which is 750 pixels wide by 90 pixels high. By default, the color is black." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:735 +msgid "URL for an image you want to appear at the top left of the payment page. The image has a maximum size of 750 pixels wide by 90 pixels high. PayPal recommends that you provide an image that is stored on a secure (https) server. If you do not specify an image, the business name is displayed." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:857 +#: includes/common/payment-gateways/paypal-express.php:1131 +msgid "The payment is pending because it is part of an order that has been authorized but not settled." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:853 +#: includes/common/payment-gateways/paypal-express.php:1127 +msgid "The payment is pending because it has been authorized but not settled. You must capture the funds first." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:847 +#: includes/common/payment-gateways/paypal-express.php:1120 +msgid "You denied the payment when it was marked as pending." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:837 +#: includes/common/payment-gateways/paypal-express.php:1108 +msgid "A reversal has occurred on this transaction due to an unknown reason." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:836 +#: includes/common/payment-gateways/paypal-express.php:1107 +msgid "A reversal has occurred on this transaction because you have given the customer a refund." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:835 +#: includes/common/payment-gateways/paypal-express.php:1106 +msgid "A reversal has occurred on this transaction due to a complaint about the transaction from your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:834 +#: includes/common/payment-gateways/paypal-express.php:1105 +msgid "A reversal has occurred on this transaction due to your customer triggering a money-back guarantee." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:833 +#: includes/common/payment-gateways/paypal-express.php:1104 +msgid "A reversal has occurred on this transaction due to a chargeback by your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:1101 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer:" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:826 +#: includes/common/payment-gateways/paypal-express.php:1097 +msgid "A payment has been accepted." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:818 +#: includes/common/payment-gateways/paypal-express.php:1087 +msgid "The transaction has not terminated, e.g. an authorization may be awaiting completion." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:531 +#: includes/common/payment-gateways/paypal-express.php:810 +#: includes/common/payment-gateways/paypal-express.php:1077 +msgid "The payment has failed. This happens only if the payment was made from your customer's bank account." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:806 +#: includes/common/payment-gateways/paypal-express.php:1072 +msgid "An authorization for this transaction has been voided." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:802 +#: includes/common/payment-gateways/paypal-express.php:1067 +msgid "The authorization period for this payment has been reached." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:798 +#: includes/common/payment-gateways/paypal-express.php:1062 +msgid "A reversal has been canceled; for example, when you win a dispute and the funds for the reversal have been returned to you." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:499 +#: includes/common/payment-gateways/paypal-express.php:1163 +msgid "PayPal Express Checkout" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:798 +msgid "Gateway Settings Page Message" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:725 +msgid "Signature" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:506 +#: includes/common/payment-gateways/eway31.php:533 +#: includes/common/shipping-modules/mp-fedex.php:276 +msgid "API Password" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:773 +msgid "Enter a percentage of all store sales to collect as a fee. Decimals allowed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:757 +msgid "Using PayPal Chained Payments allows you as the multisite network owner to collect a predefined fee or percentage of all sales on network MarketPress stores! This is invisible to the customers who purchase items in a store, and all PayPal fees will be charged to the store owner. To use this option you must create API credentials, and you should make all other gateways unavailable or limited above." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:338 +msgid "Please be aware that we will deduct a ?% fee from the total of each transaction in addition to any fees PayPal may charge you. If for any reason you need to refund a customer for an order, please contact us with a screenshot of the refund receipt in your PayPal history as well as the Transaction ID of our fee deduction so we can issue you a refund. Thank you!" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:698 +#: includes/common/payment-gateways/paypal-express.php:149 +msgid "There was a problem connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:470 +#: includes/common/payment-gateways/paypal-express.php:1053 +msgid "There was a problem verifying the IPN string with PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:310 +msgid "There was a problem connecting to PayPal to check the status of your purchase. Please check the status of your order here »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:539 +#: includes/common/payment-gateways/paypal-chained-payments.php:254 +#: includes/common/payment-gateways/paypal-express.php:1139 +msgid "The payment is pending." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:251 +#: includes/common/payment-gateways/paypal-chained-payments.php:531 +#: includes/common/payment-gateways/paypal-express.php:862 +#: includes/common/payment-gateways/paypal-express.php:1136 +msgid "The payment is pending for an unknown reason. For more information, contact PayPal customer service." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:250 +#: includes/common/payment-gateways/paypal-chained-payments.php:530 +#: includes/common/payment-gateways/paypal-express.php:861 +#: includes/common/payment-gateways/paypal-express.php:1135 +msgid "The payment is pending because you are not yet verified. You must verify your account before you can accept this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:249 +#: includes/common/payment-gateways/paypal-chained-payments.php:529 +#: includes/common/payment-gateways/paypal-express.php:860 +#: includes/common/payment-gateways/paypal-express.php:1134 +msgid "The payment is pending because it was made via credit card and you must upgrade your account to Business or Premier status in order to receive the funds. It can also mean that you have reached the monthly limit for transactions on your account." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:248 +#: includes/common/payment-gateways/paypal-chained-payments.php:528 +#: includes/common/payment-gateways/paypal-express.php:859 +#: includes/common/payment-gateways/paypal-express.php:1133 +msgid "The payment is pending because it was made to an email address that is not yet registered or confirmed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:247 +#: includes/common/payment-gateways/paypal-chained-payments.php:527 +#: includes/common/payment-gateways/paypal-express.php:858 +#: includes/common/payment-gateways/paypal-express.php:1132 +msgid "The payment is pending while it is being reviewed by PayPal for risk." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:246 +#: includes/common/payment-gateways/paypal-chained-payments.php:526 +#: includes/common/payment-gateways/paypal-express.php:856 +#: includes/common/payment-gateways/paypal-express.php:1130 +msgid "You do not have a balance in the currency sent, and you do not have your Payment Receiving Preferences set to automatically convert and accept this payment. You must manually accept or deny this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:245 +#: includes/common/payment-gateways/paypal-chained-payments.php:525 +#: includes/common/payment-gateways/paypal-express.php:855 +#: includes/common/payment-gateways/paypal-express.php:1129 +msgid "The payment is pending because you hold a non-U.S. account and do not have a withdrawal mechanism. You must manually accept or deny this payment from your Account Overview." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:244 +#: includes/common/payment-gateways/paypal-chained-payments.php:524 +#: includes/common/payment-gateways/paypal-express.php:854 +#: includes/common/payment-gateways/paypal-express.php:1128 +msgid "The payment is pending because it was made by an eCheck that has not yet cleared." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:243 +#: includes/common/payment-gateways/paypal-chained-payments.php:523 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:236 +#: includes/common/payment-gateways/paypal-chained-payments.php:516 +msgid "The transaction was rejected by the receiver (you)." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:510 +#: includes/common/payment-gateways/paypal-express.php:843 +#: includes/common/payment-gateways/paypal-express.php:1115 +msgid "You refunded the payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:224 +#: includes/common/payment-gateways/paypal-chained-payments.php:504 +msgid "The transaction is in progress." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:212 +#: includes/common/payment-gateways/paypal-chained-payments.php:491 +#: includes/common/payment-gateways/paypal-express.php:814 +#: includes/common/payment-gateways/paypal-express.php:1082 +msgid "The payment has been partially refunded." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:202 +#: includes/common/payment-gateways/paypal-chained-payments.php:481 +msgid "PayPal balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:177 +msgid "There was a problem connecting to PayPal to setup your purchase. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:122 +msgid "Your PayPal transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:50 +#: includes/common/payment-gateways/paypal-chained-payments.php:53 +#: includes/common/payment-gateways/paypal-chained-payments.php:732 +#: includes/common/payment-gateways/paypal-express.php:500 +#: includes/common/payment-gateways/paypal-express.php:938 +msgid "PayPal" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:48 +#: includes/common/payment-gateways/paypal-chained-payments.php:730 +#: includes/common/payment-gateways/paypal-chained-payments.php:756 +#: includes/common/payment-gateways/paypal-chained-payments.php:873 +msgid "PayPal Chained Payments" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:59 +#: includes/common/payment-gateways/paypal-payflow.php:467 +msgid "PayPal Payflow Pro" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:378 +msgid "Chargeback - A payment was reversed due to a chargeback. The funds have been removed from your account balance and returned to the buyer." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:372 +msgid "Failed - The Credit Card or Direct Debit transaction was declined." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:354 +#: includes/common/payment-gateways/skrill.php:366 +msgid "Cancelled - The payment was cancelled manually by the sender in their online account history or was auto-cancelled after 14 days pending." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:360 +msgid "Pending - The payment is pending. It can take 2-3 days for bank transfers to complete." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:349 +#: includes/common/payment-gateways/skrill.php:354 +msgid "Processed - The payment has been completed, and the funds have been added successfully to your Moneybookers account balance." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:189 +msgid "Shown to the customer on the confirmation screen - the end step of the process - a note, confirmation number, or any other message. Line breaks <br> may be used for longer messages." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:188 +msgid "Confirmation Note (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:183 +msgid "The URL of the logo which you would like to appear at the top of the payment form. The logo must be accessible via HTTPS otherwise it will not be shown. For best integration results we recommend that you use a logo with dimensions up to 200px in width and 50px in height." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:182 +msgid "Logo Image (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:177 +msgid "The name of this store, which will be shown on the gateway. If no value is submitted, the account email will be shown as the recipient of the payment." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:176 +msgid "Merchant Name (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:165 +msgid "Language" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:368 +#: includes/common/payment-gateways/authorizenet-aim.php:262 +#: includes/common/payment-gateways/eway.php:363 +#: includes/common/payment-gateways/eway31.php:471 +#: includes/common/payment-gateways/mollie.php:91 +#: includes/common/payment-gateways/paymill.php:193 +#: includes/common/payment-gateways/paypal-chained-payments.php:356 +#: includes/common/payment-gateways/paypal-express.php:688 +#: includes/common/payment-gateways/paypal-payflow.php:432 +#: includes/common/payment-gateways/pin.php:186 +#: includes/common/payment-gateways/skrill.php:152 +#: includes/common/payment-gateways/stripe.php:288 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:104 +msgid "Currency" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:359 +#: includes/common/payment-gateways/skrill.php:143 +msgid "Secret Word" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:261 +msgid "Order ID:" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:234 +msgid "Complete Checkout" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:204 +msgid "Your Moneybookers transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:155 +msgid "This is the email text to send to those who have made manual payment checkouts. You should include your manual payment instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:257 +#: includes/common/payment-gateways/manual-payments.php:128 +msgid "Record payments manually, such as by Cash, Check, or EFT." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:71 +msgid "Manual/Invoice" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:648 +#: includes/common/payment-gateways/manual-payments.php:35 +#: includes/common/payment-gateways/manual-payments.php:36 +msgid "Manual Payment" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:34 +#: includes/common/payment-gateways/manual-payments.php:163 +msgid "Manual Payments" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:288 +msgid "iDEAL Simulator (for testing)" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:287 +msgid "ABN Amro Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:286 +msgid "Friesland Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:285 +msgid "Rabobank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:284 +msgid "ING Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:279 +msgid "Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:270 +msgid "To make it easier to pay for online products and services, the Dutch banking community has developed the iDEAL online payment method. iDEAL allows online payments to be made using online banking in EUR only." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:247 +#: includes/common/payment-gateways/_payway.php:199 +#: includes/common/payment-gateways/manual-payments.php:68 +msgid "Invoiced" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1016 +msgid "Coupon" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:77 +#: includes/common/payment-gateways/_ideal.php:250 +#: includes/common/payment-gateways/_payway.php:202 +msgid "iDEAL" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:76 +msgid "iDEAL (beta)" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:327 +msgid "Merchant Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:293 +#: includes/common/payment-gateways/_payway.php:302 +#: includes/common/payment-gateways/payfast.php:324 +msgid "Merchant ID" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:462 +msgid "eWay Rapid 3.0 Payments lets merchants recieve credit card payments through eWay without need for users to leave the shop. Note this gateway requires a valid SSL certificate configured for this site." +msgstr "" + +#: includes/common/payment-gateways/eway.php:452 +msgid "There was a problem connecting to eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/eway.php:432 +#: includes/common/payment-gateways/eway.php:437 +msgid "The url of the image can be hosted on your website and pass the secure https:// path of the image to be displayed at the top of the website. This is the second image block on the webpage and is restricted to 960px X 65px. A default secure image is used if none is supplied." +msgstr "" + +#: includes/common/payment-gateways/eway.php:431 +#: includes/common/payment-gateways/eway.php:436 +msgid "Company Logo (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:427 +msgid "The page footer text can be customised and populated below the customer's order details. Useful for contact information." +msgstr "" + +#: includes/common/payment-gateways/eway.php:426 +msgid "Page Footer (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:421 +msgid "Page Description (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:417 +#: includes/common/payment-gateways/eway.php:422 +msgid "This value is used to populate the browsers title bar at the top of the screen." +msgstr "" + +#: includes/common/payment-gateways/eway.php:416 +msgid "Page Title (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:412 +msgid "This will be displayed as the company the customer is purchasing from, including this is highly recommended." +msgstr "" + +#: includes/common/payment-gateways/eway.php:411 +msgid "Company Name" +msgstr "" + +#: includes/common/payment-gateways/eway.php:394 +msgid "Customer ID" +msgstr "" + +#: includes/common/payment-gateways/eway.php:381 +#: includes/common/payment-gateways/eway31.php:488 +msgid "Live API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway.php:371 +#: includes/common/payment-gateways/eway31.php:479 +msgid "Gateway Mode" +msgstr "" + +#: includes/common/payment-gateways/eway.php:354 +msgid "The Hosted Page is a webpage hosted on eWAY's side eliminating the need for merchants to capture, transmit or store credit card numbers. At the checkout time the merchant automatically redirects the customer to the Hosted Page where they would enter their details and have the transaction processed. Upon completion of the transaction the customer is redirected back to the MarketPress checkout confirmation page." +msgstr "" + +#: includes/common/payment-gateways/eway.php:314 +msgid "There was a problem with your credit card information: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:300 +msgid "Paid - The card has been processed - %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:253 +msgid "There was a problem setting up the transaction with eWay: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:245 +#: includes/common/payment-gateways/eway.php:289 +msgid "There was a problem parsing the response from eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:159 +#: includes/common/payment-gateways/eway.php:189 +#: includes/common/payment-gateways/paypal-chained-payments.php:634 +#: includes/common/payment-gateways/paypal-express.php:322 +#: includes/common/payment-gateways/paypal-express.php:473 +msgid "%s Store Purchase - Order ID: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:147 +#: includes/common/payment-gateways/eway.php:462 +msgid "eWay Shared Payments" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:214 +msgid "This is the email text to send to those who have made CubePoints checkouts. You should include your CubePoints instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:212 +#: includes/common/payment-gateways/free_orders.php:188 +#: includes/common/payment-gateways/manual-payments.php:154 +msgid "Order Confirmation Email" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:207 +#: includes/common/payment-gateways/manual-payments.php:149 +msgid "Confirmation User Instructions" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:202 +#: includes/common/payment-gateways/manual-payments.php:144 +msgid "User Instructions" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:198 +#: includes/common/payment-gateways/free_orders.php:170 +#: includes/common/payment-gateways/manual-payments.php:139 +msgid "Enter a public name for this payment method that is displayed to users - No HTML" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:532 +#: includes/common/payment-gateways/_cubepoints.php:196 +#: includes/common/payment-gateways/free_orders.php:169 +#: includes/common/payment-gateways/manual-payments.php:138 +msgid "Method Name" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:187 +msgid "Accept CubePoints as payment(requires the CubePoints plugin)." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:140 +msgid "Sorry, but you do not appear to have enough points to complete this purchase!" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:124 +msgid "%s Store Purchase" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:79 +#: includes/common/payment-gateways/_cubepoints.php:171 +msgid "Your current points: " +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:133 +#: includes/common/payment-gateways/_cubepoints.php:197 +msgid "CubePoints" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:344 +msgid "Authorize.net AIM Checkout" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:331 +msgid "Custom API URL" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:332 +msgid "Many other gateways have Authorize.net API emulators. To use one of these gateways input their API post url here." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:322 +msgid "Request a delimited response from the payment gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:316 +msgid "Security: MD5 Hash" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:317 +msgid "The payment gateway generated MD5 hash value that can be used to authenticate the transaction response. Not needed because responses are returned using an SSL connection." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:306 +msgid "Customer Receipt Email Footer" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:296 +msgid "Customer Receipt Email Header" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:297 +#: includes/common/payment-gateways/paypal-payflow.php:446 +msgid "This text will appear as the header of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:282 +msgid "Encapsulation Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:283 +msgid "Authorize.net default is blank. Otherwise, get this from your credit card processor. If the transactions are going through, but getting strange responses, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:273 +msgid "Optional settings to control advanced options" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:224 +#: includes/common/payment-gateways/authorizenet-aim.php:272 +msgid "Advanced Settings" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:253 +msgid "Transaction Key" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:246 +msgid "Login ID" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:396 +msgid "Gateway Credentials" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:221 +msgid "Authorize.net AIM is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway. USD is the only currency supported by this gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:205 +msgid "There was a problem finalizing your purchase. %s Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:519 +#: includes/common/payment-gateways/paypal-chained-payments.php:218 +#: includes/common/payment-gateways/paypal-chained-payments.php:498 +#: includes/common/payment-gateways/paypal-express.php:822 +#: includes/common/payment-gateways/paypal-express.php:1092 +msgid "The payment has been completed, and the funds have been added successfully to your account balance." +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:233 +msgid "Please enter a valid credit card security code" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:224 +#: includes/public/class-mp-checkout.php:867 +msgid "Please enter a valid credit card number" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:221 +msgid "Please enter your credit card number" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:217 +msgid "Please enter your credit card security code" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:213 +msgid "Please select your credit card expiration date." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:299 +#: includes/common/payment-gateways/authorizenet-aim.php:50 +#: includes/common/payment-gateways/eway.php:148 +#: includes/common/payment-gateways/eway.php:298 +#: includes/common/payment-gateways/eway31.php:267 +#: includes/common/payment-gateways/paymill.php:46 +#: includes/common/payment-gateways/paypal-express.php:972 +#: includes/common/payment-gateways/paypal-payflow.php:60 +#: includes/common/payment-gateways/pin.php:46 +#: includes/common/payment-gateways/simplify.php:19 +#: includes/common/payment-gateways/stripe.php:46 +#: includes/common/payment-gateways/wepay.php:37 +msgid "Credit Card" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:49 +msgid "Authorize.net Checkout" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:156 +#: includes/common/payment-gateways/stripe.php:293 +msgid "Selecting a currency other than that used for your store may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:352 +msgid "Seller ID" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:340 +#: includes/common/payment-gateways/_ideal.php:311 +#: includes/common/payment-gateways/authorizenet-aim.php:234 +#: includes/common/payment-gateways/eway.php:376 +#: includes/common/payment-gateways/payfast.php:315 +#: includes/common/payment-gateways/paypal-chained-payments.php:368 +#: includes/common/payment-gateways/paypal-express.php:699 +#: includes/common/payment-gateways/paypal-payflow.php:391 +msgid "Live" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:339 +#: includes/common/payment-gateways/authorizenet-aim.php:233 +#: includes/common/payment-gateways/eway.php:375 +#: includes/common/payment-gateways/paypal-chained-payments.php:367 +#: includes/common/payment-gateways/paypal-express.php:698 +#: includes/common/payment-gateways/paypal-payflow.php:390 +#: includes/common/shipping-modules/mp-fedex.php:263 +msgid "Sandbox" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:336 +#: includes/common/payment-gateways/_ideal.php:307 +#: includes/common/payment-gateways/authorizenet-aim.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:365 +#: includes/common/payment-gateways/paypal-express.php:695 +#: includes/common/payment-gateways/paypal-payflow.php:387 +#: includes/common/payment-gateways/wepay.php:130 +#: includes/common/shipping-modules/mp-fedex.php:260 +msgid "Mode" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:288 +#: includes/common/payment-gateways/mijireh.php:242 +#: includes/common/payment-gateways/mollie.php:212 +msgid "The order has been received" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:74 +#: includes/common/payment-gateways/2checkout.php:75 +#: includes/common/payment-gateways/2checkout.php:435 +msgid "2Checkout" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:306 +msgid "Confirm" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:218 +#: includes/common/class-mp-cart.php:974 includes/common/class-mp-cart.php:1354 +#: includes/common/template-functions.php:918 +msgid "Checkout" +msgstr "" + +#: includes/common/template-functions.php:207 +msgid "Check Order Status" +msgstr "" + +#: includes/common/template-functions.php:235 +msgid "View Products" +msgstr "" + +#: includes/common/template-functions.php:263 +msgid "Visit Store" +msgstr "" + +#: includes/common/template-functions.php:2912 +#: includes/multisite/template-functions.php:448 +msgid "Order By" +msgstr "" + +#: includes/common/template-functions.php:2887 +#: includes/multisite/template-functions.php:405 +msgid "Price (High to Low)" +msgstr "" + +#: includes/common/template-functions.php:2886 +#: includes/multisite/template-functions.php:404 +msgid "Price (Low to High)" +msgstr "" + +#: includes/common/template-functions.php:2881 +#: includes/multisite/template-functions.php:399 +msgid "Default" +msgstr "" + +#: includes/common/template-functions.php:2858 +msgid "Show All" +msgstr "" + +#: includes/common/class-mp-product.php:2048 +msgid "View Larger Image »" +msgstr "" + +#: includes/common/class-mp-product.php:979 +msgid "Out of Stock" +msgstr "" + +#: includes/common/template-functions.php:148 +msgid "Price: " +msgstr "" + +#: includes/multisite/template-functions.php:833 +msgid "No Tags" +msgstr "" + +#: includes/common/template-functions.php:3162 +msgid "Uncategorized" +msgstr "" + +#: includes/common/class-mp-cart.php:569 includes/common/class-mp-order.php:604 +#: includes/common/helpers.php:115 +msgid "Download" +msgstr "" + +#: includes/common/class-mp-cart.php:1353 +msgid "Empty Cart" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:291 +#: includes/common/payment-gateways/paypal-express.php:718 +#: includes/common/payment-gateways/paypal-payflow.php:423 +#: includes/common/shipping-modules/mp-ups.php:158 +#: includes/public/class-mp-checkout.php:1254 +#: includes/public/class-mp-checkout.php:1383 +msgid "Password" +msgstr "" + +#: includes/common/payment-gateways/eway.php:387 +#: includes/common/payment-gateways/paypal-express.php:711 +#: includes/common/shipping-modules/mp-usps.php:185 +#: includes/public/class-mp-checkout.php:1249 +msgid "Username" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:437 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:790 +msgid "Have a coupon code?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:321 +#: includes/admin/class-mp-orders-admin.php:526 +#: includes/common/class-mp-cart.php:592 +msgid "Remove" +msgstr "" + +#: includes/admin/class-mp-ajax.php:316 +msgid "Quantity:" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2140 +#: includes/admin/class-mp-products-admin.php:2387 +#: includes/common/shipping-modules/class-mp-shipping-api.php:507 +msgid "Extra Shipping Cost" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:403 +msgid "Choose a Shipping Method:" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1691 +#: includes/admin/class-mp-products-admin.php:2131 +#: includes/admin/class-mp-products-admin.php:2378 +#: includes/common/shipping-modules/class-mp-shipping-api.php:228 +msgid "Ounces" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1684 +#: includes/admin/class-mp-products-admin.php:2123 +#: includes/admin/class-mp-products-admin.php:2369 +#: includes/admin/class-mp-setup-wizard.php:546 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:165 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +#: includes/common/shipping-modules/class-mp-shipping-api.php:227 +msgid "Pounds" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:226 +msgid "Product Weight:" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:214 +msgid "Weight (Kilograms)" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:82 +msgid "Number of Categories:" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:72 +msgid "Product Count" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:20 +#: includes/admin/class-mp-product-attributes-admin.php:129 +#: includes/admin/class-mp-product-attributes-list-table.php:22 +#: includes/admin/class-mp-products-admin.php:2216 +#: includes/admin/class-mp-shortcode-builder.php:628 +#: includes/admin/class-mp-shortcode-builder.php:1415 +#: includes/admin/widgets/ms-global-categories.php:70 +#: includes/common/shipping-modules/mp-fedex.php:395 +#: includes/common/shipping-modules/mp-ups.php:202 +#: includes/common/shipping-modules/mp-usps.php:243 +#: includes/public/class-mp-checkout.php:314 +msgid "Name" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:67 +msgid "Order Categories By:" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:24 +#: includes/admin/widgets/ms-global-categories.php:50 +msgid "Global Product Categories" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:15 +msgid "Global Product Category List" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:13 +msgid "Displays a network-wide HTML list of product categories from network MarketPress stores." +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:24 +#: includes/admin/widgets/ms-global-tag-cloud.php:45 +msgid "Global Product Tags" +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:15 +msgid "Global Product Tag Cloud" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:947 +#: includes/admin/widgets/ms-global-product-list.php:173 +msgid "Excerpt" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:169 +msgid "Content To Show:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:140 +msgid "Limit To Product Tag:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:132 +msgid "Limit To Product Category:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:72 +msgid "Global Products" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:16 +msgid "Global Product List" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:14 +msgid "Shows a customizable global list of products from network MarketPress stores." +msgstr "" + +#: includes/common/class-mp-product.php:974 +#: includes/multisite/template-functions.php:731 +msgid "Buy Now »" +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:13 +msgid "Displays global most used product tags in cloud format from network MarketPress stores." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:438 +msgid "Theme Permissions" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:402 +#: includes/multisite/class-mp-admin-multisite.php:448 +msgid "No Access" +msgstr "" + +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:120 +msgid "Pro Site Level" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:401 +#: includes/multisite/class-mp-admin-multisite.php:447 +msgid "All Can Use" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:390 +msgid "Gateway Permissions" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:375 +msgid "Select a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:350 +msgid "Global Gateway" +msgstr "" + +#. Plugin Name of the plugin/theme +msgid "MarketPress" +msgstr "" + +#: includes/admin/widgets/product-tag-cloud.php:7 +msgid "Your most used product tags in cloud format from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/categories.php:79 +msgid "Show hierarchy" +msgstr "" + +#: includes/admin/widgets/categories.php:76 +#: includes/admin/widgets/ms-global-categories.php:92 +msgid "Show product counts" +msgstr "" + +#: includes/admin/widgets/categories.php:73 +msgid "Show as dropdown" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:710 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:736 +#: includes/admin/widgets/categories.php:30 +msgid "Select Category" +msgstr "" + +#: includes/admin/widgets/categories.php:7 +msgid "A list or dropdown of product categories from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/product-list.php:250 +msgid "Show Buy Button" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:183 +#: includes/admin/widgets/product-list.php:244 +msgid "Show Price" +msgstr "" + +#: includes/admin/widgets/product-list.php:241 +msgid "Show Excerpt" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:155 +#: includes/admin/widgets/product-list.php:238 +msgid "Thumbnail Size:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:153 +#: includes/admin/widgets/product-list.php:237 +msgid "Show Thumbnail" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:147 +#: includes/admin/widgets/product-list.php:233 +msgid "Display Settings" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:136 +#: includes/admin/widgets/ms-global-product-list.php:144 +#: includes/admin/widgets/product-list.php:230 +msgid "Enter the Slug" +msgstr "" + +#: includes/admin/widgets/product-list.php:228 +#: includes/common/template-functions.php:894 +msgid "Tag" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:686 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:712 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:739 +#: includes/admin/class-mp-shortcode-builder.php:796 +#: includes/admin/widgets/product-list.php:227 +#: includes/common/template-functions.php:886 +#: includes/common/template-functions.php:2907 +msgid "Category" +msgstr "" + +#: includes/admin/widgets/product-list.php:226 +msgid "No Filter" +msgstr "" + +#: includes/admin/widgets/product-list.php:224 +msgid "Taxonomy Filter:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:108 +#: includes/admin/widgets/product-list.php:209 +msgid "Order Products By:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:101 +#: includes/admin/widgets/product-list.php:206 +msgid "Number of Products:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:98 +#: includes/admin/widgets/product-list.php:204 +msgid "List Settings" +msgstr "" + +#: includes/admin/widgets/product-list.php:177 +msgid "Our Products" +msgstr "" + +#: includes/admin/widgets/product-list.php:144 +#: includes/common/template-functions.php:2070 +#: includes/common/template-functions.php:2347 +#: includes/multisite/template-functions.php:303 +#: includes/multisite/template-functions.php:623 +msgid "No Products" +msgstr "" + +#: includes/admin/widgets/product-list.php:8 +msgid "Product List" +msgstr "" + +#: includes/admin/widgets/product-list.php:7 +msgid "Shows a customizable list of products from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/cart.php:75 includes/admin/widgets/categories.php:82 +#: includes/admin/widgets/product-list.php:253 +#: includes/admin/widgets/product-tag-cloud.php:57 +msgid "Only show on store pages" +msgstr "" + +#: includes/admin/widgets/cart.php:65 +#: includes/admin/widgets/ms-global-product-list.php:92 +#: includes/admin/widgets/product-list.php:200 +msgid "Custom Text:" +msgstr "" + +#: includes/admin/widgets/cart.php:64 includes/admin/widgets/categories.php:69 +#: includes/admin/widgets/ms-global-categories.php:59 +#: includes/admin/widgets/ms-global-product-list.php:87 +#: includes/admin/widgets/ms-global-tag-cloud.php:49 +#: includes/admin/widgets/product-list.php:199 +#: includes/admin/widgets/product-tag-cloud.php:49 +msgid "Title:" +msgstr "" + +#: includes/admin/widgets/cart.php:7 +msgid "Shows dynamic shopping cart contents along with a checkout button for your MarketPress store." +msgstr "" + +#: includes/admin/widgets/product-tag-cloud.php:8 +msgid "Product Tag Cloud" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:539 +#: includes/admin/class-mp-setup-wizard.php:575 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:163 +msgid "Measurement System" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:616 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:149 +msgid "Select Shipping Options" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:596 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:129 +msgid "Calculated Options" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:582 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:115 +msgid "No Shipping" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:110 +msgid "EU" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:109 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:93 +msgid "All" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:92 +msgid "Select:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:185 +msgid "Store Pages" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:223 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:256 +msgid "Order Shipped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:60 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:95 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:128 +#: marketpress.php:266 +msgid "New Order" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:314 +msgid "Email Notifications" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:59 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:200 +msgid "Products List" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:58 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:190 +msgid "Store Base" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:108 +#: includes/admin/class-mp-shortcode-builder.php:635 +#: includes/admin/class-mp-shortcode-builder.php:708 +#: includes/admin/class-mp-shortcode-builder.php:875 +#: includes/admin/class-mp-shortcode-builder.php:1319 +#: includes/admin/class-mp-shortcode-builder.php:1422 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:526 +#: includes/admin/widgets/ms-global-categories.php:78 +#: includes/admin/widgets/ms-global-product-list.php:127 +#: includes/admin/widgets/product-list.php:221 +msgid "Ascending" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:109 +#: includes/admin/class-mp-shortcode-builder.php:636 +#: includes/admin/class-mp-shortcode-builder.php:709 +#: includes/admin/class-mp-shortcode-builder.php:876 +#: includes/admin/class-mp-shortcode-builder.php:1320 +#: includes/admin/class-mp-shortcode-builder.php:1423 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:525 +#: includes/admin/widgets/ms-global-categories.php:75 +#: includes/admin/widgets/ms-global-product-list.php:124 +#: includes/admin/widgets/product-list.php:220 +msgid "Descending" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:637 +#: includes/admin/class-mp-shortcode-builder.php:695 +#: includes/admin/class-mp-shortcode-builder.php:862 +#: includes/admin/class-mp-shortcode-builder.php:1306 +#: includes/admin/class-mp-shortcode-builder.php:1424 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:518 +#: includes/admin/widgets/ms-global-product-list.php:121 +#: includes/admin/widgets/product-list.php:218 +msgid "Random" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:694 +#: includes/admin/class-mp-shortcode-builder.php:861 +#: includes/admin/class-mp-shortcode-builder.php:1305 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:517 +#: includes/admin/widgets/ms-global-product-list.php:119 +#: includes/admin/widgets/product-list.php:216 +msgid "Product Price" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:693 +#: includes/admin/class-mp-shortcode-builder.php:860 +#: includes/admin/class-mp-shortcode-builder.php:1304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:516 +#: includes/admin/widgets/ms-global-product-list.php:117 +#: includes/admin/widgets/product-list.php:215 +msgid "Number of Sales" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:692 +#: includes/admin/class-mp-shortcode-builder.php:859 +#: includes/admin/class-mp-shortcode-builder.php:1303 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:515 +#: includes/admin/widgets/product-list.php:214 +msgid "Product Author" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:691 +#: includes/admin/class-mp-shortcode-builder.php:858 +#: includes/admin/class-mp-shortcode-builder.php:1302 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:514 +#: includes/admin/widgets/product-list.php:213 +msgid "Product ID" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:690 +#: includes/admin/class-mp-shortcode-builder.php:857 +#: includes/admin/class-mp-shortcode-builder.php:1301 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:513 +#: includes/admin/widgets/ms-global-product-list.php:113 +#: includes/admin/widgets/product-list.php:212 +msgid "Publish Date" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:430 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:726 +msgid "Width" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:439 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:735 +msgid "Height" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:88 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:402 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:698 +msgid "Custom" +msgstr "" + +#: includes/common/class-mp-product.php:179 +#: includes/common/class-mp-product.php:992 +#: includes/common/class-mp-product.php:1000 +#: includes/multisite/template-functions.php:579 +msgid "Buy Now" +msgstr "" + +#: includes/common/class-mp-product.php:175 +#: includes/common/class-mp-product.php:990 +#: includes/common/class-mp-product.php:998 +msgid "Add To Cart" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:807 +msgid "Store Style" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1021 +msgid "Edit Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupon.php:580 +#: includes/admin/class-mp-ajax.php:238 +#: includes/admin/class-mp-products-admin.php:1532 +msgid "Unlimited" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1198 +msgid "Remaining Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1197 +msgid "Used" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:752 +#: includes/admin/class-mp-products-admin.php:2343 +msgid "Start Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:598 +msgid "Coupon Code" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:444 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:284 +msgid "Save Changes" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:57 +#: includes/admin/class-mp-shortcode-builder.php:716 +#: includes/admin/class-mp-shortcode-builder.php:727 +#: includes/admin/class-mp-shortcode-builder.php:883 +#: includes/admin/class-mp-shortcode-builder.php:894 +#: includes/admin/class-mp-shortcode-builder.php:946 +#: includes/admin/class-mp-shortcode-builder.php:956 +#: includes/admin/class-mp-shortcode-builder.php:1006 +#: includes/admin/class-mp-shortcode-builder.php:1327 +#: includes/admin/class-mp-shortcode-builder.php:1338 +#: includes/admin/store-settings/class-mp-store-settings-general.php:357 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:270 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:108 +#: includes/admin/widgets/ms-global-product-list.php:172 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:94 +msgid "None" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:352 +msgid "Google Analytics Ecommerce Tracking" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:310 +msgid "This option turns MarketPress into more of a product listing plugin, disabling shopping carts, checkout, and order management. This is useful if you simply want to list items you can buy in a store somewhere else, optionally linking the \"Buy Now\" buttons to an external site. Some examples are a car dealership, or linking to songs/albums in itunes, or linking to products on another site with your own affiliate links." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:304 +msgid "Whether or not customers must be registered and logged in to checkout. (Not recommended: Enabling this can lower conversions)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:258 +msgid "How many times may a customer download a file they have purchased? (It's best to set this higher than one in case they have any problems downloading)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:257 +msgid "Maximum Downloads" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:298 +msgid "This will set the product to draft if inventory of all variations is gone." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:288 +msgid "At what low stock count do you want to be warned for products you have enabled inventory tracking for?" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:208 +#: includes/admin/store-settings/class-mp-store-settings-general.php:287 +msgid "Inventory Warning Threshold" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:282 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:542 +msgid "Miscellaneous Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:429 +#: includes/multisite/class-mp-admin-multisite.php:247 +msgid "Show Decimal in Prices" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:451 +#: includes/admin/store-settings/class-mp-store-settings-general.php:403 +#: includes/multisite/class-mp-admin-multisite.php:221 +msgid "Currency Symbol Position" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:444 +#: includes/admin/store-settings/class-mp-store-settings-general.php:396 +msgid "Store Currency" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:429 +#: includes/admin/store-settings/class-mp-store-settings-general.php:381 +msgid "Currency Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:516 +msgid "Please see your local tax laws. Note if this is enabled and a downloadable only cart, rates will be the default for your base location." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:529 +msgid "Apply Tax to Downloadable Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:498 +msgid "Enabling this option allows you to enter and show all prices inclusive of tax, while still listing the tax total as a line item in shopping carts. Please see your local tax laws." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:497 +msgid "Enter Prices Inclusive of Tax?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:492 +msgid "Please see your local tax laws. Most areas charge tax on shipping fees." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:491 +msgid "Apply Tax To Shipping Fees?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:674 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:565 +#: includes/common/payment-gateways/authorizenet-aim.php:291 +#: includes/common/payment-gateways/authorizenet-aim.php:326 +#: includes/common/payment-gateways/payfast.php:347 +msgid "No" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:675 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:759 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:512 +#: includes/admin/class-mp-setup-wizard.php:518 +#: includes/admin/class-mp-setup-wizard.php:524 +#: includes/admin/class-mp-setup-wizard.php:530 +#: includes/admin/class-mp-setup-wizard.php:564 +#: includes/admin/store-settings/class-mp-store-settings-general.php:232 +#: includes/admin/store-settings/class-mp-store-settings-general.php:299 +#: includes/admin/store-settings/class-mp-store-settings-general.php:305 +#: includes/admin/store-settings/class-mp-store-settings-general.php:311 +#: includes/admin/store-settings/class-mp-store-settings-general.php:317 +#: includes/admin/store-settings/class-mp-store-settings-general.php:328 +#: includes/admin/store-settings/class-mp-store-settings-general.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:341 +#: includes/admin/store-settings/class-mp-store-settings-general.php:348 +#: includes/admin/store-settings/class-mp-store-settings-general.php:367 +#: includes/admin/store-settings/class-mp-store-settings-general.php:493 +#: includes/admin/store-settings/class-mp-store-settings-general.php:499 +#: includes/admin/store-settings/class-mp-store-settings-general.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:556 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:375 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:381 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:387 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:474 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:493 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:532 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:574 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:606 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:664 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:670 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:677 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:683 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:689 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:763 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:774 +#: includes/common/payment-gateways/_bitpay.php:250 +#: includes/common/payment-gateways/_bitpay.php:257 +#: includes/common/payment-gateways/_bitpay.php:264 +#: includes/common/payment-gateways/authorizenet-aim.php:290 +#: includes/common/payment-gateways/authorizenet-aim.php:325 +#: includes/common/payment-gateways/free_orders.php:160 +#: includes/common/payment-gateways/payfast.php:346 +#: includes/common/payment-gateways/paymill.php:162 +#: includes/common/payment-gateways/paypal-payflow.php:441 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-checkbox.php:22 +msgid "Yes" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:492 +#: includes/admin/store-settings/class-mp-store-settings-general.php:472 +msgid "%s Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:467 +#: includes/admin/store-settings/class-mp-store-settings-general.php:449 +msgid "Tax Settings" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:370 +#: includes/admin/store-settings/class-mp-store-settings-general.php:624 +msgid "Base Zip/Postal Code" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:354 +#: includes/admin/store-settings/class-mp-store-settings-general.php:608 +msgid "Base State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:589 +msgid "Base Country" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:582 +msgid "Location Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:195 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:800 +#: includes/multisite/class-mp-admin-multisite.php:172 +msgid "General Settings" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1945 +#: includes/admin/class-mp-products-admin.php:2185 +#: includes/admin/class-mp-store-settings-admin.php:111 +#: includes/admin/class-mp-store-settings-admin.php:266 +msgid "General" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:242 +msgid "Importers" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +#: includes/admin/class-mp-store-settings-admin.php:234 +msgid "Payments" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:313 +#: includes/admin/class-mp-store-settings-admin.php:112 +#: includes/admin/class-mp-store-settings-admin.php:222 +msgid "Presentation" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:916 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1015 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1018 +#: includes/admin/class-mp-dashboard-widgets.php:305 marketpress.php:702 +msgid "Coupons" +msgstr "" + +#: includes/admin/class-mp-admin.php:251 +msgid "Download »" +msgstr "" + +#: includes/admin/class-mp-admin.php:245 +#: includes/admin/class-mp-exporter-orders.php:170 +msgid "All Statuses" +msgstr "" + +#: includes/admin/class-mp-admin.php:209 +#: includes/admin/class-mp-exporter-orders.php:150 +#: includes/admin/class-mp-exporter-orders.php:178 +msgid "Export Orders" +msgstr "" + +#: includes/admin/class-mp-admin.php:228 +msgid "Show all dates" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:947 +msgid "Change Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:287 +msgid "Order Notes" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:478 +msgid "Other" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:205 +msgid "Subtotal" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:84 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:87 +#: includes/admin/class-mp-products-admin.php:1737 +#: includes/common/class-mp-cart.php:1409 +#: includes/common/class-mp-product.php:559 +msgid "Quantity" +msgstr "" + +#: includes/common/helpers.php:93 +msgid "Item" +msgstr "" + +#: includes/common/class-mp-order.php:1050 +msgid "Current Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:297 +msgid "Order Actions" +msgstr "" + +#: includes/common/class-mp-product.php:1084 +msgid "More Info »" +msgstr "" + +#: includes/common/class-mp-product.php:2313 +msgid "Low Product Inventory Notification" +msgstr "" + +#: includes/common/class-mp-order.php:338 includes/common/data.php:154 +msgid "New Order Notification: ORDERID" +msgstr "" + +#: includes/common/helpers.php:259 +msgid "Your payment for this order is complete." +msgstr "" + +#: includes/common/helpers.php:261 +msgid "Your payment for this order is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/helpers.php:256 +msgid "Payment Total:" +msgstr "" + +#: includes/common/helpers.php:253 +msgid "Transaction ID:" +msgstr "" + +#: includes/common/helpers.php:249 +msgid "Payment Type:" +msgstr "" + +#: includes/common/helpers.php:246 +msgid "Payment Method:" +msgstr "" + +#: includes/common/helpers.php:242 +msgid "Order Notes:" +msgstr "" + +#: includes/common/helpers.php:237 +msgid "Special Instructions:" +msgstr "" + +#: includes/common/helpers.php:232 +msgid "Tracking Number:" +msgstr "" + +#: includes/common/helpers.php:223 includes/common/helpers.php:226 +#: includes/common/helpers.php:228 +#: includes/common/shipping-modules/class-mp-shipping-api.php:406 +#: includes/common/shipping-modules/class-mp-shipping-api.php:428 +msgid "Shipping Method:" +msgstr "" + +#: includes/common/helpers.php:168 +msgid "No shipping required for this order." +msgstr "" + +#: includes/common/helpers.php:155 +msgid "Order Total:" +msgstr "" + +#: includes/common/class-mp-order.php:1025 +msgid "Taxes:" +msgstr "" + +#: includes/common/class-mp-order.php:1032 includes/common/helpers.php:144 +msgid "Shipping:" +msgstr "" + +#: includes/public/class-mp-checkout.php:367 +msgid "Street address, P.O. box, company name, c/o" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:314 +msgid "Shipping Info" +msgstr "" + +#: includes/public/class-mp-public.php:740 +msgid "Whoops, there was a problem loading up this file for your download. Please contact us for help." +msgstr "" + +#: includes/public/class-mp-public.php:683 +msgid "Sorry, our records show you've downloaded this file %d out of %d times allowed. Please contact us if you still need help." +msgstr "" + +#: includes/public/class-mp-public.php:634 +msgid "Sorry, your order has been marked as unpaid." +msgstr "" + +#: includes/public/class-mp-public.php:629 +msgid "Sorry, the link is invalid for this download." +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:15 +#: includes/admin/class-mp-products-admin.php:1172 +msgid "Cheatin’ uh?" +msgstr "" + +#: includes/public/class-mp-public.php:407 +#: includes/public/class-mp-short-codes.php:128 +msgid "Please enter a valid email address." +msgstr "" + +#: includes/admin/class-mp-ajax.php:191 +#: includes/admin/class-mp-products-admin.php:1821 +#: includes/admin/class-mp-products-admin.php:2010 +#: includes/admin/class-mp-products-admin.php:2267 +msgid "File URL" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1842 +msgid "External Link" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2177 +msgid "Add Variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:126 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:289 +msgid "Inventory" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:438 +#: includes/admin/class-mp-products-admin.php:578 +#: includes/admin/class-mp-products-admin.php:1552 +#: includes/admin/class-mp-products-admin.php:2053 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:134 +msgid "Sale Price" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "Variation Name" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1931 +msgid "Product Details" +msgstr "" + +#: includes/admin/class-mp-product-attributes-list-table.php:33 +msgid "Delete" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1057 +msgid "Trashed" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:231 +#: includes/admin/class-mp-orders-admin.php:1015 +#: includes/common/class-mp-order.php:1052 includes/common/helpers.php:97 +msgid "Total" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1196 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:210 +#: includes/admin/class-mp-orders-admin.php:1014 +msgid "Discount" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:221 +#: includes/admin/class-mp-orders-admin.php:1013 +#: includes/common/payment-gateways/_ideal.php:148 +#: includes/common/payment-gateways/_payway.php:134 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:108 +msgid "Tax" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:216 +#: includes/admin/class-mp-orders-admin.php:1012 +#: includes/admin/class-mp-products-admin.php:1958 +#: includes/admin/class-mp-products-admin.php:2198 +#: includes/admin/class-mp-store-settings-admin.php:114 +#: includes/admin/class-mp-store-settings-admin.php:230 +#: includes/common/class-mp-cart.php:717 includes/common/helpers.php:168 +#: includes/common/payment-gateways/_ideal.php:137 +#: includes/common/payment-gateways/_payway.php:116 +#: includes/public/class-mp-checkout.php:1304 +msgid "Shipping" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1011 +msgid "Items" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1010 +msgid "From" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:154 +#: includes/admin/class-mp-orders-admin.php:1009 +#: includes/common/class-mp-gdpr.php:370 +msgid "Order Date" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1008 +#: includes/common/class-mp-gdpr.php:366 +#: includes/common/template-functions.php:2134 +msgid "Order ID" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:22 +#: includes/admin/class-mp-orders-admin.php:1007 +msgid "Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1155 +msgid "N/A" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:243 +#: includes/admin/class-mp-products-admin.php:464 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:142 +msgid "Sales" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:463 +msgid "Stock" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:85 +#: includes/admin/class-mp-ajax.php:176 includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:434 +#: includes/admin/class-mp-products-admin.php:462 +#: includes/admin/class-mp-products-admin.php:576 +#: includes/admin/class-mp-products-admin.php:1519 +#: includes/admin/class-mp-products-admin.php:1569 +#: includes/admin/class-mp-products-admin.php:1950 +#: includes/admin/class-mp-products-admin.php:2059 +#: includes/admin/class-mp-products-admin.php:2190 +#: includes/admin/class-mp-products-admin.php:2330 +#: includes/common/class-mp-cart.php:1415 includes/common/helpers.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:130 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:276 +msgid "Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:173 +#: includes/admin/class-mp-products-admin.php:461 +#: includes/admin/class-mp-products-admin.php:1972 +#: includes/admin/class-mp-products-admin.php:2224 +msgid "SKU" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:459 +#: includes/admin/class-mp-products-admin.php:1793 +#: includes/admin/class-mp-products-admin.php:1805 +#: includes/admin/class-mp-products-admin.php:2163 +msgid "Variations" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:83 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:86 +#: includes/admin/class-mp-dashboard-widgets.php:134 +#: includes/admin/class-mp-products-admin.php:458 +#: includes/admin/class-mp-products-admin.php:837 +#: includes/admin/class-mp-shortcode-builder.php:689 +#: includes/admin/class-mp-shortcode-builder.php:856 +#: includes/admin/class-mp-shortcode-builder.php:1300 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:512 +#: includes/admin/widgets/ms-global-product-list.php:115 +#: includes/admin/widgets/product-list.php:211 +msgid "Product Name" +msgstr "" + +#: includes/common/template-functions.php:2575 +msgid "Categorized in " +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:305 +#: includes/common/payment-gateways/free_orders.php:176 +msgid "Payment Information" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:167 +#: includes/admin/class-mp-orders-admin.php:432 +#: includes/admin/class-mp-pages-admin.php:62 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:227 +#: includes/common/class-mp-gdpr.php:374 +#: includes/common/template-functions.php:175 +#: includes/common/template-functions.php:926 +msgid "Order Status" +msgstr "" + +#. translators: %s: orders closed +#: marketpress.php:327 +msgid "Closed (%s)" +msgid_plural "Closed (%s)" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:249 +#: includes/admin/class-mp-orders-admin.php:375 +#: includes/admin/class-mp-orders-admin.php:951 +#: includes/admin/class-mp-orders-admin.php:1053 +#: includes/admin/class-mp-orders-admin.php:1065 +#: includes/common/class-mp-gdpr.php:330 +#: includes/common/class-mp-order.php:1019 marketpress.php:325 +msgid "Closed" +msgstr "" + +#. translators: %s: shipped orders +#: marketpress.php:320 +msgid "Shipped (%s)" +msgid_plural "Shipped (%s)" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:248 +#: includes/admin/class-mp-orders-admin.php:376 +#: includes/admin/class-mp-orders-admin.php:950 +#: includes/admin/class-mp-orders-admin.php:1049 +#: includes/admin/class-mp-orders-admin.php:1064 +#: includes/common/class-mp-gdpr.php:329 +#: includes/common/class-mp-order.php:1002 marketpress.php:318 +msgid "Shipped" +msgstr "" + +#. translators: %s: paid orders +#: marketpress.php:313 +msgid "Paid (%s)" +msgid_plural "Paid (%s)" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:247 +#: includes/admin/class-mp-orders-admin.php:377 +#: includes/admin/class-mp-orders-admin.php:949 +#: includes/admin/class-mp-orders-admin.php:1045 +#: includes/admin/class-mp-orders-admin.php:1063 +#: includes/common/class-mp-gdpr.php:328 +#: includes/common/payment-gateways/2checkout.php:294 +#: includes/common/payment-gateways/_cubepoints.php:130 +#: includes/common/payment-gateways/authorizenet-aim.php:193 +#: includes/common/payment-gateways/free_orders.php:91 +#: includes/common/payment-gateways/mijireh.php:248 +#: includes/common/payment-gateways/paymill.php:273 +#: includes/common/payment-gateways/paypal-express.php:933 +#: includes/common/payment-gateways/paypal-express.php:967 +#: includes/common/payment-gateways/pin.php:258 +#: includes/common/payment-gateways/simplify.php:181 +#: includes/common/payment-gateways/stripe.php:368 +#: includes/common/payment-gateways/wepay.php:269 marketpress.php:311 +msgid "Paid" +msgstr "" + +#. translators: %s: orders received +#: marketpress.php:306 +msgid "Received (%s)" +msgid_plural "Received (%s)" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:246 +#: includes/admin/class-mp-orders-admin.php:378 +#: includes/admin/class-mp-orders-admin.php:1041 +#: includes/admin/class-mp-orders-admin.php:1062 +#: includes/common/class-mp-gdpr.php:327 includes/common/class-mp-order.php:995 +#: includes/common/payment-gateways/payfast.php:244 marketpress.php:304 +msgid "Received" +msgstr "" + +#: marketpress.php:268 +msgid "Search Orders" +msgstr "" + +#: marketpress.php:267 +msgid "View Order" +msgstr "" + +#: marketpress.php:262 +msgid "Order" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:301 +#: includes/admin/class-mp-orders-admin.php:989 marketpress.php:261 +msgid "Orders" +msgstr "" + +#: marketpress.php:228 +msgid "No Products found in Trash" +msgstr "" + +#: marketpress.php:227 +msgid "No Products Found" +msgstr "" + +#: marketpress.php:226 +msgid "Search Products" +msgstr "" + +#: marketpress.php:225 marketpress.php:229 +msgid "View Product" +msgstr "" + +#: marketpress.php:224 +msgid "New Product" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1022 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:258 +#: marketpress.php:223 +msgid "Edit" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1019 +msgid "Create New" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:687 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:698 +#: marketpress.php:217 +msgid "Product" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:307 +#: includes/common/template-functions.php:173 +#: includes/common/template-functions.php:179 +#: includes/common/template-functions.php:902 +#: includes/multisite/template-functions.php:82 marketpress.php:216 +#: marketpress.php:219 +msgid "Products" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:118 +#: includes/admin/widgets/product-tag-cloud.php:46 +#: includes/multisite/class-mp-admin-multisite.php:548 +msgid "Product Tags" +msgstr "" + +#: includes/common/template-functions.php:2906 +#: includes/multisite/template-functions.php:449 +msgid "Product Category" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:117 +#: includes/admin/widgets/categories.php:8 +#: includes/admin/widgets/categories.php:18 +#: includes/multisite/class-mp-admin-multisite.php:539 +msgid "Product Categories" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:332 +#: includes/common/template-functions.php:872 marketpress.php:218 +msgid "Store" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:60 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:209 +#: includes/admin/widgets/cart.php:8 includes/admin/widgets/cart.php:56 +#: includes/common/template-functions.php:174 +#: includes/common/template-functions.php:811 +msgid "Shopping Cart" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:110 +#: includes/admin/class-mp-store-settings-admin.php:218 +msgid "Store Settings" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:128 marketpress.php:607 +msgid "Settings" +msgstr "" + +#: includes/common/data.php:178 includes/common/data.php:190 +msgid "Your Order Has Been Shipped! (ORDERID)" +msgstr "" + +#: includes/common/data.php:159 includes/common/data.php:166 +#: includes/common/data.php:172 +msgid "Your Order Confirmation (ORDERID)" +msgstr "" + +#: includes/common/data.php:148 +msgid "

    Thank you for your order! We appreciate your business, and please come back often to check out our new products.

    " +msgstr "" + +#: includes/common/data.php:147 +msgid "

    You are almost done! Please do a final review of your order to make sure everything is correct then click the \"Confirm Payment\" button.

    " +msgstr "" + +#: includes/common/data.php:145 +msgid "

    Please enter your shipping information in the form below to proceed with your order.

    " +msgstr "" + +#: includes/common/data.php:143 +msgid "

    If you have any questions about your order please do not hesitate to contact us.

    " +msgstr "" + +#: includes/common/data.php:106 +msgid "tag" +msgstr "" + +#: includes/common/data.php:105 +msgid "category" +msgstr "" + +#: includes/common/data.php:104 +msgid "order-status" +msgstr "" + +#: includes/common/data.php:103 +msgid "shopping-cart" +msgstr "" + +#: includes/common/data.php:102 +msgid "products" +msgstr "" + +#. Translators: change default slugs here +#: includes/common/data.php:101 +msgid "store" +msgstr "" \ No newline at end of file diff --git a/languages/mp-en.mo b/languages/mp-en.mo new file mode 100644 index 0000000000000000000000000000000000000000..524284e46508fa2dfd06f9ae73bbf26bc41a21b5 GIT binary patch literal 278 zcmYLD!AiqG6s+KBkDfiO;7woJw3o6WCv8i?V9>UBlQn(D)%Z5NeHHx>f6sG2!%cJO zz%Vnsc`$!xr@w=UlgRVP%PvG*_j1sE^w8z<9v<+^1?LHFt)S6YqX<(v~l#~xb>ugEZ?%5NRjMo(XysIu9yZD8*C zGZ;E7m~FLIq`>IoJ|$W}ZXy=c6Yj3Eri$s|eDouztb>$n8zdHtwL_U~8; PEVswih2;define( 'DOMPDF_ENABLE_HTML5PARSER', true ); to the wp-config.php file." +msgstr "" + +#: includes/public/class-mp-checkout.php:723 +msgid "Invalid Email" +msgstr "" + +#: includes/public/class-mp-checkout.php:721 +#: includes/public/class-mp-checkout.php:729 +msgid "This field is required" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:804 +msgid "This option changes the built-in css styles for store pages. For a custom css style, save your css file with the /* MarketPress Style: Your CSS Theme Name Here */ header line in the \"%s\" folder and it will appear in this list so you may select it. You should select \"None\" if you don't wish to use custom CSS styles or if you are using default theme templates or custom theme templates and css to make your own completely unique store design. For more information on custom theme templates click here »." +msgstr "" + +#: includes/public/class-mp-public.php:421 +#: includes/public/class-mp-short-codes.php:142 +msgid "Please enter a value greater than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:420 +#: includes/public/class-mp-short-codes.php:141 +msgid "Please enter a value less than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:419 +#: includes/public/class-mp-short-codes.php:140 +msgid "Please enter a value between {0} and {1}." +msgstr "" + +#: includes/public/class-mp-public.php:418 +#: includes/public/class-mp-short-codes.php:139 +msgid "Please enter a value between {0} and {1} characters long." +msgstr "" + +#: includes/public/class-mp-public.php:417 +#: includes/public/class-mp-short-codes.php:138 +msgid "Please enter at least {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:416 +#: includes/public/class-mp-short-codes.php:137 +msgid "Please enter no more than {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:415 +#: includes/public/class-mp-short-codes.php:136 +msgid "Please enter a value with a valid extension." +msgstr "" + +#: includes/public/class-mp-public.php:414 +#: includes/public/class-mp-short-codes.php:135 +msgid "Please enter the same value again." +msgstr "" + +#: includes/public/class-mp-public.php:413 +#: includes/public/class-mp-short-codes.php:134 +msgid "Please enter a valid credit card number." +msgstr "" + +#: includes/public/class-mp-public.php:412 +#: includes/public/class-mp-short-codes.php:133 +msgid "Please enter only digits." +msgstr "" + +#: includes/public/class-mp-public.php:411 +#: includes/public/class-mp-short-codes.php:132 +msgid "Please enter a valid number." +msgstr "" + +#: includes/public/class-mp-public.php:410 +#: includes/public/class-mp-short-codes.php:131 +msgid "Please enter a valid date (ISO)." +msgstr "" + +#: includes/public/class-mp-public.php:409 +#: includes/public/class-mp-short-codes.php:130 +msgid "Please enter a valid date." +msgstr "" + +#: includes/public/class-mp-public.php:408 +#: includes/public/class-mp-short-codes.php:129 +msgid "Please enter a valid URL." +msgstr "" + +#: includes/public/class-mp-public.php:406 +#: includes/public/class-mp-short-codes.php:127 +msgid "Please fix this field." +msgstr "" + +#: includes/public/class-mp-checkout.php:1287 +#: includes/public/class-mp-public.php:405 +#: includes/public/class-mp-short-codes.php:126 +msgid "This field is required." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:810 +msgid "None - Without Special CSS-styles" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:809 +msgid "Default - Using Default CSS-styles" +msgstr "" + +#: marketpress.php:739 +msgid "Enable multiple downloads per product" +msgstr "" + +#: marketpress.php:738 +msgid "Multiple Downloads" +msgstr "" + +#: includes/public/class-mp-checkout.php:715 +msgid "Invalid Zip Code" +msgstr "" + +#: includes/common/template-functions.php:2126 +msgid "Guest Email" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:195 +msgid "There was a problem finalizing your purchase. Please re-enter your credit card information and try again" +msgstr "" + +#: includes/common/class-mp-cart.php:565 includes/common/class-mp-order.php:600 +#: includes/common/helpers.php:111 +msgid "Download %1$s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:331 +msgid "Export products to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:328 +msgid "The import process uses the WordPress importer plugin." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:326 +msgid "Import / Export Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:325 +msgid "Export settings to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:324 +msgid "Import configuration" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:320 +msgid "Use the text below to export to a new installation. Or paste in the new configuration to import." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:318 +msgid "Import / Export Settings" +msgstr "" + +#. translators: URL to wp-admin/import.php +#: includes/admin/store-settings/class-mp-store-settings-import.php:266 +msgid "This importer is not installed. Please install importers from the main site." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:261 +msgid "Install Now" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:260 +msgid "Install %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:240 +msgid "Run Importer" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:239 +msgid "Run %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:258 +msgid "Import/Export" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1199 +msgid "Requires Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:737 +msgid "Optionally limit the user to some categories" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:671 +msgid "Should this coupon only be available to logged in users?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:670 +msgid "Require Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:655 +msgid "Mimimum number of products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:653 +msgid "Enter the minimum number of products in the cart that this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:648 +msgid "Can this coupon be limited to a number of products in the cart?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:334 +msgid "Add all values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:265 +msgid "Set as default variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:154 +msgid "Set Default" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:150 +msgid "More Info" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:40 +msgid "MarketPress - Quick Setup" +msgstr "" + +#: includes/public/class-mp-checkout.php:1399 +msgid "Proceed to checkout and create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1241 +#: includes/public/class-mp-checkout.php:1245 +msgid "Register account" +msgstr "" + +#: includes/public/class-mp-checkout.php:1233 +msgid "Register as customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:765 +msgid "

    Oops!

    Looks like you haven't added anything your cart. Let's go shopping!

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:763 +msgid "

    Oops!

    The cart is disabled.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing Information" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:214 +msgid "Global Currency" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:198 +msgid "Global Store Currency" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:507 +msgid "There are no shipping services available for this type of package in your location." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:168 +msgid "Using this USPS Shipping calculator requires requesting an Ecommerce API Username and Password. Get your free set of credentials here ». The password is no longer used for the API, just the username which you should enter below. The USPS test site has not yet been updated and currently doesn't work - you should just request activating your credentials with USPS and go live." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:339 +msgid "ZIP Code" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:334 +msgid "Last name" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:333 +msgid "First name" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:150 +msgid "These are the manual payment instructions to display on the order confirmation screen. TOTAL will be replaced with the order total and ORDERID will be replaced with Order ID." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:240 +msgid "You must login to Authorize.net merchant dashboard to obtain the API login ID and API transaction key. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:327 +msgid "
    1. Set the \"Return Method\" within Site Management to Header Redirect and set the \"Return URL\" to %s
    2. Set your notifications url to %s
    " +msgstr "" + +#: includes/common/data.php:191 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Also, digital downloads included in your order are now ready to be downloaded. Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:185 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order is now available to download! Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:184 +msgid "Your Order Is Ready To Be Downloaded! (ORDERID)" +msgstr "" + +#: includes/common/data.php:179 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:173 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received, your digital goods are ready to be downloaded and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:167 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received and your digital goods are ready to be downloaded. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:160 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +" Your order has been received, and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information: \n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/class-mp-product.php:638 +msgid "You can not add more items to cart." +msgstr "" + +#: includes/common/class-mp-product.php:635 +msgid "You can only add {0} to cart." +msgstr "" + +#: includes/common/class-mp-product.php:625 +msgid "This product has an order limit of %d." +msgstr "" + +#: includes/common/class-mp-order.php:1454 +msgid "Shipped: tracking code: %s" +msgstr "" + +#: includes/common/class-mp-order.php:1000 +#: includes/common/class-mp-order.php:1012 +msgid "Finished" +msgstr "" + +#: includes/common/class-mp-order.php:858 +msgid "Contact Details" +msgstr "" + +#: includes/common/class-mp-order.php:339 includes/common/data.php:155 +msgid "" +"A new order (ORDERID) was created in your store:\n" +"\n" +" ORDERINFOSKU\n" +"\n" +" SHIPPINGINFO\n" +"\n" +" PAYMENTINFO\n" +"\n" +msgstr "\n" + +#: includes/common/class-mp-cart.php:1858 +msgid "Add again" +msgstr "" + +#: includes/common/class-mp-cart.php:1852 +msgid "was removed from Shopping Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1242 +#: includes/public/class-mp-short-codes.php:160 +msgid "Cart update notice: this item has a limit per order or you have reached the stock limit." +msgstr "" + +#: includes/admin/widgets/product-list.php:235 +msgid "Show Only Featured Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:533 +msgid "If enabled, users won't be able to filter products per category and/or to order by release date/name/price." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:531 +msgid "Hide Products Filter?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:353 +msgid "Notification to registration email instead of billing email?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:322 +msgid "Order Shipped - Mixed orders (with both digital and physical products)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:289 +msgid "Order Shipped - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:224 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:194 +msgid "New Order - Mixed" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:161 +msgid "New Order - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:115 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:243 +msgid "Mixed orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:110 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:238 +msgid "Digital downloads orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:105 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:233 +msgid "Physical orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:96 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed.
    For orders placed with manual payment, emails set here will be overriden by the one configured in manual payments settings, under payments settings page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:89 +msgid "Customer Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:47 +msgid "Admin Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:566 +msgid "Only contact details" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:565 +msgid "Full billing info" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:561 +msgid "Details Collection" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:548 +msgid "Digital Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:515 +msgid "Apply Tax to Digital Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:236 +msgid "product (default)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:231 +msgid "If you are experiencing conflicts with other e-commerce plugins change this setting. This will change the internal post type of all your products. Please note that changing this option may break 3rd party themes or plugins." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1203 +msgid "Hide details" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1202 +msgid "Show all changes" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1184 +msgid "Version %s" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1161 +msgid "Current" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1131 +msgid "%s changelog" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:952 +msgid "We did not find any data for this plugin or theme..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:285 +msgid "Activate WPMU DEV Dashboard" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:279 +msgid "Just one more step - activate the WPMU DEV Dashboard plugin and you're all done!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:277 +msgid "Important updates are available for your WPMU DEV plugins/themes. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:273 +msgid "Just one more step to enable updates and support for %s!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:271 +msgid "Important updates are available for %s. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:264 +msgid "activate" +msgstr "" + +#: includes/admin/class-mp-admin.php:398 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:248 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:289 +msgid "Dismiss" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:247 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:288 +msgid "Saving..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:244 +msgid "Install Plugin" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:238 +msgid "Almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:236 +msgid "Important updates are available for your WPMU DEV plugins/themes. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:232 +msgid "%s is almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:230 +msgid "Important updates are available for %s. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:223 +msgid "install" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1428 +msgid "Sets the number of Tags to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1289 +msgid "How many products to display in the product list if \"paginate\" is set to false." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:739 +#: includes/admin/class-mp-shortcode-builder.php:906 +#: includes/admin/class-mp-shortcode-builder.php:1350 +msgid "Grid" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:735 +#: includes/admin/class-mp-shortcode-builder.php:902 +#: includes/admin/class-mp-shortcode-builder.php:1346 +msgid "Products will be displayed as list or grid." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:206 +msgid "Display a cloud or list of your global product tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:205 +msgid "Display a list of your global categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:204 +msgid "Display a list or grid of your global products." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:181 +msgid "Display a list of featured products." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1451 +msgid "Is Featured?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1444 +msgid "Featured Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:581 +#: includes/admin/class-mp-products-admin.php:1580 +msgid "% discount" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:579 +msgid "OR" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:460 +#: includes/admin/class-mp-products-admin.php:586 +#: includes/admin/widgets/product-list.php:217 +msgid "Featured" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:536 +#: includes/admin/class-mp-orders-admin.php:538 +msgid "Tracking Link" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:508 +msgid "Shipping Tax" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:356 +msgid "Shipping Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:352 +msgid "Taxes Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:349 +msgid "Products Total" +msgstr "" + +#: includes/admin/class-mp-ajax.php:366 +msgid "Oops! You entered an invalid username/email and or password." +msgstr "" + +#: includes/admin/class-mp-ajax.php:254 +msgid "Percentage Discount" +msgstr "" + +#: includes/admin/class-mp-ajax.php:234 +msgid "Limit the Amount of Items per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:214 +msgid "Unused Attributes" +msgstr "" + +#: includes/admin/class-mp-admin.php:82 +msgid "Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-admin.php:79 +msgid "MarketPress setup is not complete! Once you've completed this quick setup wizard you'll have a fully working online store - exciting! " +msgstr "" + +#: marketpress.php:263 +msgctxt "mp_order" +msgid "Add New" +msgstr "" + +#: marketpress.php:184 +msgctxt "product_tag" +msgid "Product Tag" +msgstr "" + +#: marketpress.php:183 +msgctxt "product_tag" +msgid "Product Tags" +msgstr "" + +#: marketpress.php:150 +msgctxt "product_category" +msgid "Product Category" +msgstr "" + +#: marketpress.php:149 +msgctxt "product_category" +msgid "Product Categories" +msgstr "" + +#. Author URI of the plugin/theme +msgid "http://premium.wpmudev.org" +msgstr "" + +#: marketpress.php:729 +msgid "Invoice PDF" +msgstr "" + +#: marketpress.php:712 +msgid "Grant access to themes and gateways depending on the user's Pro Site level" +msgstr "" + +#: marketpress.php:711 +msgid "Pro Sites" +msgstr "" + +#: marketpress.php:703 +msgid "Offer and accept coupon codes" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:687 +msgid "Install %s Pages" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:682 +msgid "Welcome to %s – Install pages required by the plugin automatically." +msgstr "" + +#: marketpress.php:668 +msgid "Your pages were created successfully." +msgstr "" + +#: marketpress.php:436 +msgid "Add a Product" +msgstr "" + +#: marketpress.php:271 +msgid "Parent Order" +msgstr "" + +#: marketpress.php:270 +msgid "No orders found in trash" +msgstr "" + +#: marketpress.php:269 +msgid "No orders found" +msgstr "" + +#: marketpress.php:265 +msgid "Edit Order" +msgstr "" + +#: marketpress.php:264 +msgid "Add New Order" +msgstr "" + +#: marketpress.php:220 marketpress.php:221 +msgid "Add New Product" +msgstr "" + +#: marketpress.php:197 +msgid "No product tags found" +msgstr "" + +#: marketpress.php:196 +msgid "Choose from the most used product tags" +msgstr "" + +#: marketpress.php:195 +msgid "Add or remove product tags" +msgstr "" + +#: marketpress.php:194 +msgid "Separate product tags with commas" +msgstr "" + +#: marketpress.php:193 +msgid "Search Product Tags" +msgstr "" + +#: marketpress.php:192 +msgid "Parent Product Tag:" +msgstr "" + +#: marketpress.php:191 +msgid "Parent Product Tag" +msgstr "" + +#: marketpress.php:190 +msgid "New Product Tag Name" +msgstr "" + +#: marketpress.php:189 +msgid "Add New Product Tag" +msgstr "" + +#: marketpress.php:188 +msgid "Update Product Tag" +msgstr "" + +#: marketpress.php:187 +msgid "View Product Tag" +msgstr "" + +#: marketpress.php:186 +msgid "Edit Product Tag" +msgstr "" + +#: marketpress.php:185 +msgid "All Product Tags" +msgstr "" + +#: marketpress.php:163 +msgid "No product categories found" +msgstr "" + +#: marketpress.php:162 +msgid "Choose from the most used product categories" +msgstr "" + +#: marketpress.php:161 +msgid "Add or remove product categories" +msgstr "" + +#: marketpress.php:160 +msgid "Separate product categories with commas" +msgstr "" + +#: marketpress.php:159 +msgid "Search Product Categories" +msgstr "" + +#: marketpress.php:158 +msgid "Parent Product Category:" +msgstr "" + +#: marketpress.php:157 +msgid "Parent Product Category" +msgstr "" + +#: marketpress.php:156 +msgid "New Product Category Name" +msgstr "" + +#: marketpress.php:155 +msgid "Add New Product Category" +msgstr "" + +#: marketpress.php:154 +msgid "Update Product Category" +msgstr "" + +#: marketpress.php:153 +msgid "View Product Category" +msgstr "" + +#: marketpress.php:152 +msgid "Edit Product Category" +msgstr "" + +#: marketpress.php:151 +msgid "All Product Categories" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Please fix the %s1 and then try submitting the form again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Oops! The form contains %s1 which %s2 been highlighted below." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:660 +msgid "have" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:659 +msgid "has" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:651 +msgid "Value must be less than {0}" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:650 +msgid "Please enter only letters and numbers" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:539 +msgid "Due to prolonged inactivity on this page, one or more settings were not saved. Please try again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:535 +msgid "Settings Saved" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-user-select.php:22 +msgid "Select Some Users" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-section.php:18 +msgid "Section Title" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:425 +msgid "Are you sure you want to delete this?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:30 +msgid "Add Row" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-post-select.php:24 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-taxonomy-select.php:22 +msgid "Select Posts" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:210 +msgid "Add Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:129 +msgid "Select the image that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:93 +msgid "Select image(s) that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:79 +msgid "Select the image that you would like to use for this variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:48 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:82 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:68 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:132 +msgid "Select Image" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:31 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:160 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:168 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:19 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:115 +msgid "Select File" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:30 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:18 +msgid "Select the file that you would like to use." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:357 +msgid "Create Variations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:356 +msgid "Add Another Variant" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Insert a value and press ENTER" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "(e.g. White, Grey, Red etc.)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Variation Values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:333 +msgid "Or create new variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "(e.g. Color)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:303 +msgid "You are about to delete selected variants.
    If you want to continue please confirm." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:302 +msgid "Confirmation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:290 +msgid "Insert quantity available. Empty for unlimited." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:281 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:294 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:307 +msgid "Cancel" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:280 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:293 +msgid "Update" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:277 +msgid "Insert the price i.e. 25 or 25.50" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:115 +msgid "Img." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:85 +msgid "Add New Variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:79 +msgid "Delete Variants" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:78 +msgid "Update Prices" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:77 +msgid "Update Inventory" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:76 +msgid "Update Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:75 +msgid "Bulk Actions" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:73 +msgid "Select bulk action" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:196 +msgid "Configure Store" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:195 +msgid "Configure shipping rates, emails and your store's appearance. " +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:190 +msgid "Add Product" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:189 +msgid "Add your first product for sale and get familiar with adding products." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:184 +msgid "Your store is almost ready for its first customers, but first it needs some products. Get started by adding products below, or jump straight into further configuring your store’s settings." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:183 +msgid "Woohoo! Your online store is up and running." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:160 +msgid "Finish Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:124 +msgid "And what metric system do you want to use?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:113 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:142 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:159 +msgid "Back" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:109 +msgid "Do you want to apply tax for your products? You can customize this for each product and variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:105 +msgid "What currency do you want to sell with?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:93 +msgid "And, which countries do you want to sell to?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:89 +msgid "Where is your online store based?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:80 +msgid "Payment Gateway" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:79 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:123 +msgid "Metric System" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:78 +msgid "Currency & Tax" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:77 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:88 +msgid "Locations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:70 +msgid "Choose where you want to sell your stuff and what currency. Easy!" +msgstr "" + +#: includes/public/class-mp-checkout.php:1400 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:58 +msgid "Continue" +msgstr "" + +#: includes/admin/class-mp-admin.php:83 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:53 +msgid "Skip this step, I'll do this manually" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:49 +msgid "Install store pages" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:44 +msgid "Once you've completed this quick setup wizard you'll have a fully working online store - exciting! Start
    by creating the default store pages for the online store such as the cart, checkout and store pages." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:42 +msgid "MarketPress adds a full online store to your website, with heaps of configuration options and addons
    to suit your needs. It's really easy to get going, and only takes a few minutes to setup!" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:41 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:69 +msgid "Welcome to MarketPress - Quick Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-advanced-select.php:23 +msgid "Select Some Options" +msgstr "" + +#: includes/wpmudev-metaboxes/class-wpmudev-field.php:694 +msgid "You must the WPMUDEV_Field::display() method in your form field class" +msgstr "" + +#: includes/public/class-mp-short-codes.php:636 +msgid "Only %s left in stock..." +msgstr "" + +#: includes/public/class-mp-short-codes.php:633 +msgid "Unlimited stock" +msgstr "" + +#: includes/public/class-mp-short-codes.php:430 +msgid "product_id must be defined" +msgstr "" + +#: includes/public/class-mp-checkout.php:1250 +msgid "An account with this username already exists" +msgstr "" + +#: includes/public/class-mp-checkout.php:1394 +msgid "Continue as Guest" +msgstr "" + +#: includes/public/class-mp-checkout.php:1393 +msgid "Proceed to checkout and you'll have an opportunity to create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1392 +#: includes/public/class-mp-checkout.php:1398 +msgid "First-time customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1386 +msgid "Login" +msgstr "" + +#: includes/public/class-mp-checkout.php:1379 +msgid "E-Mail Address/Username" +msgstr "" + +#: includes/public/class-mp-checkout.php:1377 +msgid "Sign in to speed up the checkout process." +msgstr "" + +#: includes/public/class-mp-checkout.php:1376 +msgid "Have an account?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1297 +msgid "Shipping address different than billing?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1184 +msgid "There are no available gateways to process this payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1160 +msgid "Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:1123 +msgid "Oops! An error occurred while processing your payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1051 +msgid "Next Step »" +msgstr "" + +#: includes/public/class-mp-checkout.php:1045 +msgid "« Previous Step" +msgstr "" + +#: includes/public/class-mp-checkout.php:873 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:657 +msgid "error" +msgstr "" + +#: includes/public/class-mp-checkout.php:872 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:658 +msgid "errors" +msgstr "" + +#: includes/public/class-mp-checkout.php:871 +msgid "

    Oops! We found %d %s in the form below.

    Fields that have errors are highlighted in red below. Entering into a field will reveal the actual error that occurred.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:870 +msgid "Please enter a valid first and last name" +msgstr "" + +#: includes/public/class-mp-checkout.php:869 +msgid " Please enter a valid card security code" +msgstr "" + +#: includes/public/class-mp-checkout.php:868 +msgid "Please enter a valid card expiration" +msgstr "" + +#: includes/public/class-mp-checkout.php:773 +msgid "Javascript is required in order to checkout. Please enable Javascript in your browser and then refresh this page." +msgstr "" + +#: includes/public/class-mp-checkout.php:588 +msgid "An unknown error occurred. Please try again." +msgstr "" + +#: includes/public/class-mp-checkout.php:386 +msgid "Town/City" +msgstr "" + +#: includes/public/class-mp-checkout.php:380 +msgid "Apartment, suite, unit, building, floor, etc" +msgstr "" + +#: includes/public/class-mp-checkout.php:376 +msgid "Address Line 2" +msgstr "" + +#: includes/public/class-mp-checkout.php:363 +msgid "Address Line 1" +msgstr "" + +#: includes/common/class-mp-order.php:770 +#: includes/public/class-mp-checkout.php:354 +msgid "Company" +msgstr "" + +#: includes/public/class-mp-checkout.php:330 +msgid "Last" +msgstr "" + +#: includes/public/class-mp-checkout.php:321 +msgid "First" +msgstr "" + +#: includes/public/class-mp-checkout.php:284 +msgid "State/Province" +msgstr "" + +#: includes/public/class-mp-checkout.php:83 +msgid "Review Order/Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing/Shipping Address" +msgstr "" + +#: includes/public/class-mp-checkout.php:80 +msgid "Login/Register" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:530 +msgid "Marketplace" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:523 +msgid "Global Marketplace Pages" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +msgid "Store Network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +#: includes/multisite/class-mp-admin-multisite.php:494 +msgid "Store Network Settings" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:440 +msgid "Set theme access permissions for network stores. For a custom css theme, save your css file with the MarketPress Theme: NAME header in the /marketpress/ui/themes/ folder and it will appear in this list so you may select it." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:361 +msgid "Choose a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:336 +msgid "%d products get indexed" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:285 +msgid "Product Indexer" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:281 +msgid "Please hold on..." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:280 +msgid "Index Products" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:279 +msgid "%d products have been indexed in whole network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:182 +msgid "Enable Global Shopping Cart?" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:178 +msgid "Limit Global Widgets/Shortcodes To Main Blog?" +msgstr "" + +#: includes/common/template-functions.php:2802 +#: includes/multisite/template-functions.php:355 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:97 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:114 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:143 +msgid "Next" +msgstr "" + +#: includes/common/template-functions.php:2801 +#: includes/multisite/template-functions.php:354 +msgid "Prev" +msgstr "" + +#: includes/common/template-functions.php:2597 +msgid "Tagged in " +msgstr "" + +#: includes/common/template-functions.php:2196 +#: includes/common/template-functions.php:2202 +#: includes/common/template-functions.php:2214 +#: includes/common/template-functions.php:2217 +msgid "Oops! We couldn't locate any orders matching that order number. Please verify the order number and try again." +msgstr "" + +#: includes/common/template-functions.php:2138 +msgid "Look Up" +msgstr "" + +#: includes/common/template-functions.php:1423 +msgid "Please choose a shipping method" +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "If you have your order ID you can look it up using the form below." +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "Order Search" +msgstr "" + +#: includes/common/template-functions.php:910 +#: includes/public/class-mp-checkout.php:1440 +msgid "Cart" +msgstr "" + +#: includes/common/template-functions.php:895 +msgid "[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:887 +msgid "[mp_global_categories_list]" +msgstr "" + +#: includes/common/template-functions.php:880 +msgid "" +"Welcome to our market place!\n" +"\n" +"Check out our network of products:\n" +"\n" +"[mp_list_global_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_global_categories_list]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:879 +msgid "Global Store" +msgstr "" + +#: includes/common/template-functions.php:873 +msgid "" +"Welcome to our online store! Feel free to browse around:\n" +"\n" +"[mp_store_navigation]\n" +"\n" +"Check out our most popular products:\n" +"\n" +"[mp_popular_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_list_categories]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_tag_cloud]" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:127 +msgid "If cart weight is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:126 +msgid "Cart Weight" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:222 +msgid "Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:206 +msgid "Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:196 +msgid "Retail Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:195 +msgid "Online Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:193 +msgid "Rates Request Type" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:189 +msgid "Maximum Weight Per Package" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:195 +#: includes/common/shipping-modules/mp-usps.php:236 +msgid "Enter your standard box sizes as LengthxWidthxHeight (e.g. 12x8x6) For each box defined enter the maximum weight it can contain. Note: the shipping prices this plugin calculates are estimates. If they are consistently too low or too high, please check that the list of boxes above and the product weights are accurate and complete." +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:187 +msgid "Handling Charge Per Box Shipped" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:176 +#: includes/common/shipping-modules/mp-ups.php:181 +msgid "Offered Services" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:165 +msgid "Shipper Number" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:151 +msgid "User ID" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:144 +msgid "Developer Kit Access Key" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:140 +msgid "Use Sandbox Mode?" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:123 +msgid "In order to use UPS, you will need a UPS Developer Kit access key and the UPS user ID and password associated with the access key. Set these up for free here. If this information is missing or incorrect, an error will appear during the checkout process and the buyer will not be able to complete the transaction." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:112 +msgid "If cart total is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:111 +msgid "Cart Total" +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:95 +#: includes/common/shipping-modules/mp-weight-rate.php:111 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Don't worry about sorting as this will be done automatically upon saving." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:170 +msgid "Method Title (visible for clients)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:409 +#: includes/common/shipping-modules/mp-ups.php:216 +#: includes/common/shipping-modules/mp-usps.php:251 +msgid "Max Weight (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:402 +#: includes/common/shipping-modules/mp-ups.php:209 +#: includes/common/shipping-modules/mp-usps.php:247 +msgid "Size (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:387 +msgid "Enter your standard box sizes as LengthxWidthxHeight ( 12x8x6 ) For each box defined enter the maximum weight it can contain. Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:361 +#: includes/common/shipping-modules/mp-usps.php:229 +msgid "Handling Charge per International Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:353 +msgid "International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:339 +#: includes/common/shipping-modules/mp-usps.php:213 +msgid "Handling Charge per Domestic Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:331 +msgid "Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:321 +msgid "When checked the customer can chose Residential or Commercial delivery with Residential the default. Unchecked it's only Residential rates." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:320 +msgid "Allow Commercial Delivery?" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:315 +msgid "Fedex 10kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:314 +msgid "Fedex 25kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:313 +msgid "Fedex Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:312 +msgid "Fedex Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:311 +msgid "Fedex Pak" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:310 +msgid "Fedex Tube" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:306 +msgid "Default Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:294 +msgid "Dropoff Type" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:290 +msgid "Meter ID" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:134 +msgid "This is a residential address" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:283 +msgid "There was an error processing your card: \"%s\". Please check your credit card info and try again." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:121 +msgid "Wepay makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept cards directly on your site. You don't need a merchant account or gateway. WePay handles everything including storing cards. Credit cards go directly to WePay's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:385 +msgid "There was an error processing your card - \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:356 +msgid "%s Store Purchase - Order ID - %s, Email - %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:251 +msgid "Stripe makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept Visa, MasterCard, American Express, Discover, JCB, and Diners Club cards directly on your site. You don't need a merchant account or gateway. Stripe handles everything, including storing cards, subscriptions, and direct payouts to your bank account. Credit cards go directly to Stripe's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:192 +msgid "ZMW - Zambian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:191 +msgid "ZAR - South African Rand" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:190 +msgid "YER - Yemeni Rial" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:189 +msgid "XPF - Cfp Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:188 +msgid "XOF - West African Cfa Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:187 +msgid "XCD - East Caribbean Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:186 +msgid "XAF - Central African Cfa Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:185 +msgid "WST - Samoan Tala" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:184 +msgid "VUV - Vanuatu Vatu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:183 +msgid "VND - Vietnamese Đồng" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:182 +msgid "VEF - Venezuelan Bolívar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:181 +msgid "UZS - Uzbekistani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:180 +msgid "UYI - Uruguayan Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:178 +msgid "UGX - Ugandan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:177 +msgid "UAH - Ukrainian Hryvnia" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:176 +msgid "TZS - Tanzanian Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:175 +msgid "TWD - New Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:174 +msgid "TTD - Trinidad and Tobago Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:172 +msgid "TOP - Tongan Paʻanga" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:171 +msgid "TJS - Tajikistani Somoni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:169 +msgid "SZL - Swazi Lilangeni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:168 +msgid "SVC - Salvadoran Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:167 +msgid "STD - São Tomé and Príncipe Dobra" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:166 +msgid "SRD - Surinamese Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:165 +msgid "SOS - Somali Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:164 +msgid "SLL - Sierra Leonean Leone" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:163 +msgid "SHP - Saint Helenian Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:160 +msgid "SCR - Seychellois Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:159 +msgid "SBD - Solomon Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:157 +msgid "RWF - Rwandan Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:156 +msgid "RUB - Russian Ruble" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:155 +msgid "RSD - Serbian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:154 +msgid "RON - Romanian Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:153 +msgid "QAR - Qatari Riyal" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:152 +msgid "PYG - Paraguayan Guaraní*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:151 +msgid "PLN - Polish Złoty" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:150 +msgid "PKR - Pakistani Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:149 +msgid "PHP - Philippine Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:148 +msgid "PGK - Papua New Guinean Kina" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:147 +msgid "PEN - Peruvian Nuevo Sol*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:146 +msgid "PAB - Panamanian Balboa*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:144 +msgid "NPR - Nepalese Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:142 +msgid "NIO - Nicaraguan Córdoba*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:141 +msgid "NGN - Nigerian Naira" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:140 +msgid "NAD - Namibian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:139 +msgid "MZN - Mozambican Metical" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:137 +msgid "MXN - Mexican Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:136 +msgid "MWK - Malawian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:135 +msgid "MVR - Maldivian Rufiyaa" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:134 +msgid "MUR - Mauritian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:133 +msgid "MRO - Mauritanian Ouguiya" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:132 +msgid "MOP - Macanese Pataca" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:131 +msgid "MNT - Mongolian Tögrög" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:130 +msgid "MKD - Macedonian Denar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:129 +msgid "MGA - Malagasy Ariary" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:128 +msgid "MDL - Moldovan Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:126 +msgid "LVL - Latvian Lats" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:124 +msgid "LSL - Lesotho Loti" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:123 +msgid "LRD - Liberian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:122 +msgid "LKR - Sri Lankan Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:121 +msgid "LBP - Lebanese Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:120 +msgid "LAK - Lao Kip*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:119 +msgid "KZT - Kazakhstani Tenge" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:118 +msgid "KYD - Cayman Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:117 +msgid "KRW - South Korean Won" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:116 +msgid "KMF - Comorian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:115 +msgid "KHR - Cambodian Riel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:114 +msgid "KGS - Kyrgyzstani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:113 +msgid "KES - Kenyan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:111 +msgid "JMD - Jamaican Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:110 +msgid "ISK - Icelandic Króna" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:109 +msgid "INR - Indian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:108 +msgid "ILS - Israeli New Sheqel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:107 +msgid "IDR - Indonesian Rupiah" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:105 +msgid "HTG - Haitian Gourde" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:103 +msgid "HNL - Honduran Lempira*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:101 +msgid "GYD - Guyanese Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:100 +msgid "GTQ - Guatemalan Quetzal*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:99 +msgid "GNF - Guinean Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:98 +msgid "GMD - Gambian Dalasi" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:97 +msgid "GIP - Gibraltar Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:96 +msgid "GEL - Georgian Lari" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:94 +msgid "FKP - Falkland Islands Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:93 +msgid "FJD - Fijian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:91 +msgid "ETB - Ethiopian Birr" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:90 +msgid "EGP - Egyptian Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:89 +msgid "EEK - Estonian Kroon*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:88 +msgid "DZD - Algerian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:87 +msgid "DOP - Dominican Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:85 +msgid "DJF - Djiboutian Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:84 +msgid "CZK - Czech Koruna*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:83 +msgid "CVE - Cape Verdean Escudo*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:82 +msgid "CRC - Costa Rican Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:81 +msgid "COP - Colombian Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:80 +msgid "CNY - Chinese Renminbi Yuan" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:79 +msgid "CLP - Chilean Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:77 +msgid "CDF - Congolese Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:76 +msgid "CAD - Canadian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:75 +msgid "BZD - Belize Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:74 +msgid "BWP - Botswana Pula" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:73 +msgid "BSD - Bahamian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:72 +msgid "BRL - Brazilian Real*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:71 +msgid "BOB - Bolivian Boliviano*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:70 +msgid "BND - Brunei Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:69 +msgid "BMD - Bermudian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:68 +msgid "BIF - Burundian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:67 +msgid "BGN - Bulgarian Lev" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:66 +msgid "BDT - Bangladeshi Taka" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:65 +msgid "BBD - Barbadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:64 +msgid "BAM - Bosnia & Herzegovina Convertible Mark" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:63 +msgid "AZN - Azerbaijani Manat" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:62 +msgid "AWG - Aruban Florin" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:61 +msgid "AUD - Australian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:60 +msgid "ARS - Argentine Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:59 +msgid "AOA - Angolan Kwanza*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:58 +msgid "ANG - Netherlands Antillean Gulden" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:57 +msgid "AMD - Armenian Dram" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:56 +msgid "ALL - Albanian Lek" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:55 +msgid "AFN - Afghan Afghani*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:54 +msgid "AED - United Arab Emirates Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:345 +msgid "Skrill balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:327 +msgid "Skrill IPN message received." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:283 +msgid "Skrill" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:278 +msgid "Pending payment" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:144 +msgid "The secret word must match the word submitted in the \"Merchant Tools\" section of your Skrill account." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:134 +msgid "You must use your valid Skrill merchant email. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:133 +msgid "Skrill Email" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:123 +msgid "Resell your inventory via Skrill.com (Moneybookers)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:95 +msgid "ZAR - South-African Rand" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:93 +msgid "TWD - Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:92 +msgid "TRY - New Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:91 +msgid "TND - Tunisian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:90 +msgid "THB - Thailand Baht" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:89 +msgid "SKK - Slovakian Koruna" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:86 +#: includes/common/payment-gateways/stripe.php:158 +msgid "SAR - Saudi Riyal" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:85 +msgid "RSD - Serbian dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:83 +msgid "QAR - Qatari Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:81 +msgid "OMR - Omani Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:80 +msgid "NOK - Norwegian Krone " +msgstr "" + +#: includes/common/payment-gateways/skrill.php:78 +#: includes/common/payment-gateways/stripe.php:138 +msgid "MYR - Malaysian Ringgit" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:77 +#: includes/common/payment-gateways/stripe.php:127 +msgid "MAD - Moroccan Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:74 +msgid "KRW - South-Korean Won" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:72 +msgid "JOD - Jordanian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:70 +msgid "INR - Indian Rupee" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:63 +msgid "EEK - Estonian Kroon" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:56 +msgid "AED - Utd. Arab Emir. Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:52 +msgid "Turkish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:51 +msgid "Swedish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:50 +msgid "Spanish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:49 +msgid "Russian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:48 +msgid "Romainian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:47 +msgid "Polish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:46 +msgid "Italian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:45 +msgid "Greek" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:44 +msgid "German" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:43 +msgid "French" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:42 +msgid "Finnish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:41 +msgid "English" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:40 +msgid "Dutch" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:39 +msgid "Danish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:38 +msgid "Czech" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:37 +msgid "Chinese" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:201 +msgid "There was an error processing your card: %s. Please re-enter your credit card info and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:278 +msgid "
  • There was an error processing your card: \"%s\". Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:274 +msgid "
  • There was an error processing your card. Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:177 +#: includes/common/payment-gateways/stripe.php:279 +msgid "Publishable Key" +msgstr "" + +#: includes/common/payment-gateways/pin.php:163 +msgid "API Credentials?" +msgstr "" + +#: includes/common/payment-gateways/pin.php:147 +msgid "PIN makes it easy to start accepting credit card payments with Australia’s first all-in-one online payment system. Accept all major credit cards directly on your site. Your sales proceeds are deposited to any Australian bank account, no merchant account required." +msgstr "" + +#: includes/common/payment-gateways/pin.php:57 +#: includes/common/payment-gateways/stripe.php:179 +msgid "USD - United States Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:455 +msgid "Email Footer" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:445 +msgid "Email Header" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:416 +msgid "Partner" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:409 +msgid "Vendor" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:852 +#: includes/common/payment-gateways/paypal-express.php:1126 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences\t section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:749 +msgid "Page Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:744 +msgid "Header Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:739 +msgid "Header Border Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:734 +msgid "Header Image" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:680 +msgid "Locale" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:624 +#: includes/common/payment-gateways/paypal-express.php:658 +msgid "Merchant Email" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:645 +msgid "Paypal Express Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:603 +msgid "Paypal Express Network Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:861 +msgid "Application ID (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:854 +msgid "Signature (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:847 +msgid "API Password (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:839 +msgid "API Username (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:832 +msgid "Signature (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:825 +msgid "API Password (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:817 +msgid "API Username (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:799 +msgid "This message is displayed at the top of the gateway settings page to store admins. It's a good place to inform them of your fees or put any sales messages." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:787 +msgid "Please enter your PayPal email address or business ID you want to recieve fees at." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:786 +msgid "PayPal E-mail" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:772 +msgid "Fees to Collect (%)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:375 +#: includes/public/class-mp-checkout.php:341 +msgid "Email Address" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:299 +msgid "Sorry, your order was not completed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:126 +#: includes/common/payment-gateways/paypal-express.php:780 +msgid "You will be redirected to the PayPal site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:90 +#: includes/common/payment-gateways/skrill.php:94 +msgid "USD - U.S. Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:89 +msgid "TRY - Turkish lira" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:88 +#: includes/common/payment-gateways/stripe.php:170 +msgid "THB - Thai Baht" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:87 +msgid "TWD - Taiwan New Dollars" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:86 +#: includes/common/payment-gateways/pin.php:59 +#: includes/common/payment-gateways/skrill.php:88 +#: includes/common/payment-gateways/stripe.php:162 +msgid "SGD - Singapore Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:84 +msgid "RUB - Russian Rubles" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:82 +msgid "PHP - Philippine Pesos" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:81 +#: includes/common/payment-gateways/pin.php:58 +#: includes/common/payment-gateways/skrill.php:79 +#: includes/common/payment-gateways/stripe.php:145 +msgid "NZD - New Zealand Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:79 +msgid "MXN - Mexican Peso" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:78 +msgid "MYR - Malaysian Ringgits" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:77 +#: includes/common/payment-gateways/pin.php:64 +#: includes/common/payment-gateways/skrill.php:73 +#: includes/common/payment-gateways/stripe.php:112 +msgid "JPY - Japanese Yen" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:75 +#: includes/common/payment-gateways/pin.php:63 +#: includes/common/payment-gateways/skrill.php:66 +#: includes/common/payment-gateways/stripe.php:102 +msgid "HKD - Hong Kong Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:73 +msgid "GBP - Pound Sterling" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:68 +#: includes/common/payment-gateways/pin.php:62 +#: includes/common/payment-gateways/skrill.php:59 +msgid "CAD - Canadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:67 +msgid "BRL - Brazilian Real" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:66 +#: includes/common/payment-gateways/pin.php:56 +#: includes/common/payment-gateways/skrill.php:57 +msgid "AUD - Australian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:288 +msgid "There was an error processing your card: \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:163 +msgid "When running on a live site, Paymill recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:161 +#: includes/common/payment-gateways/pin.php:157 +#: includes/common/payment-gateways/simplify.php:103 +#: includes/common/payment-gateways/stripe.php:260 +#: includes/common/payment-gateways/wepay.php:153 +msgid "Force SSL?" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:151 +msgid "Accept Visa, Mastercard, Maestro UK, Discover and Solo cards directly on your site. You don't need a merchant account or gateway. Credit cards go directly to Paymill's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:131 +msgid "CVV2" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:72 +#: includes/common/payment-gateways/pin.php:61 +#: includes/common/payment-gateways/skrill.php:65 +#: includes/common/payment-gateways/stripe.php:95 +msgid "GBP - British Pound" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:71 +#: includes/common/payment-gateways/stripe.php:173 +msgid "TRY - Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:70 +#: includes/common/payment-gateways/paypal-chained-payments.php:85 +#: includes/common/payment-gateways/skrill.php:87 +#: includes/common/payment-gateways/stripe.php:161 +msgid "SEK - Swedish Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:69 +#: includes/common/payment-gateways/skrill.php:84 +msgid "RON - Romanian Leu New" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:68 +#: includes/common/payment-gateways/paypal-chained-payments.php:83 +#: includes/common/payment-gateways/skrill.php:82 +msgid "PLN - Polish Zloty" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:67 +#: includes/common/payment-gateways/paypal-chained-payments.php:80 +#: includes/common/payment-gateways/stripe.php:143 +msgid "NOK - Norwegian Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:66 +#: includes/common/payment-gateways/skrill.php:75 +#: includes/common/payment-gateways/stripe.php:125 +msgid "LTL - Lithuanian Litas" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:65 +#: includes/common/payment-gateways/paypal-chained-payments.php:69 +#: includes/common/payment-gateways/skrill.php:60 +#: includes/common/payment-gateways/stripe.php:78 +msgid "CHF - Swiss Franc" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:64 +#: includes/common/payment-gateways/skrill.php:76 +msgid "LVL - Latvian Lat" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:63 +#: includes/common/payment-gateways/paypal-chained-payments.php:74 +#: includes/common/payment-gateways/skrill.php:69 +msgid "ILS - Israeli Shekel" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:62 +#: includes/common/payment-gateways/skrill.php:71 +msgid "ISK - Iceland Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:61 +#: includes/common/payment-gateways/paypal-chained-payments.php:76 +#: includes/common/payment-gateways/skrill.php:68 +#: includes/common/payment-gateways/stripe.php:106 +msgid "HUF - Hungarian Forint" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:60 +#: includes/common/payment-gateways/paypal-chained-payments.php:71 +#: includes/common/payment-gateways/skrill.php:62 +#: includes/common/payment-gateways/stripe.php:86 +msgid "DKK - Danish Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:59 +#: includes/common/payment-gateways/skrill.php:67 +#: includes/common/payment-gateways/stripe.php:104 +msgid "HRK - Croatian Kuna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:58 +#: includes/common/payment-gateways/paypal-chained-payments.php:70 +#: includes/common/payment-gateways/skrill.php:61 +msgid "CZK - Czech Koruna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:57 +#: includes/common/payment-gateways/skrill.php:58 +msgid "BGN - Bulgarian Leva" +msgstr "" + +#: includes/common/payment-gateways/payflow/class-mp-gateway-worker-payflow.php:123 +msgid "There was an error connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:344 +msgid "This setting will log all PayFast communication to the \"payfast.log\" file." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:342 +msgid "Log Debugging Info?" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:335 +msgid "DO NOT INPUT A VALUE UNLESS YOU HAVE SET ONE IN THE SETTINGS SECTION OF YOUR PAYFAST SETTINGS." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:333 +msgid "PayFast Passphrase" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:323 +msgid "You can find your credentials on your integration page." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:321 +msgid "PayFast Merchant Credentials" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:311 +msgid "PayFast Mode" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:308 +msgid "PayFast is a payments processing service for South Africa. We make it safe for buyers to send money and easy for sellers to receive money. More Info »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:306 +msgid "PayFast Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:285 +msgid "Your payment via PayFast for this order totaling %s is complete. The transaction number is %s." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:278 +msgid "Your payment via PayFast for this order totaling %s is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:124 +msgid "Your PayFast transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:82 +#: includes/common/payment-gateways/payfast.php:83 +msgid "PayFast" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:157 +msgid "API error: - \"%s\"" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:198 +msgid "The payment request is under process" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:140 +msgid "Order: #" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:116 +msgid "You will be redirected to the Mollie site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:73 +msgid "%sMollie%s provides a fully PCI Compliant and secure way to collect payments via iDeal, Credit Card, Bancontact / Mister Cash, SOFORT Banking, Overbooking, Bitcoin, PayPal, paysafecard and AcceptEmail." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:53 +#: includes/common/payment-gateways/mollie.php:54 +#: includes/common/payment-gateways/mollie.php:195 +#: includes/common/payment-gateways/mollie.php:245 +msgid "Mollie" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:50 +#: includes/common/payment-gateways/paymill.php:56 +#: includes/common/payment-gateways/paypal-chained-payments.php:72 +#: includes/common/payment-gateways/pin.php:60 +#: includes/common/payment-gateways/skrill.php:64 +#: includes/common/payment-gateways/stripe.php:92 +msgid "EUR - Euro" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:306 +msgid "Access Key" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:300 +msgid "You must login to the Mijireh.com dashboard to obtain the Access Key." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:299 +msgid "Credentials" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:289 +msgid "Mijireh Checkout provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:269 +msgid "Mijireh Error: " +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:89 +msgid "You will be redirected to the Mijireh.com site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:87 +msgid "Your Mijireh transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:42 +#: includes/common/payment-gateways/mijireh.php:43 +#: includes/common/payment-gateways/mijireh.php:324 +msgid "Mijireh" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:145 +msgid "These are the manual payment instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:189 +msgid "This is the email text to send to those who have made free order checkouts. You should include your free order instructions / information here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:183 +msgid "This is the free order information to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:182 +msgid "Confirmation User Information" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:177 +msgid "This is the information to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:163 +msgid "If enabled, all free orders will be automatically marked as paid." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:159 +msgid "Payment Status" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:149 +msgid "This gateway is automatically activated if order totalling 0 and it can't be disabled" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:35 +#: includes/common/payment-gateways/free_orders.php:36 +#: includes/common/payment-gateways/free_orders.php:89 +msgid "Free Order" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:34 +#: includes/common/payment-gateways/free_orders.php:197 +msgid "Free Orders" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:515 +msgid "Sandbox API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:266 +#: includes/common/payment-gateways/eway31.php:542 +msgid "eWay Rapid 3.1 Payments (beta)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:403 +msgid "Hosted Payment Page Language" +msgstr "" + +#: includes/common/payment-gateways/eway.php:373 +msgid "Note when testing in sandbox mode it will use the default eWay test API credentials. Also, please note that cart total needs to be a whole number (e.g. 10.00) in order to generate a successful transaction, otherwise the transaction will fail." +msgstr "" + +#: includes/common/payment-gateways/eway.php:267 +msgid "You will be redirected to https://www.eway.com.au to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:380 +msgid "You have chosen to checkout using %s. Please confirm your order details and click \"Submit Order\" when finished." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:272 +#: includes/common/payment-gateways/paymill.php:131 +#: includes/common/payment-gateways/stripe.php:231 +msgid "Security Code " +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Enter in MM/YYYY or MM/YY format" +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Expiration" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:321 +msgid "Delim Data" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:307 +#: includes/common/payment-gateways/paypal-payflow.php:456 +msgid "This text will appear as the footer of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:287 +#: includes/common/payment-gateways/paypal-payflow.php:440 +msgid "Email Customer (on success)" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:278 +msgid "Authorize.net default is \",\". Otherwise, get this from your credit card processor. If the transactions are not going through, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:277 +msgid "Delimeter Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:193 +msgid "Held For Review" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:310 +#: includes/common/payment-gateways/payfast.php:314 +msgid "Test" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:300 +#: includes/common/payment-gateways/pin.php:170 +#: includes/common/payment-gateways/stripe.php:272 +msgid "Secret Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:283 +msgid "Select Your Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:97 +msgid "Your payment will be processed by the iDEAL network" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:208 +msgid "These are the CubePoints to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:203 +msgid "These are the CubePoints instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:266 +msgid "If enabled, all API calls will be made to https://test.bitpay.com." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:263 +msgid "Use Test Mode?" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:259 +msgid "If checked, response fron bitpay will be stored in log file, keep it disabled unless required." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:256 +msgid "Enable Debug Log" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:249 +msgid "Full Notifications" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:231 +#: includes/common/payment-gateways/eway31.php:499 +#: includes/common/payment-gateways/eway31.php:526 +#: includes/common/payment-gateways/mollie.php:83 +#: includes/common/shipping-modules/mp-fedex.php:269 +msgid "API Key" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:222 +msgid "You can now accept a payment from any country on Earth, with no risk of fraud. To use Bitpay, you need to signup on Bitpay. \\n After completing the signup process, you can get api keys at Bitpay API key. You can read more about Bitpay at Bitpay API. \\n Bitpay requires SSL(https) for payment notifications to work." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:61 +msgid "You will be redirected to bitpay.com, for bitcoin payment. It is completely safe." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:346 +msgid "You must login to the 2Checkout vendor dashboard to obtain the seller ID and secret word. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:345 +#: includes/common/payment-gateways/authorizenet-aim.php:239 +#: includes/common/payment-gateways/paymill.php:168 +#: includes/common/payment-gateways/paypal-express.php:704 +#: includes/common/payment-gateways/simplify.php:80 +#: includes/common/payment-gateways/stripe.php:265 +#: includes/common/payment-gateways/wepay.php:158 +msgid "API Credentials" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:325 +#: includes/common/payment-gateways/_bitpay.php:220 +#: includes/common/payment-gateways/_cubepoints.php:185 +#: includes/common/payment-gateways/_ideal.php:268 +#: includes/common/payment-gateways/_payway.php:255 +#: includes/common/payment-gateways/authorizenet-aim.php:219 +#: includes/common/payment-gateways/eway.php:352 +#: includes/common/payment-gateways/eway31.php:460 +#: includes/common/payment-gateways/free_orders.php:147 +#: includes/common/payment-gateways/manual-payments.php:126 +#: includes/common/payment-gateways/mijireh.php:287 +#: includes/common/payment-gateways/mollie.php:71 +#: includes/common/payment-gateways/paymill.php:149 +#: includes/common/payment-gateways/paypal-chained-payments.php:344 +#: includes/common/payment-gateways/paypal-payflow.php:376 +#: includes/common/payment-gateways/pin.php:145 +#: includes/common/payment-gateways/simplify.php:69 +#: includes/common/payment-gateways/skrill.php:121 +#: includes/common/payment-gateways/stripe.php:249 +#: includes/common/payment-gateways/wepay.php:119 +#: includes/common/shipping-modules/mp-fedex.php:243 +#: includes/common/shipping-modules/mp-flat-rate.php:63 +#: includes/common/shipping-modules/mp-pickup.php:140 +#: includes/common/shipping-modules/mp-table-rate.php:94 +#: includes/common/shipping-modules/mp-ups.php:122 +#: includes/common/shipping-modules/mp-usps.php:167 +#: includes/common/shipping-modules/mp-weight-rate.php:110 +msgid "%s Settings" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:136 +msgid "You will be redirected to the 2Checkout site to finalize your payment." +msgstr "" + +#: includes/common/helpers.php:169 includes/public/class-mp-checkout.php:1277 +msgid "Billing" +msgstr "" + +#: includes/common/helpers.php:144 +msgid "FREE" +msgstr "" + +#: includes/common/helpers.php:134 +msgid "Coupons:" +msgstr "" + +#: includes/common/helpers.php:95 +msgid "Qty" +msgstr "" + +#: includes/common/helpers.php:94 +msgid "Sku" +msgstr "" + +#: includes/common/data.php:59 +msgid "Zip Code" +msgstr "" + +#: includes/common/class-mp-taxes.php:336 +msgid "Standard Table" +msgstr "" + +#: includes/common/class-mp-product.php:2698 +msgid "Tweet" +msgstr "" + +#: includes/common/class-mp-product.php:2321 +msgid "Notification Preferences: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2320 +msgid "Edit Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2318 +msgid "Link: %s

    " +msgstr "" + +#: includes/common/class-mp-product.php:2317 +msgid "Current Inventory: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2316 +msgid "Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2314 +msgid "This message is being sent to notify you of low stock of a product in your online store according to your preferences.

    " +msgstr "" + +#: includes/common/class-mp-product.php:1817 +msgid "" +msgstr "" + +#: includes/common/class-mp-product.php:1427 +#: includes/common/class-mp-product.php:1430 +msgid "(tax incl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1422 +#: includes/common/class-mp-product.php:1425 +msgid "(tax excl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1300 +#: includes/common/class-mp-product.php:1315 +msgid "%s each" +msgstr "" + +#: includes/common/class-mp-product.php:988 +msgid "Choose Options" +msgstr "" + +#: includes/common/class-mp-product.php:526 +msgid "Choose a %s" +msgstr "" + +#: includes/common/class-mp-product.php:284 +#: includes/common/class-mp-product.php:292 +#: includes/common/class-mp-product.php:615 +msgid "We're sorry, we only have %d of this item in stock right now." +msgstr "" + +#: includes/common/class-mp-order.php:1456 +msgid "Shipped: Track Shipment" +msgstr "" + +#: includes/common/class-mp-order.php:1049 +msgid "Order Received" +msgstr "" + +#: includes/common/class-mp-order.php:1014 +msgid "In Process" +msgstr "" + +#: includes/common/class-mp-order.php:969 +msgid "Order #" +msgstr "" + +#: includes/common/class-mp-order.php:866 +msgid "Copy billing address to shipping address" +msgstr "" + +#: includes/common/class-mp-order.php:822 +#: includes/public/class-mp-checkout.php:1314 +msgid "Special Instructions" +msgstr "" + +#: includes/common/class-mp-order.php:817 +#: includes/common/payment-gateways/stripe.php:335 +msgid "Email" +msgstr "" + +#: includes/common/class-mp-order.php:813 +#: includes/common/payment-gateways/stripe.php:341 +#: includes/public/class-mp-checkout.php:416 +msgid "Phone" +msgstr "" + +#: includes/common/class-mp-order.php:791 +#: includes/common/payment-gateways/stripe.php:337 +msgid "State" +msgstr "" + +#: includes/common/class-mp-order.php:776 +msgid "Address 1" +msgstr "" + +#: includes/common/class-mp-order.php:766 +msgid "Last Name" +msgstr "" + +#: includes/common/class-mp-order.php:762 +msgid "First Name" +msgstr "" + +#: includes/common/class-mp-installer.php:677 +msgid "MarketPress requires a database update to continue working correctly. Go to update page" +msgstr "" + +#: includes/common/class-mp-installer.php:657 +msgid "MarketPress performed a quick automatic update successfully!" +msgstr "" + +#: includes/common/class-mp-installer.php:653 +msgid "Perform Update" +msgstr "" + +#: includes/common/class-mp-installer.php:647 +msgid "Please update each subsite in your WordPress network where you have older version of the MarketPress plugin." +msgstr "" + +#: includes/common/class-mp-installer.php:641 +msgid "Depending on the amount of products you have, this update could take quite some time. Please keep this window open while the update completes. If you have products with multiple variations, the progress bar may move slower, please don't exit the window." +msgstr "" + +#: includes/common/class-mp-installer.php:632 +msgid "Product Metadata" +msgstr "" + +#: includes/common/class-mp-installer.php:601 +msgid "MarketPress requires a database update to continue working correctly.
    Below you will find a list of items that require your attention." +msgstr "" + +#: includes/common/class-mp-installer.php:600 +msgid "Update MarketPress Data" +msgstr "" + +#: includes/common/class-mp-installer.php:530 +msgid "Update Data" +msgstr "" + +#: includes/common/class-mp-installer.php:67 +msgid "Complete!" +msgstr "" + +#: includes/common/class-mp-installer.php:66 +msgid "Upgrading Database...Please Wait..." +msgstr "" + +#: includes/common/class-mp-installer.php:64 +msgid "An error occurred while updating. Please refresh this page and try again." +msgstr "" + +#: includes/common/class-mp-cart.php:2447 +msgid "Some items in your cart have fallen below the quantity you currently have in your cart. We have adjusted the quantity in your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:2443 +msgid "Some items in your cart are no longer available. We have removed these items from your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:1566 +msgid "item" +msgstr "" + +#: includes/common/class-mp-cart.php:1563 +#: includes/common/class-mp-cart.php:1568 +msgid "items" +msgstr "" + +#: includes/common/class-mp-cart.php:1363 +msgid "Items/Products added to Cart will show here." +msgstr "" + +#: includes/common/class-mp-cart.php:1362 +msgid "Your shopping cart is empty." +msgstr "" + +#: includes/common/class-mp-cart.php:1357 +msgid "View Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1241 +#: includes/common/class-mp-cart.php:1298 +#: includes/public/class-mp-short-codes.php:159 +msgid "Adding..." +msgstr "" + +#: includes/common/class-mp-cart.php:1033 +msgid "Continue Shopping?" +msgstr "" + +#: includes/common/class-mp-cart.php:961 +msgid "Secure Checkout
    Shopping is always safe and secure." +msgstr "" + +#: includes/common/class-mp-cart.php:959 +msgid "You are about to submit your order!
    Please review your order details before continuing. You will be charged immediately upon clicking \"Submit Order\"." +msgstr "" + +#: includes/common/class-mp-cart.php:956 +msgid "Continue »" +msgstr "" + +#: includes/common/class-mp-cart.php:955 +msgid "Submit Order" +msgstr "" + +#: includes/common/class-mp-cart.php:818 +msgid "There are no items in your cart - go add some !" +msgstr "" + +#: includes/common/class-mp-cart.php:816 +msgid "The cart is disabled." +msgstr "" + +#: includes/common/class-mp-cart.php:735 +msgid "Estimated %s" +msgstr "" + +#: includes/common/class-mp-cart.php:717 +msgid "Estimated Shipping" +msgstr "" + +#: includes/common/class-mp-cart.php:697 +msgid "Product Total" +msgstr "" + +#: includes/common/class-mp-cart.php:670 includes/common/class-mp-cart.php:672 +msgid "Estimated Total (%s, %s)" +msgstr "" + +#: includes/common/class-mp-cart.php:668 +msgid "Estimated Total (%s)" +msgstr "" + +#: includes/common/class-mp-cart.php:666 includes/common/class-mp-cart.php:752 +msgid "Estimated Total" +msgstr "" + +#: includes/admin/widgets/product-list.php:247 +msgid "Show Thumbnail Placeholder image (if image is not set)" +msgstr "" + +#: includes/admin/widgets/cart.php:73 +msgid "Display product price" +msgstr "" + +#: includes/admin/widgets/cart.php:71 +msgid "Display product quantity" +msgstr "" + +#: includes/admin/widgets/cart.php:69 +msgid "Display product image" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:93 +msgid "General Shipping Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:773 +msgid "If you are having conflicts with the lightbox library from your theme or another plugin you should uncheck this." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:772 +msgid "Use Built-In Lightbox for Images?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:762 +msgid "Disable Large Image Display?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:688 +msgid "Show Product Image?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:682 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:684 +msgid "Show Tags List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:676 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:678 +msgid "Show Categories List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:671 +msgid "If enabled, description excerpt will be added above Add to cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:669 +msgid "Show Excerpt?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:665 +msgid "If enabled, users will be able to choose how many of the product they want to purchase before adding to their cart. If not checked, quantity could be change later on the cart page." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:663 +msgid "Show Quantity Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:649 +msgid "Settings related to the display of individual product pages." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:648 +msgid "Product Page Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:605 +msgid "Related Products Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:573 +msgid "Show Related Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:568 +msgid "Related Product Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:549 +msgid "Order Status Entries Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:510 +msgid "Sort Products By" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:497 +msgid "Products Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:492 +msgid "Paginate Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:478 +msgid "Excerpts Length" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:473 +msgid "Show Excerpts?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:450 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:746 +msgid "Image Alignment" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:412 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:708 +msgid "Custom Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:401 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:697 +msgid "Large - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:400 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:696 +msgid "Medium - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:399 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:695 +msgid "Thumbnail - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:397 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:693 +msgid "Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:386 +msgid "Select default placeholder image thumbnail when product image is not available (if empty, plugin's built-in image will be used)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:380 +msgid "Show default product placeholder thumbnail when product image is not available?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:374 +msgid "Show Product Thumbnail?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:369 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:658 +msgid "Redirect to cart page for immediate checkout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:368 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:657 +msgid "Stay on current product page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:366 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:655 +msgid "MarketPress supports two \"flows\" for adding products to the shopping cart. After adding a product to their cart, two things can happen:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:365 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:654 +msgid "Add To Cart Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:355 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:628 +msgid "Four" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:354 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:627 +msgid "Three" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:353 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:626 +msgid "Two" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:625 +msgid "One" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:349 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:622 +msgid "Set the number of products that show up in a grid row to best fit your theme" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:348 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:621 +msgid "How many products per row?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:342 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:609 +msgid "Display as grid" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:341 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:608 +msgid "Display as list" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:339 +msgid "Product Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:334 +msgid "Settings related to the display of product lists/grids." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:333 +msgid "Product List/Grid Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:314 +msgid "Show Twitter Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:309 +msgid "Twitter" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:303 +msgid "Show Share Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:297 +msgid "Recommend" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:296 +msgid "Like" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:294 +msgid "Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:283 +msgid "Show Facebook Like Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:278 +msgid "Facebook" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:257 +msgid "Show \"Pin It\" Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:252 +msgid "Pinterest" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:246 +msgid "Social Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:193 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:202 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:211 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:220 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:229 +#: includes/multisite/class-mp-admin-multisite.php:532 +#: includes/multisite/class-mp-admin-multisite.php:541 +#: includes/multisite/class-mp-admin-multisite.php:550 +msgid "Choose a Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:191 +msgid "This page will be used as the root for your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:168 +#: includes/multisite/class-mp-admin-multisite.php:586 +msgid "Create Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "uncropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "cropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:87 +#: includes/multisite/class-mp-admin-multisite.php:121 +#: includes/multisite/class-mp-admin-multisite.php:620 +msgid "An error occurred while creating the store page. Please try again." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:66 +msgid "Choose the gateway(s) that you would like to be available for checkout." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:65 +msgid "Enabled Gateways" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:78 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:146 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:179 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:213 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:274 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:307 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:341 +msgid "Text" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:71 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:139 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:172 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:206 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:267 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:300 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:334 +msgid "Subject" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:52 +msgid "Notification Email" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:510 +msgid "Enabling this option will display label `excl. tax` or `incl. tax` after price" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:509 +msgid "Display tax label?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:504 +msgid "Enabling this option will show Price + Tax, eg. if your price is 100 and your tax 20, your price will be 120" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:416 +#: includes/multisite/class-mp-admin-multisite.php:234 +msgid "Price Format" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:366 +msgid "Enabling this field will display a textbox on the shipping checkout page for users to enter special instructions for their order. Useful for product personalization, etc." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:365 +msgid "Show Special Instructions Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:360 +msgid "Universal" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:359 +msgid "Old" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1167 +#: includes/admin/store-settings/class-mp-store-settings-general.php:358 +msgid "New" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:353 +msgid "If you already use Google Analytics for your website, you can track detailed ecommerce information by enabling this setting. Choose whether you are using the new asynchronous or old tracking code. Before Google Analytics can report ecommerce activity for your website, you must enable ecommerce tracking on the profile settings page for your website. Also keep in mind that some gateways do not reliably show the receipt page, so tracking may not be accurate in those cases. It is recommended to use the PayPal gateway for the most accurate data. More information »" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:347 +msgid "Do you want to display the product price on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:346 +msgid "Show product price on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:340 +msgid "Do you want to display the product quantity on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:339 +msgid "Show product quantity on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:333 +msgid "Do you want to display the product image on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:332 +msgid "Show product image on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:327 +msgid "This option hide floating Mini Cart in top right corner." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:326 +msgid "Disable Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:316 +msgid "If unchecked your Orders admin page will be hidden" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:315 +msgid "Show admin Orders page?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:309 +msgid "Disable Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:303 +msgid "Force Login?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:297 +msgid "Hide Out of Stock Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:555 +msgid "This will prevent multiples of the same downloadable product form being added to the cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:554 +msgid "Limit Digital Products Per-order?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:268 +msgid "If you're having issues downloading large files and have worked with your hosting provider to increase your memory limits, try enabling this - just keep in mind, it's not as secure!" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:267 +msgid "Use Alternative Download Method?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:252 +msgid "Download Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:230 +msgid "Change product post type" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:51 +msgid "%s Capabilities" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-addons.php:47 +msgid "Store Settings: Add Ons: %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:254 +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:56 +msgid "Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Edit Product Attribute %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:246 +msgid "Exporters" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:238 +msgid "Short Codes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:207 +msgid "An appropriate message for key \"%s\" could not be found." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:204 +msgid "Product attribute updated successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:203 +msgid "Product attribute added successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +msgid "Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +#: includes/admin/store-settings/class-mp-store-settings-addons.php:121 +msgid "Store Settings: Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "Store Settings: Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:118 +msgid "Store Settings: Product Tags" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:117 +msgid "Store Settings: Product Categories" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Store Settings: Product Attributes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +msgid "Store Settings: Payments" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:114 +msgid "Store Settings: Shipping" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +#: includes/admin/class-mp-store-settings-admin.php:226 +msgid "Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +msgid "Store Settings: Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:112 +msgid "Store Settings: Presentation" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:111 +msgid "Store Settings: General" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1489 +msgid "Select a Product" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1447 +msgid "Reset to Defaults" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1446 +msgid "Insert Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1202 +#: includes/admin/class-mp-shortcode-builder.php:1227 +#: includes/admin/class-mp-shortcode-builder.php:1252 +msgid "The text to show in the link." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1196 +#: includes/admin/class-mp-shortcode-builder.php:1221 +#: includes/admin/class-mp-shortcode-builder.php:1246 +msgid "Whether to return a clickable link or url." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1177 +msgid "Whether to display the cart only on store pages or not." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1171 +msgid "Whether to show or hide the product price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1165 +msgid "Whether to show or hide the product quantity." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1159 +msgid "Whether to show or hide the product image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1153 +msgid "The text displayed before the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1147 +msgid "The title of the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1058 +#: includes/admin/class-mp-shortcode-builder.php:1121 +msgid "A label to prepend to the price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1032 +#: includes/admin/class-mp-shortcode-builder.php:1127 +msgid "What context for display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1004 +msgid "Set the alignment of the image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:998 +msgid "Set a custom pixel width/height. If omitted defaults to the size set by \"context\"." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:993 +msgid "Widget" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:988 +msgid "What context for preset size options." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:982 +#: includes/admin/class-mp-shortcode-builder.php:1026 +#: includes/admin/class-mp-shortcode-builder.php:1052 +#: includes/admin/class-mp-shortcode-builder.php:1077 +#: includes/admin/class-mp-shortcode-builder.php:1096 +#: includes/admin/class-mp-shortcode-builder.php:1115 +msgid "The ID of the product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:963 +msgid "Whether to display the product meta (e.g. price, buy button)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:738 +#: includes/admin/class-mp-shortcode-builder.php:905 +#: includes/admin/class-mp-shortcode-builder.php:958 +#: includes/admin/class-mp-shortcode-builder.php:992 +#: includes/admin/class-mp-shortcode-builder.php:1035 +#: includes/admin/class-mp-shortcode-builder.php:1130 +#: includes/admin/class-mp-shortcode-builder.php:1349 +msgid "List" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:957 +#: includes/admin/class-mp-shortcode-builder.php:991 +#: includes/admin/class-mp-shortcode-builder.php:1034 +#: includes/admin/class-mp-shortcode-builder.php:1129 +msgid "Single" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:953 +msgid "Whether and what context of image size to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:948 +msgid "Full" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:943 +msgid "Whether and what type of content to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:937 +msgid "Whether to display the product title." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:931 +msgid "The ID of the product to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:747 +#: includes/admin/class-mp-shortcode-builder.php:914 +msgid "Hide" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:746 +#: includes/admin/class-mp-shortcode-builder.php:913 +msgid "Show" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:744 +#: includes/admin/class-mp-shortcode-builder.php:911 +msgid "Whether or not to show the product filters." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:724 +#: includes/admin/class-mp-shortcode-builder.php:891 +#: includes/admin/class-mp-shortcode-builder.php:1335 +msgid "Limits list to a specific product tag." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:713 +#: includes/admin/class-mp-shortcode-builder.php:880 +#: includes/admin/class-mp-shortcode-builder.php:1324 +msgid "Limits list to a specific product category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:706 +#: includes/admin/class-mp-shortcode-builder.php:873 +#: includes/admin/class-mp-shortcode-builder.php:1317 +msgid "Direction to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:684 +#: includes/admin/class-mp-shortcode-builder.php:851 +#: includes/admin/class-mp-shortcode-builder.php:1295 +msgid "What field to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:678 +#: includes/admin/class-mp-shortcode-builder.php:845 +#: includes/admin/class-mp-shortcode-builder.php:1283 +msgid "How many products to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:672 +#: includes/admin/class-mp-shortcode-builder.php:839 +#: includes/admin/class-mp-shortcode-builder.php:1277 +msgid "The page number to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:666 +#: includes/admin/class-mp-shortcode-builder.php:833 +#: includes/admin/class-mp-shortcode-builder.php:1271 +msgid "Whether to paginate the product list. This is useful to only show a subset." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:808 +msgid "How many related items to show." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:790 +msgid "How to relate the products" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:784 +msgid "The product to show related items for." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:765 +msgid "The maximum number of products to display" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:647 +msgid "Comma separated list of tags (term_id) to include. For example, include=5,27 means tags that have the term_id 5 or 27 will be the only tags displayed. Defaults to include everything." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:641 +msgid "Comma separated list of tags (term_id) to exclude. For example, exclude=5,27 means tags that have the term_id 5 or 27 will NOT be displayed. Defaults to exclude nothing." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:633 +#: includes/admin/class-mp-shortcode-builder.php:1420 +msgid "Sort order." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:629 +#: includes/admin/class-mp-shortcode-builder.php:1416 +msgid "Count" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:626 +#: includes/admin/class-mp-shortcode-builder.php:1413 +msgid "Order of the tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:620 +msgid "The text/space between tags)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:616 +msgid "UL with a class of \"wp-tag-cloud\"" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:615 +msgid "separated by whitespace defined by \"separator\" parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:613 +msgid "Format of the cloud display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:607 +msgid "The number of actual tags to display in the cloud. (Use \"0\" to display all tags.)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:601 +msgid "Unit of measure as pertains to the smallest and largest values. This can be any CSS length value, e.g. pt, px, em, %." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:595 +msgid "The text size of the tag with the largest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:589 +msgid "The text size of the tag with the smallest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:570 +msgid "The \"tabindex\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:564 +msgid "The \"name\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:558 +msgid "The \"id\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:552 +msgid "Which category ID is selected." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:540 +msgid "The max depth. This is ignored unless hierarchical is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:536 +#: includes/multisite/template-functions.php:816 +msgid "No Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:414 +#: includes/admin/class-mp-shortcode-builder.php:546 +msgid "Calculates link or post counts by including items from child categories. If show_counts and hierarchical are true this is automatically set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:409 +msgid "Value of n (some number) specifies the depth (or level) to descend in displaying Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:408 +msgid "Show only top level Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:407 +msgid "All Categories displayed in flat (no indent) form (overrides hierarchical)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:406 +msgid "All Categories and child Categories (Default)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:402 +msgid "This parameter controls how many levels in the hierarchy of Categories are to be included in the list of Categories. NOTE: The \"hierarchical\" argument, which is disabled by default, will override the depth argument, unless it is true. When the argument is false, it will display all of the categories. When it is enabled it will use the value in the \"depth\" argument." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:396 +#: includes/admin/class-mp-shortcode-builder.php:1394 +msgid "Sets the number of Categories to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:390 +#: includes/admin/class-mp-shortcode-builder.php:534 +msgid "Set the text to show when no categories are listed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:384 +msgid "Set the title and style of the outer list item. If present but empty, the outer list item will not be displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:378 +#: includes/admin/class-mp-shortcode-builder.php:528 +msgid "Display sub-categories as inner list items (below the parent list item) or inline." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:368 +#: includes/admin/class-mp-shortcode-builder.php:511 +msgid "Exclude category-tree from the results. The parameter include must be empty. If the hierarchical parameter is true, then use exclude instead of exclude_tree." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:354 +msgid "Only include these categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:340 +#: includes/admin/class-mp-shortcode-builder.php:356 +#: includes/admin/class-mp-shortcode-builder.php:370 +#: includes/admin/class-mp-shortcode-builder.php:496 +#: includes/admin/class-mp-shortcode-builder.php:513 +msgid "Select Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:338 +#: includes/admin/class-mp-shortcode-builder.php:494 +msgid "Exclude one or more categories from the results. The parameter include must be empty." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:332 +msgid "Set a URI for an image (usually an rss feed icon) to act as a link to each categories' rss-2 feed. This parameter overrides the feed parameter. There is no default for this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:320 +msgid "Display a link to each category's rss-2 feed and set the link text to display. The default is no text and no feed displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:313 +#: includes/admin/class-mp-shortcode-builder.php:487 +msgid "Any" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:307 +#: includes/admin/class-mp-shortcode-builder.php:481 +msgid "Only display categories that are children of the category identified by this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:301 +msgid "Sets whether a category's description is inserted into the title attribute of the links created (i.e. <a title=\"<em>Category Description</em>\" href=\"...)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:295 +#: includes/admin/class-mp-shortcode-builder.php:475 +msgid "Toggles the display of categories with no posts." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:289 +#: includes/admin/class-mp-shortcode-builder.php:469 +#: includes/admin/class-mp-shortcode-builder.php:1388 +msgid "Toggles the display of the current count of posts in each category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:279 +msgid "Style to display the categories list in. A value of list displays the categories as list items while none generates no special display method (the list items are separated by
    tags)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:269 +#: includes/admin/class-mp-shortcode-builder.php:449 +#: includes/admin/class-mp-shortcode-builder.php:1378 +msgid "Sort order for categories (either ascending or descending)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:259 +#: includes/admin/class-mp-shortcode-builder.php:439 +#: includes/admin/class-mp-shortcode-builder.php:1368 +msgid "Sort categories alphabetically, by unique Category ID, or by the count of posts in that Category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:253 +#: includes/admin/class-mp-shortcode-builder.php:433 +msgid "If a value is entered, causes the display of a link to all categories if the style is set to list." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:219 +msgid "Select an Action" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:217 +msgid "What would you like to do?" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:216 +#: includes/admin/class-mp-shortcode-builder.php:1522 +msgid "Add E-Commerce Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:197 +msgid "Display a list of links to your store pages." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:196 +msgid "Display a link or url to the order status page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:195 +msgid "Display a link or url to the current products list page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:194 +msgid "Display a link or url to the current store page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:193 +msgid "Display a link or url to the current shopping cart page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:192 +msgid "Display the cart widget." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:191 +msgid "Display the full product meta box with price and buy now/add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:190 +msgid "Display the product stock." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:189 +msgid "Display the product SKU number(s)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:188 +msgid "Display the product price (and sale price)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:187 +msgid "Display the buy or add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:186 +msgid "Display the featured image of a given product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:185 +msgid "Display a single product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:184 +msgid "Display a list of products according to preference." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:183 +msgid "Display products related to the one being viewed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:182 +msgid "Display a list of popular products ordered by sales." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:180 +msgid "Display an HTML dropdown of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:179 +msgid "Display an HTML list of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:178 +msgid "Display a cloud or list of your product tags." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:655 +msgid "Setup your payment gateway" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:643 +#: includes/admin/class-mp-setup-wizard.php:649 +msgid "Other Gateways" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:617 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:150 +msgid "Select which calculated shipping methods the customer will be able to choose from." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:601 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:134 +#: includes/public/class-mp-checkout.php:82 +msgid "Shipping Method" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:568 +msgid "I want to charge shipping" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:523 +#: includes/admin/store-settings/class-mp-store-settings-general.php:503 +msgid "Show Price + Tax?" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:507 +msgid "I.e. Taxes, VAT, GST, etc" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:491 +#: includes/admin/store-settings/class-mp-store-settings-general.php:471 +msgid "Current Rates" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:473 +msgid "Default Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:434 +#: includes/admin/class-mp-setup-wizard.php:442 +#: includes/admin/store-settings/class-mp-store-settings-general.php:386 +#: includes/admin/store-settings/class-mp-store-settings-general.php:394 +#: includes/multisite/class-mp-admin-multisite.php:204 +#: includes/multisite/class-mp-admin-multisite.php:212 +msgid "Select a Currency" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:414 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:105 +msgid "Choose Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:411 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:103 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:104 +msgid "All Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:410 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:102 +msgid "These are the countries that you will ship to." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:409 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:101 +msgid "Target Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:401 +msgid "Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:387 +#: includes/admin/store-settings/class-mp-store-settings-general.php:640 +msgid "Zip/Postal Code Label" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:352 +#: includes/admin/store-settings/class-mp-store-settings-general.php:606 +msgid "Select a State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:335 +#: includes/admin/store-settings/class-mp-store-settings-general.php:590 +msgid "Select A Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:332 +#: includes/admin/store-settings/class-mp-store-settings-general.php:587 +msgid "Select a Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:324 +msgid "Location" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:304 +#: includes/admin/class-mp-setup-wizard.php:312 +#: includes/admin/class-mp-store-settings-admin.php:129 +#: includes/admin/class-mp-store-settings-admin.php:262 +msgid "Quick Setup" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:289 +msgid "MarketPress setup is not complete! Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2479 +msgid "Enter your product name here" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2440 +msgid "Select a %s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2426 +msgid "Each product variation needs to have product attributes assigned to it so the system knows how to differentiate one product variation from the other. It is important that you assign a category to this product before choosing any attributes." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2409 +msgid "If you would like this variation to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2320 +msgid "Sale Price (if applicable)" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2281 +msgid "If you would like the description to be different than the main product enter it here." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2229 +msgid "Image" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2202 +#: includes/admin/class-mp-shortcode-builder.php:226 +msgid "Attributes" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2166 +msgid "Create your product variations here. You can reorder variations by using the number to left of each variation, or delete one by clicking the \"x\" to the right of each variation. NOTE: The variation that shows up first in this list will be considered the \"main variation\". The details from this variation will be used in product listings." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2061 +#: includes/admin/class-mp-products-admin.php:2332 +msgid "Value must be less than regular price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2043 +#: includes/admin/class-mp-products-admin.php:2306 +msgid "Regular Price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2023 +#: includes/admin/class-mp-products-admin.php:2286 +msgid "External URL" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1988 +#: includes/admin/class-mp-products-admin.php:2245 +msgid "Enter the quantity that you have available to sell." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1987 +#: includes/admin/class-mp-products-admin.php:2244 +msgid "Inventory Count" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1977 +#: includes/admin/class-mp-products-admin.php:2234 +msgid "Track Inventory?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1871 +msgid "%1$sProduct Images%2$s %3$sAdd images of the product. The first image on the list is the featured image for this product (you can reorder images on the list)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1806 +msgid "Add variations for this product. e.g. If you are selling t-shirts, you can create Color & Size variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1804 +msgid "%3$sAdd variations for%2$s %1$sProduct%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1776 +msgid "This product has a multiple variations %1$s(e.g. Multiple colors, sizes)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1775 +msgid "This is a unique product without variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1700 +msgid "Extra Shipping Cost %1$s(if applicable)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1659 +#: includes/admin/class-mp-products-admin.php:2112 +#: includes/admin/class-mp-products-admin.php:2359 +msgid "Weight" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1636 +#: includes/admin/class-mp-products-admin.php:2098 +#: includes/admin/class-mp-products-admin.php:2416 +msgid "Please enter a valid tax rate" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1531 +msgid "Limit Per Order %1$s(limit the number of the item a shopper can buy per order)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1513 +msgid "SKU %1$s(Stock Keeping Unit)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "%1$sPrice, Inventory & Variants%2$s %3$sSet price, manage inventory and create Product Variants (if appropriate for your product).%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "Product Variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1480 +msgid "External / Affiliate Link" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1471 +msgid "Digital Download" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1470 +msgid "Physical / Tangible Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1464 +msgid "Product Kind %1$s(Physical Product, Digital, etc)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1426 +msgid "Choose Products" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1420 +msgid "If you would like, you can choose specific related products instead of using the ones generated by MarketPress" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1019 +msgid "Changes saved successfully" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:826 +msgid "Option cannot be saved. Try again." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:821 +msgid "Option saved successfully." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:467 +msgid "Img" +msgstr "" + +#: includes/admin/class-mp-product-attributes-list-table.php:57 +msgid "Product attribute(s) deleted successfully." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:162 +msgid "- Create New Variation -" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:144 +msgid "Only lowercase letters and dashes (-) are allowed." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:139 +msgid "If a slug is not entered, it will be generated automatically. Max 32 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:138 +#: includes/admin/class-mp-product-attributes-list-table.php:23 +msgid "Slug" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:130 +msgid "Max 45 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:123 +msgid "Use the numbers on the left to sort. To delete - click the \"X\" to the right of each row." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:122 +msgid "Attribute Options" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:121 +msgid "Add Option" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:105 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:523 +msgid "Sort Order" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:87 +msgid "Alphabetical" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:86 +msgid "ID" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:84 +msgid "Select how the options will be sorted." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:82 +msgid "Sort By" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:75 +msgid "The name of the attribute (e.g. color, size, etc)" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:74 +msgid "Attribute Name" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:69 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Product Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Product Attributes" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:71 +msgid "You can choose to make this page one of the following core store pages." +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:66 +msgid "Network Store Base" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:61 +msgid "Checkout Page" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:52 +msgid "Store Page Settings" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1108 +msgid "Display billing/shipping info for this customer" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1097 +msgid "View order “%s”" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1072 +msgid "Flag as:" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:952 +msgid "Move To Trash" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:948 +msgid " Received" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:927 +msgid "Enter coupon code here" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:812 +msgid "The order status could not be updated due to unexpected error. Please try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:740 +msgid "An invalid bulk action was requested. Please go back and try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:692 +msgid "The order status for order ID %1$s was updated successfully." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:688 +msgid "Order statuses successfully updated." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:530 +msgid "Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:518 +msgid "Actual Shipping Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:513 +msgid "Method Paid For" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:504 +msgid "Amount Collected" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:477 +msgid "DHL" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:408 +msgid "There is no IPN history to show at this time" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:345 +msgid "Type" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:343 +msgid "Gateway" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:301 +#: includes/common/template-functions.php:528 +msgid "Order History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:291 +msgid "IPN History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:283 +msgid "Customer Info" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:279 +msgid "Order Details" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:157 +msgid "All Dates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:320 +msgid "Add Pages to Menu" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:318 +msgid "Add-ons" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:317 +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "User Capabilities" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:316 +#: includes/admin/class-mp-setup-wizard.php:631 +#: includes/admin/store-settings/class-mp-store-settings-payments.php:50 +msgid "Payment Gateways" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:315 +msgid "Shipping Rates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:312 +msgid "Configure" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:309 +#: includes/admin/class-mp-products-admin.php:466 +#: includes/admin/class-mp-shortcode-builder.php:797 +msgid "Tags" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:308 +#: includes/admin/class-mp-products-admin.php:465 +msgid "Categories" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:300 +msgid "Manage" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:297 +msgid "Here's some quick links to manage your store and products." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:288 +msgid "low in stock" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:287 +msgid "%s product" +msgid_plural "%s products" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-dashboard-widgets.php:280 +msgid "received" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:279 +#: includes/admin/class-mp-dashboard-widgets.php:283 +msgid "%s order" +msgid_plural "%s orders" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-dashboard-widgets.php:276 +msgid "Stock & Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:261 +msgid "Last 30 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:256 +msgid "Last 7 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:251 +msgid "Yesterday" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:248 +#: includes/admin/class-mp-dashboard-widgets.php:253 +#: includes/admin/class-mp-dashboard-widgets.php:258 +#: includes/admin/class-mp-dashboard-widgets.php:263 +msgid " Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:246 +msgid "Today" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:241 +msgid "Welcome back! Here's a quick summary of your store's performance." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:196 +#: includes/admin/class-mp-products-admin.php:895 +msgid "No products out of stock." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:136 +#: includes/admin/class-mp-products-admin.php:839 +msgid "Stock Level" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:135 +#: includes/admin/class-mp-products-admin.php:838 +msgid "Variation" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:121 +msgid "Low Stock (%s)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:116 +msgid "Store Management" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:115 +msgid "Store Reports" +msgstr "" + +#: includes/admin/class-mp-ajax.php:579 +#: includes/admin/class-mp-orders-admin.php:520 +#: includes/common/payment-gateways/2checkout.php:370 +#: includes/common/payment-gateways/authorizenet-aim.php:264 +#: includes/common/payment-gateways/mollie.php:93 +#: includes/common/payment-gateways/paymill.php:196 +#: includes/common/payment-gateways/pin.php:190 +#: includes/common/payment-gateways/skrill.php:157 +#: includes/common/payment-gateways/skrill.php:168 +#: includes/common/payment-gateways/wepay.php:143 +#: includes/public/class-mp-checkout.php:404 +msgid "Select One" +msgstr "" + +#: includes/admin/class-mp-ajax.php:511 +msgid "Oops... we could not locate any orders by that ID. Please double check your order ID and try again." +msgstr "" + +#: includes/admin/class-mp-ajax.php:482 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:166 +#: includes/multisite/class-mp-admin-multisite.php:584 +msgid "Edit Page" +msgstr "" + +#: includes/admin/class-mp-ajax.php:346 +msgid "Cancel " +msgstr "" + +#: includes/admin/class-mp-ajax.php:345 +msgid "Save " +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "Edit Description" +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "HTML Markup" +msgstr "" + +#: includes/admin/class-mp-ajax.php:333 +msgid "Plain Text Only" +msgstr "" + +#: includes/admin/class-mp-ajax.php:329 +msgid "Additional Content / Information for this Variation" +msgstr "" + +#: includes/admin/class-mp-ajax.php:317 +#: includes/admin/class-mp-products-admin.php:1762 +msgid "Allow this product to be purchased even if it's out of stock" +msgstr "" + +#: includes/admin/class-mp-ajax.php:313 +#: includes/admin/class-mp-products-admin.php:1711 +msgid "Track Product Inventory" +msgstr "" + +#: includes/admin/class-mp-ajax.php:300 +msgid "Extra Shipping Cost (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:295 +msgid "Ounces:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:294 +msgid "Pounds:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:292 +msgid "Kilograms:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:287 +#: includes/admin/class-mp-products-admin.php:1649 +msgid "Charge Shipping" +msgstr "" + +#: includes/admin/class-mp-ajax.php:273 +#: includes/admin/class-mp-products-admin.php:1623 +#: includes/admin/store-settings/class-mp-store-settings-general.php:454 +msgid "Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:272 +#: includes/admin/class-mp-products-admin.php:1622 +#: includes/admin/class-mp-products-admin.php:2090 +#: includes/admin/class-mp-products-admin.php:2408 +msgid "Special Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:271 +#: includes/admin/class-mp-products-admin.php:1625 +#: includes/admin/class-mp-products-admin.php:2092 +msgid "If you would like this product to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-ajax.php:268 +#: includes/admin/class-mp-products-admin.php:1599 +msgid "Charge Taxes (Special Rate)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:256 +#: includes/admin/class-mp-products-admin.php:1593 +#: includes/admin/class-mp-products-admin.php:2077 +#: includes/admin/class-mp-products-admin.php:2348 +msgid "End Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:255 +#: includes/admin/class-mp-products-admin.php:1589 +#: includes/admin/class-mp-products-admin.php:2072 +msgid "Start Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:1568 +msgid "Enter Sale Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:250 +#: includes/admin/class-mp-products-admin.php:1547 +msgid "Set up a Sale for this Product" +msgstr "" + +#: includes/admin/class-mp-ajax.php:206 includes/admin/class-mp-ajax.php:223 +msgid "Enter " +msgstr "" + +#: includes/admin/class-mp-ajax.php:193 +msgid "Browse" +msgstr "" + +#: includes/admin/class-mp-ajax.php:184 includes/admin/class-mp-ajax.php:192 +msgid "http://" +msgstr "" + +#: includes/admin/class-mp-ajax.php:183 +msgid "External Product URL" +msgstr "" + +#: includes/admin/class-mp-ajax.php:237 +msgid "Limit Per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:177 +#: includes/admin/class-mp-products-admin.php:1520 +msgid "Enter Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:174 +#: includes/admin/class-mp-products-admin.php:1512 +msgid "Enter SKU" +msgstr "" + +#: includes/admin/class-mp-ajax.php:173 +msgid "(Stock Keeping Unit)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:158 +msgid "Remove Image" +msgstr "" + +#: includes/admin/class-mp-ajax.php:74 +msgid "Variation Draft" +msgstr "" + +#: includes/admin/class-mp-admin.php:296 +#: includes/admin/class-mp-dashboard-widgets.php:70 +msgid "Please wait...saving in progress..." +msgstr "" + +#: includes/admin/class-mp-admin.php:295 +#: includes/admin/class-mp-dashboard-widgets.php:69 +msgid "Input is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:294 +#: includes/admin/class-mp-dashboard-widgets.php:68 +msgid "Valid number is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:292 +#: includes/admin/class-mp-dashboard-widgets.php:66 +msgid "Delete %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:291 +#: includes/admin/class-mp-dashboard-widgets.php:65 +msgid "Delete %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:290 +#: includes/admin/class-mp-dashboard-widgets.php:64 +msgid "Update inventory for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:289 +#: includes/admin/class-mp-dashboard-widgets.php:63 +msgid "Update inventory for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:288 +#: includes/admin/class-mp-dashboard-widgets.php:62 +msgid "Update price for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:287 +#: includes/admin/class-mp-dashboard-widgets.php:61 +msgid "Update prices for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:285 +#: includes/admin/class-mp-dashboard-widgets.php:59 +msgid "Creating variations, please wait..." +msgstr "" + +#: includes/admin/class-mp-admin.php:96 +msgid "The following payment gateways have been deprecated, Cubepoints, Bitpay, iDEAL, Skrill, Google Checkout. If you were using one of these gateways, please setup a new payment gateway here." +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:61 +msgid "Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:71 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:71 +#: includes/common/class-mp-gdpr.php:399 includes/common/class-mp-order.php:872 +#: includes/common/helpers.php:164 includes/public/class-mp-checkout.php:1434 +msgid "Shipping Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:66 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:66 +#: includes/common/class-mp-gdpr.php:392 includes/common/class-mp-order.php:864 +#: includes/common/helpers.php:163 includes/public/class-mp-checkout.php:1427 +msgid "Billing Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:61 +msgid "Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:258 +msgid "Shipping Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:256 +msgid "Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:235 +msgid "Payment Method: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:79 +msgid "The dir %s not exist or not writeable" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:239 +msgid "Shop header/logo" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:233 +msgid "Choose a template" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:226 +msgid "Template Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:221 +msgid "Disable automatic creation/attachment of invoices when only free products are ordered" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:220 +msgid "Disable for free products" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:216 +msgid "Attach invoice to" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:214 +msgid "Customer Order Shipped email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:212 +msgid "Customer New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:211 +msgid "Admin New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:206 +msgid "download" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:205 +msgid "How do you want to view the PDF?" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:203 +msgid "Open the PDF in a new browser tab/window" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:202 +msgid "Download the PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:158 +msgid "Export PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:103 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:106 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:109 +msgid "You can't download this order invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:76 +msgid "Invalid Request" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:72 +msgid "Order not exist!" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:67 +msgid "Invalid ID" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1293 +msgid "Coupon added successfully" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1292 +msgid "Please enter a code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1247 +msgid "No end" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1200 +msgid "Valid Dates" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1195 +msgid "Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1027 +msgid "No Coupons found in Trash" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1026 +msgid "No Coupons Found" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1025 +msgid "Search Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1024 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1028 +msgid "View Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1023 +msgid "New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1020 +msgid "Create New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1017 +msgid "Manage Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1002 +msgid "An error occurred while removing your coupon. Please try again." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:964 +msgid "Coupon can't be applied to this cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:951 +msgid "Invalid coupon code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:794 +msgid "Help Text" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:789 +msgid "Form Title" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:783 +msgid "Coupons Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:764 +msgid "End Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:758 +msgid "Does coupon have an end date?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:696 +msgid "Select Products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:688 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:723 +#: includes/common/payment-gateways/paypal-payflow.php:402 +msgid "User" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:638 +msgid "Max Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:636 +msgid "Enter the maximum number of times this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:623 +msgid "Leave blank to allow all other coupons." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:622 +msgid "Select combinable coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:618 +msgid "Can this coupon be combined with other coupons?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:613 +msgid "Apply to each applicable item once per cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:612 +msgid "Apply to each applicable item and quantity ordered" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:609 +msgid "How should the discount amount be applied?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:605 +msgid "Discount Amount" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:604 +msgid "Value must either be a decimal number or a percentage" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:602 +msgid "If you would like to give a percentage-based discount make sure to include the percent (%) symbol. Otherwise, the discount will be applied as a fixed amount off." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:595 +msgid "Letters and Numbers only." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:589 +msgid "Coupon Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:447 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:795 +msgid "More than one code? That's OK! Just be sure to enter one at a time." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:444 +msgid "Apply Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:314 +msgid "Coupon Discounts" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:89 +msgid "1 add-on disabled" +msgid_plural "%s add-ons disabled" +msgstr[0] "" +msgstr[1] "" + +#: includes/addons/class-mp-addons-list-table.php:84 +msgid "1 add-on enabled" +msgid_plural "%s add-ons enabled" +msgstr[0] "" +msgstr[1] "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Disabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Enable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:129 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:67 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:135 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:168 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:202 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:263 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:296 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:330 +msgid "Enabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +msgid "Disable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:34 +msgid "Disable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:33 +msgid "Enable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:21 +#: includes/admin/class-mp-products-admin.php:2280 +#: includes/common/class-mp-product.php:2916 +msgid "Description" +msgstr "" + +#: includes/common/template-functions.php:2889 +#: includes/multisite/template-functions.php:407 +msgid "Popularity (Least Popular - Most Popular)" +msgstr "" + +#: includes/common/template-functions.php:2888 +#: includes/multisite/template-functions.php:406 +msgid "Popularity (Most Popular - Least Popular)" +msgstr "" + +#: includes/common/template-functions.php:2885 +#: includes/multisite/template-functions.php:403 +msgid "Name (Z-A)" +msgstr "" + +#: includes/common/template-functions.php:2884 +#: includes/multisite/template-functions.php:402 +msgid "Name (A-Z)" +msgstr "" + +#: includes/common/template-functions.php:2883 +#: includes/multisite/template-functions.php:401 +msgid "Release Date (Oldest to Latest)" +msgstr "" + +#: includes/common/template-functions.php:2882 +#: includes/multisite/template-functions.php:400 +msgid "Release Date (Latest to Oldest)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:284 +msgid "paid" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "One Time Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Customer Counter" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Daily Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:182 +msgid "For the most accurate rates, please select the appropriate pick up type for your business." +msgstr "" + +#: includes/admin/class-mp-admin.php:374 +msgid "Page saved." +msgstr "" + +#: includes/admin/class-mp-admin.php:370 +msgid "Custom field deleted." +msgstr "" + +#: includes/admin/class-mp-admin.php:369 +msgid "Custom field updated." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:541 +msgid "%s - The payment request expired, - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:536 +msgid "%s - The payment not credited in merchants bitpay account, action required. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:252 +msgid "If enabled, you will recieve an email for each status update on payment." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:240 +msgid "Speed at which the bitcoin transaction registers as \"confirmed\" to the store. This overrides your merchant settings on the Bitpay website." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:238 +msgid "Transaction Speed" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:244 +msgid "Low" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:243 +msgid "Medium" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:242 +msgid "High" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:177 +#: includes/common/payment-gateways/_bitpay.php:517 +#: includes/common/payment-gateways/_bitpay.php:522 +msgid "%s - The payment request is under process. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:175 +#: includes/common/payment-gateways/_bitpay.php:527 +msgid "%s - The payment request has been processed - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:150 +#: includes/common/payment-gateways/_bitpay.php:294 +msgid "Incorrect order invoice, please contact site administrator" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:141 +msgid "We could not verify order invoice details, please try again or contact site administrator for help" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:81 +msgid "Login to Simplify to get your API credentials. Enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:605 +#: includes/common/payment-gateways/paypal-express.php:647 +msgid "Express Checkout is PayPal's premier checkout solution, which streamlines the checkout process for buyers and keeps them on your site after making a purchase. Unlike PayPal Pro, there are no additional fees to use Express Checkout, though you may need to do a free upgrade to a business account. More Info »" +msgstr "" + +#. Plugin URI of the plugin/theme +msgid "https://premium.wpmudev.org/project/e-commerce/" +msgstr "" + +#. Author of the plugin/theme +msgid "WPMU DEV" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:541 +#: includes/admin/class-mp-orders-admin.php:543 +msgid "Tracking Number" +msgstr "" + +#: includes/common/class-mp-order.php:805 +#: includes/common/payment-gateways/stripe.php:336 +#: includes/public/class-mp-checkout.php:402 +msgid "Country" +msgstr "" + +#: includes/common/class-mp-order.php:784 +#: includes/common/payment-gateways/stripe.php:338 +msgid "City" +msgstr "" + +#: includes/common/class-mp-order.php:780 +msgid "Address 2" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:340 +msgid "Address" +msgstr "" + +#: includes/common/class-mp-cart.php:752 includes/common/class-mp-gdpr.php:378 +msgid "Order Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:360 +msgid "Payment Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:347 +msgid "Transaction ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:207 +msgid "The WePay Card Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:186 +#: includes/common/shipping-modules/mp-fedex.php:283 +msgid "Account ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:179 +msgid "Access Token" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:172 +msgid "Client Secret" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:165 +msgid "Client ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:159 +msgid "You must login to WePay to get your API credentials. Make sure to check \"Tokenize credit cards\" option under \"API Keys\" section of your WePay app." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:154 +msgid "When in live mode it is recommended to use SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:148 +msgid "Donation" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:147 +msgid "Event" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:146 +msgid "Personal" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:145 +msgid "Service" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:144 +msgid "Goods" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:141 +msgid "Choose type of payments" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:140 +msgid "Checkout Type" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:134 +msgid "Staging" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:131 +msgid "Choose STAGING if you have registered the app on stage.wepay.com, or PRODUCTION if you registered on www.wepay.com" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:36 +#: includes/common/payment-gateways/wepay.php:299 +msgid "WePay" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:366 +msgid "Rejected - A payment was rejected." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:360 +msgid "Failed - A payment was rejected due to an error." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:342 +msgid "PayWay balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:298 +msgid "Full path of the cacerts.crt file" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:284 +msgid "User Name" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:277 +msgid "Biller Code" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:273 +msgid "Log Directory" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:266 +msgid "Encryption Key" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:60 +msgid "Your PayWay transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:40 +#: includes/common/payment-gateways/_payway.php:41 +msgid "PayWay" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:862 +msgid "You must register this application with PayPal using your business account login to get an Application ID that will work with your API credentials. A bit of a hassle, but worth it! In the near future we will be looking for ways to simplify this process. Register then submit your application while logged in to the developer portal. Note that you do not need an Application ID for testing in sandbox mode. More Information »" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:818 +#: includes/common/payment-gateways/paypal-chained-payments.php:840 +#: includes/common/payment-gateways/paypal-express.php:705 +msgid "You must login to PayPal and create an API signature to get your credentials. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:378 +msgid "Use Payflow payment gateway to accept online payments using your Internet merchant account and processing network. PayPal Payflow Pro is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:595 +msgid "Tags Only" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:594 +msgid "Category Only" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:795 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:593 +msgid "Category & Tags" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:591 +msgid "Relate Products By" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1008 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:455 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:751 +msgid "Right" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1007 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:454 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:749 +msgid "Left" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1009 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:750 +msgid "Center" +msgstr "" + +#: marketpress.php:273 +msgid "Orders from your e-commerce store." +msgstr "" + +#: marketpress.php:231 +msgid "Products for your e-commerce store." +msgstr "" + +#: marketpress.php:222 +msgid "Edit Product" +msgstr "" + +#. Description of the plugin/theme +msgid "The complete WordPress ecommerce plugin - works perfectly with BuddyPress and Multisite too to create a social marketplace, where you can take a percentage! Activate the plugin, adjust your settings then add some products to your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:272 +msgid "Beside" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:271 +msgid "Above" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:268 +msgid "Pin Count" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:261 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:287 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:318 +msgid "All View" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:260 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:286 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:317 +msgid "Single View" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:259 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:285 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:316 +msgid "Off" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:578 +msgid "Related Product Limit" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:681 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1201 +msgid "Applies To" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:685 +msgid "All Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:487 +msgid "The label shown for the tax line item in the cart. Taxes, VAT, GST, etc." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:485 +msgid "Tax Label" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:81 +msgid "Apply" +msgstr "" + +#: includes/admin/class-mp-admin.php:192 +msgid "MarketPress Instructions" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1954 +#: includes/admin/class-mp-products-admin.php:2194 includes/common/data.php:62 +#: includes/common/helpers.php:150 +msgid "Taxes" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1417 +#: includes/common/class-mp-product.php:2900 +msgid "Related Products" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:282 +#: includes/common/shipping-modules/mp-usps.php:316 +msgid "@ Max" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "(3-5 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "Priority Mail Express International Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:92 +msgid "Priority Mail Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:171 +#: includes/common/shipping-modules/mp-pickup.php:247 +msgid "In Store" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:159 +msgid "Pickup Fee" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:141 +msgid "This option allows your customers to indicate that they will pick-up their order at your place of business." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:60 +#: includes/common/shipping-modules/mp-pickup.php:76 +#: includes/common/shipping-modules/mp-pickup.php:176 +msgid "Pickup Instructions" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:24 +#: includes/common/shipping-modules/mp-pickup.php:254 +msgid "Pickup" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping - 0.00" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:256 +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:440 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:309 +msgid "Your Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:301 +msgid "Station" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:300 +msgid "Request Courier" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:299 +msgid "Drop Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:298 +msgid "Business Service Center" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:297 +msgid "Regular Pickup" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:135 +#: includes/common/shipping-modules/mp-fedex.php:264 +msgid "Production" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:207 +msgid "Simplify Commerce by MasterCard" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:104 +msgid "When in live mode, although it is not required, Simplify recommends you have an SSL certificate." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:183 +#: includes/common/payment-gateways/simplify.php:87 +msgid "Public Key" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:175 +#: includes/common/payment-gateways/simplify.php:94 +msgid "Private Key" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:71 +msgid "Simplify helps merchants to accept online payments from Mastercard, Visa, American Express, Discover, JCB, and Diners Club cards. It's that simple. We offer a merchant account and payment gateway in a single, secure package so you can concentrate on what really matters to your business. Only supports USD currently." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:267 +msgid "%1$s" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:151 +msgid "The Simplify Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/simplify.php:18 +msgid "Simplify" +msgstr "" + +#: includes/common/payment-gateways/pin.php:255 +msgid "%1$s Card %2$s" +msgstr "" + +#: includes/common/payment-gateways/pin.php:211 +msgid "The PIN Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:187 +msgid "Selecting a currency other than currency supported by PIN may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/pin.php:164 +msgid "You must login to PIN to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/pin.php:158 +msgid "When in live mode PIN recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/pin.php:45 +#: includes/common/payment-gateways/pin.php:286 +msgid "PIN" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:830 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:534 +#: includes/common/payment-gateways/paypal-express.php:865 +msgid "The payment is pending" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:235 +msgid "The Paymill Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:169 +msgid "You must login to Paymill to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:45 +#: includes/common/payment-gateways/paymill.php:308 +msgid "Paymill" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:90 +msgid "Invalid cardholder" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:89 +msgid "Card is no longer valid or has expired" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:88 +msgid "Please enter a valid Card CVC" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:87 +msgid "Please choose a valid Expiration Date." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:99 +#: includes/common/payment-gateways/skrill.php:100 +msgid "Skrill (Moneybookers)" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:24 +#: includes/common/shipping-modules/mp-weight-rate.php:292 +msgid "Weight Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:303 +msgid "USPS Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:270 +msgid "USPS Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:264 +msgid "USPS Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:145 +msgid "Flat Rate Large" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:140 +msgid "Flat Rate Medium 2" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:135 +msgid "Flat Rate Medium 1" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:130 +msgid "Flat Rate Small" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:118 +msgid "First Class International Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:114 +msgid "Priority Mail International Small Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:112 +msgid "Priority Mail International Medium Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:110 +msgid "Priority Mail International Large Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:108 +msgid "Priority Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:106 +msgid "Express Mail International Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:104 +msgid "Express Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:98 +msgid "Library Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:96 +msgid "Media Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "First-Class Mail Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:90 +msgid "Priority Mail Small Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:88 +msgid "Priority Mail Medium Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +#: includes/common/shipping-modules/mp-usps.php:88 +#: includes/common/shipping-modules/mp-usps.php:90 +#: includes/common/shipping-modules/mp-usps.php:92 +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "(2-4 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +msgid "Priority Mail Large Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "(2-4) days" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "Priority Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "Express Mail Sunday/Holiday Delivery Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:80 +msgid "Express Mail Flat Rate Boxes Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:78 +msgid "Express Mail Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:76 +msgid "Express Mail Sunday/Holiday Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:74 +msgid "Express Mail Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:72 +#: includes/common/shipping-modules/mp-usps.php:74 +#: includes/common/shipping-modules/mp-usps.php:76 +#: includes/common/shipping-modules/mp-usps.php:78 +#: includes/common/shipping-modules/mp-usps.php:80 +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "(1-2 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:72 +msgid "Express Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:67 +#: includes/common/shipping-modules/mp-usps.php:902 +msgid "USPS" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:534 +msgid "UPS (beta)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:166 +msgid "Required if using negotiated rates" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "Worldwide Express Plus" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "(Scheduled)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "Standard" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "(2-5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "Worldwide Expedited" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:54 +msgid "Worldwide Express" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "2nd Day Air AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "(1 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "Next Day Air Early AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "Next Day Air Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "3 Day Select" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:49 +msgid "Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:48 +msgid "2nd Day Air" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "Next Day Air" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:475 +#: includes/common/shipping-modules/mp-ups.php:43 +msgid "UPS" +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:27 +#: includes/common/shipping-modules/mp-table-rate.php:318 +msgid "Table Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:71 +#: includes/common/shipping-modules/mp-table-quantity.php:77 +msgid "Shipping Cost: " +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:70 +#: includes/common/shipping-modules/mp-table-quantity.php:76 +msgid "If quantity is greater than:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:66 +msgid "Each band must be a higher price than the one above it." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:56 +msgid "Number of Bands:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:53 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Each layer must be a higher quantity than the previous." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:51 +msgid "Table Quantity Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:31 +msgid "Table Quantity" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:135 +#: includes/common/shipping-modules/mp-table-rate.php:174 +#: includes/common/shipping-modules/mp-weight-rate.php:189 +msgid "European Union" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:123 +#: includes/common/shipping-modules/mp-table-rate.php:162 +#: includes/common/shipping-modules/mp-weight-rate.php:177 +msgid "United States" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:111 +#: includes/common/shipping-modules/mp-table-rate.php:151 +#: includes/common/shipping-modules/mp-weight-rate.php:166 +msgid "In Country" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:146 +#: includes/common/shipping-modules/mp-table-rate.php:186 +#: includes/common/shipping-modules/mp-weight-rate.php:201 +msgid "International" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:101 +#: includes/common/shipping-modules/mp-table-rate.php:141 +#: includes/common/shipping-modules/mp-weight-rate.php:156 +msgid "Canada" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:92 +#: includes/common/shipping-modules/mp-table-rate.php:132 +#: includes/common/shipping-modules/mp-weight-rate.php:147 +msgid "Hawaii and Alaska" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:83 +#: includes/common/shipping-modules/mp-table-rate.php:123 +#: includes/common/shipping-modules/mp-weight-rate.php:138 +msgid "Lower 48 States" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:64 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping." +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:25 +#: includes/common/shipping-modules/mp-flat-rate.php:223 +msgid "Flat Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:761 +msgid "FedEx (beta)" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Centimeters" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Inches" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1676 +#: includes/admin/class-mp-setup-wizard.php:547 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:166 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +msgid "Kilograms" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:103 +msgid " %1$s - %2$s" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:358 +msgid "Max Weight per Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:356 +msgid "Box Dimensions" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:354 +msgid "Box Name" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:344 +msgid "Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:343 +msgid "For each box defined enter the maximum weight it can contain." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:341 +msgid "Enter your standard box sizes as LengthxWidthxHeight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:386 +#: includes/common/shipping-modules/mp-ups.php:193 +#: includes/common/shipping-modules/mp-usps.php:234 +#: includes/common/shipping-modules/mp-usps.php:338 +msgid "Standard Boxes and Weight Limits" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:328 +msgid "Handling Charge per Interntional Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:294 +msgid "Handling Charge per Domestic Shipment " +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:388 +#: includes/common/shipping-modules/mp-ups.php:196 +#: includes/common/shipping-modules/mp-usps.php:237 +msgid "Add Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "(Next Day)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +msgid "Europe First International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:62 +msgid "International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:61 +#: includes/common/shipping-modules/mp-fedex.php:62 +#: includes/common/shipping-modules/mp-ups.php:54 +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "(1-3 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:61 +msgid "International First" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "(5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "International Economy" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "(2-7 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "Smart Post" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:55 +#: includes/common/shipping-modules/mp-ups.php:49 +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "(1-5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:55 +msgid "Ground Home Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "(1-7 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "Fedex Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:53 +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "(3 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:53 +msgid "Fedex Express Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +#: includes/common/shipping-modules/mp-ups.php:48 +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "(2 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +msgid "Fedex 2 Day" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "(2 Days am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "Fedex 2 Day AM" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "(1 Day)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +msgid "Standard Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "(1 Day am )" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "Priority Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "(1 Day am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "First Overnight" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:476 +#: includes/common/shipping-modules/mp-fedex.php:31 +msgid "FedEx" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:270 +#: includes/common/payment-gateways/simplify.php:179 +#: includes/common/payment-gateways/stripe.php:365 +msgid "%1$s Card ending in %2$s - Expires %3$s" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:259 +#: includes/common/payment-gateways/pin.php:238 +#: includes/common/payment-gateways/simplify.php:171 +msgid "%s Store Purchase - Order ID: %s, Email: %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:266 +msgid "You must login to Stripe to get your API credentials. You can enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:261 +msgid "When in live mode Stripe recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:311 +msgid "The Stripe Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:263 +#: includes/common/payment-gateways/paymill.php:122 +#: includes/common/payment-gateways/stripe.php:222 +msgid "Card Number" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:86 +msgid "Please enter a valid Credit Card Number." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:45 +#: includes/common/payment-gateways/stripe.php:433 +msgid "Stripe" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:750 +msgid "Sets the background color for the payment page. By default, the color is white." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:745 +msgid "Sets the background color for the header of the payment page. By default, the color is white." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:740 +msgid "Sets the border color around the header of the payment page. The border is a 2-pixel perimeter around the header space, which is 750 pixels wide by 90 pixels high. By default, the color is black." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:735 +msgid "URL for an image you want to appear at the top left of the payment page. The image has a maximum size of 750 pixels wide by 90 pixels high. PayPal recommends that you provide an image that is stored on a secure (https) server. If you do not specify an image, the business name is displayed." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:857 +#: includes/common/payment-gateways/paypal-express.php:1131 +msgid "The payment is pending because it is part of an order that has been authorized but not settled." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:853 +#: includes/common/payment-gateways/paypal-express.php:1127 +msgid "The payment is pending because it has been authorized but not settled. You must capture the funds first." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:847 +#: includes/common/payment-gateways/paypal-express.php:1120 +msgid "You denied the payment when it was marked as pending." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:837 +#: includes/common/payment-gateways/paypal-express.php:1108 +msgid "A reversal has occurred on this transaction due to an unknown reason." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:836 +#: includes/common/payment-gateways/paypal-express.php:1107 +msgid "A reversal has occurred on this transaction because you have given the customer a refund." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:835 +#: includes/common/payment-gateways/paypal-express.php:1106 +msgid "A reversal has occurred on this transaction due to a complaint about the transaction from your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:834 +#: includes/common/payment-gateways/paypal-express.php:1105 +msgid "A reversal has occurred on this transaction due to your customer triggering a money-back guarantee." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:833 +#: includes/common/payment-gateways/paypal-express.php:1104 +msgid "A reversal has occurred on this transaction due to a chargeback by your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:1101 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer:" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:826 +#: includes/common/payment-gateways/paypal-express.php:1097 +msgid "A payment has been accepted." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:818 +#: includes/common/payment-gateways/paypal-express.php:1087 +msgid "The transaction has not terminated, e.g. an authorization may be awaiting completion." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:531 +#: includes/common/payment-gateways/paypal-express.php:810 +#: includes/common/payment-gateways/paypal-express.php:1077 +msgid "The payment has failed. This happens only if the payment was made from your customer's bank account." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:806 +#: includes/common/payment-gateways/paypal-express.php:1072 +msgid "An authorization for this transaction has been voided." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:802 +#: includes/common/payment-gateways/paypal-express.php:1067 +msgid "The authorization period for this payment has been reached." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:798 +#: includes/common/payment-gateways/paypal-express.php:1062 +msgid "A reversal has been canceled; for example, when you win a dispute and the funds for the reversal have been returned to you." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:499 +#: includes/common/payment-gateways/paypal-express.php:1163 +msgid "PayPal Express Checkout" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:798 +msgid "Gateway Settings Page Message" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:725 +msgid "Signature" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:506 +#: includes/common/payment-gateways/eway31.php:533 +#: includes/common/shipping-modules/mp-fedex.php:276 +msgid "API Password" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:773 +msgid "Enter a percentage of all store sales to collect as a fee. Decimals allowed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:757 +msgid "Using PayPal Chained Payments allows you as the multisite network owner to collect a predefined fee or percentage of all sales on network MarketPress stores! This is invisible to the customers who purchase items in a store, and all PayPal fees will be charged to the store owner. To use this option you must create API credentials, and you should make all other gateways unavailable or limited above." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:338 +msgid "Please be aware that we will deduct a ?% fee from the total of each transaction in addition to any fees PayPal may charge you. If for any reason you need to refund a customer for an order, please contact us with a screenshot of the refund receipt in your PayPal history as well as the Transaction ID of our fee deduction so we can issue you a refund. Thank you!" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:698 +#: includes/common/payment-gateways/paypal-express.php:149 +msgid "There was a problem connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:470 +#: includes/common/payment-gateways/paypal-express.php:1053 +msgid "There was a problem verifying the IPN string with PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:310 +msgid "There was a problem connecting to PayPal to check the status of your purchase. Please check the status of your order here »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:539 +#: includes/common/payment-gateways/paypal-chained-payments.php:254 +#: includes/common/payment-gateways/paypal-express.php:1139 +msgid "The payment is pending." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:251 +#: includes/common/payment-gateways/paypal-chained-payments.php:531 +#: includes/common/payment-gateways/paypal-express.php:862 +#: includes/common/payment-gateways/paypal-express.php:1136 +msgid "The payment is pending for an unknown reason. For more information, contact PayPal customer service." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:250 +#: includes/common/payment-gateways/paypal-chained-payments.php:530 +#: includes/common/payment-gateways/paypal-express.php:861 +#: includes/common/payment-gateways/paypal-express.php:1135 +msgid "The payment is pending because you are not yet verified. You must verify your account before you can accept this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:249 +#: includes/common/payment-gateways/paypal-chained-payments.php:529 +#: includes/common/payment-gateways/paypal-express.php:860 +#: includes/common/payment-gateways/paypal-express.php:1134 +msgid "The payment is pending because it was made via credit card and you must upgrade your account to Business or Premier status in order to receive the funds. It can also mean that you have reached the monthly limit for transactions on your account." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:248 +#: includes/common/payment-gateways/paypal-chained-payments.php:528 +#: includes/common/payment-gateways/paypal-express.php:859 +#: includes/common/payment-gateways/paypal-express.php:1133 +msgid "The payment is pending because it was made to an email address that is not yet registered or confirmed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:247 +#: includes/common/payment-gateways/paypal-chained-payments.php:527 +#: includes/common/payment-gateways/paypal-express.php:858 +#: includes/common/payment-gateways/paypal-express.php:1132 +msgid "The payment is pending while it is being reviewed by PayPal for risk." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:246 +#: includes/common/payment-gateways/paypal-chained-payments.php:526 +#: includes/common/payment-gateways/paypal-express.php:856 +#: includes/common/payment-gateways/paypal-express.php:1130 +msgid "You do not have a balance in the currency sent, and you do not have your Payment Receiving Preferences set to automatically convert and accept this payment. You must manually accept or deny this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:245 +#: includes/common/payment-gateways/paypal-chained-payments.php:525 +#: includes/common/payment-gateways/paypal-express.php:855 +#: includes/common/payment-gateways/paypal-express.php:1129 +msgid "The payment is pending because you hold a non-U.S. account and do not have a withdrawal mechanism. You must manually accept or deny this payment from your Account Overview." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:244 +#: includes/common/payment-gateways/paypal-chained-payments.php:524 +#: includes/common/payment-gateways/paypal-express.php:854 +#: includes/common/payment-gateways/paypal-express.php:1128 +msgid "The payment is pending because it was made by an eCheck that has not yet cleared." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:243 +#: includes/common/payment-gateways/paypal-chained-payments.php:523 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:236 +#: includes/common/payment-gateways/paypal-chained-payments.php:516 +msgid "The transaction was rejected by the receiver (you)." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:510 +#: includes/common/payment-gateways/paypal-express.php:843 +#: includes/common/payment-gateways/paypal-express.php:1115 +msgid "You refunded the payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:224 +#: includes/common/payment-gateways/paypal-chained-payments.php:504 +msgid "The transaction is in progress." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:212 +#: includes/common/payment-gateways/paypal-chained-payments.php:491 +#: includes/common/payment-gateways/paypal-express.php:814 +#: includes/common/payment-gateways/paypal-express.php:1082 +msgid "The payment has been partially refunded." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:202 +#: includes/common/payment-gateways/paypal-chained-payments.php:481 +msgid "PayPal balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:177 +msgid "There was a problem connecting to PayPal to setup your purchase. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:122 +msgid "Your PayPal transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:50 +#: includes/common/payment-gateways/paypal-chained-payments.php:53 +#: includes/common/payment-gateways/paypal-chained-payments.php:732 +#: includes/common/payment-gateways/paypal-express.php:500 +#: includes/common/payment-gateways/paypal-express.php:938 +msgid "PayPal" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:48 +#: includes/common/payment-gateways/paypal-chained-payments.php:730 +#: includes/common/payment-gateways/paypal-chained-payments.php:756 +#: includes/common/payment-gateways/paypal-chained-payments.php:873 +msgid "PayPal Chained Payments" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:59 +#: includes/common/payment-gateways/paypal-payflow.php:467 +msgid "PayPal Payflow Pro" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:378 +msgid "Chargeback - A payment was reversed due to a chargeback. The funds have been removed from your account balance and returned to the buyer." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:372 +msgid "Failed - The Credit Card or Direct Debit transaction was declined." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:354 +#: includes/common/payment-gateways/skrill.php:366 +msgid "Cancelled - The payment was cancelled manually by the sender in their online account history or was auto-cancelled after 14 days pending." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:360 +msgid "Pending - The payment is pending. It can take 2-3 days for bank transfers to complete." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:349 +#: includes/common/payment-gateways/skrill.php:354 +msgid "Processed - The payment has been completed, and the funds have been added successfully to your Moneybookers account balance." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:189 +msgid "Shown to the customer on the confirmation screen - the end step of the process - a note, confirmation number, or any other message. Line breaks <br> may be used for longer messages." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:188 +msgid "Confirmation Note (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:183 +msgid "The URL of the logo which you would like to appear at the top of the payment form. The logo must be accessible via HTTPS otherwise it will not be shown. For best integration results we recommend that you use a logo with dimensions up to 200px in width and 50px in height." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:182 +msgid "Logo Image (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:177 +msgid "The name of this store, which will be shown on the gateway. If no value is submitted, the account email will be shown as the recipient of the payment." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:176 +msgid "Merchant Name (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:165 +msgid "Language" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:368 +#: includes/common/payment-gateways/authorizenet-aim.php:262 +#: includes/common/payment-gateways/eway.php:363 +#: includes/common/payment-gateways/eway31.php:471 +#: includes/common/payment-gateways/mollie.php:91 +#: includes/common/payment-gateways/paymill.php:193 +#: includes/common/payment-gateways/paypal-chained-payments.php:356 +#: includes/common/payment-gateways/paypal-express.php:688 +#: includes/common/payment-gateways/paypal-payflow.php:432 +#: includes/common/payment-gateways/pin.php:186 +#: includes/common/payment-gateways/skrill.php:152 +#: includes/common/payment-gateways/stripe.php:288 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:104 +msgid "Currency" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:359 +#: includes/common/payment-gateways/skrill.php:143 +msgid "Secret Word" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:261 +msgid "Order ID:" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:234 +msgid "Complete Checkout" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:204 +msgid "Your Moneybookers transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:155 +msgid "This is the email text to send to those who have made manual payment checkouts. You should include your manual payment instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:257 +#: includes/common/payment-gateways/manual-payments.php:128 +msgid "Record payments manually, such as by Cash, Check, or EFT." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:71 +msgid "Manual/Invoice" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:648 +#: includes/common/payment-gateways/manual-payments.php:35 +#: includes/common/payment-gateways/manual-payments.php:36 +msgid "Manual Payment" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:34 +#: includes/common/payment-gateways/manual-payments.php:163 +msgid "Manual Payments" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:288 +msgid "iDEAL Simulator (for testing)" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:287 +msgid "ABN Amro Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:286 +msgid "Friesland Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:285 +msgid "Rabobank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:284 +msgid "ING Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:279 +msgid "Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:270 +msgid "To make it easier to pay for online products and services, the Dutch banking community has developed the iDEAL online payment method. iDEAL allows online payments to be made using online banking in EUR only." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:247 +#: includes/common/payment-gateways/_payway.php:199 +#: includes/common/payment-gateways/manual-payments.php:68 +msgid "Invoiced" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1016 +msgid "Coupon" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:77 +#: includes/common/payment-gateways/_ideal.php:250 +#: includes/common/payment-gateways/_payway.php:202 +msgid "iDEAL" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:76 +msgid "iDEAL (beta)" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:327 +msgid "Merchant Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:293 +#: includes/common/payment-gateways/_payway.php:302 +#: includes/common/payment-gateways/payfast.php:324 +msgid "Merchant ID" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:462 +msgid "eWay Rapid 3.0 Payments lets merchants recieve credit card payments through eWay without need for users to leave the shop. Note this gateway requires a valid SSL certificate configured for this site." +msgstr "" + +#: includes/common/payment-gateways/eway.php:452 +msgid "There was a problem connecting to eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/eway.php:432 +#: includes/common/payment-gateways/eway.php:437 +msgid "The url of the image can be hosted on your website and pass the secure https:// path of the image to be displayed at the top of the website. This is the second image block on the webpage and is restricted to 960px X 65px. A default secure image is used if none is supplied." +msgstr "" + +#: includes/common/payment-gateways/eway.php:431 +#: includes/common/payment-gateways/eway.php:436 +msgid "Company Logo (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:427 +msgid "The page footer text can be customised and populated below the customer's order details. Useful for contact information." +msgstr "" + +#: includes/common/payment-gateways/eway.php:426 +msgid "Page Footer (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:421 +msgid "Page Description (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:417 +#: includes/common/payment-gateways/eway.php:422 +msgid "This value is used to populate the browsers title bar at the top of the screen." +msgstr "" + +#: includes/common/payment-gateways/eway.php:416 +msgid "Page Title (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:412 +msgid "This will be displayed as the company the customer is purchasing from, including this is highly recommended." +msgstr "" + +#: includes/common/payment-gateways/eway.php:411 +msgid "Company Name" +msgstr "" + +#: includes/common/payment-gateways/eway.php:394 +msgid "Customer ID" +msgstr "" + +#: includes/common/payment-gateways/eway.php:381 +#: includes/common/payment-gateways/eway31.php:488 +msgid "Live API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway.php:371 +#: includes/common/payment-gateways/eway31.php:479 +msgid "Gateway Mode" +msgstr "" + +#: includes/common/payment-gateways/eway.php:354 +msgid "The Hosted Page is a webpage hosted on eWAY's side eliminating the need for merchants to capture, transmit or store credit card numbers. At the checkout time the merchant automatically redirects the customer to the Hosted Page where they would enter their details and have the transaction processed. Upon completion of the transaction the customer is redirected back to the MarketPress checkout confirmation page." +msgstr "" + +#: includes/common/payment-gateways/eway.php:314 +msgid "There was a problem with your credit card information: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:300 +msgid "Paid - The card has been processed - %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:253 +msgid "There was a problem setting up the transaction with eWay: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:245 +#: includes/common/payment-gateways/eway.php:289 +msgid "There was a problem parsing the response from eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:159 +#: includes/common/payment-gateways/eway.php:189 +#: includes/common/payment-gateways/paypal-chained-payments.php:634 +#: includes/common/payment-gateways/paypal-express.php:322 +#: includes/common/payment-gateways/paypal-express.php:473 +msgid "%s Store Purchase - Order ID: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:147 +#: includes/common/payment-gateways/eway.php:462 +msgid "eWay Shared Payments" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:214 +msgid "This is the email text to send to those who have made CubePoints checkouts. You should include your CubePoints instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:212 +#: includes/common/payment-gateways/free_orders.php:188 +#: includes/common/payment-gateways/manual-payments.php:154 +msgid "Order Confirmation Email" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:207 +#: includes/common/payment-gateways/manual-payments.php:149 +msgid "Confirmation User Instructions" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:202 +#: includes/common/payment-gateways/manual-payments.php:144 +msgid "User Instructions" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:198 +#: includes/common/payment-gateways/free_orders.php:170 +#: includes/common/payment-gateways/manual-payments.php:139 +msgid "Enter a public name for this payment method that is displayed to users - No HTML" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:532 +#: includes/common/payment-gateways/_cubepoints.php:196 +#: includes/common/payment-gateways/free_orders.php:169 +#: includes/common/payment-gateways/manual-payments.php:138 +msgid "Method Name" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:187 +msgid "Accept CubePoints as payment(requires the CubePoints plugin)." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:140 +msgid "Sorry, but you do not appear to have enough points to complete this purchase!" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:124 +msgid "%s Store Purchase" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:79 +#: includes/common/payment-gateways/_cubepoints.php:171 +msgid "Your current points: " +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:133 +#: includes/common/payment-gateways/_cubepoints.php:197 +msgid "CubePoints" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:344 +msgid "Authorize.net AIM Checkout" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:331 +msgid "Custom API URL" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:332 +msgid "Many other gateways have Authorize.net API emulators. To use one of these gateways input their API post url here." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:322 +msgid "Request a delimited response from the payment gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:316 +msgid "Security: MD5 Hash" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:317 +msgid "The payment gateway generated MD5 hash value that can be used to authenticate the transaction response. Not needed because responses are returned using an SSL connection." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:306 +msgid "Customer Receipt Email Footer" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:296 +msgid "Customer Receipt Email Header" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:297 +#: includes/common/payment-gateways/paypal-payflow.php:446 +msgid "This text will appear as the header of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:282 +msgid "Encapsulation Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:283 +msgid "Authorize.net default is blank. Otherwise, get this from your credit card processor. If the transactions are going through, but getting strange responses, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:273 +msgid "Optional settings to control advanced options" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:224 +#: includes/common/payment-gateways/authorizenet-aim.php:272 +msgid "Advanced Settings" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:253 +msgid "Transaction Key" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:246 +msgid "Login ID" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:396 +msgid "Gateway Credentials" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:221 +msgid "Authorize.net AIM is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway. USD is the only currency supported by this gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:205 +msgid "There was a problem finalizing your purchase. %s Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:519 +#: includes/common/payment-gateways/paypal-chained-payments.php:218 +#: includes/common/payment-gateways/paypal-chained-payments.php:498 +#: includes/common/payment-gateways/paypal-express.php:822 +#: includes/common/payment-gateways/paypal-express.php:1092 +msgid "The payment has been completed, and the funds have been added successfully to your account balance." +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:233 +msgid "Please enter a valid credit card security code" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:224 +#: includes/public/class-mp-checkout.php:867 +msgid "Please enter a valid credit card number" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:221 +msgid "Please enter your credit card number" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:217 +msgid "Please enter your credit card security code" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:213 +msgid "Please select your credit card expiration date." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:299 +#: includes/common/payment-gateways/authorizenet-aim.php:50 +#: includes/common/payment-gateways/eway.php:148 +#: includes/common/payment-gateways/eway.php:298 +#: includes/common/payment-gateways/eway31.php:267 +#: includes/common/payment-gateways/paymill.php:46 +#: includes/common/payment-gateways/paypal-express.php:972 +#: includes/common/payment-gateways/paypal-payflow.php:60 +#: includes/common/payment-gateways/pin.php:46 +#: includes/common/payment-gateways/simplify.php:19 +#: includes/common/payment-gateways/stripe.php:46 +#: includes/common/payment-gateways/wepay.php:37 +msgid "Credit Card" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:49 +msgid "Authorize.net Checkout" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:156 +#: includes/common/payment-gateways/stripe.php:293 +msgid "Selecting a currency other than that used for your store may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:352 +msgid "Seller ID" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:340 +#: includes/common/payment-gateways/_ideal.php:311 +#: includes/common/payment-gateways/authorizenet-aim.php:234 +#: includes/common/payment-gateways/eway.php:376 +#: includes/common/payment-gateways/payfast.php:315 +#: includes/common/payment-gateways/paypal-chained-payments.php:368 +#: includes/common/payment-gateways/paypal-express.php:699 +#: includes/common/payment-gateways/paypal-payflow.php:391 +msgid "Live" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:339 +#: includes/common/payment-gateways/authorizenet-aim.php:233 +#: includes/common/payment-gateways/eway.php:375 +#: includes/common/payment-gateways/paypal-chained-payments.php:367 +#: includes/common/payment-gateways/paypal-express.php:698 +#: includes/common/payment-gateways/paypal-payflow.php:390 +#: includes/common/shipping-modules/mp-fedex.php:263 +msgid "Sandbox" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:336 +#: includes/common/payment-gateways/_ideal.php:307 +#: includes/common/payment-gateways/authorizenet-aim.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:365 +#: includes/common/payment-gateways/paypal-express.php:695 +#: includes/common/payment-gateways/paypal-payflow.php:387 +#: includes/common/payment-gateways/wepay.php:130 +#: includes/common/shipping-modules/mp-fedex.php:260 +msgid "Mode" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:288 +#: includes/common/payment-gateways/mijireh.php:242 +#: includes/common/payment-gateways/mollie.php:212 +msgid "The order has been received" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:74 +#: includes/common/payment-gateways/2checkout.php:75 +#: includes/common/payment-gateways/2checkout.php:435 +msgid "2Checkout" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:306 +msgid "Confirm" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:218 +#: includes/common/class-mp-cart.php:974 includes/common/class-mp-cart.php:1354 +#: includes/common/template-functions.php:918 +msgid "Checkout" +msgstr "" + +#: includes/common/template-functions.php:207 +msgid "Check Order Status" +msgstr "" + +#: includes/common/template-functions.php:235 +msgid "View Products" +msgstr "" + +#: includes/common/template-functions.php:263 +msgid "Visit Store" +msgstr "" + +#: includes/common/template-functions.php:2912 +#: includes/multisite/template-functions.php:448 +msgid "Order By" +msgstr "" + +#: includes/common/template-functions.php:2887 +#: includes/multisite/template-functions.php:405 +msgid "Price (High to Low)" +msgstr "" + +#: includes/common/template-functions.php:2886 +#: includes/multisite/template-functions.php:404 +msgid "Price (Low to High)" +msgstr "" + +#: includes/common/template-functions.php:2881 +#: includes/multisite/template-functions.php:399 +msgid "Default" +msgstr "" + +#: includes/common/template-functions.php:2858 +msgid "Show All" +msgstr "" + +#: includes/common/class-mp-product.php:2048 +msgid "View Larger Image »" +msgstr "" + +#: includes/common/class-mp-product.php:979 +msgid "Out of Stock" +msgstr "" + +#: includes/common/template-functions.php:148 +msgid "Price: " +msgstr "" + +#: includes/multisite/template-functions.php:833 +msgid "No Tags" +msgstr "" + +#: includes/common/template-functions.php:3162 +msgid "Uncategorized" +msgstr "" + +#: includes/common/class-mp-cart.php:569 includes/common/class-mp-order.php:604 +#: includes/common/helpers.php:115 +msgid "Download" +msgstr "" + +#: includes/common/class-mp-cart.php:1353 +msgid "Empty Cart" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:291 +#: includes/common/payment-gateways/paypal-express.php:718 +#: includes/common/payment-gateways/paypal-payflow.php:423 +#: includes/common/shipping-modules/mp-ups.php:158 +#: includes/public/class-mp-checkout.php:1254 +#: includes/public/class-mp-checkout.php:1383 +msgid "Password" +msgstr "" + +#: includes/common/payment-gateways/eway.php:387 +#: includes/common/payment-gateways/paypal-express.php:711 +#: includes/common/shipping-modules/mp-usps.php:185 +#: includes/public/class-mp-checkout.php:1249 +msgid "Username" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:437 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:790 +msgid "Have a coupon code?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:321 +#: includes/admin/class-mp-orders-admin.php:526 +#: includes/common/class-mp-cart.php:592 +msgid "Remove" +msgstr "" + +#: includes/admin/class-mp-ajax.php:316 +msgid "Quantity:" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2140 +#: includes/admin/class-mp-products-admin.php:2387 +#: includes/common/shipping-modules/class-mp-shipping-api.php:507 +msgid "Extra Shipping Cost" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:403 +msgid "Choose a Shipping Method:" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1691 +#: includes/admin/class-mp-products-admin.php:2131 +#: includes/admin/class-mp-products-admin.php:2378 +#: includes/common/shipping-modules/class-mp-shipping-api.php:228 +msgid "Ounces" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1684 +#: includes/admin/class-mp-products-admin.php:2123 +#: includes/admin/class-mp-products-admin.php:2369 +#: includes/admin/class-mp-setup-wizard.php:546 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:165 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +#: includes/common/shipping-modules/class-mp-shipping-api.php:227 +msgid "Pounds" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:226 +msgid "Product Weight:" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:214 +msgid "Weight (Kilograms)" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:82 +msgid "Number of Categories:" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:72 +msgid "Product Count" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:20 +#: includes/admin/class-mp-product-attributes-admin.php:129 +#: includes/admin/class-mp-product-attributes-list-table.php:22 +#: includes/admin/class-mp-products-admin.php:2216 +#: includes/admin/class-mp-shortcode-builder.php:628 +#: includes/admin/class-mp-shortcode-builder.php:1415 +#: includes/admin/widgets/ms-global-categories.php:70 +#: includes/common/shipping-modules/mp-fedex.php:395 +#: includes/common/shipping-modules/mp-ups.php:202 +#: includes/common/shipping-modules/mp-usps.php:243 +#: includes/public/class-mp-checkout.php:314 +msgid "Name" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:67 +msgid "Order Categories By:" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:24 +#: includes/admin/widgets/ms-global-categories.php:50 +msgid "Global Product Categories" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:15 +msgid "Global Product Category List" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:13 +msgid "Displays a network-wide HTML list of product categories from network MarketPress stores." +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:24 +#: includes/admin/widgets/ms-global-tag-cloud.php:45 +msgid "Global Product Tags" +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:15 +msgid "Global Product Tag Cloud" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:947 +#: includes/admin/widgets/ms-global-product-list.php:173 +msgid "Excerpt" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:169 +msgid "Content To Show:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:140 +msgid "Limit To Product Tag:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:132 +msgid "Limit To Product Category:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:72 +msgid "Global Products" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:16 +msgid "Global Product List" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:14 +msgid "Shows a customizable global list of products from network MarketPress stores." +msgstr "" + +#: includes/common/class-mp-product.php:974 +#: includes/multisite/template-functions.php:731 +msgid "Buy Now »" +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:13 +msgid "Displays global most used product tags in cloud format from network MarketPress stores." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:438 +msgid "Theme Permissions" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:402 +#: includes/multisite/class-mp-admin-multisite.php:448 +msgid "No Access" +msgstr "" + +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:120 +msgid "Pro Site Level" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:401 +#: includes/multisite/class-mp-admin-multisite.php:447 +msgid "All Can Use" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:390 +msgid "Gateway Permissions" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:375 +msgid "Select a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:350 +msgid "Global Gateway" +msgstr "" + +#. Plugin Name of the plugin/theme +msgid "MarketPress" +msgstr "" + +#: includes/admin/widgets/product-tag-cloud.php:7 +msgid "Your most used product tags in cloud format from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/categories.php:79 +msgid "Show hierarchy" +msgstr "" + +#: includes/admin/widgets/categories.php:76 +#: includes/admin/widgets/ms-global-categories.php:92 +msgid "Show product counts" +msgstr "" + +#: includes/admin/widgets/categories.php:73 +msgid "Show as dropdown" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:710 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:736 +#: includes/admin/widgets/categories.php:30 +msgid "Select Category" +msgstr "" + +#: includes/admin/widgets/categories.php:7 +msgid "A list or dropdown of product categories from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/product-list.php:250 +msgid "Show Buy Button" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:183 +#: includes/admin/widgets/product-list.php:244 +msgid "Show Price" +msgstr "" + +#: includes/admin/widgets/product-list.php:241 +msgid "Show Excerpt" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:155 +#: includes/admin/widgets/product-list.php:238 +msgid "Thumbnail Size:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:153 +#: includes/admin/widgets/product-list.php:237 +msgid "Show Thumbnail" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:147 +#: includes/admin/widgets/product-list.php:233 +msgid "Display Settings" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:136 +#: includes/admin/widgets/ms-global-product-list.php:144 +#: includes/admin/widgets/product-list.php:230 +msgid "Enter the Slug" +msgstr "" + +#: includes/admin/widgets/product-list.php:228 +#: includes/common/template-functions.php:894 +msgid "Tag" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:686 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:712 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:739 +#: includes/admin/class-mp-shortcode-builder.php:796 +#: includes/admin/widgets/product-list.php:227 +#: includes/common/template-functions.php:886 +#: includes/common/template-functions.php:2907 +msgid "Category" +msgstr "" + +#: includes/admin/widgets/product-list.php:226 +msgid "No Filter" +msgstr "" + +#: includes/admin/widgets/product-list.php:224 +msgid "Taxonomy Filter:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:108 +#: includes/admin/widgets/product-list.php:209 +msgid "Order Products By:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:101 +#: includes/admin/widgets/product-list.php:206 +msgid "Number of Products:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:98 +#: includes/admin/widgets/product-list.php:204 +msgid "List Settings" +msgstr "" + +#: includes/admin/widgets/product-list.php:177 +msgid "Our Products" +msgstr "" + +#: includes/admin/widgets/product-list.php:144 +#: includes/common/template-functions.php:2070 +#: includes/common/template-functions.php:2347 +#: includes/multisite/template-functions.php:303 +#: includes/multisite/template-functions.php:623 +msgid "No Products" +msgstr "" + +#: includes/admin/widgets/product-list.php:8 +msgid "Product List" +msgstr "" + +#: includes/admin/widgets/product-list.php:7 +msgid "Shows a customizable list of products from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/cart.php:75 includes/admin/widgets/categories.php:82 +#: includes/admin/widgets/product-list.php:253 +#: includes/admin/widgets/product-tag-cloud.php:57 +msgid "Only show on store pages" +msgstr "" + +#: includes/admin/widgets/cart.php:65 +#: includes/admin/widgets/ms-global-product-list.php:92 +#: includes/admin/widgets/product-list.php:200 +msgid "Custom Text:" +msgstr "" + +#: includes/admin/widgets/cart.php:64 includes/admin/widgets/categories.php:69 +#: includes/admin/widgets/ms-global-categories.php:59 +#: includes/admin/widgets/ms-global-product-list.php:87 +#: includes/admin/widgets/ms-global-tag-cloud.php:49 +#: includes/admin/widgets/product-list.php:199 +#: includes/admin/widgets/product-tag-cloud.php:49 +msgid "Title:" +msgstr "" + +#: includes/admin/widgets/cart.php:7 +msgid "Shows dynamic shopping cart contents along with a checkout button for your MarketPress store." +msgstr "" + +#: includes/admin/widgets/product-tag-cloud.php:8 +msgid "Product Tag Cloud" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:539 +#: includes/admin/class-mp-setup-wizard.php:575 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:163 +msgid "Measurement System" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:616 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:149 +msgid "Select Shipping Options" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:596 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:129 +msgid "Calculated Options" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:582 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:115 +msgid "No Shipping" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:110 +msgid "EU" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:109 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:93 +msgid "All" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:92 +msgid "Select:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:185 +msgid "Store Pages" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:223 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:256 +msgid "Order Shipped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:60 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:95 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:128 +#: marketpress.php:266 +msgid "New Order" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:314 +msgid "Email Notifications" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:59 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:200 +msgid "Products List" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:58 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:190 +msgid "Store Base" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:108 +#: includes/admin/class-mp-shortcode-builder.php:635 +#: includes/admin/class-mp-shortcode-builder.php:708 +#: includes/admin/class-mp-shortcode-builder.php:875 +#: includes/admin/class-mp-shortcode-builder.php:1319 +#: includes/admin/class-mp-shortcode-builder.php:1422 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:526 +#: includes/admin/widgets/ms-global-categories.php:78 +#: includes/admin/widgets/ms-global-product-list.php:127 +#: includes/admin/widgets/product-list.php:221 +msgid "Ascending" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:109 +#: includes/admin/class-mp-shortcode-builder.php:636 +#: includes/admin/class-mp-shortcode-builder.php:709 +#: includes/admin/class-mp-shortcode-builder.php:876 +#: includes/admin/class-mp-shortcode-builder.php:1320 +#: includes/admin/class-mp-shortcode-builder.php:1423 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:525 +#: includes/admin/widgets/ms-global-categories.php:75 +#: includes/admin/widgets/ms-global-product-list.php:124 +#: includes/admin/widgets/product-list.php:220 +msgid "Descending" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:637 +#: includes/admin/class-mp-shortcode-builder.php:695 +#: includes/admin/class-mp-shortcode-builder.php:862 +#: includes/admin/class-mp-shortcode-builder.php:1306 +#: includes/admin/class-mp-shortcode-builder.php:1424 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:518 +#: includes/admin/widgets/ms-global-product-list.php:121 +#: includes/admin/widgets/product-list.php:218 +msgid "Random" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:694 +#: includes/admin/class-mp-shortcode-builder.php:861 +#: includes/admin/class-mp-shortcode-builder.php:1305 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:517 +#: includes/admin/widgets/ms-global-product-list.php:119 +#: includes/admin/widgets/product-list.php:216 +msgid "Product Price" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:693 +#: includes/admin/class-mp-shortcode-builder.php:860 +#: includes/admin/class-mp-shortcode-builder.php:1304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:516 +#: includes/admin/widgets/ms-global-product-list.php:117 +#: includes/admin/widgets/product-list.php:215 +msgid "Number of Sales" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:692 +#: includes/admin/class-mp-shortcode-builder.php:859 +#: includes/admin/class-mp-shortcode-builder.php:1303 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:515 +#: includes/admin/widgets/product-list.php:214 +msgid "Product Author" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:691 +#: includes/admin/class-mp-shortcode-builder.php:858 +#: includes/admin/class-mp-shortcode-builder.php:1302 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:514 +#: includes/admin/widgets/product-list.php:213 +msgid "Product ID" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:690 +#: includes/admin/class-mp-shortcode-builder.php:857 +#: includes/admin/class-mp-shortcode-builder.php:1301 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:513 +#: includes/admin/widgets/ms-global-product-list.php:113 +#: includes/admin/widgets/product-list.php:212 +msgid "Publish Date" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:430 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:726 +msgid "Width" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:439 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:735 +msgid "Height" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:88 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:402 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:698 +msgid "Custom" +msgstr "" + +#: includes/common/class-mp-product.php:179 +#: includes/common/class-mp-product.php:992 +#: includes/common/class-mp-product.php:1000 +#: includes/multisite/template-functions.php:579 +msgid "Buy Now" +msgstr "" + +#: includes/common/class-mp-product.php:175 +#: includes/common/class-mp-product.php:990 +#: includes/common/class-mp-product.php:998 +msgid "Add To Cart" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:807 +msgid "Store Style" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1021 +msgid "Edit Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupon.php:580 +#: includes/admin/class-mp-ajax.php:238 +#: includes/admin/class-mp-products-admin.php:1532 +msgid "Unlimited" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1198 +msgid "Remaining Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1197 +msgid "Used" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:752 +#: includes/admin/class-mp-products-admin.php:2343 +msgid "Start Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:598 +msgid "Coupon Code" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:444 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:284 +msgid "Save Changes" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:57 +#: includes/admin/class-mp-shortcode-builder.php:716 +#: includes/admin/class-mp-shortcode-builder.php:727 +#: includes/admin/class-mp-shortcode-builder.php:883 +#: includes/admin/class-mp-shortcode-builder.php:894 +#: includes/admin/class-mp-shortcode-builder.php:946 +#: includes/admin/class-mp-shortcode-builder.php:956 +#: includes/admin/class-mp-shortcode-builder.php:1006 +#: includes/admin/class-mp-shortcode-builder.php:1327 +#: includes/admin/class-mp-shortcode-builder.php:1338 +#: includes/admin/store-settings/class-mp-store-settings-general.php:357 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:270 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:108 +#: includes/admin/widgets/ms-global-product-list.php:172 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:94 +msgid "None" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:352 +msgid "Google Analytics Ecommerce Tracking" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:310 +msgid "This option turns MarketPress into more of a product listing plugin, disabling shopping carts, checkout, and order management. This is useful if you simply want to list items you can buy in a store somewhere else, optionally linking the \"Buy Now\" buttons to an external site. Some examples are a car dealership, or linking to songs/albums in itunes, or linking to products on another site with your own affiliate links." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:304 +msgid "Whether or not customers must be registered and logged in to checkout. (Not recommended: Enabling this can lower conversions)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:258 +msgid "How many times may a customer download a file they have purchased? (It's best to set this higher than one in case they have any problems downloading)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:257 +msgid "Maximum Downloads" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:298 +msgid "This will set the product to draft if inventory of all variations is gone." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:288 +msgid "At what low stock count do you want to be warned for products you have enabled inventory tracking for?" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:208 +#: includes/admin/store-settings/class-mp-store-settings-general.php:287 +msgid "Inventory Warning Threshold" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:282 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:542 +msgid "Miscellaneous Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:429 +#: includes/multisite/class-mp-admin-multisite.php:247 +msgid "Show Decimal in Prices" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:451 +#: includes/admin/store-settings/class-mp-store-settings-general.php:403 +#: includes/multisite/class-mp-admin-multisite.php:221 +msgid "Currency Symbol Position" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:444 +#: includes/admin/store-settings/class-mp-store-settings-general.php:396 +msgid "Store Currency" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:429 +#: includes/admin/store-settings/class-mp-store-settings-general.php:381 +msgid "Currency Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:516 +msgid "Please see your local tax laws. Note if this is enabled and a downloadable only cart, rates will be the default for your base location." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:529 +msgid "Apply Tax to Downloadable Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:498 +msgid "Enabling this option allows you to enter and show all prices inclusive of tax, while still listing the tax total as a line item in shopping carts. Please see your local tax laws." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:497 +msgid "Enter Prices Inclusive of Tax?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:492 +msgid "Please see your local tax laws. Most areas charge tax on shipping fees." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:491 +msgid "Apply Tax To Shipping Fees?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:674 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:565 +#: includes/common/payment-gateways/authorizenet-aim.php:291 +#: includes/common/payment-gateways/authorizenet-aim.php:326 +#: includes/common/payment-gateways/payfast.php:347 +msgid "No" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:675 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:759 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:512 +#: includes/admin/class-mp-setup-wizard.php:518 +#: includes/admin/class-mp-setup-wizard.php:524 +#: includes/admin/class-mp-setup-wizard.php:530 +#: includes/admin/class-mp-setup-wizard.php:564 +#: includes/admin/store-settings/class-mp-store-settings-general.php:232 +#: includes/admin/store-settings/class-mp-store-settings-general.php:299 +#: includes/admin/store-settings/class-mp-store-settings-general.php:305 +#: includes/admin/store-settings/class-mp-store-settings-general.php:311 +#: includes/admin/store-settings/class-mp-store-settings-general.php:317 +#: includes/admin/store-settings/class-mp-store-settings-general.php:328 +#: includes/admin/store-settings/class-mp-store-settings-general.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:341 +#: includes/admin/store-settings/class-mp-store-settings-general.php:348 +#: includes/admin/store-settings/class-mp-store-settings-general.php:367 +#: includes/admin/store-settings/class-mp-store-settings-general.php:493 +#: includes/admin/store-settings/class-mp-store-settings-general.php:499 +#: includes/admin/store-settings/class-mp-store-settings-general.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:556 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:375 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:381 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:387 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:474 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:493 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:532 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:574 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:606 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:664 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:670 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:677 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:683 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:689 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:763 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:774 +#: includes/common/payment-gateways/_bitpay.php:250 +#: includes/common/payment-gateways/_bitpay.php:257 +#: includes/common/payment-gateways/_bitpay.php:264 +#: includes/common/payment-gateways/authorizenet-aim.php:290 +#: includes/common/payment-gateways/authorizenet-aim.php:325 +#: includes/common/payment-gateways/free_orders.php:160 +#: includes/common/payment-gateways/payfast.php:346 +#: includes/common/payment-gateways/paymill.php:162 +#: includes/common/payment-gateways/paypal-payflow.php:441 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-checkbox.php:22 +msgid "Yes" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:492 +#: includes/admin/store-settings/class-mp-store-settings-general.php:472 +msgid "%s Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:467 +#: includes/admin/store-settings/class-mp-store-settings-general.php:449 +msgid "Tax Settings" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:370 +#: includes/admin/store-settings/class-mp-store-settings-general.php:624 +msgid "Base Zip/Postal Code" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:354 +#: includes/admin/store-settings/class-mp-store-settings-general.php:608 +msgid "Base State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:589 +msgid "Base Country" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:582 +msgid "Location Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:195 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:800 +#: includes/multisite/class-mp-admin-multisite.php:172 +msgid "General Settings" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1945 +#: includes/admin/class-mp-products-admin.php:2185 +#: includes/admin/class-mp-store-settings-admin.php:111 +#: includes/admin/class-mp-store-settings-admin.php:266 +msgid "General" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:242 +msgid "Importers" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +#: includes/admin/class-mp-store-settings-admin.php:234 +msgid "Payments" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:313 +#: includes/admin/class-mp-store-settings-admin.php:112 +#: includes/admin/class-mp-store-settings-admin.php:222 +msgid "Presentation" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:916 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1015 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1018 +#: includes/admin/class-mp-dashboard-widgets.php:305 marketpress.php:702 +msgid "Coupons" +msgstr "" + +#: includes/admin/class-mp-admin.php:251 +msgid "Download »" +msgstr "" + +#: includes/admin/class-mp-admin.php:245 +#: includes/admin/class-mp-exporter-orders.php:170 +msgid "All Statuses" +msgstr "" + +#: includes/admin/class-mp-admin.php:209 +#: includes/admin/class-mp-exporter-orders.php:150 +#: includes/admin/class-mp-exporter-orders.php:178 +msgid "Export Orders" +msgstr "" + +#: includes/admin/class-mp-admin.php:228 +msgid "Show all dates" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:947 +msgid "Change Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:287 +msgid "Order Notes" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:478 +msgid "Other" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:205 +msgid "Subtotal" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:84 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:87 +#: includes/admin/class-mp-products-admin.php:1737 +#: includes/common/class-mp-cart.php:1409 +#: includes/common/class-mp-product.php:559 +msgid "Quantity" +msgstr "" + +#: includes/common/helpers.php:93 +msgid "Item" +msgstr "" + +#: includes/common/class-mp-order.php:1050 +msgid "Current Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:297 +msgid "Order Actions" +msgstr "" + +#: includes/common/class-mp-product.php:1084 +msgid "More Info »" +msgstr "" + +#: includes/common/class-mp-product.php:2313 +msgid "Low Product Inventory Notification" +msgstr "" + +#: includes/common/class-mp-order.php:338 includes/common/data.php:154 +msgid "New Order Notification: ORDERID" +msgstr "" + +#: includes/common/helpers.php:259 +msgid "Your payment for this order is complete." +msgstr "" + +#: includes/common/helpers.php:261 +msgid "Your payment for this order is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/helpers.php:256 +msgid "Payment Total:" +msgstr "" + +#: includes/common/helpers.php:253 +msgid "Transaction ID:" +msgstr "" + +#: includes/common/helpers.php:249 +msgid "Payment Type:" +msgstr "" + +#: includes/common/helpers.php:246 +msgid "Payment Method:" +msgstr "" + +#: includes/common/helpers.php:242 +msgid "Order Notes:" +msgstr "" + +#: includes/common/helpers.php:237 +msgid "Special Instructions:" +msgstr "" + +#: includes/common/helpers.php:232 +msgid "Tracking Number:" +msgstr "" + +#: includes/common/helpers.php:223 includes/common/helpers.php:226 +#: includes/common/helpers.php:228 +#: includes/common/shipping-modules/class-mp-shipping-api.php:406 +#: includes/common/shipping-modules/class-mp-shipping-api.php:428 +msgid "Shipping Method:" +msgstr "" + +#: includes/common/helpers.php:168 +msgid "No shipping required for this order." +msgstr "" + +#: includes/common/helpers.php:155 +msgid "Order Total:" +msgstr "" + +#: includes/common/class-mp-order.php:1025 +msgid "Taxes:" +msgstr "" + +#: includes/common/class-mp-order.php:1032 includes/common/helpers.php:144 +msgid "Shipping:" +msgstr "" + +#: includes/public/class-mp-checkout.php:367 +msgid "Street address, P.O. box, company name, c/o" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:314 +msgid "Shipping Info" +msgstr "" + +#: includes/public/class-mp-public.php:740 +msgid "Whoops, there was a problem loading up this file for your download. Please contact us for help." +msgstr "" + +#: includes/public/class-mp-public.php:683 +msgid "Sorry, our records show you've downloaded this file %d out of %d times allowed. Please contact us if you still need help." +msgstr "" + +#: includes/public/class-mp-public.php:634 +msgid "Sorry, your order has been marked as unpaid." +msgstr "" + +#: includes/public/class-mp-public.php:629 +msgid "Sorry, the link is invalid for this download." +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:15 +#: includes/admin/class-mp-products-admin.php:1172 +msgid "Cheatin’ uh?" +msgstr "" + +#: includes/public/class-mp-public.php:407 +#: includes/public/class-mp-short-codes.php:128 +msgid "Please enter a valid email address." +msgstr "" + +#: includes/admin/class-mp-ajax.php:191 +#: includes/admin/class-mp-products-admin.php:1821 +#: includes/admin/class-mp-products-admin.php:2010 +#: includes/admin/class-mp-products-admin.php:2267 +msgid "File URL" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1842 +msgid "External Link" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2177 +msgid "Add Variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:126 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:289 +msgid "Inventory" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:438 +#: includes/admin/class-mp-products-admin.php:578 +#: includes/admin/class-mp-products-admin.php:1552 +#: includes/admin/class-mp-products-admin.php:2053 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:134 +msgid "Sale Price" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "Variation Name" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1931 +msgid "Product Details" +msgstr "" + +#: includes/admin/class-mp-product-attributes-list-table.php:33 +msgid "Delete" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1057 +msgid "Trashed" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:231 +#: includes/admin/class-mp-orders-admin.php:1015 +#: includes/common/class-mp-order.php:1052 includes/common/helpers.php:97 +msgid "Total" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1196 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:210 +#: includes/admin/class-mp-orders-admin.php:1014 +msgid "Discount" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:221 +#: includes/admin/class-mp-orders-admin.php:1013 +#: includes/common/payment-gateways/_ideal.php:148 +#: includes/common/payment-gateways/_payway.php:134 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:108 +msgid "Tax" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:216 +#: includes/admin/class-mp-orders-admin.php:1012 +#: includes/admin/class-mp-products-admin.php:1958 +#: includes/admin/class-mp-products-admin.php:2198 +#: includes/admin/class-mp-store-settings-admin.php:114 +#: includes/admin/class-mp-store-settings-admin.php:230 +#: includes/common/class-mp-cart.php:717 includes/common/helpers.php:168 +#: includes/common/payment-gateways/_ideal.php:137 +#: includes/common/payment-gateways/_payway.php:116 +#: includes/public/class-mp-checkout.php:1304 +msgid "Shipping" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1011 +msgid "Items" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1010 +msgid "From" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:154 +#: includes/admin/class-mp-orders-admin.php:1009 +#: includes/common/class-mp-gdpr.php:370 +msgid "Order Date" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1008 +#: includes/common/class-mp-gdpr.php:366 +#: includes/common/template-functions.php:2134 +msgid "Order ID" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:22 +#: includes/admin/class-mp-orders-admin.php:1007 +msgid "Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1155 +msgid "N/A" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:243 +#: includes/admin/class-mp-products-admin.php:464 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:142 +msgid "Sales" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:463 +msgid "Stock" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:85 +#: includes/admin/class-mp-ajax.php:176 includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:434 +#: includes/admin/class-mp-products-admin.php:462 +#: includes/admin/class-mp-products-admin.php:576 +#: includes/admin/class-mp-products-admin.php:1519 +#: includes/admin/class-mp-products-admin.php:1569 +#: includes/admin/class-mp-products-admin.php:1950 +#: includes/admin/class-mp-products-admin.php:2059 +#: includes/admin/class-mp-products-admin.php:2190 +#: includes/admin/class-mp-products-admin.php:2330 +#: includes/common/class-mp-cart.php:1415 includes/common/helpers.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:130 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:276 +msgid "Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:173 +#: includes/admin/class-mp-products-admin.php:461 +#: includes/admin/class-mp-products-admin.php:1972 +#: includes/admin/class-mp-products-admin.php:2224 +msgid "SKU" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:459 +#: includes/admin/class-mp-products-admin.php:1793 +#: includes/admin/class-mp-products-admin.php:1805 +#: includes/admin/class-mp-products-admin.php:2163 +msgid "Variations" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:83 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:86 +#: includes/admin/class-mp-dashboard-widgets.php:134 +#: includes/admin/class-mp-products-admin.php:458 +#: includes/admin/class-mp-products-admin.php:837 +#: includes/admin/class-mp-shortcode-builder.php:689 +#: includes/admin/class-mp-shortcode-builder.php:856 +#: includes/admin/class-mp-shortcode-builder.php:1300 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:512 +#: includes/admin/widgets/ms-global-product-list.php:115 +#: includes/admin/widgets/product-list.php:211 +msgid "Product Name" +msgstr "" + +#: includes/common/template-functions.php:2575 +msgid "Categorized in " +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:305 +#: includes/common/payment-gateways/free_orders.php:176 +msgid "Payment Information" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:167 +#: includes/admin/class-mp-orders-admin.php:432 +#: includes/admin/class-mp-pages-admin.php:62 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:227 +#: includes/common/class-mp-gdpr.php:374 +#: includes/common/template-functions.php:175 +#: includes/common/template-functions.php:926 +msgid "Order Status" +msgstr "" + +#. translators: %s: orders closed +#: marketpress.php:327 +msgid "Closed (%s)" +msgid_plural "Closed (%s)" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:249 +#: includes/admin/class-mp-orders-admin.php:375 +#: includes/admin/class-mp-orders-admin.php:951 +#: includes/admin/class-mp-orders-admin.php:1053 +#: includes/admin/class-mp-orders-admin.php:1065 +#: includes/common/class-mp-gdpr.php:330 +#: includes/common/class-mp-order.php:1019 marketpress.php:325 +msgid "Closed" +msgstr "" + +#. translators: %s: shipped orders +#: marketpress.php:320 +msgid "Shipped (%s)" +msgid_plural "Shipped (%s)" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:248 +#: includes/admin/class-mp-orders-admin.php:376 +#: includes/admin/class-mp-orders-admin.php:950 +#: includes/admin/class-mp-orders-admin.php:1049 +#: includes/admin/class-mp-orders-admin.php:1064 +#: includes/common/class-mp-gdpr.php:329 +#: includes/common/class-mp-order.php:1002 marketpress.php:318 +msgid "Shipped" +msgstr "" + +#. translators: %s: paid orders +#: marketpress.php:313 +msgid "Paid (%s)" +msgid_plural "Paid (%s)" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:247 +#: includes/admin/class-mp-orders-admin.php:377 +#: includes/admin/class-mp-orders-admin.php:949 +#: includes/admin/class-mp-orders-admin.php:1045 +#: includes/admin/class-mp-orders-admin.php:1063 +#: includes/common/class-mp-gdpr.php:328 +#: includes/common/payment-gateways/2checkout.php:294 +#: includes/common/payment-gateways/_cubepoints.php:130 +#: includes/common/payment-gateways/authorizenet-aim.php:193 +#: includes/common/payment-gateways/free_orders.php:91 +#: includes/common/payment-gateways/mijireh.php:248 +#: includes/common/payment-gateways/paymill.php:273 +#: includes/common/payment-gateways/paypal-express.php:933 +#: includes/common/payment-gateways/paypal-express.php:967 +#: includes/common/payment-gateways/pin.php:258 +#: includes/common/payment-gateways/simplify.php:181 +#: includes/common/payment-gateways/stripe.php:368 +#: includes/common/payment-gateways/wepay.php:269 marketpress.php:311 +msgid "Paid" +msgstr "" + +#. translators: %s: orders received +#: marketpress.php:306 +msgid "Received (%s)" +msgid_plural "Received (%s)" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:246 +#: includes/admin/class-mp-orders-admin.php:378 +#: includes/admin/class-mp-orders-admin.php:1041 +#: includes/admin/class-mp-orders-admin.php:1062 +#: includes/common/class-mp-gdpr.php:327 includes/common/class-mp-order.php:995 +#: includes/common/payment-gateways/payfast.php:244 marketpress.php:304 +msgid "Received" +msgstr "" + +#: marketpress.php:268 +msgid "Search Orders" +msgstr "" + +#: marketpress.php:267 +msgid "View Order" +msgstr "" + +#: marketpress.php:262 +msgid "Order" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:301 +#: includes/admin/class-mp-orders-admin.php:989 marketpress.php:261 +msgid "Orders" +msgstr "" + +#: marketpress.php:228 +msgid "No Products found in Trash" +msgstr "" + +#: marketpress.php:227 +msgid "No Products Found" +msgstr "" + +#: marketpress.php:226 +msgid "Search Products" +msgstr "" + +#: marketpress.php:225 marketpress.php:229 +msgid "View Product" +msgstr "" + +#: marketpress.php:224 +msgid "New Product" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1022 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:258 +#: marketpress.php:223 +msgid "Edit" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1019 +msgid "Create New" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:687 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:698 +#: marketpress.php:217 +msgid "Product" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:307 +#: includes/common/template-functions.php:173 +#: includes/common/template-functions.php:179 +#: includes/common/template-functions.php:902 +#: includes/multisite/template-functions.php:82 marketpress.php:216 +#: marketpress.php:219 +msgid "Products" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:118 +#: includes/admin/widgets/product-tag-cloud.php:46 +#: includes/multisite/class-mp-admin-multisite.php:548 +msgid "Product Tags" +msgstr "" + +#: includes/common/template-functions.php:2906 +#: includes/multisite/template-functions.php:449 +msgid "Product Category" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:117 +#: includes/admin/widgets/categories.php:8 +#: includes/admin/widgets/categories.php:18 +#: includes/multisite/class-mp-admin-multisite.php:539 +msgid "Product Categories" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:332 +#: includes/common/template-functions.php:872 marketpress.php:218 +msgid "Store" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:60 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:209 +#: includes/admin/widgets/cart.php:8 includes/admin/widgets/cart.php:56 +#: includes/common/template-functions.php:174 +#: includes/common/template-functions.php:811 +msgid "Shopping Cart" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:110 +#: includes/admin/class-mp-store-settings-admin.php:218 +msgid "Store Settings" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:128 marketpress.php:607 +msgid "Settings" +msgstr "" + +#: includes/common/data.php:178 includes/common/data.php:190 +msgid "Your Order Has Been Shipped! (ORDERID)" +msgstr "" + +#: includes/common/data.php:159 includes/common/data.php:166 +#: includes/common/data.php:172 +msgid "Your Order Confirmation (ORDERID)" +msgstr "" + +#: includes/common/data.php:148 +msgid "

    Thank you for your order! We appreciate your business, and please come back often to check out our new products.

    " +msgstr "" + +#: includes/common/data.php:147 +msgid "

    You are almost done! Please do a final review of your order to make sure everything is correct then click the \"Confirm Payment\" button.

    " +msgstr "" + +#: includes/common/data.php:145 +msgid "

    Please enter your shipping information in the form below to proceed with your order.

    " +msgstr "" + +#: includes/common/data.php:143 +msgid "

    If you have any questions about your order please do not hesitate to contact us.

    " +msgstr "" + +#: includes/common/data.php:106 +msgid "tag" +msgstr "" + +#: includes/common/data.php:105 +msgid "category" +msgstr "" + +#: includes/common/data.php:104 +msgid "order-status" +msgstr "" + +#: includes/common/data.php:103 +msgid "shopping-cart" +msgstr "" + +#: includes/common/data.php:102 +msgid "products" +msgstr "" + +#. Translators: change default slugs here +#: includes/common/data.php:101 +msgid "store" +msgstr "" \ No newline at end of file diff --git a/languages/mp-es-co.mo b/languages/mp-es-co.mo new file mode 100644 index 0000000000000000000000000000000000000000..f383a5df8ba3ec07c41c8e31b287a67bbeb03e3f GIT binary patch literal 278 zcmYLD!AiqG6s+KBkDfiO;7woJw3o6Wr`nc+p+TzjCTsePtMP4k`zrb&{+?$)qnqZ? zfnjEN^I-li&VL6HXOWkY*IkIX?d7Qd(L8ABM3lSz`QdrS4+)^Q1j=h<47?BB5x PSnW=$3(Ftaf2qL%aXe6| literal 0 HcmV?d00001 diff --git a/languages/mp-es-co.po b/languages/mp-es-co.po new file mode 100644 index 00000000..4f8e7bc9 --- /dev/null +++ b/languages/mp-es-co.po @@ -0,0 +1,8954 @@ +# Translation of MarketPress in Spanish (Colombia) +# This file is distributed under the same license as the MarketPress package. +msgid "" +msgstr "" +"PO-Revision-Date: +0000\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-Generator: GlotPress/2.3.1\n" +"Language: es_CO\n" +"Project-Id-Version: MarketPress\n" + +#: includes/public/class-mp-checkout.php:1285 +msgid "By clicking this checkbox you allow the website to process your personal data." +msgstr "" + +#: includes/common/class-mp-gdpr.php:382 +msgid "Order Info" +msgstr "" + +#: includes/common/class-mp-gdpr.php:268 +msgid "Shipping Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:267 +msgid "Shipping Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:266 +msgid "Shipping ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:265 +msgid "Shipping State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:264 +msgid "Shipping City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:263 +msgid "Shipping Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:262 +msgid "Shipping Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:261 +msgid "Shipping Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:260 +msgid "Shipping Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:259 +msgid "Shipping Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:258 +msgid "Shipping First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:254 +msgid "Billing Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:253 +msgid "Billing Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:252 +msgid "Billing ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:251 +msgid "Billing State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:250 +msgid "Billing City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:249 +msgid "Billing Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:248 +msgid "Billing Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:247 +msgid "Billing Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:246 +msgid "Billing Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:245 +msgid "Billing Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:244 +msgid "Billing First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:151 +msgid "Orders Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:139 +msgid "Customer Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:100 includes/common/class-mp-gdpr.php:116 +msgid "MarketPress User Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:81 +msgid "" +"In addition to standard WordPress session cookies, this site might be setting an\n" +"\t\t additional cookie to remember your cart settings. This cookie will last for one year." +msgstr "" + +#: includes/common/class-mp-gdpr.php:80 +msgid "Cookies" +msgstr "" + +#: includes/common/class-mp-gdpr.php:77 +msgid "" +"The following information will be collected in order to process orders: your name,\n" +"\t\t username, email address, avatar and profile URLs, address and phone number. This data can be\n" +"\t\t exported and removed." +msgstr "" + +#: includes/common/class-mp-gdpr.php:76 +msgid "Additional data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:71 +msgid "" +"This site might be using third party services and tools to process payments or/and\n" +"\t\t process shipping data when creating orders on the MarketPress store. These services include payment\n" +"\t\t gateways: 2Checkout, Authorize.net AIM, eWay shared payments, eWay Rapid 3.1 Payments, Mijireh,\n" +"\t\t Mollie, Paymill, PayPal, PIN, Simplify Commerce by MasterCard, Stripe and WePay; shipping gateways:\n" +"\t\t Fedex, UPS, USPS." +msgstr "" + +#: includes/common/class-mp-gdpr.php:70 +msgid "Third parties" +msgstr "" + +#: includes/admin/class-mp-admin.php:403 +msgid "Start creating store pages and products for your online shop here." +msgstr "" + +#: includes/admin/class-mp-admin.php:402 +msgid "Create Online Shop" +msgstr "" + +#: includes/admin/class-mp-admin.php:394 +msgid "Run Setup Wizard" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:234 +msgid "If having problems during invoice generation, add define( 'DOMPDF_ENABLE_HTML5PARSER', true ); to the wp-config.php file." +msgstr "" + +#: includes/public/class-mp-checkout.php:723 +msgid "Invalid Email" +msgstr "" + +#: includes/public/class-mp-checkout.php:721 +#: includes/public/class-mp-checkout.php:729 +msgid "This field is required" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:804 +msgid "This option changes the built-in css styles for store pages. For a custom css style, save your css file with the /* MarketPress Style: Your CSS Theme Name Here */ header line in the \"%s\" folder and it will appear in this list so you may select it. You should select \"None\" if you don't wish to use custom CSS styles or if you are using default theme templates or custom theme templates and css to make your own completely unique store design. For more information on custom theme templates click here »." +msgstr "" + +#: includes/public/class-mp-public.php:421 +#: includes/public/class-mp-short-codes.php:142 +msgid "Please enter a value greater than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:420 +#: includes/public/class-mp-short-codes.php:141 +msgid "Please enter a value less than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:419 +#: includes/public/class-mp-short-codes.php:140 +msgid "Please enter a value between {0} and {1}." +msgstr "" + +#: includes/public/class-mp-public.php:418 +#: includes/public/class-mp-short-codes.php:139 +msgid "Please enter a value between {0} and {1} characters long." +msgstr "" + +#: includes/public/class-mp-public.php:417 +#: includes/public/class-mp-short-codes.php:138 +msgid "Please enter at least {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:416 +#: includes/public/class-mp-short-codes.php:137 +msgid "Please enter no more than {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:415 +#: includes/public/class-mp-short-codes.php:136 +msgid "Please enter a value with a valid extension." +msgstr "" + +#: includes/public/class-mp-public.php:414 +#: includes/public/class-mp-short-codes.php:135 +msgid "Please enter the same value again." +msgstr "" + +#: includes/public/class-mp-public.php:413 +#: includes/public/class-mp-short-codes.php:134 +msgid "Please enter a valid credit card number." +msgstr "" + +#: includes/public/class-mp-public.php:412 +#: includes/public/class-mp-short-codes.php:133 +msgid "Please enter only digits." +msgstr "" + +#: includes/public/class-mp-public.php:411 +#: includes/public/class-mp-short-codes.php:132 +msgid "Please enter a valid number." +msgstr "" + +#: includes/public/class-mp-public.php:410 +#: includes/public/class-mp-short-codes.php:131 +msgid "Please enter a valid date (ISO)." +msgstr "" + +#: includes/public/class-mp-public.php:409 +#: includes/public/class-mp-short-codes.php:130 +msgid "Please enter a valid date." +msgstr "" + +#: includes/public/class-mp-public.php:408 +#: includes/public/class-mp-short-codes.php:129 +msgid "Please enter a valid URL." +msgstr "" + +#: includes/public/class-mp-public.php:406 +#: includes/public/class-mp-short-codes.php:127 +msgid "Please fix this field." +msgstr "" + +#: includes/public/class-mp-checkout.php:1287 +#: includes/public/class-mp-public.php:405 +#: includes/public/class-mp-short-codes.php:126 +msgid "This field is required." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:810 +msgid "None - Without Special CSS-styles" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:809 +msgid "Default - Using Default CSS-styles" +msgstr "" + +#: marketpress.php:739 +msgid "Enable multiple downloads per product" +msgstr "" + +#: marketpress.php:738 +msgid "Multiple Downloads" +msgstr "" + +#: includes/public/class-mp-checkout.php:715 +msgid "Invalid Zip Code" +msgstr "" + +#: includes/common/template-functions.php:2126 +msgid "Guest Email" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:195 +msgid "There was a problem finalizing your purchase. Please re-enter your credit card information and try again" +msgstr "" + +#: includes/common/class-mp-cart.php:565 includes/common/class-mp-order.php:600 +#: includes/common/helpers.php:111 +msgid "Download %1$s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:331 +msgid "Export products to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:328 +msgid "The import process uses the WordPress importer plugin." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:326 +msgid "Import / Export Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:325 +msgid "Export settings to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:324 +msgid "Import configuration" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:320 +msgid "Use the text below to export to a new installation. Or paste in the new configuration to import." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:318 +msgid "Import / Export Settings" +msgstr "" + +#. translators: URL to wp-admin/import.php +#: includes/admin/store-settings/class-mp-store-settings-import.php:266 +msgid "This importer is not installed. Please install importers from the main site." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:261 +msgid "Install Now" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:260 +msgid "Install %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:240 +msgid "Run Importer" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:239 +msgid "Run %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:258 +msgid "Import/Export" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1199 +msgid "Requires Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:737 +msgid "Optionally limit the user to some categories" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:671 +msgid "Should this coupon only be available to logged in users?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:670 +msgid "Require Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:655 +msgid "Mimimum number of products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:653 +msgid "Enter the minimum number of products in the cart that this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:648 +msgid "Can this coupon be limited to a number of products in the cart?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:334 +msgid "Add all values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:265 +msgid "Set as default variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:154 +msgid "Set Default" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:150 +msgid "More Info" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:40 +msgid "MarketPress - Quick Setup" +msgstr "" + +#: includes/public/class-mp-checkout.php:1399 +msgid "Proceed to checkout and create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1241 +#: includes/public/class-mp-checkout.php:1245 +msgid "Register account" +msgstr "" + +#: includes/public/class-mp-checkout.php:1233 +msgid "Register as customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:765 +msgid "

    Oops!

    Looks like you haven't added anything your cart. Let's go shopping!

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:763 +msgid "

    Oops!

    The cart is disabled.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing Information" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:214 +msgid "Global Currency" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:198 +msgid "Global Store Currency" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:507 +msgid "There are no shipping services available for this type of package in your location." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:168 +msgid "Using this USPS Shipping calculator requires requesting an Ecommerce API Username and Password. Get your free set of credentials here ». The password is no longer used for the API, just the username which you should enter below. The USPS test site has not yet been updated and currently doesn't work - you should just request activating your credentials with USPS and go live." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:339 +msgid "ZIP Code" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:334 +msgid "Last name" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:333 +msgid "First name" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:150 +msgid "These are the manual payment instructions to display on the order confirmation screen. TOTAL will be replaced with the order total and ORDERID will be replaced with Order ID." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:240 +msgid "You must login to Authorize.net merchant dashboard to obtain the API login ID and API transaction key. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:327 +msgid "
    1. Set the \"Return Method\" within Site Management to Header Redirect and set the \"Return URL\" to %s
    2. Set your notifications url to %s
    " +msgstr "" + +#: includes/common/data.php:191 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Also, digital downloads included in your order are now ready to be downloaded. Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:185 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order is now available to download! Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:184 +msgid "Your Order Is Ready To Be Downloaded! (ORDERID)" +msgstr "" + +#: includes/common/data.php:179 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:173 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received, your digital goods are ready to be downloaded and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:167 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received and your digital goods are ready to be downloaded. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:160 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +" Your order has been received, and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information: \n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/class-mp-product.php:638 +msgid "You can not add more items to cart." +msgstr "" + +#: includes/common/class-mp-product.php:635 +msgid "You can only add {0} to cart." +msgstr "" + +#: includes/common/class-mp-product.php:625 +msgid "This product has an order limit of %d." +msgstr "" + +#: includes/common/class-mp-order.php:1454 +msgid "Shipped: tracking code: %s" +msgstr "" + +#: includes/common/class-mp-order.php:1000 +#: includes/common/class-mp-order.php:1012 +msgid "Finished" +msgstr "" + +#: includes/common/class-mp-order.php:858 +msgid "Contact Details" +msgstr "" + +#: includes/common/class-mp-order.php:339 includes/common/data.php:155 +msgid "" +"A new order (ORDERID) was created in your store:\n" +"\n" +" ORDERINFOSKU\n" +"\n" +" SHIPPINGINFO\n" +"\n" +" PAYMENTINFO\n" +"\n" +msgstr "\n" + +#: includes/common/class-mp-cart.php:1858 +msgid "Add again" +msgstr "" + +#: includes/common/class-mp-cart.php:1852 +msgid "was removed from Shopping Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1242 +#: includes/public/class-mp-short-codes.php:160 +msgid "Cart update notice: this item has a limit per order or you have reached the stock limit." +msgstr "" + +#: includes/admin/widgets/product-list.php:235 +msgid "Show Only Featured Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:533 +msgid "If enabled, users won't be able to filter products per category and/or to order by release date/name/price." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:531 +msgid "Hide Products Filter?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:353 +msgid "Notification to registration email instead of billing email?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:322 +msgid "Order Shipped - Mixed orders (with both digital and physical products)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:289 +msgid "Order Shipped - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:224 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:194 +msgid "New Order - Mixed" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:161 +msgid "New Order - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:115 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:243 +msgid "Mixed orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:110 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:238 +msgid "Digital downloads orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:105 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:233 +msgid "Physical orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:96 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed.
    For orders placed with manual payment, emails set here will be overriden by the one configured in manual payments settings, under payments settings page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:89 +msgid "Customer Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:47 +msgid "Admin Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:566 +msgid "Only contact details" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:565 +msgid "Full billing info" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:561 +msgid "Details Collection" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:548 +msgid "Digital Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:515 +msgid "Apply Tax to Digital Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:236 +msgid "product (default)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:231 +msgid "If you are experiencing conflicts with other e-commerce plugins change this setting. This will change the internal post type of all your products. Please note that changing this option may break 3rd party themes or plugins." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1203 +msgid "Hide details" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1202 +msgid "Show all changes" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1184 +msgid "Version %s" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1161 +msgid "Current" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1131 +msgid "%s changelog" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:952 +msgid "We did not find any data for this plugin or theme..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:285 +msgid "Activate WPMU DEV Dashboard" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:279 +msgid "Just one more step - activate the WPMU DEV Dashboard plugin and you're all done!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:277 +msgid "Important updates are available for your WPMU DEV plugins/themes. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:273 +msgid "Just one more step to enable updates and support for %s!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:271 +msgid "Important updates are available for %s. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:264 +msgid "activate" +msgstr "" + +#: includes/admin/class-mp-admin.php:398 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:248 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:289 +msgid "Dismiss" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:247 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:288 +msgid "Saving..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:244 +msgid "Install Plugin" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:238 +msgid "Almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:236 +msgid "Important updates are available for your WPMU DEV plugins/themes. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:232 +msgid "%s is almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:230 +msgid "Important updates are available for %s. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:223 +msgid "install" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1428 +msgid "Sets the number of Tags to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1289 +msgid "How many products to display in the product list if \"paginate\" is set to false." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:739 +#: includes/admin/class-mp-shortcode-builder.php:906 +#: includes/admin/class-mp-shortcode-builder.php:1350 +msgid "Grid" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:735 +#: includes/admin/class-mp-shortcode-builder.php:902 +#: includes/admin/class-mp-shortcode-builder.php:1346 +msgid "Products will be displayed as list or grid." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:206 +msgid "Display a cloud or list of your global product tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:205 +msgid "Display a list of your global categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:204 +msgid "Display a list or grid of your global products." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:181 +msgid "Display a list of featured products." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1451 +msgid "Is Featured?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1444 +msgid "Featured Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:581 +#: includes/admin/class-mp-products-admin.php:1580 +msgid "% discount" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:579 +msgid "OR" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:460 +#: includes/admin/class-mp-products-admin.php:586 +#: includes/admin/widgets/product-list.php:217 +msgid "Featured" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:536 +#: includes/admin/class-mp-orders-admin.php:538 +msgid "Tracking Link" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:508 +msgid "Shipping Tax" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:356 +msgid "Shipping Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:352 +msgid "Taxes Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:349 +msgid "Products Total" +msgstr "" + +#: includes/admin/class-mp-ajax.php:366 +msgid "Oops! You entered an invalid username/email and or password." +msgstr "" + +#: includes/admin/class-mp-ajax.php:254 +msgid "Percentage Discount" +msgstr "" + +#: includes/admin/class-mp-ajax.php:234 +msgid "Limit the Amount of Items per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:214 +msgid "Unused Attributes" +msgstr "" + +#: includes/admin/class-mp-admin.php:82 +msgid "Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-admin.php:79 +msgid "MarketPress setup is not complete! Once you've completed this quick setup wizard you'll have a fully working online store - exciting! " +msgstr "" + +#: marketpress.php:263 +msgctxt "mp_order" +msgid "Add New" +msgstr "" + +#: marketpress.php:184 +msgctxt "product_tag" +msgid "Product Tag" +msgstr "" + +#: marketpress.php:183 +msgctxt "product_tag" +msgid "Product Tags" +msgstr "" + +#: marketpress.php:150 +msgctxt "product_category" +msgid "Product Category" +msgstr "" + +#: marketpress.php:149 +msgctxt "product_category" +msgid "Product Categories" +msgstr "" + +#. Author URI of the plugin/theme +msgid "http://premium.wpmudev.org" +msgstr "" + +#: marketpress.php:729 +msgid "Invoice PDF" +msgstr "" + +#: marketpress.php:712 +msgid "Grant access to themes and gateways depending on the user's Pro Site level" +msgstr "" + +#: marketpress.php:711 +msgid "Pro Sites" +msgstr "" + +#: marketpress.php:703 +msgid "Offer and accept coupon codes" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:687 +msgid "Install %s Pages" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:682 +msgid "Welcome to %s – Install pages required by the plugin automatically." +msgstr "" + +#: marketpress.php:668 +msgid "Your pages were created successfully." +msgstr "" + +#: marketpress.php:436 +msgid "Add a Product" +msgstr "" + +#: marketpress.php:271 +msgid "Parent Order" +msgstr "" + +#: marketpress.php:270 +msgid "No orders found in trash" +msgstr "" + +#: marketpress.php:269 +msgid "No orders found" +msgstr "" + +#: marketpress.php:265 +msgid "Edit Order" +msgstr "" + +#: marketpress.php:264 +msgid "Add New Order" +msgstr "" + +#: marketpress.php:220 marketpress.php:221 +msgid "Add New Product" +msgstr "" + +#: marketpress.php:197 +msgid "No product tags found" +msgstr "" + +#: marketpress.php:196 +msgid "Choose from the most used product tags" +msgstr "" + +#: marketpress.php:195 +msgid "Add or remove product tags" +msgstr "" + +#: marketpress.php:194 +msgid "Separate product tags with commas" +msgstr "" + +#: marketpress.php:193 +msgid "Search Product Tags" +msgstr "" + +#: marketpress.php:192 +msgid "Parent Product Tag:" +msgstr "" + +#: marketpress.php:191 +msgid "Parent Product Tag" +msgstr "" + +#: marketpress.php:190 +msgid "New Product Tag Name" +msgstr "" + +#: marketpress.php:189 +msgid "Add New Product Tag" +msgstr "" + +#: marketpress.php:188 +msgid "Update Product Tag" +msgstr "" + +#: marketpress.php:187 +msgid "View Product Tag" +msgstr "" + +#: marketpress.php:186 +msgid "Edit Product Tag" +msgstr "" + +#: marketpress.php:185 +msgid "All Product Tags" +msgstr "" + +#: marketpress.php:163 +msgid "No product categories found" +msgstr "" + +#: marketpress.php:162 +msgid "Choose from the most used product categories" +msgstr "" + +#: marketpress.php:161 +msgid "Add or remove product categories" +msgstr "" + +#: marketpress.php:160 +msgid "Separate product categories with commas" +msgstr "" + +#: marketpress.php:159 +msgid "Search Product Categories" +msgstr "" + +#: marketpress.php:158 +msgid "Parent Product Category:" +msgstr "" + +#: marketpress.php:157 +msgid "Parent Product Category" +msgstr "" + +#: marketpress.php:156 +msgid "New Product Category Name" +msgstr "" + +#: marketpress.php:155 +msgid "Add New Product Category" +msgstr "" + +#: marketpress.php:154 +msgid "Update Product Category" +msgstr "" + +#: marketpress.php:153 +msgid "View Product Category" +msgstr "" + +#: marketpress.php:152 +msgid "Edit Product Category" +msgstr "" + +#: marketpress.php:151 +msgid "All Product Categories" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Please fix the %s1 and then try submitting the form again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Oops! The form contains %s1 which %s2 been highlighted below." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:660 +msgid "have" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:659 +msgid "has" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:651 +msgid "Value must be less than {0}" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:650 +msgid "Please enter only letters and numbers" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:539 +msgid "Due to prolonged inactivity on this page, one or more settings were not saved. Please try again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:535 +msgid "Settings Saved" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-user-select.php:22 +msgid "Select Some Users" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-section.php:18 +msgid "Section Title" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:425 +msgid "Are you sure you want to delete this?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:30 +msgid "Add Row" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-post-select.php:24 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-taxonomy-select.php:22 +msgid "Select Posts" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:210 +msgid "Add Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:129 +msgid "Select the image that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:93 +msgid "Select image(s) that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:79 +msgid "Select the image that you would like to use for this variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:48 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:82 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:68 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:132 +msgid "Select Image" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:31 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:160 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:168 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:19 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:115 +msgid "Select File" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:30 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:18 +msgid "Select the file that you would like to use." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:357 +msgid "Create Variations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:356 +msgid "Add Another Variant" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Insert a value and press ENTER" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "(e.g. White, Grey, Red etc.)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Variation Values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:333 +msgid "Or create new variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "(e.g. Color)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:303 +msgid "You are about to delete selected variants.
    If you want to continue please confirm." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:302 +msgid "Confirmation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:290 +msgid "Insert quantity available. Empty for unlimited." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:281 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:294 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:307 +msgid "Cancel" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:280 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:293 +msgid "Update" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:277 +msgid "Insert the price i.e. 25 or 25.50" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:115 +msgid "Img." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:85 +msgid "Add New Variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:79 +msgid "Delete Variants" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:78 +msgid "Update Prices" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:77 +msgid "Update Inventory" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:76 +msgid "Update Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:75 +msgid "Bulk Actions" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:73 +msgid "Select bulk action" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:196 +msgid "Configure Store" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:195 +msgid "Configure shipping rates, emails and your store's appearance. " +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:190 +msgid "Add Product" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:189 +msgid "Add your first product for sale and get familiar with adding products." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:184 +msgid "Your store is almost ready for its first customers, but first it needs some products. Get started by adding products below, or jump straight into further configuring your store’s settings." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:183 +msgid "Woohoo! Your online store is up and running." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:160 +msgid "Finish Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:124 +msgid "And what metric system do you want to use?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:113 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:142 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:159 +msgid "Back" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:109 +msgid "Do you want to apply tax for your products? You can customize this for each product and variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:105 +msgid "What currency do you want to sell with?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:93 +msgid "And, which countries do you want to sell to?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:89 +msgid "Where is your online store based?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:80 +msgid "Payment Gateway" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:79 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:123 +msgid "Metric System" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:78 +msgid "Currency & Tax" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:77 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:88 +msgid "Locations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:70 +msgid "Choose where you want to sell your stuff and what currency. Easy!" +msgstr "" + +#: includes/public/class-mp-checkout.php:1400 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:58 +msgid "Continue" +msgstr "" + +#: includes/admin/class-mp-admin.php:83 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:53 +msgid "Skip this step, I'll do this manually" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:49 +msgid "Install store pages" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:44 +msgid "Once you've completed this quick setup wizard you'll have a fully working online store - exciting! Start
    by creating the default store pages for the online store such as the cart, checkout and store pages." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:42 +msgid "MarketPress adds a full online store to your website, with heaps of configuration options and addons
    to suit your needs. It's really easy to get going, and only takes a few minutes to setup!" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:41 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:69 +msgid "Welcome to MarketPress - Quick Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-advanced-select.php:23 +msgid "Select Some Options" +msgstr "" + +#: includes/wpmudev-metaboxes/class-wpmudev-field.php:694 +msgid "You must the WPMUDEV_Field::display() method in your form field class" +msgstr "" + +#: includes/public/class-mp-short-codes.php:636 +msgid "Only %s left in stock..." +msgstr "" + +#: includes/public/class-mp-short-codes.php:633 +msgid "Unlimited stock" +msgstr "" + +#: includes/public/class-mp-short-codes.php:430 +msgid "product_id must be defined" +msgstr "" + +#: includes/public/class-mp-checkout.php:1250 +msgid "An account with this username already exists" +msgstr "" + +#: includes/public/class-mp-checkout.php:1394 +msgid "Continue as Guest" +msgstr "" + +#: includes/public/class-mp-checkout.php:1393 +msgid "Proceed to checkout and you'll have an opportunity to create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1392 +#: includes/public/class-mp-checkout.php:1398 +msgid "First-time customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1386 +msgid "Login" +msgstr "" + +#: includes/public/class-mp-checkout.php:1379 +msgid "E-Mail Address/Username" +msgstr "" + +#: includes/public/class-mp-checkout.php:1377 +msgid "Sign in to speed up the checkout process." +msgstr "" + +#: includes/public/class-mp-checkout.php:1376 +msgid "Have an account?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1297 +msgid "Shipping address different than billing?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1184 +msgid "There are no available gateways to process this payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1160 +msgid "Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:1123 +msgid "Oops! An error occurred while processing your payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1051 +msgid "Next Step »" +msgstr "" + +#: includes/public/class-mp-checkout.php:1045 +msgid "« Previous Step" +msgstr "" + +#: includes/public/class-mp-checkout.php:873 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:657 +msgid "error" +msgstr "" + +#: includes/public/class-mp-checkout.php:872 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:658 +msgid "errors" +msgstr "" + +#: includes/public/class-mp-checkout.php:871 +msgid "

    Oops! We found %d %s in the form below.

    Fields that have errors are highlighted in red below. Entering into a field will reveal the actual error that occurred.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:870 +msgid "Please enter a valid first and last name" +msgstr "" + +#: includes/public/class-mp-checkout.php:869 +msgid " Please enter a valid card security code" +msgstr "" + +#: includes/public/class-mp-checkout.php:868 +msgid "Please enter a valid card expiration" +msgstr "" + +#: includes/public/class-mp-checkout.php:773 +msgid "Javascript is required in order to checkout. Please enable Javascript in your browser and then refresh this page." +msgstr "" + +#: includes/public/class-mp-checkout.php:588 +msgid "An unknown error occurred. Please try again." +msgstr "" + +#: includes/public/class-mp-checkout.php:386 +msgid "Town/City" +msgstr "" + +#: includes/public/class-mp-checkout.php:380 +msgid "Apartment, suite, unit, building, floor, etc" +msgstr "" + +#: includes/public/class-mp-checkout.php:376 +msgid "Address Line 2" +msgstr "" + +#: includes/public/class-mp-checkout.php:363 +msgid "Address Line 1" +msgstr "" + +#: includes/common/class-mp-order.php:770 +#: includes/public/class-mp-checkout.php:354 +msgid "Company" +msgstr "" + +#: includes/public/class-mp-checkout.php:330 +msgid "Last" +msgstr "" + +#: includes/public/class-mp-checkout.php:321 +msgid "First" +msgstr "" + +#: includes/public/class-mp-checkout.php:284 +msgid "State/Province" +msgstr "" + +#: includes/public/class-mp-checkout.php:83 +msgid "Review Order/Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing/Shipping Address" +msgstr "" + +#: includes/public/class-mp-checkout.php:80 +msgid "Login/Register" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:530 +msgid "Marketplace" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:523 +msgid "Global Marketplace Pages" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +msgid "Store Network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +#: includes/multisite/class-mp-admin-multisite.php:494 +msgid "Store Network Settings" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:440 +msgid "Set theme access permissions for network stores. For a custom css theme, save your css file with the MarketPress Theme: NAME header in the /marketpress/ui/themes/ folder and it will appear in this list so you may select it." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:361 +msgid "Choose a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:336 +msgid "%d products get indexed" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:285 +msgid "Product Indexer" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:281 +msgid "Please hold on..." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:280 +msgid "Index Products" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:279 +msgid "%d products have been indexed in whole network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:182 +msgid "Enable Global Shopping Cart?" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:178 +msgid "Limit Global Widgets/Shortcodes To Main Blog?" +msgstr "" + +#: includes/common/template-functions.php:2802 +#: includes/multisite/template-functions.php:355 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:97 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:114 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:143 +msgid "Next" +msgstr "" + +#: includes/common/template-functions.php:2801 +#: includes/multisite/template-functions.php:354 +msgid "Prev" +msgstr "" + +#: includes/common/template-functions.php:2597 +msgid "Tagged in " +msgstr "" + +#: includes/common/template-functions.php:2196 +#: includes/common/template-functions.php:2202 +#: includes/common/template-functions.php:2214 +#: includes/common/template-functions.php:2217 +msgid "Oops! We couldn't locate any orders matching that order number. Please verify the order number and try again." +msgstr "" + +#: includes/common/template-functions.php:2138 +msgid "Look Up" +msgstr "" + +#: includes/common/template-functions.php:1423 +msgid "Please choose a shipping method" +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "If you have your order ID you can look it up using the form below." +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "Order Search" +msgstr "" + +#: includes/common/template-functions.php:910 +#: includes/public/class-mp-checkout.php:1440 +msgid "Cart" +msgstr "" + +#: includes/common/template-functions.php:895 +msgid "[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:887 +msgid "[mp_global_categories_list]" +msgstr "" + +#: includes/common/template-functions.php:880 +msgid "" +"Welcome to our market place!\n" +"\n" +"Check out our network of products:\n" +"\n" +"[mp_list_global_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_global_categories_list]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:879 +msgid "Global Store" +msgstr "" + +#: includes/common/template-functions.php:873 +msgid "" +"Welcome to our online store! Feel free to browse around:\n" +"\n" +"[mp_store_navigation]\n" +"\n" +"Check out our most popular products:\n" +"\n" +"[mp_popular_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_list_categories]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_tag_cloud]" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:127 +msgid "If cart weight is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:126 +msgid "Cart Weight" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:222 +msgid "Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:206 +msgid "Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:196 +msgid "Retail Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:195 +msgid "Online Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:193 +msgid "Rates Request Type" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:189 +msgid "Maximum Weight Per Package" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:195 +#: includes/common/shipping-modules/mp-usps.php:236 +msgid "Enter your standard box sizes as LengthxWidthxHeight (e.g. 12x8x6) For each box defined enter the maximum weight it can contain. Note: the shipping prices this plugin calculates are estimates. If they are consistently too low or too high, please check that the list of boxes above and the product weights are accurate and complete." +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:187 +msgid "Handling Charge Per Box Shipped" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:176 +#: includes/common/shipping-modules/mp-ups.php:181 +msgid "Offered Services" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:165 +msgid "Shipper Number" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:151 +msgid "User ID" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:144 +msgid "Developer Kit Access Key" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:140 +msgid "Use Sandbox Mode?" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:123 +msgid "In order to use UPS, you will need a UPS Developer Kit access key and the UPS user ID and password associated with the access key. Set these up for free here. If this information is missing or incorrect, an error will appear during the checkout process and the buyer will not be able to complete the transaction." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:112 +msgid "If cart total is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:111 +msgid "Cart Total" +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:95 +#: includes/common/shipping-modules/mp-weight-rate.php:111 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Don't worry about sorting as this will be done automatically upon saving." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:170 +msgid "Method Title (visible for clients)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:409 +#: includes/common/shipping-modules/mp-ups.php:216 +#: includes/common/shipping-modules/mp-usps.php:251 +msgid "Max Weight (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:402 +#: includes/common/shipping-modules/mp-ups.php:209 +#: includes/common/shipping-modules/mp-usps.php:247 +msgid "Size (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:387 +msgid "Enter your standard box sizes as LengthxWidthxHeight ( 12x8x6 ) For each box defined enter the maximum weight it can contain. Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:361 +#: includes/common/shipping-modules/mp-usps.php:229 +msgid "Handling Charge per International Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:353 +msgid "International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:339 +#: includes/common/shipping-modules/mp-usps.php:213 +msgid "Handling Charge per Domestic Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:331 +msgid "Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:321 +msgid "When checked the customer can chose Residential or Commercial delivery with Residential the default. Unchecked it's only Residential rates." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:320 +msgid "Allow Commercial Delivery?" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:315 +msgid "Fedex 10kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:314 +msgid "Fedex 25kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:313 +msgid "Fedex Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:312 +msgid "Fedex Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:311 +msgid "Fedex Pak" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:310 +msgid "Fedex Tube" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:306 +msgid "Default Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:294 +msgid "Dropoff Type" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:290 +msgid "Meter ID" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:134 +msgid "This is a residential address" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:283 +msgid "There was an error processing your card: \"%s\". Please check your credit card info and try again." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:121 +msgid "Wepay makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept cards directly on your site. You don't need a merchant account or gateway. WePay handles everything including storing cards. Credit cards go directly to WePay's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:385 +msgid "There was an error processing your card - \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:356 +msgid "%s Store Purchase - Order ID - %s, Email - %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:251 +msgid "Stripe makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept Visa, MasterCard, American Express, Discover, JCB, and Diners Club cards directly on your site. You don't need a merchant account or gateway. Stripe handles everything, including storing cards, subscriptions, and direct payouts to your bank account. Credit cards go directly to Stripe's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:192 +msgid "ZMW - Zambian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:191 +msgid "ZAR - South African Rand" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:190 +msgid "YER - Yemeni Rial" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:189 +msgid "XPF - Cfp Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:188 +msgid "XOF - West African Cfa Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:187 +msgid "XCD - East Caribbean Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:186 +msgid "XAF - Central African Cfa Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:185 +msgid "WST - Samoan Tala" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:184 +msgid "VUV - Vanuatu Vatu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:183 +msgid "VND - Vietnamese Đồng" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:182 +msgid "VEF - Venezuelan Bolívar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:181 +msgid "UZS - Uzbekistani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:180 +msgid "UYI - Uruguayan Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:178 +msgid "UGX - Ugandan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:177 +msgid "UAH - Ukrainian Hryvnia" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:176 +msgid "TZS - Tanzanian Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:175 +msgid "TWD - New Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:174 +msgid "TTD - Trinidad and Tobago Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:172 +msgid "TOP - Tongan Paʻanga" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:171 +msgid "TJS - Tajikistani Somoni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:169 +msgid "SZL - Swazi Lilangeni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:168 +msgid "SVC - Salvadoran Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:167 +msgid "STD - São Tomé and Príncipe Dobra" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:166 +msgid "SRD - Surinamese Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:165 +msgid "SOS - Somali Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:164 +msgid "SLL - Sierra Leonean Leone" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:163 +msgid "SHP - Saint Helenian Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:160 +msgid "SCR - Seychellois Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:159 +msgid "SBD - Solomon Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:157 +msgid "RWF - Rwandan Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:156 +msgid "RUB - Russian Ruble" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:155 +msgid "RSD - Serbian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:154 +msgid "RON - Romanian Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:153 +msgid "QAR - Qatari Riyal" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:152 +msgid "PYG - Paraguayan Guaraní*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:151 +msgid "PLN - Polish Złoty" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:150 +msgid "PKR - Pakistani Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:149 +msgid "PHP - Philippine Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:148 +msgid "PGK - Papua New Guinean Kina" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:147 +msgid "PEN - Peruvian Nuevo Sol*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:146 +msgid "PAB - Panamanian Balboa*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:144 +msgid "NPR - Nepalese Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:142 +msgid "NIO - Nicaraguan Córdoba*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:141 +msgid "NGN - Nigerian Naira" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:140 +msgid "NAD - Namibian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:139 +msgid "MZN - Mozambican Metical" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:137 +msgid "MXN - Mexican Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:136 +msgid "MWK - Malawian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:135 +msgid "MVR - Maldivian Rufiyaa" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:134 +msgid "MUR - Mauritian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:133 +msgid "MRO - Mauritanian Ouguiya" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:132 +msgid "MOP - Macanese Pataca" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:131 +msgid "MNT - Mongolian Tögrög" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:130 +msgid "MKD - Macedonian Denar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:129 +msgid "MGA - Malagasy Ariary" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:128 +msgid "MDL - Moldovan Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:126 +msgid "LVL - Latvian Lats" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:124 +msgid "LSL - Lesotho Loti" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:123 +msgid "LRD - Liberian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:122 +msgid "LKR - Sri Lankan Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:121 +msgid "LBP - Lebanese Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:120 +msgid "LAK - Lao Kip*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:119 +msgid "KZT - Kazakhstani Tenge" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:118 +msgid "KYD - Cayman Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:117 +msgid "KRW - South Korean Won" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:116 +msgid "KMF - Comorian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:115 +msgid "KHR - Cambodian Riel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:114 +msgid "KGS - Kyrgyzstani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:113 +msgid "KES - Kenyan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:111 +msgid "JMD - Jamaican Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:110 +msgid "ISK - Icelandic Króna" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:109 +msgid "INR - Indian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:108 +msgid "ILS - Israeli New Sheqel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:107 +msgid "IDR - Indonesian Rupiah" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:105 +msgid "HTG - Haitian Gourde" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:103 +msgid "HNL - Honduran Lempira*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:101 +msgid "GYD - Guyanese Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:100 +msgid "GTQ - Guatemalan Quetzal*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:99 +msgid "GNF - Guinean Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:98 +msgid "GMD - Gambian Dalasi" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:97 +msgid "GIP - Gibraltar Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:96 +msgid "GEL - Georgian Lari" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:94 +msgid "FKP - Falkland Islands Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:93 +msgid "FJD - Fijian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:91 +msgid "ETB - Ethiopian Birr" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:90 +msgid "EGP - Egyptian Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:89 +msgid "EEK - Estonian Kroon*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:88 +msgid "DZD - Algerian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:87 +msgid "DOP - Dominican Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:85 +msgid "DJF - Djiboutian Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:84 +msgid "CZK - Czech Koruna*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:83 +msgid "CVE - Cape Verdean Escudo*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:82 +msgid "CRC - Costa Rican Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:81 +msgid "COP - Colombian Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:80 +msgid "CNY - Chinese Renminbi Yuan" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:79 +msgid "CLP - Chilean Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:77 +msgid "CDF - Congolese Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:76 +msgid "CAD - Canadian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:75 +msgid "BZD - Belize Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:74 +msgid "BWP - Botswana Pula" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:73 +msgid "BSD - Bahamian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:72 +msgid "BRL - Brazilian Real*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:71 +msgid "BOB - Bolivian Boliviano*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:70 +msgid "BND - Brunei Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:69 +msgid "BMD - Bermudian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:68 +msgid "BIF - Burundian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:67 +msgid "BGN - Bulgarian Lev" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:66 +msgid "BDT - Bangladeshi Taka" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:65 +msgid "BBD - Barbadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:64 +msgid "BAM - Bosnia & Herzegovina Convertible Mark" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:63 +msgid "AZN - Azerbaijani Manat" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:62 +msgid "AWG - Aruban Florin" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:61 +msgid "AUD - Australian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:60 +msgid "ARS - Argentine Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:59 +msgid "AOA - Angolan Kwanza*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:58 +msgid "ANG - Netherlands Antillean Gulden" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:57 +msgid "AMD - Armenian Dram" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:56 +msgid "ALL - Albanian Lek" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:55 +msgid "AFN - Afghan Afghani*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:54 +msgid "AED - United Arab Emirates Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:345 +msgid "Skrill balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:327 +msgid "Skrill IPN message received." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:283 +msgid "Skrill" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:278 +msgid "Pending payment" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:144 +msgid "The secret word must match the word submitted in the \"Merchant Tools\" section of your Skrill account." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:134 +msgid "You must use your valid Skrill merchant email. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:133 +msgid "Skrill Email" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:123 +msgid "Resell your inventory via Skrill.com (Moneybookers)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:95 +msgid "ZAR - South-African Rand" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:93 +msgid "TWD - Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:92 +msgid "TRY - New Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:91 +msgid "TND - Tunisian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:90 +msgid "THB - Thailand Baht" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:89 +msgid "SKK - Slovakian Koruna" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:86 +#: includes/common/payment-gateways/stripe.php:158 +msgid "SAR - Saudi Riyal" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:85 +msgid "RSD - Serbian dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:83 +msgid "QAR - Qatari Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:81 +msgid "OMR - Omani Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:80 +msgid "NOK - Norwegian Krone " +msgstr "" + +#: includes/common/payment-gateways/skrill.php:78 +#: includes/common/payment-gateways/stripe.php:138 +msgid "MYR - Malaysian Ringgit" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:77 +#: includes/common/payment-gateways/stripe.php:127 +msgid "MAD - Moroccan Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:74 +msgid "KRW - South-Korean Won" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:72 +msgid "JOD - Jordanian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:70 +msgid "INR - Indian Rupee" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:63 +msgid "EEK - Estonian Kroon" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:56 +msgid "AED - Utd. Arab Emir. Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:52 +msgid "Turkish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:51 +msgid "Swedish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:50 +msgid "Spanish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:49 +msgid "Russian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:48 +msgid "Romainian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:47 +msgid "Polish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:46 +msgid "Italian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:45 +msgid "Greek" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:44 +msgid "German" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:43 +msgid "French" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:42 +msgid "Finnish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:41 +msgid "English" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:40 +msgid "Dutch" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:39 +msgid "Danish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:38 +msgid "Czech" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:37 +msgid "Chinese" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:201 +msgid "There was an error processing your card: %s. Please re-enter your credit card info and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:278 +msgid "
  • There was an error processing your card: \"%s\". Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:274 +msgid "
  • There was an error processing your card. Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:177 +#: includes/common/payment-gateways/stripe.php:279 +msgid "Publishable Key" +msgstr "" + +#: includes/common/payment-gateways/pin.php:163 +msgid "API Credentials?" +msgstr "" + +#: includes/common/payment-gateways/pin.php:147 +msgid "PIN makes it easy to start accepting credit card payments with Australia’s first all-in-one online payment system. Accept all major credit cards directly on your site. Your sales proceeds are deposited to any Australian bank account, no merchant account required." +msgstr "" + +#: includes/common/payment-gateways/pin.php:57 +#: includes/common/payment-gateways/stripe.php:179 +msgid "USD - United States Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:455 +msgid "Email Footer" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:445 +msgid "Email Header" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:416 +msgid "Partner" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:409 +msgid "Vendor" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:852 +#: includes/common/payment-gateways/paypal-express.php:1126 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences\t section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:749 +msgid "Page Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:744 +msgid "Header Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:739 +msgid "Header Border Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:734 +msgid "Header Image" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:680 +msgid "Locale" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:624 +#: includes/common/payment-gateways/paypal-express.php:658 +msgid "Merchant Email" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:645 +msgid "Paypal Express Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:603 +msgid "Paypal Express Network Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:861 +msgid "Application ID (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:854 +msgid "Signature (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:847 +msgid "API Password (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:839 +msgid "API Username (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:832 +msgid "Signature (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:825 +msgid "API Password (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:817 +msgid "API Username (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:799 +msgid "This message is displayed at the top of the gateway settings page to store admins. It's a good place to inform them of your fees or put any sales messages." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:787 +msgid "Please enter your PayPal email address or business ID you want to recieve fees at." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:786 +msgid "PayPal E-mail" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:772 +msgid "Fees to Collect (%)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:375 +#: includes/public/class-mp-checkout.php:341 +msgid "Email Address" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:299 +msgid "Sorry, your order was not completed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:126 +#: includes/common/payment-gateways/paypal-express.php:780 +msgid "You will be redirected to the PayPal site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:90 +#: includes/common/payment-gateways/skrill.php:94 +msgid "USD - U.S. Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:89 +msgid "TRY - Turkish lira" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:88 +#: includes/common/payment-gateways/stripe.php:170 +msgid "THB - Thai Baht" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:87 +msgid "TWD - Taiwan New Dollars" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:86 +#: includes/common/payment-gateways/pin.php:59 +#: includes/common/payment-gateways/skrill.php:88 +#: includes/common/payment-gateways/stripe.php:162 +msgid "SGD - Singapore Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:84 +msgid "RUB - Russian Rubles" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:82 +msgid "PHP - Philippine Pesos" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:81 +#: includes/common/payment-gateways/pin.php:58 +#: includes/common/payment-gateways/skrill.php:79 +#: includes/common/payment-gateways/stripe.php:145 +msgid "NZD - New Zealand Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:79 +msgid "MXN - Mexican Peso" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:78 +msgid "MYR - Malaysian Ringgits" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:77 +#: includes/common/payment-gateways/pin.php:64 +#: includes/common/payment-gateways/skrill.php:73 +#: includes/common/payment-gateways/stripe.php:112 +msgid "JPY - Japanese Yen" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:75 +#: includes/common/payment-gateways/pin.php:63 +#: includes/common/payment-gateways/skrill.php:66 +#: includes/common/payment-gateways/stripe.php:102 +msgid "HKD - Hong Kong Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:73 +msgid "GBP - Pound Sterling" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:68 +#: includes/common/payment-gateways/pin.php:62 +#: includes/common/payment-gateways/skrill.php:59 +msgid "CAD - Canadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:67 +msgid "BRL - Brazilian Real" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:66 +#: includes/common/payment-gateways/pin.php:56 +#: includes/common/payment-gateways/skrill.php:57 +msgid "AUD - Australian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:288 +msgid "There was an error processing your card: \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:163 +msgid "When running on a live site, Paymill recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:161 +#: includes/common/payment-gateways/pin.php:157 +#: includes/common/payment-gateways/simplify.php:103 +#: includes/common/payment-gateways/stripe.php:260 +#: includes/common/payment-gateways/wepay.php:153 +msgid "Force SSL?" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:151 +msgid "Accept Visa, Mastercard, Maestro UK, Discover and Solo cards directly on your site. You don't need a merchant account or gateway. Credit cards go directly to Paymill's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:131 +msgid "CVV2" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:72 +#: includes/common/payment-gateways/pin.php:61 +#: includes/common/payment-gateways/skrill.php:65 +#: includes/common/payment-gateways/stripe.php:95 +msgid "GBP - British Pound" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:71 +#: includes/common/payment-gateways/stripe.php:173 +msgid "TRY - Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:70 +#: includes/common/payment-gateways/paypal-chained-payments.php:85 +#: includes/common/payment-gateways/skrill.php:87 +#: includes/common/payment-gateways/stripe.php:161 +msgid "SEK - Swedish Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:69 +#: includes/common/payment-gateways/skrill.php:84 +msgid "RON - Romanian Leu New" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:68 +#: includes/common/payment-gateways/paypal-chained-payments.php:83 +#: includes/common/payment-gateways/skrill.php:82 +msgid "PLN - Polish Zloty" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:67 +#: includes/common/payment-gateways/paypal-chained-payments.php:80 +#: includes/common/payment-gateways/stripe.php:143 +msgid "NOK - Norwegian Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:66 +#: includes/common/payment-gateways/skrill.php:75 +#: includes/common/payment-gateways/stripe.php:125 +msgid "LTL - Lithuanian Litas" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:65 +#: includes/common/payment-gateways/paypal-chained-payments.php:69 +#: includes/common/payment-gateways/skrill.php:60 +#: includes/common/payment-gateways/stripe.php:78 +msgid "CHF - Swiss Franc" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:64 +#: includes/common/payment-gateways/skrill.php:76 +msgid "LVL - Latvian Lat" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:63 +#: includes/common/payment-gateways/paypal-chained-payments.php:74 +#: includes/common/payment-gateways/skrill.php:69 +msgid "ILS - Israeli Shekel" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:62 +#: includes/common/payment-gateways/skrill.php:71 +msgid "ISK - Iceland Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:61 +#: includes/common/payment-gateways/paypal-chained-payments.php:76 +#: includes/common/payment-gateways/skrill.php:68 +#: includes/common/payment-gateways/stripe.php:106 +msgid "HUF - Hungarian Forint" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:60 +#: includes/common/payment-gateways/paypal-chained-payments.php:71 +#: includes/common/payment-gateways/skrill.php:62 +#: includes/common/payment-gateways/stripe.php:86 +msgid "DKK - Danish Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:59 +#: includes/common/payment-gateways/skrill.php:67 +#: includes/common/payment-gateways/stripe.php:104 +msgid "HRK - Croatian Kuna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:58 +#: includes/common/payment-gateways/paypal-chained-payments.php:70 +#: includes/common/payment-gateways/skrill.php:61 +msgid "CZK - Czech Koruna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:57 +#: includes/common/payment-gateways/skrill.php:58 +msgid "BGN - Bulgarian Leva" +msgstr "" + +#: includes/common/payment-gateways/payflow/class-mp-gateway-worker-payflow.php:123 +msgid "There was an error connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:344 +msgid "This setting will log all PayFast communication to the \"payfast.log\" file." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:342 +msgid "Log Debugging Info?" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:335 +msgid "DO NOT INPUT A VALUE UNLESS YOU HAVE SET ONE IN THE SETTINGS SECTION OF YOUR PAYFAST SETTINGS." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:333 +msgid "PayFast Passphrase" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:323 +msgid "You can find your credentials on your integration page." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:321 +msgid "PayFast Merchant Credentials" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:311 +msgid "PayFast Mode" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:308 +msgid "PayFast is a payments processing service for South Africa. We make it safe for buyers to send money and easy for sellers to receive money. More Info »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:306 +msgid "PayFast Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:285 +msgid "Your payment via PayFast for this order totaling %s is complete. The transaction number is %s." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:278 +msgid "Your payment via PayFast for this order totaling %s is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:124 +msgid "Your PayFast transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:82 +#: includes/common/payment-gateways/payfast.php:83 +msgid "PayFast" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:157 +msgid "API error: - \"%s\"" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:198 +msgid "The payment request is under process" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:140 +msgid "Order: #" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:116 +msgid "You will be redirected to the Mollie site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:73 +msgid "%sMollie%s provides a fully PCI Compliant and secure way to collect payments via iDeal, Credit Card, Bancontact / Mister Cash, SOFORT Banking, Overbooking, Bitcoin, PayPal, paysafecard and AcceptEmail." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:53 +#: includes/common/payment-gateways/mollie.php:54 +#: includes/common/payment-gateways/mollie.php:195 +#: includes/common/payment-gateways/mollie.php:245 +msgid "Mollie" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:50 +#: includes/common/payment-gateways/paymill.php:56 +#: includes/common/payment-gateways/paypal-chained-payments.php:72 +#: includes/common/payment-gateways/pin.php:60 +#: includes/common/payment-gateways/skrill.php:64 +#: includes/common/payment-gateways/stripe.php:92 +msgid "EUR - Euro" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:306 +msgid "Access Key" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:300 +msgid "You must login to the Mijireh.com dashboard to obtain the Access Key." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:299 +msgid "Credentials" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:289 +msgid "Mijireh Checkout provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:269 +msgid "Mijireh Error: " +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:89 +msgid "You will be redirected to the Mijireh.com site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:87 +msgid "Your Mijireh transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:42 +#: includes/common/payment-gateways/mijireh.php:43 +#: includes/common/payment-gateways/mijireh.php:324 +msgid "Mijireh" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:145 +msgid "These are the manual payment instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:189 +msgid "This is the email text to send to those who have made free order checkouts. You should include your free order instructions / information here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:183 +msgid "This is the free order information to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:182 +msgid "Confirmation User Information" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:177 +msgid "This is the information to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:163 +msgid "If enabled, all free orders will be automatically marked as paid." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:159 +msgid "Payment Status" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:149 +msgid "This gateway is automatically activated if order totalling 0 and it can't be disabled" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:35 +#: includes/common/payment-gateways/free_orders.php:36 +#: includes/common/payment-gateways/free_orders.php:89 +msgid "Free Order" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:34 +#: includes/common/payment-gateways/free_orders.php:197 +msgid "Free Orders" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:515 +msgid "Sandbox API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:266 +#: includes/common/payment-gateways/eway31.php:542 +msgid "eWay Rapid 3.1 Payments (beta)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:403 +msgid "Hosted Payment Page Language" +msgstr "" + +#: includes/common/payment-gateways/eway.php:373 +msgid "Note when testing in sandbox mode it will use the default eWay test API credentials. Also, please note that cart total needs to be a whole number (e.g. 10.00) in order to generate a successful transaction, otherwise the transaction will fail." +msgstr "" + +#: includes/common/payment-gateways/eway.php:267 +msgid "You will be redirected to https://www.eway.com.au to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:380 +msgid "You have chosen to checkout using %s. Please confirm your order details and click \"Submit Order\" when finished." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:272 +#: includes/common/payment-gateways/paymill.php:131 +#: includes/common/payment-gateways/stripe.php:231 +msgid "Security Code " +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Enter in MM/YYYY or MM/YY format" +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Expiration" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:321 +msgid "Delim Data" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:307 +#: includes/common/payment-gateways/paypal-payflow.php:456 +msgid "This text will appear as the footer of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:287 +#: includes/common/payment-gateways/paypal-payflow.php:440 +msgid "Email Customer (on success)" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:278 +msgid "Authorize.net default is \",\". Otherwise, get this from your credit card processor. If the transactions are not going through, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:277 +msgid "Delimeter Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:193 +msgid "Held For Review" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:310 +#: includes/common/payment-gateways/payfast.php:314 +msgid "Test" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:300 +#: includes/common/payment-gateways/pin.php:170 +#: includes/common/payment-gateways/stripe.php:272 +msgid "Secret Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:283 +msgid "Select Your Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:97 +msgid "Your payment will be processed by the iDEAL network" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:208 +msgid "These are the CubePoints to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:203 +msgid "These are the CubePoints instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:266 +msgid "If enabled, all API calls will be made to https://test.bitpay.com." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:263 +msgid "Use Test Mode?" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:259 +msgid "If checked, response fron bitpay will be stored in log file, keep it disabled unless required." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:256 +msgid "Enable Debug Log" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:249 +msgid "Full Notifications" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:231 +#: includes/common/payment-gateways/eway31.php:499 +#: includes/common/payment-gateways/eway31.php:526 +#: includes/common/payment-gateways/mollie.php:83 +#: includes/common/shipping-modules/mp-fedex.php:269 +msgid "API Key" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:222 +msgid "You can now accept a payment from any country on Earth, with no risk of fraud. To use Bitpay, you need to signup on Bitpay. \\n After completing the signup process, you can get api keys at Bitpay API key. You can read more about Bitpay at Bitpay API. \\n Bitpay requires SSL(https) for payment notifications to work." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:61 +msgid "You will be redirected to bitpay.com, for bitcoin payment. It is completely safe." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:346 +msgid "You must login to the 2Checkout vendor dashboard to obtain the seller ID and secret word. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:345 +#: includes/common/payment-gateways/authorizenet-aim.php:239 +#: includes/common/payment-gateways/paymill.php:168 +#: includes/common/payment-gateways/paypal-express.php:704 +#: includes/common/payment-gateways/simplify.php:80 +#: includes/common/payment-gateways/stripe.php:265 +#: includes/common/payment-gateways/wepay.php:158 +msgid "API Credentials" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:325 +#: includes/common/payment-gateways/_bitpay.php:220 +#: includes/common/payment-gateways/_cubepoints.php:185 +#: includes/common/payment-gateways/_ideal.php:268 +#: includes/common/payment-gateways/_payway.php:255 +#: includes/common/payment-gateways/authorizenet-aim.php:219 +#: includes/common/payment-gateways/eway.php:352 +#: includes/common/payment-gateways/eway31.php:460 +#: includes/common/payment-gateways/free_orders.php:147 +#: includes/common/payment-gateways/manual-payments.php:126 +#: includes/common/payment-gateways/mijireh.php:287 +#: includes/common/payment-gateways/mollie.php:71 +#: includes/common/payment-gateways/paymill.php:149 +#: includes/common/payment-gateways/paypal-chained-payments.php:344 +#: includes/common/payment-gateways/paypal-payflow.php:376 +#: includes/common/payment-gateways/pin.php:145 +#: includes/common/payment-gateways/simplify.php:69 +#: includes/common/payment-gateways/skrill.php:121 +#: includes/common/payment-gateways/stripe.php:249 +#: includes/common/payment-gateways/wepay.php:119 +#: includes/common/shipping-modules/mp-fedex.php:243 +#: includes/common/shipping-modules/mp-flat-rate.php:63 +#: includes/common/shipping-modules/mp-pickup.php:140 +#: includes/common/shipping-modules/mp-table-rate.php:94 +#: includes/common/shipping-modules/mp-ups.php:122 +#: includes/common/shipping-modules/mp-usps.php:167 +#: includes/common/shipping-modules/mp-weight-rate.php:110 +msgid "%s Settings" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:136 +msgid "You will be redirected to the 2Checkout site to finalize your payment." +msgstr "" + +#: includes/common/helpers.php:169 includes/public/class-mp-checkout.php:1277 +msgid "Billing" +msgstr "" + +#: includes/common/helpers.php:144 +msgid "FREE" +msgstr "" + +#: includes/common/helpers.php:134 +msgid "Coupons:" +msgstr "" + +#: includes/common/helpers.php:95 +msgid "Qty" +msgstr "" + +#: includes/common/helpers.php:94 +msgid "Sku" +msgstr "" + +#: includes/common/data.php:59 +msgid "Zip Code" +msgstr "" + +#: includes/common/class-mp-taxes.php:336 +msgid "Standard Table" +msgstr "" + +#: includes/common/class-mp-product.php:2698 +msgid "Tweet" +msgstr "" + +#: includes/common/class-mp-product.php:2321 +msgid "Notification Preferences: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2320 +msgid "Edit Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2318 +msgid "Link: %s

    " +msgstr "" + +#: includes/common/class-mp-product.php:2317 +msgid "Current Inventory: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2316 +msgid "Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2314 +msgid "This message is being sent to notify you of low stock of a product in your online store according to your preferences.

    " +msgstr "" + +#: includes/common/class-mp-product.php:1817 +msgid "" +msgstr "" + +#: includes/common/class-mp-product.php:1427 +#: includes/common/class-mp-product.php:1430 +msgid "(tax incl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1422 +#: includes/common/class-mp-product.php:1425 +msgid "(tax excl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1300 +#: includes/common/class-mp-product.php:1315 +msgid "%s each" +msgstr "" + +#: includes/common/class-mp-product.php:988 +msgid "Choose Options" +msgstr "" + +#: includes/common/class-mp-product.php:526 +msgid "Choose a %s" +msgstr "" + +#: includes/common/class-mp-product.php:284 +#: includes/common/class-mp-product.php:292 +#: includes/common/class-mp-product.php:615 +msgid "We're sorry, we only have %d of this item in stock right now." +msgstr "" + +#: includes/common/class-mp-order.php:1456 +msgid "Shipped: Track Shipment" +msgstr "" + +#: includes/common/class-mp-order.php:1049 +msgid "Order Received" +msgstr "" + +#: includes/common/class-mp-order.php:1014 +msgid "In Process" +msgstr "" + +#: includes/common/class-mp-order.php:969 +msgid "Order #" +msgstr "" + +#: includes/common/class-mp-order.php:866 +msgid "Copy billing address to shipping address" +msgstr "" + +#: includes/common/class-mp-order.php:822 +#: includes/public/class-mp-checkout.php:1314 +msgid "Special Instructions" +msgstr "" + +#: includes/common/class-mp-order.php:817 +#: includes/common/payment-gateways/stripe.php:335 +msgid "Email" +msgstr "" + +#: includes/common/class-mp-order.php:813 +#: includes/common/payment-gateways/stripe.php:341 +#: includes/public/class-mp-checkout.php:416 +msgid "Phone" +msgstr "" + +#: includes/common/class-mp-order.php:791 +#: includes/common/payment-gateways/stripe.php:337 +msgid "State" +msgstr "" + +#: includes/common/class-mp-order.php:776 +msgid "Address 1" +msgstr "" + +#: includes/common/class-mp-order.php:766 +msgid "Last Name" +msgstr "" + +#: includes/common/class-mp-order.php:762 +msgid "First Name" +msgstr "" + +#: includes/common/class-mp-installer.php:677 +msgid "MarketPress requires a database update to continue working correctly. Go to update page" +msgstr "" + +#: includes/common/class-mp-installer.php:657 +msgid "MarketPress performed a quick automatic update successfully!" +msgstr "" + +#: includes/common/class-mp-installer.php:653 +msgid "Perform Update" +msgstr "" + +#: includes/common/class-mp-installer.php:647 +msgid "Please update each subsite in your WordPress network where you have older version of the MarketPress plugin." +msgstr "" + +#: includes/common/class-mp-installer.php:641 +msgid "Depending on the amount of products you have, this update could take quite some time. Please keep this window open while the update completes. If you have products with multiple variations, the progress bar may move slower, please don't exit the window." +msgstr "" + +#: includes/common/class-mp-installer.php:632 +msgid "Product Metadata" +msgstr "" + +#: includes/common/class-mp-installer.php:601 +msgid "MarketPress requires a database update to continue working correctly.
    Below you will find a list of items that require your attention." +msgstr "" + +#: includes/common/class-mp-installer.php:600 +msgid "Update MarketPress Data" +msgstr "" + +#: includes/common/class-mp-installer.php:530 +msgid "Update Data" +msgstr "" + +#: includes/common/class-mp-installer.php:67 +msgid "Complete!" +msgstr "" + +#: includes/common/class-mp-installer.php:66 +msgid "Upgrading Database...Please Wait..." +msgstr "" + +#: includes/common/class-mp-installer.php:64 +msgid "An error occurred while updating. Please refresh this page and try again." +msgstr "" + +#: includes/common/class-mp-cart.php:2447 +msgid "Some items in your cart have fallen below the quantity you currently have in your cart. We have adjusted the quantity in your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:2443 +msgid "Some items in your cart are no longer available. We have removed these items from your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:1566 +msgid "item" +msgstr "" + +#: includes/common/class-mp-cart.php:1563 +#: includes/common/class-mp-cart.php:1568 +msgid "items" +msgstr "" + +#: includes/common/class-mp-cart.php:1363 +msgid "Items/Products added to Cart will show here." +msgstr "" + +#: includes/common/class-mp-cart.php:1362 +msgid "Your shopping cart is empty." +msgstr "" + +#: includes/common/class-mp-cart.php:1357 +msgid "View Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1241 +#: includes/common/class-mp-cart.php:1298 +#: includes/public/class-mp-short-codes.php:159 +msgid "Adding..." +msgstr "" + +#: includes/common/class-mp-cart.php:1033 +msgid "Continue Shopping?" +msgstr "" + +#: includes/common/class-mp-cart.php:961 +msgid "Secure Checkout
    Shopping is always safe and secure." +msgstr "" + +#: includes/common/class-mp-cart.php:959 +msgid "You are about to submit your order!
    Please review your order details before continuing. You will be charged immediately upon clicking \"Submit Order\"." +msgstr "" + +#: includes/common/class-mp-cart.php:956 +msgid "Continue »" +msgstr "" + +#: includes/common/class-mp-cart.php:955 +msgid "Submit Order" +msgstr "" + +#: includes/common/class-mp-cart.php:818 +msgid "There are no items in your cart - go add some !" +msgstr "" + +#: includes/common/class-mp-cart.php:816 +msgid "The cart is disabled." +msgstr "" + +#: includes/common/class-mp-cart.php:735 +msgid "Estimated %s" +msgstr "" + +#: includes/common/class-mp-cart.php:717 +msgid "Estimated Shipping" +msgstr "" + +#: includes/common/class-mp-cart.php:697 +msgid "Product Total" +msgstr "" + +#: includes/common/class-mp-cart.php:670 includes/common/class-mp-cart.php:672 +msgid "Estimated Total (%s, %s)" +msgstr "" + +#: includes/common/class-mp-cart.php:668 +msgid "Estimated Total (%s)" +msgstr "" + +#: includes/common/class-mp-cart.php:666 includes/common/class-mp-cart.php:752 +msgid "Estimated Total" +msgstr "" + +#: includes/admin/widgets/product-list.php:247 +msgid "Show Thumbnail Placeholder image (if image is not set)" +msgstr "" + +#: includes/admin/widgets/cart.php:73 +msgid "Display product price" +msgstr "" + +#: includes/admin/widgets/cart.php:71 +msgid "Display product quantity" +msgstr "" + +#: includes/admin/widgets/cart.php:69 +msgid "Display product image" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:93 +msgid "General Shipping Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:773 +msgid "If you are having conflicts with the lightbox library from your theme or another plugin you should uncheck this." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:772 +msgid "Use Built-In Lightbox for Images?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:762 +msgid "Disable Large Image Display?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:688 +msgid "Show Product Image?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:682 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:684 +msgid "Show Tags List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:676 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:678 +msgid "Show Categories List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:671 +msgid "If enabled, description excerpt will be added above Add to cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:669 +msgid "Show Excerpt?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:665 +msgid "If enabled, users will be able to choose how many of the product they want to purchase before adding to their cart. If not checked, quantity could be change later on the cart page." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:663 +msgid "Show Quantity Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:649 +msgid "Settings related to the display of individual product pages." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:648 +msgid "Product Page Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:605 +msgid "Related Products Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:573 +msgid "Show Related Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:568 +msgid "Related Product Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:549 +msgid "Order Status Entries Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:510 +msgid "Sort Products By" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:497 +msgid "Products Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:492 +msgid "Paginate Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:478 +msgid "Excerpts Length" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:473 +msgid "Show Excerpts?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:450 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:746 +msgid "Image Alignment" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:412 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:708 +msgid "Custom Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:401 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:697 +msgid "Large - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:400 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:696 +msgid "Medium - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:399 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:695 +msgid "Thumbnail - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:397 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:693 +msgid "Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:386 +msgid "Select default placeholder image thumbnail when product image is not available (if empty, plugin's built-in image will be used)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:380 +msgid "Show default product placeholder thumbnail when product image is not available?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:374 +msgid "Show Product Thumbnail?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:369 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:658 +msgid "Redirect to cart page for immediate checkout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:368 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:657 +msgid "Stay on current product page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:366 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:655 +msgid "MarketPress supports two \"flows\" for adding products to the shopping cart. After adding a product to their cart, two things can happen:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:365 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:654 +msgid "Add To Cart Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:355 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:628 +msgid "Four" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:354 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:627 +msgid "Three" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:353 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:626 +msgid "Two" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:625 +msgid "One" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:349 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:622 +msgid "Set the number of products that show up in a grid row to best fit your theme" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:348 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:621 +msgid "How many products per row?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:342 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:609 +msgid "Display as grid" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:341 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:608 +msgid "Display as list" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:339 +msgid "Product Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:334 +msgid "Settings related to the display of product lists/grids." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:333 +msgid "Product List/Grid Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:314 +msgid "Show Twitter Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:309 +msgid "Twitter" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:303 +msgid "Show Share Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:297 +msgid "Recommend" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:296 +msgid "Like" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:294 +msgid "Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:283 +msgid "Show Facebook Like Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:278 +msgid "Facebook" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:257 +msgid "Show \"Pin It\" Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:252 +msgid "Pinterest" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:246 +msgid "Social Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:193 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:202 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:211 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:220 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:229 +#: includes/multisite/class-mp-admin-multisite.php:532 +#: includes/multisite/class-mp-admin-multisite.php:541 +#: includes/multisite/class-mp-admin-multisite.php:550 +msgid "Choose a Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:191 +msgid "This page will be used as the root for your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:168 +#: includes/multisite/class-mp-admin-multisite.php:586 +msgid "Create Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "uncropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "cropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:87 +#: includes/multisite/class-mp-admin-multisite.php:121 +#: includes/multisite/class-mp-admin-multisite.php:620 +msgid "An error occurred while creating the store page. Please try again." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:66 +msgid "Choose the gateway(s) that you would like to be available for checkout." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:65 +msgid "Enabled Gateways" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:78 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:146 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:179 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:213 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:274 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:307 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:341 +msgid "Text" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:71 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:139 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:172 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:206 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:267 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:300 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:334 +msgid "Subject" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:52 +msgid "Notification Email" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:510 +msgid "Enabling this option will display label `excl. tax` or `incl. tax` after price" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:509 +msgid "Display tax label?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:504 +msgid "Enabling this option will show Price + Tax, eg. if your price is 100 and your tax 20, your price will be 120" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:416 +#: includes/multisite/class-mp-admin-multisite.php:234 +msgid "Price Format" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:366 +msgid "Enabling this field will display a textbox on the shipping checkout page for users to enter special instructions for their order. Useful for product personalization, etc." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:365 +msgid "Show Special Instructions Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:360 +msgid "Universal" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:359 +msgid "Old" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1167 +#: includes/admin/store-settings/class-mp-store-settings-general.php:358 +msgid "New" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:353 +msgid "If you already use Google Analytics for your website, you can track detailed ecommerce information by enabling this setting. Choose whether you are using the new asynchronous or old tracking code. Before Google Analytics can report ecommerce activity for your website, you must enable ecommerce tracking on the profile settings page for your website. Also keep in mind that some gateways do not reliably show the receipt page, so tracking may not be accurate in those cases. It is recommended to use the PayPal gateway for the most accurate data. More information »" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:347 +msgid "Do you want to display the product price on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:346 +msgid "Show product price on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:340 +msgid "Do you want to display the product quantity on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:339 +msgid "Show product quantity on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:333 +msgid "Do you want to display the product image on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:332 +msgid "Show product image on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:327 +msgid "This option hide floating Mini Cart in top right corner." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:326 +msgid "Disable Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:316 +msgid "If unchecked your Orders admin page will be hidden" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:315 +msgid "Show admin Orders page?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:309 +msgid "Disable Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:303 +msgid "Force Login?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:297 +msgid "Hide Out of Stock Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:555 +msgid "This will prevent multiples of the same downloadable product form being added to the cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:554 +msgid "Limit Digital Products Per-order?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:268 +msgid "If you're having issues downloading large files and have worked with your hosting provider to increase your memory limits, try enabling this - just keep in mind, it's not as secure!" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:267 +msgid "Use Alternative Download Method?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:252 +msgid "Download Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:230 +msgid "Change product post type" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:51 +msgid "%s Capabilities" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-addons.php:47 +msgid "Store Settings: Add Ons: %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:254 +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:56 +msgid "Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Edit Product Attribute %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:246 +msgid "Exporters" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:238 +msgid "Short Codes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:207 +msgid "An appropriate message for key \"%s\" could not be found." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:204 +msgid "Product attribute updated successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:203 +msgid "Product attribute added successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +msgid "Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +#: includes/admin/store-settings/class-mp-store-settings-addons.php:121 +msgid "Store Settings: Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "Store Settings: Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:118 +msgid "Store Settings: Product Tags" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:117 +msgid "Store Settings: Product Categories" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Store Settings: Product Attributes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +msgid "Store Settings: Payments" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:114 +msgid "Store Settings: Shipping" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +#: includes/admin/class-mp-store-settings-admin.php:226 +msgid "Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +msgid "Store Settings: Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:112 +msgid "Store Settings: Presentation" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:111 +msgid "Store Settings: General" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1489 +msgid "Select a Product" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1447 +msgid "Reset to Defaults" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1446 +msgid "Insert Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1202 +#: includes/admin/class-mp-shortcode-builder.php:1227 +#: includes/admin/class-mp-shortcode-builder.php:1252 +msgid "The text to show in the link." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1196 +#: includes/admin/class-mp-shortcode-builder.php:1221 +#: includes/admin/class-mp-shortcode-builder.php:1246 +msgid "Whether to return a clickable link or url." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1177 +msgid "Whether to display the cart only on store pages or not." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1171 +msgid "Whether to show or hide the product price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1165 +msgid "Whether to show or hide the product quantity." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1159 +msgid "Whether to show or hide the product image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1153 +msgid "The text displayed before the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1147 +msgid "The title of the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1058 +#: includes/admin/class-mp-shortcode-builder.php:1121 +msgid "A label to prepend to the price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1032 +#: includes/admin/class-mp-shortcode-builder.php:1127 +msgid "What context for display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1004 +msgid "Set the alignment of the image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:998 +msgid "Set a custom pixel width/height. If omitted defaults to the size set by \"context\"." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:993 +msgid "Widget" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:988 +msgid "What context for preset size options." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:982 +#: includes/admin/class-mp-shortcode-builder.php:1026 +#: includes/admin/class-mp-shortcode-builder.php:1052 +#: includes/admin/class-mp-shortcode-builder.php:1077 +#: includes/admin/class-mp-shortcode-builder.php:1096 +#: includes/admin/class-mp-shortcode-builder.php:1115 +msgid "The ID of the product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:963 +msgid "Whether to display the product meta (e.g. price, buy button)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:738 +#: includes/admin/class-mp-shortcode-builder.php:905 +#: includes/admin/class-mp-shortcode-builder.php:958 +#: includes/admin/class-mp-shortcode-builder.php:992 +#: includes/admin/class-mp-shortcode-builder.php:1035 +#: includes/admin/class-mp-shortcode-builder.php:1130 +#: includes/admin/class-mp-shortcode-builder.php:1349 +msgid "List" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:957 +#: includes/admin/class-mp-shortcode-builder.php:991 +#: includes/admin/class-mp-shortcode-builder.php:1034 +#: includes/admin/class-mp-shortcode-builder.php:1129 +msgid "Single" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:953 +msgid "Whether and what context of image size to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:948 +msgid "Full" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:943 +msgid "Whether and what type of content to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:937 +msgid "Whether to display the product title." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:931 +msgid "The ID of the product to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:747 +#: includes/admin/class-mp-shortcode-builder.php:914 +msgid "Hide" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:746 +#: includes/admin/class-mp-shortcode-builder.php:913 +msgid "Show" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:744 +#: includes/admin/class-mp-shortcode-builder.php:911 +msgid "Whether or not to show the product filters." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:724 +#: includes/admin/class-mp-shortcode-builder.php:891 +#: includes/admin/class-mp-shortcode-builder.php:1335 +msgid "Limits list to a specific product tag." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:713 +#: includes/admin/class-mp-shortcode-builder.php:880 +#: includes/admin/class-mp-shortcode-builder.php:1324 +msgid "Limits list to a specific product category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:706 +#: includes/admin/class-mp-shortcode-builder.php:873 +#: includes/admin/class-mp-shortcode-builder.php:1317 +msgid "Direction to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:684 +#: includes/admin/class-mp-shortcode-builder.php:851 +#: includes/admin/class-mp-shortcode-builder.php:1295 +msgid "What field to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:678 +#: includes/admin/class-mp-shortcode-builder.php:845 +#: includes/admin/class-mp-shortcode-builder.php:1283 +msgid "How many products to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:672 +#: includes/admin/class-mp-shortcode-builder.php:839 +#: includes/admin/class-mp-shortcode-builder.php:1277 +msgid "The page number to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:666 +#: includes/admin/class-mp-shortcode-builder.php:833 +#: includes/admin/class-mp-shortcode-builder.php:1271 +msgid "Whether to paginate the product list. This is useful to only show a subset." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:808 +msgid "How many related items to show." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:790 +msgid "How to relate the products" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:784 +msgid "The product to show related items for." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:765 +msgid "The maximum number of products to display" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:647 +msgid "Comma separated list of tags (term_id) to include. For example, include=5,27 means tags that have the term_id 5 or 27 will be the only tags displayed. Defaults to include everything." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:641 +msgid "Comma separated list of tags (term_id) to exclude. For example, exclude=5,27 means tags that have the term_id 5 or 27 will NOT be displayed. Defaults to exclude nothing." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:633 +#: includes/admin/class-mp-shortcode-builder.php:1420 +msgid "Sort order." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:629 +#: includes/admin/class-mp-shortcode-builder.php:1416 +msgid "Count" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:626 +#: includes/admin/class-mp-shortcode-builder.php:1413 +msgid "Order of the tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:620 +msgid "The text/space between tags)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:616 +msgid "UL with a class of \"wp-tag-cloud\"" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:615 +msgid "separated by whitespace defined by \"separator\" parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:613 +msgid "Format of the cloud display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:607 +msgid "The number of actual tags to display in the cloud. (Use \"0\" to display all tags.)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:601 +msgid "Unit of measure as pertains to the smallest and largest values. This can be any CSS length value, e.g. pt, px, em, %." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:595 +msgid "The text size of the tag with the largest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:589 +msgid "The text size of the tag with the smallest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:570 +msgid "The \"tabindex\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:564 +msgid "The \"name\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:558 +msgid "The \"id\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:552 +msgid "Which category ID is selected." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:540 +msgid "The max depth. This is ignored unless hierarchical is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:536 +#: includes/multisite/template-functions.php:816 +msgid "No Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:414 +#: includes/admin/class-mp-shortcode-builder.php:546 +msgid "Calculates link or post counts by including items from child categories. If show_counts and hierarchical are true this is automatically set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:409 +msgid "Value of n (some number) specifies the depth (or level) to descend in displaying Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:408 +msgid "Show only top level Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:407 +msgid "All Categories displayed in flat (no indent) form (overrides hierarchical)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:406 +msgid "All Categories and child Categories (Default)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:402 +msgid "This parameter controls how many levels in the hierarchy of Categories are to be included in the list of Categories. NOTE: The \"hierarchical\" argument, which is disabled by default, will override the depth argument, unless it is true. When the argument is false, it will display all of the categories. When it is enabled it will use the value in the \"depth\" argument." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:396 +#: includes/admin/class-mp-shortcode-builder.php:1394 +msgid "Sets the number of Categories to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:390 +#: includes/admin/class-mp-shortcode-builder.php:534 +msgid "Set the text to show when no categories are listed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:384 +msgid "Set the title and style of the outer list item. If present but empty, the outer list item will not be displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:378 +#: includes/admin/class-mp-shortcode-builder.php:528 +msgid "Display sub-categories as inner list items (below the parent list item) or inline." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:368 +#: includes/admin/class-mp-shortcode-builder.php:511 +msgid "Exclude category-tree from the results. The parameter include must be empty. If the hierarchical parameter is true, then use exclude instead of exclude_tree." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:354 +msgid "Only include these categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:340 +#: includes/admin/class-mp-shortcode-builder.php:356 +#: includes/admin/class-mp-shortcode-builder.php:370 +#: includes/admin/class-mp-shortcode-builder.php:496 +#: includes/admin/class-mp-shortcode-builder.php:513 +msgid "Select Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:338 +#: includes/admin/class-mp-shortcode-builder.php:494 +msgid "Exclude one or more categories from the results. The parameter include must be empty." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:332 +msgid "Set a URI for an image (usually an rss feed icon) to act as a link to each categories' rss-2 feed. This parameter overrides the feed parameter. There is no default for this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:320 +msgid "Display a link to each category's rss-2 feed and set the link text to display. The default is no text and no feed displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:313 +#: includes/admin/class-mp-shortcode-builder.php:487 +msgid "Any" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:307 +#: includes/admin/class-mp-shortcode-builder.php:481 +msgid "Only display categories that are children of the category identified by this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:301 +msgid "Sets whether a category's description is inserted into the title attribute of the links created (i.e. <a title=\"<em>Category Description</em>\" href=\"...)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:295 +#: includes/admin/class-mp-shortcode-builder.php:475 +msgid "Toggles the display of categories with no posts." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:289 +#: includes/admin/class-mp-shortcode-builder.php:469 +#: includes/admin/class-mp-shortcode-builder.php:1388 +msgid "Toggles the display of the current count of posts in each category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:279 +msgid "Style to display the categories list in. A value of list displays the categories as list items while none generates no special display method (the list items are separated by
    tags)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:269 +#: includes/admin/class-mp-shortcode-builder.php:449 +#: includes/admin/class-mp-shortcode-builder.php:1378 +msgid "Sort order for categories (either ascending or descending)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:259 +#: includes/admin/class-mp-shortcode-builder.php:439 +#: includes/admin/class-mp-shortcode-builder.php:1368 +msgid "Sort categories alphabetically, by unique Category ID, or by the count of posts in that Category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:253 +#: includes/admin/class-mp-shortcode-builder.php:433 +msgid "If a value is entered, causes the display of a link to all categories if the style is set to list." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:219 +msgid "Select an Action" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:217 +msgid "What would you like to do?" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:216 +#: includes/admin/class-mp-shortcode-builder.php:1522 +msgid "Add E-Commerce Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:197 +msgid "Display a list of links to your store pages." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:196 +msgid "Display a link or url to the order status page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:195 +msgid "Display a link or url to the current products list page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:194 +msgid "Display a link or url to the current store page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:193 +msgid "Display a link or url to the current shopping cart page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:192 +msgid "Display the cart widget." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:191 +msgid "Display the full product meta box with price and buy now/add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:190 +msgid "Display the product stock." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:189 +msgid "Display the product SKU number(s)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:188 +msgid "Display the product price (and sale price)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:187 +msgid "Display the buy or add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:186 +msgid "Display the featured image of a given product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:185 +msgid "Display a single product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:184 +msgid "Display a list of products according to preference." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:183 +msgid "Display products related to the one being viewed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:182 +msgid "Display a list of popular products ordered by sales." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:180 +msgid "Display an HTML dropdown of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:179 +msgid "Display an HTML list of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:178 +msgid "Display a cloud or list of your product tags." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:655 +msgid "Setup your payment gateway" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:643 +#: includes/admin/class-mp-setup-wizard.php:649 +msgid "Other Gateways" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:617 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:150 +msgid "Select which calculated shipping methods the customer will be able to choose from." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:601 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:134 +#: includes/public/class-mp-checkout.php:82 +msgid "Shipping Method" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:568 +msgid "I want to charge shipping" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:523 +#: includes/admin/store-settings/class-mp-store-settings-general.php:503 +msgid "Show Price + Tax?" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:507 +msgid "I.e. Taxes, VAT, GST, etc" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:491 +#: includes/admin/store-settings/class-mp-store-settings-general.php:471 +msgid "Current Rates" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:473 +msgid "Default Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:434 +#: includes/admin/class-mp-setup-wizard.php:442 +#: includes/admin/store-settings/class-mp-store-settings-general.php:386 +#: includes/admin/store-settings/class-mp-store-settings-general.php:394 +#: includes/multisite/class-mp-admin-multisite.php:204 +#: includes/multisite/class-mp-admin-multisite.php:212 +msgid "Select a Currency" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:414 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:105 +msgid "Choose Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:411 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:103 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:104 +msgid "All Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:410 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:102 +msgid "These are the countries that you will ship to." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:409 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:101 +msgid "Target Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:401 +msgid "Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:387 +#: includes/admin/store-settings/class-mp-store-settings-general.php:640 +msgid "Zip/Postal Code Label" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:352 +#: includes/admin/store-settings/class-mp-store-settings-general.php:606 +msgid "Select a State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:335 +#: includes/admin/store-settings/class-mp-store-settings-general.php:590 +msgid "Select A Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:332 +#: includes/admin/store-settings/class-mp-store-settings-general.php:587 +msgid "Select a Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:324 +msgid "Location" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:304 +#: includes/admin/class-mp-setup-wizard.php:312 +#: includes/admin/class-mp-store-settings-admin.php:129 +#: includes/admin/class-mp-store-settings-admin.php:262 +msgid "Quick Setup" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:289 +msgid "MarketPress setup is not complete! Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2479 +msgid "Enter your product name here" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2440 +msgid "Select a %s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2426 +msgid "Each product variation needs to have product attributes assigned to it so the system knows how to differentiate one product variation from the other. It is important that you assign a category to this product before choosing any attributes." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2409 +msgid "If you would like this variation to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2320 +msgid "Sale Price (if applicable)" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2281 +msgid "If you would like the description to be different than the main product enter it here." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2229 +msgid "Image" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2202 +#: includes/admin/class-mp-shortcode-builder.php:226 +msgid "Attributes" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2166 +msgid "Create your product variations here. You can reorder variations by using the number to left of each variation, or delete one by clicking the \"x\" to the right of each variation. NOTE: The variation that shows up first in this list will be considered the \"main variation\". The details from this variation will be used in product listings." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2061 +#: includes/admin/class-mp-products-admin.php:2332 +msgid "Value must be less than regular price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2043 +#: includes/admin/class-mp-products-admin.php:2306 +msgid "Regular Price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2023 +#: includes/admin/class-mp-products-admin.php:2286 +msgid "External URL" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1988 +#: includes/admin/class-mp-products-admin.php:2245 +msgid "Enter the quantity that you have available to sell." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1987 +#: includes/admin/class-mp-products-admin.php:2244 +msgid "Inventory Count" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1977 +#: includes/admin/class-mp-products-admin.php:2234 +msgid "Track Inventory?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1871 +msgid "%1$sProduct Images%2$s %3$sAdd images of the product. The first image on the list is the featured image for this product (you can reorder images on the list)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1806 +msgid "Add variations for this product. e.g. If you are selling t-shirts, you can create Color & Size variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1804 +msgid "%3$sAdd variations for%2$s %1$sProduct%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1776 +msgid "This product has a multiple variations %1$s(e.g. Multiple colors, sizes)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1775 +msgid "This is a unique product without variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1700 +msgid "Extra Shipping Cost %1$s(if applicable)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1659 +#: includes/admin/class-mp-products-admin.php:2112 +#: includes/admin/class-mp-products-admin.php:2359 +msgid "Weight" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1636 +#: includes/admin/class-mp-products-admin.php:2098 +#: includes/admin/class-mp-products-admin.php:2416 +msgid "Please enter a valid tax rate" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1531 +msgid "Limit Per Order %1$s(limit the number of the item a shopper can buy per order)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1513 +msgid "SKU %1$s(Stock Keeping Unit)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "%1$sPrice, Inventory & Variants%2$s %3$sSet price, manage inventory and create Product Variants (if appropriate for your product).%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "Product Variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1480 +msgid "External / Affiliate Link" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1471 +msgid "Digital Download" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1470 +msgid "Physical / Tangible Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1464 +msgid "Product Kind %1$s(Physical Product, Digital, etc)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1426 +msgid "Choose Products" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1420 +msgid "If you would like, you can choose specific related products instead of using the ones generated by MarketPress" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1019 +msgid "Changes saved successfully" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:826 +msgid "Option cannot be saved. Try again." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:821 +msgid "Option saved successfully." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:467 +msgid "Img" +msgstr "" + +#: includes/admin/class-mp-product-attributes-list-table.php:57 +msgid "Product attribute(s) deleted successfully." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:162 +msgid "- Create New Variation -" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:144 +msgid "Only lowercase letters and dashes (-) are allowed." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:139 +msgid "If a slug is not entered, it will be generated automatically. Max 32 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:138 +#: includes/admin/class-mp-product-attributes-list-table.php:23 +msgid "Slug" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:130 +msgid "Max 45 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:123 +msgid "Use the numbers on the left to sort. To delete - click the \"X\" to the right of each row." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:122 +msgid "Attribute Options" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:121 +msgid "Add Option" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:105 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:523 +msgid "Sort Order" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:87 +msgid "Alphabetical" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:86 +msgid "ID" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:84 +msgid "Select how the options will be sorted." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:82 +msgid "Sort By" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:75 +msgid "The name of the attribute (e.g. color, size, etc)" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:74 +msgid "Attribute Name" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:69 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Product Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Product Attributes" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:71 +msgid "You can choose to make this page one of the following core store pages." +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:66 +msgid "Network Store Base" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:61 +msgid "Checkout Page" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:52 +msgid "Store Page Settings" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1108 +msgid "Display billing/shipping info for this customer" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1097 +msgid "View order “%s”" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1072 +msgid "Flag as:" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:952 +msgid "Move To Trash" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:948 +msgid " Received" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:927 +msgid "Enter coupon code here" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:812 +msgid "The order status could not be updated due to unexpected error. Please try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:740 +msgid "An invalid bulk action was requested. Please go back and try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:692 +msgid "The order status for order ID %1$s was updated successfully." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:688 +msgid "Order statuses successfully updated." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:530 +msgid "Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:518 +msgid "Actual Shipping Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:513 +msgid "Method Paid For" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:504 +msgid "Amount Collected" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:477 +msgid "DHL" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:408 +msgid "There is no IPN history to show at this time" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:345 +msgid "Type" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:343 +msgid "Gateway" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:301 +#: includes/common/template-functions.php:528 +msgid "Order History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:291 +msgid "IPN History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:283 +msgid "Customer Info" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:279 +msgid "Order Details" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:157 +msgid "All Dates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:320 +msgid "Add Pages to Menu" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:318 +msgid "Add-ons" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:317 +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "User Capabilities" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:316 +#: includes/admin/class-mp-setup-wizard.php:631 +#: includes/admin/store-settings/class-mp-store-settings-payments.php:50 +msgid "Payment Gateways" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:315 +msgid "Shipping Rates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:312 +msgid "Configure" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:309 +#: includes/admin/class-mp-products-admin.php:466 +#: includes/admin/class-mp-shortcode-builder.php:797 +msgid "Tags" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:308 +#: includes/admin/class-mp-products-admin.php:465 +msgid "Categories" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:300 +msgid "Manage" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:297 +msgid "Here's some quick links to manage your store and products." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:288 +msgid "low in stock" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:287 +msgid "%s product" +msgid_plural "%s products" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-dashboard-widgets.php:280 +msgid "received" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:279 +#: includes/admin/class-mp-dashboard-widgets.php:283 +msgid "%s order" +msgid_plural "%s orders" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-dashboard-widgets.php:276 +msgid "Stock & Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:261 +msgid "Last 30 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:256 +msgid "Last 7 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:251 +msgid "Yesterday" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:248 +#: includes/admin/class-mp-dashboard-widgets.php:253 +#: includes/admin/class-mp-dashboard-widgets.php:258 +#: includes/admin/class-mp-dashboard-widgets.php:263 +msgid " Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:246 +msgid "Today" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:241 +msgid "Welcome back! Here's a quick summary of your store's performance." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:196 +#: includes/admin/class-mp-products-admin.php:895 +msgid "No products out of stock." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:136 +#: includes/admin/class-mp-products-admin.php:839 +msgid "Stock Level" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:135 +#: includes/admin/class-mp-products-admin.php:838 +msgid "Variation" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:121 +msgid "Low Stock (%s)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:116 +msgid "Store Management" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:115 +msgid "Store Reports" +msgstr "" + +#: includes/admin/class-mp-ajax.php:579 +#: includes/admin/class-mp-orders-admin.php:520 +#: includes/common/payment-gateways/2checkout.php:370 +#: includes/common/payment-gateways/authorizenet-aim.php:264 +#: includes/common/payment-gateways/mollie.php:93 +#: includes/common/payment-gateways/paymill.php:196 +#: includes/common/payment-gateways/pin.php:190 +#: includes/common/payment-gateways/skrill.php:157 +#: includes/common/payment-gateways/skrill.php:168 +#: includes/common/payment-gateways/wepay.php:143 +#: includes/public/class-mp-checkout.php:404 +msgid "Select One" +msgstr "" + +#: includes/admin/class-mp-ajax.php:511 +msgid "Oops... we could not locate any orders by that ID. Please double check your order ID and try again." +msgstr "" + +#: includes/admin/class-mp-ajax.php:482 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:166 +#: includes/multisite/class-mp-admin-multisite.php:584 +msgid "Edit Page" +msgstr "" + +#: includes/admin/class-mp-ajax.php:346 +msgid "Cancel " +msgstr "" + +#: includes/admin/class-mp-ajax.php:345 +msgid "Save " +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "Edit Description" +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "HTML Markup" +msgstr "" + +#: includes/admin/class-mp-ajax.php:333 +msgid "Plain Text Only" +msgstr "" + +#: includes/admin/class-mp-ajax.php:329 +msgid "Additional Content / Information for this Variation" +msgstr "" + +#: includes/admin/class-mp-ajax.php:317 +#: includes/admin/class-mp-products-admin.php:1762 +msgid "Allow this product to be purchased even if it's out of stock" +msgstr "" + +#: includes/admin/class-mp-ajax.php:313 +#: includes/admin/class-mp-products-admin.php:1711 +msgid "Track Product Inventory" +msgstr "" + +#: includes/admin/class-mp-ajax.php:300 +msgid "Extra Shipping Cost (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:295 +msgid "Ounces:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:294 +msgid "Pounds:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:292 +msgid "Kilograms:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:287 +#: includes/admin/class-mp-products-admin.php:1649 +msgid "Charge Shipping" +msgstr "" + +#: includes/admin/class-mp-ajax.php:273 +#: includes/admin/class-mp-products-admin.php:1623 +#: includes/admin/store-settings/class-mp-store-settings-general.php:454 +msgid "Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:272 +#: includes/admin/class-mp-products-admin.php:1622 +#: includes/admin/class-mp-products-admin.php:2090 +#: includes/admin/class-mp-products-admin.php:2408 +msgid "Special Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:271 +#: includes/admin/class-mp-products-admin.php:1625 +#: includes/admin/class-mp-products-admin.php:2092 +msgid "If you would like this product to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-ajax.php:268 +#: includes/admin/class-mp-products-admin.php:1599 +msgid "Charge Taxes (Special Rate)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:256 +#: includes/admin/class-mp-products-admin.php:1593 +#: includes/admin/class-mp-products-admin.php:2077 +#: includes/admin/class-mp-products-admin.php:2348 +msgid "End Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:255 +#: includes/admin/class-mp-products-admin.php:1589 +#: includes/admin/class-mp-products-admin.php:2072 +msgid "Start Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:1568 +msgid "Enter Sale Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:250 +#: includes/admin/class-mp-products-admin.php:1547 +msgid "Set up a Sale for this Product" +msgstr "" + +#: includes/admin/class-mp-ajax.php:206 includes/admin/class-mp-ajax.php:223 +msgid "Enter " +msgstr "" + +#: includes/admin/class-mp-ajax.php:193 +msgid "Browse" +msgstr "" + +#: includes/admin/class-mp-ajax.php:184 includes/admin/class-mp-ajax.php:192 +msgid "http://" +msgstr "" + +#: includes/admin/class-mp-ajax.php:183 +msgid "External Product URL" +msgstr "" + +#: includes/admin/class-mp-ajax.php:237 +msgid "Limit Per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:177 +#: includes/admin/class-mp-products-admin.php:1520 +msgid "Enter Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:174 +#: includes/admin/class-mp-products-admin.php:1512 +msgid "Enter SKU" +msgstr "" + +#: includes/admin/class-mp-ajax.php:173 +msgid "(Stock Keeping Unit)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:158 +msgid "Remove Image" +msgstr "" + +#: includes/admin/class-mp-ajax.php:74 +msgid "Variation Draft" +msgstr "" + +#: includes/admin/class-mp-admin.php:296 +#: includes/admin/class-mp-dashboard-widgets.php:70 +msgid "Please wait...saving in progress..." +msgstr "" + +#: includes/admin/class-mp-admin.php:295 +#: includes/admin/class-mp-dashboard-widgets.php:69 +msgid "Input is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:294 +#: includes/admin/class-mp-dashboard-widgets.php:68 +msgid "Valid number is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:292 +#: includes/admin/class-mp-dashboard-widgets.php:66 +msgid "Delete %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:291 +#: includes/admin/class-mp-dashboard-widgets.php:65 +msgid "Delete %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:290 +#: includes/admin/class-mp-dashboard-widgets.php:64 +msgid "Update inventory for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:289 +#: includes/admin/class-mp-dashboard-widgets.php:63 +msgid "Update inventory for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:288 +#: includes/admin/class-mp-dashboard-widgets.php:62 +msgid "Update price for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:287 +#: includes/admin/class-mp-dashboard-widgets.php:61 +msgid "Update prices for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:285 +#: includes/admin/class-mp-dashboard-widgets.php:59 +msgid "Creating variations, please wait..." +msgstr "" + +#: includes/admin/class-mp-admin.php:96 +msgid "The following payment gateways have been deprecated, Cubepoints, Bitpay, iDEAL, Skrill, Google Checkout. If you were using one of these gateways, please setup a new payment gateway here." +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:61 +msgid "Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:71 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:71 +#: includes/common/class-mp-gdpr.php:399 includes/common/class-mp-order.php:872 +#: includes/common/helpers.php:164 includes/public/class-mp-checkout.php:1434 +msgid "Shipping Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:66 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:66 +#: includes/common/class-mp-gdpr.php:392 includes/common/class-mp-order.php:864 +#: includes/common/helpers.php:163 includes/public/class-mp-checkout.php:1427 +msgid "Billing Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:61 +msgid "Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:258 +msgid "Shipping Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:256 +msgid "Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:235 +msgid "Payment Method: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:79 +msgid "The dir %s not exist or not writeable" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:239 +msgid "Shop header/logo" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:233 +msgid "Choose a template" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:226 +msgid "Template Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:221 +msgid "Disable automatic creation/attachment of invoices when only free products are ordered" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:220 +msgid "Disable for free products" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:216 +msgid "Attach invoice to" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:214 +msgid "Customer Order Shipped email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:212 +msgid "Customer New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:211 +msgid "Admin New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:206 +msgid "download" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:205 +msgid "How do you want to view the PDF?" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:203 +msgid "Open the PDF in a new browser tab/window" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:202 +msgid "Download the PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:158 +msgid "Export PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:103 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:106 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:109 +msgid "You can't download this order invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:76 +msgid "Invalid Request" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:72 +msgid "Order not exist!" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:67 +msgid "Invalid ID" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1293 +msgid "Coupon added successfully" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1292 +msgid "Please enter a code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1247 +msgid "No end" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1200 +msgid "Valid Dates" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1195 +msgid "Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1027 +msgid "No Coupons found in Trash" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1026 +msgid "No Coupons Found" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1025 +msgid "Search Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1024 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1028 +msgid "View Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1023 +msgid "New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1020 +msgid "Create New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1017 +msgid "Manage Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1002 +msgid "An error occurred while removing your coupon. Please try again." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:964 +msgid "Coupon can't be applied to this cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:951 +msgid "Invalid coupon code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:794 +msgid "Help Text" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:789 +msgid "Form Title" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:783 +msgid "Coupons Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:764 +msgid "End Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:758 +msgid "Does coupon have an end date?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:696 +msgid "Select Products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:688 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:723 +#: includes/common/payment-gateways/paypal-payflow.php:402 +msgid "User" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:638 +msgid "Max Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:636 +msgid "Enter the maximum number of times this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:623 +msgid "Leave blank to allow all other coupons." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:622 +msgid "Select combinable coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:618 +msgid "Can this coupon be combined with other coupons?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:613 +msgid "Apply to each applicable item once per cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:612 +msgid "Apply to each applicable item and quantity ordered" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:609 +msgid "How should the discount amount be applied?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:605 +msgid "Discount Amount" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:604 +msgid "Value must either be a decimal number or a percentage" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:602 +msgid "If you would like to give a percentage-based discount make sure to include the percent (%) symbol. Otherwise, the discount will be applied as a fixed amount off." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:595 +msgid "Letters and Numbers only." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:589 +msgid "Coupon Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:447 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:795 +msgid "More than one code? That's OK! Just be sure to enter one at a time." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:444 +msgid "Apply Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:314 +msgid "Coupon Discounts" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:89 +msgid "1 add-on disabled" +msgid_plural "%s add-ons disabled" +msgstr[0] "" +msgstr[1] "" + +#: includes/addons/class-mp-addons-list-table.php:84 +msgid "1 add-on enabled" +msgid_plural "%s add-ons enabled" +msgstr[0] "" +msgstr[1] "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Disabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Enable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:129 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:67 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:135 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:168 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:202 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:263 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:296 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:330 +msgid "Enabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +msgid "Disable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:34 +msgid "Disable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:33 +msgid "Enable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:21 +#: includes/admin/class-mp-products-admin.php:2280 +#: includes/common/class-mp-product.php:2916 +msgid "Description" +msgstr "" + +#: includes/common/template-functions.php:2889 +#: includes/multisite/template-functions.php:407 +msgid "Popularity (Least Popular - Most Popular)" +msgstr "" + +#: includes/common/template-functions.php:2888 +#: includes/multisite/template-functions.php:406 +msgid "Popularity (Most Popular - Least Popular)" +msgstr "" + +#: includes/common/template-functions.php:2885 +#: includes/multisite/template-functions.php:403 +msgid "Name (Z-A)" +msgstr "" + +#: includes/common/template-functions.php:2884 +#: includes/multisite/template-functions.php:402 +msgid "Name (A-Z)" +msgstr "" + +#: includes/common/template-functions.php:2883 +#: includes/multisite/template-functions.php:401 +msgid "Release Date (Oldest to Latest)" +msgstr "" + +#: includes/common/template-functions.php:2882 +#: includes/multisite/template-functions.php:400 +msgid "Release Date (Latest to Oldest)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:284 +msgid "paid" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "One Time Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Customer Counter" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Daily Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:182 +msgid "For the most accurate rates, please select the appropriate pick up type for your business." +msgstr "" + +#: includes/admin/class-mp-admin.php:374 +msgid "Page saved." +msgstr "" + +#: includes/admin/class-mp-admin.php:370 +msgid "Custom field deleted." +msgstr "" + +#: includes/admin/class-mp-admin.php:369 +msgid "Custom field updated." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:541 +msgid "%s - The payment request expired, - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:536 +msgid "%s - The payment not credited in merchants bitpay account, action required. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:252 +msgid "If enabled, you will recieve an email for each status update on payment." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:240 +msgid "Speed at which the bitcoin transaction registers as \"confirmed\" to the store. This overrides your merchant settings on the Bitpay website." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:238 +msgid "Transaction Speed" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:244 +msgid "Low" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:243 +msgid "Medium" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:242 +msgid "High" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:177 +#: includes/common/payment-gateways/_bitpay.php:517 +#: includes/common/payment-gateways/_bitpay.php:522 +msgid "%s - The payment request is under process. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:175 +#: includes/common/payment-gateways/_bitpay.php:527 +msgid "%s - The payment request has been processed - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:150 +#: includes/common/payment-gateways/_bitpay.php:294 +msgid "Incorrect order invoice, please contact site administrator" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:141 +msgid "We could not verify order invoice details, please try again or contact site administrator for help" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:81 +msgid "Login to Simplify to get your API credentials. Enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:605 +#: includes/common/payment-gateways/paypal-express.php:647 +msgid "Express Checkout is PayPal's premier checkout solution, which streamlines the checkout process for buyers and keeps them on your site after making a purchase. Unlike PayPal Pro, there are no additional fees to use Express Checkout, though you may need to do a free upgrade to a business account. More Info »" +msgstr "" + +#. Plugin URI of the plugin/theme +msgid "https://premium.wpmudev.org/project/e-commerce/" +msgstr "" + +#. Author of the plugin/theme +msgid "WPMU DEV" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:541 +#: includes/admin/class-mp-orders-admin.php:543 +msgid "Tracking Number" +msgstr "" + +#: includes/common/class-mp-order.php:805 +#: includes/common/payment-gateways/stripe.php:336 +#: includes/public/class-mp-checkout.php:402 +msgid "Country" +msgstr "" + +#: includes/common/class-mp-order.php:784 +#: includes/common/payment-gateways/stripe.php:338 +msgid "City" +msgstr "" + +#: includes/common/class-mp-order.php:780 +msgid "Address 2" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:340 +msgid "Address" +msgstr "" + +#: includes/common/class-mp-cart.php:752 includes/common/class-mp-gdpr.php:378 +msgid "Order Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:360 +msgid "Payment Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:347 +msgid "Transaction ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:207 +msgid "The WePay Card Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:186 +#: includes/common/shipping-modules/mp-fedex.php:283 +msgid "Account ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:179 +msgid "Access Token" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:172 +msgid "Client Secret" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:165 +msgid "Client ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:159 +msgid "You must login to WePay to get your API credentials. Make sure to check \"Tokenize credit cards\" option under \"API Keys\" section of your WePay app." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:154 +msgid "When in live mode it is recommended to use SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:148 +msgid "Donation" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:147 +msgid "Event" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:146 +msgid "Personal" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:145 +msgid "Service" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:144 +msgid "Goods" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:141 +msgid "Choose type of payments" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:140 +msgid "Checkout Type" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:134 +msgid "Staging" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:131 +msgid "Choose STAGING if you have registered the app on stage.wepay.com, or PRODUCTION if you registered on www.wepay.com" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:36 +#: includes/common/payment-gateways/wepay.php:299 +msgid "WePay" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:366 +msgid "Rejected - A payment was rejected." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:360 +msgid "Failed - A payment was rejected due to an error." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:342 +msgid "PayWay balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:298 +msgid "Full path of the cacerts.crt file" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:284 +msgid "User Name" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:277 +msgid "Biller Code" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:273 +msgid "Log Directory" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:266 +msgid "Encryption Key" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:60 +msgid "Your PayWay transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:40 +#: includes/common/payment-gateways/_payway.php:41 +msgid "PayWay" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:862 +msgid "You must register this application with PayPal using your business account login to get an Application ID that will work with your API credentials. A bit of a hassle, but worth it! In the near future we will be looking for ways to simplify this process. Register then submit your application while logged in to the developer portal. Note that you do not need an Application ID for testing in sandbox mode. More Information »" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:818 +#: includes/common/payment-gateways/paypal-chained-payments.php:840 +#: includes/common/payment-gateways/paypal-express.php:705 +msgid "You must login to PayPal and create an API signature to get your credentials. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:378 +msgid "Use Payflow payment gateway to accept online payments using your Internet merchant account and processing network. PayPal Payflow Pro is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:595 +msgid "Tags Only" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:594 +msgid "Category Only" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:795 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:593 +msgid "Category & Tags" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:591 +msgid "Relate Products By" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1008 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:455 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:751 +msgid "Right" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1007 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:454 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:749 +msgid "Left" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1009 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:750 +msgid "Center" +msgstr "" + +#: marketpress.php:273 +msgid "Orders from your e-commerce store." +msgstr "" + +#: marketpress.php:231 +msgid "Products for your e-commerce store." +msgstr "" + +#: marketpress.php:222 +msgid "Edit Product" +msgstr "" + +#. Description of the plugin/theme +msgid "The complete WordPress ecommerce plugin - works perfectly with BuddyPress and Multisite too to create a social marketplace, where you can take a percentage! Activate the plugin, adjust your settings then add some products to your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:272 +msgid "Beside" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:271 +msgid "Above" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:268 +msgid "Pin Count" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:261 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:287 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:318 +msgid "All View" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:260 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:286 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:317 +msgid "Single View" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:259 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:285 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:316 +msgid "Off" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:578 +msgid "Related Product Limit" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:681 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1201 +msgid "Applies To" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:685 +msgid "All Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:487 +msgid "The label shown for the tax line item in the cart. Taxes, VAT, GST, etc." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:485 +msgid "Tax Label" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:81 +msgid "Apply" +msgstr "" + +#: includes/admin/class-mp-admin.php:192 +msgid "MarketPress Instructions" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1954 +#: includes/admin/class-mp-products-admin.php:2194 includes/common/data.php:62 +#: includes/common/helpers.php:150 +msgid "Taxes" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1417 +#: includes/common/class-mp-product.php:2900 +msgid "Related Products" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:282 +#: includes/common/shipping-modules/mp-usps.php:316 +msgid "@ Max" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "(3-5 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "Priority Mail Express International Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:92 +msgid "Priority Mail Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:171 +#: includes/common/shipping-modules/mp-pickup.php:247 +msgid "In Store" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:159 +msgid "Pickup Fee" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:141 +msgid "This option allows your customers to indicate that they will pick-up their order at your place of business." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:60 +#: includes/common/shipping-modules/mp-pickup.php:76 +#: includes/common/shipping-modules/mp-pickup.php:176 +msgid "Pickup Instructions" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:24 +#: includes/common/shipping-modules/mp-pickup.php:254 +msgid "Pickup" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping - 0.00" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:256 +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:440 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:309 +msgid "Your Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:301 +msgid "Station" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:300 +msgid "Request Courier" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:299 +msgid "Drop Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:298 +msgid "Business Service Center" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:297 +msgid "Regular Pickup" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:135 +#: includes/common/shipping-modules/mp-fedex.php:264 +msgid "Production" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:207 +msgid "Simplify Commerce by MasterCard" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:104 +msgid "When in live mode, although it is not required, Simplify recommends you have an SSL certificate." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:183 +#: includes/common/payment-gateways/simplify.php:87 +msgid "Public Key" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:175 +#: includes/common/payment-gateways/simplify.php:94 +msgid "Private Key" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:71 +msgid "Simplify helps merchants to accept online payments from Mastercard, Visa, American Express, Discover, JCB, and Diners Club cards. It's that simple. We offer a merchant account and payment gateway in a single, secure package so you can concentrate on what really matters to your business. Only supports USD currently." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:267 +msgid "%1$s" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:151 +msgid "The Simplify Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/simplify.php:18 +msgid "Simplify" +msgstr "" + +#: includes/common/payment-gateways/pin.php:255 +msgid "%1$s Card %2$s" +msgstr "" + +#: includes/common/payment-gateways/pin.php:211 +msgid "The PIN Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:187 +msgid "Selecting a currency other than currency supported by PIN may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/pin.php:164 +msgid "You must login to PIN to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/pin.php:158 +msgid "When in live mode PIN recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/pin.php:45 +#: includes/common/payment-gateways/pin.php:286 +msgid "PIN" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:830 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:534 +#: includes/common/payment-gateways/paypal-express.php:865 +msgid "The payment is pending" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:235 +msgid "The Paymill Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:169 +msgid "You must login to Paymill to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:45 +#: includes/common/payment-gateways/paymill.php:308 +msgid "Paymill" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:90 +msgid "Invalid cardholder" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:89 +msgid "Card is no longer valid or has expired" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:88 +msgid "Please enter a valid Card CVC" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:87 +msgid "Please choose a valid Expiration Date." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:99 +#: includes/common/payment-gateways/skrill.php:100 +msgid "Skrill (Moneybookers)" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:24 +#: includes/common/shipping-modules/mp-weight-rate.php:292 +msgid "Weight Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:303 +msgid "USPS Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:270 +msgid "USPS Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:264 +msgid "USPS Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:145 +msgid "Flat Rate Large" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:140 +msgid "Flat Rate Medium 2" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:135 +msgid "Flat Rate Medium 1" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:130 +msgid "Flat Rate Small" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:118 +msgid "First Class International Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:114 +msgid "Priority Mail International Small Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:112 +msgid "Priority Mail International Medium Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:110 +msgid "Priority Mail International Large Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:108 +msgid "Priority Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:106 +msgid "Express Mail International Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:104 +msgid "Express Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:98 +msgid "Library Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:96 +msgid "Media Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "First-Class Mail Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:90 +msgid "Priority Mail Small Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:88 +msgid "Priority Mail Medium Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +#: includes/common/shipping-modules/mp-usps.php:88 +#: includes/common/shipping-modules/mp-usps.php:90 +#: includes/common/shipping-modules/mp-usps.php:92 +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "(2-4 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +msgid "Priority Mail Large Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "(2-4) days" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "Priority Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "Express Mail Sunday/Holiday Delivery Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:80 +msgid "Express Mail Flat Rate Boxes Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:78 +msgid "Express Mail Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:76 +msgid "Express Mail Sunday/Holiday Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:74 +msgid "Express Mail Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:72 +#: includes/common/shipping-modules/mp-usps.php:74 +#: includes/common/shipping-modules/mp-usps.php:76 +#: includes/common/shipping-modules/mp-usps.php:78 +#: includes/common/shipping-modules/mp-usps.php:80 +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "(1-2 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:72 +msgid "Express Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:67 +#: includes/common/shipping-modules/mp-usps.php:902 +msgid "USPS" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:534 +msgid "UPS (beta)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:166 +msgid "Required if using negotiated rates" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "Worldwide Express Plus" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "(Scheduled)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "Standard" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "(2-5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "Worldwide Expedited" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:54 +msgid "Worldwide Express" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "2nd Day Air AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "(1 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "Next Day Air Early AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "Next Day Air Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "3 Day Select" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:49 +msgid "Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:48 +msgid "2nd Day Air" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "Next Day Air" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:475 +#: includes/common/shipping-modules/mp-ups.php:43 +msgid "UPS" +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:27 +#: includes/common/shipping-modules/mp-table-rate.php:318 +msgid "Table Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:71 +#: includes/common/shipping-modules/mp-table-quantity.php:77 +msgid "Shipping Cost: " +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:70 +#: includes/common/shipping-modules/mp-table-quantity.php:76 +msgid "If quantity is greater than:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:66 +msgid "Each band must be a higher price than the one above it." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:56 +msgid "Number of Bands:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:53 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Each layer must be a higher quantity than the previous." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:51 +msgid "Table Quantity Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:31 +msgid "Table Quantity" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:135 +#: includes/common/shipping-modules/mp-table-rate.php:174 +#: includes/common/shipping-modules/mp-weight-rate.php:189 +msgid "European Union" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:123 +#: includes/common/shipping-modules/mp-table-rate.php:162 +#: includes/common/shipping-modules/mp-weight-rate.php:177 +msgid "United States" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:111 +#: includes/common/shipping-modules/mp-table-rate.php:151 +#: includes/common/shipping-modules/mp-weight-rate.php:166 +msgid "In Country" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:146 +#: includes/common/shipping-modules/mp-table-rate.php:186 +#: includes/common/shipping-modules/mp-weight-rate.php:201 +msgid "International" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:101 +#: includes/common/shipping-modules/mp-table-rate.php:141 +#: includes/common/shipping-modules/mp-weight-rate.php:156 +msgid "Canada" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:92 +#: includes/common/shipping-modules/mp-table-rate.php:132 +#: includes/common/shipping-modules/mp-weight-rate.php:147 +msgid "Hawaii and Alaska" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:83 +#: includes/common/shipping-modules/mp-table-rate.php:123 +#: includes/common/shipping-modules/mp-weight-rate.php:138 +msgid "Lower 48 States" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:64 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping." +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:25 +#: includes/common/shipping-modules/mp-flat-rate.php:223 +msgid "Flat Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:761 +msgid "FedEx (beta)" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Centimeters" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Inches" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1676 +#: includes/admin/class-mp-setup-wizard.php:547 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:166 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +msgid "Kilograms" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:103 +msgid " %1$s - %2$s" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:358 +msgid "Max Weight per Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:356 +msgid "Box Dimensions" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:354 +msgid "Box Name" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:344 +msgid "Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:343 +msgid "For each box defined enter the maximum weight it can contain." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:341 +msgid "Enter your standard box sizes as LengthxWidthxHeight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:386 +#: includes/common/shipping-modules/mp-ups.php:193 +#: includes/common/shipping-modules/mp-usps.php:234 +#: includes/common/shipping-modules/mp-usps.php:338 +msgid "Standard Boxes and Weight Limits" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:328 +msgid "Handling Charge per Interntional Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:294 +msgid "Handling Charge per Domestic Shipment " +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:388 +#: includes/common/shipping-modules/mp-ups.php:196 +#: includes/common/shipping-modules/mp-usps.php:237 +msgid "Add Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "(Next Day)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +msgid "Europe First International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:62 +msgid "International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:61 +#: includes/common/shipping-modules/mp-fedex.php:62 +#: includes/common/shipping-modules/mp-ups.php:54 +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "(1-3 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:61 +msgid "International First" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "(5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "International Economy" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "(2-7 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "Smart Post" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:55 +#: includes/common/shipping-modules/mp-ups.php:49 +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "(1-5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:55 +msgid "Ground Home Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "(1-7 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "Fedex Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:53 +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "(3 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:53 +msgid "Fedex Express Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +#: includes/common/shipping-modules/mp-ups.php:48 +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "(2 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +msgid "Fedex 2 Day" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "(2 Days am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "Fedex 2 Day AM" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "(1 Day)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +msgid "Standard Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "(1 Day am )" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "Priority Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "(1 Day am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "First Overnight" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:476 +#: includes/common/shipping-modules/mp-fedex.php:31 +msgid "FedEx" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:270 +#: includes/common/payment-gateways/simplify.php:179 +#: includes/common/payment-gateways/stripe.php:365 +msgid "%1$s Card ending in %2$s - Expires %3$s" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:259 +#: includes/common/payment-gateways/pin.php:238 +#: includes/common/payment-gateways/simplify.php:171 +msgid "%s Store Purchase - Order ID: %s, Email: %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:266 +msgid "You must login to Stripe to get your API credentials. You can enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:261 +msgid "When in live mode Stripe recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:311 +msgid "The Stripe Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:263 +#: includes/common/payment-gateways/paymill.php:122 +#: includes/common/payment-gateways/stripe.php:222 +msgid "Card Number" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:86 +msgid "Please enter a valid Credit Card Number." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:45 +#: includes/common/payment-gateways/stripe.php:433 +msgid "Stripe" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:750 +msgid "Sets the background color for the payment page. By default, the color is white." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:745 +msgid "Sets the background color for the header of the payment page. By default, the color is white." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:740 +msgid "Sets the border color around the header of the payment page. The border is a 2-pixel perimeter around the header space, which is 750 pixels wide by 90 pixels high. By default, the color is black." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:735 +msgid "URL for an image you want to appear at the top left of the payment page. The image has a maximum size of 750 pixels wide by 90 pixels high. PayPal recommends that you provide an image that is stored on a secure (https) server. If you do not specify an image, the business name is displayed." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:857 +#: includes/common/payment-gateways/paypal-express.php:1131 +msgid "The payment is pending because it is part of an order that has been authorized but not settled." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:853 +#: includes/common/payment-gateways/paypal-express.php:1127 +msgid "The payment is pending because it has been authorized but not settled. You must capture the funds first." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:847 +#: includes/common/payment-gateways/paypal-express.php:1120 +msgid "You denied the payment when it was marked as pending." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:837 +#: includes/common/payment-gateways/paypal-express.php:1108 +msgid "A reversal has occurred on this transaction due to an unknown reason." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:836 +#: includes/common/payment-gateways/paypal-express.php:1107 +msgid "A reversal has occurred on this transaction because you have given the customer a refund." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:835 +#: includes/common/payment-gateways/paypal-express.php:1106 +msgid "A reversal has occurred on this transaction due to a complaint about the transaction from your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:834 +#: includes/common/payment-gateways/paypal-express.php:1105 +msgid "A reversal has occurred on this transaction due to your customer triggering a money-back guarantee." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:833 +#: includes/common/payment-gateways/paypal-express.php:1104 +msgid "A reversal has occurred on this transaction due to a chargeback by your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:1101 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer:" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:826 +#: includes/common/payment-gateways/paypal-express.php:1097 +msgid "A payment has been accepted." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:818 +#: includes/common/payment-gateways/paypal-express.php:1087 +msgid "The transaction has not terminated, e.g. an authorization may be awaiting completion." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:531 +#: includes/common/payment-gateways/paypal-express.php:810 +#: includes/common/payment-gateways/paypal-express.php:1077 +msgid "The payment has failed. This happens only if the payment was made from your customer's bank account." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:806 +#: includes/common/payment-gateways/paypal-express.php:1072 +msgid "An authorization for this transaction has been voided." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:802 +#: includes/common/payment-gateways/paypal-express.php:1067 +msgid "The authorization period for this payment has been reached." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:798 +#: includes/common/payment-gateways/paypal-express.php:1062 +msgid "A reversal has been canceled; for example, when you win a dispute and the funds for the reversal have been returned to you." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:499 +#: includes/common/payment-gateways/paypal-express.php:1163 +msgid "PayPal Express Checkout" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:798 +msgid "Gateway Settings Page Message" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:725 +msgid "Signature" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:506 +#: includes/common/payment-gateways/eway31.php:533 +#: includes/common/shipping-modules/mp-fedex.php:276 +msgid "API Password" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:773 +msgid "Enter a percentage of all store sales to collect as a fee. Decimals allowed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:757 +msgid "Using PayPal Chained Payments allows you as the multisite network owner to collect a predefined fee or percentage of all sales on network MarketPress stores! This is invisible to the customers who purchase items in a store, and all PayPal fees will be charged to the store owner. To use this option you must create API credentials, and you should make all other gateways unavailable or limited above." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:338 +msgid "Please be aware that we will deduct a ?% fee from the total of each transaction in addition to any fees PayPal may charge you. If for any reason you need to refund a customer for an order, please contact us with a screenshot of the refund receipt in your PayPal history as well as the Transaction ID of our fee deduction so we can issue you a refund. Thank you!" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:698 +#: includes/common/payment-gateways/paypal-express.php:149 +msgid "There was a problem connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:470 +#: includes/common/payment-gateways/paypal-express.php:1053 +msgid "There was a problem verifying the IPN string with PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:310 +msgid "There was a problem connecting to PayPal to check the status of your purchase. Please check the status of your order here »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:539 +#: includes/common/payment-gateways/paypal-chained-payments.php:254 +#: includes/common/payment-gateways/paypal-express.php:1139 +msgid "The payment is pending." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:251 +#: includes/common/payment-gateways/paypal-chained-payments.php:531 +#: includes/common/payment-gateways/paypal-express.php:862 +#: includes/common/payment-gateways/paypal-express.php:1136 +msgid "The payment is pending for an unknown reason. For more information, contact PayPal customer service." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:250 +#: includes/common/payment-gateways/paypal-chained-payments.php:530 +#: includes/common/payment-gateways/paypal-express.php:861 +#: includes/common/payment-gateways/paypal-express.php:1135 +msgid "The payment is pending because you are not yet verified. You must verify your account before you can accept this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:249 +#: includes/common/payment-gateways/paypal-chained-payments.php:529 +#: includes/common/payment-gateways/paypal-express.php:860 +#: includes/common/payment-gateways/paypal-express.php:1134 +msgid "The payment is pending because it was made via credit card and you must upgrade your account to Business or Premier status in order to receive the funds. It can also mean that you have reached the monthly limit for transactions on your account." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:248 +#: includes/common/payment-gateways/paypal-chained-payments.php:528 +#: includes/common/payment-gateways/paypal-express.php:859 +#: includes/common/payment-gateways/paypal-express.php:1133 +msgid "The payment is pending because it was made to an email address that is not yet registered or confirmed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:247 +#: includes/common/payment-gateways/paypal-chained-payments.php:527 +#: includes/common/payment-gateways/paypal-express.php:858 +#: includes/common/payment-gateways/paypal-express.php:1132 +msgid "The payment is pending while it is being reviewed by PayPal for risk." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:246 +#: includes/common/payment-gateways/paypal-chained-payments.php:526 +#: includes/common/payment-gateways/paypal-express.php:856 +#: includes/common/payment-gateways/paypal-express.php:1130 +msgid "You do not have a balance in the currency sent, and you do not have your Payment Receiving Preferences set to automatically convert and accept this payment. You must manually accept or deny this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:245 +#: includes/common/payment-gateways/paypal-chained-payments.php:525 +#: includes/common/payment-gateways/paypal-express.php:855 +#: includes/common/payment-gateways/paypal-express.php:1129 +msgid "The payment is pending because you hold a non-U.S. account and do not have a withdrawal mechanism. You must manually accept or deny this payment from your Account Overview." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:244 +#: includes/common/payment-gateways/paypal-chained-payments.php:524 +#: includes/common/payment-gateways/paypal-express.php:854 +#: includes/common/payment-gateways/paypal-express.php:1128 +msgid "The payment is pending because it was made by an eCheck that has not yet cleared." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:243 +#: includes/common/payment-gateways/paypal-chained-payments.php:523 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:236 +#: includes/common/payment-gateways/paypal-chained-payments.php:516 +msgid "The transaction was rejected by the receiver (you)." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:510 +#: includes/common/payment-gateways/paypal-express.php:843 +#: includes/common/payment-gateways/paypal-express.php:1115 +msgid "You refunded the payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:224 +#: includes/common/payment-gateways/paypal-chained-payments.php:504 +msgid "The transaction is in progress." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:212 +#: includes/common/payment-gateways/paypal-chained-payments.php:491 +#: includes/common/payment-gateways/paypal-express.php:814 +#: includes/common/payment-gateways/paypal-express.php:1082 +msgid "The payment has been partially refunded." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:202 +#: includes/common/payment-gateways/paypal-chained-payments.php:481 +msgid "PayPal balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:177 +msgid "There was a problem connecting to PayPal to setup your purchase. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:122 +msgid "Your PayPal transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:50 +#: includes/common/payment-gateways/paypal-chained-payments.php:53 +#: includes/common/payment-gateways/paypal-chained-payments.php:732 +#: includes/common/payment-gateways/paypal-express.php:500 +#: includes/common/payment-gateways/paypal-express.php:938 +msgid "PayPal" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:48 +#: includes/common/payment-gateways/paypal-chained-payments.php:730 +#: includes/common/payment-gateways/paypal-chained-payments.php:756 +#: includes/common/payment-gateways/paypal-chained-payments.php:873 +msgid "PayPal Chained Payments" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:59 +#: includes/common/payment-gateways/paypal-payflow.php:467 +msgid "PayPal Payflow Pro" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:378 +msgid "Chargeback - A payment was reversed due to a chargeback. The funds have been removed from your account balance and returned to the buyer." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:372 +msgid "Failed - The Credit Card or Direct Debit transaction was declined." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:354 +#: includes/common/payment-gateways/skrill.php:366 +msgid "Cancelled - The payment was cancelled manually by the sender in their online account history or was auto-cancelled after 14 days pending." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:360 +msgid "Pending - The payment is pending. It can take 2-3 days for bank transfers to complete." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:349 +#: includes/common/payment-gateways/skrill.php:354 +msgid "Processed - The payment has been completed, and the funds have been added successfully to your Moneybookers account balance." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:189 +msgid "Shown to the customer on the confirmation screen - the end step of the process - a note, confirmation number, or any other message. Line breaks <br> may be used for longer messages." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:188 +msgid "Confirmation Note (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:183 +msgid "The URL of the logo which you would like to appear at the top of the payment form. The logo must be accessible via HTTPS otherwise it will not be shown. For best integration results we recommend that you use a logo with dimensions up to 200px in width and 50px in height." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:182 +msgid "Logo Image (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:177 +msgid "The name of this store, which will be shown on the gateway. If no value is submitted, the account email will be shown as the recipient of the payment." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:176 +msgid "Merchant Name (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:165 +msgid "Language" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:368 +#: includes/common/payment-gateways/authorizenet-aim.php:262 +#: includes/common/payment-gateways/eway.php:363 +#: includes/common/payment-gateways/eway31.php:471 +#: includes/common/payment-gateways/mollie.php:91 +#: includes/common/payment-gateways/paymill.php:193 +#: includes/common/payment-gateways/paypal-chained-payments.php:356 +#: includes/common/payment-gateways/paypal-express.php:688 +#: includes/common/payment-gateways/paypal-payflow.php:432 +#: includes/common/payment-gateways/pin.php:186 +#: includes/common/payment-gateways/skrill.php:152 +#: includes/common/payment-gateways/stripe.php:288 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:104 +msgid "Currency" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:359 +#: includes/common/payment-gateways/skrill.php:143 +msgid "Secret Word" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:261 +msgid "Order ID:" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:234 +msgid "Complete Checkout" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:204 +msgid "Your Moneybookers transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:155 +msgid "This is the email text to send to those who have made manual payment checkouts. You should include your manual payment instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:257 +#: includes/common/payment-gateways/manual-payments.php:128 +msgid "Record payments manually, such as by Cash, Check, or EFT." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:71 +msgid "Manual/Invoice" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:648 +#: includes/common/payment-gateways/manual-payments.php:35 +#: includes/common/payment-gateways/manual-payments.php:36 +msgid "Manual Payment" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:34 +#: includes/common/payment-gateways/manual-payments.php:163 +msgid "Manual Payments" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:288 +msgid "iDEAL Simulator (for testing)" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:287 +msgid "ABN Amro Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:286 +msgid "Friesland Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:285 +msgid "Rabobank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:284 +msgid "ING Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:279 +msgid "Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:270 +msgid "To make it easier to pay for online products and services, the Dutch banking community has developed the iDEAL online payment method. iDEAL allows online payments to be made using online banking in EUR only." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:247 +#: includes/common/payment-gateways/_payway.php:199 +#: includes/common/payment-gateways/manual-payments.php:68 +msgid "Invoiced" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1016 +msgid "Coupon" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:77 +#: includes/common/payment-gateways/_ideal.php:250 +#: includes/common/payment-gateways/_payway.php:202 +msgid "iDEAL" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:76 +msgid "iDEAL (beta)" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:327 +msgid "Merchant Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:293 +#: includes/common/payment-gateways/_payway.php:302 +#: includes/common/payment-gateways/payfast.php:324 +msgid "Merchant ID" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:462 +msgid "eWay Rapid 3.0 Payments lets merchants recieve credit card payments through eWay without need for users to leave the shop. Note this gateway requires a valid SSL certificate configured for this site." +msgstr "" + +#: includes/common/payment-gateways/eway.php:452 +msgid "There was a problem connecting to eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/eway.php:432 +#: includes/common/payment-gateways/eway.php:437 +msgid "The url of the image can be hosted on your website and pass the secure https:// path of the image to be displayed at the top of the website. This is the second image block on the webpage and is restricted to 960px X 65px. A default secure image is used if none is supplied." +msgstr "" + +#: includes/common/payment-gateways/eway.php:431 +#: includes/common/payment-gateways/eway.php:436 +msgid "Company Logo (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:427 +msgid "The page footer text can be customised and populated below the customer's order details. Useful for contact information." +msgstr "" + +#: includes/common/payment-gateways/eway.php:426 +msgid "Page Footer (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:421 +msgid "Page Description (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:417 +#: includes/common/payment-gateways/eway.php:422 +msgid "This value is used to populate the browsers title bar at the top of the screen." +msgstr "" + +#: includes/common/payment-gateways/eway.php:416 +msgid "Page Title (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:412 +msgid "This will be displayed as the company the customer is purchasing from, including this is highly recommended." +msgstr "" + +#: includes/common/payment-gateways/eway.php:411 +msgid "Company Name" +msgstr "" + +#: includes/common/payment-gateways/eway.php:394 +msgid "Customer ID" +msgstr "" + +#: includes/common/payment-gateways/eway.php:381 +#: includes/common/payment-gateways/eway31.php:488 +msgid "Live API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway.php:371 +#: includes/common/payment-gateways/eway31.php:479 +msgid "Gateway Mode" +msgstr "" + +#: includes/common/payment-gateways/eway.php:354 +msgid "The Hosted Page is a webpage hosted on eWAY's side eliminating the need for merchants to capture, transmit or store credit card numbers. At the checkout time the merchant automatically redirects the customer to the Hosted Page where they would enter their details and have the transaction processed. Upon completion of the transaction the customer is redirected back to the MarketPress checkout confirmation page." +msgstr "" + +#: includes/common/payment-gateways/eway.php:314 +msgid "There was a problem with your credit card information: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:300 +msgid "Paid - The card has been processed - %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:253 +msgid "There was a problem setting up the transaction with eWay: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:245 +#: includes/common/payment-gateways/eway.php:289 +msgid "There was a problem parsing the response from eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:159 +#: includes/common/payment-gateways/eway.php:189 +#: includes/common/payment-gateways/paypal-chained-payments.php:634 +#: includes/common/payment-gateways/paypal-express.php:322 +#: includes/common/payment-gateways/paypal-express.php:473 +msgid "%s Store Purchase - Order ID: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:147 +#: includes/common/payment-gateways/eway.php:462 +msgid "eWay Shared Payments" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:214 +msgid "This is the email text to send to those who have made CubePoints checkouts. You should include your CubePoints instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:212 +#: includes/common/payment-gateways/free_orders.php:188 +#: includes/common/payment-gateways/manual-payments.php:154 +msgid "Order Confirmation Email" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:207 +#: includes/common/payment-gateways/manual-payments.php:149 +msgid "Confirmation User Instructions" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:202 +#: includes/common/payment-gateways/manual-payments.php:144 +msgid "User Instructions" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:198 +#: includes/common/payment-gateways/free_orders.php:170 +#: includes/common/payment-gateways/manual-payments.php:139 +msgid "Enter a public name for this payment method that is displayed to users - No HTML" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:532 +#: includes/common/payment-gateways/_cubepoints.php:196 +#: includes/common/payment-gateways/free_orders.php:169 +#: includes/common/payment-gateways/manual-payments.php:138 +msgid "Method Name" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:187 +msgid "Accept CubePoints as payment(requires the CubePoints plugin)." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:140 +msgid "Sorry, but you do not appear to have enough points to complete this purchase!" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:124 +msgid "%s Store Purchase" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:79 +#: includes/common/payment-gateways/_cubepoints.php:171 +msgid "Your current points: " +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:133 +#: includes/common/payment-gateways/_cubepoints.php:197 +msgid "CubePoints" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:344 +msgid "Authorize.net AIM Checkout" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:331 +msgid "Custom API URL" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:332 +msgid "Many other gateways have Authorize.net API emulators. To use one of these gateways input their API post url here." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:322 +msgid "Request a delimited response from the payment gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:316 +msgid "Security: MD5 Hash" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:317 +msgid "The payment gateway generated MD5 hash value that can be used to authenticate the transaction response. Not needed because responses are returned using an SSL connection." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:306 +msgid "Customer Receipt Email Footer" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:296 +msgid "Customer Receipt Email Header" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:297 +#: includes/common/payment-gateways/paypal-payflow.php:446 +msgid "This text will appear as the header of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:282 +msgid "Encapsulation Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:283 +msgid "Authorize.net default is blank. Otherwise, get this from your credit card processor. If the transactions are going through, but getting strange responses, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:273 +msgid "Optional settings to control advanced options" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:224 +#: includes/common/payment-gateways/authorizenet-aim.php:272 +msgid "Advanced Settings" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:253 +msgid "Transaction Key" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:246 +msgid "Login ID" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:396 +msgid "Gateway Credentials" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:221 +msgid "Authorize.net AIM is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway. USD is the only currency supported by this gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:205 +msgid "There was a problem finalizing your purchase. %s Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:519 +#: includes/common/payment-gateways/paypal-chained-payments.php:218 +#: includes/common/payment-gateways/paypal-chained-payments.php:498 +#: includes/common/payment-gateways/paypal-express.php:822 +#: includes/common/payment-gateways/paypal-express.php:1092 +msgid "The payment has been completed, and the funds have been added successfully to your account balance." +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:233 +msgid "Please enter a valid credit card security code" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:224 +#: includes/public/class-mp-checkout.php:867 +msgid "Please enter a valid credit card number" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:221 +msgid "Please enter your credit card number" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:217 +msgid "Please enter your credit card security code" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:213 +msgid "Please select your credit card expiration date." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:299 +#: includes/common/payment-gateways/authorizenet-aim.php:50 +#: includes/common/payment-gateways/eway.php:148 +#: includes/common/payment-gateways/eway.php:298 +#: includes/common/payment-gateways/eway31.php:267 +#: includes/common/payment-gateways/paymill.php:46 +#: includes/common/payment-gateways/paypal-express.php:972 +#: includes/common/payment-gateways/paypal-payflow.php:60 +#: includes/common/payment-gateways/pin.php:46 +#: includes/common/payment-gateways/simplify.php:19 +#: includes/common/payment-gateways/stripe.php:46 +#: includes/common/payment-gateways/wepay.php:37 +msgid "Credit Card" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:49 +msgid "Authorize.net Checkout" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:156 +#: includes/common/payment-gateways/stripe.php:293 +msgid "Selecting a currency other than that used for your store may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:352 +msgid "Seller ID" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:340 +#: includes/common/payment-gateways/_ideal.php:311 +#: includes/common/payment-gateways/authorizenet-aim.php:234 +#: includes/common/payment-gateways/eway.php:376 +#: includes/common/payment-gateways/payfast.php:315 +#: includes/common/payment-gateways/paypal-chained-payments.php:368 +#: includes/common/payment-gateways/paypal-express.php:699 +#: includes/common/payment-gateways/paypal-payflow.php:391 +msgid "Live" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:339 +#: includes/common/payment-gateways/authorizenet-aim.php:233 +#: includes/common/payment-gateways/eway.php:375 +#: includes/common/payment-gateways/paypal-chained-payments.php:367 +#: includes/common/payment-gateways/paypal-express.php:698 +#: includes/common/payment-gateways/paypal-payflow.php:390 +#: includes/common/shipping-modules/mp-fedex.php:263 +msgid "Sandbox" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:336 +#: includes/common/payment-gateways/_ideal.php:307 +#: includes/common/payment-gateways/authorizenet-aim.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:365 +#: includes/common/payment-gateways/paypal-express.php:695 +#: includes/common/payment-gateways/paypal-payflow.php:387 +#: includes/common/payment-gateways/wepay.php:130 +#: includes/common/shipping-modules/mp-fedex.php:260 +msgid "Mode" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:288 +#: includes/common/payment-gateways/mijireh.php:242 +#: includes/common/payment-gateways/mollie.php:212 +msgid "The order has been received" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:74 +#: includes/common/payment-gateways/2checkout.php:75 +#: includes/common/payment-gateways/2checkout.php:435 +msgid "2Checkout" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:306 +msgid "Confirm" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:218 +#: includes/common/class-mp-cart.php:974 includes/common/class-mp-cart.php:1354 +#: includes/common/template-functions.php:918 +msgid "Checkout" +msgstr "" + +#: includes/common/template-functions.php:207 +msgid "Check Order Status" +msgstr "" + +#: includes/common/template-functions.php:235 +msgid "View Products" +msgstr "" + +#: includes/common/template-functions.php:263 +msgid "Visit Store" +msgstr "" + +#: includes/common/template-functions.php:2912 +#: includes/multisite/template-functions.php:448 +msgid "Order By" +msgstr "" + +#: includes/common/template-functions.php:2887 +#: includes/multisite/template-functions.php:405 +msgid "Price (High to Low)" +msgstr "" + +#: includes/common/template-functions.php:2886 +#: includes/multisite/template-functions.php:404 +msgid "Price (Low to High)" +msgstr "" + +#: includes/common/template-functions.php:2881 +#: includes/multisite/template-functions.php:399 +msgid "Default" +msgstr "" + +#: includes/common/template-functions.php:2858 +msgid "Show All" +msgstr "" + +#: includes/common/class-mp-product.php:2048 +msgid "View Larger Image »" +msgstr "" + +#: includes/common/class-mp-product.php:979 +msgid "Out of Stock" +msgstr "" + +#: includes/common/template-functions.php:148 +msgid "Price: " +msgstr "" + +#: includes/multisite/template-functions.php:833 +msgid "No Tags" +msgstr "" + +#: includes/common/template-functions.php:3162 +msgid "Uncategorized" +msgstr "" + +#: includes/common/class-mp-cart.php:569 includes/common/class-mp-order.php:604 +#: includes/common/helpers.php:115 +msgid "Download" +msgstr "" + +#: includes/common/class-mp-cart.php:1353 +msgid "Empty Cart" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:291 +#: includes/common/payment-gateways/paypal-express.php:718 +#: includes/common/payment-gateways/paypal-payflow.php:423 +#: includes/common/shipping-modules/mp-ups.php:158 +#: includes/public/class-mp-checkout.php:1254 +#: includes/public/class-mp-checkout.php:1383 +msgid "Password" +msgstr "" + +#: includes/common/payment-gateways/eway.php:387 +#: includes/common/payment-gateways/paypal-express.php:711 +#: includes/common/shipping-modules/mp-usps.php:185 +#: includes/public/class-mp-checkout.php:1249 +msgid "Username" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:437 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:790 +msgid "Have a coupon code?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:321 +#: includes/admin/class-mp-orders-admin.php:526 +#: includes/common/class-mp-cart.php:592 +msgid "Remove" +msgstr "" + +#: includes/admin/class-mp-ajax.php:316 +msgid "Quantity:" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2140 +#: includes/admin/class-mp-products-admin.php:2387 +#: includes/common/shipping-modules/class-mp-shipping-api.php:507 +msgid "Extra Shipping Cost" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:403 +msgid "Choose a Shipping Method:" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1691 +#: includes/admin/class-mp-products-admin.php:2131 +#: includes/admin/class-mp-products-admin.php:2378 +#: includes/common/shipping-modules/class-mp-shipping-api.php:228 +msgid "Ounces" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1684 +#: includes/admin/class-mp-products-admin.php:2123 +#: includes/admin/class-mp-products-admin.php:2369 +#: includes/admin/class-mp-setup-wizard.php:546 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:165 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +#: includes/common/shipping-modules/class-mp-shipping-api.php:227 +msgid "Pounds" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:226 +msgid "Product Weight:" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:214 +msgid "Weight (Kilograms)" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:82 +msgid "Number of Categories:" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:72 +msgid "Product Count" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:20 +#: includes/admin/class-mp-product-attributes-admin.php:129 +#: includes/admin/class-mp-product-attributes-list-table.php:22 +#: includes/admin/class-mp-products-admin.php:2216 +#: includes/admin/class-mp-shortcode-builder.php:628 +#: includes/admin/class-mp-shortcode-builder.php:1415 +#: includes/admin/widgets/ms-global-categories.php:70 +#: includes/common/shipping-modules/mp-fedex.php:395 +#: includes/common/shipping-modules/mp-ups.php:202 +#: includes/common/shipping-modules/mp-usps.php:243 +#: includes/public/class-mp-checkout.php:314 +msgid "Name" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:67 +msgid "Order Categories By:" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:24 +#: includes/admin/widgets/ms-global-categories.php:50 +msgid "Global Product Categories" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:15 +msgid "Global Product Category List" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:13 +msgid "Displays a network-wide HTML list of product categories from network MarketPress stores." +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:24 +#: includes/admin/widgets/ms-global-tag-cloud.php:45 +msgid "Global Product Tags" +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:15 +msgid "Global Product Tag Cloud" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:947 +#: includes/admin/widgets/ms-global-product-list.php:173 +msgid "Excerpt" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:169 +msgid "Content To Show:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:140 +msgid "Limit To Product Tag:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:132 +msgid "Limit To Product Category:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:72 +msgid "Global Products" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:16 +msgid "Global Product List" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:14 +msgid "Shows a customizable global list of products from network MarketPress stores." +msgstr "" + +#: includes/common/class-mp-product.php:974 +#: includes/multisite/template-functions.php:731 +msgid "Buy Now »" +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:13 +msgid "Displays global most used product tags in cloud format from network MarketPress stores." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:438 +msgid "Theme Permissions" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:402 +#: includes/multisite/class-mp-admin-multisite.php:448 +msgid "No Access" +msgstr "" + +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:120 +msgid "Pro Site Level" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:401 +#: includes/multisite/class-mp-admin-multisite.php:447 +msgid "All Can Use" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:390 +msgid "Gateway Permissions" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:375 +msgid "Select a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:350 +msgid "Global Gateway" +msgstr "" + +#. Plugin Name of the plugin/theme +msgid "MarketPress" +msgstr "" + +#: includes/admin/widgets/product-tag-cloud.php:7 +msgid "Your most used product tags in cloud format from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/categories.php:79 +msgid "Show hierarchy" +msgstr "" + +#: includes/admin/widgets/categories.php:76 +#: includes/admin/widgets/ms-global-categories.php:92 +msgid "Show product counts" +msgstr "" + +#: includes/admin/widgets/categories.php:73 +msgid "Show as dropdown" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:710 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:736 +#: includes/admin/widgets/categories.php:30 +msgid "Select Category" +msgstr "" + +#: includes/admin/widgets/categories.php:7 +msgid "A list or dropdown of product categories from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/product-list.php:250 +msgid "Show Buy Button" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:183 +#: includes/admin/widgets/product-list.php:244 +msgid "Show Price" +msgstr "" + +#: includes/admin/widgets/product-list.php:241 +msgid "Show Excerpt" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:155 +#: includes/admin/widgets/product-list.php:238 +msgid "Thumbnail Size:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:153 +#: includes/admin/widgets/product-list.php:237 +msgid "Show Thumbnail" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:147 +#: includes/admin/widgets/product-list.php:233 +msgid "Display Settings" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:136 +#: includes/admin/widgets/ms-global-product-list.php:144 +#: includes/admin/widgets/product-list.php:230 +msgid "Enter the Slug" +msgstr "" + +#: includes/admin/widgets/product-list.php:228 +#: includes/common/template-functions.php:894 +msgid "Tag" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:686 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:712 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:739 +#: includes/admin/class-mp-shortcode-builder.php:796 +#: includes/admin/widgets/product-list.php:227 +#: includes/common/template-functions.php:886 +#: includes/common/template-functions.php:2907 +msgid "Category" +msgstr "" + +#: includes/admin/widgets/product-list.php:226 +msgid "No Filter" +msgstr "" + +#: includes/admin/widgets/product-list.php:224 +msgid "Taxonomy Filter:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:108 +#: includes/admin/widgets/product-list.php:209 +msgid "Order Products By:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:101 +#: includes/admin/widgets/product-list.php:206 +msgid "Number of Products:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:98 +#: includes/admin/widgets/product-list.php:204 +msgid "List Settings" +msgstr "" + +#: includes/admin/widgets/product-list.php:177 +msgid "Our Products" +msgstr "" + +#: includes/admin/widgets/product-list.php:144 +#: includes/common/template-functions.php:2070 +#: includes/common/template-functions.php:2347 +#: includes/multisite/template-functions.php:303 +#: includes/multisite/template-functions.php:623 +msgid "No Products" +msgstr "" + +#: includes/admin/widgets/product-list.php:8 +msgid "Product List" +msgstr "" + +#: includes/admin/widgets/product-list.php:7 +msgid "Shows a customizable list of products from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/cart.php:75 includes/admin/widgets/categories.php:82 +#: includes/admin/widgets/product-list.php:253 +#: includes/admin/widgets/product-tag-cloud.php:57 +msgid "Only show on store pages" +msgstr "" + +#: includes/admin/widgets/cart.php:65 +#: includes/admin/widgets/ms-global-product-list.php:92 +#: includes/admin/widgets/product-list.php:200 +msgid "Custom Text:" +msgstr "" + +#: includes/admin/widgets/cart.php:64 includes/admin/widgets/categories.php:69 +#: includes/admin/widgets/ms-global-categories.php:59 +#: includes/admin/widgets/ms-global-product-list.php:87 +#: includes/admin/widgets/ms-global-tag-cloud.php:49 +#: includes/admin/widgets/product-list.php:199 +#: includes/admin/widgets/product-tag-cloud.php:49 +msgid "Title:" +msgstr "" + +#: includes/admin/widgets/cart.php:7 +msgid "Shows dynamic shopping cart contents along with a checkout button for your MarketPress store." +msgstr "" + +#: includes/admin/widgets/product-tag-cloud.php:8 +msgid "Product Tag Cloud" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:539 +#: includes/admin/class-mp-setup-wizard.php:575 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:163 +msgid "Measurement System" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:616 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:149 +msgid "Select Shipping Options" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:596 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:129 +msgid "Calculated Options" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:582 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:115 +msgid "No Shipping" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:110 +msgid "EU" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:109 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:93 +msgid "All" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:92 +msgid "Select:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:185 +msgid "Store Pages" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:223 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:256 +msgid "Order Shipped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:60 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:95 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:128 +#: marketpress.php:266 +msgid "New Order" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:314 +msgid "Email Notifications" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:59 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:200 +msgid "Products List" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:58 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:190 +msgid "Store Base" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:108 +#: includes/admin/class-mp-shortcode-builder.php:635 +#: includes/admin/class-mp-shortcode-builder.php:708 +#: includes/admin/class-mp-shortcode-builder.php:875 +#: includes/admin/class-mp-shortcode-builder.php:1319 +#: includes/admin/class-mp-shortcode-builder.php:1422 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:526 +#: includes/admin/widgets/ms-global-categories.php:78 +#: includes/admin/widgets/ms-global-product-list.php:127 +#: includes/admin/widgets/product-list.php:221 +msgid "Ascending" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:109 +#: includes/admin/class-mp-shortcode-builder.php:636 +#: includes/admin/class-mp-shortcode-builder.php:709 +#: includes/admin/class-mp-shortcode-builder.php:876 +#: includes/admin/class-mp-shortcode-builder.php:1320 +#: includes/admin/class-mp-shortcode-builder.php:1423 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:525 +#: includes/admin/widgets/ms-global-categories.php:75 +#: includes/admin/widgets/ms-global-product-list.php:124 +#: includes/admin/widgets/product-list.php:220 +msgid "Descending" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:637 +#: includes/admin/class-mp-shortcode-builder.php:695 +#: includes/admin/class-mp-shortcode-builder.php:862 +#: includes/admin/class-mp-shortcode-builder.php:1306 +#: includes/admin/class-mp-shortcode-builder.php:1424 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:518 +#: includes/admin/widgets/ms-global-product-list.php:121 +#: includes/admin/widgets/product-list.php:218 +msgid "Random" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:694 +#: includes/admin/class-mp-shortcode-builder.php:861 +#: includes/admin/class-mp-shortcode-builder.php:1305 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:517 +#: includes/admin/widgets/ms-global-product-list.php:119 +#: includes/admin/widgets/product-list.php:216 +msgid "Product Price" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:693 +#: includes/admin/class-mp-shortcode-builder.php:860 +#: includes/admin/class-mp-shortcode-builder.php:1304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:516 +#: includes/admin/widgets/ms-global-product-list.php:117 +#: includes/admin/widgets/product-list.php:215 +msgid "Number of Sales" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:692 +#: includes/admin/class-mp-shortcode-builder.php:859 +#: includes/admin/class-mp-shortcode-builder.php:1303 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:515 +#: includes/admin/widgets/product-list.php:214 +msgid "Product Author" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:691 +#: includes/admin/class-mp-shortcode-builder.php:858 +#: includes/admin/class-mp-shortcode-builder.php:1302 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:514 +#: includes/admin/widgets/product-list.php:213 +msgid "Product ID" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:690 +#: includes/admin/class-mp-shortcode-builder.php:857 +#: includes/admin/class-mp-shortcode-builder.php:1301 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:513 +#: includes/admin/widgets/ms-global-product-list.php:113 +#: includes/admin/widgets/product-list.php:212 +msgid "Publish Date" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:430 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:726 +msgid "Width" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:439 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:735 +msgid "Height" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:88 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:402 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:698 +msgid "Custom" +msgstr "" + +#: includes/common/class-mp-product.php:179 +#: includes/common/class-mp-product.php:992 +#: includes/common/class-mp-product.php:1000 +#: includes/multisite/template-functions.php:579 +msgid "Buy Now" +msgstr "" + +#: includes/common/class-mp-product.php:175 +#: includes/common/class-mp-product.php:990 +#: includes/common/class-mp-product.php:998 +msgid "Add To Cart" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:807 +msgid "Store Style" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1021 +msgid "Edit Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupon.php:580 +#: includes/admin/class-mp-ajax.php:238 +#: includes/admin/class-mp-products-admin.php:1532 +msgid "Unlimited" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1198 +msgid "Remaining Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1197 +msgid "Used" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:752 +#: includes/admin/class-mp-products-admin.php:2343 +msgid "Start Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:598 +msgid "Coupon Code" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:444 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:284 +msgid "Save Changes" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:57 +#: includes/admin/class-mp-shortcode-builder.php:716 +#: includes/admin/class-mp-shortcode-builder.php:727 +#: includes/admin/class-mp-shortcode-builder.php:883 +#: includes/admin/class-mp-shortcode-builder.php:894 +#: includes/admin/class-mp-shortcode-builder.php:946 +#: includes/admin/class-mp-shortcode-builder.php:956 +#: includes/admin/class-mp-shortcode-builder.php:1006 +#: includes/admin/class-mp-shortcode-builder.php:1327 +#: includes/admin/class-mp-shortcode-builder.php:1338 +#: includes/admin/store-settings/class-mp-store-settings-general.php:357 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:270 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:108 +#: includes/admin/widgets/ms-global-product-list.php:172 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:94 +msgid "None" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:352 +msgid "Google Analytics Ecommerce Tracking" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:310 +msgid "This option turns MarketPress into more of a product listing plugin, disabling shopping carts, checkout, and order management. This is useful if you simply want to list items you can buy in a store somewhere else, optionally linking the \"Buy Now\" buttons to an external site. Some examples are a car dealership, or linking to songs/albums in itunes, or linking to products on another site with your own affiliate links." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:304 +msgid "Whether or not customers must be registered and logged in to checkout. (Not recommended: Enabling this can lower conversions)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:258 +msgid "How many times may a customer download a file they have purchased? (It's best to set this higher than one in case they have any problems downloading)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:257 +msgid "Maximum Downloads" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:298 +msgid "This will set the product to draft if inventory of all variations is gone." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:288 +msgid "At what low stock count do you want to be warned for products you have enabled inventory tracking for?" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:208 +#: includes/admin/store-settings/class-mp-store-settings-general.php:287 +msgid "Inventory Warning Threshold" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:282 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:542 +msgid "Miscellaneous Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:429 +#: includes/multisite/class-mp-admin-multisite.php:247 +msgid "Show Decimal in Prices" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:451 +#: includes/admin/store-settings/class-mp-store-settings-general.php:403 +#: includes/multisite/class-mp-admin-multisite.php:221 +msgid "Currency Symbol Position" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:444 +#: includes/admin/store-settings/class-mp-store-settings-general.php:396 +msgid "Store Currency" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:429 +#: includes/admin/store-settings/class-mp-store-settings-general.php:381 +msgid "Currency Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:516 +msgid "Please see your local tax laws. Note if this is enabled and a downloadable only cart, rates will be the default for your base location." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:529 +msgid "Apply Tax to Downloadable Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:498 +msgid "Enabling this option allows you to enter and show all prices inclusive of tax, while still listing the tax total as a line item in shopping carts. Please see your local tax laws." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:497 +msgid "Enter Prices Inclusive of Tax?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:492 +msgid "Please see your local tax laws. Most areas charge tax on shipping fees." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:491 +msgid "Apply Tax To Shipping Fees?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:674 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:565 +#: includes/common/payment-gateways/authorizenet-aim.php:291 +#: includes/common/payment-gateways/authorizenet-aim.php:326 +#: includes/common/payment-gateways/payfast.php:347 +msgid "No" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:675 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:759 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:512 +#: includes/admin/class-mp-setup-wizard.php:518 +#: includes/admin/class-mp-setup-wizard.php:524 +#: includes/admin/class-mp-setup-wizard.php:530 +#: includes/admin/class-mp-setup-wizard.php:564 +#: includes/admin/store-settings/class-mp-store-settings-general.php:232 +#: includes/admin/store-settings/class-mp-store-settings-general.php:299 +#: includes/admin/store-settings/class-mp-store-settings-general.php:305 +#: includes/admin/store-settings/class-mp-store-settings-general.php:311 +#: includes/admin/store-settings/class-mp-store-settings-general.php:317 +#: includes/admin/store-settings/class-mp-store-settings-general.php:328 +#: includes/admin/store-settings/class-mp-store-settings-general.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:341 +#: includes/admin/store-settings/class-mp-store-settings-general.php:348 +#: includes/admin/store-settings/class-mp-store-settings-general.php:367 +#: includes/admin/store-settings/class-mp-store-settings-general.php:493 +#: includes/admin/store-settings/class-mp-store-settings-general.php:499 +#: includes/admin/store-settings/class-mp-store-settings-general.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:556 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:375 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:381 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:387 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:474 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:493 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:532 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:574 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:606 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:664 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:670 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:677 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:683 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:689 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:763 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:774 +#: includes/common/payment-gateways/_bitpay.php:250 +#: includes/common/payment-gateways/_bitpay.php:257 +#: includes/common/payment-gateways/_bitpay.php:264 +#: includes/common/payment-gateways/authorizenet-aim.php:290 +#: includes/common/payment-gateways/authorizenet-aim.php:325 +#: includes/common/payment-gateways/free_orders.php:160 +#: includes/common/payment-gateways/payfast.php:346 +#: includes/common/payment-gateways/paymill.php:162 +#: includes/common/payment-gateways/paypal-payflow.php:441 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-checkbox.php:22 +msgid "Yes" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:492 +#: includes/admin/store-settings/class-mp-store-settings-general.php:472 +msgid "%s Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:467 +#: includes/admin/store-settings/class-mp-store-settings-general.php:449 +msgid "Tax Settings" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:370 +#: includes/admin/store-settings/class-mp-store-settings-general.php:624 +msgid "Base Zip/Postal Code" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:354 +#: includes/admin/store-settings/class-mp-store-settings-general.php:608 +msgid "Base State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:589 +msgid "Base Country" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:582 +msgid "Location Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:195 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:800 +#: includes/multisite/class-mp-admin-multisite.php:172 +msgid "General Settings" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1945 +#: includes/admin/class-mp-products-admin.php:2185 +#: includes/admin/class-mp-store-settings-admin.php:111 +#: includes/admin/class-mp-store-settings-admin.php:266 +msgid "General" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:242 +msgid "Importers" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +#: includes/admin/class-mp-store-settings-admin.php:234 +msgid "Payments" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:313 +#: includes/admin/class-mp-store-settings-admin.php:112 +#: includes/admin/class-mp-store-settings-admin.php:222 +msgid "Presentation" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:916 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1015 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1018 +#: includes/admin/class-mp-dashboard-widgets.php:305 marketpress.php:702 +msgid "Coupons" +msgstr "" + +#: includes/admin/class-mp-admin.php:251 +msgid "Download »" +msgstr "" + +#: includes/admin/class-mp-admin.php:245 +#: includes/admin/class-mp-exporter-orders.php:170 +msgid "All Statuses" +msgstr "" + +#: includes/admin/class-mp-admin.php:209 +#: includes/admin/class-mp-exporter-orders.php:150 +#: includes/admin/class-mp-exporter-orders.php:178 +msgid "Export Orders" +msgstr "" + +#: includes/admin/class-mp-admin.php:228 +msgid "Show all dates" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:947 +msgid "Change Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:287 +msgid "Order Notes" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:478 +msgid "Other" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:205 +msgid "Subtotal" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:84 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:87 +#: includes/admin/class-mp-products-admin.php:1737 +#: includes/common/class-mp-cart.php:1409 +#: includes/common/class-mp-product.php:559 +msgid "Quantity" +msgstr "" + +#: includes/common/helpers.php:93 +msgid "Item" +msgstr "" + +#: includes/common/class-mp-order.php:1050 +msgid "Current Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:297 +msgid "Order Actions" +msgstr "" + +#: includes/common/class-mp-product.php:1084 +msgid "More Info »" +msgstr "" + +#: includes/common/class-mp-product.php:2313 +msgid "Low Product Inventory Notification" +msgstr "" + +#: includes/common/class-mp-order.php:338 includes/common/data.php:154 +msgid "New Order Notification: ORDERID" +msgstr "" + +#: includes/common/helpers.php:259 +msgid "Your payment for this order is complete." +msgstr "" + +#: includes/common/helpers.php:261 +msgid "Your payment for this order is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/helpers.php:256 +msgid "Payment Total:" +msgstr "" + +#: includes/common/helpers.php:253 +msgid "Transaction ID:" +msgstr "" + +#: includes/common/helpers.php:249 +msgid "Payment Type:" +msgstr "" + +#: includes/common/helpers.php:246 +msgid "Payment Method:" +msgstr "" + +#: includes/common/helpers.php:242 +msgid "Order Notes:" +msgstr "" + +#: includes/common/helpers.php:237 +msgid "Special Instructions:" +msgstr "" + +#: includes/common/helpers.php:232 +msgid "Tracking Number:" +msgstr "" + +#: includes/common/helpers.php:223 includes/common/helpers.php:226 +#: includes/common/helpers.php:228 +#: includes/common/shipping-modules/class-mp-shipping-api.php:406 +#: includes/common/shipping-modules/class-mp-shipping-api.php:428 +msgid "Shipping Method:" +msgstr "" + +#: includes/common/helpers.php:168 +msgid "No shipping required for this order." +msgstr "" + +#: includes/common/helpers.php:155 +msgid "Order Total:" +msgstr "" + +#: includes/common/class-mp-order.php:1025 +msgid "Taxes:" +msgstr "" + +#: includes/common/class-mp-order.php:1032 includes/common/helpers.php:144 +msgid "Shipping:" +msgstr "" + +#: includes/public/class-mp-checkout.php:367 +msgid "Street address, P.O. box, company name, c/o" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:314 +msgid "Shipping Info" +msgstr "" + +#: includes/public/class-mp-public.php:740 +msgid "Whoops, there was a problem loading up this file for your download. Please contact us for help." +msgstr "" + +#: includes/public/class-mp-public.php:683 +msgid "Sorry, our records show you've downloaded this file %d out of %d times allowed. Please contact us if you still need help." +msgstr "" + +#: includes/public/class-mp-public.php:634 +msgid "Sorry, your order has been marked as unpaid." +msgstr "" + +#: includes/public/class-mp-public.php:629 +msgid "Sorry, the link is invalid for this download." +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:15 +#: includes/admin/class-mp-products-admin.php:1172 +msgid "Cheatin’ uh?" +msgstr "" + +#: includes/public/class-mp-public.php:407 +#: includes/public/class-mp-short-codes.php:128 +msgid "Please enter a valid email address." +msgstr "" + +#: includes/admin/class-mp-ajax.php:191 +#: includes/admin/class-mp-products-admin.php:1821 +#: includes/admin/class-mp-products-admin.php:2010 +#: includes/admin/class-mp-products-admin.php:2267 +msgid "File URL" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1842 +msgid "External Link" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2177 +msgid "Add Variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:126 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:289 +msgid "Inventory" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:438 +#: includes/admin/class-mp-products-admin.php:578 +#: includes/admin/class-mp-products-admin.php:1552 +#: includes/admin/class-mp-products-admin.php:2053 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:134 +msgid "Sale Price" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "Variation Name" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1931 +msgid "Product Details" +msgstr "" + +#: includes/admin/class-mp-product-attributes-list-table.php:33 +msgid "Delete" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1057 +msgid "Trashed" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:231 +#: includes/admin/class-mp-orders-admin.php:1015 +#: includes/common/class-mp-order.php:1052 includes/common/helpers.php:97 +msgid "Total" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1196 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:210 +#: includes/admin/class-mp-orders-admin.php:1014 +msgid "Discount" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:221 +#: includes/admin/class-mp-orders-admin.php:1013 +#: includes/common/payment-gateways/_ideal.php:148 +#: includes/common/payment-gateways/_payway.php:134 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:108 +msgid "Tax" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:216 +#: includes/admin/class-mp-orders-admin.php:1012 +#: includes/admin/class-mp-products-admin.php:1958 +#: includes/admin/class-mp-products-admin.php:2198 +#: includes/admin/class-mp-store-settings-admin.php:114 +#: includes/admin/class-mp-store-settings-admin.php:230 +#: includes/common/class-mp-cart.php:717 includes/common/helpers.php:168 +#: includes/common/payment-gateways/_ideal.php:137 +#: includes/common/payment-gateways/_payway.php:116 +#: includes/public/class-mp-checkout.php:1304 +msgid "Shipping" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1011 +msgid "Items" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1010 +msgid "From" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:154 +#: includes/admin/class-mp-orders-admin.php:1009 +#: includes/common/class-mp-gdpr.php:370 +msgid "Order Date" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1008 +#: includes/common/class-mp-gdpr.php:366 +#: includes/common/template-functions.php:2134 +msgid "Order ID" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:22 +#: includes/admin/class-mp-orders-admin.php:1007 +msgid "Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1155 +msgid "N/A" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:243 +#: includes/admin/class-mp-products-admin.php:464 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:142 +msgid "Sales" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:463 +msgid "Stock" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:85 +#: includes/admin/class-mp-ajax.php:176 includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:434 +#: includes/admin/class-mp-products-admin.php:462 +#: includes/admin/class-mp-products-admin.php:576 +#: includes/admin/class-mp-products-admin.php:1519 +#: includes/admin/class-mp-products-admin.php:1569 +#: includes/admin/class-mp-products-admin.php:1950 +#: includes/admin/class-mp-products-admin.php:2059 +#: includes/admin/class-mp-products-admin.php:2190 +#: includes/admin/class-mp-products-admin.php:2330 +#: includes/common/class-mp-cart.php:1415 includes/common/helpers.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:130 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:276 +msgid "Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:173 +#: includes/admin/class-mp-products-admin.php:461 +#: includes/admin/class-mp-products-admin.php:1972 +#: includes/admin/class-mp-products-admin.php:2224 +msgid "SKU" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:459 +#: includes/admin/class-mp-products-admin.php:1793 +#: includes/admin/class-mp-products-admin.php:1805 +#: includes/admin/class-mp-products-admin.php:2163 +msgid "Variations" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:83 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:86 +#: includes/admin/class-mp-dashboard-widgets.php:134 +#: includes/admin/class-mp-products-admin.php:458 +#: includes/admin/class-mp-products-admin.php:837 +#: includes/admin/class-mp-shortcode-builder.php:689 +#: includes/admin/class-mp-shortcode-builder.php:856 +#: includes/admin/class-mp-shortcode-builder.php:1300 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:512 +#: includes/admin/widgets/ms-global-product-list.php:115 +#: includes/admin/widgets/product-list.php:211 +msgid "Product Name" +msgstr "" + +#: includes/common/template-functions.php:2575 +msgid "Categorized in " +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:305 +#: includes/common/payment-gateways/free_orders.php:176 +msgid "Payment Information" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:167 +#: includes/admin/class-mp-orders-admin.php:432 +#: includes/admin/class-mp-pages-admin.php:62 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:227 +#: includes/common/class-mp-gdpr.php:374 +#: includes/common/template-functions.php:175 +#: includes/common/template-functions.php:926 +msgid "Order Status" +msgstr "" + +#. translators: %s: orders closed +#: marketpress.php:327 +msgid "Closed (%s)" +msgid_plural "Closed (%s)" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:249 +#: includes/admin/class-mp-orders-admin.php:375 +#: includes/admin/class-mp-orders-admin.php:951 +#: includes/admin/class-mp-orders-admin.php:1053 +#: includes/admin/class-mp-orders-admin.php:1065 +#: includes/common/class-mp-gdpr.php:330 +#: includes/common/class-mp-order.php:1019 marketpress.php:325 +msgid "Closed" +msgstr "" + +#. translators: %s: shipped orders +#: marketpress.php:320 +msgid "Shipped (%s)" +msgid_plural "Shipped (%s)" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:248 +#: includes/admin/class-mp-orders-admin.php:376 +#: includes/admin/class-mp-orders-admin.php:950 +#: includes/admin/class-mp-orders-admin.php:1049 +#: includes/admin/class-mp-orders-admin.php:1064 +#: includes/common/class-mp-gdpr.php:329 +#: includes/common/class-mp-order.php:1002 marketpress.php:318 +msgid "Shipped" +msgstr "" + +#. translators: %s: paid orders +#: marketpress.php:313 +msgid "Paid (%s)" +msgid_plural "Paid (%s)" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:247 +#: includes/admin/class-mp-orders-admin.php:377 +#: includes/admin/class-mp-orders-admin.php:949 +#: includes/admin/class-mp-orders-admin.php:1045 +#: includes/admin/class-mp-orders-admin.php:1063 +#: includes/common/class-mp-gdpr.php:328 +#: includes/common/payment-gateways/2checkout.php:294 +#: includes/common/payment-gateways/_cubepoints.php:130 +#: includes/common/payment-gateways/authorizenet-aim.php:193 +#: includes/common/payment-gateways/free_orders.php:91 +#: includes/common/payment-gateways/mijireh.php:248 +#: includes/common/payment-gateways/paymill.php:273 +#: includes/common/payment-gateways/paypal-express.php:933 +#: includes/common/payment-gateways/paypal-express.php:967 +#: includes/common/payment-gateways/pin.php:258 +#: includes/common/payment-gateways/simplify.php:181 +#: includes/common/payment-gateways/stripe.php:368 +#: includes/common/payment-gateways/wepay.php:269 marketpress.php:311 +msgid "Paid" +msgstr "" + +#. translators: %s: orders received +#: marketpress.php:306 +msgid "Received (%s)" +msgid_plural "Received (%s)" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:246 +#: includes/admin/class-mp-orders-admin.php:378 +#: includes/admin/class-mp-orders-admin.php:1041 +#: includes/admin/class-mp-orders-admin.php:1062 +#: includes/common/class-mp-gdpr.php:327 includes/common/class-mp-order.php:995 +#: includes/common/payment-gateways/payfast.php:244 marketpress.php:304 +msgid "Received" +msgstr "" + +#: marketpress.php:268 +msgid "Search Orders" +msgstr "" + +#: marketpress.php:267 +msgid "View Order" +msgstr "" + +#: marketpress.php:262 +msgid "Order" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:301 +#: includes/admin/class-mp-orders-admin.php:989 marketpress.php:261 +msgid "Orders" +msgstr "" + +#: marketpress.php:228 +msgid "No Products found in Trash" +msgstr "" + +#: marketpress.php:227 +msgid "No Products Found" +msgstr "" + +#: marketpress.php:226 +msgid "Search Products" +msgstr "" + +#: marketpress.php:225 marketpress.php:229 +msgid "View Product" +msgstr "" + +#: marketpress.php:224 +msgid "New Product" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1022 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:258 +#: marketpress.php:223 +msgid "Edit" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1019 +msgid "Create New" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:687 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:698 +#: marketpress.php:217 +msgid "Product" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:307 +#: includes/common/template-functions.php:173 +#: includes/common/template-functions.php:179 +#: includes/common/template-functions.php:902 +#: includes/multisite/template-functions.php:82 marketpress.php:216 +#: marketpress.php:219 +msgid "Products" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:118 +#: includes/admin/widgets/product-tag-cloud.php:46 +#: includes/multisite/class-mp-admin-multisite.php:548 +msgid "Product Tags" +msgstr "" + +#: includes/common/template-functions.php:2906 +#: includes/multisite/template-functions.php:449 +msgid "Product Category" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:117 +#: includes/admin/widgets/categories.php:8 +#: includes/admin/widgets/categories.php:18 +#: includes/multisite/class-mp-admin-multisite.php:539 +msgid "Product Categories" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:332 +#: includes/common/template-functions.php:872 marketpress.php:218 +msgid "Store" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:60 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:209 +#: includes/admin/widgets/cart.php:8 includes/admin/widgets/cart.php:56 +#: includes/common/template-functions.php:174 +#: includes/common/template-functions.php:811 +msgid "Shopping Cart" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:110 +#: includes/admin/class-mp-store-settings-admin.php:218 +msgid "Store Settings" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:128 marketpress.php:607 +msgid "Settings" +msgstr "" + +#: includes/common/data.php:178 includes/common/data.php:190 +msgid "Your Order Has Been Shipped! (ORDERID)" +msgstr "" + +#: includes/common/data.php:159 includes/common/data.php:166 +#: includes/common/data.php:172 +msgid "Your Order Confirmation (ORDERID)" +msgstr "" + +#: includes/common/data.php:148 +msgid "

    Thank you for your order! We appreciate your business, and please come back often to check out our new products.

    " +msgstr "" + +#: includes/common/data.php:147 +msgid "

    You are almost done! Please do a final review of your order to make sure everything is correct then click the \"Confirm Payment\" button.

    " +msgstr "" + +#: includes/common/data.php:145 +msgid "

    Please enter your shipping information in the form below to proceed with your order.

    " +msgstr "" + +#: includes/common/data.php:143 +msgid "

    If you have any questions about your order please do not hesitate to contact us.

    " +msgstr "" + +#: includes/common/data.php:106 +msgid "tag" +msgstr "" + +#: includes/common/data.php:105 +msgid "category" +msgstr "" + +#: includes/common/data.php:104 +msgid "order-status" +msgstr "" + +#: includes/common/data.php:103 +msgid "shopping-cart" +msgstr "" + +#: includes/common/data.php:102 +msgid "products" +msgstr "" + +#. Translators: change default slugs here +#: includes/common/data.php:101 +msgid "store" +msgstr "" \ No newline at end of file diff --git a/languages/mp-es-mx.mo b/languages/mp-es-mx.mo new file mode 100644 index 0000000000000000000000000000000000000000..88d7784397a7771895c194d321d8bee13a813204 GIT binary patch literal 76960 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 literal 0 HcmV?d00001 diff --git a/languages/mp-es-mx.po b/languages/mp-es-mx.po new file mode 100644 index 00000000..a4ad1aac --- /dev/null +++ b/languages/mp-es-mx.po @@ -0,0 +1,8969 @@ +# Translation of MarketPress in Spanish (Mexico) +# This file is distributed under the same license as the MarketPress package. +msgid "" +msgstr "" +"PO-Revision-Date: 2018-01-17 01:02:04+0000\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-Generator: GlotPress/2.3.1\n" +"Language: es_MX\n" +"Project-Id-Version: MarketPress\n" + +#: includes/public/class-mp-checkout.php:1285 +msgid "By clicking this checkbox you allow the website to process your personal data." +msgstr "" + +#: includes/common/class-mp-gdpr.php:382 +msgid "Order Info" +msgstr "" + +#: includes/common/class-mp-gdpr.php:268 +msgid "Shipping Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:267 +msgid "Shipping Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:266 +msgid "Shipping ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:265 +msgid "Shipping State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:264 +msgid "Shipping City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:263 +msgid "Shipping Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:262 +msgid "Shipping Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:261 +msgid "Shipping Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:260 +msgid "Shipping Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:259 +msgid "Shipping Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:258 +msgid "Shipping First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:254 +msgid "Billing Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:253 +msgid "Billing Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:252 +msgid "Billing ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:251 +msgid "Billing State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:250 +msgid "Billing City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:249 +msgid "Billing Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:248 +msgid "Billing Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:247 +msgid "Billing Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:246 +msgid "Billing Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:245 +msgid "Billing Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:244 +msgid "Billing First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:151 +msgid "Orders Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:139 +msgid "Customer Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:100 includes/common/class-mp-gdpr.php:116 +msgid "MarketPress User Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:81 +msgid "" +"In addition to standard WordPress session cookies, this site might be setting an\n" +"\t\t additional cookie to remember your cart settings. This cookie will last for one year." +msgstr "" + +#: includes/common/class-mp-gdpr.php:80 +msgid "Cookies" +msgstr "" + +#: includes/common/class-mp-gdpr.php:77 +msgid "" +"The following information will be collected in order to process orders: your name,\n" +"\t\t username, email address, avatar and profile URLs, address and phone number. This data can be\n" +"\t\t exported and removed." +msgstr "" + +#: includes/common/class-mp-gdpr.php:76 +msgid "Additional data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:71 +msgid "" +"This site might be using third party services and tools to process payments or/and\n" +"\t\t process shipping data when creating orders on the MarketPress store. These services include payment\n" +"\t\t gateways: 2Checkout, Authorize.net AIM, eWay shared payments, eWay Rapid 3.1 Payments, Mijireh,\n" +"\t\t Mollie, Paymill, PayPal, PIN, Simplify Commerce by MasterCard, Stripe and WePay; shipping gateways:\n" +"\t\t Fedex, UPS, USPS." +msgstr "" + +#: includes/common/class-mp-gdpr.php:70 +msgid "Third parties" +msgstr "" + +#: includes/admin/class-mp-admin.php:403 +msgid "Start creating store pages and products for your online shop here." +msgstr "" + +#: includes/admin/class-mp-admin.php:402 +msgid "Create Online Shop" +msgstr "" + +#: includes/admin/class-mp-admin.php:394 +msgid "Run Setup Wizard" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:234 +msgid "If having problems during invoice generation, add define( 'DOMPDF_ENABLE_HTML5PARSER', true ); to the wp-config.php file." +msgstr "" + +#: includes/public/class-mp-checkout.php:723 +msgid "Invalid Email" +msgstr "" + +#: includes/public/class-mp-checkout.php:721 +#: includes/public/class-mp-checkout.php:729 +msgid "This field is required" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:804 +msgid "This option changes the built-in css styles for store pages. For a custom css style, save your css file with the /* MarketPress Style: Your CSS Theme Name Here */ header line in the \"%s\" folder and it will appear in this list so you may select it. You should select \"None\" if you don't wish to use custom CSS styles or if you are using default theme templates or custom theme templates and css to make your own completely unique store design. For more information on custom theme templates click here »." +msgstr "" + +#: includes/public/class-mp-public.php:421 +#: includes/public/class-mp-short-codes.php:142 +msgid "Please enter a value greater than or equal to {0}." +msgstr "Por favor ingrese un valor arriba o igual a {0}" + +#: includes/public/class-mp-public.php:420 +#: includes/public/class-mp-short-codes.php:141 +msgid "Please enter a value less than or equal to {0}." +msgstr "Por favor ingrese un valor menor o igual a {0} " + +#: includes/public/class-mp-public.php:419 +#: includes/public/class-mp-short-codes.php:140 +msgid "Please enter a value between {0} and {1}." +msgstr "Por favor ingrese un valor entre {0} y {1}" + +#: includes/public/class-mp-public.php:418 +#: includes/public/class-mp-short-codes.php:139 +msgid "Please enter a value between {0} and {1} characters long." +msgstr "Por favor ingrese un valor entre {0} y {1} caracteres de largo" + +#: includes/public/class-mp-public.php:417 +#: includes/public/class-mp-short-codes.php:138 +msgid "Please enter at least {0} characters." +msgstr "Por favor ingrese al menos {0} caracteres." + +#: includes/public/class-mp-public.php:416 +#: includes/public/class-mp-short-codes.php:137 +msgid "Please enter no more than {0} characters." +msgstr "Por favor ingrese no más de {0} caracteres. " + +#: includes/public/class-mp-public.php:415 +#: includes/public/class-mp-short-codes.php:136 +msgid "Please enter a value with a valid extension." +msgstr "Por favor ingrese un valor con una extensión válida" + +#: includes/public/class-mp-public.php:414 +#: includes/public/class-mp-short-codes.php:135 +msgid "Please enter the same value again." +msgstr "Por favor ingrese el mismo valor de nuevo." + +#: includes/public/class-mp-public.php:413 +#: includes/public/class-mp-short-codes.php:134 +msgid "Please enter a valid credit card number." +msgstr "Por favor ingrese un número de tarjeta de crédito válido." + +#: includes/public/class-mp-public.php:412 +#: includes/public/class-mp-short-codes.php:133 +msgid "Please enter only digits." +msgstr "Ingrese sólo dígitos." + +#: includes/public/class-mp-public.php:411 +#: includes/public/class-mp-short-codes.php:132 +msgid "Please enter a valid number." +msgstr "Por favor ingrese un número válido." + +#: includes/public/class-mp-public.php:410 +#: includes/public/class-mp-short-codes.php:131 +msgid "Please enter a valid date (ISO)." +msgstr "Por favor ingrese una fecha válida (ISO)." + +#: includes/public/class-mp-public.php:409 +#: includes/public/class-mp-short-codes.php:130 +msgid "Please enter a valid date." +msgstr "Por favor ingrese una fecha válida." + +#: includes/public/class-mp-public.php:408 +#: includes/public/class-mp-short-codes.php:129 +msgid "Please enter a valid URL." +msgstr "" + +#: includes/public/class-mp-public.php:406 +#: includes/public/class-mp-short-codes.php:127 +msgid "Please fix this field." +msgstr "" + +#: includes/public/class-mp-checkout.php:1287 +#: includes/public/class-mp-public.php:405 +#: includes/public/class-mp-short-codes.php:126 +msgid "This field is required." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:810 +msgid "None - Without Special CSS-styles" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:809 +msgid "Default - Using Default CSS-styles" +msgstr "" + +#: marketpress.php:739 +msgid "Enable multiple downloads per product" +msgstr "" + +#: marketpress.php:738 +msgid "Multiple Downloads" +msgstr "" + +#: includes/public/class-mp-checkout.php:715 +msgid "Invalid Zip Code" +msgstr "" + +#: includes/common/template-functions.php:2126 +msgid "Guest Email" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:195 +msgid "There was a problem finalizing your purchase. Please re-enter your credit card information and try again" +msgstr "" + +#: includes/common/class-mp-cart.php:565 includes/common/class-mp-order.php:600 +#: includes/common/helpers.php:111 +msgid "Download %1$s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:331 +msgid "Export products to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:328 +msgid "The import process uses the WordPress importer plugin." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:326 +msgid "Import / Export Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:325 +msgid "Export settings to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:324 +msgid "Import configuration" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:320 +msgid "Use the text below to export to a new installation. Or paste in the new configuration to import." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:318 +msgid "Import / Export Settings" +msgstr "" + +#. translators: URL to wp-admin/import.php +#: includes/admin/store-settings/class-mp-store-settings-import.php:266 +msgid "This importer is not installed. Please install importers from the main site." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:261 +msgid "Install Now" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:260 +msgid "Install %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:240 +msgid "Run Importer" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:239 +msgid "Run %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:258 +msgid "Import/Export" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1199 +msgid "Requires Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:737 +msgid "Optionally limit the user to some categories" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:671 +msgid "Should this coupon only be available to logged in users?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:670 +msgid "Require Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:655 +msgid "Mimimum number of products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:653 +msgid "Enter the minimum number of products in the cart that this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:648 +msgid "Can this coupon be limited to a number of products in the cart?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:334 +msgid "Add all values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:265 +msgid "Set as default variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:154 +msgid "Set Default" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:150 +msgid "More Info" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:40 +msgid "MarketPress - Quick Setup" +msgstr "" + +#: includes/public/class-mp-checkout.php:1399 +msgid "Proceed to checkout and create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1241 +#: includes/public/class-mp-checkout.php:1245 +msgid "Register account" +msgstr "" + +#: includes/public/class-mp-checkout.php:1233 +msgid "Register as customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:765 +msgid "

    Oops!

    Looks like you haven't added anything your cart. Let's go shopping!

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:763 +msgid "

    Oops!

    The cart is disabled.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing Information" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:214 +msgid "Global Currency" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:198 +msgid "Global Store Currency" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:507 +msgid "There are no shipping services available for this type of package in your location." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:168 +msgid "Using this USPS Shipping calculator requires requesting an Ecommerce API Username and Password. Get your free set of credentials here ». The password is no longer used for the API, just the username which you should enter below. The USPS test site has not yet been updated and currently doesn't work - you should just request activating your credentials with USPS and go live." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:339 +msgid "ZIP Code" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:334 +msgid "Last name" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:333 +msgid "First name" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:150 +msgid "These are the manual payment instructions to display on the order confirmation screen. TOTAL will be replaced with the order total and ORDERID will be replaced with Order ID." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:240 +msgid "You must login to Authorize.net merchant dashboard to obtain the API login ID and API transaction key. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:327 +msgid "
    1. Set the \"Return Method\" within Site Management to Header Redirect and set the \"Return URL\" to %s
    2. Set your notifications url to %s
    " +msgstr "" + +#: includes/common/data.php:191 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Also, digital downloads included in your order are now ready to be downloaded. Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:185 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order is now available to download! Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:184 +msgid "Your Order Is Ready To Be Downloaded! (ORDERID)" +msgstr "" + +#: includes/common/data.php:179 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:173 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received, your digital goods are ready to be downloaded and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:167 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received and your digital goods are ready to be downloaded. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:160 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +" Your order has been received, and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information: \n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/class-mp-product.php:638 +msgid "You can not add more items to cart." +msgstr "" + +#: includes/common/class-mp-product.php:635 +msgid "You can only add {0} to cart." +msgstr "" + +#: includes/common/class-mp-product.php:625 +msgid "This product has an order limit of %d." +msgstr "" + +#: includes/common/class-mp-order.php:1454 +msgid "Shipped: tracking code: %s" +msgstr "" + +#: includes/common/class-mp-order.php:1000 +#: includes/common/class-mp-order.php:1012 +msgid "Finished" +msgstr "" + +#: includes/common/class-mp-order.php:858 +msgid "Contact Details" +msgstr "" + +#: includes/common/class-mp-order.php:339 includes/common/data.php:155 +msgid "" +"A new order (ORDERID) was created in your store:\n" +"\n" +" ORDERINFOSKU\n" +"\n" +" SHIPPINGINFO\n" +"\n" +" PAYMENTINFO\n" +"\n" +msgstr "\n" + +#: includes/common/class-mp-cart.php:1858 +msgid "Add again" +msgstr "" + +#: includes/common/class-mp-cart.php:1852 +msgid "was removed from Shopping Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1242 +#: includes/public/class-mp-short-codes.php:160 +msgid "Cart update notice: this item has a limit per order or you have reached the stock limit." +msgstr "" + +#: includes/admin/widgets/product-list.php:235 +msgid "Show Only Featured Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:533 +msgid "If enabled, users won't be able to filter products per category and/or to order by release date/name/price." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:531 +msgid "Hide Products Filter?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:353 +msgid "Notification to registration email instead of billing email?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:322 +msgid "Order Shipped - Mixed orders (with both digital and physical products)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:289 +msgid "Order Shipped - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:224 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:194 +msgid "New Order - Mixed" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:161 +msgid "New Order - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:115 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:243 +msgid "Mixed orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:110 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:238 +msgid "Digital downloads orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:105 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:233 +msgid "Physical orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:96 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed.
    For orders placed with manual payment, emails set here will be overriden by the one configured in manual payments settings, under payments settings page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:89 +msgid "Customer Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:47 +msgid "Admin Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:566 +msgid "Only contact details" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:565 +msgid "Full billing info" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:561 +msgid "Details Collection" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:548 +msgid "Digital Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:515 +msgid "Apply Tax to Digital Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:236 +msgid "product (default)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:231 +msgid "If you are experiencing conflicts with other e-commerce plugins change this setting. This will change the internal post type of all your products. Please note that changing this option may break 3rd party themes or plugins." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1203 +msgid "Hide details" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1202 +msgid "Show all changes" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1184 +msgid "Version %s" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1161 +msgid "Current" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1131 +msgid "%s changelog" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:952 +msgid "We did not find any data for this plugin or theme..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:285 +msgid "Activate WPMU DEV Dashboard" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:279 +msgid "Just one more step - activate the WPMU DEV Dashboard plugin and you're all done!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:277 +msgid "Important updates are available for your WPMU DEV plugins/themes. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:273 +msgid "Just one more step to enable updates and support for %s!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:271 +msgid "Important updates are available for %s. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:264 +msgid "activate" +msgstr "" + +#: includes/admin/class-mp-admin.php:398 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:248 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:289 +msgid "Dismiss" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:247 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:288 +msgid "Saving..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:244 +msgid "Install Plugin" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:238 +msgid "Almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:236 +msgid "Important updates are available for your WPMU DEV plugins/themes. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:232 +msgid "%s is almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:230 +msgid "Important updates are available for %s. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:223 +msgid "install" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1428 +msgid "Sets the number of Tags to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1289 +msgid "How many products to display in the product list if \"paginate\" is set to false." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:739 +#: includes/admin/class-mp-shortcode-builder.php:906 +#: includes/admin/class-mp-shortcode-builder.php:1350 +msgid "Grid" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:735 +#: includes/admin/class-mp-shortcode-builder.php:902 +#: includes/admin/class-mp-shortcode-builder.php:1346 +msgid "Products will be displayed as list or grid." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:206 +msgid "Display a cloud or list of your global product tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:205 +msgid "Display a list of your global categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:204 +msgid "Display a list or grid of your global products." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:181 +msgid "Display a list of featured products." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1451 +msgid "Is Featured?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1444 +msgid "Featured Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:581 +#: includes/admin/class-mp-products-admin.php:1580 +msgid "% discount" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:579 +msgid "OR" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:460 +#: includes/admin/class-mp-products-admin.php:586 +#: includes/admin/widgets/product-list.php:217 +msgid "Featured" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:536 +#: includes/admin/class-mp-orders-admin.php:538 +msgid "Tracking Link" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:508 +msgid "Shipping Tax" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:356 +msgid "Shipping Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:352 +msgid "Taxes Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:349 +msgid "Products Total" +msgstr "" + +#: includes/admin/class-mp-ajax.php:366 +msgid "Oops! You entered an invalid username/email and or password." +msgstr "" + +#: includes/admin/class-mp-ajax.php:254 +msgid "Percentage Discount" +msgstr "" + +#: includes/admin/class-mp-ajax.php:234 +msgid "Limit the Amount of Items per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:214 +msgid "Unused Attributes" +msgstr "" + +#: includes/admin/class-mp-admin.php:82 +msgid "Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-admin.php:79 +msgid "MarketPress setup is not complete! Once you've completed this quick setup wizard you'll have a fully working online store - exciting! " +msgstr "" + +#: marketpress.php:263 +msgctxt "mp_order" +msgid "Add New" +msgstr "" + +#: marketpress.php:184 +msgctxt "product_tag" +msgid "Product Tag" +msgstr "" + +#: marketpress.php:183 +msgctxt "product_tag" +msgid "Product Tags" +msgstr "" + +#: marketpress.php:150 +msgctxt "product_category" +msgid "Product Category" +msgstr "" + +#: marketpress.php:149 +msgctxt "product_category" +msgid "Product Categories" +msgstr "" + +#. Author URI of the plugin/theme +msgid "http://premium.wpmudev.org" +msgstr "" + +#: marketpress.php:729 +msgid "Invoice PDF" +msgstr "" + +#: marketpress.php:712 +msgid "Grant access to themes and gateways depending on the user's Pro Site level" +msgstr "" + +#: marketpress.php:711 +msgid "Pro Sites" +msgstr "" + +#: marketpress.php:703 +msgid "Offer and accept coupon codes" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:687 +msgid "Install %s Pages" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:682 +msgid "Welcome to %s – Install pages required by the plugin automatically." +msgstr "" + +#: marketpress.php:668 +msgid "Your pages were created successfully." +msgstr "" + +#: marketpress.php:436 +msgid "Add a Product" +msgstr "" + +#: marketpress.php:271 +msgid "Parent Order" +msgstr "" + +#: marketpress.php:270 +msgid "No orders found in trash" +msgstr "" + +#: marketpress.php:269 +msgid "No orders found" +msgstr "No se encontraron ordenes" + +#: marketpress.php:265 +msgid "Edit Order" +msgstr "" + +#: marketpress.php:264 +msgid "Add New Order" +msgstr "Agregar una nueva orden" + +#: marketpress.php:220 marketpress.php:221 +msgid "Add New Product" +msgstr "" + +#: marketpress.php:197 +msgid "No product tags found" +msgstr "" + +#: marketpress.php:196 +msgid "Choose from the most used product tags" +msgstr "" + +#: marketpress.php:195 +msgid "Add or remove product tags" +msgstr "" + +#: marketpress.php:194 +msgid "Separate product tags with commas" +msgstr "" + +#: marketpress.php:193 +msgid "Search Product Tags" +msgstr "" + +#: marketpress.php:192 +msgid "Parent Product Tag:" +msgstr "" + +#: marketpress.php:191 +msgid "Parent Product Tag" +msgstr "" + +#: marketpress.php:190 +msgid "New Product Tag Name" +msgstr "" + +#: marketpress.php:189 +msgid "Add New Product Tag" +msgstr "" + +#: marketpress.php:188 +msgid "Update Product Tag" +msgstr "" + +#: marketpress.php:187 +msgid "View Product Tag" +msgstr "" + +#: marketpress.php:186 +msgid "Edit Product Tag" +msgstr "" + +#: marketpress.php:185 +msgid "All Product Tags" +msgstr "" + +#: marketpress.php:163 +msgid "No product categories found" +msgstr "" + +#: marketpress.php:162 +msgid "Choose from the most used product categories" +msgstr "" + +#: marketpress.php:161 +msgid "Add or remove product categories" +msgstr "" + +#: marketpress.php:160 +msgid "Separate product categories with commas" +msgstr "" + +#: marketpress.php:159 +msgid "Search Product Categories" +msgstr "" + +#: marketpress.php:158 +msgid "Parent Product Category:" +msgstr "" + +#: marketpress.php:157 +msgid "Parent Product Category" +msgstr "" + +#: marketpress.php:156 +msgid "New Product Category Name" +msgstr "" + +#: marketpress.php:155 +msgid "Add New Product Category" +msgstr "" + +#: marketpress.php:154 +msgid "Update Product Category" +msgstr "" + +#: marketpress.php:153 +msgid "View Product Category" +msgstr "" + +#: marketpress.php:152 +msgid "Edit Product Category" +msgstr "" + +#: marketpress.php:151 +msgid "All Product Categories" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Please fix the %s1 and then try submitting the form again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Oops! The form contains %s1 which %s2 been highlighted below." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:660 +msgid "have" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:659 +msgid "has" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:651 +msgid "Value must be less than {0}" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:650 +msgid "Please enter only letters and numbers" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:539 +msgid "Due to prolonged inactivity on this page, one or more settings were not saved. Please try again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:535 +msgid "Settings Saved" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-user-select.php:22 +msgid "Select Some Users" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-section.php:18 +msgid "Section Title" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:425 +msgid "Are you sure you want to delete this?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:30 +msgid "Add Row" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-post-select.php:24 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-taxonomy-select.php:22 +msgid "Select Posts" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:210 +msgid "Add Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:129 +msgid "Select the image that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:93 +msgid "Select image(s) that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:79 +msgid "Select the image that you would like to use for this variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:48 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:82 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:68 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:132 +msgid "Select Image" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:31 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:160 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:168 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:19 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:115 +msgid "Select File" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:30 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:18 +msgid "Select the file that you would like to use." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:357 +msgid "Create Variations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:356 +msgid "Add Another Variant" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Insert a value and press ENTER" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "(e.g. White, Grey, Red etc.)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Variation Values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:333 +msgid "Or create new variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "(e.g. Color)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:303 +msgid "You are about to delete selected variants.
    If you want to continue please confirm." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:302 +msgid "Confirmation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:290 +msgid "Insert quantity available. Empty for unlimited." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:281 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:294 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:307 +msgid "Cancel" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:280 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:293 +msgid "Update" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:277 +msgid "Insert the price i.e. 25 or 25.50" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:115 +msgid "Img." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:85 +msgid "Add New Variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:79 +msgid "Delete Variants" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:78 +msgid "Update Prices" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:77 +msgid "Update Inventory" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:76 +msgid "Update Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:75 +msgid "Bulk Actions" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:73 +msgid "Select bulk action" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:196 +msgid "Configure Store" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:195 +msgid "Configure shipping rates, emails and your store's appearance. " +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:190 +msgid "Add Product" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:189 +msgid "Add your first product for sale and get familiar with adding products." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:184 +msgid "Your store is almost ready for its first customers, but first it needs some products. Get started by adding products below, or jump straight into further configuring your store’s settings." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:183 +msgid "Woohoo! Your online store is up and running." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:160 +msgid "Finish Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:124 +msgid "And what metric system do you want to use?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:113 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:142 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:159 +msgid "Back" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:109 +msgid "Do you want to apply tax for your products? You can customize this for each product and variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:105 +msgid "What currency do you want to sell with?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:93 +msgid "And, which countries do you want to sell to?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:89 +msgid "Where is your online store based?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:80 +msgid "Payment Gateway" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:79 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:123 +msgid "Metric System" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:78 +msgid "Currency & Tax" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:77 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:88 +msgid "Locations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:70 +msgid "Choose where you want to sell your stuff and what currency. Easy!" +msgstr "" + +#: includes/public/class-mp-checkout.php:1400 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:58 +msgid "Continue" +msgstr "" + +#: includes/admin/class-mp-admin.php:83 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:53 +msgid "Skip this step, I'll do this manually" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:49 +msgid "Install store pages" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:44 +msgid "Once you've completed this quick setup wizard you'll have a fully working online store - exciting! Start
    by creating the default store pages for the online store such as the cart, checkout and store pages." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:42 +msgid "MarketPress adds a full online store to your website, with heaps of configuration options and addons
    to suit your needs. It's really easy to get going, and only takes a few minutes to setup!" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:41 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:69 +msgid "Welcome to MarketPress - Quick Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-advanced-select.php:23 +msgid "Select Some Options" +msgstr "" + +#: includes/wpmudev-metaboxes/class-wpmudev-field.php:694 +msgid "You must the WPMUDEV_Field::display() method in your form field class" +msgstr "" + +#: includes/public/class-mp-short-codes.php:636 +msgid "Only %s left in stock..." +msgstr "" + +#: includes/public/class-mp-short-codes.php:633 +msgid "Unlimited stock" +msgstr "" + +#: includes/public/class-mp-short-codes.php:430 +msgid "product_id must be defined" +msgstr "" + +#: includes/public/class-mp-checkout.php:1250 +msgid "An account with this username already exists" +msgstr "" + +#: includes/public/class-mp-checkout.php:1394 +msgid "Continue as Guest" +msgstr "" + +#: includes/public/class-mp-checkout.php:1393 +msgid "Proceed to checkout and you'll have an opportunity to create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1392 +#: includes/public/class-mp-checkout.php:1398 +msgid "First-time customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1386 +msgid "Login" +msgstr "" + +#: includes/public/class-mp-checkout.php:1379 +msgid "E-Mail Address/Username" +msgstr "" + +#: includes/public/class-mp-checkout.php:1377 +msgid "Sign in to speed up the checkout process." +msgstr "" + +#: includes/public/class-mp-checkout.php:1376 +msgid "Have an account?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1297 +msgid "Shipping address different than billing?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1184 +msgid "There are no available gateways to process this payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1160 +msgid "Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:1123 +msgid "Oops! An error occurred while processing your payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1051 +msgid "Next Step »" +msgstr "" + +#: includes/public/class-mp-checkout.php:1045 +msgid "« Previous Step" +msgstr "" + +#: includes/public/class-mp-checkout.php:873 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:657 +msgid "error" +msgstr "" + +#: includes/public/class-mp-checkout.php:872 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:658 +msgid "errors" +msgstr "" + +#: includes/public/class-mp-checkout.php:871 +msgid "

    Oops! We found %d %s in the form below.

    Fields that have errors are highlighted in red below. Entering into a field will reveal the actual error that occurred.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:870 +msgid "Please enter a valid first and last name" +msgstr "Por favor, capture un primer y último nombre válido" + +#: includes/public/class-mp-checkout.php:869 +msgid " Please enter a valid card security code" +msgstr "Por favor, capture una código de segurudad válido" + +#: includes/public/class-mp-checkout.php:868 +msgid "Please enter a valid card expiration" +msgstr "Por favor, capture una fecha válida de expiración" + +#: includes/public/class-mp-checkout.php:773 +msgid "Javascript is required in order to checkout. Please enable Javascript in your browser and then refresh this page." +msgstr "Se requiere de Javascript para procesar la compra. Por gavor habilite Javascript en su programa de consulta de web y vuelva a cargar la página." + +#: includes/public/class-mp-checkout.php:588 +msgid "An unknown error occurred. Please try again." +msgstr "" + +#: includes/public/class-mp-checkout.php:386 +msgid "Town/City" +msgstr "Pueblo/Ciudad" + +#: includes/public/class-mp-checkout.php:380 +msgid "Apartment, suite, unit, building, floor, etc" +msgstr "Departamento, suite, unidad, edificio, piso. etc" + +#: includes/public/class-mp-checkout.php:376 +msgid "Address Line 2" +msgstr "Línea de dirección 2" + +#: includes/public/class-mp-checkout.php:363 +msgid "Address Line 1" +msgstr "Linea de la dirección 1" + +#: includes/common/class-mp-order.php:770 +#: includes/public/class-mp-checkout.php:354 +msgid "Company" +msgstr "Compañia" + +#: includes/public/class-mp-checkout.php:330 +msgid "Last" +msgstr "Último" + +#: includes/public/class-mp-checkout.php:321 +msgid "First" +msgstr "Primero" + +#: includes/public/class-mp-checkout.php:284 +msgid "State/Province" +msgstr "Estado/Provincia" + +#: includes/public/class-mp-checkout.php:83 +msgid "Review Order/Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing/Shipping Address" +msgstr "" + +#: includes/public/class-mp-checkout.php:80 +msgid "Login/Register" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:530 +msgid "Marketplace" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:523 +msgid "Global Marketplace Pages" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +msgid "Store Network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +#: includes/multisite/class-mp-admin-multisite.php:494 +msgid "Store Network Settings" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:440 +msgid "Set theme access permissions for network stores. For a custom css theme, save your css file with the MarketPress Theme: NAME header in the /marketpress/ui/themes/ folder and it will appear in this list so you may select it." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:361 +msgid "Choose a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:336 +msgid "%d products get indexed" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:285 +msgid "Product Indexer" +msgstr "Indexador de productos" + +#: includes/multisite/class-mp-admin-multisite.php:281 +msgid "Please hold on..." +msgstr "Favor de esperar..." + +#: includes/multisite/class-mp-admin-multisite.php:280 +msgid "Index Products" +msgstr "Índice de productos" + +#: includes/multisite/class-mp-admin-multisite.php:279 +msgid "%d products have been indexed in whole network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:182 +msgid "Enable Global Shopping Cart?" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:178 +msgid "Limit Global Widgets/Shortcodes To Main Blog?" +msgstr "" + +#: includes/common/template-functions.php:2802 +#: includes/multisite/template-functions.php:355 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:97 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:114 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:143 +msgid "Next" +msgstr "Siguiente" + +#: includes/common/template-functions.php:2801 +#: includes/multisite/template-functions.php:354 +msgid "Prev" +msgstr "Anterior" + +#: includes/common/template-functions.php:2597 +msgid "Tagged in " +msgstr "" + +#: includes/common/template-functions.php:2196 +#: includes/common/template-functions.php:2202 +#: includes/common/template-functions.php:2214 +#: includes/common/template-functions.php:2217 +msgid "Oops! We couldn't locate any orders matching that order number. Please verify the order number and try again." +msgstr "" + +#: includes/common/template-functions.php:2138 +msgid "Look Up" +msgstr "" + +#: includes/common/template-functions.php:1423 +msgid "Please choose a shipping method" +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "If you have your order ID you can look it up using the form below." +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "Order Search" +msgstr "Buscar orden" + +#: includes/common/template-functions.php:910 +#: includes/public/class-mp-checkout.php:1440 +msgid "Cart" +msgstr "Carrito" + +#: includes/common/template-functions.php:895 +msgid "[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:887 +msgid "[mp_global_categories_list]" +msgstr "" + +#: includes/common/template-functions.php:880 +msgid "" +"Welcome to our market place!\n" +"\n" +"Check out our network of products:\n" +"\n" +"[mp_list_global_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_global_categories_list]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:879 +msgid "Global Store" +msgstr "" + +#: includes/common/template-functions.php:873 +msgid "" +"Welcome to our online store! Feel free to browse around:\n" +"\n" +"[mp_store_navigation]\n" +"\n" +"Check out our most popular products:\n" +"\n" +"[mp_popular_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_list_categories]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_tag_cloud]" +msgstr "" +"Bienvenido a nuestra tienda en linea! Te invitamos a echar un vistazo:\n" +"\n" +"[mp_store_navigation]\n" +"\n" +"Checa nuestros productos mas populares:\n" +"\n" +"[mp_popular_products]\n" +"\n" +"Busca por categoria:\n" +"\n" +"[mp_list_categories]\n" +"\n" +"Busca por etiqueta:\n" +"\n" +"[mp_tag_cloud]" + +#: includes/common/shipping-modules/mp-weight-rate.php:127 +msgid "If cart weight is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "Si el peso es igual o más grande a este valor entonces las tarifas de esa fila se usarán durante la compra." + +#: includes/common/shipping-modules/mp-weight-rate.php:126 +msgid "Cart Weight" +msgstr "Peso" + +#: includes/common/shipping-modules/mp-usps.php:222 +msgid "Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:206 +msgid "Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:196 +msgid "Retail Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:195 +msgid "Online Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:193 +msgid "Rates Request Type" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:189 +msgid "Maximum Weight Per Package" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:195 +#: includes/common/shipping-modules/mp-usps.php:236 +msgid "Enter your standard box sizes as LengthxWidthxHeight (e.g. 12x8x6) For each box defined enter the maximum weight it can contain. Note: the shipping prices this plugin calculates are estimates. If they are consistently too low or too high, please check that the list of boxes above and the product weights are accurate and complete." +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:187 +msgid "Handling Charge Per Box Shipped" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:176 +#: includes/common/shipping-modules/mp-ups.php:181 +msgid "Offered Services" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:165 +msgid "Shipper Number" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:151 +msgid "User ID" +msgstr "Identificación del usuario" + +#: includes/common/shipping-modules/mp-ups.php:144 +msgid "Developer Kit Access Key" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:140 +msgid "Use Sandbox Mode?" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:123 +msgid "In order to use UPS, you will need a UPS Developer Kit access key and the UPS user ID and password associated with the access key. Set these up for free here. If this information is missing or incorrect, an error will appear during the checkout process and the buyer will not be able to complete the transaction." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:112 +msgid "If cart total is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:111 +msgid "Cart Total" +msgstr "Total del carrito" + +#: includes/common/shipping-modules/mp-table-rate.php:95 +#: includes/common/shipping-modules/mp-weight-rate.php:111 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Don't worry about sorting as this will be done automatically upon saving." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:170 +msgid "Method Title (visible for clients)" +msgstr "Titulo del Método (visible a los clientes)" + +#: includes/common/shipping-modules/mp-fedex.php:409 +#: includes/common/shipping-modules/mp-ups.php:216 +#: includes/common/shipping-modules/mp-usps.php:251 +msgid "Max Weight (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:402 +#: includes/common/shipping-modules/mp-ups.php:209 +#: includes/common/shipping-modules/mp-usps.php:247 +msgid "Size (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:387 +msgid "Enter your standard box sizes as LengthxWidthxHeight ( 12x8x6 ) For each box defined enter the maximum weight it can contain. Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:361 +#: includes/common/shipping-modules/mp-usps.php:229 +msgid "Handling Charge per International Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:353 +msgid "International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:339 +#: includes/common/shipping-modules/mp-usps.php:213 +msgid "Handling Charge per Domestic Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:331 +msgid "Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:321 +msgid "When checked the customer can chose Residential or Commercial delivery with Residential the default. Unchecked it's only Residential rates." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:320 +msgid "Allow Commercial Delivery?" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:315 +msgid "Fedex 10kg Box" +msgstr "Caja FedEx de 10 kg" + +#: includes/common/shipping-modules/mp-fedex.php:314 +msgid "Fedex 25kg Box" +msgstr "Caja FedEx de 25 kg" + +#: includes/common/shipping-modules/mp-fedex.php:313 +msgid "Fedex Box" +msgstr "Caja FedEx" + +#: includes/common/shipping-modules/mp-fedex.php:312 +msgid "Fedex Envelope" +msgstr "Sobre FedEx" + +#: includes/common/shipping-modules/mp-fedex.php:311 +msgid "Fedex Pak" +msgstr "Pak FedEx" + +#: includes/common/shipping-modules/mp-fedex.php:310 +msgid "Fedex Tube" +msgstr "Tubo FedEx" + +#: includes/common/shipping-modules/mp-fedex.php:306 +msgid "Default Packaging" +msgstr "Empaque normal" + +#: includes/common/shipping-modules/mp-fedex.php:294 +msgid "Dropoff Type" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:290 +msgid "Meter ID" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:134 +msgid "This is a residential address" +msgstr "Esta es una dirección residencial" + +#: includes/common/payment-gateways/wepay.php:283 +msgid "There was an error processing your card: \"%s\". Please check your credit card info and try again." +msgstr "Existió un error al procesar su tarjeta: \"%s\". Por favor, verifique que la información de la tarjeta sea correcta e inténtelo nuevamente." + +#: includes/common/payment-gateways/wepay.php:121 +msgid "Wepay makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept cards directly on your site. You don't need a merchant account or gateway. WePay handles everything including storing cards. Credit cards go directly to WePay's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:385 +msgid "There was an error processing your card - \"%s\". Please try again." +msgstr "Existió un error al procesar su tarjeta - \"%s\". Por favor inténtelo nuevamente." + +#: includes/common/payment-gateways/stripe.php:356 +msgid "%s Store Purchase - Order ID - %s, Email - %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:251 +msgid "Stripe makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept Visa, MasterCard, American Express, Discover, JCB, and Diners Club cards directly on your site. You don't need a merchant account or gateway. Stripe handles everything, including storing cards, subscriptions, and direct payouts to your bank account. Credit cards go directly to Stripe's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:192 +msgid "ZMW - Zambian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:191 +msgid "ZAR - South African Rand" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:190 +msgid "YER - Yemeni Rial" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:189 +msgid "XPF - Cfp Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:188 +msgid "XOF - West African Cfa Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:187 +msgid "XCD - East Caribbean Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:186 +msgid "XAF - Central African Cfa Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:185 +msgid "WST - Samoan Tala" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:184 +msgid "VUV - Vanuatu Vatu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:183 +msgid "VND - Vietnamese Đồng" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:182 +msgid "VEF - Venezuelan Bolívar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:181 +msgid "UZS - Uzbekistani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:180 +msgid "UYI - Uruguayan Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:178 +msgid "UGX - Ugandan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:177 +msgid "UAH - Ukrainian Hryvnia" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:176 +msgid "TZS - Tanzanian Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:175 +msgid "TWD - New Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:174 +msgid "TTD - Trinidad and Tobago Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:172 +msgid "TOP - Tongan Paʻanga" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:171 +msgid "TJS - Tajikistani Somoni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:169 +msgid "SZL - Swazi Lilangeni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:168 +msgid "SVC - Salvadoran Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:167 +msgid "STD - São Tomé and Príncipe Dobra" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:166 +msgid "SRD - Surinamese Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:165 +msgid "SOS - Somali Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:164 +msgid "SLL - Sierra Leonean Leone" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:163 +msgid "SHP - Saint Helenian Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:160 +msgid "SCR - Seychellois Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:159 +msgid "SBD - Solomon Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:157 +msgid "RWF - Rwandan Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:156 +msgid "RUB - Russian Ruble" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:155 +msgid "RSD - Serbian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:154 +msgid "RON - Romanian Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:153 +msgid "QAR - Qatari Riyal" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:152 +msgid "PYG - Paraguayan Guaraní*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:151 +msgid "PLN - Polish Złoty" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:150 +msgid "PKR - Pakistani Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:149 +msgid "PHP - Philippine Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:148 +msgid "PGK - Papua New Guinean Kina" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:147 +msgid "PEN - Peruvian Nuevo Sol*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:146 +msgid "PAB - Panamanian Balboa*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:144 +msgid "NPR - Nepalese Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:142 +msgid "NIO - Nicaraguan Córdoba*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:141 +msgid "NGN - Nigerian Naira" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:140 +msgid "NAD - Namibian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:139 +msgid "MZN - Mozambican Metical" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:137 +msgid "MXN - Mexican Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:136 +msgid "MWK - Malawian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:135 +msgid "MVR - Maldivian Rufiyaa" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:134 +msgid "MUR - Mauritian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:133 +msgid "MRO - Mauritanian Ouguiya" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:132 +msgid "MOP - Macanese Pataca" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:131 +msgid "MNT - Mongolian Tögrög" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:130 +msgid "MKD - Macedonian Denar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:129 +msgid "MGA - Malagasy Ariary" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:128 +msgid "MDL - Moldovan Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:126 +msgid "LVL - Latvian Lats" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:124 +msgid "LSL - Lesotho Loti" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:123 +msgid "LRD - Liberian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:122 +msgid "LKR - Sri Lankan Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:121 +msgid "LBP - Lebanese Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:120 +msgid "LAK - Lao Kip*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:119 +msgid "KZT - Kazakhstani Tenge" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:118 +msgid "KYD - Cayman Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:117 +msgid "KRW - South Korean Won" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:116 +msgid "KMF - Comorian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:115 +msgid "KHR - Cambodian Riel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:114 +msgid "KGS - Kyrgyzstani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:113 +msgid "KES - Kenyan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:111 +msgid "JMD - Jamaican Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:110 +msgid "ISK - Icelandic Króna" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:109 +msgid "INR - Indian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:108 +msgid "ILS - Israeli New Sheqel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:107 +msgid "IDR - Indonesian Rupiah" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:105 +msgid "HTG - Haitian Gourde" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:103 +msgid "HNL - Honduran Lempira*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:101 +msgid "GYD - Guyanese Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:100 +msgid "GTQ - Guatemalan Quetzal*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:99 +msgid "GNF - Guinean Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:98 +msgid "GMD - Gambian Dalasi" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:97 +msgid "GIP - Gibraltar Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:96 +msgid "GEL - Georgian Lari" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:94 +msgid "FKP - Falkland Islands Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:93 +msgid "FJD - Fijian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:91 +msgid "ETB - Ethiopian Birr" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:90 +msgid "EGP - Egyptian Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:89 +msgid "EEK - Estonian Kroon*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:88 +msgid "DZD - Algerian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:87 +msgid "DOP - Dominican Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:85 +msgid "DJF - Djiboutian Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:84 +msgid "CZK - Czech Koruna*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:83 +msgid "CVE - Cape Verdean Escudo*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:82 +msgid "CRC - Costa Rican Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:81 +msgid "COP - Colombian Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:80 +msgid "CNY - Chinese Renminbi Yuan" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:79 +msgid "CLP - Chilean Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:77 +msgid "CDF - Congolese Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:76 +msgid "CAD - Canadian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:75 +msgid "BZD - Belize Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:74 +msgid "BWP - Botswana Pula" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:73 +msgid "BSD - Bahamian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:72 +msgid "BRL - Brazilian Real*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:71 +msgid "BOB - Bolivian Boliviano*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:70 +msgid "BND - Brunei Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:69 +msgid "BMD - Bermudian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:68 +msgid "BIF - Burundian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:67 +msgid "BGN - Bulgarian Lev" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:66 +msgid "BDT - Bangladeshi Taka" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:65 +msgid "BBD - Barbadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:64 +msgid "BAM - Bosnia & Herzegovina Convertible Mark" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:63 +msgid "AZN - Azerbaijani Manat" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:62 +msgid "AWG - Aruban Florin" +msgstr "AWG - Aruban Florin" + +#: includes/common/payment-gateways/stripe.php:61 +msgid "AUD - Australian Dollar*" +msgstr "AUD - Dollar* Australiano" + +#: includes/common/payment-gateways/stripe.php:60 +msgid "ARS - Argentine Peso*" +msgstr "ARS - Peso* Argentino" + +#: includes/common/payment-gateways/stripe.php:59 +msgid "AOA - Angolan Kwanza*" +msgstr "AOA - Angolan Kwanza*" + +#: includes/common/payment-gateways/stripe.php:58 +msgid "ANG - Netherlands Antillean Gulden" +msgstr "ANG - Netherlands Antillean Gulden" + +#: includes/common/payment-gateways/stripe.php:57 +msgid "AMD - Armenian Dram" +msgstr "AMD - Armenian Dram" + +#: includes/common/payment-gateways/stripe.php:56 +msgid "ALL - Albanian Lek" +msgstr "ALL - Albanian Lek" + +#: includes/common/payment-gateways/stripe.php:55 +msgid "AFN - Afghan Afghani*" +msgstr "AFN - Afghan Afghani*" + +#: includes/common/payment-gateways/stripe.php:54 +msgid "AED - United Arab Emirates Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:345 +msgid "Skrill balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:327 +msgid "Skrill IPN message received." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:283 +msgid "Skrill" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:278 +msgid "Pending payment" +msgstr "Pago pendiente" + +#: includes/common/payment-gateways/skrill.php:144 +msgid "The secret word must match the word submitted in the \"Merchant Tools\" section of your Skrill account." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:134 +msgid "You must use your valid Skrill merchant email. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:133 +msgid "Skrill Email" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:123 +msgid "Resell your inventory via Skrill.com (Moneybookers)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:95 +msgid "ZAR - South-African Rand" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:93 +msgid "TWD - Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:92 +msgid "TRY - New Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:91 +msgid "TND - Tunisian Dinar" +msgstr "TND - Tunisian Dinar" + +#: includes/common/payment-gateways/skrill.php:90 +msgid "THB - Thailand Baht" +msgstr "THB - Baht Tailandes" + +#: includes/common/payment-gateways/skrill.php:89 +msgid "SKK - Slovakian Koruna" +msgstr "SKK - Koruna Eslovaco" + +#: includes/common/payment-gateways/skrill.php:86 +#: includes/common/payment-gateways/stripe.php:158 +msgid "SAR - Saudi Riyal" +msgstr "SAR - Saudi Riyal" + +#: includes/common/payment-gateways/skrill.php:85 +msgid "RSD - Serbian dinar" +msgstr "RSD - Dinar Serbio" + +#: includes/common/payment-gateways/skrill.php:83 +msgid "QAR - Qatari Rial" +msgstr "QAR - Qatari Rial" + +#: includes/common/payment-gateways/skrill.php:81 +msgid "OMR - Omani Rial" +msgstr "OMR - Omani Rial" + +#: includes/common/payment-gateways/skrill.php:80 +msgid "NOK - Norwegian Krone " +msgstr "NOK - Krone Noruego" + +#: includes/common/payment-gateways/skrill.php:78 +#: includes/common/payment-gateways/stripe.php:138 +msgid "MYR - Malaysian Ringgit" +msgstr "MYR - Malaysian Ringgit" + +#: includes/common/payment-gateways/skrill.php:77 +#: includes/common/payment-gateways/stripe.php:127 +msgid "MAD - Moroccan Dirham" +msgstr "MAD - Marruecos Dirham" + +#: includes/common/payment-gateways/skrill.php:74 +msgid "KRW - South-Korean Won" +msgstr "KRW - Won Sur Coreano" + +#: includes/common/payment-gateways/skrill.php:72 +msgid "JOD - Jordanian Dinar" +msgstr "JOD - Jordania Dinar" + +#: includes/common/payment-gateways/skrill.php:70 +msgid "INR - Indian Rupee" +msgstr "INR - Rupee de la India" + +#: includes/common/payment-gateways/skrill.php:63 +msgid "EEK - Estonian Kroon" +msgstr "EEK - Estonian Kroon" + +#: includes/common/payment-gateways/skrill.php:56 +msgid "AED - Utd. Arab Emir. Dirham" +msgstr "AED - Utd. Arab Emir. Dirham" + +#: includes/common/payment-gateways/skrill.php:52 +msgid "Turkish" +msgstr "Turco" + +#: includes/common/payment-gateways/skrill.php:51 +msgid "Swedish" +msgstr "Sueco" + +#: includes/common/payment-gateways/skrill.php:50 +msgid "Spanish" +msgstr "Español" + +#: includes/common/payment-gateways/skrill.php:49 +msgid "Russian" +msgstr "Ruso" + +#: includes/common/payment-gateways/skrill.php:48 +msgid "Romainian" +msgstr "Rumano" + +#: includes/common/payment-gateways/skrill.php:47 +msgid "Polish" +msgstr "Polaco" + +#: includes/common/payment-gateways/skrill.php:46 +msgid "Italian" +msgstr "Italiano" + +#: includes/common/payment-gateways/skrill.php:45 +msgid "Greek" +msgstr "Griego" + +#: includes/common/payment-gateways/skrill.php:44 +msgid "German" +msgstr "Alemán" + +#: includes/common/payment-gateways/skrill.php:43 +msgid "French" +msgstr "Frances" + +#: includes/common/payment-gateways/skrill.php:42 +msgid "Finnish" +msgstr "Finlandes" + +#: includes/common/payment-gateways/skrill.php:41 +msgid "English" +msgstr "Inglés" + +#: includes/common/payment-gateways/skrill.php:40 +msgid "Dutch" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:39 +msgid "Danish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:38 +msgid "Czech" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:37 +msgid "Chinese" +msgstr "Chino" + +#: includes/common/payment-gateways/simplify.php:201 +msgid "There was an error processing your card: %s. Please re-enter your credit card info and try again." +msgstr "Existió un error al procesar su tarjeta: %s. Por favor, verifique que la información de la tarjeta sea correcta e inténtelo nuevamente." + +#: includes/common/payment-gateways/pin.php:278 +msgid "
  • There was an error processing your card: \"%s\". Please verify your credit card information and try again.
  • " +msgstr "
  • Hubo un error al procesar tu tarjeta: \"%s\". Por favor verifica la información de tu tarjeta e inténtalo de nuevo.
  • " + +#: includes/common/payment-gateways/pin.php:274 +msgid "
  • There was an error processing your card. Please verify your credit card information and try again.
  • " +msgstr "
  • Hubo un error al procesar tu tarjeta. Por favor verifica al información de tu tarjeta e inténtalo de nuevo.
  • " + +#: includes/common/payment-gateways/pin.php:177 +#: includes/common/payment-gateways/stripe.php:279 +msgid "Publishable Key" +msgstr "" + +#: includes/common/payment-gateways/pin.php:163 +msgid "API Credentials?" +msgstr "¿Credenciales de la API?" + +#: includes/common/payment-gateways/pin.php:147 +msgid "PIN makes it easy to start accepting credit card payments with Australia’s first all-in-one online payment system. Accept all major credit cards directly on your site. Your sales proceeds are deposited to any Australian bank account, no merchant account required." +msgstr "" + +#: includes/common/payment-gateways/pin.php:57 +#: includes/common/payment-gateways/stripe.php:179 +msgid "USD - United States Dollar" +msgstr "USD - Dólar Norte Americano" + +#: includes/common/payment-gateways/paypal-payflow.php:455 +msgid "Email Footer" +msgstr "Pie del correo electrónico" + +#: includes/common/payment-gateways/paypal-payflow.php:445 +msgid "Email Header" +msgstr "Encabezado del correo electrónico" + +#: includes/common/payment-gateways/paypal-payflow.php:416 +msgid "Partner" +msgstr "Socio" + +#: includes/common/payment-gateways/paypal-payflow.php:409 +msgid "Vendor" +msgstr "Vendedor" + +#: includes/common/payment-gateways/paypal-express.php:852 +#: includes/common/payment-gateways/paypal-express.php:1126 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences\t section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:749 +msgid "Page Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:744 +msgid "Header Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:739 +msgid "Header Border Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:734 +msgid "Header Image" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:680 +msgid "Locale" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:624 +#: includes/common/payment-gateways/paypal-express.php:658 +msgid "Merchant Email" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:645 +msgid "Paypal Express Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:603 +msgid "Paypal Express Network Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:861 +msgid "Application ID (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:854 +msgid "Signature (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:847 +msgid "API Password (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:839 +msgid "API Username (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:832 +msgid "Signature (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:825 +msgid "API Password (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:817 +msgid "API Username (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:799 +msgid "This message is displayed at the top of the gateway settings page to store admins. It's a good place to inform them of your fees or put any sales messages." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:787 +msgid "Please enter your PayPal email address or business ID you want to recieve fees at." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:786 +msgid "PayPal E-mail" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:772 +msgid "Fees to Collect (%)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:375 +#: includes/public/class-mp-checkout.php:341 +msgid "Email Address" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:299 +msgid "Sorry, your order was not completed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:126 +#: includes/common/payment-gateways/paypal-express.php:780 +msgid "You will be redirected to the PayPal site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:90 +#: includes/common/payment-gateways/skrill.php:94 +msgid "USD - U.S. Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:89 +msgid "TRY - Turkish lira" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:88 +#: includes/common/payment-gateways/stripe.php:170 +msgid "THB - Thai Baht" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:87 +msgid "TWD - Taiwan New Dollars" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:86 +#: includes/common/payment-gateways/pin.php:59 +#: includes/common/payment-gateways/skrill.php:88 +#: includes/common/payment-gateways/stripe.php:162 +msgid "SGD - Singapore Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:84 +msgid "RUB - Russian Rubles" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:82 +msgid "PHP - Philippine Pesos" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:81 +#: includes/common/payment-gateways/pin.php:58 +#: includes/common/payment-gateways/skrill.php:79 +#: includes/common/payment-gateways/stripe.php:145 +msgid "NZD - New Zealand Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:79 +msgid "MXN - Mexican Peso" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:78 +msgid "MYR - Malaysian Ringgits" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:77 +#: includes/common/payment-gateways/pin.php:64 +#: includes/common/payment-gateways/skrill.php:73 +#: includes/common/payment-gateways/stripe.php:112 +msgid "JPY - Japanese Yen" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:75 +#: includes/common/payment-gateways/pin.php:63 +#: includes/common/payment-gateways/skrill.php:66 +#: includes/common/payment-gateways/stripe.php:102 +msgid "HKD - Hong Kong Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:73 +msgid "GBP - Pound Sterling" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:68 +#: includes/common/payment-gateways/pin.php:62 +#: includes/common/payment-gateways/skrill.php:59 +msgid "CAD - Canadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:67 +msgid "BRL - Brazilian Real" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:66 +#: includes/common/payment-gateways/pin.php:56 +#: includes/common/payment-gateways/skrill.php:57 +msgid "AUD - Australian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:288 +msgid "There was an error processing your card: \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:163 +msgid "When running on a live site, Paymill recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:161 +#: includes/common/payment-gateways/pin.php:157 +#: includes/common/payment-gateways/simplify.php:103 +#: includes/common/payment-gateways/stripe.php:260 +#: includes/common/payment-gateways/wepay.php:153 +msgid "Force SSL?" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:151 +msgid "Accept Visa, Mastercard, Maestro UK, Discover and Solo cards directly on your site. You don't need a merchant account or gateway. Credit cards go directly to Paymill's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:131 +msgid "CVV2" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:72 +#: includes/common/payment-gateways/pin.php:61 +#: includes/common/payment-gateways/skrill.php:65 +#: includes/common/payment-gateways/stripe.php:95 +msgid "GBP - British Pound" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:71 +#: includes/common/payment-gateways/stripe.php:173 +msgid "TRY - Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:70 +#: includes/common/payment-gateways/paypal-chained-payments.php:85 +#: includes/common/payment-gateways/skrill.php:87 +#: includes/common/payment-gateways/stripe.php:161 +msgid "SEK - Swedish Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:69 +#: includes/common/payment-gateways/skrill.php:84 +msgid "RON - Romanian Leu New" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:68 +#: includes/common/payment-gateways/paypal-chained-payments.php:83 +#: includes/common/payment-gateways/skrill.php:82 +msgid "PLN - Polish Zloty" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:67 +#: includes/common/payment-gateways/paypal-chained-payments.php:80 +#: includes/common/payment-gateways/stripe.php:143 +msgid "NOK - Norwegian Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:66 +#: includes/common/payment-gateways/skrill.php:75 +#: includes/common/payment-gateways/stripe.php:125 +msgid "LTL - Lithuanian Litas" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:65 +#: includes/common/payment-gateways/paypal-chained-payments.php:69 +#: includes/common/payment-gateways/skrill.php:60 +#: includes/common/payment-gateways/stripe.php:78 +msgid "CHF - Swiss Franc" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:64 +#: includes/common/payment-gateways/skrill.php:76 +msgid "LVL - Latvian Lat" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:63 +#: includes/common/payment-gateways/paypal-chained-payments.php:74 +#: includes/common/payment-gateways/skrill.php:69 +msgid "ILS - Israeli Shekel" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:62 +#: includes/common/payment-gateways/skrill.php:71 +msgid "ISK - Iceland Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:61 +#: includes/common/payment-gateways/paypal-chained-payments.php:76 +#: includes/common/payment-gateways/skrill.php:68 +#: includes/common/payment-gateways/stripe.php:106 +msgid "HUF - Hungarian Forint" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:60 +#: includes/common/payment-gateways/paypal-chained-payments.php:71 +#: includes/common/payment-gateways/skrill.php:62 +#: includes/common/payment-gateways/stripe.php:86 +msgid "DKK - Danish Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:59 +#: includes/common/payment-gateways/skrill.php:67 +#: includes/common/payment-gateways/stripe.php:104 +msgid "HRK - Croatian Kuna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:58 +#: includes/common/payment-gateways/paypal-chained-payments.php:70 +#: includes/common/payment-gateways/skrill.php:61 +msgid "CZK - Czech Koruna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:57 +#: includes/common/payment-gateways/skrill.php:58 +msgid "BGN - Bulgarian Leva" +msgstr "" + +#: includes/common/payment-gateways/payflow/class-mp-gateway-worker-payflow.php:123 +msgid "There was an error connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:344 +msgid "This setting will log all PayFast communication to the \"payfast.log\" file." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:342 +msgid "Log Debugging Info?" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:335 +msgid "DO NOT INPUT A VALUE UNLESS YOU HAVE SET ONE IN THE SETTINGS SECTION OF YOUR PAYFAST SETTINGS." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:333 +msgid "PayFast Passphrase" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:323 +msgid "You can find your credentials on your integration page." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:321 +msgid "PayFast Merchant Credentials" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:311 +msgid "PayFast Mode" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:308 +msgid "PayFast is a payments processing service for South Africa. We make it safe for buyers to send money and easy for sellers to receive money. More Info »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:306 +msgid "PayFast Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:285 +msgid "Your payment via PayFast for this order totaling %s is complete. The transaction number is %s." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:278 +msgid "Your payment via PayFast for this order totaling %s is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:124 +msgid "Your PayFast transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:82 +#: includes/common/payment-gateways/payfast.php:83 +msgid "PayFast" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:157 +msgid "API error: - \"%s\"" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:198 +msgid "The payment request is under process" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:140 +msgid "Order: #" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:116 +msgid "You will be redirected to the Mollie site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:73 +msgid "%sMollie%s provides a fully PCI Compliant and secure way to collect payments via iDeal, Credit Card, Bancontact / Mister Cash, SOFORT Banking, Overbooking, Bitcoin, PayPal, paysafecard and AcceptEmail." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:53 +#: includes/common/payment-gateways/mollie.php:54 +#: includes/common/payment-gateways/mollie.php:195 +#: includes/common/payment-gateways/mollie.php:245 +msgid "Mollie" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:50 +#: includes/common/payment-gateways/paymill.php:56 +#: includes/common/payment-gateways/paypal-chained-payments.php:72 +#: includes/common/payment-gateways/pin.php:60 +#: includes/common/payment-gateways/skrill.php:64 +#: includes/common/payment-gateways/stripe.php:92 +msgid "EUR - Euro" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:306 +msgid "Access Key" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:300 +msgid "You must login to the Mijireh.com dashboard to obtain the Access Key." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:299 +msgid "Credentials" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:289 +msgid "Mijireh Checkout provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:269 +msgid "Mijireh Error: " +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:89 +msgid "You will be redirected to the Mijireh.com site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:87 +msgid "Your Mijireh transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:42 +#: includes/common/payment-gateways/mijireh.php:43 +#: includes/common/payment-gateways/mijireh.php:324 +msgid "Mijireh" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:145 +msgid "These are the manual payment instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:189 +msgid "This is the email text to send to those who have made free order checkouts. You should include your free order instructions / information here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:183 +msgid "This is the free order information to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:182 +msgid "Confirmation User Information" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:177 +msgid "This is the information to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:163 +msgid "If enabled, all free orders will be automatically marked as paid." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:159 +msgid "Payment Status" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:149 +msgid "This gateway is automatically activated if order totalling 0 and it can't be disabled" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:35 +#: includes/common/payment-gateways/free_orders.php:36 +#: includes/common/payment-gateways/free_orders.php:89 +msgid "Free Order" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:34 +#: includes/common/payment-gateways/free_orders.php:197 +msgid "Free Orders" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:515 +msgid "Sandbox API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:266 +#: includes/common/payment-gateways/eway31.php:542 +msgid "eWay Rapid 3.1 Payments (beta)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:403 +msgid "Hosted Payment Page Language" +msgstr "" + +#: includes/common/payment-gateways/eway.php:373 +msgid "Note when testing in sandbox mode it will use the default eWay test API credentials. Also, please note that cart total needs to be a whole number (e.g. 10.00) in order to generate a successful transaction, otherwise the transaction will fail." +msgstr "" + +#: includes/common/payment-gateways/eway.php:267 +msgid "You will be redirected to https://www.eway.com.au to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:380 +msgid "You have chosen to checkout using %s. Please confirm your order details and click \"Submit Order\" when finished." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:272 +#: includes/common/payment-gateways/paymill.php:131 +#: includes/common/payment-gateways/stripe.php:231 +msgid "Security Code " +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Enter in MM/YYYY or MM/YY format" +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Expiration" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:321 +msgid "Delim Data" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:307 +#: includes/common/payment-gateways/paypal-payflow.php:456 +msgid "This text will appear as the footer of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:287 +#: includes/common/payment-gateways/paypal-payflow.php:440 +msgid "Email Customer (on success)" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:278 +msgid "Authorize.net default is \",\". Otherwise, get this from your credit card processor. If the transactions are not going through, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:277 +msgid "Delimeter Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:193 +msgid "Held For Review" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:310 +#: includes/common/payment-gateways/payfast.php:314 +msgid "Test" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:300 +#: includes/common/payment-gateways/pin.php:170 +#: includes/common/payment-gateways/stripe.php:272 +msgid "Secret Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:283 +msgid "Select Your Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:97 +msgid "Your payment will be processed by the iDEAL network" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:208 +msgid "These are the CubePoints to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:203 +msgid "These are the CubePoints instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:266 +msgid "If enabled, all API calls will be made to https://test.bitpay.com." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:263 +msgid "Use Test Mode?" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:259 +msgid "If checked, response fron bitpay will be stored in log file, keep it disabled unless required." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:256 +msgid "Enable Debug Log" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:249 +msgid "Full Notifications" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:231 +#: includes/common/payment-gateways/eway31.php:499 +#: includes/common/payment-gateways/eway31.php:526 +#: includes/common/payment-gateways/mollie.php:83 +#: includes/common/shipping-modules/mp-fedex.php:269 +msgid "API Key" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:222 +msgid "You can now accept a payment from any country on Earth, with no risk of fraud. To use Bitpay, you need to signup on Bitpay. \\n After completing the signup process, you can get api keys at Bitpay API key. You can read more about Bitpay at Bitpay API. \\n Bitpay requires SSL(https) for payment notifications to work." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:61 +msgid "You will be redirected to bitpay.com, for bitcoin payment. It is completely safe." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:346 +msgid "You must login to the 2Checkout vendor dashboard to obtain the seller ID and secret word. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:345 +#: includes/common/payment-gateways/authorizenet-aim.php:239 +#: includes/common/payment-gateways/paymill.php:168 +#: includes/common/payment-gateways/paypal-express.php:704 +#: includes/common/payment-gateways/simplify.php:80 +#: includes/common/payment-gateways/stripe.php:265 +#: includes/common/payment-gateways/wepay.php:158 +msgid "API Credentials" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:325 +#: includes/common/payment-gateways/_bitpay.php:220 +#: includes/common/payment-gateways/_cubepoints.php:185 +#: includes/common/payment-gateways/_ideal.php:268 +#: includes/common/payment-gateways/_payway.php:255 +#: includes/common/payment-gateways/authorizenet-aim.php:219 +#: includes/common/payment-gateways/eway.php:352 +#: includes/common/payment-gateways/eway31.php:460 +#: includes/common/payment-gateways/free_orders.php:147 +#: includes/common/payment-gateways/manual-payments.php:126 +#: includes/common/payment-gateways/mijireh.php:287 +#: includes/common/payment-gateways/mollie.php:71 +#: includes/common/payment-gateways/paymill.php:149 +#: includes/common/payment-gateways/paypal-chained-payments.php:344 +#: includes/common/payment-gateways/paypal-payflow.php:376 +#: includes/common/payment-gateways/pin.php:145 +#: includes/common/payment-gateways/simplify.php:69 +#: includes/common/payment-gateways/skrill.php:121 +#: includes/common/payment-gateways/stripe.php:249 +#: includes/common/payment-gateways/wepay.php:119 +#: includes/common/shipping-modules/mp-fedex.php:243 +#: includes/common/shipping-modules/mp-flat-rate.php:63 +#: includes/common/shipping-modules/mp-pickup.php:140 +#: includes/common/shipping-modules/mp-table-rate.php:94 +#: includes/common/shipping-modules/mp-ups.php:122 +#: includes/common/shipping-modules/mp-usps.php:167 +#: includes/common/shipping-modules/mp-weight-rate.php:110 +msgid "%s Settings" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:136 +msgid "You will be redirected to the 2Checkout site to finalize your payment." +msgstr "" + +#: includes/common/helpers.php:169 includes/public/class-mp-checkout.php:1277 +msgid "Billing" +msgstr "" + +#: includes/common/helpers.php:144 +msgid "FREE" +msgstr "" + +#: includes/common/helpers.php:134 +msgid "Coupons:" +msgstr "" + +#: includes/common/helpers.php:95 +msgid "Qty" +msgstr "" + +#: includes/common/helpers.php:94 +msgid "Sku" +msgstr "" + +#: includes/common/data.php:59 +msgid "Zip Code" +msgstr "" + +#: includes/common/class-mp-taxes.php:336 +msgid "Standard Table" +msgstr "" + +#: includes/common/class-mp-product.php:2698 +msgid "Tweet" +msgstr "" + +#: includes/common/class-mp-product.php:2321 +msgid "Notification Preferences: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2320 +msgid "Edit Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2318 +msgid "Link: %s

    " +msgstr "" + +#: includes/common/class-mp-product.php:2317 +msgid "Current Inventory: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2316 +msgid "Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2314 +msgid "This message is being sent to notify you of low stock of a product in your online store according to your preferences.

    " +msgstr "" + +#: includes/common/class-mp-product.php:1817 +msgid "" +msgstr "" + +#: includes/common/class-mp-product.php:1427 +#: includes/common/class-mp-product.php:1430 +msgid "(tax incl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1422 +#: includes/common/class-mp-product.php:1425 +msgid "(tax excl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1300 +#: includes/common/class-mp-product.php:1315 +msgid "%s each" +msgstr "" + +#: includes/common/class-mp-product.php:988 +msgid "Choose Options" +msgstr "" + +#: includes/common/class-mp-product.php:526 +msgid "Choose a %s" +msgstr "" + +#: includes/common/class-mp-product.php:284 +#: includes/common/class-mp-product.php:292 +#: includes/common/class-mp-product.php:615 +msgid "We're sorry, we only have %d of this item in stock right now." +msgstr "" + +#: includes/common/class-mp-order.php:1456 +msgid "Shipped: Track Shipment" +msgstr "" + +#: includes/common/class-mp-order.php:1049 +msgid "Order Received" +msgstr "" + +#: includes/common/class-mp-order.php:1014 +msgid "In Process" +msgstr "" + +#: includes/common/class-mp-order.php:969 +msgid "Order #" +msgstr "" + +#: includes/common/class-mp-order.php:866 +msgid "Copy billing address to shipping address" +msgstr "" + +#: includes/common/class-mp-order.php:822 +#: includes/public/class-mp-checkout.php:1314 +msgid "Special Instructions" +msgstr "" + +#: includes/common/class-mp-order.php:817 +#: includes/common/payment-gateways/stripe.php:335 +msgid "Email" +msgstr "" + +#: includes/common/class-mp-order.php:813 +#: includes/common/payment-gateways/stripe.php:341 +#: includes/public/class-mp-checkout.php:416 +msgid "Phone" +msgstr "" + +#: includes/common/class-mp-order.php:791 +#: includes/common/payment-gateways/stripe.php:337 +msgid "State" +msgstr "" + +#: includes/common/class-mp-order.php:776 +msgid "Address 1" +msgstr "" + +#: includes/common/class-mp-order.php:766 +msgid "Last Name" +msgstr "" + +#: includes/common/class-mp-order.php:762 +msgid "First Name" +msgstr "" + +#: includes/common/class-mp-installer.php:677 +msgid "MarketPress requires a database update to continue working correctly. Go to update page" +msgstr "" + +#: includes/common/class-mp-installer.php:657 +msgid "MarketPress performed a quick automatic update successfully!" +msgstr "" + +#: includes/common/class-mp-installer.php:653 +msgid "Perform Update" +msgstr "" + +#: includes/common/class-mp-installer.php:647 +msgid "Please update each subsite in your WordPress network where you have older version of the MarketPress plugin." +msgstr "" + +#: includes/common/class-mp-installer.php:641 +msgid "Depending on the amount of products you have, this update could take quite some time. Please keep this window open while the update completes. If you have products with multiple variations, the progress bar may move slower, please don't exit the window." +msgstr "" + +#: includes/common/class-mp-installer.php:632 +msgid "Product Metadata" +msgstr "" + +#: includes/common/class-mp-installer.php:601 +msgid "MarketPress requires a database update to continue working correctly.
    Below you will find a list of items that require your attention." +msgstr "" + +#: includes/common/class-mp-installer.php:600 +msgid "Update MarketPress Data" +msgstr "" + +#: includes/common/class-mp-installer.php:530 +msgid "Update Data" +msgstr "" + +#: includes/common/class-mp-installer.php:67 +msgid "Complete!" +msgstr "" + +#: includes/common/class-mp-installer.php:66 +msgid "Upgrading Database...Please Wait..." +msgstr "" + +#: includes/common/class-mp-installer.php:64 +msgid "An error occurred while updating. Please refresh this page and try again." +msgstr "" + +#: includes/common/class-mp-cart.php:2447 +msgid "Some items in your cart have fallen below the quantity you currently have in your cart. We have adjusted the quantity in your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:2443 +msgid "Some items in your cart are no longer available. We have removed these items from your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:1566 +msgid "item" +msgstr "" + +#: includes/common/class-mp-cart.php:1563 +#: includes/common/class-mp-cart.php:1568 +msgid "items" +msgstr "" + +#: includes/common/class-mp-cart.php:1363 +msgid "Items/Products added to Cart will show here." +msgstr "" + +#: includes/common/class-mp-cart.php:1362 +msgid "Your shopping cart is empty." +msgstr "" + +#: includes/common/class-mp-cart.php:1357 +msgid "View Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1241 +#: includes/common/class-mp-cart.php:1298 +#: includes/public/class-mp-short-codes.php:159 +msgid "Adding..." +msgstr "" + +#: includes/common/class-mp-cart.php:1033 +msgid "Continue Shopping?" +msgstr "" + +#: includes/common/class-mp-cart.php:961 +msgid "Secure Checkout
    Shopping is always safe and secure." +msgstr "" + +#: includes/common/class-mp-cart.php:959 +msgid "You are about to submit your order!
    Please review your order details before continuing. You will be charged immediately upon clicking \"Submit Order\"." +msgstr "" + +#: includes/common/class-mp-cart.php:956 +msgid "Continue »" +msgstr "" + +#: includes/common/class-mp-cart.php:955 +msgid "Submit Order" +msgstr "" + +#: includes/common/class-mp-cart.php:818 +msgid "There are no items in your cart - go add some !" +msgstr "" + +#: includes/common/class-mp-cart.php:816 +msgid "The cart is disabled." +msgstr "" + +#: includes/common/class-mp-cart.php:735 +msgid "Estimated %s" +msgstr "" + +#: includes/common/class-mp-cart.php:717 +msgid "Estimated Shipping" +msgstr "" + +#: includes/common/class-mp-cart.php:697 +msgid "Product Total" +msgstr "" + +#: includes/common/class-mp-cart.php:670 includes/common/class-mp-cart.php:672 +msgid "Estimated Total (%s, %s)" +msgstr "" + +#: includes/common/class-mp-cart.php:668 +msgid "Estimated Total (%s)" +msgstr "" + +#: includes/common/class-mp-cart.php:666 includes/common/class-mp-cart.php:752 +msgid "Estimated Total" +msgstr "" + +#: includes/admin/widgets/product-list.php:247 +msgid "Show Thumbnail Placeholder image (if image is not set)" +msgstr "" + +#: includes/admin/widgets/cart.php:73 +msgid "Display product price" +msgstr "" + +#: includes/admin/widgets/cart.php:71 +msgid "Display product quantity" +msgstr "" + +#: includes/admin/widgets/cart.php:69 +msgid "Display product image" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:93 +msgid "General Shipping Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:773 +msgid "If you are having conflicts with the lightbox library from your theme or another plugin you should uncheck this." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:772 +msgid "Use Built-In Lightbox for Images?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:762 +msgid "Disable Large Image Display?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:688 +msgid "Show Product Image?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:682 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:684 +msgid "Show Tags List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:676 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:678 +msgid "Show Categories List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:671 +msgid "If enabled, description excerpt will be added above Add to cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:669 +msgid "Show Excerpt?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:665 +msgid "If enabled, users will be able to choose how many of the product they want to purchase before adding to their cart. If not checked, quantity could be change later on the cart page." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:663 +msgid "Show Quantity Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:649 +msgid "Settings related to the display of individual product pages." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:648 +msgid "Product Page Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:605 +msgid "Related Products Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:573 +msgid "Show Related Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:568 +msgid "Related Product Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:549 +msgid "Order Status Entries Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:510 +msgid "Sort Products By" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:497 +msgid "Products Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:492 +msgid "Paginate Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:478 +msgid "Excerpts Length" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:473 +msgid "Show Excerpts?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:450 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:746 +msgid "Image Alignment" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:412 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:708 +msgid "Custom Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:401 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:697 +msgid "Large - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:400 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:696 +msgid "Medium - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:399 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:695 +msgid "Thumbnail - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:397 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:693 +msgid "Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:386 +msgid "Select default placeholder image thumbnail when product image is not available (if empty, plugin's built-in image will be used)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:380 +msgid "Show default product placeholder thumbnail when product image is not available?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:374 +msgid "Show Product Thumbnail?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:369 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:658 +msgid "Redirect to cart page for immediate checkout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:368 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:657 +msgid "Stay on current product page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:366 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:655 +msgid "MarketPress supports two \"flows\" for adding products to the shopping cart. After adding a product to their cart, two things can happen:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:365 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:654 +msgid "Add To Cart Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:355 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:628 +msgid "Four" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:354 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:627 +msgid "Three" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:353 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:626 +msgid "Two" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:625 +msgid "One" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:349 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:622 +msgid "Set the number of products that show up in a grid row to best fit your theme" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:348 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:621 +msgid "How many products per row?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:342 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:609 +msgid "Display as grid" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:341 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:608 +msgid "Display as list" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:339 +msgid "Product Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:334 +msgid "Settings related to the display of product lists/grids." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:333 +msgid "Product List/Grid Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:314 +msgid "Show Twitter Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:309 +msgid "Twitter" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:303 +msgid "Show Share Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:297 +msgid "Recommend" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:296 +msgid "Like" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:294 +msgid "Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:283 +msgid "Show Facebook Like Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:278 +msgid "Facebook" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:257 +msgid "Show \"Pin It\" Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:252 +msgid "Pinterest" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:246 +msgid "Social Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:193 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:202 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:211 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:220 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:229 +#: includes/multisite/class-mp-admin-multisite.php:532 +#: includes/multisite/class-mp-admin-multisite.php:541 +#: includes/multisite/class-mp-admin-multisite.php:550 +msgid "Choose a Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:191 +msgid "This page will be used as the root for your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:168 +#: includes/multisite/class-mp-admin-multisite.php:586 +msgid "Create Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "uncropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "cropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:87 +#: includes/multisite/class-mp-admin-multisite.php:121 +#: includes/multisite/class-mp-admin-multisite.php:620 +msgid "An error occurred while creating the store page. Please try again." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:66 +msgid "Choose the gateway(s) that you would like to be available for checkout." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:65 +msgid "Enabled Gateways" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:78 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:146 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:179 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:213 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:274 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:307 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:341 +msgid "Text" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:71 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:139 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:172 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:206 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:267 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:300 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:334 +msgid "Subject" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:52 +msgid "Notification Email" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:510 +msgid "Enabling this option will display label `excl. tax` or `incl. tax` after price" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:509 +msgid "Display tax label?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:504 +msgid "Enabling this option will show Price + Tax, eg. if your price is 100 and your tax 20, your price will be 120" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:416 +#: includes/multisite/class-mp-admin-multisite.php:234 +msgid "Price Format" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:366 +msgid "Enabling this field will display a textbox on the shipping checkout page for users to enter special instructions for their order. Useful for product personalization, etc." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:365 +msgid "Show Special Instructions Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:360 +msgid "Universal" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:359 +msgid "Old" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1167 +#: includes/admin/store-settings/class-mp-store-settings-general.php:358 +msgid "New" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:353 +msgid "If you already use Google Analytics for your website, you can track detailed ecommerce information by enabling this setting. Choose whether you are using the new asynchronous or old tracking code. Before Google Analytics can report ecommerce activity for your website, you must enable ecommerce tracking on the profile settings page for your website. Also keep in mind that some gateways do not reliably show the receipt page, so tracking may not be accurate in those cases. It is recommended to use the PayPal gateway for the most accurate data. More information »" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:347 +msgid "Do you want to display the product price on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:346 +msgid "Show product price on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:340 +msgid "Do you want to display the product quantity on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:339 +msgid "Show product quantity on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:333 +msgid "Do you want to display the product image on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:332 +msgid "Show product image on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:327 +msgid "This option hide floating Mini Cart in top right corner." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:326 +msgid "Disable Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:316 +msgid "If unchecked your Orders admin page will be hidden" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:315 +msgid "Show admin Orders page?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:309 +msgid "Disable Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:303 +msgid "Force Login?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:297 +msgid "Hide Out of Stock Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:555 +msgid "This will prevent multiples of the same downloadable product form being added to the cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:554 +msgid "Limit Digital Products Per-order?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:268 +msgid "If you're having issues downloading large files and have worked with your hosting provider to increase your memory limits, try enabling this - just keep in mind, it's not as secure!" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:267 +msgid "Use Alternative Download Method?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:252 +msgid "Download Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:230 +msgid "Change product post type" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:51 +msgid "%s Capabilities" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-addons.php:47 +msgid "Store Settings: Add Ons: %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:254 +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:56 +msgid "Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Edit Product Attribute %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:246 +msgid "Exporters" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:238 +msgid "Short Codes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:207 +msgid "An appropriate message for key \"%s\" could not be found." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:204 +msgid "Product attribute updated successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:203 +msgid "Product attribute added successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +msgid "Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +#: includes/admin/store-settings/class-mp-store-settings-addons.php:121 +msgid "Store Settings: Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "Store Settings: Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:118 +msgid "Store Settings: Product Tags" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:117 +msgid "Store Settings: Product Categories" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Store Settings: Product Attributes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +msgid "Store Settings: Payments" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:114 +msgid "Store Settings: Shipping" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +#: includes/admin/class-mp-store-settings-admin.php:226 +msgid "Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +msgid "Store Settings: Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:112 +msgid "Store Settings: Presentation" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:111 +msgid "Store Settings: General" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1489 +msgid "Select a Product" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1447 +msgid "Reset to Defaults" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1446 +msgid "Insert Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1202 +#: includes/admin/class-mp-shortcode-builder.php:1227 +#: includes/admin/class-mp-shortcode-builder.php:1252 +msgid "The text to show in the link." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1196 +#: includes/admin/class-mp-shortcode-builder.php:1221 +#: includes/admin/class-mp-shortcode-builder.php:1246 +msgid "Whether to return a clickable link or url." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1177 +msgid "Whether to display the cart only on store pages or not." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1171 +msgid "Whether to show or hide the product price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1165 +msgid "Whether to show or hide the product quantity." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1159 +msgid "Whether to show or hide the product image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1153 +msgid "The text displayed before the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1147 +msgid "The title of the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1058 +#: includes/admin/class-mp-shortcode-builder.php:1121 +msgid "A label to prepend to the price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1032 +#: includes/admin/class-mp-shortcode-builder.php:1127 +msgid "What context for display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1004 +msgid "Set the alignment of the image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:998 +msgid "Set a custom pixel width/height. If omitted defaults to the size set by \"context\"." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:993 +msgid "Widget" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:988 +msgid "What context for preset size options." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:982 +#: includes/admin/class-mp-shortcode-builder.php:1026 +#: includes/admin/class-mp-shortcode-builder.php:1052 +#: includes/admin/class-mp-shortcode-builder.php:1077 +#: includes/admin/class-mp-shortcode-builder.php:1096 +#: includes/admin/class-mp-shortcode-builder.php:1115 +msgid "The ID of the product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:963 +msgid "Whether to display the product meta (e.g. price, buy button)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:738 +#: includes/admin/class-mp-shortcode-builder.php:905 +#: includes/admin/class-mp-shortcode-builder.php:958 +#: includes/admin/class-mp-shortcode-builder.php:992 +#: includes/admin/class-mp-shortcode-builder.php:1035 +#: includes/admin/class-mp-shortcode-builder.php:1130 +#: includes/admin/class-mp-shortcode-builder.php:1349 +msgid "List" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:957 +#: includes/admin/class-mp-shortcode-builder.php:991 +#: includes/admin/class-mp-shortcode-builder.php:1034 +#: includes/admin/class-mp-shortcode-builder.php:1129 +msgid "Single" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:953 +msgid "Whether and what context of image size to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:948 +msgid "Full" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:943 +msgid "Whether and what type of content to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:937 +msgid "Whether to display the product title." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:931 +msgid "The ID of the product to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:747 +#: includes/admin/class-mp-shortcode-builder.php:914 +msgid "Hide" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:746 +#: includes/admin/class-mp-shortcode-builder.php:913 +msgid "Show" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:744 +#: includes/admin/class-mp-shortcode-builder.php:911 +msgid "Whether or not to show the product filters." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:724 +#: includes/admin/class-mp-shortcode-builder.php:891 +#: includes/admin/class-mp-shortcode-builder.php:1335 +msgid "Limits list to a specific product tag." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:713 +#: includes/admin/class-mp-shortcode-builder.php:880 +#: includes/admin/class-mp-shortcode-builder.php:1324 +msgid "Limits list to a specific product category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:706 +#: includes/admin/class-mp-shortcode-builder.php:873 +#: includes/admin/class-mp-shortcode-builder.php:1317 +msgid "Direction to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:684 +#: includes/admin/class-mp-shortcode-builder.php:851 +#: includes/admin/class-mp-shortcode-builder.php:1295 +msgid "What field to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:678 +#: includes/admin/class-mp-shortcode-builder.php:845 +#: includes/admin/class-mp-shortcode-builder.php:1283 +msgid "How many products to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:672 +#: includes/admin/class-mp-shortcode-builder.php:839 +#: includes/admin/class-mp-shortcode-builder.php:1277 +msgid "The page number to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:666 +#: includes/admin/class-mp-shortcode-builder.php:833 +#: includes/admin/class-mp-shortcode-builder.php:1271 +msgid "Whether to paginate the product list. This is useful to only show a subset." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:808 +msgid "How many related items to show." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:790 +msgid "How to relate the products" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:784 +msgid "The product to show related items for." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:765 +msgid "The maximum number of products to display" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:647 +msgid "Comma separated list of tags (term_id) to include. For example, include=5,27 means tags that have the term_id 5 or 27 will be the only tags displayed. Defaults to include everything." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:641 +msgid "Comma separated list of tags (term_id) to exclude. For example, exclude=5,27 means tags that have the term_id 5 or 27 will NOT be displayed. Defaults to exclude nothing." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:633 +#: includes/admin/class-mp-shortcode-builder.php:1420 +msgid "Sort order." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:629 +#: includes/admin/class-mp-shortcode-builder.php:1416 +msgid "Count" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:626 +#: includes/admin/class-mp-shortcode-builder.php:1413 +msgid "Order of the tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:620 +msgid "The text/space between tags)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:616 +msgid "UL with a class of \"wp-tag-cloud\"" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:615 +msgid "separated by whitespace defined by \"separator\" parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:613 +msgid "Format of the cloud display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:607 +msgid "The number of actual tags to display in the cloud. (Use \"0\" to display all tags.)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:601 +msgid "Unit of measure as pertains to the smallest and largest values. This can be any CSS length value, e.g. pt, px, em, %." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:595 +msgid "The text size of the tag with the largest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:589 +msgid "The text size of the tag with the smallest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:570 +msgid "The \"tabindex\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:564 +msgid "The \"name\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:558 +msgid "The \"id\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:552 +msgid "Which category ID is selected." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:540 +msgid "The max depth. This is ignored unless hierarchical is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:536 +#: includes/multisite/template-functions.php:816 +msgid "No Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:414 +#: includes/admin/class-mp-shortcode-builder.php:546 +msgid "Calculates link or post counts by including items from child categories. If show_counts and hierarchical are true this is automatically set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:409 +msgid "Value of n (some number) specifies the depth (or level) to descend in displaying Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:408 +msgid "Show only top level Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:407 +msgid "All Categories displayed in flat (no indent) form (overrides hierarchical)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:406 +msgid "All Categories and child Categories (Default)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:402 +msgid "This parameter controls how many levels in the hierarchy of Categories are to be included in the list of Categories. NOTE: The \"hierarchical\" argument, which is disabled by default, will override the depth argument, unless it is true. When the argument is false, it will display all of the categories. When it is enabled it will use the value in the \"depth\" argument." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:396 +#: includes/admin/class-mp-shortcode-builder.php:1394 +msgid "Sets the number of Categories to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:390 +#: includes/admin/class-mp-shortcode-builder.php:534 +msgid "Set the text to show when no categories are listed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:384 +msgid "Set the title and style of the outer list item. If present but empty, the outer list item will not be displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:378 +#: includes/admin/class-mp-shortcode-builder.php:528 +msgid "Display sub-categories as inner list items (below the parent list item) or inline." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:368 +#: includes/admin/class-mp-shortcode-builder.php:511 +msgid "Exclude category-tree from the results. The parameter include must be empty. If the hierarchical parameter is true, then use exclude instead of exclude_tree." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:354 +msgid "Only include these categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:340 +#: includes/admin/class-mp-shortcode-builder.php:356 +#: includes/admin/class-mp-shortcode-builder.php:370 +#: includes/admin/class-mp-shortcode-builder.php:496 +#: includes/admin/class-mp-shortcode-builder.php:513 +msgid "Select Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:338 +#: includes/admin/class-mp-shortcode-builder.php:494 +msgid "Exclude one or more categories from the results. The parameter include must be empty." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:332 +msgid "Set a URI for an image (usually an rss feed icon) to act as a link to each categories' rss-2 feed. This parameter overrides the feed parameter. There is no default for this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:320 +msgid "Display a link to each category's rss-2 feed and set the link text to display. The default is no text and no feed displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:313 +#: includes/admin/class-mp-shortcode-builder.php:487 +msgid "Any" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:307 +#: includes/admin/class-mp-shortcode-builder.php:481 +msgid "Only display categories that are children of the category identified by this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:301 +msgid "Sets whether a category's description is inserted into the title attribute of the links created (i.e. <a title=\"<em>Category Description</em>\" href=\"...)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:295 +#: includes/admin/class-mp-shortcode-builder.php:475 +msgid "Toggles the display of categories with no posts." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:289 +#: includes/admin/class-mp-shortcode-builder.php:469 +#: includes/admin/class-mp-shortcode-builder.php:1388 +msgid "Toggles the display of the current count of posts in each category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:279 +msgid "Style to display the categories list in. A value of list displays the categories as list items while none generates no special display method (the list items are separated by
    tags)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:269 +#: includes/admin/class-mp-shortcode-builder.php:449 +#: includes/admin/class-mp-shortcode-builder.php:1378 +msgid "Sort order for categories (either ascending or descending)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:259 +#: includes/admin/class-mp-shortcode-builder.php:439 +#: includes/admin/class-mp-shortcode-builder.php:1368 +msgid "Sort categories alphabetically, by unique Category ID, or by the count of posts in that Category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:253 +#: includes/admin/class-mp-shortcode-builder.php:433 +msgid "If a value is entered, causes the display of a link to all categories if the style is set to list." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:219 +msgid "Select an Action" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:217 +msgid "What would you like to do?" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:216 +#: includes/admin/class-mp-shortcode-builder.php:1522 +msgid "Add E-Commerce Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:197 +msgid "Display a list of links to your store pages." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:196 +msgid "Display a link or url to the order status page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:195 +msgid "Display a link or url to the current products list page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:194 +msgid "Display a link or url to the current store page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:193 +msgid "Display a link or url to the current shopping cart page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:192 +msgid "Display the cart widget." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:191 +msgid "Display the full product meta box with price and buy now/add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:190 +msgid "Display the product stock." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:189 +msgid "Display the product SKU number(s)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:188 +msgid "Display the product price (and sale price)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:187 +msgid "Display the buy or add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:186 +msgid "Display the featured image of a given product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:185 +msgid "Display a single product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:184 +msgid "Display a list of products according to preference." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:183 +msgid "Display products related to the one being viewed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:182 +msgid "Display a list of popular products ordered by sales." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:180 +msgid "Display an HTML dropdown of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:179 +msgid "Display an HTML list of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:178 +msgid "Display a cloud or list of your product tags." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:655 +msgid "Setup your payment gateway" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:643 +#: includes/admin/class-mp-setup-wizard.php:649 +msgid "Other Gateways" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:617 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:150 +msgid "Select which calculated shipping methods the customer will be able to choose from." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:601 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:134 +#: includes/public/class-mp-checkout.php:82 +msgid "Shipping Method" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:568 +msgid "I want to charge shipping" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:523 +#: includes/admin/store-settings/class-mp-store-settings-general.php:503 +msgid "Show Price + Tax?" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:507 +msgid "I.e. Taxes, VAT, GST, etc" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:491 +#: includes/admin/store-settings/class-mp-store-settings-general.php:471 +msgid "Current Rates" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:473 +msgid "Default Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:434 +#: includes/admin/class-mp-setup-wizard.php:442 +#: includes/admin/store-settings/class-mp-store-settings-general.php:386 +#: includes/admin/store-settings/class-mp-store-settings-general.php:394 +#: includes/multisite/class-mp-admin-multisite.php:204 +#: includes/multisite/class-mp-admin-multisite.php:212 +msgid "Select a Currency" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:414 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:105 +msgid "Choose Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:411 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:103 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:104 +msgid "All Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:410 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:102 +msgid "These are the countries that you will ship to." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:409 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:101 +msgid "Target Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:401 +msgid "Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:387 +#: includes/admin/store-settings/class-mp-store-settings-general.php:640 +msgid "Zip/Postal Code Label" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:352 +#: includes/admin/store-settings/class-mp-store-settings-general.php:606 +msgid "Select a State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:335 +#: includes/admin/store-settings/class-mp-store-settings-general.php:590 +msgid "Select A Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:332 +#: includes/admin/store-settings/class-mp-store-settings-general.php:587 +msgid "Select a Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:324 +msgid "Location" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:304 +#: includes/admin/class-mp-setup-wizard.php:312 +#: includes/admin/class-mp-store-settings-admin.php:129 +#: includes/admin/class-mp-store-settings-admin.php:262 +msgid "Quick Setup" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:289 +msgid "MarketPress setup is not complete! Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2479 +msgid "Enter your product name here" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2440 +msgid "Select a %s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2426 +msgid "Each product variation needs to have product attributes assigned to it so the system knows how to differentiate one product variation from the other. It is important that you assign a category to this product before choosing any attributes." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2409 +msgid "If you would like this variation to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2320 +msgid "Sale Price (if applicable)" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2281 +msgid "If you would like the description to be different than the main product enter it here." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2229 +msgid "Image" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2202 +#: includes/admin/class-mp-shortcode-builder.php:226 +msgid "Attributes" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2166 +msgid "Create your product variations here. You can reorder variations by using the number to left of each variation, or delete one by clicking the \"x\" to the right of each variation. NOTE: The variation that shows up first in this list will be considered the \"main variation\". The details from this variation will be used in product listings." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2061 +#: includes/admin/class-mp-products-admin.php:2332 +msgid "Value must be less than regular price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2043 +#: includes/admin/class-mp-products-admin.php:2306 +msgid "Regular Price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2023 +#: includes/admin/class-mp-products-admin.php:2286 +msgid "External URL" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1988 +#: includes/admin/class-mp-products-admin.php:2245 +msgid "Enter the quantity that you have available to sell." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1987 +#: includes/admin/class-mp-products-admin.php:2244 +msgid "Inventory Count" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1977 +#: includes/admin/class-mp-products-admin.php:2234 +msgid "Track Inventory?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1871 +msgid "%1$sProduct Images%2$s %3$sAdd images of the product. The first image on the list is the featured image for this product (you can reorder images on the list)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1806 +msgid "Add variations for this product. e.g. If you are selling t-shirts, you can create Color & Size variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1804 +msgid "%3$sAdd variations for%2$s %1$sProduct%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1776 +msgid "This product has a multiple variations %1$s(e.g. Multiple colors, sizes)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1775 +msgid "This is a unique product without variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1700 +msgid "Extra Shipping Cost %1$s(if applicable)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1659 +#: includes/admin/class-mp-products-admin.php:2112 +#: includes/admin/class-mp-products-admin.php:2359 +msgid "Weight" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1636 +#: includes/admin/class-mp-products-admin.php:2098 +#: includes/admin/class-mp-products-admin.php:2416 +msgid "Please enter a valid tax rate" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1531 +msgid "Limit Per Order %1$s(limit the number of the item a shopper can buy per order)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1513 +msgid "SKU %1$s(Stock Keeping Unit)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "%1$sPrice, Inventory & Variants%2$s %3$sSet price, manage inventory and create Product Variants (if appropriate for your product).%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "Product Variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1480 +msgid "External / Affiliate Link" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1471 +msgid "Digital Download" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1470 +msgid "Physical / Tangible Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1464 +msgid "Product Kind %1$s(Physical Product, Digital, etc)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1426 +msgid "Choose Products" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1420 +msgid "If you would like, you can choose specific related products instead of using the ones generated by MarketPress" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1019 +msgid "Changes saved successfully" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:826 +msgid "Option cannot be saved. Try again." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:821 +msgid "Option saved successfully." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:467 +msgid "Img" +msgstr "" + +#: includes/admin/class-mp-product-attributes-list-table.php:57 +msgid "Product attribute(s) deleted successfully." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:162 +msgid "- Create New Variation -" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:144 +msgid "Only lowercase letters and dashes (-) are allowed." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:139 +msgid "If a slug is not entered, it will be generated automatically. Max 32 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:138 +#: includes/admin/class-mp-product-attributes-list-table.php:23 +msgid "Slug" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:130 +msgid "Max 45 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:123 +msgid "Use the numbers on the left to sort. To delete - click the \"X\" to the right of each row." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:122 +msgid "Attribute Options" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:121 +msgid "Add Option" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:105 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:523 +msgid "Sort Order" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:87 +msgid "Alphabetical" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:86 +msgid "ID" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:84 +msgid "Select how the options will be sorted." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:82 +msgid "Sort By" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:75 +msgid "The name of the attribute (e.g. color, size, etc)" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:74 +msgid "Attribute Name" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:69 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Product Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Product Attributes" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:71 +msgid "You can choose to make this page one of the following core store pages." +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:66 +msgid "Network Store Base" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:61 +msgid "Checkout Page" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:52 +msgid "Store Page Settings" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1108 +msgid "Display billing/shipping info for this customer" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1097 +msgid "View order “%s”" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1072 +msgid "Flag as:" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:952 +msgid "Move To Trash" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:948 +msgid " Received" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:927 +msgid "Enter coupon code here" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:812 +msgid "The order status could not be updated due to unexpected error. Please try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:740 +msgid "An invalid bulk action was requested. Please go back and try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:692 +msgid "The order status for order ID %1$s was updated successfully." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:688 +msgid "Order statuses successfully updated." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:530 +msgid "Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:518 +msgid "Actual Shipping Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:513 +msgid "Method Paid For" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:504 +msgid "Amount Collected" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:477 +msgid "DHL" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:408 +msgid "There is no IPN history to show at this time" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:345 +msgid "Type" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:343 +msgid "Gateway" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:301 +#: includes/common/template-functions.php:528 +msgid "Order History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:291 +msgid "IPN History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:283 +msgid "Customer Info" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:279 +msgid "Order Details" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:157 +msgid "All Dates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:320 +msgid "Add Pages to Menu" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:318 +msgid "Add-ons" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:317 +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "User Capabilities" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:316 +#: includes/admin/class-mp-setup-wizard.php:631 +#: includes/admin/store-settings/class-mp-store-settings-payments.php:50 +msgid "Payment Gateways" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:315 +msgid "Shipping Rates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:312 +msgid "Configure" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:309 +#: includes/admin/class-mp-products-admin.php:466 +#: includes/admin/class-mp-shortcode-builder.php:797 +msgid "Tags" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:308 +#: includes/admin/class-mp-products-admin.php:465 +msgid "Categories" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:300 +msgid "Manage" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:297 +msgid "Here's some quick links to manage your store and products." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:288 +msgid "low in stock" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:287 +msgid "%s product" +msgid_plural "%s products" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-dashboard-widgets.php:280 +msgid "received" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:279 +#: includes/admin/class-mp-dashboard-widgets.php:283 +msgid "%s order" +msgid_plural "%s orders" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-dashboard-widgets.php:276 +msgid "Stock & Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:261 +msgid "Last 30 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:256 +msgid "Last 7 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:251 +msgid "Yesterday" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:248 +#: includes/admin/class-mp-dashboard-widgets.php:253 +#: includes/admin/class-mp-dashboard-widgets.php:258 +#: includes/admin/class-mp-dashboard-widgets.php:263 +msgid " Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:246 +msgid "Today" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:241 +msgid "Welcome back! Here's a quick summary of your store's performance." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:196 +#: includes/admin/class-mp-products-admin.php:895 +msgid "No products out of stock." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:136 +#: includes/admin/class-mp-products-admin.php:839 +msgid "Stock Level" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:135 +#: includes/admin/class-mp-products-admin.php:838 +msgid "Variation" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:121 +msgid "Low Stock (%s)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:116 +msgid "Store Management" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:115 +msgid "Store Reports" +msgstr "" + +#: includes/admin/class-mp-ajax.php:579 +#: includes/admin/class-mp-orders-admin.php:520 +#: includes/common/payment-gateways/2checkout.php:370 +#: includes/common/payment-gateways/authorizenet-aim.php:264 +#: includes/common/payment-gateways/mollie.php:93 +#: includes/common/payment-gateways/paymill.php:196 +#: includes/common/payment-gateways/pin.php:190 +#: includes/common/payment-gateways/skrill.php:157 +#: includes/common/payment-gateways/skrill.php:168 +#: includes/common/payment-gateways/wepay.php:143 +#: includes/public/class-mp-checkout.php:404 +msgid "Select One" +msgstr "" + +#: includes/admin/class-mp-ajax.php:511 +msgid "Oops... we could not locate any orders by that ID. Please double check your order ID and try again." +msgstr "" + +#: includes/admin/class-mp-ajax.php:482 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:166 +#: includes/multisite/class-mp-admin-multisite.php:584 +msgid "Edit Page" +msgstr "" + +#: includes/admin/class-mp-ajax.php:346 +msgid "Cancel " +msgstr "" + +#: includes/admin/class-mp-ajax.php:345 +msgid "Save " +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "Edit Description" +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "HTML Markup" +msgstr "" + +#: includes/admin/class-mp-ajax.php:333 +msgid "Plain Text Only" +msgstr "" + +#: includes/admin/class-mp-ajax.php:329 +msgid "Additional Content / Information for this Variation" +msgstr "" + +#: includes/admin/class-mp-ajax.php:317 +#: includes/admin/class-mp-products-admin.php:1762 +msgid "Allow this product to be purchased even if it's out of stock" +msgstr "" + +#: includes/admin/class-mp-ajax.php:313 +#: includes/admin/class-mp-products-admin.php:1711 +msgid "Track Product Inventory" +msgstr "" + +#: includes/admin/class-mp-ajax.php:300 +msgid "Extra Shipping Cost (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:295 +msgid "Ounces:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:294 +msgid "Pounds:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:292 +msgid "Kilograms:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:287 +#: includes/admin/class-mp-products-admin.php:1649 +msgid "Charge Shipping" +msgstr "" + +#: includes/admin/class-mp-ajax.php:273 +#: includes/admin/class-mp-products-admin.php:1623 +#: includes/admin/store-settings/class-mp-store-settings-general.php:454 +msgid "Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:272 +#: includes/admin/class-mp-products-admin.php:1622 +#: includes/admin/class-mp-products-admin.php:2090 +#: includes/admin/class-mp-products-admin.php:2408 +msgid "Special Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:271 +#: includes/admin/class-mp-products-admin.php:1625 +#: includes/admin/class-mp-products-admin.php:2092 +msgid "If you would like this product to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-ajax.php:268 +#: includes/admin/class-mp-products-admin.php:1599 +msgid "Charge Taxes (Special Rate)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:256 +#: includes/admin/class-mp-products-admin.php:1593 +#: includes/admin/class-mp-products-admin.php:2077 +#: includes/admin/class-mp-products-admin.php:2348 +msgid "End Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:255 +#: includes/admin/class-mp-products-admin.php:1589 +#: includes/admin/class-mp-products-admin.php:2072 +msgid "Start Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:1568 +msgid "Enter Sale Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:250 +#: includes/admin/class-mp-products-admin.php:1547 +msgid "Set up a Sale for this Product" +msgstr "" + +#: includes/admin/class-mp-ajax.php:206 includes/admin/class-mp-ajax.php:223 +msgid "Enter " +msgstr "" + +#: includes/admin/class-mp-ajax.php:193 +msgid "Browse" +msgstr "" + +#: includes/admin/class-mp-ajax.php:184 includes/admin/class-mp-ajax.php:192 +msgid "http://" +msgstr "" + +#: includes/admin/class-mp-ajax.php:183 +msgid "External Product URL" +msgstr "" + +#: includes/admin/class-mp-ajax.php:237 +msgid "Limit Per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:177 +#: includes/admin/class-mp-products-admin.php:1520 +msgid "Enter Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:174 +#: includes/admin/class-mp-products-admin.php:1512 +msgid "Enter SKU" +msgstr "" + +#: includes/admin/class-mp-ajax.php:173 +msgid "(Stock Keeping Unit)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:158 +msgid "Remove Image" +msgstr "" + +#: includes/admin/class-mp-ajax.php:74 +msgid "Variation Draft" +msgstr "" + +#: includes/admin/class-mp-admin.php:296 +#: includes/admin/class-mp-dashboard-widgets.php:70 +msgid "Please wait...saving in progress..." +msgstr "" + +#: includes/admin/class-mp-admin.php:295 +#: includes/admin/class-mp-dashboard-widgets.php:69 +msgid "Input is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:294 +#: includes/admin/class-mp-dashboard-widgets.php:68 +msgid "Valid number is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:292 +#: includes/admin/class-mp-dashboard-widgets.php:66 +msgid "Delete %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:291 +#: includes/admin/class-mp-dashboard-widgets.php:65 +msgid "Delete %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:290 +#: includes/admin/class-mp-dashboard-widgets.php:64 +msgid "Update inventory for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:289 +#: includes/admin/class-mp-dashboard-widgets.php:63 +msgid "Update inventory for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:288 +#: includes/admin/class-mp-dashboard-widgets.php:62 +msgid "Update price for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:287 +#: includes/admin/class-mp-dashboard-widgets.php:61 +msgid "Update prices for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:285 +#: includes/admin/class-mp-dashboard-widgets.php:59 +msgid "Creating variations, please wait..." +msgstr "" + +#: includes/admin/class-mp-admin.php:96 +msgid "The following payment gateways have been deprecated, Cubepoints, Bitpay, iDEAL, Skrill, Google Checkout. If you were using one of these gateways, please setup a new payment gateway here." +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:61 +msgid "Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:71 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:71 +#: includes/common/class-mp-gdpr.php:399 includes/common/class-mp-order.php:872 +#: includes/common/helpers.php:164 includes/public/class-mp-checkout.php:1434 +msgid "Shipping Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:66 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:66 +#: includes/common/class-mp-gdpr.php:392 includes/common/class-mp-order.php:864 +#: includes/common/helpers.php:163 includes/public/class-mp-checkout.php:1427 +msgid "Billing Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:61 +msgid "Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:258 +msgid "Shipping Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:256 +msgid "Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:235 +msgid "Payment Method: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:79 +msgid "The dir %s not exist or not writeable" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:239 +msgid "Shop header/logo" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:233 +msgid "Choose a template" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:226 +msgid "Template Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:221 +msgid "Disable automatic creation/attachment of invoices when only free products are ordered" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:220 +msgid "Disable for free products" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:216 +msgid "Attach invoice to" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:214 +msgid "Customer Order Shipped email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:212 +msgid "Customer New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:211 +msgid "Admin New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:206 +msgid "download" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:205 +msgid "How do you want to view the PDF?" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:203 +msgid "Open the PDF in a new browser tab/window" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:202 +msgid "Download the PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:158 +msgid "Export PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:103 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:106 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:109 +msgid "You can't download this order invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:76 +msgid "Invalid Request" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:72 +msgid "Order not exist!" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:67 +msgid "Invalid ID" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1293 +msgid "Coupon added successfully" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1292 +msgid "Please enter a code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1247 +msgid "No end" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1200 +msgid "Valid Dates" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1195 +msgid "Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1027 +msgid "No Coupons found in Trash" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1026 +msgid "No Coupons Found" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1025 +msgid "Search Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1024 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1028 +msgid "View Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1023 +msgid "New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1020 +msgid "Create New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1017 +msgid "Manage Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1002 +msgid "An error occurred while removing your coupon. Please try again." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:964 +msgid "Coupon can't be applied to this cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:951 +msgid "Invalid coupon code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:794 +msgid "Help Text" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:789 +msgid "Form Title" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:783 +msgid "Coupons Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:764 +msgid "End Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:758 +msgid "Does coupon have an end date?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:696 +msgid "Select Products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:688 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:723 +#: includes/common/payment-gateways/paypal-payflow.php:402 +msgid "User" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:638 +msgid "Max Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:636 +msgid "Enter the maximum number of times this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:623 +msgid "Leave blank to allow all other coupons." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:622 +msgid "Select combinable coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:618 +msgid "Can this coupon be combined with other coupons?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:613 +msgid "Apply to each applicable item once per cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:612 +msgid "Apply to each applicable item and quantity ordered" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:609 +msgid "How should the discount amount be applied?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:605 +msgid "Discount Amount" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:604 +msgid "Value must either be a decimal number or a percentage" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:602 +msgid "If you would like to give a percentage-based discount make sure to include the percent (%) symbol. Otherwise, the discount will be applied as a fixed amount off." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:595 +msgid "Letters and Numbers only." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:589 +msgid "Coupon Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:447 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:795 +msgid "More than one code? That's OK! Just be sure to enter one at a time." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:444 +msgid "Apply Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:314 +msgid "Coupon Discounts" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:89 +msgid "1 add-on disabled" +msgid_plural "%s add-ons disabled" +msgstr[0] "" +msgstr[1] "" + +#: includes/addons/class-mp-addons-list-table.php:84 +msgid "1 add-on enabled" +msgid_plural "%s add-ons enabled" +msgstr[0] "" +msgstr[1] "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Disabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Enable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:129 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:67 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:135 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:168 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:202 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:263 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:296 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:330 +msgid "Enabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +msgid "Disable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:34 +msgid "Disable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:33 +msgid "Enable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:21 +#: includes/admin/class-mp-products-admin.php:2280 +#: includes/common/class-mp-product.php:2916 +msgid "Description" +msgstr "" + +#: includes/common/template-functions.php:2889 +#: includes/multisite/template-functions.php:407 +msgid "Popularity (Least Popular - Most Popular)" +msgstr "Popularidad (Meno popular hasta la mas popular)" + +#: includes/common/template-functions.php:2888 +#: includes/multisite/template-functions.php:406 +msgid "Popularity (Most Popular - Least Popular)" +msgstr "Popularidad (Mas popular hasta la meno popular)" + +#: includes/common/template-functions.php:2885 +#: includes/multisite/template-functions.php:403 +msgid "Name (Z-A)" +msgstr "Nombre (Z-A)" + +#: includes/common/template-functions.php:2884 +#: includes/multisite/template-functions.php:402 +msgid "Name (A-Z)" +msgstr "Nombre (A-Z)" + +#: includes/common/template-functions.php:2883 +#: includes/multisite/template-functions.php:401 +msgid "Release Date (Oldest to Latest)" +msgstr "Fecha de lanzamiento (Mas vieja hasta la mas nueva)" + +#: includes/common/template-functions.php:2882 +#: includes/multisite/template-functions.php:400 +msgid "Release Date (Latest to Oldest)" +msgstr "Fecha de lanzamiento (Mas nueva hasta la mas vieja)" + +#: includes/admin/class-mp-dashboard-widgets.php:284 +msgid "paid" +msgstr "pagado" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "One Time Pickup" +msgstr "Recoger una vez" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Customer Counter" +msgstr "Contador de clientes" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Daily Pickup" +msgstr "Recolección diaria" + +#: includes/common/shipping-modules/mp-ups.php:182 +msgid "For the most accurate rates, please select the appropriate pick up type for your business." +msgstr "Para los precios más precisos, por favor selecciona el tipo adecuado de recolección para tu negocio." + +#: includes/admin/class-mp-admin.php:374 +msgid "Page saved." +msgstr "Página guardada." + +#: includes/admin/class-mp-admin.php:370 +msgid "Custom field deleted." +msgstr "Campo personalizado borrado." + +#: includes/admin/class-mp-admin.php:369 +msgid "Custom field updated." +msgstr "Campo personalizado actualizado." + +#: includes/common/payment-gateways/_bitpay.php:541 +msgid "%s - The payment request expired, - %s" +msgstr "%s - La petición de pago expiró, - %s" + +#: includes/common/payment-gateways/_bitpay.php:536 +msgid "%s - The payment not credited in merchants bitpay account, action required. Bitpay invoice status - %s" +msgstr "%s - El pago no ha sido acreditado en la cuenta bitpay del vendedor, se requiere acción. Estado del recibo Bitpay - %s" + +#: includes/common/payment-gateways/_bitpay.php:252 +msgid "If enabled, you will recieve an email for each status update on payment." +msgstr "Si está habilitado, recibiras un email por cada actualización en el pago." + +#: includes/common/payment-gateways/_bitpay.php:240 +msgid "Speed at which the bitcoin transaction registers as \"confirmed\" to the store. This overrides your merchant settings on the Bitpay website." +msgstr "La velocidad a la cual se registra la transacción de bitcoin como \"confirmada\" en la tienda. Esto sobrescribe los parámetros de la tienda en la web de Bitpay." + +#: includes/common/payment-gateways/_bitpay.php:238 +msgid "Transaction Speed" +msgstr "Velocidad de transacción" + +#: includes/common/payment-gateways/_bitpay.php:244 +msgid "Low" +msgstr "Baja" + +#: includes/common/payment-gateways/_bitpay.php:243 +msgid "Medium" +msgstr "Media" + +#: includes/common/payment-gateways/_bitpay.php:242 +msgid "High" +msgstr "Alta" + +#: includes/common/payment-gateways/_bitpay.php:177 +#: includes/common/payment-gateways/_bitpay.php:517 +#: includes/common/payment-gateways/_bitpay.php:522 +msgid "%s - The payment request is under process. Bitpay invoice status - %s" +msgstr "%s - La solicitud de pago esta en proceso. Estado de factura Bitpal - %s" + +#: includes/common/payment-gateways/_bitpay.php:175 +#: includes/common/payment-gateways/_bitpay.php:527 +msgid "%s - The payment request has been processed - %s" +msgstr "%s - La solicitud de pago ha sido procesada - %s" + +#: includes/common/payment-gateways/_bitpay.php:150 +#: includes/common/payment-gateways/_bitpay.php:294 +msgid "Incorrect order invoice, please contact site administrator" +msgstr "Factura de la orden incorrecta, por favor contacta a un administrador del sitio" + +#: includes/common/payment-gateways/_bitpay.php:141 +msgid "We could not verify order invoice details, please try again or contact site administrator for help" +msgstr "No pudimos verificar los detalles de la factura de la orden. Por favor intenta nuevamente o contacta un administrador del sitio para obtener ayuda" + +#: includes/common/payment-gateways/simplify.php:81 +msgid "Login to Simplify to get your API credentials. Enter your test credentials, then live ones when ready." +msgstr "Ingresa a Simplify para obtener tus llaves de la API. Ingresa tus credenciales de prueba y luego las de producción cuando estés listo." + +#: includes/common/payment-gateways/paypal-express.php:605 +#: includes/common/payment-gateways/paypal-express.php:647 +msgid "Express Checkout is PayPal's premier checkout solution, which streamlines the checkout process for buyers and keeps them on your site after making a purchase. Unlike PayPal Pro, there are no additional fees to use Express Checkout, though you may need to do a free upgrade to a business account. More Info »" +msgstr "Express Checkout es la solución premier de pagos de PayPal, que agiliza el proceso de pago para compradores y los mantiene en tu sitio luego de hacer la compra. A diferencia de PayPal Pro, no hay cobros adicionales para usar Express Checkout, pero podrías necesitar hacer una actualización gratuita a una cuenta de negocio. Más Información »" + +#. Plugin URI of the plugin/theme +msgid "https://premium.wpmudev.org/project/e-commerce/" +msgstr "https://premium.wpmudev.org/project/e-commerce/" + +#. Author of the plugin/theme +msgid "WPMU DEV" +msgstr "WPMU DEV" + +#: includes/admin/class-mp-orders-admin.php:541 +#: includes/admin/class-mp-orders-admin.php:543 +msgid "Tracking Number" +msgstr "Número de seguimiento" + +#: includes/common/class-mp-order.php:805 +#: includes/common/payment-gateways/stripe.php:336 +#: includes/public/class-mp-checkout.php:402 +msgid "Country" +msgstr "País" + +#: includes/common/class-mp-order.php:784 +#: includes/common/payment-gateways/stripe.php:338 +msgid "City" +msgstr "Ciudad" + +#: includes/common/class-mp-order.php:780 +msgid "Address 2" +msgstr "Dirección 2" + +#: includes/common/payment-gateways/stripe.php:340 +msgid "Address" +msgstr "Dirección" + +#: includes/common/class-mp-cart.php:752 includes/common/class-mp-gdpr.php:378 +msgid "Order Total" +msgstr "Total del pedido" + +#: includes/admin/class-mp-orders-admin.php:360 +msgid "Payment Total" +msgstr "Total a pagar" + +#: includes/admin/class-mp-orders-admin.php:347 +msgid "Transaction ID" +msgstr "ID de transacción" + +#: includes/common/payment-gateways/wepay.php:207 +msgid "The WePay Card Token was not generated correctly. Please go back and try again." +msgstr "El identificador de tarjeta WePay no fue generado correctamente. Por favor, vuelva atrás e inténtelo de nuevo." + +#: includes/common/payment-gateways/wepay.php:186 +#: includes/common/shipping-modules/mp-fedex.php:283 +msgid "Account ID" +msgstr "ID de cuenta" + +#: includes/common/payment-gateways/wepay.php:179 +msgid "Access Token" +msgstr "Identificador de acceso" + +#: includes/common/payment-gateways/wepay.php:172 +msgid "Client Secret" +msgstr "Secreto de cliente" + +#: includes/common/payment-gateways/wepay.php:165 +msgid "Client ID" +msgstr "ID de cliente" + +#: includes/common/payment-gateways/wepay.php:159 +msgid "You must login to WePay to get your API credentials. Make sure to check \"Tokenize credit cards\" option under \"API Keys\" section of your WePay app." +msgstr "Debe iniciar sesión en WePay para conseguir sus credenciales API. Asegúrese de seleccionar la opción \"Identificar tarjetas de crédito\" bajo la sección \"Claves API\" de su aplicación WePay." + +#: includes/common/payment-gateways/wepay.php:154 +msgid "When in live mode it is recommended to use SSL certificate setup for the site where the checkout form will be displayed." +msgstr "Cuando estés en modo en vivo, se recomienda tener un certificado SSL configurado para la web donde se mostrará el formulario de confirmación de pedido." + +#: includes/common/payment-gateways/wepay.php:148 +msgid "Donation" +msgstr "Donación" + +#: includes/common/payment-gateways/wepay.php:147 +msgid "Event" +msgstr "Evento" + +#: includes/common/payment-gateways/wepay.php:146 +msgid "Personal" +msgstr "Personal" + +#: includes/common/payment-gateways/wepay.php:145 +msgid "Service" +msgstr "Servicio" + +#: includes/common/payment-gateways/wepay.php:144 +msgid "Goods" +msgstr "Bienes" + +#: includes/common/payment-gateways/wepay.php:141 +msgid "Choose type of payments" +msgstr "Elija el tipo de pagos" + +#: includes/common/payment-gateways/wepay.php:140 +msgid "Checkout Type" +msgstr "Tipo de confirmación de pedido" + +#: includes/common/payment-gateways/wepay.php:134 +msgid "Staging" +msgstr "Preparación" + +#: includes/common/payment-gateways/wepay.php:131 +msgid "Choose STAGING if you have registered the app on stage.wepay.com, or PRODUCTION if you registered on www.wepay.com" +msgstr "Seleccione PREPARACION si ha registrado la aplicación en stage.wepay.com, o PRODUCCION si la ha registrado en www.wepay.com" + +#: includes/common/payment-gateways/wepay.php:36 +#: includes/common/payment-gateways/wepay.php:299 +msgid "WePay" +msgstr "WePay" + +#: includes/common/payment-gateways/_payway.php:366 +msgid "Rejected - A payment was rejected." +msgstr "Rechazado - Un pago ha sido rechazado." + +#: includes/common/payment-gateways/_payway.php:360 +msgid "Failed - A payment was rejected due to an error." +msgstr "Fallido - Un pago ha sido rechazado debido a un error." + +#: includes/common/payment-gateways/_payway.php:342 +msgid "PayWay balance, Credit Card, or Instant Transfer" +msgstr "Fondos PayWay, Tarjeta de crédito o transferencia instantánea" + +#: includes/common/payment-gateways/_payway.php:298 +msgid "Full path of the cacerts.crt file" +msgstr "Ruta completa al archivo cacerts.crt" + +#: includes/common/payment-gateways/_payway.php:284 +msgid "User Name" +msgstr "Nombre de usuario" + +#: includes/common/payment-gateways/_payway.php:277 +msgid "Biller Code" +msgstr "Codigo de facturador" + +#: includes/common/payment-gateways/_payway.php:273 +msgid "Log Directory" +msgstr "Directorio de logs" + +#: includes/common/payment-gateways/_payway.php:266 +msgid "Encryption Key" +msgstr "Clave de encriptación" + +#: includes/common/payment-gateways/_payway.php:60 +msgid "Your PayWay transaction has been canceled." +msgstr "Su transacción PayWay ha sido cancelada." + +#: includes/common/payment-gateways/_payway.php:40 +#: includes/common/payment-gateways/_payway.php:41 +msgid "PayWay" +msgstr "PayWay" + +#: includes/common/payment-gateways/paypal-chained-payments.php:862 +msgid "You must register this application with PayPal using your business account login to get an Application ID that will work with your API credentials. A bit of a hassle, but worth it! In the near future we will be looking for ways to simplify this process. Register then submit your application while logged in to the developer portal. Note that you do not need an Application ID for testing in sandbox mode. More Information »" +msgstr "Debe registrar esta aplicación con PayPal usando su inicio de sesión de cuenta Business para obtener una ID de aplicación que funcione con sus credenciales API. Es una pequeña molestia, ¡pero vale la pena! En un futuro próximo buscaremos maneras para simplificar este proceso. Regístrese y envíe la aplicación mientras tenga la sesión iniciada en el portal de desarrollador. Tenga en cuenta que no necesita una ID de aplicación para hacer pruebas en modo Sandbox. Más información »" + +#: includes/common/payment-gateways/paypal-chained-payments.php:818 +#: includes/common/payment-gateways/paypal-chained-payments.php:840 +#: includes/common/payment-gateways/paypal-express.php:705 +msgid "You must login to PayPal and create an API signature to get your credentials. Instructions »" +msgstr "Debe iniciar sesión en Paypal y crear una firma API para obtener sus credenciales. Instrucciones »" + +#: includes/common/payment-gateways/paypal-payflow.php:378 +msgid "Use Payflow payment gateway to accept online payments using your Internet merchant account and processing network. PayPal Payflow Pro is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway." +msgstr "Use el Gateway de pago Payflow para aceptar pagos en línea usando su cuenta de vendedor de internet y su red de procesamiento. PayPal Payflow Pro es una solución de proceso de pagos personalizable que da al vendedor control total sobre todos los pasos en el proceso de una transacción. Se requiere el uso de un certificado SSL para usar este Gateway." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:595 +msgid "Tags Only" +msgstr "Solo etiquetas" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:594 +msgid "Category Only" +msgstr "Solo categoría" + +#: includes/admin/class-mp-shortcode-builder.php:795 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:593 +msgid "Category & Tags" +msgstr "Categoría y etiquetas" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:591 +msgid "Relate Products By" +msgstr "Relacionar productos por" + +#: includes/admin/class-mp-shortcode-builder.php:1008 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:455 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:751 +msgid "Right" +msgstr "Derecha" + +#: includes/admin/class-mp-shortcode-builder.php:1007 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:454 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:749 +msgid "Left" +msgstr "Izquierda" + +#: includes/admin/class-mp-shortcode-builder.php:1009 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:750 +msgid "Center" +msgstr "Centro" + +#: marketpress.php:273 +msgid "Orders from your e-commerce store." +msgstr "Pedidos de su tienda de comercio electrónico." + +#: marketpress.php:231 +msgid "Products for your e-commerce store." +msgstr "Productos de su tienda de comercio electrónico." + +#: marketpress.php:222 +msgid "Edit Product" +msgstr "Editar producto" + +#. Description of the plugin/theme +msgid "The complete WordPress ecommerce plugin - works perfectly with BuddyPress and Multisite too to create a social marketplace, where you can take a percentage! Activate the plugin, adjust your settings then add some products to your store." +msgstr "El plugin completo de Wordpress ecommerce - ¡funciona perfectamente también con BuddyPress y Multisite para crear un mercado social, donde puedes llevarte un porcentaje! Activa el plugin, configúralo y añade algunos productos a tu tienda." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:272 +msgid "Beside" +msgstr "Más allá" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:271 +msgid "Above" +msgstr "Por encima" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:268 +msgid "Pin Count" +msgstr "Contador Pin" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:261 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:287 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:318 +msgid "All View" +msgstr "Vista de todos" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:260 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:286 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:317 +msgid "Single View" +msgstr "Vista individual" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:259 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:285 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:316 +msgid "Off" +msgstr "Desactivado" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:578 +msgid "Related Product Limit" +msgstr "Límite de producto relacionado" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:681 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1201 +msgid "Applies To" +msgstr "Se aplica a" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:685 +msgid "All Products" +msgstr "Todos los productos" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:487 +msgid "The label shown for the tax line item in the cart. Taxes, VAT, GST, etc." +msgstr "La etiqueta mostrada en la linea de impuestos del carrito. Impuestos, VAT, GST, IVA, etc." + +#: includes/admin/class-mp-setup-wizard.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:485 +msgid "Tax Label" +msgstr "Etiqueta de impuesto" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:81 +msgid "Apply" +msgstr "Aplicar" + +#: includes/admin/class-mp-admin.php:192 +msgid "MarketPress Instructions" +msgstr "Instrucciones de MarketPress" + +#: includes/admin/class-mp-products-admin.php:1954 +#: includes/admin/class-mp-products-admin.php:2194 includes/common/data.php:62 +#: includes/common/helpers.php:150 +msgid "Taxes" +msgstr "Impuestos:" + +#: includes/admin/class-mp-products-admin.php:1417 +#: includes/common/class-mp-product.php:2900 +msgid "Related Products" +msgstr "Productos relacionados" + +#: includes/common/shipping-modules/mp-usps.php:282 +#: includes/common/shipping-modules/mp-usps.php:316 +msgid "@ Max" +msgstr "@ Max" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "(3-5 days)" +msgstr "(3-5 días)" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "Priority Mail Express International Padded Flat Rate Envelope" +msgstr "Sobre tarifa plana acolchado por correo internacional Express prioritario" + +#: includes/common/shipping-modules/mp-usps.php:92 +msgid "Priority Mail Padded Flat Rate Envelope" +msgstr "Sobre tarifa plana acolchado por correo prioritario" + +#: includes/common/shipping-modules/mp-pickup.php:171 +#: includes/common/shipping-modules/mp-pickup.php:247 +msgid "In Store" +msgstr "En tienda" + +#: includes/common/shipping-modules/mp-pickup.php:159 +msgid "Pickup Fee" +msgstr "Tarifa de recolección" + +#: includes/common/shipping-modules/mp-pickup.php:141 +msgid "This option allows your customers to indicate that they will pick-up their order at your place of business." +msgstr "Esta opción permite a tus compradores indicar que recogerán su pedido en la dirección de tu negocio." + +#: includes/common/shipping-modules/mp-pickup.php:60 +#: includes/common/shipping-modules/mp-pickup.php:76 +#: includes/common/shipping-modules/mp-pickup.php:176 +msgid "Pickup Instructions" +msgstr "Instrucciones de recolección" + +#: includes/common/shipping-modules/mp-pickup.php:24 +#: includes/common/shipping-modules/mp-pickup.php:254 +msgid "Pickup" +msgstr "Recolección" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping - 0.00" +msgstr "Envío gratuito - 0,00" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:256 +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:440 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping" +msgstr "Envío gratuito" + +#: includes/common/shipping-modules/mp-fedex.php:309 +msgid "Your Packaging" +msgstr "Su envío" + +#: includes/common/shipping-modules/mp-fedex.php:301 +msgid "Station" +msgstr "Estación" + +#: includes/common/shipping-modules/mp-fedex.php:300 +msgid "Request Courier" +msgstr "Solicitar mensajero" + +#: includes/common/shipping-modules/mp-fedex.php:299 +msgid "Drop Box" +msgstr "Buzón" + +#: includes/common/shipping-modules/mp-fedex.php:298 +msgid "Business Service Center" +msgstr "Centro de servicio de negocio" + +#: includes/common/shipping-modules/mp-fedex.php:297 +msgid "Regular Pickup" +msgstr "Recolección regular" + +#: includes/common/payment-gateways/wepay.php:135 +#: includes/common/shipping-modules/mp-fedex.php:264 +msgid "Production" +msgstr "Producción" + +#: includes/common/payment-gateways/simplify.php:207 +msgid "Simplify Commerce by MasterCard" +msgstr "Simplify Commerce por MasterCard" + +#: includes/common/payment-gateways/simplify.php:104 +msgid "When in live mode, although it is not required, Simplify recommends you have an SSL certificate." +msgstr "En el modo en vivo, aunque no es obligatorio, Simplify recomienda tener un certificado SSL." + +#: includes/common/payment-gateways/paymill.php:183 +#: includes/common/payment-gateways/simplify.php:87 +msgid "Public Key" +msgstr "Clave pública" + +#: includes/common/payment-gateways/paymill.php:175 +#: includes/common/payment-gateways/simplify.php:94 +msgid "Private Key" +msgstr "Clave privada" + +#: includes/common/payment-gateways/simplify.php:71 +msgid "Simplify helps merchants to accept online payments from Mastercard, Visa, American Express, Discover, JCB, and Diners Club cards. It's that simple. We offer a merchant account and payment gateway in a single, secure package so you can concentrate on what really matters to your business. Only supports USD currently." +msgstr "Simplify ayuda a los vendedores a aceptar pagos online de tarjetas Mastercard, Visa, American Express, Discover, JCB y Diners club. Así de simple. Ofrecemos una cuenta de vendedor y un Gateway de pago en un pack sencillo y seguro para que pueda concentrarte en lo que realmente importa en su negocio. Actualmente solo soporta dolares estadounidenses." + +#: includes/common/payment-gateways/wepay.php:267 +msgid "%1$s" +msgstr "%1$s" + +#: includes/common/payment-gateways/simplify.php:151 +msgid "The Simplify Token was not generated correctly. Please go back and try again." +msgstr "El identificador Simplify no fue generado correctamente. Por favor, vuelva atrás e inténtelo de nuevo." + +#: includes/common/payment-gateways/simplify.php:18 +msgid "Simplify" +msgstr "Simplify" + +#: includes/common/payment-gateways/pin.php:255 +msgid "%1$s Card %2$s" +msgstr "%1$s Tarjeta %2$s" + +#: includes/common/payment-gateways/pin.php:211 +msgid "The PIN Token was not generated correctly. Please go back and try again." +msgstr "El identificador PIN no fue generado correctamente. Por favor, vuelva atrás e inténtelo de nuevo." + +#: includes/common/payment-gateways/pin.php:187 +msgid "Selecting a currency other than currency supported by PIN may cause problems at checkout." +msgstr "Seleccionar una moneda diferente a la soportada por PIN puede causar problemas en la confirmación de pedido." + +#: includes/common/payment-gateways/pin.php:164 +msgid "You must login to PIN to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "Debe iniciar sesión en PIN para obtener sus credenciales API. Puede introducir sus claves de prueba, y las de en vivo cuando esté preparado." + +#: includes/common/payment-gateways/pin.php:158 +msgid "When in live mode PIN recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "Cuando se está en modo en vivo, PIN recomienda que tenga un certificado SSL configurado para la web donde se mostrará el formulario de confirmación de pedido." + +#: includes/common/payment-gateways/pin.php:45 +#: includes/common/payment-gateways/pin.php:286 +msgid "PIN" +msgstr "PIN" + +#: includes/common/payment-gateways/paypal-express.php:830 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer" +msgstr "Un pago ha sido devuelto debido a un \"chargeback\" u otro tipo de reclamación. Los fondos han sido retirados de tu cuenta y devueltos al comprador." + +#: includes/common/payment-gateways/paypal-chained-payments.php:534 +#: includes/common/payment-gateways/paypal-express.php:865 +msgid "The payment is pending" +msgstr "El pago está pendiente" + +#: includes/common/payment-gateways/paymill.php:235 +msgid "The Paymill Token was not generated correctly. Please go back and try again." +msgstr "El identificador Paymill no fue generado correctamente. Por favor, vuelva atrás e inténtelo de nuevo." + +#: includes/common/payment-gateways/paymill.php:169 +msgid "You must login to Paymill to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "Debe iniciar sesión en Paymil para obtener sus credenciales API. Puede introducir sus claves de prueba, y las claves en vivo cuando esté preparado." + +#: includes/common/payment-gateways/paymill.php:45 +#: includes/common/payment-gateways/paymill.php:308 +msgid "Paymill" +msgstr "Paymill" + +#: includes/common/payment-gateways/paymill.php:90 +msgid "Invalid cardholder" +msgstr "Dueño de tarjeta inválido" + +#: includes/common/payment-gateways/paymill.php:89 +msgid "Card is no longer valid or has expired" +msgstr "La tarjeta ya no es válida o ha caducado" + +#: includes/common/payment-gateways/paymill.php:88 +msgid "Please enter a valid Card CVC" +msgstr "Por favor, introduzca un código de seguridad de tarjeta válido." + +#: includes/common/payment-gateways/paymill.php:87 +msgid "Please choose a valid Expiration Date." +msgstr "Por favor, elija una fecha de caducidad válida." + +#: includes/common/payment-gateways/skrill.php:99 +#: includes/common/payment-gateways/skrill.php:100 +msgid "Skrill (Moneybookers)" +msgstr "Skrill (Moneybookers)" + +#: includes/common/shipping-modules/mp-weight-rate.php:24 +#: includes/common/shipping-modules/mp-weight-rate.php:292 +msgid "Weight Rate" +msgstr "Tarifa por peso" + +#: includes/common/shipping-modules/mp-usps.php:303 +msgid "USPS Offered International Services" +msgstr "Servicios internacionales servidos por US Postal Office" + +#: includes/common/shipping-modules/mp-usps.php:270 +msgid "USPS Offered Domestic Services" +msgstr "Servicios nacionales ofrecidos por US Post Office" + +#: includes/common/shipping-modules/mp-usps.php:264 +msgid "USPS Settings" +msgstr "Configuración US Postal Service" + +#: includes/common/shipping-modules/mp-usps.php:145 +msgid "Flat Rate Large" +msgstr "Tarifa plana grande" + +#: includes/common/shipping-modules/mp-usps.php:140 +msgid "Flat Rate Medium 2" +msgstr "Tarifa plana mediana 2" + +#: includes/common/shipping-modules/mp-usps.php:135 +msgid "Flat Rate Medium 1" +msgstr "Tarifa plana mediana 1" + +#: includes/common/shipping-modules/mp-usps.php:130 +msgid "Flat Rate Small" +msgstr "Tarifa plana pequeña" + +#: includes/common/shipping-modules/mp-usps.php:118 +msgid "First Class International Parcel" +msgstr "Paquete de primera clase internacional" + +#: includes/common/shipping-modules/mp-usps.php:114 +msgid "Priority Mail International Small Flat Rate Boxes" +msgstr "Mail prioritario internacional tarifa plana pequeña de cajas" + +#: includes/common/shipping-modules/mp-usps.php:112 +msgid "Priority Mail International Medium Flat Rate Boxes" +msgstr "Mail internacional prioritario tarifa plana media de cajas" + +#: includes/common/shipping-modules/mp-usps.php:110 +msgid "Priority Mail International Large Flat Rate Boxes" +msgstr "Mail prioritario internacional tarifa plana grande de cajas" + +#: includes/common/shipping-modules/mp-usps.php:108 +msgid "Priority Mail International" +msgstr "Correo prioritario internacional" + +#: includes/common/shipping-modules/mp-usps.php:106 +msgid "Express Mail International Flat Rate Boxes" +msgstr "Correo urgente internacional tarifa plana de cajas" + +#: includes/common/shipping-modules/mp-usps.php:104 +msgid "Express Mail International" +msgstr "Correo Express internacional" + +#: includes/common/shipping-modules/mp-usps.php:98 +msgid "Library Mail" +msgstr "Correo \\\"Library\\\"" + +#: includes/common/shipping-modules/mp-usps.php:96 +msgid "Media Mail" +msgstr "Correo \\\"Media\\\"" + +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "First-Class Mail Parcel" +msgstr "Paquete por correo de primera clase" + +#: includes/common/shipping-modules/mp-usps.php:90 +msgid "Priority Mail Small Flat Rate Box" +msgstr "Correo prioritario tarifa plana pequeña en caja" + +#: includes/common/shipping-modules/mp-usps.php:88 +msgid "Priority Mail Medium Flat Rate Box" +msgstr "Correo prioritario tarifa plana media en caja" + +#: includes/common/shipping-modules/mp-usps.php:86 +#: includes/common/shipping-modules/mp-usps.php:88 +#: includes/common/shipping-modules/mp-usps.php:90 +#: includes/common/shipping-modules/mp-usps.php:92 +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "(2-4 days)" +msgstr "(2-4 días)" + +#: includes/common/shipping-modules/mp-usps.php:86 +msgid "Priority Mail Large Flat Rate Box" +msgstr "Correo prioritario tarifa plana grande en caja" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "(2-4) days" +msgstr "(2-4) días" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "Priority Mail" +msgstr "Correo prioritario" + +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "Express Mail Sunday/Holiday Delivery Flat Rate Boxes" +msgstr "Correo urgente entrega en domingo/festivo tarifa plana de cajas" + +#: includes/common/shipping-modules/mp-usps.php:80 +msgid "Express Mail Flat Rate Boxes Hold For Pickup" +msgstr "Correo urgente tarifa plana de cajas recolección en oficina" + +#: includes/common/shipping-modules/mp-usps.php:78 +msgid "Express Mail Flat Rate Boxes" +msgstr "Correo urgente tarifa plana de cajas" + +#: includes/common/shipping-modules/mp-usps.php:76 +msgid "Express Mail Sunday/Holiday Delivery" +msgstr "Correo urgente entrega en domingo/festivo" + +#: includes/common/shipping-modules/mp-usps.php:74 +msgid "Express Mail Hold For Pickup" +msgstr "Correo urgente, recolección en oficina" + +#: includes/common/shipping-modules/mp-usps.php:72 +#: includes/common/shipping-modules/mp-usps.php:74 +#: includes/common/shipping-modules/mp-usps.php:76 +#: includes/common/shipping-modules/mp-usps.php:78 +#: includes/common/shipping-modules/mp-usps.php:80 +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "(1-2 days)" +msgstr "(1-2 días)" + +#: includes/common/shipping-modules/mp-usps.php:72 +msgid "Express Mail" +msgstr "Correo Express" + +#: includes/common/shipping-modules/mp-usps.php:67 +#: includes/common/shipping-modules/mp-usps.php:902 +msgid "USPS" +msgstr "USPS" + +#: includes/common/shipping-modules/mp-ups.php:534 +msgid "UPS (beta)" +msgstr "UPS (beta)" + +#: includes/common/shipping-modules/mp-ups.php:166 +msgid "Required if using negotiated rates" +msgstr "Obligatorio si se están usando tarifas negociadas" + +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "Saver" +msgstr "Ahorro" + +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "Worldwide Express Plus" +msgstr "Mundial express plus" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "(Scheduled)" +msgstr "(programado)" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "Standard" +msgstr "Estándar" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "(2-5 Days)" +msgstr "(2-5 días)" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "Worldwide Expedited" +msgstr "Mundial acelerado" + +#: includes/common/shipping-modules/mp-ups.php:54 +msgid "Worldwide Express" +msgstr "Mundial Express" + +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "2nd Day Air AM" +msgstr "2º día por aire por la mañana" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "(1 Days)" +msgstr "(1 día)" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "Next Day Air Early AM" +msgstr "Siguiente día por aire, entrega temprana por la mañana" + +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "Next Day Air Saver" +msgstr "Siguiente día por aire ahorro" + +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "3 Day Select" +msgstr "3 días seleccionado" + +#: includes/common/shipping-modules/mp-ups.php:49 +msgid "Ground" +msgstr "Por carretera" + +#: includes/common/shipping-modules/mp-ups.php:48 +msgid "2nd Day Air" +msgstr "2º día por aire" + +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "Next Day Air" +msgstr "Día siguiente por aire" + +#: includes/admin/class-mp-orders-admin.php:475 +#: includes/common/shipping-modules/mp-ups.php:43 +msgid "UPS" +msgstr "UPS" + +#: includes/common/shipping-modules/mp-table-rate.php:27 +#: includes/common/shipping-modules/mp-table-rate.php:318 +msgid "Table Rate" +msgstr "Tabla tarifas" + +#: includes/common/shipping-modules/mp-table-quantity.php:71 +#: includes/common/shipping-modules/mp-table-quantity.php:77 +msgid "Shipping Cost: " +msgstr "Costos de envío:" + +#: includes/common/shipping-modules/mp-table-quantity.php:70 +#: includes/common/shipping-modules/mp-table-quantity.php:76 +msgid "If quantity is greater than:" +msgstr "Si cantidad es mayor a:" + +#: includes/common/shipping-modules/mp-table-quantity.php:66 +msgid "Each band must be a higher price than the one above it." +msgstr "Cada banda debe ser de un precio mayor al anterior" + +#: includes/common/shipping-modules/mp-table-quantity.php:56 +msgid "Number of Bands:" +msgstr "Número de bandas:" + +#: includes/common/shipping-modules/mp-table-quantity.php:53 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Each layer must be a higher quantity than the previous." +msgstr "Asegúrese de introducir un precio de envío por cada una de las opciones, o los clientes podrían obtener el envío gratis. Cada capa debe ser una cantidad superior a la previa." + +#: includes/common/shipping-modules/mp-table-quantity.php:51 +msgid "Table Quantity Settings" +msgstr "Configuración de tabla cantidad" + +#: includes/common/shipping-modules/mp-table-quantity.php:31 +msgid "Table Quantity" +msgstr "Tabla cantidad" + +#: includes/common/shipping-modules/mp-flat-rate.php:135 +#: includes/common/shipping-modules/mp-table-rate.php:174 +#: includes/common/shipping-modules/mp-weight-rate.php:189 +msgid "European Union" +msgstr "Unión Europea" + +#: includes/common/shipping-modules/mp-flat-rate.php:123 +#: includes/common/shipping-modules/mp-table-rate.php:162 +#: includes/common/shipping-modules/mp-weight-rate.php:177 +msgid "United States" +msgstr "Estados Unidos" + +#: includes/common/shipping-modules/mp-flat-rate.php:111 +#: includes/common/shipping-modules/mp-table-rate.php:151 +#: includes/common/shipping-modules/mp-weight-rate.php:166 +msgid "In Country" +msgstr "Nacional" + +#: includes/common/shipping-modules/mp-flat-rate.php:146 +#: includes/common/shipping-modules/mp-table-rate.php:186 +#: includes/common/shipping-modules/mp-weight-rate.php:201 +msgid "International" +msgstr "Internacional" + +#: includes/common/shipping-modules/mp-flat-rate.php:101 +#: includes/common/shipping-modules/mp-table-rate.php:141 +#: includes/common/shipping-modules/mp-weight-rate.php:156 +msgid "Canada" +msgstr "Canadá" + +#: includes/common/shipping-modules/mp-flat-rate.php:92 +#: includes/common/shipping-modules/mp-table-rate.php:132 +#: includes/common/shipping-modules/mp-weight-rate.php:147 +msgid "Hawaii and Alaska" +msgstr "Hawai y Alaska" + +#: includes/common/shipping-modules/mp-flat-rate.php:83 +#: includes/common/shipping-modules/mp-table-rate.php:123 +#: includes/common/shipping-modules/mp-weight-rate.php:138 +msgid "Lower 48 States" +msgstr "Los 48 Estados limítrofes" + +#: includes/common/shipping-modules/mp-flat-rate.php:64 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping." +msgstr "Asegúrese de introducir un precio de envío para todas las opciones o los clientes podrían obtener el envío gratis." + +#: includes/common/shipping-modules/mp-flat-rate.php:25 +#: includes/common/shipping-modules/mp-flat-rate.php:223 +msgid "Flat Rate" +msgstr "Tarifa plana" + +#: includes/common/shipping-modules/mp-fedex.php:761 +msgid "FedEx (beta)" +msgstr "FedEx (beta)" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Centimeters" +msgstr "Centímetros" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Inches" +msgstr "Pulgadas" + +#: includes/admin/class-mp-products-admin.php:1676 +#: includes/admin/class-mp-setup-wizard.php:547 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:166 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +msgid "Kilograms" +msgstr "Kilogramos" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:103 +msgid " %1$s - %2$s" +msgstr " %1$s - %2$s" + +#: includes/common/shipping-modules/mp-usps.php:358 +msgid "Max Weight per Box" +msgstr "Peso máximo por caja" + +#: includes/common/shipping-modules/mp-usps.php:356 +msgid "Box Dimensions" +msgstr "Dimensiones de la caja" + +#: includes/common/shipping-modules/mp-usps.php:354 +msgid "Box Name" +msgstr "Nombre de caja" + +#: includes/common/shipping-modules/mp-usps.php:344 +msgid "Total weight selects the box size used for calculating Shipping costs." +msgstr "El peso total determina el tamaño de caja usada para calcular los costes de envío." + +#: includes/common/shipping-modules/mp-usps.php:343 +msgid "For each box defined enter the maximum weight it can contain." +msgstr "Entrar, por cada caja definida, el peso máximo que puede contener." + +#: includes/common/shipping-modules/mp-usps.php:341 +msgid "Enter your standard box sizes as LengthxWidthxHeight" +msgstr "Introduzca sus tamaños estándar de caja como LargoxAnchoxAlto" + +#: includes/common/shipping-modules/mp-fedex.php:386 +#: includes/common/shipping-modules/mp-ups.php:193 +#: includes/common/shipping-modules/mp-usps.php:234 +#: includes/common/shipping-modules/mp-usps.php:338 +msgid "Standard Boxes and Weight Limits" +msgstr "Cajas estándar y limites de peso" + +#: includes/common/shipping-modules/mp-usps.php:328 +msgid "Handling Charge per Interntional Shipment" +msgstr "Costos de gestión por envío internacional" + +#: includes/common/shipping-modules/mp-usps.php:294 +msgid "Handling Charge per Domestic Shipment " +msgstr "Gastos de gestión por envío doméstico" + +#: includes/common/shipping-modules/mp-fedex.php:388 +#: includes/common/shipping-modules/mp-ups.php:196 +#: includes/common/shipping-modules/mp-usps.php:237 +msgid "Add Box" +msgstr "Añadir caja" + +#: includes/common/shipping-modules/mp-fedex.php:63 +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "(Next Day)" +msgstr "(Día siguiente)" + +#: includes/common/shipping-modules/mp-fedex.php:63 +msgid "Europe First International Priority" +msgstr "Internacional europeo primera prioritario" + +#: includes/common/shipping-modules/mp-fedex.php:62 +msgid "International Priority" +msgstr "Internacional prioritario" + +#: includes/common/shipping-modules/mp-fedex.php:61 +#: includes/common/shipping-modules/mp-fedex.php:62 +#: includes/common/shipping-modules/mp-ups.php:54 +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "(1-3 Days)" +msgstr "(1-3 días)" + +#: includes/common/shipping-modules/mp-fedex.php:61 +msgid "International First" +msgstr "Internacional primera" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "(5 Days)" +msgstr "(5 días)" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "International Economy" +msgstr "Internacional económico" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "(2-7 Days)" +msgstr "(2-7 días)" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "Smart Post" +msgstr "Correo inteligente" + +#: includes/common/shipping-modules/mp-fedex.php:55 +#: includes/common/shipping-modules/mp-ups.php:49 +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "(1-5 Days)" +msgstr "(1-5 días)" + +#: includes/common/shipping-modules/mp-fedex.php:55 +msgid "Ground Home Delivery" +msgstr "Entrega nacional por carretera" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "(1-7 Days)" +msgstr "(1-7 días)" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "Fedex Ground" +msgstr "FedEx por carretera" + +#: includes/common/shipping-modules/mp-fedex.php:53 +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "(3 Days)" +msgstr "(3 días)" + +#: includes/common/shipping-modules/mp-fedex.php:53 +msgid "Fedex Express Saver" +msgstr "FedEx Express ahorro" + +#: includes/common/shipping-modules/mp-fedex.php:52 +#: includes/common/shipping-modules/mp-ups.php:48 +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "(2 Days)" +msgstr "(2 días)" + +#: includes/common/shipping-modules/mp-fedex.php:52 +msgid "Fedex 2 Day" +msgstr "Fedex 2 días" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "(2 Days am)" +msgstr "(2 días por la mañana)" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "Fedex 2 Day AM" +msgstr "Fedex 2 días por la mañana" + +#: includes/common/shipping-modules/mp-fedex.php:50 +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "(1 Day)" +msgstr "(1 día)" + +#: includes/common/shipping-modules/mp-fedex.php:50 +msgid "Standard Overnight" +msgstr "Entrega a la mañana siguiente estándar" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "(1 Day am )" +msgstr "(1 día por la mañana)" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "Priority Overnight" +msgstr "Entrega a la mañana siguiente prioritaria" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "(1 Day am)" +msgstr "(1 día por la mañana)" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "First Overnight" +msgstr "Entrega a la mañana siguiente primera" + +#: includes/admin/class-mp-orders-admin.php:476 +#: includes/common/shipping-modules/mp-fedex.php:31 +msgid "FedEx" +msgstr "FedEx" + +#: includes/common/payment-gateways/paymill.php:270 +#: includes/common/payment-gateways/simplify.php:179 +#: includes/common/payment-gateways/stripe.php:365 +msgid "%1$s Card ending in %2$s - Expires %3$s" +msgstr "%1$s tarjeta que acaba en %2$s - Caduca el %3$s" + +#: includes/common/payment-gateways/paymill.php:259 +#: includes/common/payment-gateways/pin.php:238 +#: includes/common/payment-gateways/simplify.php:171 +msgid "%s Store Purchase - Order ID: %s, Email: %s" +msgstr "%s compra en tienda - ID de pedido: %s, Correo electrónico: %s" + +#: includes/common/payment-gateways/stripe.php:266 +msgid "You must login to Stripe to get your API credentials. You can enter your test credentials, then live ones when ready." +msgstr "Debe iniciar sesión en Stripe para obtener sus credenciales API. Puede introducir sus credenciales de preuba, y los reales cuando esté preparado." + +#: includes/common/payment-gateways/stripe.php:261 +msgid "When in live mode Stripe recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "Cuando estés en modo Live en Stripe, se recomienda tener un certificado SSL configurado en su web para la página donde se muestra el formulario de confirmación de pedido." + +#: includes/common/payment-gateways/stripe.php:311 +msgid "The Stripe Token was not generated correctly. Please go back and try again." +msgstr "El identificador Stripe no fue generado correctamente. Por favor, vuelva atrás e inténtelo de nuevo." + +#: includes/common/payment-gateways/class-mp-gateway-api.php:263 +#: includes/common/payment-gateways/paymill.php:122 +#: includes/common/payment-gateways/stripe.php:222 +msgid "Card Number" +msgstr "Número de la tarjeta" + +#: includes/common/payment-gateways/paymill.php:86 +msgid "Please enter a valid Credit Card Number." +msgstr "Por favor, introduzca un número válido de tarjeta de crédito." + +#: includes/common/payment-gateways/stripe.php:45 +#: includes/common/payment-gateways/stripe.php:433 +msgid "Stripe" +msgstr "Stripe" + +#: includes/common/payment-gateways/paypal-express.php:750 +msgid "Sets the background color for the payment page. By default, the color is white." +msgstr "Establece el color de fondo de la página de pagos. Por defecto, el color es blanco." + +#: includes/common/payment-gateways/paypal-express.php:745 +msgid "Sets the background color for the header of the payment page. By default, the color is white." +msgstr "Establece el color de fondo para el encabezado de la página de pagos. Por defecto, el color es blanco." + +#: includes/common/payment-gateways/paypal-express.php:740 +msgid "Sets the border color around the header of the payment page. The border is a 2-pixel perimeter around the header space, which is 750 pixels wide by 90 pixels high. By default, the color is black." +msgstr "Establece el color del borde alrededor de la cabecera de la página de pagso. El borde es un perímetro de 2 píxeles alrededor del espacio de cabecera, que es de 750 píxeles de ancho por 90 píxeles de alto. Por defecto, el color es negro." + +#: includes/common/payment-gateways/paypal-express.php:735 +msgid "URL for an image you want to appear at the top left of the payment page. The image has a maximum size of 750 pixels wide by 90 pixels high. PayPal recommends that you provide an image that is stored on a secure (https) server. If you do not specify an image, the business name is displayed." +msgstr "URL de la imagen que desea que aparezca en la parte superior izquierda de la página de pagos. La imagen tiene un tamaño máximo de 750 píxeles de ancho por 90 píxeles de alto. PayPal recomienda que proporcione una imagen que se almacene en una conexión segura (https) del servidor. Si no se especifica una imagen, se mostrará el nombre de la empresa." + +#: includes/common/payment-gateways/paypal-express.php:857 +#: includes/common/payment-gateways/paypal-express.php:1131 +msgid "The payment is pending because it is part of an order that has been authorized but not settled." +msgstr "El pago está pendiente porque es parte de un pedido que ha sido autorizado pero no determinado." + +#: includes/common/payment-gateways/paypal-express.php:853 +#: includes/common/payment-gateways/paypal-express.php:1127 +msgid "The payment is pending because it has been authorized but not settled. You must capture the funds first." +msgstr "El pago está pendiente, ya que ha sido autorizado pero no determinado. Debe obtener los fondos primero." + +#: includes/common/payment-gateways/paypal-express.php:847 +#: includes/common/payment-gateways/paypal-express.php:1120 +msgid "You denied the payment when it was marked as pending." +msgstr "Has denegado el pago cuando estaba marcado como pendiente." + +#: includes/common/payment-gateways/paypal-express.php:837 +#: includes/common/payment-gateways/paypal-express.php:1108 +msgid "A reversal has occurred on this transaction due to an unknown reason." +msgstr "Se ha producido una cancelación en esta transacción debido a una razón desconocida." + +#: includes/common/payment-gateways/paypal-express.php:836 +#: includes/common/payment-gateways/paypal-express.php:1107 +msgid "A reversal has occurred on this transaction because you have given the customer a refund." +msgstr "Se ha producido una cancelación en esta transacción, ya que le ha dado al cliente un reembolso." + +#: includes/common/payment-gateways/paypal-express.php:835 +#: includes/common/payment-gateways/paypal-express.php:1106 +msgid "A reversal has occurred on this transaction due to a complaint about the transaction from your customer." +msgstr "Ha producido una cancelación en esta transacción debido a una queja acerca de la transacción por parte de su cliente." + +#: includes/common/payment-gateways/paypal-express.php:834 +#: includes/common/payment-gateways/paypal-express.php:1105 +msgid "A reversal has occurred on this transaction due to your customer triggering a money-back guarantee." +msgstr "Se ha producido una cancelación en esta transacción, debido a que su cliente ha activado la garantía de devolución." + +#: includes/common/payment-gateways/paypal-express.php:833 +#: includes/common/payment-gateways/paypal-express.php:1104 +msgid "A reversal has occurred on this transaction due to a chargeback by your customer." +msgstr "Se ha producido una cancelación en esta transacción debido a un \\\"Chargeback\\\" por parde de su cliente." + +#: includes/common/payment-gateways/paypal-express.php:1101 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer:" +msgstr "El pago ha dado marcha atrás debido a un \\\"Chargeback\\\" u otro tipo de cancelación. Los fondos se han eliminado de su cuenta y devueltos al comprador:" + +#: includes/common/payment-gateways/paypal-express.php:826 +#: includes/common/payment-gateways/paypal-express.php:1097 +msgid "A payment has been accepted." +msgstr "El pago ha sido aceptado." + +#: includes/common/payment-gateways/paypal-express.php:818 +#: includes/common/payment-gateways/paypal-express.php:1087 +msgid "The transaction has not terminated, e.g. an authorization may be awaiting completion." +msgstr "La transacción no ha terminado. Por ejemplo, la autorización puede estar esperando su finalización." + +#: includes/common/payment-gateways/payfast.php:531 +#: includes/common/payment-gateways/paypal-express.php:810 +#: includes/common/payment-gateways/paypal-express.php:1077 +msgid "The payment has failed. This happens only if the payment was made from your customer's bank account." +msgstr "El pago ha fallado. Esto sucede sólo si el pago se realizó desde la cuenta bancaria de su cliente." + +#: includes/common/payment-gateways/paypal-express.php:806 +#: includes/common/payment-gateways/paypal-express.php:1072 +msgid "An authorization for this transaction has been voided." +msgstr "Una autorización para esta operación ha sido anulada." + +#: includes/common/payment-gateways/paypal-express.php:802 +#: includes/common/payment-gateways/paypal-express.php:1067 +msgid "The authorization period for this payment has been reached." +msgstr "El período de autorización de este pago ha sido alcanzado." + +#: includes/common/payment-gateways/paypal-express.php:798 +#: includes/common/payment-gateways/paypal-express.php:1062 +msgid "A reversal has been canceled; for example, when you win a dispute and the funds for the reversal have been returned to you." +msgstr "Una revocación ha sido cancelada; por ejemplo, cuando gana una disputa y los fondos de la revocación le han sido devueltos." + +#: includes/common/payment-gateways/paypal-express.php:499 +#: includes/common/payment-gateways/paypal-express.php:1163 +msgid "PayPal Express Checkout" +msgstr "Confirmación de pedido mediante PayPal Express " + +#: includes/common/payment-gateways/paypal-chained-payments.php:798 +msgid "Gateway Settings Page Message" +msgstr "Mensaje de la página de configuración del Gateway" + +#: includes/common/payment-gateways/paypal-express.php:725 +msgid "Signature" +msgstr "Firma" + +#: includes/common/payment-gateways/eway31.php:506 +#: includes/common/payment-gateways/eway31.php:533 +#: includes/common/shipping-modules/mp-fedex.php:276 +msgid "API Password" +msgstr "Contraseña API " + +#: includes/common/payment-gateways/paypal-chained-payments.php:773 +msgid "Enter a percentage of all store sales to collect as a fee. Decimals allowed." +msgstr "Entra un porcentaje como tarifa a cobrar a todas las ventas de las tiendas. Se permiten decimales." + +#: includes/common/payment-gateways/paypal-chained-payments.php:757 +msgid "Using PayPal Chained Payments allows you as the multisite network owner to collect a predefined fee or percentage of all sales on network MarketPress stores! This is invisible to the customers who purchase items in a store, and all PayPal fees will be charged to the store owner. To use this option you must create API credentials, and you should make all other gateways unavailable or limited above." +msgstr "Usando pagos encadenados PayPal te permite como dueño de una red multisitio cobrar una tarifa predeterminada o un porcentaje de todas las ventas de las tiendas en red MarketPress. Esto es invisible para los clientes que compran artículos en una tienda, y todas las tarifas de PayPal se cobrarán al dueño de la tienda. Para usar esta opción debe crear credenciales API, y debe hacer que el resto de gateways estén desactivados o limitados." + +#: includes/common/payment-gateways/paypal-chained-payments.php:338 +msgid "Please be aware that we will deduct a ?% fee from the total of each transaction in addition to any fees PayPal may charge you. If for any reason you need to refund a customer for an order, please contact us with a screenshot of the refund receipt in your PayPal history as well as the Transaction ID of our fee deduction so we can issue you a refund. Thank you!" +msgstr "Por favor, tenga en cuenta que deduciremos una comisión de ?% del total de cada transacción, además de cualquier tarifa que PayPal pueda cobrarle. Si por cualquier motivo debe reembolsar un pedido a un cliente, por favor contacte con nosotros con un pantallazo del ticket de reembolso en su historial de PayPal y la ID de transacción de nuestra comisión para que podamos enviarle un reembolso. ¡Gracias!" + +#: includes/common/payment-gateways/paypal-chained-payments.php:698 +#: includes/common/payment-gateways/paypal-express.php:149 +msgid "There was a problem connecting to PayPal. Please try again." +msgstr "Hubo un problema al conectar con PayPal. Por favor, inténtelo de nuevo." + +#: includes/common/payment-gateways/paypal-chained-payments.php:470 +#: includes/common/payment-gateways/paypal-express.php:1053 +msgid "There was a problem verifying the IPN string with PayPal. Please try again." +msgstr "Hubo un problema al verificar la cadena de IPN con PayPal. Por favor, inténtelo de nuevo." + +#: includes/common/payment-gateways/paypal-chained-payments.php:310 +msgid "There was a problem connecting to PayPal to check the status of your purchase. Please check the status of your order here »" +msgstr "Ha habido un problema para conectarse a PayPal y validar el estado de su compra. Pro favor verifique el estado de su pedido aquí »" + +#: includes/common/payment-gateways/payfast.php:539 +#: includes/common/payment-gateways/paypal-chained-payments.php:254 +#: includes/common/payment-gateways/paypal-express.php:1139 +msgid "The payment is pending." +msgstr "El pago está pendiente." + +#: includes/common/payment-gateways/paypal-chained-payments.php:251 +#: includes/common/payment-gateways/paypal-chained-payments.php:531 +#: includes/common/payment-gateways/paypal-express.php:862 +#: includes/common/payment-gateways/paypal-express.php:1136 +msgid "The payment is pending for an unknown reason. For more information, contact PayPal customer service." +msgstr "El pago está pendiente por una razón desconocida. Para más información, póngase en contacto con el servicio de atención al cliente de PayPal." + +#: includes/common/payment-gateways/paypal-chained-payments.php:250 +#: includes/common/payment-gateways/paypal-chained-payments.php:530 +#: includes/common/payment-gateways/paypal-express.php:861 +#: includes/common/payment-gateways/paypal-express.php:1135 +msgid "The payment is pending because you are not yet verified. You must verify your account before you can accept this payment." +msgstr "El pago está pendiente porque usted no se ha verificado aún. Debe verificar su cuenta antes de poder aceptar este pago." + +#: includes/common/payment-gateways/paypal-chained-payments.php:249 +#: includes/common/payment-gateways/paypal-chained-payments.php:529 +#: includes/common/payment-gateways/paypal-express.php:860 +#: includes/common/payment-gateways/paypal-express.php:1134 +msgid "The payment is pending because it was made via credit card and you must upgrade your account to Business or Premier status in order to receive the funds. It can also mean that you have reached the monthly limit for transactions on your account." +msgstr "El pago está pendiente porque se realizó a través de tarjeta de crédito y debe actualizar su cuenta a Business o Premier con el fin de recibir los fondos. También puede significar que ha alcanzado el límite mensual para las transacciones en su cuenta." + +#: includes/common/payment-gateways/paypal-chained-payments.php:248 +#: includes/common/payment-gateways/paypal-chained-payments.php:528 +#: includes/common/payment-gateways/paypal-express.php:859 +#: includes/common/payment-gateways/paypal-express.php:1133 +msgid "The payment is pending because it was made to an email address that is not yet registered or confirmed." +msgstr "El pago está pendiente porque se realizó a una dirección de correo electrónico que no está registrada o confirmada." + +#: includes/common/payment-gateways/paypal-chained-payments.php:247 +#: includes/common/payment-gateways/paypal-chained-payments.php:527 +#: includes/common/payment-gateways/paypal-express.php:858 +#: includes/common/payment-gateways/paypal-express.php:1132 +msgid "The payment is pending while it is being reviewed by PayPal for risk." +msgstr "El pago está pendiente, está siendo revisado por PayPal por cuestiones de control de riesgo." + +#: includes/common/payment-gateways/paypal-chained-payments.php:246 +#: includes/common/payment-gateways/paypal-chained-payments.php:526 +#: includes/common/payment-gateways/paypal-express.php:856 +#: includes/common/payment-gateways/paypal-express.php:1130 +msgid "You do not have a balance in the currency sent, and you do not have your Payment Receiving Preferences set to automatically convert and accept this payment. You must manually accept or deny this payment." +msgstr "No tiene un saldo en la divisa enviada, y las preferencias de pagos recibidos no están ajustadas para que automáticamente se conviertan y acepten estos pagos. Debe aceptar o rechazar manualmente este pago." + +#: includes/common/payment-gateways/paypal-chained-payments.php:245 +#: includes/common/payment-gateways/paypal-chained-payments.php:525 +#: includes/common/payment-gateways/paypal-express.php:855 +#: includes/common/payment-gateways/paypal-express.php:1129 +msgid "The payment is pending because you hold a non-U.S. account and do not have a withdrawal mechanism. You must manually accept or deny this payment from your Account Overview." +msgstr "El pago está pendiente porque usted tiene una cuenta fuera de Estados Unidos y no tienen un mecanismo de retirada. Debe aceptar o rechazar el pago de forma manual desde su Resumen de cuenta." + +#: includes/common/payment-gateways/paypal-chained-payments.php:244 +#: includes/common/payment-gateways/paypal-chained-payments.php:524 +#: includes/common/payment-gateways/paypal-express.php:854 +#: includes/common/payment-gateways/paypal-express.php:1128 +msgid "The payment is pending because it was made by an eCheck that has not yet cleared." +msgstr "El pago está pendiente, ya que fue hecha por un eCheck que todavía no se ha admitido." + +#: includes/common/payment-gateways/paypal-chained-payments.php:243 +#: includes/common/payment-gateways/paypal-chained-payments.php:523 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences section of your Profile." +msgstr "Está pendiente de pago por que su cliente no incluyó una dirección de envío verificada y las Preferencias de Recepción de Pago son tales que debe aceptar o rechazar manualmente estos pagos. Para cambiar las preferencias, debe ir a la sección de Preferencias de su perfil." + +#: includes/common/payment-gateways/paypal-chained-payments.php:236 +#: includes/common/payment-gateways/paypal-chained-payments.php:516 +msgid "The transaction was rejected by the receiver (you)." +msgstr "La transacción fue rechazada por el receptor (tu)." + +#: includes/common/payment-gateways/paypal-chained-payments.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:510 +#: includes/common/payment-gateways/paypal-express.php:843 +#: includes/common/payment-gateways/paypal-express.php:1115 +msgid "You refunded the payment." +msgstr "Reembolsaste el pago." + +#: includes/common/payment-gateways/paypal-chained-payments.php:224 +#: includes/common/payment-gateways/paypal-chained-payments.php:504 +msgid "The transaction is in progress." +msgstr "La transacción está en progreso." + +#: includes/common/payment-gateways/paypal-chained-payments.php:212 +#: includes/common/payment-gateways/paypal-chained-payments.php:491 +#: includes/common/payment-gateways/paypal-express.php:814 +#: includes/common/payment-gateways/paypal-express.php:1082 +msgid "The payment has been partially refunded." +msgstr "El pago ha sido parcialmente reembolsado." + +#: includes/common/payment-gateways/paypal-chained-payments.php:202 +#: includes/common/payment-gateways/paypal-chained-payments.php:481 +msgid "PayPal balance, Credit Card, or Instant Transfer" +msgstr "Saldo de PayPal, tarjeta de crédito o transferencia instantánea" + +#: includes/common/payment-gateways/paypal-chained-payments.php:177 +msgid "There was a problem connecting to PayPal to setup your purchase. Please try again." +msgstr "Hubo un problema al conectar con PayPal para preparar su compra. Por favor, inténtelo de nuevo." + +#: includes/common/payment-gateways/paypal-chained-payments.php:122 +msgid "Your PayPal transaction has been canceled." +msgstr "Su transacción de PayPal ha sido cancelada." + +#: includes/common/payment-gateways/paypal-chained-payments.php:50 +#: includes/common/payment-gateways/paypal-chained-payments.php:53 +#: includes/common/payment-gateways/paypal-chained-payments.php:732 +#: includes/common/payment-gateways/paypal-express.php:500 +#: includes/common/payment-gateways/paypal-express.php:938 +msgid "PayPal" +msgstr "PayPal" + +#: includes/common/payment-gateways/paypal-chained-payments.php:48 +#: includes/common/payment-gateways/paypal-chained-payments.php:730 +#: includes/common/payment-gateways/paypal-chained-payments.php:756 +#: includes/common/payment-gateways/paypal-chained-payments.php:873 +msgid "PayPal Chained Payments" +msgstr "Pagos encadenados PayPal" + +#: includes/common/payment-gateways/paypal-payflow.php:59 +#: includes/common/payment-gateways/paypal-payflow.php:467 +msgid "PayPal Payflow Pro" +msgstr "PayPal Payflow Pro" + +#: includes/common/payment-gateways/skrill.php:378 +msgid "Chargeback - A payment was reversed due to a chargeback. The funds have been removed from your account balance and returned to the buyer." +msgstr "\"Chargeback\" - Un pago ha sido devuelto debido a un \"chargeback\". Los fondos han sido retirados de su saldo y devueltos al comprador." + +#: includes/common/payment-gateways/skrill.php:372 +msgid "Failed - The Credit Card or Direct Debit transaction was declined." +msgstr "Falló - La transacción de la tarjeta de crédito o débito directo fue rechazada." + +#: includes/common/payment-gateways/_payway.php:354 +#: includes/common/payment-gateways/skrill.php:366 +msgid "Cancelled - The payment was cancelled manually by the sender in their online account history or was auto-cancelled after 14 days pending." +msgstr "Cancelado - El pago fue cancelado manualmente por el remitente en su historial online de la cuenta o fue autocancelado tras estar 14 días en pendiente." + +#: includes/common/payment-gateways/skrill.php:360 +msgid "Pending - The payment is pending. It can take 2-3 days for bank transfers to complete." +msgstr "Pendiente - El pago está pendiente. Pueden ser necesarios 2-3 días para que las transferencias bancarias se completen." + +#: includes/common/payment-gateways/_payway.php:349 +#: includes/common/payment-gateways/skrill.php:354 +msgid "Processed - The payment has been completed, and the funds have been added successfully to your Moneybookers account balance." +msgstr "Procesado - El pago ha sido completado, y los fondos se han añadido con éxito a su saldo Moneybookers." + +#: includes/common/payment-gateways/skrill.php:189 +msgid "Shown to the customer on the confirmation screen - the end step of the process - a note, confirmation number, or any other message. Line breaks <br> may be used for longer messages." +msgstr "Muestra en la página de confirmación (el paso final del proceso) una nota, un número de confirmación o cualquier otro mensaje al comprador. Se puede usar Line Breaks <br> a la hora de redactar mensajes largos." + +#: includes/common/payment-gateways/skrill.php:188 +msgid "Confirmation Note (optional)" +msgstr "Nota de confirmación (opcional)" + +#: includes/common/payment-gateways/skrill.php:183 +msgid "The URL of the logo which you would like to appear at the top of the payment form. The logo must be accessible via HTTPS otherwise it will not be shown. For best integration results we recommend that you use a logo with dimensions up to 200px in width and 50px in height." +msgstr "La URL del logo el cual desea que aparezca en la parte superior del formulario de pago. El logo debe ser accesible mediante HTTPS, en caso contrario no se mostrará. Para una mejor integración, recomendamos usar un logo que no supere los 200px de ancho y los 50px de alto." + +#: includes/common/payment-gateways/skrill.php:182 +msgid "Logo Image (optional)" +msgstr "Logo (opcional)" + +#: includes/common/payment-gateways/skrill.php:177 +msgid "The name of this store, which will be shown on the gateway. If no value is submitted, the account email will be shown as the recipient of the payment." +msgstr "El nombre de esta tienda, el cual se mostrará en el gateway. Si no se introduce ningún valor, el email de la cuenta se usará como el destinatario del pago." + +#: includes/common/payment-gateways/skrill.php:176 +msgid "Merchant Name (optional)" +msgstr "Nombre de vendedor (opcional)" + +#: includes/common/payment-gateways/skrill.php:165 +msgid "Language" +msgstr "Idioma" + +#: includes/common/payment-gateways/2checkout.php:368 +#: includes/common/payment-gateways/authorizenet-aim.php:262 +#: includes/common/payment-gateways/eway.php:363 +#: includes/common/payment-gateways/eway31.php:471 +#: includes/common/payment-gateways/mollie.php:91 +#: includes/common/payment-gateways/paymill.php:193 +#: includes/common/payment-gateways/paypal-chained-payments.php:356 +#: includes/common/payment-gateways/paypal-express.php:688 +#: includes/common/payment-gateways/paypal-payflow.php:432 +#: includes/common/payment-gateways/pin.php:186 +#: includes/common/payment-gateways/skrill.php:152 +#: includes/common/payment-gateways/stripe.php:288 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:104 +msgid "Currency" +msgstr "Moneda." + +#: includes/common/payment-gateways/2checkout.php:359 +#: includes/common/payment-gateways/skrill.php:143 +msgid "Secret Word" +msgstr "Palabra secreta" + +#: includes/common/payment-gateways/skrill.php:261 +msgid "Order ID:" +msgstr "Numero de compra:" + +#: includes/common/payment-gateways/skrill.php:234 +msgid "Complete Checkout" +msgstr "Completar la confirmación de pedido" + +#: includes/common/payment-gateways/skrill.php:204 +msgid "Your Moneybookers transaction has been canceled." +msgstr "Has cancelado tu transacción de MoneyBookers" + +#: includes/common/payment-gateways/manual-payments.php:155 +msgid "This is the email text to send to those who have made manual payment checkouts. You should include your manual payment instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "Este es el texto del correo electrónico para enviar a aquellos que han hecho compras mediante pago manual. Debe incluir las instrucciones de pago manual aquí. Sustituye al correo electrónico de pago predeterminado. Estos códigos serán reemplazados por los datos del pedido: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No se permite HTML." + +#: includes/common/payment-gateways/_payway.php:257 +#: includes/common/payment-gateways/manual-payments.php:128 +msgid "Record payments manually, such as by Cash, Check, or EFT." +msgstr "Registra pagos manualmente, como efectivo, cheque o TEF (Transferencia electrónica de fondos)." + +#: includes/common/payment-gateways/manual-payments.php:71 +msgid "Manual/Invoice" +msgstr "Manual/Factura" + +#: includes/admin/class-mp-setup-wizard.php:648 +#: includes/common/payment-gateways/manual-payments.php:35 +#: includes/common/payment-gateways/manual-payments.php:36 +msgid "Manual Payment" +msgstr "Pago manual" + +#: includes/common/payment-gateways/manual-payments.php:34 +#: includes/common/payment-gateways/manual-payments.php:163 +msgid "Manual Payments" +msgstr "Pagos manuales" + +#: includes/common/payment-gateways/_ideal.php:288 +msgid "iDEAL Simulator (for testing)" +msgstr "Simulador iDEAL (para realizar pruebas)" + +#: includes/common/payment-gateways/_ideal.php:287 +msgid "ABN Amro Bank" +msgstr "Banco ABN Amro" + +#: includes/common/payment-gateways/_ideal.php:286 +msgid "Friesland Bank" +msgstr "Banco Friesland" + +#: includes/common/payment-gateways/_ideal.php:285 +msgid "Rabobank" +msgstr "Rabobank" + +#: includes/common/payment-gateways/_ideal.php:284 +msgid "ING Bank" +msgstr "Banco ING" + +#: includes/common/payment-gateways/_ideal.php:279 +msgid "Bank" +msgstr "Banco" + +#: includes/common/payment-gateways/_ideal.php:270 +msgid "To make it easier to pay for online products and services, the Dutch banking community has developed the iDEAL online payment method. iDEAL allows online payments to be made using online banking in EUR only." +msgstr "Para facilitar el pago de productos y servicios a través de internet, la comunidad bancaria holandesa desarrolló el método de pago online iDEAL. iDEAL permite pagar en línea utilizando banca online solamente en Euros." + +#: includes/common/payment-gateways/_ideal.php:247 +#: includes/common/payment-gateways/_payway.php:199 +#: includes/common/payment-gateways/manual-payments.php:68 +msgid "Invoiced" +msgstr "Facturado" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1016 +msgid "Coupon" +msgstr "Cupón" + +#: includes/common/payment-gateways/_ideal.php:77 +#: includes/common/payment-gateways/_ideal.php:250 +#: includes/common/payment-gateways/_payway.php:202 +msgid "iDEAL" +msgstr "iDEAL" + +#: includes/common/payment-gateways/_ideal.php:76 +msgid "iDEAL (beta)" +msgstr "iDEAL (beta)" + +#: includes/common/payment-gateways/payfast.php:327 +msgid "Merchant Key" +msgstr "Clave de vendedor" + +#: includes/common/payment-gateways/_ideal.php:293 +#: includes/common/payment-gateways/_payway.php:302 +#: includes/common/payment-gateways/payfast.php:324 +msgid "Merchant ID" +msgstr "ID de vendedor" + +#: includes/common/payment-gateways/eway31.php:462 +msgid "eWay Rapid 3.0 Payments lets merchants recieve credit card payments through eWay without need for users to leave the shop. Note this gateway requires a valid SSL certificate configured for this site." +msgstr "Los pagos eWay Rapid 3.0 permiten a los compradores recibir pagos por tarjeta de crédito a traves de eWay sin necesidad de que los usuarios abandonen la tienda. Tenga en cuenta que este Gateway requiere de un certificado SSL válido configurado para esta web." + +#: includes/common/payment-gateways/eway.php:452 +msgid "There was a problem connecting to eWay. Please try again." +msgstr "Hubo un problema conectando con eWay. Por favor, inténtelo de nuevo." + +#: includes/common/payment-gateways/eway.php:432 +#: includes/common/payment-gateways/eway.php:437 +msgid "The url of the image can be hosted on your website and pass the secure https:// path of the image to be displayed at the top of the website. This is the second image block on the webpage and is restricted to 960px X 65px. A default secure image is used if none is supplied." +msgstr "La URL de la imagen puede estar hospedada en tu web y pasar la ruta segura https:// de la imagen para ser mostrada en la parte superior de la web. Este es el segundo bloque de imagen de la web y está restringido a 960px x 65px. Si no se suministra ninguna, se utilizará una imagen segura por defecto." + +#: includes/common/payment-gateways/eway.php:431 +#: includes/common/payment-gateways/eway.php:436 +msgid "Company Logo (optional)" +msgstr "Logo de la compañía (opcional)" + +#: includes/common/payment-gateways/eway.php:427 +msgid "The page footer text can be customised and populated below the customer's order details. Useful for contact information." +msgstr "El texto del pie de página puede ser personalizado, por debajo de los detalles de pedido del cliente. Es útil para dar información de contacto." + +#: includes/common/payment-gateways/eway.php:426 +msgid "Page Footer (optional)" +msgstr "Pie de la página (opcional)" + +#: includes/common/payment-gateways/eway.php:421 +msgid "Page Description (optional)" +msgstr "Descripción de la página (opcional)" + +#: includes/common/payment-gateways/eway.php:417 +#: includes/common/payment-gateways/eway.php:422 +msgid "This value is used to populate the browsers title bar at the top of the screen." +msgstr "Este valor se utiliza para ingresar datos en la barra de título del navegador en lo alto de la pantalla." + +#: includes/common/payment-gateways/eway.php:416 +msgid "Page Title (optional)" +msgstr "Título de la página (opcional)" + +#: includes/common/payment-gateways/eway.php:412 +msgid "This will be displayed as the company the customer is purchasing from, including this is highly recommended." +msgstr "Esto se mostrará como la compañía a la que el cliente está comprando, incluir esto es altamente recomendado." + +#: includes/common/payment-gateways/eway.php:411 +msgid "Company Name" +msgstr "Nombre de empresa" + +#: includes/common/payment-gateways/eway.php:394 +msgid "Customer ID" +msgstr "ID de cliente" + +#: includes/common/payment-gateways/eway.php:381 +#: includes/common/payment-gateways/eway31.php:488 +msgid "Live API Credentials" +msgstr "Credenciales API en vivo" + +#: includes/common/payment-gateways/eway.php:371 +#: includes/common/payment-gateways/eway31.php:479 +msgid "Gateway Mode" +msgstr "Modo Gateway" + +#: includes/common/payment-gateways/eway.php:354 +msgid "The Hosted Page is a webpage hosted on eWAY's side eliminating the need for merchants to capture, transmit or store credit card numbers. At the checkout time the merchant automatically redirects the customer to the Hosted Page where they would enter their details and have the transaction processed. Upon completion of the transaction the customer is redirected back to the MarketPress checkout confirmation page." +msgstr "La Página Alojada es una página web alojada en el servidor de eWay, eliminando la necesidad para los vendedores de capturar, transmitir o almacenar números de tarjetas de crédito. A la hora de confirmar el pedido, el vendedor redirecciona automáticamente al cliente a la Página Alojada donde deberán introducir sus detalles y se procesará la transacción. Tras completar la transacción el cliente es redirigido de vuelta a la página de confirmación de pedido de MarketPress." + +#: includes/common/payment-gateways/eway.php:314 +msgid "There was a problem with your credit card information: %s" +msgstr "Hubo un problema con la información de su tarjeta de crédito: %s" + +#: includes/common/payment-gateways/eway.php:300 +msgid "Paid - The card has been processed - %s" +msgstr "Pagado - La tarjeta ha sido procesada - %s" + +#: includes/common/payment-gateways/eway.php:253 +msgid "There was a problem setting up the transaction with eWay: %s" +msgstr "Hubo un problema configurando la transacción con eWay: %s" + +#: includes/common/payment-gateways/eway.php:245 +#: includes/common/payment-gateways/eway.php:289 +msgid "There was a problem parsing the response from eWay. Please try again." +msgstr "Hubo un problema analizando la respuesta de eWay. Por favor, inténtelo de nuevo." + +#: includes/common/payment-gateways/_ideal.php:159 +#: includes/common/payment-gateways/eway.php:189 +#: includes/common/payment-gateways/paypal-chained-payments.php:634 +#: includes/common/payment-gateways/paypal-express.php:322 +#: includes/common/payment-gateways/paypal-express.php:473 +msgid "%s Store Purchase - Order ID: %s" +msgstr "%s compra en la tienda - ID del pedido: %s" + +#: includes/common/payment-gateways/eway.php:147 +#: includes/common/payment-gateways/eway.php:462 +msgid "eWay Shared Payments" +msgstr "Pagos compartidos eWay" + +#: includes/common/payment-gateways/_cubepoints.php:214 +msgid "This is the email text to send to those who have made CubePoints checkouts. You should include your CubePoints instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "Este es el texto del correo electrónico que enviar a aquellos que hayan hecho confirmaciones de pedido CubePoints. Debe incluir sus instrucciones CubePoints aquí. Sustituye al correo electrónico por defecto a la hora de confirmar pedido. Estos códigos se sustituirán con los detalles del pedido: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No se permite HTML." + +#: includes/common/payment-gateways/_cubepoints.php:212 +#: includes/common/payment-gateways/free_orders.php:188 +#: includes/common/payment-gateways/manual-payments.php:154 +msgid "Order Confirmation Email" +msgstr "Correo electrónico de confirmación de pedido" + +#: includes/common/payment-gateways/_cubepoints.php:207 +#: includes/common/payment-gateways/manual-payments.php:149 +msgid "Confirmation User Instructions" +msgstr "Instrucciones para la confirmación del usuario" + +#: includes/common/payment-gateways/_cubepoints.php:202 +#: includes/common/payment-gateways/manual-payments.php:144 +msgid "User Instructions" +msgstr "Instrucciones para el usuario" + +#: includes/common/payment-gateways/_cubepoints.php:198 +#: includes/common/payment-gateways/free_orders.php:170 +#: includes/common/payment-gateways/manual-payments.php:139 +msgid "Enter a public name for this payment method that is displayed to users - No HTML" +msgstr "Introduzca un nombre público de este método de pago para mostrar a los usuarios - Sin HTML" + +#: includes/admin/class-mp-orders-admin.php:532 +#: includes/common/payment-gateways/_cubepoints.php:196 +#: includes/common/payment-gateways/free_orders.php:169 +#: includes/common/payment-gateways/manual-payments.php:138 +msgid "Method Name" +msgstr "Nombre del método" + +#: includes/common/payment-gateways/_cubepoints.php:187 +msgid "Accept CubePoints as payment(requires the CubePoints plugin)." +msgstr "Acepta CubePoints como pago (requiere el plugin CubePoints)." + +#: includes/common/payment-gateways/_cubepoints.php:140 +msgid "Sorry, but you do not appear to have enough points to complete this purchase!" +msgstr "¡Lo siento, pero no parece tener suficientes puntos disponibles para esta compra!" + +#: includes/common/payment-gateways/_cubepoints.php:124 +msgid "%s Store Purchase" +msgstr "%s compra en tienda" + +#: includes/common/payment-gateways/_cubepoints.php:79 +#: includes/common/payment-gateways/_cubepoints.php:171 +msgid "Your current points: " +msgstr "Tus puntos actuales:" + +#: includes/common/payment-gateways/_cubepoints.php:133 +#: includes/common/payment-gateways/_cubepoints.php:197 +msgid "CubePoints" +msgstr "CubePoints" + +#: includes/common/payment-gateways/authorizenet-aim.php:344 +msgid "Authorize.net AIM Checkout" +msgstr "Confirmación del pedido AIM Authorize.net" + +#: includes/common/payment-gateways/authorizenet-aim.php:331 +msgid "Custom API URL" +msgstr "URL de API personalizada" + +#: includes/common/payment-gateways/authorizenet-aim.php:332 +msgid "Many other gateways have Authorize.net API emulators. To use one of these gateways input their API post url here." +msgstr "Otros gateways tienen emuladores de la API de Authorize.net. Para usar uno de dichos gateways, introduzca la url del post API aquí." + +#: includes/common/payment-gateways/authorizenet-aim.php:322 +msgid "Request a delimited response from the payment gateway." +msgstr "Solicita una respuesta delimitada desde el Gateway de pago." + +#: includes/common/payment-gateways/authorizenet-aim.php:316 +msgid "Security: MD5 Hash" +msgstr "Seguridad: Hash MD5" + +#: includes/common/payment-gateways/authorizenet-aim.php:317 +msgid "The payment gateway generated MD5 hash value that can be used to authenticate the transaction response. Not needed because responses are returned using an SSL connection." +msgstr "El Gateway de pago ha generado un valor hash MD5 que puede ser usado para autentificar la respuesta de la transacción. No se necesita porque las respuestas se devuelven usando una conexión SSL." + +#: includes/common/payment-gateways/authorizenet-aim.php:306 +msgid "Customer Receipt Email Footer" +msgstr "Pie de la factura por correo electrónico del cliente" + +#: includes/common/payment-gateways/authorizenet-aim.php:296 +msgid "Customer Receipt Email Header" +msgstr "Cabecera de la factura por correo electrónico del cliente" + +#: includes/common/payment-gateways/authorizenet-aim.php:297 +#: includes/common/payment-gateways/paypal-payflow.php:446 +msgid "This text will appear as the header of the email receipt sent to the customer." +msgstr "Este texto aparecerá como cabecera de la factura por correo electrónico enviado al cliente." + +#: includes/common/payment-gateways/authorizenet-aim.php:282 +msgid "Encapsulation Character" +msgstr "Carácter de encapsulación" + +#: includes/common/payment-gateways/authorizenet-aim.php:283 +msgid "Authorize.net default is blank. Otherwise, get this from your credit card processor. If the transactions are going through, but getting strange responses, this character is most likely wrong." +msgstr "Por defecto en Authorize.net es vacio. Si no, consiga esto de su procesador de tarjetas de crédito. Si las transacciones están fallando, pero recibe respuestas extrañas, probablemente este carácter sea incorrecto." + +#: includes/common/payment-gateways/authorizenet-aim.php:273 +msgid "Optional settings to control advanced options" +msgstr "Configuración opcional para controlar opciones avanzadas" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:224 +#: includes/common/payment-gateways/authorizenet-aim.php:272 +msgid "Advanced Settings" +msgstr "Configuración avanzada" + +#: includes/common/payment-gateways/authorizenet-aim.php:253 +msgid "Transaction Key" +msgstr "Clave de transacción" + +#: includes/common/payment-gateways/authorizenet-aim.php:246 +msgid "Login ID" +msgstr "ID de inicio de sesión" + +#: includes/common/payment-gateways/paypal-payflow.php:396 +msgid "Gateway Credentials" +msgstr "Credenciales de Gateway" + +#: includes/common/payment-gateways/authorizenet-aim.php:221 +msgid "Authorize.net AIM is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway. USD is the only currency supported by this gateway." +msgstr "Authorize.net AIM es una solución de proceso de pagos personalizable que da control al vendedor sobre todos los pasos a la hora de procesar una transacción. Se requiere de un certificado SSL para usar este Gateway. La única moneda soportada por este Gateway son dólares estadounidenses." + +#: includes/common/payment-gateways/authorizenet-aim.php:205 +msgid "There was a problem finalizing your purchase. %s Please go back and try again." +msgstr "Ha habido un problema al finalizar su pedido. %s Por favor vuelva a intentarlo." + +#: includes/common/payment-gateways/payfast.php:519 +#: includes/common/payment-gateways/paypal-chained-payments.php:218 +#: includes/common/payment-gateways/paypal-chained-payments.php:498 +#: includes/common/payment-gateways/paypal-express.php:822 +#: includes/common/payment-gateways/paypal-express.php:1092 +msgid "The payment has been completed, and the funds have been added successfully to your account balance." +msgstr "El pago se ha completado, y los fondos se han añadido correctamente a su cuenta." + +#: includes/common/payment-gateways/paypal-payflow.php:233 +msgid "Please enter a valid credit card security code" +msgstr "Por favor, introduzca un código de seguridad de tarjeta válido" + +#: includes/common/payment-gateways/paypal-payflow.php:224 +#: includes/public/class-mp-checkout.php:867 +msgid "Please enter a valid credit card number" +msgstr "Por favor, introduzca un número de tarjeta de crédito válido" + +#: includes/common/payment-gateways/paypal-payflow.php:221 +msgid "Please enter your credit card number" +msgstr "Por favor, introduzca su número tarjeta de crédito" + +#: includes/common/payment-gateways/paypal-payflow.php:217 +msgid "Please enter your credit card security code" +msgstr "Por favor, introduzca el código de seguridad de su tarjeta" + +#: includes/common/payment-gateways/paypal-payflow.php:213 +msgid "Please select your credit card expiration date." +msgstr "Por favor, seleccione la fecha de caducidad de su tarjeta de crédito." + +#: includes/common/payment-gateways/2checkout.php:299 +#: includes/common/payment-gateways/authorizenet-aim.php:50 +#: includes/common/payment-gateways/eway.php:148 +#: includes/common/payment-gateways/eway.php:298 +#: includes/common/payment-gateways/eway31.php:267 +#: includes/common/payment-gateways/paymill.php:46 +#: includes/common/payment-gateways/paypal-express.php:972 +#: includes/common/payment-gateways/paypal-payflow.php:60 +#: includes/common/payment-gateways/pin.php:46 +#: includes/common/payment-gateways/simplify.php:19 +#: includes/common/payment-gateways/stripe.php:46 +#: includes/common/payment-gateways/wepay.php:37 +msgid "Credit Card" +msgstr "Tarjeta de crédito" + +#: includes/common/payment-gateways/authorizenet-aim.php:49 +msgid "Authorize.net Checkout" +msgstr "Authorize.net Checkout" + +#: includes/common/payment-gateways/skrill.php:156 +#: includes/common/payment-gateways/stripe.php:293 +msgid "Selecting a currency other than that used for your store may cause problems at checkout." +msgstr "Seleccionar una moneda diferente a la usada en su tienda puede causar problemas durante la confirmación del pedido." + +#: includes/common/payment-gateways/2checkout.php:352 +msgid "Seller ID" +msgstr "ID de vendedor" + +#: includes/common/payment-gateways/2checkout.php:340 +#: includes/common/payment-gateways/_ideal.php:311 +#: includes/common/payment-gateways/authorizenet-aim.php:234 +#: includes/common/payment-gateways/eway.php:376 +#: includes/common/payment-gateways/payfast.php:315 +#: includes/common/payment-gateways/paypal-chained-payments.php:368 +#: includes/common/payment-gateways/paypal-express.php:699 +#: includes/common/payment-gateways/paypal-payflow.php:391 +msgid "Live" +msgstr "Live" + +#: includes/common/payment-gateways/2checkout.php:339 +#: includes/common/payment-gateways/authorizenet-aim.php:233 +#: includes/common/payment-gateways/eway.php:375 +#: includes/common/payment-gateways/paypal-chained-payments.php:367 +#: includes/common/payment-gateways/paypal-express.php:698 +#: includes/common/payment-gateways/paypal-payflow.php:390 +#: includes/common/shipping-modules/mp-fedex.php:263 +msgid "Sandbox" +msgstr "Sandbox" + +#: includes/common/payment-gateways/2checkout.php:336 +#: includes/common/payment-gateways/_ideal.php:307 +#: includes/common/payment-gateways/authorizenet-aim.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:365 +#: includes/common/payment-gateways/paypal-express.php:695 +#: includes/common/payment-gateways/paypal-payflow.php:387 +#: includes/common/payment-gateways/wepay.php:130 +#: includes/common/shipping-modules/mp-fedex.php:260 +msgid "Mode" +msgstr "Modo" + +#: includes/common/payment-gateways/2checkout.php:288 +#: includes/common/payment-gateways/mijireh.php:242 +#: includes/common/payment-gateways/mollie.php:212 +msgid "The order has been received" +msgstr "El pedido ha sido recibido" + +#: includes/common/payment-gateways/2checkout.php:74 +#: includes/common/payment-gateways/2checkout.php:75 +#: includes/common/payment-gateways/2checkout.php:435 +msgid "2Checkout" +msgstr "2Checkout" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:306 +msgid "Confirm" +msgstr "Confirmar" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:218 +#: includes/common/class-mp-cart.php:974 includes/common/class-mp-cart.php:1354 +#: includes/common/template-functions.php:918 +msgid "Checkout" +msgstr "Confirmación de pedido" + +#: includes/common/template-functions.php:207 +msgid "Check Order Status" +msgstr "Ver estado del pedido" + +#: includes/common/template-functions.php:235 +msgid "View Products" +msgstr "Ver productos" + +#: includes/common/template-functions.php:263 +msgid "Visit Store" +msgstr "Visitar la tienda" + +#: includes/common/template-functions.php:2912 +#: includes/multisite/template-functions.php:448 +msgid "Order By" +msgstr "Ordenar por" + +#: includes/common/template-functions.php:2887 +#: includes/multisite/template-functions.php:405 +msgid "Price (High to Low)" +msgstr "Precio (de más alto a más bajo)" + +#: includes/common/template-functions.php:2886 +#: includes/multisite/template-functions.php:404 +msgid "Price (Low to High)" +msgstr "Precio (de más bajo a más alto)" + +#: includes/common/template-functions.php:2881 +#: includes/multisite/template-functions.php:399 +msgid "Default" +msgstr "Por defecto" + +#: includes/common/template-functions.php:2858 +msgid "Show All" +msgstr "Mostrar todo" + +#: includes/common/class-mp-product.php:2048 +msgid "View Larger Image »" +msgstr "Ver imagen más grande »" + +#: includes/common/class-mp-product.php:979 +msgid "Out of Stock" +msgstr "Agotado" + +#: includes/common/template-functions.php:148 +msgid "Price: " +msgstr "Precio: " + +#: includes/multisite/template-functions.php:833 +msgid "No Tags" +msgstr "Sin Etiquetas" + +#: includes/common/template-functions.php:3162 +msgid "Uncategorized" +msgstr "Sin categoría" + +#: includes/common/class-mp-cart.php:569 includes/common/class-mp-order.php:604 +#: includes/common/helpers.php:115 +msgid "Download" +msgstr "Descargar" + +#: includes/common/class-mp-cart.php:1353 +msgid "Empty Cart" +msgstr "Vaciar Carrito" + +#: includes/common/payment-gateways/_payway.php:291 +#: includes/common/payment-gateways/paypal-express.php:718 +#: includes/common/payment-gateways/paypal-payflow.php:423 +#: includes/common/shipping-modules/mp-ups.php:158 +#: includes/public/class-mp-checkout.php:1254 +#: includes/public/class-mp-checkout.php:1383 +msgid "Password" +msgstr "Contraseña" + +#: includes/common/payment-gateways/eway.php:387 +#: includes/common/payment-gateways/paypal-express.php:711 +#: includes/common/shipping-modules/mp-usps.php:185 +#: includes/public/class-mp-checkout.php:1249 +msgid "Username" +msgstr "Nombre de usuario" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:437 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:790 +msgid "Have a coupon code?" +msgstr "¿Tienes un cupón de descuento?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:321 +#: includes/admin/class-mp-orders-admin.php:526 +#: includes/common/class-mp-cart.php:592 +msgid "Remove" +msgstr "Eliminar" + +#: includes/admin/class-mp-ajax.php:316 +msgid "Quantity:" +msgstr "Cantidad:" + +#: includes/admin/class-mp-products-admin.php:2140 +#: includes/admin/class-mp-products-admin.php:2387 +#: includes/common/shipping-modules/class-mp-shipping-api.php:507 +msgid "Extra Shipping Cost" +msgstr "Costos de envío adicionales" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:403 +msgid "Choose a Shipping Method:" +msgstr "Selecciona una forma de envío:" + +#: includes/admin/class-mp-products-admin.php:1691 +#: includes/admin/class-mp-products-admin.php:2131 +#: includes/admin/class-mp-products-admin.php:2378 +#: includes/common/shipping-modules/class-mp-shipping-api.php:228 +msgid "Ounces" +msgstr "Onzas" + +#: includes/admin/class-mp-products-admin.php:1684 +#: includes/admin/class-mp-products-admin.php:2123 +#: includes/admin/class-mp-products-admin.php:2369 +#: includes/admin/class-mp-setup-wizard.php:546 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:165 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +#: includes/common/shipping-modules/class-mp-shipping-api.php:227 +msgid "Pounds" +msgstr "Libras" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:226 +msgid "Product Weight:" +msgstr "Importancia del producto:" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:214 +msgid "Weight (Kilograms)" +msgstr "Peso (kilogramos)" + +#: includes/admin/widgets/ms-global-categories.php:82 +msgid "Number of Categories:" +msgstr "Número de categorías:" + +#: includes/admin/widgets/ms-global-categories.php:72 +msgid "Product Count" +msgstr "Número de productos" + +#: includes/addons/class-mp-addons-list-table.php:20 +#: includes/admin/class-mp-product-attributes-admin.php:129 +#: includes/admin/class-mp-product-attributes-list-table.php:22 +#: includes/admin/class-mp-products-admin.php:2216 +#: includes/admin/class-mp-shortcode-builder.php:628 +#: includes/admin/class-mp-shortcode-builder.php:1415 +#: includes/admin/widgets/ms-global-categories.php:70 +#: includes/common/shipping-modules/mp-fedex.php:395 +#: includes/common/shipping-modules/mp-ups.php:202 +#: includes/common/shipping-modules/mp-usps.php:243 +#: includes/public/class-mp-checkout.php:314 +msgid "Name" +msgstr "Nombre" + +#: includes/admin/widgets/ms-global-categories.php:67 +msgid "Order Categories By:" +msgstr "Ordenar categorías por:" + +#: includes/admin/widgets/ms-global-categories.php:24 +#: includes/admin/widgets/ms-global-categories.php:50 +msgid "Global Product Categories" +msgstr "Categorías de productos globales" + +#: includes/admin/widgets/ms-global-categories.php:15 +msgid "Global Product Category List" +msgstr "Lista de categoría de productos globales" + +#: includes/admin/widgets/ms-global-categories.php:13 +msgid "Displays a network-wide HTML list of product categories from network MarketPress stores." +msgstr "Muestra una lista HTML de categorías de producto de la red de tiendas MarketPress." + +#: includes/admin/widgets/ms-global-tag-cloud.php:24 +#: includes/admin/widgets/ms-global-tag-cloud.php:45 +msgid "Global Product Tags" +msgstr "Etiquetas globales de producto" + +#: includes/admin/widgets/ms-global-tag-cloud.php:15 +msgid "Global Product Tag Cloud" +msgstr "Nube de etiquetas de productos global" + +#: includes/admin/class-mp-shortcode-builder.php:947 +#: includes/admin/widgets/ms-global-product-list.php:173 +msgid "Excerpt" +msgstr "Resumen" + +#: includes/admin/widgets/ms-global-product-list.php:169 +msgid "Content To Show:" +msgstr "Contenido a mostrar:" + +#: includes/admin/widgets/ms-global-product-list.php:140 +msgid "Limit To Product Tag:" +msgstr "Limitar a etiqueta de producto:" + +#: includes/admin/widgets/ms-global-product-list.php:132 +msgid "Limit To Product Category:" +msgstr "Limitar a categoría de producto:" + +#: includes/admin/widgets/ms-global-product-list.php:72 +msgid "Global Products" +msgstr "Productos globales" + +#: includes/admin/widgets/ms-global-product-list.php:16 +msgid "Global Product List" +msgstr "Lista de productos globales" + +#: includes/admin/widgets/ms-global-product-list.php:14 +msgid "Shows a customizable global list of products from network MarketPress stores." +msgstr "Muestra una lista global personalizable de productos desde la red de tiendas MarketPress." + +#: includes/common/class-mp-product.php:974 +#: includes/multisite/template-functions.php:731 +msgid "Buy Now »" +msgstr "Comprar ahora »" + +#: includes/admin/widgets/ms-global-tag-cloud.php:13 +msgid "Displays global most used product tags in cloud format from network MarketPress stores." +msgstr "Muestra las etiquetas globales de producto más utilizadas de la red de tiendas MarketPress en formato de nube." + +#: includes/multisite/class-mp-admin-multisite.php:438 +msgid "Theme Permissions" +msgstr "Permisos del tema" + +#: includes/multisite/class-mp-admin-multisite.php:402 +#: includes/multisite/class-mp-admin-multisite.php:448 +msgid "No Access" +msgstr "Sin acceso" + +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:120 +msgid "Pro Site Level" +msgstr "Nivel de sitio web Pro" + +#: includes/multisite/class-mp-admin-multisite.php:401 +#: includes/multisite/class-mp-admin-multisite.php:447 +msgid "All Can Use" +msgstr "Todos pueden usar" + +#: includes/multisite/class-mp-admin-multisite.php:390 +msgid "Gateway Permissions" +msgstr "Permisos del Gateway" + +#: includes/multisite/class-mp-admin-multisite.php:375 +msgid "Select a Gateway" +msgstr "Seleccionar una pasarela" + +#: includes/multisite/class-mp-admin-multisite.php:350 +msgid "Global Gateway" +msgstr "Gateway global" + +#. Plugin Name of the plugin/theme +msgid "MarketPress" +msgstr "MarketPress" + +#: includes/admin/widgets/product-tag-cloud.php:7 +msgid "Your most used product tags in cloud format from your MarketPress store." +msgstr "Sus etiquetas de producto más usadas de su tienda MarketPress en formato de nube." + +#: includes/admin/widgets/categories.php:79 +msgid "Show hierarchy" +msgstr "Mostrar jerarquía" + +#: includes/admin/widgets/categories.php:76 +#: includes/admin/widgets/ms-global-categories.php:92 +msgid "Show product counts" +msgstr "Muestra el contador de productos" + +#: includes/admin/widgets/categories.php:73 +msgid "Show as dropdown" +msgstr "Mostrar como menú desplegable" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:710 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:736 +#: includes/admin/widgets/categories.php:30 +msgid "Select Category" +msgstr "Seleccione una categoría" + +#: includes/admin/widgets/categories.php:7 +msgid "A list or dropdown of product categories from your MarketPress store." +msgstr "Una lista o desplegable de categorías de producto de su tienda MarketPress." + +#: includes/admin/widgets/product-list.php:250 +msgid "Show Buy Button" +msgstr "Mostrar el botón Comprar" + +#: includes/admin/widgets/ms-global-product-list.php:183 +#: includes/admin/widgets/product-list.php:244 +msgid "Show Price" +msgstr "Mostrar precio" + +#: includes/admin/widgets/product-list.php:241 +msgid "Show Excerpt" +msgstr "Mostrar fragmento" + +#: includes/admin/widgets/ms-global-product-list.php:155 +#: includes/admin/widgets/product-list.php:238 +msgid "Thumbnail Size:" +msgstr "Tamaño de la miniatura:" + +#: includes/admin/widgets/ms-global-product-list.php:153 +#: includes/admin/widgets/product-list.php:237 +msgid "Show Thumbnail" +msgstr "Mostrar miniatura" + +#: includes/admin/widgets/ms-global-product-list.php:147 +#: includes/admin/widgets/product-list.php:233 +msgid "Display Settings" +msgstr "Configuración de presentación" + +#: includes/admin/widgets/ms-global-product-list.php:136 +#: includes/admin/widgets/ms-global-product-list.php:144 +#: includes/admin/widgets/product-list.php:230 +msgid "Enter the Slug" +msgstr "Introduzca el slug" + +#: includes/admin/widgets/product-list.php:228 +#: includes/common/template-functions.php:894 +msgid "Tag" +msgstr "Etiqueta" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:686 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:712 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:739 +#: includes/admin/class-mp-shortcode-builder.php:796 +#: includes/admin/widgets/product-list.php:227 +#: includes/common/template-functions.php:886 +#: includes/common/template-functions.php:2907 +msgid "Category" +msgstr "Categoría" + +#: includes/admin/widgets/product-list.php:226 +msgid "No Filter" +msgstr "Sin filtro" + +#: includes/admin/widgets/product-list.php:224 +msgid "Taxonomy Filter:" +msgstr "Taxonomía del filtro:" + +#: includes/admin/widgets/ms-global-product-list.php:108 +#: includes/admin/widgets/product-list.php:209 +msgid "Order Products By:" +msgstr "Ordenar productos por:" + +#: includes/admin/widgets/ms-global-product-list.php:101 +#: includes/admin/widgets/product-list.php:206 +msgid "Number of Products:" +msgstr "Número de productos:" + +#: includes/admin/widgets/ms-global-product-list.php:98 +#: includes/admin/widgets/product-list.php:204 +msgid "List Settings" +msgstr "Configuración de la lista" + +#: includes/admin/widgets/product-list.php:177 +msgid "Our Products" +msgstr "Nuestros productos" + +#: includes/admin/widgets/product-list.php:144 +#: includes/common/template-functions.php:2070 +#: includes/common/template-functions.php:2347 +#: includes/multisite/template-functions.php:303 +#: includes/multisite/template-functions.php:623 +msgid "No Products" +msgstr "No hay productos" + +#: includes/admin/widgets/product-list.php:8 +msgid "Product List" +msgstr "Lista de productos" + +#: includes/admin/widgets/product-list.php:7 +msgid "Shows a customizable list of products from your MarketPress store." +msgstr "Muestra una lista personalizada de los productos de su tienda MarketPress." + +#: includes/admin/widgets/cart.php:75 includes/admin/widgets/categories.php:82 +#: includes/admin/widgets/product-list.php:253 +#: includes/admin/widgets/product-tag-cloud.php:57 +msgid "Only show on store pages" +msgstr "Sólo mostrar en páginas de la tienda" + +#: includes/admin/widgets/cart.php:65 +#: includes/admin/widgets/ms-global-product-list.php:92 +#: includes/admin/widgets/product-list.php:200 +msgid "Custom Text:" +msgstr "Texto personalizado:" + +#: includes/admin/widgets/cart.php:64 includes/admin/widgets/categories.php:69 +#: includes/admin/widgets/ms-global-categories.php:59 +#: includes/admin/widgets/ms-global-product-list.php:87 +#: includes/admin/widgets/ms-global-tag-cloud.php:49 +#: includes/admin/widgets/product-list.php:199 +#: includes/admin/widgets/product-tag-cloud.php:49 +msgid "Title:" +msgstr "Título:" + +#: includes/admin/widgets/cart.php:7 +msgid "Shows dynamic shopping cart contents along with a checkout button for your MarketPress store." +msgstr "Muestra contenido del carrito de compras dinámico junto con un botón de confirmar compra para su tienda MarketPress." + +#: includes/admin/widgets/product-tag-cloud.php:8 +msgid "Product Tag Cloud" +msgstr "Nube de etiquetas de producto" + +#: includes/admin/class-mp-setup-wizard.php:539 +#: includes/admin/class-mp-setup-wizard.php:575 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:163 +msgid "Measurement System" +msgstr "Sistema de Medición" + +#: includes/admin/class-mp-setup-wizard.php:616 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:149 +msgid "Select Shipping Options" +msgstr "Seleccionar opciones de envío" + +#: includes/admin/class-mp-setup-wizard.php:596 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:129 +msgid "Calculated Options" +msgstr "Opciones Calculadas" + +#: includes/admin/class-mp-setup-wizard.php:582 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:115 +msgid "No Shipping" +msgstr "Sin envío" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:110 +msgid "EU" +msgstr "UE" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:109 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:93 +msgid "All" +msgstr "Todo" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:92 +msgid "Select:" +msgstr "Seleccionar:" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:185 +msgid "Store Pages" +msgstr "Páginas de la tienda" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:223 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:256 +msgid "Order Shipped" +msgstr "Pedido enviado" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:60 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:95 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:128 +#: marketpress.php:266 +msgid "New Order" +msgstr "Nuevo pedido" + +#: includes/admin/class-mp-dashboard-widgets.php:314 +msgid "Email Notifications" +msgstr "Notificaciones por correo electrónico" + +#: includes/admin/class-mp-pages-admin.php:59 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:200 +msgid "Products List" +msgstr "Listado de productos" + +#: includes/admin/class-mp-pages-admin.php:58 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:190 +msgid "Store Base" +msgstr "Base de la tienda" + +#: includes/admin/class-mp-product-attributes-admin.php:108 +#: includes/admin/class-mp-shortcode-builder.php:635 +#: includes/admin/class-mp-shortcode-builder.php:708 +#: includes/admin/class-mp-shortcode-builder.php:875 +#: includes/admin/class-mp-shortcode-builder.php:1319 +#: includes/admin/class-mp-shortcode-builder.php:1422 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:526 +#: includes/admin/widgets/ms-global-categories.php:78 +#: includes/admin/widgets/ms-global-product-list.php:127 +#: includes/admin/widgets/product-list.php:221 +msgid "Ascending" +msgstr "Ascendente" + +#: includes/admin/class-mp-product-attributes-admin.php:109 +#: includes/admin/class-mp-shortcode-builder.php:636 +#: includes/admin/class-mp-shortcode-builder.php:709 +#: includes/admin/class-mp-shortcode-builder.php:876 +#: includes/admin/class-mp-shortcode-builder.php:1320 +#: includes/admin/class-mp-shortcode-builder.php:1423 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:525 +#: includes/admin/widgets/ms-global-categories.php:75 +#: includes/admin/widgets/ms-global-product-list.php:124 +#: includes/admin/widgets/product-list.php:220 +msgid "Descending" +msgstr "Descendente" + +#: includes/admin/class-mp-shortcode-builder.php:637 +#: includes/admin/class-mp-shortcode-builder.php:695 +#: includes/admin/class-mp-shortcode-builder.php:862 +#: includes/admin/class-mp-shortcode-builder.php:1306 +#: includes/admin/class-mp-shortcode-builder.php:1424 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:518 +#: includes/admin/widgets/ms-global-product-list.php:121 +#: includes/admin/widgets/product-list.php:218 +msgid "Random" +msgstr "Al azar" + +#: includes/admin/class-mp-shortcode-builder.php:694 +#: includes/admin/class-mp-shortcode-builder.php:861 +#: includes/admin/class-mp-shortcode-builder.php:1305 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:517 +#: includes/admin/widgets/ms-global-product-list.php:119 +#: includes/admin/widgets/product-list.php:216 +msgid "Product Price" +msgstr "Precio del producto" + +#: includes/admin/class-mp-shortcode-builder.php:693 +#: includes/admin/class-mp-shortcode-builder.php:860 +#: includes/admin/class-mp-shortcode-builder.php:1304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:516 +#: includes/admin/widgets/ms-global-product-list.php:117 +#: includes/admin/widgets/product-list.php:215 +msgid "Number of Sales" +msgstr "Número de ventas" + +#: includes/admin/class-mp-shortcode-builder.php:692 +#: includes/admin/class-mp-shortcode-builder.php:859 +#: includes/admin/class-mp-shortcode-builder.php:1303 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:515 +#: includes/admin/widgets/product-list.php:214 +msgid "Product Author" +msgstr "Autor del producto" + +#: includes/admin/class-mp-shortcode-builder.php:691 +#: includes/admin/class-mp-shortcode-builder.php:858 +#: includes/admin/class-mp-shortcode-builder.php:1302 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:514 +#: includes/admin/widgets/product-list.php:213 +msgid "Product ID" +msgstr "ID de producto" + +#: includes/admin/class-mp-shortcode-builder.php:690 +#: includes/admin/class-mp-shortcode-builder.php:857 +#: includes/admin/class-mp-shortcode-builder.php:1301 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:513 +#: includes/admin/widgets/ms-global-product-list.php:113 +#: includes/admin/widgets/product-list.php:212 +msgid "Publish Date" +msgstr "Fecha de publicación" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:430 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:726 +msgid "Width" +msgstr "Ancho" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:439 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:735 +msgid "Height" +msgstr "Alto" + +#: includes/admin/class-mp-product-attributes-admin.php:88 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:402 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:698 +msgid "Custom" +msgstr "Personalizado" + +#: includes/common/class-mp-product.php:179 +#: includes/common/class-mp-product.php:992 +#: includes/common/class-mp-product.php:1000 +#: includes/multisite/template-functions.php:579 +msgid "Buy Now" +msgstr "Comprar ahora" + +#: includes/common/class-mp-product.php:175 +#: includes/common/class-mp-product.php:990 +#: includes/common/class-mp-product.php:998 +msgid "Add To Cart" +msgstr "Añadir al carrito" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:807 +msgid "Store Style" +msgstr "Estilo de la tienda" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1021 +msgid "Edit Coupon" +msgstr "Editar cupón" + +#: includes/addons/mp-coupons/class-mp-coupon.php:580 +#: includes/admin/class-mp-ajax.php:238 +#: includes/admin/class-mp-products-admin.php:1532 +msgid "Unlimited" +msgstr "Ilimitado" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1198 +msgid "Remaining Uses" +msgstr "Usos restantes" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1197 +msgid "Used" +msgstr "Usado" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:752 +#: includes/admin/class-mp-products-admin.php:2343 +msgid "Start Date" +msgstr "Fecha de inicio" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:598 +msgid "Coupon Code" +msgstr "Código de cupón" + +#: includes/admin/class-mp-orders-admin.php:444 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:284 +msgid "Save Changes" +msgstr "Guardar cambios" + +#: includes/admin/class-mp-pages-admin.php:57 +#: includes/admin/class-mp-shortcode-builder.php:716 +#: includes/admin/class-mp-shortcode-builder.php:727 +#: includes/admin/class-mp-shortcode-builder.php:883 +#: includes/admin/class-mp-shortcode-builder.php:894 +#: includes/admin/class-mp-shortcode-builder.php:946 +#: includes/admin/class-mp-shortcode-builder.php:956 +#: includes/admin/class-mp-shortcode-builder.php:1006 +#: includes/admin/class-mp-shortcode-builder.php:1327 +#: includes/admin/class-mp-shortcode-builder.php:1338 +#: includes/admin/store-settings/class-mp-store-settings-general.php:357 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:270 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:108 +#: includes/admin/widgets/ms-global-product-list.php:172 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:94 +msgid "None" +msgstr "Ninguno" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:352 +msgid "Google Analytics Ecommerce Tracking" +msgstr "Seguimiento de Google Analytics" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:310 +msgid "This option turns MarketPress into more of a product listing plugin, disabling shopping carts, checkout, and order management. This is useful if you simply want to list items you can buy in a store somewhere else, optionally linking the \"Buy Now\" buttons to an external site. Some examples are a car dealership, or linking to songs/albums in itunes, or linking to products on another site with your own affiliate links." +msgstr "Esta opción convierte a Marketpress en algo parecido a un plugin de listado de productos, deshabilitando el carrito de la compra, la confirmación del pedido y la gestión de los mismos. Es útil si simplemente deseas listar artículos que puedes comprar en otra tienda, opcionalmente enlazando los botones de \"Comprar ahora\" a paginas web externas. Algunos ejemplos son un concesionario de automóviles, o enlaces a canciones/álbumes de iTunes o productos de otra tienda de la que cuentas con enlaces de afiliado." + +#: includes/admin/store-settings/class-mp-store-settings-general.php:304 +msgid "Whether or not customers must be registered and logged in to checkout. (Not recommended: Enabling this can lower conversions)" +msgstr "¿Debén los usuarios estar registrados en la web para poder comprar? (No se recomienda: Habilitar esta opción puede disminuir los ingresos)" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:258 +msgid "How many times may a customer download a file they have purchased? (It's best to set this higher than one in case they have any problems downloading)" +msgstr "¿Cuántas veces puede un cliente descargar un archivo que he comprado? (Lo mejor es asignar un valor mayor que uno por si hubiera problemas con la descarga)" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:257 +msgid "Maximum Downloads" +msgstr "Máximas descargas permitidas" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:298 +msgid "This will set the product to draft if inventory of all variations is gone." +msgstr "Esto cambiará el estado del producto a borrador si el inventario de todas sus variaciones se agota." + +#: includes/admin/store-settings/class-mp-store-settings-general.php:288 +msgid "At what low stock count do you want to be warned for products you have enabled inventory tracking for?" +msgstr "¿A partir de que cantidad de producto bajo de stock desea ser advertido (para aquellos productos a los que haya activado la gestión de inventario)?" + +#: includes/admin/class-mp-dashboard-widgets.php:208 +#: includes/admin/store-settings/class-mp-store-settings-general.php:287 +msgid "Inventory Warning Threshold" +msgstr "Umbral de Advertencia de Inventario" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:282 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:542 +msgid "Miscellaneous Settings" +msgstr "Otras configuraciones" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:429 +#: includes/multisite/class-mp-admin-multisite.php:247 +msgid "Show Decimal in Prices" +msgstr "Mostrar decimales en los precios" + +#: includes/admin/class-mp-setup-wizard.php:451 +#: includes/admin/store-settings/class-mp-store-settings-general.php:403 +#: includes/multisite/class-mp-admin-multisite.php:221 +msgid "Currency Symbol Position" +msgstr "Posición del símbolo de la moneda" + +#: includes/admin/class-mp-setup-wizard.php:444 +#: includes/admin/store-settings/class-mp-store-settings-general.php:396 +msgid "Store Currency" +msgstr "Moneda de la tienda" + +#: includes/admin/class-mp-setup-wizard.php:429 +#: includes/admin/store-settings/class-mp-store-settings-general.php:381 +msgid "Currency Settings" +msgstr "Configuración de moneda" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:516 +msgid "Please see your local tax laws. Note if this is enabled and a downloadable only cart, rates will be the default for your base location." +msgstr "Por favor, compruebe sus leyes fiscales locales. Tenga en cuenta que si esto está activo y el carrito es solo de productos descargables, las tarifas serán por defecto para las de su localización base." + +#: includes/admin/class-mp-setup-wizard.php:529 +msgid "Apply Tax to Downloadable Products?" +msgstr "¿Aplicar impuestos a los productos descargables?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:498 +msgid "Enabling this option allows you to enter and show all prices inclusive of tax, while still listing the tax total as a line item in shopping carts. Please see your local tax laws." +msgstr "Habilitar esta opción le permite ingresar y mostrar todo los precios con impuestos incluidos,mientras que todavía se lista el impuesto total como una linea en el carrito de compras. Por favor compurebe sus leyes impositivas locales." + +#: includes/admin/class-mp-setup-wizard.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:497 +msgid "Enter Prices Inclusive of Tax?" +msgstr "¿Introducir precio con impuestos incluidos?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:492 +msgid "Please see your local tax laws. Most areas charge tax on shipping fees." +msgstr "Por favor, compruebe sus leyes fiscales locales. Muchas áreas aplican impuestos a los costes de envío." + +#: includes/admin/class-mp-setup-wizard.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:491 +msgid "Apply Tax To Shipping Fees?" +msgstr "¿Aplicar impuestos a los costes de envío?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:674 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:565 +#: includes/common/payment-gateways/authorizenet-aim.php:291 +#: includes/common/payment-gateways/authorizenet-aim.php:326 +#: includes/common/payment-gateways/payfast.php:347 +msgid "No" +msgstr "No" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:675 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:759 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:512 +#: includes/admin/class-mp-setup-wizard.php:518 +#: includes/admin/class-mp-setup-wizard.php:524 +#: includes/admin/class-mp-setup-wizard.php:530 +#: includes/admin/class-mp-setup-wizard.php:564 +#: includes/admin/store-settings/class-mp-store-settings-general.php:232 +#: includes/admin/store-settings/class-mp-store-settings-general.php:299 +#: includes/admin/store-settings/class-mp-store-settings-general.php:305 +#: includes/admin/store-settings/class-mp-store-settings-general.php:311 +#: includes/admin/store-settings/class-mp-store-settings-general.php:317 +#: includes/admin/store-settings/class-mp-store-settings-general.php:328 +#: includes/admin/store-settings/class-mp-store-settings-general.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:341 +#: includes/admin/store-settings/class-mp-store-settings-general.php:348 +#: includes/admin/store-settings/class-mp-store-settings-general.php:367 +#: includes/admin/store-settings/class-mp-store-settings-general.php:493 +#: includes/admin/store-settings/class-mp-store-settings-general.php:499 +#: includes/admin/store-settings/class-mp-store-settings-general.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:556 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:375 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:381 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:387 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:474 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:493 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:532 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:574 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:606 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:664 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:670 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:677 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:683 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:689 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:763 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:774 +#: includes/common/payment-gateways/_bitpay.php:250 +#: includes/common/payment-gateways/_bitpay.php:257 +#: includes/common/payment-gateways/_bitpay.php:264 +#: includes/common/payment-gateways/authorizenet-aim.php:290 +#: includes/common/payment-gateways/authorizenet-aim.php:325 +#: includes/common/payment-gateways/free_orders.php:160 +#: includes/common/payment-gateways/payfast.php:346 +#: includes/common/payment-gateways/paymill.php:162 +#: includes/common/payment-gateways/paypal-payflow.php:441 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-checkbox.php:22 +msgid "Yes" +msgstr "Sí" + +#: includes/admin/class-mp-setup-wizard.php:492 +#: includes/admin/store-settings/class-mp-store-settings-general.php:472 +msgid "%s Tax Rate" +msgstr "%s Tasa de Impuesto" + +#: includes/admin/class-mp-setup-wizard.php:467 +#: includes/admin/store-settings/class-mp-store-settings-general.php:449 +msgid "Tax Settings" +msgstr "Configuración de impuestos" + +#: includes/admin/class-mp-setup-wizard.php:370 +#: includes/admin/store-settings/class-mp-store-settings-general.php:624 +msgid "Base Zip/Postal Code" +msgstr "Código postal base" + +#: includes/admin/class-mp-setup-wizard.php:354 +#: includes/admin/store-settings/class-mp-store-settings-general.php:608 +msgid "Base State/Province/Region" +msgstr "Estado/Provincia/Región base" + +#: includes/admin/class-mp-setup-wizard.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:589 +msgid "Base Country" +msgstr "País base" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:582 +msgid "Location Settings" +msgstr "Configuración de la ubicación" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:195 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:800 +#: includes/multisite/class-mp-admin-multisite.php:172 +msgid "General Settings" +msgstr "Configuración general" + +#: includes/admin/class-mp-products-admin.php:1945 +#: includes/admin/class-mp-products-admin.php:2185 +#: includes/admin/class-mp-store-settings-admin.php:111 +#: includes/admin/class-mp-store-settings-admin.php:266 +msgid "General" +msgstr "General" + +#: includes/admin/class-mp-store-settings-admin.php:242 +msgid "Importers" +msgstr "Importadores" + +#: includes/admin/class-mp-store-settings-admin.php:115 +#: includes/admin/class-mp-store-settings-admin.php:234 +msgid "Payments" +msgstr "Pagos" + +#: includes/admin/class-mp-dashboard-widgets.php:313 +#: includes/admin/class-mp-store-settings-admin.php:112 +#: includes/admin/class-mp-store-settings-admin.php:222 +msgid "Presentation" +msgstr "Presentación" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:916 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1015 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1018 +#: includes/admin/class-mp-dashboard-widgets.php:305 marketpress.php:702 +msgid "Coupons" +msgstr "Cupones" + +#: includes/admin/class-mp-admin.php:251 +msgid "Download »" +msgstr "Descargar »" + +#: includes/admin/class-mp-admin.php:245 +#: includes/admin/class-mp-exporter-orders.php:170 +msgid "All Statuses" +msgstr "Todos los estados" + +#: includes/admin/class-mp-admin.php:209 +#: includes/admin/class-mp-exporter-orders.php:150 +#: includes/admin/class-mp-exporter-orders.php:178 +msgid "Export Orders" +msgstr "Exportar pedidos" + +#: includes/admin/class-mp-admin.php:228 +msgid "Show all dates" +msgstr "Mostrar todas las fechas" + +#: includes/admin/class-mp-orders-admin.php:947 +msgid "Change Status" +msgstr "Cambiar estado" + +#: includes/admin/class-mp-orders-admin.php:287 +msgid "Order Notes" +msgstr "Otras notas" + +#: includes/admin/class-mp-orders-admin.php:478 +msgid "Other" +msgstr "Otro" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:205 +msgid "Subtotal" +msgstr "Total parcial" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:84 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:87 +#: includes/admin/class-mp-products-admin.php:1737 +#: includes/common/class-mp-cart.php:1409 +#: includes/common/class-mp-product.php:559 +msgid "Quantity" +msgstr "Cantidad" + +#: includes/common/helpers.php:93 +msgid "Item" +msgstr "Artículo" + +#: includes/common/class-mp-order.php:1050 +msgid "Current Status" +msgstr "Estado actual" + +#: includes/admin/class-mp-orders-admin.php:297 +msgid "Order Actions" +msgstr "Acciones del pedido" + +#: includes/common/class-mp-product.php:1084 +msgid "More Info »" +msgstr "Más información »" + +#: includes/common/class-mp-product.php:2313 +msgid "Low Product Inventory Notification" +msgstr "Notificación por stock bajo de producto" + +#: includes/common/class-mp-order.php:338 includes/common/data.php:154 +msgid "New Order Notification: ORDERID" +msgstr "Nueva notificacion de pedido: ORDERID" + +#: includes/common/helpers.php:259 +msgid "Your payment for this order is complete." +msgstr "Su pago para este pedido se ha completado." + +#: includes/common/helpers.php:261 +msgid "Your payment for this order is not yet complete. Here is the latest status:" +msgstr "El pago de este pedido aún no se ha completado. Esta es su estado más reciente:" + +#: includes/common/helpers.php:256 +msgid "Payment Total:" +msgstr "Pago total:" + +#: includes/common/helpers.php:253 +msgid "Transaction ID:" +msgstr "ID de transacción:" + +#: includes/common/helpers.php:249 +msgid "Payment Type:" +msgstr "Tipo de pago:" + +#: includes/common/helpers.php:246 +msgid "Payment Method:" +msgstr "Método de pago:" + +#: includes/common/helpers.php:242 +msgid "Order Notes:" +msgstr "Notas del Pedido:" + +#: includes/common/helpers.php:237 +msgid "Special Instructions:" +msgstr "Instrucciones Especiales" + +#: includes/common/helpers.php:232 +msgid "Tracking Number:" +msgstr "Código de Seguimiento:" + +#: includes/common/helpers.php:223 includes/common/helpers.php:226 +#: includes/common/helpers.php:228 +#: includes/common/shipping-modules/class-mp-shipping-api.php:406 +#: includes/common/shipping-modules/class-mp-shipping-api.php:428 +msgid "Shipping Method:" +msgstr "Forma de Envío:" + +#: includes/common/helpers.php:168 +msgid "No shipping required for this order." +msgstr "No se requiere envio para este pedido." + +#: includes/common/helpers.php:155 +msgid "Order Total:" +msgstr "Total del pedido:" + +#: includes/common/class-mp-order.php:1025 +msgid "Taxes:" +msgstr "Impuestos:" + +#: includes/common/class-mp-order.php:1032 includes/common/helpers.php:144 +msgid "Shipping:" +msgstr "Gastos de envío:" + +#: includes/public/class-mp-checkout.php:367 +msgid "Street address, P.O. box, company name, c/o" +msgstr "Dirección, apartado postal, nombre de la empresa" + +#: includes/admin/class-mp-orders-admin.php:314 +msgid "Shipping Info" +msgstr "Información de envío" + +#: includes/public/class-mp-public.php:740 +msgid "Whoops, there was a problem loading up this file for your download. Please contact us for help." +msgstr "Disculpa, ha habido un error durante la descarga del fichero. Contacta con nosotros si requieres ayuda. " + +#: includes/public/class-mp-public.php:683 +msgid "Sorry, our records show you've downloaded this file %d out of %d times allowed. Please contact us if you still need help." +msgstr "Lo sentimos, nuestro registro indica que ha descargado este archivo %d de las %d veces permitidas. Por favor, contacte con nosotros si precisa más ayuda." + +#: includes/public/class-mp-public.php:634 +msgid "Sorry, your order has been marked as unpaid." +msgstr "Lo sentimos, su pedido ha sido marcado como pendiente de pago." + +#: includes/public/class-mp-public.php:629 +msgid "Sorry, the link is invalid for this download." +msgstr "Lo sentimos, el enlace de descarga es inválido." + +#: includes/admin/class-mp-exporter-orders.php:15 +#: includes/admin/class-mp-products-admin.php:1172 +msgid "Cheatin’ uh?" +msgstr "Haciendo trampa, ¿eh?" + +#: includes/public/class-mp-public.php:407 +#: includes/public/class-mp-short-codes.php:128 +msgid "Please enter a valid email address." +msgstr "" + +#: includes/admin/class-mp-ajax.php:191 +#: includes/admin/class-mp-products-admin.php:1821 +#: includes/admin/class-mp-products-admin.php:2010 +#: includes/admin/class-mp-products-admin.php:2267 +msgid "File URL" +msgstr "URL del archivo" + +#: includes/admin/class-mp-products-admin.php:1842 +msgid "External Link" +msgstr "Enlace externo" + +#: includes/admin/class-mp-products-admin.php:2177 +msgid "Add Variation" +msgstr "Añadir variación" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:126 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:289 +msgid "Inventory" +msgstr "Inventario" + +#: includes/admin/class-mp-products-admin.php:438 +#: includes/admin/class-mp-products-admin.php:578 +#: includes/admin/class-mp-products-admin.php:1552 +#: includes/admin/class-mp-products-admin.php:2053 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:134 +msgid "Sale Price" +msgstr "Precio rebajado (oferta)" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "Variation Name" +msgstr "Nombre de la variación" + +#: includes/admin/class-mp-products-admin.php:1931 +msgid "Product Details" +msgstr "Detalles del producto" + +#: includes/admin/class-mp-product-attributes-list-table.php:33 +msgid "Delete" +msgstr "Borrar" + +#: includes/admin/class-mp-orders-admin.php:1057 +msgid "Trashed" +msgstr "Borrado" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:231 +#: includes/admin/class-mp-orders-admin.php:1015 +#: includes/common/class-mp-order.php:1052 includes/common/helpers.php:97 +msgid "Total" +msgstr "Total" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1196 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:210 +#: includes/admin/class-mp-orders-admin.php:1014 +msgid "Discount" +msgstr "Descuento" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:221 +#: includes/admin/class-mp-orders-admin.php:1013 +#: includes/common/payment-gateways/_ideal.php:148 +#: includes/common/payment-gateways/_payway.php:134 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:108 +msgid "Tax" +msgstr "Impuesto" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:216 +#: includes/admin/class-mp-orders-admin.php:1012 +#: includes/admin/class-mp-products-admin.php:1958 +#: includes/admin/class-mp-products-admin.php:2198 +#: includes/admin/class-mp-store-settings-admin.php:114 +#: includes/admin/class-mp-store-settings-admin.php:230 +#: includes/common/class-mp-cart.php:717 includes/common/helpers.php:168 +#: includes/common/payment-gateways/_ideal.php:137 +#: includes/common/payment-gateways/_payway.php:116 +#: includes/public/class-mp-checkout.php:1304 +msgid "Shipping" +msgstr "Envío" + +#: includes/admin/class-mp-orders-admin.php:1011 +msgid "Items" +msgstr "Artículos" + +#: includes/admin/class-mp-orders-admin.php:1010 +msgid "From" +msgstr "De" + +#: includes/admin/class-mp-exporter-orders.php:154 +#: includes/admin/class-mp-orders-admin.php:1009 +#: includes/common/class-mp-gdpr.php:370 +msgid "Order Date" +msgstr "Fecha del pedido" + +#: includes/admin/class-mp-orders-admin.php:1008 +#: includes/common/class-mp-gdpr.php:366 +#: includes/common/template-functions.php:2134 +msgid "Order ID" +msgstr "ID del pedido" + +#: includes/addons/class-mp-addons-list-table.php:22 +#: includes/admin/class-mp-orders-admin.php:1007 +msgid "Status" +msgstr "Estado" + +#: includes/admin/class-mp-orders-admin.php:1155 +msgid "N/A" +msgstr "N/D" + +#: includes/admin/class-mp-dashboard-widgets.php:243 +#: includes/admin/class-mp-products-admin.php:464 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:142 +msgid "Sales" +msgstr "Ventas" + +#: includes/admin/class-mp-products-admin.php:463 +msgid "Stock" +msgstr "Stock" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:85 +#: includes/admin/class-mp-ajax.php:176 includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:434 +#: includes/admin/class-mp-products-admin.php:462 +#: includes/admin/class-mp-products-admin.php:576 +#: includes/admin/class-mp-products-admin.php:1519 +#: includes/admin/class-mp-products-admin.php:1569 +#: includes/admin/class-mp-products-admin.php:1950 +#: includes/admin/class-mp-products-admin.php:2059 +#: includes/admin/class-mp-products-admin.php:2190 +#: includes/admin/class-mp-products-admin.php:2330 +#: includes/common/class-mp-cart.php:1415 includes/common/helpers.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:130 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:276 +msgid "Price" +msgstr "Precio" + +#: includes/admin/class-mp-ajax.php:173 +#: includes/admin/class-mp-products-admin.php:461 +#: includes/admin/class-mp-products-admin.php:1972 +#: includes/admin/class-mp-products-admin.php:2224 +msgid "SKU" +msgstr "SKU" + +#: includes/admin/class-mp-products-admin.php:459 +#: includes/admin/class-mp-products-admin.php:1793 +#: includes/admin/class-mp-products-admin.php:1805 +#: includes/admin/class-mp-products-admin.php:2163 +msgid "Variations" +msgstr "Variaciones" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:83 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:86 +#: includes/admin/class-mp-dashboard-widgets.php:134 +#: includes/admin/class-mp-products-admin.php:458 +#: includes/admin/class-mp-products-admin.php:837 +#: includes/admin/class-mp-shortcode-builder.php:689 +#: includes/admin/class-mp-shortcode-builder.php:856 +#: includes/admin/class-mp-shortcode-builder.php:1300 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:512 +#: includes/admin/widgets/ms-global-product-list.php:115 +#: includes/admin/widgets/product-list.php:211 +msgid "Product Name" +msgstr "Nombre del producto" + +#: includes/common/template-functions.php:2575 +msgid "Categorized in " +msgstr "Categorizado en " + +#: includes/admin/class-mp-orders-admin.php:305 +#: includes/common/payment-gateways/free_orders.php:176 +msgid "Payment Information" +msgstr "Información sobre el pago" + +#: includes/admin/class-mp-exporter-orders.php:167 +#: includes/admin/class-mp-orders-admin.php:432 +#: includes/admin/class-mp-pages-admin.php:62 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:227 +#: includes/common/class-mp-gdpr.php:374 +#: includes/common/template-functions.php:175 +#: includes/common/template-functions.php:926 +msgid "Order Status" +msgstr "Estado del pedido" + +#. translators: %s: orders closed +#: marketpress.php:327 +msgid "Closed (%s)" +msgid_plural "Closed (%s)" +msgstr[0] "Cerrados (%s)" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:249 +#: includes/admin/class-mp-orders-admin.php:375 +#: includes/admin/class-mp-orders-admin.php:951 +#: includes/admin/class-mp-orders-admin.php:1053 +#: includes/admin/class-mp-orders-admin.php:1065 +#: includes/common/class-mp-gdpr.php:330 +#: includes/common/class-mp-order.php:1019 marketpress.php:325 +msgid "Closed" +msgstr "Cerrado" + +#. translators: %s: shipped orders +#: marketpress.php:320 +msgid "Shipped (%s)" +msgid_plural "Shipped (%s)" +msgstr[0] "Enviados (%s)" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:248 +#: includes/admin/class-mp-orders-admin.php:376 +#: includes/admin/class-mp-orders-admin.php:950 +#: includes/admin/class-mp-orders-admin.php:1049 +#: includes/admin/class-mp-orders-admin.php:1064 +#: includes/common/class-mp-gdpr.php:329 +#: includes/common/class-mp-order.php:1002 marketpress.php:318 +msgid "Shipped" +msgstr "Enviado" + +#. translators: %s: paid orders +#: marketpress.php:313 +msgid "Paid (%s)" +msgid_plural "Paid (%s)" +msgstr[0] "Pagados (%s)" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:247 +#: includes/admin/class-mp-orders-admin.php:377 +#: includes/admin/class-mp-orders-admin.php:949 +#: includes/admin/class-mp-orders-admin.php:1045 +#: includes/admin/class-mp-orders-admin.php:1063 +#: includes/common/class-mp-gdpr.php:328 +#: includes/common/payment-gateways/2checkout.php:294 +#: includes/common/payment-gateways/_cubepoints.php:130 +#: includes/common/payment-gateways/authorizenet-aim.php:193 +#: includes/common/payment-gateways/free_orders.php:91 +#: includes/common/payment-gateways/mijireh.php:248 +#: includes/common/payment-gateways/paymill.php:273 +#: includes/common/payment-gateways/paypal-express.php:933 +#: includes/common/payment-gateways/paypal-express.php:967 +#: includes/common/payment-gateways/pin.php:258 +#: includes/common/payment-gateways/simplify.php:181 +#: includes/common/payment-gateways/stripe.php:368 +#: includes/common/payment-gateways/wepay.php:269 marketpress.php:311 +msgid "Paid" +msgstr "Pagado" + +#. translators: %s: orders received +#: marketpress.php:306 +msgid "Received (%s)" +msgid_plural "Received (%s)" +msgstr[0] "Recibidos (%s)" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:246 +#: includes/admin/class-mp-orders-admin.php:378 +#: includes/admin/class-mp-orders-admin.php:1041 +#: includes/admin/class-mp-orders-admin.php:1062 +#: includes/common/class-mp-gdpr.php:327 includes/common/class-mp-order.php:995 +#: includes/common/payment-gateways/payfast.php:244 marketpress.php:304 +msgid "Received" +msgstr "Recibido" + +#: marketpress.php:268 +msgid "Search Orders" +msgstr "Buscar pedidos" + +#: marketpress.php:267 +msgid "View Order" +msgstr "Ver pedido" + +#: marketpress.php:262 +msgid "Order" +msgstr "Pedido" + +#: includes/admin/class-mp-dashboard-widgets.php:301 +#: includes/admin/class-mp-orders-admin.php:989 marketpress.php:261 +msgid "Orders" +msgstr "Pedidos" + +#: marketpress.php:228 +msgid "No Products found in Trash" +msgstr "No se encontraron productos en la papelera" + +#: marketpress.php:227 +msgid "No Products Found" +msgstr "No se encontraron productos" + +#: marketpress.php:226 +msgid "Search Products" +msgstr "Buscar productos" + +#: marketpress.php:225 marketpress.php:229 +msgid "View Product" +msgstr "Ver producto" + +#: marketpress.php:224 +msgid "New Product" +msgstr "Nuevo producto" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1022 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:258 +#: marketpress.php:223 +msgid "Edit" +msgstr "Editar" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1019 +msgid "Create New" +msgstr "Crear nuevo" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:687 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:698 +#: marketpress.php:217 +msgid "Product" +msgstr "Producto" + +#: includes/admin/class-mp-dashboard-widgets.php:307 +#: includes/common/template-functions.php:173 +#: includes/common/template-functions.php:179 +#: includes/common/template-functions.php:902 +#: includes/multisite/template-functions.php:82 marketpress.php:216 +#: marketpress.php:219 +msgid "Products" +msgstr "Productos" + +#: includes/admin/class-mp-store-settings-admin.php:118 +#: includes/admin/widgets/product-tag-cloud.php:46 +#: includes/multisite/class-mp-admin-multisite.php:548 +msgid "Product Tags" +msgstr "Etiquetas de producto" + +#: includes/common/template-functions.php:2906 +#: includes/multisite/template-functions.php:449 +msgid "Product Category" +msgstr "Categoría de Producto" + +#: includes/admin/class-mp-store-settings-admin.php:117 +#: includes/admin/widgets/categories.php:8 +#: includes/admin/widgets/categories.php:18 +#: includes/multisite/class-mp-admin-multisite.php:539 +msgid "Product Categories" +msgstr "Categorías de producto" + +#: includes/common/payment-gateways/stripe.php:332 +#: includes/common/template-functions.php:872 marketpress.php:218 +msgid "Store" +msgstr "Tienda" + +#: includes/admin/class-mp-pages-admin.php:60 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:209 +#: includes/admin/widgets/cart.php:8 includes/admin/widgets/cart.php:56 +#: includes/common/template-functions.php:174 +#: includes/common/template-functions.php:811 +msgid "Shopping Cart" +msgstr "Carrito de la compra" + +#: includes/admin/class-mp-store-settings-admin.php:110 +#: includes/admin/class-mp-store-settings-admin.php:218 +msgid "Store Settings" +msgstr "Configuración de la tienda" + +#: includes/addons/class-mp-addons-list-table.php:128 marketpress.php:607 +msgid "Settings" +msgstr "Configuración" + +#: includes/common/data.php:178 includes/common/data.php:190 +msgid "Your Order Has Been Shipped! (ORDERID)" +msgstr "¡Su pedido ha sido enviado! (ORDERID)" + +#: includes/common/data.php:159 includes/common/data.php:166 +#: includes/common/data.php:172 +msgid "Your Order Confirmation (ORDERID)" +msgstr "Su confirmación del pedido (ORDERID)" + +#: includes/common/data.php:148 +msgid "

    Thank you for your order! We appreciate your business, and please come back often to check out our new products.

    " +msgstr "

    ¡Gracias por su pedido! Apreciamos la confianza que ha depositado en nosotros. Vuelva a menudo para ver nuevos productos.

    " + +#: includes/common/data.php:147 +msgid "

    You are almost done! Please do a final review of your order to make sure everything is correct then click the \"Confirm Payment\" button.

    " +msgstr "

    ¡Ya casi ha terminado! Por favor, revise su pedido para asegurarse de que todo está correcto y haga clic en el botón \"Confirmar Pago\".

    " + +#: includes/common/data.php:145 +msgid "

    Please enter your shipping information in the form below to proceed with your order.

    " +msgstr "

    Por favor, introduzca su información de envío en el siguiente formulario para continuar con su pedido.

    " + +#: includes/common/data.php:143 +msgid "

    If you have any questions about your order please do not hesitate to contact us.

    " +msgstr "

    Si tiene alguna duda acerca de su pedido, no dude en contactar con nosotros.

    " + +#: includes/common/data.php:106 +msgid "tag" +msgstr "etiqueta" + +#: includes/common/data.php:105 +msgid "category" +msgstr "categoría" + +#: includes/common/data.php:104 +msgid "order-status" +msgstr "estado-del-pedido" + +#: includes/common/data.php:103 +msgid "shopping-cart" +msgstr "carrito de la compra" + +#: includes/common/data.php:102 +msgid "products" +msgstr "productos" + +#. Translators: change default slugs here +#: includes/common/data.php:101 +msgid "store" +msgstr "tienda" \ No newline at end of file diff --git a/languages/mp-es-pr.mo b/languages/mp-es-pr.mo new file mode 100644 index 0000000000000000000000000000000000000000..c25807ca182cdb9d7456a5a366db2bef121df2c3 GIT binary patch literal 203401 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%0D#>@H?}co`un0}4 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
    f;Q)oyb8j!2#!D_-?RS{dPD@CCe|l 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 RnhjJrIa2}>cuU_8{y!{Rc1{2Q literal 0 HcmV?d00001 diff --git a/languages/mp-es-pr.po b/languages/mp-es-pr.po new file mode 100644 index 00000000..7c9e12da --- /dev/null +++ b/languages/mp-es-pr.po @@ -0,0 +1,9104 @@ +# Translation of MarketPress in Spanish (Puerto Rico) +# This file is distributed under the same license as the MarketPress package. +msgid "" +msgstr "" +"PO-Revision-Date: 2019-01-29 02:39:30+0000\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-Generator: GlotPress/2.3.1\n" +"Language: es_PR\n" +"Project-Id-Version: MarketPress\n" + +#: includes/public/class-mp-checkout.php:1285 +msgid "By clicking this checkbox you allow the website to process your personal data." +msgstr "" + +#: includes/common/class-mp-gdpr.php:382 +msgid "Order Info" +msgstr "" + +#: includes/common/class-mp-gdpr.php:268 +msgid "Shipping Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:267 +msgid "Shipping Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:266 +msgid "Shipping ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:265 +msgid "Shipping State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:264 +msgid "Shipping City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:263 +msgid "Shipping Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:262 +msgid "Shipping Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:261 +msgid "Shipping Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:260 +msgid "Shipping Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:259 +msgid "Shipping Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:258 +msgid "Shipping First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:254 +msgid "Billing Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:253 +msgid "Billing Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:252 +msgid "Billing ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:251 +msgid "Billing State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:250 +msgid "Billing City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:249 +msgid "Billing Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:248 +msgid "Billing Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:247 +msgid "Billing Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:246 +msgid "Billing Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:245 +msgid "Billing Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:244 +msgid "Billing First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:151 +msgid "Orders Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:139 +msgid "Customer Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:100 includes/common/class-mp-gdpr.php:116 +msgid "MarketPress User Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:81 +msgid "" +"In addition to standard WordPress session cookies, this site might be setting an\n" +"\t\t additional cookie to remember your cart settings. This cookie will last for one year." +msgstr "" + +#: includes/common/class-mp-gdpr.php:80 +msgid "Cookies" +msgstr "" + +#: includes/common/class-mp-gdpr.php:77 +msgid "" +"The following information will be collected in order to process orders: your name,\n" +"\t\t username, email address, avatar and profile URLs, address and phone number. This data can be\n" +"\t\t exported and removed." +msgstr "" + +#: includes/common/class-mp-gdpr.php:76 +msgid "Additional data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:71 +msgid "" +"This site might be using third party services and tools to process payments or/and\n" +"\t\t process shipping data when creating orders on the MarketPress store. These services include payment\n" +"\t\t gateways: 2Checkout, Authorize.net AIM, eWay shared payments, eWay Rapid 3.1 Payments, Mijireh,\n" +"\t\t Mollie, Paymill, PayPal, PIN, Simplify Commerce by MasterCard, Stripe and WePay; shipping gateways:\n" +"\t\t Fedex, UPS, USPS." +msgstr "" + +#: includes/common/class-mp-gdpr.php:70 +msgid "Third parties" +msgstr "" + +#: includes/admin/class-mp-admin.php:403 +msgid "Start creating store pages and products for your online shop here." +msgstr "" + +#: includes/admin/class-mp-admin.php:402 +msgid "Create Online Shop" +msgstr "" + +#: includes/admin/class-mp-admin.php:394 +msgid "Run Setup Wizard" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:234 +msgid "If having problems during invoice generation, add define( 'DOMPDF_ENABLE_HTML5PARSER', true ); to the wp-config.php file." +msgstr "" + +#: includes/public/class-mp-checkout.php:723 +msgid "Invalid Email" +msgstr "Email inválido" + +#: includes/public/class-mp-checkout.php:721 +#: includes/public/class-mp-checkout.php:729 +msgid "This field is required" +msgstr "Este campo es requerido" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:804 +msgid "This option changes the built-in css styles for store pages. For a custom css style, save your css file with the /* MarketPress Style: Your CSS Theme Name Here */ header line in the \"%s\" folder and it will appear in this list so you may select it. You should select \"None\" if you don't wish to use custom CSS styles or if you are using default theme templates or custom theme templates and css to make your own completely unique store design. For more information on custom theme templates click here »." +msgstr "Esta opción cambia los estilos CSS integrados para las páginas de la tienda. Para un estilo css personalizado, guarde su archivo css con la línea de encabezado / * MarketPress Style: Your Theme Theme Here * / en la carpeta \"% s\" y aparecerá aparecerá en esta lista para que pueda seleccionarla. Debería seleccionar \"Ninguno\" si no desea usar estilos CSS personalizados o si está utilizando plantillas de tema predeterminadas o plantillas de tema personalizadas y css para hacer su propio diseño de tienda completamente único. Para obtener más información sobre plantillas de temas personalizados, haga clic en here »." + +#: includes/public/class-mp-public.php:421 +#: includes/public/class-mp-short-codes.php:142 +msgid "Please enter a value greater than or equal to {0}." +msgstr "Por favor ingrese un valor mayor o igual a {0}." + +#: includes/public/class-mp-public.php:420 +#: includes/public/class-mp-short-codes.php:141 +msgid "Please enter a value less than or equal to {0}." +msgstr "Introduzca un valor menor o igual que {0}." + +#: includes/public/class-mp-public.php:419 +#: includes/public/class-mp-short-codes.php:140 +msgid "Please enter a value between {0} and {1}." +msgstr "Por favor ingrese un valor entre {0} y {1}." + +#: includes/public/class-mp-public.php:418 +#: includes/public/class-mp-short-codes.php:139 +msgid "Please enter a value between {0} and {1} characters long." +msgstr "Ingrese un valor entre {0} y {1} caracteres de longitud." + +#: includes/public/class-mp-public.php:417 +#: includes/public/class-mp-short-codes.php:138 +msgid "Please enter at least {0} characters." +msgstr "Por favor ingrese al menos {0} caracteres." + +#: includes/public/class-mp-public.php:416 +#: includes/public/class-mp-short-codes.php:137 +msgid "Please enter no more than {0} characters." +msgstr "Por favor no ingrese más de {0} caracteres." + +#: includes/public/class-mp-public.php:415 +#: includes/public/class-mp-short-codes.php:136 +msgid "Please enter a value with a valid extension." +msgstr "Por favor, introduzca un valor con una extensión válida." + +#: includes/public/class-mp-public.php:414 +#: includes/public/class-mp-short-codes.php:135 +msgid "Please enter the same value again." +msgstr "Por favor, introduzca el mismo valor de nuevo." + +#: includes/public/class-mp-public.php:413 +#: includes/public/class-mp-short-codes.php:134 +msgid "Please enter a valid credit card number." +msgstr "Por favor, introduzca un número de tarjeta de crédito válida." + +#: includes/public/class-mp-public.php:412 +#: includes/public/class-mp-short-codes.php:133 +msgid "Please enter only digits." +msgstr "Por favor ingrese solo dígitos." + +#: includes/public/class-mp-public.php:411 +#: includes/public/class-mp-short-codes.php:132 +msgid "Please enter a valid number." +msgstr "Por favor ingrese un número valido." + +#: includes/public/class-mp-public.php:410 +#: includes/public/class-mp-short-codes.php:131 +msgid "Please enter a valid date (ISO)." +msgstr "Por favor, introduzca una fecha válida (ISO)." + +#: includes/public/class-mp-public.php:409 +#: includes/public/class-mp-short-codes.php:130 +msgid "Please enter a valid date." +msgstr "Por favor introduzca una fecha valida." + +#: includes/public/class-mp-public.php:408 +#: includes/public/class-mp-short-codes.php:129 +msgid "Please enter a valid URL." +msgstr "Por favor introduzca un URL válido." + +#: includes/public/class-mp-public.php:406 +#: includes/public/class-mp-short-codes.php:127 +msgid "Please fix this field." +msgstr "Por favor arregla este campo." + +#: includes/public/class-mp-checkout.php:1287 +#: includes/public/class-mp-public.php:405 +#: includes/public/class-mp-short-codes.php:126 +msgid "This field is required." +msgstr "Este campo es requerido." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:810 +msgid "None - Without Special CSS-styles" +msgstr "Ninguno - Sin estilos especiales de CSS" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:809 +msgid "Default - Using Default CSS-styles" +msgstr "Predeterminado - Usando estilos CSS predeterminados" + +#: marketpress.php:739 +msgid "Enable multiple downloads per product" +msgstr "Habilitar múltiples descargas por producto" + +#: marketpress.php:738 +msgid "Multiple Downloads" +msgstr "Descargas Múltiples" + +#: includes/public/class-mp-checkout.php:715 +msgid "Invalid Zip Code" +msgstr "Código postal no válido" + +#: includes/common/template-functions.php:2126 +msgid "Guest Email" +msgstr "Email del invitado" + +#: includes/common/payment-gateways/simplify.php:195 +msgid "There was a problem finalizing your purchase. Please re-enter your credit card information and try again" +msgstr "Hubo un problema al finalizar tu compra. Vuelva a ingresar la información de su tarjeta de crédito e intente nuevamente " + +#: includes/common/class-mp-cart.php:565 includes/common/class-mp-order.php:600 +#: includes/common/helpers.php:111 +msgid "Download %1$s" +msgstr "Descargar %1$s" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:331 +msgid "Export products to file" +msgstr "Exportar productos a archivo." + +#: includes/admin/store-settings/class-mp-store-settings-import.php:328 +msgid "The import process uses the WordPress importer plugin." +msgstr "El proceso de importación utiliza el complemento importador de WordPress." + +#: includes/admin/store-settings/class-mp-store-settings-import.php:326 +msgid "Import / Export Products" +msgstr "Importar / Exportar Productos" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:325 +msgid "Export settings to file" +msgstr "Ajustes de exportación a archivo" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:324 +msgid "Import configuration" +msgstr "Configuración de importación" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:320 +msgid "Use the text below to export to a new installation. Or paste in the new configuration to import." +msgstr "Utilice el texto a continuación para exportar a una nueva instalación. O pegar en la nueva configuración para importar." + +#: includes/admin/store-settings/class-mp-store-settings-import.php:318 +msgid "Import / Export Settings" +msgstr "Ajustes de importación / exportación" + +#. translators: URL to wp-admin/import.php +#: includes/admin/store-settings/class-mp-store-settings-import.php:266 +msgid "This importer is not installed. Please install importers from the main site." +msgstr "Este importador no está instalado. Instale los importadores desde el sitio principal ." + +#: includes/admin/store-settings/class-mp-store-settings-import.php:261 +msgid "Install Now" +msgstr "Instalar ahora" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:260 +msgid "Install %s" +msgstr "Instalar %s" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:240 +msgid "Run Importer" +msgstr "Ejecutar importador" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:239 +msgid "Run %s" +msgstr "Ejecutar %s" + +#: includes/admin/class-mp-store-settings-admin.php:258 +msgid "Import/Export" +msgstr "Importación y exportación" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1199 +msgid "Requires Login" +msgstr "Requiere Login" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:737 +msgid "Optionally limit the user to some categories" +msgstr "Opcionalmente limitar al usuario a algunas categorías." + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:671 +msgid "Should this coupon only be available to logged in users?" +msgstr "¿Debería este cupón solo estar disponible para usuarios registrados?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:670 +msgid "Require Login" +msgstr "Requiere iniciar sesión" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:655 +msgid "Mimimum number of products" +msgstr "Número mínimo de productos" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:653 +msgid "Enter the minimum number of products in the cart that this coupon can be used." +msgstr "Introduzca el número mínimo de productos en el carrito que se puede utilizar este cupón." + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:648 +msgid "Can this coupon be limited to a number of products in the cart?" +msgstr "¿Puede este cupón limitarse a una cantidad de productos en el carrito?" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:334 +msgid "Add all values" +msgstr "Añadir todos los valores" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:265 +msgid "Set as default variation." +msgstr "Establecer como variación por defecto." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:154 +msgid "Set Default" +msgstr "Establecer predeterminado" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:150 +msgid "More Info" +msgstr "Más información" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:40 +msgid "MarketPress - Quick Setup" +msgstr "MarketPress - Configuración rápida" + +#: includes/public/class-mp-checkout.php:1399 +msgid "Proceed to checkout and create an account at the end." +msgstr "Pasar a la caja y crear una cuenta al final." + +#: includes/public/class-mp-checkout.php:1241 +#: includes/public/class-mp-checkout.php:1245 +msgid "Register account" +msgstr "Registrar Cuenta" + +#: includes/public/class-mp-checkout.php:1233 +msgid "Register as customer?" +msgstr "¿Registrarse como cliente?" + +#: includes/public/class-mp-checkout.php:765 +msgid "

    Oops!

    Looks like you haven't added anything your cart. Let's go shopping!

    " +msgstr "

    ¡Vaya!

    Parece que no has agregado nada a tu carrito.¡Vamos a comprar!

    " + +#: includes/public/class-mp-checkout.php:763 +msgid "

    Oops!

    The cart is disabled.

    " +msgstr "

    Oops!

    El carrito esta deshabilitado.

    " + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing Information" +msgstr "Datos de facturación" + +#: includes/multisite/class-mp-admin-multisite.php:214 +msgid "Global Currency" +msgstr "Moneda global" + +#: includes/multisite/class-mp-admin-multisite.php:198 +msgid "Global Store Currency" +msgstr "Moneda global de la tienda" + +#: includes/common/shipping-modules/mp-usps.php:507 +msgid "There are no shipping services available for this type of package in your location." +msgstr "No hay servicios de envío disponibles para este tipo de paquete en su ubicación." + +#: includes/common/shipping-modules/mp-usps.php:168 +msgid "Using this USPS Shipping calculator requires requesting an Ecommerce API Username and Password. Get your free set of credentials here ». The password is no longer used for the API, just the username which you should enter below. The USPS test site has not yet been updated and currently doesn't work - you should just request activating your credentials with USPS and go live." +msgstr "El uso de esta calculadora de envíos de USPS requiere la solicitud de un nombre de usuario y contraseña de API de comercio electrónico. Obtenga su conjunto de credenciales gratis here ». La contraseña ya no se usa para la API, solo el nombre de usuario que debe ingresar a continuación. El sitio de prueba de USPS aún no se ha actualizado y actualmente no funciona. Solo debe solicitar la activación de sus credenciales con USPS y comenzar a usarlo." + +#: includes/common/payment-gateways/stripe.php:339 +msgid "ZIP Code" +msgstr "Código postal" + +#: includes/common/payment-gateways/stripe.php:334 +msgid "Last name" +msgstr "Apellido" + +#: includes/common/payment-gateways/stripe.php:333 +msgid "First name" +msgstr "Nombre " + +#: includes/common/payment-gateways/manual-payments.php:150 +msgid "These are the manual payment instructions to display on the order confirmation screen. TOTAL will be replaced with the order total and ORDERID will be replaced with Order ID." +msgstr "Estas son las instrucciones de pago presencial que se muestran en la pantalla de confirmación del pedido. TOTAL se reemplazará con el total del pedido y ORDERID se reemplazará con la ID del pedido." + +#: includes/common/payment-gateways/authorizenet-aim.php:240 +msgid "You must login to Authorize.net merchant dashboard to obtain the API login ID and API transaction key. Instructions »" +msgstr "Debe iniciar sesión en el panel del comerciante de Authorize.net para obtener el ID de inicio de sesión de la API y la clave de transacción de la API. Instrucciones»" + +#: includes/common/payment-gateways/2checkout.php:327 +msgid "
    1. Set the \"Return Method\" within Site Management to Header Redirect and set the \"Return URL\" to %s
    2. Set your notifications url to %s
    " +msgstr "
    1. Establecer el \"Método de devolución\" dentro de Site Management to Header Redirect and set the \"Return URL\" to %s
    2. Set your notifications url to %s
    " + +#: includes/common/data.php:191 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Also, digital downloads included in your order are now ready to be downloaded. Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" +"Estimado CUSTOMERNAME,\n" +"Su pedido ha sido enviado! Además, las descargas digitales incluidas en su pedido ahora están listas para ser descargadas. Dependiendo del método de envío y su ubicación, debería llegar en breve. Por favor, consulte su ID de pedido(ORDERID) cada vez que nos contacte.\n" +"\n" +"Aquí está una confirmación de los detalles de su pedido:\n" +"\n" +"información del pedido:\n" +"ORDERINFO\n" +"\n" +"Información de envío:\n" +"SHIPPINGINFO\n" +"\n" +"Información del pago:\n" +"PAYMENTINFO\n" +"\n" +"ORDERNOTES\n" +"\n" +"Puedes seguir el estado más reciente de tu pedido aquí: TRACKINGURL\n" +"\n" +"¡Gracias de nuevo!" + +#: includes/common/data.php:185 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order is now available to download! Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" +"Estimado CUSTOMERNAME,\n" +"Su pedido ya está disponible para descargar! Consulte su ID de pedido (ORDERID) cada vez que nos contacte.\n" +"\n" +"Aquí está una confirmación de los detalles de su pedido:\n" +"\n" +"Información del pedido:\n" +"ORDERINFO\n" +"\n" +"Información del pago:\n" +"PAYMENTINFO\n" +"\n" +"ORDERNOTES\n" +"\n" +"Puedes seguir el estado más reciente de tu pedido aquí: TRACKINGURL\n" +"\n" +"¡Gracias de nuevo!" + +#: includes/common/data.php:184 +msgid "Your Order Is Ready To Be Downloaded! (ORDERID)" +msgstr "Su pedido está listo para ser descargado! (ORDERID)" + +#: includes/common/data.php:179 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" +"Estimado CUSTOMERNAME,\n" +"Su pedido ha sido enviado! Dependiendo del método de envío y su ubicación, debería llegar en breve. Por favor, consulte su ID de pedido(ORDERID) cada vez que nos contacte.\n" +"\n" +"Aquí está una confirmación de los detalles de su pedido:\n" +"\n" +"Información del pedido:\n" +"ORDERINFO\n" +"\n" +"Información de envío:\n" +"SHIPPINGINFO\n" +"\n" +"Información del pago:\n" +"PAYMENTINFO\n" +"\n" +"ORDERNOTES\n" +"\n" +"Puedes seguir el estado más reciente de tu pedido aquí: TRACKINGURL\n" +"\n" +"¡Gracias de nuevo!" + +#: includes/common/data.php:173 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received, your digital goods are ready to be downloaded and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" +"Gracias por su orden CUSTOMERNAME!\n" +"\n" +"Su pedido ha sido recibido, sus productos digitales están listos para ser descargados y cualquier artículo que se envíe se procesará lo antes posible. Por favor, consulte su ID de pedido (ORDERID) cada vez que nos contacte.\n" +"\n" +"Aquí está una confirmación de los detalles de su pedido:\n" +"\n" +"Información del pedido:\n" +"ORDERINFO\n" +"\n" +"Información de envío:\n" +"SHIPPINGINFO\n" +"\n" +"Información del pago:\n" +"PAYMENTINFO\n" +"\n" +"ORDERNOTES\n" +"\n" +"Puedes seguir el estado más reciente de tu pedido aquí: TRACKINGURL\n" +"\n" +"¡Gracias de nuevo!" + +#: includes/common/data.php:167 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received and your digital goods are ready to be downloaded. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" +"Gracias por su orden CUSTOMERNAME!\n" +"\n" +"Su pedido ha sido recibido y sus productos digitales están listos para ser descargados. Por favor, consulte su ID de pedido (ORDERID) cada vez que nos contacte.\n" +"\n" +"Aquí está una confirmación de los detalles de su pedido:\n" +"\n" +"Información del pedido:\n" +"ORDERINFO\n" +"\n" +"Información del pago:\n" +"PAYMENTINFO\n" +"\n" +"ORDERNOTES\n" +"\n" +"Puedes seguir el estado más reciente de tu pedido aquí: TRACKINGURL\n" +"\n" +"¡Gracias de nuevo!" + +#: includes/common/data.php:160 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +" Your order has been received, and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information: \n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" +"Gracias por su orden CUSTOMERNAME!\n" +"\n" +"Su pedido ha sido recibido, y cualquier artículo que deba enviarse se procesará lo antes posible..Por favor, consulte su ID de pedido (ORDERID) cada vez que nos contacte.\n" +"\n" +"Aquí está una confirmación de los detalles de su pedido:\n" +"\n" +"información del pedido:\n" +"ORDERINFO\n" +"\n" +"Información de envío: \n" +"SHIPPINGINFO\n" +"\n" +"Información del pago:\n" +"PAYMENTINFO\n" +"\n" +"ORDERNOTES\n" +"\n" +"\n" +"Puedes seguir el estado más reciente de tu pedido aquí: TRACKINGURL\n" +"\n" +"¡Gracias de nuevo!" + +#: includes/common/class-mp-product.php:638 +msgid "You can not add more items to cart." +msgstr "No puedes añadir más artículos al carrito." + +#: includes/common/class-mp-product.php:635 +msgid "You can only add {0} to cart." +msgstr "Solo puedes añadir {0} a la carrito." + +#: includes/common/class-mp-product.php:625 +msgid "This product has an order limit of %d." +msgstr "Este producto tiene un límite de orden de %d." + +#: includes/common/class-mp-order.php:1454 +msgid "Shipped: tracking code: %s" +msgstr "Enviado: código de seguimiento: %s" + +#: includes/common/class-mp-order.php:1000 +#: includes/common/class-mp-order.php:1012 +msgid "Finished" +msgstr "Terminado" + +#: includes/common/class-mp-order.php:858 +msgid "Contact Details" +msgstr "Detalles de contacto" + +#: includes/common/class-mp-order.php:339 includes/common/data.php:155 +msgid "" +"A new order (ORDERID) was created in your store:\n" +"\n" +" ORDERINFOSKU\n" +"\n" +" SHIPPINGINFO\n" +"\n" +" PAYMENTINFO\n" +"\n" +msgstr "" +"Un nuevo pedido (ORDERID) fue creado en tu tienda:\n" +"\n" +"ORDERINFOSKU\n" +"\n" +"SHIPPINGINFO\n" +"\n" +"PAYMENTINFO\n" +"\n" + +#: includes/common/class-mp-cart.php:1858 +msgid "Add again" +msgstr "Añadir de nuevo" + +#: includes/common/class-mp-cart.php:1852 +msgid "was removed from Shopping Cart" +msgstr "fue eliminado del carrito de compra" + +#: includes/common/class-mp-cart.php:1242 +#: includes/public/class-mp-short-codes.php:160 +msgid "Cart update notice: this item has a limit per order or you have reached the stock limit." +msgstr "Aviso de actualización del carrito: este artículo tiene un límite por pedido o usted ha alcanzado el límite de existencias." + +#: includes/admin/widgets/product-list.php:235 +msgid "Show Only Featured Products" +msgstr "Mostrar solo productos destacados" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:533 +msgid "If enabled, users won't be able to filter products per category and/or to order by release date/name/price." +msgstr "Si está habilitado, los usuarios no podrán filtrar productos por categoría y / o ordenar por fecha de lanzamiento / nombre / precio." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:531 +msgid "Hide Products Filter?" +msgstr "¿Ocultar el filtro de los productos?" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:353 +msgid "Notification to registration email instead of billing email?" +msgstr "¿Notificación al correo electrónico de registro en lugar de correo electrónico de facturación?" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:322 +msgid "Order Shipped - Mixed orders (with both digital and physical products)" +msgstr "Pedido enviado - Pedidos mixtos (con productos digitales y físicos)" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:289 +msgid "Order Shipped - Digital downloads only orders" +msgstr "Pedido enviado - Descargas digitales solo en el pedido" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:224 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "Estos códigos serán reemplazados con detalles del pedido.: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML permitido." + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:194 +msgid "New Order - Mixed" +msgstr "Nueva Orden - Mixta" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:161 +msgid "New Order - Digital downloads only orders" +msgstr "Nuevo pedido: descargas digitales solo en el pedido" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:115 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:243 +msgid "Mixed orders" +msgstr "Órdenes mixtas" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:110 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:238 +msgid "Digital downloads orders" +msgstr "Pedidos de descargas digitales" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:105 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:233 +msgid "Physical orders" +msgstr "Ordenes fisicas" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:96 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed.
    For orders placed with manual payment, emails set here will be overriden by the one configured in manual payments settings, under payments settings page" +msgstr "Estos códigos serán reemplazados con detalles del pedido.: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed.
    Para los pedidos realizados con pago presencial, los correos electrónicos configurados aquí serán anulados por el configurado en la configuración de pagos presenciales, en la página de configuración de pagos" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:89 +msgid "Customer Notification Settings" +msgstr "Configuración de notificación al cliente" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:47 +msgid "Admin Notification Settings" +msgstr "Configuración de notificaciones de administrador" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:566 +msgid "Only contact details" +msgstr "Solo datos de contacto" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:565 +msgid "Full billing info" +msgstr "Información de facturación completa" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:561 +msgid "Details Collection" +msgstr "Colección de detalles" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:548 +msgid "Digital Settings" +msgstr "Ajustes digitales" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:515 +msgid "Apply Tax to Digital Products?" +msgstr "¿Aplicar impuestos a los productos digitales?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:236 +msgid "product (default)" +msgstr "producto (predeterminado)" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:231 +msgid "If you are experiencing conflicts with other e-commerce plugins change this setting. This will change the internal post type of all your products. Please note that changing this option may break 3rd party themes or plugins." +msgstr "Si experimenta conflictos con otros complementos de comercio electrónico, cambie esta configuración. Esto cambiará el tipo de publicación interna de todos sus productos.Tenga en cuenta que cambiar esta opción puede romper temas o complementos de terceros." + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1203 +msgid "Hide details" +msgstr "Ocultar detalles" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1202 +msgid "Show all changes" +msgstr "Muestra todos los cambios" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1184 +msgid "Version %s" +msgstr "Versión %s" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1161 +msgid "Current" +msgstr "Corriente" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1131 +msgid "%s changelog" +msgstr "%s registro de cambios" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:952 +msgid "We did not find any data for this plugin or theme..." +msgstr "No hemos encontrado ningún dato para este plugin o tema" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:285 +msgid "Activate WPMU DEV Dashboard" +msgstr "Activar WPMU DEV Tablero" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:279 +msgid "Just one more step - activate the WPMU DEV Dashboard plugin and you're all done!" +msgstr "Solo un paso más - activar el WPMU DEV Dashboard plugin y ya está todo listo!" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:277 +msgid "Important updates are available for your WPMU DEV plugins/themes. Activate the WPMU DEV Dashboard to update now!" +msgstr "Actualizaciones importantes están disponibles para su WPMU DEV plugins / temas. Activar el WPMU DEV Dashboard para actualizar ahora!" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:273 +msgid "Just one more step to enable updates and support for %s!" +msgstr "Solo un paso más para habilitar actualizaciones y soporte para %s!" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:271 +msgid "Important updates are available for %s. Activate the WPMU DEV Dashboard to update now!" +msgstr "Actualizaciones importantes están disponibles para %s. Activar el WPMU DEV Dashboard para actualizar ahora!" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:264 +msgid "activate" +msgstr "activar" + +#: includes/admin/class-mp-admin.php:398 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:248 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:289 +msgid "Dismiss" +msgstr "Despedir" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:247 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:288 +msgid "Saving..." +msgstr "Guardando..." + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:244 +msgid "Install Plugin" +msgstr "Instalar Plugin" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:238 +msgid "Almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "Casi listo - instalar el gratuito WPMU DEV Dashboard plugin para actualizaciones y soporte!" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:236 +msgid "Important updates are available for your WPMU DEV plugins/themes. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "Actualizaciones importantes están disponibles para su WPMU DEV plugins/temas. Instalar el gratuito WPMU DEV Dashboard plugin ahora para actualizaciones y soporte!" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:232 +msgid "%s is almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "%sya casi está listo: instale el complemento gratuito WPMU DEV Dashboard para obtener actualizaciones y soporte." + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:230 +msgid "Important updates are available for %s. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "Actualizaciones importantes están disponibles para %s. Instale el complemento gratuito WPMU DEV Dashboard para obtener actualizaciones y soporte." + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:223 +msgid "install" +msgstr "instalar" + +#: includes/admin/class-mp-shortcode-builder.php:1428 +msgid "Sets the number of Tags to display. This causes the SQL LIMIT value to be defined." +msgstr "Establece el número de etiquetas para mostrar. Esto hace que se defina el valor de LIMIT de SQL." + +#: includes/admin/class-mp-shortcode-builder.php:1289 +msgid "How many products to display in the product list if \"paginate\" is set to false." +msgstr "Cuántos productos se mostrarán en la lista de productos si \"paginate\" se establece en falso." + +#: includes/admin/class-mp-shortcode-builder.php:739 +#: includes/admin/class-mp-shortcode-builder.php:906 +#: includes/admin/class-mp-shortcode-builder.php:1350 +msgid "Grid" +msgstr "Cuadrícula" + +#: includes/admin/class-mp-shortcode-builder.php:735 +#: includes/admin/class-mp-shortcode-builder.php:902 +#: includes/admin/class-mp-shortcode-builder.php:1346 +msgid "Products will be displayed as list or grid." +msgstr "Los productos se mostrarán como lista o cuadrícula." + +#: includes/admin/class-mp-shortcode-builder.php:206 +msgid "Display a cloud or list of your global product tags." +msgstr "Muestra una nube o lista de etiquetas de productos globales." + +#: includes/admin/class-mp-shortcode-builder.php:205 +msgid "Display a list of your global categories." +msgstr "Muestra una lista de tus categorías globales." + +#: includes/admin/class-mp-shortcode-builder.php:204 +msgid "Display a list or grid of your global products." +msgstr "Muestra una lista o cuadrícula de tus productos globales." + +#: includes/admin/class-mp-shortcode-builder.php:181 +msgid "Display a list of featured products." +msgstr "Muestra una lista de productos destacados." + +#: includes/admin/class-mp-products-admin.php:1451 +msgid "Is Featured?" +msgstr "Es destacado?" + +#: includes/admin/class-mp-products-admin.php:1444 +msgid "Featured Product" +msgstr "Producto destacado" + +#: includes/admin/class-mp-products-admin.php:581 +#: includes/admin/class-mp-products-admin.php:1580 +msgid "% discount" +msgstr "% de descuento" + +#: includes/admin/class-mp-products-admin.php:579 +msgid "OR" +msgstr "O" + +#: includes/admin/class-mp-products-admin.php:460 +#: includes/admin/class-mp-products-admin.php:586 +#: includes/admin/widgets/product-list.php:217 +msgid "Featured" +msgstr "Destacados" + +#: includes/admin/class-mp-orders-admin.php:536 +#: includes/admin/class-mp-orders-admin.php:538 +msgid "Tracking Link" +msgstr "Enlace de seguimiento" + +#: includes/admin/class-mp-orders-admin.php:508 +msgid "Shipping Tax" +msgstr "Impuesto de envío" + +#: includes/admin/class-mp-orders-admin.php:356 +msgid "Shipping Total" +msgstr "Total de envío" + +#: includes/admin/class-mp-orders-admin.php:352 +msgid "Taxes Total" +msgstr "Impuestos Totales" + +#: includes/admin/class-mp-orders-admin.php:349 +msgid "Products Total" +msgstr "Productos totales" + +#: includes/admin/class-mp-ajax.php:366 +msgid "Oops! You entered an invalid username/email and or password." +msgstr "¡Ups! Ingresó un nombre de usuario / correo electrónico o contraseña no válidos." + +#: includes/admin/class-mp-ajax.php:254 +msgid "Percentage Discount" +msgstr "Porcentaje de descuento" + +#: includes/admin/class-mp-ajax.php:234 +msgid "Limit the Amount of Items per Order" +msgstr "Limite la cantidad de artículos por pedido" + +#: includes/admin/class-mp-ajax.php:214 +msgid "Unused Attributes" +msgstr "Atributos no utilizados" + +#: includes/admin/class-mp-admin.php:82 +msgid "Run setup wizard" +msgstr " Ejecutar Asistente de instalación " + +#: includes/admin/class-mp-admin.php:79 +msgid "MarketPress setup is not complete! Once you've completed this quick setup wizard you'll have a fully working online store - exciting! " +msgstr "MarketPress La configuración no está completa! Una vez que haya completado este asistente de configuración rápida, tendrá una tienda en línea totalmente funcional, ¡emocionante!" + +#: marketpress.php:263 +msgctxt "mp_order" +msgid "Add New" +msgstr "Añadir nuevo" + +#: marketpress.php:184 +msgctxt "product_tag" +msgid "Product Tag" +msgstr "Etiqueta del producto" + +#: marketpress.php:183 +msgctxt "product_tag" +msgid "Product Tags" +msgstr "Etiquetas de productos" + +#: marketpress.php:150 +msgctxt "product_category" +msgid "Product Category" +msgstr "Categoría de producto" + +#: marketpress.php:149 +msgctxt "product_category" +msgid "Product Categories" +msgstr "Categorias de Producto" + +#. Author URI of the plugin/theme +msgid "http://premium.wpmudev.org" +msgstr "http://premium.wpmudev.org" + +#: marketpress.php:729 +msgid "Invoice PDF" +msgstr "Factura PDF" + +#: marketpress.php:712 +msgid "Grant access to themes and gateways depending on the user's Pro Site level" +msgstr "Otorgue acceso a temas y pasarelas dependiendo del nivel Pro Site del usuario" + +#: marketpress.php:711 +msgid "Pro Sites" +msgstr "Pro Sites" + +#: marketpress.php:703 +msgid "Offer and accept coupon codes" +msgstr "Ofrecer y aceptar códigos de cupón." + +#. translators: %s: plugin title +#: marketpress.php:687 +msgid "Install %s Pages" +msgstr "Instalar %s Páginas" + +#. translators: %s: plugin title +#: marketpress.php:682 +msgid "Welcome to %s – Install pages required by the plugin automatically." +msgstr "Bienvenido a %s –Instale las páginas requeridas por el plugin automáticamente." + +#: marketpress.php:668 +msgid "Your pages were created successfully." +msgstr "Tus páginas fueron creadas exitosamente." + +#: marketpress.php:436 +msgid "Add a Product" +msgstr "Añadir un producto" + +#: marketpress.php:271 +msgid "Parent Order" +msgstr "Orden superior" + +#: marketpress.php:270 +msgid "No orders found in trash" +msgstr "No se encontraron pedidos en la basura" + +#: marketpress.php:269 +msgid "No orders found" +msgstr "No se encontraron pedidos" + +#: marketpress.php:265 +msgid "Edit Order" +msgstr "Editar Orden" + +#: marketpress.php:264 +msgid "Add New Order" +msgstr "Añadir nuevo pedido" + +#: marketpress.php:220 marketpress.php:221 +msgid "Add New Product" +msgstr "Añadir nuevo producto" + +#: marketpress.php:197 +msgid "No product tags found" +msgstr "No se encontraron etiquetas de productos" + +#: marketpress.php:196 +msgid "Choose from the most used product tags" +msgstr "Elija entre las etiquetas de producto más usadas" + +#: marketpress.php:195 +msgid "Add or remove product tags" +msgstr "Agregar o quitar etiquetas de productos" + +#: marketpress.php:194 +msgid "Separate product tags with commas" +msgstr "Etiquetas del producto separadas con comas" + +#: marketpress.php:193 +msgid "Search Product Tags" +msgstr "Buscar etiquetas de productos" + +#: marketpress.php:192 +msgid "Parent Product Tag:" +msgstr "Etiqueta del producto principal:" + +#: marketpress.php:191 +msgid "Parent Product Tag" +msgstr "Etiqueta del producto principal" + +#: marketpress.php:190 +msgid "New Product Tag Name" +msgstr "Nuevo nombre de etiqueta de producto" + +#: marketpress.php:189 +msgid "Add New Product Tag" +msgstr "Añadir nueva etiqueta de producto" + +#: marketpress.php:188 +msgid "Update Product Tag" +msgstr "Actualizar etiqueta de producto" + +#: marketpress.php:187 +msgid "View Product Tag" +msgstr "Ver etiqueta del producto" + +#: marketpress.php:186 +msgid "Edit Product Tag" +msgstr "Editar etiqueta de producto" + +#: marketpress.php:185 +msgid "All Product Tags" +msgstr "Todas las etiquetas de productos" + +#: marketpress.php:163 +msgid "No product categories found" +msgstr "No se encontraron categorías de productos" + +#: marketpress.php:162 +msgid "Choose from the most used product categories" +msgstr "Elige entre las categorías de productos más utilizadas." + +#: marketpress.php:161 +msgid "Add or remove product categories" +msgstr "Añadir o eliminar categorías de productos" + +#: marketpress.php:160 +msgid "Separate product categories with commas" +msgstr "Categorías de productos separadas con comas." + +#: marketpress.php:159 +msgid "Search Product Categories" +msgstr "Buscar categorías de productos" + +#: marketpress.php:158 +msgid "Parent Product Category:" +msgstr "Categoría de producto principal:" + +#: marketpress.php:157 +msgid "Parent Product Category" +msgstr "Categoría de producto principal" + +#: marketpress.php:156 +msgid "New Product Category Name" +msgstr "Nuevo nombre de categoría de producto" + +#: marketpress.php:155 +msgid "Add New Product Category" +msgstr "Añadir nueva categoría de producto" + +#: marketpress.php:154 +msgid "Update Product Category" +msgstr "Actualizar categoría de producto" + +#: marketpress.php:153 +msgid "View Product Category" +msgstr "Ver categoría de producto" + +#: marketpress.php:152 +msgid "Edit Product Category" +msgstr "Editar categoría de producto" + +#: marketpress.php:151 +msgid "All Product Categories" +msgstr "Todas las categorías de productos" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Please fix the %s1 and then try submitting the form again." +msgstr "Por favor arregle el %s1 y luego intente enviar el formulario de nuevo." + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Oops! The form contains %s1 which %s2 been highlighted below." +msgstr "¡Ups! El formulario contiene %s1 cual es %s2 se ha destacado a continuación." + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:660 +msgid "have" +msgstr "tener" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:659 +msgid "has" +msgstr "tiene" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:651 +msgid "Value must be less than {0}" +msgstr "El valor debe ser menor que {0}" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:650 +msgid "Please enter only letters and numbers" +msgstr "Por favor ingrese solo letras y números" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:539 +msgid "Due to prolonged inactivity on this page, one or more settings were not saved. Please try again." +msgstr "Debido a la inactividad prolongada en esta página, una o más configuraciones no se guardaron. Inténtalo de nuevo." + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:535 +msgid "Settings Saved" +msgstr "Se guardó la configuración" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-user-select.php:22 +msgid "Select Some Users" +msgstr "Seleccione algunos usuarios" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-section.php:18 +msgid "Section Title" +msgstr "Sección de título" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:425 +msgid "Are you sure you want to delete this?" +msgstr "¿Estás seguro que quieres eliminar esto?" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:30 +msgid "Add Row" +msgstr "Añadir fila" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-post-select.php:24 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-taxonomy-select.php:22 +msgid "Select Posts" +msgstr "Seleccionar publicaciones" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:210 +msgid "Add Images" +msgstr "Añadir imágenes" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:129 +msgid "Select the image that you would like to use for this product." +msgstr "Seleccione la imagen que le gustaría usar para este producto." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:93 +msgid "Select image(s) that you would like to use for this product." +msgstr "Seleccione las imágenes que le gustaría usar para este producto." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:79 +msgid "Select the image that you would like to use for this variation." +msgstr "Seleccione la imagen que le gustaría usar para esta variación." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:48 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:82 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:68 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:132 +msgid "Select Image" +msgstr "Seleccionar imagen" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:31 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:160 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:168 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:19 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:115 +msgid "Select File" +msgstr "Seleccione Archivo" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:30 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:18 +msgid "Select the file that you would like to use." +msgstr "Seleccione el archivo que desea utilizar." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:357 +msgid "Create Variations" +msgstr "Crear variaciones" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:356 +msgid "Add Another Variant" +msgstr "Añadir otra variante" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Insert a value and press ENTER" +msgstr "Inserte un valor y presione ENTER" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "(e.g. White, Grey, Red etc.)" +msgstr "(por ejemplo, blanco, gris, rojo, etc.)" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Variation Values" +msgstr "Valores de variación" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:333 +msgid "Or create new variation" +msgstr "O crear una nueva variación." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "(e.g. Color)" +msgstr "(por ejemplo, color)" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:303 +msgid "You are about to delete selected variants.
    If you want to continue please confirm." +msgstr "Estás a punto de borrar las variantes seleccionadas.
    Si desea continuar confirme." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:302 +msgid "Confirmation" +msgstr "Confirmación" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:290 +msgid "Insert quantity available. Empty for unlimited." +msgstr "Inserte la cantidad disponible. Vacío por ilimitado." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:281 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:294 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:307 +msgid "Cancel" +msgstr "Cancelar" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:280 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:293 +msgid "Update" +msgstr "Actualizar" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:277 +msgid "Insert the price i.e. 25 or 25.50" +msgstr "Inserte el precio es decir, 25 o 25.50" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:115 +msgid "Img." +msgstr "Img." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:85 +msgid "Add New Variation" +msgstr "Añadir nueva variación" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:79 +msgid "Delete Variants" +msgstr "Eliminar variantes" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:78 +msgid "Update Prices" +msgstr "Actualizar precios" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:77 +msgid "Update Inventory" +msgstr "Actualizar inventario" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:76 +msgid "Update Images" +msgstr "Actualizar imagenes" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:75 +msgid "Bulk Actions" +msgstr "Acciones masivas" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:73 +msgid "Select bulk action" +msgstr "Seleccione acción masiva" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:196 +msgid "Configure Store" +msgstr "Configurar tienda" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:195 +msgid "Configure shipping rates, emails and your store's appearance. " +msgstr "Configure tarifas de envío, correos electrónicos y apariencia de tu tienda." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:190 +msgid "Add Product" +msgstr "Añadir Producto" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:189 +msgid "Add your first product for sale and get familiar with adding products." +msgstr "Añade tu primer producto en especial y familiarisese con la adición de productos." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:184 +msgid "Your store is almost ready for its first customers, but first it needs some products. Get started by adding products below, or jump straight into further configuring your store’s settings." +msgstr "Su tienda está casi lista para sus primeros clientes, pero primero necesita algunos productos. Comience por agregar productos a continuación, o vaya directamente a la configuración de su tienda." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:183 +msgid "Woohoo! Your online store is up and running." +msgstr "¡Wao! Su tienda en línea está en funcionamiento." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:160 +msgid "Finish Setup" +msgstr "Terminar la configuración" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:124 +msgid "And what metric system do you want to use?" +msgstr "¿Y qué sistema métrico quieres usar?" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:113 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:142 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:159 +msgid "Back" +msgstr "Atrás " + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:109 +msgid "Do you want to apply tax for your products? You can customize this for each product and variation." +msgstr "¿Quieres aplicar impuestos para tus productos?Puedes personalizar esto para cada producto y variación.." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:105 +msgid "What currency do you want to sell with?" +msgstr "¿Con qué moneda quieres vender?" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:93 +msgid "And, which countries do you want to sell to?" +msgstr "¿Y a qué países quieres vender?" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:89 +msgid "Where is your online store based?" +msgstr "¿Dónde está su tienda en línea basada?" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:80 +msgid "Payment Gateway" +msgstr "Pasarela de pago" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:79 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:123 +msgid "Metric System" +msgstr "Sistema métrico" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:78 +msgid "Currency & Tax" +msgstr "Moneda e Impuestos" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:77 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:88 +msgid "Locations" +msgstr "Ubicaciones" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:70 +msgid "Choose where you want to sell your stuff and what currency. Easy!" +msgstr "Elige dónde quieres vender tus cosas y qué moneda. ¡Fácil!" + +#: includes/public/class-mp-checkout.php:1400 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:58 +msgid "Continue" +msgstr "Continuar" + +#: includes/admin/class-mp-admin.php:83 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:53 +msgid "Skip this step, I'll do this manually" +msgstr "Salta este paso, lo haré manualmente" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:49 +msgid "Install store pages" +msgstr "Instalar páginas de la tienda" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:44 +msgid "Once you've completed this quick setup wizard you'll have a fully working online store - exciting! Start
    by creating the default store pages for the online store such as the cart, checkout and store pages." +msgstr "Una vez que haya completado este asistente de configuración rápida, tendrá una tienda en línea totalmente funcional, ¡emocionante! Comienza
    creando páginas de la tienda por defecto para la tienda en línea como el carrito, el pago y las páginas de la tienda." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:42 +msgid "MarketPress adds a full online store to your website, with heaps of configuration options and addons
    to suit your needs. It's really easy to get going, and only takes a few minutes to setup!" +msgstr "MarketPress agrega una tienda en línea completa a su sitio web, con un montón de opciones de configuración y complementos
    para satisfacer sus necesidades. Es realmente fácil ponerse en marcha, ¡y solo toma unos minutos para configurarlo!" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:41 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:69 +msgid "Welcome to MarketPress - Quick Setup" +msgstr "Bienvenido a MarketPress - Configuración rápida" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-advanced-select.php:23 +msgid "Select Some Options" +msgstr "Seleccione algunas opciones" + +#: includes/wpmudev-metaboxes/class-wpmudev-field.php:694 +msgid "You must the WPMUDEV_Field::display() method in your form field class" +msgstr "Usted debe el WPMUDEV_Field::display() método en su clase de campo de formulario" + +#: includes/public/class-mp-short-codes.php:636 +msgid "Only %s left in stock..." +msgstr "Solo %s quedaban en almacenaje..." + +#: includes/public/class-mp-short-codes.php:633 +msgid "Unlimited stock" +msgstr "Stock ilimitado" + +#: includes/public/class-mp-short-codes.php:430 +msgid "product_id must be defined" +msgstr "product_id debe ser definido" + +#: includes/public/class-mp-checkout.php:1250 +msgid "An account with this username already exists" +msgstr "Ya existe una cuenta con este nombre de usuario." + +#: includes/public/class-mp-checkout.php:1394 +msgid "Continue as Guest" +msgstr "Continua como invitado" + +#: includes/public/class-mp-checkout.php:1393 +msgid "Proceed to checkout and you'll have an opportunity to create an account at the end." +msgstr "Continúe con el proceso de pago y tendrá la oportunidad de crear una cuenta al final." + +#: includes/public/class-mp-checkout.php:1392 +#: includes/public/class-mp-checkout.php:1398 +msgid "First-time customer?" +msgstr "¿Cliente por primera vez?" + +#: includes/public/class-mp-checkout.php:1386 +msgid "Login" +msgstr "Iniciar sesión" + +#: includes/public/class-mp-checkout.php:1379 +msgid "E-Mail Address/Username" +msgstr "Dirección de correo electrónico / nombre de usuario" + +#: includes/public/class-mp-checkout.php:1377 +msgid "Sign in to speed up the checkout process." +msgstr "Inicia sesión para acelerar el proceso de pago." + +#: includes/public/class-mp-checkout.php:1376 +msgid "Have an account?" +msgstr "¿Tienes una cuenta?" + +#: includes/public/class-mp-checkout.php:1297 +msgid "Shipping address different than billing?" +msgstr "Dirección de envío diferente a la de facturación?" + +#: includes/public/class-mp-checkout.php:1184 +msgid "There are no available gateways to process this payment." +msgstr "No hay pasarelas de pago disponibles para procesar este pago." + +#: includes/public/class-mp-checkout.php:1160 +msgid "Payment" +msgstr "Pago" + +#: includes/public/class-mp-checkout.php:1123 +msgid "Oops! An error occurred while processing your payment." +msgstr "¡Ups! Se produjo un error al procesar su pago." + +#: includes/public/class-mp-checkout.php:1051 +msgid "Next Step »" +msgstr "Próximo paso »" + +#: includes/public/class-mp-checkout.php:1045 +msgid "« Previous Step" +msgstr "« Paso anterior" + +#: includes/public/class-mp-checkout.php:873 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:657 +msgid "error" +msgstr "error" + +#: includes/public/class-mp-checkout.php:872 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:658 +msgid "errors" +msgstr "errores" + +#: includes/public/class-mp-checkout.php:871 +msgid "

    Oops! We found %d %s in the form below.

    Fields that have errors are highlighted in red below. Entering into a field will reveal the actual error that occurred.

    " +msgstr "

    Ups! Encontramos %d %s en el siguiente formulario.

    Los campos que tienen errores se resaltan enred abajo. Entrar en un campo revelará el error real que ocurrió.

    " + +#: includes/public/class-mp-checkout.php:870 +msgid "Please enter a valid first and last name" +msgstr "Por favor ingrese un nombre y apellido válido" + +#: includes/public/class-mp-checkout.php:869 +msgid " Please enter a valid card security code" +msgstr "Por favor ingrese un código de seguridad de tarjeta válido" + +#: includes/public/class-mp-checkout.php:868 +msgid "Please enter a valid card expiration" +msgstr "Por favor ingrese fecha válida de vencimiento" + +#: includes/public/class-mp-checkout.php:773 +msgid "Javascript is required in order to checkout. Please enable Javascript in your browser and then refresh this page." +msgstr "Se requiere Javascript para realizar el pago. Por favor, active Javascript en su navegador y luego actualice esta página." + +#: includes/public/class-mp-checkout.php:588 +msgid "An unknown error occurred. Please try again." +msgstr "Un error desconocido ocurrió. Inténtalo de nuevo." + +#: includes/public/class-mp-checkout.php:386 +msgid "Town/City" +msgstr "Pueblo / ciudad" + +#: includes/public/class-mp-checkout.php:380 +msgid "Apartment, suite, unit, building, floor, etc" +msgstr "Apartamento, suite, unidad, edificio, piso, etc" + +#: includes/public/class-mp-checkout.php:376 +msgid "Address Line 2" +msgstr "Dirección Línea 2" + +#: includes/public/class-mp-checkout.php:363 +msgid "Address Line 1" +msgstr "Dirección Línea 1" + +#: includes/common/class-mp-order.php:770 +#: includes/public/class-mp-checkout.php:354 +msgid "Company" +msgstr "Empresa" + +#: includes/public/class-mp-checkout.php:330 +msgid "Last" +msgstr "Apellidos " + +#: includes/public/class-mp-checkout.php:321 +msgid "First" +msgstr "Nombres" + +#: includes/public/class-mp-checkout.php:284 +msgid "State/Province" +msgstr "Provincia/Estado" + +#: includes/public/class-mp-checkout.php:83 +msgid "Review Order/Payment" +msgstr "Revisar orden / pago" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing/Shipping Address" +msgstr "Dirección de facturación / envío" + +#: includes/public/class-mp-checkout.php:80 +msgid "Login/Register" +msgstr "Iniciar sesión / Registrarse" + +#: includes/multisite/class-mp-admin-multisite.php:530 +msgid "Marketplace" +msgstr "Marketplace" + +#: includes/multisite/class-mp-admin-multisite.php:523 +msgid "Global Marketplace Pages" +msgstr "Páginas del Marketplace global" + +#: includes/multisite/class-mp-admin-multisite.php:478 +msgid "Store Network" +msgstr "Red de tiendas" + +#: includes/multisite/class-mp-admin-multisite.php:478 +#: includes/multisite/class-mp-admin-multisite.php:494 +msgid "Store Network Settings" +msgstr "Ajustes de la red de tiendas" + +#: includes/multisite/class-mp-admin-multisite.php:440 +msgid "Set theme access permissions for network stores. For a custom css theme, save your css file with the MarketPress Theme: NAME header in the /marketpress/ui/themes/ folder and it will appear in this list so you may select it." +msgstr "Establecer permisos de acceso al tema para tiendas de red. Para un tema css personalizado, guarde su archivo css con el MarketPress Theme: NAME encabezado en el/marketpress/ui/themes/ y aparecerá en esta lista para que pueda seleccionarla." + +#: includes/multisite/class-mp-admin-multisite.php:361 +msgid "Choose a Gateway" +msgstr "Elige una pasarela" + +#: includes/multisite/class-mp-admin-multisite.php:336 +msgid "%d products get indexed" +msgstr "%d productos fueron indexados" + +#: includes/multisite/class-mp-admin-multisite.php:285 +msgid "Product Indexer" +msgstr "Indexador de productos" + +#: includes/multisite/class-mp-admin-multisite.php:281 +msgid "Please hold on..." +msgstr "Por favor espere..." + +#: includes/multisite/class-mp-admin-multisite.php:280 +msgid "Index Products" +msgstr "Índice de Productos " + +#: includes/multisite/class-mp-admin-multisite.php:279 +msgid "%d products have been indexed in whole network" +msgstr "%d productos han sido indexados en toda la red." + +#: includes/multisite/class-mp-admin-multisite.php:182 +msgid "Enable Global Shopping Cart?" +msgstr "¿Habilitar carrito de compras global?" + +#: includes/multisite/class-mp-admin-multisite.php:178 +msgid "Limit Global Widgets/Shortcodes To Main Blog?" +msgstr "¿Limitar los widgets / códigos cortos globales al blog principal?" + +#: includes/common/template-functions.php:2802 +#: includes/multisite/template-functions.php:355 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:97 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:114 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:143 +msgid "Next" +msgstr "Siguiente" + +#: includes/common/template-functions.php:2801 +#: includes/multisite/template-functions.php:354 +msgid "Prev" +msgstr "Anterior" + +#: includes/common/template-functions.php:2597 +msgid "Tagged in " +msgstr "Etiquetado en " + +#: includes/common/template-functions.php:2196 +#: includes/common/template-functions.php:2202 +#: includes/common/template-functions.php:2214 +#: includes/common/template-functions.php:2217 +msgid "Oops! We couldn't locate any orders matching that order number. Please verify the order number and try again." +msgstr "Ups! No pudimos localizar ningún pedido que coincida con ese número de pedido. Por favor verifique el número de pedido y vuelva a intentarlo." + +#: includes/common/template-functions.php:2138 +msgid "Look Up" +msgstr "Buscar" + +#: includes/common/template-functions.php:1423 +msgid "Please choose a shipping method" +msgstr "Por favor, elija un método de envío" + +#: includes/common/template-functions.php:927 +msgid "If you have your order ID you can look it up using the form below." +msgstr "Si tiene el ID de su pedido, puede buscarlo utilizando el formulario a continuación." + +#: includes/common/template-functions.php:927 +msgid "Order Search" +msgstr "Búsqueda de pedidos" + +#: includes/common/template-functions.php:910 +#: includes/public/class-mp-checkout.php:1440 +msgid "Cart" +msgstr "Carro" + +#: includes/common/template-functions.php:895 +msgid "[mp_global_tag_cloud]" +msgstr "[mp_global_tag_cloud]" + +#: includes/common/template-functions.php:887 +msgid "[mp_global_categories_list]" +msgstr "[mp_global_categories_list]" + +#: includes/common/template-functions.php:880 +msgid "" +"Welcome to our market place!\n" +"\n" +"Check out our network of products:\n" +"\n" +"[mp_list_global_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_global_categories_list]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_global_tag_cloud]" +msgstr "" +"Bienvenido a nuestra tienda!\n" +"\n" +"Consulta nuestra red de productos.:\n" +"\n" +"[mp_list_global_products]\n" +"\n" +"Buscar por categoría:\n" +"\n" +"[mp_global_categories_list]\n" +"\n" +"Buscar por etiqueta:\n" +"\n" +"[mp_global_tag_cloud]" + +#: includes/common/template-functions.php:879 +msgid "Global Store" +msgstr "Tienda global" + +#: includes/common/template-functions.php:873 +msgid "" +"Welcome to our online store! Feel free to browse around:\n" +"\n" +"[mp_store_navigation]\n" +"\n" +"Check out our most popular products:\n" +"\n" +"[mp_popular_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_list_categories]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_tag_cloud]" +msgstr "" +"¡Bienvenidos a nuestra tienda en línea! Siéntase libre de navegar:\n" +"\n" +"[mp_store_navigation]\n" +"\n" +"Echa un vistazo a nuestros productos más populares.:\n" +"\n" +"[mp_popular_products]\n" +"\n" +"Buscar por categoría:\n" +"\n" +"[mp_list_categories]\n" +"\n" +"Buscar por etiqueta:\n" +"\n" +"[mp_tag_cloud]" + +#: includes/common/shipping-modules/mp-weight-rate.php:127 +msgid "If cart weight is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "Si el peso del carro es mayor o igual a este valor, las tasas de esa fila se utilizarán durante el proceso de pago." + +#: includes/common/shipping-modules/mp-weight-rate.php:126 +msgid "Cart Weight" +msgstr "Peso del carrito" + +#: includes/common/shipping-modules/mp-usps.php:222 +msgid "Offered International Services" +msgstr "Servicios internacionales ofrecidos" + +#: includes/common/shipping-modules/mp-usps.php:206 +msgid "Offered Domestic Services" +msgstr "Servicios domésticos ofrecidos" + +#: includes/common/shipping-modules/mp-usps.php:196 +msgid "Retail Rates" +msgstr "Tarifas al por menor" + +#: includes/common/shipping-modules/mp-usps.php:195 +msgid "Online Rates" +msgstr "Tarifas en línea" + +#: includes/common/shipping-modules/mp-usps.php:193 +msgid "Rates Request Type" +msgstr "Tipos de solicitudes de tarifas" + +#: includes/common/shipping-modules/mp-usps.php:189 +msgid "Maximum Weight Per Package" +msgstr "Peso máximo por paquete" + +#: includes/common/shipping-modules/mp-ups.php:195 +#: includes/common/shipping-modules/mp-usps.php:236 +msgid "Enter your standard box sizes as LengthxWidthxHeight (e.g. 12x8x6) For each box defined enter the maximum weight it can contain. Note: the shipping prices this plugin calculates are estimates. If they are consistently too low or too high, please check that the list of boxes above and the product weights are accurate and complete." +msgstr "Ingrese los tamaños de caja estándar como LargoxAnchoxAlto (por ejemplo, 12x8x6) Para cada caja definida, ingrese el peso máximo que puede contener. Nota: los precios de envío que calcula este complemento son estimaciones. Si son constantemente demasiado bajos o demasiado altos, verifique que la lista de casillas de arriba y los pesos de los productos sean precisos y completos. " + +#: includes/common/shipping-modules/mp-ups.php:187 +msgid "Handling Charge Per Box Shipped" +msgstr "Cargo por cada caja enviada" + +#: includes/common/shipping-modules/mp-ups.php:176 +#: includes/common/shipping-modules/mp-ups.php:181 +msgid "Offered Services" +msgstr "Servicios Ofrecidos" + +#: includes/common/shipping-modules/mp-ups.php:165 +msgid "Shipper Number" +msgstr "Número de remitente" + +#: includes/common/shipping-modules/mp-ups.php:151 +msgid "User ID" +msgstr "ID de usuario" + +#: includes/common/shipping-modules/mp-ups.php:144 +msgid "Developer Kit Access Key" +msgstr "Kit de desarrollador clave de acceso" + +#: includes/common/shipping-modules/mp-ups.php:140 +msgid "Use Sandbox Mode?" +msgstr "¿Usar el modo sandbox?" + +#: includes/common/shipping-modules/mp-ups.php:123 +msgid "In order to use UPS, you will need a UPS Developer Kit access key and the UPS user ID and password associated with the access key. Set these up for free here. If this information is missing or incorrect, an error will appear during the checkout process and the buyer will not be able to complete the transaction." +msgstr "Para utilizar UPS, necesitará una clave de acceso del Kit de desarrollo de UPS y la identificación y contraseña de usuario de UPS asociadas con la clave de acceso. Configúralos de forma gratuita aquí . Si esta información falta o es incorrecta, aparecerá un error durante el proceso de compra y el comprador no podrá completar la transacción." + +#: includes/common/shipping-modules/mp-table-rate.php:112 +msgid "If cart total is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "Si el total del carrito es mayor o igual a este valor, las tasas de esa fila se utilizarán durante el proceso de pago." + +#: includes/common/shipping-modules/mp-table-rate.php:111 +msgid "Cart Total" +msgstr "Total del carrito" + +#: includes/common/shipping-modules/mp-table-rate.php:95 +#: includes/common/shipping-modules/mp-weight-rate.php:111 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Don't worry about sorting as this will be done automatically upon saving." +msgstr "Asegúrese de ingresar un precio de envío para cada opción o esos clientes pueden obtener el envío gratis. No se preocupe por la clasificación, ya que esto se hará automáticamente al guardar." + +#: includes/common/shipping-modules/mp-pickup.php:170 +msgid "Method Title (visible for clients)" +msgstr "Título del método (visible para los clientes)" + +#: includes/common/shipping-modules/mp-fedex.php:409 +#: includes/common/shipping-modules/mp-ups.php:216 +#: includes/common/shipping-modules/mp-usps.php:251 +msgid "Max Weight (%s)" +msgstr "Peso máximo (%s)" + +#: includes/common/shipping-modules/mp-fedex.php:402 +#: includes/common/shipping-modules/mp-ups.php:209 +#: includes/common/shipping-modules/mp-usps.php:247 +msgid "Size (%s)" +msgstr "Tamaño (%s)" + +#: includes/common/shipping-modules/mp-fedex.php:387 +msgid "Enter your standard box sizes as LengthxWidthxHeight ( 12x8x6 ) For each box defined enter the maximum weight it can contain. Total weight selects the box size used for calculating Shipping costs." +msgstr "Introduzca sus tamaños de caja estándar como LargoxAnchoxAlto (12x8x6) Para cada caja definida, ingrese el peso máximo que puede contener. El peso total selecciona el tamaño de la caja utilizada para calcular los costos de envío." + +#: includes/common/shipping-modules/mp-fedex.php:361 +#: includes/common/shipping-modules/mp-usps.php:229 +msgid "Handling Charge per International Shipment" +msgstr "Gastos de tramitación por envío internacional" + +#: includes/common/shipping-modules/mp-fedex.php:353 +msgid "International Services" +msgstr "Servicios internacionales" + +#: includes/common/shipping-modules/mp-fedex.php:339 +#: includes/common/shipping-modules/mp-usps.php:213 +msgid "Handling Charge per Domestic Shipment" +msgstr "Gastos de tramitación por envio nacional " + +#: includes/common/shipping-modules/mp-fedex.php:331 +msgid "Domestic Services" +msgstr "Servicios domésticos" + +#: includes/common/shipping-modules/mp-fedex.php:321 +msgid "When checked the customer can chose Residential or Commercial delivery with Residential the default. Unchecked it's only Residential rates." +msgstr "Cuando se marca, el cliente puede elegir entre Entrega residencial o Comercial con Residencial como predeterminado. Sin marcar es solo tarifas residenciales." + +#: includes/common/shipping-modules/mp-fedex.php:320 +msgid "Allow Commercial Delivery?" +msgstr "¿Permitir entrega comercial?" + +#: includes/common/shipping-modules/mp-fedex.php:315 +msgid "Fedex 10kg Box" +msgstr "Fedex 10kg Caja" + +#: includes/common/shipping-modules/mp-fedex.php:314 +msgid "Fedex 25kg Box" +msgstr "Fedex 25kg Caja" + +#: includes/common/shipping-modules/mp-fedex.php:313 +msgid "Fedex Box" +msgstr "Fedex Caja" + +#: includes/common/shipping-modules/mp-fedex.php:312 +msgid "Fedex Envelope" +msgstr "Fedex Sobre" + +#: includes/common/shipping-modules/mp-fedex.php:311 +msgid "Fedex Pak" +msgstr "Fedex Paquete" + +#: includes/common/shipping-modules/mp-fedex.php:310 +msgid "Fedex Tube" +msgstr "Fedex Tubo" + +#: includes/common/shipping-modules/mp-fedex.php:306 +msgid "Default Packaging" +msgstr "Embalaje por defecto" + +#: includes/common/shipping-modules/mp-fedex.php:294 +msgid "Dropoff Type" +msgstr "Tipo de devolución" + +#: includes/common/shipping-modules/mp-fedex.php:290 +msgid "Meter ID" +msgstr "ID del medidor" + +#: includes/common/shipping-modules/mp-fedex.php:134 +msgid "This is a residential address" +msgstr "Esta es una dirección residencial" + +#: includes/common/payment-gateways/wepay.php:283 +msgid "There was an error processing your card: \"%s\". Please check your credit card info and try again." +msgstr "Hubo un error al procesar tu tarjeta: \"%s\". Por favor verifica la información de tu tarjeta de crédito y vuelve a intentarlo." + +#: includes/common/payment-gateways/wepay.php:121 +msgid "Wepay makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept cards directly on your site. You don't need a merchant account or gateway. WePay handles everything including storing cards. Credit cards go directly to WePay's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "Wepay le facilita comenzar a aceptar tarjetas de crédito directamente en su sitio con el cumplimiento total de PCI. Acepta tarjetas directamente en tu sitio. No necesitas una cuenta de comerciante o puerta de enlace. WePay se encarga de todo, incluyendo el almacenamiento de tarjetas. Las tarjetas de crédito van directamente al entorno seguro de WePay y nunca llegan a sus servidores, por lo que puede evitar la mayoría de los requisitos de PCI." + +#: includes/common/payment-gateways/stripe.php:385 +msgid "There was an error processing your card - \"%s\". Please try again." +msgstr "Hubo un error al procesar tu tarjeta - \"%s\". Inténtalo de nuevo." + +#: includes/common/payment-gateways/stripe.php:356 +msgid "%s Store Purchase - Order ID - %s, Email - %s" +msgstr "%s Compra en tienda - ID de pedido - %s, Email - %s" + +#: includes/common/payment-gateways/stripe.php:251 +msgid "Stripe makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept Visa, MasterCard, American Express, Discover, JCB, and Diners Club cards directly on your site. You don't need a merchant account or gateway. Stripe handles everything, including storing cards, subscriptions, and direct payouts to your bank account. Credit cards go directly to Stripe's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "Stripe hace que sea más fácil comenzar a aceptar tarjetas de crédito directamente en su sitio con el cumplimiento total de PCI. Acepte las tarjetas Visa, MasterCard, American Express, Discover, JCB y Diners Club directamente en su sitio. No necesitas una cuenta de comerciante o puerta de enlace. Stripe se encarga de todo, incluido el almacenamiento de tarjetas, suscripciones y pagos directos a su cuenta bancaria. Las tarjetas de crédito van directamente al entorno seguro de Stripe y nunca llegan a sus servidores, por lo que puede evitar la mayoría de los requisitos de PCI." + +#: includes/common/payment-gateways/stripe.php:192 +msgid "ZMW - Zambian Kwacha" +msgstr "ZMW - Zambian Kwacha" + +#: includes/common/payment-gateways/stripe.php:191 +msgid "ZAR - South African Rand" +msgstr "ZAR - South African Rand" + +#: includes/common/payment-gateways/stripe.php:190 +msgid "YER - Yemeni Rial" +msgstr "YER - Yemeni Rial" + +#: includes/common/payment-gateways/stripe.php:189 +msgid "XPF - Cfp Franc*" +msgstr "XPF - Cfp Franc*" + +#: includes/common/payment-gateways/stripe.php:188 +msgid "XOF - West African Cfa Franc*" +msgstr "XOF - West African Cfa Franc*" + +#: includes/common/payment-gateways/stripe.php:187 +msgid "XCD - East Caribbean Dollar" +msgstr "XCD - East Caribbean Dollar" + +#: includes/common/payment-gateways/stripe.php:186 +msgid "XAF - Central African Cfa Franc" +msgstr "XAF - Central African Cfa Franc" + +#: includes/common/payment-gateways/stripe.php:185 +msgid "WST - Samoan Tala" +msgstr "WST - Samoan Tala" + +#: includes/common/payment-gateways/stripe.php:184 +msgid "VUV - Vanuatu Vatu" +msgstr "VUV - Vanuatu Vatu" + +#: includes/common/payment-gateways/stripe.php:183 +msgid "VND - Vietnamese Đồng" +msgstr "VND - Vietnamese Đồng" + +#: includes/common/payment-gateways/stripe.php:182 +msgid "VEF - Venezuelan Bolívar*" +msgstr "VEF - Venezuelan Bolívar*" + +#: includes/common/payment-gateways/stripe.php:181 +msgid "UZS - Uzbekistani Som" +msgstr "UZS - Uzbekistani Som" + +#: includes/common/payment-gateways/stripe.php:180 +msgid "UYI - Uruguayan Peso*" +msgstr "UYI - Uruguayan Peso*" + +#: includes/common/payment-gateways/stripe.php:178 +msgid "UGX - Ugandan Shilling" +msgstr "UGX - Ugandan Shilling" + +#: includes/common/payment-gateways/stripe.php:177 +msgid "UAH - Ukrainian Hryvnia" +msgstr "UAH - Ukrainian Hryvnia" + +#: includes/common/payment-gateways/stripe.php:176 +msgid "TZS - Tanzanian Shilling" +msgstr "TZS - Tanzanian Shilling" + +#: includes/common/payment-gateways/stripe.php:175 +msgid "TWD - New Taiwan Dollar" +msgstr "TWD - New Taiwan Dollar" + +#: includes/common/payment-gateways/stripe.php:174 +msgid "TTD - Trinidad and Tobago Dollar" +msgstr "TTD - Trinidad and Tobago Dollar" + +#: includes/common/payment-gateways/stripe.php:172 +msgid "TOP - Tongan Paʻanga" +msgstr "TOP - Tongan Paʻanga" + +#: includes/common/payment-gateways/stripe.php:171 +msgid "TJS - Tajikistani Somoni" +msgstr "TJS - Tajikistani Somoni" + +#: includes/common/payment-gateways/stripe.php:169 +msgid "SZL - Swazi Lilangeni" +msgstr "SZL - Swazi Lilangeni" + +#: includes/common/payment-gateways/stripe.php:168 +msgid "SVC - Salvadoran Colón*" +msgstr "SVC - Salvadoran Colón*" + +#: includes/common/payment-gateways/stripe.php:167 +msgid "STD - São Tomé and Príncipe Dobra" +msgstr "STD - São Tomé and Príncipe Dobra" + +#: includes/common/payment-gateways/stripe.php:166 +msgid "SRD - Surinamese Dollar*" +msgstr "SRD - Surinamese Dollar*" + +#: includes/common/payment-gateways/stripe.php:165 +msgid "SOS - Somali Shilling" +msgstr "SOS - Somali Shilling" + +#: includes/common/payment-gateways/stripe.php:164 +msgid "SLL - Sierra Leonean Leone" +msgstr "SLL - Sierra Leonean Leone" + +#: includes/common/payment-gateways/stripe.php:163 +msgid "SHP - Saint Helenian Pound*" +msgstr "SHP - Saint Helenian Pound*" + +#: includes/common/payment-gateways/stripe.php:160 +msgid "SCR - Seychellois Rupee" +msgstr "SCR - Seychellois Rupee" + +#: includes/common/payment-gateways/stripe.php:159 +msgid "SBD - Solomon Islands Dollar" +msgstr "SBD - Solomon Islands Dollar" + +#: includes/common/payment-gateways/stripe.php:157 +msgid "RWF - Rwandan Franc" +msgstr "RWF - Rwandan Franc" + +#: includes/common/payment-gateways/stripe.php:156 +msgid "RUB - Russian Ruble" +msgstr "RUB - Russian Ruble" + +#: includes/common/payment-gateways/stripe.php:155 +msgid "RSD - Serbian Dinar" +msgstr "RSD - Serbian Dinar" + +#: includes/common/payment-gateways/stripe.php:154 +msgid "RON - Romanian Leu" +msgstr "RON - Romanian Leu" + +#: includes/common/payment-gateways/stripe.php:153 +msgid "QAR - Qatari Riyal" +msgstr "QAR - Qatari Riyal" + +#: includes/common/payment-gateways/stripe.php:152 +msgid "PYG - Paraguayan Guaraní*" +msgstr "PYG - Paraguayan Guaraní*" + +#: includes/common/payment-gateways/stripe.php:151 +msgid "PLN - Polish Złoty" +msgstr "PLN - Polish Złoty" + +#: includes/common/payment-gateways/stripe.php:150 +msgid "PKR - Pakistani Rupee" +msgstr "PKR - Pakistani Rupee" + +#: includes/common/payment-gateways/stripe.php:149 +msgid "PHP - Philippine Peso" +msgstr "PHP - Philippine Peso" + +#: includes/common/payment-gateways/stripe.php:148 +msgid "PGK - Papua New Guinean Kina" +msgstr "PGK - Papua New Guinean Kina" + +#: includes/common/payment-gateways/stripe.php:147 +msgid "PEN - Peruvian Nuevo Sol*" +msgstr "PEN - Peruvian Nuevo Sol*" + +#: includes/common/payment-gateways/stripe.php:146 +msgid "PAB - Panamanian Balboa*" +msgstr "PAB - Panamanian Balboa*" + +#: includes/common/payment-gateways/stripe.php:144 +msgid "NPR - Nepalese Rupee" +msgstr "NPR - Nepalese Rupee" + +#: includes/common/payment-gateways/stripe.php:142 +msgid "NIO - Nicaraguan Córdoba*" +msgstr "NIO - Nicaraguan Córdoba*" + +#: includes/common/payment-gateways/stripe.php:141 +msgid "NGN - Nigerian Naira" +msgstr "NGN - Nigerian Naira" + +#: includes/common/payment-gateways/stripe.php:140 +msgid "NAD - Namibian Dollar" +msgstr "NAD - Namibian Dollar" + +#: includes/common/payment-gateways/stripe.php:139 +msgid "MZN - Mozambican Metical" +msgstr "MZN - Mozambican Metical" + +#: includes/common/payment-gateways/stripe.php:137 +msgid "MXN - Mexican Peso*" +msgstr "MXN - Mexican Peso*" + +#: includes/common/payment-gateways/stripe.php:136 +msgid "MWK - Malawian Kwacha" +msgstr "MWK - Malawian Kwacha" + +#: includes/common/payment-gateways/stripe.php:135 +msgid "MVR - Maldivian Rufiyaa" +msgstr "MVR - Maldivian Rufiyaa" + +#: includes/common/payment-gateways/stripe.php:134 +msgid "MUR - Mauritian Rupee*" +msgstr "MUR - Mauritian Rupee*" + +#: includes/common/payment-gateways/stripe.php:133 +msgid "MRO - Mauritanian Ouguiya" +msgstr "MRO - Mauritanian Ouguiya" + +#: includes/common/payment-gateways/stripe.php:132 +msgid "MOP - Macanese Pataca" +msgstr "MOP - Macanese Pataca" + +#: includes/common/payment-gateways/stripe.php:131 +msgid "MNT - Mongolian Tögrög" +msgstr "MNT - Mongolian Tögrög" + +#: includes/common/payment-gateways/stripe.php:130 +msgid "MKD - Macedonian Denar" +msgstr "MKD - Macedonian Denar" + +#: includes/common/payment-gateways/stripe.php:129 +msgid "MGA - Malagasy Ariary" +msgstr "MGA - Malagasy Ariary" + +#: includes/common/payment-gateways/stripe.php:128 +msgid "MDL - Moldovan Leu" +msgstr "MDL - Moldovan Leu" + +#: includes/common/payment-gateways/stripe.php:126 +msgid "LVL - Latvian Lats" +msgstr "LVL - Latvian Lats" + +#: includes/common/payment-gateways/stripe.php:124 +msgid "LSL - Lesotho Loti" +msgstr "LSL - Lesotho Loti" + +#: includes/common/payment-gateways/stripe.php:123 +msgid "LRD - Liberian Dollar" +msgstr "LRD - Liberian Dollar" + +#: includes/common/payment-gateways/stripe.php:122 +msgid "LKR - Sri Lankan Rupee" +msgstr "LKR - Sri Lankan Rupee" + +#: includes/common/payment-gateways/stripe.php:121 +msgid "LBP - Lebanese Pound" +msgstr "LBP - Lebanese Pound" + +#: includes/common/payment-gateways/stripe.php:120 +msgid "LAK - Lao Kip*" +msgstr "LAK - Lao Kip*" + +#: includes/common/payment-gateways/stripe.php:119 +msgid "KZT - Kazakhstani Tenge" +msgstr "KZT - Kazakhstani Tenge" + +#: includes/common/payment-gateways/stripe.php:118 +msgid "KYD - Cayman Islands Dollar" +msgstr "KYD - Cayman Islands Dollar" + +#: includes/common/payment-gateways/stripe.php:117 +msgid "KRW - South Korean Won" +msgstr "KRW - South Korean Won" + +#: includes/common/payment-gateways/stripe.php:116 +msgid "KMF - Comorian Franc" +msgstr "KMF - Comorian Franc" + +#: includes/common/payment-gateways/stripe.php:115 +msgid "KHR - Cambodian Riel" +msgstr "KHR - Cambodian Riel" + +#: includes/common/payment-gateways/stripe.php:114 +msgid "KGS - Kyrgyzstani Som" +msgstr "KGS - Kyrgyzstani Som" + +#: includes/common/payment-gateways/stripe.php:113 +msgid "KES - Kenyan Shilling" +msgstr "KES - Kenyan Shilling" + +#: includes/common/payment-gateways/stripe.php:111 +msgid "JMD - Jamaican Dollar" +msgstr "JMD - Jamaican Dollar" + +#: includes/common/payment-gateways/stripe.php:110 +msgid "ISK - Icelandic Króna" +msgstr "ISK - Icelandic Króna" + +#: includes/common/payment-gateways/stripe.php:109 +msgid "INR - Indian Rupee*" +msgstr "INR - Indian Rupee*" + +#: includes/common/payment-gateways/stripe.php:108 +msgid "ILS - Israeli New Sheqel" +msgstr "ILS - Israeli New Sheqel" + +#: includes/common/payment-gateways/stripe.php:107 +msgid "IDR - Indonesian Rupiah" +msgstr "IDR - Indonesian Rupiah" + +#: includes/common/payment-gateways/stripe.php:105 +msgid "HTG - Haitian Gourde" +msgstr "HTG - Haitian Gourde" + +#: includes/common/payment-gateways/stripe.php:103 +msgid "HNL - Honduran Lempira*" +msgstr "HNL - Honduran Lempira*" + +#: includes/common/payment-gateways/stripe.php:101 +msgid "GYD - Guyanese Dollar" +msgstr "GYD - Guyanese Dollar" + +#: includes/common/payment-gateways/stripe.php:100 +msgid "GTQ - Guatemalan Quetzal*" +msgstr "GTQ - Guatemalan Quetzal*" + +#: includes/common/payment-gateways/stripe.php:99 +msgid "GNF - Guinean Franc*" +msgstr "GNF - Guinean Franc*" + +#: includes/common/payment-gateways/stripe.php:98 +msgid "GMD - Gambian Dalasi" +msgstr "GMD - Gambian Dalasi" + +#: includes/common/payment-gateways/stripe.php:97 +msgid "GIP - Gibraltar Pound" +msgstr "GIP - Gibraltar Pound" + +#: includes/common/payment-gateways/stripe.php:96 +msgid "GEL - Georgian Lari" +msgstr "GEL - Georgian Lari" + +#: includes/common/payment-gateways/stripe.php:94 +msgid "FKP - Falkland Islands Pound*" +msgstr "FKP - Falkland Islands Pound*" + +#: includes/common/payment-gateways/stripe.php:93 +msgid "FJD - Fijian Dollar" +msgstr "FJD - Fijian Dollar" + +#: includes/common/payment-gateways/stripe.php:91 +msgid "ETB - Ethiopian Birr" +msgstr "ETB - Ethiopian Birr" + +#: includes/common/payment-gateways/stripe.php:90 +msgid "EGP - Egyptian Pound" +msgstr "EGP - Egyptian Pound" + +#: includes/common/payment-gateways/stripe.php:89 +msgid "EEK - Estonian Kroon*" +msgstr "EEK - Estonian Kroon*" + +#: includes/common/payment-gateways/stripe.php:88 +msgid "DZD - Algerian Dinar" +msgstr "DZD - Algerian Dinar" + +#: includes/common/payment-gateways/stripe.php:87 +msgid "DOP - Dominican Peso" +msgstr "DOP - Peso Dominicano" + +#: includes/common/payment-gateways/stripe.php:85 +msgid "DJF - Djiboutian Franc*" +msgstr "DJF - Djiboutian Franc*" + +#: includes/common/payment-gateways/stripe.php:84 +msgid "CZK - Czech Koruna*" +msgstr "CZK - Czech Koruna*" + +#: includes/common/payment-gateways/stripe.php:83 +msgid "CVE - Cape Verdean Escudo*" +msgstr "CVE - Cape Verdean Escudo*" + +#: includes/common/payment-gateways/stripe.php:82 +msgid "CRC - Costa Rican Colón*" +msgstr "CRC - Costa Rican Colón*" + +#: includes/common/payment-gateways/stripe.php:81 +msgid "COP - Colombian Peso*" +msgstr "COP - Colombian Peso*" + +#: includes/common/payment-gateways/stripe.php:80 +msgid "CNY - Chinese Renminbi Yuan" +msgstr "CNY - Chinese Renminbi Yuan" + +#: includes/common/payment-gateways/stripe.php:79 +msgid "CLP - Chilean Peso*" +msgstr "CLP - Chilean Peso*" + +#: includes/common/payment-gateways/stripe.php:77 +msgid "CDF - Congolese Franc" +msgstr "CDF - Congolese Franc" + +#: includes/common/payment-gateways/stripe.php:76 +msgid "CAD - Canadian Dollar*" +msgstr "CAD - Canadian Dollar*" + +#: includes/common/payment-gateways/stripe.php:75 +msgid "BZD - Belize Dollar" +msgstr "BZD - Belize Dollar" + +#: includes/common/payment-gateways/stripe.php:74 +msgid "BWP - Botswana Pula" +msgstr "BWP - Botswana Pula" + +#: includes/common/payment-gateways/stripe.php:73 +msgid "BSD - Bahamian Dollar" +msgstr "BSD - Bahamian Dollar" + +#: includes/common/payment-gateways/stripe.php:72 +msgid "BRL - Brazilian Real*" +msgstr "BRL - Brazilian Real*" + +#: includes/common/payment-gateways/stripe.php:71 +msgid "BOB - Bolivian Boliviano*" +msgstr "BOB - Bolivian Boliviano*" + +#: includes/common/payment-gateways/stripe.php:70 +msgid "BND - Brunei Dollar" +msgstr "BND - Brunei Dollar" + +#: includes/common/payment-gateways/stripe.php:69 +msgid "BMD - Bermudian Dollar" +msgstr "BMD - Bermudian Dollar" + +#: includes/common/payment-gateways/stripe.php:68 +msgid "BIF - Burundian Franc" +msgstr "BIF - Burundian Franc" + +#: includes/common/payment-gateways/stripe.php:67 +msgid "BGN - Bulgarian Lev" +msgstr "BGN - Bulgarian Lev" + +#: includes/common/payment-gateways/stripe.php:66 +msgid "BDT - Bangladeshi Taka" +msgstr "BDT - Bangladeshi Taka" + +#: includes/common/payment-gateways/stripe.php:65 +msgid "BBD - Barbadian Dollar" +msgstr "BBD - Barbadian Dollar" + +#: includes/common/payment-gateways/stripe.php:64 +msgid "BAM - Bosnia & Herzegovina Convertible Mark" +msgstr "BAM - Bosnia & Herzegovina Convertible Mark" + +#: includes/common/payment-gateways/stripe.php:63 +msgid "AZN - Azerbaijani Manat" +msgstr "AZN - Azerbaijani Manat" + +#: includes/common/payment-gateways/stripe.php:62 +msgid "AWG - Aruban Florin" +msgstr "AWG - Aruban Florin" + +#: includes/common/payment-gateways/stripe.php:61 +msgid "AUD - Australian Dollar*" +msgstr "AUD - Australian Dollar*" + +#: includes/common/payment-gateways/stripe.php:60 +msgid "ARS - Argentine Peso*" +msgstr "ARS - Argentine Peso*" + +#: includes/common/payment-gateways/stripe.php:59 +msgid "AOA - Angolan Kwanza*" +msgstr "AOA - Angolan Kwanza*" + +#: includes/common/payment-gateways/stripe.php:58 +msgid "ANG - Netherlands Antillean Gulden" +msgstr "ANG - Netherlands Antillean Gulden" + +#: includes/common/payment-gateways/stripe.php:57 +msgid "AMD - Armenian Dram" +msgstr "AMD - Armenian Dram" + +#: includes/common/payment-gateways/stripe.php:56 +msgid "ALL - Albanian Lek" +msgstr "ALL - Albanian Lek" + +#: includes/common/payment-gateways/stripe.php:55 +msgid "AFN - Afghan Afghani*" +msgstr "AFN - Afghan Afghani*" + +#: includes/common/payment-gateways/stripe.php:54 +msgid "AED - United Arab Emirates Dirham" +msgstr "AED - United Arab Emirates Dirham" + +#: includes/common/payment-gateways/skrill.php:345 +msgid "Skrill balance, Credit Card, or Instant Transfer" +msgstr "Skrill balance, tarjeta de crédito o transferencia instantánea" + +#: includes/common/payment-gateways/skrill.php:327 +msgid "Skrill IPN message received." +msgstr "Skrill mensaje de IPN recibido." + +#: includes/common/payment-gateways/skrill.php:283 +msgid "Skrill" +msgstr "Skrill" + +#: includes/common/payment-gateways/skrill.php:278 +msgid "Pending payment" +msgstr "Pago pendiente" + +#: includes/common/payment-gateways/skrill.php:144 +msgid "The secret word must match the word submitted in the \"Merchant Tools\" section of your Skrill account." +msgstr "La palabra secreta debe coincidir con la palabra presentada en la sección \"Herramientas para comerciantes\" de su Skrill cuenta." + +#: includes/common/payment-gateways/skrill.php:134 +msgid "You must use your valid Skrill merchant email. Instructions »" +msgstr "Debes utilizar tu email de comerciante de Skrill válido. Instrucciones »" + +#: includes/common/payment-gateways/skrill.php:133 +msgid "Skrill Email" +msgstr "Skrill Email" + +#: includes/common/payment-gateways/skrill.php:123 +msgid "Resell your inventory via Skrill.com (Moneybookers)" +msgstr "Revende tu inventario a través de Skrill.com (Moneybookers)" + +#: includes/common/payment-gateways/skrill.php:95 +msgid "ZAR - South-African Rand" +msgstr "ZAR - South-African Rand" + +#: includes/common/payment-gateways/skrill.php:93 +msgid "TWD - Taiwan Dollar" +msgstr "TWD - Taiwan Dollar" + +#: includes/common/payment-gateways/skrill.php:92 +msgid "TRY - New Turkish Lira" +msgstr "TRY - New Turkish Lira" + +#: includes/common/payment-gateways/skrill.php:91 +msgid "TND - Tunisian Dinar" +msgstr "TND - Tunisian Dinar" + +#: includes/common/payment-gateways/skrill.php:90 +msgid "THB - Thailand Baht" +msgstr "THB - Thailand Baht" + +#: includes/common/payment-gateways/skrill.php:89 +msgid "SKK - Slovakian Koruna" +msgstr "SKK - Slovakian Koruna" + +#: includes/common/payment-gateways/skrill.php:86 +#: includes/common/payment-gateways/stripe.php:158 +msgid "SAR - Saudi Riyal" +msgstr "SAR - Saudi Riyal" + +#: includes/common/payment-gateways/skrill.php:85 +msgid "RSD - Serbian dinar" +msgstr "RSD - Serbian dinar" + +#: includes/common/payment-gateways/skrill.php:83 +msgid "QAR - Qatari Rial" +msgstr "QAR - Qatari Rial" + +#: includes/common/payment-gateways/skrill.php:81 +msgid "OMR - Omani Rial" +msgstr "OMR - Omani Rial" + +#: includes/common/payment-gateways/skrill.php:80 +msgid "NOK - Norwegian Krone " +msgstr "NOK - Norwegian Krone " + +#: includes/common/payment-gateways/skrill.php:78 +#: includes/common/payment-gateways/stripe.php:138 +msgid "MYR - Malaysian Ringgit" +msgstr "MYR - Malaysian Ringgit" + +#: includes/common/payment-gateways/skrill.php:77 +#: includes/common/payment-gateways/stripe.php:127 +msgid "MAD - Moroccan Dirham" +msgstr "MAD - Moroccan Dirham" + +#: includes/common/payment-gateways/skrill.php:74 +msgid "KRW - South-Korean Won" +msgstr "KRW - South-Korean Won" + +#: includes/common/payment-gateways/skrill.php:72 +msgid "JOD - Jordanian Dinar" +msgstr "JOD - Jordanian Dinar" + +#: includes/common/payment-gateways/skrill.php:70 +msgid "INR - Indian Rupee" +msgstr "INR - Indian Rupee" + +#: includes/common/payment-gateways/skrill.php:63 +msgid "EEK - Estonian Kroon" +msgstr "EEK - Estonian Kroon" + +#: includes/common/payment-gateways/skrill.php:56 +msgid "AED - Utd. Arab Emir. Dirham" +msgstr "AED - Utd. Arab Emir. Dirham" + +#: includes/common/payment-gateways/skrill.php:52 +msgid "Turkish" +msgstr "Turkish" + +#: includes/common/payment-gateways/skrill.php:51 +msgid "Swedish" +msgstr "Swedish" + +#: includes/common/payment-gateways/skrill.php:50 +msgid "Spanish" +msgstr "Español" + +#: includes/common/payment-gateways/skrill.php:49 +msgid "Russian" +msgstr "Russian" + +#: includes/common/payment-gateways/skrill.php:48 +msgid "Romainian" +msgstr "Romainian" + +#: includes/common/payment-gateways/skrill.php:47 +msgid "Polish" +msgstr "Polish" + +#: includes/common/payment-gateways/skrill.php:46 +msgid "Italian" +msgstr "Italian" + +#: includes/common/payment-gateways/skrill.php:45 +msgid "Greek" +msgstr "Greek" + +#: includes/common/payment-gateways/skrill.php:44 +msgid "German" +msgstr "German" + +#: includes/common/payment-gateways/skrill.php:43 +msgid "French" +msgstr "French" + +#: includes/common/payment-gateways/skrill.php:42 +msgid "Finnish" +msgstr "Finnish" + +#: includes/common/payment-gateways/skrill.php:41 +msgid "English" +msgstr "English" + +#: includes/common/payment-gateways/skrill.php:40 +msgid "Dutch" +msgstr "Dutch" + +#: includes/common/payment-gateways/skrill.php:39 +msgid "Danish" +msgstr "Danish" + +#: includes/common/payment-gateways/skrill.php:38 +msgid "Czech" +msgstr "Czech" + +#: includes/common/payment-gateways/skrill.php:37 +msgid "Chinese" +msgstr "Chinese" + +#: includes/common/payment-gateways/simplify.php:201 +msgid "There was an error processing your card: %s. Please re-enter your credit card info and try again." +msgstr "Hubo un error al procesar tu tarjeta: %s. Vuelva a ingresar la información de su tarjeta de crédito e intente nuevamente." + +#: includes/common/payment-gateways/pin.php:278 +msgid "
  • There was an error processing your card: \"%s\". Please verify your credit card information and try again.
  • " +msgstr "
  • Hubo un error al procesar tu tarjeta.: \"%s\". Por favor verifique la información de su tarjeta de crédito y vuelva a intentarlo.
  • " + +#: includes/common/payment-gateways/pin.php:274 +msgid "
  • There was an error processing your card. Please verify your credit card information and try again.
  • " +msgstr "
  • Hubo un error al procesar tu tarjeta. Por favor verifique la información de su tarjeta de crédito y vuelva a intentarlo.
  • " + +#: includes/common/payment-gateways/pin.php:177 +#: includes/common/payment-gateways/stripe.php:279 +msgid "Publishable Key" +msgstr "Clave Publicable" + +#: includes/common/payment-gateways/pin.php:163 +msgid "API Credentials?" +msgstr "Credenciales API?" + +#: includes/common/payment-gateways/pin.php:147 +msgid "PIN makes it easy to start accepting credit card payments with Australia’s first all-in-one online payment system. Accept all major credit cards directly on your site. Your sales proceeds are deposited to any Australian bank account, no merchant account required." +msgstr "El PIN le facilita comenzar a aceptar pagos con tarjeta de crédito con el primer sistema de pago en línea todo en uno de Australia. Acepta todas las principales tarjetas de crédito directamente en tu sitio. Los ingresos de sus ventas se depositan en cualquier cuenta bancaria australiana, no se requiere una cuenta de comerciante." + +#: includes/common/payment-gateways/pin.php:57 +#: includes/common/payment-gateways/stripe.php:179 +msgid "USD - United States Dollar" +msgstr "USD - Dólar de los Estados Unidos" + +#: includes/common/payment-gateways/paypal-payflow.php:455 +msgid "Email Footer" +msgstr "Pie de página de correo electrónico" + +#: includes/common/payment-gateways/paypal-payflow.php:445 +msgid "Email Header" +msgstr "Encabezado de correo electrónico" + +#: includes/common/payment-gateways/paypal-payflow.php:416 +msgid "Partner" +msgstr "Compañero" + +#: includes/common/payment-gateways/paypal-payflow.php:409 +msgid "Vendor" +msgstr "Vendedor" + +#: includes/common/payment-gateways/paypal-express.php:852 +#: includes/common/payment-gateways/paypal-express.php:1126 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences\t section of your Profile." +msgstr "El pago está pendiente porque su cliente no incluyó una dirección de envío confirmada y sus Preferencias de Recepción de Pago están configuradas de tal manera que desea aceptar o rechazar manualmente cada uno de estos pagos. Para cambiar sus preferencias, vaya a la sección Preferencias \t de su perfil." + +#: includes/common/payment-gateways/paypal-express.php:749 +msgid "Page Background Color" +msgstr "Color de fondo de la página" + +#: includes/common/payment-gateways/paypal-express.php:744 +msgid "Header Background Color" +msgstr "Color de fondo del encabezado" + +#: includes/common/payment-gateways/paypal-express.php:739 +msgid "Header Border Color" +msgstr "Color del borde del encabezado" + +#: includes/common/payment-gateways/paypal-express.php:734 +msgid "Header Image" +msgstr "Imagen de cabecera" + +#: includes/common/payment-gateways/paypal-express.php:680 +msgid "Locale" +msgstr "Local" + +#: includes/common/payment-gateways/paypal-express.php:624 +#: includes/common/payment-gateways/paypal-express.php:658 +msgid "Merchant Email" +msgstr "Correo electrónico del comerciante" + +#: includes/common/payment-gateways/paypal-express.php:645 +msgid "Paypal Express Checkout Settings" +msgstr "Paypal Express Checkout Seteos" + +#: includes/common/payment-gateways/paypal-express.php:603 +msgid "Paypal Express Network Settings" +msgstr "Paypal Express Network Seteos" + +#: includes/common/payment-gateways/paypal-chained-payments.php:861 +msgid "Application ID (Live)" +msgstr "ID de aplicación (en vivo)" + +#: includes/common/payment-gateways/paypal-chained-payments.php:854 +msgid "Signature (Live)" +msgstr "Firma (en vivo)" + +#: includes/common/payment-gateways/paypal-chained-payments.php:847 +msgid "API Password (Live)" +msgstr "Contraseña API (Live)" + +#: includes/common/payment-gateways/paypal-chained-payments.php:839 +msgid "API Username (Live)" +msgstr "Nombre de usuario de API (en vivo)" + +#: includes/common/payment-gateways/paypal-chained-payments.php:832 +msgid "Signature (Sandbox)" +msgstr "Firma (Sandbox)" + +#: includes/common/payment-gateways/paypal-chained-payments.php:825 +msgid "API Password (Sandbox)" +msgstr "API Password (Sandbox)" + +#: includes/common/payment-gateways/paypal-chained-payments.php:817 +msgid "API Username (Sandbox)" +msgstr "API Usuario (Sandbox)" + +#: includes/common/payment-gateways/paypal-chained-payments.php:799 +msgid "This message is displayed at the top of the gateway settings page to store admins. It's a good place to inform them of your fees or put any sales messages." +msgstr "Este mensaje se muestra en la parte superior de la página de configuración de la puerta de enlace para almacenar administradores. Es un buen lugar para informarles de sus tarifas o poner cualquier mensaje de venta." + +#: includes/common/payment-gateways/paypal-chained-payments.php:787 +msgid "Please enter your PayPal email address or business ID you want to recieve fees at." +msgstr "Ingrese su dirección de correo electrónico de PayPal o la identificación de la empresa a la que desea recibir los pagos." + +#: includes/common/payment-gateways/paypal-chained-payments.php:786 +msgid "PayPal E-mail" +msgstr "PayPal E-mail" + +#: includes/common/payment-gateways/paypal-chained-payments.php:772 +msgid "Fees to Collect (%)" +msgstr "Honorarios a cobrar (%)" + +#: includes/common/payment-gateways/paypal-chained-payments.php:375 +#: includes/public/class-mp-checkout.php:341 +msgid "Email Address" +msgstr "Dirección de correo electrónico" + +#: includes/common/payment-gateways/paypal-chained-payments.php:299 +msgid "Sorry, your order was not completed." +msgstr "Lo sentimos, tu pedido no se ha completado." + +#: includes/common/payment-gateways/paypal-chained-payments.php:126 +#: includes/common/payment-gateways/paypal-express.php:780 +msgid "You will be redirected to the PayPal site to finalize your payment." +msgstr "Será redirigido al sitio de PayPal para finalizar su pago." + +#: includes/common/payment-gateways/paypal-chained-payments.php:90 +#: includes/common/payment-gateways/skrill.php:94 +msgid "USD - U.S. Dollar" +msgstr "USD - U.S. Dollar" + +#: includes/common/payment-gateways/paypal-chained-payments.php:89 +msgid "TRY - Turkish lira" +msgstr "TRY - Turkish lira" + +#: includes/common/payment-gateways/paypal-chained-payments.php:88 +#: includes/common/payment-gateways/stripe.php:170 +msgid "THB - Thai Baht" +msgstr "THB - Thai Baht" + +#: includes/common/payment-gateways/paypal-chained-payments.php:87 +msgid "TWD - Taiwan New Dollars" +msgstr "TWD - Taiwan New Dollars" + +#: includes/common/payment-gateways/paypal-chained-payments.php:86 +#: includes/common/payment-gateways/pin.php:59 +#: includes/common/payment-gateways/skrill.php:88 +#: includes/common/payment-gateways/stripe.php:162 +msgid "SGD - Singapore Dollar" +msgstr "SGD - Singapore Dollar" + +#: includes/common/payment-gateways/paypal-chained-payments.php:84 +msgid "RUB - Russian Rubles" +msgstr "RUB - Russian Rubles" + +#: includes/common/payment-gateways/paypal-chained-payments.php:82 +msgid "PHP - Philippine Pesos" +msgstr "PHP - Philippine Pesos" + +#: includes/common/payment-gateways/paypal-chained-payments.php:81 +#: includes/common/payment-gateways/pin.php:58 +#: includes/common/payment-gateways/skrill.php:79 +#: includes/common/payment-gateways/stripe.php:145 +msgid "NZD - New Zealand Dollar" +msgstr "NZD - New Zealand Dollar" + +#: includes/common/payment-gateways/paypal-chained-payments.php:79 +msgid "MXN - Mexican Peso" +msgstr "MXN - Mexican Peso" + +#: includes/common/payment-gateways/paypal-chained-payments.php:78 +msgid "MYR - Malaysian Ringgits" +msgstr "MYR - Malaysian Ringgits" + +#: includes/common/payment-gateways/paypal-chained-payments.php:77 +#: includes/common/payment-gateways/pin.php:64 +#: includes/common/payment-gateways/skrill.php:73 +#: includes/common/payment-gateways/stripe.php:112 +msgid "JPY - Japanese Yen" +msgstr "JPY - Japanese Yen" + +#: includes/common/payment-gateways/paypal-chained-payments.php:75 +#: includes/common/payment-gateways/pin.php:63 +#: includes/common/payment-gateways/skrill.php:66 +#: includes/common/payment-gateways/stripe.php:102 +msgid "HKD - Hong Kong Dollar" +msgstr "HKD - Hong Kong Dollar" + +#: includes/common/payment-gateways/paypal-chained-payments.php:73 +msgid "GBP - Pound Sterling" +msgstr "GBP - Pound Sterling" + +#: includes/common/payment-gateways/paypal-chained-payments.php:68 +#: includes/common/payment-gateways/pin.php:62 +#: includes/common/payment-gateways/skrill.php:59 +msgid "CAD - Canadian Dollar" +msgstr "CAD - Canadian Dollar" + +#: includes/common/payment-gateways/paypal-chained-payments.php:67 +msgid "BRL - Brazilian Real" +msgstr "BRL - Brazilian Real" + +#: includes/common/payment-gateways/paypal-chained-payments.php:66 +#: includes/common/payment-gateways/pin.php:56 +#: includes/common/payment-gateways/skrill.php:57 +msgid "AUD - Australian Dollar" +msgstr "AUD - Australian Dollar" + +#: includes/common/payment-gateways/paymill.php:288 +msgid "There was an error processing your card: \"%s\". Please try again." +msgstr "Hubo un error al procesar tu tarjeta.: \"%s\". Inténtalo de nuevo." + +#: includes/common/payment-gateways/paymill.php:163 +msgid "When running on a live site, Paymill recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "Cuando se ejecuta en un sitio en vivo, Paymill recomienda que tenga una configuración de certificado SSL para el sitio donde se mostrará el formulario de pago." + +#: includes/common/payment-gateways/paymill.php:161 +#: includes/common/payment-gateways/pin.php:157 +#: includes/common/payment-gateways/simplify.php:103 +#: includes/common/payment-gateways/stripe.php:260 +#: includes/common/payment-gateways/wepay.php:153 +msgid "Force SSL?" +msgstr "¿Forzar SSL?" + +#: includes/common/payment-gateways/paymill.php:151 +msgid "Accept Visa, Mastercard, Maestro UK, Discover and Solo cards directly on your site. You don't need a merchant account or gateway. Credit cards go directly to Paymill's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "Acepte las tarjetas Visa, Mastercard, Maestro UK, Discover y Solo directamente en su sitio. No necesitas una cuenta de comerciante o puerta de enlace. Las tarjetas de crédito van directamente al entorno seguro de Paymill y nunca llegan a sus servidores, por lo que puede evitar la mayoría de los requisitos de PCI." + +#: includes/common/payment-gateways/paymill.php:131 +msgid "CVV2" +msgstr "CVV2" + +#: includes/common/payment-gateways/paymill.php:72 +#: includes/common/payment-gateways/pin.php:61 +#: includes/common/payment-gateways/skrill.php:65 +#: includes/common/payment-gateways/stripe.php:95 +msgid "GBP - British Pound" +msgstr "GBP - British Pound" + +#: includes/common/payment-gateways/paymill.php:71 +#: includes/common/payment-gateways/stripe.php:173 +msgid "TRY - Turkish Lira" +msgstr "TRY - Turkish Lira" + +#: includes/common/payment-gateways/paymill.php:70 +#: includes/common/payment-gateways/paypal-chained-payments.php:85 +#: includes/common/payment-gateways/skrill.php:87 +#: includes/common/payment-gateways/stripe.php:161 +msgid "SEK - Swedish Krona" +msgstr "SEK - Swedish Krona" + +#: includes/common/payment-gateways/paymill.php:69 +#: includes/common/payment-gateways/skrill.php:84 +msgid "RON - Romanian Leu New" +msgstr "RON - Romanian Leu New" + +#: includes/common/payment-gateways/paymill.php:68 +#: includes/common/payment-gateways/paypal-chained-payments.php:83 +#: includes/common/payment-gateways/skrill.php:82 +msgid "PLN - Polish Zloty" +msgstr "PLN - Polish Zloty" + +#: includes/common/payment-gateways/paymill.php:67 +#: includes/common/payment-gateways/paypal-chained-payments.php:80 +#: includes/common/payment-gateways/stripe.php:143 +msgid "NOK - Norwegian Krone" +msgstr "NOK - Norwegian Krone" + +#: includes/common/payment-gateways/paymill.php:66 +#: includes/common/payment-gateways/skrill.php:75 +#: includes/common/payment-gateways/stripe.php:125 +msgid "LTL - Lithuanian Litas" +msgstr "LTL - Lithuanian Litas" + +#: includes/common/payment-gateways/paymill.php:65 +#: includes/common/payment-gateways/paypal-chained-payments.php:69 +#: includes/common/payment-gateways/skrill.php:60 +#: includes/common/payment-gateways/stripe.php:78 +msgid "CHF - Swiss Franc" +msgstr "CHF - Swiss Franc" + +#: includes/common/payment-gateways/paymill.php:64 +#: includes/common/payment-gateways/skrill.php:76 +msgid "LVL - Latvian Lat" +msgstr "LVL - Latvian Lat" + +#: includes/common/payment-gateways/paymill.php:63 +#: includes/common/payment-gateways/paypal-chained-payments.php:74 +#: includes/common/payment-gateways/skrill.php:69 +msgid "ILS - Israeli Shekel" +msgstr "ILS - Israeli Shekel" + +#: includes/common/payment-gateways/paymill.php:62 +#: includes/common/payment-gateways/skrill.php:71 +msgid "ISK - Iceland Krona" +msgstr "ISK - Iceland Krona" + +#: includes/common/payment-gateways/paymill.php:61 +#: includes/common/payment-gateways/paypal-chained-payments.php:76 +#: includes/common/payment-gateways/skrill.php:68 +#: includes/common/payment-gateways/stripe.php:106 +msgid "HUF - Hungarian Forint" +msgstr "HUF - Hungarian Forint" + +#: includes/common/payment-gateways/paymill.php:60 +#: includes/common/payment-gateways/paypal-chained-payments.php:71 +#: includes/common/payment-gateways/skrill.php:62 +#: includes/common/payment-gateways/stripe.php:86 +msgid "DKK - Danish Krone" +msgstr "DKK - Danish Krone" + +#: includes/common/payment-gateways/paymill.php:59 +#: includes/common/payment-gateways/skrill.php:67 +#: includes/common/payment-gateways/stripe.php:104 +msgid "HRK - Croatian Kuna" +msgstr "HRK - Croatian Kuna" + +#: includes/common/payment-gateways/paymill.php:58 +#: includes/common/payment-gateways/paypal-chained-payments.php:70 +#: includes/common/payment-gateways/skrill.php:61 +msgid "CZK - Czech Koruna" +msgstr "CZK - Czech Koruna" + +#: includes/common/payment-gateways/paymill.php:57 +#: includes/common/payment-gateways/skrill.php:58 +msgid "BGN - Bulgarian Leva" +msgstr "BGN - Bulgarian Leva" + +#: includes/common/payment-gateways/payflow/class-mp-gateway-worker-payflow.php:123 +msgid "There was an error connecting to PayPal. Please try again." +msgstr "Se ha producido un error al conectarse a PayPal. Inténtalo de nuevo." + +#: includes/common/payment-gateways/payfast.php:344 +msgid "This setting will log all PayFast communication to the \"payfast.log\" file." +msgstr "Esta configuración registrará todas las comunicaciones de PayFast en el archivo \"payfast.log\"." + +#: includes/common/payment-gateways/payfast.php:342 +msgid "Log Debugging Info?" +msgstr "Registro de información de depuración?" + +#: includes/common/payment-gateways/payfast.php:335 +msgid "DO NOT INPUT A VALUE UNLESS YOU HAVE SET ONE IN THE SETTINGS SECTION OF YOUR PAYFAST SETTINGS." +msgstr "NO INTRODUZCA UN VALOR A MENOS QUE HAGA UNO EN LA SECCIÓN DE AJUSTES DE SUS AJUSTES DE PAYFAST." + +#: includes/common/payment-gateways/payfast.php:333 +msgid "PayFast Passphrase" +msgstr "PayFast Passphrase" + +#: includes/common/payment-gateways/payfast.php:323 +msgid "You can find your credentials on your integration page." +msgstr "Puede encontrar sus credenciales en su página de integración." + +#: includes/common/payment-gateways/payfast.php:321 +msgid "PayFast Merchant Credentials" +msgstr "PayFast Merchant Credenciales" + +#: includes/common/payment-gateways/payfast.php:311 +msgid "PayFast Mode" +msgstr "PayFast Mode" + +#: includes/common/payment-gateways/payfast.php:308 +msgid "PayFast is a payments processing service for South Africa. We make it safe for buyers to send money and easy for sellers to receive money. More Info »" +msgstr "PayFast es un servicio de procesamiento de pagos para Sudáfrica. Aseguramos que los compradores envíen dinero y que los vendedores reciban dinero fácilmente.. More Info »" + +#: includes/common/payment-gateways/payfast.php:306 +msgid "PayFast Checkout Settings" +msgstr "Configuración de pago de PayFast" + +#: includes/common/payment-gateways/payfast.php:285 +msgid "Your payment via PayFast for this order totaling %s is complete. The transaction number is %s." +msgstr "Su pago a través de PayFast para este pedido por un total. %s Esta completo. El número de transacción es %s." + +#: includes/common/payment-gateways/payfast.php:278 +msgid "Your payment via PayFast for this order totaling %s is not yet complete. Here is the latest status:" +msgstr "Su pago a través de PayFast para este pedido por un total %s Aún no está completo. Aquí está el último estado:" + +#: includes/common/payment-gateways/payfast.php:124 +msgid "Your PayFast transaction has been canceled." +msgstr "Su transacción PayFast ha sido cancelada." + +#: includes/common/payment-gateways/payfast.php:82 +#: includes/common/payment-gateways/payfast.php:83 +msgid "PayFast" +msgstr "PayFast" + +#: includes/common/payment-gateways/mollie.php:157 +msgid "API error: - \"%s\"" +msgstr "API error: - \"%s\"" + +#: includes/common/payment-gateways/mollie.php:198 +msgid "The payment request is under process" +msgstr "La solicitud de pago está en proceso." + +#: includes/common/payment-gateways/mollie.php:140 +msgid "Order: #" +msgstr "Order: #" + +#: includes/common/payment-gateways/mollie.php:116 +msgid "You will be redirected to the Mollie site to finalize your payment." +msgstr "Será redirigido al sitio de Mollie para finalizar su pago." + +#: includes/common/payment-gateways/mollie.php:73 +msgid "%sMollie%s provides a fully PCI Compliant and secure way to collect payments via iDeal, Credit Card, Bancontact / Mister Cash, SOFORT Banking, Overbooking, Bitcoin, PayPal, paysafecard and AcceptEmail." +msgstr "%sMollie%s proporciona una forma segura y compatible con PCI para cobrar pagos a través de iDeal, Credit Card, Bancontact / Mister Cash, SOFORT Banking, Overbooking, Bitcoin, PayPal, paysafecard y AcceptEmail." + +#: includes/common/payment-gateways/mollie.php:53 +#: includes/common/payment-gateways/mollie.php:54 +#: includes/common/payment-gateways/mollie.php:195 +#: includes/common/payment-gateways/mollie.php:245 +msgid "Mollie" +msgstr "Mollie" + +#: includes/common/payment-gateways/mollie.php:50 +#: includes/common/payment-gateways/paymill.php:56 +#: includes/common/payment-gateways/paypal-chained-payments.php:72 +#: includes/common/payment-gateways/pin.php:60 +#: includes/common/payment-gateways/skrill.php:64 +#: includes/common/payment-gateways/stripe.php:92 +msgid "EUR - Euro" +msgstr "EUR - Euro" + +#: includes/common/payment-gateways/mijireh.php:306 +msgid "Access Key" +msgstr "Llave de acceso" + +#: includes/common/payment-gateways/mijireh.php:300 +msgid "You must login to the Mijireh.com dashboard to obtain the Access Key." +msgstr "Debe iniciar sesión en el panel de control de Mijireh.com para obtener la clave de acceso." + +#: includes/common/payment-gateways/mijireh.php:299 +msgid "Credentials" +msgstr "Credenciales" + +#: includes/common/payment-gateways/mijireh.php:289 +msgid "Mijireh Checkout provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site." +msgstr "Mijireh Checkout ofrece una forma segura y totalmente compatible con PCI para recopilar y transmitir datos de tarjetas de crédito a su pasarela de pago, al tiempo que mantiene el control del diseño de su sitio." + +#: includes/common/payment-gateways/mijireh.php:269 +msgid "Mijireh Error: " +msgstr "Mijireh Error: " + +#: includes/common/payment-gateways/mijireh.php:89 +msgid "You will be redirected to the Mijireh.com site to finalize your payment." +msgstr "Será redirigido al sitio Mijireh.com para finalizar su pago." + +#: includes/common/payment-gateways/mijireh.php:87 +msgid "Your Mijireh transaction has been canceled." +msgstr "Su transacción Mijireh ha sido cancelada." + +#: includes/common/payment-gateways/mijireh.php:42 +#: includes/common/payment-gateways/mijireh.php:43 +#: includes/common/payment-gateways/mijireh.php:324 +msgid "Mijireh" +msgstr "Mijireh" + +#: includes/common/payment-gateways/manual-payments.php:145 +msgid "These are the manual payment instructions to display on the payments screen." +msgstr "Estas son las instrucciones de pago presencial que se muestran en la pantalla de pagos." + +#: includes/common/payment-gateways/free_orders.php:189 +msgid "This is the email text to send to those who have made free order checkouts. You should include your free order instructions / information here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" +"Este es el mensaje de correo electrónico que se envía a aquellos que han realizado pedidos de compra gratuitos. Debe incluir sus instrucciones / información de orden gratis aquí. Anula el correo electrónico de pago de pedido predeterminado. Estos códigos serán reemplazados con detalles del pedido:\n" +"CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML permitido." + +#: includes/common/payment-gateways/free_orders.php:183 +msgid "This is the free order information to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "Esta es la información del pedido gratuito que se muestra en la pantalla de confirmación del pedido. TOTAL será reemplazado con el total del pedido." + +#: includes/common/payment-gateways/free_orders.php:182 +msgid "Confirmation User Information" +msgstr "Confirmación de información del usuario" + +#: includes/common/payment-gateways/free_orders.php:177 +msgid "This is the information to display on the payments screen." +msgstr "Esta es la información para mostrar en la pantalla de pagos." + +#: includes/common/payment-gateways/free_orders.php:163 +msgid "If enabled, all free orders will be automatically marked as paid." +msgstr "Si está habilitado, todos los pedidos gratuitos se marcarán automáticamente como pagados." + +#: includes/common/payment-gateways/free_orders.php:159 +msgid "Payment Status" +msgstr "Estado de pago" + +#: includes/common/payment-gateways/free_orders.php:149 +msgid "This gateway is automatically activated if order totalling 0 and it can't be disabled" +msgstr "Esta puerta de enlace se activa automáticamente si la orden totaliza 0 y no se puede desactivar" + +#: includes/common/payment-gateways/free_orders.php:35 +#: includes/common/payment-gateways/free_orders.php:36 +#: includes/common/payment-gateways/free_orders.php:89 +msgid "Free Order" +msgstr "Orden gratis" + +#: includes/common/payment-gateways/free_orders.php:34 +#: includes/common/payment-gateways/free_orders.php:197 +msgid "Free Orders" +msgstr "Pedidos Gratis" + +#: includes/common/payment-gateways/eway31.php:515 +msgid "Sandbox API Credentials" +msgstr "Sandbox API Credenciales" + +#: includes/common/payment-gateways/eway31.php:266 +#: includes/common/payment-gateways/eway31.php:542 +msgid "eWay Rapid 3.1 Payments (beta)" +msgstr "eWay Rapid 3.1 Pagos (beta)" + +#: includes/common/payment-gateways/eway.php:403 +msgid "Hosted Payment Page Language" +msgstr "Idioma de la página de pago alojada" + +#: includes/common/payment-gateways/eway.php:373 +msgid "Note when testing in sandbox mode it will use the default eWay test API credentials. Also, please note that cart total needs to be a whole number (e.g. 10.00) in order to generate a successful transaction, otherwise the transaction will fail." +msgstr "Tenga en cuenta que cuando realice pruebas en el modo sandbox, utilizará las credenciales de API de prueba eWay predeterminadas. Además, tenga en cuenta que el total del carrito debe ser un número entero (por ejemplo, 10.00) para generar una transacción exitosa, de lo contrario la transacción fallará." + +#: includes/common/payment-gateways/eway.php:267 +msgid "You will be redirected to https://www.eway.com.au to finalize your payment." +msgstr "Será redirigido a https://www.eway.com.au para finalizar su pago." + +#: includes/common/payment-gateways/class-mp-gateway-api.php:380 +msgid "You have chosen to checkout using %s. Please confirm your order details and click \"Submit Order\" when finished." +msgstr "Has elegido hacer el pago usando%s. Por favor, confirme los detalles de su pedido y haga clic en \"Enviar pedido\" cuando haya terminado." + +#: includes/common/payment-gateways/class-mp-gateway-api.php:272 +#: includes/common/payment-gateways/paymill.php:131 +#: includes/common/payment-gateways/stripe.php:231 +msgid "Security Code " +msgstr "Código de seguridad" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Enter in MM/YYYY or MM/YY format" +msgstr "Entrar en formato MM/YYYY or MM/YY " + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Expiration" +msgstr "Vencimiento" + +#: includes/common/payment-gateways/authorizenet-aim.php:321 +msgid "Delim Data" +msgstr "Datos delimitados" + +#: includes/common/payment-gateways/authorizenet-aim.php:307 +#: includes/common/payment-gateways/paypal-payflow.php:456 +msgid "This text will appear as the footer of the email receipt sent to the customer." +msgstr "Este texto aparecerá como pie de página del recibo de correo electrónico enviado al cliente." + +#: includes/common/payment-gateways/authorizenet-aim.php:287 +#: includes/common/payment-gateways/paypal-payflow.php:440 +msgid "Email Customer (on success)" +msgstr "Cliente de correo electrónico (en caso de éxito)" + +#: includes/common/payment-gateways/authorizenet-aim.php:278 +msgid "Authorize.net default is \",\". Otherwise, get this from your credit card processor. If the transactions are not going through, this character is most likely wrong." +msgstr "Authorize.net por defecto es \",\". De lo contrario, obtenga esto de su procesador de tarjeta de crédito. Si las transacciones no se llevan a cabo, es probable que este personaje esté equivocado." + +#: includes/common/payment-gateways/authorizenet-aim.php:277 +msgid "Delimeter Character" +msgstr "Carácter delimitador" + +#: includes/common/payment-gateways/authorizenet-aim.php:193 +msgid "Held For Review" +msgstr "En espera de revisión" + +#: includes/common/payment-gateways/_ideal.php:310 +#: includes/common/payment-gateways/payfast.php:314 +msgid "Test" +msgstr "Prueba" + +#: includes/common/payment-gateways/_ideal.php:300 +#: includes/common/payment-gateways/pin.php:170 +#: includes/common/payment-gateways/stripe.php:272 +msgid "Secret Key" +msgstr "Llave secreta" + +#: includes/common/payment-gateways/_ideal.php:283 +msgid "Select Your Bank" +msgstr "Seleccione su banco" + +#: includes/common/payment-gateways/_ideal.php:97 +msgid "Your payment will be processed by the iDEAL network" +msgstr "Su pago será procesado por la red iDEAL." + +#: includes/common/payment-gateways/_cubepoints.php:208 +msgid "These are the CubePoints to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "Estos son los CubePoints que se muestran en la pantalla de confirmación del pedido. TOTAL será reemplazado con el total del pedido." + +#: includes/common/payment-gateways/_cubepoints.php:203 +msgid "These are the CubePoints instructions to display on the payments screen." +msgstr "Estas son las instrucciones de CubePoints para mostrar en la pantalla de pagos." + +#: includes/common/payment-gateways/_bitpay.php:266 +msgid "If enabled, all API calls will be made to https://test.bitpay.com." +msgstr "Si está habilitado, todas las llamadas a la API se harán a https://test.bitpay.com." + +#: includes/common/payment-gateways/_bitpay.php:263 +msgid "Use Test Mode?" +msgstr "¿Usar el modo de prueba?" + +#: includes/common/payment-gateways/_bitpay.php:259 +msgid "If checked, response fron bitpay will be stored in log file, keep it disabled unless required." +msgstr "Si se marca, la respuesta de bitpay se almacenará en el archivo de registro, manténgala desactivada a menos que sea necesario." + +#: includes/common/payment-gateways/_bitpay.php:256 +msgid "Enable Debug Log" +msgstr "Habilitar registro de depuración" + +#: includes/common/payment-gateways/_bitpay.php:249 +msgid "Full Notifications" +msgstr "Notificaciones completas" + +#: includes/common/payment-gateways/_bitpay.php:231 +#: includes/common/payment-gateways/eway31.php:499 +#: includes/common/payment-gateways/eway31.php:526 +#: includes/common/payment-gateways/mollie.php:83 +#: includes/common/shipping-modules/mp-fedex.php:269 +msgid "API Key" +msgstr "Clave API" + +#: includes/common/payment-gateways/_bitpay.php:222 +msgid "You can now accept a payment from any country on Earth, with no risk of fraud. To use Bitpay, you need to signup on Bitpay. \\n After completing the signup process, you can get api keys at Bitpay API key. You can read more about Bitpay at Bitpay API. \\n Bitpay requires SSL(https) for payment notifications to work." +msgstr "Ahora puede aceptar un pago de cualquier país de la Tierra, sin riesgo de fraude. Para usar Bitpay, necesitas registrarte en Bitpay. \\n Después de completar el proceso de registro, puede obtener las claves de api en Bitpay API key. Puedes leer más sobre Bitpay en Bitpay API. \\n Bitpay requiere SSL (https) para que funcionen las notificaciones de pago." + +#: includes/common/payment-gateways/_bitpay.php:61 +msgid "You will be redirected to bitpay.com, for bitcoin payment. It is completely safe." +msgstr "Serás redirigido a bitpay.com\"notranslate\">, para el pago de bitcoins. Es completamente seguro." + +#: includes/common/payment-gateways/2checkout.php:346 +msgid "You must login to the 2Checkout vendor dashboard to obtain the seller ID and secret word. Instructions »" +msgstr "Debe iniciar sesión en el panel del proveedor de 2Checkout para obtener el ID de vendedor y la palabra secreta. Instrucciones »" + +#: includes/common/payment-gateways/2checkout.php:345 +#: includes/common/payment-gateways/authorizenet-aim.php:239 +#: includes/common/payment-gateways/paymill.php:168 +#: includes/common/payment-gateways/paypal-express.php:704 +#: includes/common/payment-gateways/simplify.php:80 +#: includes/common/payment-gateways/stripe.php:265 +#: includes/common/payment-gateways/wepay.php:158 +msgid "API Credentials" +msgstr "Credenciales API" + +#: includes/common/payment-gateways/2checkout.php:325 +#: includes/common/payment-gateways/_bitpay.php:220 +#: includes/common/payment-gateways/_cubepoints.php:185 +#: includes/common/payment-gateways/_ideal.php:268 +#: includes/common/payment-gateways/_payway.php:255 +#: includes/common/payment-gateways/authorizenet-aim.php:219 +#: includes/common/payment-gateways/eway.php:352 +#: includes/common/payment-gateways/eway31.php:460 +#: includes/common/payment-gateways/free_orders.php:147 +#: includes/common/payment-gateways/manual-payments.php:126 +#: includes/common/payment-gateways/mijireh.php:287 +#: includes/common/payment-gateways/mollie.php:71 +#: includes/common/payment-gateways/paymill.php:149 +#: includes/common/payment-gateways/paypal-chained-payments.php:344 +#: includes/common/payment-gateways/paypal-payflow.php:376 +#: includes/common/payment-gateways/pin.php:145 +#: includes/common/payment-gateways/simplify.php:69 +#: includes/common/payment-gateways/skrill.php:121 +#: includes/common/payment-gateways/stripe.php:249 +#: includes/common/payment-gateways/wepay.php:119 +#: includes/common/shipping-modules/mp-fedex.php:243 +#: includes/common/shipping-modules/mp-flat-rate.php:63 +#: includes/common/shipping-modules/mp-pickup.php:140 +#: includes/common/shipping-modules/mp-table-rate.php:94 +#: includes/common/shipping-modules/mp-ups.php:122 +#: includes/common/shipping-modules/mp-usps.php:167 +#: includes/common/shipping-modules/mp-weight-rate.php:110 +msgid "%s Settings" +msgstr "%s Ajustes" + +#: includes/common/payment-gateways/2checkout.php:136 +msgid "You will be redirected to the 2Checkout site to finalize your payment." +msgstr "Será redirigido al sitio de 2Checkout para finalizar su pago." + +#: includes/common/helpers.php:169 includes/public/class-mp-checkout.php:1277 +msgid "Billing" +msgstr "Facturación" + +#: includes/common/helpers.php:144 +msgid "FREE" +msgstr "GRATIS" + +#: includes/common/helpers.php:134 +msgid "Coupons:" +msgstr "Cupones:" + +#: includes/common/helpers.php:95 +msgid "Qty" +msgstr "Cantidad" + +#: includes/common/helpers.php:94 +msgid "Sku" +msgstr "Sku" + +#: includes/common/data.php:59 +msgid "Zip Code" +msgstr "Código postal" + +#: includes/common/class-mp-taxes.php:336 +msgid "Standard Table" +msgstr "Mesa estandar" + +#: includes/common/class-mp-product.php:2698 +msgid "Tweet" +msgstr "Tweet" + +#: includes/common/class-mp-product.php:2321 +msgid "Notification Preferences: %s" +msgstr "Preferencias de notificación: %s" + +#: includes/common/class-mp-product.php:2320 +msgid "Edit Product: %s" +msgstr "Editar producto: %s" + +#: includes/common/class-mp-product.php:2318 +msgid "Link: %s

    " +msgstr "Enlazar: %s

    " + +#: includes/common/class-mp-product.php:2317 +msgid "Current Inventory: %s" +msgstr "Inventario actual: %s" + +#: includes/common/class-mp-product.php:2316 +msgid "Product: %s" +msgstr "Producto: %s" + +#: includes/common/class-mp-product.php:2314 +msgid "This message is being sent to notify you of low stock of a product in your online store according to your preferences.

    " +msgstr "Su mensaje se está enviando para notificarle el bajo stock de un producto en su tienda en línea de acuerdo con sus preferencias.

    " + +#: includes/common/class-mp-product.php:1817 +msgid "" +msgstr "" + +#: includes/common/class-mp-product.php:1427 +#: includes/common/class-mp-product.php:1430 +msgid "(tax incl.)" +msgstr "(impuestos incluidos)" + +#: includes/common/class-mp-product.php:1422 +#: includes/common/class-mp-product.php:1425 +msgid "(tax excl.)" +msgstr "(impuestos excluidos)" + +#: includes/common/class-mp-product.php:1300 +#: includes/common/class-mp-product.php:1315 +msgid "%s each" +msgstr "%s cada uno" + +#: includes/common/class-mp-product.php:988 +msgid "Choose Options" +msgstr "Elegir opciones" + +#: includes/common/class-mp-product.php:526 +msgid "Choose a %s" +msgstr "Escoge un %s" + +#: includes/common/class-mp-product.php:284 +#: includes/common/class-mp-product.php:292 +#: includes/common/class-mp-product.php:615 +msgid "We're sorry, we only have %d of this item in stock right now." +msgstr "Lo sentimos solo tenemos %d de este artículo en stock ahora mismo." + +#: includes/common/class-mp-order.php:1456 +msgid "Shipped: Track Shipment" +msgstr "Enviado: Seguimiento del envio" + +#: includes/common/class-mp-order.php:1049 +msgid "Order Received" +msgstr "Orden recibida" + +#: includes/common/class-mp-order.php:1014 +msgid "In Process" +msgstr "En proceso" + +#: includes/common/class-mp-order.php:969 +msgid "Order #" +msgstr "Orden #" + +#: includes/common/class-mp-order.php:866 +msgid "Copy billing address to shipping address" +msgstr "Copie la dirección de facturación a la dirección de envío" + +#: includes/common/class-mp-order.php:822 +#: includes/public/class-mp-checkout.php:1314 +msgid "Special Instructions" +msgstr "Instrucciones especiales" + +#: includes/common/class-mp-order.php:817 +#: includes/common/payment-gateways/stripe.php:335 +msgid "Email" +msgstr "Email" + +#: includes/common/class-mp-order.php:813 +#: includes/common/payment-gateways/stripe.php:341 +#: includes/public/class-mp-checkout.php:416 +msgid "Phone" +msgstr "Teléfono" + +#: includes/common/class-mp-order.php:791 +#: includes/common/payment-gateways/stripe.php:337 +msgid "State" +msgstr "Estado" + +#: includes/common/class-mp-order.php:776 +msgid "Address 1" +msgstr "Dirección 1" + +#: includes/common/class-mp-order.php:766 +msgid "Last Name" +msgstr "Apellido" + +#: includes/common/class-mp-order.php:762 +msgid "First Name" +msgstr "Nombre " + +#: includes/common/class-mp-installer.php:677 +msgid "MarketPress requires a database update to continue working correctly. Go to update page" +msgstr "MarketPress requiere una actualización de la base de datos para continuar trabajando correctamente. Ir a la página de actualización " + +#: includes/common/class-mp-installer.php:657 +msgid "MarketPress performed a quick automatic update successfully!" +msgstr "MarketPress realizó una rápida actualización automática con éxito!" + +#: includes/common/class-mp-installer.php:653 +msgid "Perform Update" +msgstr "Realizar actualización" + +#: includes/common/class-mp-installer.php:647 +msgid "Please update each subsite in your WordPress network where you have older version of the MarketPress plugin." +msgstr "Actualice cada subsitio en su red de WordPress donde tenga una versión anterior del complemento MarketPress." + +#: includes/common/class-mp-installer.php:641 +msgid "Depending on the amount of products you have, this update could take quite some time. Please keep this window open while the update completes. If you have products with multiple variations, the progress bar may move slower, please don't exit the window." +msgstr "Dependiendo de la cantidad de productos que tenga, esta actualización podría llevar bastante tiempo. Por favor, mantenga esta ventana abierta mientras se completa la actualización. Si tiene productos con múltiples variaciones, la barra de progreso puede moverse más lentamente, no salga de la ventana." + +#: includes/common/class-mp-installer.php:632 +msgid "Product Metadata" +msgstr "Metadatos del producto" + +#: includes/common/class-mp-installer.php:601 +msgid "MarketPress requires a database update to continue working correctly.
    Below you will find a list of items that require your attention." +msgstr "MarketPress requiere una actualización de la base de datos para continuar trabajando correctamente.
    A continuación encontrará una lista de elementos que requieren su atención." + +#: includes/common/class-mp-installer.php:600 +msgid "Update MarketPress Data" +msgstr "Actualizar datos de MarketPress" + +#: includes/common/class-mp-installer.php:530 +msgid "Update Data" +msgstr "Actualizar datos" + +#: includes/common/class-mp-installer.php:67 +msgid "Complete!" +msgstr "¡Completo!" + +#: includes/common/class-mp-installer.php:66 +msgid "Upgrading Database...Please Wait..." +msgstr "Actualización de la base de datos ... Por favor, espere ..." + +#: includes/common/class-mp-installer.php:64 +msgid "An error occurred while updating. Please refresh this page and try again." +msgstr "Se ha producido un error al actualizar. Por favor, actualice esta página y vuelva a intentarlo." + +#: includes/common/class-mp-cart.php:2447 +msgid "Some items in your cart have fallen below the quantity you currently have in your cart. We have adjusted the quantity in your cart automatically." +msgstr "Algunos artículos en su carrito han caído por debajo de la cantidad que tiene actualmente en su carrito. Hemos ajustado la cantidad en su carrito automáticamente." + +#: includes/common/class-mp-cart.php:2443 +msgid "Some items in your cart are no longer available. We have removed these items from your cart automatically." +msgstr "Algunos artículos en su carrito ya no están disponibles. Hemos eliminado estos artículos de su carrito automáticamente." + +#: includes/common/class-mp-cart.php:1566 +msgid "item" +msgstr "artículo" + +#: includes/common/class-mp-cart.php:1563 +#: includes/common/class-mp-cart.php:1568 +msgid "items" +msgstr "artículos" + +#: includes/common/class-mp-cart.php:1363 +msgid "Items/Products added to Cart will show here." +msgstr "Los artículos / productos añadidos al carrito se mostrarán aquí." + +#: includes/common/class-mp-cart.php:1362 +msgid "Your shopping cart is empty." +msgstr "Su carrito de compra está vacío." + +#: includes/common/class-mp-cart.php:1357 +msgid "View Cart" +msgstr "Ver carrito" + +#: includes/common/class-mp-cart.php:1241 +#: includes/common/class-mp-cart.php:1298 +#: includes/public/class-mp-short-codes.php:159 +msgid "Adding..." +msgstr "Añadiendo ..." + +#: includes/common/class-mp-cart.php:1033 +msgid "Continue Shopping?" +msgstr "¿Seguir comprando?" + +#: includes/common/class-mp-cart.php:961 +msgid "Secure Checkout
    Shopping is always safe and secure." +msgstr "Pago Seguro
    Ir de compras siempre es seguro." + +#: includes/common/class-mp-cart.php:959 +msgid "You are about to submit your order!
    Please review your order details before continuing. You will be charged immediately upon clicking \"Submit Order\"." +msgstr "Usted está a punto de enviar su pedido!
    Por favor revise los detalles de su pedido antes de continuar. Se le cobrará inmediatamente después de hacer clic en \"Enviar pedido\"." + +#: includes/common/class-mp-cart.php:956 +msgid "Continue »" +msgstr "Continue »" + +#: includes/common/class-mp-cart.php:955 +msgid "Submit Order" +msgstr "Enviar Orden " + +#: includes/common/class-mp-cart.php:818 +msgid "There are no items in your cart - go add some !" +msgstr "No hay artículos en tu carrito - ¡go add some !" + +#: includes/common/class-mp-cart.php:816 +msgid "The cart is disabled." +msgstr "El carrito está deshabilitado." + +#: includes/common/class-mp-cart.php:735 +msgid "Estimated %s" +msgstr "Estimado %s" + +#: includes/common/class-mp-cart.php:717 +msgid "Estimated Shipping" +msgstr "Envío estimado" + +#: includes/common/class-mp-cart.php:697 +msgid "Product Total" +msgstr "Total del producto" + +#: includes/common/class-mp-cart.php:670 includes/common/class-mp-cart.php:672 +msgid "Estimated Total (%s, %s)" +msgstr "Total Estimado (%s, %s)" + +#: includes/common/class-mp-cart.php:668 +msgid "Estimated Total (%s)" +msgstr "Total Estimado (%s)" + +#: includes/common/class-mp-cart.php:666 includes/common/class-mp-cart.php:752 +msgid "Estimated Total" +msgstr "Total Estimado" + +#: includes/admin/widgets/product-list.php:247 +msgid "Show Thumbnail Placeholder image (if image is not set)" +msgstr "Mostrar imagen de marcador de posición en miniatura (si la imagen no está configurada)" + +#: includes/admin/widgets/cart.php:73 +msgid "Display product price" +msgstr "Mostrar precio del producto" + +#: includes/admin/widgets/cart.php:71 +msgid "Display product quantity" +msgstr "Mostrar cantidad de producto" + +#: includes/admin/widgets/cart.php:69 +msgid "Display product image" +msgstr "Mostrar imagen del producto" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:93 +msgid "General Shipping Settings" +msgstr "Ajustes generales de envío" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:773 +msgid "If you are having conflicts with the lightbox library from your theme or another plugin you should uncheck this." +msgstr "Si tiene conflictos con la biblioteca de lightbox de su tema u otro complemento, debe desactivar esta opción." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:772 +msgid "Use Built-In Lightbox for Images?" +msgstr "¿Usar Lightbox incorporado para imágenes?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:762 +msgid "Disable Large Image Display?" +msgstr "Deshabilitar la visualización de imágenes grandes?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:688 +msgid "Show Product Image?" +msgstr "¿Mostrar imagen del producto?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:682 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:684 +msgid "Show Tags List?" +msgstr "¿Mostrar la lista de etiquetas?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:676 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:678 +msgid "Show Categories List?" +msgstr "¿Mostrar lista de categorías?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:671 +msgid "If enabled, description excerpt will be added above Add to cart." +msgstr "Si está habilitado, el extracto de descripción se agregará arriba Añadir al carrito." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:669 +msgid "Show Excerpt?" +msgstr "Mostrar extracto?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:665 +msgid "If enabled, users will be able to choose how many of the product they want to purchase before adding to their cart. If not checked, quantity could be change later on the cart page." +msgstr "Si está habilitado, los usuarios podrán elegir la cantidad del producto que desean comprar antes de agregarlos a su carrito. Si no se marca, la cantidad se puede cambiar más adelante en la página del carrito." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:663 +msgid "Show Quantity Field?" +msgstr "Mostrar campo de cantidad?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:649 +msgid "Settings related to the display of individual product pages." +msgstr "Ajustes relacionados con la visualización de páginas de productos individuales." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:648 +msgid "Product Page Settings" +msgstr "Configuración de la página del producto" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:605 +msgid "Related Products Layout" +msgstr "Diseño de productos relacionados" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:573 +msgid "Show Related Products?" +msgstr "¿Mostrar productos relacionados?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:568 +msgid "Related Product Settings" +msgstr "Configuraciones de productos relacionados" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:549 +msgid "Order Status Entries Per Page" +msgstr "Configuraciones de productos relacionados" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:510 +msgid "Sort Products By" +msgstr "Ordenar productos por" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:497 +msgid "Products Per Page" +msgstr "Productos por pagina " + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:492 +msgid "Paginate Products?" +msgstr "¿Paginar productos?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:478 +msgid "Excerpts Length" +msgstr "Longitud de Extractos " + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:473 +msgid "Show Excerpts?" +msgstr "¿Mostrar extractos?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:450 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:746 +msgid "Image Alignment" +msgstr "Alineación de imagen" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:412 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:708 +msgid "Custom Image Size" +msgstr "Tamaño de imagen personalizada" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:401 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:697 +msgid "Large - %s" +msgstr "Grande - %s" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:400 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:696 +msgid "Medium - %s" +msgstr "Medio - %s" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:399 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:695 +msgid "Thumbnail - %s" +msgstr "Miniatura - %s" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:397 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:693 +msgid "Image Size" +msgstr "Tamaño de la imagen" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:386 +msgid "Select default placeholder image thumbnail when product image is not available (if empty, plugin's built-in image will be used)" +msgstr "Seleccione la miniatura de la imagen del marcador de posición predeterminado cuando la imagen del producto no esté disponible (si está vacía, se usará la imagen incorporada del complemento)" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:380 +msgid "Show default product placeholder thumbnail when product image is not available?" +msgstr "¿Mostrar la miniatura del marcador de posición del producto predeterminado cuando la imagen del producto no está disponible?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:374 +msgid "Show Product Thumbnail?" +msgstr "¿Mostrar miniatura de producto?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:369 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:658 +msgid "Redirect to cart page for immediate checkout" +msgstr "Redirigir a la página del carrito para el pago inmediato" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:368 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:657 +msgid "Stay on current product page" +msgstr "Permanecer en la página del producto actual" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:366 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:655 +msgid "MarketPress supports two \"flows\" for adding products to the shopping cart. After adding a product to their cart, two things can happen:" +msgstr "MarketPress admite dos \"flujos\" para agregar productos al carrito de compras. Después de agregar un producto a su carrito, pueden suceder dos cosas:" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:365 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:654 +msgid "Add To Cart Action" +msgstr "Añadir a Cart Action" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:355 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:628 +msgid "Four" +msgstr "Cuatro" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:354 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:627 +msgid "Three" +msgstr "Tres" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:353 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:626 +msgid "Two" +msgstr "Dos" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:625 +msgid "One" +msgstr "Uno" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:349 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:622 +msgid "Set the number of products that show up in a grid row to best fit your theme" +msgstr "Establezca la cantidad de productos que aparecen en una fila de la cuadrícula para adaptarse mejor a su tema" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:348 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:621 +msgid "How many products per row?" +msgstr "¿Cuántos productos por fila?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:342 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:609 +msgid "Display as grid" +msgstr "Mostrar como cuadrícula" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:341 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:608 +msgid "Display as list" +msgstr "Mostrar como lista" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:339 +msgid "Product Layout" +msgstr "Diseño del producto" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:334 +msgid "Settings related to the display of product lists/grids." +msgstr "Ajustes relacionados con la visualización de listas de productos / cuadriculas. " + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:333 +msgid "Product List/Grid Settings" +msgstr "Lista de productos / Configuración de cuadrícula" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:314 +msgid "Show Twitter Button" +msgstr "Mostrar botón de Twitter" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:309 +msgid "Twitter" +msgstr "Twitter" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:303 +msgid "Show Share Button" +msgstr "Mostrar botón de compartir" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:297 +msgid "Recommend" +msgstr "Recomendado" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:296 +msgid "Like" +msgstr "Me gusta" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:294 +msgid "Action" +msgstr "Acción" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:283 +msgid "Show Facebook Like Button" +msgstr "Mostrar el botón Me gusta de Facebook" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:278 +msgid "Facebook" +msgstr "Facebook" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:257 +msgid "Show \"Pin It\" Button" +msgstr "Mostrar el botón \"Pin It\"" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:252 +msgid "Pinterest" +msgstr "Pinterest" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:246 +msgid "Social Settings" +msgstr "Ajustes sociales" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:193 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:202 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:211 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:220 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:229 +#: includes/multisite/class-mp-admin-multisite.php:532 +#: includes/multisite/class-mp-admin-multisite.php:541 +#: includes/multisite/class-mp-admin-multisite.php:550 +msgid "Choose a Page" +msgstr "Elige una página" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:191 +msgid "This page will be used as the root for your store." +msgstr "Esta página se utilizará como la raíz de su tienda." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:168 +#: includes/multisite/class-mp-admin-multisite.php:586 +msgid "Create Page" +msgstr "Crear página" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "uncropped" +msgstr "sin cortar" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "cropped" +msgstr "cortado" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:87 +#: includes/multisite/class-mp-admin-multisite.php:121 +#: includes/multisite/class-mp-admin-multisite.php:620 +msgid "An error occurred while creating the store page. Please try again." +msgstr "Se produjo un error al crear la página de tienda. Inténtalo de nuevo." + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:66 +msgid "Choose the gateway(s) that you would like to be available for checkout." +msgstr "Choose the gateway(s) that you would like to be available for checkout." + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:65 +msgid "Enabled Gateways" +msgstr "Puertas de enlace habilitadas" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:78 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:146 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:179 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:213 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:274 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:307 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:341 +msgid "Text" +msgstr "Texto" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:71 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:139 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:172 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:206 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:267 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:300 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:334 +msgid "Subject" +msgstr "Tema" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:52 +msgid "Notification Email" +msgstr "Email de notificación" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:510 +msgid "Enabling this option will display label `excl. tax` or `incl. tax` after price" +msgstr "Al habilitar esta opción se mostrará la etiqueta `excl. impuesto o incl. impuesto después del precio" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:509 +msgid "Display tax label?" +msgstr "Mostrar etiqueta de impuestos?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:504 +msgid "Enabling this option will show Price + Tax, eg. if your price is 100 and your tax 20, your price will be 120" +msgstr "Al habilitar esta opción se mostrará Precio + Impuesto, por ej. Si su precio es de 100 y su impuesto de 20, su precio será de 120." + +#: includes/admin/store-settings/class-mp-store-settings-general.php:416 +#: includes/multisite/class-mp-admin-multisite.php:234 +msgid "Price Format" +msgstr "Formato de precio" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:366 +msgid "Enabling this field will display a textbox on the shipping checkout page for users to enter special instructions for their order. Useful for product personalization, etc." +msgstr "Al habilitar este campo se mostrará un cuadro de texto en la página de envío para que los usuarios ingresen instrucciones especiales para su pedido. Útil para la personalización de productos, etc." + +#: includes/admin/store-settings/class-mp-store-settings-general.php:365 +msgid "Show Special Instructions Field?" +msgstr "Mostrar el campo de instrucciones especiales?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:360 +msgid "Universal" +msgstr "Universal" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:359 +msgid "Old" +msgstr "Viejo" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1167 +#: includes/admin/store-settings/class-mp-store-settings-general.php:358 +msgid "New" +msgstr "Nuevo" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:353 +msgid "If you already use Google Analytics for your website, you can track detailed ecommerce information by enabling this setting. Choose whether you are using the new asynchronous or old tracking code. Before Google Analytics can report ecommerce activity for your website, you must enable ecommerce tracking on the profile settings page for your website. Also keep in mind that some gateways do not reliably show the receipt page, so tracking may not be accurate in those cases. It is recommended to use the PayPal gateway for the most accurate data. More information »" +msgstr "Si ya usa Google Analytics para su sitio web, puede hacer un seguimiento de la información detallada de comercio electrónico habilitando esta configuración. Elija si está utilizando el nuevo código de seguimiento asíncrono o antiguo. Antes de que Google Analytics pueda informar sobre la actividad de comercio electrónico de su sitio web, debe habilitar el seguimiento de comercio electrónico en la página de configuración de perfil de su sitio web. También tenga en cuenta que algunas puertas de enlace no muestran de manera confiable la página de recibos, por lo que el seguimiento puede no ser preciso en esos casos. Se recomienda utilizar la pasarela de PayPal para obtener los datos más precisos. More information »" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:347 +msgid "Do you want to display the product price on floating Mini Cart." +msgstr "¿Desea mostrar el precio del producto en Mini Carro flotante?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:346 +msgid "Show product price on Mini Cart?" +msgstr "¿Mostrar el precio del producto en Mini Carro?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:340 +msgid "Do you want to display the product quantity on floating Mini Cart." +msgstr "¿Desea mostrar la cantidad de producto en Mini Carro flotante?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:339 +msgid "Show product quantity on Mini Cart?" +msgstr "¿Mostrar cantidad de producto en Mini Cart?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:333 +msgid "Do you want to display the product image on floating Mini Cart." +msgstr "¿Desea mostrar la imagen del producto en Mini Carro flotante?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:332 +msgid "Show product image on Mini Cart?" +msgstr "¿Mostrar la imagen del producto en Mini Cart?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:327 +msgid "This option hide floating Mini Cart in top right corner." +msgstr "Esta opción oculta el Mini Carro flotante en la esquina superior derecha." + +#: includes/admin/store-settings/class-mp-store-settings-general.php:326 +msgid "Disable Mini Cart?" +msgstr "Desactivar Mini Carro?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:316 +msgid "If unchecked your Orders admin page will be hidden" +msgstr "Si no está marcada, se ocultará la página de administración de pedidos." + +#: includes/admin/store-settings/class-mp-store-settings-general.php:315 +msgid "Show admin Orders page?" +msgstr "¿Mostrar la página de pedidos del administrador?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:309 +msgid "Disable Cart?" +msgstr "Desactivar carrito?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:303 +msgid "Force Login?" +msgstr "Forzar inicio de sesión?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:297 +msgid "Hide Out of Stock Products?" +msgstr "Ocultar productos fuera de stock?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:555 +msgid "This will prevent multiples of the same downloadable product form being added to the cart." +msgstr "Esto evitará que se agreguen al carrito múltiplos de la misma forma de producto descargable." + +#: includes/admin/store-settings/class-mp-store-settings-general.php:554 +msgid "Limit Digital Products Per-order?" +msgstr "¿Limitar productos digitales por pedido?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:268 +msgid "If you're having issues downloading large files and have worked with your hosting provider to increase your memory limits, try enabling this - just keep in mind, it's not as secure!" +msgstr "Si tiene problemas para descargar archivos de gran tamaño y ha trabajado con su proveedor de alojamiento para aumentar sus límites de memoria, intente habilitar esto. ¡Tenga en cuenta que no es tan seguro!..." + +#: includes/admin/store-settings/class-mp-store-settings-general.php:267 +msgid "Use Alternative Download Method?" +msgstr "¿Usar el método alternativo de descarga?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:252 +msgid "Download Settings" +msgstr "Ajustes de Descarga" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:230 +msgid "Change product post type" +msgstr "Cambiar el tipo de publicación del producto" + +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:51 +msgid "%s Capabilities" +msgstr "%s Capacidades" + +#: includes/admin/store-settings/class-mp-store-settings-addons.php:47 +msgid "Store Settings: Add Ons: %s" +msgstr "Configuraciones de la tienda: Complementos: %s" + +#: includes/admin/class-mp-store-settings-admin.php:254 +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:56 +msgid "Capabilities" +msgstr "Capacidades" + +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Edit Product Attribute %s" +msgstr "Editar atributo del producto %s" + +#: includes/admin/class-mp-store-settings-admin.php:246 +msgid "Exporters" +msgstr "Exportadores" + +#: includes/admin/class-mp-store-settings-admin.php:238 +msgid "Short Codes" +msgstr "Códigos cortos" + +#: includes/admin/class-mp-store-settings-admin.php:207 +msgid "An appropriate message for key \"%s\" could not be found." +msgstr "Un mensaje apropiado para la clave \"%s\" no pudo ser encontrado." + +#: includes/admin/class-mp-store-settings-admin.php:204 +msgid "Product attribute updated successfully." +msgstr "Atributo del producto actualizado con éxito." + +#: includes/admin/class-mp-store-settings-admin.php:203 +msgid "Product attribute added successfully." +msgstr "Atributo del producto agregado exitosamente." + +#: includes/admin/class-mp-store-settings-admin.php:123 +msgid "Add Ons" +msgstr "Complementos" + +#: includes/admin/class-mp-store-settings-admin.php:123 +#: includes/admin/store-settings/class-mp-store-settings-addons.php:121 +msgid "Store Settings: Add Ons" +msgstr "Configuraciones de la tienda: Complementos" + +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "Store Settings: Capabilities" +msgstr "Configuración de la tienda: Capacidades" + +#: includes/admin/class-mp-store-settings-admin.php:118 +msgid "Store Settings: Product Tags" +msgstr "Configuración de la tienda: Etiquetas del producto" + +#: includes/admin/class-mp-store-settings-admin.php:117 +msgid "Store Settings: Product Categories" +msgstr "Configuración de la tienda: Categorías de productos" + +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Store Settings: Product Attributes" +msgstr "Configuración de la tienda: Atributos del producto" + +#: includes/admin/class-mp-store-settings-admin.php:115 +msgid "Store Settings: Payments" +msgstr "Configuraciones de la tienda: Pagos" + +#: includes/admin/class-mp-store-settings-admin.php:114 +msgid "Store Settings: Shipping" +msgstr "Configuraciones de la tienda: Envío" + +#: includes/admin/class-mp-store-settings-admin.php:113 +#: includes/admin/class-mp-store-settings-admin.php:226 +msgid "Notifications" +msgstr "Notificaciones" + +#: includes/admin/class-mp-store-settings-admin.php:113 +msgid "Store Settings: Notifications" +msgstr "Configuraciones de la tienda: Notificaciones" + +#: includes/admin/class-mp-store-settings-admin.php:112 +msgid "Store Settings: Presentation" +msgstr "Configuraciones de la tienda: Presentación" + +#: includes/admin/class-mp-store-settings-admin.php:111 +msgid "Store Settings: General" +msgstr "Configuración de la tienda: General" + +#: includes/admin/class-mp-shortcode-builder.php:1489 +msgid "Select a Product" +msgstr "Selecciona un producto" + +#: includes/admin/class-mp-shortcode-builder.php:1447 +msgid "Reset to Defaults" +msgstr "Restablecer los valores predeterminados" + +#: includes/admin/class-mp-shortcode-builder.php:1446 +msgid "Insert Short Code" +msgstr "Insertar código corto" + +#: includes/admin/class-mp-shortcode-builder.php:1202 +#: includes/admin/class-mp-shortcode-builder.php:1227 +#: includes/admin/class-mp-shortcode-builder.php:1252 +msgid "The text to show in the link." +msgstr "El texto a mostrar en el enlace." + +#: includes/admin/class-mp-shortcode-builder.php:1196 +#: includes/admin/class-mp-shortcode-builder.php:1221 +#: includes/admin/class-mp-shortcode-builder.php:1246 +msgid "Whether to return a clickable link or url." +msgstr "Ya sea para devolver un enlace pulsable o url." + +#: includes/admin/class-mp-shortcode-builder.php:1177 +msgid "Whether to display the cart only on store pages or not." +msgstr "Ya sea para mostrar el carrito solo en las páginas de la tienda o no." + +#: includes/admin/class-mp-shortcode-builder.php:1171 +msgid "Whether to show or hide the product price." +msgstr "Ya sea para mostrar u ocultar el precio del producto." + +#: includes/admin/class-mp-shortcode-builder.php:1165 +msgid "Whether to show or hide the product quantity." +msgstr "Ya sea para mostrar u ocultar la cantidad del producto." + +#: includes/admin/class-mp-shortcode-builder.php:1159 +msgid "Whether to show or hide the product image." +msgstr "Ya sea para mostrar u ocultar la imagen del producto." + +#: includes/admin/class-mp-shortcode-builder.php:1153 +msgid "The text displayed before the cart." +msgstr "El texto mostrado antes del carrito." + +#: includes/admin/class-mp-shortcode-builder.php:1147 +msgid "The title of the cart." +msgstr "El título del carrito." + +#: includes/admin/class-mp-shortcode-builder.php:1058 +#: includes/admin/class-mp-shortcode-builder.php:1121 +msgid "A label to prepend to the price." +msgstr "Una etiqueta para anteponer al precio." + +#: includes/admin/class-mp-shortcode-builder.php:1032 +#: includes/admin/class-mp-shortcode-builder.php:1127 +msgid "What context for display." +msgstr "Qué contexto para mostrar." + +#: includes/admin/class-mp-shortcode-builder.php:1004 +msgid "Set the alignment of the image." +msgstr "Establecer la alineación de la imagen." + +#: includes/admin/class-mp-shortcode-builder.php:998 +msgid "Set a custom pixel width/height. If omitted defaults to the size set by \"context\"." +msgstr "Establecer un ancho / altura de píxeles personalizados. Si se omite, se omite el tamaño establecido por \"contexto\"." + +#: includes/admin/class-mp-shortcode-builder.php:993 +msgid "Widget" +msgstr "Widget" + +#: includes/admin/class-mp-shortcode-builder.php:988 +msgid "What context for preset size options." +msgstr "Qué contexto para las opciones de tamaño preestablecido." + +#: includes/admin/class-mp-shortcode-builder.php:982 +#: includes/admin/class-mp-shortcode-builder.php:1026 +#: includes/admin/class-mp-shortcode-builder.php:1052 +#: includes/admin/class-mp-shortcode-builder.php:1077 +#: includes/admin/class-mp-shortcode-builder.php:1096 +#: includes/admin/class-mp-shortcode-builder.php:1115 +msgid "The ID of the product." +msgstr "La identificación del producto." + +#: includes/admin/class-mp-shortcode-builder.php:963 +msgid "Whether to display the product meta (e.g. price, buy button)." +msgstr "Ya sea para mostrar el meta del producto (por ejemplo, precio, botón de compra)." + +#: includes/admin/class-mp-shortcode-builder.php:738 +#: includes/admin/class-mp-shortcode-builder.php:905 +#: includes/admin/class-mp-shortcode-builder.php:958 +#: includes/admin/class-mp-shortcode-builder.php:992 +#: includes/admin/class-mp-shortcode-builder.php:1035 +#: includes/admin/class-mp-shortcode-builder.php:1130 +#: includes/admin/class-mp-shortcode-builder.php:1349 +msgid "List" +msgstr "Lista" + +#: includes/admin/class-mp-shortcode-builder.php:957 +#: includes/admin/class-mp-shortcode-builder.php:991 +#: includes/admin/class-mp-shortcode-builder.php:1034 +#: includes/admin/class-mp-shortcode-builder.php:1129 +msgid "Single" +msgstr "Sencillo" + +#: includes/admin/class-mp-shortcode-builder.php:953 +msgid "Whether and what context of image size to display." +msgstr "Si y qué contexto de tamaño de imagen mostrar." + +#: includes/admin/class-mp-shortcode-builder.php:948 +msgid "Full" +msgstr "Completo" + +#: includes/admin/class-mp-shortcode-builder.php:943 +msgid "Whether and what type of content to display." +msgstr "Si y qué tipo de contenido mostrar." + +#: includes/admin/class-mp-shortcode-builder.php:937 +msgid "Whether to display the product title." +msgstr "Ya sea para mostrar el título del producto." + +#: includes/admin/class-mp-shortcode-builder.php:931 +msgid "The ID of the product to display." +msgstr "El ID del producto a mostrar." + +#: includes/admin/class-mp-shortcode-builder.php:747 +#: includes/admin/class-mp-shortcode-builder.php:914 +msgid "Hide" +msgstr "Esconder" + +#: includes/admin/class-mp-shortcode-builder.php:746 +#: includes/admin/class-mp-shortcode-builder.php:913 +msgid "Show" +msgstr "Mostrar" + +#: includes/admin/class-mp-shortcode-builder.php:744 +#: includes/admin/class-mp-shortcode-builder.php:911 +msgid "Whether or not to show the product filters." +msgstr "Si mostrar o no los filtros del producto." + +#: includes/admin/class-mp-shortcode-builder.php:724 +#: includes/admin/class-mp-shortcode-builder.php:891 +#: includes/admin/class-mp-shortcode-builder.php:1335 +msgid "Limits list to a specific product tag." +msgstr "Limita la lista a una etiqueta de producto específica." + +#: includes/admin/class-mp-shortcode-builder.php:713 +#: includes/admin/class-mp-shortcode-builder.php:880 +#: includes/admin/class-mp-shortcode-builder.php:1324 +msgid "Limits list to a specific product category." +msgstr "Limita la lista a una categoría de producto específica." + +#: includes/admin/class-mp-shortcode-builder.php:706 +#: includes/admin/class-mp-shortcode-builder.php:873 +#: includes/admin/class-mp-shortcode-builder.php:1317 +msgid "Direction to order products by." +msgstr "Instrucciones para ordenar productos." + +#: includes/admin/class-mp-shortcode-builder.php:684 +#: includes/admin/class-mp-shortcode-builder.php:851 +#: includes/admin/class-mp-shortcode-builder.php:1295 +msgid "What field to order products by." +msgstr "Por qué campo debo ordenar los productos." + +#: includes/admin/class-mp-shortcode-builder.php:678 +#: includes/admin/class-mp-shortcode-builder.php:845 +#: includes/admin/class-mp-shortcode-builder.php:1283 +msgid "How many products to display in the product list if \"paginate\" is set to true." +msgstr "Si \"paginate\" se establece en verdadero." + +#: includes/admin/class-mp-shortcode-builder.php:672 +#: includes/admin/class-mp-shortcode-builder.php:839 +#: includes/admin/class-mp-shortcode-builder.php:1277 +msgid "The page number to display in the product list if \"paginate\" is set to true." +msgstr "El número de página que se mostrará en la lista de productos si \"paginate\" se establece en verdadero." + +#: includes/admin/class-mp-shortcode-builder.php:666 +#: includes/admin/class-mp-shortcode-builder.php:833 +#: includes/admin/class-mp-shortcode-builder.php:1271 +msgid "Whether to paginate the product list. This is useful to only show a subset." +msgstr "Ya sea para paginar la lista de productos. Esto es útil para mostrar solo un subconjunto." + +#: includes/admin/class-mp-shortcode-builder.php:808 +msgid "How many related items to show." +msgstr "Cuántos elementos relacionados mostrar." + +#: includes/admin/class-mp-shortcode-builder.php:790 +msgid "How to relate the products" +msgstr "Como relacionar los productos." + +#: includes/admin/class-mp-shortcode-builder.php:784 +msgid "The product to show related items for." +msgstr "El producto para mostrar artículos relacionados para." + +#: includes/admin/class-mp-shortcode-builder.php:765 +msgid "The maximum number of products to display" +msgstr "El número máximo de productos para mostrar" + +#: includes/admin/class-mp-shortcode-builder.php:647 +msgid "Comma separated list of tags (term_id) to include. For example, include=5,27 means tags that have the term_id 5 or 27 will be the only tags displayed. Defaults to include everything." +msgstr "Lista de etiquetas separadas por comas (term_id) para incluir.Por ejemplo, incluir = 5,27 significa etiquetas que tienen la term_id 5 o 27 Serán las únicas etiquetas mostradas. Por defecto incluye todo." + +#: includes/admin/class-mp-shortcode-builder.php:641 +msgid "Comma separated list of tags (term_id) to exclude. For example, exclude=5,27 means tags that have the term_id 5 or 27 will NOT be displayed. Defaults to exclude nothing." +msgstr "Lista de etiquetas separadas por comas (term_id) para excluir. Por ejemplo, exclude = 5,27 significa que las etiquetas que tienen el term_id 5 o 27 NO se mostrarán. Por defecto no excluye nada." + +#: includes/admin/class-mp-shortcode-builder.php:633 +#: includes/admin/class-mp-shortcode-builder.php:1420 +msgid "Sort order." +msgstr "Orden de clasificación." + +#: includes/admin/class-mp-shortcode-builder.php:629 +#: includes/admin/class-mp-shortcode-builder.php:1416 +msgid "Count" +msgstr "Cuenta" + +#: includes/admin/class-mp-shortcode-builder.php:626 +#: includes/admin/class-mp-shortcode-builder.php:1413 +msgid "Order of the tags." +msgstr "Orden de las etiquetas." + +#: includes/admin/class-mp-shortcode-builder.php:620 +msgid "The text/space between tags)" +msgstr "El texto / espacio entre etiquetas)" + +#: includes/admin/class-mp-shortcode-builder.php:616 +msgid "UL with a class of \"wp-tag-cloud\"" +msgstr "UL con una clase de \"wp-tag-cloud\"" + +#: includes/admin/class-mp-shortcode-builder.php:615 +msgid "separated by whitespace defined by \"separator\" parameter." +msgstr "separados por espacios en blanco definidos por el parámetro \"separador\"." + +#: includes/admin/class-mp-shortcode-builder.php:613 +msgid "Format of the cloud display." +msgstr "Formato de la pantalla en la nube." + +#: includes/admin/class-mp-shortcode-builder.php:607 +msgid "The number of actual tags to display in the cloud. (Use \"0\" to display all tags.)" +msgstr "El número de etiquetas reales para mostrar en la nube. (Use \"0\" para mostrar todas las etiquetas.)" + +#: includes/admin/class-mp-shortcode-builder.php:601 +msgid "Unit of measure as pertains to the smallest and largest values. This can be any CSS length value, e.g. pt, px, em, %." +msgstr "La unidad de medida pertenece a los valores más pequeños y más grandes. Este puede ser cualquier valor de longitud de CSS, por ejemplo, pt, px, em,%." + +#: includes/admin/class-mp-shortcode-builder.php:595 +msgid "The text size of the tag with the largest count value (units given by unit parameter)." +msgstr "El tamaño del texto de la etiqueta con el mayor valor de conteo (unidades dadas por parámetro de unidad)." + +#: includes/admin/class-mp-shortcode-builder.php:589 +msgid "The text size of the tag with the smallest count value (units given by unit parameter)." +msgstr "El tamaño del texto de la etiqueta con el valor de conteo más pequeño (unidades dadas por parámetro de unidad)." + +#: includes/admin/class-mp-shortcode-builder.php:570 +msgid "The \"tabindex\" attribute value for select element. " +msgstr "El valor del atributo \"tabindex\" para seleccionar el elemento." + +#: includes/admin/class-mp-shortcode-builder.php:564 +msgid "The \"name\" attribute value for select element. " +msgstr "El valor del atributo \"nombre\" para el elemento seleccionado." + +#: includes/admin/class-mp-shortcode-builder.php:558 +msgid "The \"id\" attribute value for select element. " +msgstr "El valor del atributo \"id\" para el elemento seleccionado." + +#: includes/admin/class-mp-shortcode-builder.php:552 +msgid "Which category ID is selected." +msgstr "Qué ID de categoría está seleccionada." + +#: includes/admin/class-mp-shortcode-builder.php:540 +msgid "The max depth. This is ignored unless hierarchical is set to true." +msgstr "La profundidad máxima. Esto se ignora a menos que jerárquico se establezca en verdadero." + +#: includes/admin/class-mp-shortcode-builder.php:536 +#: includes/multisite/template-functions.php:816 +msgid "No Categories" +msgstr "No Categorías" + +#: includes/admin/class-mp-shortcode-builder.php:414 +#: includes/admin/class-mp-shortcode-builder.php:546 +msgid "Calculates link or post counts by including items from child categories. If show_counts and hierarchical are true this is automatically set to true." +msgstr "Calcula el recuento de enlaces o publicaciones incluyendo artículos de categorías secundarias. Si show_counts y hierarchical son verdaderos, esto se establece automáticamente en verdadero." + +#: includes/admin/class-mp-shortcode-builder.php:409 +msgid "Value of n (some number) specifies the depth (or level) to descend in displaying Categories." +msgstr "El valor de n (algún número) especifica la profundidad (o nivel) para descender en la visualización de Categorías." + +#: includes/admin/class-mp-shortcode-builder.php:408 +msgid "Show only top level Categories." +msgstr "Mostrar solo las categorías de nivel superior." + +#: includes/admin/class-mp-shortcode-builder.php:407 +msgid "All Categories displayed in flat (no indent) form (overrides hierarchical)." +msgstr "Todas las categorías se muestran en forma plana (sin sangría) (reemplaza a jerárquica)." + +#: includes/admin/class-mp-shortcode-builder.php:406 +msgid "All Categories and child Categories (Default)." +msgstr "Todas las categorías y categorías de hijo(predeterminado)" + +#: includes/admin/class-mp-shortcode-builder.php:402 +msgid "This parameter controls how many levels in the hierarchy of Categories are to be included in the list of Categories. NOTE: The \"hierarchical\" argument, which is disabled by default, will override the depth argument, unless it is true. When the argument is false, it will display all of the categories. When it is enabled it will use the value in the \"depth\" argument." +msgstr "Este parámetro controla cuántos niveles en la jerarquía de Categorías se incluirán en la lista de Categorías. NOTA: El argumento \"jerárquico\", que está deshabilitado de forma predeterminada, anulará el argumento de profundidad, a menos que sea verdadero. Cuando el argumento es falso, mostrará todas las categorías. Cuando esté habilitado, usará el valor en el argumento \"profundidad\"." + +#: includes/admin/class-mp-shortcode-builder.php:396 +#: includes/admin/class-mp-shortcode-builder.php:1394 +msgid "Sets the number of Categories to display. This causes the SQL LIMIT value to be defined." +msgstr "Establece el número de categorías para mostrar. Esto hace que se defina el valor de LIMIT de SQL." + +#: includes/admin/class-mp-shortcode-builder.php:390 +#: includes/admin/class-mp-shortcode-builder.php:534 +msgid "Set the text to show when no categories are listed." +msgstr "Establezca el texto para mostrar cuando no se enumeran categorías." + +#: includes/admin/class-mp-shortcode-builder.php:384 +msgid "Set the title and style of the outer list item. If present but empty, the outer list item will not be displayed." +msgstr "Establezca el título y el estilo del elemento de la lista externa. Si está presente pero vacío, el elemento de la lista externa no se mostrará." + +#: includes/admin/class-mp-shortcode-builder.php:378 +#: includes/admin/class-mp-shortcode-builder.php:528 +msgid "Display sub-categories as inner list items (below the parent list item) or inline." +msgstr "Muestre las subcategorías como elementos de la lista interna (debajo del elemento de la lista principal) o en línea." + +#: includes/admin/class-mp-shortcode-builder.php:368 +#: includes/admin/class-mp-shortcode-builder.php:511 +msgid "Exclude category-tree from the results. The parameter include must be empty. If the hierarchical parameter is true, then use exclude instead of exclude_tree." +msgstr "Excluir categoría-árbol de los resultados. El parámetro include debe estar vacío. Si el parámetro jerárquico es verdadero, entonces use exclude en lugar de exclude_tree." + +#: includes/admin/class-mp-shortcode-builder.php:354 +msgid "Only include these categories." +msgstr "Solo incluye estas categorías." + +#: includes/admin/class-mp-shortcode-builder.php:340 +#: includes/admin/class-mp-shortcode-builder.php:356 +#: includes/admin/class-mp-shortcode-builder.php:370 +#: includes/admin/class-mp-shortcode-builder.php:496 +#: includes/admin/class-mp-shortcode-builder.php:513 +msgid "Select Categories" +msgstr "Seleccione Categorías" + +#: includes/admin/class-mp-shortcode-builder.php:338 +#: includes/admin/class-mp-shortcode-builder.php:494 +msgid "Exclude one or more categories from the results. The parameter include must be empty." +msgstr "Excluir una o más categorías de los resultados. El parámetro include debe estar vacío." + +#: includes/admin/class-mp-shortcode-builder.php:332 +msgid "Set a URI for an image (usually an rss feed icon) to act as a link to each categories' rss-2 feed. This parameter overrides the feed parameter. There is no default for this parameter." +msgstr "Establezca un URI para una imagen (generalmente un icono de feed RSS) para que actúe como un enlace al feed rss-2 de cada categoría. Este parámetro anula el parámetro de alimentación. No hay valor predeterminado para este parámetro." + +#: includes/admin/class-mp-shortcode-builder.php:320 +msgid "Display a link to each category's rss-2 feed and set the link text to display. The default is no text and no feed displayed." +msgstr "Muestre un enlace a la fuente rss-2 de cada categoría y configure el texto del enlace para que se muestre. El valor predeterminado es sin texto y no se muestra ninguna fuente." + +#: includes/admin/class-mp-shortcode-builder.php:313 +#: includes/admin/class-mp-shortcode-builder.php:487 +msgid "Any" +msgstr "Alguno" + +#: includes/admin/class-mp-shortcode-builder.php:307 +#: includes/admin/class-mp-shortcode-builder.php:481 +msgid "Only display categories that are children of the category identified by this parameter." +msgstr "Solo se muestran las categorías que son hijos de la categoría identificada por este parámetro." + +#: includes/admin/class-mp-shortcode-builder.php:301 +msgid "Sets whether a category's description is inserted into the title attribute of the links created (i.e. <a title=\"<em>Category Description</em>\" href=\"...)." +msgstr "Establece si la descripción de una categoría se inserta en el atributo de título de los enlaces creados (i.e. <a title=\"<em>Category Description</em>\" href=\"...)." + +#: includes/admin/class-mp-shortcode-builder.php:295 +#: includes/admin/class-mp-shortcode-builder.php:475 +msgid "Toggles the display of categories with no posts." +msgstr "Alterna la visualización de categorías sin publicaciones." + +#: includes/admin/class-mp-shortcode-builder.php:289 +#: includes/admin/class-mp-shortcode-builder.php:469 +#: includes/admin/class-mp-shortcode-builder.php:1388 +msgid "Toggles the display of the current count of posts in each category." +msgstr "Alterna la visualización del recuento actual de publicaciones en cada categoría." + +#: includes/admin/class-mp-shortcode-builder.php:279 +msgid "Style to display the categories list in. A value of list displays the categories as list items while none generates no special display method (the list items are separated by
    tags)." +msgstr "Estilo para mostrar la lista de categorías. Un valor de lista muestra las categorías como elementos de lista mientras que ninguno genera ningún método de visualización especial (los elementos de la lista están separados por
    tags)." + +#: includes/admin/class-mp-shortcode-builder.php:269 +#: includes/admin/class-mp-shortcode-builder.php:449 +#: includes/admin/class-mp-shortcode-builder.php:1378 +msgid "Sort order for categories (either ascending or descending)." +msgstr "Orden de clasificación por categorías (ya sea ascendente o descendente)." + +#: includes/admin/class-mp-shortcode-builder.php:259 +#: includes/admin/class-mp-shortcode-builder.php:439 +#: includes/admin/class-mp-shortcode-builder.php:1368 +msgid "Sort categories alphabetically, by unique Category ID, or by the count of posts in that Category." +msgstr "Ordene las categorías alfabéticamente, por ID de categoría única o por el número de publicaciones en esa categoría." + +#: includes/admin/class-mp-shortcode-builder.php:253 +#: includes/admin/class-mp-shortcode-builder.php:433 +msgid "If a value is entered, causes the display of a link to all categories if the style is set to list." +msgstr "Si se ingresa un valor, hace que se muestre un enlace a todas las categorías si el estilo se establece en la lista." + +#: includes/admin/class-mp-shortcode-builder.php:219 +msgid "Select an Action" +msgstr "Seleccione una acción" + +#: includes/admin/class-mp-shortcode-builder.php:217 +msgid "What would you like to do?" +msgstr "Que te gustaría hacer?" + +#: includes/admin/class-mp-shortcode-builder.php:216 +#: includes/admin/class-mp-shortcode-builder.php:1522 +msgid "Add E-Commerce Short Code" +msgstr "Agregar código corto de comercio electrónico" + +#: includes/admin/class-mp-shortcode-builder.php:197 +msgid "Display a list of links to your store pages." +msgstr "Muestra una lista de enlaces a las páginas de tu tienda." + +#: includes/admin/class-mp-shortcode-builder.php:196 +msgid "Display a link or url to the order status page." +msgstr "Muestra un enlace o url a la página de estado del pedido." + +#: includes/admin/class-mp-shortcode-builder.php:195 +msgid "Display a link or url to the current products list page." +msgstr "Muestra un enlace o url a la página de lista de productos actual." + +#: includes/admin/class-mp-shortcode-builder.php:194 +msgid "Display a link or url to the current store page." +msgstr "Muestra un enlace o url a la página de la tienda actual." + +#: includes/admin/class-mp-shortcode-builder.php:193 +msgid "Display a link or url to the current shopping cart page." +msgstr "Muestra un enlace o url a la página actual del carrito de compras." + +#: includes/admin/class-mp-shortcode-builder.php:192 +msgid "Display the cart widget." +msgstr "Mostrar el widget del carrito." + +#: includes/admin/class-mp-shortcode-builder.php:191 +msgid "Display the full product meta box with price and buy now/add to cart button." +msgstr "Muestre la meta caja completa del producto con el precio y compre ahora / agregue al botón del carrito." + +#: includes/admin/class-mp-shortcode-builder.php:190 +msgid "Display the product stock." +msgstr "Mostrar el stock de producto." + +#: includes/admin/class-mp-shortcode-builder.php:189 +msgid "Display the product SKU number(s)." +msgstr "Mostrar los números de SKU del producto." + +#: includes/admin/class-mp-shortcode-builder.php:188 +msgid "Display the product price (and sale price)." +msgstr "Mostrar el precio del producto (y el precio de venta)." + +#: includes/admin/class-mp-shortcode-builder.php:187 +msgid "Display the buy or add to cart button." +msgstr "Muestra el botón comprar o añadir al carrito." + +#: includes/admin/class-mp-shortcode-builder.php:186 +msgid "Display the featured image of a given product." +msgstr "Mostrar la imagen mostrada de un producto dado." + +#: includes/admin/class-mp-shortcode-builder.php:185 +msgid "Display a single product." +msgstr "Mostrar un solo producto." + +#: includes/admin/class-mp-shortcode-builder.php:184 +msgid "Display a list of products according to preference." +msgstr "Mostrar una lista de productos según preferencia." + +#: includes/admin/class-mp-shortcode-builder.php:183 +msgid "Display products related to the one being viewed." +msgstr "Mostrar productos relacionados con el que se está viendo." + +#: includes/admin/class-mp-shortcode-builder.php:182 +msgid "Display a list of popular products ordered by sales." +msgstr "Muestra una lista de productos populares ordenados por ventas." + +#: includes/admin/class-mp-shortcode-builder.php:180 +msgid "Display an HTML dropdown of your product categories." +msgstr "Muestra un menú desplegable HTML de tus categorías de productos." + +#: includes/admin/class-mp-shortcode-builder.php:179 +msgid "Display an HTML list of your product categories." +msgstr "Muestra una lista HTML de tus categorías de productos." + +#: includes/admin/class-mp-shortcode-builder.php:178 +msgid "Display a cloud or list of your product tags." +msgstr "Muestra una nube o lista de las etiquetas de tus productos." + +#: includes/admin/class-mp-setup-wizard.php:655 +msgid "Setup your payment gateway" +msgstr "Configura tu pasarela de pago" + +#: includes/admin/class-mp-setup-wizard.php:643 +#: includes/admin/class-mp-setup-wizard.php:649 +msgid "Other Gateways" +msgstr "Otras pasarelas" + +#: includes/admin/class-mp-setup-wizard.php:617 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:150 +msgid "Select which calculated shipping methods the customer will be able to choose from." +msgstr "Seleccione los métodos de envío calculados entre los que el cliente podrá elegir." + +#: includes/admin/class-mp-setup-wizard.php:601 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:134 +#: includes/public/class-mp-checkout.php:82 +msgid "Shipping Method" +msgstr "Método de envío" + +#: includes/admin/class-mp-setup-wizard.php:568 +msgid "I want to charge shipping" +msgstr "Quiero cobrar envio" + +#: includes/admin/class-mp-setup-wizard.php:523 +#: includes/admin/store-settings/class-mp-store-settings-general.php:503 +msgid "Show Price + Tax?" +msgstr "¿Mostrar precio + impuestos?" + +#: includes/admin/class-mp-setup-wizard.php:507 +msgid "I.e. Taxes, VAT, GST, etc" +msgstr "Es decir. Impuestos, IVA, GST, etc" + +#: includes/admin/class-mp-setup-wizard.php:491 +#: includes/admin/store-settings/class-mp-store-settings-general.php:471 +msgid "Current Rates" +msgstr "Las tasas actuales" + +#: includes/admin/class-mp-setup-wizard.php:473 +msgid "Default Tax Rate" +msgstr "Las tasas actuales" + +#: includes/admin/class-mp-setup-wizard.php:434 +#: includes/admin/class-mp-setup-wizard.php:442 +#: includes/admin/store-settings/class-mp-store-settings-general.php:386 +#: includes/admin/store-settings/class-mp-store-settings-general.php:394 +#: includes/multisite/class-mp-admin-multisite.php:204 +#: includes/multisite/class-mp-admin-multisite.php:212 +msgid "Select a Currency" +msgstr "Seleccione una moneda" + +#: includes/admin/class-mp-setup-wizard.php:414 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:105 +msgid "Choose Countries" +msgstr "Elegir paises" + +#: includes/admin/class-mp-setup-wizard.php:411 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:103 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:104 +msgid "All Countries" +msgstr "Todos los países" + +#: includes/admin/class-mp-setup-wizard.php:410 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:102 +msgid "These are the countries that you will ship to." +msgstr "Estos son los países a los que enviarás." + +#: includes/admin/class-mp-setup-wizard.php:409 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:101 +msgid "Target Countries" +msgstr "Países objetivos" + +#: includes/admin/class-mp-setup-wizard.php:401 +msgid "Countries" +msgstr "Países " + +#: includes/admin/class-mp-setup-wizard.php:387 +#: includes/admin/store-settings/class-mp-store-settings-general.php:640 +msgid "Zip/Postal Code Label" +msgstr "Código postal / etiqueta postal" + +#: includes/admin/class-mp-setup-wizard.php:352 +#: includes/admin/store-settings/class-mp-store-settings-general.php:606 +msgid "Select a State/Province/Region" +msgstr "Seleccione un Estado / Provincia / Región" + +#: includes/admin/class-mp-setup-wizard.php:335 +#: includes/admin/store-settings/class-mp-store-settings-general.php:590 +msgid "Select A Country" +msgstr "Seleccione un país" + +#: includes/admin/class-mp-setup-wizard.php:332 +#: includes/admin/store-settings/class-mp-store-settings-general.php:587 +msgid "Select a Country" +msgstr "Seleccione un país" + +#: includes/admin/class-mp-setup-wizard.php:324 +msgid "Location" +msgstr "Ubicación" + +#: includes/admin/class-mp-setup-wizard.php:304 +#: includes/admin/class-mp-setup-wizard.php:312 +#: includes/admin/class-mp-store-settings-admin.php:129 +#: includes/admin/class-mp-store-settings-admin.php:262 +msgid "Quick Setup" +msgstr "Configuración rápida" + +#: includes/admin/class-mp-setup-wizard.php:289 +msgid "MarketPress setup is not complete! Run setup wizard" +msgstr "¡La configuración de MarketPress no está completa! Ejecutar Asistente de instalación" + +#: includes/admin/class-mp-products-admin.php:2479 +msgid "Enter your product name here" +msgstr "Ingrese el nombre de su producto aquí" + +#: includes/admin/class-mp-products-admin.php:2440 +msgid "Select a %s" +msgstr "Seleccione un %s" + +#: includes/admin/class-mp-products-admin.php:2426 +msgid "Each product variation needs to have product attributes assigned to it so the system knows how to differentiate one product variation from the other. It is important that you assign a category to this product before choosing any attributes." +msgstr "Cada variación de producto debe tener atributos de producto asignados para que el sistema sepa cómo diferenciar una variación de producto de la otra. Es importante que asigne una categoría a este producto antes de elegir cualquier atributo." + +#: includes/admin/class-mp-products-admin.php:2409 +msgid "If you would like this variation to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "Si desea que esta variación utilice una tasa impositiva especial, ingrésela aquí. Si omite el símbolo \"%\", la tasa se calculará como una cantidad fija para cada uno de este producto en el carrito del usuario." + +#: includes/admin/class-mp-products-admin.php:2320 +msgid "Sale Price (if applicable)" +msgstr "Precio de venta (si corresponde)" + +#: includes/admin/class-mp-products-admin.php:2281 +msgid "If you would like the description to be different than the main product enter it here." +msgstr "Si desea que la descripción sea diferente a la del producto principal, ingrésela aquí." + +#: includes/admin/class-mp-products-admin.php:2229 +msgid "Image" +msgstr "Imagen" + +#: includes/admin/class-mp-products-admin.php:2202 +#: includes/admin/class-mp-shortcode-builder.php:226 +msgid "Attributes" +msgstr "Atributos" + +#: includes/admin/class-mp-products-admin.php:2166 +msgid "Create your product variations here. You can reorder variations by using the number to left of each variation, or delete one by clicking the \"x\" to the right of each variation. NOTE: The variation that shows up first in this list will be considered the \"main variation\". The details from this variation will be used in product listings." +msgstr "Crea tus variaciones de producto aquí. Puede reordenar las variaciones usando el número a la izquierda de cada variación, o eliminar una haciendo clic en la \"x\" a la derecha de cada variación. NOTA: La variación que aparece primero en esta lista se considerará la \"variación principal\". Los detalles de esta variación se utilizarán en las listas de productos. " + +#: includes/admin/class-mp-products-admin.php:2061 +#: includes/admin/class-mp-products-admin.php:2332 +msgid "Value must be less than regular price" +msgstr "El valor debe ser menor que el precio regular" + +#: includes/admin/class-mp-products-admin.php:2043 +#: includes/admin/class-mp-products-admin.php:2306 +msgid "Regular Price" +msgstr "Precio regular" + +#: includes/admin/class-mp-products-admin.php:2023 +#: includes/admin/class-mp-products-admin.php:2286 +msgid "External URL" +msgstr "URL externa" + +#: includes/admin/class-mp-products-admin.php:1988 +#: includes/admin/class-mp-products-admin.php:2245 +msgid "Enter the quantity that you have available to sell." +msgstr "Ingrese la cantidad que tiene disponible para vender." + +#: includes/admin/class-mp-products-admin.php:1987 +#: includes/admin/class-mp-products-admin.php:2244 +msgid "Inventory Count" +msgstr "Cuenta de inventario" + +#: includes/admin/class-mp-products-admin.php:1977 +#: includes/admin/class-mp-products-admin.php:2234 +msgid "Track Inventory?" +msgstr "Seguimiento de inventario?" + +#: includes/admin/class-mp-products-admin.php:1871 +msgid "%1$sProduct Images%2$s %3$sAdd images of the product. The first image on the list is the featured image for this product (you can reorder images on the list)%2$s" +msgstr "%1$sProduct Images%2$s %3$s Añadir imágenes del producto. La primera imagen en la lista es la imagen destacada para este producto (puede reordenar las imágenes en la lista)%2$s" + +#: includes/admin/class-mp-products-admin.php:1806 +msgid "Add variations for this product. e.g. If you are selling t-shirts, you can create Color & Size variations" +msgstr "Añadir variaciones para este producto. p.ej. Si está vendiendo camisetas, puede crear variaciones de color y tamaño." + +#: includes/admin/class-mp-products-admin.php:1804 +msgid "%3$sAdd variations for%2$s %1$sProduct%2$s" +msgstr "%3$s Añadir variaciones para%2$s %1$sProducto%2$s" + +#: includes/admin/class-mp-products-admin.php:1776 +msgid "This product has a multiple variations %1$s(e.g. Multiple colors, sizes)%2$s" +msgstr "Este producto tiene múltiples variaciones. %1$s(por ejemplo, múltiples colores, tamaños)%2$s" + +#: includes/admin/class-mp-products-admin.php:1775 +msgid "This is a unique product without variations" +msgstr "Este es un producto único sin variaciones." + +#: includes/admin/class-mp-products-admin.php:1700 +msgid "Extra Shipping Cost %1$s(if applicable)%2$s" +msgstr "Costo de envío adicional %1$s(si es aplicable)%2$s" + +#: includes/admin/class-mp-products-admin.php:1659 +#: includes/admin/class-mp-products-admin.php:2112 +#: includes/admin/class-mp-products-admin.php:2359 +msgid "Weight" +msgstr "Peso" + +#: includes/admin/class-mp-products-admin.php:1636 +#: includes/admin/class-mp-products-admin.php:2098 +#: includes/admin/class-mp-products-admin.php:2416 +msgid "Please enter a valid tax rate" +msgstr "Por favor ingrese una tasa de impuesto válida" + +#: includes/admin/class-mp-products-admin.php:1531 +msgid "Limit Per Order %1$s(limit the number of the item a shopper can buy per order)%2$s" +msgstr "Límite por orden %1$s(limite el número del artículo que un comprador puede comprar por pedido)%2$s" + +#: includes/admin/class-mp-products-admin.php:1513 +msgid "SKU %1$s(Stock Keeping Unit)%2$s" +msgstr "SKU %1$s(Unidad de mantenimiento de stock)%2$s" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "%1$sPrice, Inventory & Variants%2$s %3$sSet price, manage inventory and create Product Variants (if appropriate for your product).%2$s" +msgstr "%1$sPrecio, Inventario y Variantes%2$s %3$sFije el precio, administre el inventario y cree Variantes de productos (si es apropiado para su producto).%2$s" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "Product Variations" +msgstr "Variaciones del producto" + +#: includes/admin/class-mp-products-admin.php:1480 +msgid "External / Affiliate Link" +msgstr "Enlace externo / afiliado" + +#: includes/admin/class-mp-products-admin.php:1471 +msgid "Digital Download" +msgstr "Descarga digital" + +#: includes/admin/class-mp-products-admin.php:1470 +msgid "Physical / Tangible Product" +msgstr "Producto físico / tangible" + +#: includes/admin/class-mp-products-admin.php:1464 +msgid "Product Kind %1$s(Physical Product, Digital, etc)%2$s" +msgstr "Tipo de producto %1$s (Producto físico, Digital, etc.)%2$s" + +#: includes/admin/class-mp-products-admin.php:1426 +msgid "Choose Products" +msgstr "Elegir productos" + +#: includes/admin/class-mp-products-admin.php:1420 +msgid "If you would like, you can choose specific related products instead of using the ones generated by MarketPress" +msgstr "Si lo desea, puede elegir productos relacionados específicos en lugar de utilizar los generados por MarketPress" + +#: includes/admin/class-mp-products-admin.php:1019 +msgid "Changes saved successfully" +msgstr "Los cambios se guardaron exitosamente" + +#: includes/admin/class-mp-products-admin.php:826 +msgid "Option cannot be saved. Try again." +msgstr "La opción no se pudo guardar. Inténtalo de nuevo." + +#: includes/admin/class-mp-products-admin.php:821 +msgid "Option saved successfully." +msgstr "Opción guardada con éxito." + +#: includes/admin/class-mp-products-admin.php:467 +msgid "Img" +msgstr "Img" + +#: includes/admin/class-mp-product-attributes-list-table.php:57 +msgid "Product attribute(s) deleted successfully." +msgstr "Los atributos del producto se eliminaron correctamente." + +#: includes/admin/class-mp-product-attributes-admin.php:162 +msgid "- Create New Variation -" +msgstr "- Crear nueva variación -" + +#: includes/admin/class-mp-product-attributes-admin.php:144 +msgid "Only lowercase letters and dashes (-) are allowed." +msgstr "Solo se permiten letras minúsculas y guiones (-)." + +#: includes/admin/class-mp-product-attributes-admin.php:139 +msgid "If a slug is not entered, it will be generated automatically. Max 32 characters." +msgstr "Si no se ingresa un slug, se generará automáticamente. Max 32 caracteres." + +#: includes/admin/class-mp-product-attributes-admin.php:138 +#: includes/admin/class-mp-product-attributes-list-table.php:23 +msgid "Slug" +msgstr "Slug" + +#: includes/admin/class-mp-product-attributes-admin.php:130 +msgid "Max 45 characters." +msgstr "Máximo 45 caracteres." + +#: includes/admin/class-mp-product-attributes-admin.php:123 +msgid "Use the numbers on the left to sort. To delete - click the \"X\" to the right of each row." +msgstr "Usa los números de la izquierda para ordenar. Para eliminar: haga clic en la \"X\" a la derecha de cada fila." + +#: includes/admin/class-mp-product-attributes-admin.php:122 +msgid "Attribute Options" +msgstr "Opciones de atributos" + +#: includes/admin/class-mp-product-attributes-admin.php:121 +msgid "Add Option" +msgstr "Añadir opción" + +#: includes/admin/class-mp-product-attributes-admin.php:105 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:523 +msgid "Sort Order" +msgstr "Orden de clasificación" + +#: includes/admin/class-mp-product-attributes-admin.php:87 +msgid "Alphabetical" +msgstr "Alfabético" + +#: includes/admin/class-mp-product-attributes-admin.php:86 +msgid "ID" +msgstr "ID" + +#: includes/admin/class-mp-product-attributes-admin.php:84 +msgid "Select how the options will be sorted." +msgstr "Seleccione cómo se ordenarán las opciones." + +#: includes/admin/class-mp-product-attributes-admin.php:82 +msgid "Sort By" +msgstr "Ordenar por" + +#: includes/admin/class-mp-product-attributes-admin.php:75 +msgid "The name of the attribute (e.g. color, size, etc)" +msgstr "El nombre del atributo (por ejemplo, color, tamaño, etc.)" + +#: includes/admin/class-mp-product-attributes-admin.php:74 +msgid "Attribute Name" +msgstr "Nombre del Atributo" + +#: includes/admin/class-mp-product-attributes-admin.php:69 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Product Attribute" +msgstr "Añadir atributo de producto" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Attribute" +msgstr "Añadir atributo" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Product Attributes" +msgstr "Atributos del producto" + +#: includes/admin/class-mp-pages-admin.php:71 +msgid "You can choose to make this page one of the following core store pages." +msgstr "Puede elegir hacer de esta página una de las siguientes páginas de la tienda principal." + +#: includes/admin/class-mp-pages-admin.php:66 +msgid "Network Store Base" +msgstr "Base de la tienda de red" + +#: includes/admin/class-mp-pages-admin.php:61 +msgid "Checkout Page" +msgstr "Página de pago" + +#: includes/admin/class-mp-pages-admin.php:52 +msgid "Store Page Settings" +msgstr "Ajustes de página de la tienda" + +#: includes/admin/class-mp-orders-admin.php:1108 +msgid "Display billing/shipping info for this customer" +msgstr "Mostrar información de facturación / envío para este cliente" + +#: includes/admin/class-mp-orders-admin.php:1097 +msgid "View order “%s”" +msgstr "Ver pedido “%s”" + +#: includes/admin/class-mp-orders-admin.php:1072 +msgid "Flag as:" +msgstr "Marcar como" + +#: includes/admin/class-mp-orders-admin.php:952 +msgid "Move To Trash" +msgstr "Mover a la papelera" + +#: includes/admin/class-mp-orders-admin.php:948 +msgid " Received" +msgstr "Recibido" + +#: includes/admin/class-mp-orders-admin.php:927 +msgid "Enter coupon code here" +msgstr "Introduzca el código de cupón aquí" + +#: includes/admin/class-mp-orders-admin.php:812 +msgid "The order status could not be updated due to unexpected error. Please try again." +msgstr "El estado del pedido no se pudo actualizar debido a un error inesperado. Inténtalo de nuevo." + +#: includes/admin/class-mp-orders-admin.php:740 +msgid "An invalid bulk action was requested. Please go back and try again." +msgstr "Se solicitó una acción masiva no válida. Por favor, regrese y vuelva a intentarlo." + +#: includes/admin/class-mp-orders-admin.php:692 +msgid "The order status for order ID %1$s was updated successfully." +msgstr "El estado del pedido para ID de pedido%1$s fue actualizado exitosamente" + +#: includes/admin/class-mp-orders-admin.php:688 +msgid "Order statuses successfully updated." +msgstr "Los estados de los pedidos se han actualizado correctamente." + +#: includes/admin/class-mp-orders-admin.php:530 +msgid "Method" +msgstr "Método" + +#: includes/admin/class-mp-orders-admin.php:518 +msgid "Actual Shipping Method" +msgstr "Método de envío real" + +#: includes/admin/class-mp-orders-admin.php:513 +msgid "Method Paid For" +msgstr "Método pagado por" + +#: includes/admin/class-mp-orders-admin.php:504 +msgid "Amount Collected" +msgstr "Cantidad recaudada" + +#: includes/admin/class-mp-orders-admin.php:477 +msgid "DHL" +msgstr "DHL" + +#: includes/admin/class-mp-orders-admin.php:408 +msgid "There is no IPN history to show at this time" +msgstr "No hay historial de IPN para mostrar en este momento" + +#: includes/admin/class-mp-orders-admin.php:345 +msgid "Type" +msgstr "Tipo" + +#: includes/admin/class-mp-orders-admin.php:343 +msgid "Gateway" +msgstr "Pasarela" + +#: includes/admin/class-mp-orders-admin.php:301 +#: includes/common/template-functions.php:528 +msgid "Order History" +msgstr "Historial de pedidos" + +#: includes/admin/class-mp-orders-admin.php:291 +msgid "IPN History" +msgstr "Historia de IPN" + +#: includes/admin/class-mp-orders-admin.php:283 +msgid "Customer Info" +msgstr "Información del cliente" + +#: includes/admin/class-mp-orders-admin.php:279 +msgid "Order Details" +msgstr "Detalles del pedido" + +#: includes/admin/class-mp-exporter-orders.php:157 +msgid "All Dates" +msgstr "Todas las fechas" + +#: includes/admin/class-mp-dashboard-widgets.php:320 +msgid "Add Pages to Menu" +msgstr "Añadir páginas al menú" + +#: includes/admin/class-mp-dashboard-widgets.php:318 +msgid "Add-ons" +msgstr "Complementos" + +#: includes/admin/class-mp-dashboard-widgets.php:317 +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "User Capabilities" +msgstr "Capacidades del usuario" + +#: includes/admin/class-mp-dashboard-widgets.php:316 +#: includes/admin/class-mp-setup-wizard.php:631 +#: includes/admin/store-settings/class-mp-store-settings-payments.php:50 +msgid "Payment Gateways" +msgstr "Pasarelas de pago" + +#: includes/admin/class-mp-dashboard-widgets.php:315 +msgid "Shipping Rates" +msgstr "Tarifas de envio" + +#: includes/admin/class-mp-dashboard-widgets.php:312 +msgid "Configure" +msgstr "Configurar" + +#: includes/admin/class-mp-dashboard-widgets.php:309 +#: includes/admin/class-mp-products-admin.php:466 +#: includes/admin/class-mp-shortcode-builder.php:797 +msgid "Tags" +msgstr "Etiquetas" + +#: includes/admin/class-mp-dashboard-widgets.php:308 +#: includes/admin/class-mp-products-admin.php:465 +msgid "Categories" +msgstr "Categorías" + +#: includes/admin/class-mp-dashboard-widgets.php:300 +msgid "Manage" +msgstr "Gestionar" + +#: includes/admin/class-mp-dashboard-widgets.php:297 +msgid "Here's some quick links to manage your store and products." +msgstr "Aquí hay algunos enlaces rápidos para administrar su tienda y productos." + +#: includes/admin/class-mp-dashboard-widgets.php:288 +msgid "low in stock" +msgstr "bajo en existencia" + +#: includes/admin/class-mp-dashboard-widgets.php:287 +msgid "%s product" +msgid_plural "%s products" +msgstr[0] "%s producto" +msgstr[1] "%s productos" + +#: includes/admin/class-mp-dashboard-widgets.php:280 +msgid "received" +msgstr "recibido" + +#: includes/admin/class-mp-dashboard-widgets.php:279 +#: includes/admin/class-mp-dashboard-widgets.php:283 +msgid "%s order" +msgid_plural "%s orders" +msgstr[0] "%s pedido" +msgstr[1] "%s pedidos" + +#: includes/admin/class-mp-dashboard-widgets.php:276 +msgid "Stock & Orders" +msgstr "Stock y pedidos" + +#: includes/admin/class-mp-dashboard-widgets.php:261 +msgid "Last 30 Days" +msgstr "Últimos 30 días" + +#: includes/admin/class-mp-dashboard-widgets.php:256 +msgid "Last 7 Days" +msgstr "Los últimos 7 días" + +#: includes/admin/class-mp-dashboard-widgets.php:251 +msgid "Yesterday" +msgstr "Ayer" + +#: includes/admin/class-mp-dashboard-widgets.php:248 +#: includes/admin/class-mp-dashboard-widgets.php:253 +#: includes/admin/class-mp-dashboard-widgets.php:258 +#: includes/admin/class-mp-dashboard-widgets.php:263 +msgid " Orders" +msgstr "Pedidos" + +#: includes/admin/class-mp-dashboard-widgets.php:246 +msgid "Today" +msgstr "Hoy" + +#: includes/admin/class-mp-dashboard-widgets.php:241 +msgid "Welcome back! Here's a quick summary of your store's performance." +msgstr "¡Dar una buena acogida! Aquí hay un breve resumen del rendimiento de su tienda." + +#: includes/admin/class-mp-dashboard-widgets.php:196 +#: includes/admin/class-mp-products-admin.php:895 +msgid "No products out of stock." +msgstr "No hay productos agotados." + +#: includes/admin/class-mp-dashboard-widgets.php:136 +#: includes/admin/class-mp-products-admin.php:839 +msgid "Stock Level" +msgstr "Nivel de existencias" + +#: includes/admin/class-mp-dashboard-widgets.php:135 +#: includes/admin/class-mp-products-admin.php:838 +msgid "Variation" +msgstr "Variación" + +#: includes/admin/class-mp-dashboard-widgets.php:121 +msgid "Low Stock (%s)" +msgstr "Bajo stock (%s)" + +#: includes/admin/class-mp-dashboard-widgets.php:116 +msgid "Store Management" +msgstr "Administración de la tienda" + +#: includes/admin/class-mp-dashboard-widgets.php:115 +msgid "Store Reports" +msgstr "Informes de la tienda" + +#: includes/admin/class-mp-ajax.php:579 +#: includes/admin/class-mp-orders-admin.php:520 +#: includes/common/payment-gateways/2checkout.php:370 +#: includes/common/payment-gateways/authorizenet-aim.php:264 +#: includes/common/payment-gateways/mollie.php:93 +#: includes/common/payment-gateways/paymill.php:196 +#: includes/common/payment-gateways/pin.php:190 +#: includes/common/payment-gateways/skrill.php:157 +#: includes/common/payment-gateways/skrill.php:168 +#: includes/common/payment-gateways/wepay.php:143 +#: includes/public/class-mp-checkout.php:404 +msgid "Select One" +msgstr "Seleccione uno" + +#: includes/admin/class-mp-ajax.php:511 +msgid "Oops... we could not locate any orders by that ID. Please double check your order ID and try again." +msgstr "Vaya ... no hemos podido localizar ningún pedido por esa ID. Por favor revise su ID de pedido y vuelva a intentarlo." + +#: includes/admin/class-mp-ajax.php:482 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:166 +#: includes/multisite/class-mp-admin-multisite.php:584 +msgid "Edit Page" +msgstr "Editar página" + +#: includes/admin/class-mp-ajax.php:346 +msgid "Cancel " +msgstr "Cancelar" + +#: includes/admin/class-mp-ajax.php:345 +msgid "Save " +msgstr "Salvar" + +#: includes/admin/class-mp-ajax.php:336 +msgid "Edit Description" +msgstr "Editar Descripción" + +#: includes/admin/class-mp-ajax.php:336 +msgid "HTML Markup" +msgstr "Marcado HTML" + +#: includes/admin/class-mp-ajax.php:333 +msgid "Plain Text Only" +msgstr "Sólo texto sin formato" + +#: includes/admin/class-mp-ajax.php:329 +msgid "Additional Content / Information for this Variation" +msgstr "Contenido / información adicional para esta variación" + +#: includes/admin/class-mp-ajax.php:317 +#: includes/admin/class-mp-products-admin.php:1762 +msgid "Allow this product to be purchased even if it's out of stock" +msgstr "Permitir que este producto se compre incluso si está agotado" + +#: includes/admin/class-mp-ajax.php:313 +#: includes/admin/class-mp-products-admin.php:1711 +msgid "Track Product Inventory" +msgstr "Seguimiento del inventario de productos" + +#: includes/admin/class-mp-ajax.php:300 +msgid "Extra Shipping Cost (if applicable)" +msgstr "Costo de envío adicional (si corresponde)" + +#: includes/admin/class-mp-ajax.php:295 +msgid "Ounces:" +msgstr "Onzas:" + +#: includes/admin/class-mp-ajax.php:294 +msgid "Pounds:" +msgstr "Libras:" + +#: includes/admin/class-mp-ajax.php:292 +msgid "Kilograms:" +msgstr "Kilogramos:" + +#: includes/admin/class-mp-ajax.php:287 +#: includes/admin/class-mp-products-admin.php:1649 +msgid "Charge Shipping" +msgstr "Cargo de Envío " + +#: includes/admin/class-mp-ajax.php:273 +#: includes/admin/class-mp-products-admin.php:1623 +#: includes/admin/store-settings/class-mp-store-settings-general.php:454 +msgid "Tax Rate" +msgstr "Tasa de impuesto" + +#: includes/admin/class-mp-ajax.php:272 +#: includes/admin/class-mp-products-admin.php:1622 +#: includes/admin/class-mp-products-admin.php:2090 +#: includes/admin/class-mp-products-admin.php:2408 +msgid "Special Tax Rate" +msgstr "Tasa de impuesto especial" + +#: includes/admin/class-mp-ajax.php:271 +#: includes/admin/class-mp-products-admin.php:1625 +#: includes/admin/class-mp-products-admin.php:2092 +msgid "If you would like this product to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "Si desea que este producto utilice una tasa impositiva especial, ingréselo aquí. Si omite el símbolo \"%\", la tasa se calculará como una cantidad fija para cada uno de este producto en el carrito del usuario." + +#: includes/admin/class-mp-ajax.php:268 +#: includes/admin/class-mp-products-admin.php:1599 +msgid "Charge Taxes (Special Rate)" +msgstr "Cargo de Impuestos (tarifa especial)" + +#: includes/admin/class-mp-ajax.php:256 +#: includes/admin/class-mp-products-admin.php:1593 +#: includes/admin/class-mp-products-admin.php:2077 +#: includes/admin/class-mp-products-admin.php:2348 +msgid "End Date (if applicable)" +msgstr "Fecha de finalización (si corresponde)" + +#: includes/admin/class-mp-ajax.php:255 +#: includes/admin/class-mp-products-admin.php:1589 +#: includes/admin/class-mp-products-admin.php:2072 +msgid "Start Date (if applicable)" +msgstr "Fecha de inicio (si corresponde)" + +#: includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:1568 +msgid "Enter Sale Price" +msgstr "Ingrese el precio de venta" + +#: includes/admin/class-mp-ajax.php:250 +#: includes/admin/class-mp-products-admin.php:1547 +msgid "Set up a Sale for this Product" +msgstr "Configurar un precio especial para este producto" + +#: includes/admin/class-mp-ajax.php:206 includes/admin/class-mp-ajax.php:223 +msgid "Enter " +msgstr "Entrar" + +#: includes/admin/class-mp-ajax.php:193 +msgid "Browse" +msgstr "Vistazo" + +#: includes/admin/class-mp-ajax.php:184 includes/admin/class-mp-ajax.php:192 +msgid "http://" +msgstr "http://" + +#: includes/admin/class-mp-ajax.php:183 +msgid "External Product URL" +msgstr "URL externa del producto" + +#: includes/admin/class-mp-ajax.php:237 +msgid "Limit Per Order" +msgstr "Límite por orden" + +#: includes/admin/class-mp-ajax.php:177 +#: includes/admin/class-mp-products-admin.php:1520 +msgid "Enter Price" +msgstr "Ingrese el precio" + +#: includes/admin/class-mp-ajax.php:174 +#: includes/admin/class-mp-products-admin.php:1512 +msgid "Enter SKU" +msgstr "Ingresar SKU" + +#: includes/admin/class-mp-ajax.php:173 +msgid "(Stock Keeping Unit)" +msgstr "(Unidad de mantenimiento de stock)" + +#: includes/admin/class-mp-ajax.php:158 +msgid "Remove Image" +msgstr "Quita la imagen" + +#: includes/admin/class-mp-ajax.php:74 +msgid "Variation Draft" +msgstr "Borrador de variación" + +#: includes/admin/class-mp-admin.php:296 +#: includes/admin/class-mp-dashboard-widgets.php:70 +msgid "Please wait...saving in progress..." +msgstr "Por favor espere ... guardando en progreso ..." + +#: includes/admin/class-mp-admin.php:295 +#: includes/admin/class-mp-dashboard-widgets.php:69 +msgid "Input is required" +msgstr "Se requiere entrada" + +#: includes/admin/class-mp-admin.php:294 +#: includes/admin/class-mp-dashboard-widgets.php:68 +msgid "Valid number is required" +msgstr "Se requiere un número válido" + +#: includes/admin/class-mp-admin.php:292 +#: includes/admin/class-mp-dashboard-widgets.php:66 +msgid "Delete %s product variant" +msgstr "Borrar %s variante de producto" + +#: includes/admin/class-mp-admin.php:291 +#: includes/admin/class-mp-dashboard-widgets.php:65 +msgid "Delete %s product variants" +msgstr "Borrar %s variantes de producto" + +#: includes/admin/class-mp-admin.php:290 +#: includes/admin/class-mp-dashboard-widgets.php:64 +msgid "Update inventory for %s product variant" +msgstr "Actualizar inventario para %s variante de producto" + +#: includes/admin/class-mp-admin.php:289 +#: includes/admin/class-mp-dashboard-widgets.php:63 +msgid "Update inventory for %s product variants" +msgstr "Actualizar inventario para %s variantes de producto" + +#: includes/admin/class-mp-admin.php:288 +#: includes/admin/class-mp-dashboard-widgets.php:62 +msgid "Update price for %s product variant" +msgstr "Precio de actualización para %s variante de producto" + +#: includes/admin/class-mp-admin.php:287 +#: includes/admin/class-mp-dashboard-widgets.php:61 +msgid "Update prices for %s product variants" +msgstr "Actualizar precios para %s variantes de producto" + +#: includes/admin/class-mp-admin.php:285 +#: includes/admin/class-mp-dashboard-widgets.php:59 +msgid "Creating variations, please wait..." +msgstr "Creando variaciones, por favor espera ..." + +#: includes/admin/class-mp-admin.php:96 +msgid "The following payment gateways have been deprecated, Cubepoints, Bitpay, iDEAL, Skrill, Google Checkout. If you were using one of these gateways, please setup a new payment gateway here." +msgstr "Las siguientes pasarelas de pago han quedado en desuso, Cubepoints, Bitpay, iDEAL, Skrill, Google Checkout. Si estaba utilizando una de estas puertas de enlace, configure una nueva puerta de enlace de pago here." + +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:61 +msgid "Packing Slip" +msgstr "Hoja de embalaje" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:71 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:71 +#: includes/common/class-mp-gdpr.php:399 includes/common/class-mp-order.php:872 +#: includes/common/helpers.php:164 includes/public/class-mp-checkout.php:1434 +msgid "Shipping Address" +msgstr "Dirección de Envío" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:66 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:66 +#: includes/common/class-mp-gdpr.php:392 includes/common/class-mp-order.php:864 +#: includes/common/helpers.php:163 includes/public/class-mp-checkout.php:1427 +msgid "Billing Address" +msgstr "Dirección de Envio" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:61 +msgid "Invoice" +msgstr "Factura" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:258 +msgid "Shipping Email: %s" +msgstr "Correo electrónico de envío: %s" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:256 +msgid "Email: %s" +msgstr "Email: %s" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:235 +msgid "Payment Method: %s" +msgstr "Método de pago: %s" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:79 +msgid "The dir %s not exist or not writeable" +msgstr "La dir %s no existe o no se puede escribir" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Packing Slip" +msgstr "Boleta de embalaje PDF" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Invoice" +msgstr "Factura en PDF" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:239 +msgid "Shop header/logo" +msgstr "Tienda encabezado / logo" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:233 +msgid "Choose a template" +msgstr "Elige una plantilla" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:226 +msgid "Template Settings" +msgstr "Ajustes de plantilla" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:221 +msgid "Disable automatic creation/attachment of invoices when only free products are ordered" +msgstr "Deshabilite la creación / el archivo automático de facturas cuando solo se piden productos gratuitos" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:220 +msgid "Disable for free products" +msgstr "Deshabilitar para productos gratis" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:216 +msgid "Attach invoice to" +msgstr "Adjuntar factura a" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:214 +msgid "Customer Order Shipped email" +msgstr "Correo electrónico de pedido del cliente enviado" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:212 +msgid "Customer New Order email" +msgstr "Nuevo pedido del cliente email" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:211 +msgid "Admin New Order email" +msgstr "Administración email de nuevo pedido" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:206 +msgid "download" +msgstr "descargar" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:205 +msgid "How do you want to view the PDF?" +msgstr "¿Cómo quieres ver el PDF?" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:203 +msgid "Open the PDF in a new browser tab/window" +msgstr "Abra el PDF en una nueva pestaña / ventana del navegador" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:202 +msgid "Download the PDF" +msgstr "Descarga el PDF" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:158 +msgid "Export PDF" +msgstr "Exportar PDF" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:103 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:106 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:109 +msgid "You can't download this order invoice" +msgstr "No puedes descargar esta factura de pedido" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:76 +msgid "Invalid Request" +msgstr "Solicitud no válida" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:72 +msgid "Order not exist!" +msgstr "¡La orden no existe!" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:67 +msgid "Invalid ID" +msgstr "Identificación invalida" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1293 +msgid "Coupon added successfully" +msgstr "Cupón agregado exitosamente" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1292 +msgid "Please enter a code" +msgstr "Por favor, ingrese un código" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1247 +msgid "No end" +msgstr "Sin fin" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1200 +msgid "Valid Dates" +msgstr "Fechas válidas" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1195 +msgid "Code" +msgstr "Código" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1027 +msgid "No Coupons found in Trash" +msgstr "No se encontraron cupones en la papelera" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1026 +msgid "No Coupons Found" +msgstr "No se encontraron cupones" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1025 +msgid "Search Coupons" +msgstr "Buscar cupones" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1024 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1028 +msgid "View Coupon" +msgstr "Ver cupón" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1023 +msgid "New Coupon" +msgstr "Nuevo cupón" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1020 +msgid "Create New Coupon" +msgstr "Crear nuevo cupón" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1017 +msgid "Manage Coupons" +msgstr "Administrar cupones" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1002 +msgid "An error occurred while removing your coupon. Please try again." +msgstr "Se produjo un error al retirar su cupón. Inténtalo de nuevo." + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:964 +msgid "Coupon can't be applied to this cart" +msgstr "El cupón no se puede aplicar a este carrito." + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:951 +msgid "Invalid coupon code" +msgstr "Código de cupón inválido" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:794 +msgid "Help Text" +msgstr "Texto de ayuda" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:789 +msgid "Form Title" +msgstr "Título del formulario" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:783 +msgid "Coupons Settings" +msgstr "Configuración de cupones" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:764 +msgid "End Date" +msgstr "Fecha final" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:758 +msgid "Does coupon have an end date?" +msgstr "¿El cupón tiene una fecha de finalización?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:696 +msgid "Select Products" +msgstr "Productos seleccionados" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:688 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:723 +#: includes/common/payment-gateways/paypal-payflow.php:402 +msgid "User" +msgstr "Usuario" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:638 +msgid "Max Uses" +msgstr "Usos máximos" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:636 +msgid "Enter the maximum number of times this coupon can be used." +msgstr "Ingrese el número máximo de veces que se puede usar este cupón." + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:623 +msgid "Leave blank to allow all other coupons." +msgstr "Deje en blanco para permitir todos los otros cupones." + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:622 +msgid "Select combinable coupons" +msgstr "Seleccione cupones combinables" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:618 +msgid "Can this coupon be combined with other coupons?" +msgstr "¿Se puede combinar este cupón con otros cupones?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:613 +msgid "Apply to each applicable item once per cart" +msgstr "Aplicar a cada artículo aplicable una vez por carrito" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:612 +msgid "Apply to each applicable item and quantity ordered" +msgstr "Aplicar a cada artículo aplicable y cantidad pedida" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:609 +msgid "How should the discount amount be applied?" +msgstr "¿Cómo se debe aplicar el monto del descuento?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:605 +msgid "Discount Amount" +msgstr "Importe de descuento" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:604 +msgid "Value must either be a decimal number or a percentage" +msgstr "El valor debe ser un número decimal o un porcentaje" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:602 +msgid "If you would like to give a percentage-based discount make sure to include the percent (%) symbol. Otherwise, the discount will be applied as a fixed amount off." +msgstr "Si desea otorgar un descuento basado en porcentajes, asegúrese de incluir el símbolo de porcentaje (%). De lo contrario, el descuento se aplicará como una cantidad fija de descuento." + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:595 +msgid "Letters and Numbers only." +msgstr "Letras y numeros solamente. " + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:589 +msgid "Coupon Settings" +msgstr "Ajustes de cupones" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:447 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:795 +msgid "More than one code? That's OK! Just be sure to enter one at a time." +msgstr "Más de un código? ¡Está bien! Solo asegúrate de ingresar uno a la vez." + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:444 +msgid "Apply Code" +msgstr "Aplica el código" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:314 +msgid "Coupon Discounts" +msgstr "Cupones de Descuentos " + +#: includes/addons/class-mp-addons-list-table.php:89 +msgid "1 add-on disabled" +msgid_plural "%s add-ons disabled" +msgstr[0] "1 complemento deshabilitado" +msgstr[1] "%s complementos deshabilitado" + +#: includes/addons/class-mp-addons-list-table.php:84 +msgid "1 add-on enabled" +msgid_plural "%s add-ons enabled" +msgstr[0] "1 complemento habilitado" +msgstr[1] "%s complementos habilitados" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Disabled" +msgstr "Desactivado" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Enable add-on" +msgstr "Habilitar complemento" + +#: includes/addons/class-mp-addons-list-table.php:45 +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:129 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:67 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:135 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:168 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:202 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:263 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:296 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:330 +msgid "Enabled" +msgstr "Habilitado" + +#: includes/addons/class-mp-addons-list-table.php:45 +msgid "Disable add-on" +msgstr "Deshabilitar complemento" + +#: includes/addons/class-mp-addons-list-table.php:34 +msgid "Disable" +msgstr "Inhabilitar" + +#: includes/addons/class-mp-addons-list-table.php:33 +msgid "Enable" +msgstr "Habilitar" + +#: includes/addons/class-mp-addons-list-table.php:21 +#: includes/admin/class-mp-products-admin.php:2280 +#: includes/common/class-mp-product.php:2916 +msgid "Description" +msgstr "Descripción" + +#: includes/common/template-functions.php:2889 +#: includes/multisite/template-functions.php:407 +msgid "Popularity (Least Popular - Most Popular)" +msgstr "Popularidad (Menos popular - Más popular)" + +#: includes/common/template-functions.php:2888 +#: includes/multisite/template-functions.php:406 +msgid "Popularity (Most Popular - Least Popular)" +msgstr "Popularidad (Los más populares - Los menos populares)" + +#: includes/common/template-functions.php:2885 +#: includes/multisite/template-functions.php:403 +msgid "Name (Z-A)" +msgstr "Nombre (Z-A)" + +#: includes/common/template-functions.php:2884 +#: includes/multisite/template-functions.php:402 +msgid "Name (A-Z)" +msgstr "Nombre (A-Z)" + +#: includes/common/template-functions.php:2883 +#: includes/multisite/template-functions.php:401 +msgid "Release Date (Oldest to Latest)" +msgstr "Fecha de lanzamiento (del más antiguo al más reciente)" + +#: includes/common/template-functions.php:2882 +#: includes/multisite/template-functions.php:400 +msgid "Release Date (Latest to Oldest)" +msgstr "Fecha de lanzamiento (de más reciente a más antiguo)" + +#: includes/admin/class-mp-dashboard-widgets.php:284 +msgid "paid" +msgstr "pagado" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "One Time Pickup" +msgstr "Recoger una vez" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Customer Counter" +msgstr "Contador de clientes" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Daily Pickup" +msgstr "Recogida diaria" + +#: includes/common/shipping-modules/mp-ups.php:182 +msgid "For the most accurate rates, please select the appropriate pick up type for your business." +msgstr "Para obtener las tarifas más precisas, seleccione el tipo de recogida adecuado para su negocio." + +#: includes/admin/class-mp-admin.php:374 +msgid "Page saved." +msgstr "Página guardada." + +#: includes/admin/class-mp-admin.php:370 +msgid "Custom field deleted." +msgstr "Campo personalizado eliminado." + +#: includes/admin/class-mp-admin.php:369 +msgid "Custom field updated." +msgstr "Campo personalizado actualizado." + +#: includes/common/payment-gateways/_bitpay.php:541 +msgid "%s - The payment request expired, - %s" +msgstr "%s - La solicitud de pago expiró, - %s" + +#: includes/common/payment-gateways/_bitpay.php:536 +msgid "%s - The payment not credited in merchants bitpay account, action required. Bitpay invoice status - %s" +msgstr "%s - El pago no acreditado en la cuenta de bitpay de los comerciantes, acción requerida. Estado de la factura Bitpay - %s" + +#: includes/common/payment-gateways/_bitpay.php:252 +msgid "If enabled, you will recieve an email for each status update on payment." +msgstr "Si está habilitado, recibirá un correo electrónico para cada actualización de estado en el pago." + +#: includes/common/payment-gateways/_bitpay.php:240 +msgid "Speed at which the bitcoin transaction registers as \"confirmed\" to the store. This overrides your merchant settings on the Bitpay website." +msgstr "Velocidad a la que la transacción de bitcoin se registra como \"confirmada\" en la tienda. Esto anula la configuración de su comerciante en el sitio web de Bitpay." + +#: includes/common/payment-gateways/_bitpay.php:238 +msgid "Transaction Speed" +msgstr "Velocidad de transacción" + +#: includes/common/payment-gateways/_bitpay.php:244 +msgid "Low" +msgstr "Bajo" + +#: includes/common/payment-gateways/_bitpay.php:243 +msgid "Medium" +msgstr "Medio" + +#: includes/common/payment-gateways/_bitpay.php:242 +msgid "High" +msgstr "Alto" + +#: includes/common/payment-gateways/_bitpay.php:177 +#: includes/common/payment-gateways/_bitpay.php:517 +#: includes/common/payment-gateways/_bitpay.php:522 +msgid "%s - The payment request is under process. Bitpay invoice status - %s" +msgstr "%s - La solicitud de pago está en proceso. Estado de la factura Bitpay - %s" + +#: includes/common/payment-gateways/_bitpay.php:175 +#: includes/common/payment-gateways/_bitpay.php:527 +msgid "%s - The payment request has been processed - %s" +msgstr "%s - La solicitud de pago ha sido procesada - %s" + +#: includes/common/payment-gateways/_bitpay.php:150 +#: includes/common/payment-gateways/_bitpay.php:294 +msgid "Incorrect order invoice, please contact site administrator" +msgstr "Factura de pedido incorrecta, por favor contacte al administrador del sitio." + +#: includes/common/payment-gateways/_bitpay.php:141 +msgid "We could not verify order invoice details, please try again or contact site administrator for help" +msgstr "No pudimos verificar los detalles de la factura del pedido. Inténtelo de nuevo o comuníquese con el administrador del sitio para obtener ayuda." + +#: includes/common/payment-gateways/simplify.php:81 +msgid "Login to Simplify to get your API credentials. Enter your test credentials, then live ones when ready." +msgstr "Inicie sesión para Simplify a get your API credentials. Ingrese sus credenciales de prueba, luego en vivo cuando esté listo." + +#: includes/common/payment-gateways/paypal-express.php:605 +#: includes/common/payment-gateways/paypal-express.php:647 +msgid "Express Checkout is PayPal's premier checkout solution, which streamlines the checkout process for buyers and keeps them on your site after making a purchase. Unlike PayPal Pro, there are no additional fees to use Express Checkout, though you may need to do a free upgrade to a business account. More Info »" +msgstr "Express Checkout es la solución de pago principal de PayPal, que agiliza el proceso de pago para los compradores y los mantiene en su sitio después de realizar una compra. A diferencia de PayPal Pro, no hay cargos adicionales por el uso de Pago exprés, aunque es posible que deba realizar una actualización gratuita a una cuenta comercial. More Info »" + +#. Plugin URI of the plugin/theme +msgid "https://premium.wpmudev.org/project/e-commerce/" +msgstr "https://premium.wpmudev.org/project/e-commerce/" + +#. Author of the plugin/theme +msgid "WPMU DEV" +msgstr "WPMU DEV" + +#: includes/admin/class-mp-orders-admin.php:541 +#: includes/admin/class-mp-orders-admin.php:543 +msgid "Tracking Number" +msgstr "El número de rastreo" + +#: includes/common/class-mp-order.php:805 +#: includes/common/payment-gateways/stripe.php:336 +#: includes/public/class-mp-checkout.php:402 +msgid "Country" +msgstr "País" + +#: includes/common/class-mp-order.php:784 +#: includes/common/payment-gateways/stripe.php:338 +msgid "City" +msgstr "Ciudad" + +#: includes/common/class-mp-order.php:780 +msgid "Address 2" +msgstr "Dirección 2" + +#: includes/common/payment-gateways/stripe.php:340 +msgid "Address" +msgstr "Dirección" + +#: includes/common/class-mp-cart.php:752 includes/common/class-mp-gdpr.php:378 +msgid "Order Total" +msgstr "Total del pedido" + +#: includes/admin/class-mp-orders-admin.php:360 +msgid "Payment Total" +msgstr "Total de pago" + +#: includes/admin/class-mp-orders-admin.php:347 +msgid "Transaction ID" +msgstr "ID de transacción" + +#: includes/common/payment-gateways/wepay.php:207 +msgid "The WePay Card Token was not generated correctly. Please go back and try again." +msgstr "El token de la tarjeta WePay no se generó correctamente. Por favor, regrese y vuelva a intentarlo." + +#: includes/common/payment-gateways/wepay.php:186 +#: includes/common/shipping-modules/mp-fedex.php:283 +msgid "Account ID" +msgstr "ID de la cuenta" + +#: includes/common/payment-gateways/wepay.php:179 +msgid "Access Token" +msgstr "Token de acceso" + +#: includes/common/payment-gateways/wepay.php:172 +msgid "Client Secret" +msgstr "Secreto del cliente" + +#: includes/common/payment-gateways/wepay.php:165 +msgid "Client ID" +msgstr "Identificación del cliente" + +#: includes/common/payment-gateways/wepay.php:159 +msgid "You must login to WePay to get your API credentials. Make sure to check \"Tokenize credit cards\" option under \"API Keys\" section of your WePay app." +msgstr "Debes iniciar sesión en WePay para get your API credentials. Asegúrese de marcar la opción \"Tarjetas de crédito Tokenize\" en la sección \"Claves de API\" de su WePay app." + +#: includes/common/payment-gateways/wepay.php:154 +msgid "When in live mode it is recommended to use SSL certificate setup for the site where the checkout form will be displayed." +msgstr "Cuando esté en modo en vivo, se recomienda utilizar la configuración del certificado SSL para el sitio donde se mostrará el formulario de pago." + +#: includes/common/payment-gateways/wepay.php:148 +msgid "Donation" +msgstr "Donación" + +#: includes/common/payment-gateways/wepay.php:147 +msgid "Event" +msgstr "Evento" + +#: includes/common/payment-gateways/wepay.php:146 +msgid "Personal" +msgstr "Personal" + +#: includes/common/payment-gateways/wepay.php:145 +msgid "Service" +msgstr "Servicio" + +#: includes/common/payment-gateways/wepay.php:144 +msgid "Goods" +msgstr "Bienes" + +#: includes/common/payment-gateways/wepay.php:141 +msgid "Choose type of payments" +msgstr "Elija el tipo de pagos" + +#: includes/common/payment-gateways/wepay.php:140 +msgid "Checkout Type" +msgstr "Tipo de pago" + +#: includes/common/payment-gateways/wepay.php:134 +msgid "Staging" +msgstr "Staging" + +#: includes/common/payment-gateways/wepay.php:131 +msgid "Choose STAGING if you have registered the app on stage.wepay.com, or PRODUCTION if you registered on www.wepay.com" +msgstr "Seleccione STAGING si ha registrado la aplicación en stage.wepay.com, o PRODUCTION si se ha registrado en www.wepay.com" + +#: includes/common/payment-gateways/wepay.php:36 +#: includes/common/payment-gateways/wepay.php:299 +msgid "WePay" +msgstr "WePay" + +#: includes/common/payment-gateways/_payway.php:366 +msgid "Rejected - A payment was rejected." +msgstr "Rechazado: se rechazó su pago." + +#: includes/common/payment-gateways/_payway.php:360 +msgid "Failed - A payment was rejected due to an error." +msgstr "Fallido: se rechazó su pago debido a un error." + +#: includes/common/payment-gateways/_payway.php:342 +msgid "PayWay balance, Credit Card, or Instant Transfer" +msgstr "Saldo de PayWay, tarjeta de crédito o transferencia instantánea" + +#: includes/common/payment-gateways/_payway.php:298 +msgid "Full path of the cacerts.crt file" +msgstr "Ruta completa del archivo cacerts.crt" + +#: includes/common/payment-gateways/_payway.php:284 +msgid "User Name" +msgstr "Nombre de usuario" + +#: includes/common/payment-gateways/_payway.php:277 +msgid "Biller Code" +msgstr "Código de facturación" + +#: includes/common/payment-gateways/_payway.php:273 +msgid "Log Directory" +msgstr "Directorio de registro" + +#: includes/common/payment-gateways/_payway.php:266 +msgid "Encryption Key" +msgstr "Clave de encriptación" + +#: includes/common/payment-gateways/_payway.php:60 +msgid "Your PayWay transaction has been canceled." +msgstr "Su transacción PayWay ha sido cancelada." + +#: includes/common/payment-gateways/_payway.php:40 +#: includes/common/payment-gateways/_payway.php:41 +msgid "PayWay" +msgstr "PayWay" + +#: includes/common/payment-gateways/paypal-chained-payments.php:862 +msgid "You must register this application with PayPal using your business account login to get an Application ID that will work with your API credentials. A bit of a hassle, but worth it! In the near future we will be looking for ways to simplify this process. Register then submit your application while logged in to the developer portal. Note that you do not need an Application ID for testing in sandbox mode. More Information »" +msgstr "Debe registrar esta aplicación en PayPal usando el inicio de sesión de su cuenta comercial para obtener un ID de aplicación que funcione con sus credenciales de API. Un poco molesto, pero vale la pena! En un futuro cercano, buscaremos formas de simplificar este proceso. Regístrese luego envíe su solicitud Mientras está conectado al portal de desarrolladores. Tenga en cuenta que no necesita una ID de aplicación para realizar pruebas en el modo sandbox. Más información »" + +#: includes/common/payment-gateways/paypal-chained-payments.php:818 +#: includes/common/payment-gateways/paypal-chained-payments.php:840 +#: includes/common/payment-gateways/paypal-express.php:705 +msgid "You must login to PayPal and create an API signature to get your credentials. Instructions »" +msgstr "Debe iniciar sesión en PayPal y crear una firma de API para obtener sus credenciales. Instructions »" + +#: includes/common/payment-gateways/paypal-payflow.php:378 +msgid "Use Payflow payment gateway to accept online payments using your Internet merchant account and processing network. PayPal Payflow Pro is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway." +msgstr "Use la pasarela de pago de Payflow para aceptar pagos en línea usando su cuenta de comerciante de Internet y la red de procesamiento. PayPal Payflow Pro es una solución de procesamiento de pagos personalizable que le da al comerciante el control sobre todos los pasos para procesar una transacción. Se requiere un certificado SSL para usar esta puerta de enlace." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:595 +msgid "Tags Only" +msgstr "Solo etiquetas" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:594 +msgid "Category Only" +msgstr "Solo Categoría" + +#: includes/admin/class-mp-shortcode-builder.php:795 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:593 +msgid "Category & Tags" +msgstr "Categoría & Etiquetas" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:591 +msgid "Relate Products By" +msgstr "Relacionar productos por" + +#: includes/admin/class-mp-shortcode-builder.php:1008 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:455 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:751 +msgid "Right" +msgstr "Derecha" + +#: includes/admin/class-mp-shortcode-builder.php:1007 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:454 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:749 +msgid "Left" +msgstr "Izquierda" + +#: includes/admin/class-mp-shortcode-builder.php:1009 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:750 +msgid "Center" +msgstr "Centro" + +#: marketpress.php:273 +msgid "Orders from your e-commerce store." +msgstr "Los pedidos de su tienda de comercio electrónico." + +#: marketpress.php:231 +msgid "Products for your e-commerce store." +msgstr "Productos para tu tienda de comercio electrónico." + +#: marketpress.php:222 +msgid "Edit Product" +msgstr "Editar producto" + +#. Description of the plugin/theme +msgid "The complete WordPress ecommerce plugin - works perfectly with BuddyPress and Multisite too to create a social marketplace, where you can take a percentage! Activate the plugin, adjust your settings then add some products to your store." +msgstr "El complemento de comercio electrónico de WordPress completo: funciona perfectamente con BuddyPress y Multisite también para crear un mercado social, ¡donde puedes tomar un porcentaje! Active el complemento, ajuste su configuración y luego agregue algunos productos a su tienda." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:272 +msgid "Beside" +msgstr "Junto a" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:271 +msgid "Above" +msgstr "Encima" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:268 +msgid "Pin Count" +msgstr "Recuento de pin" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:261 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:287 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:318 +msgid "All View" +msgstr "Todo visto" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:260 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:286 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:317 +msgid "Single View" +msgstr "Vista única" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:259 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:285 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:316 +msgid "Off" +msgstr "Apagado" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:578 +msgid "Related Product Limit" +msgstr "Límite de productos relacionados" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:681 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1201 +msgid "Applies To" +msgstr "Se aplica a" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:685 +msgid "All Products" +msgstr "Todos los productos" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:487 +msgid "The label shown for the tax line item in the cart. Taxes, VAT, GST, etc." +msgstr "La etiqueta que se muestra para el artículo de la línea de impuestos en el carrito. Impuestos, IVA, GST, etc." + +#: includes/admin/class-mp-setup-wizard.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:485 +msgid "Tax Label" +msgstr "Etiqueta de impuestos" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:81 +msgid "Apply" +msgstr "Aplicar" + +#: includes/admin/class-mp-admin.php:192 +msgid "MarketPress Instructions" +msgstr "Instrucciones de MarketPress" + +#: includes/admin/class-mp-products-admin.php:1954 +#: includes/admin/class-mp-products-admin.php:2194 includes/common/data.php:62 +#: includes/common/helpers.php:150 +msgid "Taxes" +msgstr "Impuestos" + +#: includes/admin/class-mp-products-admin.php:1417 +#: includes/common/class-mp-product.php:2900 +msgid "Related Products" +msgstr "Productos relacionados" + +#: includes/common/shipping-modules/mp-usps.php:282 +#: includes/common/shipping-modules/mp-usps.php:316 +msgid "@ Max" +msgstr "@ Max" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "(3-5 days)" +msgstr "(3-5 días)" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "Priority Mail Express International Padded Flat Rate Envelope" +msgstr "Sobre de tarifa plana internacional urgente de Priority Mail Express" + +#: includes/common/shipping-modules/mp-usps.php:92 +msgid "Priority Mail Padded Flat Rate Envelope" +msgstr "Sobre de tarifa fija Priority Mail Padded de correo prioritario" + +#: includes/common/shipping-modules/mp-pickup.php:171 +#: includes/common/shipping-modules/mp-pickup.php:247 +msgid "In Store" +msgstr "En tienda" + +#: includes/common/shipping-modules/mp-pickup.php:159 +msgid "Pickup Fee" +msgstr "Tarifa de recogida" + +#: includes/common/shipping-modules/mp-pickup.php:141 +msgid "This option allows your customers to indicate that they will pick-up their order at your place of business." +msgstr "Esta opción permite a sus clientes indicar que recogerán su pedido en su lugar de negocios." + +#: includes/common/shipping-modules/mp-pickup.php:60 +#: includes/common/shipping-modules/mp-pickup.php:76 +#: includes/common/shipping-modules/mp-pickup.php:176 +msgid "Pickup Instructions" +msgstr "Instrucciones de recogida" + +#: includes/common/shipping-modules/mp-pickup.php:24 +#: includes/common/shipping-modules/mp-pickup.php:254 +msgid "Pickup" +msgstr "Recoger" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping - 0.00" +msgstr "Envío gratuito - 0.00" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:256 +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:440 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping" +msgstr "Envío gratuito " + +#: includes/common/shipping-modules/mp-fedex.php:309 +msgid "Your Packaging" +msgstr "Su Paquete" + +#: includes/common/shipping-modules/mp-fedex.php:301 +msgid "Station" +msgstr "Estación" + +#: includes/common/shipping-modules/mp-fedex.php:300 +msgid "Request Courier" +msgstr "Solicitud de mensajería" + +#: includes/common/shipping-modules/mp-fedex.php:299 +msgid "Drop Box" +msgstr "Drop Box" + +#: includes/common/shipping-modules/mp-fedex.php:298 +msgid "Business Service Center" +msgstr "Centro de servicios de negocios" + +#: includes/common/shipping-modules/mp-fedex.php:297 +msgid "Regular Pickup" +msgstr "Recogida regular" + +#: includes/common/payment-gateways/wepay.php:135 +#: includes/common/shipping-modules/mp-fedex.php:264 +msgid "Production" +msgstr "Producción" + +#: includes/common/payment-gateways/simplify.php:207 +msgid "Simplify Commerce by MasterCard" +msgstr "Simplify Commerce by MasterCard" + +#: includes/common/payment-gateways/simplify.php:104 +msgid "When in live mode, although it is not required, Simplify recommends you have an SSL certificate." +msgstr "Cuando está en modo directo, aunque no es obligatorio, Simplify recomienda que tenga un certificado SSL." + +#: includes/common/payment-gateways/paymill.php:183 +#: includes/common/payment-gateways/simplify.php:87 +msgid "Public Key" +msgstr "Public Key" + +#: includes/common/payment-gateways/paymill.php:175 +#: includes/common/payment-gateways/simplify.php:94 +msgid "Private Key" +msgstr "Llave privada" + +#: includes/common/payment-gateways/simplify.php:71 +msgid "Simplify helps merchants to accept online payments from Mastercard, Visa, American Express, Discover, JCB, and Diners Club cards. It's that simple. We offer a merchant account and payment gateway in a single, secure package so you can concentrate on what really matters to your business. Only supports USD currently." +msgstr "Simplify ayuda a los comerciantes a aceptar pagos en línea de las tarjetas Mastercard, Visa, American Express, Discover, JCB y Diners Club. Es así de simple. Ofrecemos una cuenta de comerciante y una pasarela de pago en un solo paquete seguro para que pueda concentrarse en lo que realmente importa para su negocio. Solo soporta USD actualmente." + +#: includes/common/payment-gateways/wepay.php:267 +msgid "%1$s" +msgstr "%1$s" + +#: includes/common/payment-gateways/simplify.php:151 +msgid "The Simplify Token was not generated correctly. Please go back and try again." +msgstr "El token de Simplify no se generó correctamente. Por favor, regrese y vuelva a intentarlo." + +#: includes/common/payment-gateways/simplify.php:18 +msgid "Simplify" +msgstr "Simplify" + +#: includes/common/payment-gateways/pin.php:255 +msgid "%1$s Card %2$s" +msgstr "%1$s Tarjeta %2$s" + +#: includes/common/payment-gateways/pin.php:211 +msgid "The PIN Token was not generated correctly. Please go back and try again." +msgstr "El token de PIN no se generó correctamente. Por favor, regrese y vuelva a intentarlo." + +#: includes/common/payment-gateways/pin.php:187 +msgid "Selecting a currency other than currency supported by PIN may cause problems at checkout." +msgstr "La selección de una moneda diferente a la moneda admitida por PIN puede causar problemas al momento de pagar." + +#: includes/common/payment-gateways/pin.php:164 +msgid "You must login to PIN to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "Debes iniciar sesión en PIN para obtener sus credenciales API. Puede ingresar sus claves de prueba, luego las vivas cuando esté listo." + +#: includes/common/payment-gateways/pin.php:158 +msgid "When in live mode PIN recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "Cuando esté en modo en vivo, PIN recomienda que tenga una configuración de certificado SSL para el sitio donde se mostrará el formulario de pago." + +#: includes/common/payment-gateways/pin.php:45 +#: includes/common/payment-gateways/pin.php:286 +msgid "PIN" +msgstr "PIN" + +#: includes/common/payment-gateways/paypal-express.php:830 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer" +msgstr "Un pago se revirtió debido a un contra cargo u otro tipo de reversión. Los fondos se eliminaron del saldo de su cuenta y se devolvieron al comprador" + +#: includes/common/payment-gateways/paypal-chained-payments.php:534 +#: includes/common/payment-gateways/paypal-express.php:865 +msgid "The payment is pending" +msgstr "El pago esta pendiente" + +#: includes/common/payment-gateways/paymill.php:235 +msgid "The Paymill Token was not generated correctly. Please go back and try again." +msgstr "El token de Paymill no se generó correctamente. Por favor, regrese y vuelva a intentarlo." + +#: includes/common/payment-gateways/paymill.php:169 +msgid "You must login to Paymill to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "Debes iniciar sesión en Paymill para obtener sus credenciales API. Puede ingresar sus claves de prueba, luego las vivas cuando esté listo." + +#: includes/common/payment-gateways/paymill.php:45 +#: includes/common/payment-gateways/paymill.php:308 +msgid "Paymill" +msgstr "Paymill" + +#: includes/common/payment-gateways/paymill.php:90 +msgid "Invalid cardholder" +msgstr "Titular de tarjeta inválido" + +#: includes/common/payment-gateways/paymill.php:89 +msgid "Card is no longer valid or has expired" +msgstr "La tarjeta ya no es válida o ha caducado." + +#: includes/common/payment-gateways/paymill.php:88 +msgid "Please enter a valid Card CVC" +msgstr "Por favor ingrese una tarjeta válida de CVC" + +#: includes/common/payment-gateways/paymill.php:87 +msgid "Please choose a valid Expiration Date." +msgstr "Por favor, elija una fecha de caducidad válida." + +#: includes/common/payment-gateways/skrill.php:99 +#: includes/common/payment-gateways/skrill.php:100 +msgid "Skrill (Moneybookers)" +msgstr "Skrill (Moneybookers)" + +#: includes/common/shipping-modules/mp-weight-rate.php:24 +#: includes/common/shipping-modules/mp-weight-rate.php:292 +msgid "Weight Rate" +msgstr "Tasa de peso" + +#: includes/common/shipping-modules/mp-usps.php:303 +msgid "USPS Offered International Services" +msgstr "USPS Servicios internacionales ofrecidos" + +#: includes/common/shipping-modules/mp-usps.php:270 +msgid "USPS Offered Domestic Services" +msgstr "USPS Servicios domésticos ofrecidos" + +#: includes/common/shipping-modules/mp-usps.php:264 +msgid "USPS Settings" +msgstr "USPS Ajustes" + +#: includes/common/shipping-modules/mp-usps.php:145 +msgid "Flat Rate Large" +msgstr "Tarifa plana grande" + +#: includes/common/shipping-modules/mp-usps.php:140 +msgid "Flat Rate Medium 2" +msgstr "Tarifa plana mediana 2" + +#: includes/common/shipping-modules/mp-usps.php:135 +msgid "Flat Rate Medium 1" +msgstr "Tarifa plana mediana 1" + +#: includes/common/shipping-modules/mp-usps.php:130 +msgid "Flat Rate Small" +msgstr "Tarifa plana pequeña" + +#: includes/common/shipping-modules/mp-usps.php:118 +msgid "First Class International Parcel" +msgstr "Paquete Internacional de Primera Clase" + +#: includes/common/shipping-modules/mp-usps.php:114 +msgid "Priority Mail International Small Flat Rate Boxes" +msgstr "Priority Mail International Cajas pequeñas de tarifa plana" + +#: includes/common/shipping-modules/mp-usps.php:112 +msgid "Priority Mail International Medium Flat Rate Boxes" +msgstr "Priority Mail International Cajas de tarifa plana mediana" + +#: includes/common/shipping-modules/mp-usps.php:110 +msgid "Priority Mail International Large Flat Rate Boxes" +msgstr "Priority Mail International Cajas grandes de tarifa plana" + +#: includes/common/shipping-modules/mp-usps.php:108 +msgid "Priority Mail International" +msgstr "Priority Mail International" + +#: includes/common/shipping-modules/mp-usps.php:106 +msgid "Express Mail International Flat Rate Boxes" +msgstr "Express Mail International Cajas de tarifa plana" + +#: includes/common/shipping-modules/mp-usps.php:104 +msgid "Express Mail International" +msgstr "Express Mail International" + +#: includes/common/shipping-modules/mp-usps.php:98 +msgid "Library Mail" +msgstr "Library Mail" + +#: includes/common/shipping-modules/mp-usps.php:96 +msgid "Media Mail" +msgstr "Media Mail" + +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "First-Class Mail Parcel" +msgstr "First-Class Mail Parcel" + +#: includes/common/shipping-modules/mp-usps.php:90 +msgid "Priority Mail Small Flat Rate Box" +msgstr "Priority Mail Caja pequeña de tarifa plana" + +#: includes/common/shipping-modules/mp-usps.php:88 +msgid "Priority Mail Medium Flat Rate Box" +msgstr "Priority Mail Caja de tarifa plana mediana" + +#: includes/common/shipping-modules/mp-usps.php:86 +#: includes/common/shipping-modules/mp-usps.php:88 +#: includes/common/shipping-modules/mp-usps.php:90 +#: includes/common/shipping-modules/mp-usps.php:92 +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "(2-4 days)" +msgstr "(2-4 dias)" + +#: includes/common/shipping-modules/mp-usps.php:86 +msgid "Priority Mail Large Flat Rate Box" +msgstr "Priority Mail Caja grande de tarifa plana" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "(2-4) days" +msgstr "(2-4) dias" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "Priority Mail" +msgstr "Priority Mail" + +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "Express Mail Sunday/Holiday Delivery Flat Rate Boxes" +msgstr "Cajas de entrega fija de Express Mail de domingo / día festivo" + +#: includes/common/shipping-modules/mp-usps.php:80 +msgid "Express Mail Flat Rate Boxes Hold For Pickup" +msgstr "Express Mail Retención de cajas de tarifa plana para recoger" + +#: includes/common/shipping-modules/mp-usps.php:78 +msgid "Express Mail Flat Rate Boxes" +msgstr "Express Mail Cajas de tarifa plana" + +#: includes/common/shipping-modules/mp-usps.php:76 +msgid "Express Mail Sunday/Holiday Delivery" +msgstr "Express Mail Domingo / Entrega de vacaciones" + +#: includes/common/shipping-modules/mp-usps.php:74 +msgid "Express Mail Hold For Pickup" +msgstr "Express Mail Retener para recoger" + +#: includes/common/shipping-modules/mp-usps.php:72 +#: includes/common/shipping-modules/mp-usps.php:74 +#: includes/common/shipping-modules/mp-usps.php:76 +#: includes/common/shipping-modules/mp-usps.php:78 +#: includes/common/shipping-modules/mp-usps.php:80 +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "(1-2 days)" +msgstr "(1-2 días)" + +#: includes/common/shipping-modules/mp-usps.php:72 +msgid "Express Mail" +msgstr "Express Mail" + +#: includes/common/shipping-modules/mp-usps.php:67 +#: includes/common/shipping-modules/mp-usps.php:902 +msgid "USPS" +msgstr "USPS" + +#: includes/common/shipping-modules/mp-ups.php:534 +msgid "UPS (beta)" +msgstr "UPS (beta)" + +#: includes/common/shipping-modules/mp-ups.php:166 +msgid "Required if using negotiated rates" +msgstr "Requerido si se utilizan tarifas negociadas." + +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "Saver" +msgstr "Ahorrador" + +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "Worldwide Express Plus" +msgstr "Worldwide Express Plus" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "(Scheduled)" +msgstr "(Programado)" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "Standard" +msgstr "Estándar" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "(2-5 Days)" +msgstr "(2-5 Días)" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "Worldwide Expedited" +msgstr "En todo el mundo acelerado" + +#: includes/common/shipping-modules/mp-ups.php:54 +msgid "Worldwide Express" +msgstr "Expreso mundial" + +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "2nd Day Air AM" +msgstr "2do dia de aire AM" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "(1 Days)" +msgstr "(1 día)" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "Next Day Air Early AM" +msgstr "Mañana siguiente" + +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "Next Day Air Saver" +msgstr "Ahorro de aire al día siguiente" + +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "3 Day Select" +msgstr "Selección de 3 días" + +#: includes/common/shipping-modules/mp-ups.php:49 +msgid "Ground" +msgstr "Suelo" + +#: includes/common/shipping-modules/mp-ups.php:48 +msgid "2nd Day Air" +msgstr "2do dia aire" + +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "Next Day Air" +msgstr "Dia siguiente aire" + +#: includes/admin/class-mp-orders-admin.php:475 +#: includes/common/shipping-modules/mp-ups.php:43 +msgid "UPS" +msgstr "UPS" + +#: includes/common/shipping-modules/mp-table-rate.php:27 +#: includes/common/shipping-modules/mp-table-rate.php:318 +msgid "Table Rate" +msgstr "Tabla de tarifas" + +#: includes/common/shipping-modules/mp-table-quantity.php:71 +#: includes/common/shipping-modules/mp-table-quantity.php:77 +msgid "Shipping Cost: " +msgstr "Costo de envío:" + +#: includes/common/shipping-modules/mp-table-quantity.php:70 +#: includes/common/shipping-modules/mp-table-quantity.php:76 +msgid "If quantity is greater than:" +msgstr "Si la cantidad es mayor que:" + +#: includes/common/shipping-modules/mp-table-quantity.php:66 +msgid "Each band must be a higher price than the one above it." +msgstr "Cada banda debe ser un precio más alto que el de arriba." + +#: includes/common/shipping-modules/mp-table-quantity.php:56 +msgid "Number of Bands:" +msgstr "Número de bandas:" + +#: includes/common/shipping-modules/mp-table-quantity.php:53 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Each layer must be a higher quantity than the previous." +msgstr "Asegúrese de ingresar un precio de envío para cada opción o esos clientes pueden obtener el envío gratis. Cada capa debe ser una cantidad mayor que la anterior." + +#: includes/common/shipping-modules/mp-table-quantity.php:51 +msgid "Table Quantity Settings" +msgstr "Ajustes tabla de cantidades" + +#: includes/common/shipping-modules/mp-table-quantity.php:31 +msgid "Table Quantity" +msgstr "Tabla de cantidades " + +#: includes/common/shipping-modules/mp-flat-rate.php:135 +#: includes/common/shipping-modules/mp-table-rate.php:174 +#: includes/common/shipping-modules/mp-weight-rate.php:189 +msgid "European Union" +msgstr "Unión Europea" + +#: includes/common/shipping-modules/mp-flat-rate.php:123 +#: includes/common/shipping-modules/mp-table-rate.php:162 +#: includes/common/shipping-modules/mp-weight-rate.php:177 +msgid "United States" +msgstr "Estados Unidos" + +#: includes/common/shipping-modules/mp-flat-rate.php:111 +#: includes/common/shipping-modules/mp-table-rate.php:151 +#: includes/common/shipping-modules/mp-weight-rate.php:166 +msgid "In Country" +msgstr "En el pais" + +#: includes/common/shipping-modules/mp-flat-rate.php:146 +#: includes/common/shipping-modules/mp-table-rate.php:186 +#: includes/common/shipping-modules/mp-weight-rate.php:201 +msgid "International" +msgstr "Internacional" + +#: includes/common/shipping-modules/mp-flat-rate.php:101 +#: includes/common/shipping-modules/mp-table-rate.php:141 +#: includes/common/shipping-modules/mp-weight-rate.php:156 +msgid "Canada" +msgstr "Canadá" + +#: includes/common/shipping-modules/mp-flat-rate.php:92 +#: includes/common/shipping-modules/mp-table-rate.php:132 +#: includes/common/shipping-modules/mp-weight-rate.php:147 +msgid "Hawaii and Alaska" +msgstr "Hawai y Alaska" + +#: includes/common/shipping-modules/mp-flat-rate.php:83 +#: includes/common/shipping-modules/mp-table-rate.php:123 +#: includes/common/shipping-modules/mp-weight-rate.php:138 +msgid "Lower 48 States" +msgstr "Los 48 estados" + +#: includes/common/shipping-modules/mp-flat-rate.php:64 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping." +msgstr "Asegúrese de ingresar un precio de envío para cada opción o esos clientes pueden obtener el envío gratis." + +#: includes/common/shipping-modules/mp-flat-rate.php:25 +#: includes/common/shipping-modules/mp-flat-rate.php:223 +msgid "Flat Rate" +msgstr "Tarifa plana" + +#: includes/common/shipping-modules/mp-fedex.php:761 +msgid "FedEx (beta)" +msgstr "FedEx (beta)" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Centimeters" +msgstr "Centimetros" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Inches" +msgstr "Pulgadas" + +#: includes/admin/class-mp-products-admin.php:1676 +#: includes/admin/class-mp-setup-wizard.php:547 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:166 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +msgid "Kilograms" +msgstr "Kilogramos" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:103 +msgid " %1$s - %2$s" +msgstr " %1$s - %2$s" + +#: includes/common/shipping-modules/mp-usps.php:358 +msgid "Max Weight per Box" +msgstr "Peso máximo por caja" + +#: includes/common/shipping-modules/mp-usps.php:356 +msgid "Box Dimensions" +msgstr "Dimensiones de la caja" + +#: includes/common/shipping-modules/mp-usps.php:354 +msgid "Box Name" +msgstr "Nombre de la caja" + +#: includes/common/shipping-modules/mp-usps.php:344 +msgid "Total weight selects the box size used for calculating Shipping costs." +msgstr "El peso total selecciona el tamaño de la caja utilizada para calcular los costos de envío." + +#: includes/common/shipping-modules/mp-usps.php:343 +msgid "For each box defined enter the maximum weight it can contain." +msgstr "Para cada casilla definida ingrese el peso máximo que puede contener." + +#: includes/common/shipping-modules/mp-usps.php:341 +msgid "Enter your standard box sizes as LengthxWidthxHeight" +msgstr "Introduzca sus tamaños de caja estándar como Longitud x Ancho x Altura" + +#: includes/common/shipping-modules/mp-fedex.php:386 +#: includes/common/shipping-modules/mp-ups.php:193 +#: includes/common/shipping-modules/mp-usps.php:234 +#: includes/common/shipping-modules/mp-usps.php:338 +msgid "Standard Boxes and Weight Limits" +msgstr "Cajas estándar y límites de peso" + +#: includes/common/shipping-modules/mp-usps.php:328 +msgid "Handling Charge per Interntional Shipment" +msgstr "Gastos de tramitación por envío internacional" + +#: includes/common/shipping-modules/mp-usps.php:294 +msgid "Handling Charge per Domestic Shipment " +msgstr "Gastos de manipulación por envío nacional" + +#: includes/common/shipping-modules/mp-fedex.php:388 +#: includes/common/shipping-modules/mp-ups.php:196 +#: includes/common/shipping-modules/mp-usps.php:237 +msgid "Add Box" +msgstr "Añadir caja" + +#: includes/common/shipping-modules/mp-fedex.php:63 +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "(Next Day)" +msgstr "(Día siguiente)" + +#: includes/common/shipping-modules/mp-fedex.php:63 +msgid "Europe First International Priority" +msgstr "Primera prioridad internacional de Europa" + +#: includes/common/shipping-modules/mp-fedex.php:62 +msgid "International Priority" +msgstr "Prioridad internacional" + +#: includes/common/shipping-modules/mp-fedex.php:61 +#: includes/common/shipping-modules/mp-fedex.php:62 +#: includes/common/shipping-modules/mp-ups.php:54 +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "(1-3 Days)" +msgstr "(1-3 días)" + +#: includes/common/shipping-modules/mp-fedex.php:61 +msgid "International First" +msgstr "Internacional primero" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "(5 Days)" +msgstr "(5 dias)" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "International Economy" +msgstr "Economia internacional" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "(2-7 Days)" +msgstr "(2-7 Días)" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "Smart Post" +msgstr "Smart Post" + +#: includes/common/shipping-modules/mp-fedex.php:55 +#: includes/common/shipping-modules/mp-ups.php:49 +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "(1-5 Days)" +msgstr "(1-5 días)" + +#: includes/common/shipping-modules/mp-fedex.php:55 +msgid "Ground Home Delivery" +msgstr "Entrega a domicilio por tierra" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "(1-7 Days)" +msgstr "(1-7 Días)" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "Fedex Ground" +msgstr "Fedex por tierra" + +#: includes/common/shipping-modules/mp-fedex.php:53 +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "(3 Days)" +msgstr "(3 días)" + +#: includes/common/shipping-modules/mp-fedex.php:53 +msgid "Fedex Express Saver" +msgstr "Fedex Express Ahorrador" + +#: includes/common/shipping-modules/mp-fedex.php:52 +#: includes/common/shipping-modules/mp-ups.php:48 +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "(2 Days)" +msgstr "(2 días)" + +#: includes/common/shipping-modules/mp-fedex.php:52 +msgid "Fedex 2 Day" +msgstr "Fedex 2 Dias" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "(2 Days am)" +msgstr "(2 días am)" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "Fedex 2 Day AM" +msgstr "Fedex 2 días AM" + +#: includes/common/shipping-modules/mp-fedex.php:50 +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "(1 Day)" +msgstr "(1 día)" + +#: includes/common/shipping-modules/mp-fedex.php:50 +msgid "Standard Overnight" +msgstr "Estándar durante la noche" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "(1 Day am )" +msgstr "(1 día am)" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "Priority Overnight" +msgstr "Prioridad durante la noche" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "(1 Day am)" +msgstr "(1 día am)" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "First Overnight" +msgstr "Primera Durante la noche" + +#: includes/admin/class-mp-orders-admin.php:476 +#: includes/common/shipping-modules/mp-fedex.php:31 +msgid "FedEx" +msgstr "FedEx" + +#: includes/common/payment-gateways/paymill.php:270 +#: includes/common/payment-gateways/simplify.php:179 +#: includes/common/payment-gateways/stripe.php:365 +msgid "%1$s Card ending in %2$s - Expires %3$s" +msgstr "%1$s Tarjeta terminando en %2$s -Vence %3$s" + +#: includes/common/payment-gateways/paymill.php:259 +#: includes/common/payment-gateways/pin.php:238 +#: includes/common/payment-gateways/simplify.php:171 +msgid "%s Store Purchase - Order ID: %s, Email: %s" +msgstr "%s Compra en tienda - ID de pedido: %s, Email: %s" + +#: includes/common/payment-gateways/stripe.php:266 +msgid "You must login to Stripe to get your API credentials. You can enter your test credentials, then live ones when ready." +msgstr "Debes iniciar sesión en Stripe to get your API credentials. Puede ingresar sus credenciales de prueba, luego las que están en vivo cuando esté listo." + +#: includes/common/payment-gateways/stripe.php:261 +msgid "When in live mode Stripe recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "Cuando está en modo directo, Stripe recomienda que tenga una configuración de certificado SSL para el sitio donde se mostrará el formulario de pago." + +#: includes/common/payment-gateways/stripe.php:311 +msgid "The Stripe Token was not generated correctly. Please go back and try again." +msgstr "El token de Stripe no se generó correctamente. Por favor, regrese y vuelva a intentarlo." + +#: includes/common/payment-gateways/class-mp-gateway-api.php:263 +#: includes/common/payment-gateways/paymill.php:122 +#: includes/common/payment-gateways/stripe.php:222 +msgid "Card Number" +msgstr "Número de tarjeta" + +#: includes/common/payment-gateways/paymill.php:86 +msgid "Please enter a valid Credit Card Number." +msgstr "Por favor, introduzca un número de tarjeta de crédito válida." + +#: includes/common/payment-gateways/stripe.php:45 +#: includes/common/payment-gateways/stripe.php:433 +msgid "Stripe" +msgstr "Stripe" + +#: includes/common/payment-gateways/paypal-express.php:750 +msgid "Sets the background color for the payment page. By default, the color is white." +msgstr "Establece el color de fondo para la página de pago. Por defecto, el color es blanco." + +#: includes/common/payment-gateways/paypal-express.php:745 +msgid "Sets the background color for the header of the payment page. By default, the color is white." +msgstr "Establece el color de fondo para el encabezado de la página de pago. Por defecto, el color es blanco." + +#: includes/common/payment-gateways/paypal-express.php:740 +msgid "Sets the border color around the header of the payment page. The border is a 2-pixel perimeter around the header space, which is 750 pixels wide by 90 pixels high. By default, the color is black." +msgstr "Establece el color del borde alrededor del encabezado de la página de pago. El borde es un perímetro de 2 píxeles alrededor del espacio del encabezado, que tiene 750 píxeles de ancho por 90 píxeles de alto. Por defecto, el color es negro." + +#: includes/common/payment-gateways/paypal-express.php:735 +msgid "URL for an image you want to appear at the top left of the payment page. The image has a maximum size of 750 pixels wide by 90 pixels high. PayPal recommends that you provide an image that is stored on a secure (https) server. If you do not specify an image, the business name is displayed." +msgstr "URL de la imagen que desea que aparezca en la parte superior izquierda de la página de pago. La imagen tiene un tamaño máximo de 750 píxeles de ancho por 90 píxeles de alto. PayPal recomienda que proporcione una imagen que esté almacenada en un servidor seguro (https). Si no especifica una imagen, se muestra el nombre de la empresa." + +#: includes/common/payment-gateways/paypal-express.php:857 +#: includes/common/payment-gateways/paypal-express.php:1131 +msgid "The payment is pending because it is part of an order that has been authorized but not settled." +msgstr "El pago está pendiente porque es parte de un pedido que se ha autorizado pero no se ha resuelto." + +#: includes/common/payment-gateways/paypal-express.php:853 +#: includes/common/payment-gateways/paypal-express.php:1127 +msgid "The payment is pending because it has been authorized but not settled. You must capture the funds first." +msgstr "El pago está pendiente porque ha sido autorizado pero no liquidado. Debes capturar los fondos primero." + +#: includes/common/payment-gateways/paypal-express.php:847 +#: includes/common/payment-gateways/paypal-express.php:1120 +msgid "You denied the payment when it was marked as pending." +msgstr "Usted negó el pago cuando estaba marcado como pendiente." + +#: includes/common/payment-gateways/paypal-express.php:837 +#: includes/common/payment-gateways/paypal-express.php:1108 +msgid "A reversal has occurred on this transaction due to an unknown reason." +msgstr "Se ha producido una reversión en esta transacción debido a una razón desconocida." + +#: includes/common/payment-gateways/paypal-express.php:836 +#: includes/common/payment-gateways/paypal-express.php:1107 +msgid "A reversal has occurred on this transaction because you have given the customer a refund." +msgstr "Se ha producido una anulación en esta transacción porque le ha dado un reembolso al cliente." + +#: includes/common/payment-gateways/paypal-express.php:835 +#: includes/common/payment-gateways/paypal-express.php:1106 +msgid "A reversal has occurred on this transaction due to a complaint about the transaction from your customer." +msgstr "Se ha producido una anulación en esta transacción debido a una queja sobre la transacción de su cliente." + +#: includes/common/payment-gateways/paypal-express.php:834 +#: includes/common/payment-gateways/paypal-express.php:1105 +msgid "A reversal has occurred on this transaction due to your customer triggering a money-back guarantee." +msgstr "Se ha producido una reversión en esta transacción debido a que su cliente activó una garantía de devolución de dinero." + +#: includes/common/payment-gateways/paypal-express.php:833 +#: includes/common/payment-gateways/paypal-express.php:1104 +msgid "A reversal has occurred on this transaction due to a chargeback by your customer." +msgstr "Se ha producido una anulación en esta transacción debido a una devolución de cargo por parte de su cliente." + +#: includes/common/payment-gateways/paypal-express.php:1101 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer:" +msgstr "Un pago se revirtió debido a un contracargo u otro tipo de reversión. Los fondos se eliminaron del saldo de su cuenta y se devolvieron al comprador:" + +#: includes/common/payment-gateways/paypal-express.php:826 +#: includes/common/payment-gateways/paypal-express.php:1097 +msgid "A payment has been accepted." +msgstr "Se ha aceptado un pago." + +#: includes/common/payment-gateways/paypal-express.php:818 +#: includes/common/payment-gateways/paypal-express.php:1087 +msgid "The transaction has not terminated, e.g. an authorization may be awaiting completion." +msgstr "La transacción no ha terminado, por ejemplo. una autorización puede estar pendiente de finalización." + +#: includes/common/payment-gateways/payfast.php:531 +#: includes/common/payment-gateways/paypal-express.php:810 +#: includes/common/payment-gateways/paypal-express.php:1077 +msgid "The payment has failed. This happens only if the payment was made from your customer's bank account." +msgstr "El pago ha fallado. Esto sucede solo si el pago se realizó desde la cuenta bancaria de su cliente." + +#: includes/common/payment-gateways/paypal-express.php:806 +#: includes/common/payment-gateways/paypal-express.php:1072 +msgid "An authorization for this transaction has been voided." +msgstr "Una autorización para esta transacción ha sido anulada." + +#: includes/common/payment-gateways/paypal-express.php:802 +#: includes/common/payment-gateways/paypal-express.php:1067 +msgid "The authorization period for this payment has been reached." +msgstr "Se ha alcanzado el plazo de autorización para este pago." + +#: includes/common/payment-gateways/paypal-express.php:798 +#: includes/common/payment-gateways/paypal-express.php:1062 +msgid "A reversal has been canceled; for example, when you win a dispute and the funds for the reversal have been returned to you." +msgstr "Una anulación ha sido cancelada; por ejemplo, cuando gana una disputa y los fondos para la reversión le han sido devueltos." + +#: includes/common/payment-gateways/paypal-express.php:499 +#: includes/common/payment-gateways/paypal-express.php:1163 +msgid "PayPal Express Checkout" +msgstr "PayPal Express Checkout" + +#: includes/common/payment-gateways/paypal-chained-payments.php:798 +msgid "Gateway Settings Page Message" +msgstr "Mensaje de la página de configuración de la pasarela" + +#: includes/common/payment-gateways/paypal-express.php:725 +msgid "Signature" +msgstr "Firma" + +#: includes/common/payment-gateways/eway31.php:506 +#: includes/common/payment-gateways/eway31.php:533 +#: includes/common/shipping-modules/mp-fedex.php:276 +msgid "API Password" +msgstr "Contraseña API" + +#: includes/common/payment-gateways/paypal-chained-payments.php:773 +msgid "Enter a percentage of all store sales to collect as a fee. Decimals allowed." +msgstr "Ingrese un porcentaje de todas las ventas de la tienda para cobrar como tarifa. Decimales permitidos." + +#: includes/common/payment-gateways/paypal-chained-payments.php:757 +msgid "Using PayPal Chained Payments allows you as the multisite network owner to collect a predefined fee or percentage of all sales on network MarketPress stores! This is invisible to the customers who purchase items in a store, and all PayPal fees will be charged to the store owner. To use this option you must create API credentials, and you should make all other gateways unavailable or limited above." +msgstr "El uso de Pagos en Cadena de PayPal le permite, como propietario de la red multisitio, cobrar una tarifa predefinida o un porcentaje de todas las ventas en las tiendas de la red MarketPress. Esto es invisible para los clientes que compran artículos en una tienda, y todas las tarifas de PayPal se cobrarán al propietario de la tienda. Para usar esta opción, debe crear credenciales de API y debe hacer que todas las demás puertas de enlace no estén disponibles o estén limitadas anteriormente." + +#: includes/common/payment-gateways/paypal-chained-payments.php:338 +msgid "Please be aware that we will deduct a ?% fee from the total of each transaction in addition to any fees PayPal may charge you. If for any reason you need to refund a customer for an order, please contact us with a screenshot of the refund receipt in your PayPal history as well as the Transaction ID of our fee deduction so we can issue you a refund. Thank you!" +msgstr "Tenga en cuenta que deduciremos una tarifa de ?% Del total de cada transacción además de cualquier tarifa que PayPal pueda cobrarle. Si por alguna razón necesita reembolsar a un cliente por un pedido, comuníquese con nosotros con una captura de pantalla del recibo de reembolso en su historial de PayPal, así como con el ID de transacción de nuestra deducción de tarifa para que podamos emitirle un reembolso. ¡Gracias!" + +#: includes/common/payment-gateways/paypal-chained-payments.php:698 +#: includes/common/payment-gateways/paypal-express.php:149 +msgid "There was a problem connecting to PayPal. Please try again." +msgstr "Hubo un problema al conectarse a PayPal. Inténtalo de nuevo." + +#: includes/common/payment-gateways/paypal-chained-payments.php:470 +#: includes/common/payment-gateways/paypal-express.php:1053 +msgid "There was a problem verifying the IPN string with PayPal. Please try again." +msgstr "Hubo un problema al verificar la cadena de IPN con PayPal. Inténtalo de nuevo." + +#: includes/common/payment-gateways/paypal-chained-payments.php:310 +msgid "There was a problem connecting to PayPal to check the status of your purchase. Please check the status of your order here »" +msgstr "Hubo un problema al conectarse a PayPal para verificar el estado de su compra. Consulta el estado de tu pedido aquí. »" + +#: includes/common/payment-gateways/payfast.php:539 +#: includes/common/payment-gateways/paypal-chained-payments.php:254 +#: includes/common/payment-gateways/paypal-express.php:1139 +msgid "The payment is pending." +msgstr "El pago esta pendiente." + +#: includes/common/payment-gateways/paypal-chained-payments.php:251 +#: includes/common/payment-gateways/paypal-chained-payments.php:531 +#: includes/common/payment-gateways/paypal-express.php:862 +#: includes/common/payment-gateways/paypal-express.php:1136 +msgid "The payment is pending for an unknown reason. For more information, contact PayPal customer service." +msgstr "El pago está pendiente por una razón desconocida. Para obtener más información, póngase en contacto con el servicio al cliente de PayPal." + +#: includes/common/payment-gateways/paypal-chained-payments.php:250 +#: includes/common/payment-gateways/paypal-chained-payments.php:530 +#: includes/common/payment-gateways/paypal-express.php:861 +#: includes/common/payment-gateways/paypal-express.php:1135 +msgid "The payment is pending because you are not yet verified. You must verify your account before you can accept this payment." +msgstr "El pago está pendiente porque todavía no se ha verificado. Debe verificar su cuenta antes de poder aceptar este pago." + +#: includes/common/payment-gateways/paypal-chained-payments.php:249 +#: includes/common/payment-gateways/paypal-chained-payments.php:529 +#: includes/common/payment-gateways/paypal-express.php:860 +#: includes/common/payment-gateways/paypal-express.php:1134 +msgid "The payment is pending because it was made via credit card and you must upgrade your account to Business or Premier status in order to receive the funds. It can also mean that you have reached the monthly limit for transactions on your account." +msgstr "El pago está pendiente porque se realizó con tarjeta de crédito y debe actualizar su cuenta al estado Business o Premier para recibir los fondos. También puede significar que ha alcanzado el límite mensual para transacciones en su cuenta." + +#: includes/common/payment-gateways/paypal-chained-payments.php:248 +#: includes/common/payment-gateways/paypal-chained-payments.php:528 +#: includes/common/payment-gateways/paypal-express.php:859 +#: includes/common/payment-gateways/paypal-express.php:1133 +msgid "The payment is pending because it was made to an email address that is not yet registered or confirmed." +msgstr "El pago está pendiente porque se realizó a una dirección de correo electrónico que aún no está registrada o confirmada." + +#: includes/common/payment-gateways/paypal-chained-payments.php:247 +#: includes/common/payment-gateways/paypal-chained-payments.php:527 +#: includes/common/payment-gateways/paypal-express.php:858 +#: includes/common/payment-gateways/paypal-express.php:1132 +msgid "The payment is pending while it is being reviewed by PayPal for risk." +msgstr "El pago está pendiente mientras está siendo revisado por PayPal para el riesgo." + +#: includes/common/payment-gateways/paypal-chained-payments.php:246 +#: includes/common/payment-gateways/paypal-chained-payments.php:526 +#: includes/common/payment-gateways/paypal-express.php:856 +#: includes/common/payment-gateways/paypal-express.php:1130 +msgid "You do not have a balance in the currency sent, and you do not have your Payment Receiving Preferences set to automatically convert and accept this payment. You must manually accept or deny this payment." +msgstr "No tiene un saldo en la divisa enviada y no tiene sus Preferencias de Recepción de Pago configuradas para convertir y aceptar automáticamente este pago. Debe aceptar o denegar este pago manualmente." + +#: includes/common/payment-gateways/paypal-chained-payments.php:245 +#: includes/common/payment-gateways/paypal-chained-payments.php:525 +#: includes/common/payment-gateways/paypal-express.php:855 +#: includes/common/payment-gateways/paypal-express.php:1129 +msgid "The payment is pending because you hold a non-U.S. account and do not have a withdrawal mechanism. You must manually accept or deny this payment from your Account Overview." +msgstr "El pago está pendiente porque tiene una cuenta que no es de los EE. UU. Y no tiene un mecanismo de retiro. Debe aceptar o denegar este pago manualmente desde el Resumen de su cuenta." + +#: includes/common/payment-gateways/paypal-chained-payments.php:244 +#: includes/common/payment-gateways/paypal-chained-payments.php:524 +#: includes/common/payment-gateways/paypal-express.php:854 +#: includes/common/payment-gateways/paypal-express.php:1128 +msgid "The payment is pending because it was made by an eCheck that has not yet cleared." +msgstr "El pago está pendiente porque fue realizado por un eCheck que aún no se ha realizado." + +#: includes/common/payment-gateways/paypal-chained-payments.php:243 +#: includes/common/payment-gateways/paypal-chained-payments.php:523 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences section of your Profile." +msgstr "El pago está pendiente porque su cliente no incluyó una dirección de envío confirmada y sus Preferencias de Recepción de Pago están configuradas de tal manera que desea aceptar o rechazar manualmente cada uno de estos pagos. Para cambiar sus preferencias, vaya a la sección de Preferencias de su perfil." + +#: includes/common/payment-gateways/paypal-chained-payments.php:236 +#: includes/common/payment-gateways/paypal-chained-payments.php:516 +msgid "The transaction was rejected by the receiver (you)." +msgstr "La transacción fue rechazada por el receptor (usted)." + +#: includes/common/payment-gateways/paypal-chained-payments.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:510 +#: includes/common/payment-gateways/paypal-express.php:843 +#: includes/common/payment-gateways/paypal-express.php:1115 +msgid "You refunded the payment." +msgstr "Usted devolvió el pago." + +#: includes/common/payment-gateways/paypal-chained-payments.php:224 +#: includes/common/payment-gateways/paypal-chained-payments.php:504 +msgid "The transaction is in progress." +msgstr "La transacción está en curso." + +#: includes/common/payment-gateways/paypal-chained-payments.php:212 +#: includes/common/payment-gateways/paypal-chained-payments.php:491 +#: includes/common/payment-gateways/paypal-express.php:814 +#: includes/common/payment-gateways/paypal-express.php:1082 +msgid "The payment has been partially refunded." +msgstr "El pago ha sido parcialmente reembolsado." + +#: includes/common/payment-gateways/paypal-chained-payments.php:202 +#: includes/common/payment-gateways/paypal-chained-payments.php:481 +msgid "PayPal balance, Credit Card, or Instant Transfer" +msgstr "Saldo de PayPal, tarjeta de crédito, o transferencia instantánea" + +#: includes/common/payment-gateways/paypal-chained-payments.php:177 +msgid "There was a problem connecting to PayPal to setup your purchase. Please try again." +msgstr "Hubo un problema al conectarse a PayPal para configurar su compra. Inténtalo de nuevo." + +#: includes/common/payment-gateways/paypal-chained-payments.php:122 +msgid "Your PayPal transaction has been canceled." +msgstr "Su transacción de PayPal ha sido cancelada." + +#: includes/common/payment-gateways/paypal-chained-payments.php:50 +#: includes/common/payment-gateways/paypal-chained-payments.php:53 +#: includes/common/payment-gateways/paypal-chained-payments.php:732 +#: includes/common/payment-gateways/paypal-express.php:500 +#: includes/common/payment-gateways/paypal-express.php:938 +msgid "PayPal" +msgstr "PayPal" + +#: includes/common/payment-gateways/paypal-chained-payments.php:48 +#: includes/common/payment-gateways/paypal-chained-payments.php:730 +#: includes/common/payment-gateways/paypal-chained-payments.php:756 +#: includes/common/payment-gateways/paypal-chained-payments.php:873 +msgid "PayPal Chained Payments" +msgstr "Pagos encadenados de PayPal" + +#: includes/common/payment-gateways/paypal-payflow.php:59 +#: includes/common/payment-gateways/paypal-payflow.php:467 +msgid "PayPal Payflow Pro" +msgstr "PayPal Payflow Pro" + +#: includes/common/payment-gateways/skrill.php:378 +msgid "Chargeback - A payment was reversed due to a chargeback. The funds have been removed from your account balance and returned to the buyer." +msgstr "Devolución de cargo: un pago se revirtió debido a una devolución de cargo. Los fondos se eliminaron del saldo de su cuenta y se devolvieron al comprador." + +#: includes/common/payment-gateways/skrill.php:372 +msgid "Failed - The Credit Card or Direct Debit transaction was declined." +msgstr "Fallido: la transacción con tarjeta de crédito o débito directo se rechazó." + +#: includes/common/payment-gateways/_payway.php:354 +#: includes/common/payment-gateways/skrill.php:366 +msgid "Cancelled - The payment was cancelled manually by the sender in their online account history or was auto-cancelled after 14 days pending." +msgstr "Cancelado: el pago fue cancelado manualmente por el remitente en su historial de cuenta en línea o se canceló automáticamente después de 14 días de espera." + +#: includes/common/payment-gateways/skrill.php:360 +msgid "Pending - The payment is pending. It can take 2-3 days for bank transfers to complete." +msgstr "Pendiente - El pago está pendiente. Las transferencias bancarias pueden tardar entre 2 y 3 días en completarse." + +#: includes/common/payment-gateways/_payway.php:349 +#: includes/common/payment-gateways/skrill.php:354 +msgid "Processed - The payment has been completed, and the funds have been added successfully to your Moneybookers account balance." +msgstr "Procesado: el pago se completó y los fondos se agregaron con éxito al saldo de su cuenta de Moneybookers." + +#: includes/common/payment-gateways/skrill.php:189 +msgid "Shown to the customer on the confirmation screen - the end step of the process - a note, confirmation number, or any other message. Line breaks <br> may be used for longer messages." +msgstr "Se muestra al cliente en la pantalla de confirmación, el último paso del proceso, una nota, el número de confirmación o cualquier otro mensaje. Saltos de línea <br> puede ser utilizado para mensajes más largos." + +#: includes/common/payment-gateways/skrill.php:188 +msgid "Confirmation Note (optional)" +msgstr "Nota de confirmación (opcional)" + +#: includes/common/payment-gateways/skrill.php:183 +msgid "The URL of the logo which you would like to appear at the top of the payment form. The logo must be accessible via HTTPS otherwise it will not be shown. For best integration results we recommend that you use a logo with dimensions up to 200px in width and 50px in height." +msgstr "La URL del logotipo que desea que aparezca en la parte superior del formulario de pago. El logotipo debe ser accesible a través de HTTPS, de lo contrario no se mostrará. Para obtener los mejores resultados de integración, le recomendamos que utilice un logotipo con dimensiones de hasta 200 px de ancho y 50 px de alto." + +#: includes/common/payment-gateways/skrill.php:182 +msgid "Logo Image (optional)" +msgstr "Imagen de logotipo (opcional)" + +#: includes/common/payment-gateways/skrill.php:177 +msgid "The name of this store, which will be shown on the gateway. If no value is submitted, the account email will be shown as the recipient of the payment." +msgstr "El nombre de esta tienda, que se mostrará en la pasarela. Si no se envía ningún valor, el correo electrónico de la cuenta se mostrará como el destinatario del pago." + +#: includes/common/payment-gateways/skrill.php:176 +msgid "Merchant Name (optional)" +msgstr "Nombre del comerciante (opcional)" + +#: includes/common/payment-gateways/skrill.php:165 +msgid "Language" +msgstr "Idioma" + +#: includes/common/payment-gateways/2checkout.php:368 +#: includes/common/payment-gateways/authorizenet-aim.php:262 +#: includes/common/payment-gateways/eway.php:363 +#: includes/common/payment-gateways/eway31.php:471 +#: includes/common/payment-gateways/mollie.php:91 +#: includes/common/payment-gateways/paymill.php:193 +#: includes/common/payment-gateways/paypal-chained-payments.php:356 +#: includes/common/payment-gateways/paypal-express.php:688 +#: includes/common/payment-gateways/paypal-payflow.php:432 +#: includes/common/payment-gateways/pin.php:186 +#: includes/common/payment-gateways/skrill.php:152 +#: includes/common/payment-gateways/stripe.php:288 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:104 +msgid "Currency" +msgstr "Moneda" + +#: includes/common/payment-gateways/2checkout.php:359 +#: includes/common/payment-gateways/skrill.php:143 +msgid "Secret Word" +msgstr "Palabra secreta" + +#: includes/common/payment-gateways/skrill.php:261 +msgid "Order ID:" +msgstr "Solicitar ID:" + +#: includes/common/payment-gateways/skrill.php:234 +msgid "Complete Checkout" +msgstr "Completar Pago" + +#: includes/common/payment-gateways/skrill.php:204 +msgid "Your Moneybookers transaction has been canceled." +msgstr "Su transacción de Moneybookers ha sido cancelada." + +#: includes/common/payment-gateways/manual-payments.php:155 +msgid "This is the email text to send to those who have made manual payment checkouts. You should include your manual payment instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "Este es el mensaje de correo electrónico que se envía a aquellos que han realizado pagos de pago manuales. Debe incluir sus instrucciones de pago presencial aquí. Anula el correo electrónico de pago de pedido predeterminado. Estos códigos serán reemplazados con detalles del pedido: NOMBRE PERSONALIZADO, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No se permite HTML." + +#: includes/common/payment-gateways/_payway.php:257 +#: includes/common/payment-gateways/manual-payments.php:128 +msgid "Record payments manually, such as by Cash, Check, or EFT." +msgstr "Registre los pagos manualmente, como en efectivo, cheque o EFT." + +#: includes/common/payment-gateways/manual-payments.php:71 +msgid "Manual/Invoice" +msgstr "Manual / Factura" + +#: includes/admin/class-mp-setup-wizard.php:648 +#: includes/common/payment-gateways/manual-payments.php:35 +#: includes/common/payment-gateways/manual-payments.php:36 +msgid "Manual Payment" +msgstr "Pago Presencial" + +#: includes/common/payment-gateways/manual-payments.php:34 +#: includes/common/payment-gateways/manual-payments.php:163 +msgid "Manual Payments" +msgstr "Pagos Manuales" + +#: includes/common/payment-gateways/_ideal.php:288 +msgid "iDEAL Simulator (for testing)" +msgstr "Simulador iDEAL (para pruebas)" + +#: includes/common/payment-gateways/_ideal.php:287 +msgid "ABN Amro Bank" +msgstr "ABN Amro Bank" + +#: includes/common/payment-gateways/_ideal.php:286 +msgid "Friesland Bank" +msgstr "Friesland Bank" + +#: includes/common/payment-gateways/_ideal.php:285 +msgid "Rabobank" +msgstr "Rabobank" + +#: includes/common/payment-gateways/_ideal.php:284 +msgid "ING Bank" +msgstr "ING Bank" + +#: includes/common/payment-gateways/_ideal.php:279 +msgid "Bank" +msgstr "Banco" + +#: includes/common/payment-gateways/_ideal.php:270 +msgid "To make it easier to pay for online products and services, the Dutch banking community has developed the iDEAL online payment method. iDEAL allows online payments to be made using online banking in EUR only." +msgstr "Para facilitar el pago de los productos y servicios en línea, la comunidad bancaria holandesa ha desarrollado el método de pago en línea iDEAL. iDEAL permite que los pagos en línea se realicen utilizando la banca en línea en EUR solamente." + +#: includes/common/payment-gateways/_ideal.php:247 +#: includes/common/payment-gateways/_payway.php:199 +#: includes/common/payment-gateways/manual-payments.php:68 +msgid "Invoiced" +msgstr "Facturado" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1016 +msgid "Coupon" +msgstr "Cupón" + +#: includes/common/payment-gateways/_ideal.php:77 +#: includes/common/payment-gateways/_ideal.php:250 +#: includes/common/payment-gateways/_payway.php:202 +msgid "iDEAL" +msgstr "iDEAL" + +#: includes/common/payment-gateways/_ideal.php:76 +msgid "iDEAL (beta)" +msgstr "iDEAL (beta)" + +#: includes/common/payment-gateways/payfast.php:327 +msgid "Merchant Key" +msgstr "Clave de comerciante" + +#: includes/common/payment-gateways/_ideal.php:293 +#: includes/common/payment-gateways/_payway.php:302 +#: includes/common/payment-gateways/payfast.php:324 +msgid "Merchant ID" +msgstr "Identificación del comerciante" + +#: includes/common/payment-gateways/eway31.php:462 +msgid "eWay Rapid 3.0 Payments lets merchants recieve credit card payments through eWay without need for users to leave the shop. Note this gateway requires a valid SSL certificate configured for this site." +msgstr "eWay Rapid 3.0 Payments permite a los comerciantes recibir pagos con tarjeta de crédito a través de eWay sin necesidad de que los usuarios salgan de la tienda. Tenga en cuenta que esta puerta de enlace requiere un certificado SSL válido configurado para este sitio." + +#: includes/common/payment-gateways/eway.php:452 +msgid "There was a problem connecting to eWay. Please try again." +msgstr "Hubo un problema al conectarse a eWay. Inténtalo de nuevo." + +#: includes/common/payment-gateways/eway.php:432 +#: includes/common/payment-gateways/eway.php:437 +msgid "The url of the image can be hosted on your website and pass the secure https:// path of the image to be displayed at the top of the website. This is the second image block on the webpage and is restricted to 960px X 65px. A default secure image is used if none is supplied." +msgstr "La url de la imagen se puede alojar en su sitio web y pasar la ruta segura https: // de la imagen que se mostrará en la parte superior del sitio web. Este es el segundo bloque de imágenes en la página web y está restringido a 960px X 65px. Se usa una imagen segura predeterminada si no se proporciona ninguna." + +#: includes/common/payment-gateways/eway.php:431 +#: includes/common/payment-gateways/eway.php:436 +msgid "Company Logo (optional)" +msgstr "Logotipo de la empresa (opcional)" + +#: includes/common/payment-gateways/eway.php:427 +msgid "The page footer text can be customised and populated below the customer's order details. Useful for contact information." +msgstr "El texto del pie de página se puede personalizar y rellenar debajo de los detalles del pedido del cliente. Útil para información de contacto." + +#: includes/common/payment-gateways/eway.php:426 +msgid "Page Footer (optional)" +msgstr "Pie de página (opcional)" + +#: includes/common/payment-gateways/eway.php:421 +msgid "Page Description (optional)" +msgstr "Descripción de la página (opcional)" + +#: includes/common/payment-gateways/eway.php:417 +#: includes/common/payment-gateways/eway.php:422 +msgid "This value is used to populate the browsers title bar at the top of the screen." +msgstr "Este valor se utiliza para rellenar la barra de título del navegador en la parte superior de la pantalla." + +#: includes/common/payment-gateways/eway.php:416 +msgid "Page Title (optional)" +msgstr "Título de la página (opcional)" + +#: includes/common/payment-gateways/eway.php:412 +msgid "This will be displayed as the company the customer is purchasing from, including this is highly recommended." +msgstr "Esto se mostrará como la compañía que el cliente está comprando, incluyendo esto es altamente recomendable." + +#: includes/common/payment-gateways/eway.php:411 +msgid "Company Name" +msgstr "Nombre de la empresa" + +#: includes/common/payment-gateways/eway.php:394 +msgid "Customer ID" +msgstr "Identificación del cliente" + +#: includes/common/payment-gateways/eway.php:381 +#: includes/common/payment-gateways/eway31.php:488 +msgid "Live API Credentials" +msgstr "Credenciales API en vivo" + +#: includes/common/payment-gateways/eway.php:371 +#: includes/common/payment-gateways/eway31.php:479 +msgid "Gateway Mode" +msgstr "Modo de pasarela" + +#: includes/common/payment-gateways/eway.php:354 +msgid "The Hosted Page is a webpage hosted on eWAY's side eliminating the need for merchants to capture, transmit or store credit card numbers. At the checkout time the merchant automatically redirects the customer to the Hosted Page where they would enter their details and have the transaction processed. Upon completion of the transaction the customer is redirected back to the MarketPress checkout confirmation page." +msgstr "La página alojada es una página web alojada en el lado de eWAY que elimina la necesidad de que los comerciantes capturen, transmitan o almacenen números de tarjetas de crédito. En el momento de la compra, el comerciante redirige automáticamente al cliente a la página alojada donde ingresaría sus detalles y procesaría la transacción. Al finalizar la transacción, se redirige al cliente a la página de confirmación de pago de MarketPress." + +#: includes/common/payment-gateways/eway.php:314 +msgid "There was a problem with your credit card information: %s" +msgstr "Hubo un problema con la información de su tarjeta de crédito.: %s" + +#: includes/common/payment-gateways/eway.php:300 +msgid "Paid - The card has been processed - %s" +msgstr "Pagado - La tarjeta ha sido procesada - %s" + +#: includes/common/payment-gateways/eway.php:253 +msgid "There was a problem setting up the transaction with eWay: %s" +msgstr "Hubo un problema al configurar la transacción con eWay: %s" + +#: includes/common/payment-gateways/eway.php:245 +#: includes/common/payment-gateways/eway.php:289 +msgid "There was a problem parsing the response from eWay. Please try again." +msgstr "Hubo un problema al analizar la respuesta de eWay. Inténtalo de nuevo." + +#: includes/common/payment-gateways/_ideal.php:159 +#: includes/common/payment-gateways/eway.php:189 +#: includes/common/payment-gateways/paypal-chained-payments.php:634 +#: includes/common/payment-gateways/paypal-express.php:322 +#: includes/common/payment-gateways/paypal-express.php:473 +msgid "%s Store Purchase - Order ID: %s" +msgstr "%s Compra en tienda - ID de pedido: %s" + +#: includes/common/payment-gateways/eway.php:147 +#: includes/common/payment-gateways/eway.php:462 +msgid "eWay Shared Payments" +msgstr "eWay Pagos Compartidos" + +#: includes/common/payment-gateways/_cubepoints.php:214 +msgid "This is the email text to send to those who have made CubePoints checkouts. You should include your CubePoints instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "Este es el mensaje de correo electrónico que se enviará a aquellos que hayan realizado pagos de CubePoints. Debes incluir tus instrucciones de CubePoints aquí. Anula el correo electrónico de pago de pedido predeterminado. Estos códigos serán reemplazados con detalles del pedido: NOMBRE PERSONALIZADO, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No se permite HTML." + +#: includes/common/payment-gateways/_cubepoints.php:212 +#: includes/common/payment-gateways/free_orders.php:188 +#: includes/common/payment-gateways/manual-payments.php:154 +msgid "Order Confirmation Email" +msgstr "Correo electrónico de confirmación de pedido" + +#: includes/common/payment-gateways/_cubepoints.php:207 +#: includes/common/payment-gateways/manual-payments.php:149 +msgid "Confirmation User Instructions" +msgstr "Instrucciones de confirmación del usuario" + +#: includes/common/payment-gateways/_cubepoints.php:202 +#: includes/common/payment-gateways/manual-payments.php:144 +msgid "User Instructions" +msgstr "Instrucciones para el usuario" + +#: includes/common/payment-gateways/_cubepoints.php:198 +#: includes/common/payment-gateways/free_orders.php:170 +#: includes/common/payment-gateways/manual-payments.php:139 +msgid "Enter a public name for this payment method that is displayed to users - No HTML" +msgstr "Ingrese un nombre público para este método de pago que se muestra a los usuarios - Sin HTML" + +#: includes/admin/class-mp-orders-admin.php:532 +#: includes/common/payment-gateways/_cubepoints.php:196 +#: includes/common/payment-gateways/free_orders.php:169 +#: includes/common/payment-gateways/manual-payments.php:138 +msgid "Method Name" +msgstr "Nombre del método" + +#: includes/common/payment-gateways/_cubepoints.php:187 +msgid "Accept CubePoints as payment(requires the CubePoints plugin)." +msgstr "Acepte CubePoints como pago (requiere el complemento CubePoints)." + +#: includes/common/payment-gateways/_cubepoints.php:140 +msgid "Sorry, but you do not appear to have enough points to complete this purchase!" +msgstr "Lo sentimos, ¡pero no parece tener suficientes puntos para completar esta compra!" + +#: includes/common/payment-gateways/_cubepoints.php:124 +msgid "%s Store Purchase" +msgstr "%s Compra en tienda" + +#: includes/common/payment-gateways/_cubepoints.php:79 +#: includes/common/payment-gateways/_cubepoints.php:171 +msgid "Your current points: " +msgstr "Tus puntos actuales:" + +#: includes/common/payment-gateways/_cubepoints.php:133 +#: includes/common/payment-gateways/_cubepoints.php:197 +msgid "CubePoints" +msgstr "CubePoints" + +#: includes/common/payment-gateways/authorizenet-aim.php:344 +msgid "Authorize.net AIM Checkout" +msgstr "Authorize.net AIM Checkout" + +#: includes/common/payment-gateways/authorizenet-aim.php:331 +msgid "Custom API URL" +msgstr "Custom API URL" + +#: includes/common/payment-gateways/authorizenet-aim.php:332 +msgid "Many other gateways have Authorize.net API emulators. To use one of these gateways input their API post url here." +msgstr "Muchas otras puertas de enlace tienen emuladores de la API de Authorize.net. Para usar una de estas puertas de enlace ingrese su API post url aquí." + +#: includes/common/payment-gateways/authorizenet-aim.php:322 +msgid "Request a delimited response from the payment gateway." +msgstr "Solicitar una respuesta delimitada desde la pasarela de pago." + +#: includes/common/payment-gateways/authorizenet-aim.php:316 +msgid "Security: MD5 Hash" +msgstr "Seguridad: MD5 Hash" + +#: includes/common/payment-gateways/authorizenet-aim.php:317 +msgid "The payment gateway generated MD5 hash value that can be used to authenticate the transaction response. Not needed because responses are returned using an SSL connection." +msgstr "La pasarela de pago generó un valor hash MD5 que se puede usar para autenticar la respuesta de la transacción. No es necesario porque las respuestas se devuelven mediante una conexión SSL." + +#: includes/common/payment-gateways/authorizenet-aim.php:306 +msgid "Customer Receipt Email Footer" +msgstr "Recibo del cliente Correo electrónico de pie de página" + +#: includes/common/payment-gateways/authorizenet-aim.php:296 +msgid "Customer Receipt Email Header" +msgstr "Encabezado de correo electrónico de recibo del cliente" + +#: includes/common/payment-gateways/authorizenet-aim.php:297 +#: includes/common/payment-gateways/paypal-payflow.php:446 +msgid "This text will appear as the header of the email receipt sent to the customer." +msgstr "Este texto aparecerá como el encabezado del recibo de correo electrónico enviado al cliente." + +#: includes/common/payment-gateways/authorizenet-aim.php:282 +msgid "Encapsulation Character" +msgstr "Carácter de encapsulación" + +#: includes/common/payment-gateways/authorizenet-aim.php:283 +msgid "Authorize.net default is blank. Otherwise, get this from your credit card processor. If the transactions are going through, but getting strange responses, this character is most likely wrong." +msgstr "Authorize.net por defecto está en blanco. De lo contrario, obtenga esto de su procesador de tarjeta de crédito. Si las transacciones están pasando, pero obteniendo respuestas extrañas, este personaje probablemente esté equivocado." + +#: includes/common/payment-gateways/authorizenet-aim.php:273 +msgid "Optional settings to control advanced options" +msgstr "Configuraciones opcionales para controlar opciones avanzadas" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:224 +#: includes/common/payment-gateways/authorizenet-aim.php:272 +msgid "Advanced Settings" +msgstr "Ajustes avanzados" + +#: includes/common/payment-gateways/authorizenet-aim.php:253 +msgid "Transaction Key" +msgstr "Clave de transacción" + +#: includes/common/payment-gateways/authorizenet-aim.php:246 +msgid "Login ID" +msgstr "Ingresar identificación" + +#: includes/common/payment-gateways/paypal-payflow.php:396 +msgid "Gateway Credentials" +msgstr "Credenciales de Pasarela" + +#: includes/common/payment-gateways/authorizenet-aim.php:221 +msgid "Authorize.net AIM is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway. USD is the only currency supported by this gateway." +msgstr "Authorize.net AIM es una solución de procesamiento de pagos personalizable que le da al comerciante el control sobre todos los pasos para procesar una transacción. Se requiere un certificado SSL para usar esta puerta de enlace. USD es la única moneda soportada por esta pasarela." + +#: includes/common/payment-gateways/authorizenet-aim.php:205 +msgid "There was a problem finalizing your purchase. %s Please go back and try again." +msgstr "Hubo un problema al finalizar tu compra. %s Por favor vuelve a intentarlo." + +#: includes/common/payment-gateways/payfast.php:519 +#: includes/common/payment-gateways/paypal-chained-payments.php:218 +#: includes/common/payment-gateways/paypal-chained-payments.php:498 +#: includes/common/payment-gateways/paypal-express.php:822 +#: includes/common/payment-gateways/paypal-express.php:1092 +msgid "The payment has been completed, and the funds have been added successfully to your account balance." +msgstr "El pago se completó y los fondos se agregaron con éxito al saldo de su cuenta." + +#: includes/common/payment-gateways/paypal-payflow.php:233 +msgid "Please enter a valid credit card security code" +msgstr "Por favor ingrese un código de seguridad de tarjeta de crédito válido" + +#: includes/common/payment-gateways/paypal-payflow.php:224 +#: includes/public/class-mp-checkout.php:867 +msgid "Please enter a valid credit card number" +msgstr "Por favor, introduzca un número de tarjeta de crédito válida" + +#: includes/common/payment-gateways/paypal-payflow.php:221 +msgid "Please enter your credit card number" +msgstr "Por favor ingresa el número de tu tarjeta de crédito" + +#: includes/common/payment-gateways/paypal-payflow.php:217 +msgid "Please enter your credit card security code" +msgstr "Por favor ingrese el código de seguridad de su tarjeta de crédito" + +#: includes/common/payment-gateways/paypal-payflow.php:213 +msgid "Please select your credit card expiration date." +msgstr "Por favor seleccione la fecha de vencimiento de su tarjeta de crédito." + +#: includes/common/payment-gateways/2checkout.php:299 +#: includes/common/payment-gateways/authorizenet-aim.php:50 +#: includes/common/payment-gateways/eway.php:148 +#: includes/common/payment-gateways/eway.php:298 +#: includes/common/payment-gateways/eway31.php:267 +#: includes/common/payment-gateways/paymill.php:46 +#: includes/common/payment-gateways/paypal-express.php:972 +#: includes/common/payment-gateways/paypal-payflow.php:60 +#: includes/common/payment-gateways/pin.php:46 +#: includes/common/payment-gateways/simplify.php:19 +#: includes/common/payment-gateways/stripe.php:46 +#: includes/common/payment-gateways/wepay.php:37 +msgid "Credit Card" +msgstr "Tarjeta de crédito" + +#: includes/common/payment-gateways/authorizenet-aim.php:49 +msgid "Authorize.net Checkout" +msgstr "Authorize.net Checkout" + +#: includes/common/payment-gateways/skrill.php:156 +#: includes/common/payment-gateways/stripe.php:293 +msgid "Selecting a currency other than that used for your store may cause problems at checkout." +msgstr "La selección de una moneda diferente a la utilizada para su tienda puede causar problemas al momento de pagar." + +#: includes/common/payment-gateways/2checkout.php:352 +msgid "Seller ID" +msgstr "ID de vendedor" + +#: includes/common/payment-gateways/2checkout.php:340 +#: includes/common/payment-gateways/_ideal.php:311 +#: includes/common/payment-gateways/authorizenet-aim.php:234 +#: includes/common/payment-gateways/eway.php:376 +#: includes/common/payment-gateways/payfast.php:315 +#: includes/common/payment-gateways/paypal-chained-payments.php:368 +#: includes/common/payment-gateways/paypal-express.php:699 +#: includes/common/payment-gateways/paypal-payflow.php:391 +msgid "Live" +msgstr "En vivo" + +#: includes/common/payment-gateways/2checkout.php:339 +#: includes/common/payment-gateways/authorizenet-aim.php:233 +#: includes/common/payment-gateways/eway.php:375 +#: includes/common/payment-gateways/paypal-chained-payments.php:367 +#: includes/common/payment-gateways/paypal-express.php:698 +#: includes/common/payment-gateways/paypal-payflow.php:390 +#: includes/common/shipping-modules/mp-fedex.php:263 +msgid "Sandbox" +msgstr "Sandbox" + +#: includes/common/payment-gateways/2checkout.php:336 +#: includes/common/payment-gateways/_ideal.php:307 +#: includes/common/payment-gateways/authorizenet-aim.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:365 +#: includes/common/payment-gateways/paypal-express.php:695 +#: includes/common/payment-gateways/paypal-payflow.php:387 +#: includes/common/payment-gateways/wepay.php:130 +#: includes/common/shipping-modules/mp-fedex.php:260 +msgid "Mode" +msgstr "Modo" + +#: includes/common/payment-gateways/2checkout.php:288 +#: includes/common/payment-gateways/mijireh.php:242 +#: includes/common/payment-gateways/mollie.php:212 +msgid "The order has been received" +msgstr "El pedido ha sido recibido." + +#: includes/common/payment-gateways/2checkout.php:74 +#: includes/common/payment-gateways/2checkout.php:75 +#: includes/common/payment-gateways/2checkout.php:435 +msgid "2Checkout" +msgstr "2Checkout" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:306 +msgid "Confirm" +msgstr "Confirmar" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:218 +#: includes/common/class-mp-cart.php:974 includes/common/class-mp-cart.php:1354 +#: includes/common/template-functions.php:918 +msgid "Checkout" +msgstr "Pago" + +#: includes/common/template-functions.php:207 +msgid "Check Order Status" +msgstr "Comprobar el estado del pedido" + +#: includes/common/template-functions.php:235 +msgid "View Products" +msgstr "Ver productos" + +#: includes/common/template-functions.php:263 +msgid "Visit Store" +msgstr "Visita la tienda" + +#: includes/common/template-functions.php:2912 +#: includes/multisite/template-functions.php:448 +msgid "Order By" +msgstr "Ordenar por" + +#: includes/common/template-functions.php:2887 +#: includes/multisite/template-functions.php:405 +msgid "Price (High to Low)" +msgstr "Precio (alto a bajo)" + +#: includes/common/template-functions.php:2886 +#: includes/multisite/template-functions.php:404 +msgid "Price (Low to High)" +msgstr "Precios (bajo a alto)" + +#: includes/common/template-functions.php:2881 +#: includes/multisite/template-functions.php:399 +msgid "Default" +msgstr "Por Defecto" + +#: includes/common/template-functions.php:2858 +msgid "Show All" +msgstr "Mostrar todo" + +#: includes/common/class-mp-product.php:2048 +msgid "View Larger Image »" +msgstr "Ver imagen más grande »" + +#: includes/common/class-mp-product.php:979 +msgid "Out of Stock" +msgstr "Agotado" + +#: includes/common/template-functions.php:148 +msgid "Price: " +msgstr "Precio:" + +#: includes/multisite/template-functions.php:833 +msgid "No Tags" +msgstr "No etiquetas" + +#: includes/common/template-functions.php:3162 +msgid "Uncategorized" +msgstr "Sin categorizar" + +#: includes/common/class-mp-cart.php:569 includes/common/class-mp-order.php:604 +#: includes/common/helpers.php:115 +msgid "Download" +msgstr "Descargar" + +#: includes/common/class-mp-cart.php:1353 +msgid "Empty Cart" +msgstr "Carrito vacio" + +#: includes/common/payment-gateways/_payway.php:291 +#: includes/common/payment-gateways/paypal-express.php:718 +#: includes/common/payment-gateways/paypal-payflow.php:423 +#: includes/common/shipping-modules/mp-ups.php:158 +#: includes/public/class-mp-checkout.php:1254 +#: includes/public/class-mp-checkout.php:1383 +msgid "Password" +msgstr "Contraseña" + +#: includes/common/payment-gateways/eway.php:387 +#: includes/common/payment-gateways/paypal-express.php:711 +#: includes/common/shipping-modules/mp-usps.php:185 +#: includes/public/class-mp-checkout.php:1249 +msgid "Username" +msgstr "Nombre de usuario" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:437 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:790 +msgid "Have a coupon code?" +msgstr "¿Tiene un código de cupón?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:321 +#: includes/admin/class-mp-orders-admin.php:526 +#: includes/common/class-mp-cart.php:592 +msgid "Remove" +msgstr "Retirar" + +#: includes/admin/class-mp-ajax.php:316 +msgid "Quantity:" +msgstr "Cantidad:" + +#: includes/admin/class-mp-products-admin.php:2140 +#: includes/admin/class-mp-products-admin.php:2387 +#: includes/common/shipping-modules/class-mp-shipping-api.php:507 +msgid "Extra Shipping Cost" +msgstr "Costo de envío adicional" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:403 +msgid "Choose a Shipping Method:" +msgstr "Elija un método de envío:" + +#: includes/admin/class-mp-products-admin.php:1691 +#: includes/admin/class-mp-products-admin.php:2131 +#: includes/admin/class-mp-products-admin.php:2378 +#: includes/common/shipping-modules/class-mp-shipping-api.php:228 +msgid "Ounces" +msgstr "Onzas" + +#: includes/admin/class-mp-products-admin.php:1684 +#: includes/admin/class-mp-products-admin.php:2123 +#: includes/admin/class-mp-products-admin.php:2369 +#: includes/admin/class-mp-setup-wizard.php:546 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:165 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +#: includes/common/shipping-modules/class-mp-shipping-api.php:227 +msgid "Pounds" +msgstr "Libras" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:226 +msgid "Product Weight:" +msgstr "Peso del Producto:" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:214 +msgid "Weight (Kilograms)" +msgstr "Peso (Kilogramos)" + +#: includes/admin/widgets/ms-global-categories.php:82 +msgid "Number of Categories:" +msgstr "Número de Categorías:" + +#: includes/admin/widgets/ms-global-categories.php:72 +msgid "Product Count" +msgstr "Recuento de productos" + +#: includes/addons/class-mp-addons-list-table.php:20 +#: includes/admin/class-mp-product-attributes-admin.php:129 +#: includes/admin/class-mp-product-attributes-list-table.php:22 +#: includes/admin/class-mp-products-admin.php:2216 +#: includes/admin/class-mp-shortcode-builder.php:628 +#: includes/admin/class-mp-shortcode-builder.php:1415 +#: includes/admin/widgets/ms-global-categories.php:70 +#: includes/common/shipping-modules/mp-fedex.php:395 +#: includes/common/shipping-modules/mp-ups.php:202 +#: includes/common/shipping-modules/mp-usps.php:243 +#: includes/public/class-mp-checkout.php:314 +msgid "Name" +msgstr "Nombre" + +#: includes/admin/widgets/ms-global-categories.php:67 +msgid "Order Categories By:" +msgstr "Ordenar las categorías por:" + +#: includes/admin/widgets/ms-global-categories.php:24 +#: includes/admin/widgets/ms-global-categories.php:50 +msgid "Global Product Categories" +msgstr "Categorías de productos globales" + +#: includes/admin/widgets/ms-global-categories.php:15 +msgid "Global Product Category List" +msgstr "Lista global de categorías de productos" + +#: includes/admin/widgets/ms-global-categories.php:13 +msgid "Displays a network-wide HTML list of product categories from network MarketPress stores." +msgstr "Muestra una lista HTML de toda la red de categorías de productos de las tiendas de la red MarketPress." + +#: includes/admin/widgets/ms-global-tag-cloud.php:24 +#: includes/admin/widgets/ms-global-tag-cloud.php:45 +msgid "Global Product Tags" +msgstr "Etiquetas de productos globales" + +#: includes/admin/widgets/ms-global-tag-cloud.php:15 +msgid "Global Product Tag Cloud" +msgstr "Etiqueta de producto global" + +#: includes/admin/class-mp-shortcode-builder.php:947 +#: includes/admin/widgets/ms-global-product-list.php:173 +msgid "Excerpt" +msgstr "Extracto" + +#: includes/admin/widgets/ms-global-product-list.php:169 +msgid "Content To Show:" +msgstr "Contenido para mostrar:" + +#: includes/admin/widgets/ms-global-product-list.php:140 +msgid "Limit To Product Tag:" +msgstr "Límite a la etiqueta del producto:" + +#: includes/admin/widgets/ms-global-product-list.php:132 +msgid "Limit To Product Category:" +msgstr "Límite a la categoría de producto:" + +#: includes/admin/widgets/ms-global-product-list.php:72 +msgid "Global Products" +msgstr "Productos globales" + +#: includes/admin/widgets/ms-global-product-list.php:16 +msgid "Global Product List" +msgstr "Lista global de productos" + +#: includes/admin/widgets/ms-global-product-list.php:14 +msgid "Shows a customizable global list of products from network MarketPress stores." +msgstr "Muestra una lista global personalizable de productos de las tiendas de la red MarketPress." + +#: includes/common/class-mp-product.php:974 +#: includes/multisite/template-functions.php:731 +msgid "Buy Now »" +msgstr "Compra ahora »" + +#: includes/admin/widgets/ms-global-tag-cloud.php:13 +msgid "Displays global most used product tags in cloud format from network MarketPress stores." +msgstr "Muestra las etiquetas de productos más utilizadas a nivel mundial en formato de nube desde las tiendas de la red MarketPress." + +#: includes/multisite/class-mp-admin-multisite.php:438 +msgid "Theme Permissions" +msgstr "Permisos temáticos" + +#: includes/multisite/class-mp-admin-multisite.php:402 +#: includes/multisite/class-mp-admin-multisite.php:448 +msgid "No Access" +msgstr "Sin acceso" + +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:120 +msgid "Pro Site Level" +msgstr "Pro Site Nivel" + +#: includes/multisite/class-mp-admin-multisite.php:401 +#: includes/multisite/class-mp-admin-multisite.php:447 +msgid "All Can Use" +msgstr "Todo lo que puedas usar" + +#: includes/multisite/class-mp-admin-multisite.php:390 +msgid "Gateway Permissions" +msgstr "Permisos de pasarela" + +#: includes/multisite/class-mp-admin-multisite.php:375 +msgid "Select a Gateway" +msgstr "Seleccione una pasarela" + +#: includes/multisite/class-mp-admin-multisite.php:350 +msgid "Global Gateway" +msgstr "Pasarela global" + +#. Plugin Name of the plugin/theme +msgid "MarketPress" +msgstr "MarketPress" + +#: includes/admin/widgets/product-tag-cloud.php:7 +msgid "Your most used product tags in cloud format from your MarketPress store." +msgstr "Las etiquetas de productos más utilizadas en formato de nube de su tienda MarketPress." + +#: includes/admin/widgets/categories.php:79 +msgid "Show hierarchy" +msgstr "Mostrar jerarquía" + +#: includes/admin/widgets/categories.php:76 +#: includes/admin/widgets/ms-global-categories.php:92 +msgid "Show product counts" +msgstr "Mostrar conteos de productos" + +#: includes/admin/widgets/categories.php:73 +msgid "Show as dropdown" +msgstr "Mostrar como desplegable" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:710 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:736 +#: includes/admin/widgets/categories.php:30 +msgid "Select Category" +msgstr "Selecciona una categoría" + +#: includes/admin/widgets/categories.php:7 +msgid "A list or dropdown of product categories from your MarketPress store." +msgstr "Una lista o lista desplegable de categorías de productos de su tienda MarketPress." + +#: includes/admin/widgets/product-list.php:250 +msgid "Show Buy Button" +msgstr "Mostrar botón de compra" + +#: includes/admin/widgets/ms-global-product-list.php:183 +#: includes/admin/widgets/product-list.php:244 +msgid "Show Price" +msgstr "Mostrar precio" + +#: includes/admin/widgets/product-list.php:241 +msgid "Show Excerpt" +msgstr "Mostrar extracto" + +#: includes/admin/widgets/ms-global-product-list.php:155 +#: includes/admin/widgets/product-list.php:238 +msgid "Thumbnail Size:" +msgstr "Tamaño miniatura:" + +#: includes/admin/widgets/ms-global-product-list.php:153 +#: includes/admin/widgets/product-list.php:237 +msgid "Show Thumbnail" +msgstr "Mostrar miniatura" + +#: includes/admin/widgets/ms-global-product-list.php:147 +#: includes/admin/widgets/product-list.php:233 +msgid "Display Settings" +msgstr "Configuraciones de pantalla" + +#: includes/admin/widgets/ms-global-product-list.php:136 +#: includes/admin/widgets/ms-global-product-list.php:144 +#: includes/admin/widgets/product-list.php:230 +msgid "Enter the Slug" +msgstr "Entrar el Slug" + +#: includes/admin/widgets/product-list.php:228 +#: includes/common/template-functions.php:894 +msgid "Tag" +msgstr "Etiqueta" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:686 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:712 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:739 +#: includes/admin/class-mp-shortcode-builder.php:796 +#: includes/admin/widgets/product-list.php:227 +#: includes/common/template-functions.php:886 +#: includes/common/template-functions.php:2907 +msgid "Category" +msgstr "Categoría" + +#: includes/admin/widgets/product-list.php:226 +msgid "No Filter" +msgstr "Sin filtro" + +#: includes/admin/widgets/product-list.php:224 +msgid "Taxonomy Filter:" +msgstr "Filtro de taxonomía:" + +#: includes/admin/widgets/ms-global-product-list.php:108 +#: includes/admin/widgets/product-list.php:209 +msgid "Order Products By:" +msgstr "Ordenar productos por:" + +#: includes/admin/widgets/ms-global-product-list.php:101 +#: includes/admin/widgets/product-list.php:206 +msgid "Number of Products:" +msgstr "Número de productos:" + +#: includes/admin/widgets/ms-global-product-list.php:98 +#: includes/admin/widgets/product-list.php:204 +msgid "List Settings" +msgstr "Ajustes de la lista" + +#: includes/admin/widgets/product-list.php:177 +msgid "Our Products" +msgstr "Nuestros productos" + +#: includes/admin/widgets/product-list.php:144 +#: includes/common/template-functions.php:2070 +#: includes/common/template-functions.php:2347 +#: includes/multisite/template-functions.php:303 +#: includes/multisite/template-functions.php:623 +msgid "No Products" +msgstr "Sin productos" + +#: includes/admin/widgets/product-list.php:8 +msgid "Product List" +msgstr "Lista de productos" + +#: includes/admin/widgets/product-list.php:7 +msgid "Shows a customizable list of products from your MarketPress store." +msgstr "Muestra una lista personalizable de productos de su tienda MarketPress." + +#: includes/admin/widgets/cart.php:75 includes/admin/widgets/categories.php:82 +#: includes/admin/widgets/product-list.php:253 +#: includes/admin/widgets/product-tag-cloud.php:57 +msgid "Only show on store pages" +msgstr "Mostrar solo en las páginas de la tienda" + +#: includes/admin/widgets/cart.php:65 +#: includes/admin/widgets/ms-global-product-list.php:92 +#: includes/admin/widgets/product-list.php:200 +msgid "Custom Text:" +msgstr "Texto personalizado:" + +#: includes/admin/widgets/cart.php:64 includes/admin/widgets/categories.php:69 +#: includes/admin/widgets/ms-global-categories.php:59 +#: includes/admin/widgets/ms-global-product-list.php:87 +#: includes/admin/widgets/ms-global-tag-cloud.php:49 +#: includes/admin/widgets/product-list.php:199 +#: includes/admin/widgets/product-tag-cloud.php:49 +msgid "Title:" +msgstr "Título:" + +#: includes/admin/widgets/cart.php:7 +msgid "Shows dynamic shopping cart contents along with a checkout button for your MarketPress store." +msgstr "Muestra el contenido dinámico del carrito de la compra junto con un botón de pago para su tienda MarketPress." + +#: includes/admin/widgets/product-tag-cloud.php:8 +msgid "Product Tag Cloud" +msgstr "Etiquetas de productos en la nube" + +#: includes/admin/class-mp-setup-wizard.php:539 +#: includes/admin/class-mp-setup-wizard.php:575 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:163 +msgid "Measurement System" +msgstr "Sistema de medida" + +#: includes/admin/class-mp-setup-wizard.php:616 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:149 +msgid "Select Shipping Options" +msgstr "Seleccione las opciones de envío" + +#: includes/admin/class-mp-setup-wizard.php:596 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:129 +msgid "Calculated Options" +msgstr "Opciones calculadas" + +#: includes/admin/class-mp-setup-wizard.php:582 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:115 +msgid "No Shipping" +msgstr "Sin envío" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:110 +msgid "EU" +msgstr "EU" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:109 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:93 +msgid "All" +msgstr "Todos" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:92 +msgid "Select:" +msgstr "Seleccionar:" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:185 +msgid "Store Pages" +msgstr "Páginas de la tienda" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:223 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:256 +msgid "Order Shipped" +msgstr "Orden enviada" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:60 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:95 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:128 +#: marketpress.php:266 +msgid "New Order" +msgstr "Nuevo orden" + +#: includes/admin/class-mp-dashboard-widgets.php:314 +msgid "Email Notifications" +msgstr "Notificaciones de Correo Electrónico" + +#: includes/admin/class-mp-pages-admin.php:59 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:200 +msgid "Products List" +msgstr "Lista de productos" + +#: includes/admin/class-mp-pages-admin.php:58 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:190 +msgid "Store Base" +msgstr "Base de la tienda" + +#: includes/admin/class-mp-product-attributes-admin.php:108 +#: includes/admin/class-mp-shortcode-builder.php:635 +#: includes/admin/class-mp-shortcode-builder.php:708 +#: includes/admin/class-mp-shortcode-builder.php:875 +#: includes/admin/class-mp-shortcode-builder.php:1319 +#: includes/admin/class-mp-shortcode-builder.php:1422 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:526 +#: includes/admin/widgets/ms-global-categories.php:78 +#: includes/admin/widgets/ms-global-product-list.php:127 +#: includes/admin/widgets/product-list.php:221 +msgid "Ascending" +msgstr "Ascendente" + +#: includes/admin/class-mp-product-attributes-admin.php:109 +#: includes/admin/class-mp-shortcode-builder.php:636 +#: includes/admin/class-mp-shortcode-builder.php:709 +#: includes/admin/class-mp-shortcode-builder.php:876 +#: includes/admin/class-mp-shortcode-builder.php:1320 +#: includes/admin/class-mp-shortcode-builder.php:1423 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:525 +#: includes/admin/widgets/ms-global-categories.php:75 +#: includes/admin/widgets/ms-global-product-list.php:124 +#: includes/admin/widgets/product-list.php:220 +msgid "Descending" +msgstr "Descendente " + +#: includes/admin/class-mp-shortcode-builder.php:637 +#: includes/admin/class-mp-shortcode-builder.php:695 +#: includes/admin/class-mp-shortcode-builder.php:862 +#: includes/admin/class-mp-shortcode-builder.php:1306 +#: includes/admin/class-mp-shortcode-builder.php:1424 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:518 +#: includes/admin/widgets/ms-global-product-list.php:121 +#: includes/admin/widgets/product-list.php:218 +msgid "Random" +msgstr "Aleatorio" + +#: includes/admin/class-mp-shortcode-builder.php:694 +#: includes/admin/class-mp-shortcode-builder.php:861 +#: includes/admin/class-mp-shortcode-builder.php:1305 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:517 +#: includes/admin/widgets/ms-global-product-list.php:119 +#: includes/admin/widgets/product-list.php:216 +msgid "Product Price" +msgstr "Precio del producto" + +#: includes/admin/class-mp-shortcode-builder.php:693 +#: includes/admin/class-mp-shortcode-builder.php:860 +#: includes/admin/class-mp-shortcode-builder.php:1304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:516 +#: includes/admin/widgets/ms-global-product-list.php:117 +#: includes/admin/widgets/product-list.php:215 +msgid "Number of Sales" +msgstr "Número de ventas" + +#: includes/admin/class-mp-shortcode-builder.php:692 +#: includes/admin/class-mp-shortcode-builder.php:859 +#: includes/admin/class-mp-shortcode-builder.php:1303 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:515 +#: includes/admin/widgets/product-list.php:214 +msgid "Product Author" +msgstr "Autor del producto" + +#: includes/admin/class-mp-shortcode-builder.php:691 +#: includes/admin/class-mp-shortcode-builder.php:858 +#: includes/admin/class-mp-shortcode-builder.php:1302 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:514 +#: includes/admin/widgets/product-list.php:213 +msgid "Product ID" +msgstr "Identificación del producto" + +#: includes/admin/class-mp-shortcode-builder.php:690 +#: includes/admin/class-mp-shortcode-builder.php:857 +#: includes/admin/class-mp-shortcode-builder.php:1301 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:513 +#: includes/admin/widgets/ms-global-product-list.php:113 +#: includes/admin/widgets/product-list.php:212 +msgid "Publish Date" +msgstr "Fecha de publicación" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:430 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:726 +msgid "Width" +msgstr "Ancho" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:439 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:735 +msgid "Height" +msgstr "Alto" + +#: includes/admin/class-mp-product-attributes-admin.php:88 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:402 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:698 +msgid "Custom" +msgstr "Personalizado" + +#: includes/common/class-mp-product.php:179 +#: includes/common/class-mp-product.php:992 +#: includes/common/class-mp-product.php:1000 +#: includes/multisite/template-functions.php:579 +msgid "Buy Now" +msgstr "Compra ahora" + +#: includes/common/class-mp-product.php:175 +#: includes/common/class-mp-product.php:990 +#: includes/common/class-mp-product.php:998 +msgid "Add To Cart" +msgstr "Añadir al carrito" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:807 +msgid "Store Style" +msgstr "Estilo de tienda" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1021 +msgid "Edit Coupon" +msgstr "Editar cupón" + +#: includes/addons/mp-coupons/class-mp-coupon.php:580 +#: includes/admin/class-mp-ajax.php:238 +#: includes/admin/class-mp-products-admin.php:1532 +msgid "Unlimited" +msgstr "Ilimitado" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1198 +msgid "Remaining Uses" +msgstr "Usos Restantes" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1197 +msgid "Used" +msgstr "Usado" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:752 +#: includes/admin/class-mp-products-admin.php:2343 +msgid "Start Date" +msgstr "Fecha de inicio" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:598 +msgid "Coupon Code" +msgstr "Código de Cupón" + +#: includes/admin/class-mp-orders-admin.php:444 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:284 +msgid "Save Changes" +msgstr "Guardar cambios" + +#: includes/admin/class-mp-pages-admin.php:57 +#: includes/admin/class-mp-shortcode-builder.php:716 +#: includes/admin/class-mp-shortcode-builder.php:727 +#: includes/admin/class-mp-shortcode-builder.php:883 +#: includes/admin/class-mp-shortcode-builder.php:894 +#: includes/admin/class-mp-shortcode-builder.php:946 +#: includes/admin/class-mp-shortcode-builder.php:956 +#: includes/admin/class-mp-shortcode-builder.php:1006 +#: includes/admin/class-mp-shortcode-builder.php:1327 +#: includes/admin/class-mp-shortcode-builder.php:1338 +#: includes/admin/store-settings/class-mp-store-settings-general.php:357 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:270 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:108 +#: includes/admin/widgets/ms-global-product-list.php:172 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:94 +msgid "None" +msgstr "Ninguno" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:352 +msgid "Google Analytics Ecommerce Tracking" +msgstr "Google Analytics Ecommerce Tracking" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:310 +msgid "This option turns MarketPress into more of a product listing plugin, disabling shopping carts, checkout, and order management. This is useful if you simply want to list items you can buy in a store somewhere else, optionally linking the \"Buy Now\" buttons to an external site. Some examples are a car dealership, or linking to songs/albums in itunes, or linking to products on another site with your own affiliate links." +msgstr "Esta opción convierte a MarketPress en más de un complemento de listado de productos, que deshabilita los carritos de compras, el pago y la gestión de pedidos. Esto es útil si simplemente desea enumerar los artículos que puede comprar en una tienda en otro lugar, vinculando opcionalmente los botones \"Comprar ahora\" a un sitio externo. Algunos ejemplos son un concesionario de automóviles, un enlace a canciones / álbumes en iTunes o un enlace a productos en otro sitio con su propio enlace de afiliado" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:304 +msgid "Whether or not customers must be registered and logged in to checkout. (Not recommended: Enabling this can lower conversions)" +msgstr "Si los clientes deben o no estar registrados al iniciar sesión para pagar. (No recomendado: habilitar esto puede reducir conversiones)" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:258 +msgid "How many times may a customer download a file they have purchased? (It's best to set this higher than one in case they have any problems downloading)" +msgstr "¿Cuántas veces puede un cliente descargar un archivo que ha comprado? (Es mejor establecer este valor más alto que uno en caso de que tengan problemas para descargar)" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:257 +msgid "Maximum Downloads" +msgstr "Descargas máximas" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:298 +msgid "This will set the product to draft if inventory of all variations is gone." +msgstr "Esto configurará el producto como borrador si se elimina el inventario de todas las variaciones." + +#: includes/admin/store-settings/class-mp-store-settings-general.php:288 +msgid "At what low stock count do you want to be warned for products you have enabled inventory tracking for?" +msgstr "¿A qué bajo recuento de existencias desea que se le avise de los productos para los que ha habilitado el seguimiento de inventario?" + +#: includes/admin/class-mp-dashboard-widgets.php:208 +#: includes/admin/store-settings/class-mp-store-settings-general.php:287 +msgid "Inventory Warning Threshold" +msgstr "Umbral de advertencia de inventario" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:282 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:542 +msgid "Miscellaneous Settings" +msgstr "Otras configuraciones" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:429 +#: includes/multisite/class-mp-admin-multisite.php:247 +msgid "Show Decimal in Prices" +msgstr "Mostrar decimales en precios" + +#: includes/admin/class-mp-setup-wizard.php:451 +#: includes/admin/store-settings/class-mp-store-settings-general.php:403 +#: includes/multisite/class-mp-admin-multisite.php:221 +msgid "Currency Symbol Position" +msgstr "Posición del símbolo de moneda" + +#: includes/admin/class-mp-setup-wizard.php:444 +#: includes/admin/store-settings/class-mp-store-settings-general.php:396 +msgid "Store Currency" +msgstr "Moneda de la tienda" + +#: includes/admin/class-mp-setup-wizard.php:429 +#: includes/admin/store-settings/class-mp-store-settings-general.php:381 +msgid "Currency Settings" +msgstr "Ajustes de la moneda" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:516 +msgid "Please see your local tax laws. Note if this is enabled and a downloadable only cart, rates will be the default for your base location." +msgstr "Por favor, consulte sus leyes fiscales locales. Tenga en cuenta que si está habilitado y si se trata de un carrito solo descargable, las tarifas serán las predeterminadas para su ubicación base." + +#: includes/admin/class-mp-setup-wizard.php:529 +msgid "Apply Tax to Downloadable Products?" +msgstr "¿Aplicar el impuesto a los productos descargables?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:498 +msgid "Enabling this option allows you to enter and show all prices inclusive of tax, while still listing the tax total as a line item in shopping carts. Please see your local tax laws." +msgstr "La habilitación de esta opción le permite ingresar y mostrar todos los precios con impuestos incluidos, mientras que aún se muestra el total de impuestos como una partida en los carritos de la compra. Por favor, consulte sus leyes fiscales locales." + +#: includes/admin/class-mp-setup-wizard.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:497 +msgid "Enter Prices Inclusive of Tax?" +msgstr "¿Ingresar los precios con impuestos incluidos?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:492 +msgid "Please see your local tax laws. Most areas charge tax on shipping fees." +msgstr "Por favor, consulte sus leyes fiscales locales. La mayoría de las áreas cobran impuestos sobre los gastos de envío." + +#: includes/admin/class-mp-setup-wizard.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:491 +msgid "Apply Tax To Shipping Fees?" +msgstr "Aplicar impuestos a las tarifas de envío?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:674 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:565 +#: includes/common/payment-gateways/authorizenet-aim.php:291 +#: includes/common/payment-gateways/authorizenet-aim.php:326 +#: includes/common/payment-gateways/payfast.php:347 +msgid "No" +msgstr "No" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:675 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:759 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:512 +#: includes/admin/class-mp-setup-wizard.php:518 +#: includes/admin/class-mp-setup-wizard.php:524 +#: includes/admin/class-mp-setup-wizard.php:530 +#: includes/admin/class-mp-setup-wizard.php:564 +#: includes/admin/store-settings/class-mp-store-settings-general.php:232 +#: includes/admin/store-settings/class-mp-store-settings-general.php:299 +#: includes/admin/store-settings/class-mp-store-settings-general.php:305 +#: includes/admin/store-settings/class-mp-store-settings-general.php:311 +#: includes/admin/store-settings/class-mp-store-settings-general.php:317 +#: includes/admin/store-settings/class-mp-store-settings-general.php:328 +#: includes/admin/store-settings/class-mp-store-settings-general.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:341 +#: includes/admin/store-settings/class-mp-store-settings-general.php:348 +#: includes/admin/store-settings/class-mp-store-settings-general.php:367 +#: includes/admin/store-settings/class-mp-store-settings-general.php:493 +#: includes/admin/store-settings/class-mp-store-settings-general.php:499 +#: includes/admin/store-settings/class-mp-store-settings-general.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:556 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:375 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:381 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:387 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:474 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:493 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:532 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:574 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:606 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:664 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:670 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:677 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:683 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:689 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:763 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:774 +#: includes/common/payment-gateways/_bitpay.php:250 +#: includes/common/payment-gateways/_bitpay.php:257 +#: includes/common/payment-gateways/_bitpay.php:264 +#: includes/common/payment-gateways/authorizenet-aim.php:290 +#: includes/common/payment-gateways/authorizenet-aim.php:325 +#: includes/common/payment-gateways/free_orders.php:160 +#: includes/common/payment-gateways/payfast.php:346 +#: includes/common/payment-gateways/paymill.php:162 +#: includes/common/payment-gateways/paypal-payflow.php:441 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-checkbox.php:22 +msgid "Yes" +msgstr "Si" + +#: includes/admin/class-mp-setup-wizard.php:492 +#: includes/admin/store-settings/class-mp-store-settings-general.php:472 +msgid "%s Tax Rate" +msgstr "%s Tasa de impuesto" + +#: includes/admin/class-mp-setup-wizard.php:467 +#: includes/admin/store-settings/class-mp-store-settings-general.php:449 +msgid "Tax Settings" +msgstr "Ajustes de impuestos" + +#: includes/admin/class-mp-setup-wizard.php:370 +#: includes/admin/store-settings/class-mp-store-settings-general.php:624 +msgid "Base Zip/Postal Code" +msgstr "Base Zip / Código Postal" + +#: includes/admin/class-mp-setup-wizard.php:354 +#: includes/admin/store-settings/class-mp-store-settings-general.php:608 +msgid "Base State/Province/Region" +msgstr "Estado base / Provincia / Región" + +#: includes/admin/class-mp-setup-wizard.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:589 +msgid "Base Country" +msgstr "País base" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:582 +msgid "Location Settings" +msgstr "Configuración de ubicación" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:195 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:800 +#: includes/multisite/class-mp-admin-multisite.php:172 +msgid "General Settings" +msgstr "Configuración general" + +#: includes/admin/class-mp-products-admin.php:1945 +#: includes/admin/class-mp-products-admin.php:2185 +#: includes/admin/class-mp-store-settings-admin.php:111 +#: includes/admin/class-mp-store-settings-admin.php:266 +msgid "General" +msgstr "General" + +#: includes/admin/class-mp-store-settings-admin.php:242 +msgid "Importers" +msgstr "Importadores" + +#: includes/admin/class-mp-store-settings-admin.php:115 +#: includes/admin/class-mp-store-settings-admin.php:234 +msgid "Payments" +msgstr "Pagos" + +#: includes/admin/class-mp-dashboard-widgets.php:313 +#: includes/admin/class-mp-store-settings-admin.php:112 +#: includes/admin/class-mp-store-settings-admin.php:222 +msgid "Presentation" +msgstr "Presentación" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:916 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1015 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1018 +#: includes/admin/class-mp-dashboard-widgets.php:305 marketpress.php:702 +msgid "Coupons" +msgstr "Cupones" + +#: includes/admin/class-mp-admin.php:251 +msgid "Download »" +msgstr "Descargas »" + +#: includes/admin/class-mp-admin.php:245 +#: includes/admin/class-mp-exporter-orders.php:170 +msgid "All Statuses" +msgstr "Todos los estados" + +#: includes/admin/class-mp-admin.php:209 +#: includes/admin/class-mp-exporter-orders.php:150 +#: includes/admin/class-mp-exporter-orders.php:178 +msgid "Export Orders" +msgstr "Órdenes de exportación" + +#: includes/admin/class-mp-admin.php:228 +msgid "Show all dates" +msgstr "Mostrar todas las fechas" + +#: includes/admin/class-mp-orders-admin.php:947 +msgid "Change Status" +msgstr "Cambiar Estado" + +#: includes/admin/class-mp-orders-admin.php:287 +msgid "Order Notes" +msgstr "Notas del pedido " + +#: includes/admin/class-mp-orders-admin.php:478 +msgid "Other" +msgstr "Otro" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:205 +msgid "Subtotal" +msgstr "Subtotal" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:84 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:87 +#: includes/admin/class-mp-products-admin.php:1737 +#: includes/common/class-mp-cart.php:1409 +#: includes/common/class-mp-product.php:559 +msgid "Quantity" +msgstr "Cantidad" + +#: includes/common/helpers.php:93 +msgid "Item" +msgstr "Artículo" + +#: includes/common/class-mp-order.php:1050 +msgid "Current Status" +msgstr "Estado actual" + +#: includes/admin/class-mp-orders-admin.php:297 +msgid "Order Actions" +msgstr "Acciones del pedido" + +#: includes/common/class-mp-product.php:1084 +msgid "More Info »" +msgstr "Más informaciones. »" + +#: includes/common/class-mp-product.php:2313 +msgid "Low Product Inventory Notification" +msgstr "Baja notificación de inventario de producto" + +#: includes/common/class-mp-order.php:338 includes/common/data.php:154 +msgid "New Order Notification: ORDERID" +msgstr "Notificación de nueva orden: ORDERID" + +#: includes/common/helpers.php:259 +msgid "Your payment for this order is complete." +msgstr "Su pago por este pedido está completo." + +#: includes/common/helpers.php:261 +msgid "Your payment for this order is not yet complete. Here is the latest status:" +msgstr "Su pago por este pedido aún no está completo. Aquí está el último estado:" + +#: includes/common/helpers.php:256 +msgid "Payment Total:" +msgstr "Total de pago:" + +#: includes/common/helpers.php:253 +msgid "Transaction ID:" +msgstr "ID de transacción:" + +#: includes/common/helpers.php:249 +msgid "Payment Type:" +msgstr "Tipo de pago:" + +#: includes/common/helpers.php:246 +msgid "Payment Method:" +msgstr "Método de pago:" + +#: includes/common/helpers.php:242 +msgid "Order Notes:" +msgstr "Notas del Pedido:" + +#: includes/common/helpers.php:237 +msgid "Special Instructions:" +msgstr "Instrucciones especiales:" + +#: includes/common/helpers.php:232 +msgid "Tracking Number:" +msgstr "El número de rastreo:" + +#: includes/common/helpers.php:223 includes/common/helpers.php:226 +#: includes/common/helpers.php:228 +#: includes/common/shipping-modules/class-mp-shipping-api.php:406 +#: includes/common/shipping-modules/class-mp-shipping-api.php:428 +msgid "Shipping Method:" +msgstr "Método de envío:" + +#: includes/common/helpers.php:168 +msgid "No shipping required for this order." +msgstr "No se requiere envío para este pedido." + +#: includes/common/helpers.php:155 +msgid "Order Total:" +msgstr "Total del pedido:" + +#: includes/common/class-mp-order.php:1025 +msgid "Taxes:" +msgstr "Impuestos:" + +#: includes/common/class-mp-order.php:1032 includes/common/helpers.php:144 +msgid "Shipping:" +msgstr "Envío:" + +#: includes/public/class-mp-checkout.php:367 +msgid "Street address, P.O. box, company name, c/o" +msgstr "Direccion, P.O. box, nombre de la empresa, c / o" + +#: includes/admin/class-mp-orders-admin.php:314 +msgid "Shipping Info" +msgstr "Datos de envío" + +#: includes/public/class-mp-public.php:740 +msgid "Whoops, there was a problem loading up this file for your download. Please contact us for help." +msgstr "Vaya, hubo un problema al cargar este archivo para su descarga. Por favor, póngase en contacto con nosotros para obtener ayuda." + +#: includes/public/class-mp-public.php:683 +msgid "Sorry, our records show you've downloaded this file %d out of %d times allowed. Please contact us if you still need help." +msgstr "Lo sentimos, nuestros registros muestran que ha descargado este archivo %d fuera de %d veces permitidos. Por favor, póngase en contacto con nosotros si todavía necesita ayuda." + +#: includes/public/class-mp-public.php:634 +msgid "Sorry, your order has been marked as unpaid." +msgstr "Lo sentimos, su pedido ha sido marcado como no pagado." + +#: includes/public/class-mp-public.php:629 +msgid "Sorry, the link is invalid for this download." +msgstr "Lo sentimos, el enlace no es válido para esta descarga." + +#: includes/admin/class-mp-exporter-orders.php:15 +#: includes/admin/class-mp-products-admin.php:1172 +msgid "Cheatin’ uh?" +msgstr "Cheatin’ uh?" + +#: includes/public/class-mp-public.php:407 +#: includes/public/class-mp-short-codes.php:128 +msgid "Please enter a valid email address." +msgstr "Por favor, introduzca una dirección de correo electrónico válida." + +#: includes/admin/class-mp-ajax.php:191 +#: includes/admin/class-mp-products-admin.php:1821 +#: includes/admin/class-mp-products-admin.php:2010 +#: includes/admin/class-mp-products-admin.php:2267 +msgid "File URL" +msgstr "URL del archivo" + +#: includes/admin/class-mp-products-admin.php:1842 +msgid "External Link" +msgstr "Enlace externo" + +#: includes/admin/class-mp-products-admin.php:2177 +msgid "Add Variation" +msgstr "Añadir variación" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:126 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:289 +msgid "Inventory" +msgstr "Inventario" + +#: includes/admin/class-mp-products-admin.php:438 +#: includes/admin/class-mp-products-admin.php:578 +#: includes/admin/class-mp-products-admin.php:1552 +#: includes/admin/class-mp-products-admin.php:2053 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:134 +msgid "Sale Price" +msgstr "Precio de venta" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "Variation Name" +msgstr "Nombre de la variación" + +#: includes/admin/class-mp-products-admin.php:1931 +msgid "Product Details" +msgstr "Detalles del producto" + +#: includes/admin/class-mp-product-attributes-list-table.php:33 +msgid "Delete" +msgstr "Borrar" + +#: includes/admin/class-mp-orders-admin.php:1057 +msgid "Trashed" +msgstr "A la basura" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:231 +#: includes/admin/class-mp-orders-admin.php:1015 +#: includes/common/class-mp-order.php:1052 includes/common/helpers.php:97 +msgid "Total" +msgstr "Total" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1196 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:210 +#: includes/admin/class-mp-orders-admin.php:1014 +msgid "Discount" +msgstr "Descuento" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:221 +#: includes/admin/class-mp-orders-admin.php:1013 +#: includes/common/payment-gateways/_ideal.php:148 +#: includes/common/payment-gateways/_payway.php:134 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:108 +msgid "Tax" +msgstr "Impuesto" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:216 +#: includes/admin/class-mp-orders-admin.php:1012 +#: includes/admin/class-mp-products-admin.php:1958 +#: includes/admin/class-mp-products-admin.php:2198 +#: includes/admin/class-mp-store-settings-admin.php:114 +#: includes/admin/class-mp-store-settings-admin.php:230 +#: includes/common/class-mp-cart.php:717 includes/common/helpers.php:168 +#: includes/common/payment-gateways/_ideal.php:137 +#: includes/common/payment-gateways/_payway.php:116 +#: includes/public/class-mp-checkout.php:1304 +msgid "Shipping" +msgstr "Envío" + +#: includes/admin/class-mp-orders-admin.php:1011 +msgid "Items" +msgstr "Artículos" + +#: includes/admin/class-mp-orders-admin.php:1010 +msgid "From" +msgstr "Desde" + +#: includes/admin/class-mp-exporter-orders.php:154 +#: includes/admin/class-mp-orders-admin.php:1009 +#: includes/common/class-mp-gdpr.php:370 +msgid "Order Date" +msgstr "Fecha de la orden" + +#: includes/admin/class-mp-orders-admin.php:1008 +#: includes/common/class-mp-gdpr.php:366 +#: includes/common/template-functions.php:2134 +msgid "Order ID" +msgstr "Identificación del pedido" + +#: includes/addons/class-mp-addons-list-table.php:22 +#: includes/admin/class-mp-orders-admin.php:1007 +msgid "Status" +msgstr "Estado" + +#: includes/admin/class-mp-orders-admin.php:1155 +msgid "N/A" +msgstr "N/A" + +#: includes/admin/class-mp-dashboard-widgets.php:243 +#: includes/admin/class-mp-products-admin.php:464 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:142 +msgid "Sales" +msgstr "Ventas" + +#: includes/admin/class-mp-products-admin.php:463 +msgid "Stock" +msgstr "Inventario" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:85 +#: includes/admin/class-mp-ajax.php:176 includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:434 +#: includes/admin/class-mp-products-admin.php:462 +#: includes/admin/class-mp-products-admin.php:576 +#: includes/admin/class-mp-products-admin.php:1519 +#: includes/admin/class-mp-products-admin.php:1569 +#: includes/admin/class-mp-products-admin.php:1950 +#: includes/admin/class-mp-products-admin.php:2059 +#: includes/admin/class-mp-products-admin.php:2190 +#: includes/admin/class-mp-products-admin.php:2330 +#: includes/common/class-mp-cart.php:1415 includes/common/helpers.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:130 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:276 +msgid "Price" +msgstr "Precio" + +#: includes/admin/class-mp-ajax.php:173 +#: includes/admin/class-mp-products-admin.php:461 +#: includes/admin/class-mp-products-admin.php:1972 +#: includes/admin/class-mp-products-admin.php:2224 +msgid "SKU" +msgstr "SKU" + +#: includes/admin/class-mp-products-admin.php:459 +#: includes/admin/class-mp-products-admin.php:1793 +#: includes/admin/class-mp-products-admin.php:1805 +#: includes/admin/class-mp-products-admin.php:2163 +msgid "Variations" +msgstr "Variaciones" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:83 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:86 +#: includes/admin/class-mp-dashboard-widgets.php:134 +#: includes/admin/class-mp-products-admin.php:458 +#: includes/admin/class-mp-products-admin.php:837 +#: includes/admin/class-mp-shortcode-builder.php:689 +#: includes/admin/class-mp-shortcode-builder.php:856 +#: includes/admin/class-mp-shortcode-builder.php:1300 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:512 +#: includes/admin/widgets/ms-global-product-list.php:115 +#: includes/admin/widgets/product-list.php:211 +msgid "Product Name" +msgstr "Nombre del producto" + +#: includes/common/template-functions.php:2575 +msgid "Categorized in " +msgstr "Categorizado en " + +#: includes/admin/class-mp-orders-admin.php:305 +#: includes/common/payment-gateways/free_orders.php:176 +msgid "Payment Information" +msgstr "Información del pago" + +#: includes/admin/class-mp-exporter-orders.php:167 +#: includes/admin/class-mp-orders-admin.php:432 +#: includes/admin/class-mp-pages-admin.php:62 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:227 +#: includes/common/class-mp-gdpr.php:374 +#: includes/common/template-functions.php:175 +#: includes/common/template-functions.php:926 +msgid "Order Status" +msgstr "Estado del pedido" + +#. translators: %s: orders closed +#: marketpress.php:327 +msgid "Closed (%s)" +msgid_plural "Closed (%s)" +msgstr[0] "Cerrado (%s)" +msgstr[1] "Cerrados (%s)" + +#: includes/admin/class-mp-admin.php:249 +#: includes/admin/class-mp-orders-admin.php:375 +#: includes/admin/class-mp-orders-admin.php:951 +#: includes/admin/class-mp-orders-admin.php:1053 +#: includes/admin/class-mp-orders-admin.php:1065 +#: includes/common/class-mp-gdpr.php:330 +#: includes/common/class-mp-order.php:1019 marketpress.php:325 +msgid "Closed" +msgstr "Cerrado" + +#. translators: %s: shipped orders +#: marketpress.php:320 +msgid "Shipped (%s)" +msgid_plural "Shipped (%s)" +msgstr[0] "Enviado (%s)" +msgstr[1] "Enviados (%s)" + +#: includes/admin/class-mp-admin.php:248 +#: includes/admin/class-mp-orders-admin.php:376 +#: includes/admin/class-mp-orders-admin.php:950 +#: includes/admin/class-mp-orders-admin.php:1049 +#: includes/admin/class-mp-orders-admin.php:1064 +#: includes/common/class-mp-gdpr.php:329 +#: includes/common/class-mp-order.php:1002 marketpress.php:318 +msgid "Shipped" +msgstr "Enviado" + +#. translators: %s: paid orders +#: marketpress.php:313 +msgid "Paid (%s)" +msgid_plural "Paid (%s)" +msgstr[0] "Pagado (%s)" +msgstr[1] "Pagados (%s)" + +#: includes/admin/class-mp-admin.php:247 +#: includes/admin/class-mp-orders-admin.php:377 +#: includes/admin/class-mp-orders-admin.php:949 +#: includes/admin/class-mp-orders-admin.php:1045 +#: includes/admin/class-mp-orders-admin.php:1063 +#: includes/common/class-mp-gdpr.php:328 +#: includes/common/payment-gateways/2checkout.php:294 +#: includes/common/payment-gateways/_cubepoints.php:130 +#: includes/common/payment-gateways/authorizenet-aim.php:193 +#: includes/common/payment-gateways/free_orders.php:91 +#: includes/common/payment-gateways/mijireh.php:248 +#: includes/common/payment-gateways/paymill.php:273 +#: includes/common/payment-gateways/paypal-express.php:933 +#: includes/common/payment-gateways/paypal-express.php:967 +#: includes/common/payment-gateways/pin.php:258 +#: includes/common/payment-gateways/simplify.php:181 +#: includes/common/payment-gateways/stripe.php:368 +#: includes/common/payment-gateways/wepay.php:269 marketpress.php:311 +msgid "Paid" +msgstr "Pagado" + +#. translators: %s: orders received +#: marketpress.php:306 +msgid "Received (%s)" +msgid_plural "Received (%s)" +msgstr[0] "Recibido (%s)" +msgstr[1] "Recibidos (%s)" + +#: includes/admin/class-mp-admin.php:246 +#: includes/admin/class-mp-orders-admin.php:378 +#: includes/admin/class-mp-orders-admin.php:1041 +#: includes/admin/class-mp-orders-admin.php:1062 +#: includes/common/class-mp-gdpr.php:327 includes/common/class-mp-order.php:995 +#: includes/common/payment-gateways/payfast.php:244 marketpress.php:304 +msgid "Received" +msgstr "Recibido" + +#: marketpress.php:268 +msgid "Search Orders" +msgstr "Buscar ordenes" + +#: marketpress.php:267 +msgid "View Order" +msgstr "Ver pedido" + +#: marketpress.php:262 +msgid "Order" +msgstr "Orden" + +#: includes/admin/class-mp-dashboard-widgets.php:301 +#: includes/admin/class-mp-orders-admin.php:989 marketpress.php:261 +msgid "Orders" +msgstr "Ordenes" + +#: marketpress.php:228 +msgid "No Products found in Trash" +msgstr "No se encontraron productos en la basura" + +#: marketpress.php:227 +msgid "No Products Found" +msgstr "No se encontraron productos" + +#: marketpress.php:226 +msgid "Search Products" +msgstr "Buscar Productos" + +#: marketpress.php:225 marketpress.php:229 +msgid "View Product" +msgstr "Ver el producto" + +#: marketpress.php:224 +msgid "New Product" +msgstr "Nuevo producto" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1022 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:258 +#: marketpress.php:223 +msgid "Edit" +msgstr "Editar" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1019 +msgid "Create New" +msgstr "Crear nuevo" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:687 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:698 +#: marketpress.php:217 +msgid "Product" +msgstr "Producto" + +#: includes/admin/class-mp-dashboard-widgets.php:307 +#: includes/common/template-functions.php:173 +#: includes/common/template-functions.php:179 +#: includes/common/template-functions.php:902 +#: includes/multisite/template-functions.php:82 marketpress.php:216 +#: marketpress.php:219 +msgid "Products" +msgstr "Productos" + +#: includes/admin/class-mp-store-settings-admin.php:118 +#: includes/admin/widgets/product-tag-cloud.php:46 +#: includes/multisite/class-mp-admin-multisite.php:548 +msgid "Product Tags" +msgstr "Etiquetas de productos" + +#: includes/common/template-functions.php:2906 +#: includes/multisite/template-functions.php:449 +msgid "Product Category" +msgstr "Categoria del producto" + +#: includes/admin/class-mp-store-settings-admin.php:117 +#: includes/admin/widgets/categories.php:8 +#: includes/admin/widgets/categories.php:18 +#: includes/multisite/class-mp-admin-multisite.php:539 +msgid "Product Categories" +msgstr "Categorías de los Productos" + +#: includes/common/payment-gateways/stripe.php:332 +#: includes/common/template-functions.php:872 marketpress.php:218 +msgid "Store" +msgstr "Tienda" + +#: includes/admin/class-mp-pages-admin.php:60 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:209 +#: includes/admin/widgets/cart.php:8 includes/admin/widgets/cart.php:56 +#: includes/common/template-functions.php:174 +#: includes/common/template-functions.php:811 +msgid "Shopping Cart" +msgstr "Carrito de compra" + +#: includes/admin/class-mp-store-settings-admin.php:110 +#: includes/admin/class-mp-store-settings-admin.php:218 +msgid "Store Settings" +msgstr "Configuraciones de la tienda" + +#: includes/addons/class-mp-addons-list-table.php:128 marketpress.php:607 +msgid "Settings" +msgstr "Ajustes" + +#: includes/common/data.php:178 includes/common/data.php:190 +msgid "Your Order Has Been Shipped! (ORDERID)" +msgstr "Su orden ha sido enviada! (ORDERID)" + +#: includes/common/data.php:159 includes/common/data.php:166 +#: includes/common/data.php:172 +msgid "Your Order Confirmation (ORDERID)" +msgstr "La confirmación de su pedido (ORDERID)" + +#: includes/common/data.php:148 +msgid "

    Thank you for your order! We appreciate your business, and please come back often to check out our new products.

    " +msgstr "

    ¡Gracias por su orden! Apreciamos su negocio y por favor, vuelva con frecuencia para ver nuestros nuevos productos.

    " + +#: includes/common/data.php:147 +msgid "

    You are almost done! Please do a final review of your order to make sure everything is correct then click the \"Confirm Payment\" button.

    " +msgstr "

    ¡Estas casi listo! Haga una revisión final de su pedido para asegurarse de que todo está correcto y luego haga clic en el botón \"Confirmar pago\".

    " + +#: includes/common/data.php:145 +msgid "

    Please enter your shipping information in the form below to proceed with your order.

    " +msgstr "

    Ingrese su información de envío en el siguiente formulario para continuar con su pedido.

    " + +#: includes/common/data.php:143 +msgid "

    If you have any questions about your order please do not hesitate to contact us.

    " +msgstr "

    Si tiene alguna pregunta sobre su pedido, no dude en ponerse en contacto con nosotros.

    " + +#: includes/common/data.php:106 +msgid "tag" +msgstr "etiqueta" + +#: includes/common/data.php:105 +msgid "category" +msgstr "categoría" + +#: includes/common/data.php:104 +msgid "order-status" +msgstr "estado del pedido" + +#: includes/common/data.php:103 +msgid "shopping-cart" +msgstr "carrito de compras" + +#: includes/common/data.php:102 +msgid "products" +msgstr "productos" + +#. Translators: change default slugs here +#: includes/common/data.php:101 +msgid "store" +msgstr "tienda" \ No newline at end of file diff --git a/languages/mp-es.mo b/languages/mp-es.mo new file mode 100644 index 0000000000000000000000000000000000000000..739051d38616a1f4d29b902b87d5f130910f9329 GIT binary patch literal 203374 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 M1mxx|eLwjB01m%wWB>pF literal 0 HcmV?d00001 diff --git a/languages/mp-es.po b/languages/mp-es.po new file mode 100644 index 00000000..2704c5e1 --- /dev/null +++ b/languages/mp-es.po @@ -0,0 +1,9104 @@ +# Translation of MarketPress in Spanish (Spain) +# This file is distributed under the same license as the MarketPress package. +msgid "" +msgstr "" +"PO-Revision-Date: 2018-12-29 14:28:06+0000\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-Generator: GlotPress/2.3.1\n" +"Language: es\n" +"Project-Id-Version: MarketPress\n" + +#: includes/public/class-mp-checkout.php:1285 +msgid "By clicking this checkbox you allow the website to process your personal data." +msgstr "" + +#: includes/common/class-mp-gdpr.php:382 +msgid "Order Info" +msgstr "" + +#: includes/common/class-mp-gdpr.php:268 +msgid "Shipping Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:267 +msgid "Shipping Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:266 +msgid "Shipping ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:265 +msgid "Shipping State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:264 +msgid "Shipping City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:263 +msgid "Shipping Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:262 +msgid "Shipping Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:261 +msgid "Shipping Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:260 +msgid "Shipping Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:259 +msgid "Shipping Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:258 +msgid "Shipping First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:254 +msgid "Billing Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:253 +msgid "Billing Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:252 +msgid "Billing ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:251 +msgid "Billing State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:250 +msgid "Billing City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:249 +msgid "Billing Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:248 +msgid "Billing Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:247 +msgid "Billing Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:246 +msgid "Billing Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:245 +msgid "Billing Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:244 +msgid "Billing First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:151 +msgid "Orders Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:139 +msgid "Customer Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:100 includes/common/class-mp-gdpr.php:116 +msgid "MarketPress User Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:81 +msgid "" +"In addition to standard WordPress session cookies, this site might be setting an\n" +"\t\t additional cookie to remember your cart settings. This cookie will last for one year." +msgstr "" + +#: includes/common/class-mp-gdpr.php:80 +msgid "Cookies" +msgstr "" + +#: includes/common/class-mp-gdpr.php:77 +msgid "" +"The following information will be collected in order to process orders: your name,\n" +"\t\t username, email address, avatar and profile URLs, address and phone number. This data can be\n" +"\t\t exported and removed." +msgstr "" + +#: includes/common/class-mp-gdpr.php:76 +msgid "Additional data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:71 +msgid "" +"This site might be using third party services and tools to process payments or/and\n" +"\t\t process shipping data when creating orders on the MarketPress store. These services include payment\n" +"\t\t gateways: 2Checkout, Authorize.net AIM, eWay shared payments, eWay Rapid 3.1 Payments, Mijireh,\n" +"\t\t Mollie, Paymill, PayPal, PIN, Simplify Commerce by MasterCard, Stripe and WePay; shipping gateways:\n" +"\t\t Fedex, UPS, USPS." +msgstr "" + +#: includes/common/class-mp-gdpr.php:70 +msgid "Third parties" +msgstr "" + +#: includes/admin/class-mp-admin.php:403 +msgid "Start creating store pages and products for your online shop here." +msgstr "" + +#: includes/admin/class-mp-admin.php:402 +msgid "Create Online Shop" +msgstr "" + +#: includes/admin/class-mp-admin.php:394 +msgid "Run Setup Wizard" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:234 +msgid "If having problems during invoice generation, add define( 'DOMPDF_ENABLE_HTML5PARSER', true ); to the wp-config.php file." +msgstr "" + +#: includes/public/class-mp-checkout.php:723 +msgid "Invalid Email" +msgstr "Email inválido" + +#: includes/public/class-mp-checkout.php:721 +#: includes/public/class-mp-checkout.php:729 +msgid "This field is required" +msgstr "Este campo es requerido" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:804 +msgid "This option changes the built-in css styles for store pages. For a custom css style, save your css file with the /* MarketPress Style: Your CSS Theme Name Here */ header line in the \"%s\" folder and it will appear in this list so you may select it. You should select \"None\" if you don't wish to use custom CSS styles or if you are using default theme templates or custom theme templates and css to make your own completely unique store design. For more information on custom theme templates click here »." +msgstr "Esta opción cambia los estilos CSS integrados para las páginas de la tienda. Para un estilo css personalizado, guarde su archivo css con la línea de encabezado / * MarketPress Style: Your Theme Theme Here * / en la carpeta \"%s\" y aparecerá aparecerá en esta lista para que pueda seleccionarla. Debería seleccionar \"Ninguno\" si no desea usar estilos CSS personalizados o si está utilizando plantillas de tema predeterminadas o plantillas de tema personalizadas y css para hacer su propio diseño de tienda completamente único. Para obtener más información sobre plantillas de temas personalizados, haga clic en here »." + +#: includes/public/class-mp-public.php:421 +#: includes/public/class-mp-short-codes.php:142 +msgid "Please enter a value greater than or equal to {0}." +msgstr "Por favor ingrese un valor mayor o igual a {0}." + +#: includes/public/class-mp-public.php:420 +#: includes/public/class-mp-short-codes.php:141 +msgid "Please enter a value less than or equal to {0}." +msgstr "Introduzca un valor menor o igual que {0}." + +#: includes/public/class-mp-public.php:419 +#: includes/public/class-mp-short-codes.php:140 +msgid "Please enter a value between {0} and {1}." +msgstr "Por favor ingrese un valor entre {0} y {1}." + +#: includes/public/class-mp-public.php:418 +#: includes/public/class-mp-short-codes.php:139 +msgid "Please enter a value between {0} and {1} characters long." +msgstr "Ingrese un valor entre {0} y {1} caracteres de longitud." + +#: includes/public/class-mp-public.php:417 +#: includes/public/class-mp-short-codes.php:138 +msgid "Please enter at least {0} characters." +msgstr "Por favor ingrese al menos {0} caracteres." + +#: includes/public/class-mp-public.php:416 +#: includes/public/class-mp-short-codes.php:137 +msgid "Please enter no more than {0} characters." +msgstr "Por favor no ingrese más de {0} caracteres." + +#: includes/public/class-mp-public.php:415 +#: includes/public/class-mp-short-codes.php:136 +msgid "Please enter a value with a valid extension." +msgstr "Por favor, introduzca un valor con una extensión válida." + +#: includes/public/class-mp-public.php:414 +#: includes/public/class-mp-short-codes.php:135 +msgid "Please enter the same value again." +msgstr "Por favor, introduzca el mismo valor de nuevo." + +#: includes/public/class-mp-public.php:413 +#: includes/public/class-mp-short-codes.php:134 +msgid "Please enter a valid credit card number." +msgstr "Por favor, introduzca un número de tarjeta de crédito válida." + +#: includes/public/class-mp-public.php:412 +#: includes/public/class-mp-short-codes.php:133 +msgid "Please enter only digits." +msgstr "Por favor ingrese solo dígitos." + +#: includes/public/class-mp-public.php:411 +#: includes/public/class-mp-short-codes.php:132 +msgid "Please enter a valid number." +msgstr "Por favor ingrese un número valido." + +#: includes/public/class-mp-public.php:410 +#: includes/public/class-mp-short-codes.php:131 +msgid "Please enter a valid date (ISO)." +msgstr "Por favor, introduzca una fecha válida (ISO)." + +#: includes/public/class-mp-public.php:409 +#: includes/public/class-mp-short-codes.php:130 +msgid "Please enter a valid date." +msgstr "Por favor introduzca una fecha valida." + +#: includes/public/class-mp-public.php:408 +#: includes/public/class-mp-short-codes.php:129 +msgid "Please enter a valid URL." +msgstr "Por favor introduzca un URL válido." + +#: includes/public/class-mp-public.php:406 +#: includes/public/class-mp-short-codes.php:127 +msgid "Please fix this field." +msgstr "Por favor arregla este campo." + +#: includes/public/class-mp-checkout.php:1287 +#: includes/public/class-mp-public.php:405 +#: includes/public/class-mp-short-codes.php:126 +msgid "This field is required." +msgstr "Este campo es requerido." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:810 +msgid "None - Without Special CSS-styles" +msgstr "Ninguno - Sin estilos especiales de CSS" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:809 +msgid "Default - Using Default CSS-styles" +msgstr "Predeterminado - Usando estilos CSS predeterminados" + +#: marketpress.php:739 +msgid "Enable multiple downloads per product" +msgstr "Habilitar múltiples descargas por producto" + +#: marketpress.php:738 +msgid "Multiple Downloads" +msgstr "Descargas Múltiples" + +#: includes/public/class-mp-checkout.php:715 +msgid "Invalid Zip Code" +msgstr "Código postal no válido" + +#: includes/common/template-functions.php:2126 +msgid "Guest Email" +msgstr "Email del invitado" + +#: includes/common/payment-gateways/simplify.php:195 +msgid "There was a problem finalizing your purchase. Please re-enter your credit card information and try again" +msgstr "Hubo un problema al finalizar tu compra. Vuelva a ingresar la información de su tarjeta de crédito e intente nuevamente " + +#: includes/common/class-mp-cart.php:565 includes/common/class-mp-order.php:600 +#: includes/common/helpers.php:111 +msgid "Download %1$s" +msgstr "Descargar %1$s" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:331 +msgid "Export products to file" +msgstr "Exportar productos a archivo." + +#: includes/admin/store-settings/class-mp-store-settings-import.php:328 +msgid "The import process uses the WordPress importer plugin." +msgstr "El proceso de importación utiliza el complemento importador de WordPress." + +#: includes/admin/store-settings/class-mp-store-settings-import.php:326 +msgid "Import / Export Products" +msgstr "Importar / Exportar Productos" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:325 +msgid "Export settings to file" +msgstr "Ajustes de exportación a archivo" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:324 +msgid "Import configuration" +msgstr "Configuración de importación" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:320 +msgid "Use the text below to export to a new installation. Or paste in the new configuration to import." +msgstr "Utilice el texto a continuación para exportar a una nueva instalación. O pegar en la nueva configuración para importar." + +#: includes/admin/store-settings/class-mp-store-settings-import.php:318 +msgid "Import / Export Settings" +msgstr "Ajustes de importación / exportación" + +#. translators: URL to wp-admin/import.php +#: includes/admin/store-settings/class-mp-store-settings-import.php:266 +msgid "This importer is not installed. Please install importers from the main site." +msgstr "Este importador no está instalado. Instale los importadores desde el sitio principal ." + +#: includes/admin/store-settings/class-mp-store-settings-import.php:261 +msgid "Install Now" +msgstr "Instalar ahora" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:260 +msgid "Install %s" +msgstr "Instalar %s" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:240 +msgid "Run Importer" +msgstr "Ejecutar importador" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:239 +msgid "Run %s" +msgstr "Ejecutar %s" + +#: includes/admin/class-mp-store-settings-admin.php:258 +msgid "Import/Export" +msgstr "Importación y exportación" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1199 +msgid "Requires Login" +msgstr "Requiere Login" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:737 +msgid "Optionally limit the user to some categories" +msgstr "Opcionalmente limitar al usuario a algunas categorías." + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:671 +msgid "Should this coupon only be available to logged in users?" +msgstr "¿Debería este cupón solo estar disponible para usuarios registrados?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:670 +msgid "Require Login" +msgstr "Requiere iniciar sesión" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:655 +msgid "Mimimum number of products" +msgstr "Número mínimo de productos" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:653 +msgid "Enter the minimum number of products in the cart that this coupon can be used." +msgstr "Introduzca el número mínimo de productos en el carrito que se puede utilizar este cupón." + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:648 +msgid "Can this coupon be limited to a number of products in the cart?" +msgstr "¿Puede este cupón limitarse a una cantidad de productos en el carrito?" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:334 +msgid "Add all values" +msgstr "Añadir todos los valores" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:265 +msgid "Set as default variation." +msgstr "Establecer como variación por defecto." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:154 +msgid "Set Default" +msgstr "Establecer predeterminado" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:150 +msgid "More Info" +msgstr "Más información" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:40 +msgid "MarketPress - Quick Setup" +msgstr "MarketPress - Configuración rápida" + +#: includes/public/class-mp-checkout.php:1399 +msgid "Proceed to checkout and create an account at the end." +msgstr "Pasar a la caja y crear una cuenta al final." + +#: includes/public/class-mp-checkout.php:1241 +#: includes/public/class-mp-checkout.php:1245 +msgid "Register account" +msgstr "Registrar Cuenta" + +#: includes/public/class-mp-checkout.php:1233 +msgid "Register as customer?" +msgstr "¿Registrarse como cliente?" + +#: includes/public/class-mp-checkout.php:765 +msgid "

    Oops!

    Looks like you haven't added anything your cart. Let's go shopping!

    " +msgstr "

    ¡Vaya!

    Parece que no has agregado nada a tu carrito.¡Vamos a comprar!

    " + +#: includes/public/class-mp-checkout.php:763 +msgid "

    Oops!

    The cart is disabled.

    " +msgstr "

    Oops!

    El carrito esta deshabilitado.

    " + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing Information" +msgstr "Datos de facturación" + +#: includes/multisite/class-mp-admin-multisite.php:214 +msgid "Global Currency" +msgstr "Moneda global" + +#: includes/multisite/class-mp-admin-multisite.php:198 +msgid "Global Store Currency" +msgstr "Moneda global de la tienda" + +#: includes/common/shipping-modules/mp-usps.php:507 +msgid "There are no shipping services available for this type of package in your location." +msgstr "No hay servicios de envío disponibles para este tipo de paquete en su ubicación." + +#: includes/common/shipping-modules/mp-usps.php:168 +msgid "Using this USPS Shipping calculator requires requesting an Ecommerce API Username and Password. Get your free set of credentials here ». The password is no longer used for the API, just the username which you should enter below. The USPS test site has not yet been updated and currently doesn't work - you should just request activating your credentials with USPS and go live." +msgstr "El uso de esta calculadora de envíos de USPS requiere la solicitud de un nombre de usuario y contraseña de API de comercio electrónico. Obtenga su conjunto de credenciales gratis here ». La contraseña ya no se usa para la API, solo el nombre de usuario que debe ingresar a continuación. El sitio de prueba de USPS aún no se ha actualizado y actualmente no funciona. Solo debe solicitar la activación de sus credenciales con USPS y comenzar a usarlo." + +#: includes/common/payment-gateways/stripe.php:339 +msgid "ZIP Code" +msgstr "Código postal" + +#: includes/common/payment-gateways/stripe.php:334 +msgid "Last name" +msgstr "Apellido" + +#: includes/common/payment-gateways/stripe.php:333 +msgid "First name" +msgstr "Nombre " + +#: includes/common/payment-gateways/manual-payments.php:150 +msgid "These are the manual payment instructions to display on the order confirmation screen. TOTAL will be replaced with the order total and ORDERID will be replaced with Order ID." +msgstr "Estas son las instrucciones de pago manual que se muestran en la pantalla de confirmación del pedido. TOTAL se reemplazará con el total del pedido y ORDERID se reemplazará con la ID del pedido." + +#: includes/common/payment-gateways/authorizenet-aim.php:240 +msgid "You must login to Authorize.net merchant dashboard to obtain the API login ID and API transaction key. Instructions »" +msgstr "Debe iniciar sesión en el panel del comerciante de Authorize.net para obtener el ID de inicio de sesión de la API y la clave de transacción de la API. Instrucciones»" + +#: includes/common/payment-gateways/2checkout.php:327 +msgid "
    1. Set the \"Return Method\" within Site Management to Header Redirect and set the \"Return URL\" to %s
    2. Set your notifications url to %s
    " +msgstr "
    1. Establecer el \"Método de devolución\" dentro de Site Management to Header Redirect and set the \"Return URL\" to %s
    2. Set your notifications url to %s
    " + +#: includes/common/data.php:191 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Also, digital downloads included in your order are now ready to be downloaded. Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" +"Estimado CUSTOMERNAME,\n" +"Su pedido ha sido enviado! Además, las descargas digitales incluidas en su pedido ahora están listas para ser descargadas. Dependiendo del método de envío y su ubicación, debería llegar en breve. Por favor, consulte su ID de pedido(ORDERID) cada vez que nos contacte.\n" +"\n" +"Aquí está una confirmación de los detalles de su pedido:\n" +"\n" +"información del pedido:\n" +"ORDERINFO\n" +"\n" +"Información de envío:\n" +"SHIPPINGINFO\n" +"\n" +"Información del pago:\n" +"PAYMENTINFO\n" +"\n" +"ORDERNOTES\n" +"\n" +"Puedes seguir el estado más reciente de tu pedido aquí: TRACKINGURL\n" +"\n" +"¡Gracias de nuevo!" + +#: includes/common/data.php:185 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order is now available to download! Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" +"Estimado CUSTOMERNAME,\n" +"Su pedido ya está disponible para descargar! Consulte su ID de pedido (ORDERID) cada vez que nos contacte.\n" +"\n" +"Aquí está una confirmación de los detalles de su pedido:\n" +"\n" +"Información del pedido:\n" +"ORDERINFO\n" +"\n" +"Información del pago:\n" +"PAYMENTINFO\n" +"\n" +"ORDERNOTES\n" +"\n" +"Puedes seguir el estado más reciente de tu pedido aquí: TRACKINGURL\n" +"\n" +"¡Gracias de nuevo!" + +#: includes/common/data.php:184 +msgid "Your Order Is Ready To Be Downloaded! (ORDERID)" +msgstr "Su pedido está listo para ser descargado! (ORDERID)" + +#: includes/common/data.php:179 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" +"Estimado CUSTOMERNAME,\n" +"Su pedido ha sido enviado! Dependiendo del método de envío y su ubicación, debería llegar en breve. Por favor, consulte su ID de pedido(ORDERID) cada vez que nos contacte.\n" +"\n" +"Aquí está una confirmación de los detalles de su pedido:\n" +"\n" +"Información del pedido:\n" +"ORDERINFO\n" +"\n" +"Información de envío:\n" +"SHIPPINGINFO\n" +"\n" +"Información del pago:\n" +"PAYMENTINFO\n" +"\n" +"ORDERNOTES\n" +"\n" +"Puedes seguir el estado más reciente de tu pedido aquí: TRACKINGURL\n" +"\n" +"¡Gracias de nuevo!" + +#: includes/common/data.php:173 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received, your digital goods are ready to be downloaded and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" +"Gracias por su orden CUSTOMERNAME!\n" +"\n" +"Su pedido ha sido recibido, sus productos digitales están listos para ser descargados y cualquier artículo que se envíe se procesará lo antes posible. Por favor, consulte su ID de pedido (ORDERID) cada vez que nos contacte.\n" +"\n" +"Aquí está una confirmación de los detalles de su pedido:\n" +"\n" +"Información del pedido:\n" +"ORDERINFO\n" +"\n" +"Información de envío:\n" +"SHIPPINGINFO\n" +"\n" +"Información del pago:\n" +"PAYMENTINFO\n" +"\n" +"ORDERNOTES\n" +"\n" +"Puedes seguir el estado más reciente de tu pedido aquí: TRACKINGURL\n" +"\n" +"¡Gracias de nuevo!" + +#: includes/common/data.php:167 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received and your digital goods are ready to be downloaded. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" +"Gracias por su orden CUSTOMERNAME!\n" +"\n" +"Su pedido ha sido recibido y sus productos digitales están listos para ser descargados. Por favor, consulte su ID de pedido (ORDERID) cada vez que nos contacte.\n" +"\n" +"Aquí está una confirmación de los detalles de su pedido:\n" +"\n" +"Información del pedido:\n" +"ORDERINFO\n" +"\n" +"Información del pago:\n" +"PAYMENTINFO\n" +"\n" +"ORDERNOTES\n" +"\n" +"Puedes seguir el estado más reciente de tu pedido aquí: TRACKINGURL\n" +"\n" +"¡Gracias de nuevo!" + +#: includes/common/data.php:160 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +" Your order has been received, and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information: \n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" +"Gracias por su orden CUSTOMERNAME!\n" +"\n" +"Su pedido ha sido recibido, y cualquier artículo que deba enviarse se procesará lo antes posible..Por favor, consulte su ID de pedido (ORDERID) cada vez que nos contacte.\n" +"\n" +"Aquí está una confirmación de los detalles de su pedido:\n" +"\n" +"información del pedido:\n" +"ORDERINFO\n" +"\n" +"Información de envío: \n" +"SHIPPINGINFO\n" +"\n" +"Información del pago:\n" +"PAYMENTINFO\n" +"\n" +"ORDERNOTES\n" +"\n" +"\n" +"Puedes seguir el estado más reciente de tu pedido aquí: TRACKINGURL\n" +"\n" +"¡Gracias de nuevo!" + +#: includes/common/class-mp-product.php:638 +msgid "You can not add more items to cart." +msgstr "No puedes añadir más artículos al carrito." + +#: includes/common/class-mp-product.php:635 +msgid "You can only add {0} to cart." +msgstr "Solo puedes añadir {0} a la carrito." + +#: includes/common/class-mp-product.php:625 +msgid "This product has an order limit of %d." +msgstr "Este producto tiene un límite de orden de %d." + +#: includes/common/class-mp-order.php:1454 +msgid "Shipped: tracking code: %s" +msgstr "Enviado: código de seguimiento: %s" + +#: includes/common/class-mp-order.php:1000 +#: includes/common/class-mp-order.php:1012 +msgid "Finished" +msgstr "Terminado" + +#: includes/common/class-mp-order.php:858 +msgid "Contact Details" +msgstr "Detalles de contacto" + +#: includes/common/class-mp-order.php:339 includes/common/data.php:155 +msgid "" +"A new order (ORDERID) was created in your store:\n" +"\n" +" ORDERINFOSKU\n" +"\n" +" SHIPPINGINFO\n" +"\n" +" PAYMENTINFO\n" +"\n" +msgstr "" +"Un nuevo pedido (ORDERID) fue creado en tu tienda:\n" +"\n" +"ORDERINFOSKU\n" +"\n" +"SHIPPINGINFO\n" +"\n" +"PAYMENTINFO\n" +"\n" + +#: includes/common/class-mp-cart.php:1858 +msgid "Add again" +msgstr "Añadir de nuevo" + +#: includes/common/class-mp-cart.php:1852 +msgid "was removed from Shopping Cart" +msgstr "fue eliminado del carrito de compra" + +#: includes/common/class-mp-cart.php:1242 +#: includes/public/class-mp-short-codes.php:160 +msgid "Cart update notice: this item has a limit per order or you have reached the stock limit." +msgstr "Aviso de actualización del carrito: este artículo tiene un límite por pedido o usted ha alcanzado el límite de existencias." + +#: includes/admin/widgets/product-list.php:235 +msgid "Show Only Featured Products" +msgstr "Mostrar solo productos destacados" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:533 +msgid "If enabled, users won't be able to filter products per category and/or to order by release date/name/price." +msgstr "Si está habilitado, los usuarios no podrán filtrar productos por categoría y / o ordenar por fecha de lanzamiento / nombre / precio." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:531 +msgid "Hide Products Filter?" +msgstr "¿Ocultar el filtro de los productos?" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:353 +msgid "Notification to registration email instead of billing email?" +msgstr "¿Notificación al correo electrónico de registro en lugar de correo electrónico de facturación?" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:322 +msgid "Order Shipped - Mixed orders (with both digital and physical products)" +msgstr "Pedido enviado - Pedidos mixtos (con productos digitales y físicos)" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:289 +msgid "Order Shipped - Digital downloads only orders" +msgstr "Pedido enviado - Descargas digitales solo en el pedido" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:224 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "Estos códigos serán reemplazados con detalles del pedido.: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML permitido." + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:194 +msgid "New Order - Mixed" +msgstr "Nueva Orden - Mixta" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:161 +msgid "New Order - Digital downloads only orders" +msgstr "Nuevo pedido: descargas digitales solo en el pedido" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:115 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:243 +msgid "Mixed orders" +msgstr "Órdenes mixtas" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:110 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:238 +msgid "Digital downloads orders" +msgstr "Pedidos de descargas digitales" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:105 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:233 +msgid "Physical orders" +msgstr "Ordenes fisicas" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:96 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed.
    For orders placed with manual payment, emails set here will be overriden by the one configured in manual payments settings, under payments settings page" +msgstr "Estos códigos serán reemplazados con detalles del pedido.: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed.
    Para los pedidos realizados con pago manual, los correos electrónicos configurados aquí serán anulados por el configurado en la configuración de pagos manuales, en la página de configuración de pagos" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:89 +msgid "Customer Notification Settings" +msgstr "Configuración de notificación al cliente" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:47 +msgid "Admin Notification Settings" +msgstr "Configuración de notificaciones de administrador" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:566 +msgid "Only contact details" +msgstr "Solo datos de contacto" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:565 +msgid "Full billing info" +msgstr "Información de facturación completa" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:561 +msgid "Details Collection" +msgstr "Colección de detalles" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:548 +msgid "Digital Settings" +msgstr "Ajustes digitales" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:515 +msgid "Apply Tax to Digital Products?" +msgstr "¿Aplicar impuestos a los productos digitales?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:236 +msgid "product (default)" +msgstr "producto (predeterminado)" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:231 +msgid "If you are experiencing conflicts with other e-commerce plugins change this setting. This will change the internal post type of all your products. Please note that changing this option may break 3rd party themes or plugins." +msgstr "Si experimenta conflictos con otros complementos de comercio electrónico, cambie esta configuración. Esto cambiará el tipo de publicación interna de todos sus productos.Tenga en cuenta que cambiar esta opción puede romper temas o complementos de terceros." + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1203 +msgid "Hide details" +msgstr "Ocultar detalles" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1202 +msgid "Show all changes" +msgstr "Muestra todos los cambios" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1184 +msgid "Version %s" +msgstr "Versión %s" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1161 +msgid "Current" +msgstr "Corriente" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1131 +msgid "%s changelog" +msgstr "%s registro de cambios" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:952 +msgid "We did not find any data for this plugin or theme..." +msgstr "No hemos encontrado ningún dato para este plugin o tema" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:285 +msgid "Activate WPMU DEV Dashboard" +msgstr "Activar WPMU DEV Tablero" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:279 +msgid "Just one more step - activate the WPMU DEV Dashboard plugin and you're all done!" +msgstr "Solo un paso más - activar el WPMU DEV Dashboard plugin y ya está todo listo!" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:277 +msgid "Important updates are available for your WPMU DEV plugins/themes. Activate the WPMU DEV Dashboard to update now!" +msgstr "Actualizaciones importantes están disponibles para su WPMU DEV plugins / temas. Activar el WPMU DEV Dashboard para actualizar ahora!" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:273 +msgid "Just one more step to enable updates and support for %s!" +msgstr "Solo un paso más para habilitar actualizaciones y soporte para %s!" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:271 +msgid "Important updates are available for %s. Activate the WPMU DEV Dashboard to update now!" +msgstr "Actualizaciones importantes están disponibles para %s. Activar el WPMU DEV Dashboard para actualizar ahora!" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:264 +msgid "activate" +msgstr "activar" + +#: includes/admin/class-mp-admin.php:398 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:248 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:289 +msgid "Dismiss" +msgstr "Despedir" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:247 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:288 +msgid "Saving..." +msgstr "Guardando..." + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:244 +msgid "Install Plugin" +msgstr "Instalar Plugin" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:238 +msgid "Almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "Casi listo - instalar el gratuito WPMU DEV Dashboard plugin para actualizaciones y soporte!" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:236 +msgid "Important updates are available for your WPMU DEV plugins/themes. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "Actualizaciones importantes están disponibles para su WPMU DEV plugins/temas. Instalar el gratuito WPMU DEV Dashboard plugin ahora para actualizaciones y soporte!" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:232 +msgid "%s is almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "%sya casi está listo: instale el complemento gratuito WPMU DEV Dashboard para obtener actualizaciones y soporte." + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:230 +msgid "Important updates are available for %s. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "Actualizaciones importantes están disponibles para %s. Instale el complemento gratuito WPMU DEV Dashboard para obtener actualizaciones y soporte." + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:223 +msgid "install" +msgstr "instalar" + +#: includes/admin/class-mp-shortcode-builder.php:1428 +msgid "Sets the number of Tags to display. This causes the SQL LIMIT value to be defined." +msgstr "Establece el número de etiquetas para mostrar. Esto hace que se defina el valor de LIMIT de SQL." + +#: includes/admin/class-mp-shortcode-builder.php:1289 +msgid "How many products to display in the product list if \"paginate\" is set to false." +msgstr "Cuántos productos se mostrarán en la lista de productos si \"paginate\" se establece en falso." + +#: includes/admin/class-mp-shortcode-builder.php:739 +#: includes/admin/class-mp-shortcode-builder.php:906 +#: includes/admin/class-mp-shortcode-builder.php:1350 +msgid "Grid" +msgstr "Cuadrícula" + +#: includes/admin/class-mp-shortcode-builder.php:735 +#: includes/admin/class-mp-shortcode-builder.php:902 +#: includes/admin/class-mp-shortcode-builder.php:1346 +msgid "Products will be displayed as list or grid." +msgstr "Los productos se mostrarán como lista o cuadrícula." + +#: includes/admin/class-mp-shortcode-builder.php:206 +msgid "Display a cloud or list of your global product tags." +msgstr "Muestra una nube o lista de etiquetas de productos globales." + +#: includes/admin/class-mp-shortcode-builder.php:205 +msgid "Display a list of your global categories." +msgstr "Muestra una lista de tus categorías globales." + +#: includes/admin/class-mp-shortcode-builder.php:204 +msgid "Display a list or grid of your global products." +msgstr "Muestra una lista o cuadrícula de tus productos globales." + +#: includes/admin/class-mp-shortcode-builder.php:181 +msgid "Display a list of featured products." +msgstr "Muestra una lista de productos destacados." + +#: includes/admin/class-mp-products-admin.php:1451 +msgid "Is Featured?" +msgstr "Es destacado?" + +#: includes/admin/class-mp-products-admin.php:1444 +msgid "Featured Product" +msgstr "Producto destacado" + +#: includes/admin/class-mp-products-admin.php:581 +#: includes/admin/class-mp-products-admin.php:1580 +msgid "% discount" +msgstr "% de descuento" + +#: includes/admin/class-mp-products-admin.php:579 +msgid "OR" +msgstr "O" + +#: includes/admin/class-mp-products-admin.php:460 +#: includes/admin/class-mp-products-admin.php:586 +#: includes/admin/widgets/product-list.php:217 +msgid "Featured" +msgstr "Destacados" + +#: includes/admin/class-mp-orders-admin.php:536 +#: includes/admin/class-mp-orders-admin.php:538 +msgid "Tracking Link" +msgstr "Enlace de seguimiento" + +#: includes/admin/class-mp-orders-admin.php:508 +msgid "Shipping Tax" +msgstr "Impuesto de envío" + +#: includes/admin/class-mp-orders-admin.php:356 +msgid "Shipping Total" +msgstr "Total de envío" + +#: includes/admin/class-mp-orders-admin.php:352 +msgid "Taxes Total" +msgstr "Impuestos Totales" + +#: includes/admin/class-mp-orders-admin.php:349 +msgid "Products Total" +msgstr "Productos totales" + +#: includes/admin/class-mp-ajax.php:366 +msgid "Oops! You entered an invalid username/email and or password." +msgstr "Ups! Ingresó un nombre de usuario / correo electrónico o contraseña no válidos." + +#: includes/admin/class-mp-ajax.php:254 +msgid "Percentage Discount" +msgstr "Porcentaje de descuento" + +#: includes/admin/class-mp-ajax.php:234 +msgid "Limit the Amount of Items per Order" +msgstr "Limite la cantidad de artículos por pedido" + +#: includes/admin/class-mp-ajax.php:214 +msgid "Unused Attributes" +msgstr "Atributos no utilizados" + +#: includes/admin/class-mp-admin.php:82 +msgid "Run setup wizard" +msgstr " Ejecutar Asistente de instalación " + +#: includes/admin/class-mp-admin.php:79 +msgid "MarketPress setup is not complete! Once you've completed this quick setup wizard you'll have a fully working online store - exciting! " +msgstr "MarketPress La configuración no está completa! Una vez que haya completado este asistente de configuración rápida, tendrá una tienda en línea totalmente funcional, ¡emocionante!" + +#: marketpress.php:263 +msgctxt "mp_order" +msgid "Add New" +msgstr "Añadir nuevo" + +#: marketpress.php:184 +msgctxt "product_tag" +msgid "Product Tag" +msgstr "Etiqueta del producto" + +#: marketpress.php:183 +msgctxt "product_tag" +msgid "Product Tags" +msgstr "Etiquetas de productos" + +#: marketpress.php:150 +msgctxt "product_category" +msgid "Product Category" +msgstr "Categoria de producto" + +#: marketpress.php:149 +msgctxt "product_category" +msgid "Product Categories" +msgstr "Categorías de Producto" + +#. Author URI of the plugin/theme +msgid "http://premium.wpmudev.org" +msgstr "http://premium.wpmudev.org" + +#: marketpress.php:729 +msgid "Invoice PDF" +msgstr "Factura PDF" + +#: marketpress.php:712 +msgid "Grant access to themes and gateways depending on the user's Pro Site level" +msgstr "Otorgue acceso a temas y pasarelas dependiendo del nivel Pro Site del usuario" + +#: marketpress.php:711 +msgid "Pro Sites" +msgstr "Pro Sites" + +#: marketpress.php:703 +msgid "Offer and accept coupon codes" +msgstr "Ofrecer y aceptar códigos de cupón." + +#. translators: %s: plugin title +#: marketpress.php:687 +msgid "Install %s Pages" +msgstr "Instalar %s Páginas" + +#. translators: %s: plugin title +#: marketpress.php:682 +msgid "Welcome to %s – Install pages required by the plugin automatically." +msgstr "Bienvenido a %s –Instale las páginas requeridas por el plugin automáticamente." + +#: marketpress.php:668 +msgid "Your pages were created successfully." +msgstr "Tus páginas fueron creadas exitosamente." + +#: marketpress.php:436 +msgid "Add a Product" +msgstr "Añadir un producto" + +#: marketpress.php:271 +msgid "Parent Order" +msgstr "Orden superior" + +#: marketpress.php:270 +msgid "No orders found in trash" +msgstr "No se encontraron pedidos en la basura" + +#: marketpress.php:269 +msgid "No orders found" +msgstr "No se encontraron pedidos" + +#: marketpress.php:265 +msgid "Edit Order" +msgstr "Editar Orden" + +#: marketpress.php:264 +msgid "Add New Order" +msgstr "Añadir nuevo pedido" + +#: marketpress.php:220 marketpress.php:221 +msgid "Add New Product" +msgstr "Añadir nuevo producto" + +#: marketpress.php:197 +msgid "No product tags found" +msgstr "No se encontraron etiquetas de productos" + +#: marketpress.php:196 +msgid "Choose from the most used product tags" +msgstr "Elija entre las etiquetas de producto más usadas" + +#: marketpress.php:195 +msgid "Add or remove product tags" +msgstr "Agregar o quitar etiquetas de productos" + +#: marketpress.php:194 +msgid "Separate product tags with commas" +msgstr "Etiquetas del producto separadas con comas" + +#: marketpress.php:193 +msgid "Search Product Tags" +msgstr "Buscar etiquetas de productos" + +#: marketpress.php:192 +msgid "Parent Product Tag:" +msgstr "Etiqueta del producto principal:" + +#: marketpress.php:191 +msgid "Parent Product Tag" +msgstr "Etiqueta del producto principal" + +#: marketpress.php:190 +msgid "New Product Tag Name" +msgstr "Nuevo nombre de etiqueta de producto" + +#: marketpress.php:189 +msgid "Add New Product Tag" +msgstr "Añadir nueva etiqueta de producto" + +#: marketpress.php:188 +msgid "Update Product Tag" +msgstr "Actualizar etiqueta de producto" + +#: marketpress.php:187 +msgid "View Product Tag" +msgstr "Ver etiqueta del producto" + +#: marketpress.php:186 +msgid "Edit Product Tag" +msgstr "Editar etiqueta de producto" + +#: marketpress.php:185 +msgid "All Product Tags" +msgstr "Todas las etiquetas de productos" + +#: marketpress.php:163 +msgid "No product categories found" +msgstr "No se encontraron categorías de productos" + +#: marketpress.php:162 +msgid "Choose from the most used product categories" +msgstr "Elige entre las categorías de productos más utilizadas." + +#: marketpress.php:161 +msgid "Add or remove product categories" +msgstr "Añadir o eliminar categorías de productos" + +#: marketpress.php:160 +msgid "Separate product categories with commas" +msgstr "Categorías de productos separadas con comas." + +#: marketpress.php:159 +msgid "Search Product Categories" +msgstr "Buscar categorías de productos" + +#: marketpress.php:158 +msgid "Parent Product Category:" +msgstr "Categoría de producto principal:" + +#: marketpress.php:157 +msgid "Parent Product Category" +msgstr "Categoría de producto principal" + +#: marketpress.php:156 +msgid "New Product Category Name" +msgstr "Nuevo nombre de categoría de producto" + +#: marketpress.php:155 +msgid "Add New Product Category" +msgstr "Añadir nueva categoría de producto" + +#: marketpress.php:154 +msgid "Update Product Category" +msgstr "Actualizar categoría de producto" + +#: marketpress.php:153 +msgid "View Product Category" +msgstr "Ver categoría de producto" + +#: marketpress.php:152 +msgid "Edit Product Category" +msgstr "Editar categoría de producto" + +#: marketpress.php:151 +msgid "All Product Categories" +msgstr "Todas las categorías de productos" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Please fix the %s1 and then try submitting the form again." +msgstr "Por favor arregle el %s1 y luego intente enviar el formulario de nuevo." + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Oops! The form contains %s1 which %s2 been highlighted below." +msgstr "Ups! El formulario contiene %s1 cual es %s2 se ha destacado a continuación." + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:660 +msgid "have" +msgstr "tener" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:659 +msgid "has" +msgstr "tiene" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:651 +msgid "Value must be less than {0}" +msgstr "El valor debe ser menor que {0}" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:650 +msgid "Please enter only letters and numbers" +msgstr "Por favor ingrese solo letras y números" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:539 +msgid "Due to prolonged inactivity on this page, one or more settings were not saved. Please try again." +msgstr "Debido a la inactividad prolongada en esta página, una o más configuraciones no se guardaron. Inténtalo de nuevo." + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:535 +msgid "Settings Saved" +msgstr "Se guardó la configuración" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-user-select.php:22 +msgid "Select Some Users" +msgstr "Seleccione algunos usuarios" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-section.php:18 +msgid "Section Title" +msgstr "Sección de título" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:425 +msgid "Are you sure you want to delete this?" +msgstr "¿Estás seguro que quieres eliminar esto?" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:30 +msgid "Add Row" +msgstr "Añadir fila" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-post-select.php:24 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-taxonomy-select.php:22 +msgid "Select Posts" +msgstr "Seleccionar publicaciones" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:210 +msgid "Add Images" +msgstr "Añadir imágenes" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:129 +msgid "Select the image that you would like to use for this product." +msgstr "Seleccione la imagen que le gustaría usar para este producto." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:93 +msgid "Select image(s) that you would like to use for this product." +msgstr "Seleccione las imágenes que le gustaría usar para este producto." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:79 +msgid "Select the image that you would like to use for this variation." +msgstr "Seleccione la imagen que le gustaría usar para esta variación." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:48 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:82 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:68 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:132 +msgid "Select Image" +msgstr "Seleccionar imagen" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:31 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:160 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:168 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:19 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:115 +msgid "Select File" +msgstr "Seleccione Archivo" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:30 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:18 +msgid "Select the file that you would like to use." +msgstr "Seleccione el archivo que desea utilizar." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:357 +msgid "Create Variations" +msgstr "Crear variaciones" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:356 +msgid "Add Another Variant" +msgstr "Añadir otra variante" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Insert a value and press ENTER" +msgstr "Inserte un valor y presione ENTER" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "(e.g. White, Grey, Red etc.)" +msgstr "(por ejemplo, blanco, gris, rojo, etc.)" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Variation Values" +msgstr "Valores de variación" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:333 +msgid "Or create new variation" +msgstr "O crear una nueva variación." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "(e.g. Color)" +msgstr "(por ejemplo, color)" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:303 +msgid "You are about to delete selected variants.
    If you want to continue please confirm." +msgstr "Estás a punto de borrar las variantes seleccionadas.
    Si desea continuar confirme." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:302 +msgid "Confirmation" +msgstr "Confirmación" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:290 +msgid "Insert quantity available. Empty for unlimited." +msgstr "Inserte la cantidad disponible. Vacío por ilimitado." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:281 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:294 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:307 +msgid "Cancel" +msgstr "Cancelar" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:280 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:293 +msgid "Update" +msgstr "Actualizar" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:277 +msgid "Insert the price i.e. 25 or 25.50" +msgstr "Inserte el precio es decir, 25 o 25.50" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:115 +msgid "Img." +msgstr "Img." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:85 +msgid "Add New Variation" +msgstr "Añadir nueva variación" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:79 +msgid "Delete Variants" +msgstr "Eliminar variantes" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:78 +msgid "Update Prices" +msgstr "Actualizar precios" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:77 +msgid "Update Inventory" +msgstr "Actualizar inventario" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:76 +msgid "Update Images" +msgstr "Actualizar imagenes" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:75 +msgid "Bulk Actions" +msgstr "Acciones masivas" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:73 +msgid "Select bulk action" +msgstr "Seleccione acción masiva" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:196 +msgid "Configure Store" +msgstr "Configurar tienda" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:195 +msgid "Configure shipping rates, emails and your store's appearance. " +msgstr "Configure tarifas de envío, correos electrónicos y apariencia de tu tienda." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:190 +msgid "Add Product" +msgstr "Añadir Producto" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:189 +msgid "Add your first product for sale and get familiar with adding products." +msgstr "Añade tu primer producto en especial y familiarisese con la adición de productos." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:184 +msgid "Your store is almost ready for its first customers, but first it needs some products. Get started by adding products below, or jump straight into further configuring your store’s settings." +msgstr "Su tienda está casi lista para sus primeros clientes, pero primero necesita algunos productos. Comience por agregar productos a continuación, o vaya directamente a la configuración de su tienda." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:183 +msgid "Woohoo! Your online store is up and running." +msgstr "¡Wao! Su tienda en línea está en funcionamiento." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:160 +msgid "Finish Setup" +msgstr "Terminar la configuración" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:124 +msgid "And what metric system do you want to use?" +msgstr "¿Y qué sistema métrico quieres usar?" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:113 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:142 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:159 +msgid "Back" +msgstr "Atrás " + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:109 +msgid "Do you want to apply tax for your products? You can customize this for each product and variation." +msgstr "¿Quieres aplicar impuestos para tus productos?Puedes personalizar esto para cada producto y variación.." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:105 +msgid "What currency do you want to sell with?" +msgstr "¿Con qué moneda quieres vender?" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:93 +msgid "And, which countries do you want to sell to?" +msgstr "¿Y a qué países quieres vender?" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:89 +msgid "Where is your online store based?" +msgstr "¿Dónde está su tienda en línea basada?" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:80 +msgid "Payment Gateway" +msgstr "Pasarela de pago" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:79 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:123 +msgid "Metric System" +msgstr "Sistema métrico" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:78 +msgid "Currency & Tax" +msgstr "Moneda e Impuestos" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:77 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:88 +msgid "Locations" +msgstr "Ubicaciones" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:70 +msgid "Choose where you want to sell your stuff and what currency. Easy!" +msgstr "Elige dónde quieres vender tus cosas y qué moneda. ¡Fácil!" + +#: includes/public/class-mp-checkout.php:1400 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:58 +msgid "Continue" +msgstr "Continuar" + +#: includes/admin/class-mp-admin.php:83 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:53 +msgid "Skip this step, I'll do this manually" +msgstr "Salta este paso, lo haré manualmente" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:49 +msgid "Install store pages" +msgstr "Instalar páginas de la tienda" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:44 +msgid "Once you've completed this quick setup wizard you'll have a fully working online store - exciting! Start
    by creating the default store pages for the online store such as the cart, checkout and store pages." +msgstr "Una vez que haya completado este asistente de configuración rápida, tendrá una tienda en línea totalmente funcional, ¡emocionante! Comienza
    creando páginas de la tienda por defecto para la tienda en línea como el carrito, el pago y las páginas de la tienda." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:42 +msgid "MarketPress adds a full online store to your website, with heaps of configuration options and addons
    to suit your needs. It's really easy to get going, and only takes a few minutes to setup!" +msgstr "MarketPress agrega una tienda en línea completa a su sitio web, con un montón de opciones de configuración y complementos
    para satisfacer sus necesidades. Es realmente fácil ponerse en marcha, ¡y solo toma unos minutos para configurarlo!" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:41 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:69 +msgid "Welcome to MarketPress - Quick Setup" +msgstr "Bienvenido a MarketPress - Configuración rápida" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-advanced-select.php:23 +msgid "Select Some Options" +msgstr "Seleccione algunas opciones" + +#: includes/wpmudev-metaboxes/class-wpmudev-field.php:694 +msgid "You must the WPMUDEV_Field::display() method in your form field class" +msgstr "Usted debe el WPMUDEV_Field::display() método en su clase de campo de formulario" + +#: includes/public/class-mp-short-codes.php:636 +msgid "Only %s left in stock..." +msgstr "Solo %s quedaban en almacenaje..." + +#: includes/public/class-mp-short-codes.php:633 +msgid "Unlimited stock" +msgstr "Stock ilimitado" + +#: includes/public/class-mp-short-codes.php:430 +msgid "product_id must be defined" +msgstr "product_id debe ser definido" + +#: includes/public/class-mp-checkout.php:1250 +msgid "An account with this username already exists" +msgstr "Ya existe una cuenta con este nombre de usuario." + +#: includes/public/class-mp-checkout.php:1394 +msgid "Continue as Guest" +msgstr "Continua como invitado" + +#: includes/public/class-mp-checkout.php:1393 +msgid "Proceed to checkout and you'll have an opportunity to create an account at the end." +msgstr "Continúe con el proceso de pago y tendrá la oportunidad de crear una cuenta al final." + +#: includes/public/class-mp-checkout.php:1392 +#: includes/public/class-mp-checkout.php:1398 +msgid "First-time customer?" +msgstr "¿Cliente por primera vez?" + +#: includes/public/class-mp-checkout.php:1386 +msgid "Login" +msgstr "Iniciar sesión" + +#: includes/public/class-mp-checkout.php:1379 +msgid "E-Mail Address/Username" +msgstr "Dirección de correo electrónico / nombre de usuario" + +#: includes/public/class-mp-checkout.php:1377 +msgid "Sign in to speed up the checkout process." +msgstr "Inicia sesión para acelerar el proceso de pago." + +#: includes/public/class-mp-checkout.php:1376 +msgid "Have an account?" +msgstr "¿Tienes una cuenta?" + +#: includes/public/class-mp-checkout.php:1297 +msgid "Shipping address different than billing?" +msgstr "Dirección de envío diferente a la de facturación?" + +#: includes/public/class-mp-checkout.php:1184 +msgid "There are no available gateways to process this payment." +msgstr "No hay pasarelas de pago disponibles para procesar este pago." + +#: includes/public/class-mp-checkout.php:1160 +msgid "Payment" +msgstr "Pago" + +#: includes/public/class-mp-checkout.php:1123 +msgid "Oops! An error occurred while processing your payment." +msgstr "Ups! Se produjo un error al procesar su pago." + +#: includes/public/class-mp-checkout.php:1051 +msgid "Next Step »" +msgstr "Próximo paso »" + +#: includes/public/class-mp-checkout.php:1045 +msgid "« Previous Step" +msgstr "« Paso anterior" + +#: includes/public/class-mp-checkout.php:873 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:657 +msgid "error" +msgstr "error" + +#: includes/public/class-mp-checkout.php:872 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:658 +msgid "errors" +msgstr "errores" + +#: includes/public/class-mp-checkout.php:871 +msgid "

    Oops! We found %d %s in the form below.

    Fields that have errors are highlighted in red below. Entering into a field will reveal the actual error that occurred.

    " +msgstr "

    Ups! Encontramos %d %s en el siguiente formulario.

    Los campos que tienen errores se resaltan enred abajo. Entrar en un campo revelará el error real que ocurrió.

    " + +#: includes/public/class-mp-checkout.php:870 +msgid "Please enter a valid first and last name" +msgstr "Por favor ingrese un nombre y apellido válido" + +#: includes/public/class-mp-checkout.php:869 +msgid " Please enter a valid card security code" +msgstr "Por favor ingrese un código de seguridad de tarjeta válido" + +#: includes/public/class-mp-checkout.php:868 +msgid "Please enter a valid card expiration" +msgstr "Por favor ingrese fecha válida de vencimiento" + +#: includes/public/class-mp-checkout.php:773 +msgid "Javascript is required in order to checkout. Please enable Javascript in your browser and then refresh this page." +msgstr "Se requiere Javascript para realizar el pago. Por favor, active Javascript en su navegador y luego actualice esta página." + +#: includes/public/class-mp-checkout.php:588 +msgid "An unknown error occurred. Please try again." +msgstr "Un error desconocido ocurrió. Inténtalo de nuevo." + +#: includes/public/class-mp-checkout.php:386 +msgid "Town/City" +msgstr "Pueblo / ciudad" + +#: includes/public/class-mp-checkout.php:380 +msgid "Apartment, suite, unit, building, floor, etc" +msgstr "Apartamento, suite, unidad, edificio, piso, etc" + +#: includes/public/class-mp-checkout.php:376 +msgid "Address Line 2" +msgstr "Dirección Línea 2" + +#: includes/public/class-mp-checkout.php:363 +msgid "Address Line 1" +msgstr "Dirección Línea 1" + +#: includes/common/class-mp-order.php:770 +#: includes/public/class-mp-checkout.php:354 +msgid "Company" +msgstr "Empresa" + +#: includes/public/class-mp-checkout.php:330 +msgid "Last" +msgstr "Último" + +#: includes/public/class-mp-checkout.php:321 +msgid "First" +msgstr "Primero" + +#: includes/public/class-mp-checkout.php:284 +msgid "State/Province" +msgstr "Provincia/Estado" + +#: includes/public/class-mp-checkout.php:83 +msgid "Review Order/Payment" +msgstr "Revisar orden / pago" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing/Shipping Address" +msgstr "Dirección de facturación / envío" + +#: includes/public/class-mp-checkout.php:80 +msgid "Login/Register" +msgstr "Iniciar sesión / Registrarse" + +#: includes/multisite/class-mp-admin-multisite.php:530 +msgid "Marketplace" +msgstr "Marketplace" + +#: includes/multisite/class-mp-admin-multisite.php:523 +msgid "Global Marketplace Pages" +msgstr "Páginas del Marketplace global" + +#: includes/multisite/class-mp-admin-multisite.php:478 +msgid "Store Network" +msgstr "Red de tiendas" + +#: includes/multisite/class-mp-admin-multisite.php:478 +#: includes/multisite/class-mp-admin-multisite.php:494 +msgid "Store Network Settings" +msgstr "Ajustes de la red de tiendas" + +#: includes/multisite/class-mp-admin-multisite.php:440 +msgid "Set theme access permissions for network stores. For a custom css theme, save your css file with the MarketPress Theme: NAME header in the /marketpress/ui/themes/ folder and it will appear in this list so you may select it." +msgstr "Establecer permisos de acceso al tema para tiendas de red. Para un tema css personalizado, guarde su archivo css con el MarketPress Theme: NAME encabezado en el/marketpress/ui/themes/ y aparecerá en esta lista para que pueda seleccionarla." + +#: includes/multisite/class-mp-admin-multisite.php:361 +msgid "Choose a Gateway" +msgstr "Elige una pasarela" + +#: includes/multisite/class-mp-admin-multisite.php:336 +msgid "%d products get indexed" +msgstr "%d productos fueron indexados" + +#: includes/multisite/class-mp-admin-multisite.php:285 +msgid "Product Indexer" +msgstr "Indexador de productos" + +#: includes/multisite/class-mp-admin-multisite.php:281 +msgid "Please hold on..." +msgstr "Por favor espere..." + +#: includes/multisite/class-mp-admin-multisite.php:280 +msgid "Index Products" +msgstr "Índice de Productos " + +#: includes/multisite/class-mp-admin-multisite.php:279 +msgid "%d products have been indexed in whole network" +msgstr "%d productos han sido indexados en toda la red." + +#: includes/multisite/class-mp-admin-multisite.php:182 +msgid "Enable Global Shopping Cart?" +msgstr "¿Habilitar carrito de compras global?" + +#: includes/multisite/class-mp-admin-multisite.php:178 +msgid "Limit Global Widgets/Shortcodes To Main Blog?" +msgstr "¿Limitar los widgets / códigos cortos globales al blog principal?" + +#: includes/common/template-functions.php:2802 +#: includes/multisite/template-functions.php:355 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:97 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:114 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:143 +msgid "Next" +msgstr "Siguiente" + +#: includes/common/template-functions.php:2801 +#: includes/multisite/template-functions.php:354 +msgid "Prev" +msgstr "Anterior" + +#: includes/common/template-functions.php:2597 +msgid "Tagged in " +msgstr "Etiquetado en" + +#: includes/common/template-functions.php:2196 +#: includes/common/template-functions.php:2202 +#: includes/common/template-functions.php:2214 +#: includes/common/template-functions.php:2217 +msgid "Oops! We couldn't locate any orders matching that order number. Please verify the order number and try again." +msgstr "Ups! No pudimos localizar ningún pedido que coincida con ese número de pedido. Por favor verifique el número de pedido y vuelva a intentarlo." + +#: includes/common/template-functions.php:2138 +msgid "Look Up" +msgstr "Buscar" + +#: includes/common/template-functions.php:1423 +msgid "Please choose a shipping method" +msgstr "Por favor, elija un método de envío" + +#: includes/common/template-functions.php:927 +msgid "If you have your order ID you can look it up using the form below." +msgstr "Si tiene el ID de su pedido, puede buscarlo utilizando el formulario a continuación." + +#: includes/common/template-functions.php:927 +msgid "Order Search" +msgstr "Búsqueda de pedidos" + +#: includes/common/template-functions.php:910 +#: includes/public/class-mp-checkout.php:1440 +msgid "Cart" +msgstr "Carro" + +#: includes/common/template-functions.php:895 +msgid "[mp_global_tag_cloud]" +msgstr "[mp_global_tag_cloud]" + +#: includes/common/template-functions.php:887 +msgid "[mp_global_categories_list]" +msgstr "[mp_global_categories_list]" + +#: includes/common/template-functions.php:880 +msgid "" +"Welcome to our market place!\n" +"\n" +"Check out our network of products:\n" +"\n" +"[mp_list_global_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_global_categories_list]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_global_tag_cloud]" +msgstr "" +"Bienvenido a nuestra tienda!\n" +"\n" +"Consulta nuestra red de productos.:\n" +"\n" +"[mp_list_global_products]\n" +"\n" +"Buscar por categoría:\n" +"\n" +"[mp_global_categories_list]\n" +"\n" +"Buscar por etiqueta:\n" +"\n" +"[mp_global_tag_cloud]" + +#: includes/common/template-functions.php:879 +msgid "Global Store" +msgstr "Tienda global" + +#: includes/common/template-functions.php:873 +msgid "" +"Welcome to our online store! Feel free to browse around:\n" +"\n" +"[mp_store_navigation]\n" +"\n" +"Check out our most popular products:\n" +"\n" +"[mp_popular_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_list_categories]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_tag_cloud]" +msgstr "" +"¡Bienvenidos a nuestra tienda en línea! Siéntase libre de navegar:\n" +"\n" +"[mp_store_navigation]\n" +"\n" +"Echa un vistazo a nuestros productos más populares.:\n" +"\n" +"[mp_popular_products]\n" +"\n" +"Buscar por categoría:\n" +"\n" +"[mp_list_categories]\n" +"\n" +"Buscar por etiqueta:\n" +"\n" +"[mp_tag_cloud]" + +#: includes/common/shipping-modules/mp-weight-rate.php:127 +msgid "If cart weight is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "Si el peso del carro es mayor o igual a este valor, las tasas de esa fila se utilizarán durante el proceso de pago." + +#: includes/common/shipping-modules/mp-weight-rate.php:126 +msgid "Cart Weight" +msgstr "Peso del carrito" + +#: includes/common/shipping-modules/mp-usps.php:222 +msgid "Offered International Services" +msgstr "Servicios internacionales ofrecidos" + +#: includes/common/shipping-modules/mp-usps.php:206 +msgid "Offered Domestic Services" +msgstr "Servicios domésticos ofrecidos" + +#: includes/common/shipping-modules/mp-usps.php:196 +msgid "Retail Rates" +msgstr "Tarifas al por menor" + +#: includes/common/shipping-modules/mp-usps.php:195 +msgid "Online Rates" +msgstr "Tarifas en línea" + +#: includes/common/shipping-modules/mp-usps.php:193 +msgid "Rates Request Type" +msgstr "Tipos de solicitudes de tarifas" + +#: includes/common/shipping-modules/mp-usps.php:189 +msgid "Maximum Weight Per Package" +msgstr "Peso máximo por paquete" + +#: includes/common/shipping-modules/mp-ups.php:195 +#: includes/common/shipping-modules/mp-usps.php:236 +msgid "Enter your standard box sizes as LengthxWidthxHeight (e.g. 12x8x6) For each box defined enter the maximum weight it can contain. Note: the shipping prices this plugin calculates are estimates. If they are consistently too low or too high, please check that the list of boxes above and the product weights are accurate and complete." +msgstr "Ingrese los tamaños de caja estándar como LargoxAnchoxAlto (por ejemplo, 12x8x6) Para cada caja definida, ingrese el peso máximo que puede contener. Nota: los precios de envío que calcula este complemento son estimaciones. Si son constantemente demasiado bajos o demasiado altos, verifique que la lista de casillas de arriba y los pesos de los productos sean precisos y completos. " + +#: includes/common/shipping-modules/mp-ups.php:187 +msgid "Handling Charge Per Box Shipped" +msgstr "Cargo por cada caja enviada" + +#: includes/common/shipping-modules/mp-ups.php:176 +#: includes/common/shipping-modules/mp-ups.php:181 +msgid "Offered Services" +msgstr "Servicios Ofrecidos" + +#: includes/common/shipping-modules/mp-ups.php:165 +msgid "Shipper Number" +msgstr "Número de remitente" + +#: includes/common/shipping-modules/mp-ups.php:151 +msgid "User ID" +msgstr "ID de usuario" + +#: includes/common/shipping-modules/mp-ups.php:144 +msgid "Developer Kit Access Key" +msgstr "Kit de desarrollador clave de acceso" + +#: includes/common/shipping-modules/mp-ups.php:140 +msgid "Use Sandbox Mode?" +msgstr "¿Usar el modo sandbox?" + +#: includes/common/shipping-modules/mp-ups.php:123 +msgid "In order to use UPS, you will need a UPS Developer Kit access key and the UPS user ID and password associated with the access key. Set these up for free here. If this information is missing or incorrect, an error will appear during the checkout process and the buyer will not be able to complete the transaction." +msgstr "Para utilizar UPS, necesitará una clave de acceso del Kit de desarrollo de UPS y la identificación y contraseña de usuario de UPS asociadas con la clave de acceso. Configúralos de forma gratuita aquí . Si esta información falta o es incorrecta, aparecerá un error durante el proceso de compra y el comprador no podrá completar la transacción." + +#: includes/common/shipping-modules/mp-table-rate.php:112 +msgid "If cart total is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "Si el total del carrito es mayor o igual a este valor, las tasas de esa fila se utilizarán durante el proceso de pago." + +#: includes/common/shipping-modules/mp-table-rate.php:111 +msgid "Cart Total" +msgstr "Total del carrito" + +#: includes/common/shipping-modules/mp-table-rate.php:95 +#: includes/common/shipping-modules/mp-weight-rate.php:111 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Don't worry about sorting as this will be done automatically upon saving." +msgstr "Asegúrese de ingresar un precio de envío para cada opción o esos clientes pueden obtener el envío gratis. No se preocupe por la clasificación, ya que esto se hará automáticamente al guardar." + +#: includes/common/shipping-modules/mp-pickup.php:170 +msgid "Method Title (visible for clients)" +msgstr "Título del método (visible para los clientes)" + +#: includes/common/shipping-modules/mp-fedex.php:409 +#: includes/common/shipping-modules/mp-ups.php:216 +#: includes/common/shipping-modules/mp-usps.php:251 +msgid "Max Weight (%s)" +msgstr "Peso máximo (%s)" + +#: includes/common/shipping-modules/mp-fedex.php:402 +#: includes/common/shipping-modules/mp-ups.php:209 +#: includes/common/shipping-modules/mp-usps.php:247 +msgid "Size (%s)" +msgstr "Tamaño (%s)" + +#: includes/common/shipping-modules/mp-fedex.php:387 +msgid "Enter your standard box sizes as LengthxWidthxHeight ( 12x8x6 ) For each box defined enter the maximum weight it can contain. Total weight selects the box size used for calculating Shipping costs." +msgstr "Introduzca sus tamaños de caja estándar como LargoxAnchoxAlto (12x8x6) Para cada caja definida, ingrese el peso máximo que puede contener. El peso total selecciona el tamaño de la caja utilizada para calcular los costos de envío." + +#: includes/common/shipping-modules/mp-fedex.php:361 +#: includes/common/shipping-modules/mp-usps.php:229 +msgid "Handling Charge per International Shipment" +msgstr "Gastos de tramitación por envío internacional" + +#: includes/common/shipping-modules/mp-fedex.php:353 +msgid "International Services" +msgstr "Servicios internacionales" + +#: includes/common/shipping-modules/mp-fedex.php:339 +#: includes/common/shipping-modules/mp-usps.php:213 +msgid "Handling Charge per Domestic Shipment" +msgstr "Gastos de tramitación por envio nacional " + +#: includes/common/shipping-modules/mp-fedex.php:331 +msgid "Domestic Services" +msgstr "Servicios domésticos" + +#: includes/common/shipping-modules/mp-fedex.php:321 +msgid "When checked the customer can chose Residential or Commercial delivery with Residential the default. Unchecked it's only Residential rates." +msgstr "Cuando se marca, el cliente puede elegir entre Entrega residencial o Comercial con Residencial como predeterminado. Sin marcar es solo tarifas residenciales." + +#: includes/common/shipping-modules/mp-fedex.php:320 +msgid "Allow Commercial Delivery?" +msgstr "¿Permitir entrega comercial?" + +#: includes/common/shipping-modules/mp-fedex.php:315 +msgid "Fedex 10kg Box" +msgstr "Fedex 10kg Caja" + +#: includes/common/shipping-modules/mp-fedex.php:314 +msgid "Fedex 25kg Box" +msgstr "Fedex 25kg Caja" + +#: includes/common/shipping-modules/mp-fedex.php:313 +msgid "Fedex Box" +msgstr "Fedex Caja" + +#: includes/common/shipping-modules/mp-fedex.php:312 +msgid "Fedex Envelope" +msgstr "Fedex Sobre" + +#: includes/common/shipping-modules/mp-fedex.php:311 +msgid "Fedex Pak" +msgstr "Fedex Paquete" + +#: includes/common/shipping-modules/mp-fedex.php:310 +msgid "Fedex Tube" +msgstr "Fedex Tubo" + +#: includes/common/shipping-modules/mp-fedex.php:306 +msgid "Default Packaging" +msgstr "Embalaje por defecto" + +#: includes/common/shipping-modules/mp-fedex.php:294 +msgid "Dropoff Type" +msgstr "Tipo de devolución" + +#: includes/common/shipping-modules/mp-fedex.php:290 +msgid "Meter ID" +msgstr "ID del medidor" + +#: includes/common/shipping-modules/mp-fedex.php:134 +msgid "This is a residential address" +msgstr "Esta es una dirección residencial" + +#: includes/common/payment-gateways/wepay.php:283 +msgid "There was an error processing your card: \"%s\". Please check your credit card info and try again." +msgstr "Hubo un error al procesar tu tarjeta: \"%s\". Por favor verifica la información de tu tarjeta de crédito y vuelve a intentarlo." + +#: includes/common/payment-gateways/wepay.php:121 +msgid "Wepay makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept cards directly on your site. You don't need a merchant account or gateway. WePay handles everything including storing cards. Credit cards go directly to WePay's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "Wepay le facilita comenzar a aceptar tarjetas de crédito directamente en su sitio con el cumplimiento total de PCI. Acepta tarjetas directamente en tu sitio. No necesitas una cuenta de comerciante o puerta de enlace. WePay se encarga de todo, incluyendo el almacenamiento de tarjetas. Las tarjetas de crédito van directamente al entorno seguro de WePay y nunca llegan a sus servidores, por lo que puede evitar la mayoría de los requisitos de PCI." + +#: includes/common/payment-gateways/stripe.php:385 +msgid "There was an error processing your card - \"%s\". Please try again." +msgstr "Hubo un error al procesar tu tarjeta - \"%s\". Inténtalo de nuevo." + +#: includes/common/payment-gateways/stripe.php:356 +msgid "%s Store Purchase - Order ID - %s, Email - %s" +msgstr "%s Compra en tienda - ID de pedido - %s, Email - %s" + +#: includes/common/payment-gateways/stripe.php:251 +msgid "Stripe makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept Visa, MasterCard, American Express, Discover, JCB, and Diners Club cards directly on your site. You don't need a merchant account or gateway. Stripe handles everything, including storing cards, subscriptions, and direct payouts to your bank account. Credit cards go directly to Stripe's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "Stripe hace que sea más fácil comenzar a aceptar tarjetas de crédito directamente en su sitio con el cumplimiento total de PCI. Acepte las tarjetas Visa, MasterCard, American Express, Discover, JCB y Diners Club directamente en su sitio. No necesitas una cuenta de comerciante o puerta de enlace. Stripe se encarga de todo, incluido el almacenamiento de tarjetas, suscripciones y pagos directos a su cuenta bancaria. Las tarjetas de crédito van directamente al entorno seguro de Stripe y nunca llegan a sus servidores, por lo que puede evitar la mayoría de los requisitos de PCI." + +#: includes/common/payment-gateways/stripe.php:192 +msgid "ZMW - Zambian Kwacha" +msgstr "ZMW - Zambian Kwacha" + +#: includes/common/payment-gateways/stripe.php:191 +msgid "ZAR - South African Rand" +msgstr "ZAR - South African Rand" + +#: includes/common/payment-gateways/stripe.php:190 +msgid "YER - Yemeni Rial" +msgstr "YER - Yemeni Rial" + +#: includes/common/payment-gateways/stripe.php:189 +msgid "XPF - Cfp Franc*" +msgstr "XPF - Cfp Franc*" + +#: includes/common/payment-gateways/stripe.php:188 +msgid "XOF - West African Cfa Franc*" +msgstr "XOF - West African Cfa Franc*" + +#: includes/common/payment-gateways/stripe.php:187 +msgid "XCD - East Caribbean Dollar" +msgstr "XCD - East Caribbean Dollar" + +#: includes/common/payment-gateways/stripe.php:186 +msgid "XAF - Central African Cfa Franc" +msgstr "XAF - Central African Cfa Franc" + +#: includes/common/payment-gateways/stripe.php:185 +msgid "WST - Samoan Tala" +msgstr "WST - Samoan Tala" + +#: includes/common/payment-gateways/stripe.php:184 +msgid "VUV - Vanuatu Vatu" +msgstr "VUV - Vanuatu Vatu" + +#: includes/common/payment-gateways/stripe.php:183 +msgid "VND - Vietnamese Đồng" +msgstr "VND - Vietnamese Đồng" + +#: includes/common/payment-gateways/stripe.php:182 +msgid "VEF - Venezuelan Bolívar*" +msgstr "VEF - Venezuelan Bolívar*" + +#: includes/common/payment-gateways/stripe.php:181 +msgid "UZS - Uzbekistani Som" +msgstr "UZS - Uzbekistani Som" + +#: includes/common/payment-gateways/stripe.php:180 +msgid "UYI - Uruguayan Peso*" +msgstr "UYI - Uruguayan Peso*" + +#: includes/common/payment-gateways/stripe.php:178 +msgid "UGX - Ugandan Shilling" +msgstr "UGX - Ugandan Shilling" + +#: includes/common/payment-gateways/stripe.php:177 +msgid "UAH - Ukrainian Hryvnia" +msgstr "UAH - Ukrainian Hryvnia" + +#: includes/common/payment-gateways/stripe.php:176 +msgid "TZS - Tanzanian Shilling" +msgstr "TZS - Tanzanian Shilling" + +#: includes/common/payment-gateways/stripe.php:175 +msgid "TWD - New Taiwan Dollar" +msgstr "TWD - New Taiwan Dollar" + +#: includes/common/payment-gateways/stripe.php:174 +msgid "TTD - Trinidad and Tobago Dollar" +msgstr "TTD - Trinidad and Tobago Dollar" + +#: includes/common/payment-gateways/stripe.php:172 +msgid "TOP - Tongan Paʻanga" +msgstr "TOP - Tongan Paʻanga" + +#: includes/common/payment-gateways/stripe.php:171 +msgid "TJS - Tajikistani Somoni" +msgstr "TJS - Tajikistani Somoni" + +#: includes/common/payment-gateways/stripe.php:169 +msgid "SZL - Swazi Lilangeni" +msgstr "SZL - Swazi Lilangeni" + +#: includes/common/payment-gateways/stripe.php:168 +msgid "SVC - Salvadoran Colón*" +msgstr "SVC - Salvadoran Colón*" + +#: includes/common/payment-gateways/stripe.php:167 +msgid "STD - São Tomé and Príncipe Dobra" +msgstr "STD - São Tomé and Príncipe Dobra" + +#: includes/common/payment-gateways/stripe.php:166 +msgid "SRD - Surinamese Dollar*" +msgstr "SRD - Surinamese Dollar*" + +#: includes/common/payment-gateways/stripe.php:165 +msgid "SOS - Somali Shilling" +msgstr "SOS - Somali Shilling" + +#: includes/common/payment-gateways/stripe.php:164 +msgid "SLL - Sierra Leonean Leone" +msgstr "SLL - Sierra Leonean Leone" + +#: includes/common/payment-gateways/stripe.php:163 +msgid "SHP - Saint Helenian Pound*" +msgstr "SHP - Saint Helenian Pound*" + +#: includes/common/payment-gateways/stripe.php:160 +msgid "SCR - Seychellois Rupee" +msgstr "SCR - Seychellois Rupee" + +#: includes/common/payment-gateways/stripe.php:159 +msgid "SBD - Solomon Islands Dollar" +msgstr "SBD - Solomon Islands Dollar" + +#: includes/common/payment-gateways/stripe.php:157 +msgid "RWF - Rwandan Franc" +msgstr "RWF - Rwandan Franc" + +#: includes/common/payment-gateways/stripe.php:156 +msgid "RUB - Russian Ruble" +msgstr "RUB - Russian Ruble" + +#: includes/common/payment-gateways/stripe.php:155 +msgid "RSD - Serbian Dinar" +msgstr "RSD - Serbian Dinar" + +#: includes/common/payment-gateways/stripe.php:154 +msgid "RON - Romanian Leu" +msgstr "RON - Romanian Leu" + +#: includes/common/payment-gateways/stripe.php:153 +msgid "QAR - Qatari Riyal" +msgstr "QAR - Qatari Riyal" + +#: includes/common/payment-gateways/stripe.php:152 +msgid "PYG - Paraguayan Guaraní*" +msgstr "PYG - Paraguayan Guaraní*" + +#: includes/common/payment-gateways/stripe.php:151 +msgid "PLN - Polish Złoty" +msgstr "PLN - Polish Złoty" + +#: includes/common/payment-gateways/stripe.php:150 +msgid "PKR - Pakistani Rupee" +msgstr "PKR - Pakistani Rupee" + +#: includes/common/payment-gateways/stripe.php:149 +msgid "PHP - Philippine Peso" +msgstr "PHP - Philippine Peso" + +#: includes/common/payment-gateways/stripe.php:148 +msgid "PGK - Papua New Guinean Kina" +msgstr "PGK - Papua New Guinean Kina" + +#: includes/common/payment-gateways/stripe.php:147 +msgid "PEN - Peruvian Nuevo Sol*" +msgstr "PEN - Peruvian Nuevo Sol*" + +#: includes/common/payment-gateways/stripe.php:146 +msgid "PAB - Panamanian Balboa*" +msgstr "PAB - Panamanian Balboa*" + +#: includes/common/payment-gateways/stripe.php:144 +msgid "NPR - Nepalese Rupee" +msgstr "NPR - Nepalese Rupee" + +#: includes/common/payment-gateways/stripe.php:142 +msgid "NIO - Nicaraguan Córdoba*" +msgstr "NIO - Nicaraguan Córdoba*" + +#: includes/common/payment-gateways/stripe.php:141 +msgid "NGN - Nigerian Naira" +msgstr "NGN - Nigerian Naira" + +#: includes/common/payment-gateways/stripe.php:140 +msgid "NAD - Namibian Dollar" +msgstr "NAD - Namibian Dollar" + +#: includes/common/payment-gateways/stripe.php:139 +msgid "MZN - Mozambican Metical" +msgstr "MZN - Mozambican Metical" + +#: includes/common/payment-gateways/stripe.php:137 +msgid "MXN - Mexican Peso*" +msgstr "MXN - Mexican Peso*" + +#: includes/common/payment-gateways/stripe.php:136 +msgid "MWK - Malawian Kwacha" +msgstr "MWK - Malawian Kwacha" + +#: includes/common/payment-gateways/stripe.php:135 +msgid "MVR - Maldivian Rufiyaa" +msgstr "MVR - Maldivian Rufiyaa" + +#: includes/common/payment-gateways/stripe.php:134 +msgid "MUR - Mauritian Rupee*" +msgstr "MUR - Mauritian Rupee*" + +#: includes/common/payment-gateways/stripe.php:133 +msgid "MRO - Mauritanian Ouguiya" +msgstr "MRO - Mauritanian Ouguiya" + +#: includes/common/payment-gateways/stripe.php:132 +msgid "MOP - Macanese Pataca" +msgstr "MOP - Macanese Pataca" + +#: includes/common/payment-gateways/stripe.php:131 +msgid "MNT - Mongolian Tögrög" +msgstr "MNT - Mongolian Tögrög" + +#: includes/common/payment-gateways/stripe.php:130 +msgid "MKD - Macedonian Denar" +msgstr "MKD - Macedonian Denar" + +#: includes/common/payment-gateways/stripe.php:129 +msgid "MGA - Malagasy Ariary" +msgstr "MGA - Malagasy Ariary" + +#: includes/common/payment-gateways/stripe.php:128 +msgid "MDL - Moldovan Leu" +msgstr "MDL - Moldovan Leu" + +#: includes/common/payment-gateways/stripe.php:126 +msgid "LVL - Latvian Lats" +msgstr "LVL - Latvian Lats" + +#: includes/common/payment-gateways/stripe.php:124 +msgid "LSL - Lesotho Loti" +msgstr "LSL - Lesotho Loti" + +#: includes/common/payment-gateways/stripe.php:123 +msgid "LRD - Liberian Dollar" +msgstr "LRD - Liberian Dollar" + +#: includes/common/payment-gateways/stripe.php:122 +msgid "LKR - Sri Lankan Rupee" +msgstr "LKR - Sri Lankan Rupee" + +#: includes/common/payment-gateways/stripe.php:121 +msgid "LBP - Lebanese Pound" +msgstr "LBP - Lebanese Pound" + +#: includes/common/payment-gateways/stripe.php:120 +msgid "LAK - Lao Kip*" +msgstr "LAK - Lao Kip*" + +#: includes/common/payment-gateways/stripe.php:119 +msgid "KZT - Kazakhstani Tenge" +msgstr "KZT - Kazakhstani Tenge" + +#: includes/common/payment-gateways/stripe.php:118 +msgid "KYD - Cayman Islands Dollar" +msgstr "KYD - Cayman Islands Dollar" + +#: includes/common/payment-gateways/stripe.php:117 +msgid "KRW - South Korean Won" +msgstr "KRW - South Korean Won" + +#: includes/common/payment-gateways/stripe.php:116 +msgid "KMF - Comorian Franc" +msgstr "KMF - Comorian Franc" + +#: includes/common/payment-gateways/stripe.php:115 +msgid "KHR - Cambodian Riel" +msgstr "KHR - Cambodian Riel" + +#: includes/common/payment-gateways/stripe.php:114 +msgid "KGS - Kyrgyzstani Som" +msgstr "KGS - Kyrgyzstani Som" + +#: includes/common/payment-gateways/stripe.php:113 +msgid "KES - Kenyan Shilling" +msgstr "KES - Kenyan Shilling" + +#: includes/common/payment-gateways/stripe.php:111 +msgid "JMD - Jamaican Dollar" +msgstr "JMD - Jamaican Dollar" + +#: includes/common/payment-gateways/stripe.php:110 +msgid "ISK - Icelandic Króna" +msgstr "ISK - Icelandic Króna" + +#: includes/common/payment-gateways/stripe.php:109 +msgid "INR - Indian Rupee*" +msgstr "INR - Indian Rupee*" + +#: includes/common/payment-gateways/stripe.php:108 +msgid "ILS - Israeli New Sheqel" +msgstr "ILS - Israeli New Sheqel" + +#: includes/common/payment-gateways/stripe.php:107 +msgid "IDR - Indonesian Rupiah" +msgstr "IDR - Indonesian Rupiah" + +#: includes/common/payment-gateways/stripe.php:105 +msgid "HTG - Haitian Gourde" +msgstr "HTG - Haitian Gourde" + +#: includes/common/payment-gateways/stripe.php:103 +msgid "HNL - Honduran Lempira*" +msgstr "HNL - Honduran Lempira*" + +#: includes/common/payment-gateways/stripe.php:101 +msgid "GYD - Guyanese Dollar" +msgstr "GYD - Guyanese Dollar" + +#: includes/common/payment-gateways/stripe.php:100 +msgid "GTQ - Guatemalan Quetzal*" +msgstr "GTQ - Guatemalan Quetzal*" + +#: includes/common/payment-gateways/stripe.php:99 +msgid "GNF - Guinean Franc*" +msgstr "GNF - Guinean Franc*" + +#: includes/common/payment-gateways/stripe.php:98 +msgid "GMD - Gambian Dalasi" +msgstr "GMD - Gambian Dalasi" + +#: includes/common/payment-gateways/stripe.php:97 +msgid "GIP - Gibraltar Pound" +msgstr "GIP - Gibraltar Pound" + +#: includes/common/payment-gateways/stripe.php:96 +msgid "GEL - Georgian Lari" +msgstr "GEL - Georgian Lari" + +#: includes/common/payment-gateways/stripe.php:94 +msgid "FKP - Falkland Islands Pound*" +msgstr "FKP - Falkland Islands Pound*" + +#: includes/common/payment-gateways/stripe.php:93 +msgid "FJD - Fijian Dollar" +msgstr "FJD - Fijian Dollar" + +#: includes/common/payment-gateways/stripe.php:91 +msgid "ETB - Ethiopian Birr" +msgstr "ETB - Ethiopian Birr" + +#: includes/common/payment-gateways/stripe.php:90 +msgid "EGP - Egyptian Pound" +msgstr "EGP - Egyptian Pound" + +#: includes/common/payment-gateways/stripe.php:89 +msgid "EEK - Estonian Kroon*" +msgstr "EEK - Estonian Kroon*" + +#: includes/common/payment-gateways/stripe.php:88 +msgid "DZD - Algerian Dinar" +msgstr "DZD - Algerian Dinar" + +#: includes/common/payment-gateways/stripe.php:87 +msgid "DOP - Dominican Peso" +msgstr "DOP - Peso Dominicano" + +#: includes/common/payment-gateways/stripe.php:85 +msgid "DJF - Djiboutian Franc*" +msgstr "DJF - Djiboutian Franc*" + +#: includes/common/payment-gateways/stripe.php:84 +msgid "CZK - Czech Koruna*" +msgstr "CZK - Czech Koruna*" + +#: includes/common/payment-gateways/stripe.php:83 +msgid "CVE - Cape Verdean Escudo*" +msgstr "CVE - Cape Verdean Escudo*" + +#: includes/common/payment-gateways/stripe.php:82 +msgid "CRC - Costa Rican Colón*" +msgstr "CRC - Costa Rican Colón*" + +#: includes/common/payment-gateways/stripe.php:81 +msgid "COP - Colombian Peso*" +msgstr "COP - Colombian Peso*" + +#: includes/common/payment-gateways/stripe.php:80 +msgid "CNY - Chinese Renminbi Yuan" +msgstr "CNY - Chinese Renminbi Yuan" + +#: includes/common/payment-gateways/stripe.php:79 +msgid "CLP - Chilean Peso*" +msgstr "CLP - Chilean Peso*" + +#: includes/common/payment-gateways/stripe.php:77 +msgid "CDF - Congolese Franc" +msgstr "CDF - Congolese Franc" + +#: includes/common/payment-gateways/stripe.php:76 +msgid "CAD - Canadian Dollar*" +msgstr "CAD - Canadian Dollar*" + +#: includes/common/payment-gateways/stripe.php:75 +msgid "BZD - Belize Dollar" +msgstr "BZD - Belize Dollar" + +#: includes/common/payment-gateways/stripe.php:74 +msgid "BWP - Botswana Pula" +msgstr "BWP - Botswana Pula" + +#: includes/common/payment-gateways/stripe.php:73 +msgid "BSD - Bahamian Dollar" +msgstr "BSD - Bahamian Dollar" + +#: includes/common/payment-gateways/stripe.php:72 +msgid "BRL - Brazilian Real*" +msgstr "BRL - Brazilian Real*" + +#: includes/common/payment-gateways/stripe.php:71 +msgid "BOB - Bolivian Boliviano*" +msgstr "BOB - Bolivian Boliviano*" + +#: includes/common/payment-gateways/stripe.php:70 +msgid "BND - Brunei Dollar" +msgstr "BND - Brunei Dollar" + +#: includes/common/payment-gateways/stripe.php:69 +msgid "BMD - Bermudian Dollar" +msgstr "BMD - Bermudian Dollar" + +#: includes/common/payment-gateways/stripe.php:68 +msgid "BIF - Burundian Franc" +msgstr "BIF - Burundian Franc" + +#: includes/common/payment-gateways/stripe.php:67 +msgid "BGN - Bulgarian Lev" +msgstr "BGN - Bulgarian Lev" + +#: includes/common/payment-gateways/stripe.php:66 +msgid "BDT - Bangladeshi Taka" +msgstr "BDT - Bangladeshi Taka" + +#: includes/common/payment-gateways/stripe.php:65 +msgid "BBD - Barbadian Dollar" +msgstr "BBD - Barbadian Dollar" + +#: includes/common/payment-gateways/stripe.php:64 +msgid "BAM - Bosnia & Herzegovina Convertible Mark" +msgstr "BAM - Bosnia & Herzegovina Convertible Mark" + +#: includes/common/payment-gateways/stripe.php:63 +msgid "AZN - Azerbaijani Manat" +msgstr "AZN - Azerbaijani Manat" + +#: includes/common/payment-gateways/stripe.php:62 +msgid "AWG - Aruban Florin" +msgstr "AWG - Aruban Florin" + +#: includes/common/payment-gateways/stripe.php:61 +msgid "AUD - Australian Dollar*" +msgstr "AUD - Australian Dollar*" + +#: includes/common/payment-gateways/stripe.php:60 +msgid "ARS - Argentine Peso*" +msgstr "ARS - Argentine Peso*" + +#: includes/common/payment-gateways/stripe.php:59 +msgid "AOA - Angolan Kwanza*" +msgstr "AOA - Angolan Kwanza*" + +#: includes/common/payment-gateways/stripe.php:58 +msgid "ANG - Netherlands Antillean Gulden" +msgstr "ANG - Netherlands Antillean Gulden" + +#: includes/common/payment-gateways/stripe.php:57 +msgid "AMD - Armenian Dram" +msgstr "AMD - Armenian Dram" + +#: includes/common/payment-gateways/stripe.php:56 +msgid "ALL - Albanian Lek" +msgstr "ALL - Albanian Lek" + +#: includes/common/payment-gateways/stripe.php:55 +msgid "AFN - Afghan Afghani*" +msgstr "AFN - Afghan Afghani*" + +#: includes/common/payment-gateways/stripe.php:54 +msgid "AED - United Arab Emirates Dirham" +msgstr "AED - United Arab Emirates Dirham" + +#: includes/common/payment-gateways/skrill.php:345 +msgid "Skrill balance, Credit Card, or Instant Transfer" +msgstr "Skrill balance, tarjeta de crédito o transferencia instantánea" + +#: includes/common/payment-gateways/skrill.php:327 +msgid "Skrill IPN message received." +msgstr "Skrill mensaje de IPN recibido." + +#: includes/common/payment-gateways/skrill.php:283 +msgid "Skrill" +msgstr "Skrill" + +#: includes/common/payment-gateways/skrill.php:278 +msgid "Pending payment" +msgstr "Pago pendiente" + +#: includes/common/payment-gateways/skrill.php:144 +msgid "The secret word must match the word submitted in the \"Merchant Tools\" section of your Skrill account." +msgstr "La palabra secreta debe coincidir con la palabra presentada en la sección \"Herramientas para comerciantes\" de su Skrill cuenta." + +#: includes/common/payment-gateways/skrill.php:134 +msgid "You must use your valid Skrill merchant email. Instructions »" +msgstr "Debes utilizar tu email de comerciante de Skrill válido. Instrucciones »" + +#: includes/common/payment-gateways/skrill.php:133 +msgid "Skrill Email" +msgstr "Skrill Email" + +#: includes/common/payment-gateways/skrill.php:123 +msgid "Resell your inventory via Skrill.com (Moneybookers)" +msgstr "Revende tu inventario a través de Skrill.com (Moneybookers)" + +#: includes/common/payment-gateways/skrill.php:95 +msgid "ZAR - South-African Rand" +msgstr "ZAR - South-African Rand" + +#: includes/common/payment-gateways/skrill.php:93 +msgid "TWD - Taiwan Dollar" +msgstr "TWD - Taiwan Dollar" + +#: includes/common/payment-gateways/skrill.php:92 +msgid "TRY - New Turkish Lira" +msgstr "TRY - New Turkish Lira" + +#: includes/common/payment-gateways/skrill.php:91 +msgid "TND - Tunisian Dinar" +msgstr "TND - Tunisian Dinar" + +#: includes/common/payment-gateways/skrill.php:90 +msgid "THB - Thailand Baht" +msgstr "THB - Thailand Baht" + +#: includes/common/payment-gateways/skrill.php:89 +msgid "SKK - Slovakian Koruna" +msgstr "SKK - Slovakian Koruna" + +#: includes/common/payment-gateways/skrill.php:86 +#: includes/common/payment-gateways/stripe.php:158 +msgid "SAR - Saudi Riyal" +msgstr "SAR - Saudi Riyal" + +#: includes/common/payment-gateways/skrill.php:85 +msgid "RSD - Serbian dinar" +msgstr "RSD - Serbian dinar" + +#: includes/common/payment-gateways/skrill.php:83 +msgid "QAR - Qatari Rial" +msgstr "QAR - Qatari Rial" + +#: includes/common/payment-gateways/skrill.php:81 +msgid "OMR - Omani Rial" +msgstr "OMR - Omani Rial" + +#: includes/common/payment-gateways/skrill.php:80 +msgid "NOK - Norwegian Krone " +msgstr "NOK - Norwegian Krone " + +#: includes/common/payment-gateways/skrill.php:78 +#: includes/common/payment-gateways/stripe.php:138 +msgid "MYR - Malaysian Ringgit" +msgstr "MYR - Malaysian Ringgit" + +#: includes/common/payment-gateways/skrill.php:77 +#: includes/common/payment-gateways/stripe.php:127 +msgid "MAD - Moroccan Dirham" +msgstr "MAD - Moroccan Dirham" + +#: includes/common/payment-gateways/skrill.php:74 +msgid "KRW - South-Korean Won" +msgstr "KRW - South-Korean Won" + +#: includes/common/payment-gateways/skrill.php:72 +msgid "JOD - Jordanian Dinar" +msgstr "JOD - Jordanian Dinar" + +#: includes/common/payment-gateways/skrill.php:70 +msgid "INR - Indian Rupee" +msgstr "INR - Indian Rupee" + +#: includes/common/payment-gateways/skrill.php:63 +msgid "EEK - Estonian Kroon" +msgstr "EEK - Estonian Kroon" + +#: includes/common/payment-gateways/skrill.php:56 +msgid "AED - Utd. Arab Emir. Dirham" +msgstr "AED - Utd. Arab Emir. Dirham" + +#: includes/common/payment-gateways/skrill.php:52 +msgid "Turkish" +msgstr "Turkish" + +#: includes/common/payment-gateways/skrill.php:51 +msgid "Swedish" +msgstr "Swedish" + +#: includes/common/payment-gateways/skrill.php:50 +msgid "Spanish" +msgstr "Español" + +#: includes/common/payment-gateways/skrill.php:49 +msgid "Russian" +msgstr "Russian" + +#: includes/common/payment-gateways/skrill.php:48 +msgid "Romainian" +msgstr "Romainian" + +#: includes/common/payment-gateways/skrill.php:47 +msgid "Polish" +msgstr "Polish" + +#: includes/common/payment-gateways/skrill.php:46 +msgid "Italian" +msgstr "Italian" + +#: includes/common/payment-gateways/skrill.php:45 +msgid "Greek" +msgstr "Greek" + +#: includes/common/payment-gateways/skrill.php:44 +msgid "German" +msgstr "German" + +#: includes/common/payment-gateways/skrill.php:43 +msgid "French" +msgstr "French" + +#: includes/common/payment-gateways/skrill.php:42 +msgid "Finnish" +msgstr "Finnish" + +#: includes/common/payment-gateways/skrill.php:41 +msgid "English" +msgstr "English" + +#: includes/common/payment-gateways/skrill.php:40 +msgid "Dutch" +msgstr "Dutch" + +#: includes/common/payment-gateways/skrill.php:39 +msgid "Danish" +msgstr "Danish" + +#: includes/common/payment-gateways/skrill.php:38 +msgid "Czech" +msgstr "Czech" + +#: includes/common/payment-gateways/skrill.php:37 +msgid "Chinese" +msgstr "Chinese" + +#: includes/common/payment-gateways/simplify.php:201 +msgid "There was an error processing your card: %s. Please re-enter your credit card info and try again." +msgstr "Hubo un error al procesar tu tarjeta: %s. Vuelva a ingresar la información de su tarjeta de crédito e intente nuevamente." + +#: includes/common/payment-gateways/pin.php:278 +msgid "
  • There was an error processing your card: \"%s\". Please verify your credit card information and try again.
  • " +msgstr "
  • Hubo un error al procesar tu tarjeta.: \"%s\". Por favor verifique la información de su tarjeta de crédito y vuelva a intentarlo.
  • " + +#: includes/common/payment-gateways/pin.php:274 +msgid "
  • There was an error processing your card. Please verify your credit card information and try again.
  • " +msgstr "
  • Hubo un error al procesar tu tarjeta. Por favor verifique la información de su tarjeta de crédito y vuelva a intentarlo.
  • " + +#: includes/common/payment-gateways/pin.php:177 +#: includes/common/payment-gateways/stripe.php:279 +msgid "Publishable Key" +msgstr "Clave Publicable" + +#: includes/common/payment-gateways/pin.php:163 +msgid "API Credentials?" +msgstr "Credenciales API?" + +#: includes/common/payment-gateways/pin.php:147 +msgid "PIN makes it easy to start accepting credit card payments with Australia’s first all-in-one online payment system. Accept all major credit cards directly on your site. Your sales proceeds are deposited to any Australian bank account, no merchant account required." +msgstr "El PIN le facilita comenzar a aceptar pagos con tarjeta de crédito con el primer sistema de pago en línea todo en uno de Australia. Acepta todas las principales tarjetas de crédito directamente en tu sitio. Los ingresos de sus ventas se depositan en cualquier cuenta bancaria australiana, no se requiere una cuenta de comerciante." + +#: includes/common/payment-gateways/pin.php:57 +#: includes/common/payment-gateways/stripe.php:179 +msgid "USD - United States Dollar" +msgstr "USD - Dólar de los Estados Unidos" + +#: includes/common/payment-gateways/paypal-payflow.php:455 +msgid "Email Footer" +msgstr "Pie de página de correo electrónico" + +#: includes/common/payment-gateways/paypal-payflow.php:445 +msgid "Email Header" +msgstr "Encabezado de correo electrónico" + +#: includes/common/payment-gateways/paypal-payflow.php:416 +msgid "Partner" +msgstr "Compañero" + +#: includes/common/payment-gateways/paypal-payflow.php:409 +msgid "Vendor" +msgstr "Vendedor" + +#: includes/common/payment-gateways/paypal-express.php:852 +#: includes/common/payment-gateways/paypal-express.php:1126 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences\t section of your Profile." +msgstr "El pago está pendiente porque su cliente no incluyó una dirección de envío confirmada y sus Preferencias de Recepción de Pago están configuradas de tal manera que desea aceptar o rechazar manualmente cada uno de estos pagos. Para cambiar sus preferencias, vaya a la sección Preferencias \t de su perfil." + +#: includes/common/payment-gateways/paypal-express.php:749 +msgid "Page Background Color" +msgstr "Color de fondo de la página" + +#: includes/common/payment-gateways/paypal-express.php:744 +msgid "Header Background Color" +msgstr "Color de fondo del encabezado" + +#: includes/common/payment-gateways/paypal-express.php:739 +msgid "Header Border Color" +msgstr "Color del borde del encabezado" + +#: includes/common/payment-gateways/paypal-express.php:734 +msgid "Header Image" +msgstr "Imagen de cabecera" + +#: includes/common/payment-gateways/paypal-express.php:680 +msgid "Locale" +msgstr "Local" + +#: includes/common/payment-gateways/paypal-express.php:624 +#: includes/common/payment-gateways/paypal-express.php:658 +msgid "Merchant Email" +msgstr "Correo electrónico del comerciante" + +#: includes/common/payment-gateways/paypal-express.php:645 +msgid "Paypal Express Checkout Settings" +msgstr "Paypal Express Checkout Seteos" + +#: includes/common/payment-gateways/paypal-express.php:603 +msgid "Paypal Express Network Settings" +msgstr "Paypal Express Network Seteos" + +#: includes/common/payment-gateways/paypal-chained-payments.php:861 +msgid "Application ID (Live)" +msgstr "ID de aplicación (en vivo)" + +#: includes/common/payment-gateways/paypal-chained-payments.php:854 +msgid "Signature (Live)" +msgstr "Firma (en vivo)" + +#: includes/common/payment-gateways/paypal-chained-payments.php:847 +msgid "API Password (Live)" +msgstr "Contraseña API (Live)" + +#: includes/common/payment-gateways/paypal-chained-payments.php:839 +msgid "API Username (Live)" +msgstr "Nombre de usuario de API (en vivo)" + +#: includes/common/payment-gateways/paypal-chained-payments.php:832 +msgid "Signature (Sandbox)" +msgstr "Firma (Sandbox)" + +#: includes/common/payment-gateways/paypal-chained-payments.php:825 +msgid "API Password (Sandbox)" +msgstr "API Password (Sandbox)" + +#: includes/common/payment-gateways/paypal-chained-payments.php:817 +msgid "API Username (Sandbox)" +msgstr "API Usuario (Sandbox)" + +#: includes/common/payment-gateways/paypal-chained-payments.php:799 +msgid "This message is displayed at the top of the gateway settings page to store admins. It's a good place to inform them of your fees or put any sales messages." +msgstr "Este mensaje se muestra en la parte superior de la página de configuración de la puerta de enlace para almacenar administradores. Es un buen lugar para informarles de sus tarifas o poner cualquier mensaje de venta." + +#: includes/common/payment-gateways/paypal-chained-payments.php:787 +msgid "Please enter your PayPal email address or business ID you want to recieve fees at." +msgstr "Ingrese su dirección de correo electrónico de PayPal o la identificación de la empresa a la que desea recibir los pagos." + +#: includes/common/payment-gateways/paypal-chained-payments.php:786 +msgid "PayPal E-mail" +msgstr "PayPal E-mail" + +#: includes/common/payment-gateways/paypal-chained-payments.php:772 +msgid "Fees to Collect (%)" +msgstr "Honorarios a cobrar (%)" + +#: includes/common/payment-gateways/paypal-chained-payments.php:375 +#: includes/public/class-mp-checkout.php:341 +msgid "Email Address" +msgstr "Dirección de correo electrónico" + +#: includes/common/payment-gateways/paypal-chained-payments.php:299 +msgid "Sorry, your order was not completed." +msgstr "Lo sentimos, tu pedido no se ha completado." + +#: includes/common/payment-gateways/paypal-chained-payments.php:126 +#: includes/common/payment-gateways/paypal-express.php:780 +msgid "You will be redirected to the PayPal site to finalize your payment." +msgstr "Será redirigido al sitio de PayPal para finalizar su pago." + +#: includes/common/payment-gateways/paypal-chained-payments.php:90 +#: includes/common/payment-gateways/skrill.php:94 +msgid "USD - U.S. Dollar" +msgstr "USD - U.S. Dollar" + +#: includes/common/payment-gateways/paypal-chained-payments.php:89 +msgid "TRY - Turkish lira" +msgstr "TRY - Turkish lira" + +#: includes/common/payment-gateways/paypal-chained-payments.php:88 +#: includes/common/payment-gateways/stripe.php:170 +msgid "THB - Thai Baht" +msgstr "THB - Thai Baht" + +#: includes/common/payment-gateways/paypal-chained-payments.php:87 +msgid "TWD - Taiwan New Dollars" +msgstr "TWD - Taiwan New Dollars" + +#: includes/common/payment-gateways/paypal-chained-payments.php:86 +#: includes/common/payment-gateways/pin.php:59 +#: includes/common/payment-gateways/skrill.php:88 +#: includes/common/payment-gateways/stripe.php:162 +msgid "SGD - Singapore Dollar" +msgstr "SGD - Singapore Dollar" + +#: includes/common/payment-gateways/paypal-chained-payments.php:84 +msgid "RUB - Russian Rubles" +msgstr "RUB - Russian Rubles" + +#: includes/common/payment-gateways/paypal-chained-payments.php:82 +msgid "PHP - Philippine Pesos" +msgstr "PHP - Philippine Pesos" + +#: includes/common/payment-gateways/paypal-chained-payments.php:81 +#: includes/common/payment-gateways/pin.php:58 +#: includes/common/payment-gateways/skrill.php:79 +#: includes/common/payment-gateways/stripe.php:145 +msgid "NZD - New Zealand Dollar" +msgstr "NZD - New Zealand Dollar" + +#: includes/common/payment-gateways/paypal-chained-payments.php:79 +msgid "MXN - Mexican Peso" +msgstr "MXN - Mexican Peso" + +#: includes/common/payment-gateways/paypal-chained-payments.php:78 +msgid "MYR - Malaysian Ringgits" +msgstr "MYR - Malaysian Ringgits" + +#: includes/common/payment-gateways/paypal-chained-payments.php:77 +#: includes/common/payment-gateways/pin.php:64 +#: includes/common/payment-gateways/skrill.php:73 +#: includes/common/payment-gateways/stripe.php:112 +msgid "JPY - Japanese Yen" +msgstr "JPY - Japanese Yen" + +#: includes/common/payment-gateways/paypal-chained-payments.php:75 +#: includes/common/payment-gateways/pin.php:63 +#: includes/common/payment-gateways/skrill.php:66 +#: includes/common/payment-gateways/stripe.php:102 +msgid "HKD - Hong Kong Dollar" +msgstr "HKD - Hong Kong Dollar" + +#: includes/common/payment-gateways/paypal-chained-payments.php:73 +msgid "GBP - Pound Sterling" +msgstr "GBP - Pound Sterling" + +#: includes/common/payment-gateways/paypal-chained-payments.php:68 +#: includes/common/payment-gateways/pin.php:62 +#: includes/common/payment-gateways/skrill.php:59 +msgid "CAD - Canadian Dollar" +msgstr "CAD - Canadian Dollar" + +#: includes/common/payment-gateways/paypal-chained-payments.php:67 +msgid "BRL - Brazilian Real" +msgstr "BRL - Brazilian Real" + +#: includes/common/payment-gateways/paypal-chained-payments.php:66 +#: includes/common/payment-gateways/pin.php:56 +#: includes/common/payment-gateways/skrill.php:57 +msgid "AUD - Australian Dollar" +msgstr "AUD - Australian Dollar" + +#: includes/common/payment-gateways/paymill.php:288 +msgid "There was an error processing your card: \"%s\". Please try again." +msgstr "Hubo un error al procesar tu tarjeta.: \"%s\". Inténtalo de nuevo." + +#: includes/common/payment-gateways/paymill.php:163 +msgid "When running on a live site, Paymill recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "Cuando se ejecuta en un sitio en vivo, Paymill recomienda que tenga una configuración de certificado SSL para el sitio donde se mostrará el formulario de pago." + +#: includes/common/payment-gateways/paymill.php:161 +#: includes/common/payment-gateways/pin.php:157 +#: includes/common/payment-gateways/simplify.php:103 +#: includes/common/payment-gateways/stripe.php:260 +#: includes/common/payment-gateways/wepay.php:153 +msgid "Force SSL?" +msgstr "¿Forzar SSL?" + +#: includes/common/payment-gateways/paymill.php:151 +msgid "Accept Visa, Mastercard, Maestro UK, Discover and Solo cards directly on your site. You don't need a merchant account or gateway. Credit cards go directly to Paymill's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "Acepte las tarjetas Visa, Mastercard, Maestro UK, Discover y Solo directamente en su sitio. No necesitas una cuenta de comerciante o puerta de enlace. Las tarjetas de crédito van directamente al entorno seguro de Paymill y nunca llegan a sus servidores, por lo que puede evitar la mayoría de los requisitos de PCI." + +#: includes/common/payment-gateways/paymill.php:131 +msgid "CVV2" +msgstr "CVV2" + +#: includes/common/payment-gateways/paymill.php:72 +#: includes/common/payment-gateways/pin.php:61 +#: includes/common/payment-gateways/skrill.php:65 +#: includes/common/payment-gateways/stripe.php:95 +msgid "GBP - British Pound" +msgstr "GBP - British Pound" + +#: includes/common/payment-gateways/paymill.php:71 +#: includes/common/payment-gateways/stripe.php:173 +msgid "TRY - Turkish Lira" +msgstr "TRY - Turkish Lira" + +#: includes/common/payment-gateways/paymill.php:70 +#: includes/common/payment-gateways/paypal-chained-payments.php:85 +#: includes/common/payment-gateways/skrill.php:87 +#: includes/common/payment-gateways/stripe.php:161 +msgid "SEK - Swedish Krona" +msgstr "SEK - Swedish Krona" + +#: includes/common/payment-gateways/paymill.php:69 +#: includes/common/payment-gateways/skrill.php:84 +msgid "RON - Romanian Leu New" +msgstr "RON - Romanian Leu New" + +#: includes/common/payment-gateways/paymill.php:68 +#: includes/common/payment-gateways/paypal-chained-payments.php:83 +#: includes/common/payment-gateways/skrill.php:82 +msgid "PLN - Polish Zloty" +msgstr "PLN - Polish Zloty" + +#: includes/common/payment-gateways/paymill.php:67 +#: includes/common/payment-gateways/paypal-chained-payments.php:80 +#: includes/common/payment-gateways/stripe.php:143 +msgid "NOK - Norwegian Krone" +msgstr "NOK - Norwegian Krone" + +#: includes/common/payment-gateways/paymill.php:66 +#: includes/common/payment-gateways/skrill.php:75 +#: includes/common/payment-gateways/stripe.php:125 +msgid "LTL - Lithuanian Litas" +msgstr "LTL - Lithuanian Litas" + +#: includes/common/payment-gateways/paymill.php:65 +#: includes/common/payment-gateways/paypal-chained-payments.php:69 +#: includes/common/payment-gateways/skrill.php:60 +#: includes/common/payment-gateways/stripe.php:78 +msgid "CHF - Swiss Franc" +msgstr "CHF - Swiss Franc" + +#: includes/common/payment-gateways/paymill.php:64 +#: includes/common/payment-gateways/skrill.php:76 +msgid "LVL - Latvian Lat" +msgstr "LVL - Latvian Lat" + +#: includes/common/payment-gateways/paymill.php:63 +#: includes/common/payment-gateways/paypal-chained-payments.php:74 +#: includes/common/payment-gateways/skrill.php:69 +msgid "ILS - Israeli Shekel" +msgstr "ILS - Israeli Shekel" + +#: includes/common/payment-gateways/paymill.php:62 +#: includes/common/payment-gateways/skrill.php:71 +msgid "ISK - Iceland Krona" +msgstr "ISK - Iceland Krona" + +#: includes/common/payment-gateways/paymill.php:61 +#: includes/common/payment-gateways/paypal-chained-payments.php:76 +#: includes/common/payment-gateways/skrill.php:68 +#: includes/common/payment-gateways/stripe.php:106 +msgid "HUF - Hungarian Forint" +msgstr "HUF - Hungarian Forint" + +#: includes/common/payment-gateways/paymill.php:60 +#: includes/common/payment-gateways/paypal-chained-payments.php:71 +#: includes/common/payment-gateways/skrill.php:62 +#: includes/common/payment-gateways/stripe.php:86 +msgid "DKK - Danish Krone" +msgstr "DKK - Danish Krone" + +#: includes/common/payment-gateways/paymill.php:59 +#: includes/common/payment-gateways/skrill.php:67 +#: includes/common/payment-gateways/stripe.php:104 +msgid "HRK - Croatian Kuna" +msgstr "HRK - Croatian Kuna" + +#: includes/common/payment-gateways/paymill.php:58 +#: includes/common/payment-gateways/paypal-chained-payments.php:70 +#: includes/common/payment-gateways/skrill.php:61 +msgid "CZK - Czech Koruna" +msgstr "CZK - Czech Koruna" + +#: includes/common/payment-gateways/paymill.php:57 +#: includes/common/payment-gateways/skrill.php:58 +msgid "BGN - Bulgarian Leva" +msgstr "BGN - Bulgarian Leva" + +#: includes/common/payment-gateways/payflow/class-mp-gateway-worker-payflow.php:123 +msgid "There was an error connecting to PayPal. Please try again." +msgstr "Se ha producido un error al conectarse a PayPal. Inténtalo de nuevo." + +#: includes/common/payment-gateways/payfast.php:344 +msgid "This setting will log all PayFast communication to the \"payfast.log\" file." +msgstr "Esta configuración registrará todas las comunicaciones de PayFast en el archivo \"payfast.log\"." + +#: includes/common/payment-gateways/payfast.php:342 +msgid "Log Debugging Info?" +msgstr "Registro de información de depuración?" + +#: includes/common/payment-gateways/payfast.php:335 +msgid "DO NOT INPUT A VALUE UNLESS YOU HAVE SET ONE IN THE SETTINGS SECTION OF YOUR PAYFAST SETTINGS." +msgstr "NO INTRODUZCA UN VALOR A MENOS QUE HAGA UNO EN LA SECCIÓN DE AJUSTES DE SUS AJUSTES DE PAYFAST." + +#: includes/common/payment-gateways/payfast.php:333 +msgid "PayFast Passphrase" +msgstr "PayFast Passphrase" + +#: includes/common/payment-gateways/payfast.php:323 +msgid "You can find your credentials on your integration page." +msgstr "Puede encontrar sus credenciales en su página de integración." + +#: includes/common/payment-gateways/payfast.php:321 +msgid "PayFast Merchant Credentials" +msgstr "PayFast Merchant Credenciales" + +#: includes/common/payment-gateways/payfast.php:311 +msgid "PayFast Mode" +msgstr "PayFast Mode" + +#: includes/common/payment-gateways/payfast.php:308 +msgid "PayFast is a payments processing service for South Africa. We make it safe for buyers to send money and easy for sellers to receive money. More Info »" +msgstr "PayFast es un servicio de procesamiento de pagos para Sudáfrica. Aseguramos que los compradores envíen dinero y que los vendedores reciban dinero fácilmente.. More Info »" + +#: includes/common/payment-gateways/payfast.php:306 +msgid "PayFast Checkout Settings" +msgstr "Configuración de pago de PayFast" + +#: includes/common/payment-gateways/payfast.php:285 +msgid "Your payment via PayFast for this order totaling %s is complete. The transaction number is %s." +msgstr "Su pago a través de PayFast para este pedido por un total. %s Esta completo. El número de transacción es %s." + +#: includes/common/payment-gateways/payfast.php:278 +msgid "Your payment via PayFast for this order totaling %s is not yet complete. Here is the latest status:" +msgstr "Su pago a través de PayFast para este pedido por un total %s Aún no está completo. Aquí está el último estado:" + +#: includes/common/payment-gateways/payfast.php:124 +msgid "Your PayFast transaction has been canceled." +msgstr "Su transacción PayFast ha sido cancelada." + +#: includes/common/payment-gateways/payfast.php:82 +#: includes/common/payment-gateways/payfast.php:83 +msgid "PayFast" +msgstr "PayFast" + +#: includes/common/payment-gateways/mollie.php:157 +msgid "API error: - \"%s\"" +msgstr "API error: - \"%s\"" + +#: includes/common/payment-gateways/mollie.php:198 +msgid "The payment request is under process" +msgstr "La solicitud de pago está en proceso." + +#: includes/common/payment-gateways/mollie.php:140 +msgid "Order: #" +msgstr "Order: #" + +#: includes/common/payment-gateways/mollie.php:116 +msgid "You will be redirected to the Mollie site to finalize your payment." +msgstr "Será redirigido al sitio de Mollie para finalizar su pago." + +#: includes/common/payment-gateways/mollie.php:73 +msgid "%sMollie%s provides a fully PCI Compliant and secure way to collect payments via iDeal, Credit Card, Bancontact / Mister Cash, SOFORT Banking, Overbooking, Bitcoin, PayPal, paysafecard and AcceptEmail." +msgstr "%sMollie%s proporciona una forma segura y compatible con PCI para cobrar pagos a través de iDeal, Credit Card, Bancontact / Mister Cash, SOFORT Banking, Overbooking, Bitcoin, PayPal, paysafecard y AcceptEmail." + +#: includes/common/payment-gateways/mollie.php:53 +#: includes/common/payment-gateways/mollie.php:54 +#: includes/common/payment-gateways/mollie.php:195 +#: includes/common/payment-gateways/mollie.php:245 +msgid "Mollie" +msgstr "Mollie" + +#: includes/common/payment-gateways/mollie.php:50 +#: includes/common/payment-gateways/paymill.php:56 +#: includes/common/payment-gateways/paypal-chained-payments.php:72 +#: includes/common/payment-gateways/pin.php:60 +#: includes/common/payment-gateways/skrill.php:64 +#: includes/common/payment-gateways/stripe.php:92 +msgid "EUR - Euro" +msgstr "EUR - Euro" + +#: includes/common/payment-gateways/mijireh.php:306 +msgid "Access Key" +msgstr "Llave de acceso" + +#: includes/common/payment-gateways/mijireh.php:300 +msgid "You must login to the Mijireh.com dashboard to obtain the Access Key." +msgstr "Debe iniciar sesión en el panel de control de Mijireh.com para obtener la clave de acceso." + +#: includes/common/payment-gateways/mijireh.php:299 +msgid "Credentials" +msgstr "Credenciales" + +#: includes/common/payment-gateways/mijireh.php:289 +msgid "Mijireh Checkout provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site." +msgstr "Mijireh Checkout ofrece una forma segura y totalmente compatible con PCI para recopilar y transmitir datos de tarjetas de crédito a su pasarela de pago, al tiempo que mantiene el control del diseño de su sitio." + +#: includes/common/payment-gateways/mijireh.php:269 +msgid "Mijireh Error: " +msgstr "Mijireh Error: " + +#: includes/common/payment-gateways/mijireh.php:89 +msgid "You will be redirected to the Mijireh.com site to finalize your payment." +msgstr "Será redirigido al sitio Mijireh.com para finalizar su pago." + +#: includes/common/payment-gateways/mijireh.php:87 +msgid "Your Mijireh transaction has been canceled." +msgstr "Su transacción Mijireh ha sido cancelada." + +#: includes/common/payment-gateways/mijireh.php:42 +#: includes/common/payment-gateways/mijireh.php:43 +#: includes/common/payment-gateways/mijireh.php:324 +msgid "Mijireh" +msgstr "Mijireh" + +#: includes/common/payment-gateways/manual-payments.php:145 +msgid "These are the manual payment instructions to display on the payments screen." +msgstr "Estas son las instrucciones de pago manual que se muestran en la pantalla de pagos." + +#: includes/common/payment-gateways/free_orders.php:189 +msgid "This is the email text to send to those who have made free order checkouts. You should include your free order instructions / information here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" +"Este es el mensaje de correo electrónico que se envía a aquellos que han realizado pedidos de compra gratuitos. Debe incluir sus instrucciones / información de orden gratis aquí. Anula el correo electrónico de pago de pedido predeterminado. Estos códigos serán reemplazados con detalles del pedido:\n" +"CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML permitido." + +#: includes/common/payment-gateways/free_orders.php:183 +msgid "This is the free order information to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "Esta es la información del pedido gratuito que se muestra en la pantalla de confirmación del pedido. TOTAL será reemplazado con el total del pedido." + +#: includes/common/payment-gateways/free_orders.php:182 +msgid "Confirmation User Information" +msgstr "Confirmación de información del usuario" + +#: includes/common/payment-gateways/free_orders.php:177 +msgid "This is the information to display on the payments screen." +msgstr "Esta es la información para mostrar en la pantalla de pagos." + +#: includes/common/payment-gateways/free_orders.php:163 +msgid "If enabled, all free orders will be automatically marked as paid." +msgstr "Si está habilitado, todos los pedidos gratuitos se marcarán automáticamente como pagados." + +#: includes/common/payment-gateways/free_orders.php:159 +msgid "Payment Status" +msgstr "Estado de pago" + +#: includes/common/payment-gateways/free_orders.php:149 +msgid "This gateway is automatically activated if order totalling 0 and it can't be disabled" +msgstr "Esta puerta de enlace se activa automáticamente si la orden totaliza 0 y no se puede desactivar" + +#: includes/common/payment-gateways/free_orders.php:35 +#: includes/common/payment-gateways/free_orders.php:36 +#: includes/common/payment-gateways/free_orders.php:89 +msgid "Free Order" +msgstr "Orden gratis" + +#: includes/common/payment-gateways/free_orders.php:34 +#: includes/common/payment-gateways/free_orders.php:197 +msgid "Free Orders" +msgstr "Pedidos Gratis" + +#: includes/common/payment-gateways/eway31.php:515 +msgid "Sandbox API Credentials" +msgstr "Sandbox API Credenciales" + +#: includes/common/payment-gateways/eway31.php:266 +#: includes/common/payment-gateways/eway31.php:542 +msgid "eWay Rapid 3.1 Payments (beta)" +msgstr "eWay Rapid 3.1 Pagos (beta)" + +#: includes/common/payment-gateways/eway.php:403 +msgid "Hosted Payment Page Language" +msgstr "Idioma de la página de pago alojada" + +#: includes/common/payment-gateways/eway.php:373 +msgid "Note when testing in sandbox mode it will use the default eWay test API credentials. Also, please note that cart total needs to be a whole number (e.g. 10.00) in order to generate a successful transaction, otherwise the transaction will fail." +msgstr "Tenga en cuenta que cuando realice pruebas en el modo sandbox, utilizará las credenciales de API de prueba eWay predeterminadas. Además, tenga en cuenta que el total del carrito debe ser un número entero (por ejemplo, 10.00) para generar una transacción exitosa, de lo contrario la transacción fallará." + +#: includes/common/payment-gateways/eway.php:267 +msgid "You will be redirected to https://www.eway.com.au to finalize your payment." +msgstr "Será redirigido a https://www.eway.com.au para finalizar su pago." + +#: includes/common/payment-gateways/class-mp-gateway-api.php:380 +msgid "You have chosen to checkout using %s. Please confirm your order details and click \"Submit Order\" when finished." +msgstr "Has elegido hacer checkout usando%s. Por favor, confirme los detalles de su pedido y haga clic en \"Enviar pedido\" cuando haya terminado." + +#: includes/common/payment-gateways/class-mp-gateway-api.php:272 +#: includes/common/payment-gateways/paymill.php:131 +#: includes/common/payment-gateways/stripe.php:231 +msgid "Security Code " +msgstr "Código de seguridad" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Enter in MM/YYYY or MM/YY format" +msgstr "Entrar en formato MM/YYYY or MM/YY " + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Expiration" +msgstr "Vencimiento" + +#: includes/common/payment-gateways/authorizenet-aim.php:321 +msgid "Delim Data" +msgstr "Datos delimitados" + +#: includes/common/payment-gateways/authorizenet-aim.php:307 +#: includes/common/payment-gateways/paypal-payflow.php:456 +msgid "This text will appear as the footer of the email receipt sent to the customer." +msgstr "Este texto aparecerá como pie de página del recibo de correo electrónico enviado al cliente." + +#: includes/common/payment-gateways/authorizenet-aim.php:287 +#: includes/common/payment-gateways/paypal-payflow.php:440 +msgid "Email Customer (on success)" +msgstr "Cliente de correo electrónico (en caso de éxito)" + +#: includes/common/payment-gateways/authorizenet-aim.php:278 +msgid "Authorize.net default is \",\". Otherwise, get this from your credit card processor. If the transactions are not going through, this character is most likely wrong." +msgstr "Authorize.net por defecto es \",\". De lo contrario, obtenga esto de su procesador de tarjeta de crédito. Si las transacciones no se llevan a cabo, es probable que este personaje esté equivocado." + +#: includes/common/payment-gateways/authorizenet-aim.php:277 +msgid "Delimeter Character" +msgstr "Carácter delimitador" + +#: includes/common/payment-gateways/authorizenet-aim.php:193 +msgid "Held For Review" +msgstr "En espera de revisión" + +#: includes/common/payment-gateways/_ideal.php:310 +#: includes/common/payment-gateways/payfast.php:314 +msgid "Test" +msgstr "Prueba" + +#: includes/common/payment-gateways/_ideal.php:300 +#: includes/common/payment-gateways/pin.php:170 +#: includes/common/payment-gateways/stripe.php:272 +msgid "Secret Key" +msgstr "Llave secreta" + +#: includes/common/payment-gateways/_ideal.php:283 +msgid "Select Your Bank" +msgstr "Seleccione su banco" + +#: includes/common/payment-gateways/_ideal.php:97 +msgid "Your payment will be processed by the iDEAL network" +msgstr "Su pago será procesado por la red iDEAL." + +#: includes/common/payment-gateways/_cubepoints.php:208 +msgid "These are the CubePoints to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "Estos son los CubePoints que se muestran en la pantalla de confirmación del pedido. TOTAL será reemplazado con el total del pedido." + +#: includes/common/payment-gateways/_cubepoints.php:203 +msgid "These are the CubePoints instructions to display on the payments screen." +msgstr "Estas son las instrucciones de CubePoints para mostrar en la pantalla de pagos." + +#: includes/common/payment-gateways/_bitpay.php:266 +msgid "If enabled, all API calls will be made to https://test.bitpay.com." +msgstr "Si está habilitado, todas las llamadas a la API se harán a https://test.bitpay.com." + +#: includes/common/payment-gateways/_bitpay.php:263 +msgid "Use Test Mode?" +msgstr "¿Usar el modo de prueba?" + +#: includes/common/payment-gateways/_bitpay.php:259 +msgid "If checked, response fron bitpay will be stored in log file, keep it disabled unless required." +msgstr "Si se marca, la respuesta de bitpay se almacenará en el archivo de registro, manténgala desactivada a menos que sea necesario." + +#: includes/common/payment-gateways/_bitpay.php:256 +msgid "Enable Debug Log" +msgstr "Habilitar registro de depuración" + +#: includes/common/payment-gateways/_bitpay.php:249 +msgid "Full Notifications" +msgstr "Notificaciones completas" + +#: includes/common/payment-gateways/_bitpay.php:231 +#: includes/common/payment-gateways/eway31.php:499 +#: includes/common/payment-gateways/eway31.php:526 +#: includes/common/payment-gateways/mollie.php:83 +#: includes/common/shipping-modules/mp-fedex.php:269 +msgid "API Key" +msgstr "Clave API" + +#: includes/common/payment-gateways/_bitpay.php:222 +msgid "You can now accept a payment from any country on Earth, with no risk of fraud. To use Bitpay, you need to signup on Bitpay. \\n After completing the signup process, you can get api keys at Bitpay API key. You can read more about Bitpay at Bitpay API. \\n Bitpay requires SSL(https) for payment notifications to work." +msgstr "Ahora puede aceptar un pago de cualquier país de la Tierra, sin riesgo de fraude. Para usar Bitpay, necesitas registrarte en Bitpay. \\n Después de completar el proceso de registro, puede obtener las claves de api en Bitpay API key. Puedes leer más sobre Bitpay en Bitpay API. \\n Bitpay requiere SSL (https) para que funcionen las notificaciones de pago." + +#: includes/common/payment-gateways/_bitpay.php:61 +msgid "You will be redirected to bitpay.com, for bitcoin payment. It is completely safe." +msgstr "Serás redirigido a bitpay.com\"notranslate\">, para el pago de bitcoins. Es completamente seguro." + +#: includes/common/payment-gateways/2checkout.php:346 +msgid "You must login to the 2Checkout vendor dashboard to obtain the seller ID and secret word. Instructions »" +msgstr "Debe iniciar sesión en el panel del proveedor de 2Checkout para obtener el ID de vendedor y la palabra secreta. Instrucciones »" + +#: includes/common/payment-gateways/2checkout.php:345 +#: includes/common/payment-gateways/authorizenet-aim.php:239 +#: includes/common/payment-gateways/paymill.php:168 +#: includes/common/payment-gateways/paypal-express.php:704 +#: includes/common/payment-gateways/simplify.php:80 +#: includes/common/payment-gateways/stripe.php:265 +#: includes/common/payment-gateways/wepay.php:158 +msgid "API Credentials" +msgstr "Credenciales API" + +#: includes/common/payment-gateways/2checkout.php:325 +#: includes/common/payment-gateways/_bitpay.php:220 +#: includes/common/payment-gateways/_cubepoints.php:185 +#: includes/common/payment-gateways/_ideal.php:268 +#: includes/common/payment-gateways/_payway.php:255 +#: includes/common/payment-gateways/authorizenet-aim.php:219 +#: includes/common/payment-gateways/eway.php:352 +#: includes/common/payment-gateways/eway31.php:460 +#: includes/common/payment-gateways/free_orders.php:147 +#: includes/common/payment-gateways/manual-payments.php:126 +#: includes/common/payment-gateways/mijireh.php:287 +#: includes/common/payment-gateways/mollie.php:71 +#: includes/common/payment-gateways/paymill.php:149 +#: includes/common/payment-gateways/paypal-chained-payments.php:344 +#: includes/common/payment-gateways/paypal-payflow.php:376 +#: includes/common/payment-gateways/pin.php:145 +#: includes/common/payment-gateways/simplify.php:69 +#: includes/common/payment-gateways/skrill.php:121 +#: includes/common/payment-gateways/stripe.php:249 +#: includes/common/payment-gateways/wepay.php:119 +#: includes/common/shipping-modules/mp-fedex.php:243 +#: includes/common/shipping-modules/mp-flat-rate.php:63 +#: includes/common/shipping-modules/mp-pickup.php:140 +#: includes/common/shipping-modules/mp-table-rate.php:94 +#: includes/common/shipping-modules/mp-ups.php:122 +#: includes/common/shipping-modules/mp-usps.php:167 +#: includes/common/shipping-modules/mp-weight-rate.php:110 +msgid "%s Settings" +msgstr "%s Ajustes" + +#: includes/common/payment-gateways/2checkout.php:136 +msgid "You will be redirected to the 2Checkout site to finalize your payment." +msgstr "Será redirigido al sitio de 2Checkout para finalizar su pago." + +#: includes/common/helpers.php:169 includes/public/class-mp-checkout.php:1277 +msgid "Billing" +msgstr "Facturación" + +#: includes/common/helpers.php:144 +msgid "FREE" +msgstr "GRATIS" + +#: includes/common/helpers.php:134 +msgid "Coupons:" +msgstr "Cupones:" + +#: includes/common/helpers.php:95 +msgid "Qty" +msgstr "Cantidad" + +#: includes/common/helpers.php:94 +msgid "Sku" +msgstr "Sku" + +#: includes/common/data.php:59 +msgid "Zip Code" +msgstr "Código postal" + +#: includes/common/class-mp-taxes.php:336 +msgid "Standard Table" +msgstr "Mesa estandar" + +#: includes/common/class-mp-product.php:2698 +msgid "Tweet" +msgstr "Tweet" + +#: includes/common/class-mp-product.php:2321 +msgid "Notification Preferences: %s" +msgstr "Preferencias de notificación: %s" + +#: includes/common/class-mp-product.php:2320 +msgid "Edit Product: %s" +msgstr "Editar producto: %s" + +#: includes/common/class-mp-product.php:2318 +msgid "Link: %s

    " +msgstr "Enlazar: %s

    " + +#: includes/common/class-mp-product.php:2317 +msgid "Current Inventory: %s" +msgstr "Inventario actual: %s" + +#: includes/common/class-mp-product.php:2316 +msgid "Product: %s" +msgstr "Producto: %s" + +#: includes/common/class-mp-product.php:2314 +msgid "This message is being sent to notify you of low stock of a product in your online store according to your preferences.

    " +msgstr "Su mensaje se está enviando para notificarle el bajo stock de un producto en su tienda en línea de acuerdo con sus preferencias.

    " + +#: includes/common/class-mp-product.php:1817 +msgid "" +msgstr "" + +#: includes/common/class-mp-product.php:1427 +#: includes/common/class-mp-product.php:1430 +msgid "(tax incl.)" +msgstr "(impuestos incluidos)" + +#: includes/common/class-mp-product.php:1422 +#: includes/common/class-mp-product.php:1425 +msgid "(tax excl.)" +msgstr "(impuestos excluidos)" + +#: includes/common/class-mp-product.php:1300 +#: includes/common/class-mp-product.php:1315 +msgid "%s each" +msgstr "%s cada uno" + +#: includes/common/class-mp-product.php:988 +msgid "Choose Options" +msgstr "Elegir opciones" + +#: includes/common/class-mp-product.php:526 +msgid "Choose a %s" +msgstr "Escoge un %s" + +#: includes/common/class-mp-product.php:284 +#: includes/common/class-mp-product.php:292 +#: includes/common/class-mp-product.php:615 +msgid "We're sorry, we only have %d of this item in stock right now." +msgstr "Lo sentimos solo tenemos %d de este artículo en stock ahora mismo." + +#: includes/common/class-mp-order.php:1456 +msgid "Shipped: Track Shipment" +msgstr "Enviado: Seguimiento del envio" + +#: includes/common/class-mp-order.php:1049 +msgid "Order Received" +msgstr "Orden recibida" + +#: includes/common/class-mp-order.php:1014 +msgid "In Process" +msgstr "En proceso" + +#: includes/common/class-mp-order.php:969 +msgid "Order #" +msgstr "Orden #" + +#: includes/common/class-mp-order.php:866 +msgid "Copy billing address to shipping address" +msgstr "Copie la dirección de facturación a la dirección de envío" + +#: includes/common/class-mp-order.php:822 +#: includes/public/class-mp-checkout.php:1314 +msgid "Special Instructions" +msgstr "Instrucciones especiales" + +#: includes/common/class-mp-order.php:817 +#: includes/common/payment-gateways/stripe.php:335 +msgid "Email" +msgstr "Email" + +#: includes/common/class-mp-order.php:813 +#: includes/common/payment-gateways/stripe.php:341 +#: includes/public/class-mp-checkout.php:416 +msgid "Phone" +msgstr "Teléfono" + +#: includes/common/class-mp-order.php:791 +#: includes/common/payment-gateways/stripe.php:337 +msgid "State" +msgstr "Estado" + +#: includes/common/class-mp-order.php:776 +msgid "Address 1" +msgstr "Dirección 1" + +#: includes/common/class-mp-order.php:766 +msgid "Last Name" +msgstr "Apellido" + +#: includes/common/class-mp-order.php:762 +msgid "First Name" +msgstr "Nombre " + +#: includes/common/class-mp-installer.php:677 +msgid "MarketPress requires a database update to continue working correctly. Go to update page" +msgstr "MarketPress requiere una actualización de la base de datos para continuar trabajando correctamente. Ir a la página de actualización " + +#: includes/common/class-mp-installer.php:657 +msgid "MarketPress performed a quick automatic update successfully!" +msgstr "MarketPress realizó una rápida actualización automática con éxito!" + +#: includes/common/class-mp-installer.php:653 +msgid "Perform Update" +msgstr "Realizar actualización" + +#: includes/common/class-mp-installer.php:647 +msgid "Please update each subsite in your WordPress network where you have older version of the MarketPress plugin." +msgstr "Actualice cada subsitio en su red de WordPress donde tenga una versión anterior del complemento MarketPress." + +#: includes/common/class-mp-installer.php:641 +msgid "Depending on the amount of products you have, this update could take quite some time. Please keep this window open while the update completes. If you have products with multiple variations, the progress bar may move slower, please don't exit the window." +msgstr "Dependiendo de la cantidad de productos que tenga, esta actualización podría llevar bastante tiempo. Por favor, mantenga esta ventana abierta mientras se completa la actualización. Si tiene productos con múltiples variaciones, la barra de progreso puede moverse más lentamente, no salga de la ventana." + +#: includes/common/class-mp-installer.php:632 +msgid "Product Metadata" +msgstr "Metadatos del producto" + +#: includes/common/class-mp-installer.php:601 +msgid "MarketPress requires a database update to continue working correctly.
    Below you will find a list of items that require your attention." +msgstr "MarketPress requiere una actualización de la base de datos para continuar trabajando correctamente.
    A continuación encontrará una lista de elementos que requieren su atención." + +#: includes/common/class-mp-installer.php:600 +msgid "Update MarketPress Data" +msgstr "Actualizar datos de MarketPress" + +#: includes/common/class-mp-installer.php:530 +msgid "Update Data" +msgstr "Actualizar datos" + +#: includes/common/class-mp-installer.php:67 +msgid "Complete!" +msgstr "¡Completo!" + +#: includes/common/class-mp-installer.php:66 +msgid "Upgrading Database...Please Wait..." +msgstr "Actualización de la base de datos ... Por favor, espere ..." + +#: includes/common/class-mp-installer.php:64 +msgid "An error occurred while updating. Please refresh this page and try again." +msgstr "Se ha producido un error al actualizar. Por favor, actualice esta página y vuelva a intentarlo." + +#: includes/common/class-mp-cart.php:2447 +msgid "Some items in your cart have fallen below the quantity you currently have in your cart. We have adjusted the quantity in your cart automatically." +msgstr "Algunos artículos en su carrito han caído por debajo de la cantidad que tiene actualmente en su carrito. Hemos ajustado la cantidad en su carrito automáticamente." + +#: includes/common/class-mp-cart.php:2443 +msgid "Some items in your cart are no longer available. We have removed these items from your cart automatically." +msgstr "Algunos artículos en su carrito ya no están disponibles. Hemos eliminado estos artículos de su carrito automáticamente." + +#: includes/common/class-mp-cart.php:1566 +msgid "item" +msgstr "artículo" + +#: includes/common/class-mp-cart.php:1563 +#: includes/common/class-mp-cart.php:1568 +msgid "items" +msgstr "artículos" + +#: includes/common/class-mp-cart.php:1363 +msgid "Items/Products added to Cart will show here." +msgstr "Los artículos / productos añadidos al carrito se mostrarán aquí." + +#: includes/common/class-mp-cart.php:1362 +msgid "Your shopping cart is empty." +msgstr "Su carrito de compra está vacío." + +#: includes/common/class-mp-cart.php:1357 +msgid "View Cart" +msgstr "Ver carrito" + +#: includes/common/class-mp-cart.php:1241 +#: includes/common/class-mp-cart.php:1298 +#: includes/public/class-mp-short-codes.php:159 +msgid "Adding..." +msgstr "Añadiendo ..." + +#: includes/common/class-mp-cart.php:1033 +msgid "Continue Shopping?" +msgstr "¿Seguir comprando?" + +#: includes/common/class-mp-cart.php:961 +msgid "Secure Checkout
    Shopping is always safe and secure." +msgstr "Secure Checkout
    Ir de compras siempre es seguro." + +#: includes/common/class-mp-cart.php:959 +msgid "You are about to submit your order!
    Please review your order details before continuing. You will be charged immediately upon clicking \"Submit Order\"." +msgstr "Usted está a punto de enviar su pedido!
    Por favor revise los detalles de su pedido antes de continuar. Se le cobrará inmediatamente después de hacer clic en \"Enviar pedido\"." + +#: includes/common/class-mp-cart.php:956 +msgid "Continue »" +msgstr "Continue »" + +#: includes/common/class-mp-cart.php:955 +msgid "Submit Order" +msgstr "Enviar Orden " + +#: includes/common/class-mp-cart.php:818 +msgid "There are no items in your cart - go add some !" +msgstr "No hay artículos en tu carrito - ve y agrega algo !" + +#: includes/common/class-mp-cart.php:816 +msgid "The cart is disabled." +msgstr "El carrito está deshabilitado." + +#: includes/common/class-mp-cart.php:735 +msgid "Estimated %s" +msgstr "Estimado %s" + +#: includes/common/class-mp-cart.php:717 +msgid "Estimated Shipping" +msgstr "Envío estimado" + +#: includes/common/class-mp-cart.php:697 +msgid "Product Total" +msgstr "Total del producto" + +#: includes/common/class-mp-cart.php:670 includes/common/class-mp-cart.php:672 +msgid "Estimated Total (%s, %s)" +msgstr "Total Estimado (%s, %s)" + +#: includes/common/class-mp-cart.php:668 +msgid "Estimated Total (%s)" +msgstr "Total Estimado (%s)" + +#: includes/common/class-mp-cart.php:666 includes/common/class-mp-cart.php:752 +msgid "Estimated Total" +msgstr "Total Estimado" + +#: includes/admin/widgets/product-list.php:247 +msgid "Show Thumbnail Placeholder image (if image is not set)" +msgstr "Mostrar imagen de marcador de posición en miniatura (si la imagen no está configurada)" + +#: includes/admin/widgets/cart.php:73 +msgid "Display product price" +msgstr "Mostrar precio del producto" + +#: includes/admin/widgets/cart.php:71 +msgid "Display product quantity" +msgstr "Mostrar cantidad de producto" + +#: includes/admin/widgets/cart.php:69 +msgid "Display product image" +msgstr "Mostrar imagen del producto" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:93 +msgid "General Shipping Settings" +msgstr "Ajustes generales de envío" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:773 +msgid "If you are having conflicts with the lightbox library from your theme or another plugin you should uncheck this." +msgstr "Si tiene conflictos con la biblioteca de lightbox de su tema u otro complemento, debe desactivar esta opción." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:772 +msgid "Use Built-In Lightbox for Images?" +msgstr "¿Usar Lightbox incorporado para imágenes?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:762 +msgid "Disable Large Image Display?" +msgstr "Deshabilitar la visualización de imágenes grandes?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:688 +msgid "Show Product Image?" +msgstr "¿Mostrar imagen del producto?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:682 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:684 +msgid "Show Tags List?" +msgstr "¿Mostrar la lista de etiquetas?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:676 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:678 +msgid "Show Categories List?" +msgstr "¿Mostrar lista de categorías?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:671 +msgid "If enabled, description excerpt will be added above Add to cart." +msgstr "Si está habilitado, el extracto de descripción se agregará arriba Añadir al carrito." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:669 +msgid "Show Excerpt?" +msgstr "Mostrar extracto?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:665 +msgid "If enabled, users will be able to choose how many of the product they want to purchase before adding to their cart. If not checked, quantity could be change later on the cart page." +msgstr "Si está habilitado, los usuarios podrán elegir la cantidad del producto que desean comprar antes de agregarlos a su carrito. Si no se marca, la cantidad se puede cambiar más adelante en la página del carrito." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:663 +msgid "Show Quantity Field?" +msgstr "Mostrar campo de cantidad?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:649 +msgid "Settings related to the display of individual product pages." +msgstr "Ajustes relacionados con la visualización de páginas de productos individuales." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:648 +msgid "Product Page Settings" +msgstr "Configuración de la página del producto" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:605 +msgid "Related Products Layout" +msgstr "Diseño de productos relacionados" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:573 +msgid "Show Related Products?" +msgstr "¿Mostrar productos relacionados?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:568 +msgid "Related Product Settings" +msgstr "Configuraciones de productos relacionados" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:549 +msgid "Order Status Entries Per Page" +msgstr "Configuraciones de productos relacionados" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:510 +msgid "Sort Products By" +msgstr "Ordenar productos por" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:497 +msgid "Products Per Page" +msgstr "Productos por pagina " + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:492 +msgid "Paginate Products?" +msgstr "¿Paginar productos?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:478 +msgid "Excerpts Length" +msgstr "Longitud de Extractos " + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:473 +msgid "Show Excerpts?" +msgstr "¿Mostrar extractos?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:450 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:746 +msgid "Image Alignment" +msgstr "Alineación de imagen" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:412 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:708 +msgid "Custom Image Size" +msgstr "Tamaño de imagen personalizada" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:401 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:697 +msgid "Large - %s" +msgstr "Grande - %s" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:400 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:696 +msgid "Medium - %s" +msgstr "Medio - %s" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:399 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:695 +msgid "Thumbnail - %s" +msgstr "Miniatura - %s" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:397 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:693 +msgid "Image Size" +msgstr "Tamaño de la imagen" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:386 +msgid "Select default placeholder image thumbnail when product image is not available (if empty, plugin's built-in image will be used)" +msgstr "Seleccione la miniatura de la imagen del marcador de posición predeterminado cuando la imagen del producto no esté disponible (si está vacía, se usará la imagen incorporada del complemento)" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:380 +msgid "Show default product placeholder thumbnail when product image is not available?" +msgstr "¿Mostrar la miniatura del marcador de posición del producto predeterminado cuando la imagen del producto no está disponible?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:374 +msgid "Show Product Thumbnail?" +msgstr "¿Mostrar miniatura de producto?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:369 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:658 +msgid "Redirect to cart page for immediate checkout" +msgstr "Redirigir a la página del carrito para el pago inmediato" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:368 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:657 +msgid "Stay on current product page" +msgstr "Permanecer en la página del producto actual" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:366 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:655 +msgid "MarketPress supports two \"flows\" for adding products to the shopping cart. After adding a product to their cart, two things can happen:" +msgstr "MarketPress admite dos \"flujos\" para agregar productos al carrito de compras. Después de agregar un producto a su carrito, pueden suceder dos cosas:" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:365 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:654 +msgid "Add To Cart Action" +msgstr "Añadir a Cart Action" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:355 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:628 +msgid "Four" +msgstr "Cuatro" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:354 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:627 +msgid "Three" +msgstr "Tres" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:353 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:626 +msgid "Two" +msgstr "Dos" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:625 +msgid "One" +msgstr "Uno" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:349 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:622 +msgid "Set the number of products that show up in a grid row to best fit your theme" +msgstr "Establezca la cantidad de productos que aparecen en una fila de la cuadrícula para adaptarse mejor a su tema" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:348 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:621 +msgid "How many products per row?" +msgstr "¿Cuántos productos por fila?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:342 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:609 +msgid "Display as grid" +msgstr "Mostrar como cuadrícula" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:341 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:608 +msgid "Display as list" +msgstr "Mostrar como lista" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:339 +msgid "Product Layout" +msgstr "Diseño del producto" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:334 +msgid "Settings related to the display of product lists/grids." +msgstr "Ajustes relacionados con la visualización de listas de productos / cuadriculas. " + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:333 +msgid "Product List/Grid Settings" +msgstr "Lista de productos / Configuración de cuadrícula" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:314 +msgid "Show Twitter Button" +msgstr "Mostrar botón de Twitter" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:309 +msgid "Twitter" +msgstr "Twitter" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:303 +msgid "Show Share Button" +msgstr "Mostrar botón de compartir" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:297 +msgid "Recommend" +msgstr "Recomendado" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:296 +msgid "Like" +msgstr "Me gusta" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:294 +msgid "Action" +msgstr "Acción" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:283 +msgid "Show Facebook Like Button" +msgstr "Mostrar el botón Me gusta de Facebook" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:278 +msgid "Facebook" +msgstr "Facebook" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:257 +msgid "Show \"Pin It\" Button" +msgstr "Mostrar el botón \"Pin It\"" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:252 +msgid "Pinterest" +msgstr "Pinterest" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:246 +msgid "Social Settings" +msgstr "Ajustes sociales" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:193 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:202 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:211 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:220 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:229 +#: includes/multisite/class-mp-admin-multisite.php:532 +#: includes/multisite/class-mp-admin-multisite.php:541 +#: includes/multisite/class-mp-admin-multisite.php:550 +msgid "Choose a Page" +msgstr "Elige una página" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:191 +msgid "This page will be used as the root for your store." +msgstr "Esta página se utilizará como la raíz de su tienda." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:168 +#: includes/multisite/class-mp-admin-multisite.php:586 +msgid "Create Page" +msgstr "Crear página" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "uncropped" +msgstr "sin cortar" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "cropped" +msgstr "cortado" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:87 +#: includes/multisite/class-mp-admin-multisite.php:121 +#: includes/multisite/class-mp-admin-multisite.php:620 +msgid "An error occurred while creating the store page. Please try again." +msgstr "Se produjo un error al crear la página de tienda. Inténtalo de nuevo." + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:66 +msgid "Choose the gateway(s) that you would like to be available for checkout." +msgstr "Choose the gateway(s) that you would like to be available for checkout." + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:65 +msgid "Enabled Gateways" +msgstr "Puertas de enlace habilitadas" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:78 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:146 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:179 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:213 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:274 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:307 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:341 +msgid "Text" +msgstr "Texto" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:71 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:139 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:172 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:206 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:267 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:300 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:334 +msgid "Subject" +msgstr "Tema" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:52 +msgid "Notification Email" +msgstr "Email de notificación" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:510 +msgid "Enabling this option will display label `excl. tax` or `incl. tax` after price" +msgstr "Al habilitar esta opción se mostrará la etiqueta `excl. impuesto o incl. impuesto después del precio" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:509 +msgid "Display tax label?" +msgstr "Mostrar etiqueta de impuestos?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:504 +msgid "Enabling this option will show Price + Tax, eg. if your price is 100 and your tax 20, your price will be 120" +msgstr "Al habilitar esta opción se mostrará Precio + Impuesto, por ej. Si su precio es de 100 y su impuesto de 20, su precio será de 120." + +#: includes/admin/store-settings/class-mp-store-settings-general.php:416 +#: includes/multisite/class-mp-admin-multisite.php:234 +msgid "Price Format" +msgstr "Formato de precio" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:366 +msgid "Enabling this field will display a textbox on the shipping checkout page for users to enter special instructions for their order. Useful for product personalization, etc." +msgstr "Al habilitar este campo se mostrará un cuadro de texto en la página de envío para que los usuarios ingresen instrucciones especiales para su pedido. Útil para la personalización de productos, etc." + +#: includes/admin/store-settings/class-mp-store-settings-general.php:365 +msgid "Show Special Instructions Field?" +msgstr "Mostrar el campo de instrucciones especiales?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:360 +msgid "Universal" +msgstr "Universal" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:359 +msgid "Old" +msgstr "Viejo" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1167 +#: includes/admin/store-settings/class-mp-store-settings-general.php:358 +msgid "New" +msgstr "Nuevo" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:353 +msgid "If you already use Google Analytics for your website, you can track detailed ecommerce information by enabling this setting. Choose whether you are using the new asynchronous or old tracking code. Before Google Analytics can report ecommerce activity for your website, you must enable ecommerce tracking on the profile settings page for your website. Also keep in mind that some gateways do not reliably show the receipt page, so tracking may not be accurate in those cases. It is recommended to use the PayPal gateway for the most accurate data. More information »" +msgstr "Si ya usa Google Analytics para su sitio web, puede hacer un seguimiento de la información detallada de comercio electrónico habilitando esta configuración. Elija si está utilizando el nuevo código de seguimiento asíncrono o antiguo. Antes de que Google Analytics pueda informar sobre la actividad de comercio electrónico de su sitio web, debe habilitar el seguimiento de comercio electrónico en la página de configuración de perfil de su sitio web. También tenga en cuenta que algunas puertas de enlace no muestran de manera confiable la página de recibos, por lo que el seguimiento puede no ser preciso en esos casos. Se recomienda utilizar la pasarela de PayPal para obtener los datos más precisos. More information »" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:347 +msgid "Do you want to display the product price on floating Mini Cart." +msgstr "¿Desea mostrar el precio del producto en Mini Carro flotante?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:346 +msgid "Show product price on Mini Cart?" +msgstr "¿Mostrar el precio del producto en Mini Carro?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:340 +msgid "Do you want to display the product quantity on floating Mini Cart." +msgstr "¿Desea mostrar la cantidad de producto en Mini Carro flotante?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:339 +msgid "Show product quantity on Mini Cart?" +msgstr "¿Mostrar cantidad de producto en Mini Cart?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:333 +msgid "Do you want to display the product image on floating Mini Cart." +msgstr "¿Desea mostrar la imagen del producto en Mini Carro flotante?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:332 +msgid "Show product image on Mini Cart?" +msgstr "¿Mostrar la imagen del producto en Mini Cart?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:327 +msgid "This option hide floating Mini Cart in top right corner." +msgstr "Esta opción oculta el Mini Carro flotante en la esquina superior derecha." + +#: includes/admin/store-settings/class-mp-store-settings-general.php:326 +msgid "Disable Mini Cart?" +msgstr "Desactivar Mini Carro?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:316 +msgid "If unchecked your Orders admin page will be hidden" +msgstr "Si no está marcada, se ocultará la página de administración de pedidos." + +#: includes/admin/store-settings/class-mp-store-settings-general.php:315 +msgid "Show admin Orders page?" +msgstr "¿Mostrar la página de pedidos del administrador?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:309 +msgid "Disable Cart?" +msgstr "Desactivar carrito?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:303 +msgid "Force Login?" +msgstr "Forzar inicio de sesión?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:297 +msgid "Hide Out of Stock Products?" +msgstr "Ocultar productos fuera de stock?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:555 +msgid "This will prevent multiples of the same downloadable product form being added to the cart." +msgstr "Esto evitará que se agreguen al carrito múltiplos de la misma forma de producto descargable." + +#: includes/admin/store-settings/class-mp-store-settings-general.php:554 +msgid "Limit Digital Products Per-order?" +msgstr "¿Limitar productos digitales por pedido?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:268 +msgid "If you're having issues downloading large files and have worked with your hosting provider to increase your memory limits, try enabling this - just keep in mind, it's not as secure!" +msgstr "Si tiene problemas para descargar archivos de gran tamaño y ha trabajado con su proveedor de alojamiento para aumentar sus límites de memoria, intente habilitar esto. ¡Tenga en cuenta que no es tan seguro!..." + +#: includes/admin/store-settings/class-mp-store-settings-general.php:267 +msgid "Use Alternative Download Method?" +msgstr "¿Usar el método alternativo de descarga?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:252 +msgid "Download Settings" +msgstr "Ajustes de Descarga" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:230 +msgid "Change product post type" +msgstr "Cambiar el tipo de publicación del producto" + +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:51 +msgid "%s Capabilities" +msgstr "%s Capacidades" + +#: includes/admin/store-settings/class-mp-store-settings-addons.php:47 +msgid "Store Settings: Add Ons: %s" +msgstr "Configuraciones de la tienda: Complementos: %s" + +#: includes/admin/class-mp-store-settings-admin.php:254 +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:56 +msgid "Capabilities" +msgstr "Capacidades" + +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Edit Product Attribute %s" +msgstr "Editar atributo del producto %s" + +#: includes/admin/class-mp-store-settings-admin.php:246 +msgid "Exporters" +msgstr "Exportadores" + +#: includes/admin/class-mp-store-settings-admin.php:238 +msgid "Short Codes" +msgstr "Códigos cortos" + +#: includes/admin/class-mp-store-settings-admin.php:207 +msgid "An appropriate message for key \"%s\" could not be found." +msgstr "Un mensaje apropiado para la clave \"%s\" no pudo ser encontrado." + +#: includes/admin/class-mp-store-settings-admin.php:204 +msgid "Product attribute updated successfully." +msgstr "Atributo del producto actualizado con éxito." + +#: includes/admin/class-mp-store-settings-admin.php:203 +msgid "Product attribute added successfully." +msgstr "Atributo del producto agregado exitosamente." + +#: includes/admin/class-mp-store-settings-admin.php:123 +msgid "Add Ons" +msgstr "Complementos" + +#: includes/admin/class-mp-store-settings-admin.php:123 +#: includes/admin/store-settings/class-mp-store-settings-addons.php:121 +msgid "Store Settings: Add Ons" +msgstr "Configuraciones de la tienda: Complementos" + +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "Store Settings: Capabilities" +msgstr "Configuración de la tienda: Capacidades" + +#: includes/admin/class-mp-store-settings-admin.php:118 +msgid "Store Settings: Product Tags" +msgstr "Configuración de la tienda: Etiquetas del producto" + +#: includes/admin/class-mp-store-settings-admin.php:117 +msgid "Store Settings: Product Categories" +msgstr "Configuración de la tienda: Categorías de productos" + +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Store Settings: Product Attributes" +msgstr "Configuración de la tienda: Atributos del producto" + +#: includes/admin/class-mp-store-settings-admin.php:115 +msgid "Store Settings: Payments" +msgstr "Configuraciones de la tienda: Pagos" + +#: includes/admin/class-mp-store-settings-admin.php:114 +msgid "Store Settings: Shipping" +msgstr "Configuraciones de la tienda: Envío" + +#: includes/admin/class-mp-store-settings-admin.php:113 +#: includes/admin/class-mp-store-settings-admin.php:226 +msgid "Notifications" +msgstr "Notificaciones" + +#: includes/admin/class-mp-store-settings-admin.php:113 +msgid "Store Settings: Notifications" +msgstr "Configuraciones de la tienda: Notificaciones" + +#: includes/admin/class-mp-store-settings-admin.php:112 +msgid "Store Settings: Presentation" +msgstr "Configuraciones de la tienda: Presentación" + +#: includes/admin/class-mp-store-settings-admin.php:111 +msgid "Store Settings: General" +msgstr "Configuración de la tienda: General" + +#: includes/admin/class-mp-shortcode-builder.php:1489 +msgid "Select a Product" +msgstr "Selecciona un producto" + +#: includes/admin/class-mp-shortcode-builder.php:1447 +msgid "Reset to Defaults" +msgstr "Restablecer los valores predeterminados" + +#: includes/admin/class-mp-shortcode-builder.php:1446 +msgid "Insert Short Code" +msgstr "Insertar código corto" + +#: includes/admin/class-mp-shortcode-builder.php:1202 +#: includes/admin/class-mp-shortcode-builder.php:1227 +#: includes/admin/class-mp-shortcode-builder.php:1252 +msgid "The text to show in the link." +msgstr "El texto a mostrar en el enlace." + +#: includes/admin/class-mp-shortcode-builder.php:1196 +#: includes/admin/class-mp-shortcode-builder.php:1221 +#: includes/admin/class-mp-shortcode-builder.php:1246 +msgid "Whether to return a clickable link or url." +msgstr "Ya sea para devolver un enlace pulsable o url." + +#: includes/admin/class-mp-shortcode-builder.php:1177 +msgid "Whether to display the cart only on store pages or not." +msgstr "Ya sea para mostrar el carrito solo en las páginas de la tienda o no." + +#: includes/admin/class-mp-shortcode-builder.php:1171 +msgid "Whether to show or hide the product price." +msgstr "Ya sea para mostrar u ocultar el precio del producto." + +#: includes/admin/class-mp-shortcode-builder.php:1165 +msgid "Whether to show or hide the product quantity." +msgstr "Ya sea para mostrar u ocultar la cantidad del producto." + +#: includes/admin/class-mp-shortcode-builder.php:1159 +msgid "Whether to show or hide the product image." +msgstr "Ya sea para mostrar u ocultar la imagen del producto." + +#: includes/admin/class-mp-shortcode-builder.php:1153 +msgid "The text displayed before the cart." +msgstr "El texto mostrado antes del carrito." + +#: includes/admin/class-mp-shortcode-builder.php:1147 +msgid "The title of the cart." +msgstr "El título del carrito." + +#: includes/admin/class-mp-shortcode-builder.php:1058 +#: includes/admin/class-mp-shortcode-builder.php:1121 +msgid "A label to prepend to the price." +msgstr "Una etiqueta para anteponer al precio." + +#: includes/admin/class-mp-shortcode-builder.php:1032 +#: includes/admin/class-mp-shortcode-builder.php:1127 +msgid "What context for display." +msgstr "Qué contexto para mostrar." + +#: includes/admin/class-mp-shortcode-builder.php:1004 +msgid "Set the alignment of the image." +msgstr "Establecer la alineación de la imagen." + +#: includes/admin/class-mp-shortcode-builder.php:998 +msgid "Set a custom pixel width/height. If omitted defaults to the size set by \"context\"." +msgstr "Establecer un ancho / altura de píxeles personalizados. Si se omite, se omite el tamaño establecido por \"contexto\"." + +#: includes/admin/class-mp-shortcode-builder.php:993 +msgid "Widget" +msgstr "Widget" + +#: includes/admin/class-mp-shortcode-builder.php:988 +msgid "What context for preset size options." +msgstr "Qué contexto para las opciones de tamaño preestablecido." + +#: includes/admin/class-mp-shortcode-builder.php:982 +#: includes/admin/class-mp-shortcode-builder.php:1026 +#: includes/admin/class-mp-shortcode-builder.php:1052 +#: includes/admin/class-mp-shortcode-builder.php:1077 +#: includes/admin/class-mp-shortcode-builder.php:1096 +#: includes/admin/class-mp-shortcode-builder.php:1115 +msgid "The ID of the product." +msgstr "La identificación del producto." + +#: includes/admin/class-mp-shortcode-builder.php:963 +msgid "Whether to display the product meta (e.g. price, buy button)." +msgstr "Ya sea para mostrar el meta del producto (por ejemplo, precio, botón de compra)." + +#: includes/admin/class-mp-shortcode-builder.php:738 +#: includes/admin/class-mp-shortcode-builder.php:905 +#: includes/admin/class-mp-shortcode-builder.php:958 +#: includes/admin/class-mp-shortcode-builder.php:992 +#: includes/admin/class-mp-shortcode-builder.php:1035 +#: includes/admin/class-mp-shortcode-builder.php:1130 +#: includes/admin/class-mp-shortcode-builder.php:1349 +msgid "List" +msgstr "Lista" + +#: includes/admin/class-mp-shortcode-builder.php:957 +#: includes/admin/class-mp-shortcode-builder.php:991 +#: includes/admin/class-mp-shortcode-builder.php:1034 +#: includes/admin/class-mp-shortcode-builder.php:1129 +msgid "Single" +msgstr "Sencillo" + +#: includes/admin/class-mp-shortcode-builder.php:953 +msgid "Whether and what context of image size to display." +msgstr "Si y qué contexto de tamaño de imagen mostrar." + +#: includes/admin/class-mp-shortcode-builder.php:948 +msgid "Full" +msgstr "Completo" + +#: includes/admin/class-mp-shortcode-builder.php:943 +msgid "Whether and what type of content to display." +msgstr "Si y qué tipo de contenido mostrar." + +#: includes/admin/class-mp-shortcode-builder.php:937 +msgid "Whether to display the product title." +msgstr "Ya sea para mostrar el título del producto." + +#: includes/admin/class-mp-shortcode-builder.php:931 +msgid "The ID of the product to display." +msgstr "El ID del producto a mostrar." + +#: includes/admin/class-mp-shortcode-builder.php:747 +#: includes/admin/class-mp-shortcode-builder.php:914 +msgid "Hide" +msgstr "Esconder" + +#: includes/admin/class-mp-shortcode-builder.php:746 +#: includes/admin/class-mp-shortcode-builder.php:913 +msgid "Show" +msgstr "Mostrar" + +#: includes/admin/class-mp-shortcode-builder.php:744 +#: includes/admin/class-mp-shortcode-builder.php:911 +msgid "Whether or not to show the product filters." +msgstr "Si mostrar o no los filtros del producto." + +#: includes/admin/class-mp-shortcode-builder.php:724 +#: includes/admin/class-mp-shortcode-builder.php:891 +#: includes/admin/class-mp-shortcode-builder.php:1335 +msgid "Limits list to a specific product tag." +msgstr "Limita la lista a una etiqueta de producto específica." + +#: includes/admin/class-mp-shortcode-builder.php:713 +#: includes/admin/class-mp-shortcode-builder.php:880 +#: includes/admin/class-mp-shortcode-builder.php:1324 +msgid "Limits list to a specific product category." +msgstr "Limita la lista a una categoría de producto específica." + +#: includes/admin/class-mp-shortcode-builder.php:706 +#: includes/admin/class-mp-shortcode-builder.php:873 +#: includes/admin/class-mp-shortcode-builder.php:1317 +msgid "Direction to order products by." +msgstr "Instrucciones para ordenar productos." + +#: includes/admin/class-mp-shortcode-builder.php:684 +#: includes/admin/class-mp-shortcode-builder.php:851 +#: includes/admin/class-mp-shortcode-builder.php:1295 +msgid "What field to order products by." +msgstr "Por qué campo debo ordenar los productos." + +#: includes/admin/class-mp-shortcode-builder.php:678 +#: includes/admin/class-mp-shortcode-builder.php:845 +#: includes/admin/class-mp-shortcode-builder.php:1283 +msgid "How many products to display in the product list if \"paginate\" is set to true." +msgstr "Si \"paginate\" se establece en verdadero." + +#: includes/admin/class-mp-shortcode-builder.php:672 +#: includes/admin/class-mp-shortcode-builder.php:839 +#: includes/admin/class-mp-shortcode-builder.php:1277 +msgid "The page number to display in the product list if \"paginate\" is set to true." +msgstr "El número de página que se mostrará en la lista de productos si \"paginate\" se establece en verdadero." + +#: includes/admin/class-mp-shortcode-builder.php:666 +#: includes/admin/class-mp-shortcode-builder.php:833 +#: includes/admin/class-mp-shortcode-builder.php:1271 +msgid "Whether to paginate the product list. This is useful to only show a subset." +msgstr "Ya sea para paginar la lista de productos. Esto es útil para mostrar solo un subconjunto." + +#: includes/admin/class-mp-shortcode-builder.php:808 +msgid "How many related items to show." +msgstr "Cuántos elementos relacionados mostrar." + +#: includes/admin/class-mp-shortcode-builder.php:790 +msgid "How to relate the products" +msgstr "Como relacionar los productos." + +#: includes/admin/class-mp-shortcode-builder.php:784 +msgid "The product to show related items for." +msgstr "El producto para mostrar artículos relacionados para." + +#: includes/admin/class-mp-shortcode-builder.php:765 +msgid "The maximum number of products to display" +msgstr "El número máximo de productos para mostrar" + +#: includes/admin/class-mp-shortcode-builder.php:647 +msgid "Comma separated list of tags (term_id) to include. For example, include=5,27 means tags that have the term_id 5 or 27 will be the only tags displayed. Defaults to include everything." +msgstr "Lista de etiquetas separadas por comas (term_id) para incluir.Por ejemplo, incluir = 5,27 significa etiquetas que tienen la term_id 5 o 27 Serán las únicas etiquetas mostradas. Por defecto incluye todo." + +#: includes/admin/class-mp-shortcode-builder.php:641 +msgid "Comma separated list of tags (term_id) to exclude. For example, exclude=5,27 means tags that have the term_id 5 or 27 will NOT be displayed. Defaults to exclude nothing." +msgstr "Lista de etiquetas separadas por comas (term_id) para excluir. Por ejemplo, exclude = 5,27 significa que las etiquetas que tienen el term_id 5 o 27 NO se mostrarán. Por defecto no excluye nada." + +#: includes/admin/class-mp-shortcode-builder.php:633 +#: includes/admin/class-mp-shortcode-builder.php:1420 +msgid "Sort order." +msgstr "Orden de clasificación." + +#: includes/admin/class-mp-shortcode-builder.php:629 +#: includes/admin/class-mp-shortcode-builder.php:1416 +msgid "Count" +msgstr "Cuenta" + +#: includes/admin/class-mp-shortcode-builder.php:626 +#: includes/admin/class-mp-shortcode-builder.php:1413 +msgid "Order of the tags." +msgstr "Orden de las etiquetas." + +#: includes/admin/class-mp-shortcode-builder.php:620 +msgid "The text/space between tags)" +msgstr "El texto / espacio entre etiquetas)" + +#: includes/admin/class-mp-shortcode-builder.php:616 +msgid "UL with a class of \"wp-tag-cloud\"" +msgstr "UL con una clase de \"wp-tag-cloud\"" + +#: includes/admin/class-mp-shortcode-builder.php:615 +msgid "separated by whitespace defined by \"separator\" parameter." +msgstr "separados por espacios en blanco definidos por el parámetro \"separador\"." + +#: includes/admin/class-mp-shortcode-builder.php:613 +msgid "Format of the cloud display." +msgstr "Formato de la pantalla en la nube." + +#: includes/admin/class-mp-shortcode-builder.php:607 +msgid "The number of actual tags to display in the cloud. (Use \"0\" to display all tags.)" +msgstr "El número de etiquetas reales para mostrar en la nube. (Use \"0\" para mostrar todas las etiquetas.)" + +#: includes/admin/class-mp-shortcode-builder.php:601 +msgid "Unit of measure as pertains to the smallest and largest values. This can be any CSS length value, e.g. pt, px, em, %." +msgstr "La unidad de medida pertenece a los valores más pequeños y más grandes. Este puede ser cualquier valor de longitud de CSS, por ejemplo, pt, px, em,%." + +#: includes/admin/class-mp-shortcode-builder.php:595 +msgid "The text size of the tag with the largest count value (units given by unit parameter)." +msgstr "El tamaño del texto de la etiqueta con el mayor valor de conteo (unidades dadas por parámetro de unidad)." + +#: includes/admin/class-mp-shortcode-builder.php:589 +msgid "The text size of the tag with the smallest count value (units given by unit parameter)." +msgstr "El tamaño del texto de la etiqueta con el valor de conteo más pequeño (unidades dadas por parámetro de unidad)." + +#: includes/admin/class-mp-shortcode-builder.php:570 +msgid "The \"tabindex\" attribute value for select element. " +msgstr "El valor del atributo \"tabindex\" para seleccionar el elemento." + +#: includes/admin/class-mp-shortcode-builder.php:564 +msgid "The \"name\" attribute value for select element. " +msgstr "El valor del atributo \"nombre\" para el elemento seleccionado." + +#: includes/admin/class-mp-shortcode-builder.php:558 +msgid "The \"id\" attribute value for select element. " +msgstr "El valor del atributo \"id\" para el elemento seleccionado." + +#: includes/admin/class-mp-shortcode-builder.php:552 +msgid "Which category ID is selected." +msgstr "Qué ID de categoría está seleccionada." + +#: includes/admin/class-mp-shortcode-builder.php:540 +msgid "The max depth. This is ignored unless hierarchical is set to true." +msgstr "La profundidad máxima. Esto se ignora a menos que jerárquico se establezca en verdadero." + +#: includes/admin/class-mp-shortcode-builder.php:536 +#: includes/multisite/template-functions.php:816 +msgid "No Categories" +msgstr "No Categorías" + +#: includes/admin/class-mp-shortcode-builder.php:414 +#: includes/admin/class-mp-shortcode-builder.php:546 +msgid "Calculates link or post counts by including items from child categories. If show_counts and hierarchical are true this is automatically set to true." +msgstr "Calcula el recuento de enlaces o publicaciones incluyendo artículos de categorías secundarias. Si show_counts y hierarchical son verdaderos, esto se establece automáticamente en verdadero." + +#: includes/admin/class-mp-shortcode-builder.php:409 +msgid "Value of n (some number) specifies the depth (or level) to descend in displaying Categories." +msgstr "El valor de n (algún número) especifica la profundidad (o nivel) para descender en la visualización de Categorías." + +#: includes/admin/class-mp-shortcode-builder.php:408 +msgid "Show only top level Categories." +msgstr "Mostrar solo las categorías de nivel superior." + +#: includes/admin/class-mp-shortcode-builder.php:407 +msgid "All Categories displayed in flat (no indent) form (overrides hierarchical)." +msgstr "Todas las categorías se muestran en forma plana (sin sangría) (reemplaza a jerárquica)." + +#: includes/admin/class-mp-shortcode-builder.php:406 +msgid "All Categories and child Categories (Default)." +msgstr "Todas las categorías y categorías de hijo(predeterminado)" + +#: includes/admin/class-mp-shortcode-builder.php:402 +msgid "This parameter controls how many levels in the hierarchy of Categories are to be included in the list of Categories. NOTE: The \"hierarchical\" argument, which is disabled by default, will override the depth argument, unless it is true. When the argument is false, it will display all of the categories. When it is enabled it will use the value in the \"depth\" argument." +msgstr "Este parámetro controla cuántos niveles en la jerarquía de Categorías se incluirán en la lista de Categorías. NOTA: El argumento \"jerárquico\", que está deshabilitado de forma predeterminada, anulará el argumento de profundidad, a menos que sea verdadero. Cuando el argumento es falso, mostrará todas las categorías. Cuando esté habilitado, usará el valor en el argumento \"profundidad\"." + +#: includes/admin/class-mp-shortcode-builder.php:396 +#: includes/admin/class-mp-shortcode-builder.php:1394 +msgid "Sets the number of Categories to display. This causes the SQL LIMIT value to be defined." +msgstr "Establece el número de categorías para mostrar. Esto hace que se defina el valor de LIMIT de SQL." + +#: includes/admin/class-mp-shortcode-builder.php:390 +#: includes/admin/class-mp-shortcode-builder.php:534 +msgid "Set the text to show when no categories are listed." +msgstr "Establezca el texto para mostrar cuando no se enumeran categorías." + +#: includes/admin/class-mp-shortcode-builder.php:384 +msgid "Set the title and style of the outer list item. If present but empty, the outer list item will not be displayed." +msgstr "Establezca el título y el estilo del elemento de la lista externa. Si está presente pero vacío, el elemento de la lista externa no se mostrará." + +#: includes/admin/class-mp-shortcode-builder.php:378 +#: includes/admin/class-mp-shortcode-builder.php:528 +msgid "Display sub-categories as inner list items (below the parent list item) or inline." +msgstr "Muestre las subcategorías como elementos de la lista interna (debajo del elemento de la lista principal) o en línea." + +#: includes/admin/class-mp-shortcode-builder.php:368 +#: includes/admin/class-mp-shortcode-builder.php:511 +msgid "Exclude category-tree from the results. The parameter include must be empty. If the hierarchical parameter is true, then use exclude instead of exclude_tree." +msgstr "Excluir categoría-árbol de los resultados. El parámetro include debe estar vacío. Si el parámetro jerárquico es verdadero, entonces use exclude en lugar de exclude_tree." + +#: includes/admin/class-mp-shortcode-builder.php:354 +msgid "Only include these categories." +msgstr "Solo incluye estas categorías." + +#: includes/admin/class-mp-shortcode-builder.php:340 +#: includes/admin/class-mp-shortcode-builder.php:356 +#: includes/admin/class-mp-shortcode-builder.php:370 +#: includes/admin/class-mp-shortcode-builder.php:496 +#: includes/admin/class-mp-shortcode-builder.php:513 +msgid "Select Categories" +msgstr "Seleccione Categorías" + +#: includes/admin/class-mp-shortcode-builder.php:338 +#: includes/admin/class-mp-shortcode-builder.php:494 +msgid "Exclude one or more categories from the results. The parameter include must be empty." +msgstr "Excluir una o más categorías de los resultados. El parámetro include debe estar vacío." + +#: includes/admin/class-mp-shortcode-builder.php:332 +msgid "Set a URI for an image (usually an rss feed icon) to act as a link to each categories' rss-2 feed. This parameter overrides the feed parameter. There is no default for this parameter." +msgstr "Establezca un URI para una imagen (generalmente un icono de feed RSS) para que actúe como un enlace al feed rss-2 de cada categoría. Este parámetro anula el parámetro de alimentación. No hay valor predeterminado para este parámetro." + +#: includes/admin/class-mp-shortcode-builder.php:320 +msgid "Display a link to each category's rss-2 feed and set the link text to display. The default is no text and no feed displayed." +msgstr "Muestre un enlace a la fuente rss-2 de cada categoría y configure el texto del enlace para que se muestre. El valor predeterminado es sin texto y no se muestra ninguna fuente." + +#: includes/admin/class-mp-shortcode-builder.php:313 +#: includes/admin/class-mp-shortcode-builder.php:487 +msgid "Any" +msgstr "Alguno" + +#: includes/admin/class-mp-shortcode-builder.php:307 +#: includes/admin/class-mp-shortcode-builder.php:481 +msgid "Only display categories that are children of the category identified by this parameter." +msgstr "Solo se muestran las categorías que son hijos de la categoría identificada por este parámetro." + +#: includes/admin/class-mp-shortcode-builder.php:301 +msgid "Sets whether a category's description is inserted into the title attribute of the links created (i.e. <a title=\"<em>Category Description</em>\" href=\"...)." +msgstr "Establece si la descripción de una categoría se inserta en el atributo de título de los enlaces creados (i.e. <a title=\"<em>Category Description</em>\" href=\"...)." + +#: includes/admin/class-mp-shortcode-builder.php:295 +#: includes/admin/class-mp-shortcode-builder.php:475 +msgid "Toggles the display of categories with no posts." +msgstr "Alterna la visualización de categorías sin publicaciones." + +#: includes/admin/class-mp-shortcode-builder.php:289 +#: includes/admin/class-mp-shortcode-builder.php:469 +#: includes/admin/class-mp-shortcode-builder.php:1388 +msgid "Toggles the display of the current count of posts in each category." +msgstr "Alterna la visualización del recuento actual de publicaciones en cada categoría." + +#: includes/admin/class-mp-shortcode-builder.php:279 +msgid "Style to display the categories list in. A value of list displays the categories as list items while none generates no special display method (the list items are separated by
    tags)." +msgstr "Estilo para mostrar la lista de categorías. Un valor de lista muestra las categorías como elementos de lista mientras que ninguno genera ningún método de visualización especial (los elementos de la lista están separados por
    tags)." + +#: includes/admin/class-mp-shortcode-builder.php:269 +#: includes/admin/class-mp-shortcode-builder.php:449 +#: includes/admin/class-mp-shortcode-builder.php:1378 +msgid "Sort order for categories (either ascending or descending)." +msgstr "Orden de clasificación por categorías (ya sea ascendente o descendente)." + +#: includes/admin/class-mp-shortcode-builder.php:259 +#: includes/admin/class-mp-shortcode-builder.php:439 +#: includes/admin/class-mp-shortcode-builder.php:1368 +msgid "Sort categories alphabetically, by unique Category ID, or by the count of posts in that Category." +msgstr "Ordene las categorías alfabéticamente, por ID de categoría única o por el número de publicaciones en esa categoría." + +#: includes/admin/class-mp-shortcode-builder.php:253 +#: includes/admin/class-mp-shortcode-builder.php:433 +msgid "If a value is entered, causes the display of a link to all categories if the style is set to list." +msgstr "Si se ingresa un valor, hace que se muestre un enlace a todas las categorías si el estilo se establece en la lista." + +#: includes/admin/class-mp-shortcode-builder.php:219 +msgid "Select an Action" +msgstr "Seleccione una acción" + +#: includes/admin/class-mp-shortcode-builder.php:217 +msgid "What would you like to do?" +msgstr "Que te gustaría hacer?" + +#: includes/admin/class-mp-shortcode-builder.php:216 +#: includes/admin/class-mp-shortcode-builder.php:1522 +msgid "Add E-Commerce Short Code" +msgstr "Agregar código corto de comercio electrónico" + +#: includes/admin/class-mp-shortcode-builder.php:197 +msgid "Display a list of links to your store pages." +msgstr "Muestra una lista de enlaces a las páginas de tu tienda." + +#: includes/admin/class-mp-shortcode-builder.php:196 +msgid "Display a link or url to the order status page." +msgstr "Muestra un enlace o url a la página de estado del pedido." + +#: includes/admin/class-mp-shortcode-builder.php:195 +msgid "Display a link or url to the current products list page." +msgstr "Muestra un enlace o url a la página de lista de productos actual." + +#: includes/admin/class-mp-shortcode-builder.php:194 +msgid "Display a link or url to the current store page." +msgstr "Muestra un enlace o url a la página de la tienda actual." + +#: includes/admin/class-mp-shortcode-builder.php:193 +msgid "Display a link or url to the current shopping cart page." +msgstr "Muestra un enlace o url a la página actual del carrito de compras." + +#: includes/admin/class-mp-shortcode-builder.php:192 +msgid "Display the cart widget." +msgstr "Mostrar el widget del carrito." + +#: includes/admin/class-mp-shortcode-builder.php:191 +msgid "Display the full product meta box with price and buy now/add to cart button." +msgstr "Muestre la meta caja completa del producto con el precio y compre ahora / agregue al botón del carrito." + +#: includes/admin/class-mp-shortcode-builder.php:190 +msgid "Display the product stock." +msgstr "Mostrar el stock de producto." + +#: includes/admin/class-mp-shortcode-builder.php:189 +msgid "Display the product SKU number(s)." +msgstr "Mostrar los números de SKU del producto." + +#: includes/admin/class-mp-shortcode-builder.php:188 +msgid "Display the product price (and sale price)." +msgstr "Mostrar el precio del producto (y el precio de venta)." + +#: includes/admin/class-mp-shortcode-builder.php:187 +msgid "Display the buy or add to cart button." +msgstr "Muestra el botón comprar o añadir al carrito." + +#: includes/admin/class-mp-shortcode-builder.php:186 +msgid "Display the featured image of a given product." +msgstr "Mostrar la imagen mostrada de un producto dado." + +#: includes/admin/class-mp-shortcode-builder.php:185 +msgid "Display a single product." +msgstr "Mostrar un solo producto." + +#: includes/admin/class-mp-shortcode-builder.php:184 +msgid "Display a list of products according to preference." +msgstr "Mostrar una lista de productos según preferencia." + +#: includes/admin/class-mp-shortcode-builder.php:183 +msgid "Display products related to the one being viewed." +msgstr "Mostrar productos relacionados con el que se está viendo." + +#: includes/admin/class-mp-shortcode-builder.php:182 +msgid "Display a list of popular products ordered by sales." +msgstr "Muestra una lista de productos populares ordenados por ventas." + +#: includes/admin/class-mp-shortcode-builder.php:180 +msgid "Display an HTML dropdown of your product categories." +msgstr "Muestra un menú desplegable HTML de tus categorías de productos." + +#: includes/admin/class-mp-shortcode-builder.php:179 +msgid "Display an HTML list of your product categories." +msgstr "Muestra una lista HTML de tus categorías de productos." + +#: includes/admin/class-mp-shortcode-builder.php:178 +msgid "Display a cloud or list of your product tags." +msgstr "Muestra una nube o lista de las etiquetas de tus productos." + +#: includes/admin/class-mp-setup-wizard.php:655 +msgid "Setup your payment gateway" +msgstr "Configura tu pasarela de pago" + +#: includes/admin/class-mp-setup-wizard.php:643 +#: includes/admin/class-mp-setup-wizard.php:649 +msgid "Other Gateways" +msgstr "Otras pasarelas" + +#: includes/admin/class-mp-setup-wizard.php:617 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:150 +msgid "Select which calculated shipping methods the customer will be able to choose from." +msgstr "Seleccione los métodos de envío calculados entre los que el cliente podrá elegir." + +#: includes/admin/class-mp-setup-wizard.php:601 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:134 +#: includes/public/class-mp-checkout.php:82 +msgid "Shipping Method" +msgstr "Método de envío" + +#: includes/admin/class-mp-setup-wizard.php:568 +msgid "I want to charge shipping" +msgstr "Quiero cobrar envio" + +#: includes/admin/class-mp-setup-wizard.php:523 +#: includes/admin/store-settings/class-mp-store-settings-general.php:503 +msgid "Show Price + Tax?" +msgstr "¿Mostrar precio + impuestos?" + +#: includes/admin/class-mp-setup-wizard.php:507 +msgid "I.e. Taxes, VAT, GST, etc" +msgstr "Es decir. Impuestos, IVA, GST, etc" + +#: includes/admin/class-mp-setup-wizard.php:491 +#: includes/admin/store-settings/class-mp-store-settings-general.php:471 +msgid "Current Rates" +msgstr "Las tasas actuales" + +#: includes/admin/class-mp-setup-wizard.php:473 +msgid "Default Tax Rate" +msgstr "Las tasas actuales" + +#: includes/admin/class-mp-setup-wizard.php:434 +#: includes/admin/class-mp-setup-wizard.php:442 +#: includes/admin/store-settings/class-mp-store-settings-general.php:386 +#: includes/admin/store-settings/class-mp-store-settings-general.php:394 +#: includes/multisite/class-mp-admin-multisite.php:204 +#: includes/multisite/class-mp-admin-multisite.php:212 +msgid "Select a Currency" +msgstr "Seleccione una moneda" + +#: includes/admin/class-mp-setup-wizard.php:414 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:105 +msgid "Choose Countries" +msgstr "Elegir paises" + +#: includes/admin/class-mp-setup-wizard.php:411 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:103 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:104 +msgid "All Countries" +msgstr "Todos los países" + +#: includes/admin/class-mp-setup-wizard.php:410 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:102 +msgid "These are the countries that you will ship to." +msgstr "Estos son los países a los que enviarás." + +#: includes/admin/class-mp-setup-wizard.php:409 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:101 +msgid "Target Countries" +msgstr "Países objetivos" + +#: includes/admin/class-mp-setup-wizard.php:401 +msgid "Countries" +msgstr "Países " + +#: includes/admin/class-mp-setup-wizard.php:387 +#: includes/admin/store-settings/class-mp-store-settings-general.php:640 +msgid "Zip/Postal Code Label" +msgstr "Código postal / etiqueta postal" + +#: includes/admin/class-mp-setup-wizard.php:352 +#: includes/admin/store-settings/class-mp-store-settings-general.php:606 +msgid "Select a State/Province/Region" +msgstr "Seleccione un Estado / Provincia / Región" + +#: includes/admin/class-mp-setup-wizard.php:335 +#: includes/admin/store-settings/class-mp-store-settings-general.php:590 +msgid "Select A Country" +msgstr "Seleccione un país" + +#: includes/admin/class-mp-setup-wizard.php:332 +#: includes/admin/store-settings/class-mp-store-settings-general.php:587 +msgid "Select a Country" +msgstr "Seleccione un país" + +#: includes/admin/class-mp-setup-wizard.php:324 +msgid "Location" +msgstr "Ubicación" + +#: includes/admin/class-mp-setup-wizard.php:304 +#: includes/admin/class-mp-setup-wizard.php:312 +#: includes/admin/class-mp-store-settings-admin.php:129 +#: includes/admin/class-mp-store-settings-admin.php:262 +msgid "Quick Setup" +msgstr "Configuración rápida" + +#: includes/admin/class-mp-setup-wizard.php:289 +msgid "MarketPress setup is not complete! Run setup wizard" +msgstr "¡La configuración de MarketPress no está completa! Ejecutar Asistente de instalación" + +#: includes/admin/class-mp-products-admin.php:2479 +msgid "Enter your product name here" +msgstr "Ingrese el nombre de su producto aquí" + +#: includes/admin/class-mp-products-admin.php:2440 +msgid "Select a %s" +msgstr "Seleccione un %s" + +#: includes/admin/class-mp-products-admin.php:2426 +msgid "Each product variation needs to have product attributes assigned to it so the system knows how to differentiate one product variation from the other. It is important that you assign a category to this product before choosing any attributes." +msgstr "Cada variación de producto debe tener atributos de producto asignados para que el sistema sepa cómo diferenciar una variación de producto de la otra. Es importante que asigne una categoría a este producto antes de elegir cualquier atributo." + +#: includes/admin/class-mp-products-admin.php:2409 +msgid "If you would like this variation to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "Si desea que esta variación utilice una tasa impositiva especial, ingrésela aquí. Si omite el símbolo \"%\", la tasa se calculará como una cantidad fija para cada uno de este producto en el carrito del usuario." + +#: includes/admin/class-mp-products-admin.php:2320 +msgid "Sale Price (if applicable)" +msgstr "Precio de venta (si corresponde)" + +#: includes/admin/class-mp-products-admin.php:2281 +msgid "If you would like the description to be different than the main product enter it here." +msgstr "Si desea que la descripción sea diferente a la del producto principal, ingrésela aquí." + +#: includes/admin/class-mp-products-admin.php:2229 +msgid "Image" +msgstr "Imagen" + +#: includes/admin/class-mp-products-admin.php:2202 +#: includes/admin/class-mp-shortcode-builder.php:226 +msgid "Attributes" +msgstr "Atributos" + +#: includes/admin/class-mp-products-admin.php:2166 +msgid "Create your product variations here. You can reorder variations by using the number to left of each variation, or delete one by clicking the \"x\" to the right of each variation. NOTE: The variation that shows up first in this list will be considered the \"main variation\". The details from this variation will be used in product listings." +msgstr "Crea tus variaciones de producto aquí. Puede reordenar las variaciones usando el número a la izquierda de cada variación, o eliminar una haciendo clic en la \"x\" a la derecha de cada variación. NOTA: La variación que aparece primero en esta lista se considerará la \"variación principal\". Los detalles de esta variación se utilizarán en las listas de productos. " + +#: includes/admin/class-mp-products-admin.php:2061 +#: includes/admin/class-mp-products-admin.php:2332 +msgid "Value must be less than regular price" +msgstr "El valor debe ser menor que el precio regular" + +#: includes/admin/class-mp-products-admin.php:2043 +#: includes/admin/class-mp-products-admin.php:2306 +msgid "Regular Price" +msgstr "Precio regular" + +#: includes/admin/class-mp-products-admin.php:2023 +#: includes/admin/class-mp-products-admin.php:2286 +msgid "External URL" +msgstr "URL externa" + +#: includes/admin/class-mp-products-admin.php:1988 +#: includes/admin/class-mp-products-admin.php:2245 +msgid "Enter the quantity that you have available to sell." +msgstr "Ingrese la cantidad que tiene disponible para vender." + +#: includes/admin/class-mp-products-admin.php:1987 +#: includes/admin/class-mp-products-admin.php:2244 +msgid "Inventory Count" +msgstr "Cuenta de inventario" + +#: includes/admin/class-mp-products-admin.php:1977 +#: includes/admin/class-mp-products-admin.php:2234 +msgid "Track Inventory?" +msgstr "Seguimiento de inventario?" + +#: includes/admin/class-mp-products-admin.php:1871 +msgid "%1$sProduct Images%2$s %3$sAdd images of the product. The first image on the list is the featured image for this product (you can reorder images on the list)%2$s" +msgstr "%1$sProduct Images%2$s %3$s Añadir imágenes del producto. La primera imagen en la lista es la imagen destacada para este producto (puede reordenar las imágenes en la lista)%2$s" + +#: includes/admin/class-mp-products-admin.php:1806 +msgid "Add variations for this product. e.g. If you are selling t-shirts, you can create Color & Size variations" +msgstr "Añadir variaciones para este producto. p.ej. Si está vendiendo camisetas, puede crear variaciones de color y tamaño." + +#: includes/admin/class-mp-products-admin.php:1804 +msgid "%3$sAdd variations for%2$s %1$sProduct%2$s" +msgstr "%3$s Añadir variaciones para%2$s %1$sProducto%2$s" + +#: includes/admin/class-mp-products-admin.php:1776 +msgid "This product has a multiple variations %1$s(e.g. Multiple colors, sizes)%2$s" +msgstr "Este producto tiene múltiples variaciones. %1$s(por ejemplo, múltiples colores, tamaños)%2$s" + +#: includes/admin/class-mp-products-admin.php:1775 +msgid "This is a unique product without variations" +msgstr "Este es un producto único sin variaciones." + +#: includes/admin/class-mp-products-admin.php:1700 +msgid "Extra Shipping Cost %1$s(if applicable)%2$s" +msgstr "Costo de envío adicional %1$s(si es aplicable)%2$s" + +#: includes/admin/class-mp-products-admin.php:1659 +#: includes/admin/class-mp-products-admin.php:2112 +#: includes/admin/class-mp-products-admin.php:2359 +msgid "Weight" +msgstr "Peso" + +#: includes/admin/class-mp-products-admin.php:1636 +#: includes/admin/class-mp-products-admin.php:2098 +#: includes/admin/class-mp-products-admin.php:2416 +msgid "Please enter a valid tax rate" +msgstr "Por favor ingrese una tasa de impuesto válida" + +#: includes/admin/class-mp-products-admin.php:1531 +msgid "Limit Per Order %1$s(limit the number of the item a shopper can buy per order)%2$s" +msgstr "Límite por orden %1$s(limite el número del artículo que un comprador puede comprar por pedido)%2$s" + +#: includes/admin/class-mp-products-admin.php:1513 +msgid "SKU %1$s(Stock Keeping Unit)%2$s" +msgstr "SKU %1$s(Unidad de mantenimiento de stock)%2$s" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "%1$sPrice, Inventory & Variants%2$s %3$sSet price, manage inventory and create Product Variants (if appropriate for your product).%2$s" +msgstr "%1$sPrecio, Inventario y Variantes%2$s %3$sFije el precio, administre el inventario y cree Variantes de productos (si es apropiado para su producto).%2$s" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "Product Variations" +msgstr "Variaciones del producto" + +#: includes/admin/class-mp-products-admin.php:1480 +msgid "External / Affiliate Link" +msgstr "Enlace externo / afiliado" + +#: includes/admin/class-mp-products-admin.php:1471 +msgid "Digital Download" +msgstr "Descarga digital" + +#: includes/admin/class-mp-products-admin.php:1470 +msgid "Physical / Tangible Product" +msgstr "Producto físico / tangible" + +#: includes/admin/class-mp-products-admin.php:1464 +msgid "Product Kind %1$s(Physical Product, Digital, etc)%2$s" +msgstr "Tipo de producto %1$s (Producto físico, Digital, etc.)%2$s" + +#: includes/admin/class-mp-products-admin.php:1426 +msgid "Choose Products" +msgstr "Elegir productos" + +#: includes/admin/class-mp-products-admin.php:1420 +msgid "If you would like, you can choose specific related products instead of using the ones generated by MarketPress" +msgstr "Si lo desea, puede elegir productos relacionados específicos en lugar de utilizar los generados por MarketPress" + +#: includes/admin/class-mp-products-admin.php:1019 +msgid "Changes saved successfully" +msgstr "Los cambios se guardaron exitosamente" + +#: includes/admin/class-mp-products-admin.php:826 +msgid "Option cannot be saved. Try again." +msgstr "La opción no se pudo guardar. Inténtalo de nuevo." + +#: includes/admin/class-mp-products-admin.php:821 +msgid "Option saved successfully." +msgstr "Opción guardada con éxito." + +#: includes/admin/class-mp-products-admin.php:467 +msgid "Img" +msgstr "Img" + +#: includes/admin/class-mp-product-attributes-list-table.php:57 +msgid "Product attribute(s) deleted successfully." +msgstr "Los atributos del producto se eliminaron correctamente." + +#: includes/admin/class-mp-product-attributes-admin.php:162 +msgid "- Create New Variation -" +msgstr "- Crear nueva variación -" + +#: includes/admin/class-mp-product-attributes-admin.php:144 +msgid "Only lowercase letters and dashes (-) are allowed." +msgstr "Solo se permiten letras minúsculas y guiones (-)." + +#: includes/admin/class-mp-product-attributes-admin.php:139 +msgid "If a slug is not entered, it will be generated automatically. Max 32 characters." +msgstr "Si no se ingresa un slug, se generará automáticamente. Max 32 caracteres." + +#: includes/admin/class-mp-product-attributes-admin.php:138 +#: includes/admin/class-mp-product-attributes-list-table.php:23 +msgid "Slug" +msgstr "Slug" + +#: includes/admin/class-mp-product-attributes-admin.php:130 +msgid "Max 45 characters." +msgstr "Máximo 45 caracteres." + +#: includes/admin/class-mp-product-attributes-admin.php:123 +msgid "Use the numbers on the left to sort. To delete - click the \"X\" to the right of each row." +msgstr "Usa los números de la izquierda para ordenar. Para eliminar: haga clic en la \"X\" a la derecha de cada fila." + +#: includes/admin/class-mp-product-attributes-admin.php:122 +msgid "Attribute Options" +msgstr "Opciones de atributos" + +#: includes/admin/class-mp-product-attributes-admin.php:121 +msgid "Add Option" +msgstr "Añadir opción" + +#: includes/admin/class-mp-product-attributes-admin.php:105 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:523 +msgid "Sort Order" +msgstr "Orden de clasificación" + +#: includes/admin/class-mp-product-attributes-admin.php:87 +msgid "Alphabetical" +msgstr "Alfabético" + +#: includes/admin/class-mp-product-attributes-admin.php:86 +msgid "ID" +msgstr "ID" + +#: includes/admin/class-mp-product-attributes-admin.php:84 +msgid "Select how the options will be sorted." +msgstr "Seleccione cómo se ordenarán las opciones." + +#: includes/admin/class-mp-product-attributes-admin.php:82 +msgid "Sort By" +msgstr "Ordenar por" + +#: includes/admin/class-mp-product-attributes-admin.php:75 +msgid "The name of the attribute (e.g. color, size, etc)" +msgstr "El nombre del atributo (por ejemplo, color, tamaño, etc.)" + +#: includes/admin/class-mp-product-attributes-admin.php:74 +msgid "Attribute Name" +msgstr "Nombre del Atributo" + +#: includes/admin/class-mp-product-attributes-admin.php:69 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Product Attribute" +msgstr "Añadir atributo de producto" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Attribute" +msgstr "Añadir atributo" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Product Attributes" +msgstr "Atributos del producto" + +#: includes/admin/class-mp-pages-admin.php:71 +msgid "You can choose to make this page one of the following core store pages." +msgstr "Puede elegir hacer de esta página una de las siguientes páginas de la tienda principal." + +#: includes/admin/class-mp-pages-admin.php:66 +msgid "Network Store Base" +msgstr "Base de la tienda de red" + +#: includes/admin/class-mp-pages-admin.php:61 +msgid "Checkout Page" +msgstr "Página de pago" + +#: includes/admin/class-mp-pages-admin.php:52 +msgid "Store Page Settings" +msgstr "Ajustes de página de la tienda" + +#: includes/admin/class-mp-orders-admin.php:1108 +msgid "Display billing/shipping info for this customer" +msgstr "Mostrar información de facturación / envío para este cliente" + +#: includes/admin/class-mp-orders-admin.php:1097 +msgid "View order “%s”" +msgstr "Ver pedido “%s”" + +#: includes/admin/class-mp-orders-admin.php:1072 +msgid "Flag as:" +msgstr "Marcar como" + +#: includes/admin/class-mp-orders-admin.php:952 +msgid "Move To Trash" +msgstr "Mover a la papelera" + +#: includes/admin/class-mp-orders-admin.php:948 +msgid " Received" +msgstr "Recibido" + +#: includes/admin/class-mp-orders-admin.php:927 +msgid "Enter coupon code here" +msgstr "Introduzca el código de cupón aquí" + +#: includes/admin/class-mp-orders-admin.php:812 +msgid "The order status could not be updated due to unexpected error. Please try again." +msgstr "El estado del pedido no se pudo actualizar debido a un error inesperado. Inténtalo de nuevo." + +#: includes/admin/class-mp-orders-admin.php:740 +msgid "An invalid bulk action was requested. Please go back and try again." +msgstr "Se solicitó una acción masiva no válida. Por favor, regrese y vuelva a intentarlo." + +#: includes/admin/class-mp-orders-admin.php:692 +msgid "The order status for order ID %1$s was updated successfully." +msgstr "El estado del pedido para ID de pedido%1$s fue actualizado exitosamente" + +#: includes/admin/class-mp-orders-admin.php:688 +msgid "Order statuses successfully updated." +msgstr "Los estados de los pedidos se han actualizado correctamente." + +#: includes/admin/class-mp-orders-admin.php:530 +msgid "Method" +msgstr "Método" + +#: includes/admin/class-mp-orders-admin.php:518 +msgid "Actual Shipping Method" +msgstr "Método de envío real" + +#: includes/admin/class-mp-orders-admin.php:513 +msgid "Method Paid For" +msgstr "Método pagado por" + +#: includes/admin/class-mp-orders-admin.php:504 +msgid "Amount Collected" +msgstr "Cantidad recaudada" + +#: includes/admin/class-mp-orders-admin.php:477 +msgid "DHL" +msgstr "DHL" + +#: includes/admin/class-mp-orders-admin.php:408 +msgid "There is no IPN history to show at this time" +msgstr "No hay historial de IPN para mostrar en este momento" + +#: includes/admin/class-mp-orders-admin.php:345 +msgid "Type" +msgstr "Tipo" + +#: includes/admin/class-mp-orders-admin.php:343 +msgid "Gateway" +msgstr "Pasarela" + +#: includes/admin/class-mp-orders-admin.php:301 +#: includes/common/template-functions.php:528 +msgid "Order History" +msgstr "Historial de pedidos" + +#: includes/admin/class-mp-orders-admin.php:291 +msgid "IPN History" +msgstr "Historia de IPN" + +#: includes/admin/class-mp-orders-admin.php:283 +msgid "Customer Info" +msgstr "Información del cliente" + +#: includes/admin/class-mp-orders-admin.php:279 +msgid "Order Details" +msgstr "Detalles del pedido" + +#: includes/admin/class-mp-exporter-orders.php:157 +msgid "All Dates" +msgstr "Todas las fechas" + +#: includes/admin/class-mp-dashboard-widgets.php:320 +msgid "Add Pages to Menu" +msgstr "Añadir páginas al menú" + +#: includes/admin/class-mp-dashboard-widgets.php:318 +msgid "Add-ons" +msgstr "Complementos" + +#: includes/admin/class-mp-dashboard-widgets.php:317 +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "User Capabilities" +msgstr "Capacidades del usuario" + +#: includes/admin/class-mp-dashboard-widgets.php:316 +#: includes/admin/class-mp-setup-wizard.php:631 +#: includes/admin/store-settings/class-mp-store-settings-payments.php:50 +msgid "Payment Gateways" +msgstr "Pasarelas de pago" + +#: includes/admin/class-mp-dashboard-widgets.php:315 +msgid "Shipping Rates" +msgstr "Tarifas de envio" + +#: includes/admin/class-mp-dashboard-widgets.php:312 +msgid "Configure" +msgstr "Configurar" + +#: includes/admin/class-mp-dashboard-widgets.php:309 +#: includes/admin/class-mp-products-admin.php:466 +#: includes/admin/class-mp-shortcode-builder.php:797 +msgid "Tags" +msgstr "Etiquetas" + +#: includes/admin/class-mp-dashboard-widgets.php:308 +#: includes/admin/class-mp-products-admin.php:465 +msgid "Categories" +msgstr "Categorías" + +#: includes/admin/class-mp-dashboard-widgets.php:300 +msgid "Manage" +msgstr "Gestionar" + +#: includes/admin/class-mp-dashboard-widgets.php:297 +msgid "Here's some quick links to manage your store and products." +msgstr "Aquí hay algunos enlaces rápidos para administrar su tienda y productos." + +#: includes/admin/class-mp-dashboard-widgets.php:288 +msgid "low in stock" +msgstr "bajo en existencia" + +#: includes/admin/class-mp-dashboard-widgets.php:287 +msgid "%s product" +msgid_plural "%s products" +msgstr[0] "%s producto" +msgstr[1] "%s productos" + +#: includes/admin/class-mp-dashboard-widgets.php:280 +msgid "received" +msgstr "recibido" + +#: includes/admin/class-mp-dashboard-widgets.php:279 +#: includes/admin/class-mp-dashboard-widgets.php:283 +msgid "%s order" +msgid_plural "%s orders" +msgstr[0] "%s pedido" +msgstr[1] "%s pedidos" + +#: includes/admin/class-mp-dashboard-widgets.php:276 +msgid "Stock & Orders" +msgstr "Stock y pedidos" + +#: includes/admin/class-mp-dashboard-widgets.php:261 +msgid "Last 30 Days" +msgstr "Últimos 30 días" + +#: includes/admin/class-mp-dashboard-widgets.php:256 +msgid "Last 7 Days" +msgstr "Los últimos 7 días" + +#: includes/admin/class-mp-dashboard-widgets.php:251 +msgid "Yesterday" +msgstr "Ayer" + +#: includes/admin/class-mp-dashboard-widgets.php:248 +#: includes/admin/class-mp-dashboard-widgets.php:253 +#: includes/admin/class-mp-dashboard-widgets.php:258 +#: includes/admin/class-mp-dashboard-widgets.php:263 +msgid " Orders" +msgstr "Pedidos" + +#: includes/admin/class-mp-dashboard-widgets.php:246 +msgid "Today" +msgstr "Hoy" + +#: includes/admin/class-mp-dashboard-widgets.php:241 +msgid "Welcome back! Here's a quick summary of your store's performance." +msgstr "¡Dar una buena acogida! Aquí hay un breve resumen del rendimiento de su tienda." + +#: includes/admin/class-mp-dashboard-widgets.php:196 +#: includes/admin/class-mp-products-admin.php:895 +msgid "No products out of stock." +msgstr "No hay productos agotados." + +#: includes/admin/class-mp-dashboard-widgets.php:136 +#: includes/admin/class-mp-products-admin.php:839 +msgid "Stock Level" +msgstr "Nivel de existencias" + +#: includes/admin/class-mp-dashboard-widgets.php:135 +#: includes/admin/class-mp-products-admin.php:838 +msgid "Variation" +msgstr "Variación" + +#: includes/admin/class-mp-dashboard-widgets.php:121 +msgid "Low Stock (%s)" +msgstr "Bajo stock (%s)" + +#: includes/admin/class-mp-dashboard-widgets.php:116 +msgid "Store Management" +msgstr "Administración de la tienda" + +#: includes/admin/class-mp-dashboard-widgets.php:115 +msgid "Store Reports" +msgstr "Informes de la tienda" + +#: includes/admin/class-mp-ajax.php:579 +#: includes/admin/class-mp-orders-admin.php:520 +#: includes/common/payment-gateways/2checkout.php:370 +#: includes/common/payment-gateways/authorizenet-aim.php:264 +#: includes/common/payment-gateways/mollie.php:93 +#: includes/common/payment-gateways/paymill.php:196 +#: includes/common/payment-gateways/pin.php:190 +#: includes/common/payment-gateways/skrill.php:157 +#: includes/common/payment-gateways/skrill.php:168 +#: includes/common/payment-gateways/wepay.php:143 +#: includes/public/class-mp-checkout.php:404 +msgid "Select One" +msgstr "Seleccione uno" + +#: includes/admin/class-mp-ajax.php:511 +msgid "Oops... we could not locate any orders by that ID. Please double check your order ID and try again." +msgstr "Vaya ... no hemos podido localizar ningún pedido por esa ID. Por favor revise su ID de pedido y vuelva a intentarlo." + +#: includes/admin/class-mp-ajax.php:482 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:166 +#: includes/multisite/class-mp-admin-multisite.php:584 +msgid "Edit Page" +msgstr "Editar página" + +#: includes/admin/class-mp-ajax.php:346 +msgid "Cancel " +msgstr "Cancelar" + +#: includes/admin/class-mp-ajax.php:345 +msgid "Save " +msgstr "Salvar" + +#: includes/admin/class-mp-ajax.php:336 +msgid "Edit Description" +msgstr "Editar Descripción" + +#: includes/admin/class-mp-ajax.php:336 +msgid "HTML Markup" +msgstr "Marcado HTML" + +#: includes/admin/class-mp-ajax.php:333 +msgid "Plain Text Only" +msgstr "Sólo texto sin formato" + +#: includes/admin/class-mp-ajax.php:329 +msgid "Additional Content / Information for this Variation" +msgstr "Contenido / información adicional para esta variación" + +#: includes/admin/class-mp-ajax.php:317 +#: includes/admin/class-mp-products-admin.php:1762 +msgid "Allow this product to be purchased even if it's out of stock" +msgstr "Permitir que este producto se compre incluso si está agotado" + +#: includes/admin/class-mp-ajax.php:313 +#: includes/admin/class-mp-products-admin.php:1711 +msgid "Track Product Inventory" +msgstr "Seguimiento del inventario de productos" + +#: includes/admin/class-mp-ajax.php:300 +msgid "Extra Shipping Cost (if applicable)" +msgstr "Costo de envío adicional (si corresponde)" + +#: includes/admin/class-mp-ajax.php:295 +msgid "Ounces:" +msgstr "Onzas:" + +#: includes/admin/class-mp-ajax.php:294 +msgid "Pounds:" +msgstr "Libras:" + +#: includes/admin/class-mp-ajax.php:292 +msgid "Kilograms:" +msgstr "Kilogramos:" + +#: includes/admin/class-mp-ajax.php:287 +#: includes/admin/class-mp-products-admin.php:1649 +msgid "Charge Shipping" +msgstr "Cargo de Envío " + +#: includes/admin/class-mp-ajax.php:273 +#: includes/admin/class-mp-products-admin.php:1623 +#: includes/admin/store-settings/class-mp-store-settings-general.php:454 +msgid "Tax Rate" +msgstr "Tasa de impuesto" + +#: includes/admin/class-mp-ajax.php:272 +#: includes/admin/class-mp-products-admin.php:1622 +#: includes/admin/class-mp-products-admin.php:2090 +#: includes/admin/class-mp-products-admin.php:2408 +msgid "Special Tax Rate" +msgstr "Tasa de impuesto especial" + +#: includes/admin/class-mp-ajax.php:271 +#: includes/admin/class-mp-products-admin.php:1625 +#: includes/admin/class-mp-products-admin.php:2092 +msgid "If you would like this product to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "Si desea que este producto utilice una tasa impositiva especial, ingréselo aquí. Si omite el símbolo \"%\", la tasa se calculará como una cantidad fija para cada uno de este producto en el carrito del usuario." + +#: includes/admin/class-mp-ajax.php:268 +#: includes/admin/class-mp-products-admin.php:1599 +msgid "Charge Taxes (Special Rate)" +msgstr "Cargo de Impuestos (tarifa especial)" + +#: includes/admin/class-mp-ajax.php:256 +#: includes/admin/class-mp-products-admin.php:1593 +#: includes/admin/class-mp-products-admin.php:2077 +#: includes/admin/class-mp-products-admin.php:2348 +msgid "End Date (if applicable)" +msgstr "Fecha de finalización (si corresponde)" + +#: includes/admin/class-mp-ajax.php:255 +#: includes/admin/class-mp-products-admin.php:1589 +#: includes/admin/class-mp-products-admin.php:2072 +msgid "Start Date (if applicable)" +msgstr "Fecha de inicio (si corresponde)" + +#: includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:1568 +msgid "Enter Sale Price" +msgstr "Ingrese el precio de venta" + +#: includes/admin/class-mp-ajax.php:250 +#: includes/admin/class-mp-products-admin.php:1547 +msgid "Set up a Sale for this Product" +msgstr "Configurar un precio especial para este producto" + +#: includes/admin/class-mp-ajax.php:206 includes/admin/class-mp-ajax.php:223 +msgid "Enter " +msgstr "Entrar" + +#: includes/admin/class-mp-ajax.php:193 +msgid "Browse" +msgstr "Vistazo" + +#: includes/admin/class-mp-ajax.php:184 includes/admin/class-mp-ajax.php:192 +msgid "http://" +msgstr "http://" + +#: includes/admin/class-mp-ajax.php:183 +msgid "External Product URL" +msgstr "URL externa del producto" + +#: includes/admin/class-mp-ajax.php:237 +msgid "Limit Per Order" +msgstr "Límite por orden" + +#: includes/admin/class-mp-ajax.php:177 +#: includes/admin/class-mp-products-admin.php:1520 +msgid "Enter Price" +msgstr "Ingrese el precio" + +#: includes/admin/class-mp-ajax.php:174 +#: includes/admin/class-mp-products-admin.php:1512 +msgid "Enter SKU" +msgstr "Ingresar SKU" + +#: includes/admin/class-mp-ajax.php:173 +msgid "(Stock Keeping Unit)" +msgstr "(Unidad de mantenimiento de stock)" + +#: includes/admin/class-mp-ajax.php:158 +msgid "Remove Image" +msgstr "Quita la imagen" + +#: includes/admin/class-mp-ajax.php:74 +msgid "Variation Draft" +msgstr "Borrador de variación" + +#: includes/admin/class-mp-admin.php:296 +#: includes/admin/class-mp-dashboard-widgets.php:70 +msgid "Please wait...saving in progress..." +msgstr "Por favor espere ... guardando en progreso ..." + +#: includes/admin/class-mp-admin.php:295 +#: includes/admin/class-mp-dashboard-widgets.php:69 +msgid "Input is required" +msgstr "Se requiere entrada" + +#: includes/admin/class-mp-admin.php:294 +#: includes/admin/class-mp-dashboard-widgets.php:68 +msgid "Valid number is required" +msgstr "Se requiere un número válido" + +#: includes/admin/class-mp-admin.php:292 +#: includes/admin/class-mp-dashboard-widgets.php:66 +msgid "Delete %s product variant" +msgstr "Borrar %s variante de producto" + +#: includes/admin/class-mp-admin.php:291 +#: includes/admin/class-mp-dashboard-widgets.php:65 +msgid "Delete %s product variants" +msgstr "Borrar %s variantes de producto" + +#: includes/admin/class-mp-admin.php:290 +#: includes/admin/class-mp-dashboard-widgets.php:64 +msgid "Update inventory for %s product variant" +msgstr "Actualizar inventario para %s variante de producto" + +#: includes/admin/class-mp-admin.php:289 +#: includes/admin/class-mp-dashboard-widgets.php:63 +msgid "Update inventory for %s product variants" +msgstr "Actualizar inventario para %s variantes de producto" + +#: includes/admin/class-mp-admin.php:288 +#: includes/admin/class-mp-dashboard-widgets.php:62 +msgid "Update price for %s product variant" +msgstr "Precio de actualización para %s variante de producto" + +#: includes/admin/class-mp-admin.php:287 +#: includes/admin/class-mp-dashboard-widgets.php:61 +msgid "Update prices for %s product variants" +msgstr "Actualizar precios para %s variantes de producto" + +#: includes/admin/class-mp-admin.php:285 +#: includes/admin/class-mp-dashboard-widgets.php:59 +msgid "Creating variations, please wait..." +msgstr "Creando variaciones, por favor espera ..." + +#: includes/admin/class-mp-admin.php:96 +msgid "The following payment gateways have been deprecated, Cubepoints, Bitpay, iDEAL, Skrill, Google Checkout. If you were using one of these gateways, please setup a new payment gateway here." +msgstr "Las siguientes pasarelas de pago han quedado en desuso, Cubepoints, Bitpay, iDEAL, Skrill, Google Checkout. Si estaba utilizando una de estas puertas de enlace, configure una nueva puerta de enlace de pago here." + +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:61 +msgid "Packing Slip" +msgstr "Hoja de embalaje" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:71 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:71 +#: includes/common/class-mp-gdpr.php:399 includes/common/class-mp-order.php:872 +#: includes/common/helpers.php:164 includes/public/class-mp-checkout.php:1434 +msgid "Shipping Address" +msgstr "Dirección de Envío" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:66 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:66 +#: includes/common/class-mp-gdpr.php:392 includes/common/class-mp-order.php:864 +#: includes/common/helpers.php:163 includes/public/class-mp-checkout.php:1427 +msgid "Billing Address" +msgstr "Dirección de Envio" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:61 +msgid "Invoice" +msgstr "Factura" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:258 +msgid "Shipping Email: %s" +msgstr "Correo electrónico de envío: %s" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:256 +msgid "Email: %s" +msgstr "Email: %s" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:235 +msgid "Payment Method: %s" +msgstr "Método de pago: %s" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:79 +msgid "The dir %s not exist or not writeable" +msgstr "La dir %s no existe o no se puede escribir" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Packing Slip" +msgstr "Boleta de embalaje PDF" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Invoice" +msgstr "Factura en PDF" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:239 +msgid "Shop header/logo" +msgstr "Tienda encabezado / logo" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:233 +msgid "Choose a template" +msgstr "Elige una plantilla" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:226 +msgid "Template Settings" +msgstr "Ajustes de plantilla" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:221 +msgid "Disable automatic creation/attachment of invoices when only free products are ordered" +msgstr "Deshabilite la creación / el archivo automático de facturas cuando solo se piden productos gratuitos" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:220 +msgid "Disable for free products" +msgstr "Deshabilitar para productos gratis" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:216 +msgid "Attach invoice to" +msgstr "Adjuntar factura a" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:214 +msgid "Customer Order Shipped email" +msgstr "Correo electrónico de pedido del cliente enviado" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:212 +msgid "Customer New Order email" +msgstr "Nuevo pedido del cliente email" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:211 +msgid "Admin New Order email" +msgstr "Administración email de nuevo pedido" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:206 +msgid "download" +msgstr "descargar" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:205 +msgid "How do you want to view the PDF?" +msgstr "¿Cómo quieres ver el PDF?" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:203 +msgid "Open the PDF in a new browser tab/window" +msgstr "Abra el PDF en una nueva pestaña / ventana del navegador" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:202 +msgid "Download the PDF" +msgstr "Descarga el PDF" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:158 +msgid "Export PDF" +msgstr "Exportar PDF" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:103 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:106 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:109 +msgid "You can't download this order invoice" +msgstr "No puedes descargar esta factura de pedido" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:76 +msgid "Invalid Request" +msgstr "Solicitud no válida" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:72 +msgid "Order not exist!" +msgstr "¡La orden no existe!" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:67 +msgid "Invalid ID" +msgstr "Identificación invalida" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1293 +msgid "Coupon added successfully" +msgstr "Cupón agregado exitosamente" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1292 +msgid "Please enter a code" +msgstr "Por favor, ingrese un código" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1247 +msgid "No end" +msgstr "Sin fin" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1200 +msgid "Valid Dates" +msgstr "Fechas válidas" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1195 +msgid "Code" +msgstr "Código" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1027 +msgid "No Coupons found in Trash" +msgstr "No se encontraron cupones en la papelera" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1026 +msgid "No Coupons Found" +msgstr "No se encontraron cupones" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1025 +msgid "Search Coupons" +msgstr "Buscar cupones" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1024 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1028 +msgid "View Coupon" +msgstr "Ver cupón" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1023 +msgid "New Coupon" +msgstr "Nuevo cupón" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1020 +msgid "Create New Coupon" +msgstr "Crear nuevo cupón" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1017 +msgid "Manage Coupons" +msgstr "Administrar cupones" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1002 +msgid "An error occurred while removing your coupon. Please try again." +msgstr "Se produjo un error al retirar su cupón. Inténtalo de nuevo." + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:964 +msgid "Coupon can't be applied to this cart" +msgstr "El cupón no se puede aplicar a este carrito." + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:951 +msgid "Invalid coupon code" +msgstr "Código de cupón inválido" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:794 +msgid "Help Text" +msgstr "Texto de ayuda" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:789 +msgid "Form Title" +msgstr "Título del formulario" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:783 +msgid "Coupons Settings" +msgstr "Configuración de cupones" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:764 +msgid "End Date" +msgstr "Fecha final" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:758 +msgid "Does coupon have an end date?" +msgstr "¿El cupón tiene una fecha de finalización?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:696 +msgid "Select Products" +msgstr "Productos seleccionados" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:688 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:723 +#: includes/common/payment-gateways/paypal-payflow.php:402 +msgid "User" +msgstr "Usuario" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:638 +msgid "Max Uses" +msgstr "Usos máximos" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:636 +msgid "Enter the maximum number of times this coupon can be used." +msgstr "Ingrese el número máximo de veces que se puede usar este cupón." + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:623 +msgid "Leave blank to allow all other coupons." +msgstr "Deje en blanco para permitir todos los otros cupones." + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:622 +msgid "Select combinable coupons" +msgstr "Seleccione cupones combinables" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:618 +msgid "Can this coupon be combined with other coupons?" +msgstr "¿Se puede combinar este cupón con otros cupones?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:613 +msgid "Apply to each applicable item once per cart" +msgstr "Aplicar a cada artículo aplicable una vez por carrito" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:612 +msgid "Apply to each applicable item and quantity ordered" +msgstr "Aplicar a cada artículo aplicable y cantidad pedida" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:609 +msgid "How should the discount amount be applied?" +msgstr "¿Cómo se debe aplicar el monto del descuento?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:605 +msgid "Discount Amount" +msgstr "Importe de descuento" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:604 +msgid "Value must either be a decimal number or a percentage" +msgstr "El valor debe ser un número decimal o un porcentaje" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:602 +msgid "If you would like to give a percentage-based discount make sure to include the percent (%) symbol. Otherwise, the discount will be applied as a fixed amount off." +msgstr "Si desea otorgar un descuento basado en porcentajes, asegúrese de incluir el símbolo de porcentaje (%). De lo contrario, el descuento se aplicará como una cantidad fija de descuento." + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:595 +msgid "Letters and Numbers only." +msgstr "Letras y numeros solamente. " + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:589 +msgid "Coupon Settings" +msgstr "Ajustes de cupones" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:447 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:795 +msgid "More than one code? That's OK! Just be sure to enter one at a time." +msgstr "Más de un código? ¡Está bien! Solo asegúrate de ingresar uno a la vez." + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:444 +msgid "Apply Code" +msgstr "Aplica el código" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:314 +msgid "Coupon Discounts" +msgstr "Cupones de Descuentos " + +#: includes/addons/class-mp-addons-list-table.php:89 +msgid "1 add-on disabled" +msgid_plural "%s add-ons disabled" +msgstr[0] "1 complemento deshabilitado" +msgstr[1] "%s complementos deshabilitado" + +#: includes/addons/class-mp-addons-list-table.php:84 +msgid "1 add-on enabled" +msgid_plural "%s add-ons enabled" +msgstr[0] "1 complemento habilitado" +msgstr[1] "%s complementos habilitados" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Disabled" +msgstr "Desactivado" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Enable add-on" +msgstr "Habilitar complemento" + +#: includes/addons/class-mp-addons-list-table.php:45 +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:129 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:67 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:135 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:168 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:202 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:263 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:296 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:330 +msgid "Enabled" +msgstr "Habilitado" + +#: includes/addons/class-mp-addons-list-table.php:45 +msgid "Disable add-on" +msgstr "Deshabilitar complemento" + +#: includes/addons/class-mp-addons-list-table.php:34 +msgid "Disable" +msgstr "Inhabilitar" + +#: includes/addons/class-mp-addons-list-table.php:33 +msgid "Enable" +msgstr "Habilitar" + +#: includes/addons/class-mp-addons-list-table.php:21 +#: includes/admin/class-mp-products-admin.php:2280 +#: includes/common/class-mp-product.php:2916 +msgid "Description" +msgstr "Descripción" + +#: includes/common/template-functions.php:2889 +#: includes/multisite/template-functions.php:407 +msgid "Popularity (Least Popular - Most Popular)" +msgstr "Popularidad (Menos popular - Más popular)" + +#: includes/common/template-functions.php:2888 +#: includes/multisite/template-functions.php:406 +msgid "Popularity (Most Popular - Least Popular)" +msgstr "Popularidad (Los más populares - Los menos populares)" + +#: includes/common/template-functions.php:2885 +#: includes/multisite/template-functions.php:403 +msgid "Name (Z-A)" +msgstr "Nombre (Z-A)" + +#: includes/common/template-functions.php:2884 +#: includes/multisite/template-functions.php:402 +msgid "Name (A-Z)" +msgstr "Nombre (A-Z)" + +#: includes/common/template-functions.php:2883 +#: includes/multisite/template-functions.php:401 +msgid "Release Date (Oldest to Latest)" +msgstr "Fecha de lanzamiento (del más antiguo al más reciente)" + +#: includes/common/template-functions.php:2882 +#: includes/multisite/template-functions.php:400 +msgid "Release Date (Latest to Oldest)" +msgstr "Fecha de lanzamiento (de más reciente a más antiguo)" + +#: includes/admin/class-mp-dashboard-widgets.php:284 +msgid "paid" +msgstr "pagado" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "One Time Pickup" +msgstr "Recoger una vez" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Customer Counter" +msgstr "Contador de clientes" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Daily Pickup" +msgstr "Recogida diaria" + +#: includes/common/shipping-modules/mp-ups.php:182 +msgid "For the most accurate rates, please select the appropriate pick up type for your business." +msgstr "Para obtener las tarifas más precisas, seleccione el tipo de recogida adecuado para su negocio." + +#: includes/admin/class-mp-admin.php:374 +msgid "Page saved." +msgstr "Página guardada." + +#: includes/admin/class-mp-admin.php:370 +msgid "Custom field deleted." +msgstr "Campo personalizado eliminado." + +#: includes/admin/class-mp-admin.php:369 +msgid "Custom field updated." +msgstr "Campo personalizado actualizado." + +#: includes/common/payment-gateways/_bitpay.php:541 +msgid "%s - The payment request expired, - %s" +msgstr "%s - La solicitud de pago expiró, - %s" + +#: includes/common/payment-gateways/_bitpay.php:536 +msgid "%s - The payment not credited in merchants bitpay account, action required. Bitpay invoice status - %s" +msgstr "%s - El pago no acreditado en la cuenta de bitpay de los comerciantes, acción requerida. Estado de la factura Bitpay - %s" + +#: includes/common/payment-gateways/_bitpay.php:252 +msgid "If enabled, you will recieve an email for each status update on payment." +msgstr "Si está habilitado, recibirá un correo electrónico para cada actualización de estado en el pago." + +#: includes/common/payment-gateways/_bitpay.php:240 +msgid "Speed at which the bitcoin transaction registers as \"confirmed\" to the store. This overrides your merchant settings on the Bitpay website." +msgstr "Velocidad a la que la transacción de bitcoin se registra como \"confirmada\" en la tienda. Esto anula la configuración de su comerciante en el sitio web de Bitpay." + +#: includes/common/payment-gateways/_bitpay.php:238 +msgid "Transaction Speed" +msgstr "Velocidad de transacción" + +#: includes/common/payment-gateways/_bitpay.php:244 +msgid "Low" +msgstr "Bajo" + +#: includes/common/payment-gateways/_bitpay.php:243 +msgid "Medium" +msgstr "Medio" + +#: includes/common/payment-gateways/_bitpay.php:242 +msgid "High" +msgstr "Alto" + +#: includes/common/payment-gateways/_bitpay.php:177 +#: includes/common/payment-gateways/_bitpay.php:517 +#: includes/common/payment-gateways/_bitpay.php:522 +msgid "%s - The payment request is under process. Bitpay invoice status - %s" +msgstr "%s - La solicitud de pago está en proceso. Estado de la factura Bitpay - %s" + +#: includes/common/payment-gateways/_bitpay.php:175 +#: includes/common/payment-gateways/_bitpay.php:527 +msgid "%s - The payment request has been processed - %s" +msgstr "%s - La solicitud de pago ha sido procesada - %s" + +#: includes/common/payment-gateways/_bitpay.php:150 +#: includes/common/payment-gateways/_bitpay.php:294 +msgid "Incorrect order invoice, please contact site administrator" +msgstr "Factura de pedido incorrecta, por favor contacte al administrador del sitio." + +#: includes/common/payment-gateways/_bitpay.php:141 +msgid "We could not verify order invoice details, please try again or contact site administrator for help" +msgstr "No pudimos verificar los detalles de la factura del pedido. Inténtelo de nuevo o comuníquese con el administrador del sitio para obtener ayuda." + +#: includes/common/payment-gateways/simplify.php:81 +msgid "Login to Simplify to get your API credentials. Enter your test credentials, then live ones when ready." +msgstr "Inicie sesión para Simplify a get your API credentials. Ingrese sus credenciales de prueba, luego en vivo cuando esté listo." + +#: includes/common/payment-gateways/paypal-express.php:605 +#: includes/common/payment-gateways/paypal-express.php:647 +msgid "Express Checkout is PayPal's premier checkout solution, which streamlines the checkout process for buyers and keeps them on your site after making a purchase. Unlike PayPal Pro, there are no additional fees to use Express Checkout, though you may need to do a free upgrade to a business account. More Info »" +msgstr "Express Checkout es la solución de pago principal de PayPal, que agiliza el proceso de pago para los compradores y los mantiene en su sitio después de realizar una compra. A diferencia de PayPal Pro, no hay cargos adicionales por el uso de Pago exprés, aunque es posible que deba realizar una actualización gratuita a una cuenta comercial. More Info »" + +#. Plugin URI of the plugin/theme +msgid "https://premium.wpmudev.org/project/e-commerce/" +msgstr "https://premium.wpmudev.org/project/e-commerce/" + +#. Author of the plugin/theme +msgid "WPMU DEV" +msgstr "WPMU DEV" + +#: includes/admin/class-mp-orders-admin.php:541 +#: includes/admin/class-mp-orders-admin.php:543 +msgid "Tracking Number" +msgstr "El número de rastreo" + +#: includes/common/class-mp-order.php:805 +#: includes/common/payment-gateways/stripe.php:336 +#: includes/public/class-mp-checkout.php:402 +msgid "Country" +msgstr "País" + +#: includes/common/class-mp-order.php:784 +#: includes/common/payment-gateways/stripe.php:338 +msgid "City" +msgstr "Ciudad" + +#: includes/common/class-mp-order.php:780 +msgid "Address 2" +msgstr "Dirección 2" + +#: includes/common/payment-gateways/stripe.php:340 +msgid "Address" +msgstr "Dirección" + +#: includes/common/class-mp-cart.php:752 includes/common/class-mp-gdpr.php:378 +msgid "Order Total" +msgstr "Total del pedido" + +#: includes/admin/class-mp-orders-admin.php:360 +msgid "Payment Total" +msgstr "Total de pago" + +#: includes/admin/class-mp-orders-admin.php:347 +msgid "Transaction ID" +msgstr "ID de transacción" + +#: includes/common/payment-gateways/wepay.php:207 +msgid "The WePay Card Token was not generated correctly. Please go back and try again." +msgstr "El token de la tarjeta WePay no se generó correctamente. Por favor, regrese y vuelva a intentarlo." + +#: includes/common/payment-gateways/wepay.php:186 +#: includes/common/shipping-modules/mp-fedex.php:283 +msgid "Account ID" +msgstr "ID de la cuenta" + +#: includes/common/payment-gateways/wepay.php:179 +msgid "Access Token" +msgstr "Token de acceso" + +#: includes/common/payment-gateways/wepay.php:172 +msgid "Client Secret" +msgstr "Secreto del cliente" + +#: includes/common/payment-gateways/wepay.php:165 +msgid "Client ID" +msgstr "Identificación del cliente" + +#: includes/common/payment-gateways/wepay.php:159 +msgid "You must login to WePay to get your API credentials. Make sure to check \"Tokenize credit cards\" option under \"API Keys\" section of your WePay app." +msgstr "Debes iniciar sesión en WePay para get your API credentials. Asegúrese de marcar la opción \"Tarjetas de crédito Tokenize\" en la sección \"Claves de API\" de su WePay app." + +#: includes/common/payment-gateways/wepay.php:154 +msgid "When in live mode it is recommended to use SSL certificate setup for the site where the checkout form will be displayed." +msgstr "Cuando esté en modo en vivo, se recomienda utilizar la configuración del certificado SSL para el sitio donde se mostrará el formulario de pago." + +#: includes/common/payment-gateways/wepay.php:148 +msgid "Donation" +msgstr "Donación" + +#: includes/common/payment-gateways/wepay.php:147 +msgid "Event" +msgstr "Evento" + +#: includes/common/payment-gateways/wepay.php:146 +msgid "Personal" +msgstr "Personal" + +#: includes/common/payment-gateways/wepay.php:145 +msgid "Service" +msgstr "Servicio" + +#: includes/common/payment-gateways/wepay.php:144 +msgid "Goods" +msgstr "Bienes" + +#: includes/common/payment-gateways/wepay.php:141 +msgid "Choose type of payments" +msgstr "Elija el tipo de pagos" + +#: includes/common/payment-gateways/wepay.php:140 +msgid "Checkout Type" +msgstr "Tipo de pago" + +#: includes/common/payment-gateways/wepay.php:134 +msgid "Staging" +msgstr "Staging" + +#: includes/common/payment-gateways/wepay.php:131 +msgid "Choose STAGING if you have registered the app on stage.wepay.com, or PRODUCTION if you registered on www.wepay.com" +msgstr "Seleccione STAGING si ha registrado la aplicación en stage.wepay.com, o PRODUCTION si se ha registrado en www.wepay.com" + +#: includes/common/payment-gateways/wepay.php:36 +#: includes/common/payment-gateways/wepay.php:299 +msgid "WePay" +msgstr "WePay" + +#: includes/common/payment-gateways/_payway.php:366 +msgid "Rejected - A payment was rejected." +msgstr "Rechazado: se rechazó su pago." + +#: includes/common/payment-gateways/_payway.php:360 +msgid "Failed - A payment was rejected due to an error." +msgstr "Fallido: se rechazó su pago debido a un error." + +#: includes/common/payment-gateways/_payway.php:342 +msgid "PayWay balance, Credit Card, or Instant Transfer" +msgstr "Saldo de PayWay, tarjeta de crédito o transferencia instantánea" + +#: includes/common/payment-gateways/_payway.php:298 +msgid "Full path of the cacerts.crt file" +msgstr "Ruta completa del archivo cacerts.crt" + +#: includes/common/payment-gateways/_payway.php:284 +msgid "User Name" +msgstr "Nombre de usuario" + +#: includes/common/payment-gateways/_payway.php:277 +msgid "Biller Code" +msgstr "Código de facturación" + +#: includes/common/payment-gateways/_payway.php:273 +msgid "Log Directory" +msgstr "Directorio de registro" + +#: includes/common/payment-gateways/_payway.php:266 +msgid "Encryption Key" +msgstr "Clave de encriptación" + +#: includes/common/payment-gateways/_payway.php:60 +msgid "Your PayWay transaction has been canceled." +msgstr "Su transacción PayWay ha sido cancelada." + +#: includes/common/payment-gateways/_payway.php:40 +#: includes/common/payment-gateways/_payway.php:41 +msgid "PayWay" +msgstr "PayWay" + +#: includes/common/payment-gateways/paypal-chained-payments.php:862 +msgid "You must register this application with PayPal using your business account login to get an Application ID that will work with your API credentials. A bit of a hassle, but worth it! In the near future we will be looking for ways to simplify this process. Register then submit your application while logged in to the developer portal. Note that you do not need an Application ID for testing in sandbox mode. More Information »" +msgstr "Debe registrar esta aplicación en PayPal usando el inicio de sesión de su cuenta comercial para obtener un ID de aplicación que funcione con sus credenciales de API. Un poco molesto, pero vale la pena! En un futuro cercano, buscaremos formas de simplificar este proceso. Regístrese luego envíe su solicitud Mientras está conectado al portal de desarrolladores. Tenga en cuenta que no necesita una ID de aplicación para realizar pruebas en el modo sandbox. Más información »" + +#: includes/common/payment-gateways/paypal-chained-payments.php:818 +#: includes/common/payment-gateways/paypal-chained-payments.php:840 +#: includes/common/payment-gateways/paypal-express.php:705 +msgid "You must login to PayPal and create an API signature to get your credentials. Instructions »" +msgstr "Debe iniciar sesión en PayPal y crear una firma de API para obtener sus credenciales. Instructions »" + +#: includes/common/payment-gateways/paypal-payflow.php:378 +msgid "Use Payflow payment gateway to accept online payments using your Internet merchant account and processing network. PayPal Payflow Pro is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway." +msgstr "Use la pasarela de pago de Payflow para aceptar pagos en línea usando su cuenta de comerciante de Internet y la red de procesamiento. PayPal Payflow Pro es una solución de procesamiento de pagos personalizable que le da al comerciante el control sobre todos los pasos para procesar una transacción. Se requiere un certificado SSL para usar esta puerta de enlace." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:595 +msgid "Tags Only" +msgstr "Solo etiquetas" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:594 +msgid "Category Only" +msgstr "Solo Categoría" + +#: includes/admin/class-mp-shortcode-builder.php:795 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:593 +msgid "Category & Tags" +msgstr "Categoría & Etiquetas" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:591 +msgid "Relate Products By" +msgstr "Relacionar productos por" + +#: includes/admin/class-mp-shortcode-builder.php:1008 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:455 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:751 +msgid "Right" +msgstr "Derecha" + +#: includes/admin/class-mp-shortcode-builder.php:1007 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:454 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:749 +msgid "Left" +msgstr "Izquierda" + +#: includes/admin/class-mp-shortcode-builder.php:1009 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:750 +msgid "Center" +msgstr "Centro" + +#: marketpress.php:273 +msgid "Orders from your e-commerce store." +msgstr "Los pedidos de su tienda de comercio electrónico." + +#: marketpress.php:231 +msgid "Products for your e-commerce store." +msgstr "Productos para tu tienda de comercio electrónico." + +#: marketpress.php:222 +msgid "Edit Product" +msgstr "Editar producto" + +#. Description of the plugin/theme +msgid "The complete WordPress ecommerce plugin - works perfectly with BuddyPress and Multisite too to create a social marketplace, where you can take a percentage! Activate the plugin, adjust your settings then add some products to your store." +msgstr "El complemento de comercio electrónico de WordPress completo: funciona perfectamente con BuddyPress y Multisite también para crear un mercado social, ¡donde puedes tomar un porcentaje! Active el complemento, ajuste su configuración y luego agregue algunos productos a su tienda." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:272 +msgid "Beside" +msgstr "Junto a" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:271 +msgid "Above" +msgstr "Encima" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:268 +msgid "Pin Count" +msgstr "Recuento de pin" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:261 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:287 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:318 +msgid "All View" +msgstr "Todo visto" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:260 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:286 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:317 +msgid "Single View" +msgstr "Vista única" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:259 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:285 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:316 +msgid "Off" +msgstr "Apagado" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:578 +msgid "Related Product Limit" +msgstr "Límite de productos relacionados" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:681 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1201 +msgid "Applies To" +msgstr "Se aplica a" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:685 +msgid "All Products" +msgstr "Todos los productos" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:487 +msgid "The label shown for the tax line item in the cart. Taxes, VAT, GST, etc." +msgstr "La etiqueta que se muestra para el artículo de la línea de impuestos en el carrito. Impuestos, IVA, GST, etc." + +#: includes/admin/class-mp-setup-wizard.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:485 +msgid "Tax Label" +msgstr "Etiqueta de impuestos" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:81 +msgid "Apply" +msgstr "Aplicar" + +#: includes/admin/class-mp-admin.php:192 +msgid "MarketPress Instructions" +msgstr "Instrucciones de MarketPress" + +#: includes/admin/class-mp-products-admin.php:1954 +#: includes/admin/class-mp-products-admin.php:2194 includes/common/data.php:62 +#: includes/common/helpers.php:150 +msgid "Taxes" +msgstr "Impuestos" + +#: includes/admin/class-mp-products-admin.php:1417 +#: includes/common/class-mp-product.php:2900 +msgid "Related Products" +msgstr "Productos relacionados" + +#: includes/common/shipping-modules/mp-usps.php:282 +#: includes/common/shipping-modules/mp-usps.php:316 +msgid "@ Max" +msgstr "@ Max" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "(3-5 days)" +msgstr "(3-5 días)" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "Priority Mail Express International Padded Flat Rate Envelope" +msgstr "Sobre de tarifa plana internacional urgente de Priority Mail Express" + +#: includes/common/shipping-modules/mp-usps.php:92 +msgid "Priority Mail Padded Flat Rate Envelope" +msgstr "Sobre de tarifa fija Priority Mail Padded de correo prioritario" + +#: includes/common/shipping-modules/mp-pickup.php:171 +#: includes/common/shipping-modules/mp-pickup.php:247 +msgid "In Store" +msgstr "En tienda" + +#: includes/common/shipping-modules/mp-pickup.php:159 +msgid "Pickup Fee" +msgstr "Tarifa de recogida" + +#: includes/common/shipping-modules/mp-pickup.php:141 +msgid "This option allows your customers to indicate that they will pick-up their order at your place of business." +msgstr "Esta opción permite a sus clientes indicar que recogerán su pedido en su lugar de negocios." + +#: includes/common/shipping-modules/mp-pickup.php:60 +#: includes/common/shipping-modules/mp-pickup.php:76 +#: includes/common/shipping-modules/mp-pickup.php:176 +msgid "Pickup Instructions" +msgstr "Instrucciones de recogida" + +#: includes/common/shipping-modules/mp-pickup.php:24 +#: includes/common/shipping-modules/mp-pickup.php:254 +msgid "Pickup" +msgstr "Recoger" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping - 0.00" +msgstr "Envío gratuito - 0.00" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:256 +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:440 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping" +msgstr "Envío gratuito " + +#: includes/common/shipping-modules/mp-fedex.php:309 +msgid "Your Packaging" +msgstr "Su Paquete" + +#: includes/common/shipping-modules/mp-fedex.php:301 +msgid "Station" +msgstr "Estación" + +#: includes/common/shipping-modules/mp-fedex.php:300 +msgid "Request Courier" +msgstr "Solicitud de mensajería" + +#: includes/common/shipping-modules/mp-fedex.php:299 +msgid "Drop Box" +msgstr "Drop Box" + +#: includes/common/shipping-modules/mp-fedex.php:298 +msgid "Business Service Center" +msgstr "Centro de servicios de negocios" + +#: includes/common/shipping-modules/mp-fedex.php:297 +msgid "Regular Pickup" +msgstr "Recogida regular" + +#: includes/common/payment-gateways/wepay.php:135 +#: includes/common/shipping-modules/mp-fedex.php:264 +msgid "Production" +msgstr "Producción" + +#: includes/common/payment-gateways/simplify.php:207 +msgid "Simplify Commerce by MasterCard" +msgstr "Simplify Commerce by MasterCard" + +#: includes/common/payment-gateways/simplify.php:104 +msgid "When in live mode, although it is not required, Simplify recommends you have an SSL certificate." +msgstr "Cuando está en modo directo, aunque no es obligatorio, Simplify recomienda que tenga un certificado SSL." + +#: includes/common/payment-gateways/paymill.php:183 +#: includes/common/payment-gateways/simplify.php:87 +msgid "Public Key" +msgstr "Public Key" + +#: includes/common/payment-gateways/paymill.php:175 +#: includes/common/payment-gateways/simplify.php:94 +msgid "Private Key" +msgstr "Llave privada" + +#: includes/common/payment-gateways/simplify.php:71 +msgid "Simplify helps merchants to accept online payments from Mastercard, Visa, American Express, Discover, JCB, and Diners Club cards. It's that simple. We offer a merchant account and payment gateway in a single, secure package so you can concentrate on what really matters to your business. Only supports USD currently." +msgstr "Simplify ayuda a los comerciantes a aceptar pagos en línea de las tarjetas Mastercard, Visa, American Express, Discover, JCB y Diners Club. Es así de simple. Ofrecemos una cuenta de comerciante y una pasarela de pago en un solo paquete seguro para que pueda concentrarse en lo que realmente importa para su negocio. Solo soporta USD actualmente." + +#: includes/common/payment-gateways/wepay.php:267 +msgid "%1$s" +msgstr "%1$s" + +#: includes/common/payment-gateways/simplify.php:151 +msgid "The Simplify Token was not generated correctly. Please go back and try again." +msgstr "El token de Simplify no se generó correctamente. Por favor, regrese y vuelva a intentarlo." + +#: includes/common/payment-gateways/simplify.php:18 +msgid "Simplify" +msgstr "Simplify" + +#: includes/common/payment-gateways/pin.php:255 +msgid "%1$s Card %2$s" +msgstr "%1$s Tarjeta %2$s" + +#: includes/common/payment-gateways/pin.php:211 +msgid "The PIN Token was not generated correctly. Please go back and try again." +msgstr "El token de PIN no se generó correctamente. Por favor, regrese y vuelva a intentarlo." + +#: includes/common/payment-gateways/pin.php:187 +msgid "Selecting a currency other than currency supported by PIN may cause problems at checkout." +msgstr "La selección de una moneda diferente a la moneda admitida por PIN puede causar problemas al momento de pagar." + +#: includes/common/payment-gateways/pin.php:164 +msgid "You must login to PIN to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "Debes iniciar sesión en PIN para obtener sus credenciales API. Puede ingresar sus claves de prueba, luego las vivas cuando esté listo." + +#: includes/common/payment-gateways/pin.php:158 +msgid "When in live mode PIN recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "Cuando esté en modo en vivo, PIN recomienda que tenga una configuración de certificado SSL para el sitio donde se mostrará el formulario de pago." + +#: includes/common/payment-gateways/pin.php:45 +#: includes/common/payment-gateways/pin.php:286 +msgid "PIN" +msgstr "PIN" + +#: includes/common/payment-gateways/paypal-express.php:830 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer" +msgstr "Un pago se revirtió debido a un contra cargo u otro tipo de reversión. Los fondos se eliminaron del saldo de su cuenta y se devolvieron al comprador" + +#: includes/common/payment-gateways/paypal-chained-payments.php:534 +#: includes/common/payment-gateways/paypal-express.php:865 +msgid "The payment is pending" +msgstr "El pago esta pendiente" + +#: includes/common/payment-gateways/paymill.php:235 +msgid "The Paymill Token was not generated correctly. Please go back and try again." +msgstr "El token de Paymill no se generó correctamente. Por favor, regrese y vuelva a intentarlo." + +#: includes/common/payment-gateways/paymill.php:169 +msgid "You must login to Paymill to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "Debes iniciar sesión en Paymill para obtener sus credenciales API. Puede ingresar sus claves de prueba, luego las vivas cuando esté listo." + +#: includes/common/payment-gateways/paymill.php:45 +#: includes/common/payment-gateways/paymill.php:308 +msgid "Paymill" +msgstr "Paymill" + +#: includes/common/payment-gateways/paymill.php:90 +msgid "Invalid cardholder" +msgstr "Titular de tarjeta inválido" + +#: includes/common/payment-gateways/paymill.php:89 +msgid "Card is no longer valid or has expired" +msgstr "La tarjeta ya no es válida o ha caducado." + +#: includes/common/payment-gateways/paymill.php:88 +msgid "Please enter a valid Card CVC" +msgstr "Por favor ingrese una tarjeta válida de CVC" + +#: includes/common/payment-gateways/paymill.php:87 +msgid "Please choose a valid Expiration Date." +msgstr "Por favor, elija una fecha de caducidad válida." + +#: includes/common/payment-gateways/skrill.php:99 +#: includes/common/payment-gateways/skrill.php:100 +msgid "Skrill (Moneybookers)" +msgstr "Skrill (Moneybookers)" + +#: includes/common/shipping-modules/mp-weight-rate.php:24 +#: includes/common/shipping-modules/mp-weight-rate.php:292 +msgid "Weight Rate" +msgstr "Tasa de peso" + +#: includes/common/shipping-modules/mp-usps.php:303 +msgid "USPS Offered International Services" +msgstr "USPS Servicios internacionales ofrecidos" + +#: includes/common/shipping-modules/mp-usps.php:270 +msgid "USPS Offered Domestic Services" +msgstr "USPS Servicios domésticos ofrecidos" + +#: includes/common/shipping-modules/mp-usps.php:264 +msgid "USPS Settings" +msgstr "USPS Ajustes" + +#: includes/common/shipping-modules/mp-usps.php:145 +msgid "Flat Rate Large" +msgstr "Tarifa plana grande" + +#: includes/common/shipping-modules/mp-usps.php:140 +msgid "Flat Rate Medium 2" +msgstr "Tarifa plana mediana 2" + +#: includes/common/shipping-modules/mp-usps.php:135 +msgid "Flat Rate Medium 1" +msgstr "Tarifa plana mediana 1" + +#: includes/common/shipping-modules/mp-usps.php:130 +msgid "Flat Rate Small" +msgstr "Tarifa plana pequeña" + +#: includes/common/shipping-modules/mp-usps.php:118 +msgid "First Class International Parcel" +msgstr "Paquete Internacional de Primera Clase" + +#: includes/common/shipping-modules/mp-usps.php:114 +msgid "Priority Mail International Small Flat Rate Boxes" +msgstr "Priority Mail International Cajas pequeñas de tarifa plana" + +#: includes/common/shipping-modules/mp-usps.php:112 +msgid "Priority Mail International Medium Flat Rate Boxes" +msgstr "Priority Mail International Cajas de tarifa plana mediana" + +#: includes/common/shipping-modules/mp-usps.php:110 +msgid "Priority Mail International Large Flat Rate Boxes" +msgstr "Priority Mail International Cajas grandes de tarifa plana" + +#: includes/common/shipping-modules/mp-usps.php:108 +msgid "Priority Mail International" +msgstr "Priority Mail International" + +#: includes/common/shipping-modules/mp-usps.php:106 +msgid "Express Mail International Flat Rate Boxes" +msgstr "Express Mail International Cajas de tarifa plana" + +#: includes/common/shipping-modules/mp-usps.php:104 +msgid "Express Mail International" +msgstr "Express Mail International" + +#: includes/common/shipping-modules/mp-usps.php:98 +msgid "Library Mail" +msgstr "Library Mail" + +#: includes/common/shipping-modules/mp-usps.php:96 +msgid "Media Mail" +msgstr "Media Mail" + +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "First-Class Mail Parcel" +msgstr "First-Class Mail Parcel" + +#: includes/common/shipping-modules/mp-usps.php:90 +msgid "Priority Mail Small Flat Rate Box" +msgstr "Priority Mail Caja pequeña de tarifa plana" + +#: includes/common/shipping-modules/mp-usps.php:88 +msgid "Priority Mail Medium Flat Rate Box" +msgstr "Priority Mail Caja de tarifa plana mediana" + +#: includes/common/shipping-modules/mp-usps.php:86 +#: includes/common/shipping-modules/mp-usps.php:88 +#: includes/common/shipping-modules/mp-usps.php:90 +#: includes/common/shipping-modules/mp-usps.php:92 +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "(2-4 days)" +msgstr "(2-4 dias)" + +#: includes/common/shipping-modules/mp-usps.php:86 +msgid "Priority Mail Large Flat Rate Box" +msgstr "Priority Mail Caja grande de tarifa plana" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "(2-4) days" +msgstr "(2-4) dias" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "Priority Mail" +msgstr "Priority Mail" + +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "Express Mail Sunday/Holiday Delivery Flat Rate Boxes" +msgstr "Cajas de entrega fija de Express Mail de domingo / día festivo" + +#: includes/common/shipping-modules/mp-usps.php:80 +msgid "Express Mail Flat Rate Boxes Hold For Pickup" +msgstr "Express Mail Retención de cajas de tarifa plana para recoger" + +#: includes/common/shipping-modules/mp-usps.php:78 +msgid "Express Mail Flat Rate Boxes" +msgstr "Express Mail Cajas de tarifa plana" + +#: includes/common/shipping-modules/mp-usps.php:76 +msgid "Express Mail Sunday/Holiday Delivery" +msgstr "Express Mail Domingo / Entrega de vacaciones" + +#: includes/common/shipping-modules/mp-usps.php:74 +msgid "Express Mail Hold For Pickup" +msgstr "Express Mail Retener para recoger" + +#: includes/common/shipping-modules/mp-usps.php:72 +#: includes/common/shipping-modules/mp-usps.php:74 +#: includes/common/shipping-modules/mp-usps.php:76 +#: includes/common/shipping-modules/mp-usps.php:78 +#: includes/common/shipping-modules/mp-usps.php:80 +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "(1-2 days)" +msgstr "(1-2 días)" + +#: includes/common/shipping-modules/mp-usps.php:72 +msgid "Express Mail" +msgstr "Express Mail" + +#: includes/common/shipping-modules/mp-usps.php:67 +#: includes/common/shipping-modules/mp-usps.php:902 +msgid "USPS" +msgstr "USPS" + +#: includes/common/shipping-modules/mp-ups.php:534 +msgid "UPS (beta)" +msgstr "UPS (beta)" + +#: includes/common/shipping-modules/mp-ups.php:166 +msgid "Required if using negotiated rates" +msgstr "Requerido si se utilizan tarifas negociadas." + +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "Saver" +msgstr "Ahorrador" + +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "Worldwide Express Plus" +msgstr "Worldwide Express Plus" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "(Scheduled)" +msgstr "(Programado)" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "Standard" +msgstr "Estándar" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "(2-5 Days)" +msgstr "(2-5 Días)" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "Worldwide Expedited" +msgstr "En todo el mundo acelerado" + +#: includes/common/shipping-modules/mp-ups.php:54 +msgid "Worldwide Express" +msgstr "Expreso mundial" + +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "2nd Day Air AM" +msgstr "2do dia de aire AM" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "(1 Days)" +msgstr "(1 día)" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "Next Day Air Early AM" +msgstr "Mañana siguiente" + +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "Next Day Air Saver" +msgstr "Ahorro de aire al día siguiente" + +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "3 Day Select" +msgstr "Selección de 3 días" + +#: includes/common/shipping-modules/mp-ups.php:49 +msgid "Ground" +msgstr "Suelo" + +#: includes/common/shipping-modules/mp-ups.php:48 +msgid "2nd Day Air" +msgstr "2do dia aire" + +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "Next Day Air" +msgstr "Dia siguiente aire" + +#: includes/admin/class-mp-orders-admin.php:475 +#: includes/common/shipping-modules/mp-ups.php:43 +msgid "UPS" +msgstr "UPS" + +#: includes/common/shipping-modules/mp-table-rate.php:27 +#: includes/common/shipping-modules/mp-table-rate.php:318 +msgid "Table Rate" +msgstr "Tabla de tarifas" + +#: includes/common/shipping-modules/mp-table-quantity.php:71 +#: includes/common/shipping-modules/mp-table-quantity.php:77 +msgid "Shipping Cost: " +msgstr "Costo de envío:" + +#: includes/common/shipping-modules/mp-table-quantity.php:70 +#: includes/common/shipping-modules/mp-table-quantity.php:76 +msgid "If quantity is greater than:" +msgstr "Si la cantidad es mayor que:" + +#: includes/common/shipping-modules/mp-table-quantity.php:66 +msgid "Each band must be a higher price than the one above it." +msgstr "Cada banda debe ser un precio más alto que el de arriba." + +#: includes/common/shipping-modules/mp-table-quantity.php:56 +msgid "Number of Bands:" +msgstr "Número de bandas:" + +#: includes/common/shipping-modules/mp-table-quantity.php:53 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Each layer must be a higher quantity than the previous." +msgstr "Asegúrese de ingresar un precio de envío para cada opción o esos clientes pueden obtener el envío gratis. Cada capa debe ser una cantidad mayor que la anterior." + +#: includes/common/shipping-modules/mp-table-quantity.php:51 +msgid "Table Quantity Settings" +msgstr "Ajustes tabla de cantidades" + +#: includes/common/shipping-modules/mp-table-quantity.php:31 +msgid "Table Quantity" +msgstr "Tabla de cantidades " + +#: includes/common/shipping-modules/mp-flat-rate.php:135 +#: includes/common/shipping-modules/mp-table-rate.php:174 +#: includes/common/shipping-modules/mp-weight-rate.php:189 +msgid "European Union" +msgstr "Unión Europea" + +#: includes/common/shipping-modules/mp-flat-rate.php:123 +#: includes/common/shipping-modules/mp-table-rate.php:162 +#: includes/common/shipping-modules/mp-weight-rate.php:177 +msgid "United States" +msgstr "Estados Unidos" + +#: includes/common/shipping-modules/mp-flat-rate.php:111 +#: includes/common/shipping-modules/mp-table-rate.php:151 +#: includes/common/shipping-modules/mp-weight-rate.php:166 +msgid "In Country" +msgstr "En el pais" + +#: includes/common/shipping-modules/mp-flat-rate.php:146 +#: includes/common/shipping-modules/mp-table-rate.php:186 +#: includes/common/shipping-modules/mp-weight-rate.php:201 +msgid "International" +msgstr "Internacional" + +#: includes/common/shipping-modules/mp-flat-rate.php:101 +#: includes/common/shipping-modules/mp-table-rate.php:141 +#: includes/common/shipping-modules/mp-weight-rate.php:156 +msgid "Canada" +msgstr "Canadá" + +#: includes/common/shipping-modules/mp-flat-rate.php:92 +#: includes/common/shipping-modules/mp-table-rate.php:132 +#: includes/common/shipping-modules/mp-weight-rate.php:147 +msgid "Hawaii and Alaska" +msgstr "Hawai y Alaska" + +#: includes/common/shipping-modules/mp-flat-rate.php:83 +#: includes/common/shipping-modules/mp-table-rate.php:123 +#: includes/common/shipping-modules/mp-weight-rate.php:138 +msgid "Lower 48 States" +msgstr "Los 48 estados" + +#: includes/common/shipping-modules/mp-flat-rate.php:64 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping." +msgstr "Asegúrese de ingresar un precio de envío para cada opción o esos clientes pueden obtener el envío gratis." + +#: includes/common/shipping-modules/mp-flat-rate.php:25 +#: includes/common/shipping-modules/mp-flat-rate.php:223 +msgid "Flat Rate" +msgstr "Tarifa plana" + +#: includes/common/shipping-modules/mp-fedex.php:761 +msgid "FedEx (beta)" +msgstr "FedEx (beta)" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Centimeters" +msgstr "Centimetros" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Inches" +msgstr "Pulgadas" + +#: includes/admin/class-mp-products-admin.php:1676 +#: includes/admin/class-mp-setup-wizard.php:547 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:166 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +msgid "Kilograms" +msgstr "Kilogramos" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:103 +msgid " %1$s - %2$s" +msgstr " %1$s - %2$s" + +#: includes/common/shipping-modules/mp-usps.php:358 +msgid "Max Weight per Box" +msgstr "Peso máximo por caja" + +#: includes/common/shipping-modules/mp-usps.php:356 +msgid "Box Dimensions" +msgstr "Dimensiones de la caja" + +#: includes/common/shipping-modules/mp-usps.php:354 +msgid "Box Name" +msgstr "Nombre de la caja" + +#: includes/common/shipping-modules/mp-usps.php:344 +msgid "Total weight selects the box size used for calculating Shipping costs." +msgstr "El peso total selecciona el tamaño de la caja utilizada para calcular los costos de envío." + +#: includes/common/shipping-modules/mp-usps.php:343 +msgid "For each box defined enter the maximum weight it can contain." +msgstr "Para cada casilla definida ingrese el peso máximo que puede contener." + +#: includes/common/shipping-modules/mp-usps.php:341 +msgid "Enter your standard box sizes as LengthxWidthxHeight" +msgstr "Introduzca sus tamaños de caja estándar como Longitud x Ancho x Altura" + +#: includes/common/shipping-modules/mp-fedex.php:386 +#: includes/common/shipping-modules/mp-ups.php:193 +#: includes/common/shipping-modules/mp-usps.php:234 +#: includes/common/shipping-modules/mp-usps.php:338 +msgid "Standard Boxes and Weight Limits" +msgstr "Cajas estándar y límites de peso" + +#: includes/common/shipping-modules/mp-usps.php:328 +msgid "Handling Charge per Interntional Shipment" +msgstr "Gastos de tramitación por envío internacional" + +#: includes/common/shipping-modules/mp-usps.php:294 +msgid "Handling Charge per Domestic Shipment " +msgstr "Gastos de manipulación por envío nacional" + +#: includes/common/shipping-modules/mp-fedex.php:388 +#: includes/common/shipping-modules/mp-ups.php:196 +#: includes/common/shipping-modules/mp-usps.php:237 +msgid "Add Box" +msgstr "Añadir caja" + +#: includes/common/shipping-modules/mp-fedex.php:63 +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "(Next Day)" +msgstr "(Día siguiente)" + +#: includes/common/shipping-modules/mp-fedex.php:63 +msgid "Europe First International Priority" +msgstr "Primera prioridad internacional de Europa" + +#: includes/common/shipping-modules/mp-fedex.php:62 +msgid "International Priority" +msgstr "Prioridad internacional" + +#: includes/common/shipping-modules/mp-fedex.php:61 +#: includes/common/shipping-modules/mp-fedex.php:62 +#: includes/common/shipping-modules/mp-ups.php:54 +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "(1-3 Days)" +msgstr "(1-3 días)" + +#: includes/common/shipping-modules/mp-fedex.php:61 +msgid "International First" +msgstr "Internacional primero" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "(5 Days)" +msgstr "(5 dias)" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "International Economy" +msgstr "Economia internacional" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "(2-7 Days)" +msgstr "(2-7 Días)" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "Smart Post" +msgstr "Smart Post" + +#: includes/common/shipping-modules/mp-fedex.php:55 +#: includes/common/shipping-modules/mp-ups.php:49 +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "(1-5 Days)" +msgstr "(1-5 días)" + +#: includes/common/shipping-modules/mp-fedex.php:55 +msgid "Ground Home Delivery" +msgstr "Entrega a domicilio por tierra" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "(1-7 Days)" +msgstr "(1-7 Días)" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "Fedex Ground" +msgstr "Fedex por tierra" + +#: includes/common/shipping-modules/mp-fedex.php:53 +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "(3 Days)" +msgstr "(3 días)" + +#: includes/common/shipping-modules/mp-fedex.php:53 +msgid "Fedex Express Saver" +msgstr "Fedex Express Ahorrador" + +#: includes/common/shipping-modules/mp-fedex.php:52 +#: includes/common/shipping-modules/mp-ups.php:48 +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "(2 Days)" +msgstr "(2 días)" + +#: includes/common/shipping-modules/mp-fedex.php:52 +msgid "Fedex 2 Day" +msgstr "Fedex 2 Dias" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "(2 Days am)" +msgstr "(2 días am)" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "Fedex 2 Day AM" +msgstr "Fedex 2 días AM" + +#: includes/common/shipping-modules/mp-fedex.php:50 +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "(1 Day)" +msgstr "(1 día)" + +#: includes/common/shipping-modules/mp-fedex.php:50 +msgid "Standard Overnight" +msgstr "Estándar durante la noche" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "(1 Day am )" +msgstr "(1 día am)" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "Priority Overnight" +msgstr "Prioridad durante la noche" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "(1 Day am)" +msgstr "(1 día am)" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "First Overnight" +msgstr "Primera Durante la noche" + +#: includes/admin/class-mp-orders-admin.php:476 +#: includes/common/shipping-modules/mp-fedex.php:31 +msgid "FedEx" +msgstr "FedEx" + +#: includes/common/payment-gateways/paymill.php:270 +#: includes/common/payment-gateways/simplify.php:179 +#: includes/common/payment-gateways/stripe.php:365 +msgid "%1$s Card ending in %2$s - Expires %3$s" +msgstr "%1$s Tarjeta terminando en %2$s -Vence %3$s" + +#: includes/common/payment-gateways/paymill.php:259 +#: includes/common/payment-gateways/pin.php:238 +#: includes/common/payment-gateways/simplify.php:171 +msgid "%s Store Purchase - Order ID: %s, Email: %s" +msgstr "%s Compra en tienda - ID de pedido: %s, Email: %s" + +#: includes/common/payment-gateways/stripe.php:266 +msgid "You must login to Stripe to get your API credentials. You can enter your test credentials, then live ones when ready." +msgstr "Debes iniciar sesión en Stripe to get your API credentials. Puede ingresar sus credenciales de prueba, luego las que están en vivo cuando esté listo." + +#: includes/common/payment-gateways/stripe.php:261 +msgid "When in live mode Stripe recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "Cuando está en modo directo, Stripe recomienda que tenga una configuración de certificado SSL para el sitio donde se mostrará el formulario de pago." + +#: includes/common/payment-gateways/stripe.php:311 +msgid "The Stripe Token was not generated correctly. Please go back and try again." +msgstr "El token de Stripe no se generó correctamente. Por favor, regrese y vuelva a intentarlo." + +#: includes/common/payment-gateways/class-mp-gateway-api.php:263 +#: includes/common/payment-gateways/paymill.php:122 +#: includes/common/payment-gateways/stripe.php:222 +msgid "Card Number" +msgstr "Número de tarjeta" + +#: includes/common/payment-gateways/paymill.php:86 +msgid "Please enter a valid Credit Card Number." +msgstr "Por favor, introduzca un número de tarjeta de crédito válida." + +#: includes/common/payment-gateways/stripe.php:45 +#: includes/common/payment-gateways/stripe.php:433 +msgid "Stripe" +msgstr "Stripe" + +#: includes/common/payment-gateways/paypal-express.php:750 +msgid "Sets the background color for the payment page. By default, the color is white." +msgstr "Establece el color de fondo para la página de pago. Por defecto, el color es blanco." + +#: includes/common/payment-gateways/paypal-express.php:745 +msgid "Sets the background color for the header of the payment page. By default, the color is white." +msgstr "Establece el color de fondo para el encabezado de la página de pago. Por defecto, el color es blanco." + +#: includes/common/payment-gateways/paypal-express.php:740 +msgid "Sets the border color around the header of the payment page. The border is a 2-pixel perimeter around the header space, which is 750 pixels wide by 90 pixels high. By default, the color is black." +msgstr "Establece el color del borde alrededor del encabezado de la página de pago. El borde es un perímetro de 2 píxeles alrededor del espacio del encabezado, que tiene 750 píxeles de ancho por 90 píxeles de alto. Por defecto, el color es negro." + +#: includes/common/payment-gateways/paypal-express.php:735 +msgid "URL for an image you want to appear at the top left of the payment page. The image has a maximum size of 750 pixels wide by 90 pixels high. PayPal recommends that you provide an image that is stored on a secure (https) server. If you do not specify an image, the business name is displayed." +msgstr "URL de la imagen que desea que aparezca en la parte superior izquierda de la página de pago. La imagen tiene un tamaño máximo de 750 píxeles de ancho por 90 píxeles de alto. PayPal recomienda que proporcione una imagen que esté almacenada en un servidor seguro (https). Si no especifica una imagen, se muestra el nombre de la empresa." + +#: includes/common/payment-gateways/paypal-express.php:857 +#: includes/common/payment-gateways/paypal-express.php:1131 +msgid "The payment is pending because it is part of an order that has been authorized but not settled." +msgstr "El pago está pendiente porque es parte de un pedido que se ha autorizado pero no se ha resuelto." + +#: includes/common/payment-gateways/paypal-express.php:853 +#: includes/common/payment-gateways/paypal-express.php:1127 +msgid "The payment is pending because it has been authorized but not settled. You must capture the funds first." +msgstr "El pago está pendiente porque ha sido autorizado pero no liquidado. Debes capturar los fondos primero." + +#: includes/common/payment-gateways/paypal-express.php:847 +#: includes/common/payment-gateways/paypal-express.php:1120 +msgid "You denied the payment when it was marked as pending." +msgstr "Usted negó el pago cuando estaba marcado como pendiente." + +#: includes/common/payment-gateways/paypal-express.php:837 +#: includes/common/payment-gateways/paypal-express.php:1108 +msgid "A reversal has occurred on this transaction due to an unknown reason." +msgstr "Se ha producido una reversión en esta transacción debido a una razón desconocida." + +#: includes/common/payment-gateways/paypal-express.php:836 +#: includes/common/payment-gateways/paypal-express.php:1107 +msgid "A reversal has occurred on this transaction because you have given the customer a refund." +msgstr "Se ha producido una anulación en esta transacción porque le ha dado un reembolso al cliente." + +#: includes/common/payment-gateways/paypal-express.php:835 +#: includes/common/payment-gateways/paypal-express.php:1106 +msgid "A reversal has occurred on this transaction due to a complaint about the transaction from your customer." +msgstr "Se ha producido una anulación en esta transacción debido a una queja sobre la transacción de su cliente." + +#: includes/common/payment-gateways/paypal-express.php:834 +#: includes/common/payment-gateways/paypal-express.php:1105 +msgid "A reversal has occurred on this transaction due to your customer triggering a money-back guarantee." +msgstr "Se ha producido una reversión en esta transacción debido a que su cliente activó una garantía de devolución de dinero." + +#: includes/common/payment-gateways/paypal-express.php:833 +#: includes/common/payment-gateways/paypal-express.php:1104 +msgid "A reversal has occurred on this transaction due to a chargeback by your customer." +msgstr "Se ha producido una anulación en esta transacción debido a una devolución de cargo por parte de su cliente." + +#: includes/common/payment-gateways/paypal-express.php:1101 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer:" +msgstr "Un pago se revirtió debido a un contracargo u otro tipo de reversión. Los fondos se eliminaron del saldo de su cuenta y se devolvieron al comprador:" + +#: includes/common/payment-gateways/paypal-express.php:826 +#: includes/common/payment-gateways/paypal-express.php:1097 +msgid "A payment has been accepted." +msgstr "Se ha aceptado un pago." + +#: includes/common/payment-gateways/paypal-express.php:818 +#: includes/common/payment-gateways/paypal-express.php:1087 +msgid "The transaction has not terminated, e.g. an authorization may be awaiting completion." +msgstr "La transacción no ha terminado, por ejemplo. una autorización puede estar pendiente de finalización." + +#: includes/common/payment-gateways/payfast.php:531 +#: includes/common/payment-gateways/paypal-express.php:810 +#: includes/common/payment-gateways/paypal-express.php:1077 +msgid "The payment has failed. This happens only if the payment was made from your customer's bank account." +msgstr "El pago ha fallado. Esto sucede solo si el pago se realizó desde la cuenta bancaria de su cliente." + +#: includes/common/payment-gateways/paypal-express.php:806 +#: includes/common/payment-gateways/paypal-express.php:1072 +msgid "An authorization for this transaction has been voided." +msgstr "Una autorización para esta transacción ha sido anulada." + +#: includes/common/payment-gateways/paypal-express.php:802 +#: includes/common/payment-gateways/paypal-express.php:1067 +msgid "The authorization period for this payment has been reached." +msgstr "Se ha alcanzado el plazo de autorización para este pago." + +#: includes/common/payment-gateways/paypal-express.php:798 +#: includes/common/payment-gateways/paypal-express.php:1062 +msgid "A reversal has been canceled; for example, when you win a dispute and the funds for the reversal have been returned to you." +msgstr "Una anulación ha sido cancelada; por ejemplo, cuando gana una disputa y los fondos para la reversión le han sido devueltos." + +#: includes/common/payment-gateways/paypal-express.php:499 +#: includes/common/payment-gateways/paypal-express.php:1163 +msgid "PayPal Express Checkout" +msgstr "PayPal Express Checkout" + +#: includes/common/payment-gateways/paypal-chained-payments.php:798 +msgid "Gateway Settings Page Message" +msgstr "Mensaje de la página de configuración de la pasarela" + +#: includes/common/payment-gateways/paypal-express.php:725 +msgid "Signature" +msgstr "Firma" + +#: includes/common/payment-gateways/eway31.php:506 +#: includes/common/payment-gateways/eway31.php:533 +#: includes/common/shipping-modules/mp-fedex.php:276 +msgid "API Password" +msgstr "Contraseña API" + +#: includes/common/payment-gateways/paypal-chained-payments.php:773 +msgid "Enter a percentage of all store sales to collect as a fee. Decimals allowed." +msgstr "Ingrese un porcentaje de todas las ventas de la tienda para cobrar como tarifa. Decimales permitidos." + +#: includes/common/payment-gateways/paypal-chained-payments.php:757 +msgid "Using PayPal Chained Payments allows you as the multisite network owner to collect a predefined fee or percentage of all sales on network MarketPress stores! This is invisible to the customers who purchase items in a store, and all PayPal fees will be charged to the store owner. To use this option you must create API credentials, and you should make all other gateways unavailable or limited above." +msgstr "El uso de Pagos en Cadena de PayPal le permite, como propietario de la red multisitio, cobrar una tarifa predefinida o un porcentaje de todas las ventas en las tiendas de la red MarketPress. Esto es invisible para los clientes que compran artículos en una tienda, y todas las tarifas de PayPal se cobrarán al propietario de la tienda. Para usar esta opción, debe crear credenciales de API y debe hacer que todas las demás puertas de enlace no estén disponibles o estén limitadas anteriormente." + +#: includes/common/payment-gateways/paypal-chained-payments.php:338 +msgid "Please be aware that we will deduct a ?% fee from the total of each transaction in addition to any fees PayPal may charge you. If for any reason you need to refund a customer for an order, please contact us with a screenshot of the refund receipt in your PayPal history as well as the Transaction ID of our fee deduction so we can issue you a refund. Thank you!" +msgstr "Tenga en cuenta que deduciremos una tarifa de ?% Del total de cada transacción además de cualquier tarifa que PayPal pueda cobrarle. Si por alguna razón necesita reembolsar a un cliente por un pedido, comuníquese con nosotros con una captura de pantalla del recibo de reembolso en su historial de PayPal, así como con el ID de transacción de nuestra deducción de tarifa para que podamos emitirle un reembolso. ¡Gracias!" + +#: includes/common/payment-gateways/paypal-chained-payments.php:698 +#: includes/common/payment-gateways/paypal-express.php:149 +msgid "There was a problem connecting to PayPal. Please try again." +msgstr "Hubo un problema al conectarse a PayPal. Inténtalo de nuevo." + +#: includes/common/payment-gateways/paypal-chained-payments.php:470 +#: includes/common/payment-gateways/paypal-express.php:1053 +msgid "There was a problem verifying the IPN string with PayPal. Please try again." +msgstr "Hubo un problema al verificar la cadena de IPN con PayPal. Inténtalo de nuevo." + +#: includes/common/payment-gateways/paypal-chained-payments.php:310 +msgid "There was a problem connecting to PayPal to check the status of your purchase. Please check the status of your order here »" +msgstr "Hubo un problema al conectarse a PayPal para verificar el estado de su compra. Consulta el estado de tu pedido aquí. »" + +#: includes/common/payment-gateways/payfast.php:539 +#: includes/common/payment-gateways/paypal-chained-payments.php:254 +#: includes/common/payment-gateways/paypal-express.php:1139 +msgid "The payment is pending." +msgstr "El pago esta pendiente." + +#: includes/common/payment-gateways/paypal-chained-payments.php:251 +#: includes/common/payment-gateways/paypal-chained-payments.php:531 +#: includes/common/payment-gateways/paypal-express.php:862 +#: includes/common/payment-gateways/paypal-express.php:1136 +msgid "The payment is pending for an unknown reason. For more information, contact PayPal customer service." +msgstr "El pago está pendiente por una razón desconocida. Para obtener más información, póngase en contacto con el servicio al cliente de PayPal." + +#: includes/common/payment-gateways/paypal-chained-payments.php:250 +#: includes/common/payment-gateways/paypal-chained-payments.php:530 +#: includes/common/payment-gateways/paypal-express.php:861 +#: includes/common/payment-gateways/paypal-express.php:1135 +msgid "The payment is pending because you are not yet verified. You must verify your account before you can accept this payment." +msgstr "El pago está pendiente porque todavía no se ha verificado. Debe verificar su cuenta antes de poder aceptar este pago." + +#: includes/common/payment-gateways/paypal-chained-payments.php:249 +#: includes/common/payment-gateways/paypal-chained-payments.php:529 +#: includes/common/payment-gateways/paypal-express.php:860 +#: includes/common/payment-gateways/paypal-express.php:1134 +msgid "The payment is pending because it was made via credit card and you must upgrade your account to Business or Premier status in order to receive the funds. It can also mean that you have reached the monthly limit for transactions on your account." +msgstr "El pago está pendiente porque se realizó con tarjeta de crédito y debe actualizar su cuenta al estado Business o Premier para recibir los fondos. También puede significar que ha alcanzado el límite mensual para transacciones en su cuenta." + +#: includes/common/payment-gateways/paypal-chained-payments.php:248 +#: includes/common/payment-gateways/paypal-chained-payments.php:528 +#: includes/common/payment-gateways/paypal-express.php:859 +#: includes/common/payment-gateways/paypal-express.php:1133 +msgid "The payment is pending because it was made to an email address that is not yet registered or confirmed." +msgstr "El pago está pendiente porque se realizó a una dirección de correo electrónico que aún no está registrada o confirmada." + +#: includes/common/payment-gateways/paypal-chained-payments.php:247 +#: includes/common/payment-gateways/paypal-chained-payments.php:527 +#: includes/common/payment-gateways/paypal-express.php:858 +#: includes/common/payment-gateways/paypal-express.php:1132 +msgid "The payment is pending while it is being reviewed by PayPal for risk." +msgstr "El pago está pendiente mientras está siendo revisado por PayPal para el riesgo." + +#: includes/common/payment-gateways/paypal-chained-payments.php:246 +#: includes/common/payment-gateways/paypal-chained-payments.php:526 +#: includes/common/payment-gateways/paypal-express.php:856 +#: includes/common/payment-gateways/paypal-express.php:1130 +msgid "You do not have a balance in the currency sent, and you do not have your Payment Receiving Preferences set to automatically convert and accept this payment. You must manually accept or deny this payment." +msgstr "No tiene un saldo en la divisa enviada y no tiene sus Preferencias de Recepción de Pago configuradas para convertir y aceptar automáticamente este pago. Debe aceptar o denegar este pago manualmente." + +#: includes/common/payment-gateways/paypal-chained-payments.php:245 +#: includes/common/payment-gateways/paypal-chained-payments.php:525 +#: includes/common/payment-gateways/paypal-express.php:855 +#: includes/common/payment-gateways/paypal-express.php:1129 +msgid "The payment is pending because you hold a non-U.S. account and do not have a withdrawal mechanism. You must manually accept or deny this payment from your Account Overview." +msgstr "El pago está pendiente porque tiene una cuenta que no es de los EE. UU. Y no tiene un mecanismo de retiro. Debe aceptar o denegar este pago manualmente desde el Resumen de su cuenta." + +#: includes/common/payment-gateways/paypal-chained-payments.php:244 +#: includes/common/payment-gateways/paypal-chained-payments.php:524 +#: includes/common/payment-gateways/paypal-express.php:854 +#: includes/common/payment-gateways/paypal-express.php:1128 +msgid "The payment is pending because it was made by an eCheck that has not yet cleared." +msgstr "El pago está pendiente porque fue realizado por un eCheck que aún no se ha realizado." + +#: includes/common/payment-gateways/paypal-chained-payments.php:243 +#: includes/common/payment-gateways/paypal-chained-payments.php:523 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences section of your Profile." +msgstr "El pago está pendiente porque su cliente no incluyó una dirección de envío confirmada y sus Preferencias de Recepción de Pago están configuradas de tal manera que desea aceptar o rechazar manualmente cada uno de estos pagos. Para cambiar sus preferencias, vaya a la sección de Preferencias de su perfil." + +#: includes/common/payment-gateways/paypal-chained-payments.php:236 +#: includes/common/payment-gateways/paypal-chained-payments.php:516 +msgid "The transaction was rejected by the receiver (you)." +msgstr "La transacción fue rechazada por el receptor (usted)." + +#: includes/common/payment-gateways/paypal-chained-payments.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:510 +#: includes/common/payment-gateways/paypal-express.php:843 +#: includes/common/payment-gateways/paypal-express.php:1115 +msgid "You refunded the payment." +msgstr "Usted devolvió el pago." + +#: includes/common/payment-gateways/paypal-chained-payments.php:224 +#: includes/common/payment-gateways/paypal-chained-payments.php:504 +msgid "The transaction is in progress." +msgstr "La transacción está en curso." + +#: includes/common/payment-gateways/paypal-chained-payments.php:212 +#: includes/common/payment-gateways/paypal-chained-payments.php:491 +#: includes/common/payment-gateways/paypal-express.php:814 +#: includes/common/payment-gateways/paypal-express.php:1082 +msgid "The payment has been partially refunded." +msgstr "El pago ha sido parcialmente reembolsado." + +#: includes/common/payment-gateways/paypal-chained-payments.php:202 +#: includes/common/payment-gateways/paypal-chained-payments.php:481 +msgid "PayPal balance, Credit Card, or Instant Transfer" +msgstr "Saldo de PayPal, tarjeta de crédito, o transferencia instantánea" + +#: includes/common/payment-gateways/paypal-chained-payments.php:177 +msgid "There was a problem connecting to PayPal to setup your purchase. Please try again." +msgstr "Hubo un problema al conectarse a PayPal para configurar su compra. Inténtalo de nuevo." + +#: includes/common/payment-gateways/paypal-chained-payments.php:122 +msgid "Your PayPal transaction has been canceled." +msgstr "Su transacción de PayPal ha sido cancelada." + +#: includes/common/payment-gateways/paypal-chained-payments.php:50 +#: includes/common/payment-gateways/paypal-chained-payments.php:53 +#: includes/common/payment-gateways/paypal-chained-payments.php:732 +#: includes/common/payment-gateways/paypal-express.php:500 +#: includes/common/payment-gateways/paypal-express.php:938 +msgid "PayPal" +msgstr "PayPal" + +#: includes/common/payment-gateways/paypal-chained-payments.php:48 +#: includes/common/payment-gateways/paypal-chained-payments.php:730 +#: includes/common/payment-gateways/paypal-chained-payments.php:756 +#: includes/common/payment-gateways/paypal-chained-payments.php:873 +msgid "PayPal Chained Payments" +msgstr "Pagos encadenados de PayPal" + +#: includes/common/payment-gateways/paypal-payflow.php:59 +#: includes/common/payment-gateways/paypal-payflow.php:467 +msgid "PayPal Payflow Pro" +msgstr "PayPal Payflow Pro" + +#: includes/common/payment-gateways/skrill.php:378 +msgid "Chargeback - A payment was reversed due to a chargeback. The funds have been removed from your account balance and returned to the buyer." +msgstr "Devolución de cargo: un pago se revirtió debido a una devolución de cargo. Los fondos se eliminaron del saldo de su cuenta y se devolvieron al comprador." + +#: includes/common/payment-gateways/skrill.php:372 +msgid "Failed - The Credit Card or Direct Debit transaction was declined." +msgstr "Fallido: la transacción con tarjeta de crédito o débito directo se rechazó." + +#: includes/common/payment-gateways/_payway.php:354 +#: includes/common/payment-gateways/skrill.php:366 +msgid "Cancelled - The payment was cancelled manually by the sender in their online account history or was auto-cancelled after 14 days pending." +msgstr "Cancelado: el pago fue cancelado manualmente por el remitente en su historial de cuenta en línea o se canceló automáticamente después de 14 días de espera." + +#: includes/common/payment-gateways/skrill.php:360 +msgid "Pending - The payment is pending. It can take 2-3 days for bank transfers to complete." +msgstr "Pendiente - El pago está pendiente. Las transferencias bancarias pueden tardar entre 2 y 3 días en completarse." + +#: includes/common/payment-gateways/_payway.php:349 +#: includes/common/payment-gateways/skrill.php:354 +msgid "Processed - The payment has been completed, and the funds have been added successfully to your Moneybookers account balance." +msgstr "Procesado: el pago se completó y los fondos se agregaron con éxito al saldo de su cuenta de Moneybookers." + +#: includes/common/payment-gateways/skrill.php:189 +msgid "Shown to the customer on the confirmation screen - the end step of the process - a note, confirmation number, or any other message. Line breaks <br> may be used for longer messages." +msgstr "Se muestra al cliente en la pantalla de confirmación, el último paso del proceso, una nota, el número de confirmación o cualquier otro mensaje. Saltos de línea <br> puede ser utilizado para mensajes más largos." + +#: includes/common/payment-gateways/skrill.php:188 +msgid "Confirmation Note (optional)" +msgstr "Nota de confirmación (opcional)" + +#: includes/common/payment-gateways/skrill.php:183 +msgid "The URL of the logo which you would like to appear at the top of the payment form. The logo must be accessible via HTTPS otherwise it will not be shown. For best integration results we recommend that you use a logo with dimensions up to 200px in width and 50px in height." +msgstr "La URL del logotipo que desea que aparezca en la parte superior del formulario de pago. El logotipo debe ser accesible a través de HTTPS, de lo contrario no se mostrará. Para obtener los mejores resultados de integración, le recomendamos que utilice un logotipo con dimensiones de hasta 200 px de ancho y 50 px de alto." + +#: includes/common/payment-gateways/skrill.php:182 +msgid "Logo Image (optional)" +msgstr "Imagen de logotipo (opcional)" + +#: includes/common/payment-gateways/skrill.php:177 +msgid "The name of this store, which will be shown on the gateway. If no value is submitted, the account email will be shown as the recipient of the payment." +msgstr "El nombre de esta tienda, que se mostrará en la pasarela. Si no se envía ningún valor, el correo electrónico de la cuenta se mostrará como el destinatario del pago." + +#: includes/common/payment-gateways/skrill.php:176 +msgid "Merchant Name (optional)" +msgstr "Nombre del comerciante (opcional)" + +#: includes/common/payment-gateways/skrill.php:165 +msgid "Language" +msgstr "Idioma" + +#: includes/common/payment-gateways/2checkout.php:368 +#: includes/common/payment-gateways/authorizenet-aim.php:262 +#: includes/common/payment-gateways/eway.php:363 +#: includes/common/payment-gateways/eway31.php:471 +#: includes/common/payment-gateways/mollie.php:91 +#: includes/common/payment-gateways/paymill.php:193 +#: includes/common/payment-gateways/paypal-chained-payments.php:356 +#: includes/common/payment-gateways/paypal-express.php:688 +#: includes/common/payment-gateways/paypal-payflow.php:432 +#: includes/common/payment-gateways/pin.php:186 +#: includes/common/payment-gateways/skrill.php:152 +#: includes/common/payment-gateways/stripe.php:288 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:104 +msgid "Currency" +msgstr "Moneda" + +#: includes/common/payment-gateways/2checkout.php:359 +#: includes/common/payment-gateways/skrill.php:143 +msgid "Secret Word" +msgstr "Palabra secreta" + +#: includes/common/payment-gateways/skrill.php:261 +msgid "Order ID:" +msgstr "Solicitar ID:" + +#: includes/common/payment-gateways/skrill.php:234 +msgid "Complete Checkout" +msgstr "Completar Checkout" + +#: includes/common/payment-gateways/skrill.php:204 +msgid "Your Moneybookers transaction has been canceled." +msgstr "Su transacción de Moneybookers ha sido cancelada." + +#: includes/common/payment-gateways/manual-payments.php:155 +msgid "This is the email text to send to those who have made manual payment checkouts. You should include your manual payment instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "Este es el mensaje de correo electrónico que se envía a aquellos que han realizado pagos de pago manuales. Debe incluir sus instrucciones de pago manual aquí. Anula el correo electrónico de pago de pedido predeterminado. Estos códigos serán reemplazados con detalles del pedido: NOMBRE PERSONALIZADO, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No se permite HTML." + +#: includes/common/payment-gateways/_payway.php:257 +#: includes/common/payment-gateways/manual-payments.php:128 +msgid "Record payments manually, such as by Cash, Check, or EFT." +msgstr "Registre los pagos manualmente, como en efectivo, cheque o EFT." + +#: includes/common/payment-gateways/manual-payments.php:71 +msgid "Manual/Invoice" +msgstr "Manual / Factura" + +#: includes/admin/class-mp-setup-wizard.php:648 +#: includes/common/payment-gateways/manual-payments.php:35 +#: includes/common/payment-gateways/manual-payments.php:36 +msgid "Manual Payment" +msgstr "Pago manual" + +#: includes/common/payment-gateways/manual-payments.php:34 +#: includes/common/payment-gateways/manual-payments.php:163 +msgid "Manual Payments" +msgstr "Pagos manuales" + +#: includes/common/payment-gateways/_ideal.php:288 +msgid "iDEAL Simulator (for testing)" +msgstr "Simulador iDEAL (para pruebas)" + +#: includes/common/payment-gateways/_ideal.php:287 +msgid "ABN Amro Bank" +msgstr "ABN Amro Bank" + +#: includes/common/payment-gateways/_ideal.php:286 +msgid "Friesland Bank" +msgstr "Friesland Bank" + +#: includes/common/payment-gateways/_ideal.php:285 +msgid "Rabobank" +msgstr "Rabobank" + +#: includes/common/payment-gateways/_ideal.php:284 +msgid "ING Bank" +msgstr "ING Bank" + +#: includes/common/payment-gateways/_ideal.php:279 +msgid "Bank" +msgstr "Banco" + +#: includes/common/payment-gateways/_ideal.php:270 +msgid "To make it easier to pay for online products and services, the Dutch banking community has developed the iDEAL online payment method. iDEAL allows online payments to be made using online banking in EUR only." +msgstr "Para facilitar el pago de los productos y servicios en línea, la comunidad bancaria holandesa ha desarrollado el método de pago en línea iDEAL. iDEAL permite que los pagos en línea se realicen utilizando la banca en línea en EUR solamente." + +#: includes/common/payment-gateways/_ideal.php:247 +#: includes/common/payment-gateways/_payway.php:199 +#: includes/common/payment-gateways/manual-payments.php:68 +msgid "Invoiced" +msgstr "Facturado" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1016 +msgid "Coupon" +msgstr "Cupón" + +#: includes/common/payment-gateways/_ideal.php:77 +#: includes/common/payment-gateways/_ideal.php:250 +#: includes/common/payment-gateways/_payway.php:202 +msgid "iDEAL" +msgstr "iDEAL" + +#: includes/common/payment-gateways/_ideal.php:76 +msgid "iDEAL (beta)" +msgstr "iDEAL (beta)" + +#: includes/common/payment-gateways/payfast.php:327 +msgid "Merchant Key" +msgstr "Clave de comerciante" + +#: includes/common/payment-gateways/_ideal.php:293 +#: includes/common/payment-gateways/_payway.php:302 +#: includes/common/payment-gateways/payfast.php:324 +msgid "Merchant ID" +msgstr "Identificación del comerciante" + +#: includes/common/payment-gateways/eway31.php:462 +msgid "eWay Rapid 3.0 Payments lets merchants recieve credit card payments through eWay without need for users to leave the shop. Note this gateway requires a valid SSL certificate configured for this site." +msgstr "eWay Rapid 3.0 Payments permite a los comerciantes recibir pagos con tarjeta de crédito a través de eWay sin necesidad de que los usuarios salgan de la tienda. Tenga en cuenta que esta puerta de enlace requiere un certificado SSL válido configurado para este sitio." + +#: includes/common/payment-gateways/eway.php:452 +msgid "There was a problem connecting to eWay. Please try again." +msgstr "Hubo un problema al conectarse a eWay. Inténtalo de nuevo." + +#: includes/common/payment-gateways/eway.php:432 +#: includes/common/payment-gateways/eway.php:437 +msgid "The url of the image can be hosted on your website and pass the secure https:// path of the image to be displayed at the top of the website. This is the second image block on the webpage and is restricted to 960px X 65px. A default secure image is used if none is supplied." +msgstr "La url de la imagen se puede alojar en su sitio web y pasar la ruta segura https: // de la imagen que se mostrará en la parte superior del sitio web. Este es el segundo bloque de imágenes en la página web y está restringido a 960px X 65px. Se usa una imagen segura predeterminada si no se proporciona ninguna." + +#: includes/common/payment-gateways/eway.php:431 +#: includes/common/payment-gateways/eway.php:436 +msgid "Company Logo (optional)" +msgstr "Logotipo de la empresa (opcional)" + +#: includes/common/payment-gateways/eway.php:427 +msgid "The page footer text can be customised and populated below the customer's order details. Useful for contact information." +msgstr "El texto del pie de página se puede personalizar y rellenar debajo de los detalles del pedido del cliente. Útil para información de contacto." + +#: includes/common/payment-gateways/eway.php:426 +msgid "Page Footer (optional)" +msgstr "Pie de página (opcional)" + +#: includes/common/payment-gateways/eway.php:421 +msgid "Page Description (optional)" +msgstr "Descripción de la página (opcional)" + +#: includes/common/payment-gateways/eway.php:417 +#: includes/common/payment-gateways/eway.php:422 +msgid "This value is used to populate the browsers title bar at the top of the screen." +msgstr "Este valor se utiliza para rellenar la barra de título del navegador en la parte superior de la pantalla." + +#: includes/common/payment-gateways/eway.php:416 +msgid "Page Title (optional)" +msgstr "Título de la página (opcional)" + +#: includes/common/payment-gateways/eway.php:412 +msgid "This will be displayed as the company the customer is purchasing from, including this is highly recommended." +msgstr "Esto se mostrará como la compañía que el cliente está comprando, incluyendo esto es altamente recomendable." + +#: includes/common/payment-gateways/eway.php:411 +msgid "Company Name" +msgstr "Nombre de la empresa" + +#: includes/common/payment-gateways/eway.php:394 +msgid "Customer ID" +msgstr "Identificación del cliente" + +#: includes/common/payment-gateways/eway.php:381 +#: includes/common/payment-gateways/eway31.php:488 +msgid "Live API Credentials" +msgstr "Credenciales API en vivo" + +#: includes/common/payment-gateways/eway.php:371 +#: includes/common/payment-gateways/eway31.php:479 +msgid "Gateway Mode" +msgstr "Modo de pasarela" + +#: includes/common/payment-gateways/eway.php:354 +msgid "The Hosted Page is a webpage hosted on eWAY's side eliminating the need for merchants to capture, transmit or store credit card numbers. At the checkout time the merchant automatically redirects the customer to the Hosted Page where they would enter their details and have the transaction processed. Upon completion of the transaction the customer is redirected back to the MarketPress checkout confirmation page." +msgstr "La página alojada es una página web alojada en el lado de eWAY que elimina la necesidad de que los comerciantes capturen, transmitan o almacenen números de tarjetas de crédito. En el momento de la compra, el comerciante redirige automáticamente al cliente a la página alojada donde ingresaría sus detalles y procesaría la transacción. Al finalizar la transacción, se redirige al cliente a la página de confirmación de pago de MarketPress." + +#: includes/common/payment-gateways/eway.php:314 +msgid "There was a problem with your credit card information: %s" +msgstr "Hubo un problema con la información de su tarjeta de crédito.: %s" + +#: includes/common/payment-gateways/eway.php:300 +msgid "Paid - The card has been processed - %s" +msgstr "Pagado - La tarjeta ha sido procesada - %s" + +#: includes/common/payment-gateways/eway.php:253 +msgid "There was a problem setting up the transaction with eWay: %s" +msgstr "Hubo un problema al configurar la transacción con eWay: %s" + +#: includes/common/payment-gateways/eway.php:245 +#: includes/common/payment-gateways/eway.php:289 +msgid "There was a problem parsing the response from eWay. Please try again." +msgstr "Hubo un problema al analizar la respuesta de eWay. Inténtalo de nuevo." + +#: includes/common/payment-gateways/_ideal.php:159 +#: includes/common/payment-gateways/eway.php:189 +#: includes/common/payment-gateways/paypal-chained-payments.php:634 +#: includes/common/payment-gateways/paypal-express.php:322 +#: includes/common/payment-gateways/paypal-express.php:473 +msgid "%s Store Purchase - Order ID: %s" +msgstr "%s Compra en tienda - ID de pedido: %s" + +#: includes/common/payment-gateways/eway.php:147 +#: includes/common/payment-gateways/eway.php:462 +msgid "eWay Shared Payments" +msgstr "eWay Pagos Compartidos" + +#: includes/common/payment-gateways/_cubepoints.php:214 +msgid "This is the email text to send to those who have made CubePoints checkouts. You should include your CubePoints instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "Este es el mensaje de correo electrónico que se enviará a aquellos que hayan realizado pagos de CubePoints. Debes incluir tus instrucciones de CubePoints aquí. Anula el correo electrónico de pago de pedido predeterminado. Estos códigos serán reemplazados con detalles del pedido: NOMBRE PERSONALIZADO, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No se permite HTML." + +#: includes/common/payment-gateways/_cubepoints.php:212 +#: includes/common/payment-gateways/free_orders.php:188 +#: includes/common/payment-gateways/manual-payments.php:154 +msgid "Order Confirmation Email" +msgstr "Correo electrónico de confirmación de pedido" + +#: includes/common/payment-gateways/_cubepoints.php:207 +#: includes/common/payment-gateways/manual-payments.php:149 +msgid "Confirmation User Instructions" +msgstr "Instrucciones de confirmación del usuario" + +#: includes/common/payment-gateways/_cubepoints.php:202 +#: includes/common/payment-gateways/manual-payments.php:144 +msgid "User Instructions" +msgstr "Instrucciones para el usuario" + +#: includes/common/payment-gateways/_cubepoints.php:198 +#: includes/common/payment-gateways/free_orders.php:170 +#: includes/common/payment-gateways/manual-payments.php:139 +msgid "Enter a public name for this payment method that is displayed to users - No HTML" +msgstr "Ingrese un nombre público para este método de pago que se muestra a los usuarios - Sin HTML" + +#: includes/admin/class-mp-orders-admin.php:532 +#: includes/common/payment-gateways/_cubepoints.php:196 +#: includes/common/payment-gateways/free_orders.php:169 +#: includes/common/payment-gateways/manual-payments.php:138 +msgid "Method Name" +msgstr "Nombre del método" + +#: includes/common/payment-gateways/_cubepoints.php:187 +msgid "Accept CubePoints as payment(requires the CubePoints plugin)." +msgstr "Acepte CubePoints como pago (requiere el complemento CubePoints)." + +#: includes/common/payment-gateways/_cubepoints.php:140 +msgid "Sorry, but you do not appear to have enough points to complete this purchase!" +msgstr "Lo sentimos, ¡pero no parece tener suficientes puntos para completar esta compra!" + +#: includes/common/payment-gateways/_cubepoints.php:124 +msgid "%s Store Purchase" +msgstr "%s Compra en tienda" + +#: includes/common/payment-gateways/_cubepoints.php:79 +#: includes/common/payment-gateways/_cubepoints.php:171 +msgid "Your current points: " +msgstr "Tus puntos actuales:" + +#: includes/common/payment-gateways/_cubepoints.php:133 +#: includes/common/payment-gateways/_cubepoints.php:197 +msgid "CubePoints" +msgstr "CubePoints" + +#: includes/common/payment-gateways/authorizenet-aim.php:344 +msgid "Authorize.net AIM Checkout" +msgstr "Authorize.net AIM Checkout" + +#: includes/common/payment-gateways/authorizenet-aim.php:331 +msgid "Custom API URL" +msgstr "Custom API URL" + +#: includes/common/payment-gateways/authorizenet-aim.php:332 +msgid "Many other gateways have Authorize.net API emulators. To use one of these gateways input their API post url here." +msgstr "Muchas otras puertas de enlace tienen emuladores de la API de Authorize.net. Para usar una de estas puertas de enlace ingrese su API post url aquí." + +#: includes/common/payment-gateways/authorizenet-aim.php:322 +msgid "Request a delimited response from the payment gateway." +msgstr "Solicitar una respuesta delimitada desde la pasarela de pago." + +#: includes/common/payment-gateways/authorizenet-aim.php:316 +msgid "Security: MD5 Hash" +msgstr "Seguridad: MD5 Hash" + +#: includes/common/payment-gateways/authorizenet-aim.php:317 +msgid "The payment gateway generated MD5 hash value that can be used to authenticate the transaction response. Not needed because responses are returned using an SSL connection." +msgstr "La pasarela de pago generó un valor hash MD5 que se puede usar para autenticar la respuesta de la transacción. No es necesario porque las respuestas se devuelven mediante una conexión SSL." + +#: includes/common/payment-gateways/authorizenet-aim.php:306 +msgid "Customer Receipt Email Footer" +msgstr "Recibo del cliente Correo electrónico de pie de página" + +#: includes/common/payment-gateways/authorizenet-aim.php:296 +msgid "Customer Receipt Email Header" +msgstr "Encabezado de correo electrónico de recibo del cliente" + +#: includes/common/payment-gateways/authorizenet-aim.php:297 +#: includes/common/payment-gateways/paypal-payflow.php:446 +msgid "This text will appear as the header of the email receipt sent to the customer." +msgstr "Este texto aparecerá como el encabezado del recibo de correo electrónico enviado al cliente." + +#: includes/common/payment-gateways/authorizenet-aim.php:282 +msgid "Encapsulation Character" +msgstr "Carácter de encapsulación" + +#: includes/common/payment-gateways/authorizenet-aim.php:283 +msgid "Authorize.net default is blank. Otherwise, get this from your credit card processor. If the transactions are going through, but getting strange responses, this character is most likely wrong." +msgstr "Authorize.net por defecto está en blanco. De lo contrario, obtenga esto de su procesador de tarjeta de crédito. Si las transacciones están pasando, pero obteniendo respuestas extrañas, este personaje probablemente esté equivocado." + +#: includes/common/payment-gateways/authorizenet-aim.php:273 +msgid "Optional settings to control advanced options" +msgstr "Configuraciones opcionales para controlar opciones avanzadas" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:224 +#: includes/common/payment-gateways/authorizenet-aim.php:272 +msgid "Advanced Settings" +msgstr "Ajustes avanzados" + +#: includes/common/payment-gateways/authorizenet-aim.php:253 +msgid "Transaction Key" +msgstr "Clave de transacción" + +#: includes/common/payment-gateways/authorizenet-aim.php:246 +msgid "Login ID" +msgstr "Ingresar identificación" + +#: includes/common/payment-gateways/paypal-payflow.php:396 +msgid "Gateway Credentials" +msgstr "Credenciales de Pasarela" + +#: includes/common/payment-gateways/authorizenet-aim.php:221 +msgid "Authorize.net AIM is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway. USD is the only currency supported by this gateway." +msgstr "Authorize.net AIM es una solución de procesamiento de pagos personalizable que le da al comerciante el control sobre todos los pasos para procesar una transacción. Se requiere un certificado SSL para usar esta puerta de enlace. USD es la única moneda soportada por esta pasarela." + +#: includes/common/payment-gateways/authorizenet-aim.php:205 +msgid "There was a problem finalizing your purchase. %s Please go back and try again." +msgstr "Hubo un problema al finalizar tu compra. %s Por favor vuelve a intentarlo." + +#: includes/common/payment-gateways/payfast.php:519 +#: includes/common/payment-gateways/paypal-chained-payments.php:218 +#: includes/common/payment-gateways/paypal-chained-payments.php:498 +#: includes/common/payment-gateways/paypal-express.php:822 +#: includes/common/payment-gateways/paypal-express.php:1092 +msgid "The payment has been completed, and the funds have been added successfully to your account balance." +msgstr "El pago se completó y los fondos se agregaron con éxito al saldo de su cuenta." + +#: includes/common/payment-gateways/paypal-payflow.php:233 +msgid "Please enter a valid credit card security code" +msgstr "Por favor ingrese un código de seguridad de tarjeta de crédito válido" + +#: includes/common/payment-gateways/paypal-payflow.php:224 +#: includes/public/class-mp-checkout.php:867 +msgid "Please enter a valid credit card number" +msgstr "Por favor, introduzca un número de tarjeta de crédito válida" + +#: includes/common/payment-gateways/paypal-payflow.php:221 +msgid "Please enter your credit card number" +msgstr "Por favor ingresa el número de tu tarjeta de crédito" + +#: includes/common/payment-gateways/paypal-payflow.php:217 +msgid "Please enter your credit card security code" +msgstr "Por favor ingrese el código de seguridad de su tarjeta de crédito" + +#: includes/common/payment-gateways/paypal-payflow.php:213 +msgid "Please select your credit card expiration date." +msgstr "Por favor seleccione la fecha de vencimiento de su tarjeta de crédito." + +#: includes/common/payment-gateways/2checkout.php:299 +#: includes/common/payment-gateways/authorizenet-aim.php:50 +#: includes/common/payment-gateways/eway.php:148 +#: includes/common/payment-gateways/eway.php:298 +#: includes/common/payment-gateways/eway31.php:267 +#: includes/common/payment-gateways/paymill.php:46 +#: includes/common/payment-gateways/paypal-express.php:972 +#: includes/common/payment-gateways/paypal-payflow.php:60 +#: includes/common/payment-gateways/pin.php:46 +#: includes/common/payment-gateways/simplify.php:19 +#: includes/common/payment-gateways/stripe.php:46 +#: includes/common/payment-gateways/wepay.php:37 +msgid "Credit Card" +msgstr "Tarjeta de crédito" + +#: includes/common/payment-gateways/authorizenet-aim.php:49 +msgid "Authorize.net Checkout" +msgstr "Authorize.net Checkout" + +#: includes/common/payment-gateways/skrill.php:156 +#: includes/common/payment-gateways/stripe.php:293 +msgid "Selecting a currency other than that used for your store may cause problems at checkout." +msgstr "La selección de una moneda diferente a la utilizada para su tienda puede causar problemas al momento de pagar." + +#: includes/common/payment-gateways/2checkout.php:352 +msgid "Seller ID" +msgstr "ID de vendedor" + +#: includes/common/payment-gateways/2checkout.php:340 +#: includes/common/payment-gateways/_ideal.php:311 +#: includes/common/payment-gateways/authorizenet-aim.php:234 +#: includes/common/payment-gateways/eway.php:376 +#: includes/common/payment-gateways/payfast.php:315 +#: includes/common/payment-gateways/paypal-chained-payments.php:368 +#: includes/common/payment-gateways/paypal-express.php:699 +#: includes/common/payment-gateways/paypal-payflow.php:391 +msgid "Live" +msgstr "En vivo" + +#: includes/common/payment-gateways/2checkout.php:339 +#: includes/common/payment-gateways/authorizenet-aim.php:233 +#: includes/common/payment-gateways/eway.php:375 +#: includes/common/payment-gateways/paypal-chained-payments.php:367 +#: includes/common/payment-gateways/paypal-express.php:698 +#: includes/common/payment-gateways/paypal-payflow.php:390 +#: includes/common/shipping-modules/mp-fedex.php:263 +msgid "Sandbox" +msgstr "Sandbox" + +#: includes/common/payment-gateways/2checkout.php:336 +#: includes/common/payment-gateways/_ideal.php:307 +#: includes/common/payment-gateways/authorizenet-aim.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:365 +#: includes/common/payment-gateways/paypal-express.php:695 +#: includes/common/payment-gateways/paypal-payflow.php:387 +#: includes/common/payment-gateways/wepay.php:130 +#: includes/common/shipping-modules/mp-fedex.php:260 +msgid "Mode" +msgstr "Modo" + +#: includes/common/payment-gateways/2checkout.php:288 +#: includes/common/payment-gateways/mijireh.php:242 +#: includes/common/payment-gateways/mollie.php:212 +msgid "The order has been received" +msgstr "El pedido ha sido recibido." + +#: includes/common/payment-gateways/2checkout.php:74 +#: includes/common/payment-gateways/2checkout.php:75 +#: includes/common/payment-gateways/2checkout.php:435 +msgid "2Checkout" +msgstr "2Checkout" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:306 +msgid "Confirm" +msgstr "Confirmar" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:218 +#: includes/common/class-mp-cart.php:974 includes/common/class-mp-cart.php:1354 +#: includes/common/template-functions.php:918 +msgid "Checkout" +msgstr "Checkout" + +#: includes/common/template-functions.php:207 +msgid "Check Order Status" +msgstr "Comprobar el estado del pedido" + +#: includes/common/template-functions.php:235 +msgid "View Products" +msgstr "Ver productos" + +#: includes/common/template-functions.php:263 +msgid "Visit Store" +msgstr "Visita la tienda" + +#: includes/common/template-functions.php:2912 +#: includes/multisite/template-functions.php:448 +msgid "Order By" +msgstr "Ordenar por" + +#: includes/common/template-functions.php:2887 +#: includes/multisite/template-functions.php:405 +msgid "Price (High to Low)" +msgstr "Precio (alto a bajo)" + +#: includes/common/template-functions.php:2886 +#: includes/multisite/template-functions.php:404 +msgid "Price (Low to High)" +msgstr "Precios (bajo a alto)" + +#: includes/common/template-functions.php:2881 +#: includes/multisite/template-functions.php:399 +msgid "Default" +msgstr "Por Defecto" + +#: includes/common/template-functions.php:2858 +msgid "Show All" +msgstr "Mostrar todo" + +#: includes/common/class-mp-product.php:2048 +msgid "View Larger Image »" +msgstr "Ver imagen más grande »" + +#: includes/common/class-mp-product.php:979 +msgid "Out of Stock" +msgstr "Agotado" + +#: includes/common/template-functions.php:148 +msgid "Price: " +msgstr "Precio:" + +#: includes/multisite/template-functions.php:833 +msgid "No Tags" +msgstr "No etiquetas" + +#: includes/common/template-functions.php:3162 +msgid "Uncategorized" +msgstr "Sin categorizar" + +#: includes/common/class-mp-cart.php:569 includes/common/class-mp-order.php:604 +#: includes/common/helpers.php:115 +msgid "Download" +msgstr "Descargar" + +#: includes/common/class-mp-cart.php:1353 +msgid "Empty Cart" +msgstr "Carrito vacio" + +#: includes/common/payment-gateways/_payway.php:291 +#: includes/common/payment-gateways/paypal-express.php:718 +#: includes/common/payment-gateways/paypal-payflow.php:423 +#: includes/common/shipping-modules/mp-ups.php:158 +#: includes/public/class-mp-checkout.php:1254 +#: includes/public/class-mp-checkout.php:1383 +msgid "Password" +msgstr "Contraseña" + +#: includes/common/payment-gateways/eway.php:387 +#: includes/common/payment-gateways/paypal-express.php:711 +#: includes/common/shipping-modules/mp-usps.php:185 +#: includes/public/class-mp-checkout.php:1249 +msgid "Username" +msgstr "Nombre de usuario" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:437 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:790 +msgid "Have a coupon code?" +msgstr "¿Tiene un código de cupón?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:321 +#: includes/admin/class-mp-orders-admin.php:526 +#: includes/common/class-mp-cart.php:592 +msgid "Remove" +msgstr "Retirar" + +#: includes/admin/class-mp-ajax.php:316 +msgid "Quantity:" +msgstr "Cantidad:" + +#: includes/admin/class-mp-products-admin.php:2140 +#: includes/admin/class-mp-products-admin.php:2387 +#: includes/common/shipping-modules/class-mp-shipping-api.php:507 +msgid "Extra Shipping Cost" +msgstr "Costo de envío adicional" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:403 +msgid "Choose a Shipping Method:" +msgstr "Elija un método de envío:" + +#: includes/admin/class-mp-products-admin.php:1691 +#: includes/admin/class-mp-products-admin.php:2131 +#: includes/admin/class-mp-products-admin.php:2378 +#: includes/common/shipping-modules/class-mp-shipping-api.php:228 +msgid "Ounces" +msgstr "Onzas" + +#: includes/admin/class-mp-products-admin.php:1684 +#: includes/admin/class-mp-products-admin.php:2123 +#: includes/admin/class-mp-products-admin.php:2369 +#: includes/admin/class-mp-setup-wizard.php:546 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:165 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +#: includes/common/shipping-modules/class-mp-shipping-api.php:227 +msgid "Pounds" +msgstr "Libras" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:226 +msgid "Product Weight:" +msgstr "Peso del Producto:" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:214 +msgid "Weight (Kilograms)" +msgstr "Peso (Kilogramos)" + +#: includes/admin/widgets/ms-global-categories.php:82 +msgid "Number of Categories:" +msgstr "Número de Categorías:" + +#: includes/admin/widgets/ms-global-categories.php:72 +msgid "Product Count" +msgstr "Recuento de productos" + +#: includes/addons/class-mp-addons-list-table.php:20 +#: includes/admin/class-mp-product-attributes-admin.php:129 +#: includes/admin/class-mp-product-attributes-list-table.php:22 +#: includes/admin/class-mp-products-admin.php:2216 +#: includes/admin/class-mp-shortcode-builder.php:628 +#: includes/admin/class-mp-shortcode-builder.php:1415 +#: includes/admin/widgets/ms-global-categories.php:70 +#: includes/common/shipping-modules/mp-fedex.php:395 +#: includes/common/shipping-modules/mp-ups.php:202 +#: includes/common/shipping-modules/mp-usps.php:243 +#: includes/public/class-mp-checkout.php:314 +msgid "Name" +msgstr "Nombre" + +#: includes/admin/widgets/ms-global-categories.php:67 +msgid "Order Categories By:" +msgstr "Ordenar las categorías por:" + +#: includes/admin/widgets/ms-global-categories.php:24 +#: includes/admin/widgets/ms-global-categories.php:50 +msgid "Global Product Categories" +msgstr "Categorías de productos globales" + +#: includes/admin/widgets/ms-global-categories.php:15 +msgid "Global Product Category List" +msgstr "Lista global de categorías de productos" + +#: includes/admin/widgets/ms-global-categories.php:13 +msgid "Displays a network-wide HTML list of product categories from network MarketPress stores." +msgstr "Muestra una lista HTML de toda la red de categorías de productos de las tiendas de la red MarketPress." + +#: includes/admin/widgets/ms-global-tag-cloud.php:24 +#: includes/admin/widgets/ms-global-tag-cloud.php:45 +msgid "Global Product Tags" +msgstr "Etiquetas de productos globales" + +#: includes/admin/widgets/ms-global-tag-cloud.php:15 +msgid "Global Product Tag Cloud" +msgstr "Etiqueta de producto global" + +#: includes/admin/class-mp-shortcode-builder.php:947 +#: includes/admin/widgets/ms-global-product-list.php:173 +msgid "Excerpt" +msgstr "Extracto" + +#: includes/admin/widgets/ms-global-product-list.php:169 +msgid "Content To Show:" +msgstr "Contenido para mostrar:" + +#: includes/admin/widgets/ms-global-product-list.php:140 +msgid "Limit To Product Tag:" +msgstr "Límite a la etiqueta del producto:" + +#: includes/admin/widgets/ms-global-product-list.php:132 +msgid "Limit To Product Category:" +msgstr "Límite a la categoría de producto:" + +#: includes/admin/widgets/ms-global-product-list.php:72 +msgid "Global Products" +msgstr "Productos globales" + +#: includes/admin/widgets/ms-global-product-list.php:16 +msgid "Global Product List" +msgstr "Lista global de productos" + +#: includes/admin/widgets/ms-global-product-list.php:14 +msgid "Shows a customizable global list of products from network MarketPress stores." +msgstr "Muestra una lista global personalizable de productos de las tiendas de la red MarketPress." + +#: includes/common/class-mp-product.php:974 +#: includes/multisite/template-functions.php:731 +msgid "Buy Now »" +msgstr "Compra ahora »" + +#: includes/admin/widgets/ms-global-tag-cloud.php:13 +msgid "Displays global most used product tags in cloud format from network MarketPress stores." +msgstr "Muestra las etiquetas de productos más utilizadas a nivel mundial en formato de nube desde las tiendas de la red MarketPress." + +#: includes/multisite/class-mp-admin-multisite.php:438 +msgid "Theme Permissions" +msgstr "Permisos temáticos" + +#: includes/multisite/class-mp-admin-multisite.php:402 +#: includes/multisite/class-mp-admin-multisite.php:448 +msgid "No Access" +msgstr "Sin acceso" + +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:120 +msgid "Pro Site Level" +msgstr "Pro Site Nivel" + +#: includes/multisite/class-mp-admin-multisite.php:401 +#: includes/multisite/class-mp-admin-multisite.php:447 +msgid "All Can Use" +msgstr "Todo lo que puedas usar" + +#: includes/multisite/class-mp-admin-multisite.php:390 +msgid "Gateway Permissions" +msgstr "Permisos de pasarela" + +#: includes/multisite/class-mp-admin-multisite.php:375 +msgid "Select a Gateway" +msgstr "Seleccione una pasarela" + +#: includes/multisite/class-mp-admin-multisite.php:350 +msgid "Global Gateway" +msgstr "Pasarela global" + +#. Plugin Name of the plugin/theme +msgid "MarketPress" +msgstr "MarketPress" + +#: includes/admin/widgets/product-tag-cloud.php:7 +msgid "Your most used product tags in cloud format from your MarketPress store." +msgstr "Las etiquetas de productos más utilizadas en formato de nube de su tienda MarketPress." + +#: includes/admin/widgets/categories.php:79 +msgid "Show hierarchy" +msgstr "Mostrar jerarquía" + +#: includes/admin/widgets/categories.php:76 +#: includes/admin/widgets/ms-global-categories.php:92 +msgid "Show product counts" +msgstr "Mostrar conteos de productos" + +#: includes/admin/widgets/categories.php:73 +msgid "Show as dropdown" +msgstr "Mostrar como desplegable" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:710 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:736 +#: includes/admin/widgets/categories.php:30 +msgid "Select Category" +msgstr "Selecciona una categoría" + +#: includes/admin/widgets/categories.php:7 +msgid "A list or dropdown of product categories from your MarketPress store." +msgstr "Una lista o lista desplegable de categorías de productos de su tienda MarketPress." + +#: includes/admin/widgets/product-list.php:250 +msgid "Show Buy Button" +msgstr "Mostrar botón de compra" + +#: includes/admin/widgets/ms-global-product-list.php:183 +#: includes/admin/widgets/product-list.php:244 +msgid "Show Price" +msgstr "Mostrar precio" + +#: includes/admin/widgets/product-list.php:241 +msgid "Show Excerpt" +msgstr "Mostrar extracto" + +#: includes/admin/widgets/ms-global-product-list.php:155 +#: includes/admin/widgets/product-list.php:238 +msgid "Thumbnail Size:" +msgstr "Tamaño miniatura:" + +#: includes/admin/widgets/ms-global-product-list.php:153 +#: includes/admin/widgets/product-list.php:237 +msgid "Show Thumbnail" +msgstr "Mostrar miniatura" + +#: includes/admin/widgets/ms-global-product-list.php:147 +#: includes/admin/widgets/product-list.php:233 +msgid "Display Settings" +msgstr "Configuraciones de pantalla" + +#: includes/admin/widgets/ms-global-product-list.php:136 +#: includes/admin/widgets/ms-global-product-list.php:144 +#: includes/admin/widgets/product-list.php:230 +msgid "Enter the Slug" +msgstr "Entrar el Slug" + +#: includes/admin/widgets/product-list.php:228 +#: includes/common/template-functions.php:894 +msgid "Tag" +msgstr "Etiqueta" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:686 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:712 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:739 +#: includes/admin/class-mp-shortcode-builder.php:796 +#: includes/admin/widgets/product-list.php:227 +#: includes/common/template-functions.php:886 +#: includes/common/template-functions.php:2907 +msgid "Category" +msgstr "Categoría" + +#: includes/admin/widgets/product-list.php:226 +msgid "No Filter" +msgstr "Sin filtro" + +#: includes/admin/widgets/product-list.php:224 +msgid "Taxonomy Filter:" +msgstr "Filtro de taxonomía:" + +#: includes/admin/widgets/ms-global-product-list.php:108 +#: includes/admin/widgets/product-list.php:209 +msgid "Order Products By:" +msgstr "Ordenar productos por:" + +#: includes/admin/widgets/ms-global-product-list.php:101 +#: includes/admin/widgets/product-list.php:206 +msgid "Number of Products:" +msgstr "Número de productos:" + +#: includes/admin/widgets/ms-global-product-list.php:98 +#: includes/admin/widgets/product-list.php:204 +msgid "List Settings" +msgstr "Ajustes de la lista" + +#: includes/admin/widgets/product-list.php:177 +msgid "Our Products" +msgstr "Nuestros productos" + +#: includes/admin/widgets/product-list.php:144 +#: includes/common/template-functions.php:2070 +#: includes/common/template-functions.php:2347 +#: includes/multisite/template-functions.php:303 +#: includes/multisite/template-functions.php:623 +msgid "No Products" +msgstr "Sin productos" + +#: includes/admin/widgets/product-list.php:8 +msgid "Product List" +msgstr "Lista de productos" + +#: includes/admin/widgets/product-list.php:7 +msgid "Shows a customizable list of products from your MarketPress store." +msgstr "Muestra una lista personalizable de productos de su tienda MarketPress." + +#: includes/admin/widgets/cart.php:75 includes/admin/widgets/categories.php:82 +#: includes/admin/widgets/product-list.php:253 +#: includes/admin/widgets/product-tag-cloud.php:57 +msgid "Only show on store pages" +msgstr "Mostrar solo en las páginas de la tienda" + +#: includes/admin/widgets/cart.php:65 +#: includes/admin/widgets/ms-global-product-list.php:92 +#: includes/admin/widgets/product-list.php:200 +msgid "Custom Text:" +msgstr "Texto personalizado:" + +#: includes/admin/widgets/cart.php:64 includes/admin/widgets/categories.php:69 +#: includes/admin/widgets/ms-global-categories.php:59 +#: includes/admin/widgets/ms-global-product-list.php:87 +#: includes/admin/widgets/ms-global-tag-cloud.php:49 +#: includes/admin/widgets/product-list.php:199 +#: includes/admin/widgets/product-tag-cloud.php:49 +msgid "Title:" +msgstr "Título:" + +#: includes/admin/widgets/cart.php:7 +msgid "Shows dynamic shopping cart contents along with a checkout button for your MarketPress store." +msgstr "Muestra el contenido dinámico del carrito de la compra junto con un botón de pago para su tienda MarketPress." + +#: includes/admin/widgets/product-tag-cloud.php:8 +msgid "Product Tag Cloud" +msgstr "Etiquetas de productos en la nube" + +#: includes/admin/class-mp-setup-wizard.php:539 +#: includes/admin/class-mp-setup-wizard.php:575 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:163 +msgid "Measurement System" +msgstr "Sistema de medida" + +#: includes/admin/class-mp-setup-wizard.php:616 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:149 +msgid "Select Shipping Options" +msgstr "Seleccione las opciones de envío" + +#: includes/admin/class-mp-setup-wizard.php:596 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:129 +msgid "Calculated Options" +msgstr "Opciones calculadas" + +#: includes/admin/class-mp-setup-wizard.php:582 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:115 +msgid "No Shipping" +msgstr "Sin envío" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:110 +msgid "EU" +msgstr "EU" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:109 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:93 +msgid "All" +msgstr "Todos" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:92 +msgid "Select:" +msgstr "Seleccionar:" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:185 +msgid "Store Pages" +msgstr "Páginas de la tienda" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:223 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:256 +msgid "Order Shipped" +msgstr "Orden enviada" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:60 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:95 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:128 +#: marketpress.php:266 +msgid "New Order" +msgstr "Nuevo orden" + +#: includes/admin/class-mp-dashboard-widgets.php:314 +msgid "Email Notifications" +msgstr "Notificaciones de Correo Electrónico" + +#: includes/admin/class-mp-pages-admin.php:59 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:200 +msgid "Products List" +msgstr "Lista de productos" + +#: includes/admin/class-mp-pages-admin.php:58 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:190 +msgid "Store Base" +msgstr "Base de la tienda" + +#: includes/admin/class-mp-product-attributes-admin.php:108 +#: includes/admin/class-mp-shortcode-builder.php:635 +#: includes/admin/class-mp-shortcode-builder.php:708 +#: includes/admin/class-mp-shortcode-builder.php:875 +#: includes/admin/class-mp-shortcode-builder.php:1319 +#: includes/admin/class-mp-shortcode-builder.php:1422 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:526 +#: includes/admin/widgets/ms-global-categories.php:78 +#: includes/admin/widgets/ms-global-product-list.php:127 +#: includes/admin/widgets/product-list.php:221 +msgid "Ascending" +msgstr "Ascendente" + +#: includes/admin/class-mp-product-attributes-admin.php:109 +#: includes/admin/class-mp-shortcode-builder.php:636 +#: includes/admin/class-mp-shortcode-builder.php:709 +#: includes/admin/class-mp-shortcode-builder.php:876 +#: includes/admin/class-mp-shortcode-builder.php:1320 +#: includes/admin/class-mp-shortcode-builder.php:1423 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:525 +#: includes/admin/widgets/ms-global-categories.php:75 +#: includes/admin/widgets/ms-global-product-list.php:124 +#: includes/admin/widgets/product-list.php:220 +msgid "Descending" +msgstr "Descendente " + +#: includes/admin/class-mp-shortcode-builder.php:637 +#: includes/admin/class-mp-shortcode-builder.php:695 +#: includes/admin/class-mp-shortcode-builder.php:862 +#: includes/admin/class-mp-shortcode-builder.php:1306 +#: includes/admin/class-mp-shortcode-builder.php:1424 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:518 +#: includes/admin/widgets/ms-global-product-list.php:121 +#: includes/admin/widgets/product-list.php:218 +msgid "Random" +msgstr "Aleatorio" + +#: includes/admin/class-mp-shortcode-builder.php:694 +#: includes/admin/class-mp-shortcode-builder.php:861 +#: includes/admin/class-mp-shortcode-builder.php:1305 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:517 +#: includes/admin/widgets/ms-global-product-list.php:119 +#: includes/admin/widgets/product-list.php:216 +msgid "Product Price" +msgstr "Precio del producto" + +#: includes/admin/class-mp-shortcode-builder.php:693 +#: includes/admin/class-mp-shortcode-builder.php:860 +#: includes/admin/class-mp-shortcode-builder.php:1304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:516 +#: includes/admin/widgets/ms-global-product-list.php:117 +#: includes/admin/widgets/product-list.php:215 +msgid "Number of Sales" +msgstr "Número de ventas" + +#: includes/admin/class-mp-shortcode-builder.php:692 +#: includes/admin/class-mp-shortcode-builder.php:859 +#: includes/admin/class-mp-shortcode-builder.php:1303 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:515 +#: includes/admin/widgets/product-list.php:214 +msgid "Product Author" +msgstr "Autor del producto" + +#: includes/admin/class-mp-shortcode-builder.php:691 +#: includes/admin/class-mp-shortcode-builder.php:858 +#: includes/admin/class-mp-shortcode-builder.php:1302 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:514 +#: includes/admin/widgets/product-list.php:213 +msgid "Product ID" +msgstr "Identificación del producto" + +#: includes/admin/class-mp-shortcode-builder.php:690 +#: includes/admin/class-mp-shortcode-builder.php:857 +#: includes/admin/class-mp-shortcode-builder.php:1301 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:513 +#: includes/admin/widgets/ms-global-product-list.php:113 +#: includes/admin/widgets/product-list.php:212 +msgid "Publish Date" +msgstr "Fecha de publicación" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:430 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:726 +msgid "Width" +msgstr "Ancho" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:439 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:735 +msgid "Height" +msgstr "Alto" + +#: includes/admin/class-mp-product-attributes-admin.php:88 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:402 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:698 +msgid "Custom" +msgstr "Personalizado" + +#: includes/common/class-mp-product.php:179 +#: includes/common/class-mp-product.php:992 +#: includes/common/class-mp-product.php:1000 +#: includes/multisite/template-functions.php:579 +msgid "Buy Now" +msgstr "Compra ahora" + +#: includes/common/class-mp-product.php:175 +#: includes/common/class-mp-product.php:990 +#: includes/common/class-mp-product.php:998 +msgid "Add To Cart" +msgstr "Añadir al carrito" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:807 +msgid "Store Style" +msgstr "Estilo de tienda" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1021 +msgid "Edit Coupon" +msgstr "Editar cupón" + +#: includes/addons/mp-coupons/class-mp-coupon.php:580 +#: includes/admin/class-mp-ajax.php:238 +#: includes/admin/class-mp-products-admin.php:1532 +msgid "Unlimited" +msgstr "Ilimitado" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1198 +msgid "Remaining Uses" +msgstr "Usos Restantes" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1197 +msgid "Used" +msgstr "Usado" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:752 +#: includes/admin/class-mp-products-admin.php:2343 +msgid "Start Date" +msgstr "Fecha de inicio" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:598 +msgid "Coupon Code" +msgstr "Código de Cupón" + +#: includes/admin/class-mp-orders-admin.php:444 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:284 +msgid "Save Changes" +msgstr "Guardar cambios" + +#: includes/admin/class-mp-pages-admin.php:57 +#: includes/admin/class-mp-shortcode-builder.php:716 +#: includes/admin/class-mp-shortcode-builder.php:727 +#: includes/admin/class-mp-shortcode-builder.php:883 +#: includes/admin/class-mp-shortcode-builder.php:894 +#: includes/admin/class-mp-shortcode-builder.php:946 +#: includes/admin/class-mp-shortcode-builder.php:956 +#: includes/admin/class-mp-shortcode-builder.php:1006 +#: includes/admin/class-mp-shortcode-builder.php:1327 +#: includes/admin/class-mp-shortcode-builder.php:1338 +#: includes/admin/store-settings/class-mp-store-settings-general.php:357 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:270 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:108 +#: includes/admin/widgets/ms-global-product-list.php:172 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:94 +msgid "None" +msgstr "Ninguno" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:352 +msgid "Google Analytics Ecommerce Tracking" +msgstr "Google Analytics Ecommerce Tracking" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:310 +msgid "This option turns MarketPress into more of a product listing plugin, disabling shopping carts, checkout, and order management. This is useful if you simply want to list items you can buy in a store somewhere else, optionally linking the \"Buy Now\" buttons to an external site. Some examples are a car dealership, or linking to songs/albums in itunes, or linking to products on another site with your own affiliate links." +msgstr "Esta opción convierte a MarketPress en más de un complemento de listado de productos, que deshabilita los carritos de compras, el pago y la gestión de pedidos. Esto es útil si simplemente desea enumerar los artículos que puede comprar en una tienda en otro lugar, vinculando opcionalmente los botones \"Comprar ahora\" a un sitio externo. Algunos ejemplos son un concesionario de automóviles, un enlace a canciones / álbumes en iTunes o un enlace a productos en otro sitio con su propio enlace de afiliado" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:304 +msgid "Whether or not customers must be registered and logged in to checkout. (Not recommended: Enabling this can lower conversions)" +msgstr "Si los clientes deben o no estar registrados al iniciar sesión para pagar. (No recomendado: habilitar esto puede reducir conversiones)" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:258 +msgid "How many times may a customer download a file they have purchased? (It's best to set this higher than one in case they have any problems downloading)" +msgstr "¿Cuántas veces puede un cliente descargar un archivo que ha comprado? (Es mejor establecer este valor más alto que uno en caso de que tengan problemas para descargar)" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:257 +msgid "Maximum Downloads" +msgstr "Descargas máximas" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:298 +msgid "This will set the product to draft if inventory of all variations is gone." +msgstr "Esto configurará el producto como borrador si se elimina el inventario de todas las variaciones." + +#: includes/admin/store-settings/class-mp-store-settings-general.php:288 +msgid "At what low stock count do you want to be warned for products you have enabled inventory tracking for?" +msgstr "¿A qué bajo recuento de existencias desea que se le avise de los productos para los que ha habilitado el seguimiento de inventario?" + +#: includes/admin/class-mp-dashboard-widgets.php:208 +#: includes/admin/store-settings/class-mp-store-settings-general.php:287 +msgid "Inventory Warning Threshold" +msgstr "Umbral de advertencia de inventario" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:282 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:542 +msgid "Miscellaneous Settings" +msgstr "Otras configuraciones" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:429 +#: includes/multisite/class-mp-admin-multisite.php:247 +msgid "Show Decimal in Prices" +msgstr "Mostrar decimales en precios" + +#: includes/admin/class-mp-setup-wizard.php:451 +#: includes/admin/store-settings/class-mp-store-settings-general.php:403 +#: includes/multisite/class-mp-admin-multisite.php:221 +msgid "Currency Symbol Position" +msgstr "Posición del símbolo de moneda" + +#: includes/admin/class-mp-setup-wizard.php:444 +#: includes/admin/store-settings/class-mp-store-settings-general.php:396 +msgid "Store Currency" +msgstr "Moneda de la tienda" + +#: includes/admin/class-mp-setup-wizard.php:429 +#: includes/admin/store-settings/class-mp-store-settings-general.php:381 +msgid "Currency Settings" +msgstr "Ajustes de la moneda" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:516 +msgid "Please see your local tax laws. Note if this is enabled and a downloadable only cart, rates will be the default for your base location." +msgstr "Por favor, consulte sus leyes fiscales locales. Tenga en cuenta que si está habilitado y si se trata de un carrito solo descargable, las tarifas serán las predeterminadas para su ubicación base." + +#: includes/admin/class-mp-setup-wizard.php:529 +msgid "Apply Tax to Downloadable Products?" +msgstr "¿Aplicar el impuesto a los productos descargables?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:498 +msgid "Enabling this option allows you to enter and show all prices inclusive of tax, while still listing the tax total as a line item in shopping carts. Please see your local tax laws." +msgstr "La habilitación de esta opción le permite ingresar y mostrar todos los precios con impuestos incluidos, mientras que aún se muestra el total de impuestos como una partida en los carritos de la compra. Por favor, consulte sus leyes fiscales locales." + +#: includes/admin/class-mp-setup-wizard.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:497 +msgid "Enter Prices Inclusive of Tax?" +msgstr "¿Ingresar los precios con impuestos incluidos?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:492 +msgid "Please see your local tax laws. Most areas charge tax on shipping fees." +msgstr "Por favor, consulte sus leyes fiscales locales. La mayoría de las áreas cobran impuestos sobre los gastos de envío." + +#: includes/admin/class-mp-setup-wizard.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:491 +msgid "Apply Tax To Shipping Fees?" +msgstr "Aplicar impuestos a las tarifas de envío?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:674 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:565 +#: includes/common/payment-gateways/authorizenet-aim.php:291 +#: includes/common/payment-gateways/authorizenet-aim.php:326 +#: includes/common/payment-gateways/payfast.php:347 +msgid "No" +msgstr "No" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:675 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:759 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:512 +#: includes/admin/class-mp-setup-wizard.php:518 +#: includes/admin/class-mp-setup-wizard.php:524 +#: includes/admin/class-mp-setup-wizard.php:530 +#: includes/admin/class-mp-setup-wizard.php:564 +#: includes/admin/store-settings/class-mp-store-settings-general.php:232 +#: includes/admin/store-settings/class-mp-store-settings-general.php:299 +#: includes/admin/store-settings/class-mp-store-settings-general.php:305 +#: includes/admin/store-settings/class-mp-store-settings-general.php:311 +#: includes/admin/store-settings/class-mp-store-settings-general.php:317 +#: includes/admin/store-settings/class-mp-store-settings-general.php:328 +#: includes/admin/store-settings/class-mp-store-settings-general.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:341 +#: includes/admin/store-settings/class-mp-store-settings-general.php:348 +#: includes/admin/store-settings/class-mp-store-settings-general.php:367 +#: includes/admin/store-settings/class-mp-store-settings-general.php:493 +#: includes/admin/store-settings/class-mp-store-settings-general.php:499 +#: includes/admin/store-settings/class-mp-store-settings-general.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:556 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:375 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:381 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:387 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:474 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:493 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:532 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:574 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:606 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:664 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:670 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:677 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:683 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:689 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:763 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:774 +#: includes/common/payment-gateways/_bitpay.php:250 +#: includes/common/payment-gateways/_bitpay.php:257 +#: includes/common/payment-gateways/_bitpay.php:264 +#: includes/common/payment-gateways/authorizenet-aim.php:290 +#: includes/common/payment-gateways/authorizenet-aim.php:325 +#: includes/common/payment-gateways/free_orders.php:160 +#: includes/common/payment-gateways/payfast.php:346 +#: includes/common/payment-gateways/paymill.php:162 +#: includes/common/payment-gateways/paypal-payflow.php:441 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-checkbox.php:22 +msgid "Yes" +msgstr "Si" + +#: includes/admin/class-mp-setup-wizard.php:492 +#: includes/admin/store-settings/class-mp-store-settings-general.php:472 +msgid "%s Tax Rate" +msgstr "%s Tasa de impuesto" + +#: includes/admin/class-mp-setup-wizard.php:467 +#: includes/admin/store-settings/class-mp-store-settings-general.php:449 +msgid "Tax Settings" +msgstr "Ajustes de impuestos" + +#: includes/admin/class-mp-setup-wizard.php:370 +#: includes/admin/store-settings/class-mp-store-settings-general.php:624 +msgid "Base Zip/Postal Code" +msgstr "Base Zip / Código Postal" + +#: includes/admin/class-mp-setup-wizard.php:354 +#: includes/admin/store-settings/class-mp-store-settings-general.php:608 +msgid "Base State/Province/Region" +msgstr "Estado base / Provincia / Región" + +#: includes/admin/class-mp-setup-wizard.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:589 +msgid "Base Country" +msgstr "País base" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:582 +msgid "Location Settings" +msgstr "Configuración de ubicación" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:195 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:800 +#: includes/multisite/class-mp-admin-multisite.php:172 +msgid "General Settings" +msgstr "Configuración general" + +#: includes/admin/class-mp-products-admin.php:1945 +#: includes/admin/class-mp-products-admin.php:2185 +#: includes/admin/class-mp-store-settings-admin.php:111 +#: includes/admin/class-mp-store-settings-admin.php:266 +msgid "General" +msgstr "General" + +#: includes/admin/class-mp-store-settings-admin.php:242 +msgid "Importers" +msgstr "Importadores" + +#: includes/admin/class-mp-store-settings-admin.php:115 +#: includes/admin/class-mp-store-settings-admin.php:234 +msgid "Payments" +msgstr "Pagos" + +#: includes/admin/class-mp-dashboard-widgets.php:313 +#: includes/admin/class-mp-store-settings-admin.php:112 +#: includes/admin/class-mp-store-settings-admin.php:222 +msgid "Presentation" +msgstr "Presentación" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:916 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1015 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1018 +#: includes/admin/class-mp-dashboard-widgets.php:305 marketpress.php:702 +msgid "Coupons" +msgstr "Cupones" + +#: includes/admin/class-mp-admin.php:251 +msgid "Download »" +msgstr "Descargas »" + +#: includes/admin/class-mp-admin.php:245 +#: includes/admin/class-mp-exporter-orders.php:170 +msgid "All Statuses" +msgstr "Todos los estados" + +#: includes/admin/class-mp-admin.php:209 +#: includes/admin/class-mp-exporter-orders.php:150 +#: includes/admin/class-mp-exporter-orders.php:178 +msgid "Export Orders" +msgstr "Órdenes de exportación" + +#: includes/admin/class-mp-admin.php:228 +msgid "Show all dates" +msgstr "Mostrar todas las fechas" + +#: includes/admin/class-mp-orders-admin.php:947 +msgid "Change Status" +msgstr "Cambiar Estado" + +#: includes/admin/class-mp-orders-admin.php:287 +msgid "Order Notes" +msgstr "Notas del pedido " + +#: includes/admin/class-mp-orders-admin.php:478 +msgid "Other" +msgstr "Otro" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:205 +msgid "Subtotal" +msgstr "Subtotal" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:84 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:87 +#: includes/admin/class-mp-products-admin.php:1737 +#: includes/common/class-mp-cart.php:1409 +#: includes/common/class-mp-product.php:559 +msgid "Quantity" +msgstr "Cantidad" + +#: includes/common/helpers.php:93 +msgid "Item" +msgstr "Artículo" + +#: includes/common/class-mp-order.php:1050 +msgid "Current Status" +msgstr "Estado actual" + +#: includes/admin/class-mp-orders-admin.php:297 +msgid "Order Actions" +msgstr "Acciones del pedido" + +#: includes/common/class-mp-product.php:1084 +msgid "More Info »" +msgstr "Mas informaciones »" + +#: includes/common/class-mp-product.php:2313 +msgid "Low Product Inventory Notification" +msgstr "Baja notificación de inventario de producto" + +#: includes/common/class-mp-order.php:338 includes/common/data.php:154 +msgid "New Order Notification: ORDERID" +msgstr "Notificación de nueva orden: ORDERID" + +#: includes/common/helpers.php:259 +msgid "Your payment for this order is complete." +msgstr "Su pago por este pedido está completo." + +#: includes/common/helpers.php:261 +msgid "Your payment for this order is not yet complete. Here is the latest status:" +msgstr "Su pago por este pedido aún no está completo. Aquí está el último estado:" + +#: includes/common/helpers.php:256 +msgid "Payment Total:" +msgstr "Total de pago:" + +#: includes/common/helpers.php:253 +msgid "Transaction ID:" +msgstr "ID de transacción:" + +#: includes/common/helpers.php:249 +msgid "Payment Type:" +msgstr "Tipo de pago:" + +#: includes/common/helpers.php:246 +msgid "Payment Method:" +msgstr "Método de pago:" + +#: includes/common/helpers.php:242 +msgid "Order Notes:" +msgstr "Notas del Pedido:" + +#: includes/common/helpers.php:237 +msgid "Special Instructions:" +msgstr "Instrucciones especiales:" + +#: includes/common/helpers.php:232 +msgid "Tracking Number:" +msgstr "El número de rastreo:" + +#: includes/common/helpers.php:223 includes/common/helpers.php:226 +#: includes/common/helpers.php:228 +#: includes/common/shipping-modules/class-mp-shipping-api.php:406 +#: includes/common/shipping-modules/class-mp-shipping-api.php:428 +msgid "Shipping Method:" +msgstr "Método de envío:" + +#: includes/common/helpers.php:168 +msgid "No shipping required for this order." +msgstr "No se requiere envío para este pedido." + +#: includes/common/helpers.php:155 +msgid "Order Total:" +msgstr "Total del pedido:" + +#: includes/common/class-mp-order.php:1025 +msgid "Taxes:" +msgstr "Impuestos:" + +#: includes/common/class-mp-order.php:1032 includes/common/helpers.php:144 +msgid "Shipping:" +msgstr "Envío:" + +#: includes/public/class-mp-checkout.php:367 +msgid "Street address, P.O. box, company name, c/o" +msgstr "Direccion, P.O. box, nombre de la empresa, c / o" + +#: includes/admin/class-mp-orders-admin.php:314 +msgid "Shipping Info" +msgstr "Datos de envío" + +#: includes/public/class-mp-public.php:740 +msgid "Whoops, there was a problem loading up this file for your download. Please contact us for help." +msgstr "Vaya, hubo un problema al cargar este archivo para su descarga. Por favor, póngase en contacto con nosotros para obtener ayuda." + +#: includes/public/class-mp-public.php:683 +msgid "Sorry, our records show you've downloaded this file %d out of %d times allowed. Please contact us if you still need help." +msgstr "Lo sentimos, nuestros registros muestran que ha descargado este archivo %d fuera de %d veces permitidos. Por favor, póngase en contacto con nosotros si todavía necesita ayuda." + +#: includes/public/class-mp-public.php:634 +msgid "Sorry, your order has been marked as unpaid." +msgstr "Lo sentimos, su pedido ha sido marcado como no pagado." + +#: includes/public/class-mp-public.php:629 +msgid "Sorry, the link is invalid for this download." +msgstr "Lo sentimos, el enlace no es válido para esta descarga." + +#: includes/admin/class-mp-exporter-orders.php:15 +#: includes/admin/class-mp-products-admin.php:1172 +msgid "Cheatin’ uh?" +msgstr "Cheatin’ uh?" + +#: includes/public/class-mp-public.php:407 +#: includes/public/class-mp-short-codes.php:128 +msgid "Please enter a valid email address." +msgstr "Por favor, introduzca una dirección de correo electrónico válida." + +#: includes/admin/class-mp-ajax.php:191 +#: includes/admin/class-mp-products-admin.php:1821 +#: includes/admin/class-mp-products-admin.php:2010 +#: includes/admin/class-mp-products-admin.php:2267 +msgid "File URL" +msgstr "URL del archivo" + +#: includes/admin/class-mp-products-admin.php:1842 +msgid "External Link" +msgstr "Enlace externo" + +#: includes/admin/class-mp-products-admin.php:2177 +msgid "Add Variation" +msgstr "Añadir variación" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:126 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:289 +msgid "Inventory" +msgstr "Inventario" + +#: includes/admin/class-mp-products-admin.php:438 +#: includes/admin/class-mp-products-admin.php:578 +#: includes/admin/class-mp-products-admin.php:1552 +#: includes/admin/class-mp-products-admin.php:2053 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:134 +msgid "Sale Price" +msgstr "Precio de venta" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "Variation Name" +msgstr "Nombre de la variación" + +#: includes/admin/class-mp-products-admin.php:1931 +msgid "Product Details" +msgstr "Detalles del producto" + +#: includes/admin/class-mp-product-attributes-list-table.php:33 +msgid "Delete" +msgstr "Borrar" + +#: includes/admin/class-mp-orders-admin.php:1057 +msgid "Trashed" +msgstr "A la basura" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:231 +#: includes/admin/class-mp-orders-admin.php:1015 +#: includes/common/class-mp-order.php:1052 includes/common/helpers.php:97 +msgid "Total" +msgstr "Total" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1196 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:210 +#: includes/admin/class-mp-orders-admin.php:1014 +msgid "Discount" +msgstr "Descuento" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:221 +#: includes/admin/class-mp-orders-admin.php:1013 +#: includes/common/payment-gateways/_ideal.php:148 +#: includes/common/payment-gateways/_payway.php:134 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:108 +msgid "Tax" +msgstr "Impuesto" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:216 +#: includes/admin/class-mp-orders-admin.php:1012 +#: includes/admin/class-mp-products-admin.php:1958 +#: includes/admin/class-mp-products-admin.php:2198 +#: includes/admin/class-mp-store-settings-admin.php:114 +#: includes/admin/class-mp-store-settings-admin.php:230 +#: includes/common/class-mp-cart.php:717 includes/common/helpers.php:168 +#: includes/common/payment-gateways/_ideal.php:137 +#: includes/common/payment-gateways/_payway.php:116 +#: includes/public/class-mp-checkout.php:1304 +msgid "Shipping" +msgstr "Envío" + +#: includes/admin/class-mp-orders-admin.php:1011 +msgid "Items" +msgstr "Artículos" + +#: includes/admin/class-mp-orders-admin.php:1010 +msgid "From" +msgstr "Desde" + +#: includes/admin/class-mp-exporter-orders.php:154 +#: includes/admin/class-mp-orders-admin.php:1009 +#: includes/common/class-mp-gdpr.php:370 +msgid "Order Date" +msgstr "Fecha de la orden" + +#: includes/admin/class-mp-orders-admin.php:1008 +#: includes/common/class-mp-gdpr.php:366 +#: includes/common/template-functions.php:2134 +msgid "Order ID" +msgstr "Identificación del pedido" + +#: includes/addons/class-mp-addons-list-table.php:22 +#: includes/admin/class-mp-orders-admin.php:1007 +msgid "Status" +msgstr "Estado" + +#: includes/admin/class-mp-orders-admin.php:1155 +msgid "N/A" +msgstr "N/A" + +#: includes/admin/class-mp-dashboard-widgets.php:243 +#: includes/admin/class-mp-products-admin.php:464 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:142 +msgid "Sales" +msgstr "Ventas" + +#: includes/admin/class-mp-products-admin.php:463 +msgid "Stock" +msgstr "Inventario" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:85 +#: includes/admin/class-mp-ajax.php:176 includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:434 +#: includes/admin/class-mp-products-admin.php:462 +#: includes/admin/class-mp-products-admin.php:576 +#: includes/admin/class-mp-products-admin.php:1519 +#: includes/admin/class-mp-products-admin.php:1569 +#: includes/admin/class-mp-products-admin.php:1950 +#: includes/admin/class-mp-products-admin.php:2059 +#: includes/admin/class-mp-products-admin.php:2190 +#: includes/admin/class-mp-products-admin.php:2330 +#: includes/common/class-mp-cart.php:1415 includes/common/helpers.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:130 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:276 +msgid "Price" +msgstr "Precio" + +#: includes/admin/class-mp-ajax.php:173 +#: includes/admin/class-mp-products-admin.php:461 +#: includes/admin/class-mp-products-admin.php:1972 +#: includes/admin/class-mp-products-admin.php:2224 +msgid "SKU" +msgstr "SKU" + +#: includes/admin/class-mp-products-admin.php:459 +#: includes/admin/class-mp-products-admin.php:1793 +#: includes/admin/class-mp-products-admin.php:1805 +#: includes/admin/class-mp-products-admin.php:2163 +msgid "Variations" +msgstr "Variaciones" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:83 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:86 +#: includes/admin/class-mp-dashboard-widgets.php:134 +#: includes/admin/class-mp-products-admin.php:458 +#: includes/admin/class-mp-products-admin.php:837 +#: includes/admin/class-mp-shortcode-builder.php:689 +#: includes/admin/class-mp-shortcode-builder.php:856 +#: includes/admin/class-mp-shortcode-builder.php:1300 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:512 +#: includes/admin/widgets/ms-global-product-list.php:115 +#: includes/admin/widgets/product-list.php:211 +msgid "Product Name" +msgstr "Nombre del producto" + +#: includes/common/template-functions.php:2575 +msgid "Categorized in " +msgstr "Categorizado en" + +#: includes/admin/class-mp-orders-admin.php:305 +#: includes/common/payment-gateways/free_orders.php:176 +msgid "Payment Information" +msgstr "Información del pago" + +#: includes/admin/class-mp-exporter-orders.php:167 +#: includes/admin/class-mp-orders-admin.php:432 +#: includes/admin/class-mp-pages-admin.php:62 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:227 +#: includes/common/class-mp-gdpr.php:374 +#: includes/common/template-functions.php:175 +#: includes/common/template-functions.php:926 +msgid "Order Status" +msgstr "Estado del pedido" + +#. translators: %s: orders closed +#: marketpress.php:327 +msgid "Closed (%s)" +msgid_plural "Closed (%s)" +msgstr[0] "Cerrado (%s)" +msgstr[1] "Cerrados (%s)" + +#: includes/admin/class-mp-admin.php:249 +#: includes/admin/class-mp-orders-admin.php:375 +#: includes/admin/class-mp-orders-admin.php:951 +#: includes/admin/class-mp-orders-admin.php:1053 +#: includes/admin/class-mp-orders-admin.php:1065 +#: includes/common/class-mp-gdpr.php:330 +#: includes/common/class-mp-order.php:1019 marketpress.php:325 +msgid "Closed" +msgstr "Cerrado" + +#. translators: %s: shipped orders +#: marketpress.php:320 +msgid "Shipped (%s)" +msgid_plural "Shipped (%s)" +msgstr[0] "Enviado (%s)" +msgstr[1] "Enviados (%s)" + +#: includes/admin/class-mp-admin.php:248 +#: includes/admin/class-mp-orders-admin.php:376 +#: includes/admin/class-mp-orders-admin.php:950 +#: includes/admin/class-mp-orders-admin.php:1049 +#: includes/admin/class-mp-orders-admin.php:1064 +#: includes/common/class-mp-gdpr.php:329 +#: includes/common/class-mp-order.php:1002 marketpress.php:318 +msgid "Shipped" +msgstr "Enviado" + +#. translators: %s: paid orders +#: marketpress.php:313 +msgid "Paid (%s)" +msgid_plural "Paid (%s)" +msgstr[0] "Pagado (%s)" +msgstr[1] "Pagados (%s)" + +#: includes/admin/class-mp-admin.php:247 +#: includes/admin/class-mp-orders-admin.php:377 +#: includes/admin/class-mp-orders-admin.php:949 +#: includes/admin/class-mp-orders-admin.php:1045 +#: includes/admin/class-mp-orders-admin.php:1063 +#: includes/common/class-mp-gdpr.php:328 +#: includes/common/payment-gateways/2checkout.php:294 +#: includes/common/payment-gateways/_cubepoints.php:130 +#: includes/common/payment-gateways/authorizenet-aim.php:193 +#: includes/common/payment-gateways/free_orders.php:91 +#: includes/common/payment-gateways/mijireh.php:248 +#: includes/common/payment-gateways/paymill.php:273 +#: includes/common/payment-gateways/paypal-express.php:933 +#: includes/common/payment-gateways/paypal-express.php:967 +#: includes/common/payment-gateways/pin.php:258 +#: includes/common/payment-gateways/simplify.php:181 +#: includes/common/payment-gateways/stripe.php:368 +#: includes/common/payment-gateways/wepay.php:269 marketpress.php:311 +msgid "Paid" +msgstr "Pagado" + +#. translators: %s: orders received +#: marketpress.php:306 +msgid "Received (%s)" +msgid_plural "Received (%s)" +msgstr[0] "Recibido (%s)" +msgstr[1] "Recibidos (%s)" + +#: includes/admin/class-mp-admin.php:246 +#: includes/admin/class-mp-orders-admin.php:378 +#: includes/admin/class-mp-orders-admin.php:1041 +#: includes/admin/class-mp-orders-admin.php:1062 +#: includes/common/class-mp-gdpr.php:327 includes/common/class-mp-order.php:995 +#: includes/common/payment-gateways/payfast.php:244 marketpress.php:304 +msgid "Received" +msgstr "Recibido" + +#: marketpress.php:268 +msgid "Search Orders" +msgstr "Buscar ordenes" + +#: marketpress.php:267 +msgid "View Order" +msgstr "Ver pedido" + +#: marketpress.php:262 +msgid "Order" +msgstr "Orden" + +#: includes/admin/class-mp-dashboard-widgets.php:301 +#: includes/admin/class-mp-orders-admin.php:989 marketpress.php:261 +msgid "Orders" +msgstr "Ordenes" + +#: marketpress.php:228 +msgid "No Products found in Trash" +msgstr "No se encontraron productos en la basura" + +#: marketpress.php:227 +msgid "No Products Found" +msgstr "No se encontraron productos" + +#: marketpress.php:226 +msgid "Search Products" +msgstr "Buscar Productos" + +#: marketpress.php:225 marketpress.php:229 +msgid "View Product" +msgstr "Ver el producto" + +#: marketpress.php:224 +msgid "New Product" +msgstr "Nuevo producto" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1022 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:258 +#: marketpress.php:223 +msgid "Edit" +msgstr "Editar" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1019 +msgid "Create New" +msgstr "Crear nuevo" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:687 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:698 +#: marketpress.php:217 +msgid "Product" +msgstr "Producto" + +#: includes/admin/class-mp-dashboard-widgets.php:307 +#: includes/common/template-functions.php:173 +#: includes/common/template-functions.php:179 +#: includes/common/template-functions.php:902 +#: includes/multisite/template-functions.php:82 marketpress.php:216 +#: marketpress.php:219 +msgid "Products" +msgstr "Productos" + +#: includes/admin/class-mp-store-settings-admin.php:118 +#: includes/admin/widgets/product-tag-cloud.php:46 +#: includes/multisite/class-mp-admin-multisite.php:548 +msgid "Product Tags" +msgstr "Etiquetas de productos" + +#: includes/common/template-functions.php:2906 +#: includes/multisite/template-functions.php:449 +msgid "Product Category" +msgstr "Categoria del producto" + +#: includes/admin/class-mp-store-settings-admin.php:117 +#: includes/admin/widgets/categories.php:8 +#: includes/admin/widgets/categories.php:18 +#: includes/multisite/class-mp-admin-multisite.php:539 +msgid "Product Categories" +msgstr "Categorías de los Productos" + +#: includes/common/payment-gateways/stripe.php:332 +#: includes/common/template-functions.php:872 marketpress.php:218 +msgid "Store" +msgstr "Tienda" + +#: includes/admin/class-mp-pages-admin.php:60 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:209 +#: includes/admin/widgets/cart.php:8 includes/admin/widgets/cart.php:56 +#: includes/common/template-functions.php:174 +#: includes/common/template-functions.php:811 +msgid "Shopping Cart" +msgstr "Carrito de compra" + +#: includes/admin/class-mp-store-settings-admin.php:110 +#: includes/admin/class-mp-store-settings-admin.php:218 +msgid "Store Settings" +msgstr "Configuraciones de la tienda" + +#: includes/addons/class-mp-addons-list-table.php:128 marketpress.php:607 +msgid "Settings" +msgstr "Ajustes" + +#: includes/common/data.php:178 includes/common/data.php:190 +msgid "Your Order Has Been Shipped! (ORDERID)" +msgstr "Su orden ha sido enviada! (ORDERID)" + +#: includes/common/data.php:159 includes/common/data.php:166 +#: includes/common/data.php:172 +msgid "Your Order Confirmation (ORDERID)" +msgstr "La confirmación de su pedido (ORDERID)" + +#: includes/common/data.php:148 +msgid "

    Thank you for your order! We appreciate your business, and please come back often to check out our new products.

    " +msgstr "

    ¡Gracias por su orden! Apreciamos su negocio y por favor, vuelva con frecuencia para ver nuestros nuevos productos.

    " + +#: includes/common/data.php:147 +msgid "

    You are almost done! Please do a final review of your order to make sure everything is correct then click the \"Confirm Payment\" button.

    " +msgstr "

    ¡Estas casi listo! Haga una revisión final de su pedido para asegurarse de que todo está correcto y luego haga clic en el botón \"Confirmar pago\".

    " + +#: includes/common/data.php:145 +msgid "

    Please enter your shipping information in the form below to proceed with your order.

    " +msgstr "

    Ingrese su información de envío en el siguiente formulario para continuar con su pedido.

    " + +#: includes/common/data.php:143 +msgid "

    If you have any questions about your order please do not hesitate to contact us.

    " +msgstr "

    Si tiene alguna pregunta sobre su pedido, no dude en ponerse en contacto con nosotros.

    " + +#: includes/common/data.php:106 +msgid "tag" +msgstr "etiqueta" + +#: includes/common/data.php:105 +msgid "category" +msgstr "categoría" + +#: includes/common/data.php:104 +msgid "order-status" +msgstr "estado del pedido" + +#: includes/common/data.php:103 +msgid "shopping-cart" +msgstr "carrito de compras" + +#: includes/common/data.php:102 +msgid "products" +msgstr "productos" + +#. Translators: change default slugs here +#: includes/common/data.php:101 +msgid "store" +msgstr "tienda" \ No newline at end of file diff --git a/languages/mp-fi.mo b/languages/mp-fi.mo new file mode 100644 index 0000000000000000000000000000000000000000..23964cf665875c4100dc798a5fdaf584cac38985 GIT binary patch literal 11113 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 HZN&U9Ts)=> literal 0 HcmV?d00001 diff --git a/languages/mp-fi.po b/languages/mp-fi.po new file mode 100644 index 00000000..3c3387e0 --- /dev/null +++ b/languages/mp-fi.po @@ -0,0 +1,8954 @@ +# Translation of MarketPress in Finnish +# This file is distributed under the same license as the MarketPress package. +msgid "" +msgstr "" +"PO-Revision-Date: 2014-11-27 20:36:09+0000\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-Generator: GlotPress/2.3.1\n" +"Language: fi\n" +"Project-Id-Version: MarketPress\n" + +#: includes/public/class-mp-checkout.php:1285 +msgid "By clicking this checkbox you allow the website to process your personal data." +msgstr "" + +#: includes/common/class-mp-gdpr.php:382 +msgid "Order Info" +msgstr "" + +#: includes/common/class-mp-gdpr.php:268 +msgid "Shipping Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:267 +msgid "Shipping Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:266 +msgid "Shipping ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:265 +msgid "Shipping State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:264 +msgid "Shipping City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:263 +msgid "Shipping Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:262 +msgid "Shipping Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:261 +msgid "Shipping Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:260 +msgid "Shipping Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:259 +msgid "Shipping Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:258 +msgid "Shipping First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:254 +msgid "Billing Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:253 +msgid "Billing Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:252 +msgid "Billing ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:251 +msgid "Billing State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:250 +msgid "Billing City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:249 +msgid "Billing Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:248 +msgid "Billing Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:247 +msgid "Billing Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:246 +msgid "Billing Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:245 +msgid "Billing Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:244 +msgid "Billing First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:151 +msgid "Orders Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:139 +msgid "Customer Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:100 includes/common/class-mp-gdpr.php:116 +msgid "MarketPress User Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:81 +msgid "" +"In addition to standard WordPress session cookies, this site might be setting an\n" +"\t\t additional cookie to remember your cart settings. This cookie will last for one year." +msgstr "" + +#: includes/common/class-mp-gdpr.php:80 +msgid "Cookies" +msgstr "" + +#: includes/common/class-mp-gdpr.php:77 +msgid "" +"The following information will be collected in order to process orders: your name,\n" +"\t\t username, email address, avatar and profile URLs, address and phone number. This data can be\n" +"\t\t exported and removed." +msgstr "" + +#: includes/common/class-mp-gdpr.php:76 +msgid "Additional data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:71 +msgid "" +"This site might be using third party services and tools to process payments or/and\n" +"\t\t process shipping data when creating orders on the MarketPress store. These services include payment\n" +"\t\t gateways: 2Checkout, Authorize.net AIM, eWay shared payments, eWay Rapid 3.1 Payments, Mijireh,\n" +"\t\t Mollie, Paymill, PayPal, PIN, Simplify Commerce by MasterCard, Stripe and WePay; shipping gateways:\n" +"\t\t Fedex, UPS, USPS." +msgstr "" + +#: includes/common/class-mp-gdpr.php:70 +msgid "Third parties" +msgstr "" + +#: includes/admin/class-mp-admin.php:403 +msgid "Start creating store pages and products for your online shop here." +msgstr "" + +#: includes/admin/class-mp-admin.php:402 +msgid "Create Online Shop" +msgstr "" + +#: includes/admin/class-mp-admin.php:394 +msgid "Run Setup Wizard" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:234 +msgid "If having problems during invoice generation, add define( 'DOMPDF_ENABLE_HTML5PARSER', true ); to the wp-config.php file." +msgstr "" + +#: includes/public/class-mp-checkout.php:723 +msgid "Invalid Email" +msgstr "" + +#: includes/public/class-mp-checkout.php:721 +#: includes/public/class-mp-checkout.php:729 +msgid "This field is required" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:804 +msgid "This option changes the built-in css styles for store pages. For a custom css style, save your css file with the /* MarketPress Style: Your CSS Theme Name Here */ header line in the \"%s\" folder and it will appear in this list so you may select it. You should select \"None\" if you don't wish to use custom CSS styles or if you are using default theme templates or custom theme templates and css to make your own completely unique store design. For more information on custom theme templates click here »." +msgstr "" + +#: includes/public/class-mp-public.php:421 +#: includes/public/class-mp-short-codes.php:142 +msgid "Please enter a value greater than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:420 +#: includes/public/class-mp-short-codes.php:141 +msgid "Please enter a value less than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:419 +#: includes/public/class-mp-short-codes.php:140 +msgid "Please enter a value between {0} and {1}." +msgstr "" + +#: includes/public/class-mp-public.php:418 +#: includes/public/class-mp-short-codes.php:139 +msgid "Please enter a value between {0} and {1} characters long." +msgstr "" + +#: includes/public/class-mp-public.php:417 +#: includes/public/class-mp-short-codes.php:138 +msgid "Please enter at least {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:416 +#: includes/public/class-mp-short-codes.php:137 +msgid "Please enter no more than {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:415 +#: includes/public/class-mp-short-codes.php:136 +msgid "Please enter a value with a valid extension." +msgstr "" + +#: includes/public/class-mp-public.php:414 +#: includes/public/class-mp-short-codes.php:135 +msgid "Please enter the same value again." +msgstr "" + +#: includes/public/class-mp-public.php:413 +#: includes/public/class-mp-short-codes.php:134 +msgid "Please enter a valid credit card number." +msgstr "" + +#: includes/public/class-mp-public.php:412 +#: includes/public/class-mp-short-codes.php:133 +msgid "Please enter only digits." +msgstr "" + +#: includes/public/class-mp-public.php:411 +#: includes/public/class-mp-short-codes.php:132 +msgid "Please enter a valid number." +msgstr "" + +#: includes/public/class-mp-public.php:410 +#: includes/public/class-mp-short-codes.php:131 +msgid "Please enter a valid date (ISO)." +msgstr "" + +#: includes/public/class-mp-public.php:409 +#: includes/public/class-mp-short-codes.php:130 +msgid "Please enter a valid date." +msgstr "" + +#: includes/public/class-mp-public.php:408 +#: includes/public/class-mp-short-codes.php:129 +msgid "Please enter a valid URL." +msgstr "" + +#: includes/public/class-mp-public.php:406 +#: includes/public/class-mp-short-codes.php:127 +msgid "Please fix this field." +msgstr "" + +#: includes/public/class-mp-checkout.php:1287 +#: includes/public/class-mp-public.php:405 +#: includes/public/class-mp-short-codes.php:126 +msgid "This field is required." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:810 +msgid "None - Without Special CSS-styles" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:809 +msgid "Default - Using Default CSS-styles" +msgstr "" + +#: marketpress.php:739 +msgid "Enable multiple downloads per product" +msgstr "" + +#: marketpress.php:738 +msgid "Multiple Downloads" +msgstr "" + +#: includes/public/class-mp-checkout.php:715 +msgid "Invalid Zip Code" +msgstr "" + +#: includes/common/template-functions.php:2126 +msgid "Guest Email" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:195 +msgid "There was a problem finalizing your purchase. Please re-enter your credit card information and try again" +msgstr "" + +#: includes/common/class-mp-cart.php:565 includes/common/class-mp-order.php:600 +#: includes/common/helpers.php:111 +msgid "Download %1$s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:331 +msgid "Export products to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:328 +msgid "The import process uses the WordPress importer plugin." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:326 +msgid "Import / Export Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:325 +msgid "Export settings to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:324 +msgid "Import configuration" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:320 +msgid "Use the text below to export to a new installation. Or paste in the new configuration to import." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:318 +msgid "Import / Export Settings" +msgstr "" + +#. translators: URL to wp-admin/import.php +#: includes/admin/store-settings/class-mp-store-settings-import.php:266 +msgid "This importer is not installed. Please install importers from the main site." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:261 +msgid "Install Now" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:260 +msgid "Install %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:240 +msgid "Run Importer" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:239 +msgid "Run %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:258 +msgid "Import/Export" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1199 +msgid "Requires Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:737 +msgid "Optionally limit the user to some categories" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:671 +msgid "Should this coupon only be available to logged in users?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:670 +msgid "Require Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:655 +msgid "Mimimum number of products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:653 +msgid "Enter the minimum number of products in the cart that this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:648 +msgid "Can this coupon be limited to a number of products in the cart?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:334 +msgid "Add all values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:265 +msgid "Set as default variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:154 +msgid "Set Default" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:150 +msgid "More Info" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:40 +msgid "MarketPress - Quick Setup" +msgstr "" + +#: includes/public/class-mp-checkout.php:1399 +msgid "Proceed to checkout and create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1241 +#: includes/public/class-mp-checkout.php:1245 +msgid "Register account" +msgstr "" + +#: includes/public/class-mp-checkout.php:1233 +msgid "Register as customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:765 +msgid "

    Oops!

    Looks like you haven't added anything your cart. Let's go shopping!

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:763 +msgid "

    Oops!

    The cart is disabled.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing Information" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:214 +msgid "Global Currency" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:198 +msgid "Global Store Currency" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:507 +msgid "There are no shipping services available for this type of package in your location." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:168 +msgid "Using this USPS Shipping calculator requires requesting an Ecommerce API Username and Password. Get your free set of credentials here ». The password is no longer used for the API, just the username which you should enter below. The USPS test site has not yet been updated and currently doesn't work - you should just request activating your credentials with USPS and go live." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:339 +msgid "ZIP Code" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:334 +msgid "Last name" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:333 +msgid "First name" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:150 +msgid "These are the manual payment instructions to display on the order confirmation screen. TOTAL will be replaced with the order total and ORDERID will be replaced with Order ID." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:240 +msgid "You must login to Authorize.net merchant dashboard to obtain the API login ID and API transaction key. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:327 +msgid "
    1. Set the \"Return Method\" within Site Management to Header Redirect and set the \"Return URL\" to %s
    2. Set your notifications url to %s
    " +msgstr "" + +#: includes/common/data.php:191 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Also, digital downloads included in your order are now ready to be downloaded. Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:185 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order is now available to download! Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:184 +msgid "Your Order Is Ready To Be Downloaded! (ORDERID)" +msgstr "" + +#: includes/common/data.php:179 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:173 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received, your digital goods are ready to be downloaded and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:167 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received and your digital goods are ready to be downloaded. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:160 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +" Your order has been received, and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information: \n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/class-mp-product.php:638 +msgid "You can not add more items to cart." +msgstr "" + +#: includes/common/class-mp-product.php:635 +msgid "You can only add {0} to cart." +msgstr "" + +#: includes/common/class-mp-product.php:625 +msgid "This product has an order limit of %d." +msgstr "" + +#: includes/common/class-mp-order.php:1454 +msgid "Shipped: tracking code: %s" +msgstr "" + +#: includes/common/class-mp-order.php:1000 +#: includes/common/class-mp-order.php:1012 +msgid "Finished" +msgstr "" + +#: includes/common/class-mp-order.php:858 +msgid "Contact Details" +msgstr "" + +#: includes/common/class-mp-order.php:339 includes/common/data.php:155 +msgid "" +"A new order (ORDERID) was created in your store:\n" +"\n" +" ORDERINFOSKU\n" +"\n" +" SHIPPINGINFO\n" +"\n" +" PAYMENTINFO\n" +"\n" +msgstr "\n" + +#: includes/common/class-mp-cart.php:1858 +msgid "Add again" +msgstr "" + +#: includes/common/class-mp-cart.php:1852 +msgid "was removed from Shopping Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1242 +#: includes/public/class-mp-short-codes.php:160 +msgid "Cart update notice: this item has a limit per order or you have reached the stock limit." +msgstr "" + +#: includes/admin/widgets/product-list.php:235 +msgid "Show Only Featured Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:533 +msgid "If enabled, users won't be able to filter products per category and/or to order by release date/name/price." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:531 +msgid "Hide Products Filter?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:353 +msgid "Notification to registration email instead of billing email?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:322 +msgid "Order Shipped - Mixed orders (with both digital and physical products)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:289 +msgid "Order Shipped - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:224 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:194 +msgid "New Order - Mixed" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:161 +msgid "New Order - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:115 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:243 +msgid "Mixed orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:110 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:238 +msgid "Digital downloads orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:105 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:233 +msgid "Physical orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:96 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed.
    For orders placed with manual payment, emails set here will be overriden by the one configured in manual payments settings, under payments settings page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:89 +msgid "Customer Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:47 +msgid "Admin Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:566 +msgid "Only contact details" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:565 +msgid "Full billing info" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:561 +msgid "Details Collection" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:548 +msgid "Digital Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:515 +msgid "Apply Tax to Digital Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:236 +msgid "product (default)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:231 +msgid "If you are experiencing conflicts with other e-commerce plugins change this setting. This will change the internal post type of all your products. Please note that changing this option may break 3rd party themes or plugins." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1203 +msgid "Hide details" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1202 +msgid "Show all changes" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1184 +msgid "Version %s" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1161 +msgid "Current" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1131 +msgid "%s changelog" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:952 +msgid "We did not find any data for this plugin or theme..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:285 +msgid "Activate WPMU DEV Dashboard" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:279 +msgid "Just one more step - activate the WPMU DEV Dashboard plugin and you're all done!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:277 +msgid "Important updates are available for your WPMU DEV plugins/themes. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:273 +msgid "Just one more step to enable updates and support for %s!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:271 +msgid "Important updates are available for %s. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:264 +msgid "activate" +msgstr "" + +#: includes/admin/class-mp-admin.php:398 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:248 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:289 +msgid "Dismiss" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:247 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:288 +msgid "Saving..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:244 +msgid "Install Plugin" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:238 +msgid "Almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:236 +msgid "Important updates are available for your WPMU DEV plugins/themes. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:232 +msgid "%s is almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:230 +msgid "Important updates are available for %s. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:223 +msgid "install" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1428 +msgid "Sets the number of Tags to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1289 +msgid "How many products to display in the product list if \"paginate\" is set to false." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:739 +#: includes/admin/class-mp-shortcode-builder.php:906 +#: includes/admin/class-mp-shortcode-builder.php:1350 +msgid "Grid" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:735 +#: includes/admin/class-mp-shortcode-builder.php:902 +#: includes/admin/class-mp-shortcode-builder.php:1346 +msgid "Products will be displayed as list or grid." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:206 +msgid "Display a cloud or list of your global product tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:205 +msgid "Display a list of your global categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:204 +msgid "Display a list or grid of your global products." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:181 +msgid "Display a list of featured products." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1451 +msgid "Is Featured?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1444 +msgid "Featured Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:581 +#: includes/admin/class-mp-products-admin.php:1580 +msgid "% discount" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:579 +msgid "OR" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:460 +#: includes/admin/class-mp-products-admin.php:586 +#: includes/admin/widgets/product-list.php:217 +msgid "Featured" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:536 +#: includes/admin/class-mp-orders-admin.php:538 +msgid "Tracking Link" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:508 +msgid "Shipping Tax" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:356 +msgid "Shipping Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:352 +msgid "Taxes Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:349 +msgid "Products Total" +msgstr "" + +#: includes/admin/class-mp-ajax.php:366 +msgid "Oops! You entered an invalid username/email and or password." +msgstr "" + +#: includes/admin/class-mp-ajax.php:254 +msgid "Percentage Discount" +msgstr "" + +#: includes/admin/class-mp-ajax.php:234 +msgid "Limit the Amount of Items per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:214 +msgid "Unused Attributes" +msgstr "" + +#: includes/admin/class-mp-admin.php:82 +msgid "Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-admin.php:79 +msgid "MarketPress setup is not complete! Once you've completed this quick setup wizard you'll have a fully working online store - exciting! " +msgstr "" + +#: marketpress.php:263 +msgctxt "mp_order" +msgid "Add New" +msgstr "" + +#: marketpress.php:184 +msgctxt "product_tag" +msgid "Product Tag" +msgstr "" + +#: marketpress.php:183 +msgctxt "product_tag" +msgid "Product Tags" +msgstr "" + +#: marketpress.php:150 +msgctxt "product_category" +msgid "Product Category" +msgstr "" + +#: marketpress.php:149 +msgctxt "product_category" +msgid "Product Categories" +msgstr "" + +#. Author URI of the plugin/theme +msgid "http://premium.wpmudev.org" +msgstr "" + +#: marketpress.php:729 +msgid "Invoice PDF" +msgstr "" + +#: marketpress.php:712 +msgid "Grant access to themes and gateways depending on the user's Pro Site level" +msgstr "" + +#: marketpress.php:711 +msgid "Pro Sites" +msgstr "" + +#: marketpress.php:703 +msgid "Offer and accept coupon codes" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:687 +msgid "Install %s Pages" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:682 +msgid "Welcome to %s – Install pages required by the plugin automatically." +msgstr "" + +#: marketpress.php:668 +msgid "Your pages were created successfully." +msgstr "" + +#: marketpress.php:436 +msgid "Add a Product" +msgstr "" + +#: marketpress.php:271 +msgid "Parent Order" +msgstr "" + +#: marketpress.php:270 +msgid "No orders found in trash" +msgstr "" + +#: marketpress.php:269 +msgid "No orders found" +msgstr "" + +#: marketpress.php:265 +msgid "Edit Order" +msgstr "" + +#: marketpress.php:264 +msgid "Add New Order" +msgstr "" + +#: marketpress.php:220 marketpress.php:221 +msgid "Add New Product" +msgstr "" + +#: marketpress.php:197 +msgid "No product tags found" +msgstr "" + +#: marketpress.php:196 +msgid "Choose from the most used product tags" +msgstr "" + +#: marketpress.php:195 +msgid "Add or remove product tags" +msgstr "" + +#: marketpress.php:194 +msgid "Separate product tags with commas" +msgstr "" + +#: marketpress.php:193 +msgid "Search Product Tags" +msgstr "" + +#: marketpress.php:192 +msgid "Parent Product Tag:" +msgstr "" + +#: marketpress.php:191 +msgid "Parent Product Tag" +msgstr "" + +#: marketpress.php:190 +msgid "New Product Tag Name" +msgstr "" + +#: marketpress.php:189 +msgid "Add New Product Tag" +msgstr "" + +#: marketpress.php:188 +msgid "Update Product Tag" +msgstr "" + +#: marketpress.php:187 +msgid "View Product Tag" +msgstr "" + +#: marketpress.php:186 +msgid "Edit Product Tag" +msgstr "" + +#: marketpress.php:185 +msgid "All Product Tags" +msgstr "" + +#: marketpress.php:163 +msgid "No product categories found" +msgstr "" + +#: marketpress.php:162 +msgid "Choose from the most used product categories" +msgstr "" + +#: marketpress.php:161 +msgid "Add or remove product categories" +msgstr "" + +#: marketpress.php:160 +msgid "Separate product categories with commas" +msgstr "" + +#: marketpress.php:159 +msgid "Search Product Categories" +msgstr "" + +#: marketpress.php:158 +msgid "Parent Product Category:" +msgstr "" + +#: marketpress.php:157 +msgid "Parent Product Category" +msgstr "" + +#: marketpress.php:156 +msgid "New Product Category Name" +msgstr "" + +#: marketpress.php:155 +msgid "Add New Product Category" +msgstr "" + +#: marketpress.php:154 +msgid "Update Product Category" +msgstr "" + +#: marketpress.php:153 +msgid "View Product Category" +msgstr "" + +#: marketpress.php:152 +msgid "Edit Product Category" +msgstr "" + +#: marketpress.php:151 +msgid "All Product Categories" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Please fix the %s1 and then try submitting the form again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Oops! The form contains %s1 which %s2 been highlighted below." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:660 +msgid "have" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:659 +msgid "has" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:651 +msgid "Value must be less than {0}" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:650 +msgid "Please enter only letters and numbers" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:539 +msgid "Due to prolonged inactivity on this page, one or more settings were not saved. Please try again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:535 +msgid "Settings Saved" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-user-select.php:22 +msgid "Select Some Users" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-section.php:18 +msgid "Section Title" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:425 +msgid "Are you sure you want to delete this?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:30 +msgid "Add Row" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-post-select.php:24 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-taxonomy-select.php:22 +msgid "Select Posts" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:210 +msgid "Add Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:129 +msgid "Select the image that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:93 +msgid "Select image(s) that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:79 +msgid "Select the image that you would like to use for this variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:48 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:82 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:68 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:132 +msgid "Select Image" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:31 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:160 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:168 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:19 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:115 +msgid "Select File" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:30 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:18 +msgid "Select the file that you would like to use." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:357 +msgid "Create Variations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:356 +msgid "Add Another Variant" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Insert a value and press ENTER" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "(e.g. White, Grey, Red etc.)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Variation Values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:333 +msgid "Or create new variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "(e.g. Color)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:303 +msgid "You are about to delete selected variants.
    If you want to continue please confirm." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:302 +msgid "Confirmation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:290 +msgid "Insert quantity available. Empty for unlimited." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:281 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:294 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:307 +msgid "Cancel" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:280 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:293 +msgid "Update" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:277 +msgid "Insert the price i.e. 25 or 25.50" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:115 +msgid "Img." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:85 +msgid "Add New Variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:79 +msgid "Delete Variants" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:78 +msgid "Update Prices" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:77 +msgid "Update Inventory" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:76 +msgid "Update Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:75 +msgid "Bulk Actions" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:73 +msgid "Select bulk action" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:196 +msgid "Configure Store" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:195 +msgid "Configure shipping rates, emails and your store's appearance. " +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:190 +msgid "Add Product" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:189 +msgid "Add your first product for sale and get familiar with adding products." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:184 +msgid "Your store is almost ready for its first customers, but first it needs some products. Get started by adding products below, or jump straight into further configuring your store’s settings." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:183 +msgid "Woohoo! Your online store is up and running." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:160 +msgid "Finish Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:124 +msgid "And what metric system do you want to use?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:113 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:142 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:159 +msgid "Back" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:109 +msgid "Do you want to apply tax for your products? You can customize this for each product and variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:105 +msgid "What currency do you want to sell with?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:93 +msgid "And, which countries do you want to sell to?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:89 +msgid "Where is your online store based?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:80 +msgid "Payment Gateway" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:79 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:123 +msgid "Metric System" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:78 +msgid "Currency & Tax" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:77 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:88 +msgid "Locations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:70 +msgid "Choose where you want to sell your stuff and what currency. Easy!" +msgstr "" + +#: includes/public/class-mp-checkout.php:1400 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:58 +msgid "Continue" +msgstr "" + +#: includes/admin/class-mp-admin.php:83 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:53 +msgid "Skip this step, I'll do this manually" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:49 +msgid "Install store pages" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:44 +msgid "Once you've completed this quick setup wizard you'll have a fully working online store - exciting! Start
    by creating the default store pages for the online store such as the cart, checkout and store pages." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:42 +msgid "MarketPress adds a full online store to your website, with heaps of configuration options and addons
    to suit your needs. It's really easy to get going, and only takes a few minutes to setup!" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:41 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:69 +msgid "Welcome to MarketPress - Quick Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-advanced-select.php:23 +msgid "Select Some Options" +msgstr "" + +#: includes/wpmudev-metaboxes/class-wpmudev-field.php:694 +msgid "You must the WPMUDEV_Field::display() method in your form field class" +msgstr "" + +#: includes/public/class-mp-short-codes.php:636 +msgid "Only %s left in stock..." +msgstr "" + +#: includes/public/class-mp-short-codes.php:633 +msgid "Unlimited stock" +msgstr "" + +#: includes/public/class-mp-short-codes.php:430 +msgid "product_id must be defined" +msgstr "" + +#: includes/public/class-mp-checkout.php:1250 +msgid "An account with this username already exists" +msgstr "" + +#: includes/public/class-mp-checkout.php:1394 +msgid "Continue as Guest" +msgstr "" + +#: includes/public/class-mp-checkout.php:1393 +msgid "Proceed to checkout and you'll have an opportunity to create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1392 +#: includes/public/class-mp-checkout.php:1398 +msgid "First-time customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1386 +msgid "Login" +msgstr "" + +#: includes/public/class-mp-checkout.php:1379 +msgid "E-Mail Address/Username" +msgstr "" + +#: includes/public/class-mp-checkout.php:1377 +msgid "Sign in to speed up the checkout process." +msgstr "" + +#: includes/public/class-mp-checkout.php:1376 +msgid "Have an account?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1297 +msgid "Shipping address different than billing?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1184 +msgid "There are no available gateways to process this payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1160 +msgid "Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:1123 +msgid "Oops! An error occurred while processing your payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1051 +msgid "Next Step »" +msgstr "" + +#: includes/public/class-mp-checkout.php:1045 +msgid "« Previous Step" +msgstr "" + +#: includes/public/class-mp-checkout.php:873 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:657 +msgid "error" +msgstr "" + +#: includes/public/class-mp-checkout.php:872 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:658 +msgid "errors" +msgstr "" + +#: includes/public/class-mp-checkout.php:871 +msgid "

    Oops! We found %d %s in the form below.

    Fields that have errors are highlighted in red below. Entering into a field will reveal the actual error that occurred.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:870 +msgid "Please enter a valid first and last name" +msgstr "" + +#: includes/public/class-mp-checkout.php:869 +msgid " Please enter a valid card security code" +msgstr "" + +#: includes/public/class-mp-checkout.php:868 +msgid "Please enter a valid card expiration" +msgstr "" + +#: includes/public/class-mp-checkout.php:773 +msgid "Javascript is required in order to checkout. Please enable Javascript in your browser and then refresh this page." +msgstr "" + +#: includes/public/class-mp-checkout.php:588 +msgid "An unknown error occurred. Please try again." +msgstr "" + +#: includes/public/class-mp-checkout.php:386 +msgid "Town/City" +msgstr "" + +#: includes/public/class-mp-checkout.php:380 +msgid "Apartment, suite, unit, building, floor, etc" +msgstr "" + +#: includes/public/class-mp-checkout.php:376 +msgid "Address Line 2" +msgstr "" + +#: includes/public/class-mp-checkout.php:363 +msgid "Address Line 1" +msgstr "" + +#: includes/common/class-mp-order.php:770 +#: includes/public/class-mp-checkout.php:354 +msgid "Company" +msgstr "" + +#: includes/public/class-mp-checkout.php:330 +msgid "Last" +msgstr "" + +#: includes/public/class-mp-checkout.php:321 +msgid "First" +msgstr "" + +#: includes/public/class-mp-checkout.php:284 +msgid "State/Province" +msgstr "" + +#: includes/public/class-mp-checkout.php:83 +msgid "Review Order/Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing/Shipping Address" +msgstr "" + +#: includes/public/class-mp-checkout.php:80 +msgid "Login/Register" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:530 +msgid "Marketplace" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:523 +msgid "Global Marketplace Pages" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +msgid "Store Network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +#: includes/multisite/class-mp-admin-multisite.php:494 +msgid "Store Network Settings" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:440 +msgid "Set theme access permissions for network stores. For a custom css theme, save your css file with the MarketPress Theme: NAME header in the /marketpress/ui/themes/ folder and it will appear in this list so you may select it." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:361 +msgid "Choose a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:336 +msgid "%d products get indexed" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:285 +msgid "Product Indexer" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:281 +msgid "Please hold on..." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:280 +msgid "Index Products" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:279 +msgid "%d products have been indexed in whole network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:182 +msgid "Enable Global Shopping Cart?" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:178 +msgid "Limit Global Widgets/Shortcodes To Main Blog?" +msgstr "" + +#: includes/common/template-functions.php:2802 +#: includes/multisite/template-functions.php:355 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:97 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:114 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:143 +msgid "Next" +msgstr "" + +#: includes/common/template-functions.php:2801 +#: includes/multisite/template-functions.php:354 +msgid "Prev" +msgstr "" + +#: includes/common/template-functions.php:2597 +msgid "Tagged in " +msgstr "" + +#: includes/common/template-functions.php:2196 +#: includes/common/template-functions.php:2202 +#: includes/common/template-functions.php:2214 +#: includes/common/template-functions.php:2217 +msgid "Oops! We couldn't locate any orders matching that order number. Please verify the order number and try again." +msgstr "" + +#: includes/common/template-functions.php:2138 +msgid "Look Up" +msgstr "" + +#: includes/common/template-functions.php:1423 +msgid "Please choose a shipping method" +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "If you have your order ID you can look it up using the form below." +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "Order Search" +msgstr "" + +#: includes/common/template-functions.php:910 +#: includes/public/class-mp-checkout.php:1440 +msgid "Cart" +msgstr "" + +#: includes/common/template-functions.php:895 +msgid "[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:887 +msgid "[mp_global_categories_list]" +msgstr "" + +#: includes/common/template-functions.php:880 +msgid "" +"Welcome to our market place!\n" +"\n" +"Check out our network of products:\n" +"\n" +"[mp_list_global_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_global_categories_list]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:879 +msgid "Global Store" +msgstr "" + +#: includes/common/template-functions.php:873 +msgid "" +"Welcome to our online store! Feel free to browse around:\n" +"\n" +"[mp_store_navigation]\n" +"\n" +"Check out our most popular products:\n" +"\n" +"[mp_popular_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_list_categories]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_tag_cloud]" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:127 +msgid "If cart weight is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:126 +msgid "Cart Weight" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:222 +msgid "Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:206 +msgid "Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:196 +msgid "Retail Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:195 +msgid "Online Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:193 +msgid "Rates Request Type" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:189 +msgid "Maximum Weight Per Package" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:195 +#: includes/common/shipping-modules/mp-usps.php:236 +msgid "Enter your standard box sizes as LengthxWidthxHeight (e.g. 12x8x6) For each box defined enter the maximum weight it can contain. Note: the shipping prices this plugin calculates are estimates. If they are consistently too low or too high, please check that the list of boxes above and the product weights are accurate and complete." +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:187 +msgid "Handling Charge Per Box Shipped" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:176 +#: includes/common/shipping-modules/mp-ups.php:181 +msgid "Offered Services" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:165 +msgid "Shipper Number" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:151 +msgid "User ID" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:144 +msgid "Developer Kit Access Key" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:140 +msgid "Use Sandbox Mode?" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:123 +msgid "In order to use UPS, you will need a UPS Developer Kit access key and the UPS user ID and password associated with the access key. Set these up for free here. If this information is missing or incorrect, an error will appear during the checkout process and the buyer will not be able to complete the transaction." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:112 +msgid "If cart total is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:111 +msgid "Cart Total" +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:95 +#: includes/common/shipping-modules/mp-weight-rate.php:111 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Don't worry about sorting as this will be done automatically upon saving." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:170 +msgid "Method Title (visible for clients)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:409 +#: includes/common/shipping-modules/mp-ups.php:216 +#: includes/common/shipping-modules/mp-usps.php:251 +msgid "Max Weight (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:402 +#: includes/common/shipping-modules/mp-ups.php:209 +#: includes/common/shipping-modules/mp-usps.php:247 +msgid "Size (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:387 +msgid "Enter your standard box sizes as LengthxWidthxHeight ( 12x8x6 ) For each box defined enter the maximum weight it can contain. Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:361 +#: includes/common/shipping-modules/mp-usps.php:229 +msgid "Handling Charge per International Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:353 +msgid "International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:339 +#: includes/common/shipping-modules/mp-usps.php:213 +msgid "Handling Charge per Domestic Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:331 +msgid "Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:321 +msgid "When checked the customer can chose Residential or Commercial delivery with Residential the default. Unchecked it's only Residential rates." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:320 +msgid "Allow Commercial Delivery?" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:315 +msgid "Fedex 10kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:314 +msgid "Fedex 25kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:313 +msgid "Fedex Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:312 +msgid "Fedex Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:311 +msgid "Fedex Pak" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:310 +msgid "Fedex Tube" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:306 +msgid "Default Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:294 +msgid "Dropoff Type" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:290 +msgid "Meter ID" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:134 +msgid "This is a residential address" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:283 +msgid "There was an error processing your card: \"%s\". Please check your credit card info and try again." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:121 +msgid "Wepay makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept cards directly on your site. You don't need a merchant account or gateway. WePay handles everything including storing cards. Credit cards go directly to WePay's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:385 +msgid "There was an error processing your card - \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:356 +msgid "%s Store Purchase - Order ID - %s, Email - %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:251 +msgid "Stripe makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept Visa, MasterCard, American Express, Discover, JCB, and Diners Club cards directly on your site. You don't need a merchant account or gateway. Stripe handles everything, including storing cards, subscriptions, and direct payouts to your bank account. Credit cards go directly to Stripe's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:192 +msgid "ZMW - Zambian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:191 +msgid "ZAR - South African Rand" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:190 +msgid "YER - Yemeni Rial" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:189 +msgid "XPF - Cfp Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:188 +msgid "XOF - West African Cfa Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:187 +msgid "XCD - East Caribbean Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:186 +msgid "XAF - Central African Cfa Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:185 +msgid "WST - Samoan Tala" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:184 +msgid "VUV - Vanuatu Vatu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:183 +msgid "VND - Vietnamese Đồng" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:182 +msgid "VEF - Venezuelan Bolívar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:181 +msgid "UZS - Uzbekistani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:180 +msgid "UYI - Uruguayan Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:178 +msgid "UGX - Ugandan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:177 +msgid "UAH - Ukrainian Hryvnia" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:176 +msgid "TZS - Tanzanian Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:175 +msgid "TWD - New Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:174 +msgid "TTD - Trinidad and Tobago Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:172 +msgid "TOP - Tongan Paʻanga" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:171 +msgid "TJS - Tajikistani Somoni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:169 +msgid "SZL - Swazi Lilangeni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:168 +msgid "SVC - Salvadoran Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:167 +msgid "STD - São Tomé and Príncipe Dobra" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:166 +msgid "SRD - Surinamese Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:165 +msgid "SOS - Somali Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:164 +msgid "SLL - Sierra Leonean Leone" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:163 +msgid "SHP - Saint Helenian Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:160 +msgid "SCR - Seychellois Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:159 +msgid "SBD - Solomon Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:157 +msgid "RWF - Rwandan Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:156 +msgid "RUB - Russian Ruble" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:155 +msgid "RSD - Serbian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:154 +msgid "RON - Romanian Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:153 +msgid "QAR - Qatari Riyal" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:152 +msgid "PYG - Paraguayan Guaraní*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:151 +msgid "PLN - Polish Złoty" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:150 +msgid "PKR - Pakistani Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:149 +msgid "PHP - Philippine Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:148 +msgid "PGK - Papua New Guinean Kina" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:147 +msgid "PEN - Peruvian Nuevo Sol*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:146 +msgid "PAB - Panamanian Balboa*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:144 +msgid "NPR - Nepalese Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:142 +msgid "NIO - Nicaraguan Córdoba*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:141 +msgid "NGN - Nigerian Naira" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:140 +msgid "NAD - Namibian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:139 +msgid "MZN - Mozambican Metical" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:137 +msgid "MXN - Mexican Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:136 +msgid "MWK - Malawian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:135 +msgid "MVR - Maldivian Rufiyaa" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:134 +msgid "MUR - Mauritian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:133 +msgid "MRO - Mauritanian Ouguiya" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:132 +msgid "MOP - Macanese Pataca" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:131 +msgid "MNT - Mongolian Tögrög" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:130 +msgid "MKD - Macedonian Denar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:129 +msgid "MGA - Malagasy Ariary" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:128 +msgid "MDL - Moldovan Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:126 +msgid "LVL - Latvian Lats" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:124 +msgid "LSL - Lesotho Loti" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:123 +msgid "LRD - Liberian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:122 +msgid "LKR - Sri Lankan Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:121 +msgid "LBP - Lebanese Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:120 +msgid "LAK - Lao Kip*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:119 +msgid "KZT - Kazakhstani Tenge" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:118 +msgid "KYD - Cayman Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:117 +msgid "KRW - South Korean Won" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:116 +msgid "KMF - Comorian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:115 +msgid "KHR - Cambodian Riel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:114 +msgid "KGS - Kyrgyzstani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:113 +msgid "KES - Kenyan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:111 +msgid "JMD - Jamaican Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:110 +msgid "ISK - Icelandic Króna" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:109 +msgid "INR - Indian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:108 +msgid "ILS - Israeli New Sheqel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:107 +msgid "IDR - Indonesian Rupiah" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:105 +msgid "HTG - Haitian Gourde" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:103 +msgid "HNL - Honduran Lempira*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:101 +msgid "GYD - Guyanese Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:100 +msgid "GTQ - Guatemalan Quetzal*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:99 +msgid "GNF - Guinean Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:98 +msgid "GMD - Gambian Dalasi" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:97 +msgid "GIP - Gibraltar Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:96 +msgid "GEL - Georgian Lari" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:94 +msgid "FKP - Falkland Islands Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:93 +msgid "FJD - Fijian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:91 +msgid "ETB - Ethiopian Birr" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:90 +msgid "EGP - Egyptian Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:89 +msgid "EEK - Estonian Kroon*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:88 +msgid "DZD - Algerian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:87 +msgid "DOP - Dominican Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:85 +msgid "DJF - Djiboutian Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:84 +msgid "CZK - Czech Koruna*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:83 +msgid "CVE - Cape Verdean Escudo*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:82 +msgid "CRC - Costa Rican Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:81 +msgid "COP - Colombian Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:80 +msgid "CNY - Chinese Renminbi Yuan" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:79 +msgid "CLP - Chilean Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:77 +msgid "CDF - Congolese Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:76 +msgid "CAD - Canadian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:75 +msgid "BZD - Belize Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:74 +msgid "BWP - Botswana Pula" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:73 +msgid "BSD - Bahamian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:72 +msgid "BRL - Brazilian Real*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:71 +msgid "BOB - Bolivian Boliviano*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:70 +msgid "BND - Brunei Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:69 +msgid "BMD - Bermudian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:68 +msgid "BIF - Burundian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:67 +msgid "BGN - Bulgarian Lev" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:66 +msgid "BDT - Bangladeshi Taka" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:65 +msgid "BBD - Barbadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:64 +msgid "BAM - Bosnia & Herzegovina Convertible Mark" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:63 +msgid "AZN - Azerbaijani Manat" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:62 +msgid "AWG - Aruban Florin" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:61 +msgid "AUD - Australian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:60 +msgid "ARS - Argentine Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:59 +msgid "AOA - Angolan Kwanza*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:58 +msgid "ANG - Netherlands Antillean Gulden" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:57 +msgid "AMD - Armenian Dram" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:56 +msgid "ALL - Albanian Lek" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:55 +msgid "AFN - Afghan Afghani*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:54 +msgid "AED - United Arab Emirates Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:345 +msgid "Skrill balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:327 +msgid "Skrill IPN message received." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:283 +msgid "Skrill" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:278 +msgid "Pending payment" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:144 +msgid "The secret word must match the word submitted in the \"Merchant Tools\" section of your Skrill account." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:134 +msgid "You must use your valid Skrill merchant email. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:133 +msgid "Skrill Email" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:123 +msgid "Resell your inventory via Skrill.com (Moneybookers)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:95 +msgid "ZAR - South-African Rand" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:93 +msgid "TWD - Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:92 +msgid "TRY - New Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:91 +msgid "TND - Tunisian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:90 +msgid "THB - Thailand Baht" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:89 +msgid "SKK - Slovakian Koruna" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:86 +#: includes/common/payment-gateways/stripe.php:158 +msgid "SAR - Saudi Riyal" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:85 +msgid "RSD - Serbian dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:83 +msgid "QAR - Qatari Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:81 +msgid "OMR - Omani Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:80 +msgid "NOK - Norwegian Krone " +msgstr "" + +#: includes/common/payment-gateways/skrill.php:78 +#: includes/common/payment-gateways/stripe.php:138 +msgid "MYR - Malaysian Ringgit" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:77 +#: includes/common/payment-gateways/stripe.php:127 +msgid "MAD - Moroccan Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:74 +msgid "KRW - South-Korean Won" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:72 +msgid "JOD - Jordanian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:70 +msgid "INR - Indian Rupee" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:63 +msgid "EEK - Estonian Kroon" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:56 +msgid "AED - Utd. Arab Emir. Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:52 +msgid "Turkish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:51 +msgid "Swedish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:50 +msgid "Spanish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:49 +msgid "Russian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:48 +msgid "Romainian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:47 +msgid "Polish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:46 +msgid "Italian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:45 +msgid "Greek" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:44 +msgid "German" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:43 +msgid "French" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:42 +msgid "Finnish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:41 +msgid "English" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:40 +msgid "Dutch" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:39 +msgid "Danish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:38 +msgid "Czech" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:37 +msgid "Chinese" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:201 +msgid "There was an error processing your card: %s. Please re-enter your credit card info and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:278 +msgid "
  • There was an error processing your card: \"%s\". Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:274 +msgid "
  • There was an error processing your card. Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:177 +#: includes/common/payment-gateways/stripe.php:279 +msgid "Publishable Key" +msgstr "" + +#: includes/common/payment-gateways/pin.php:163 +msgid "API Credentials?" +msgstr "" + +#: includes/common/payment-gateways/pin.php:147 +msgid "PIN makes it easy to start accepting credit card payments with Australia’s first all-in-one online payment system. Accept all major credit cards directly on your site. Your sales proceeds are deposited to any Australian bank account, no merchant account required." +msgstr "" + +#: includes/common/payment-gateways/pin.php:57 +#: includes/common/payment-gateways/stripe.php:179 +msgid "USD - United States Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:455 +msgid "Email Footer" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:445 +msgid "Email Header" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:416 +msgid "Partner" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:409 +msgid "Vendor" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:852 +#: includes/common/payment-gateways/paypal-express.php:1126 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences\t section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:749 +msgid "Page Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:744 +msgid "Header Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:739 +msgid "Header Border Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:734 +msgid "Header Image" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:680 +msgid "Locale" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:624 +#: includes/common/payment-gateways/paypal-express.php:658 +msgid "Merchant Email" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:645 +msgid "Paypal Express Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:603 +msgid "Paypal Express Network Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:861 +msgid "Application ID (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:854 +msgid "Signature (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:847 +msgid "API Password (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:839 +msgid "API Username (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:832 +msgid "Signature (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:825 +msgid "API Password (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:817 +msgid "API Username (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:799 +msgid "This message is displayed at the top of the gateway settings page to store admins. It's a good place to inform them of your fees or put any sales messages." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:787 +msgid "Please enter your PayPal email address or business ID you want to recieve fees at." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:786 +msgid "PayPal E-mail" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:772 +msgid "Fees to Collect (%)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:375 +#: includes/public/class-mp-checkout.php:341 +msgid "Email Address" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:299 +msgid "Sorry, your order was not completed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:126 +#: includes/common/payment-gateways/paypal-express.php:780 +msgid "You will be redirected to the PayPal site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:90 +#: includes/common/payment-gateways/skrill.php:94 +msgid "USD - U.S. Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:89 +msgid "TRY - Turkish lira" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:88 +#: includes/common/payment-gateways/stripe.php:170 +msgid "THB - Thai Baht" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:87 +msgid "TWD - Taiwan New Dollars" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:86 +#: includes/common/payment-gateways/pin.php:59 +#: includes/common/payment-gateways/skrill.php:88 +#: includes/common/payment-gateways/stripe.php:162 +msgid "SGD - Singapore Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:84 +msgid "RUB - Russian Rubles" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:82 +msgid "PHP - Philippine Pesos" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:81 +#: includes/common/payment-gateways/pin.php:58 +#: includes/common/payment-gateways/skrill.php:79 +#: includes/common/payment-gateways/stripe.php:145 +msgid "NZD - New Zealand Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:79 +msgid "MXN - Mexican Peso" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:78 +msgid "MYR - Malaysian Ringgits" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:77 +#: includes/common/payment-gateways/pin.php:64 +#: includes/common/payment-gateways/skrill.php:73 +#: includes/common/payment-gateways/stripe.php:112 +msgid "JPY - Japanese Yen" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:75 +#: includes/common/payment-gateways/pin.php:63 +#: includes/common/payment-gateways/skrill.php:66 +#: includes/common/payment-gateways/stripe.php:102 +msgid "HKD - Hong Kong Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:73 +msgid "GBP - Pound Sterling" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:68 +#: includes/common/payment-gateways/pin.php:62 +#: includes/common/payment-gateways/skrill.php:59 +msgid "CAD - Canadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:67 +msgid "BRL - Brazilian Real" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:66 +#: includes/common/payment-gateways/pin.php:56 +#: includes/common/payment-gateways/skrill.php:57 +msgid "AUD - Australian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:288 +msgid "There was an error processing your card: \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:163 +msgid "When running on a live site, Paymill recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:161 +#: includes/common/payment-gateways/pin.php:157 +#: includes/common/payment-gateways/simplify.php:103 +#: includes/common/payment-gateways/stripe.php:260 +#: includes/common/payment-gateways/wepay.php:153 +msgid "Force SSL?" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:151 +msgid "Accept Visa, Mastercard, Maestro UK, Discover and Solo cards directly on your site. You don't need a merchant account or gateway. Credit cards go directly to Paymill's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:131 +msgid "CVV2" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:72 +#: includes/common/payment-gateways/pin.php:61 +#: includes/common/payment-gateways/skrill.php:65 +#: includes/common/payment-gateways/stripe.php:95 +msgid "GBP - British Pound" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:71 +#: includes/common/payment-gateways/stripe.php:173 +msgid "TRY - Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:70 +#: includes/common/payment-gateways/paypal-chained-payments.php:85 +#: includes/common/payment-gateways/skrill.php:87 +#: includes/common/payment-gateways/stripe.php:161 +msgid "SEK - Swedish Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:69 +#: includes/common/payment-gateways/skrill.php:84 +msgid "RON - Romanian Leu New" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:68 +#: includes/common/payment-gateways/paypal-chained-payments.php:83 +#: includes/common/payment-gateways/skrill.php:82 +msgid "PLN - Polish Zloty" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:67 +#: includes/common/payment-gateways/paypal-chained-payments.php:80 +#: includes/common/payment-gateways/stripe.php:143 +msgid "NOK - Norwegian Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:66 +#: includes/common/payment-gateways/skrill.php:75 +#: includes/common/payment-gateways/stripe.php:125 +msgid "LTL - Lithuanian Litas" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:65 +#: includes/common/payment-gateways/paypal-chained-payments.php:69 +#: includes/common/payment-gateways/skrill.php:60 +#: includes/common/payment-gateways/stripe.php:78 +msgid "CHF - Swiss Franc" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:64 +#: includes/common/payment-gateways/skrill.php:76 +msgid "LVL - Latvian Lat" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:63 +#: includes/common/payment-gateways/paypal-chained-payments.php:74 +#: includes/common/payment-gateways/skrill.php:69 +msgid "ILS - Israeli Shekel" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:62 +#: includes/common/payment-gateways/skrill.php:71 +msgid "ISK - Iceland Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:61 +#: includes/common/payment-gateways/paypal-chained-payments.php:76 +#: includes/common/payment-gateways/skrill.php:68 +#: includes/common/payment-gateways/stripe.php:106 +msgid "HUF - Hungarian Forint" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:60 +#: includes/common/payment-gateways/paypal-chained-payments.php:71 +#: includes/common/payment-gateways/skrill.php:62 +#: includes/common/payment-gateways/stripe.php:86 +msgid "DKK - Danish Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:59 +#: includes/common/payment-gateways/skrill.php:67 +#: includes/common/payment-gateways/stripe.php:104 +msgid "HRK - Croatian Kuna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:58 +#: includes/common/payment-gateways/paypal-chained-payments.php:70 +#: includes/common/payment-gateways/skrill.php:61 +msgid "CZK - Czech Koruna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:57 +#: includes/common/payment-gateways/skrill.php:58 +msgid "BGN - Bulgarian Leva" +msgstr "" + +#: includes/common/payment-gateways/payflow/class-mp-gateway-worker-payflow.php:123 +msgid "There was an error connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:344 +msgid "This setting will log all PayFast communication to the \"payfast.log\" file." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:342 +msgid "Log Debugging Info?" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:335 +msgid "DO NOT INPUT A VALUE UNLESS YOU HAVE SET ONE IN THE SETTINGS SECTION OF YOUR PAYFAST SETTINGS." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:333 +msgid "PayFast Passphrase" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:323 +msgid "You can find your credentials on your integration page." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:321 +msgid "PayFast Merchant Credentials" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:311 +msgid "PayFast Mode" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:308 +msgid "PayFast is a payments processing service for South Africa. We make it safe for buyers to send money and easy for sellers to receive money. More Info »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:306 +msgid "PayFast Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:285 +msgid "Your payment via PayFast for this order totaling %s is complete. The transaction number is %s." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:278 +msgid "Your payment via PayFast for this order totaling %s is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:124 +msgid "Your PayFast transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:82 +#: includes/common/payment-gateways/payfast.php:83 +msgid "PayFast" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:157 +msgid "API error: - \"%s\"" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:198 +msgid "The payment request is under process" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:140 +msgid "Order: #" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:116 +msgid "You will be redirected to the Mollie site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:73 +msgid "%sMollie%s provides a fully PCI Compliant and secure way to collect payments via iDeal, Credit Card, Bancontact / Mister Cash, SOFORT Banking, Overbooking, Bitcoin, PayPal, paysafecard and AcceptEmail." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:53 +#: includes/common/payment-gateways/mollie.php:54 +#: includes/common/payment-gateways/mollie.php:195 +#: includes/common/payment-gateways/mollie.php:245 +msgid "Mollie" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:50 +#: includes/common/payment-gateways/paymill.php:56 +#: includes/common/payment-gateways/paypal-chained-payments.php:72 +#: includes/common/payment-gateways/pin.php:60 +#: includes/common/payment-gateways/skrill.php:64 +#: includes/common/payment-gateways/stripe.php:92 +msgid "EUR - Euro" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:306 +msgid "Access Key" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:300 +msgid "You must login to the Mijireh.com dashboard to obtain the Access Key." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:299 +msgid "Credentials" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:289 +msgid "Mijireh Checkout provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:269 +msgid "Mijireh Error: " +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:89 +msgid "You will be redirected to the Mijireh.com site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:87 +msgid "Your Mijireh transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:42 +#: includes/common/payment-gateways/mijireh.php:43 +#: includes/common/payment-gateways/mijireh.php:324 +msgid "Mijireh" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:145 +msgid "These are the manual payment instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:189 +msgid "This is the email text to send to those who have made free order checkouts. You should include your free order instructions / information here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:183 +msgid "This is the free order information to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:182 +msgid "Confirmation User Information" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:177 +msgid "This is the information to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:163 +msgid "If enabled, all free orders will be automatically marked as paid." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:159 +msgid "Payment Status" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:149 +msgid "This gateway is automatically activated if order totalling 0 and it can't be disabled" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:35 +#: includes/common/payment-gateways/free_orders.php:36 +#: includes/common/payment-gateways/free_orders.php:89 +msgid "Free Order" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:34 +#: includes/common/payment-gateways/free_orders.php:197 +msgid "Free Orders" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:515 +msgid "Sandbox API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:266 +#: includes/common/payment-gateways/eway31.php:542 +msgid "eWay Rapid 3.1 Payments (beta)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:403 +msgid "Hosted Payment Page Language" +msgstr "" + +#: includes/common/payment-gateways/eway.php:373 +msgid "Note when testing in sandbox mode it will use the default eWay test API credentials. Also, please note that cart total needs to be a whole number (e.g. 10.00) in order to generate a successful transaction, otherwise the transaction will fail." +msgstr "" + +#: includes/common/payment-gateways/eway.php:267 +msgid "You will be redirected to https://www.eway.com.au to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:380 +msgid "You have chosen to checkout using %s. Please confirm your order details and click \"Submit Order\" when finished." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:272 +#: includes/common/payment-gateways/paymill.php:131 +#: includes/common/payment-gateways/stripe.php:231 +msgid "Security Code " +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Enter in MM/YYYY or MM/YY format" +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Expiration" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:321 +msgid "Delim Data" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:307 +#: includes/common/payment-gateways/paypal-payflow.php:456 +msgid "This text will appear as the footer of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:287 +#: includes/common/payment-gateways/paypal-payflow.php:440 +msgid "Email Customer (on success)" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:278 +msgid "Authorize.net default is \",\". Otherwise, get this from your credit card processor. If the transactions are not going through, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:277 +msgid "Delimeter Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:193 +msgid "Held For Review" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:310 +#: includes/common/payment-gateways/payfast.php:314 +msgid "Test" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:300 +#: includes/common/payment-gateways/pin.php:170 +#: includes/common/payment-gateways/stripe.php:272 +msgid "Secret Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:283 +msgid "Select Your Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:97 +msgid "Your payment will be processed by the iDEAL network" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:208 +msgid "These are the CubePoints to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:203 +msgid "These are the CubePoints instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:266 +msgid "If enabled, all API calls will be made to https://test.bitpay.com." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:263 +msgid "Use Test Mode?" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:259 +msgid "If checked, response fron bitpay will be stored in log file, keep it disabled unless required." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:256 +msgid "Enable Debug Log" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:249 +msgid "Full Notifications" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:231 +#: includes/common/payment-gateways/eway31.php:499 +#: includes/common/payment-gateways/eway31.php:526 +#: includes/common/payment-gateways/mollie.php:83 +#: includes/common/shipping-modules/mp-fedex.php:269 +msgid "API Key" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:222 +msgid "You can now accept a payment from any country on Earth, with no risk of fraud. To use Bitpay, you need to signup on Bitpay. \\n After completing the signup process, you can get api keys at Bitpay API key. You can read more about Bitpay at Bitpay API. \\n Bitpay requires SSL(https) for payment notifications to work." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:61 +msgid "You will be redirected to bitpay.com, for bitcoin payment. It is completely safe." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:346 +msgid "You must login to the 2Checkout vendor dashboard to obtain the seller ID and secret word. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:345 +#: includes/common/payment-gateways/authorizenet-aim.php:239 +#: includes/common/payment-gateways/paymill.php:168 +#: includes/common/payment-gateways/paypal-express.php:704 +#: includes/common/payment-gateways/simplify.php:80 +#: includes/common/payment-gateways/stripe.php:265 +#: includes/common/payment-gateways/wepay.php:158 +msgid "API Credentials" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:325 +#: includes/common/payment-gateways/_bitpay.php:220 +#: includes/common/payment-gateways/_cubepoints.php:185 +#: includes/common/payment-gateways/_ideal.php:268 +#: includes/common/payment-gateways/_payway.php:255 +#: includes/common/payment-gateways/authorizenet-aim.php:219 +#: includes/common/payment-gateways/eway.php:352 +#: includes/common/payment-gateways/eway31.php:460 +#: includes/common/payment-gateways/free_orders.php:147 +#: includes/common/payment-gateways/manual-payments.php:126 +#: includes/common/payment-gateways/mijireh.php:287 +#: includes/common/payment-gateways/mollie.php:71 +#: includes/common/payment-gateways/paymill.php:149 +#: includes/common/payment-gateways/paypal-chained-payments.php:344 +#: includes/common/payment-gateways/paypal-payflow.php:376 +#: includes/common/payment-gateways/pin.php:145 +#: includes/common/payment-gateways/simplify.php:69 +#: includes/common/payment-gateways/skrill.php:121 +#: includes/common/payment-gateways/stripe.php:249 +#: includes/common/payment-gateways/wepay.php:119 +#: includes/common/shipping-modules/mp-fedex.php:243 +#: includes/common/shipping-modules/mp-flat-rate.php:63 +#: includes/common/shipping-modules/mp-pickup.php:140 +#: includes/common/shipping-modules/mp-table-rate.php:94 +#: includes/common/shipping-modules/mp-ups.php:122 +#: includes/common/shipping-modules/mp-usps.php:167 +#: includes/common/shipping-modules/mp-weight-rate.php:110 +msgid "%s Settings" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:136 +msgid "You will be redirected to the 2Checkout site to finalize your payment." +msgstr "" + +#: includes/common/helpers.php:169 includes/public/class-mp-checkout.php:1277 +msgid "Billing" +msgstr "" + +#: includes/common/helpers.php:144 +msgid "FREE" +msgstr "" + +#: includes/common/helpers.php:134 +msgid "Coupons:" +msgstr "" + +#: includes/common/helpers.php:95 +msgid "Qty" +msgstr "" + +#: includes/common/helpers.php:94 +msgid "Sku" +msgstr "" + +#: includes/common/data.php:59 +msgid "Zip Code" +msgstr "" + +#: includes/common/class-mp-taxes.php:336 +msgid "Standard Table" +msgstr "" + +#: includes/common/class-mp-product.php:2698 +msgid "Tweet" +msgstr "" + +#: includes/common/class-mp-product.php:2321 +msgid "Notification Preferences: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2320 +msgid "Edit Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2318 +msgid "Link: %s

    " +msgstr "" + +#: includes/common/class-mp-product.php:2317 +msgid "Current Inventory: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2316 +msgid "Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2314 +msgid "This message is being sent to notify you of low stock of a product in your online store according to your preferences.

    " +msgstr "" + +#: includes/common/class-mp-product.php:1817 +msgid "" +msgstr "" + +#: includes/common/class-mp-product.php:1427 +#: includes/common/class-mp-product.php:1430 +msgid "(tax incl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1422 +#: includes/common/class-mp-product.php:1425 +msgid "(tax excl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1300 +#: includes/common/class-mp-product.php:1315 +msgid "%s each" +msgstr "" + +#: includes/common/class-mp-product.php:988 +msgid "Choose Options" +msgstr "" + +#: includes/common/class-mp-product.php:526 +msgid "Choose a %s" +msgstr "" + +#: includes/common/class-mp-product.php:284 +#: includes/common/class-mp-product.php:292 +#: includes/common/class-mp-product.php:615 +msgid "We're sorry, we only have %d of this item in stock right now." +msgstr "" + +#: includes/common/class-mp-order.php:1456 +msgid "Shipped: Track Shipment" +msgstr "" + +#: includes/common/class-mp-order.php:1049 +msgid "Order Received" +msgstr "" + +#: includes/common/class-mp-order.php:1014 +msgid "In Process" +msgstr "" + +#: includes/common/class-mp-order.php:969 +msgid "Order #" +msgstr "" + +#: includes/common/class-mp-order.php:866 +msgid "Copy billing address to shipping address" +msgstr "" + +#: includes/common/class-mp-order.php:822 +#: includes/public/class-mp-checkout.php:1314 +msgid "Special Instructions" +msgstr "" + +#: includes/common/class-mp-order.php:817 +#: includes/common/payment-gateways/stripe.php:335 +msgid "Email" +msgstr "" + +#: includes/common/class-mp-order.php:813 +#: includes/common/payment-gateways/stripe.php:341 +#: includes/public/class-mp-checkout.php:416 +msgid "Phone" +msgstr "" + +#: includes/common/class-mp-order.php:791 +#: includes/common/payment-gateways/stripe.php:337 +msgid "State" +msgstr "" + +#: includes/common/class-mp-order.php:776 +msgid "Address 1" +msgstr "" + +#: includes/common/class-mp-order.php:766 +msgid "Last Name" +msgstr "" + +#: includes/common/class-mp-order.php:762 +msgid "First Name" +msgstr "" + +#: includes/common/class-mp-installer.php:677 +msgid "MarketPress requires a database update to continue working correctly. Go to update page" +msgstr "" + +#: includes/common/class-mp-installer.php:657 +msgid "MarketPress performed a quick automatic update successfully!" +msgstr "" + +#: includes/common/class-mp-installer.php:653 +msgid "Perform Update" +msgstr "" + +#: includes/common/class-mp-installer.php:647 +msgid "Please update each subsite in your WordPress network where you have older version of the MarketPress plugin." +msgstr "" + +#: includes/common/class-mp-installer.php:641 +msgid "Depending on the amount of products you have, this update could take quite some time. Please keep this window open while the update completes. If you have products with multiple variations, the progress bar may move slower, please don't exit the window." +msgstr "" + +#: includes/common/class-mp-installer.php:632 +msgid "Product Metadata" +msgstr "" + +#: includes/common/class-mp-installer.php:601 +msgid "MarketPress requires a database update to continue working correctly.
    Below you will find a list of items that require your attention." +msgstr "" + +#: includes/common/class-mp-installer.php:600 +msgid "Update MarketPress Data" +msgstr "" + +#: includes/common/class-mp-installer.php:530 +msgid "Update Data" +msgstr "" + +#: includes/common/class-mp-installer.php:67 +msgid "Complete!" +msgstr "" + +#: includes/common/class-mp-installer.php:66 +msgid "Upgrading Database...Please Wait..." +msgstr "" + +#: includes/common/class-mp-installer.php:64 +msgid "An error occurred while updating. Please refresh this page and try again." +msgstr "" + +#: includes/common/class-mp-cart.php:2447 +msgid "Some items in your cart have fallen below the quantity you currently have in your cart. We have adjusted the quantity in your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:2443 +msgid "Some items in your cart are no longer available. We have removed these items from your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:1566 +msgid "item" +msgstr "" + +#: includes/common/class-mp-cart.php:1563 +#: includes/common/class-mp-cart.php:1568 +msgid "items" +msgstr "" + +#: includes/common/class-mp-cart.php:1363 +msgid "Items/Products added to Cart will show here." +msgstr "" + +#: includes/common/class-mp-cart.php:1362 +msgid "Your shopping cart is empty." +msgstr "" + +#: includes/common/class-mp-cart.php:1357 +msgid "View Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1241 +#: includes/common/class-mp-cart.php:1298 +#: includes/public/class-mp-short-codes.php:159 +msgid "Adding..." +msgstr "" + +#: includes/common/class-mp-cart.php:1033 +msgid "Continue Shopping?" +msgstr "" + +#: includes/common/class-mp-cart.php:961 +msgid "Secure Checkout
    Shopping is always safe and secure." +msgstr "" + +#: includes/common/class-mp-cart.php:959 +msgid "You are about to submit your order!
    Please review your order details before continuing. You will be charged immediately upon clicking \"Submit Order\"." +msgstr "" + +#: includes/common/class-mp-cart.php:956 +msgid "Continue »" +msgstr "" + +#: includes/common/class-mp-cart.php:955 +msgid "Submit Order" +msgstr "" + +#: includes/common/class-mp-cart.php:818 +msgid "There are no items in your cart - go add some !" +msgstr "" + +#: includes/common/class-mp-cart.php:816 +msgid "The cart is disabled." +msgstr "" + +#: includes/common/class-mp-cart.php:735 +msgid "Estimated %s" +msgstr "" + +#: includes/common/class-mp-cart.php:717 +msgid "Estimated Shipping" +msgstr "" + +#: includes/common/class-mp-cart.php:697 +msgid "Product Total" +msgstr "" + +#: includes/common/class-mp-cart.php:670 includes/common/class-mp-cart.php:672 +msgid "Estimated Total (%s, %s)" +msgstr "" + +#: includes/common/class-mp-cart.php:668 +msgid "Estimated Total (%s)" +msgstr "" + +#: includes/common/class-mp-cart.php:666 includes/common/class-mp-cart.php:752 +msgid "Estimated Total" +msgstr "" + +#: includes/admin/widgets/product-list.php:247 +msgid "Show Thumbnail Placeholder image (if image is not set)" +msgstr "" + +#: includes/admin/widgets/cart.php:73 +msgid "Display product price" +msgstr "" + +#: includes/admin/widgets/cart.php:71 +msgid "Display product quantity" +msgstr "" + +#: includes/admin/widgets/cart.php:69 +msgid "Display product image" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:93 +msgid "General Shipping Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:773 +msgid "If you are having conflicts with the lightbox library from your theme or another plugin you should uncheck this." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:772 +msgid "Use Built-In Lightbox for Images?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:762 +msgid "Disable Large Image Display?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:688 +msgid "Show Product Image?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:682 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:684 +msgid "Show Tags List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:676 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:678 +msgid "Show Categories List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:671 +msgid "If enabled, description excerpt will be added above Add to cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:669 +msgid "Show Excerpt?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:665 +msgid "If enabled, users will be able to choose how many of the product they want to purchase before adding to their cart. If not checked, quantity could be change later on the cart page." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:663 +msgid "Show Quantity Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:649 +msgid "Settings related to the display of individual product pages." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:648 +msgid "Product Page Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:605 +msgid "Related Products Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:573 +msgid "Show Related Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:568 +msgid "Related Product Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:549 +msgid "Order Status Entries Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:510 +msgid "Sort Products By" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:497 +msgid "Products Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:492 +msgid "Paginate Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:478 +msgid "Excerpts Length" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:473 +msgid "Show Excerpts?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:450 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:746 +msgid "Image Alignment" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:412 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:708 +msgid "Custom Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:401 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:697 +msgid "Large - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:400 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:696 +msgid "Medium - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:399 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:695 +msgid "Thumbnail - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:397 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:693 +msgid "Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:386 +msgid "Select default placeholder image thumbnail when product image is not available (if empty, plugin's built-in image will be used)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:380 +msgid "Show default product placeholder thumbnail when product image is not available?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:374 +msgid "Show Product Thumbnail?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:369 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:658 +msgid "Redirect to cart page for immediate checkout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:368 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:657 +msgid "Stay on current product page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:366 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:655 +msgid "MarketPress supports two \"flows\" for adding products to the shopping cart. After adding a product to their cart, two things can happen:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:365 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:654 +msgid "Add To Cart Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:355 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:628 +msgid "Four" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:354 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:627 +msgid "Three" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:353 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:626 +msgid "Two" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:625 +msgid "One" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:349 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:622 +msgid "Set the number of products that show up in a grid row to best fit your theme" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:348 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:621 +msgid "How many products per row?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:342 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:609 +msgid "Display as grid" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:341 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:608 +msgid "Display as list" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:339 +msgid "Product Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:334 +msgid "Settings related to the display of product lists/grids." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:333 +msgid "Product List/Grid Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:314 +msgid "Show Twitter Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:309 +msgid "Twitter" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:303 +msgid "Show Share Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:297 +msgid "Recommend" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:296 +msgid "Like" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:294 +msgid "Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:283 +msgid "Show Facebook Like Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:278 +msgid "Facebook" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:257 +msgid "Show \"Pin It\" Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:252 +msgid "Pinterest" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:246 +msgid "Social Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:193 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:202 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:211 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:220 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:229 +#: includes/multisite/class-mp-admin-multisite.php:532 +#: includes/multisite/class-mp-admin-multisite.php:541 +#: includes/multisite/class-mp-admin-multisite.php:550 +msgid "Choose a Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:191 +msgid "This page will be used as the root for your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:168 +#: includes/multisite/class-mp-admin-multisite.php:586 +msgid "Create Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "uncropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "cropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:87 +#: includes/multisite/class-mp-admin-multisite.php:121 +#: includes/multisite/class-mp-admin-multisite.php:620 +msgid "An error occurred while creating the store page. Please try again." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:66 +msgid "Choose the gateway(s) that you would like to be available for checkout." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:65 +msgid "Enabled Gateways" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:78 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:146 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:179 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:213 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:274 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:307 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:341 +msgid "Text" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:71 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:139 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:172 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:206 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:267 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:300 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:334 +msgid "Subject" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:52 +msgid "Notification Email" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:510 +msgid "Enabling this option will display label `excl. tax` or `incl. tax` after price" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:509 +msgid "Display tax label?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:504 +msgid "Enabling this option will show Price + Tax, eg. if your price is 100 and your tax 20, your price will be 120" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:416 +#: includes/multisite/class-mp-admin-multisite.php:234 +msgid "Price Format" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:366 +msgid "Enabling this field will display a textbox on the shipping checkout page for users to enter special instructions for their order. Useful for product personalization, etc." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:365 +msgid "Show Special Instructions Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:360 +msgid "Universal" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:359 +msgid "Old" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1167 +#: includes/admin/store-settings/class-mp-store-settings-general.php:358 +msgid "New" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:353 +msgid "If you already use Google Analytics for your website, you can track detailed ecommerce information by enabling this setting. Choose whether you are using the new asynchronous or old tracking code. Before Google Analytics can report ecommerce activity for your website, you must enable ecommerce tracking on the profile settings page for your website. Also keep in mind that some gateways do not reliably show the receipt page, so tracking may not be accurate in those cases. It is recommended to use the PayPal gateway for the most accurate data. More information »" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:347 +msgid "Do you want to display the product price on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:346 +msgid "Show product price on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:340 +msgid "Do you want to display the product quantity on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:339 +msgid "Show product quantity on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:333 +msgid "Do you want to display the product image on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:332 +msgid "Show product image on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:327 +msgid "This option hide floating Mini Cart in top right corner." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:326 +msgid "Disable Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:316 +msgid "If unchecked your Orders admin page will be hidden" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:315 +msgid "Show admin Orders page?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:309 +msgid "Disable Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:303 +msgid "Force Login?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:297 +msgid "Hide Out of Stock Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:555 +msgid "This will prevent multiples of the same downloadable product form being added to the cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:554 +msgid "Limit Digital Products Per-order?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:268 +msgid "If you're having issues downloading large files and have worked with your hosting provider to increase your memory limits, try enabling this - just keep in mind, it's not as secure!" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:267 +msgid "Use Alternative Download Method?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:252 +msgid "Download Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:230 +msgid "Change product post type" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:51 +msgid "%s Capabilities" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-addons.php:47 +msgid "Store Settings: Add Ons: %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:254 +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:56 +msgid "Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Edit Product Attribute %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:246 +msgid "Exporters" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:238 +msgid "Short Codes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:207 +msgid "An appropriate message for key \"%s\" could not be found." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:204 +msgid "Product attribute updated successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:203 +msgid "Product attribute added successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +msgid "Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +#: includes/admin/store-settings/class-mp-store-settings-addons.php:121 +msgid "Store Settings: Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "Store Settings: Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:118 +msgid "Store Settings: Product Tags" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:117 +msgid "Store Settings: Product Categories" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Store Settings: Product Attributes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +msgid "Store Settings: Payments" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:114 +msgid "Store Settings: Shipping" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +#: includes/admin/class-mp-store-settings-admin.php:226 +msgid "Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +msgid "Store Settings: Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:112 +msgid "Store Settings: Presentation" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:111 +msgid "Store Settings: General" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1489 +msgid "Select a Product" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1447 +msgid "Reset to Defaults" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1446 +msgid "Insert Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1202 +#: includes/admin/class-mp-shortcode-builder.php:1227 +#: includes/admin/class-mp-shortcode-builder.php:1252 +msgid "The text to show in the link." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1196 +#: includes/admin/class-mp-shortcode-builder.php:1221 +#: includes/admin/class-mp-shortcode-builder.php:1246 +msgid "Whether to return a clickable link or url." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1177 +msgid "Whether to display the cart only on store pages or not." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1171 +msgid "Whether to show or hide the product price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1165 +msgid "Whether to show or hide the product quantity." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1159 +msgid "Whether to show or hide the product image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1153 +msgid "The text displayed before the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1147 +msgid "The title of the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1058 +#: includes/admin/class-mp-shortcode-builder.php:1121 +msgid "A label to prepend to the price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1032 +#: includes/admin/class-mp-shortcode-builder.php:1127 +msgid "What context for display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1004 +msgid "Set the alignment of the image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:998 +msgid "Set a custom pixel width/height. If omitted defaults to the size set by \"context\"." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:993 +msgid "Widget" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:988 +msgid "What context for preset size options." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:982 +#: includes/admin/class-mp-shortcode-builder.php:1026 +#: includes/admin/class-mp-shortcode-builder.php:1052 +#: includes/admin/class-mp-shortcode-builder.php:1077 +#: includes/admin/class-mp-shortcode-builder.php:1096 +#: includes/admin/class-mp-shortcode-builder.php:1115 +msgid "The ID of the product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:963 +msgid "Whether to display the product meta (e.g. price, buy button)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:738 +#: includes/admin/class-mp-shortcode-builder.php:905 +#: includes/admin/class-mp-shortcode-builder.php:958 +#: includes/admin/class-mp-shortcode-builder.php:992 +#: includes/admin/class-mp-shortcode-builder.php:1035 +#: includes/admin/class-mp-shortcode-builder.php:1130 +#: includes/admin/class-mp-shortcode-builder.php:1349 +msgid "List" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:957 +#: includes/admin/class-mp-shortcode-builder.php:991 +#: includes/admin/class-mp-shortcode-builder.php:1034 +#: includes/admin/class-mp-shortcode-builder.php:1129 +msgid "Single" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:953 +msgid "Whether and what context of image size to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:948 +msgid "Full" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:943 +msgid "Whether and what type of content to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:937 +msgid "Whether to display the product title." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:931 +msgid "The ID of the product to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:747 +#: includes/admin/class-mp-shortcode-builder.php:914 +msgid "Hide" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:746 +#: includes/admin/class-mp-shortcode-builder.php:913 +msgid "Show" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:744 +#: includes/admin/class-mp-shortcode-builder.php:911 +msgid "Whether or not to show the product filters." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:724 +#: includes/admin/class-mp-shortcode-builder.php:891 +#: includes/admin/class-mp-shortcode-builder.php:1335 +msgid "Limits list to a specific product tag." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:713 +#: includes/admin/class-mp-shortcode-builder.php:880 +#: includes/admin/class-mp-shortcode-builder.php:1324 +msgid "Limits list to a specific product category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:706 +#: includes/admin/class-mp-shortcode-builder.php:873 +#: includes/admin/class-mp-shortcode-builder.php:1317 +msgid "Direction to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:684 +#: includes/admin/class-mp-shortcode-builder.php:851 +#: includes/admin/class-mp-shortcode-builder.php:1295 +msgid "What field to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:678 +#: includes/admin/class-mp-shortcode-builder.php:845 +#: includes/admin/class-mp-shortcode-builder.php:1283 +msgid "How many products to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:672 +#: includes/admin/class-mp-shortcode-builder.php:839 +#: includes/admin/class-mp-shortcode-builder.php:1277 +msgid "The page number to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:666 +#: includes/admin/class-mp-shortcode-builder.php:833 +#: includes/admin/class-mp-shortcode-builder.php:1271 +msgid "Whether to paginate the product list. This is useful to only show a subset." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:808 +msgid "How many related items to show." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:790 +msgid "How to relate the products" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:784 +msgid "The product to show related items for." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:765 +msgid "The maximum number of products to display" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:647 +msgid "Comma separated list of tags (term_id) to include. For example, include=5,27 means tags that have the term_id 5 or 27 will be the only tags displayed. Defaults to include everything." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:641 +msgid "Comma separated list of tags (term_id) to exclude. For example, exclude=5,27 means tags that have the term_id 5 or 27 will NOT be displayed. Defaults to exclude nothing." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:633 +#: includes/admin/class-mp-shortcode-builder.php:1420 +msgid "Sort order." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:629 +#: includes/admin/class-mp-shortcode-builder.php:1416 +msgid "Count" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:626 +#: includes/admin/class-mp-shortcode-builder.php:1413 +msgid "Order of the tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:620 +msgid "The text/space between tags)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:616 +msgid "UL with a class of \"wp-tag-cloud\"" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:615 +msgid "separated by whitespace defined by \"separator\" parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:613 +msgid "Format of the cloud display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:607 +msgid "The number of actual tags to display in the cloud. (Use \"0\" to display all tags.)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:601 +msgid "Unit of measure as pertains to the smallest and largest values. This can be any CSS length value, e.g. pt, px, em, %." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:595 +msgid "The text size of the tag with the largest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:589 +msgid "The text size of the tag with the smallest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:570 +msgid "The \"tabindex\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:564 +msgid "The \"name\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:558 +msgid "The \"id\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:552 +msgid "Which category ID is selected." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:540 +msgid "The max depth. This is ignored unless hierarchical is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:536 +#: includes/multisite/template-functions.php:816 +msgid "No Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:414 +#: includes/admin/class-mp-shortcode-builder.php:546 +msgid "Calculates link or post counts by including items from child categories. If show_counts and hierarchical are true this is automatically set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:409 +msgid "Value of n (some number) specifies the depth (or level) to descend in displaying Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:408 +msgid "Show only top level Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:407 +msgid "All Categories displayed in flat (no indent) form (overrides hierarchical)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:406 +msgid "All Categories and child Categories (Default)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:402 +msgid "This parameter controls how many levels in the hierarchy of Categories are to be included in the list of Categories. NOTE: The \"hierarchical\" argument, which is disabled by default, will override the depth argument, unless it is true. When the argument is false, it will display all of the categories. When it is enabled it will use the value in the \"depth\" argument." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:396 +#: includes/admin/class-mp-shortcode-builder.php:1394 +msgid "Sets the number of Categories to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:390 +#: includes/admin/class-mp-shortcode-builder.php:534 +msgid "Set the text to show when no categories are listed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:384 +msgid "Set the title and style of the outer list item. If present but empty, the outer list item will not be displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:378 +#: includes/admin/class-mp-shortcode-builder.php:528 +msgid "Display sub-categories as inner list items (below the parent list item) or inline." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:368 +#: includes/admin/class-mp-shortcode-builder.php:511 +msgid "Exclude category-tree from the results. The parameter include must be empty. If the hierarchical parameter is true, then use exclude instead of exclude_tree." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:354 +msgid "Only include these categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:340 +#: includes/admin/class-mp-shortcode-builder.php:356 +#: includes/admin/class-mp-shortcode-builder.php:370 +#: includes/admin/class-mp-shortcode-builder.php:496 +#: includes/admin/class-mp-shortcode-builder.php:513 +msgid "Select Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:338 +#: includes/admin/class-mp-shortcode-builder.php:494 +msgid "Exclude one or more categories from the results. The parameter include must be empty." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:332 +msgid "Set a URI for an image (usually an rss feed icon) to act as a link to each categories' rss-2 feed. This parameter overrides the feed parameter. There is no default for this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:320 +msgid "Display a link to each category's rss-2 feed and set the link text to display. The default is no text and no feed displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:313 +#: includes/admin/class-mp-shortcode-builder.php:487 +msgid "Any" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:307 +#: includes/admin/class-mp-shortcode-builder.php:481 +msgid "Only display categories that are children of the category identified by this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:301 +msgid "Sets whether a category's description is inserted into the title attribute of the links created (i.e. <a title=\"<em>Category Description</em>\" href=\"...)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:295 +#: includes/admin/class-mp-shortcode-builder.php:475 +msgid "Toggles the display of categories with no posts." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:289 +#: includes/admin/class-mp-shortcode-builder.php:469 +#: includes/admin/class-mp-shortcode-builder.php:1388 +msgid "Toggles the display of the current count of posts in each category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:279 +msgid "Style to display the categories list in. A value of list displays the categories as list items while none generates no special display method (the list items are separated by
    tags)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:269 +#: includes/admin/class-mp-shortcode-builder.php:449 +#: includes/admin/class-mp-shortcode-builder.php:1378 +msgid "Sort order for categories (either ascending or descending)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:259 +#: includes/admin/class-mp-shortcode-builder.php:439 +#: includes/admin/class-mp-shortcode-builder.php:1368 +msgid "Sort categories alphabetically, by unique Category ID, or by the count of posts in that Category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:253 +#: includes/admin/class-mp-shortcode-builder.php:433 +msgid "If a value is entered, causes the display of a link to all categories if the style is set to list." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:219 +msgid "Select an Action" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:217 +msgid "What would you like to do?" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:216 +#: includes/admin/class-mp-shortcode-builder.php:1522 +msgid "Add E-Commerce Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:197 +msgid "Display a list of links to your store pages." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:196 +msgid "Display a link or url to the order status page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:195 +msgid "Display a link or url to the current products list page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:194 +msgid "Display a link or url to the current store page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:193 +msgid "Display a link or url to the current shopping cart page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:192 +msgid "Display the cart widget." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:191 +msgid "Display the full product meta box with price and buy now/add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:190 +msgid "Display the product stock." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:189 +msgid "Display the product SKU number(s)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:188 +msgid "Display the product price (and sale price)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:187 +msgid "Display the buy or add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:186 +msgid "Display the featured image of a given product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:185 +msgid "Display a single product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:184 +msgid "Display a list of products according to preference." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:183 +msgid "Display products related to the one being viewed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:182 +msgid "Display a list of popular products ordered by sales." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:180 +msgid "Display an HTML dropdown of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:179 +msgid "Display an HTML list of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:178 +msgid "Display a cloud or list of your product tags." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:655 +msgid "Setup your payment gateway" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:643 +#: includes/admin/class-mp-setup-wizard.php:649 +msgid "Other Gateways" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:617 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:150 +msgid "Select which calculated shipping methods the customer will be able to choose from." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:601 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:134 +#: includes/public/class-mp-checkout.php:82 +msgid "Shipping Method" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:568 +msgid "I want to charge shipping" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:523 +#: includes/admin/store-settings/class-mp-store-settings-general.php:503 +msgid "Show Price + Tax?" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:507 +msgid "I.e. Taxes, VAT, GST, etc" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:491 +#: includes/admin/store-settings/class-mp-store-settings-general.php:471 +msgid "Current Rates" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:473 +msgid "Default Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:434 +#: includes/admin/class-mp-setup-wizard.php:442 +#: includes/admin/store-settings/class-mp-store-settings-general.php:386 +#: includes/admin/store-settings/class-mp-store-settings-general.php:394 +#: includes/multisite/class-mp-admin-multisite.php:204 +#: includes/multisite/class-mp-admin-multisite.php:212 +msgid "Select a Currency" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:414 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:105 +msgid "Choose Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:411 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:103 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:104 +msgid "All Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:410 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:102 +msgid "These are the countries that you will ship to." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:409 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:101 +msgid "Target Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:401 +msgid "Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:387 +#: includes/admin/store-settings/class-mp-store-settings-general.php:640 +msgid "Zip/Postal Code Label" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:352 +#: includes/admin/store-settings/class-mp-store-settings-general.php:606 +msgid "Select a State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:335 +#: includes/admin/store-settings/class-mp-store-settings-general.php:590 +msgid "Select A Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:332 +#: includes/admin/store-settings/class-mp-store-settings-general.php:587 +msgid "Select a Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:324 +msgid "Location" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:304 +#: includes/admin/class-mp-setup-wizard.php:312 +#: includes/admin/class-mp-store-settings-admin.php:129 +#: includes/admin/class-mp-store-settings-admin.php:262 +msgid "Quick Setup" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:289 +msgid "MarketPress setup is not complete! Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2479 +msgid "Enter your product name here" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2440 +msgid "Select a %s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2426 +msgid "Each product variation needs to have product attributes assigned to it so the system knows how to differentiate one product variation from the other. It is important that you assign a category to this product before choosing any attributes." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2409 +msgid "If you would like this variation to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2320 +msgid "Sale Price (if applicable)" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2281 +msgid "If you would like the description to be different than the main product enter it here." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2229 +msgid "Image" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2202 +#: includes/admin/class-mp-shortcode-builder.php:226 +msgid "Attributes" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2166 +msgid "Create your product variations here. You can reorder variations by using the number to left of each variation, or delete one by clicking the \"x\" to the right of each variation. NOTE: The variation that shows up first in this list will be considered the \"main variation\". The details from this variation will be used in product listings." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2061 +#: includes/admin/class-mp-products-admin.php:2332 +msgid "Value must be less than regular price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2043 +#: includes/admin/class-mp-products-admin.php:2306 +msgid "Regular Price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2023 +#: includes/admin/class-mp-products-admin.php:2286 +msgid "External URL" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1988 +#: includes/admin/class-mp-products-admin.php:2245 +msgid "Enter the quantity that you have available to sell." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1987 +#: includes/admin/class-mp-products-admin.php:2244 +msgid "Inventory Count" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1977 +#: includes/admin/class-mp-products-admin.php:2234 +msgid "Track Inventory?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1871 +msgid "%1$sProduct Images%2$s %3$sAdd images of the product. The first image on the list is the featured image for this product (you can reorder images on the list)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1806 +msgid "Add variations for this product. e.g. If you are selling t-shirts, you can create Color & Size variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1804 +msgid "%3$sAdd variations for%2$s %1$sProduct%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1776 +msgid "This product has a multiple variations %1$s(e.g. Multiple colors, sizes)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1775 +msgid "This is a unique product without variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1700 +msgid "Extra Shipping Cost %1$s(if applicable)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1659 +#: includes/admin/class-mp-products-admin.php:2112 +#: includes/admin/class-mp-products-admin.php:2359 +msgid "Weight" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1636 +#: includes/admin/class-mp-products-admin.php:2098 +#: includes/admin/class-mp-products-admin.php:2416 +msgid "Please enter a valid tax rate" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1531 +msgid "Limit Per Order %1$s(limit the number of the item a shopper can buy per order)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1513 +msgid "SKU %1$s(Stock Keeping Unit)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "%1$sPrice, Inventory & Variants%2$s %3$sSet price, manage inventory and create Product Variants (if appropriate for your product).%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "Product Variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1480 +msgid "External / Affiliate Link" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1471 +msgid "Digital Download" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1470 +msgid "Physical / Tangible Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1464 +msgid "Product Kind %1$s(Physical Product, Digital, etc)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1426 +msgid "Choose Products" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1420 +msgid "If you would like, you can choose specific related products instead of using the ones generated by MarketPress" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1019 +msgid "Changes saved successfully" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:826 +msgid "Option cannot be saved. Try again." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:821 +msgid "Option saved successfully." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:467 +msgid "Img" +msgstr "" + +#: includes/admin/class-mp-product-attributes-list-table.php:57 +msgid "Product attribute(s) deleted successfully." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:162 +msgid "- Create New Variation -" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:144 +msgid "Only lowercase letters and dashes (-) are allowed." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:139 +msgid "If a slug is not entered, it will be generated automatically. Max 32 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:138 +#: includes/admin/class-mp-product-attributes-list-table.php:23 +msgid "Slug" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:130 +msgid "Max 45 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:123 +msgid "Use the numbers on the left to sort. To delete - click the \"X\" to the right of each row." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:122 +msgid "Attribute Options" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:121 +msgid "Add Option" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:105 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:523 +msgid "Sort Order" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:87 +msgid "Alphabetical" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:86 +msgid "ID" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:84 +msgid "Select how the options will be sorted." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:82 +msgid "Sort By" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:75 +msgid "The name of the attribute (e.g. color, size, etc)" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:74 +msgid "Attribute Name" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:69 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Product Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Product Attributes" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:71 +msgid "You can choose to make this page one of the following core store pages." +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:66 +msgid "Network Store Base" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:61 +msgid "Checkout Page" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:52 +msgid "Store Page Settings" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1108 +msgid "Display billing/shipping info for this customer" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1097 +msgid "View order “%s”" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1072 +msgid "Flag as:" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:952 +msgid "Move To Trash" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:948 +msgid " Received" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:927 +msgid "Enter coupon code here" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:812 +msgid "The order status could not be updated due to unexpected error. Please try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:740 +msgid "An invalid bulk action was requested. Please go back and try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:692 +msgid "The order status for order ID %1$s was updated successfully." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:688 +msgid "Order statuses successfully updated." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:530 +msgid "Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:518 +msgid "Actual Shipping Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:513 +msgid "Method Paid For" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:504 +msgid "Amount Collected" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:477 +msgid "DHL" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:408 +msgid "There is no IPN history to show at this time" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:345 +msgid "Type" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:343 +msgid "Gateway" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:301 +#: includes/common/template-functions.php:528 +msgid "Order History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:291 +msgid "IPN History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:283 +msgid "Customer Info" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:279 +msgid "Order Details" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:157 +msgid "All Dates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:320 +msgid "Add Pages to Menu" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:318 +msgid "Add-ons" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:317 +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "User Capabilities" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:316 +#: includes/admin/class-mp-setup-wizard.php:631 +#: includes/admin/store-settings/class-mp-store-settings-payments.php:50 +msgid "Payment Gateways" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:315 +msgid "Shipping Rates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:312 +msgid "Configure" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:309 +#: includes/admin/class-mp-products-admin.php:466 +#: includes/admin/class-mp-shortcode-builder.php:797 +msgid "Tags" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:308 +#: includes/admin/class-mp-products-admin.php:465 +msgid "Categories" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:300 +msgid "Manage" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:297 +msgid "Here's some quick links to manage your store and products." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:288 +msgid "low in stock" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:287 +msgid "%s product" +msgid_plural "%s products" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-dashboard-widgets.php:280 +msgid "received" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:279 +#: includes/admin/class-mp-dashboard-widgets.php:283 +msgid "%s order" +msgid_plural "%s orders" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-dashboard-widgets.php:276 +msgid "Stock & Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:261 +msgid "Last 30 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:256 +msgid "Last 7 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:251 +msgid "Yesterday" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:248 +#: includes/admin/class-mp-dashboard-widgets.php:253 +#: includes/admin/class-mp-dashboard-widgets.php:258 +#: includes/admin/class-mp-dashboard-widgets.php:263 +msgid " Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:246 +msgid "Today" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:241 +msgid "Welcome back! Here's a quick summary of your store's performance." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:196 +#: includes/admin/class-mp-products-admin.php:895 +msgid "No products out of stock." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:136 +#: includes/admin/class-mp-products-admin.php:839 +msgid "Stock Level" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:135 +#: includes/admin/class-mp-products-admin.php:838 +msgid "Variation" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:121 +msgid "Low Stock (%s)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:116 +msgid "Store Management" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:115 +msgid "Store Reports" +msgstr "" + +#: includes/admin/class-mp-ajax.php:579 +#: includes/admin/class-mp-orders-admin.php:520 +#: includes/common/payment-gateways/2checkout.php:370 +#: includes/common/payment-gateways/authorizenet-aim.php:264 +#: includes/common/payment-gateways/mollie.php:93 +#: includes/common/payment-gateways/paymill.php:196 +#: includes/common/payment-gateways/pin.php:190 +#: includes/common/payment-gateways/skrill.php:157 +#: includes/common/payment-gateways/skrill.php:168 +#: includes/common/payment-gateways/wepay.php:143 +#: includes/public/class-mp-checkout.php:404 +msgid "Select One" +msgstr "" + +#: includes/admin/class-mp-ajax.php:511 +msgid "Oops... we could not locate any orders by that ID. Please double check your order ID and try again." +msgstr "" + +#: includes/admin/class-mp-ajax.php:482 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:166 +#: includes/multisite/class-mp-admin-multisite.php:584 +msgid "Edit Page" +msgstr "" + +#: includes/admin/class-mp-ajax.php:346 +msgid "Cancel " +msgstr "" + +#: includes/admin/class-mp-ajax.php:345 +msgid "Save " +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "Edit Description" +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "HTML Markup" +msgstr "" + +#: includes/admin/class-mp-ajax.php:333 +msgid "Plain Text Only" +msgstr "" + +#: includes/admin/class-mp-ajax.php:329 +msgid "Additional Content / Information for this Variation" +msgstr "" + +#: includes/admin/class-mp-ajax.php:317 +#: includes/admin/class-mp-products-admin.php:1762 +msgid "Allow this product to be purchased even if it's out of stock" +msgstr "" + +#: includes/admin/class-mp-ajax.php:313 +#: includes/admin/class-mp-products-admin.php:1711 +msgid "Track Product Inventory" +msgstr "" + +#: includes/admin/class-mp-ajax.php:300 +msgid "Extra Shipping Cost (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:295 +msgid "Ounces:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:294 +msgid "Pounds:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:292 +msgid "Kilograms:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:287 +#: includes/admin/class-mp-products-admin.php:1649 +msgid "Charge Shipping" +msgstr "" + +#: includes/admin/class-mp-ajax.php:273 +#: includes/admin/class-mp-products-admin.php:1623 +#: includes/admin/store-settings/class-mp-store-settings-general.php:454 +msgid "Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:272 +#: includes/admin/class-mp-products-admin.php:1622 +#: includes/admin/class-mp-products-admin.php:2090 +#: includes/admin/class-mp-products-admin.php:2408 +msgid "Special Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:271 +#: includes/admin/class-mp-products-admin.php:1625 +#: includes/admin/class-mp-products-admin.php:2092 +msgid "If you would like this product to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-ajax.php:268 +#: includes/admin/class-mp-products-admin.php:1599 +msgid "Charge Taxes (Special Rate)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:256 +#: includes/admin/class-mp-products-admin.php:1593 +#: includes/admin/class-mp-products-admin.php:2077 +#: includes/admin/class-mp-products-admin.php:2348 +msgid "End Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:255 +#: includes/admin/class-mp-products-admin.php:1589 +#: includes/admin/class-mp-products-admin.php:2072 +msgid "Start Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:1568 +msgid "Enter Sale Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:250 +#: includes/admin/class-mp-products-admin.php:1547 +msgid "Set up a Sale for this Product" +msgstr "" + +#: includes/admin/class-mp-ajax.php:206 includes/admin/class-mp-ajax.php:223 +msgid "Enter " +msgstr "" + +#: includes/admin/class-mp-ajax.php:193 +msgid "Browse" +msgstr "" + +#: includes/admin/class-mp-ajax.php:184 includes/admin/class-mp-ajax.php:192 +msgid "http://" +msgstr "" + +#: includes/admin/class-mp-ajax.php:183 +msgid "External Product URL" +msgstr "" + +#: includes/admin/class-mp-ajax.php:237 +msgid "Limit Per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:177 +#: includes/admin/class-mp-products-admin.php:1520 +msgid "Enter Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:174 +#: includes/admin/class-mp-products-admin.php:1512 +msgid "Enter SKU" +msgstr "" + +#: includes/admin/class-mp-ajax.php:173 +msgid "(Stock Keeping Unit)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:158 +msgid "Remove Image" +msgstr "" + +#: includes/admin/class-mp-ajax.php:74 +msgid "Variation Draft" +msgstr "" + +#: includes/admin/class-mp-admin.php:296 +#: includes/admin/class-mp-dashboard-widgets.php:70 +msgid "Please wait...saving in progress..." +msgstr "" + +#: includes/admin/class-mp-admin.php:295 +#: includes/admin/class-mp-dashboard-widgets.php:69 +msgid "Input is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:294 +#: includes/admin/class-mp-dashboard-widgets.php:68 +msgid "Valid number is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:292 +#: includes/admin/class-mp-dashboard-widgets.php:66 +msgid "Delete %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:291 +#: includes/admin/class-mp-dashboard-widgets.php:65 +msgid "Delete %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:290 +#: includes/admin/class-mp-dashboard-widgets.php:64 +msgid "Update inventory for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:289 +#: includes/admin/class-mp-dashboard-widgets.php:63 +msgid "Update inventory for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:288 +#: includes/admin/class-mp-dashboard-widgets.php:62 +msgid "Update price for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:287 +#: includes/admin/class-mp-dashboard-widgets.php:61 +msgid "Update prices for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:285 +#: includes/admin/class-mp-dashboard-widgets.php:59 +msgid "Creating variations, please wait..." +msgstr "" + +#: includes/admin/class-mp-admin.php:96 +msgid "The following payment gateways have been deprecated, Cubepoints, Bitpay, iDEAL, Skrill, Google Checkout. If you were using one of these gateways, please setup a new payment gateway here." +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:61 +msgid "Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:71 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:71 +#: includes/common/class-mp-gdpr.php:399 includes/common/class-mp-order.php:872 +#: includes/common/helpers.php:164 includes/public/class-mp-checkout.php:1434 +msgid "Shipping Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:66 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:66 +#: includes/common/class-mp-gdpr.php:392 includes/common/class-mp-order.php:864 +#: includes/common/helpers.php:163 includes/public/class-mp-checkout.php:1427 +msgid "Billing Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:61 +msgid "Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:258 +msgid "Shipping Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:256 +msgid "Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:235 +msgid "Payment Method: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:79 +msgid "The dir %s not exist or not writeable" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:239 +msgid "Shop header/logo" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:233 +msgid "Choose a template" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:226 +msgid "Template Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:221 +msgid "Disable automatic creation/attachment of invoices when only free products are ordered" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:220 +msgid "Disable for free products" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:216 +msgid "Attach invoice to" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:214 +msgid "Customer Order Shipped email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:212 +msgid "Customer New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:211 +msgid "Admin New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:206 +msgid "download" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:205 +msgid "How do you want to view the PDF?" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:203 +msgid "Open the PDF in a new browser tab/window" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:202 +msgid "Download the PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:158 +msgid "Export PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:103 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:106 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:109 +msgid "You can't download this order invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:76 +msgid "Invalid Request" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:72 +msgid "Order not exist!" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:67 +msgid "Invalid ID" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1293 +msgid "Coupon added successfully" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1292 +msgid "Please enter a code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1247 +msgid "No end" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1200 +msgid "Valid Dates" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1195 +msgid "Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1027 +msgid "No Coupons found in Trash" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1026 +msgid "No Coupons Found" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1025 +msgid "Search Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1024 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1028 +msgid "View Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1023 +msgid "New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1020 +msgid "Create New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1017 +msgid "Manage Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1002 +msgid "An error occurred while removing your coupon. Please try again." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:964 +msgid "Coupon can't be applied to this cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:951 +msgid "Invalid coupon code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:794 +msgid "Help Text" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:789 +msgid "Form Title" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:783 +msgid "Coupons Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:764 +msgid "End Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:758 +msgid "Does coupon have an end date?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:696 +msgid "Select Products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:688 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:723 +#: includes/common/payment-gateways/paypal-payflow.php:402 +msgid "User" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:638 +msgid "Max Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:636 +msgid "Enter the maximum number of times this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:623 +msgid "Leave blank to allow all other coupons." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:622 +msgid "Select combinable coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:618 +msgid "Can this coupon be combined with other coupons?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:613 +msgid "Apply to each applicable item once per cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:612 +msgid "Apply to each applicable item and quantity ordered" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:609 +msgid "How should the discount amount be applied?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:605 +msgid "Discount Amount" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:604 +msgid "Value must either be a decimal number or a percentage" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:602 +msgid "If you would like to give a percentage-based discount make sure to include the percent (%) symbol. Otherwise, the discount will be applied as a fixed amount off." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:595 +msgid "Letters and Numbers only." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:589 +msgid "Coupon Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:447 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:795 +msgid "More than one code? That's OK! Just be sure to enter one at a time." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:444 +msgid "Apply Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:314 +msgid "Coupon Discounts" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:89 +msgid "1 add-on disabled" +msgid_plural "%s add-ons disabled" +msgstr[0] "" +msgstr[1] "" + +#: includes/addons/class-mp-addons-list-table.php:84 +msgid "1 add-on enabled" +msgid_plural "%s add-ons enabled" +msgstr[0] "" +msgstr[1] "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Disabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Enable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:129 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:67 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:135 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:168 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:202 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:263 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:296 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:330 +msgid "Enabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +msgid "Disable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:34 +msgid "Disable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:33 +msgid "Enable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:21 +#: includes/admin/class-mp-products-admin.php:2280 +#: includes/common/class-mp-product.php:2916 +msgid "Description" +msgstr "" + +#: includes/common/template-functions.php:2889 +#: includes/multisite/template-functions.php:407 +msgid "Popularity (Least Popular - Most Popular)" +msgstr "" + +#: includes/common/template-functions.php:2888 +#: includes/multisite/template-functions.php:406 +msgid "Popularity (Most Popular - Least Popular)" +msgstr "" + +#: includes/common/template-functions.php:2885 +#: includes/multisite/template-functions.php:403 +msgid "Name (Z-A)" +msgstr "" + +#: includes/common/template-functions.php:2884 +#: includes/multisite/template-functions.php:402 +msgid "Name (A-Z)" +msgstr "" + +#: includes/common/template-functions.php:2883 +#: includes/multisite/template-functions.php:401 +msgid "Release Date (Oldest to Latest)" +msgstr "" + +#: includes/common/template-functions.php:2882 +#: includes/multisite/template-functions.php:400 +msgid "Release Date (Latest to Oldest)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:284 +msgid "paid" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "One Time Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Customer Counter" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Daily Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:182 +msgid "For the most accurate rates, please select the appropriate pick up type for your business." +msgstr "" + +#: includes/admin/class-mp-admin.php:374 +msgid "Page saved." +msgstr "" + +#: includes/admin/class-mp-admin.php:370 +msgid "Custom field deleted." +msgstr "" + +#: includes/admin/class-mp-admin.php:369 +msgid "Custom field updated." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:541 +msgid "%s - The payment request expired, - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:536 +msgid "%s - The payment not credited in merchants bitpay account, action required. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:252 +msgid "If enabled, you will recieve an email for each status update on payment." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:240 +msgid "Speed at which the bitcoin transaction registers as \"confirmed\" to the store. This overrides your merchant settings on the Bitpay website." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:238 +msgid "Transaction Speed" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:244 +msgid "Low" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:243 +msgid "Medium" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:242 +msgid "High" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:177 +#: includes/common/payment-gateways/_bitpay.php:517 +#: includes/common/payment-gateways/_bitpay.php:522 +msgid "%s - The payment request is under process. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:175 +#: includes/common/payment-gateways/_bitpay.php:527 +msgid "%s - The payment request has been processed - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:150 +#: includes/common/payment-gateways/_bitpay.php:294 +msgid "Incorrect order invoice, please contact site administrator" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:141 +msgid "We could not verify order invoice details, please try again or contact site administrator for help" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:81 +msgid "Login to Simplify to get your API credentials. Enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:605 +#: includes/common/payment-gateways/paypal-express.php:647 +msgid "Express Checkout is PayPal's premier checkout solution, which streamlines the checkout process for buyers and keeps them on your site after making a purchase. Unlike PayPal Pro, there are no additional fees to use Express Checkout, though you may need to do a free upgrade to a business account. More Info »" +msgstr "" + +#. Plugin URI of the plugin/theme +msgid "https://premium.wpmudev.org/project/e-commerce/" +msgstr "" + +#. Author of the plugin/theme +msgid "WPMU DEV" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:541 +#: includes/admin/class-mp-orders-admin.php:543 +msgid "Tracking Number" +msgstr "" + +#: includes/common/class-mp-order.php:805 +#: includes/common/payment-gateways/stripe.php:336 +#: includes/public/class-mp-checkout.php:402 +msgid "Country" +msgstr "" + +#: includes/common/class-mp-order.php:784 +#: includes/common/payment-gateways/stripe.php:338 +msgid "City" +msgstr "" + +#: includes/common/class-mp-order.php:780 +msgid "Address 2" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:340 +msgid "Address" +msgstr "" + +#: includes/common/class-mp-cart.php:752 includes/common/class-mp-gdpr.php:378 +msgid "Order Total" +msgstr "Tilaus yhteensä" + +#: includes/admin/class-mp-orders-admin.php:360 +msgid "Payment Total" +msgstr "Maksu yhteensä" + +#: includes/admin/class-mp-orders-admin.php:347 +msgid "Transaction ID" +msgstr "Maksutapahtuman tunnus" + +#: includes/common/payment-gateways/wepay.php:207 +msgid "The WePay Card Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:186 +#: includes/common/shipping-modules/mp-fedex.php:283 +msgid "Account ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:179 +msgid "Access Token" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:172 +msgid "Client Secret" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:165 +msgid "Client ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:159 +msgid "You must login to WePay to get your API credentials. Make sure to check \"Tokenize credit cards\" option under \"API Keys\" section of your WePay app." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:154 +msgid "When in live mode it is recommended to use SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:148 +msgid "Donation" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:147 +msgid "Event" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:146 +msgid "Personal" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:145 +msgid "Service" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:144 +msgid "Goods" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:141 +msgid "Choose type of payments" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:140 +msgid "Checkout Type" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:134 +msgid "Staging" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:131 +msgid "Choose STAGING if you have registered the app on stage.wepay.com, or PRODUCTION if you registered on www.wepay.com" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:36 +#: includes/common/payment-gateways/wepay.php:299 +msgid "WePay" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:366 +msgid "Rejected - A payment was rejected." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:360 +msgid "Failed - A payment was rejected due to an error." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:342 +msgid "PayWay balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:298 +msgid "Full path of the cacerts.crt file" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:284 +msgid "User Name" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:277 +msgid "Biller Code" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:273 +msgid "Log Directory" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:266 +msgid "Encryption Key" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:60 +msgid "Your PayWay transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:40 +#: includes/common/payment-gateways/_payway.php:41 +msgid "PayWay" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:862 +msgid "You must register this application with PayPal using your business account login to get an Application ID that will work with your API credentials. A bit of a hassle, but worth it! In the near future we will be looking for ways to simplify this process. Register then submit your application while logged in to the developer portal. Note that you do not need an Application ID for testing in sandbox mode. More Information »" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:818 +#: includes/common/payment-gateways/paypal-chained-payments.php:840 +#: includes/common/payment-gateways/paypal-express.php:705 +msgid "You must login to PayPal and create an API signature to get your credentials. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:378 +msgid "Use Payflow payment gateway to accept online payments using your Internet merchant account and processing network. PayPal Payflow Pro is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:595 +msgid "Tags Only" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:594 +msgid "Category Only" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:795 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:593 +msgid "Category & Tags" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:591 +msgid "Relate Products By" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1008 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:455 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:751 +msgid "Right" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1007 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:454 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:749 +msgid "Left" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1009 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:750 +msgid "Center" +msgstr "" + +#: marketpress.php:273 +msgid "Orders from your e-commerce store." +msgstr "" + +#: marketpress.php:231 +msgid "Products for your e-commerce store." +msgstr "" + +#: marketpress.php:222 +msgid "Edit Product" +msgstr "" + +#. Description of the plugin/theme +msgid "The complete WordPress ecommerce plugin - works perfectly with BuddyPress and Multisite too to create a social marketplace, where you can take a percentage! Activate the plugin, adjust your settings then add some products to your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:272 +msgid "Beside" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:271 +msgid "Above" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:268 +msgid "Pin Count" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:261 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:287 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:318 +msgid "All View" +msgstr "Kaikki" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:260 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:286 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:317 +msgid "Single View" +msgstr "Yksittäin" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:259 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:285 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:316 +msgid "Off" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:578 +msgid "Related Product Limit" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:681 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1201 +msgid "Applies To" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:685 +msgid "All Products" +msgstr "Kaikki tuotteet" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:487 +msgid "The label shown for the tax line item in the cart. Taxes, VAT, GST, etc." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:485 +msgid "Tax Label" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:81 +msgid "Apply" +msgstr "Päivitä" + +#: includes/admin/class-mp-admin.php:192 +msgid "MarketPress Instructions" +msgstr "MarketPress ohjeet" + +#: includes/admin/class-mp-products-admin.php:1954 +#: includes/admin/class-mp-products-admin.php:2194 includes/common/data.php:62 +#: includes/common/helpers.php:150 +msgid "Taxes" +msgstr "ALV" + +#: includes/admin/class-mp-products-admin.php:1417 +#: includes/common/class-mp-product.php:2900 +msgid "Related Products" +msgstr "Liittyvät tuotteet" + +#: includes/common/shipping-modules/mp-usps.php:282 +#: includes/common/shipping-modules/mp-usps.php:316 +msgid "@ Max" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "(3-5 days)" +msgstr "(3-5 päivää)" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "Priority Mail Express International Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:92 +msgid "Priority Mail Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:171 +#: includes/common/shipping-modules/mp-pickup.php:247 +msgid "In Store" +msgstr "Kaupassa" + +#: includes/common/shipping-modules/mp-pickup.php:159 +msgid "Pickup Fee" +msgstr "Noutomaksu" + +#: includes/common/shipping-modules/mp-pickup.php:141 +msgid "This option allows your customers to indicate that they will pick-up their order at your place of business." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:60 +#: includes/common/shipping-modules/mp-pickup.php:76 +#: includes/common/shipping-modules/mp-pickup.php:176 +msgid "Pickup Instructions" +msgstr "Nouto-ohjeet" + +#: includes/common/shipping-modules/mp-pickup.php:24 +#: includes/common/shipping-modules/mp-pickup.php:254 +msgid "Pickup" +msgstr "Nouto" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping - 0.00" +msgstr "Ilmainen toimitus - 0.00" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:256 +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:440 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping" +msgstr "Ilmainen toimitus" + +#: includes/common/shipping-modules/mp-fedex.php:309 +msgid "Your Packaging" +msgstr "Paketointisi" + +#: includes/common/shipping-modules/mp-fedex.php:301 +msgid "Station" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:300 +msgid "Request Courier" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:299 +msgid "Drop Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:298 +msgid "Business Service Center" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:297 +msgid "Regular Pickup" +msgstr "Normaali nouto" + +#: includes/common/payment-gateways/wepay.php:135 +#: includes/common/shipping-modules/mp-fedex.php:264 +msgid "Production" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:207 +msgid "Simplify Commerce by MasterCard" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:104 +msgid "When in live mode, although it is not required, Simplify recommends you have an SSL certificate." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:183 +#: includes/common/payment-gateways/simplify.php:87 +msgid "Public Key" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:175 +#: includes/common/payment-gateways/simplify.php:94 +msgid "Private Key" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:71 +msgid "Simplify helps merchants to accept online payments from Mastercard, Visa, American Express, Discover, JCB, and Diners Club cards. It's that simple. We offer a merchant account and payment gateway in a single, secure package so you can concentrate on what really matters to your business. Only supports USD currently." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:267 +msgid "%1$s" +msgstr "%1€s" + +#: includes/common/payment-gateways/simplify.php:151 +msgid "The Simplify Token was not generated correctly. Please go back and try again." +msgstr "Simplify Tokenia ei voitu luoda oikein. Tarkista ja yritä uudelleen." + +#: includes/common/payment-gateways/simplify.php:18 +msgid "Simplify" +msgstr "" + +#: includes/common/payment-gateways/pin.php:255 +msgid "%1$s Card %2$s" +msgstr "%1€s Kortti %2€s" + +#: includes/common/payment-gateways/pin.php:211 +msgid "The PIN Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:187 +msgid "Selecting a currency other than currency supported by PIN may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/pin.php:164 +msgid "You must login to PIN to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/pin.php:158 +msgid "When in live mode PIN recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/pin.php:45 +#: includes/common/payment-gateways/pin.php:286 +msgid "PIN" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:830 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer" +msgstr "Maksu on peruutettu takaisinperinnän vuoksi. Rahat on siirretty tililtä ja palautettu ostajalle" + +#: includes/common/payment-gateways/paypal-chained-payments.php:534 +#: includes/common/payment-gateways/paypal-express.php:865 +msgid "The payment is pending" +msgstr "Maksu odottaa" + +#: includes/common/payment-gateways/paymill.php:235 +msgid "The Paymill Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:169 +msgid "You must login to Paymill to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:45 +#: includes/common/payment-gateways/paymill.php:308 +msgid "Paymill" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:90 +msgid "Invalid cardholder" +msgstr "Väärä tieto" + +#: includes/common/payment-gateways/paymill.php:89 +msgid "Card is no longer valid or has expired" +msgstr "Kortti ei ole enää käytössä tai se on vanhentunut" + +#: includes/common/payment-gateways/paymill.php:88 +msgid "Please enter a valid Card CVC" +msgstr "Tarkista syöttämäsi CVC" + +#: includes/common/payment-gateways/paymill.php:87 +msgid "Please choose a valid Expiration Date." +msgstr "Tarkista syöttämäsi vanhenemisaika" + +#: includes/common/payment-gateways/skrill.php:99 +#: includes/common/payment-gateways/skrill.php:100 +msgid "Skrill (Moneybookers)" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:24 +#: includes/common/shipping-modules/mp-weight-rate.php:292 +msgid "Weight Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:303 +msgid "USPS Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:270 +msgid "USPS Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:264 +msgid "USPS Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:145 +msgid "Flat Rate Large" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:140 +msgid "Flat Rate Medium 2" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:135 +msgid "Flat Rate Medium 1" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:130 +msgid "Flat Rate Small" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:118 +msgid "First Class International Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:114 +msgid "Priority Mail International Small Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:112 +msgid "Priority Mail International Medium Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:110 +msgid "Priority Mail International Large Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:108 +msgid "Priority Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:106 +msgid "Express Mail International Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:104 +msgid "Express Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:98 +msgid "Library Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:96 +msgid "Media Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "First-Class Mail Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:90 +msgid "Priority Mail Small Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:88 +msgid "Priority Mail Medium Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +#: includes/common/shipping-modules/mp-usps.php:88 +#: includes/common/shipping-modules/mp-usps.php:90 +#: includes/common/shipping-modules/mp-usps.php:92 +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "(2-4 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +msgid "Priority Mail Large Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "(2-4) days" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "Priority Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "Express Mail Sunday/Holiday Delivery Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:80 +msgid "Express Mail Flat Rate Boxes Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:78 +msgid "Express Mail Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:76 +msgid "Express Mail Sunday/Holiday Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:74 +msgid "Express Mail Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:72 +#: includes/common/shipping-modules/mp-usps.php:74 +#: includes/common/shipping-modules/mp-usps.php:76 +#: includes/common/shipping-modules/mp-usps.php:78 +#: includes/common/shipping-modules/mp-usps.php:80 +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "(1-2 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:72 +msgid "Express Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:67 +#: includes/common/shipping-modules/mp-usps.php:902 +msgid "USPS" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:534 +msgid "UPS (beta)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:166 +msgid "Required if using negotiated rates" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "Worldwide Express Plus" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "(Scheduled)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "Standard" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "(2-5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "Worldwide Expedited" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:54 +msgid "Worldwide Express" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "2nd Day Air AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "(1 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "Next Day Air Early AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "Next Day Air Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "3 Day Select" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:49 +msgid "Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:48 +msgid "2nd Day Air" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "Next Day Air" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:475 +#: includes/common/shipping-modules/mp-ups.php:43 +msgid "UPS" +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:27 +#: includes/common/shipping-modules/mp-table-rate.php:318 +msgid "Table Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:71 +#: includes/common/shipping-modules/mp-table-quantity.php:77 +msgid "Shipping Cost: " +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:70 +#: includes/common/shipping-modules/mp-table-quantity.php:76 +msgid "If quantity is greater than:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:66 +msgid "Each band must be a higher price than the one above it." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:56 +msgid "Number of Bands:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:53 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Each layer must be a higher quantity than the previous." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:51 +msgid "Table Quantity Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:31 +msgid "Table Quantity" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:135 +#: includes/common/shipping-modules/mp-table-rate.php:174 +#: includes/common/shipping-modules/mp-weight-rate.php:189 +msgid "European Union" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:123 +#: includes/common/shipping-modules/mp-table-rate.php:162 +#: includes/common/shipping-modules/mp-weight-rate.php:177 +msgid "United States" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:111 +#: includes/common/shipping-modules/mp-table-rate.php:151 +#: includes/common/shipping-modules/mp-weight-rate.php:166 +msgid "In Country" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:146 +#: includes/common/shipping-modules/mp-table-rate.php:186 +#: includes/common/shipping-modules/mp-weight-rate.php:201 +msgid "International" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:101 +#: includes/common/shipping-modules/mp-table-rate.php:141 +#: includes/common/shipping-modules/mp-weight-rate.php:156 +msgid "Canada" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:92 +#: includes/common/shipping-modules/mp-table-rate.php:132 +#: includes/common/shipping-modules/mp-weight-rate.php:147 +msgid "Hawaii and Alaska" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:83 +#: includes/common/shipping-modules/mp-table-rate.php:123 +#: includes/common/shipping-modules/mp-weight-rate.php:138 +msgid "Lower 48 States" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:64 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping." +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:25 +#: includes/common/shipping-modules/mp-flat-rate.php:223 +msgid "Flat Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:761 +msgid "FedEx (beta)" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Centimeters" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Inches" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1676 +#: includes/admin/class-mp-setup-wizard.php:547 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:166 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +msgid "Kilograms" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:103 +msgid " %1$s - %2$s" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:358 +msgid "Max Weight per Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:356 +msgid "Box Dimensions" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:354 +msgid "Box Name" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:344 +msgid "Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:343 +msgid "For each box defined enter the maximum weight it can contain." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:341 +msgid "Enter your standard box sizes as LengthxWidthxHeight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:386 +#: includes/common/shipping-modules/mp-ups.php:193 +#: includes/common/shipping-modules/mp-usps.php:234 +#: includes/common/shipping-modules/mp-usps.php:338 +msgid "Standard Boxes and Weight Limits" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:328 +msgid "Handling Charge per Interntional Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:294 +msgid "Handling Charge per Domestic Shipment " +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:388 +#: includes/common/shipping-modules/mp-ups.php:196 +#: includes/common/shipping-modules/mp-usps.php:237 +msgid "Add Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "(Next Day)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +msgid "Europe First International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:62 +msgid "International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:61 +#: includes/common/shipping-modules/mp-fedex.php:62 +#: includes/common/shipping-modules/mp-ups.php:54 +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "(1-3 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:61 +msgid "International First" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "(5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "International Economy" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "(2-7 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "Smart Post" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:55 +#: includes/common/shipping-modules/mp-ups.php:49 +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "(1-5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:55 +msgid "Ground Home Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "(1-7 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "Fedex Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:53 +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "(3 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:53 +msgid "Fedex Express Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +#: includes/common/shipping-modules/mp-ups.php:48 +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "(2 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +msgid "Fedex 2 Day" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "(2 Days am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "Fedex 2 Day AM" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "(1 Day)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +msgid "Standard Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "(1 Day am )" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "Priority Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "(1 Day am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "First Overnight" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:476 +#: includes/common/shipping-modules/mp-fedex.php:31 +msgid "FedEx" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:270 +#: includes/common/payment-gateways/simplify.php:179 +#: includes/common/payment-gateways/stripe.php:365 +msgid "%1$s Card ending in %2$s - Expires %3$s" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:259 +#: includes/common/payment-gateways/pin.php:238 +#: includes/common/payment-gateways/simplify.php:171 +msgid "%s Store Purchase - Order ID: %s, Email: %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:266 +msgid "You must login to Stripe to get your API credentials. You can enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:261 +msgid "When in live mode Stripe recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:311 +msgid "The Stripe Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:263 +#: includes/common/payment-gateways/paymill.php:122 +#: includes/common/payment-gateways/stripe.php:222 +msgid "Card Number" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:86 +msgid "Please enter a valid Credit Card Number." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:45 +#: includes/common/payment-gateways/stripe.php:433 +msgid "Stripe" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:750 +msgid "Sets the background color for the payment page. By default, the color is white." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:745 +msgid "Sets the background color for the header of the payment page. By default, the color is white." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:740 +msgid "Sets the border color around the header of the payment page. The border is a 2-pixel perimeter around the header space, which is 750 pixels wide by 90 pixels high. By default, the color is black." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:735 +msgid "URL for an image you want to appear at the top left of the payment page. The image has a maximum size of 750 pixels wide by 90 pixels high. PayPal recommends that you provide an image that is stored on a secure (https) server. If you do not specify an image, the business name is displayed." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:857 +#: includes/common/payment-gateways/paypal-express.php:1131 +msgid "The payment is pending because it is part of an order that has been authorized but not settled." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:853 +#: includes/common/payment-gateways/paypal-express.php:1127 +msgid "The payment is pending because it has been authorized but not settled. You must capture the funds first." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:847 +#: includes/common/payment-gateways/paypal-express.php:1120 +msgid "You denied the payment when it was marked as pending." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:837 +#: includes/common/payment-gateways/paypal-express.php:1108 +msgid "A reversal has occurred on this transaction due to an unknown reason." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:836 +#: includes/common/payment-gateways/paypal-express.php:1107 +msgid "A reversal has occurred on this transaction because you have given the customer a refund." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:835 +#: includes/common/payment-gateways/paypal-express.php:1106 +msgid "A reversal has occurred on this transaction due to a complaint about the transaction from your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:834 +#: includes/common/payment-gateways/paypal-express.php:1105 +msgid "A reversal has occurred on this transaction due to your customer triggering a money-back guarantee." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:833 +#: includes/common/payment-gateways/paypal-express.php:1104 +msgid "A reversal has occurred on this transaction due to a chargeback by your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:1101 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer:" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:826 +#: includes/common/payment-gateways/paypal-express.php:1097 +msgid "A payment has been accepted." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:818 +#: includes/common/payment-gateways/paypal-express.php:1087 +msgid "The transaction has not terminated, e.g. an authorization may be awaiting completion." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:531 +#: includes/common/payment-gateways/paypal-express.php:810 +#: includes/common/payment-gateways/paypal-express.php:1077 +msgid "The payment has failed. This happens only if the payment was made from your customer's bank account." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:806 +#: includes/common/payment-gateways/paypal-express.php:1072 +msgid "An authorization for this transaction has been voided." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:802 +#: includes/common/payment-gateways/paypal-express.php:1067 +msgid "The authorization period for this payment has been reached." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:798 +#: includes/common/payment-gateways/paypal-express.php:1062 +msgid "A reversal has been canceled; for example, when you win a dispute and the funds for the reversal have been returned to you." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:499 +#: includes/common/payment-gateways/paypal-express.php:1163 +msgid "PayPal Express Checkout" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:798 +msgid "Gateway Settings Page Message" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:725 +msgid "Signature" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:506 +#: includes/common/payment-gateways/eway31.php:533 +#: includes/common/shipping-modules/mp-fedex.php:276 +msgid "API Password" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:773 +msgid "Enter a percentage of all store sales to collect as a fee. Decimals allowed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:757 +msgid "Using PayPal Chained Payments allows you as the multisite network owner to collect a predefined fee or percentage of all sales on network MarketPress stores! This is invisible to the customers who purchase items in a store, and all PayPal fees will be charged to the store owner. To use this option you must create API credentials, and you should make all other gateways unavailable or limited above." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:338 +msgid "Please be aware that we will deduct a ?% fee from the total of each transaction in addition to any fees PayPal may charge you. If for any reason you need to refund a customer for an order, please contact us with a screenshot of the refund receipt in your PayPal history as well as the Transaction ID of our fee deduction so we can issue you a refund. Thank you!" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:698 +#: includes/common/payment-gateways/paypal-express.php:149 +msgid "There was a problem connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:470 +#: includes/common/payment-gateways/paypal-express.php:1053 +msgid "There was a problem verifying the IPN string with PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:310 +msgid "There was a problem connecting to PayPal to check the status of your purchase. Please check the status of your order here »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:539 +#: includes/common/payment-gateways/paypal-chained-payments.php:254 +#: includes/common/payment-gateways/paypal-express.php:1139 +msgid "The payment is pending." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:251 +#: includes/common/payment-gateways/paypal-chained-payments.php:531 +#: includes/common/payment-gateways/paypal-express.php:862 +#: includes/common/payment-gateways/paypal-express.php:1136 +msgid "The payment is pending for an unknown reason. For more information, contact PayPal customer service." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:250 +#: includes/common/payment-gateways/paypal-chained-payments.php:530 +#: includes/common/payment-gateways/paypal-express.php:861 +#: includes/common/payment-gateways/paypal-express.php:1135 +msgid "The payment is pending because you are not yet verified. You must verify your account before you can accept this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:249 +#: includes/common/payment-gateways/paypal-chained-payments.php:529 +#: includes/common/payment-gateways/paypal-express.php:860 +#: includes/common/payment-gateways/paypal-express.php:1134 +msgid "The payment is pending because it was made via credit card and you must upgrade your account to Business or Premier status in order to receive the funds. It can also mean that you have reached the monthly limit for transactions on your account." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:248 +#: includes/common/payment-gateways/paypal-chained-payments.php:528 +#: includes/common/payment-gateways/paypal-express.php:859 +#: includes/common/payment-gateways/paypal-express.php:1133 +msgid "The payment is pending because it was made to an email address that is not yet registered or confirmed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:247 +#: includes/common/payment-gateways/paypal-chained-payments.php:527 +#: includes/common/payment-gateways/paypal-express.php:858 +#: includes/common/payment-gateways/paypal-express.php:1132 +msgid "The payment is pending while it is being reviewed by PayPal for risk." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:246 +#: includes/common/payment-gateways/paypal-chained-payments.php:526 +#: includes/common/payment-gateways/paypal-express.php:856 +#: includes/common/payment-gateways/paypal-express.php:1130 +msgid "You do not have a balance in the currency sent, and you do not have your Payment Receiving Preferences set to automatically convert and accept this payment. You must manually accept or deny this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:245 +#: includes/common/payment-gateways/paypal-chained-payments.php:525 +#: includes/common/payment-gateways/paypal-express.php:855 +#: includes/common/payment-gateways/paypal-express.php:1129 +msgid "The payment is pending because you hold a non-U.S. account and do not have a withdrawal mechanism. You must manually accept or deny this payment from your Account Overview." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:244 +#: includes/common/payment-gateways/paypal-chained-payments.php:524 +#: includes/common/payment-gateways/paypal-express.php:854 +#: includes/common/payment-gateways/paypal-express.php:1128 +msgid "The payment is pending because it was made by an eCheck that has not yet cleared." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:243 +#: includes/common/payment-gateways/paypal-chained-payments.php:523 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:236 +#: includes/common/payment-gateways/paypal-chained-payments.php:516 +msgid "The transaction was rejected by the receiver (you)." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:510 +#: includes/common/payment-gateways/paypal-express.php:843 +#: includes/common/payment-gateways/paypal-express.php:1115 +msgid "You refunded the payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:224 +#: includes/common/payment-gateways/paypal-chained-payments.php:504 +msgid "The transaction is in progress." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:212 +#: includes/common/payment-gateways/paypal-chained-payments.php:491 +#: includes/common/payment-gateways/paypal-express.php:814 +#: includes/common/payment-gateways/paypal-express.php:1082 +msgid "The payment has been partially refunded." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:202 +#: includes/common/payment-gateways/paypal-chained-payments.php:481 +msgid "PayPal balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:177 +msgid "There was a problem connecting to PayPal to setup your purchase. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:122 +msgid "Your PayPal transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:50 +#: includes/common/payment-gateways/paypal-chained-payments.php:53 +#: includes/common/payment-gateways/paypal-chained-payments.php:732 +#: includes/common/payment-gateways/paypal-express.php:500 +#: includes/common/payment-gateways/paypal-express.php:938 +msgid "PayPal" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:48 +#: includes/common/payment-gateways/paypal-chained-payments.php:730 +#: includes/common/payment-gateways/paypal-chained-payments.php:756 +#: includes/common/payment-gateways/paypal-chained-payments.php:873 +msgid "PayPal Chained Payments" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:59 +#: includes/common/payment-gateways/paypal-payflow.php:467 +msgid "PayPal Payflow Pro" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:378 +msgid "Chargeback - A payment was reversed due to a chargeback. The funds have been removed from your account balance and returned to the buyer." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:372 +msgid "Failed - The Credit Card or Direct Debit transaction was declined." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:354 +#: includes/common/payment-gateways/skrill.php:366 +msgid "Cancelled - The payment was cancelled manually by the sender in their online account history or was auto-cancelled after 14 days pending." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:360 +msgid "Pending - The payment is pending. It can take 2-3 days for bank transfers to complete." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:349 +#: includes/common/payment-gateways/skrill.php:354 +msgid "Processed - The payment has been completed, and the funds have been added successfully to your Moneybookers account balance." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:189 +msgid "Shown to the customer on the confirmation screen - the end step of the process - a note, confirmation number, or any other message. Line breaks <br> may be used for longer messages." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:188 +msgid "Confirmation Note (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:183 +msgid "The URL of the logo which you would like to appear at the top of the payment form. The logo must be accessible via HTTPS otherwise it will not be shown. For best integration results we recommend that you use a logo with dimensions up to 200px in width and 50px in height." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:182 +msgid "Logo Image (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:177 +msgid "The name of this store, which will be shown on the gateway. If no value is submitted, the account email will be shown as the recipient of the payment." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:176 +msgid "Merchant Name (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:165 +msgid "Language" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:368 +#: includes/common/payment-gateways/authorizenet-aim.php:262 +#: includes/common/payment-gateways/eway.php:363 +#: includes/common/payment-gateways/eway31.php:471 +#: includes/common/payment-gateways/mollie.php:91 +#: includes/common/payment-gateways/paymill.php:193 +#: includes/common/payment-gateways/paypal-chained-payments.php:356 +#: includes/common/payment-gateways/paypal-express.php:688 +#: includes/common/payment-gateways/paypal-payflow.php:432 +#: includes/common/payment-gateways/pin.php:186 +#: includes/common/payment-gateways/skrill.php:152 +#: includes/common/payment-gateways/stripe.php:288 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:104 +msgid "Currency" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:359 +#: includes/common/payment-gateways/skrill.php:143 +msgid "Secret Word" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:261 +msgid "Order ID:" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:234 +msgid "Complete Checkout" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:204 +msgid "Your Moneybookers transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:155 +msgid "This is the email text to send to those who have made manual payment checkouts. You should include your manual payment instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:257 +#: includes/common/payment-gateways/manual-payments.php:128 +msgid "Record payments manually, such as by Cash, Check, or EFT." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:71 +msgid "Manual/Invoice" +msgstr "Laskutus" + +#: includes/admin/class-mp-setup-wizard.php:648 +#: includes/common/payment-gateways/manual-payments.php:35 +#: includes/common/payment-gateways/manual-payments.php:36 +msgid "Manual Payment" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:34 +#: includes/common/payment-gateways/manual-payments.php:163 +msgid "Manual Payments" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:288 +msgid "iDEAL Simulator (for testing)" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:287 +msgid "ABN Amro Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:286 +msgid "Friesland Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:285 +msgid "Rabobank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:284 +msgid "ING Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:279 +msgid "Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:270 +msgid "To make it easier to pay for online products and services, the Dutch banking community has developed the iDEAL online payment method. iDEAL allows online payments to be made using online banking in EUR only." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:247 +#: includes/common/payment-gateways/_payway.php:199 +#: includes/common/payment-gateways/manual-payments.php:68 +msgid "Invoiced" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1016 +msgid "Coupon" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:77 +#: includes/common/payment-gateways/_ideal.php:250 +#: includes/common/payment-gateways/_payway.php:202 +msgid "iDEAL" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:76 +msgid "iDEAL (beta)" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:327 +msgid "Merchant Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:293 +#: includes/common/payment-gateways/_payway.php:302 +#: includes/common/payment-gateways/payfast.php:324 +msgid "Merchant ID" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:462 +msgid "eWay Rapid 3.0 Payments lets merchants recieve credit card payments through eWay without need for users to leave the shop. Note this gateway requires a valid SSL certificate configured for this site." +msgstr "" + +#: includes/common/payment-gateways/eway.php:452 +msgid "There was a problem connecting to eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/eway.php:432 +#: includes/common/payment-gateways/eway.php:437 +msgid "The url of the image can be hosted on your website and pass the secure https:// path of the image to be displayed at the top of the website. This is the second image block on the webpage and is restricted to 960px X 65px. A default secure image is used if none is supplied." +msgstr "" + +#: includes/common/payment-gateways/eway.php:431 +#: includes/common/payment-gateways/eway.php:436 +msgid "Company Logo (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:427 +msgid "The page footer text can be customised and populated below the customer's order details. Useful for contact information." +msgstr "" + +#: includes/common/payment-gateways/eway.php:426 +msgid "Page Footer (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:421 +msgid "Page Description (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:417 +#: includes/common/payment-gateways/eway.php:422 +msgid "This value is used to populate the browsers title bar at the top of the screen." +msgstr "" + +#: includes/common/payment-gateways/eway.php:416 +msgid "Page Title (optional)" +msgstr "Sivun otsikko (vapaaehtoinen)" + +#: includes/common/payment-gateways/eway.php:412 +msgid "This will be displayed as the company the customer is purchasing from, including this is highly recommended." +msgstr "Tämä näytetään yrityksen tietona, jolta asiakas on ostanut. Tämä kannattaa sisällyttää." + +#: includes/common/payment-gateways/eway.php:411 +msgid "Company Name" +msgstr "Yrityksen nimi" + +#: includes/common/payment-gateways/eway.php:394 +msgid "Customer ID" +msgstr "" + +#: includes/common/payment-gateways/eway.php:381 +#: includes/common/payment-gateways/eway31.php:488 +msgid "Live API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway.php:371 +#: includes/common/payment-gateways/eway31.php:479 +msgid "Gateway Mode" +msgstr "" + +#: includes/common/payment-gateways/eway.php:354 +msgid "The Hosted Page is a webpage hosted on eWAY's side eliminating the need for merchants to capture, transmit or store credit card numbers. At the checkout time the merchant automatically redirects the customer to the Hosted Page where they would enter their details and have the transaction processed. Upon completion of the transaction the customer is redirected back to the MarketPress checkout confirmation page." +msgstr "" + +#: includes/common/payment-gateways/eway.php:314 +msgid "There was a problem with your credit card information: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:300 +msgid "Paid - The card has been processed - %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:253 +msgid "There was a problem setting up the transaction with eWay: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:245 +#: includes/common/payment-gateways/eway.php:289 +msgid "There was a problem parsing the response from eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:159 +#: includes/common/payment-gateways/eway.php:189 +#: includes/common/payment-gateways/paypal-chained-payments.php:634 +#: includes/common/payment-gateways/paypal-express.php:322 +#: includes/common/payment-gateways/paypal-express.php:473 +msgid "%s Store Purchase - Order ID: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:147 +#: includes/common/payment-gateways/eway.php:462 +msgid "eWay Shared Payments" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:214 +msgid "This is the email text to send to those who have made CubePoints checkouts. You should include your CubePoints instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:212 +#: includes/common/payment-gateways/free_orders.php:188 +#: includes/common/payment-gateways/manual-payments.php:154 +msgid "Order Confirmation Email" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:207 +#: includes/common/payment-gateways/manual-payments.php:149 +msgid "Confirmation User Instructions" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:202 +#: includes/common/payment-gateways/manual-payments.php:144 +msgid "User Instructions" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:198 +#: includes/common/payment-gateways/free_orders.php:170 +#: includes/common/payment-gateways/manual-payments.php:139 +msgid "Enter a public name for this payment method that is displayed to users - No HTML" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:532 +#: includes/common/payment-gateways/_cubepoints.php:196 +#: includes/common/payment-gateways/free_orders.php:169 +#: includes/common/payment-gateways/manual-payments.php:138 +msgid "Method Name" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:187 +msgid "Accept CubePoints as payment(requires the CubePoints plugin)." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:140 +msgid "Sorry, but you do not appear to have enough points to complete this purchase!" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:124 +msgid "%s Store Purchase" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:79 +#: includes/common/payment-gateways/_cubepoints.php:171 +msgid "Your current points: " +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:133 +#: includes/common/payment-gateways/_cubepoints.php:197 +msgid "CubePoints" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:344 +msgid "Authorize.net AIM Checkout" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:331 +msgid "Custom API URL" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:332 +msgid "Many other gateways have Authorize.net API emulators. To use one of these gateways input their API post url here." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:322 +msgid "Request a delimited response from the payment gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:316 +msgid "Security: MD5 Hash" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:317 +msgid "The payment gateway generated MD5 hash value that can be used to authenticate the transaction response. Not needed because responses are returned using an SSL connection." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:306 +msgid "Customer Receipt Email Footer" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:296 +msgid "Customer Receipt Email Header" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:297 +#: includes/common/payment-gateways/paypal-payflow.php:446 +msgid "This text will appear as the header of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:282 +msgid "Encapsulation Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:283 +msgid "Authorize.net default is blank. Otherwise, get this from your credit card processor. If the transactions are going through, but getting strange responses, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:273 +msgid "Optional settings to control advanced options" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:224 +#: includes/common/payment-gateways/authorizenet-aim.php:272 +msgid "Advanced Settings" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:253 +msgid "Transaction Key" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:246 +msgid "Login ID" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:396 +msgid "Gateway Credentials" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:221 +msgid "Authorize.net AIM is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway. USD is the only currency supported by this gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:205 +msgid "There was a problem finalizing your purchase. %s Please go back and try again." +msgstr "Ongelmia maksussa. %s Please Palaa ja yritä uudelleen." + +#: includes/common/payment-gateways/payfast.php:519 +#: includes/common/payment-gateways/paypal-chained-payments.php:218 +#: includes/common/payment-gateways/paypal-chained-payments.php:498 +#: includes/common/payment-gateways/paypal-express.php:822 +#: includes/common/payment-gateways/paypal-express.php:1092 +msgid "The payment has been completed, and the funds have been added successfully to your account balance." +msgstr "Maksu on suoritettu ja varat on siirretty onnistuneesti tilillesi." + +#: includes/common/payment-gateways/paypal-payflow.php:233 +msgid "Please enter a valid credit card security code" +msgstr "Syötä voimassa oleva luottokortin turvakoodi" + +#: includes/common/payment-gateways/paypal-payflow.php:224 +#: includes/public/class-mp-checkout.php:867 +msgid "Please enter a valid credit card number" +msgstr "Syötä voimassa oleva luottokortin numero" + +#: includes/common/payment-gateways/paypal-payflow.php:221 +msgid "Please enter your credit card number" +msgstr "Syötä luottokortin numero" + +#: includes/common/payment-gateways/paypal-payflow.php:217 +msgid "Please enter your credit card security code" +msgstr "Syötä luottokorttisi turvakoodi" + +#: includes/common/payment-gateways/paypal-payflow.php:213 +msgid "Please select your credit card expiration date." +msgstr "Valitse luottokortin vanhenemispäivä." + +#: includes/common/payment-gateways/2checkout.php:299 +#: includes/common/payment-gateways/authorizenet-aim.php:50 +#: includes/common/payment-gateways/eway.php:148 +#: includes/common/payment-gateways/eway.php:298 +#: includes/common/payment-gateways/eway31.php:267 +#: includes/common/payment-gateways/paymill.php:46 +#: includes/common/payment-gateways/paypal-express.php:972 +#: includes/common/payment-gateways/paypal-payflow.php:60 +#: includes/common/payment-gateways/pin.php:46 +#: includes/common/payment-gateways/simplify.php:19 +#: includes/common/payment-gateways/stripe.php:46 +#: includes/common/payment-gateways/wepay.php:37 +msgid "Credit Card" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:49 +msgid "Authorize.net Checkout" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:156 +#: includes/common/payment-gateways/stripe.php:293 +msgid "Selecting a currency other than that used for your store may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:352 +msgid "Seller ID" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:340 +#: includes/common/payment-gateways/_ideal.php:311 +#: includes/common/payment-gateways/authorizenet-aim.php:234 +#: includes/common/payment-gateways/eway.php:376 +#: includes/common/payment-gateways/payfast.php:315 +#: includes/common/payment-gateways/paypal-chained-payments.php:368 +#: includes/common/payment-gateways/paypal-express.php:699 +#: includes/common/payment-gateways/paypal-payflow.php:391 +msgid "Live" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:339 +#: includes/common/payment-gateways/authorizenet-aim.php:233 +#: includes/common/payment-gateways/eway.php:375 +#: includes/common/payment-gateways/paypal-chained-payments.php:367 +#: includes/common/payment-gateways/paypal-express.php:698 +#: includes/common/payment-gateways/paypal-payflow.php:390 +#: includes/common/shipping-modules/mp-fedex.php:263 +msgid "Sandbox" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:336 +#: includes/common/payment-gateways/_ideal.php:307 +#: includes/common/payment-gateways/authorizenet-aim.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:365 +#: includes/common/payment-gateways/paypal-express.php:695 +#: includes/common/payment-gateways/paypal-payflow.php:387 +#: includes/common/payment-gateways/wepay.php:130 +#: includes/common/shipping-modules/mp-fedex.php:260 +msgid "Mode" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:288 +#: includes/common/payment-gateways/mijireh.php:242 +#: includes/common/payment-gateways/mollie.php:212 +msgid "The order has been received" +msgstr "Tilauksesi on vastaanotettu" + +#: includes/common/payment-gateways/2checkout.php:74 +#: includes/common/payment-gateways/2checkout.php:75 +#: includes/common/payment-gateways/2checkout.php:435 +msgid "2Checkout" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:306 +msgid "Confirm" +msgstr "Vahvista" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:218 +#: includes/common/class-mp-cart.php:974 includes/common/class-mp-cart.php:1354 +#: includes/common/template-functions.php:918 +msgid "Checkout" +msgstr "Kassalle" + +#: includes/common/template-functions.php:207 +msgid "Check Order Status" +msgstr "Tarkista tilauksen tila" + +#: includes/common/template-functions.php:235 +msgid "View Products" +msgstr "Katso tuotteita" + +#: includes/common/template-functions.php:263 +msgid "Visit Store" +msgstr "Vieraile kaupassa" + +#: includes/common/template-functions.php:2912 +#: includes/multisite/template-functions.php:448 +msgid "Order By" +msgstr "Järjestä" + +#: includes/common/template-functions.php:2887 +#: includes/multisite/template-functions.php:405 +msgid "Price (High to Low)" +msgstr "Hinta (korkein ensin)" + +#: includes/common/template-functions.php:2886 +#: includes/multisite/template-functions.php:404 +msgid "Price (Low to High)" +msgstr "Hinta (matalin ensin)" + +#: includes/common/template-functions.php:2881 +#: includes/multisite/template-functions.php:399 +msgid "Default" +msgstr "Oletus" + +#: includes/common/template-functions.php:2858 +msgid "Show All" +msgstr "Näytä kaikki" + +#: includes/common/class-mp-product.php:2048 +msgid "View Larger Image »" +msgstr "Katso suurempi kuva »" + +#: includes/common/class-mp-product.php:979 +msgid "Out of Stock" +msgstr "Loppu varastosta" + +#: includes/common/template-functions.php:148 +msgid "Price: " +msgstr "Hinta:" + +#: includes/multisite/template-functions.php:833 +msgid "No Tags" +msgstr "Ei tageja" + +#: includes/common/template-functions.php:3162 +msgid "Uncategorized" +msgstr "Kategorisoimaton" + +#: includes/common/class-mp-cart.php:569 includes/common/class-mp-order.php:604 +#: includes/common/helpers.php:115 +msgid "Download" +msgstr "Lataa" + +#: includes/common/class-mp-cart.php:1353 +msgid "Empty Cart" +msgstr "Tyhjennä kori" + +#: includes/common/payment-gateways/_payway.php:291 +#: includes/common/payment-gateways/paypal-express.php:718 +#: includes/common/payment-gateways/paypal-payflow.php:423 +#: includes/common/shipping-modules/mp-ups.php:158 +#: includes/public/class-mp-checkout.php:1254 +#: includes/public/class-mp-checkout.php:1383 +msgid "Password" +msgstr "Salasana" + +#: includes/common/payment-gateways/eway.php:387 +#: includes/common/payment-gateways/paypal-express.php:711 +#: includes/common/shipping-modules/mp-usps.php:185 +#: includes/public/class-mp-checkout.php:1249 +msgid "Username" +msgstr "Käyttäjätunnus" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:437 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:790 +msgid "Have a coupon code?" +msgstr "Lisää kuponkikoodi" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:321 +#: includes/admin/class-mp-orders-admin.php:526 +#: includes/common/class-mp-cart.php:592 +msgid "Remove" +msgstr "Poista" + +#: includes/admin/class-mp-ajax.php:316 +msgid "Quantity:" +msgstr "Määrä:" + +#: includes/admin/class-mp-products-admin.php:2140 +#: includes/admin/class-mp-products-admin.php:2387 +#: includes/common/shipping-modules/class-mp-shipping-api.php:507 +msgid "Extra Shipping Cost" +msgstr "Kuljetuksen lisämaksu" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:403 +msgid "Choose a Shipping Method:" +msgstr "Valitse kuljetustapa:" + +#: includes/admin/class-mp-products-admin.php:1691 +#: includes/admin/class-mp-products-admin.php:2131 +#: includes/admin/class-mp-products-admin.php:2378 +#: includes/common/shipping-modules/class-mp-shipping-api.php:228 +msgid "Ounces" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1684 +#: includes/admin/class-mp-products-admin.php:2123 +#: includes/admin/class-mp-products-admin.php:2369 +#: includes/admin/class-mp-setup-wizard.php:546 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:165 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +#: includes/common/shipping-modules/class-mp-shipping-api.php:227 +msgid "Pounds" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:226 +msgid "Product Weight:" +msgstr "Tuotteen paino:" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:214 +msgid "Weight (Kilograms)" +msgstr "Paino (kg)" + +#: includes/admin/widgets/ms-global-categories.php:82 +msgid "Number of Categories:" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:72 +msgid "Product Count" +msgstr "Tuotteiden lkm." + +#: includes/addons/class-mp-addons-list-table.php:20 +#: includes/admin/class-mp-product-attributes-admin.php:129 +#: includes/admin/class-mp-product-attributes-list-table.php:22 +#: includes/admin/class-mp-products-admin.php:2216 +#: includes/admin/class-mp-shortcode-builder.php:628 +#: includes/admin/class-mp-shortcode-builder.php:1415 +#: includes/admin/widgets/ms-global-categories.php:70 +#: includes/common/shipping-modules/mp-fedex.php:395 +#: includes/common/shipping-modules/mp-ups.php:202 +#: includes/common/shipping-modules/mp-usps.php:243 +#: includes/public/class-mp-checkout.php:314 +msgid "Name" +msgstr "Nimi" + +#: includes/admin/widgets/ms-global-categories.php:67 +msgid "Order Categories By:" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:24 +#: includes/admin/widgets/ms-global-categories.php:50 +msgid "Global Product Categories" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:15 +msgid "Global Product Category List" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:13 +msgid "Displays a network-wide HTML list of product categories from network MarketPress stores." +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:24 +#: includes/admin/widgets/ms-global-tag-cloud.php:45 +msgid "Global Product Tags" +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:15 +msgid "Global Product Tag Cloud" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:947 +#: includes/admin/widgets/ms-global-product-list.php:173 +msgid "Excerpt" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:169 +msgid "Content To Show:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:140 +msgid "Limit To Product Tag:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:132 +msgid "Limit To Product Category:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:72 +msgid "Global Products" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:16 +msgid "Global Product List" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:14 +msgid "Shows a customizable global list of products from network MarketPress stores." +msgstr "" + +#: includes/common/class-mp-product.php:974 +#: includes/multisite/template-functions.php:731 +msgid "Buy Now »" +msgstr "Osta nyt »" + +#: includes/admin/widgets/ms-global-tag-cloud.php:13 +msgid "Displays global most used product tags in cloud format from network MarketPress stores." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:438 +msgid "Theme Permissions" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:402 +#: includes/multisite/class-mp-admin-multisite.php:448 +msgid "No Access" +msgstr "" + +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:120 +msgid "Pro Site Level" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:401 +#: includes/multisite/class-mp-admin-multisite.php:447 +msgid "All Can Use" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:390 +msgid "Gateway Permissions" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:375 +msgid "Select a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:350 +msgid "Global Gateway" +msgstr "" + +#. Plugin Name of the plugin/theme +msgid "MarketPress" +msgstr "" + +#: includes/admin/widgets/product-tag-cloud.php:7 +msgid "Your most used product tags in cloud format from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/categories.php:79 +msgid "Show hierarchy" +msgstr "" + +#: includes/admin/widgets/categories.php:76 +#: includes/admin/widgets/ms-global-categories.php:92 +msgid "Show product counts" +msgstr "" + +#: includes/admin/widgets/categories.php:73 +msgid "Show as dropdown" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:710 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:736 +#: includes/admin/widgets/categories.php:30 +msgid "Select Category" +msgstr "" + +#: includes/admin/widgets/categories.php:7 +msgid "A list or dropdown of product categories from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/product-list.php:250 +msgid "Show Buy Button" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:183 +#: includes/admin/widgets/product-list.php:244 +msgid "Show Price" +msgstr "" + +#: includes/admin/widgets/product-list.php:241 +msgid "Show Excerpt" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:155 +#: includes/admin/widgets/product-list.php:238 +msgid "Thumbnail Size:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:153 +#: includes/admin/widgets/product-list.php:237 +msgid "Show Thumbnail" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:147 +#: includes/admin/widgets/product-list.php:233 +msgid "Display Settings" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:136 +#: includes/admin/widgets/ms-global-product-list.php:144 +#: includes/admin/widgets/product-list.php:230 +msgid "Enter the Slug" +msgstr "" + +#: includes/admin/widgets/product-list.php:228 +#: includes/common/template-functions.php:894 +msgid "Tag" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:686 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:712 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:739 +#: includes/admin/class-mp-shortcode-builder.php:796 +#: includes/admin/widgets/product-list.php:227 +#: includes/common/template-functions.php:886 +#: includes/common/template-functions.php:2907 +msgid "Category" +msgstr "" + +#: includes/admin/widgets/product-list.php:226 +msgid "No Filter" +msgstr "" + +#: includes/admin/widgets/product-list.php:224 +msgid "Taxonomy Filter:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:108 +#: includes/admin/widgets/product-list.php:209 +msgid "Order Products By:" +msgstr "Tilaa tuotteita:" + +#: includes/admin/widgets/ms-global-product-list.php:101 +#: includes/admin/widgets/product-list.php:206 +msgid "Number of Products:" +msgstr "Tuotteiden lukumäärä" + +#: includes/admin/widgets/ms-global-product-list.php:98 +#: includes/admin/widgets/product-list.php:204 +msgid "List Settings" +msgstr "" + +#: includes/admin/widgets/product-list.php:177 +msgid "Our Products" +msgstr "Tuotteemme" + +#: includes/admin/widgets/product-list.php:144 +#: includes/common/template-functions.php:2070 +#: includes/common/template-functions.php:2347 +#: includes/multisite/template-functions.php:303 +#: includes/multisite/template-functions.php:623 +msgid "No Products" +msgstr "Ei tuotteita" + +#: includes/admin/widgets/product-list.php:8 +msgid "Product List" +msgstr "Tuotelista" + +#: includes/admin/widgets/product-list.php:7 +msgid "Shows a customizable list of products from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/cart.php:75 includes/admin/widgets/categories.php:82 +#: includes/admin/widgets/product-list.php:253 +#: includes/admin/widgets/product-tag-cloud.php:57 +msgid "Only show on store pages" +msgstr "" + +#: includes/admin/widgets/cart.php:65 +#: includes/admin/widgets/ms-global-product-list.php:92 +#: includes/admin/widgets/product-list.php:200 +msgid "Custom Text:" +msgstr "Vapaa teksti:" + +#: includes/admin/widgets/cart.php:64 includes/admin/widgets/categories.php:69 +#: includes/admin/widgets/ms-global-categories.php:59 +#: includes/admin/widgets/ms-global-product-list.php:87 +#: includes/admin/widgets/ms-global-tag-cloud.php:49 +#: includes/admin/widgets/product-list.php:199 +#: includes/admin/widgets/product-tag-cloud.php:49 +msgid "Title:" +msgstr "Otsikko:" + +#: includes/admin/widgets/cart.php:7 +msgid "Shows dynamic shopping cart contents along with a checkout button for your MarketPress store." +msgstr "" + +#: includes/admin/widgets/product-tag-cloud.php:8 +msgid "Product Tag Cloud" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:539 +#: includes/admin/class-mp-setup-wizard.php:575 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:163 +msgid "Measurement System" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:616 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:149 +msgid "Select Shipping Options" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:596 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:129 +msgid "Calculated Options" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:582 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:115 +msgid "No Shipping" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:110 +msgid "EU" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:109 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:93 +msgid "All" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:92 +msgid "Select:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:185 +msgid "Store Pages" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:223 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:256 +msgid "Order Shipped" +msgstr "Tilaus toimitettu" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:60 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:95 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:128 +#: marketpress.php:266 +msgid "New Order" +msgstr "Uusi tilaus" + +#: includes/admin/class-mp-dashboard-widgets.php:314 +msgid "Email Notifications" +msgstr "Sähköposti huomautukset" + +#: includes/admin/class-mp-pages-admin.php:59 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:200 +msgid "Products List" +msgstr "Tuotelista" + +#: includes/admin/class-mp-pages-admin.php:58 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:190 +msgid "Store Base" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:108 +#: includes/admin/class-mp-shortcode-builder.php:635 +#: includes/admin/class-mp-shortcode-builder.php:708 +#: includes/admin/class-mp-shortcode-builder.php:875 +#: includes/admin/class-mp-shortcode-builder.php:1319 +#: includes/admin/class-mp-shortcode-builder.php:1422 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:526 +#: includes/admin/widgets/ms-global-categories.php:78 +#: includes/admin/widgets/ms-global-product-list.php:127 +#: includes/admin/widgets/product-list.php:221 +msgid "Ascending" +msgstr "Nouseva" + +#: includes/admin/class-mp-product-attributes-admin.php:109 +#: includes/admin/class-mp-shortcode-builder.php:636 +#: includes/admin/class-mp-shortcode-builder.php:709 +#: includes/admin/class-mp-shortcode-builder.php:876 +#: includes/admin/class-mp-shortcode-builder.php:1320 +#: includes/admin/class-mp-shortcode-builder.php:1423 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:525 +#: includes/admin/widgets/ms-global-categories.php:75 +#: includes/admin/widgets/ms-global-product-list.php:124 +#: includes/admin/widgets/product-list.php:220 +msgid "Descending" +msgstr "Laskeva" + +#: includes/admin/class-mp-shortcode-builder.php:637 +#: includes/admin/class-mp-shortcode-builder.php:695 +#: includes/admin/class-mp-shortcode-builder.php:862 +#: includes/admin/class-mp-shortcode-builder.php:1306 +#: includes/admin/class-mp-shortcode-builder.php:1424 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:518 +#: includes/admin/widgets/ms-global-product-list.php:121 +#: includes/admin/widgets/product-list.php:218 +msgid "Random" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:694 +#: includes/admin/class-mp-shortcode-builder.php:861 +#: includes/admin/class-mp-shortcode-builder.php:1305 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:517 +#: includes/admin/widgets/ms-global-product-list.php:119 +#: includes/admin/widgets/product-list.php:216 +msgid "Product Price" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:693 +#: includes/admin/class-mp-shortcode-builder.php:860 +#: includes/admin/class-mp-shortcode-builder.php:1304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:516 +#: includes/admin/widgets/ms-global-product-list.php:117 +#: includes/admin/widgets/product-list.php:215 +msgid "Number of Sales" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:692 +#: includes/admin/class-mp-shortcode-builder.php:859 +#: includes/admin/class-mp-shortcode-builder.php:1303 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:515 +#: includes/admin/widgets/product-list.php:214 +msgid "Product Author" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:691 +#: includes/admin/class-mp-shortcode-builder.php:858 +#: includes/admin/class-mp-shortcode-builder.php:1302 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:514 +#: includes/admin/widgets/product-list.php:213 +msgid "Product ID" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:690 +#: includes/admin/class-mp-shortcode-builder.php:857 +#: includes/admin/class-mp-shortcode-builder.php:1301 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:513 +#: includes/admin/widgets/ms-global-product-list.php:113 +#: includes/admin/widgets/product-list.php:212 +msgid "Publish Date" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:430 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:726 +msgid "Width" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:439 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:735 +msgid "Height" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:88 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:402 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:698 +msgid "Custom" +msgstr "" + +#: includes/common/class-mp-product.php:179 +#: includes/common/class-mp-product.php:992 +#: includes/common/class-mp-product.php:1000 +#: includes/multisite/template-functions.php:579 +msgid "Buy Now" +msgstr "Osta nyt" + +#: includes/common/class-mp-product.php:175 +#: includes/common/class-mp-product.php:990 +#: includes/common/class-mp-product.php:998 +msgid "Add To Cart" +msgstr "Lisää ostoskoriin" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:807 +msgid "Store Style" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1021 +msgid "Edit Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupon.php:580 +#: includes/admin/class-mp-ajax.php:238 +#: includes/admin/class-mp-products-admin.php:1532 +msgid "Unlimited" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1198 +msgid "Remaining Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1197 +msgid "Used" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:752 +#: includes/admin/class-mp-products-admin.php:2343 +msgid "Start Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:598 +msgid "Coupon Code" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:444 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:284 +msgid "Save Changes" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:57 +#: includes/admin/class-mp-shortcode-builder.php:716 +#: includes/admin/class-mp-shortcode-builder.php:727 +#: includes/admin/class-mp-shortcode-builder.php:883 +#: includes/admin/class-mp-shortcode-builder.php:894 +#: includes/admin/class-mp-shortcode-builder.php:946 +#: includes/admin/class-mp-shortcode-builder.php:956 +#: includes/admin/class-mp-shortcode-builder.php:1006 +#: includes/admin/class-mp-shortcode-builder.php:1327 +#: includes/admin/class-mp-shortcode-builder.php:1338 +#: includes/admin/store-settings/class-mp-store-settings-general.php:357 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:270 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:108 +#: includes/admin/widgets/ms-global-product-list.php:172 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:94 +msgid "None" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:352 +msgid "Google Analytics Ecommerce Tracking" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:310 +msgid "This option turns MarketPress into more of a product listing plugin, disabling shopping carts, checkout, and order management. This is useful if you simply want to list items you can buy in a store somewhere else, optionally linking the \"Buy Now\" buttons to an external site. Some examples are a car dealership, or linking to songs/albums in itunes, or linking to products on another site with your own affiliate links." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:304 +msgid "Whether or not customers must be registered and logged in to checkout. (Not recommended: Enabling this can lower conversions)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:258 +msgid "How many times may a customer download a file they have purchased? (It's best to set this higher than one in case they have any problems downloading)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:257 +msgid "Maximum Downloads" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:298 +msgid "This will set the product to draft if inventory of all variations is gone." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:288 +msgid "At what low stock count do you want to be warned for products you have enabled inventory tracking for?" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:208 +#: includes/admin/store-settings/class-mp-store-settings-general.php:287 +msgid "Inventory Warning Threshold" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:282 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:542 +msgid "Miscellaneous Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:429 +#: includes/multisite/class-mp-admin-multisite.php:247 +msgid "Show Decimal in Prices" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:451 +#: includes/admin/store-settings/class-mp-store-settings-general.php:403 +#: includes/multisite/class-mp-admin-multisite.php:221 +msgid "Currency Symbol Position" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:444 +#: includes/admin/store-settings/class-mp-store-settings-general.php:396 +msgid "Store Currency" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:429 +#: includes/admin/store-settings/class-mp-store-settings-general.php:381 +msgid "Currency Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:516 +msgid "Please see your local tax laws. Note if this is enabled and a downloadable only cart, rates will be the default for your base location." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:529 +msgid "Apply Tax to Downloadable Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:498 +msgid "Enabling this option allows you to enter and show all prices inclusive of tax, while still listing the tax total as a line item in shopping carts. Please see your local tax laws." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:497 +msgid "Enter Prices Inclusive of Tax?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:492 +msgid "Please see your local tax laws. Most areas charge tax on shipping fees." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:491 +msgid "Apply Tax To Shipping Fees?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:674 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:565 +#: includes/common/payment-gateways/authorizenet-aim.php:291 +#: includes/common/payment-gateways/authorizenet-aim.php:326 +#: includes/common/payment-gateways/payfast.php:347 +msgid "No" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:675 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:759 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:512 +#: includes/admin/class-mp-setup-wizard.php:518 +#: includes/admin/class-mp-setup-wizard.php:524 +#: includes/admin/class-mp-setup-wizard.php:530 +#: includes/admin/class-mp-setup-wizard.php:564 +#: includes/admin/store-settings/class-mp-store-settings-general.php:232 +#: includes/admin/store-settings/class-mp-store-settings-general.php:299 +#: includes/admin/store-settings/class-mp-store-settings-general.php:305 +#: includes/admin/store-settings/class-mp-store-settings-general.php:311 +#: includes/admin/store-settings/class-mp-store-settings-general.php:317 +#: includes/admin/store-settings/class-mp-store-settings-general.php:328 +#: includes/admin/store-settings/class-mp-store-settings-general.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:341 +#: includes/admin/store-settings/class-mp-store-settings-general.php:348 +#: includes/admin/store-settings/class-mp-store-settings-general.php:367 +#: includes/admin/store-settings/class-mp-store-settings-general.php:493 +#: includes/admin/store-settings/class-mp-store-settings-general.php:499 +#: includes/admin/store-settings/class-mp-store-settings-general.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:556 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:375 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:381 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:387 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:474 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:493 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:532 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:574 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:606 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:664 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:670 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:677 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:683 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:689 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:763 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:774 +#: includes/common/payment-gateways/_bitpay.php:250 +#: includes/common/payment-gateways/_bitpay.php:257 +#: includes/common/payment-gateways/_bitpay.php:264 +#: includes/common/payment-gateways/authorizenet-aim.php:290 +#: includes/common/payment-gateways/authorizenet-aim.php:325 +#: includes/common/payment-gateways/free_orders.php:160 +#: includes/common/payment-gateways/payfast.php:346 +#: includes/common/payment-gateways/paymill.php:162 +#: includes/common/payment-gateways/paypal-payflow.php:441 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-checkbox.php:22 +msgid "Yes" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:492 +#: includes/admin/store-settings/class-mp-store-settings-general.php:472 +msgid "%s Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:467 +#: includes/admin/store-settings/class-mp-store-settings-general.php:449 +msgid "Tax Settings" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:370 +#: includes/admin/store-settings/class-mp-store-settings-general.php:624 +msgid "Base Zip/Postal Code" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:354 +#: includes/admin/store-settings/class-mp-store-settings-general.php:608 +msgid "Base State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:589 +msgid "Base Country" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:582 +msgid "Location Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:195 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:800 +#: includes/multisite/class-mp-admin-multisite.php:172 +msgid "General Settings" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1945 +#: includes/admin/class-mp-products-admin.php:2185 +#: includes/admin/class-mp-store-settings-admin.php:111 +#: includes/admin/class-mp-store-settings-admin.php:266 +msgid "General" +msgstr "Yleinen" + +#: includes/admin/class-mp-store-settings-admin.php:242 +msgid "Importers" +msgstr "Tuonti muista ohjelmistoista" + +#: includes/admin/class-mp-store-settings-admin.php:115 +#: includes/admin/class-mp-store-settings-admin.php:234 +msgid "Payments" +msgstr "Maksut" + +#: includes/admin/class-mp-dashboard-widgets.php:313 +#: includes/admin/class-mp-store-settings-admin.php:112 +#: includes/admin/class-mp-store-settings-admin.php:222 +msgid "Presentation" +msgstr "Esitys" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:916 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1015 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1018 +#: includes/admin/class-mp-dashboard-widgets.php:305 marketpress.php:702 +msgid "Coupons" +msgstr "Kupongit" + +#: includes/admin/class-mp-admin.php:251 +msgid "Download »" +msgstr "Lataa »" + +#: includes/admin/class-mp-admin.php:245 +#: includes/admin/class-mp-exporter-orders.php:170 +msgid "All Statuses" +msgstr "Kaikki tilat" + +#: includes/admin/class-mp-admin.php:209 +#: includes/admin/class-mp-exporter-orders.php:150 +#: includes/admin/class-mp-exporter-orders.php:178 +msgid "Export Orders" +msgstr "Exporttaa tilaukset" + +#: includes/admin/class-mp-admin.php:228 +msgid "Show all dates" +msgstr "Näytä kaikki päivät" + +#: includes/admin/class-mp-orders-admin.php:947 +msgid "Change Status" +msgstr "Muuta tilaa" + +#: includes/admin/class-mp-orders-admin.php:287 +msgid "Order Notes" +msgstr "Tilaushuomiot" + +#: includes/admin/class-mp-orders-admin.php:478 +msgid "Other" +msgstr "Muu" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:205 +msgid "Subtotal" +msgstr "Yhteensä" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:84 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:87 +#: includes/admin/class-mp-products-admin.php:1737 +#: includes/common/class-mp-cart.php:1409 +#: includes/common/class-mp-product.php:559 +msgid "Quantity" +msgstr "Määrä" + +#: includes/common/helpers.php:93 +msgid "Item" +msgstr "Tuote" + +#: includes/common/class-mp-order.php:1050 +msgid "Current Status" +msgstr "Nykyinen tila" + +#: includes/admin/class-mp-orders-admin.php:297 +msgid "Order Actions" +msgstr "Tilauksen toiminnot" + +#: includes/common/class-mp-product.php:1084 +msgid "More Info »" +msgstr "Lisää tietoa »" + +#: includes/common/class-mp-product.php:2313 +msgid "Low Product Inventory Notification" +msgstr "" + +#: includes/common/class-mp-order.php:338 includes/common/data.php:154 +msgid "New Order Notification: ORDERID" +msgstr "Uusi päivitys tilaukseesi: ORDERID" + +#: includes/common/helpers.php:259 +msgid "Your payment for this order is complete." +msgstr "Maksusi tälle tilaukselle on suoritettu." + +#: includes/common/helpers.php:261 +msgid "Your payment for this order is not yet complete. Here is the latest status:" +msgstr "Maksusi tälle tilaukselle ei ole vielä valmis. Tässä on viimeisin maksun tila:" + +#: includes/common/helpers.php:256 +msgid "Payment Total:" +msgstr "Maksu yhteensä:" + +#: includes/common/helpers.php:253 +msgid "Transaction ID:" +msgstr "Maksutapahtuman tunnus:" + +#: includes/common/helpers.php:249 +msgid "Payment Type:" +msgstr "Maksutyyppi:" + +#: includes/common/helpers.php:246 +msgid "Payment Method:" +msgstr "Maksutapa:" + +#: includes/common/helpers.php:242 +msgid "Order Notes:" +msgstr "Tilauksen huomiot:" + +#: includes/common/helpers.php:237 +msgid "Special Instructions:" +msgstr "Lisäohjeet:" + +#: includes/common/helpers.php:232 +msgid "Tracking Number:" +msgstr "Seurantakoodi:" + +#: includes/common/helpers.php:223 includes/common/helpers.php:226 +#: includes/common/helpers.php:228 +#: includes/common/shipping-modules/class-mp-shipping-api.php:406 +#: includes/common/shipping-modules/class-mp-shipping-api.php:428 +msgid "Shipping Method:" +msgstr "Kuljetustapa:" + +#: includes/common/helpers.php:168 +msgid "No shipping required for this order." +msgstr "Ei kuljetusta tälle tilaukselle." + +#: includes/common/helpers.php:155 +msgid "Order Total:" +msgstr "Tilaus yhteensä:" + +#: includes/common/class-mp-order.php:1025 +msgid "Taxes:" +msgstr "ALV:" + +#: includes/common/class-mp-order.php:1032 includes/common/helpers.php:144 +msgid "Shipping:" +msgstr "Toimitus:" + +#: includes/public/class-mp-checkout.php:367 +msgid "Street address, P.O. box, company name, c/o" +msgstr "Tarkentava osoitetieto:" + +#: includes/admin/class-mp-orders-admin.php:314 +msgid "Shipping Info" +msgstr "Kuljetuksen tiedot" + +#: includes/public/class-mp-public.php:740 +msgid "Whoops, there was a problem loading up this file for your download. Please contact us for help." +msgstr "Hups, emme löytäneet tiedostoa. Ota meihin yhteyttä." + +#: includes/public/class-mp-public.php:683 +msgid "Sorry, our records show you've downloaded this file %d out of %d times allowed. Please contact us if you still need help." +msgstr "Pahoittelut, tietojemme mukaan olet ladannut tämän tiedoston %d kertaa %d mahdollisesta. Ota meihin yhteyttä, jos tarvitset lisäapua." + +#: includes/public/class-mp-public.php:634 +msgid "Sorry, your order has been marked as unpaid." +msgstr "Pahoittelut, tilauksesi tila on maksamaton." + +#: includes/public/class-mp-public.php:629 +msgid "Sorry, the link is invalid for this download." +msgstr "Pahoittelut, linkki on väärä tälle lataukselle." + +#: includes/admin/class-mp-exporter-orders.php:15 +#: includes/admin/class-mp-products-admin.php:1172 +msgid "Cheatin’ uh?" +msgstr "" + +#: includes/public/class-mp-public.php:407 +#: includes/public/class-mp-short-codes.php:128 +msgid "Please enter a valid email address." +msgstr "" + +#: includes/admin/class-mp-ajax.php:191 +#: includes/admin/class-mp-products-admin.php:1821 +#: includes/admin/class-mp-products-admin.php:2010 +#: includes/admin/class-mp-products-admin.php:2267 +msgid "File URL" +msgstr "Tiedoston URL" + +#: includes/admin/class-mp-products-admin.php:1842 +msgid "External Link" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2177 +msgid "Add Variation" +msgstr "Lisää variaatio" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:126 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:289 +msgid "Inventory" +msgstr "Varasto" + +#: includes/admin/class-mp-products-admin.php:438 +#: includes/admin/class-mp-products-admin.php:578 +#: includes/admin/class-mp-products-admin.php:1552 +#: includes/admin/class-mp-products-admin.php:2053 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:134 +msgid "Sale Price" +msgstr "Alehinta" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "Variation Name" +msgstr "Variaation nimi" + +#: includes/admin/class-mp-products-admin.php:1931 +msgid "Product Details" +msgstr "Tuotteen tiedot" + +#: includes/admin/class-mp-product-attributes-list-table.php:33 +msgid "Delete" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1057 +msgid "Trashed" +msgstr "Roskakorissa" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:231 +#: includes/admin/class-mp-orders-admin.php:1015 +#: includes/common/class-mp-order.php:1052 includes/common/helpers.php:97 +msgid "Total" +msgstr "Yhteensä" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1196 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:210 +#: includes/admin/class-mp-orders-admin.php:1014 +msgid "Discount" +msgstr "Alennus" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:221 +#: includes/admin/class-mp-orders-admin.php:1013 +#: includes/common/payment-gateways/_ideal.php:148 +#: includes/common/payment-gateways/_payway.php:134 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:108 +msgid "Tax" +msgstr "ALV" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:216 +#: includes/admin/class-mp-orders-admin.php:1012 +#: includes/admin/class-mp-products-admin.php:1958 +#: includes/admin/class-mp-products-admin.php:2198 +#: includes/admin/class-mp-store-settings-admin.php:114 +#: includes/admin/class-mp-store-settings-admin.php:230 +#: includes/common/class-mp-cart.php:717 includes/common/helpers.php:168 +#: includes/common/payment-gateways/_ideal.php:137 +#: includes/common/payment-gateways/_payway.php:116 +#: includes/public/class-mp-checkout.php:1304 +msgid "Shipping" +msgstr "Kuljetus" + +#: includes/admin/class-mp-orders-admin.php:1011 +msgid "Items" +msgstr "Tuotteet" + +#: includes/admin/class-mp-orders-admin.php:1010 +msgid "From" +msgstr "Alkaen" + +#: includes/admin/class-mp-exporter-orders.php:154 +#: includes/admin/class-mp-orders-admin.php:1009 +#: includes/common/class-mp-gdpr.php:370 +msgid "Order Date" +msgstr "Tilauspäivämäärä" + +#: includes/admin/class-mp-orders-admin.php:1008 +#: includes/common/class-mp-gdpr.php:366 +#: includes/common/template-functions.php:2134 +msgid "Order ID" +msgstr "Tilausnumero" + +#: includes/addons/class-mp-addons-list-table.php:22 +#: includes/admin/class-mp-orders-admin.php:1007 +msgid "Status" +msgstr "Tila" + +#: includes/admin/class-mp-orders-admin.php:1155 +msgid "N/A" +msgstr "N/A" + +#: includes/admin/class-mp-dashboard-widgets.php:243 +#: includes/admin/class-mp-products-admin.php:464 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:142 +msgid "Sales" +msgstr "Alehinta" + +#: includes/admin/class-mp-products-admin.php:463 +msgid "Stock" +msgstr "Varastosaldo" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:85 +#: includes/admin/class-mp-ajax.php:176 includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:434 +#: includes/admin/class-mp-products-admin.php:462 +#: includes/admin/class-mp-products-admin.php:576 +#: includes/admin/class-mp-products-admin.php:1519 +#: includes/admin/class-mp-products-admin.php:1569 +#: includes/admin/class-mp-products-admin.php:1950 +#: includes/admin/class-mp-products-admin.php:2059 +#: includes/admin/class-mp-products-admin.php:2190 +#: includes/admin/class-mp-products-admin.php:2330 +#: includes/common/class-mp-cart.php:1415 includes/common/helpers.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:130 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:276 +msgid "Price" +msgstr "Hinta" + +#: includes/admin/class-mp-ajax.php:173 +#: includes/admin/class-mp-products-admin.php:461 +#: includes/admin/class-mp-products-admin.php:1972 +#: includes/admin/class-mp-products-admin.php:2224 +msgid "SKU" +msgstr "Tuotenumero" + +#: includes/admin/class-mp-products-admin.php:459 +#: includes/admin/class-mp-products-admin.php:1793 +#: includes/admin/class-mp-products-admin.php:1805 +#: includes/admin/class-mp-products-admin.php:2163 +msgid "Variations" +msgstr "Variaatiot" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:83 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:86 +#: includes/admin/class-mp-dashboard-widgets.php:134 +#: includes/admin/class-mp-products-admin.php:458 +#: includes/admin/class-mp-products-admin.php:837 +#: includes/admin/class-mp-shortcode-builder.php:689 +#: includes/admin/class-mp-shortcode-builder.php:856 +#: includes/admin/class-mp-shortcode-builder.php:1300 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:512 +#: includes/admin/widgets/ms-global-product-list.php:115 +#: includes/admin/widgets/product-list.php:211 +msgid "Product Name" +msgstr "Tuotenimi" + +#: includes/common/template-functions.php:2575 +msgid "Categorized in " +msgstr "Kategoria" + +#: includes/admin/class-mp-orders-admin.php:305 +#: includes/common/payment-gateways/free_orders.php:176 +msgid "Payment Information" +msgstr "Maksutiedot" + +#: includes/admin/class-mp-exporter-orders.php:167 +#: includes/admin/class-mp-orders-admin.php:432 +#: includes/admin/class-mp-pages-admin.php:62 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:227 +#: includes/common/class-mp-gdpr.php:374 +#: includes/common/template-functions.php:175 +#: includes/common/template-functions.php:926 +msgid "Order Status" +msgstr "Tilauksen tila" + +#. translators: %s: orders closed +#: marketpress.php:327 +msgid "Closed (%s)" +msgid_plural "Closed (%s)" +msgstr[0] "Suljettu (%s)" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:249 +#: includes/admin/class-mp-orders-admin.php:375 +#: includes/admin/class-mp-orders-admin.php:951 +#: includes/admin/class-mp-orders-admin.php:1053 +#: includes/admin/class-mp-orders-admin.php:1065 +#: includes/common/class-mp-gdpr.php:330 +#: includes/common/class-mp-order.php:1019 marketpress.php:325 +msgid "Closed" +msgstr "Suljettu" + +#. translators: %s: shipped orders +#: marketpress.php:320 +msgid "Shipped (%s)" +msgid_plural "Shipped (%s)" +msgstr[0] "Lähetetty (%s)" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:248 +#: includes/admin/class-mp-orders-admin.php:376 +#: includes/admin/class-mp-orders-admin.php:950 +#: includes/admin/class-mp-orders-admin.php:1049 +#: includes/admin/class-mp-orders-admin.php:1064 +#: includes/common/class-mp-gdpr.php:329 +#: includes/common/class-mp-order.php:1002 marketpress.php:318 +msgid "Shipped" +msgstr "Lähetetty" + +#. translators: %s: paid orders +#: marketpress.php:313 +msgid "Paid (%s)" +msgid_plural "Paid (%s)" +msgstr[0] "Maksettu (%s)" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:247 +#: includes/admin/class-mp-orders-admin.php:377 +#: includes/admin/class-mp-orders-admin.php:949 +#: includes/admin/class-mp-orders-admin.php:1045 +#: includes/admin/class-mp-orders-admin.php:1063 +#: includes/common/class-mp-gdpr.php:328 +#: includes/common/payment-gateways/2checkout.php:294 +#: includes/common/payment-gateways/_cubepoints.php:130 +#: includes/common/payment-gateways/authorizenet-aim.php:193 +#: includes/common/payment-gateways/free_orders.php:91 +#: includes/common/payment-gateways/mijireh.php:248 +#: includes/common/payment-gateways/paymill.php:273 +#: includes/common/payment-gateways/paypal-express.php:933 +#: includes/common/payment-gateways/paypal-express.php:967 +#: includes/common/payment-gateways/pin.php:258 +#: includes/common/payment-gateways/simplify.php:181 +#: includes/common/payment-gateways/stripe.php:368 +#: includes/common/payment-gateways/wepay.php:269 marketpress.php:311 +msgid "Paid" +msgstr "Maksettu" + +#. translators: %s: orders received +#: marketpress.php:306 +msgid "Received (%s)" +msgid_plural "Received (%s)" +msgstr[0] "Vastaanotettu (%s)" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:246 +#: includes/admin/class-mp-orders-admin.php:378 +#: includes/admin/class-mp-orders-admin.php:1041 +#: includes/admin/class-mp-orders-admin.php:1062 +#: includes/common/class-mp-gdpr.php:327 includes/common/class-mp-order.php:995 +#: includes/common/payment-gateways/payfast.php:244 marketpress.php:304 +msgid "Received" +msgstr "Vastaanotettu" + +#: marketpress.php:268 +msgid "Search Orders" +msgstr "Etsi tilauksia" + +#: marketpress.php:267 +msgid "View Order" +msgstr "Katso tilausta" + +#: marketpress.php:262 +msgid "Order" +msgstr "Tilaus" + +#: includes/admin/class-mp-dashboard-widgets.php:301 +#: includes/admin/class-mp-orders-admin.php:989 marketpress.php:261 +msgid "Orders" +msgstr "Tilaukset" + +#: marketpress.php:228 +msgid "No Products found in Trash" +msgstr "" + +#: marketpress.php:227 +msgid "No Products Found" +msgstr "Ei löytynyt tuotteita" + +#: marketpress.php:226 +msgid "Search Products" +msgstr "Etsi tuotteita" + +#: marketpress.php:225 marketpress.php:229 +msgid "View Product" +msgstr "" + +#: marketpress.php:224 +msgid "New Product" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1022 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:258 +#: marketpress.php:223 +msgid "Edit" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1019 +msgid "Create New" +msgstr "Luo uusi" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:687 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:698 +#: marketpress.php:217 +msgid "Product" +msgstr "Tuote" + +#: includes/admin/class-mp-dashboard-widgets.php:307 +#: includes/common/template-functions.php:173 +#: includes/common/template-functions.php:179 +#: includes/common/template-functions.php:902 +#: includes/multisite/template-functions.php:82 marketpress.php:216 +#: marketpress.php:219 +msgid "Products" +msgstr "Tuotteet" + +#: includes/admin/class-mp-store-settings-admin.php:118 +#: includes/admin/widgets/product-tag-cloud.php:46 +#: includes/multisite/class-mp-admin-multisite.php:548 +msgid "Product Tags" +msgstr "Tuotetagit" + +#: includes/common/template-functions.php:2906 +#: includes/multisite/template-functions.php:449 +msgid "Product Category" +msgstr "Tuotekategoria" + +#: includes/admin/class-mp-store-settings-admin.php:117 +#: includes/admin/widgets/categories.php:8 +#: includes/admin/widgets/categories.php:18 +#: includes/multisite/class-mp-admin-multisite.php:539 +msgid "Product Categories" +msgstr "Tuotekategoriat" + +#: includes/common/payment-gateways/stripe.php:332 +#: includes/common/template-functions.php:872 marketpress.php:218 +msgid "Store" +msgstr "Kauppa" + +#: includes/admin/class-mp-pages-admin.php:60 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:209 +#: includes/admin/widgets/cart.php:8 includes/admin/widgets/cart.php:56 +#: includes/common/template-functions.php:174 +#: includes/common/template-functions.php:811 +msgid "Shopping Cart" +msgstr "Ostoskori" + +#: includes/admin/class-mp-store-settings-admin.php:110 +#: includes/admin/class-mp-store-settings-admin.php:218 +msgid "Store Settings" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:128 marketpress.php:607 +msgid "Settings" +msgstr "" + +#: includes/common/data.php:178 includes/common/data.php:190 +msgid "Your Order Has Been Shipped! (ORDERID)" +msgstr "Tilauksesi on lähetetty! (ORDERID)" + +#: includes/common/data.php:159 includes/common/data.php:166 +#: includes/common/data.php:172 +msgid "Your Order Confirmation (ORDERID)" +msgstr "Tilausvahvistuksesi (ORDERID)" + +#: includes/common/data.php:148 +msgid "

    Thank you for your order! We appreciate your business, and please come back often to check out our new products.

    " +msgstr "

    Kiitos tilauksestasi! Tervetuloa takaisin tutustumaan tuotteisiimme.

    " + +#: includes/common/data.php:147 +msgid "

    You are almost done! Please do a final review of your order to make sure everything is correct then click the \"Confirm Payment\" button.

    " +msgstr "

    Melkein valmista! Tarkista tilauksesi vielä kerran ja klikkaa \"Vahvista maksu\" -nappia.

    " + +#: includes/common/data.php:145 +msgid "

    Please enter your shipping information in the form below to proceed with your order.

    " +msgstr "

    Syötä toimitusosoitteesi alle jatkaaksesi tilauksen tekemistä.

    " + +#: includes/common/data.php:143 +msgid "

    If you have any questions about your order please do not hesitate to contact us.

    " +msgstr "

    Mikäli sinulle tulee kysyttävää tilauksestasi, ole meihin yhteydessä.

    " + +#: includes/common/data.php:106 +msgid "tag" +msgstr "tagi" + +#: includes/common/data.php:105 +msgid "category" +msgstr "kategoria" + +#: includes/common/data.php:104 +msgid "order-status" +msgstr "tilaus" + +#: includes/common/data.php:103 +msgid "shopping-cart" +msgstr "ostoskori" + +#: includes/common/data.php:102 +msgid "products" +msgstr "tuotteet" + +#. Translators: change default slugs here +#: includes/common/data.php:101 +msgid "store" +msgstr "kauppa" \ No newline at end of file diff --git a/languages/mp-fo.mo b/languages/mp-fo.mo new file mode 100644 index 0000000000000000000000000000000000000000..1cd3964ae2afb206d4f635a19ec518e76997e176 GIT binary patch literal 5594 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 Y4AgYUX@>1zl{-y&Wo8kw@)|hxPf6!~S^xk5 literal 0 HcmV?d00001 diff --git a/languages/mp-fo.po b/languages/mp-fo.po new file mode 100644 index 00000000..67f771f0 --- /dev/null +++ b/languages/mp-fo.po @@ -0,0 +1,8954 @@ +# Translation of MarketPress in Faroese +# This file is distributed under the same license as the MarketPress package. +msgid "" +msgstr "" +"PO-Revision-Date: 2017-04-17 00:29:18+0000\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-Generator: GlotPress/2.3.1\n" +"Language: fo\n" +"Project-Id-Version: MarketPress\n" + +#: includes/public/class-mp-checkout.php:1285 +msgid "By clicking this checkbox you allow the website to process your personal data." +msgstr "" + +#: includes/common/class-mp-gdpr.php:382 +msgid "Order Info" +msgstr "" + +#: includes/common/class-mp-gdpr.php:268 +msgid "Shipping Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:267 +msgid "Shipping Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:266 +msgid "Shipping ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:265 +msgid "Shipping State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:264 +msgid "Shipping City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:263 +msgid "Shipping Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:262 +msgid "Shipping Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:261 +msgid "Shipping Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:260 +msgid "Shipping Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:259 +msgid "Shipping Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:258 +msgid "Shipping First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:254 +msgid "Billing Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:253 +msgid "Billing Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:252 +msgid "Billing ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:251 +msgid "Billing State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:250 +msgid "Billing City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:249 +msgid "Billing Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:248 +msgid "Billing Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:247 +msgid "Billing Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:246 +msgid "Billing Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:245 +msgid "Billing Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:244 +msgid "Billing First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:151 +msgid "Orders Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:139 +msgid "Customer Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:100 includes/common/class-mp-gdpr.php:116 +msgid "MarketPress User Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:81 +msgid "" +"In addition to standard WordPress session cookies, this site might be setting an\n" +"\t\t additional cookie to remember your cart settings. This cookie will last for one year." +msgstr "" + +#: includes/common/class-mp-gdpr.php:80 +msgid "Cookies" +msgstr "" + +#: includes/common/class-mp-gdpr.php:77 +msgid "" +"The following information will be collected in order to process orders: your name,\n" +"\t\t username, email address, avatar and profile URLs, address and phone number. This data can be\n" +"\t\t exported and removed." +msgstr "" + +#: includes/common/class-mp-gdpr.php:76 +msgid "Additional data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:71 +msgid "" +"This site might be using third party services and tools to process payments or/and\n" +"\t\t process shipping data when creating orders on the MarketPress store. These services include payment\n" +"\t\t gateways: 2Checkout, Authorize.net AIM, eWay shared payments, eWay Rapid 3.1 Payments, Mijireh,\n" +"\t\t Mollie, Paymill, PayPal, PIN, Simplify Commerce by MasterCard, Stripe and WePay; shipping gateways:\n" +"\t\t Fedex, UPS, USPS." +msgstr "" + +#: includes/common/class-mp-gdpr.php:70 +msgid "Third parties" +msgstr "" + +#: includes/admin/class-mp-admin.php:403 +msgid "Start creating store pages and products for your online shop here." +msgstr "" + +#: includes/admin/class-mp-admin.php:402 +msgid "Create Online Shop" +msgstr "" + +#: includes/admin/class-mp-admin.php:394 +msgid "Run Setup Wizard" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:234 +msgid "If having problems during invoice generation, add define( 'DOMPDF_ENABLE_HTML5PARSER', true ); to the wp-config.php file." +msgstr "" + +#: includes/public/class-mp-checkout.php:723 +msgid "Invalid Email" +msgstr "" + +#: includes/public/class-mp-checkout.php:721 +#: includes/public/class-mp-checkout.php:729 +msgid "This field is required" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:804 +msgid "This option changes the built-in css styles for store pages. For a custom css style, save your css file with the /* MarketPress Style: Your CSS Theme Name Here */ header line in the \"%s\" folder and it will appear in this list so you may select it. You should select \"None\" if you don't wish to use custom CSS styles or if you are using default theme templates or custom theme templates and css to make your own completely unique store design. For more information on custom theme templates click here »." +msgstr "" + +#: includes/public/class-mp-public.php:421 +#: includes/public/class-mp-short-codes.php:142 +msgid "Please enter a value greater than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:420 +#: includes/public/class-mp-short-codes.php:141 +msgid "Please enter a value less than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:419 +#: includes/public/class-mp-short-codes.php:140 +msgid "Please enter a value between {0} and {1}." +msgstr "" + +#: includes/public/class-mp-public.php:418 +#: includes/public/class-mp-short-codes.php:139 +msgid "Please enter a value between {0} and {1} characters long." +msgstr "" + +#: includes/public/class-mp-public.php:417 +#: includes/public/class-mp-short-codes.php:138 +msgid "Please enter at least {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:416 +#: includes/public/class-mp-short-codes.php:137 +msgid "Please enter no more than {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:415 +#: includes/public/class-mp-short-codes.php:136 +msgid "Please enter a value with a valid extension." +msgstr "" + +#: includes/public/class-mp-public.php:414 +#: includes/public/class-mp-short-codes.php:135 +msgid "Please enter the same value again." +msgstr "" + +#: includes/public/class-mp-public.php:413 +#: includes/public/class-mp-short-codes.php:134 +msgid "Please enter a valid credit card number." +msgstr "" + +#: includes/public/class-mp-public.php:412 +#: includes/public/class-mp-short-codes.php:133 +msgid "Please enter only digits." +msgstr "" + +#: includes/public/class-mp-public.php:411 +#: includes/public/class-mp-short-codes.php:132 +msgid "Please enter a valid number." +msgstr "" + +#: includes/public/class-mp-public.php:410 +#: includes/public/class-mp-short-codes.php:131 +msgid "Please enter a valid date (ISO)." +msgstr "" + +#: includes/public/class-mp-public.php:409 +#: includes/public/class-mp-short-codes.php:130 +msgid "Please enter a valid date." +msgstr "" + +#: includes/public/class-mp-public.php:408 +#: includes/public/class-mp-short-codes.php:129 +msgid "Please enter a valid URL." +msgstr "" + +#: includes/public/class-mp-public.php:406 +#: includes/public/class-mp-short-codes.php:127 +msgid "Please fix this field." +msgstr "" + +#: includes/public/class-mp-checkout.php:1287 +#: includes/public/class-mp-public.php:405 +#: includes/public/class-mp-short-codes.php:126 +msgid "This field is required." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:810 +msgid "None - Without Special CSS-styles" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:809 +msgid "Default - Using Default CSS-styles" +msgstr "" + +#: marketpress.php:739 +msgid "Enable multiple downloads per product" +msgstr "" + +#: marketpress.php:738 +msgid "Multiple Downloads" +msgstr "" + +#: includes/public/class-mp-checkout.php:715 +msgid "Invalid Zip Code" +msgstr "" + +#: includes/common/template-functions.php:2126 +msgid "Guest Email" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:195 +msgid "There was a problem finalizing your purchase. Please re-enter your credit card information and try again" +msgstr "" + +#: includes/common/class-mp-cart.php:565 includes/common/class-mp-order.php:600 +#: includes/common/helpers.php:111 +msgid "Download %1$s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:331 +msgid "Export products to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:328 +msgid "The import process uses the WordPress importer plugin." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:326 +msgid "Import / Export Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:325 +msgid "Export settings to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:324 +msgid "Import configuration" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:320 +msgid "Use the text below to export to a new installation. Or paste in the new configuration to import." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:318 +msgid "Import / Export Settings" +msgstr "" + +#. translators: URL to wp-admin/import.php +#: includes/admin/store-settings/class-mp-store-settings-import.php:266 +msgid "This importer is not installed. Please install importers from the main site." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:261 +msgid "Install Now" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:260 +msgid "Install %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:240 +msgid "Run Importer" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:239 +msgid "Run %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:258 +msgid "Import/Export" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1199 +msgid "Requires Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:737 +msgid "Optionally limit the user to some categories" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:671 +msgid "Should this coupon only be available to logged in users?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:670 +msgid "Require Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:655 +msgid "Mimimum number of products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:653 +msgid "Enter the minimum number of products in the cart that this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:648 +msgid "Can this coupon be limited to a number of products in the cart?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:334 +msgid "Add all values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:265 +msgid "Set as default variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:154 +msgid "Set Default" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:150 +msgid "More Info" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:40 +msgid "MarketPress - Quick Setup" +msgstr "" + +#: includes/public/class-mp-checkout.php:1399 +msgid "Proceed to checkout and create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1241 +#: includes/public/class-mp-checkout.php:1245 +msgid "Register account" +msgstr "" + +#: includes/public/class-mp-checkout.php:1233 +msgid "Register as customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:765 +msgid "

    Oops!

    Looks like you haven't added anything your cart. Let's go shopping!

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:763 +msgid "

    Oops!

    The cart is disabled.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing Information" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:214 +msgid "Global Currency" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:198 +msgid "Global Store Currency" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:507 +msgid "There are no shipping services available for this type of package in your location." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:168 +msgid "Using this USPS Shipping calculator requires requesting an Ecommerce API Username and Password. Get your free set of credentials here ». The password is no longer used for the API, just the username which you should enter below. The USPS test site has not yet been updated and currently doesn't work - you should just request activating your credentials with USPS and go live." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:339 +msgid "ZIP Code" +msgstr "Postnummar" + +#: includes/common/payment-gateways/stripe.php:334 +msgid "Last name" +msgstr "Eftirnavn" + +#: includes/common/payment-gateways/stripe.php:333 +msgid "First name" +msgstr "Fornavn" + +#: includes/common/payment-gateways/manual-payments.php:150 +msgid "These are the manual payment instructions to display on the order confirmation screen. TOTAL will be replaced with the order total and ORDERID will be replaced with Order ID." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:240 +msgid "You must login to Authorize.net merchant dashboard to obtain the API login ID and API transaction key. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:327 +msgid "
    1. Set the \"Return Method\" within Site Management to Header Redirect and set the \"Return URL\" to %s
    2. Set your notifications url to %s
    " +msgstr "" + +#: includes/common/data.php:191 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Also, digital downloads included in your order are now ready to be downloaded. Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:185 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order is now available to download! Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:184 +msgid "Your Order Is Ready To Be Downloaded! (ORDERID)" +msgstr "" + +#: includes/common/data.php:179 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:173 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received, your digital goods are ready to be downloaded and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:167 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received and your digital goods are ready to be downloaded. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:160 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +" Your order has been received, and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information: \n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/class-mp-product.php:638 +msgid "You can not add more items to cart." +msgstr "" + +#: includes/common/class-mp-product.php:635 +msgid "You can only add {0} to cart." +msgstr "" + +#: includes/common/class-mp-product.php:625 +msgid "This product has an order limit of %d." +msgstr "" + +#: includes/common/class-mp-order.php:1454 +msgid "Shipped: tracking code: %s" +msgstr "" + +#: includes/common/class-mp-order.php:1000 +#: includes/common/class-mp-order.php:1012 +msgid "Finished" +msgstr "" + +#: includes/common/class-mp-order.php:858 +msgid "Contact Details" +msgstr "" + +#: includes/common/class-mp-order.php:339 includes/common/data.php:155 +msgid "" +"A new order (ORDERID) was created in your store:\n" +"\n" +" ORDERINFOSKU\n" +"\n" +" SHIPPINGINFO\n" +"\n" +" PAYMENTINFO\n" +"\n" +msgstr "\n" + +#: includes/common/class-mp-cart.php:1858 +msgid "Add again" +msgstr "" + +#: includes/common/class-mp-cart.php:1852 +msgid "was removed from Shopping Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1242 +#: includes/public/class-mp-short-codes.php:160 +msgid "Cart update notice: this item has a limit per order or you have reached the stock limit." +msgstr "" + +#: includes/admin/widgets/product-list.php:235 +msgid "Show Only Featured Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:533 +msgid "If enabled, users won't be able to filter products per category and/or to order by release date/name/price." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:531 +msgid "Hide Products Filter?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:353 +msgid "Notification to registration email instead of billing email?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:322 +msgid "Order Shipped - Mixed orders (with both digital and physical products)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:289 +msgid "Order Shipped - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:224 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:194 +msgid "New Order - Mixed" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:161 +msgid "New Order - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:115 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:243 +msgid "Mixed orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:110 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:238 +msgid "Digital downloads orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:105 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:233 +msgid "Physical orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:96 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed.
    For orders placed with manual payment, emails set here will be overriden by the one configured in manual payments settings, under payments settings page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:89 +msgid "Customer Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:47 +msgid "Admin Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:566 +msgid "Only contact details" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:565 +msgid "Full billing info" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:561 +msgid "Details Collection" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:548 +msgid "Digital Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:515 +msgid "Apply Tax to Digital Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:236 +msgid "product (default)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:231 +msgid "If you are experiencing conflicts with other e-commerce plugins change this setting. This will change the internal post type of all your products. Please note that changing this option may break 3rd party themes or plugins." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1203 +msgid "Hide details" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1202 +msgid "Show all changes" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1184 +msgid "Version %s" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1161 +msgid "Current" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1131 +msgid "%s changelog" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:952 +msgid "We did not find any data for this plugin or theme..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:285 +msgid "Activate WPMU DEV Dashboard" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:279 +msgid "Just one more step - activate the WPMU DEV Dashboard plugin and you're all done!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:277 +msgid "Important updates are available for your WPMU DEV plugins/themes. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:273 +msgid "Just one more step to enable updates and support for %s!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:271 +msgid "Important updates are available for %s. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:264 +msgid "activate" +msgstr "Aktivera" + +#: includes/admin/class-mp-admin.php:398 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:248 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:289 +msgid "Dismiss" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:247 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:288 +msgid "Saving..." +msgstr "Goymur..." + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:244 +msgid "Install Plugin" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:238 +msgid "Almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:236 +msgid "Important updates are available for your WPMU DEV plugins/themes. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:232 +msgid "%s is almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:230 +msgid "Important updates are available for %s. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:223 +msgid "install" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1428 +msgid "Sets the number of Tags to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1289 +msgid "How many products to display in the product list if \"paginate\" is set to false." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:739 +#: includes/admin/class-mp-shortcode-builder.php:906 +#: includes/admin/class-mp-shortcode-builder.php:1350 +msgid "Grid" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:735 +#: includes/admin/class-mp-shortcode-builder.php:902 +#: includes/admin/class-mp-shortcode-builder.php:1346 +msgid "Products will be displayed as list or grid." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:206 +msgid "Display a cloud or list of your global product tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:205 +msgid "Display a list of your global categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:204 +msgid "Display a list or grid of your global products." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:181 +msgid "Display a list of featured products." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1451 +msgid "Is Featured?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1444 +msgid "Featured Product" +msgstr "Sermerkt Vøra" + +#: includes/admin/class-mp-products-admin.php:581 +#: includes/admin/class-mp-products-admin.php:1580 +msgid "% discount" +msgstr "% avsláttur" + +#: includes/admin/class-mp-products-admin.php:579 +msgid "OR" +msgstr "ELLA" + +#: includes/admin/class-mp-products-admin.php:460 +#: includes/admin/class-mp-products-admin.php:586 +#: includes/admin/widgets/product-list.php:217 +msgid "Featured" +msgstr "Sermerkt Vøra" + +#: includes/admin/class-mp-orders-admin.php:536 +#: includes/admin/class-mp-orders-admin.php:538 +msgid "Tracking Link" +msgstr "Finn Vøruna Leinkja" + +#: includes/admin/class-mp-orders-admin.php:508 +msgid "Shipping Tax" +msgstr "MVG Á Útbering Íalt" + +#: includes/admin/class-mp-orders-admin.php:356 +msgid "Shipping Total" +msgstr "Útbering Íalt" + +#: includes/admin/class-mp-orders-admin.php:352 +msgid "Taxes Total" +msgstr "MVG Ìalt" + +#: includes/admin/class-mp-orders-admin.php:349 +msgid "Products Total" +msgstr "Vørur Ìalt" + +#: includes/admin/class-mp-ajax.php:366 +msgid "Oops! You entered an invalid username/email and or password." +msgstr "" + +#: includes/admin/class-mp-ajax.php:254 +msgid "Percentage Discount" +msgstr "" + +#: includes/admin/class-mp-ajax.php:234 +msgid "Limit the Amount of Items per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:214 +msgid "Unused Attributes" +msgstr "" + +#: includes/admin/class-mp-admin.php:82 +msgid "Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-admin.php:79 +msgid "MarketPress setup is not complete! Once you've completed this quick setup wizard you'll have a fully working online store - exciting! " +msgstr "" + +#: marketpress.php:263 +msgctxt "mp_order" +msgid "Add New" +msgstr "" + +#: marketpress.php:184 +msgctxt "product_tag" +msgid "Product Tag" +msgstr "" + +#: marketpress.php:183 +msgctxt "product_tag" +msgid "Product Tags" +msgstr "" + +#: marketpress.php:150 +msgctxt "product_category" +msgid "Product Category" +msgstr "" + +#: marketpress.php:149 +msgctxt "product_category" +msgid "Product Categories" +msgstr "" + +#. Author URI of the plugin/theme +msgid "http://premium.wpmudev.org" +msgstr "" + +#: marketpress.php:729 +msgid "Invoice PDF" +msgstr "" + +#: marketpress.php:712 +msgid "Grant access to themes and gateways depending on the user's Pro Site level" +msgstr "" + +#: marketpress.php:711 +msgid "Pro Sites" +msgstr "" + +#: marketpress.php:703 +msgid "Offer and accept coupon codes" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:687 +msgid "Install %s Pages" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:682 +msgid "Welcome to %s – Install pages required by the plugin automatically." +msgstr "" + +#: marketpress.php:668 +msgid "Your pages were created successfully." +msgstr "" + +#: marketpress.php:436 +msgid "Add a Product" +msgstr "" + +#: marketpress.php:271 +msgid "Parent Order" +msgstr "" + +#: marketpress.php:270 +msgid "No orders found in trash" +msgstr "" + +#: marketpress.php:269 +msgid "No orders found" +msgstr "Eingin ordri Funnin" + +#: marketpress.php:265 +msgid "Edit Order" +msgstr "Broyt Ordran" + +#: marketpress.php:264 +msgid "Add New Order" +msgstr "" + +#: marketpress.php:220 marketpress.php:221 +msgid "Add New Product" +msgstr "" + +#: marketpress.php:197 +msgid "No product tags found" +msgstr "" + +#: marketpress.php:196 +msgid "Choose from the most used product tags" +msgstr "" + +#: marketpress.php:195 +msgid "Add or remove product tags" +msgstr "" + +#: marketpress.php:194 +msgid "Separate product tags with commas" +msgstr "" + +#: marketpress.php:193 +msgid "Search Product Tags" +msgstr "" + +#: marketpress.php:192 +msgid "Parent Product Tag:" +msgstr "" + +#: marketpress.php:191 +msgid "Parent Product Tag" +msgstr "" + +#: marketpress.php:190 +msgid "New Product Tag Name" +msgstr "" + +#: marketpress.php:189 +msgid "Add New Product Tag" +msgstr "" + +#: marketpress.php:188 +msgid "Update Product Tag" +msgstr "" + +#: marketpress.php:187 +msgid "View Product Tag" +msgstr "" + +#: marketpress.php:186 +msgid "Edit Product Tag" +msgstr "" + +#: marketpress.php:185 +msgid "All Product Tags" +msgstr "" + +#: marketpress.php:163 +msgid "No product categories found" +msgstr "" + +#: marketpress.php:162 +msgid "Choose from the most used product categories" +msgstr "" + +#: marketpress.php:161 +msgid "Add or remove product categories" +msgstr "" + +#: marketpress.php:160 +msgid "Separate product categories with commas" +msgstr "" + +#: marketpress.php:159 +msgid "Search Product Categories" +msgstr "" + +#: marketpress.php:158 +msgid "Parent Product Category:" +msgstr "" + +#: marketpress.php:157 +msgid "Parent Product Category" +msgstr "" + +#: marketpress.php:156 +msgid "New Product Category Name" +msgstr "" + +#: marketpress.php:155 +msgid "Add New Product Category" +msgstr "" + +#: marketpress.php:154 +msgid "Update Product Category" +msgstr "" + +#: marketpress.php:153 +msgid "View Product Category" +msgstr "" + +#: marketpress.php:152 +msgid "Edit Product Category" +msgstr "" + +#: marketpress.php:151 +msgid "All Product Categories" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Please fix the %s1 and then try submitting the form again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Oops! The form contains %s1 which %s2 been highlighted below." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:660 +msgid "have" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:659 +msgid "has" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:651 +msgid "Value must be less than {0}" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:650 +msgid "Please enter only letters and numbers" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:539 +msgid "Due to prolonged inactivity on this page, one or more settings were not saved. Please try again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:535 +msgid "Settings Saved" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-user-select.php:22 +msgid "Select Some Users" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-section.php:18 +msgid "Section Title" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:425 +msgid "Are you sure you want to delete this?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:30 +msgid "Add Row" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-post-select.php:24 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-taxonomy-select.php:22 +msgid "Select Posts" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:210 +msgid "Add Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:129 +msgid "Select the image that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:93 +msgid "Select image(s) that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:79 +msgid "Select the image that you would like to use for this variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:48 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:82 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:68 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:132 +msgid "Select Image" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:31 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:160 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:168 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:19 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:115 +msgid "Select File" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:30 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:18 +msgid "Select the file that you would like to use." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:357 +msgid "Create Variations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:356 +msgid "Add Another Variant" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Insert a value and press ENTER" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "(e.g. White, Grey, Red etc.)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Variation Values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:333 +msgid "Or create new variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "(e.g. Color)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:303 +msgid "You are about to delete selected variants.
    If you want to continue please confirm." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:302 +msgid "Confirmation" +msgstr "Vátta" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:290 +msgid "Insert quantity available. Empty for unlimited." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:281 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:294 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:307 +msgid "Cancel" +msgstr "Strika" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:280 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:293 +msgid "Update" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:277 +msgid "Insert the price i.e. 25 or 25.50" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:115 +msgid "Img." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:85 +msgid "Add New Variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:79 +msgid "Delete Variants" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:78 +msgid "Update Prices" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:77 +msgid "Update Inventory" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:76 +msgid "Update Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:75 +msgid "Bulk Actions" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:73 +msgid "Select bulk action" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:196 +msgid "Configure Store" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:195 +msgid "Configure shipping rates, emails and your store's appearance. " +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:190 +msgid "Add Product" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:189 +msgid "Add your first product for sale and get familiar with adding products." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:184 +msgid "Your store is almost ready for its first customers, but first it needs some products. Get started by adding products below, or jump straight into further configuring your store’s settings." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:183 +msgid "Woohoo! Your online store is up and running." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:160 +msgid "Finish Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:124 +msgid "And what metric system do you want to use?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:113 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:142 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:159 +msgid "Back" +msgstr "Aftur" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:109 +msgid "Do you want to apply tax for your products? You can customize this for each product and variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:105 +msgid "What currency do you want to sell with?" +msgstr "Hvat fyri gjaldoyra vil tú selja við?" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:93 +msgid "And, which countries do you want to sell to?" +msgstr "Hvørji lond vil tú selja til?" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:89 +msgid "Where is your online store based?" +msgstr "Hvar er tín handil?" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:80 +msgid "Payment Gateway" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:79 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:123 +msgid "Metric System" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:78 +msgid "Currency & Tax" +msgstr "Gjaldoyra & MVG" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:77 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:88 +msgid "Locations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:70 +msgid "Choose where you want to sell your stuff and what currency. Easy!" +msgstr "" + +#: includes/public/class-mp-checkout.php:1400 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:58 +msgid "Continue" +msgstr "" + +#: includes/admin/class-mp-admin.php:83 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:53 +msgid "Skip this step, I'll do this manually" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:49 +msgid "Install store pages" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:44 +msgid "Once you've completed this quick setup wizard you'll have a fully working online store - exciting! Start
    by creating the default store pages for the online store such as the cart, checkout and store pages." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:42 +msgid "MarketPress adds a full online store to your website, with heaps of configuration options and addons
    to suit your needs. It's really easy to get going, and only takes a few minutes to setup!" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:41 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:69 +msgid "Welcome to MarketPress - Quick Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-advanced-select.php:23 +msgid "Select Some Options" +msgstr "vel nakrar valmøguleikar" + +#: includes/wpmudev-metaboxes/class-wpmudev-field.php:694 +msgid "You must the WPMUDEV_Field::display() method in your form field class" +msgstr "" + +#: includes/public/class-mp-short-codes.php:636 +msgid "Only %s left in stock..." +msgstr "Bert %s eftir á lagri..." + +#: includes/public/class-mp-short-codes.php:633 +msgid "Unlimited stock" +msgstr "Óavmarkað lagur" + +#: includes/public/class-mp-short-codes.php:430 +msgid "product_id must be defined" +msgstr "" + +#: includes/public/class-mp-checkout.php:1250 +msgid "An account with this username already exists" +msgstr "" + +#: includes/public/class-mp-checkout.php:1394 +msgid "Continue as Guest" +msgstr "Halt fram sum Gestur" + +#: includes/public/class-mp-checkout.php:1393 +msgid "Proceed to checkout and you'll have an opportunity to create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1392 +#: includes/public/class-mp-checkout.php:1398 +msgid "First-time customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1386 +msgid "Login" +msgstr "Rita Inn" + +#: includes/public/class-mp-checkout.php:1379 +msgid "E-Mail Address/Username" +msgstr "Teldupostur/Brúkari" + +#: includes/public/class-mp-checkout.php:1377 +msgid "Sign in to speed up the checkout process." +msgstr "Rita inn fyri at avgreiða títt keyp skjótast." + +#: includes/public/class-mp-checkout.php:1376 +msgid "Have an account?" +msgstr "Hevur tú eina kontu?" + +#: includes/public/class-mp-checkout.php:1297 +msgid "Shipping address different than billing?" +msgstr "Útberingadressan ymisk frá faktura-adressuna?" + +#: includes/public/class-mp-checkout.php:1184 +msgid "There are no available gateways to process this payment." +msgstr "Tað er tíverri ikki møguligt at rinda á henda hátt." + +#: includes/public/class-mp-checkout.php:1160 +msgid "Payment" +msgstr "Rinda" + +#: includes/public/class-mp-checkout.php:1123 +msgid "Oops! An error occurred while processing your payment." +msgstr "Ups! Ein villa kom í meðan tú betaldi." + +#: includes/public/class-mp-checkout.php:1051 +msgid "Next Step »" +msgstr "" + +#: includes/public/class-mp-checkout.php:1045 +msgid "« Previous Step" +msgstr "" + +#: includes/public/class-mp-checkout.php:873 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:657 +msgid "error" +msgstr "villa" + +#: includes/public/class-mp-checkout.php:872 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:658 +msgid "errors" +msgstr "villur" + +#: includes/public/class-mp-checkout.php:871 +msgid "

    Oops! We found %d %s in the form below.

    Fields that have errors are highlighted in red below. Entering into a field will reveal the actual error that occurred.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:870 +msgid "Please enter a valid first and last name" +msgstr "Vinarliga skriva rætt for og eftirnavn" + +#: includes/public/class-mp-checkout.php:869 +msgid " Please enter a valid card security code" +msgstr "Vinarliga skriva rætta trygdarkodu" + +#: includes/public/class-mp-checkout.php:868 +msgid "Please enter a valid card expiration" +msgstr "" + +#: includes/public/class-mp-checkout.php:773 +msgid "Javascript is required in order to checkout. Please enable Javascript in your browser and then refresh this page." +msgstr "" + +#: includes/public/class-mp-checkout.php:588 +msgid "An unknown error occurred. Please try again." +msgstr "Ein villa koma í. Vinarliga royn aftur" + +#: includes/public/class-mp-checkout.php:386 +msgid "Town/City" +msgstr "Býur/Øki" + +#: includes/public/class-mp-checkout.php:380 +msgid "Apartment, suite, unit, building, floor, etc" +msgstr "Íbúð, nummar, hús, hædd, o.s.fr" + +#: includes/public/class-mp-checkout.php:376 +msgid "Address Line 2" +msgstr "Adressulinja 2" + +#: includes/public/class-mp-checkout.php:363 +msgid "Address Line 1" +msgstr "Adressulinja 1" + +#: includes/common/class-mp-order.php:770 +#: includes/public/class-mp-checkout.php:354 +msgid "Company" +msgstr "Fyritøka" + +#: includes/public/class-mp-checkout.php:330 +msgid "Last" +msgstr "Eftirnavn" + +#: includes/public/class-mp-checkout.php:321 +msgid "First" +msgstr "Fornavn" + +#: includes/public/class-mp-checkout.php:284 +msgid "State/Province" +msgstr "Oyggj/Øki" + +#: includes/public/class-mp-checkout.php:83 +msgid "Review Order/Payment" +msgstr "Endurskoða ordran/Betaling" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing/Shipping Address" +msgstr "Faktura/Úbering Adressa" + +#: includes/public/class-mp-checkout.php:80 +msgid "Login/Register" +msgstr "Rita inn/Stovan kontu" + +#: includes/multisite/class-mp-admin-multisite.php:530 +msgid "Marketplace" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:523 +msgid "Global Marketplace Pages" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +msgid "Store Network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +#: includes/multisite/class-mp-admin-multisite.php:494 +msgid "Store Network Settings" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:440 +msgid "Set theme access permissions for network stores. For a custom css theme, save your css file with the MarketPress Theme: NAME header in the /marketpress/ui/themes/ folder and it will appear in this list so you may select it." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:361 +msgid "Choose a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:336 +msgid "%d products get indexed" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:285 +msgid "Product Indexer" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:281 +msgid "Please hold on..." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:280 +msgid "Index Products" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:279 +msgid "%d products have been indexed in whole network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:182 +msgid "Enable Global Shopping Cart?" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:178 +msgid "Limit Global Widgets/Shortcodes To Main Blog?" +msgstr "" + +#: includes/common/template-functions.php:2802 +#: includes/multisite/template-functions.php:355 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:97 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:114 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:143 +msgid "Next" +msgstr "Fram" + +#: includes/common/template-functions.php:2801 +#: includes/multisite/template-functions.php:354 +msgid "Prev" +msgstr "Aftur" + +#: includes/common/template-functions.php:2597 +msgid "Tagged in " +msgstr "" + +#: includes/common/template-functions.php:2196 +#: includes/common/template-functions.php:2202 +#: includes/common/template-functions.php:2214 +#: includes/common/template-functions.php:2217 +msgid "Oops! We couldn't locate any orders matching that order number. Please verify the order number and try again." +msgstr "" + +#: includes/common/template-functions.php:2138 +msgid "Look Up" +msgstr "Finn" + +#: includes/common/template-functions.php:1423 +msgid "Please choose a shipping method" +msgstr "Vinarliga vel hvussu vøran skal sendast" + +#: includes/common/template-functions.php:927 +msgid "If you have your order ID you can look it up using the form below." +msgstr "Um tú hevur eitt ordra ID so kann tú finna hana í forminum longur niðri á síðuni." + +#: includes/common/template-functions.php:927 +msgid "Order Search" +msgstr "Leita eftir Ordranum" + +#: includes/common/template-functions.php:910 +#: includes/public/class-mp-checkout.php:1440 +msgid "Cart" +msgstr "Kurv" + +#: includes/common/template-functions.php:895 +msgid "[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:887 +msgid "[mp_global_categories_list]" +msgstr "" + +#: includes/common/template-functions.php:880 +msgid "" +"Welcome to our market place!\n" +"\n" +"Check out our network of products:\n" +"\n" +"[mp_list_global_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_global_categories_list]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:879 +msgid "Global Store" +msgstr "" + +#: includes/common/template-functions.php:873 +msgid "" +"Welcome to our online store! Feel free to browse around:\n" +"\n" +"[mp_store_navigation]\n" +"\n" +"Check out our most popular products:\n" +"\n" +"[mp_popular_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_list_categories]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_tag_cloud]" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:127 +msgid "If cart weight is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:126 +msgid "Cart Weight" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:222 +msgid "Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:206 +msgid "Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:196 +msgid "Retail Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:195 +msgid "Online Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:193 +msgid "Rates Request Type" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:189 +msgid "Maximum Weight Per Package" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:195 +#: includes/common/shipping-modules/mp-usps.php:236 +msgid "Enter your standard box sizes as LengthxWidthxHeight (e.g. 12x8x6) For each box defined enter the maximum weight it can contain. Note: the shipping prices this plugin calculates are estimates. If they are consistently too low or too high, please check that the list of boxes above and the product weights are accurate and complete." +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:187 +msgid "Handling Charge Per Box Shipped" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:176 +#: includes/common/shipping-modules/mp-ups.php:181 +msgid "Offered Services" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:165 +msgid "Shipper Number" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:151 +msgid "User ID" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:144 +msgid "Developer Kit Access Key" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:140 +msgid "Use Sandbox Mode?" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:123 +msgid "In order to use UPS, you will need a UPS Developer Kit access key and the UPS user ID and password associated with the access key. Set these up for free here. If this information is missing or incorrect, an error will appear during the checkout process and the buyer will not be able to complete the transaction." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:112 +msgid "If cart total is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:111 +msgid "Cart Total" +msgstr "Kurv Íalt" + +#: includes/common/shipping-modules/mp-table-rate.php:95 +#: includes/common/shipping-modules/mp-weight-rate.php:111 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Don't worry about sorting as this will be done automatically upon saving." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:170 +msgid "Method Title (visible for clients)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:409 +#: includes/common/shipping-modules/mp-ups.php:216 +#: includes/common/shipping-modules/mp-usps.php:251 +msgid "Max Weight (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:402 +#: includes/common/shipping-modules/mp-ups.php:209 +#: includes/common/shipping-modules/mp-usps.php:247 +msgid "Size (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:387 +msgid "Enter your standard box sizes as LengthxWidthxHeight ( 12x8x6 ) For each box defined enter the maximum weight it can contain. Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:361 +#: includes/common/shipping-modules/mp-usps.php:229 +msgid "Handling Charge per International Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:353 +msgid "International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:339 +#: includes/common/shipping-modules/mp-usps.php:213 +msgid "Handling Charge per Domestic Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:331 +msgid "Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:321 +msgid "When checked the customer can chose Residential or Commercial delivery with Residential the default. Unchecked it's only Residential rates." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:320 +msgid "Allow Commercial Delivery?" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:315 +msgid "Fedex 10kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:314 +msgid "Fedex 25kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:313 +msgid "Fedex Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:312 +msgid "Fedex Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:311 +msgid "Fedex Pak" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:310 +msgid "Fedex Tube" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:306 +msgid "Default Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:294 +msgid "Dropoff Type" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:290 +msgid "Meter ID" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:134 +msgid "This is a residential address" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:283 +msgid "There was an error processing your card: \"%s\". Please check your credit card info and try again." +msgstr "Ein villa kom í: \"%s\". Vinarliga tjekka títt kreditkort og roynt aftur." + +#: includes/common/payment-gateways/wepay.php:121 +msgid "Wepay makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept cards directly on your site. You don't need a merchant account or gateway. WePay handles everything including storing cards. Credit cards go directly to WePay's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:385 +msgid "There was an error processing your card - \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:356 +msgid "%s Store Purchase - Order ID - %s, Email - %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:251 +msgid "Stripe makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept Visa, MasterCard, American Express, Discover, JCB, and Diners Club cards directly on your site. You don't need a merchant account or gateway. Stripe handles everything, including storing cards, subscriptions, and direct payouts to your bank account. Credit cards go directly to Stripe's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:192 +msgid "ZMW - Zambian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:191 +msgid "ZAR - South African Rand" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:190 +msgid "YER - Yemeni Rial" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:189 +msgid "XPF - Cfp Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:188 +msgid "XOF - West African Cfa Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:187 +msgid "XCD - East Caribbean Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:186 +msgid "XAF - Central African Cfa Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:185 +msgid "WST - Samoan Tala" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:184 +msgid "VUV - Vanuatu Vatu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:183 +msgid "VND - Vietnamese Đồng" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:182 +msgid "VEF - Venezuelan Bolívar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:181 +msgid "UZS - Uzbekistani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:180 +msgid "UYI - Uruguayan Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:178 +msgid "UGX - Ugandan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:177 +msgid "UAH - Ukrainian Hryvnia" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:176 +msgid "TZS - Tanzanian Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:175 +msgid "TWD - New Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:174 +msgid "TTD - Trinidad and Tobago Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:172 +msgid "TOP - Tongan Paʻanga" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:171 +msgid "TJS - Tajikistani Somoni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:169 +msgid "SZL - Swazi Lilangeni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:168 +msgid "SVC - Salvadoran Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:167 +msgid "STD - São Tomé and Príncipe Dobra" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:166 +msgid "SRD - Surinamese Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:165 +msgid "SOS - Somali Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:164 +msgid "SLL - Sierra Leonean Leone" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:163 +msgid "SHP - Saint Helenian Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:160 +msgid "SCR - Seychellois Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:159 +msgid "SBD - Solomon Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:157 +msgid "RWF - Rwandan Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:156 +msgid "RUB - Russian Ruble" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:155 +msgid "RSD - Serbian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:154 +msgid "RON - Romanian Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:153 +msgid "QAR - Qatari Riyal" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:152 +msgid "PYG - Paraguayan Guaraní*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:151 +msgid "PLN - Polish Złoty" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:150 +msgid "PKR - Pakistani Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:149 +msgid "PHP - Philippine Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:148 +msgid "PGK - Papua New Guinean Kina" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:147 +msgid "PEN - Peruvian Nuevo Sol*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:146 +msgid "PAB - Panamanian Balboa*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:144 +msgid "NPR - Nepalese Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:142 +msgid "NIO - Nicaraguan Córdoba*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:141 +msgid "NGN - Nigerian Naira" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:140 +msgid "NAD - Namibian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:139 +msgid "MZN - Mozambican Metical" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:137 +msgid "MXN - Mexican Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:136 +msgid "MWK - Malawian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:135 +msgid "MVR - Maldivian Rufiyaa" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:134 +msgid "MUR - Mauritian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:133 +msgid "MRO - Mauritanian Ouguiya" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:132 +msgid "MOP - Macanese Pataca" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:131 +msgid "MNT - Mongolian Tögrög" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:130 +msgid "MKD - Macedonian Denar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:129 +msgid "MGA - Malagasy Ariary" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:128 +msgid "MDL - Moldovan Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:126 +msgid "LVL - Latvian Lats" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:124 +msgid "LSL - Lesotho Loti" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:123 +msgid "LRD - Liberian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:122 +msgid "LKR - Sri Lankan Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:121 +msgid "LBP - Lebanese Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:120 +msgid "LAK - Lao Kip*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:119 +msgid "KZT - Kazakhstani Tenge" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:118 +msgid "KYD - Cayman Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:117 +msgid "KRW - South Korean Won" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:116 +msgid "KMF - Comorian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:115 +msgid "KHR - Cambodian Riel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:114 +msgid "KGS - Kyrgyzstani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:113 +msgid "KES - Kenyan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:111 +msgid "JMD - Jamaican Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:110 +msgid "ISK - Icelandic Króna" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:109 +msgid "INR - Indian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:108 +msgid "ILS - Israeli New Sheqel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:107 +msgid "IDR - Indonesian Rupiah" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:105 +msgid "HTG - Haitian Gourde" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:103 +msgid "HNL - Honduran Lempira*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:101 +msgid "GYD - Guyanese Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:100 +msgid "GTQ - Guatemalan Quetzal*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:99 +msgid "GNF - Guinean Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:98 +msgid "GMD - Gambian Dalasi" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:97 +msgid "GIP - Gibraltar Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:96 +msgid "GEL - Georgian Lari" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:94 +msgid "FKP - Falkland Islands Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:93 +msgid "FJD - Fijian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:91 +msgid "ETB - Ethiopian Birr" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:90 +msgid "EGP - Egyptian Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:89 +msgid "EEK - Estonian Kroon*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:88 +msgid "DZD - Algerian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:87 +msgid "DOP - Dominican Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:85 +msgid "DJF - Djiboutian Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:84 +msgid "CZK - Czech Koruna*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:83 +msgid "CVE - Cape Verdean Escudo*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:82 +msgid "CRC - Costa Rican Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:81 +msgid "COP - Colombian Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:80 +msgid "CNY - Chinese Renminbi Yuan" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:79 +msgid "CLP - Chilean Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:77 +msgid "CDF - Congolese Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:76 +msgid "CAD - Canadian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:75 +msgid "BZD - Belize Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:74 +msgid "BWP - Botswana Pula" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:73 +msgid "BSD - Bahamian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:72 +msgid "BRL - Brazilian Real*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:71 +msgid "BOB - Bolivian Boliviano*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:70 +msgid "BND - Brunei Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:69 +msgid "BMD - Bermudian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:68 +msgid "BIF - Burundian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:67 +msgid "BGN - Bulgarian Lev" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:66 +msgid "BDT - Bangladeshi Taka" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:65 +msgid "BBD - Barbadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:64 +msgid "BAM - Bosnia & Herzegovina Convertible Mark" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:63 +msgid "AZN - Azerbaijani Manat" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:62 +msgid "AWG - Aruban Florin" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:61 +msgid "AUD - Australian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:60 +msgid "ARS - Argentine Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:59 +msgid "AOA - Angolan Kwanza*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:58 +msgid "ANG - Netherlands Antillean Gulden" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:57 +msgid "AMD - Armenian Dram" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:56 +msgid "ALL - Albanian Lek" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:55 +msgid "AFN - Afghan Afghani*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:54 +msgid "AED - United Arab Emirates Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:345 +msgid "Skrill balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:327 +msgid "Skrill IPN message received." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:283 +msgid "Skrill" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:278 +msgid "Pending payment" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:144 +msgid "The secret word must match the word submitted in the \"Merchant Tools\" section of your Skrill account." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:134 +msgid "You must use your valid Skrill merchant email. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:133 +msgid "Skrill Email" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:123 +msgid "Resell your inventory via Skrill.com (Moneybookers)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:95 +msgid "ZAR - South-African Rand" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:93 +msgid "TWD - Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:92 +msgid "TRY - New Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:91 +msgid "TND - Tunisian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:90 +msgid "THB - Thailand Baht" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:89 +msgid "SKK - Slovakian Koruna" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:86 +#: includes/common/payment-gateways/stripe.php:158 +msgid "SAR - Saudi Riyal" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:85 +msgid "RSD - Serbian dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:83 +msgid "QAR - Qatari Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:81 +msgid "OMR - Omani Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:80 +msgid "NOK - Norwegian Krone " +msgstr "" + +#: includes/common/payment-gateways/skrill.php:78 +#: includes/common/payment-gateways/stripe.php:138 +msgid "MYR - Malaysian Ringgit" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:77 +#: includes/common/payment-gateways/stripe.php:127 +msgid "MAD - Moroccan Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:74 +msgid "KRW - South-Korean Won" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:72 +msgid "JOD - Jordanian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:70 +msgid "INR - Indian Rupee" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:63 +msgid "EEK - Estonian Kroon" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:56 +msgid "AED - Utd. Arab Emir. Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:52 +msgid "Turkish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:51 +msgid "Swedish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:50 +msgid "Spanish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:49 +msgid "Russian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:48 +msgid "Romainian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:47 +msgid "Polish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:46 +msgid "Italian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:45 +msgid "Greek" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:44 +msgid "German" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:43 +msgid "French" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:42 +msgid "Finnish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:41 +msgid "English" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:40 +msgid "Dutch" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:39 +msgid "Danish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:38 +msgid "Czech" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:37 +msgid "Chinese" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:201 +msgid "There was an error processing your card: %s. Please re-enter your credit card info and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:278 +msgid "
  • There was an error processing your card: \"%s\". Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:274 +msgid "
  • There was an error processing your card. Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:177 +#: includes/common/payment-gateways/stripe.php:279 +msgid "Publishable Key" +msgstr "" + +#: includes/common/payment-gateways/pin.php:163 +msgid "API Credentials?" +msgstr "" + +#: includes/common/payment-gateways/pin.php:147 +msgid "PIN makes it easy to start accepting credit card payments with Australia’s first all-in-one online payment system. Accept all major credit cards directly on your site. Your sales proceeds are deposited to any Australian bank account, no merchant account required." +msgstr "" + +#: includes/common/payment-gateways/pin.php:57 +#: includes/common/payment-gateways/stripe.php:179 +msgid "USD - United States Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:455 +msgid "Email Footer" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:445 +msgid "Email Header" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:416 +msgid "Partner" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:409 +msgid "Vendor" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:852 +#: includes/common/payment-gateways/paypal-express.php:1126 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences\t section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:749 +msgid "Page Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:744 +msgid "Header Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:739 +msgid "Header Border Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:734 +msgid "Header Image" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:680 +msgid "Locale" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:624 +#: includes/common/payment-gateways/paypal-express.php:658 +msgid "Merchant Email" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:645 +msgid "Paypal Express Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:603 +msgid "Paypal Express Network Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:861 +msgid "Application ID (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:854 +msgid "Signature (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:847 +msgid "API Password (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:839 +msgid "API Username (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:832 +msgid "Signature (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:825 +msgid "API Password (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:817 +msgid "API Username (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:799 +msgid "This message is displayed at the top of the gateway settings page to store admins. It's a good place to inform them of your fees or put any sales messages." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:787 +msgid "Please enter your PayPal email address or business ID you want to recieve fees at." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:786 +msgid "PayPal E-mail" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:772 +msgid "Fees to Collect (%)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:375 +#: includes/public/class-mp-checkout.php:341 +msgid "Email Address" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:299 +msgid "Sorry, your order was not completed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:126 +#: includes/common/payment-gateways/paypal-express.php:780 +msgid "You will be redirected to the PayPal site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:90 +#: includes/common/payment-gateways/skrill.php:94 +msgid "USD - U.S. Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:89 +msgid "TRY - Turkish lira" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:88 +#: includes/common/payment-gateways/stripe.php:170 +msgid "THB - Thai Baht" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:87 +msgid "TWD - Taiwan New Dollars" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:86 +#: includes/common/payment-gateways/pin.php:59 +#: includes/common/payment-gateways/skrill.php:88 +#: includes/common/payment-gateways/stripe.php:162 +msgid "SGD - Singapore Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:84 +msgid "RUB - Russian Rubles" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:82 +msgid "PHP - Philippine Pesos" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:81 +#: includes/common/payment-gateways/pin.php:58 +#: includes/common/payment-gateways/skrill.php:79 +#: includes/common/payment-gateways/stripe.php:145 +msgid "NZD - New Zealand Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:79 +msgid "MXN - Mexican Peso" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:78 +msgid "MYR - Malaysian Ringgits" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:77 +#: includes/common/payment-gateways/pin.php:64 +#: includes/common/payment-gateways/skrill.php:73 +#: includes/common/payment-gateways/stripe.php:112 +msgid "JPY - Japanese Yen" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:75 +#: includes/common/payment-gateways/pin.php:63 +#: includes/common/payment-gateways/skrill.php:66 +#: includes/common/payment-gateways/stripe.php:102 +msgid "HKD - Hong Kong Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:73 +msgid "GBP - Pound Sterling" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:68 +#: includes/common/payment-gateways/pin.php:62 +#: includes/common/payment-gateways/skrill.php:59 +msgid "CAD - Canadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:67 +msgid "BRL - Brazilian Real" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:66 +#: includes/common/payment-gateways/pin.php:56 +#: includes/common/payment-gateways/skrill.php:57 +msgid "AUD - Australian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:288 +msgid "There was an error processing your card: \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:163 +msgid "When running on a live site, Paymill recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:161 +#: includes/common/payment-gateways/pin.php:157 +#: includes/common/payment-gateways/simplify.php:103 +#: includes/common/payment-gateways/stripe.php:260 +#: includes/common/payment-gateways/wepay.php:153 +msgid "Force SSL?" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:151 +msgid "Accept Visa, Mastercard, Maestro UK, Discover and Solo cards directly on your site. You don't need a merchant account or gateway. Credit cards go directly to Paymill's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:131 +msgid "CVV2" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:72 +#: includes/common/payment-gateways/pin.php:61 +#: includes/common/payment-gateways/skrill.php:65 +#: includes/common/payment-gateways/stripe.php:95 +msgid "GBP - British Pound" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:71 +#: includes/common/payment-gateways/stripe.php:173 +msgid "TRY - Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:70 +#: includes/common/payment-gateways/paypal-chained-payments.php:85 +#: includes/common/payment-gateways/skrill.php:87 +#: includes/common/payment-gateways/stripe.php:161 +msgid "SEK - Swedish Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:69 +#: includes/common/payment-gateways/skrill.php:84 +msgid "RON - Romanian Leu New" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:68 +#: includes/common/payment-gateways/paypal-chained-payments.php:83 +#: includes/common/payment-gateways/skrill.php:82 +msgid "PLN - Polish Zloty" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:67 +#: includes/common/payment-gateways/paypal-chained-payments.php:80 +#: includes/common/payment-gateways/stripe.php:143 +msgid "NOK - Norwegian Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:66 +#: includes/common/payment-gateways/skrill.php:75 +#: includes/common/payment-gateways/stripe.php:125 +msgid "LTL - Lithuanian Litas" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:65 +#: includes/common/payment-gateways/paypal-chained-payments.php:69 +#: includes/common/payment-gateways/skrill.php:60 +#: includes/common/payment-gateways/stripe.php:78 +msgid "CHF - Swiss Franc" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:64 +#: includes/common/payment-gateways/skrill.php:76 +msgid "LVL - Latvian Lat" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:63 +#: includes/common/payment-gateways/paypal-chained-payments.php:74 +#: includes/common/payment-gateways/skrill.php:69 +msgid "ILS - Israeli Shekel" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:62 +#: includes/common/payment-gateways/skrill.php:71 +msgid "ISK - Iceland Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:61 +#: includes/common/payment-gateways/paypal-chained-payments.php:76 +#: includes/common/payment-gateways/skrill.php:68 +#: includes/common/payment-gateways/stripe.php:106 +msgid "HUF - Hungarian Forint" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:60 +#: includes/common/payment-gateways/paypal-chained-payments.php:71 +#: includes/common/payment-gateways/skrill.php:62 +#: includes/common/payment-gateways/stripe.php:86 +msgid "DKK - Danish Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:59 +#: includes/common/payment-gateways/skrill.php:67 +#: includes/common/payment-gateways/stripe.php:104 +msgid "HRK - Croatian Kuna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:58 +#: includes/common/payment-gateways/paypal-chained-payments.php:70 +#: includes/common/payment-gateways/skrill.php:61 +msgid "CZK - Czech Koruna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:57 +#: includes/common/payment-gateways/skrill.php:58 +msgid "BGN - Bulgarian Leva" +msgstr "" + +#: includes/common/payment-gateways/payflow/class-mp-gateway-worker-payflow.php:123 +msgid "There was an error connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:344 +msgid "This setting will log all PayFast communication to the \"payfast.log\" file." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:342 +msgid "Log Debugging Info?" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:335 +msgid "DO NOT INPUT A VALUE UNLESS YOU HAVE SET ONE IN THE SETTINGS SECTION OF YOUR PAYFAST SETTINGS." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:333 +msgid "PayFast Passphrase" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:323 +msgid "You can find your credentials on your integration page." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:321 +msgid "PayFast Merchant Credentials" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:311 +msgid "PayFast Mode" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:308 +msgid "PayFast is a payments processing service for South Africa. We make it safe for buyers to send money and easy for sellers to receive money. More Info »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:306 +msgid "PayFast Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:285 +msgid "Your payment via PayFast for this order totaling %s is complete. The transaction number is %s." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:278 +msgid "Your payment via PayFast for this order totaling %s is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:124 +msgid "Your PayFast transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:82 +#: includes/common/payment-gateways/payfast.php:83 +msgid "PayFast" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:157 +msgid "API error: - \"%s\"" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:198 +msgid "The payment request is under process" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:140 +msgid "Order: #" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:116 +msgid "You will be redirected to the Mollie site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:73 +msgid "%sMollie%s provides a fully PCI Compliant and secure way to collect payments via iDeal, Credit Card, Bancontact / Mister Cash, SOFORT Banking, Overbooking, Bitcoin, PayPal, paysafecard and AcceptEmail." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:53 +#: includes/common/payment-gateways/mollie.php:54 +#: includes/common/payment-gateways/mollie.php:195 +#: includes/common/payment-gateways/mollie.php:245 +msgid "Mollie" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:50 +#: includes/common/payment-gateways/paymill.php:56 +#: includes/common/payment-gateways/paypal-chained-payments.php:72 +#: includes/common/payment-gateways/pin.php:60 +#: includes/common/payment-gateways/skrill.php:64 +#: includes/common/payment-gateways/stripe.php:92 +msgid "EUR - Euro" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:306 +msgid "Access Key" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:300 +msgid "You must login to the Mijireh.com dashboard to obtain the Access Key." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:299 +msgid "Credentials" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:289 +msgid "Mijireh Checkout provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:269 +msgid "Mijireh Error: " +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:89 +msgid "You will be redirected to the Mijireh.com site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:87 +msgid "Your Mijireh transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:42 +#: includes/common/payment-gateways/mijireh.php:43 +#: includes/common/payment-gateways/mijireh.php:324 +msgid "Mijireh" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:145 +msgid "These are the manual payment instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:189 +msgid "This is the email text to send to those who have made free order checkouts. You should include your free order instructions / information here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:183 +msgid "This is the free order information to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:182 +msgid "Confirmation User Information" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:177 +msgid "This is the information to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:163 +msgid "If enabled, all free orders will be automatically marked as paid." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:159 +msgid "Payment Status" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:149 +msgid "This gateway is automatically activated if order totalling 0 and it can't be disabled" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:35 +#: includes/common/payment-gateways/free_orders.php:36 +#: includes/common/payment-gateways/free_orders.php:89 +msgid "Free Order" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:34 +#: includes/common/payment-gateways/free_orders.php:197 +msgid "Free Orders" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:515 +msgid "Sandbox API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:266 +#: includes/common/payment-gateways/eway31.php:542 +msgid "eWay Rapid 3.1 Payments (beta)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:403 +msgid "Hosted Payment Page Language" +msgstr "" + +#: includes/common/payment-gateways/eway.php:373 +msgid "Note when testing in sandbox mode it will use the default eWay test API credentials. Also, please note that cart total needs to be a whole number (e.g. 10.00) in order to generate a successful transaction, otherwise the transaction will fail." +msgstr "" + +#: includes/common/payment-gateways/eway.php:267 +msgid "You will be redirected to https://www.eway.com.au to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:380 +msgid "You have chosen to checkout using %s. Please confirm your order details and click \"Submit Order\" when finished." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:272 +#: includes/common/payment-gateways/paymill.php:131 +#: includes/common/payment-gateways/stripe.php:231 +msgid "Security Code " +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Enter in MM/YYYY or MM/YY format" +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Expiration" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:321 +msgid "Delim Data" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:307 +#: includes/common/payment-gateways/paypal-payflow.php:456 +msgid "This text will appear as the footer of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:287 +#: includes/common/payment-gateways/paypal-payflow.php:440 +msgid "Email Customer (on success)" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:278 +msgid "Authorize.net default is \",\". Otherwise, get this from your credit card processor. If the transactions are not going through, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:277 +msgid "Delimeter Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:193 +msgid "Held For Review" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:310 +#: includes/common/payment-gateways/payfast.php:314 +msgid "Test" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:300 +#: includes/common/payment-gateways/pin.php:170 +#: includes/common/payment-gateways/stripe.php:272 +msgid "Secret Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:283 +msgid "Select Your Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:97 +msgid "Your payment will be processed by the iDEAL network" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:208 +msgid "These are the CubePoints to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:203 +msgid "These are the CubePoints instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:266 +msgid "If enabled, all API calls will be made to https://test.bitpay.com." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:263 +msgid "Use Test Mode?" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:259 +msgid "If checked, response fron bitpay will be stored in log file, keep it disabled unless required." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:256 +msgid "Enable Debug Log" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:249 +msgid "Full Notifications" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:231 +#: includes/common/payment-gateways/eway31.php:499 +#: includes/common/payment-gateways/eway31.php:526 +#: includes/common/payment-gateways/mollie.php:83 +#: includes/common/shipping-modules/mp-fedex.php:269 +msgid "API Key" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:222 +msgid "You can now accept a payment from any country on Earth, with no risk of fraud. To use Bitpay, you need to signup on Bitpay. \\n After completing the signup process, you can get api keys at Bitpay API key. You can read more about Bitpay at Bitpay API. \\n Bitpay requires SSL(https) for payment notifications to work." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:61 +msgid "You will be redirected to bitpay.com, for bitcoin payment. It is completely safe." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:346 +msgid "You must login to the 2Checkout vendor dashboard to obtain the seller ID and secret word. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:345 +#: includes/common/payment-gateways/authorizenet-aim.php:239 +#: includes/common/payment-gateways/paymill.php:168 +#: includes/common/payment-gateways/paypal-express.php:704 +#: includes/common/payment-gateways/simplify.php:80 +#: includes/common/payment-gateways/stripe.php:265 +#: includes/common/payment-gateways/wepay.php:158 +msgid "API Credentials" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:325 +#: includes/common/payment-gateways/_bitpay.php:220 +#: includes/common/payment-gateways/_cubepoints.php:185 +#: includes/common/payment-gateways/_ideal.php:268 +#: includes/common/payment-gateways/_payway.php:255 +#: includes/common/payment-gateways/authorizenet-aim.php:219 +#: includes/common/payment-gateways/eway.php:352 +#: includes/common/payment-gateways/eway31.php:460 +#: includes/common/payment-gateways/free_orders.php:147 +#: includes/common/payment-gateways/manual-payments.php:126 +#: includes/common/payment-gateways/mijireh.php:287 +#: includes/common/payment-gateways/mollie.php:71 +#: includes/common/payment-gateways/paymill.php:149 +#: includes/common/payment-gateways/paypal-chained-payments.php:344 +#: includes/common/payment-gateways/paypal-payflow.php:376 +#: includes/common/payment-gateways/pin.php:145 +#: includes/common/payment-gateways/simplify.php:69 +#: includes/common/payment-gateways/skrill.php:121 +#: includes/common/payment-gateways/stripe.php:249 +#: includes/common/payment-gateways/wepay.php:119 +#: includes/common/shipping-modules/mp-fedex.php:243 +#: includes/common/shipping-modules/mp-flat-rate.php:63 +#: includes/common/shipping-modules/mp-pickup.php:140 +#: includes/common/shipping-modules/mp-table-rate.php:94 +#: includes/common/shipping-modules/mp-ups.php:122 +#: includes/common/shipping-modules/mp-usps.php:167 +#: includes/common/shipping-modules/mp-weight-rate.php:110 +msgid "%s Settings" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:136 +msgid "You will be redirected to the 2Checkout site to finalize your payment." +msgstr "" + +#: includes/common/helpers.php:169 includes/public/class-mp-checkout.php:1277 +msgid "Billing" +msgstr "" + +#: includes/common/helpers.php:144 +msgid "FREE" +msgstr "" + +#: includes/common/helpers.php:134 +msgid "Coupons:" +msgstr "" + +#: includes/common/helpers.php:95 +msgid "Qty" +msgstr "" + +#: includes/common/helpers.php:94 +msgid "Sku" +msgstr "" + +#: includes/common/data.php:59 +msgid "Zip Code" +msgstr "" + +#: includes/common/class-mp-taxes.php:336 +msgid "Standard Table" +msgstr "" + +#: includes/common/class-mp-product.php:2698 +msgid "Tweet" +msgstr "" + +#: includes/common/class-mp-product.php:2321 +msgid "Notification Preferences: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2320 +msgid "Edit Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2318 +msgid "Link: %s

    " +msgstr "" + +#: includes/common/class-mp-product.php:2317 +msgid "Current Inventory: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2316 +msgid "Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2314 +msgid "This message is being sent to notify you of low stock of a product in your online store according to your preferences.

    " +msgstr "" + +#: includes/common/class-mp-product.php:1817 +msgid "" +msgstr "" + +#: includes/common/class-mp-product.php:1427 +#: includes/common/class-mp-product.php:1430 +msgid "(tax incl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1422 +#: includes/common/class-mp-product.php:1425 +msgid "(tax excl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1300 +#: includes/common/class-mp-product.php:1315 +msgid "%s each" +msgstr "" + +#: includes/common/class-mp-product.php:988 +msgid "Choose Options" +msgstr "" + +#: includes/common/class-mp-product.php:526 +msgid "Choose a %s" +msgstr "" + +#: includes/common/class-mp-product.php:284 +#: includes/common/class-mp-product.php:292 +#: includes/common/class-mp-product.php:615 +msgid "We're sorry, we only have %d of this item in stock right now." +msgstr "" + +#: includes/common/class-mp-order.php:1456 +msgid "Shipped: Track Shipment" +msgstr "" + +#: includes/common/class-mp-order.php:1049 +msgid "Order Received" +msgstr "" + +#: includes/common/class-mp-order.php:1014 +msgid "In Process" +msgstr "" + +#: includes/common/class-mp-order.php:969 +msgid "Order #" +msgstr "" + +#: includes/common/class-mp-order.php:866 +msgid "Copy billing address to shipping address" +msgstr "" + +#: includes/common/class-mp-order.php:822 +#: includes/public/class-mp-checkout.php:1314 +msgid "Special Instructions" +msgstr "" + +#: includes/common/class-mp-order.php:817 +#: includes/common/payment-gateways/stripe.php:335 +msgid "Email" +msgstr "Email" + +#: includes/common/class-mp-order.php:813 +#: includes/common/payment-gateways/stripe.php:341 +#: includes/public/class-mp-checkout.php:416 +msgid "Phone" +msgstr "Telefon" + +#: includes/common/class-mp-order.php:791 +#: includes/common/payment-gateways/stripe.php:337 +msgid "State" +msgstr "Oyggj" + +#: includes/common/class-mp-order.php:776 +msgid "Address 1" +msgstr "Adressa 1" + +#: includes/common/class-mp-order.php:766 +msgid "Last Name" +msgstr "Eftirnavn" + +#: includes/common/class-mp-order.php:762 +msgid "First Name" +msgstr "Fornavn" + +#: includes/common/class-mp-installer.php:677 +msgid "MarketPress requires a database update to continue working correctly. Go to update page" +msgstr "MarketPress requires a database update to continue working correctly. Go to update page" + +#: includes/common/class-mp-installer.php:657 +msgid "MarketPress performed a quick automatic update successfully!" +msgstr "MarketPress performed a quick automatic update successfully!" + +#: includes/common/class-mp-installer.php:653 +msgid "Perform Update" +msgstr "Perform Update" + +#: includes/common/class-mp-installer.php:647 +msgid "Please update each subsite in your WordPress network where you have older version of the MarketPress plugin." +msgstr "Please update each subsite in your WordPress network where you have older version of the MarketPress plugin." + +#: includes/common/class-mp-installer.php:641 +msgid "Depending on the amount of products you have, this update could take quite some time. Please keep this window open while the update completes. If you have products with multiple variations, the progress bar may move slower, please don't exit the window." +msgstr "" + +#: includes/common/class-mp-installer.php:632 +msgid "Product Metadata" +msgstr "" + +#: includes/common/class-mp-installer.php:601 +msgid "MarketPress requires a database update to continue working correctly.
    Below you will find a list of items that require your attention." +msgstr "" + +#: includes/common/class-mp-installer.php:600 +msgid "Update MarketPress Data" +msgstr "" + +#: includes/common/class-mp-installer.php:530 +msgid "Update Data" +msgstr "" + +#: includes/common/class-mp-installer.php:67 +msgid "Complete!" +msgstr "" + +#: includes/common/class-mp-installer.php:66 +msgid "Upgrading Database...Please Wait..." +msgstr "" + +#: includes/common/class-mp-installer.php:64 +msgid "An error occurred while updating. Please refresh this page and try again." +msgstr "" + +#: includes/common/class-mp-cart.php:2447 +msgid "Some items in your cart have fallen below the quantity you currently have in your cart. We have adjusted the quantity in your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:2443 +msgid "Some items in your cart are no longer available. We have removed these items from your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:1566 +msgid "item" +msgstr "Lutur" + +#: includes/common/class-mp-cart.php:1563 +#: includes/common/class-mp-cart.php:1568 +msgid "items" +msgstr "Lutir" + +#: includes/common/class-mp-cart.php:1363 +msgid "Items/Products added to Cart will show here." +msgstr "Lutunir/vørunar sum tú hevur lagt í kurvuna vísast her." + +#: includes/common/class-mp-cart.php:1362 +msgid "Your shopping cart is empty." +msgstr "Tín kurv er tóm." + +#: includes/common/class-mp-cart.php:1357 +msgid "View Cart" +msgstr "Sí Kurv" + +#: includes/common/class-mp-cart.php:1241 +#: includes/common/class-mp-cart.php:1298 +#: includes/public/class-mp-short-codes.php:159 +msgid "Adding..." +msgstr "Leggur afturat..." + +#: includes/common/class-mp-cart.php:1033 +msgid "Continue Shopping?" +msgstr "Keyp Meira?" + +#: includes/common/class-mp-cart.php:961 +msgid "Secure Checkout
    Shopping is always safe and secure." +msgstr "Secure Checkout
    Shopping is always safe and secure." + +#: includes/common/class-mp-cart.php:959 +msgid "You are about to submit your order!
    Please review your order details before continuing. You will be charged immediately upon clicking \"Submit Order\"." +msgstr "Tú er við at bestilla!
    Vinarliga tjekka tín ordra áðrenn tú heldur fram. Betalingin fer fram tá ið tú trýstur \"Keyp Nú\"." + +#: includes/common/class-mp-cart.php:956 +msgid "Continue »" +msgstr "" + +#: includes/common/class-mp-cart.php:955 +msgid "Submit Order" +msgstr "Keyp Nú" + +#: includes/common/class-mp-cart.php:818 +msgid "There are no items in your cart - go add some !" +msgstr "" + +#: includes/common/class-mp-cart.php:816 +msgid "The cart is disabled." +msgstr "" + +#: includes/common/class-mp-cart.php:735 +msgid "Estimated %s" +msgstr "" + +#: includes/common/class-mp-cart.php:717 +msgid "Estimated Shipping" +msgstr "" + +#: includes/common/class-mp-cart.php:697 +msgid "Product Total" +msgstr "" + +#: includes/common/class-mp-cart.php:670 includes/common/class-mp-cart.php:672 +msgid "Estimated Total (%s, %s)" +msgstr "" + +#: includes/common/class-mp-cart.php:668 +msgid "Estimated Total (%s)" +msgstr "" + +#: includes/common/class-mp-cart.php:666 includes/common/class-mp-cart.php:752 +msgid "Estimated Total" +msgstr "" + +#: includes/admin/widgets/product-list.php:247 +msgid "Show Thumbnail Placeholder image (if image is not set)" +msgstr "" + +#: includes/admin/widgets/cart.php:73 +msgid "Display product price" +msgstr "" + +#: includes/admin/widgets/cart.php:71 +msgid "Display product quantity" +msgstr "" + +#: includes/admin/widgets/cart.php:69 +msgid "Display product image" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:93 +msgid "General Shipping Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:773 +msgid "If you are having conflicts with the lightbox library from your theme or another plugin you should uncheck this." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:772 +msgid "Use Built-In Lightbox for Images?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:762 +msgid "Disable Large Image Display?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:688 +msgid "Show Product Image?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:682 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:684 +msgid "Show Tags List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:676 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:678 +msgid "Show Categories List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:671 +msgid "If enabled, description excerpt will be added above Add to cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:669 +msgid "Show Excerpt?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:665 +msgid "If enabled, users will be able to choose how many of the product they want to purchase before adding to their cart. If not checked, quantity could be change later on the cart page." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:663 +msgid "Show Quantity Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:649 +msgid "Settings related to the display of individual product pages." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:648 +msgid "Product Page Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:605 +msgid "Related Products Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:573 +msgid "Show Related Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:568 +msgid "Related Product Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:549 +msgid "Order Status Entries Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:510 +msgid "Sort Products By" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:497 +msgid "Products Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:492 +msgid "Paginate Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:478 +msgid "Excerpts Length" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:473 +msgid "Show Excerpts?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:450 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:746 +msgid "Image Alignment" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:412 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:708 +msgid "Custom Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:401 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:697 +msgid "Large - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:400 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:696 +msgid "Medium - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:399 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:695 +msgid "Thumbnail - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:397 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:693 +msgid "Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:386 +msgid "Select default placeholder image thumbnail when product image is not available (if empty, plugin's built-in image will be used)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:380 +msgid "Show default product placeholder thumbnail when product image is not available?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:374 +msgid "Show Product Thumbnail?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:369 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:658 +msgid "Redirect to cart page for immediate checkout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:368 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:657 +msgid "Stay on current product page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:366 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:655 +msgid "MarketPress supports two \"flows\" for adding products to the shopping cart. After adding a product to their cart, two things can happen:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:365 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:654 +msgid "Add To Cart Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:355 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:628 +msgid "Four" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:354 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:627 +msgid "Three" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:353 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:626 +msgid "Two" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:625 +msgid "One" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:349 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:622 +msgid "Set the number of products that show up in a grid row to best fit your theme" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:348 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:621 +msgid "How many products per row?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:342 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:609 +msgid "Display as grid" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:341 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:608 +msgid "Display as list" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:339 +msgid "Product Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:334 +msgid "Settings related to the display of product lists/grids." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:333 +msgid "Product List/Grid Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:314 +msgid "Show Twitter Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:309 +msgid "Twitter" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:303 +msgid "Show Share Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:297 +msgid "Recommend" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:296 +msgid "Like" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:294 +msgid "Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:283 +msgid "Show Facebook Like Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:278 +msgid "Facebook" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:257 +msgid "Show \"Pin It\" Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:252 +msgid "Pinterest" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:246 +msgid "Social Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:193 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:202 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:211 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:220 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:229 +#: includes/multisite/class-mp-admin-multisite.php:532 +#: includes/multisite/class-mp-admin-multisite.php:541 +#: includes/multisite/class-mp-admin-multisite.php:550 +msgid "Choose a Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:191 +msgid "This page will be used as the root for your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:168 +#: includes/multisite/class-mp-admin-multisite.php:586 +msgid "Create Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "uncropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "cropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:87 +#: includes/multisite/class-mp-admin-multisite.php:121 +#: includes/multisite/class-mp-admin-multisite.php:620 +msgid "An error occurred while creating the store page. Please try again." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:66 +msgid "Choose the gateway(s) that you would like to be available for checkout." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:65 +msgid "Enabled Gateways" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:78 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:146 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:179 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:213 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:274 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:307 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:341 +msgid "Text" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:71 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:139 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:172 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:206 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:267 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:300 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:334 +msgid "Subject" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:52 +msgid "Notification Email" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:510 +msgid "Enabling this option will display label `excl. tax` or `incl. tax` after price" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:509 +msgid "Display tax label?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:504 +msgid "Enabling this option will show Price + Tax, eg. if your price is 100 and your tax 20, your price will be 120" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:416 +#: includes/multisite/class-mp-admin-multisite.php:234 +msgid "Price Format" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:366 +msgid "Enabling this field will display a textbox on the shipping checkout page for users to enter special instructions for their order. Useful for product personalization, etc." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:365 +msgid "Show Special Instructions Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:360 +msgid "Universal" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:359 +msgid "Old" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1167 +#: includes/admin/store-settings/class-mp-store-settings-general.php:358 +msgid "New" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:353 +msgid "If you already use Google Analytics for your website, you can track detailed ecommerce information by enabling this setting. Choose whether you are using the new asynchronous or old tracking code. Before Google Analytics can report ecommerce activity for your website, you must enable ecommerce tracking on the profile settings page for your website. Also keep in mind that some gateways do not reliably show the receipt page, so tracking may not be accurate in those cases. It is recommended to use the PayPal gateway for the most accurate data. More information »" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:347 +msgid "Do you want to display the product price on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:346 +msgid "Show product price on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:340 +msgid "Do you want to display the product quantity on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:339 +msgid "Show product quantity on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:333 +msgid "Do you want to display the product image on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:332 +msgid "Show product image on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:327 +msgid "This option hide floating Mini Cart in top right corner." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:326 +msgid "Disable Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:316 +msgid "If unchecked your Orders admin page will be hidden" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:315 +msgid "Show admin Orders page?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:309 +msgid "Disable Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:303 +msgid "Force Login?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:297 +msgid "Hide Out of Stock Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:555 +msgid "This will prevent multiples of the same downloadable product form being added to the cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:554 +msgid "Limit Digital Products Per-order?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:268 +msgid "If you're having issues downloading large files and have worked with your hosting provider to increase your memory limits, try enabling this - just keep in mind, it's not as secure!" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:267 +msgid "Use Alternative Download Method?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:252 +msgid "Download Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:230 +msgid "Change product post type" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:51 +msgid "%s Capabilities" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-addons.php:47 +msgid "Store Settings: Add Ons: %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:254 +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:56 +msgid "Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Edit Product Attribute %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:246 +msgid "Exporters" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:238 +msgid "Short Codes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:207 +msgid "An appropriate message for key \"%s\" could not be found." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:204 +msgid "Product attribute updated successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:203 +msgid "Product attribute added successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +msgid "Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +#: includes/admin/store-settings/class-mp-store-settings-addons.php:121 +msgid "Store Settings: Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "Store Settings: Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:118 +msgid "Store Settings: Product Tags" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:117 +msgid "Store Settings: Product Categories" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Store Settings: Product Attributes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +msgid "Store Settings: Payments" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:114 +msgid "Store Settings: Shipping" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +#: includes/admin/class-mp-store-settings-admin.php:226 +msgid "Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +msgid "Store Settings: Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:112 +msgid "Store Settings: Presentation" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:111 +msgid "Store Settings: General" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1489 +msgid "Select a Product" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1447 +msgid "Reset to Defaults" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1446 +msgid "Insert Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1202 +#: includes/admin/class-mp-shortcode-builder.php:1227 +#: includes/admin/class-mp-shortcode-builder.php:1252 +msgid "The text to show in the link." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1196 +#: includes/admin/class-mp-shortcode-builder.php:1221 +#: includes/admin/class-mp-shortcode-builder.php:1246 +msgid "Whether to return a clickable link or url." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1177 +msgid "Whether to display the cart only on store pages or not." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1171 +msgid "Whether to show or hide the product price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1165 +msgid "Whether to show or hide the product quantity." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1159 +msgid "Whether to show or hide the product image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1153 +msgid "The text displayed before the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1147 +msgid "The title of the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1058 +#: includes/admin/class-mp-shortcode-builder.php:1121 +msgid "A label to prepend to the price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1032 +#: includes/admin/class-mp-shortcode-builder.php:1127 +msgid "What context for display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1004 +msgid "Set the alignment of the image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:998 +msgid "Set a custom pixel width/height. If omitted defaults to the size set by \"context\"." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:993 +msgid "Widget" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:988 +msgid "What context for preset size options." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:982 +#: includes/admin/class-mp-shortcode-builder.php:1026 +#: includes/admin/class-mp-shortcode-builder.php:1052 +#: includes/admin/class-mp-shortcode-builder.php:1077 +#: includes/admin/class-mp-shortcode-builder.php:1096 +#: includes/admin/class-mp-shortcode-builder.php:1115 +msgid "The ID of the product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:963 +msgid "Whether to display the product meta (e.g. price, buy button)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:738 +#: includes/admin/class-mp-shortcode-builder.php:905 +#: includes/admin/class-mp-shortcode-builder.php:958 +#: includes/admin/class-mp-shortcode-builder.php:992 +#: includes/admin/class-mp-shortcode-builder.php:1035 +#: includes/admin/class-mp-shortcode-builder.php:1130 +#: includes/admin/class-mp-shortcode-builder.php:1349 +msgid "List" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:957 +#: includes/admin/class-mp-shortcode-builder.php:991 +#: includes/admin/class-mp-shortcode-builder.php:1034 +#: includes/admin/class-mp-shortcode-builder.php:1129 +msgid "Single" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:953 +msgid "Whether and what context of image size to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:948 +msgid "Full" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:943 +msgid "Whether and what type of content to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:937 +msgid "Whether to display the product title." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:931 +msgid "The ID of the product to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:747 +#: includes/admin/class-mp-shortcode-builder.php:914 +msgid "Hide" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:746 +#: includes/admin/class-mp-shortcode-builder.php:913 +msgid "Show" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:744 +#: includes/admin/class-mp-shortcode-builder.php:911 +msgid "Whether or not to show the product filters." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:724 +#: includes/admin/class-mp-shortcode-builder.php:891 +#: includes/admin/class-mp-shortcode-builder.php:1335 +msgid "Limits list to a specific product tag." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:713 +#: includes/admin/class-mp-shortcode-builder.php:880 +#: includes/admin/class-mp-shortcode-builder.php:1324 +msgid "Limits list to a specific product category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:706 +#: includes/admin/class-mp-shortcode-builder.php:873 +#: includes/admin/class-mp-shortcode-builder.php:1317 +msgid "Direction to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:684 +#: includes/admin/class-mp-shortcode-builder.php:851 +#: includes/admin/class-mp-shortcode-builder.php:1295 +msgid "What field to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:678 +#: includes/admin/class-mp-shortcode-builder.php:845 +#: includes/admin/class-mp-shortcode-builder.php:1283 +msgid "How many products to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:672 +#: includes/admin/class-mp-shortcode-builder.php:839 +#: includes/admin/class-mp-shortcode-builder.php:1277 +msgid "The page number to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:666 +#: includes/admin/class-mp-shortcode-builder.php:833 +#: includes/admin/class-mp-shortcode-builder.php:1271 +msgid "Whether to paginate the product list. This is useful to only show a subset." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:808 +msgid "How many related items to show." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:790 +msgid "How to relate the products" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:784 +msgid "The product to show related items for." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:765 +msgid "The maximum number of products to display" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:647 +msgid "Comma separated list of tags (term_id) to include. For example, include=5,27 means tags that have the term_id 5 or 27 will be the only tags displayed. Defaults to include everything." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:641 +msgid "Comma separated list of tags (term_id) to exclude. For example, exclude=5,27 means tags that have the term_id 5 or 27 will NOT be displayed. Defaults to exclude nothing." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:633 +#: includes/admin/class-mp-shortcode-builder.php:1420 +msgid "Sort order." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:629 +#: includes/admin/class-mp-shortcode-builder.php:1416 +msgid "Count" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:626 +#: includes/admin/class-mp-shortcode-builder.php:1413 +msgid "Order of the tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:620 +msgid "The text/space between tags)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:616 +msgid "UL with a class of \"wp-tag-cloud\"" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:615 +msgid "separated by whitespace defined by \"separator\" parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:613 +msgid "Format of the cloud display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:607 +msgid "The number of actual tags to display in the cloud. (Use \"0\" to display all tags.)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:601 +msgid "Unit of measure as pertains to the smallest and largest values. This can be any CSS length value, e.g. pt, px, em, %." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:595 +msgid "The text size of the tag with the largest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:589 +msgid "The text size of the tag with the smallest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:570 +msgid "The \"tabindex\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:564 +msgid "The \"name\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:558 +msgid "The \"id\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:552 +msgid "Which category ID is selected." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:540 +msgid "The max depth. This is ignored unless hierarchical is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:536 +#: includes/multisite/template-functions.php:816 +msgid "No Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:414 +#: includes/admin/class-mp-shortcode-builder.php:546 +msgid "Calculates link or post counts by including items from child categories. If show_counts and hierarchical are true this is automatically set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:409 +msgid "Value of n (some number) specifies the depth (or level) to descend in displaying Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:408 +msgid "Show only top level Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:407 +msgid "All Categories displayed in flat (no indent) form (overrides hierarchical)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:406 +msgid "All Categories and child Categories (Default)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:402 +msgid "This parameter controls how many levels in the hierarchy of Categories are to be included in the list of Categories. NOTE: The \"hierarchical\" argument, which is disabled by default, will override the depth argument, unless it is true. When the argument is false, it will display all of the categories. When it is enabled it will use the value in the \"depth\" argument." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:396 +#: includes/admin/class-mp-shortcode-builder.php:1394 +msgid "Sets the number of Categories to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:390 +#: includes/admin/class-mp-shortcode-builder.php:534 +msgid "Set the text to show when no categories are listed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:384 +msgid "Set the title and style of the outer list item. If present but empty, the outer list item will not be displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:378 +#: includes/admin/class-mp-shortcode-builder.php:528 +msgid "Display sub-categories as inner list items (below the parent list item) or inline." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:368 +#: includes/admin/class-mp-shortcode-builder.php:511 +msgid "Exclude category-tree from the results. The parameter include must be empty. If the hierarchical parameter is true, then use exclude instead of exclude_tree." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:354 +msgid "Only include these categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:340 +#: includes/admin/class-mp-shortcode-builder.php:356 +#: includes/admin/class-mp-shortcode-builder.php:370 +#: includes/admin/class-mp-shortcode-builder.php:496 +#: includes/admin/class-mp-shortcode-builder.php:513 +msgid "Select Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:338 +#: includes/admin/class-mp-shortcode-builder.php:494 +msgid "Exclude one or more categories from the results. The parameter include must be empty." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:332 +msgid "Set a URI for an image (usually an rss feed icon) to act as a link to each categories' rss-2 feed. This parameter overrides the feed parameter. There is no default for this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:320 +msgid "Display a link to each category's rss-2 feed and set the link text to display. The default is no text and no feed displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:313 +#: includes/admin/class-mp-shortcode-builder.php:487 +msgid "Any" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:307 +#: includes/admin/class-mp-shortcode-builder.php:481 +msgid "Only display categories that are children of the category identified by this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:301 +msgid "Sets whether a category's description is inserted into the title attribute of the links created (i.e. <a title=\"<em>Category Description</em>\" href=\"...)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:295 +#: includes/admin/class-mp-shortcode-builder.php:475 +msgid "Toggles the display of categories with no posts." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:289 +#: includes/admin/class-mp-shortcode-builder.php:469 +#: includes/admin/class-mp-shortcode-builder.php:1388 +msgid "Toggles the display of the current count of posts in each category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:279 +msgid "Style to display the categories list in. A value of list displays the categories as list items while none generates no special display method (the list items are separated by
    tags)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:269 +#: includes/admin/class-mp-shortcode-builder.php:449 +#: includes/admin/class-mp-shortcode-builder.php:1378 +msgid "Sort order for categories (either ascending or descending)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:259 +#: includes/admin/class-mp-shortcode-builder.php:439 +#: includes/admin/class-mp-shortcode-builder.php:1368 +msgid "Sort categories alphabetically, by unique Category ID, or by the count of posts in that Category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:253 +#: includes/admin/class-mp-shortcode-builder.php:433 +msgid "If a value is entered, causes the display of a link to all categories if the style is set to list." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:219 +msgid "Select an Action" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:217 +msgid "What would you like to do?" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:216 +#: includes/admin/class-mp-shortcode-builder.php:1522 +msgid "Add E-Commerce Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:197 +msgid "Display a list of links to your store pages." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:196 +msgid "Display a link or url to the order status page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:195 +msgid "Display a link or url to the current products list page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:194 +msgid "Display a link or url to the current store page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:193 +msgid "Display a link or url to the current shopping cart page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:192 +msgid "Display the cart widget." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:191 +msgid "Display the full product meta box with price and buy now/add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:190 +msgid "Display the product stock." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:189 +msgid "Display the product SKU number(s)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:188 +msgid "Display the product price (and sale price)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:187 +msgid "Display the buy or add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:186 +msgid "Display the featured image of a given product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:185 +msgid "Display a single product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:184 +msgid "Display a list of products according to preference." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:183 +msgid "Display products related to the one being viewed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:182 +msgid "Display a list of popular products ordered by sales." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:180 +msgid "Display an HTML dropdown of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:179 +msgid "Display an HTML list of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:178 +msgid "Display a cloud or list of your product tags." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:655 +msgid "Setup your payment gateway" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:643 +#: includes/admin/class-mp-setup-wizard.php:649 +msgid "Other Gateways" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:617 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:150 +msgid "Select which calculated shipping methods the customer will be able to choose from." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:601 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:134 +#: includes/public/class-mp-checkout.php:82 +msgid "Shipping Method" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:568 +msgid "I want to charge shipping" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:523 +#: includes/admin/store-settings/class-mp-store-settings-general.php:503 +msgid "Show Price + Tax?" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:507 +msgid "I.e. Taxes, VAT, GST, etc" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:491 +#: includes/admin/store-settings/class-mp-store-settings-general.php:471 +msgid "Current Rates" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:473 +msgid "Default Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:434 +#: includes/admin/class-mp-setup-wizard.php:442 +#: includes/admin/store-settings/class-mp-store-settings-general.php:386 +#: includes/admin/store-settings/class-mp-store-settings-general.php:394 +#: includes/multisite/class-mp-admin-multisite.php:204 +#: includes/multisite/class-mp-admin-multisite.php:212 +msgid "Select a Currency" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:414 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:105 +msgid "Choose Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:411 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:103 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:104 +msgid "All Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:410 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:102 +msgid "These are the countries that you will ship to." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:409 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:101 +msgid "Target Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:401 +msgid "Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:387 +#: includes/admin/store-settings/class-mp-store-settings-general.php:640 +msgid "Zip/Postal Code Label" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:352 +#: includes/admin/store-settings/class-mp-store-settings-general.php:606 +msgid "Select a State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:335 +#: includes/admin/store-settings/class-mp-store-settings-general.php:590 +msgid "Select A Country" +msgstr "Vel Eitt Land" + +#: includes/admin/class-mp-setup-wizard.php:332 +#: includes/admin/store-settings/class-mp-store-settings-general.php:587 +msgid "Select a Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:324 +msgid "Location" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:304 +#: includes/admin/class-mp-setup-wizard.php:312 +#: includes/admin/class-mp-store-settings-admin.php:129 +#: includes/admin/class-mp-store-settings-admin.php:262 +msgid "Quick Setup" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:289 +msgid "MarketPress setup is not complete! Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2479 +msgid "Enter your product name here" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2440 +msgid "Select a %s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2426 +msgid "Each product variation needs to have product attributes assigned to it so the system knows how to differentiate one product variation from the other. It is important that you assign a category to this product before choosing any attributes." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2409 +msgid "If you would like this variation to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2320 +msgid "Sale Price (if applicable)" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2281 +msgid "If you would like the description to be different than the main product enter it here." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2229 +msgid "Image" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2202 +#: includes/admin/class-mp-shortcode-builder.php:226 +msgid "Attributes" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2166 +msgid "Create your product variations here. You can reorder variations by using the number to left of each variation, or delete one by clicking the \"x\" to the right of each variation. NOTE: The variation that shows up first in this list will be considered the \"main variation\". The details from this variation will be used in product listings." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2061 +#: includes/admin/class-mp-products-admin.php:2332 +msgid "Value must be less than regular price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2043 +#: includes/admin/class-mp-products-admin.php:2306 +msgid "Regular Price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2023 +#: includes/admin/class-mp-products-admin.php:2286 +msgid "External URL" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1988 +#: includes/admin/class-mp-products-admin.php:2245 +msgid "Enter the quantity that you have available to sell." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1987 +#: includes/admin/class-mp-products-admin.php:2244 +msgid "Inventory Count" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1977 +#: includes/admin/class-mp-products-admin.php:2234 +msgid "Track Inventory?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1871 +msgid "%1$sProduct Images%2$s %3$sAdd images of the product. The first image on the list is the featured image for this product (you can reorder images on the list)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1806 +msgid "Add variations for this product. e.g. If you are selling t-shirts, you can create Color & Size variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1804 +msgid "%3$sAdd variations for%2$s %1$sProduct%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1776 +msgid "This product has a multiple variations %1$s(e.g. Multiple colors, sizes)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1775 +msgid "This is a unique product without variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1700 +msgid "Extra Shipping Cost %1$s(if applicable)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1659 +#: includes/admin/class-mp-products-admin.php:2112 +#: includes/admin/class-mp-products-admin.php:2359 +msgid "Weight" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1636 +#: includes/admin/class-mp-products-admin.php:2098 +#: includes/admin/class-mp-products-admin.php:2416 +msgid "Please enter a valid tax rate" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1531 +msgid "Limit Per Order %1$s(limit the number of the item a shopper can buy per order)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1513 +msgid "SKU %1$s(Stock Keeping Unit)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "%1$sPrice, Inventory & Variants%2$s %3$sSet price, manage inventory and create Product Variants (if appropriate for your product).%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "Product Variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1480 +msgid "External / Affiliate Link" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1471 +msgid "Digital Download" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1470 +msgid "Physical / Tangible Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1464 +msgid "Product Kind %1$s(Physical Product, Digital, etc)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1426 +msgid "Choose Products" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1420 +msgid "If you would like, you can choose specific related products instead of using the ones generated by MarketPress" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1019 +msgid "Changes saved successfully" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:826 +msgid "Option cannot be saved. Try again." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:821 +msgid "Option saved successfully." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:467 +msgid "Img" +msgstr "" + +#: includes/admin/class-mp-product-attributes-list-table.php:57 +msgid "Product attribute(s) deleted successfully." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:162 +msgid "- Create New Variation -" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:144 +msgid "Only lowercase letters and dashes (-) are allowed." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:139 +msgid "If a slug is not entered, it will be generated automatically. Max 32 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:138 +#: includes/admin/class-mp-product-attributes-list-table.php:23 +msgid "Slug" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:130 +msgid "Max 45 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:123 +msgid "Use the numbers on the left to sort. To delete - click the \"X\" to the right of each row." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:122 +msgid "Attribute Options" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:121 +msgid "Add Option" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:105 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:523 +msgid "Sort Order" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:87 +msgid "Alphabetical" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:86 +msgid "ID" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:84 +msgid "Select how the options will be sorted." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:82 +msgid "Sort By" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:75 +msgid "The name of the attribute (e.g. color, size, etc)" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:74 +msgid "Attribute Name" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:69 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Product Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Product Attributes" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:71 +msgid "You can choose to make this page one of the following core store pages." +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:66 +msgid "Network Store Base" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:61 +msgid "Checkout Page" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:52 +msgid "Store Page Settings" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1108 +msgid "Display billing/shipping info for this customer" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1097 +msgid "View order “%s”" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1072 +msgid "Flag as:" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:952 +msgid "Move To Trash" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:948 +msgid " Received" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:927 +msgid "Enter coupon code here" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:812 +msgid "The order status could not be updated due to unexpected error. Please try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:740 +msgid "An invalid bulk action was requested. Please go back and try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:692 +msgid "The order status for order ID %1$s was updated successfully." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:688 +msgid "Order statuses successfully updated." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:530 +msgid "Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:518 +msgid "Actual Shipping Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:513 +msgid "Method Paid For" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:504 +msgid "Amount Collected" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:477 +msgid "DHL" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:408 +msgid "There is no IPN history to show at this time" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:345 +msgid "Type" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:343 +msgid "Gateway" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:301 +#: includes/common/template-functions.php:528 +msgid "Order History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:291 +msgid "IPN History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:283 +msgid "Customer Info" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:279 +msgid "Order Details" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:157 +msgid "All Dates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:320 +msgid "Add Pages to Menu" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:318 +msgid "Add-ons" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:317 +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "User Capabilities" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:316 +#: includes/admin/class-mp-setup-wizard.php:631 +#: includes/admin/store-settings/class-mp-store-settings-payments.php:50 +msgid "Payment Gateways" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:315 +msgid "Shipping Rates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:312 +msgid "Configure" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:309 +#: includes/admin/class-mp-products-admin.php:466 +#: includes/admin/class-mp-shortcode-builder.php:797 +msgid "Tags" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:308 +#: includes/admin/class-mp-products-admin.php:465 +msgid "Categories" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:300 +msgid "Manage" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:297 +msgid "Here's some quick links to manage your store and products." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:288 +msgid "low in stock" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:287 +msgid "%s product" +msgid_plural "%s products" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-dashboard-widgets.php:280 +msgid "received" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:279 +#: includes/admin/class-mp-dashboard-widgets.php:283 +msgid "%s order" +msgid_plural "%s orders" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-dashboard-widgets.php:276 +msgid "Stock & Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:261 +msgid "Last 30 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:256 +msgid "Last 7 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:251 +msgid "Yesterday" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:248 +#: includes/admin/class-mp-dashboard-widgets.php:253 +#: includes/admin/class-mp-dashboard-widgets.php:258 +#: includes/admin/class-mp-dashboard-widgets.php:263 +msgid " Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:246 +msgid "Today" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:241 +msgid "Welcome back! Here's a quick summary of your store's performance." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:196 +#: includes/admin/class-mp-products-admin.php:895 +msgid "No products out of stock." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:136 +#: includes/admin/class-mp-products-admin.php:839 +msgid "Stock Level" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:135 +#: includes/admin/class-mp-products-admin.php:838 +msgid "Variation" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:121 +msgid "Low Stock (%s)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:116 +msgid "Store Management" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:115 +msgid "Store Reports" +msgstr "" + +#: includes/admin/class-mp-ajax.php:579 +#: includes/admin/class-mp-orders-admin.php:520 +#: includes/common/payment-gateways/2checkout.php:370 +#: includes/common/payment-gateways/authorizenet-aim.php:264 +#: includes/common/payment-gateways/mollie.php:93 +#: includes/common/payment-gateways/paymill.php:196 +#: includes/common/payment-gateways/pin.php:190 +#: includes/common/payment-gateways/skrill.php:157 +#: includes/common/payment-gateways/skrill.php:168 +#: includes/common/payment-gateways/wepay.php:143 +#: includes/public/class-mp-checkout.php:404 +msgid "Select One" +msgstr "" + +#: includes/admin/class-mp-ajax.php:511 +msgid "Oops... we could not locate any orders by that ID. Please double check your order ID and try again." +msgstr "" + +#: includes/admin/class-mp-ajax.php:482 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:166 +#: includes/multisite/class-mp-admin-multisite.php:584 +msgid "Edit Page" +msgstr "" + +#: includes/admin/class-mp-ajax.php:346 +msgid "Cancel " +msgstr "" + +#: includes/admin/class-mp-ajax.php:345 +msgid "Save " +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "Edit Description" +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "HTML Markup" +msgstr "" + +#: includes/admin/class-mp-ajax.php:333 +msgid "Plain Text Only" +msgstr "" + +#: includes/admin/class-mp-ajax.php:329 +msgid "Additional Content / Information for this Variation" +msgstr "" + +#: includes/admin/class-mp-ajax.php:317 +#: includes/admin/class-mp-products-admin.php:1762 +msgid "Allow this product to be purchased even if it's out of stock" +msgstr "" + +#: includes/admin/class-mp-ajax.php:313 +#: includes/admin/class-mp-products-admin.php:1711 +msgid "Track Product Inventory" +msgstr "" + +#: includes/admin/class-mp-ajax.php:300 +msgid "Extra Shipping Cost (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:295 +msgid "Ounces:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:294 +msgid "Pounds:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:292 +msgid "Kilograms:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:287 +#: includes/admin/class-mp-products-admin.php:1649 +msgid "Charge Shipping" +msgstr "" + +#: includes/admin/class-mp-ajax.php:273 +#: includes/admin/class-mp-products-admin.php:1623 +#: includes/admin/store-settings/class-mp-store-settings-general.php:454 +msgid "Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:272 +#: includes/admin/class-mp-products-admin.php:1622 +#: includes/admin/class-mp-products-admin.php:2090 +#: includes/admin/class-mp-products-admin.php:2408 +msgid "Special Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:271 +#: includes/admin/class-mp-products-admin.php:1625 +#: includes/admin/class-mp-products-admin.php:2092 +msgid "If you would like this product to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-ajax.php:268 +#: includes/admin/class-mp-products-admin.php:1599 +msgid "Charge Taxes (Special Rate)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:256 +#: includes/admin/class-mp-products-admin.php:1593 +#: includes/admin/class-mp-products-admin.php:2077 +#: includes/admin/class-mp-products-admin.php:2348 +msgid "End Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:255 +#: includes/admin/class-mp-products-admin.php:1589 +#: includes/admin/class-mp-products-admin.php:2072 +msgid "Start Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:1568 +msgid "Enter Sale Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:250 +#: includes/admin/class-mp-products-admin.php:1547 +msgid "Set up a Sale for this Product" +msgstr "" + +#: includes/admin/class-mp-ajax.php:206 includes/admin/class-mp-ajax.php:223 +msgid "Enter " +msgstr "" + +#: includes/admin/class-mp-ajax.php:193 +msgid "Browse" +msgstr "" + +#: includes/admin/class-mp-ajax.php:184 includes/admin/class-mp-ajax.php:192 +msgid "http://" +msgstr "" + +#: includes/admin/class-mp-ajax.php:183 +msgid "External Product URL" +msgstr "" + +#: includes/admin/class-mp-ajax.php:237 +msgid "Limit Per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:177 +#: includes/admin/class-mp-products-admin.php:1520 +msgid "Enter Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:174 +#: includes/admin/class-mp-products-admin.php:1512 +msgid "Enter SKU" +msgstr "" + +#: includes/admin/class-mp-ajax.php:173 +msgid "(Stock Keeping Unit)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:158 +msgid "Remove Image" +msgstr "" + +#: includes/admin/class-mp-ajax.php:74 +msgid "Variation Draft" +msgstr "" + +#: includes/admin/class-mp-admin.php:296 +#: includes/admin/class-mp-dashboard-widgets.php:70 +msgid "Please wait...saving in progress..." +msgstr "" + +#: includes/admin/class-mp-admin.php:295 +#: includes/admin/class-mp-dashboard-widgets.php:69 +msgid "Input is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:294 +#: includes/admin/class-mp-dashboard-widgets.php:68 +msgid "Valid number is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:292 +#: includes/admin/class-mp-dashboard-widgets.php:66 +msgid "Delete %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:291 +#: includes/admin/class-mp-dashboard-widgets.php:65 +msgid "Delete %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:290 +#: includes/admin/class-mp-dashboard-widgets.php:64 +msgid "Update inventory for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:289 +#: includes/admin/class-mp-dashboard-widgets.php:63 +msgid "Update inventory for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:288 +#: includes/admin/class-mp-dashboard-widgets.php:62 +msgid "Update price for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:287 +#: includes/admin/class-mp-dashboard-widgets.php:61 +msgid "Update prices for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:285 +#: includes/admin/class-mp-dashboard-widgets.php:59 +msgid "Creating variations, please wait..." +msgstr "" + +#: includes/admin/class-mp-admin.php:96 +msgid "The following payment gateways have been deprecated, Cubepoints, Bitpay, iDEAL, Skrill, Google Checkout. If you were using one of these gateways, please setup a new payment gateway here." +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:61 +msgid "Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:71 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:71 +#: includes/common/class-mp-gdpr.php:399 includes/common/class-mp-order.php:872 +#: includes/common/helpers.php:164 includes/public/class-mp-checkout.php:1434 +msgid "Shipping Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:66 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:66 +#: includes/common/class-mp-gdpr.php:392 includes/common/class-mp-order.php:864 +#: includes/common/helpers.php:163 includes/public/class-mp-checkout.php:1427 +msgid "Billing Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:61 +msgid "Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:258 +msgid "Shipping Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:256 +msgid "Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:235 +msgid "Payment Method: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:79 +msgid "The dir %s not exist or not writeable" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:239 +msgid "Shop header/logo" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:233 +msgid "Choose a template" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:226 +msgid "Template Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:221 +msgid "Disable automatic creation/attachment of invoices when only free products are ordered" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:220 +msgid "Disable for free products" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:216 +msgid "Attach invoice to" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:214 +msgid "Customer Order Shipped email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:212 +msgid "Customer New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:211 +msgid "Admin New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:206 +msgid "download" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:205 +msgid "How do you want to view the PDF?" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:203 +msgid "Open the PDF in a new browser tab/window" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:202 +msgid "Download the PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:158 +msgid "Export PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:103 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:106 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:109 +msgid "You can't download this order invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:76 +msgid "Invalid Request" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:72 +msgid "Order not exist!" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:67 +msgid "Invalid ID" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1293 +msgid "Coupon added successfully" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1292 +msgid "Please enter a code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1247 +msgid "No end" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1200 +msgid "Valid Dates" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1195 +msgid "Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1027 +msgid "No Coupons found in Trash" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1026 +msgid "No Coupons Found" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1025 +msgid "Search Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1024 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1028 +msgid "View Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1023 +msgid "New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1020 +msgid "Create New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1017 +msgid "Manage Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1002 +msgid "An error occurred while removing your coupon. Please try again." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:964 +msgid "Coupon can't be applied to this cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:951 +msgid "Invalid coupon code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:794 +msgid "Help Text" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:789 +msgid "Form Title" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:783 +msgid "Coupons Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:764 +msgid "End Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:758 +msgid "Does coupon have an end date?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:696 +msgid "Select Products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:688 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:723 +#: includes/common/payment-gateways/paypal-payflow.php:402 +msgid "User" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:638 +msgid "Max Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:636 +msgid "Enter the maximum number of times this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:623 +msgid "Leave blank to allow all other coupons." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:622 +msgid "Select combinable coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:618 +msgid "Can this coupon be combined with other coupons?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:613 +msgid "Apply to each applicable item once per cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:612 +msgid "Apply to each applicable item and quantity ordered" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:609 +msgid "How should the discount amount be applied?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:605 +msgid "Discount Amount" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:604 +msgid "Value must either be a decimal number or a percentage" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:602 +msgid "If you would like to give a percentage-based discount make sure to include the percent (%) symbol. Otherwise, the discount will be applied as a fixed amount off." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:595 +msgid "Letters and Numbers only." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:589 +msgid "Coupon Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:447 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:795 +msgid "More than one code? That's OK! Just be sure to enter one at a time." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:444 +msgid "Apply Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:314 +msgid "Coupon Discounts" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:89 +msgid "1 add-on disabled" +msgid_plural "%s add-ons disabled" +msgstr[0] "" +msgstr[1] "" + +#: includes/addons/class-mp-addons-list-table.php:84 +msgid "1 add-on enabled" +msgid_plural "%s add-ons enabled" +msgstr[0] "" +msgstr[1] "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Disabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Enable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:129 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:67 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:135 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:168 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:202 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:263 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:296 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:330 +msgid "Enabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +msgid "Disable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:34 +msgid "Disable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:33 +msgid "Enable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:21 +#: includes/admin/class-mp-products-admin.php:2280 +#: includes/common/class-mp-product.php:2916 +msgid "Description" +msgstr "" + +#: includes/common/template-functions.php:2889 +#: includes/multisite/template-functions.php:407 +msgid "Popularity (Least Popular - Most Popular)" +msgstr "" + +#: includes/common/template-functions.php:2888 +#: includes/multisite/template-functions.php:406 +msgid "Popularity (Most Popular - Least Popular)" +msgstr "" + +#: includes/common/template-functions.php:2885 +#: includes/multisite/template-functions.php:403 +msgid "Name (Z-A)" +msgstr "" + +#: includes/common/template-functions.php:2884 +#: includes/multisite/template-functions.php:402 +msgid "Name (A-Z)" +msgstr "" + +#: includes/common/template-functions.php:2883 +#: includes/multisite/template-functions.php:401 +msgid "Release Date (Oldest to Latest)" +msgstr "" + +#: includes/common/template-functions.php:2882 +#: includes/multisite/template-functions.php:400 +msgid "Release Date (Latest to Oldest)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:284 +msgid "paid" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "One Time Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Customer Counter" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Daily Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:182 +msgid "For the most accurate rates, please select the appropriate pick up type for your business." +msgstr "" + +#: includes/admin/class-mp-admin.php:374 +msgid "Page saved." +msgstr "" + +#: includes/admin/class-mp-admin.php:370 +msgid "Custom field deleted." +msgstr "" + +#: includes/admin/class-mp-admin.php:369 +msgid "Custom field updated." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:541 +msgid "%s - The payment request expired, - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:536 +msgid "%s - The payment not credited in merchants bitpay account, action required. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:252 +msgid "If enabled, you will recieve an email for each status update on payment." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:240 +msgid "Speed at which the bitcoin transaction registers as \"confirmed\" to the store. This overrides your merchant settings on the Bitpay website." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:238 +msgid "Transaction Speed" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:244 +msgid "Low" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:243 +msgid "Medium" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:242 +msgid "High" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:177 +#: includes/common/payment-gateways/_bitpay.php:517 +#: includes/common/payment-gateways/_bitpay.php:522 +msgid "%s - The payment request is under process. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:175 +#: includes/common/payment-gateways/_bitpay.php:527 +msgid "%s - The payment request has been processed - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:150 +#: includes/common/payment-gateways/_bitpay.php:294 +msgid "Incorrect order invoice, please contact site administrator" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:141 +msgid "We could not verify order invoice details, please try again or contact site administrator for help" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:81 +msgid "Login to Simplify to get your API credentials. Enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:605 +#: includes/common/payment-gateways/paypal-express.php:647 +msgid "Express Checkout is PayPal's premier checkout solution, which streamlines the checkout process for buyers and keeps them on your site after making a purchase. Unlike PayPal Pro, there are no additional fees to use Express Checkout, though you may need to do a free upgrade to a business account. More Info »" +msgstr "" + +#. Plugin URI of the plugin/theme +msgid "https://premium.wpmudev.org/project/e-commerce/" +msgstr "" + +#. Author of the plugin/theme +msgid "WPMU DEV" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:541 +#: includes/admin/class-mp-orders-admin.php:543 +msgid "Tracking Number" +msgstr "" + +#: includes/common/class-mp-order.php:805 +#: includes/common/payment-gateways/stripe.php:336 +#: includes/public/class-mp-checkout.php:402 +msgid "Country" +msgstr "" + +#: includes/common/class-mp-order.php:784 +#: includes/common/payment-gateways/stripe.php:338 +msgid "City" +msgstr "" + +#: includes/common/class-mp-order.php:780 +msgid "Address 2" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:340 +msgid "Address" +msgstr "" + +#: includes/common/class-mp-cart.php:752 includes/common/class-mp-gdpr.php:378 +msgid "Order Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:360 +msgid "Payment Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:347 +msgid "Transaction ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:207 +msgid "The WePay Card Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:186 +#: includes/common/shipping-modules/mp-fedex.php:283 +msgid "Account ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:179 +msgid "Access Token" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:172 +msgid "Client Secret" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:165 +msgid "Client ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:159 +msgid "You must login to WePay to get your API credentials. Make sure to check \"Tokenize credit cards\" option under \"API Keys\" section of your WePay app." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:154 +msgid "When in live mode it is recommended to use SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:148 +msgid "Donation" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:147 +msgid "Event" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:146 +msgid "Personal" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:145 +msgid "Service" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:144 +msgid "Goods" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:141 +msgid "Choose type of payments" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:140 +msgid "Checkout Type" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:134 +msgid "Staging" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:131 +msgid "Choose STAGING if you have registered the app on stage.wepay.com, or PRODUCTION if you registered on www.wepay.com" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:36 +#: includes/common/payment-gateways/wepay.php:299 +msgid "WePay" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:366 +msgid "Rejected - A payment was rejected." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:360 +msgid "Failed - A payment was rejected due to an error." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:342 +msgid "PayWay balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:298 +msgid "Full path of the cacerts.crt file" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:284 +msgid "User Name" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:277 +msgid "Biller Code" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:273 +msgid "Log Directory" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:266 +msgid "Encryption Key" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:60 +msgid "Your PayWay transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:40 +#: includes/common/payment-gateways/_payway.php:41 +msgid "PayWay" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:862 +msgid "You must register this application with PayPal using your business account login to get an Application ID that will work with your API credentials. A bit of a hassle, but worth it! In the near future we will be looking for ways to simplify this process. Register then submit your application while logged in to the developer portal. Note that you do not need an Application ID for testing in sandbox mode. More Information »" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:818 +#: includes/common/payment-gateways/paypal-chained-payments.php:840 +#: includes/common/payment-gateways/paypal-express.php:705 +msgid "You must login to PayPal and create an API signature to get your credentials. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:378 +msgid "Use Payflow payment gateway to accept online payments using your Internet merchant account and processing network. PayPal Payflow Pro is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:595 +msgid "Tags Only" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:594 +msgid "Category Only" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:795 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:593 +msgid "Category & Tags" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:591 +msgid "Relate Products By" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1008 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:455 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:751 +msgid "Right" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1007 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:454 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:749 +msgid "Left" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1009 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:750 +msgid "Center" +msgstr "" + +#: marketpress.php:273 +msgid "Orders from your e-commerce store." +msgstr "" + +#: marketpress.php:231 +msgid "Products for your e-commerce store." +msgstr "" + +#: marketpress.php:222 +msgid "Edit Product" +msgstr "" + +#. Description of the plugin/theme +msgid "The complete WordPress ecommerce plugin - works perfectly with BuddyPress and Multisite too to create a social marketplace, where you can take a percentage! Activate the plugin, adjust your settings then add some products to your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:272 +msgid "Beside" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:271 +msgid "Above" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:268 +msgid "Pin Count" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:261 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:287 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:318 +msgid "All View" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:260 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:286 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:317 +msgid "Single View" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:259 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:285 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:316 +msgid "Off" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:578 +msgid "Related Product Limit" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:681 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1201 +msgid "Applies To" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:685 +msgid "All Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:487 +msgid "The label shown for the tax line item in the cart. Taxes, VAT, GST, etc." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:485 +msgid "Tax Label" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:81 +msgid "Apply" +msgstr "" + +#: includes/admin/class-mp-admin.php:192 +msgid "MarketPress Instructions" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1954 +#: includes/admin/class-mp-products-admin.php:2194 includes/common/data.php:62 +#: includes/common/helpers.php:150 +msgid "Taxes" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1417 +#: includes/common/class-mp-product.php:2900 +msgid "Related Products" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:282 +#: includes/common/shipping-modules/mp-usps.php:316 +msgid "@ Max" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "(3-5 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "Priority Mail Express International Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:92 +msgid "Priority Mail Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:171 +#: includes/common/shipping-modules/mp-pickup.php:247 +msgid "In Store" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:159 +msgid "Pickup Fee" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:141 +msgid "This option allows your customers to indicate that they will pick-up their order at your place of business." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:60 +#: includes/common/shipping-modules/mp-pickup.php:76 +#: includes/common/shipping-modules/mp-pickup.php:176 +msgid "Pickup Instructions" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:24 +#: includes/common/shipping-modules/mp-pickup.php:254 +msgid "Pickup" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping - 0.00" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:256 +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:440 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:309 +msgid "Your Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:301 +msgid "Station" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:300 +msgid "Request Courier" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:299 +msgid "Drop Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:298 +msgid "Business Service Center" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:297 +msgid "Regular Pickup" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:135 +#: includes/common/shipping-modules/mp-fedex.php:264 +msgid "Production" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:207 +msgid "Simplify Commerce by MasterCard" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:104 +msgid "When in live mode, although it is not required, Simplify recommends you have an SSL certificate." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:183 +#: includes/common/payment-gateways/simplify.php:87 +msgid "Public Key" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:175 +#: includes/common/payment-gateways/simplify.php:94 +msgid "Private Key" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:71 +msgid "Simplify helps merchants to accept online payments from Mastercard, Visa, American Express, Discover, JCB, and Diners Club cards. It's that simple. We offer a merchant account and payment gateway in a single, secure package so you can concentrate on what really matters to your business. Only supports USD currently." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:267 +msgid "%1$s" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:151 +msgid "The Simplify Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/simplify.php:18 +msgid "Simplify" +msgstr "" + +#: includes/common/payment-gateways/pin.php:255 +msgid "%1$s Card %2$s" +msgstr "" + +#: includes/common/payment-gateways/pin.php:211 +msgid "The PIN Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:187 +msgid "Selecting a currency other than currency supported by PIN may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/pin.php:164 +msgid "You must login to PIN to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/pin.php:158 +msgid "When in live mode PIN recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/pin.php:45 +#: includes/common/payment-gateways/pin.php:286 +msgid "PIN" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:830 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:534 +#: includes/common/payment-gateways/paypal-express.php:865 +msgid "The payment is pending" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:235 +msgid "The Paymill Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:169 +msgid "You must login to Paymill to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:45 +#: includes/common/payment-gateways/paymill.php:308 +msgid "Paymill" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:90 +msgid "Invalid cardholder" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:89 +msgid "Card is no longer valid or has expired" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:88 +msgid "Please enter a valid Card CVC" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:87 +msgid "Please choose a valid Expiration Date." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:99 +#: includes/common/payment-gateways/skrill.php:100 +msgid "Skrill (Moneybookers)" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:24 +#: includes/common/shipping-modules/mp-weight-rate.php:292 +msgid "Weight Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:303 +msgid "USPS Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:270 +msgid "USPS Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:264 +msgid "USPS Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:145 +msgid "Flat Rate Large" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:140 +msgid "Flat Rate Medium 2" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:135 +msgid "Flat Rate Medium 1" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:130 +msgid "Flat Rate Small" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:118 +msgid "First Class International Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:114 +msgid "Priority Mail International Small Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:112 +msgid "Priority Mail International Medium Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:110 +msgid "Priority Mail International Large Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:108 +msgid "Priority Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:106 +msgid "Express Mail International Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:104 +msgid "Express Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:98 +msgid "Library Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:96 +msgid "Media Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "First-Class Mail Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:90 +msgid "Priority Mail Small Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:88 +msgid "Priority Mail Medium Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +#: includes/common/shipping-modules/mp-usps.php:88 +#: includes/common/shipping-modules/mp-usps.php:90 +#: includes/common/shipping-modules/mp-usps.php:92 +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "(2-4 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +msgid "Priority Mail Large Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "(2-4) days" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "Priority Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "Express Mail Sunday/Holiday Delivery Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:80 +msgid "Express Mail Flat Rate Boxes Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:78 +msgid "Express Mail Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:76 +msgid "Express Mail Sunday/Holiday Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:74 +msgid "Express Mail Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:72 +#: includes/common/shipping-modules/mp-usps.php:74 +#: includes/common/shipping-modules/mp-usps.php:76 +#: includes/common/shipping-modules/mp-usps.php:78 +#: includes/common/shipping-modules/mp-usps.php:80 +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "(1-2 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:72 +msgid "Express Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:67 +#: includes/common/shipping-modules/mp-usps.php:902 +msgid "USPS" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:534 +msgid "UPS (beta)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:166 +msgid "Required if using negotiated rates" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "Worldwide Express Plus" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "(Scheduled)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "Standard" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "(2-5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "Worldwide Expedited" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:54 +msgid "Worldwide Express" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "2nd Day Air AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "(1 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "Next Day Air Early AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "Next Day Air Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "3 Day Select" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:49 +msgid "Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:48 +msgid "2nd Day Air" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "Next Day Air" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:475 +#: includes/common/shipping-modules/mp-ups.php:43 +msgid "UPS" +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:27 +#: includes/common/shipping-modules/mp-table-rate.php:318 +msgid "Table Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:71 +#: includes/common/shipping-modules/mp-table-quantity.php:77 +msgid "Shipping Cost: " +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:70 +#: includes/common/shipping-modules/mp-table-quantity.php:76 +msgid "If quantity is greater than:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:66 +msgid "Each band must be a higher price than the one above it." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:56 +msgid "Number of Bands:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:53 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Each layer must be a higher quantity than the previous." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:51 +msgid "Table Quantity Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:31 +msgid "Table Quantity" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:135 +#: includes/common/shipping-modules/mp-table-rate.php:174 +#: includes/common/shipping-modules/mp-weight-rate.php:189 +msgid "European Union" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:123 +#: includes/common/shipping-modules/mp-table-rate.php:162 +#: includes/common/shipping-modules/mp-weight-rate.php:177 +msgid "United States" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:111 +#: includes/common/shipping-modules/mp-table-rate.php:151 +#: includes/common/shipping-modules/mp-weight-rate.php:166 +msgid "In Country" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:146 +#: includes/common/shipping-modules/mp-table-rate.php:186 +#: includes/common/shipping-modules/mp-weight-rate.php:201 +msgid "International" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:101 +#: includes/common/shipping-modules/mp-table-rate.php:141 +#: includes/common/shipping-modules/mp-weight-rate.php:156 +msgid "Canada" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:92 +#: includes/common/shipping-modules/mp-table-rate.php:132 +#: includes/common/shipping-modules/mp-weight-rate.php:147 +msgid "Hawaii and Alaska" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:83 +#: includes/common/shipping-modules/mp-table-rate.php:123 +#: includes/common/shipping-modules/mp-weight-rate.php:138 +msgid "Lower 48 States" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:64 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping." +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:25 +#: includes/common/shipping-modules/mp-flat-rate.php:223 +msgid "Flat Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:761 +msgid "FedEx (beta)" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Centimeters" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Inches" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1676 +#: includes/admin/class-mp-setup-wizard.php:547 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:166 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +msgid "Kilograms" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:103 +msgid " %1$s - %2$s" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:358 +msgid "Max Weight per Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:356 +msgid "Box Dimensions" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:354 +msgid "Box Name" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:344 +msgid "Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:343 +msgid "For each box defined enter the maximum weight it can contain." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:341 +msgid "Enter your standard box sizes as LengthxWidthxHeight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:386 +#: includes/common/shipping-modules/mp-ups.php:193 +#: includes/common/shipping-modules/mp-usps.php:234 +#: includes/common/shipping-modules/mp-usps.php:338 +msgid "Standard Boxes and Weight Limits" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:328 +msgid "Handling Charge per Interntional Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:294 +msgid "Handling Charge per Domestic Shipment " +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:388 +#: includes/common/shipping-modules/mp-ups.php:196 +#: includes/common/shipping-modules/mp-usps.php:237 +msgid "Add Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "(Next Day)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +msgid "Europe First International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:62 +msgid "International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:61 +#: includes/common/shipping-modules/mp-fedex.php:62 +#: includes/common/shipping-modules/mp-ups.php:54 +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "(1-3 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:61 +msgid "International First" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "(5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "International Economy" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "(2-7 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "Smart Post" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:55 +#: includes/common/shipping-modules/mp-ups.php:49 +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "(1-5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:55 +msgid "Ground Home Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "(1-7 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "Fedex Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:53 +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "(3 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:53 +msgid "Fedex Express Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +#: includes/common/shipping-modules/mp-ups.php:48 +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "(2 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +msgid "Fedex 2 Day" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "(2 Days am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "Fedex 2 Day AM" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "(1 Day)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +msgid "Standard Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "(1 Day am )" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "Priority Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "(1 Day am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "First Overnight" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:476 +#: includes/common/shipping-modules/mp-fedex.php:31 +msgid "FedEx" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:270 +#: includes/common/payment-gateways/simplify.php:179 +#: includes/common/payment-gateways/stripe.php:365 +msgid "%1$s Card ending in %2$s - Expires %3$s" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:259 +#: includes/common/payment-gateways/pin.php:238 +#: includes/common/payment-gateways/simplify.php:171 +msgid "%s Store Purchase - Order ID: %s, Email: %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:266 +msgid "You must login to Stripe to get your API credentials. You can enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:261 +msgid "When in live mode Stripe recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:311 +msgid "The Stripe Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:263 +#: includes/common/payment-gateways/paymill.php:122 +#: includes/common/payment-gateways/stripe.php:222 +msgid "Card Number" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:86 +msgid "Please enter a valid Credit Card Number." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:45 +#: includes/common/payment-gateways/stripe.php:433 +msgid "Stripe" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:750 +msgid "Sets the background color for the payment page. By default, the color is white." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:745 +msgid "Sets the background color for the header of the payment page. By default, the color is white." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:740 +msgid "Sets the border color around the header of the payment page. The border is a 2-pixel perimeter around the header space, which is 750 pixels wide by 90 pixels high. By default, the color is black." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:735 +msgid "URL for an image you want to appear at the top left of the payment page. The image has a maximum size of 750 pixels wide by 90 pixels high. PayPal recommends that you provide an image that is stored on a secure (https) server. If you do not specify an image, the business name is displayed." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:857 +#: includes/common/payment-gateways/paypal-express.php:1131 +msgid "The payment is pending because it is part of an order that has been authorized but not settled." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:853 +#: includes/common/payment-gateways/paypal-express.php:1127 +msgid "The payment is pending because it has been authorized but not settled. You must capture the funds first." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:847 +#: includes/common/payment-gateways/paypal-express.php:1120 +msgid "You denied the payment when it was marked as pending." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:837 +#: includes/common/payment-gateways/paypal-express.php:1108 +msgid "A reversal has occurred on this transaction due to an unknown reason." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:836 +#: includes/common/payment-gateways/paypal-express.php:1107 +msgid "A reversal has occurred on this transaction because you have given the customer a refund." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:835 +#: includes/common/payment-gateways/paypal-express.php:1106 +msgid "A reversal has occurred on this transaction due to a complaint about the transaction from your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:834 +#: includes/common/payment-gateways/paypal-express.php:1105 +msgid "A reversal has occurred on this transaction due to your customer triggering a money-back guarantee." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:833 +#: includes/common/payment-gateways/paypal-express.php:1104 +msgid "A reversal has occurred on this transaction due to a chargeback by your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:1101 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer:" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:826 +#: includes/common/payment-gateways/paypal-express.php:1097 +msgid "A payment has been accepted." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:818 +#: includes/common/payment-gateways/paypal-express.php:1087 +msgid "The transaction has not terminated, e.g. an authorization may be awaiting completion." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:531 +#: includes/common/payment-gateways/paypal-express.php:810 +#: includes/common/payment-gateways/paypal-express.php:1077 +msgid "The payment has failed. This happens only if the payment was made from your customer's bank account." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:806 +#: includes/common/payment-gateways/paypal-express.php:1072 +msgid "An authorization for this transaction has been voided." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:802 +#: includes/common/payment-gateways/paypal-express.php:1067 +msgid "The authorization period for this payment has been reached." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:798 +#: includes/common/payment-gateways/paypal-express.php:1062 +msgid "A reversal has been canceled; for example, when you win a dispute and the funds for the reversal have been returned to you." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:499 +#: includes/common/payment-gateways/paypal-express.php:1163 +msgid "PayPal Express Checkout" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:798 +msgid "Gateway Settings Page Message" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:725 +msgid "Signature" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:506 +#: includes/common/payment-gateways/eway31.php:533 +#: includes/common/shipping-modules/mp-fedex.php:276 +msgid "API Password" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:773 +msgid "Enter a percentage of all store sales to collect as a fee. Decimals allowed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:757 +msgid "Using PayPal Chained Payments allows you as the multisite network owner to collect a predefined fee or percentage of all sales on network MarketPress stores! This is invisible to the customers who purchase items in a store, and all PayPal fees will be charged to the store owner. To use this option you must create API credentials, and you should make all other gateways unavailable or limited above." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:338 +msgid "Please be aware that we will deduct a ?% fee from the total of each transaction in addition to any fees PayPal may charge you. If for any reason you need to refund a customer for an order, please contact us with a screenshot of the refund receipt in your PayPal history as well as the Transaction ID of our fee deduction so we can issue you a refund. Thank you!" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:698 +#: includes/common/payment-gateways/paypal-express.php:149 +msgid "There was a problem connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:470 +#: includes/common/payment-gateways/paypal-express.php:1053 +msgid "There was a problem verifying the IPN string with PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:310 +msgid "There was a problem connecting to PayPal to check the status of your purchase. Please check the status of your order here »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:539 +#: includes/common/payment-gateways/paypal-chained-payments.php:254 +#: includes/common/payment-gateways/paypal-express.php:1139 +msgid "The payment is pending." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:251 +#: includes/common/payment-gateways/paypal-chained-payments.php:531 +#: includes/common/payment-gateways/paypal-express.php:862 +#: includes/common/payment-gateways/paypal-express.php:1136 +msgid "The payment is pending for an unknown reason. For more information, contact PayPal customer service." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:250 +#: includes/common/payment-gateways/paypal-chained-payments.php:530 +#: includes/common/payment-gateways/paypal-express.php:861 +#: includes/common/payment-gateways/paypal-express.php:1135 +msgid "The payment is pending because you are not yet verified. You must verify your account before you can accept this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:249 +#: includes/common/payment-gateways/paypal-chained-payments.php:529 +#: includes/common/payment-gateways/paypal-express.php:860 +#: includes/common/payment-gateways/paypal-express.php:1134 +msgid "The payment is pending because it was made via credit card and you must upgrade your account to Business or Premier status in order to receive the funds. It can also mean that you have reached the monthly limit for transactions on your account." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:248 +#: includes/common/payment-gateways/paypal-chained-payments.php:528 +#: includes/common/payment-gateways/paypal-express.php:859 +#: includes/common/payment-gateways/paypal-express.php:1133 +msgid "The payment is pending because it was made to an email address that is not yet registered or confirmed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:247 +#: includes/common/payment-gateways/paypal-chained-payments.php:527 +#: includes/common/payment-gateways/paypal-express.php:858 +#: includes/common/payment-gateways/paypal-express.php:1132 +msgid "The payment is pending while it is being reviewed by PayPal for risk." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:246 +#: includes/common/payment-gateways/paypal-chained-payments.php:526 +#: includes/common/payment-gateways/paypal-express.php:856 +#: includes/common/payment-gateways/paypal-express.php:1130 +msgid "You do not have a balance in the currency sent, and you do not have your Payment Receiving Preferences set to automatically convert and accept this payment. You must manually accept or deny this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:245 +#: includes/common/payment-gateways/paypal-chained-payments.php:525 +#: includes/common/payment-gateways/paypal-express.php:855 +#: includes/common/payment-gateways/paypal-express.php:1129 +msgid "The payment is pending because you hold a non-U.S. account and do not have a withdrawal mechanism. You must manually accept or deny this payment from your Account Overview." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:244 +#: includes/common/payment-gateways/paypal-chained-payments.php:524 +#: includes/common/payment-gateways/paypal-express.php:854 +#: includes/common/payment-gateways/paypal-express.php:1128 +msgid "The payment is pending because it was made by an eCheck that has not yet cleared." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:243 +#: includes/common/payment-gateways/paypal-chained-payments.php:523 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:236 +#: includes/common/payment-gateways/paypal-chained-payments.php:516 +msgid "The transaction was rejected by the receiver (you)." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:510 +#: includes/common/payment-gateways/paypal-express.php:843 +#: includes/common/payment-gateways/paypal-express.php:1115 +msgid "You refunded the payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:224 +#: includes/common/payment-gateways/paypal-chained-payments.php:504 +msgid "The transaction is in progress." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:212 +#: includes/common/payment-gateways/paypal-chained-payments.php:491 +#: includes/common/payment-gateways/paypal-express.php:814 +#: includes/common/payment-gateways/paypal-express.php:1082 +msgid "The payment has been partially refunded." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:202 +#: includes/common/payment-gateways/paypal-chained-payments.php:481 +msgid "PayPal balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:177 +msgid "There was a problem connecting to PayPal to setup your purchase. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:122 +msgid "Your PayPal transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:50 +#: includes/common/payment-gateways/paypal-chained-payments.php:53 +#: includes/common/payment-gateways/paypal-chained-payments.php:732 +#: includes/common/payment-gateways/paypal-express.php:500 +#: includes/common/payment-gateways/paypal-express.php:938 +msgid "PayPal" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:48 +#: includes/common/payment-gateways/paypal-chained-payments.php:730 +#: includes/common/payment-gateways/paypal-chained-payments.php:756 +#: includes/common/payment-gateways/paypal-chained-payments.php:873 +msgid "PayPal Chained Payments" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:59 +#: includes/common/payment-gateways/paypal-payflow.php:467 +msgid "PayPal Payflow Pro" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:378 +msgid "Chargeback - A payment was reversed due to a chargeback. The funds have been removed from your account balance and returned to the buyer." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:372 +msgid "Failed - The Credit Card or Direct Debit transaction was declined." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:354 +#: includes/common/payment-gateways/skrill.php:366 +msgid "Cancelled - The payment was cancelled manually by the sender in their online account history or was auto-cancelled after 14 days pending." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:360 +msgid "Pending - The payment is pending. It can take 2-3 days for bank transfers to complete." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:349 +#: includes/common/payment-gateways/skrill.php:354 +msgid "Processed - The payment has been completed, and the funds have been added successfully to your Moneybookers account balance." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:189 +msgid "Shown to the customer on the confirmation screen - the end step of the process - a note, confirmation number, or any other message. Line breaks <br> may be used for longer messages." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:188 +msgid "Confirmation Note (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:183 +msgid "The URL of the logo which you would like to appear at the top of the payment form. The logo must be accessible via HTTPS otherwise it will not be shown. For best integration results we recommend that you use a logo with dimensions up to 200px in width and 50px in height." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:182 +msgid "Logo Image (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:177 +msgid "The name of this store, which will be shown on the gateway. If no value is submitted, the account email will be shown as the recipient of the payment." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:176 +msgid "Merchant Name (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:165 +msgid "Language" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:368 +#: includes/common/payment-gateways/authorizenet-aim.php:262 +#: includes/common/payment-gateways/eway.php:363 +#: includes/common/payment-gateways/eway31.php:471 +#: includes/common/payment-gateways/mollie.php:91 +#: includes/common/payment-gateways/paymill.php:193 +#: includes/common/payment-gateways/paypal-chained-payments.php:356 +#: includes/common/payment-gateways/paypal-express.php:688 +#: includes/common/payment-gateways/paypal-payflow.php:432 +#: includes/common/payment-gateways/pin.php:186 +#: includes/common/payment-gateways/skrill.php:152 +#: includes/common/payment-gateways/stripe.php:288 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:104 +msgid "Currency" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:359 +#: includes/common/payment-gateways/skrill.php:143 +msgid "Secret Word" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:261 +msgid "Order ID:" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:234 +msgid "Complete Checkout" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:204 +msgid "Your Moneybookers transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:155 +msgid "This is the email text to send to those who have made manual payment checkouts. You should include your manual payment instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:257 +#: includes/common/payment-gateways/manual-payments.php:128 +msgid "Record payments manually, such as by Cash, Check, or EFT." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:71 +msgid "Manual/Invoice" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:648 +#: includes/common/payment-gateways/manual-payments.php:35 +#: includes/common/payment-gateways/manual-payments.php:36 +msgid "Manual Payment" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:34 +#: includes/common/payment-gateways/manual-payments.php:163 +msgid "Manual Payments" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:288 +msgid "iDEAL Simulator (for testing)" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:287 +msgid "ABN Amro Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:286 +msgid "Friesland Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:285 +msgid "Rabobank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:284 +msgid "ING Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:279 +msgid "Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:270 +msgid "To make it easier to pay for online products and services, the Dutch banking community has developed the iDEAL online payment method. iDEAL allows online payments to be made using online banking in EUR only." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:247 +#: includes/common/payment-gateways/_payway.php:199 +#: includes/common/payment-gateways/manual-payments.php:68 +msgid "Invoiced" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1016 +msgid "Coupon" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:77 +#: includes/common/payment-gateways/_ideal.php:250 +#: includes/common/payment-gateways/_payway.php:202 +msgid "iDEAL" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:76 +msgid "iDEAL (beta)" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:327 +msgid "Merchant Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:293 +#: includes/common/payment-gateways/_payway.php:302 +#: includes/common/payment-gateways/payfast.php:324 +msgid "Merchant ID" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:462 +msgid "eWay Rapid 3.0 Payments lets merchants recieve credit card payments through eWay without need for users to leave the shop. Note this gateway requires a valid SSL certificate configured for this site." +msgstr "" + +#: includes/common/payment-gateways/eway.php:452 +msgid "There was a problem connecting to eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/eway.php:432 +#: includes/common/payment-gateways/eway.php:437 +msgid "The url of the image can be hosted on your website and pass the secure https:// path of the image to be displayed at the top of the website. This is the second image block on the webpage and is restricted to 960px X 65px. A default secure image is used if none is supplied." +msgstr "" + +#: includes/common/payment-gateways/eway.php:431 +#: includes/common/payment-gateways/eway.php:436 +msgid "Company Logo (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:427 +msgid "The page footer text can be customised and populated below the customer's order details. Useful for contact information." +msgstr "" + +#: includes/common/payment-gateways/eway.php:426 +msgid "Page Footer (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:421 +msgid "Page Description (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:417 +#: includes/common/payment-gateways/eway.php:422 +msgid "This value is used to populate the browsers title bar at the top of the screen." +msgstr "" + +#: includes/common/payment-gateways/eway.php:416 +msgid "Page Title (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:412 +msgid "This will be displayed as the company the customer is purchasing from, including this is highly recommended." +msgstr "" + +#: includes/common/payment-gateways/eway.php:411 +msgid "Company Name" +msgstr "" + +#: includes/common/payment-gateways/eway.php:394 +msgid "Customer ID" +msgstr "" + +#: includes/common/payment-gateways/eway.php:381 +#: includes/common/payment-gateways/eway31.php:488 +msgid "Live API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway.php:371 +#: includes/common/payment-gateways/eway31.php:479 +msgid "Gateway Mode" +msgstr "" + +#: includes/common/payment-gateways/eway.php:354 +msgid "The Hosted Page is a webpage hosted on eWAY's side eliminating the need for merchants to capture, transmit or store credit card numbers. At the checkout time the merchant automatically redirects the customer to the Hosted Page where they would enter their details and have the transaction processed. Upon completion of the transaction the customer is redirected back to the MarketPress checkout confirmation page." +msgstr "" + +#: includes/common/payment-gateways/eway.php:314 +msgid "There was a problem with your credit card information: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:300 +msgid "Paid - The card has been processed - %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:253 +msgid "There was a problem setting up the transaction with eWay: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:245 +#: includes/common/payment-gateways/eway.php:289 +msgid "There was a problem parsing the response from eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:159 +#: includes/common/payment-gateways/eway.php:189 +#: includes/common/payment-gateways/paypal-chained-payments.php:634 +#: includes/common/payment-gateways/paypal-express.php:322 +#: includes/common/payment-gateways/paypal-express.php:473 +msgid "%s Store Purchase - Order ID: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:147 +#: includes/common/payment-gateways/eway.php:462 +msgid "eWay Shared Payments" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:214 +msgid "This is the email text to send to those who have made CubePoints checkouts. You should include your CubePoints instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:212 +#: includes/common/payment-gateways/free_orders.php:188 +#: includes/common/payment-gateways/manual-payments.php:154 +msgid "Order Confirmation Email" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:207 +#: includes/common/payment-gateways/manual-payments.php:149 +msgid "Confirmation User Instructions" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:202 +#: includes/common/payment-gateways/manual-payments.php:144 +msgid "User Instructions" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:198 +#: includes/common/payment-gateways/free_orders.php:170 +#: includes/common/payment-gateways/manual-payments.php:139 +msgid "Enter a public name for this payment method that is displayed to users - No HTML" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:532 +#: includes/common/payment-gateways/_cubepoints.php:196 +#: includes/common/payment-gateways/free_orders.php:169 +#: includes/common/payment-gateways/manual-payments.php:138 +msgid "Method Name" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:187 +msgid "Accept CubePoints as payment(requires the CubePoints plugin)." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:140 +msgid "Sorry, but you do not appear to have enough points to complete this purchase!" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:124 +msgid "%s Store Purchase" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:79 +#: includes/common/payment-gateways/_cubepoints.php:171 +msgid "Your current points: " +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:133 +#: includes/common/payment-gateways/_cubepoints.php:197 +msgid "CubePoints" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:344 +msgid "Authorize.net AIM Checkout" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:331 +msgid "Custom API URL" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:332 +msgid "Many other gateways have Authorize.net API emulators. To use one of these gateways input their API post url here." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:322 +msgid "Request a delimited response from the payment gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:316 +msgid "Security: MD5 Hash" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:317 +msgid "The payment gateway generated MD5 hash value that can be used to authenticate the transaction response. Not needed because responses are returned using an SSL connection." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:306 +msgid "Customer Receipt Email Footer" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:296 +msgid "Customer Receipt Email Header" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:297 +#: includes/common/payment-gateways/paypal-payflow.php:446 +msgid "This text will appear as the header of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:282 +msgid "Encapsulation Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:283 +msgid "Authorize.net default is blank. Otherwise, get this from your credit card processor. If the transactions are going through, but getting strange responses, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:273 +msgid "Optional settings to control advanced options" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:224 +#: includes/common/payment-gateways/authorizenet-aim.php:272 +msgid "Advanced Settings" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:253 +msgid "Transaction Key" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:246 +msgid "Login ID" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:396 +msgid "Gateway Credentials" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:221 +msgid "Authorize.net AIM is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway. USD is the only currency supported by this gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:205 +msgid "There was a problem finalizing your purchase. %s Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:519 +#: includes/common/payment-gateways/paypal-chained-payments.php:218 +#: includes/common/payment-gateways/paypal-chained-payments.php:498 +#: includes/common/payment-gateways/paypal-express.php:822 +#: includes/common/payment-gateways/paypal-express.php:1092 +msgid "The payment has been completed, and the funds have been added successfully to your account balance." +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:233 +msgid "Please enter a valid credit card security code" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:224 +#: includes/public/class-mp-checkout.php:867 +msgid "Please enter a valid credit card number" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:221 +msgid "Please enter your credit card number" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:217 +msgid "Please enter your credit card security code" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:213 +msgid "Please select your credit card expiration date." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:299 +#: includes/common/payment-gateways/authorizenet-aim.php:50 +#: includes/common/payment-gateways/eway.php:148 +#: includes/common/payment-gateways/eway.php:298 +#: includes/common/payment-gateways/eway31.php:267 +#: includes/common/payment-gateways/paymill.php:46 +#: includes/common/payment-gateways/paypal-express.php:972 +#: includes/common/payment-gateways/paypal-payflow.php:60 +#: includes/common/payment-gateways/pin.php:46 +#: includes/common/payment-gateways/simplify.php:19 +#: includes/common/payment-gateways/stripe.php:46 +#: includes/common/payment-gateways/wepay.php:37 +msgid "Credit Card" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:49 +msgid "Authorize.net Checkout" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:156 +#: includes/common/payment-gateways/stripe.php:293 +msgid "Selecting a currency other than that used for your store may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:352 +msgid "Seller ID" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:340 +#: includes/common/payment-gateways/_ideal.php:311 +#: includes/common/payment-gateways/authorizenet-aim.php:234 +#: includes/common/payment-gateways/eway.php:376 +#: includes/common/payment-gateways/payfast.php:315 +#: includes/common/payment-gateways/paypal-chained-payments.php:368 +#: includes/common/payment-gateways/paypal-express.php:699 +#: includes/common/payment-gateways/paypal-payflow.php:391 +msgid "Live" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:339 +#: includes/common/payment-gateways/authorizenet-aim.php:233 +#: includes/common/payment-gateways/eway.php:375 +#: includes/common/payment-gateways/paypal-chained-payments.php:367 +#: includes/common/payment-gateways/paypal-express.php:698 +#: includes/common/payment-gateways/paypal-payflow.php:390 +#: includes/common/shipping-modules/mp-fedex.php:263 +msgid "Sandbox" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:336 +#: includes/common/payment-gateways/_ideal.php:307 +#: includes/common/payment-gateways/authorizenet-aim.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:365 +#: includes/common/payment-gateways/paypal-express.php:695 +#: includes/common/payment-gateways/paypal-payflow.php:387 +#: includes/common/payment-gateways/wepay.php:130 +#: includes/common/shipping-modules/mp-fedex.php:260 +msgid "Mode" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:288 +#: includes/common/payment-gateways/mijireh.php:242 +#: includes/common/payment-gateways/mollie.php:212 +msgid "The order has been received" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:74 +#: includes/common/payment-gateways/2checkout.php:75 +#: includes/common/payment-gateways/2checkout.php:435 +msgid "2Checkout" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:306 +msgid "Confirm" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:218 +#: includes/common/class-mp-cart.php:974 includes/common/class-mp-cart.php:1354 +#: includes/common/template-functions.php:918 +msgid "Checkout" +msgstr "" + +#: includes/common/template-functions.php:207 +msgid "Check Order Status" +msgstr "" + +#: includes/common/template-functions.php:235 +msgid "View Products" +msgstr "" + +#: includes/common/template-functions.php:263 +msgid "Visit Store" +msgstr "" + +#: includes/common/template-functions.php:2912 +#: includes/multisite/template-functions.php:448 +msgid "Order By" +msgstr "" + +#: includes/common/template-functions.php:2887 +#: includes/multisite/template-functions.php:405 +msgid "Price (High to Low)" +msgstr "" + +#: includes/common/template-functions.php:2886 +#: includes/multisite/template-functions.php:404 +msgid "Price (Low to High)" +msgstr "" + +#: includes/common/template-functions.php:2881 +#: includes/multisite/template-functions.php:399 +msgid "Default" +msgstr "" + +#: includes/common/template-functions.php:2858 +msgid "Show All" +msgstr "" + +#: includes/common/class-mp-product.php:2048 +msgid "View Larger Image »" +msgstr "" + +#: includes/common/class-mp-product.php:979 +msgid "Out of Stock" +msgstr "" + +#: includes/common/template-functions.php:148 +msgid "Price: " +msgstr "" + +#: includes/multisite/template-functions.php:833 +msgid "No Tags" +msgstr "" + +#: includes/common/template-functions.php:3162 +msgid "Uncategorized" +msgstr "" + +#: includes/common/class-mp-cart.php:569 includes/common/class-mp-order.php:604 +#: includes/common/helpers.php:115 +msgid "Download" +msgstr "" + +#: includes/common/class-mp-cart.php:1353 +msgid "Empty Cart" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:291 +#: includes/common/payment-gateways/paypal-express.php:718 +#: includes/common/payment-gateways/paypal-payflow.php:423 +#: includes/common/shipping-modules/mp-ups.php:158 +#: includes/public/class-mp-checkout.php:1254 +#: includes/public/class-mp-checkout.php:1383 +msgid "Password" +msgstr "" + +#: includes/common/payment-gateways/eway.php:387 +#: includes/common/payment-gateways/paypal-express.php:711 +#: includes/common/shipping-modules/mp-usps.php:185 +#: includes/public/class-mp-checkout.php:1249 +msgid "Username" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:437 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:790 +msgid "Have a coupon code?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:321 +#: includes/admin/class-mp-orders-admin.php:526 +#: includes/common/class-mp-cart.php:592 +msgid "Remove" +msgstr "" + +#: includes/admin/class-mp-ajax.php:316 +msgid "Quantity:" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2140 +#: includes/admin/class-mp-products-admin.php:2387 +#: includes/common/shipping-modules/class-mp-shipping-api.php:507 +msgid "Extra Shipping Cost" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:403 +msgid "Choose a Shipping Method:" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1691 +#: includes/admin/class-mp-products-admin.php:2131 +#: includes/admin/class-mp-products-admin.php:2378 +#: includes/common/shipping-modules/class-mp-shipping-api.php:228 +msgid "Ounces" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1684 +#: includes/admin/class-mp-products-admin.php:2123 +#: includes/admin/class-mp-products-admin.php:2369 +#: includes/admin/class-mp-setup-wizard.php:546 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:165 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +#: includes/common/shipping-modules/class-mp-shipping-api.php:227 +msgid "Pounds" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:226 +msgid "Product Weight:" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:214 +msgid "Weight (Kilograms)" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:82 +msgid "Number of Categories:" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:72 +msgid "Product Count" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:20 +#: includes/admin/class-mp-product-attributes-admin.php:129 +#: includes/admin/class-mp-product-attributes-list-table.php:22 +#: includes/admin/class-mp-products-admin.php:2216 +#: includes/admin/class-mp-shortcode-builder.php:628 +#: includes/admin/class-mp-shortcode-builder.php:1415 +#: includes/admin/widgets/ms-global-categories.php:70 +#: includes/common/shipping-modules/mp-fedex.php:395 +#: includes/common/shipping-modules/mp-ups.php:202 +#: includes/common/shipping-modules/mp-usps.php:243 +#: includes/public/class-mp-checkout.php:314 +msgid "Name" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:67 +msgid "Order Categories By:" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:24 +#: includes/admin/widgets/ms-global-categories.php:50 +msgid "Global Product Categories" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:15 +msgid "Global Product Category List" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:13 +msgid "Displays a network-wide HTML list of product categories from network MarketPress stores." +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:24 +#: includes/admin/widgets/ms-global-tag-cloud.php:45 +msgid "Global Product Tags" +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:15 +msgid "Global Product Tag Cloud" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:947 +#: includes/admin/widgets/ms-global-product-list.php:173 +msgid "Excerpt" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:169 +msgid "Content To Show:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:140 +msgid "Limit To Product Tag:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:132 +msgid "Limit To Product Category:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:72 +msgid "Global Products" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:16 +msgid "Global Product List" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:14 +msgid "Shows a customizable global list of products from network MarketPress stores." +msgstr "" + +#: includes/common/class-mp-product.php:974 +#: includes/multisite/template-functions.php:731 +msgid "Buy Now »" +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:13 +msgid "Displays global most used product tags in cloud format from network MarketPress stores." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:438 +msgid "Theme Permissions" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:402 +#: includes/multisite/class-mp-admin-multisite.php:448 +msgid "No Access" +msgstr "" + +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:120 +msgid "Pro Site Level" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:401 +#: includes/multisite/class-mp-admin-multisite.php:447 +msgid "All Can Use" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:390 +msgid "Gateway Permissions" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:375 +msgid "Select a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:350 +msgid "Global Gateway" +msgstr "" + +#. Plugin Name of the plugin/theme +msgid "MarketPress" +msgstr "" + +#: includes/admin/widgets/product-tag-cloud.php:7 +msgid "Your most used product tags in cloud format from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/categories.php:79 +msgid "Show hierarchy" +msgstr "" + +#: includes/admin/widgets/categories.php:76 +#: includes/admin/widgets/ms-global-categories.php:92 +msgid "Show product counts" +msgstr "" + +#: includes/admin/widgets/categories.php:73 +msgid "Show as dropdown" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:710 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:736 +#: includes/admin/widgets/categories.php:30 +msgid "Select Category" +msgstr "" + +#: includes/admin/widgets/categories.php:7 +msgid "A list or dropdown of product categories from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/product-list.php:250 +msgid "Show Buy Button" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:183 +#: includes/admin/widgets/product-list.php:244 +msgid "Show Price" +msgstr "" + +#: includes/admin/widgets/product-list.php:241 +msgid "Show Excerpt" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:155 +#: includes/admin/widgets/product-list.php:238 +msgid "Thumbnail Size:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:153 +#: includes/admin/widgets/product-list.php:237 +msgid "Show Thumbnail" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:147 +#: includes/admin/widgets/product-list.php:233 +msgid "Display Settings" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:136 +#: includes/admin/widgets/ms-global-product-list.php:144 +#: includes/admin/widgets/product-list.php:230 +msgid "Enter the Slug" +msgstr "" + +#: includes/admin/widgets/product-list.php:228 +#: includes/common/template-functions.php:894 +msgid "Tag" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:686 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:712 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:739 +#: includes/admin/class-mp-shortcode-builder.php:796 +#: includes/admin/widgets/product-list.php:227 +#: includes/common/template-functions.php:886 +#: includes/common/template-functions.php:2907 +msgid "Category" +msgstr "" + +#: includes/admin/widgets/product-list.php:226 +msgid "No Filter" +msgstr "" + +#: includes/admin/widgets/product-list.php:224 +msgid "Taxonomy Filter:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:108 +#: includes/admin/widgets/product-list.php:209 +msgid "Order Products By:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:101 +#: includes/admin/widgets/product-list.php:206 +msgid "Number of Products:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:98 +#: includes/admin/widgets/product-list.php:204 +msgid "List Settings" +msgstr "" + +#: includes/admin/widgets/product-list.php:177 +msgid "Our Products" +msgstr "" + +#: includes/admin/widgets/product-list.php:144 +#: includes/common/template-functions.php:2070 +#: includes/common/template-functions.php:2347 +#: includes/multisite/template-functions.php:303 +#: includes/multisite/template-functions.php:623 +msgid "No Products" +msgstr "" + +#: includes/admin/widgets/product-list.php:8 +msgid "Product List" +msgstr "" + +#: includes/admin/widgets/product-list.php:7 +msgid "Shows a customizable list of products from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/cart.php:75 includes/admin/widgets/categories.php:82 +#: includes/admin/widgets/product-list.php:253 +#: includes/admin/widgets/product-tag-cloud.php:57 +msgid "Only show on store pages" +msgstr "" + +#: includes/admin/widgets/cart.php:65 +#: includes/admin/widgets/ms-global-product-list.php:92 +#: includes/admin/widgets/product-list.php:200 +msgid "Custom Text:" +msgstr "" + +#: includes/admin/widgets/cart.php:64 includes/admin/widgets/categories.php:69 +#: includes/admin/widgets/ms-global-categories.php:59 +#: includes/admin/widgets/ms-global-product-list.php:87 +#: includes/admin/widgets/ms-global-tag-cloud.php:49 +#: includes/admin/widgets/product-list.php:199 +#: includes/admin/widgets/product-tag-cloud.php:49 +msgid "Title:" +msgstr "" + +#: includes/admin/widgets/cart.php:7 +msgid "Shows dynamic shopping cart contents along with a checkout button for your MarketPress store." +msgstr "" + +#: includes/admin/widgets/product-tag-cloud.php:8 +msgid "Product Tag Cloud" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:539 +#: includes/admin/class-mp-setup-wizard.php:575 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:163 +msgid "Measurement System" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:616 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:149 +msgid "Select Shipping Options" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:596 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:129 +msgid "Calculated Options" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:582 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:115 +msgid "No Shipping" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:110 +msgid "EU" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:109 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:93 +msgid "All" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:92 +msgid "Select:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:185 +msgid "Store Pages" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:223 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:256 +msgid "Order Shipped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:60 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:95 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:128 +#: marketpress.php:266 +msgid "New Order" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:314 +msgid "Email Notifications" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:59 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:200 +msgid "Products List" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:58 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:190 +msgid "Store Base" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:108 +#: includes/admin/class-mp-shortcode-builder.php:635 +#: includes/admin/class-mp-shortcode-builder.php:708 +#: includes/admin/class-mp-shortcode-builder.php:875 +#: includes/admin/class-mp-shortcode-builder.php:1319 +#: includes/admin/class-mp-shortcode-builder.php:1422 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:526 +#: includes/admin/widgets/ms-global-categories.php:78 +#: includes/admin/widgets/ms-global-product-list.php:127 +#: includes/admin/widgets/product-list.php:221 +msgid "Ascending" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:109 +#: includes/admin/class-mp-shortcode-builder.php:636 +#: includes/admin/class-mp-shortcode-builder.php:709 +#: includes/admin/class-mp-shortcode-builder.php:876 +#: includes/admin/class-mp-shortcode-builder.php:1320 +#: includes/admin/class-mp-shortcode-builder.php:1423 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:525 +#: includes/admin/widgets/ms-global-categories.php:75 +#: includes/admin/widgets/ms-global-product-list.php:124 +#: includes/admin/widgets/product-list.php:220 +msgid "Descending" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:637 +#: includes/admin/class-mp-shortcode-builder.php:695 +#: includes/admin/class-mp-shortcode-builder.php:862 +#: includes/admin/class-mp-shortcode-builder.php:1306 +#: includes/admin/class-mp-shortcode-builder.php:1424 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:518 +#: includes/admin/widgets/ms-global-product-list.php:121 +#: includes/admin/widgets/product-list.php:218 +msgid "Random" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:694 +#: includes/admin/class-mp-shortcode-builder.php:861 +#: includes/admin/class-mp-shortcode-builder.php:1305 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:517 +#: includes/admin/widgets/ms-global-product-list.php:119 +#: includes/admin/widgets/product-list.php:216 +msgid "Product Price" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:693 +#: includes/admin/class-mp-shortcode-builder.php:860 +#: includes/admin/class-mp-shortcode-builder.php:1304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:516 +#: includes/admin/widgets/ms-global-product-list.php:117 +#: includes/admin/widgets/product-list.php:215 +msgid "Number of Sales" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:692 +#: includes/admin/class-mp-shortcode-builder.php:859 +#: includes/admin/class-mp-shortcode-builder.php:1303 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:515 +#: includes/admin/widgets/product-list.php:214 +msgid "Product Author" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:691 +#: includes/admin/class-mp-shortcode-builder.php:858 +#: includes/admin/class-mp-shortcode-builder.php:1302 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:514 +#: includes/admin/widgets/product-list.php:213 +msgid "Product ID" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:690 +#: includes/admin/class-mp-shortcode-builder.php:857 +#: includes/admin/class-mp-shortcode-builder.php:1301 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:513 +#: includes/admin/widgets/ms-global-product-list.php:113 +#: includes/admin/widgets/product-list.php:212 +msgid "Publish Date" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:430 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:726 +msgid "Width" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:439 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:735 +msgid "Height" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:88 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:402 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:698 +msgid "Custom" +msgstr "" + +#: includes/common/class-mp-product.php:179 +#: includes/common/class-mp-product.php:992 +#: includes/common/class-mp-product.php:1000 +#: includes/multisite/template-functions.php:579 +msgid "Buy Now" +msgstr "" + +#: includes/common/class-mp-product.php:175 +#: includes/common/class-mp-product.php:990 +#: includes/common/class-mp-product.php:998 +msgid "Add To Cart" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:807 +msgid "Store Style" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1021 +msgid "Edit Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupon.php:580 +#: includes/admin/class-mp-ajax.php:238 +#: includes/admin/class-mp-products-admin.php:1532 +msgid "Unlimited" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1198 +msgid "Remaining Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1197 +msgid "Used" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:752 +#: includes/admin/class-mp-products-admin.php:2343 +msgid "Start Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:598 +msgid "Coupon Code" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:444 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:284 +msgid "Save Changes" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:57 +#: includes/admin/class-mp-shortcode-builder.php:716 +#: includes/admin/class-mp-shortcode-builder.php:727 +#: includes/admin/class-mp-shortcode-builder.php:883 +#: includes/admin/class-mp-shortcode-builder.php:894 +#: includes/admin/class-mp-shortcode-builder.php:946 +#: includes/admin/class-mp-shortcode-builder.php:956 +#: includes/admin/class-mp-shortcode-builder.php:1006 +#: includes/admin/class-mp-shortcode-builder.php:1327 +#: includes/admin/class-mp-shortcode-builder.php:1338 +#: includes/admin/store-settings/class-mp-store-settings-general.php:357 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:270 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:108 +#: includes/admin/widgets/ms-global-product-list.php:172 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:94 +msgid "None" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:352 +msgid "Google Analytics Ecommerce Tracking" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:310 +msgid "This option turns MarketPress into more of a product listing plugin, disabling shopping carts, checkout, and order management. This is useful if you simply want to list items you can buy in a store somewhere else, optionally linking the \"Buy Now\" buttons to an external site. Some examples are a car dealership, or linking to songs/albums in itunes, or linking to products on another site with your own affiliate links." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:304 +msgid "Whether or not customers must be registered and logged in to checkout. (Not recommended: Enabling this can lower conversions)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:258 +msgid "How many times may a customer download a file they have purchased? (It's best to set this higher than one in case they have any problems downloading)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:257 +msgid "Maximum Downloads" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:298 +msgid "This will set the product to draft if inventory of all variations is gone." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:288 +msgid "At what low stock count do you want to be warned for products you have enabled inventory tracking for?" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:208 +#: includes/admin/store-settings/class-mp-store-settings-general.php:287 +msgid "Inventory Warning Threshold" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:282 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:542 +msgid "Miscellaneous Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:429 +#: includes/multisite/class-mp-admin-multisite.php:247 +msgid "Show Decimal in Prices" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:451 +#: includes/admin/store-settings/class-mp-store-settings-general.php:403 +#: includes/multisite/class-mp-admin-multisite.php:221 +msgid "Currency Symbol Position" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:444 +#: includes/admin/store-settings/class-mp-store-settings-general.php:396 +msgid "Store Currency" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:429 +#: includes/admin/store-settings/class-mp-store-settings-general.php:381 +msgid "Currency Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:516 +msgid "Please see your local tax laws. Note if this is enabled and a downloadable only cart, rates will be the default for your base location." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:529 +msgid "Apply Tax to Downloadable Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:498 +msgid "Enabling this option allows you to enter and show all prices inclusive of tax, while still listing the tax total as a line item in shopping carts. Please see your local tax laws." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:497 +msgid "Enter Prices Inclusive of Tax?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:492 +msgid "Please see your local tax laws. Most areas charge tax on shipping fees." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:491 +msgid "Apply Tax To Shipping Fees?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:674 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:565 +#: includes/common/payment-gateways/authorizenet-aim.php:291 +#: includes/common/payment-gateways/authorizenet-aim.php:326 +#: includes/common/payment-gateways/payfast.php:347 +msgid "No" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:675 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:759 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:512 +#: includes/admin/class-mp-setup-wizard.php:518 +#: includes/admin/class-mp-setup-wizard.php:524 +#: includes/admin/class-mp-setup-wizard.php:530 +#: includes/admin/class-mp-setup-wizard.php:564 +#: includes/admin/store-settings/class-mp-store-settings-general.php:232 +#: includes/admin/store-settings/class-mp-store-settings-general.php:299 +#: includes/admin/store-settings/class-mp-store-settings-general.php:305 +#: includes/admin/store-settings/class-mp-store-settings-general.php:311 +#: includes/admin/store-settings/class-mp-store-settings-general.php:317 +#: includes/admin/store-settings/class-mp-store-settings-general.php:328 +#: includes/admin/store-settings/class-mp-store-settings-general.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:341 +#: includes/admin/store-settings/class-mp-store-settings-general.php:348 +#: includes/admin/store-settings/class-mp-store-settings-general.php:367 +#: includes/admin/store-settings/class-mp-store-settings-general.php:493 +#: includes/admin/store-settings/class-mp-store-settings-general.php:499 +#: includes/admin/store-settings/class-mp-store-settings-general.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:556 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:375 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:381 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:387 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:474 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:493 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:532 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:574 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:606 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:664 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:670 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:677 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:683 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:689 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:763 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:774 +#: includes/common/payment-gateways/_bitpay.php:250 +#: includes/common/payment-gateways/_bitpay.php:257 +#: includes/common/payment-gateways/_bitpay.php:264 +#: includes/common/payment-gateways/authorizenet-aim.php:290 +#: includes/common/payment-gateways/authorizenet-aim.php:325 +#: includes/common/payment-gateways/free_orders.php:160 +#: includes/common/payment-gateways/payfast.php:346 +#: includes/common/payment-gateways/paymill.php:162 +#: includes/common/payment-gateways/paypal-payflow.php:441 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-checkbox.php:22 +msgid "Yes" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:492 +#: includes/admin/store-settings/class-mp-store-settings-general.php:472 +msgid "%s Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:467 +#: includes/admin/store-settings/class-mp-store-settings-general.php:449 +msgid "Tax Settings" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:370 +#: includes/admin/store-settings/class-mp-store-settings-general.php:624 +msgid "Base Zip/Postal Code" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:354 +#: includes/admin/store-settings/class-mp-store-settings-general.php:608 +msgid "Base State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:589 +msgid "Base Country" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:582 +msgid "Location Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:195 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:800 +#: includes/multisite/class-mp-admin-multisite.php:172 +msgid "General Settings" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1945 +#: includes/admin/class-mp-products-admin.php:2185 +#: includes/admin/class-mp-store-settings-admin.php:111 +#: includes/admin/class-mp-store-settings-admin.php:266 +msgid "General" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:242 +msgid "Importers" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +#: includes/admin/class-mp-store-settings-admin.php:234 +msgid "Payments" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:313 +#: includes/admin/class-mp-store-settings-admin.php:112 +#: includes/admin/class-mp-store-settings-admin.php:222 +msgid "Presentation" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:916 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1015 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1018 +#: includes/admin/class-mp-dashboard-widgets.php:305 marketpress.php:702 +msgid "Coupons" +msgstr "" + +#: includes/admin/class-mp-admin.php:251 +msgid "Download »" +msgstr "" + +#: includes/admin/class-mp-admin.php:245 +#: includes/admin/class-mp-exporter-orders.php:170 +msgid "All Statuses" +msgstr "" + +#: includes/admin/class-mp-admin.php:209 +#: includes/admin/class-mp-exporter-orders.php:150 +#: includes/admin/class-mp-exporter-orders.php:178 +msgid "Export Orders" +msgstr "" + +#: includes/admin/class-mp-admin.php:228 +msgid "Show all dates" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:947 +msgid "Change Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:287 +msgid "Order Notes" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:478 +msgid "Other" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:205 +msgid "Subtotal" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:84 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:87 +#: includes/admin/class-mp-products-admin.php:1737 +#: includes/common/class-mp-cart.php:1409 +#: includes/common/class-mp-product.php:559 +msgid "Quantity" +msgstr "" + +#: includes/common/helpers.php:93 +msgid "Item" +msgstr "" + +#: includes/common/class-mp-order.php:1050 +msgid "Current Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:297 +msgid "Order Actions" +msgstr "" + +#: includes/common/class-mp-product.php:1084 +msgid "More Info »" +msgstr "" + +#: includes/common/class-mp-product.php:2313 +msgid "Low Product Inventory Notification" +msgstr "" + +#: includes/common/class-mp-order.php:338 includes/common/data.php:154 +msgid "New Order Notification: ORDERID" +msgstr "" + +#: includes/common/helpers.php:259 +msgid "Your payment for this order is complete." +msgstr "" + +#: includes/common/helpers.php:261 +msgid "Your payment for this order is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/helpers.php:256 +msgid "Payment Total:" +msgstr "" + +#: includes/common/helpers.php:253 +msgid "Transaction ID:" +msgstr "" + +#: includes/common/helpers.php:249 +msgid "Payment Type:" +msgstr "" + +#: includes/common/helpers.php:246 +msgid "Payment Method:" +msgstr "" + +#: includes/common/helpers.php:242 +msgid "Order Notes:" +msgstr "" + +#: includes/common/helpers.php:237 +msgid "Special Instructions:" +msgstr "" + +#: includes/common/helpers.php:232 +msgid "Tracking Number:" +msgstr "" + +#: includes/common/helpers.php:223 includes/common/helpers.php:226 +#: includes/common/helpers.php:228 +#: includes/common/shipping-modules/class-mp-shipping-api.php:406 +#: includes/common/shipping-modules/class-mp-shipping-api.php:428 +msgid "Shipping Method:" +msgstr "" + +#: includes/common/helpers.php:168 +msgid "No shipping required for this order." +msgstr "" + +#: includes/common/helpers.php:155 +msgid "Order Total:" +msgstr "" + +#: includes/common/class-mp-order.php:1025 +msgid "Taxes:" +msgstr "" + +#: includes/common/class-mp-order.php:1032 includes/common/helpers.php:144 +msgid "Shipping:" +msgstr "" + +#: includes/public/class-mp-checkout.php:367 +msgid "Street address, P.O. box, company name, c/o" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:314 +msgid "Shipping Info" +msgstr "" + +#: includes/public/class-mp-public.php:740 +msgid "Whoops, there was a problem loading up this file for your download. Please contact us for help." +msgstr "" + +#: includes/public/class-mp-public.php:683 +msgid "Sorry, our records show you've downloaded this file %d out of %d times allowed. Please contact us if you still need help." +msgstr "" + +#: includes/public/class-mp-public.php:634 +msgid "Sorry, your order has been marked as unpaid." +msgstr "" + +#: includes/public/class-mp-public.php:629 +msgid "Sorry, the link is invalid for this download." +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:15 +#: includes/admin/class-mp-products-admin.php:1172 +msgid "Cheatin’ uh?" +msgstr "" + +#: includes/public/class-mp-public.php:407 +#: includes/public/class-mp-short-codes.php:128 +msgid "Please enter a valid email address." +msgstr "" + +#: includes/admin/class-mp-ajax.php:191 +#: includes/admin/class-mp-products-admin.php:1821 +#: includes/admin/class-mp-products-admin.php:2010 +#: includes/admin/class-mp-products-admin.php:2267 +msgid "File URL" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1842 +msgid "External Link" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2177 +msgid "Add Variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:126 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:289 +msgid "Inventory" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:438 +#: includes/admin/class-mp-products-admin.php:578 +#: includes/admin/class-mp-products-admin.php:1552 +#: includes/admin/class-mp-products-admin.php:2053 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:134 +msgid "Sale Price" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "Variation Name" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1931 +msgid "Product Details" +msgstr "" + +#: includes/admin/class-mp-product-attributes-list-table.php:33 +msgid "Delete" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1057 +msgid "Trashed" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:231 +#: includes/admin/class-mp-orders-admin.php:1015 +#: includes/common/class-mp-order.php:1052 includes/common/helpers.php:97 +msgid "Total" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1196 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:210 +#: includes/admin/class-mp-orders-admin.php:1014 +msgid "Discount" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:221 +#: includes/admin/class-mp-orders-admin.php:1013 +#: includes/common/payment-gateways/_ideal.php:148 +#: includes/common/payment-gateways/_payway.php:134 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:108 +msgid "Tax" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:216 +#: includes/admin/class-mp-orders-admin.php:1012 +#: includes/admin/class-mp-products-admin.php:1958 +#: includes/admin/class-mp-products-admin.php:2198 +#: includes/admin/class-mp-store-settings-admin.php:114 +#: includes/admin/class-mp-store-settings-admin.php:230 +#: includes/common/class-mp-cart.php:717 includes/common/helpers.php:168 +#: includes/common/payment-gateways/_ideal.php:137 +#: includes/common/payment-gateways/_payway.php:116 +#: includes/public/class-mp-checkout.php:1304 +msgid "Shipping" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1011 +msgid "Items" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1010 +msgid "From" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:154 +#: includes/admin/class-mp-orders-admin.php:1009 +#: includes/common/class-mp-gdpr.php:370 +msgid "Order Date" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1008 +#: includes/common/class-mp-gdpr.php:366 +#: includes/common/template-functions.php:2134 +msgid "Order ID" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:22 +#: includes/admin/class-mp-orders-admin.php:1007 +msgid "Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1155 +msgid "N/A" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:243 +#: includes/admin/class-mp-products-admin.php:464 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:142 +msgid "Sales" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:463 +msgid "Stock" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:85 +#: includes/admin/class-mp-ajax.php:176 includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:434 +#: includes/admin/class-mp-products-admin.php:462 +#: includes/admin/class-mp-products-admin.php:576 +#: includes/admin/class-mp-products-admin.php:1519 +#: includes/admin/class-mp-products-admin.php:1569 +#: includes/admin/class-mp-products-admin.php:1950 +#: includes/admin/class-mp-products-admin.php:2059 +#: includes/admin/class-mp-products-admin.php:2190 +#: includes/admin/class-mp-products-admin.php:2330 +#: includes/common/class-mp-cart.php:1415 includes/common/helpers.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:130 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:276 +msgid "Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:173 +#: includes/admin/class-mp-products-admin.php:461 +#: includes/admin/class-mp-products-admin.php:1972 +#: includes/admin/class-mp-products-admin.php:2224 +msgid "SKU" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:459 +#: includes/admin/class-mp-products-admin.php:1793 +#: includes/admin/class-mp-products-admin.php:1805 +#: includes/admin/class-mp-products-admin.php:2163 +msgid "Variations" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:83 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:86 +#: includes/admin/class-mp-dashboard-widgets.php:134 +#: includes/admin/class-mp-products-admin.php:458 +#: includes/admin/class-mp-products-admin.php:837 +#: includes/admin/class-mp-shortcode-builder.php:689 +#: includes/admin/class-mp-shortcode-builder.php:856 +#: includes/admin/class-mp-shortcode-builder.php:1300 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:512 +#: includes/admin/widgets/ms-global-product-list.php:115 +#: includes/admin/widgets/product-list.php:211 +msgid "Product Name" +msgstr "" + +#: includes/common/template-functions.php:2575 +msgid "Categorized in " +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:305 +#: includes/common/payment-gateways/free_orders.php:176 +msgid "Payment Information" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:167 +#: includes/admin/class-mp-orders-admin.php:432 +#: includes/admin/class-mp-pages-admin.php:62 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:227 +#: includes/common/class-mp-gdpr.php:374 +#: includes/common/template-functions.php:175 +#: includes/common/template-functions.php:926 +msgid "Order Status" +msgstr "" + +#. translators: %s: orders closed +#: marketpress.php:327 +msgid "Closed (%s)" +msgid_plural "Closed (%s)" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:249 +#: includes/admin/class-mp-orders-admin.php:375 +#: includes/admin/class-mp-orders-admin.php:951 +#: includes/admin/class-mp-orders-admin.php:1053 +#: includes/admin/class-mp-orders-admin.php:1065 +#: includes/common/class-mp-gdpr.php:330 +#: includes/common/class-mp-order.php:1019 marketpress.php:325 +msgid "Closed" +msgstr "" + +#. translators: %s: shipped orders +#: marketpress.php:320 +msgid "Shipped (%s)" +msgid_plural "Shipped (%s)" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:248 +#: includes/admin/class-mp-orders-admin.php:376 +#: includes/admin/class-mp-orders-admin.php:950 +#: includes/admin/class-mp-orders-admin.php:1049 +#: includes/admin/class-mp-orders-admin.php:1064 +#: includes/common/class-mp-gdpr.php:329 +#: includes/common/class-mp-order.php:1002 marketpress.php:318 +msgid "Shipped" +msgstr "" + +#. translators: %s: paid orders +#: marketpress.php:313 +msgid "Paid (%s)" +msgid_plural "Paid (%s)" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:247 +#: includes/admin/class-mp-orders-admin.php:377 +#: includes/admin/class-mp-orders-admin.php:949 +#: includes/admin/class-mp-orders-admin.php:1045 +#: includes/admin/class-mp-orders-admin.php:1063 +#: includes/common/class-mp-gdpr.php:328 +#: includes/common/payment-gateways/2checkout.php:294 +#: includes/common/payment-gateways/_cubepoints.php:130 +#: includes/common/payment-gateways/authorizenet-aim.php:193 +#: includes/common/payment-gateways/free_orders.php:91 +#: includes/common/payment-gateways/mijireh.php:248 +#: includes/common/payment-gateways/paymill.php:273 +#: includes/common/payment-gateways/paypal-express.php:933 +#: includes/common/payment-gateways/paypal-express.php:967 +#: includes/common/payment-gateways/pin.php:258 +#: includes/common/payment-gateways/simplify.php:181 +#: includes/common/payment-gateways/stripe.php:368 +#: includes/common/payment-gateways/wepay.php:269 marketpress.php:311 +msgid "Paid" +msgstr "" + +#. translators: %s: orders received +#: marketpress.php:306 +msgid "Received (%s)" +msgid_plural "Received (%s)" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:246 +#: includes/admin/class-mp-orders-admin.php:378 +#: includes/admin/class-mp-orders-admin.php:1041 +#: includes/admin/class-mp-orders-admin.php:1062 +#: includes/common/class-mp-gdpr.php:327 includes/common/class-mp-order.php:995 +#: includes/common/payment-gateways/payfast.php:244 marketpress.php:304 +msgid "Received" +msgstr "" + +#: marketpress.php:268 +msgid "Search Orders" +msgstr "" + +#: marketpress.php:267 +msgid "View Order" +msgstr "" + +#: marketpress.php:262 +msgid "Order" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:301 +#: includes/admin/class-mp-orders-admin.php:989 marketpress.php:261 +msgid "Orders" +msgstr "" + +#: marketpress.php:228 +msgid "No Products found in Trash" +msgstr "" + +#: marketpress.php:227 +msgid "No Products Found" +msgstr "" + +#: marketpress.php:226 +msgid "Search Products" +msgstr "" + +#: marketpress.php:225 marketpress.php:229 +msgid "View Product" +msgstr "" + +#: marketpress.php:224 +msgid "New Product" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1022 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:258 +#: marketpress.php:223 +msgid "Edit" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1019 +msgid "Create New" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:687 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:698 +#: marketpress.php:217 +msgid "Product" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:307 +#: includes/common/template-functions.php:173 +#: includes/common/template-functions.php:179 +#: includes/common/template-functions.php:902 +#: includes/multisite/template-functions.php:82 marketpress.php:216 +#: marketpress.php:219 +msgid "Products" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:118 +#: includes/admin/widgets/product-tag-cloud.php:46 +#: includes/multisite/class-mp-admin-multisite.php:548 +msgid "Product Tags" +msgstr "" + +#: includes/common/template-functions.php:2906 +#: includes/multisite/template-functions.php:449 +msgid "Product Category" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:117 +#: includes/admin/widgets/categories.php:8 +#: includes/admin/widgets/categories.php:18 +#: includes/multisite/class-mp-admin-multisite.php:539 +msgid "Product Categories" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:332 +#: includes/common/template-functions.php:872 marketpress.php:218 +msgid "Store" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:60 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:209 +#: includes/admin/widgets/cart.php:8 includes/admin/widgets/cart.php:56 +#: includes/common/template-functions.php:174 +#: includes/common/template-functions.php:811 +msgid "Shopping Cart" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:110 +#: includes/admin/class-mp-store-settings-admin.php:218 +msgid "Store Settings" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:128 marketpress.php:607 +msgid "Settings" +msgstr "" + +#: includes/common/data.php:178 includes/common/data.php:190 +msgid "Your Order Has Been Shipped! (ORDERID)" +msgstr "" + +#: includes/common/data.php:159 includes/common/data.php:166 +#: includes/common/data.php:172 +msgid "Your Order Confirmation (ORDERID)" +msgstr "" + +#: includes/common/data.php:148 +msgid "

    Thank you for your order! We appreciate your business, and please come back often to check out our new products.

    " +msgstr "" + +#: includes/common/data.php:147 +msgid "

    You are almost done! Please do a final review of your order to make sure everything is correct then click the \"Confirm Payment\" button.

    " +msgstr "" + +#: includes/common/data.php:145 +msgid "

    Please enter your shipping information in the form below to proceed with your order.

    " +msgstr "" + +#: includes/common/data.php:143 +msgid "

    If you have any questions about your order please do not hesitate to contact us.

    " +msgstr "" + +#: includes/common/data.php:106 +msgid "tag" +msgstr "" + +#: includes/common/data.php:105 +msgid "category" +msgstr "" + +#: includes/common/data.php:104 +msgid "order-status" +msgstr "" + +#: includes/common/data.php:103 +msgid "shopping-cart" +msgstr "" + +#: includes/common/data.php:102 +msgid "products" +msgstr "" + +#. Translators: change default slugs here +#: includes/common/data.php:101 +msgid "store" +msgstr "" \ No newline at end of file diff --git a/languages/mp-fr-ca.mo b/languages/mp-fr-ca.mo new file mode 100644 index 0000000000000000000000000000000000000000..04b19c51bdea311723bcafbf4d2a476882b2d686 GIT binary patch literal 47230 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 literal 0 HcmV?d00001 diff --git a/languages/mp-fr-ca.po b/languages/mp-fr-ca.po new file mode 100644 index 00000000..58b220aa --- /dev/null +++ b/languages/mp-fr-ca.po @@ -0,0 +1,8954 @@ +# Translation of MarketPress in French (Canada) +# This file is distributed under the same license as the MarketPress package. +msgid "" +msgstr "" +"PO-Revision-Date: 2014-11-28 19:25:17+0000\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-Generator: GlotPress/2.3.1\n" +"Language: fr_CA\n" +"Project-Id-Version: MarketPress\n" + +#: includes/public/class-mp-checkout.php:1285 +msgid "By clicking this checkbox you allow the website to process your personal data." +msgstr "" + +#: includes/common/class-mp-gdpr.php:382 +msgid "Order Info" +msgstr "" + +#: includes/common/class-mp-gdpr.php:268 +msgid "Shipping Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:267 +msgid "Shipping Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:266 +msgid "Shipping ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:265 +msgid "Shipping State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:264 +msgid "Shipping City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:263 +msgid "Shipping Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:262 +msgid "Shipping Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:261 +msgid "Shipping Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:260 +msgid "Shipping Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:259 +msgid "Shipping Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:258 +msgid "Shipping First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:254 +msgid "Billing Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:253 +msgid "Billing Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:252 +msgid "Billing ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:251 +msgid "Billing State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:250 +msgid "Billing City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:249 +msgid "Billing Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:248 +msgid "Billing Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:247 +msgid "Billing Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:246 +msgid "Billing Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:245 +msgid "Billing Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:244 +msgid "Billing First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:151 +msgid "Orders Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:139 +msgid "Customer Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:100 includes/common/class-mp-gdpr.php:116 +msgid "MarketPress User Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:81 +msgid "" +"In addition to standard WordPress session cookies, this site might be setting an\n" +"\t\t additional cookie to remember your cart settings. This cookie will last for one year." +msgstr "" + +#: includes/common/class-mp-gdpr.php:80 +msgid "Cookies" +msgstr "" + +#: includes/common/class-mp-gdpr.php:77 +msgid "" +"The following information will be collected in order to process orders: your name,\n" +"\t\t username, email address, avatar and profile URLs, address and phone number. This data can be\n" +"\t\t exported and removed." +msgstr "" + +#: includes/common/class-mp-gdpr.php:76 +msgid "Additional data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:71 +msgid "" +"This site might be using third party services and tools to process payments or/and\n" +"\t\t process shipping data when creating orders on the MarketPress store. These services include payment\n" +"\t\t gateways: 2Checkout, Authorize.net AIM, eWay shared payments, eWay Rapid 3.1 Payments, Mijireh,\n" +"\t\t Mollie, Paymill, PayPal, PIN, Simplify Commerce by MasterCard, Stripe and WePay; shipping gateways:\n" +"\t\t Fedex, UPS, USPS." +msgstr "" + +#: includes/common/class-mp-gdpr.php:70 +msgid "Third parties" +msgstr "" + +#: includes/admin/class-mp-admin.php:403 +msgid "Start creating store pages and products for your online shop here." +msgstr "" + +#: includes/admin/class-mp-admin.php:402 +msgid "Create Online Shop" +msgstr "" + +#: includes/admin/class-mp-admin.php:394 +msgid "Run Setup Wizard" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:234 +msgid "If having problems during invoice generation, add define( 'DOMPDF_ENABLE_HTML5PARSER', true ); to the wp-config.php file." +msgstr "" + +#: includes/public/class-mp-checkout.php:723 +msgid "Invalid Email" +msgstr "" + +#: includes/public/class-mp-checkout.php:721 +#: includes/public/class-mp-checkout.php:729 +msgid "This field is required" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:804 +msgid "This option changes the built-in css styles for store pages. For a custom css style, save your css file with the /* MarketPress Style: Your CSS Theme Name Here */ header line in the \"%s\" folder and it will appear in this list so you may select it. You should select \"None\" if you don't wish to use custom CSS styles or if you are using default theme templates or custom theme templates and css to make your own completely unique store design. For more information on custom theme templates click here »." +msgstr "" + +#: includes/public/class-mp-public.php:421 +#: includes/public/class-mp-short-codes.php:142 +msgid "Please enter a value greater than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:420 +#: includes/public/class-mp-short-codes.php:141 +msgid "Please enter a value less than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:419 +#: includes/public/class-mp-short-codes.php:140 +msgid "Please enter a value between {0} and {1}." +msgstr "" + +#: includes/public/class-mp-public.php:418 +#: includes/public/class-mp-short-codes.php:139 +msgid "Please enter a value between {0} and {1} characters long." +msgstr "" + +#: includes/public/class-mp-public.php:417 +#: includes/public/class-mp-short-codes.php:138 +msgid "Please enter at least {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:416 +#: includes/public/class-mp-short-codes.php:137 +msgid "Please enter no more than {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:415 +#: includes/public/class-mp-short-codes.php:136 +msgid "Please enter a value with a valid extension." +msgstr "" + +#: includes/public/class-mp-public.php:414 +#: includes/public/class-mp-short-codes.php:135 +msgid "Please enter the same value again." +msgstr "" + +#: includes/public/class-mp-public.php:413 +#: includes/public/class-mp-short-codes.php:134 +msgid "Please enter a valid credit card number." +msgstr "" + +#: includes/public/class-mp-public.php:412 +#: includes/public/class-mp-short-codes.php:133 +msgid "Please enter only digits." +msgstr "" + +#: includes/public/class-mp-public.php:411 +#: includes/public/class-mp-short-codes.php:132 +msgid "Please enter a valid number." +msgstr "" + +#: includes/public/class-mp-public.php:410 +#: includes/public/class-mp-short-codes.php:131 +msgid "Please enter a valid date (ISO)." +msgstr "" + +#: includes/public/class-mp-public.php:409 +#: includes/public/class-mp-short-codes.php:130 +msgid "Please enter a valid date." +msgstr "" + +#: includes/public/class-mp-public.php:408 +#: includes/public/class-mp-short-codes.php:129 +msgid "Please enter a valid URL." +msgstr "" + +#: includes/public/class-mp-public.php:406 +#: includes/public/class-mp-short-codes.php:127 +msgid "Please fix this field." +msgstr "" + +#: includes/public/class-mp-checkout.php:1287 +#: includes/public/class-mp-public.php:405 +#: includes/public/class-mp-short-codes.php:126 +msgid "This field is required." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:810 +msgid "None - Without Special CSS-styles" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:809 +msgid "Default - Using Default CSS-styles" +msgstr "" + +#: marketpress.php:739 +msgid "Enable multiple downloads per product" +msgstr "" + +#: marketpress.php:738 +msgid "Multiple Downloads" +msgstr "" + +#: includes/public/class-mp-checkout.php:715 +msgid "Invalid Zip Code" +msgstr "" + +#: includes/common/template-functions.php:2126 +msgid "Guest Email" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:195 +msgid "There was a problem finalizing your purchase. Please re-enter your credit card information and try again" +msgstr "" + +#: includes/common/class-mp-cart.php:565 includes/common/class-mp-order.php:600 +#: includes/common/helpers.php:111 +msgid "Download %1$s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:331 +msgid "Export products to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:328 +msgid "The import process uses the WordPress importer plugin." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:326 +msgid "Import / Export Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:325 +msgid "Export settings to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:324 +msgid "Import configuration" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:320 +msgid "Use the text below to export to a new installation. Or paste in the new configuration to import." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:318 +msgid "Import / Export Settings" +msgstr "" + +#. translators: URL to wp-admin/import.php +#: includes/admin/store-settings/class-mp-store-settings-import.php:266 +msgid "This importer is not installed. Please install importers from the main site." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:261 +msgid "Install Now" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:260 +msgid "Install %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:240 +msgid "Run Importer" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:239 +msgid "Run %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:258 +msgid "Import/Export" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1199 +msgid "Requires Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:737 +msgid "Optionally limit the user to some categories" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:671 +msgid "Should this coupon only be available to logged in users?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:670 +msgid "Require Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:655 +msgid "Mimimum number of products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:653 +msgid "Enter the minimum number of products in the cart that this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:648 +msgid "Can this coupon be limited to a number of products in the cart?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:334 +msgid "Add all values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:265 +msgid "Set as default variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:154 +msgid "Set Default" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:150 +msgid "More Info" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:40 +msgid "MarketPress - Quick Setup" +msgstr "" + +#: includes/public/class-mp-checkout.php:1399 +msgid "Proceed to checkout and create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1241 +#: includes/public/class-mp-checkout.php:1245 +msgid "Register account" +msgstr "" + +#: includes/public/class-mp-checkout.php:1233 +msgid "Register as customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:765 +msgid "

    Oops!

    Looks like you haven't added anything your cart. Let's go shopping!

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:763 +msgid "

    Oops!

    The cart is disabled.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing Information" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:214 +msgid "Global Currency" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:198 +msgid "Global Store Currency" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:507 +msgid "There are no shipping services available for this type of package in your location." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:168 +msgid "Using this USPS Shipping calculator requires requesting an Ecommerce API Username and Password. Get your free set of credentials here ». The password is no longer used for the API, just the username which you should enter below. The USPS test site has not yet been updated and currently doesn't work - you should just request activating your credentials with USPS and go live." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:339 +msgid "ZIP Code" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:334 +msgid "Last name" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:333 +msgid "First name" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:150 +msgid "These are the manual payment instructions to display on the order confirmation screen. TOTAL will be replaced with the order total and ORDERID will be replaced with Order ID." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:240 +msgid "You must login to Authorize.net merchant dashboard to obtain the API login ID and API transaction key. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:327 +msgid "
    1. Set the \"Return Method\" within Site Management to Header Redirect and set the \"Return URL\" to %s
    2. Set your notifications url to %s
    " +msgstr "" + +#: includes/common/data.php:191 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Also, digital downloads included in your order are now ready to be downloaded. Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:185 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order is now available to download! Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:184 +msgid "Your Order Is Ready To Be Downloaded! (ORDERID)" +msgstr "" + +#: includes/common/data.php:179 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:173 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received, your digital goods are ready to be downloaded and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:167 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received and your digital goods are ready to be downloaded. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:160 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +" Your order has been received, and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information: \n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/class-mp-product.php:638 +msgid "You can not add more items to cart." +msgstr "" + +#: includes/common/class-mp-product.php:635 +msgid "You can only add {0} to cart." +msgstr "" + +#: includes/common/class-mp-product.php:625 +msgid "This product has an order limit of %d." +msgstr "" + +#: includes/common/class-mp-order.php:1454 +msgid "Shipped: tracking code: %s" +msgstr "" + +#: includes/common/class-mp-order.php:1000 +#: includes/common/class-mp-order.php:1012 +msgid "Finished" +msgstr "" + +#: includes/common/class-mp-order.php:858 +msgid "Contact Details" +msgstr "" + +#: includes/common/class-mp-order.php:339 includes/common/data.php:155 +msgid "" +"A new order (ORDERID) was created in your store:\n" +"\n" +" ORDERINFOSKU\n" +"\n" +" SHIPPINGINFO\n" +"\n" +" PAYMENTINFO\n" +"\n" +msgstr "\n" + +#: includes/common/class-mp-cart.php:1858 +msgid "Add again" +msgstr "" + +#: includes/common/class-mp-cart.php:1852 +msgid "was removed from Shopping Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1242 +#: includes/public/class-mp-short-codes.php:160 +msgid "Cart update notice: this item has a limit per order or you have reached the stock limit." +msgstr "" + +#: includes/admin/widgets/product-list.php:235 +msgid "Show Only Featured Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:533 +msgid "If enabled, users won't be able to filter products per category and/or to order by release date/name/price." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:531 +msgid "Hide Products Filter?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:353 +msgid "Notification to registration email instead of billing email?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:322 +msgid "Order Shipped - Mixed orders (with both digital and physical products)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:289 +msgid "Order Shipped - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:224 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:194 +msgid "New Order - Mixed" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:161 +msgid "New Order - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:115 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:243 +msgid "Mixed orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:110 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:238 +msgid "Digital downloads orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:105 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:233 +msgid "Physical orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:96 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed.
    For orders placed with manual payment, emails set here will be overriden by the one configured in manual payments settings, under payments settings page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:89 +msgid "Customer Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:47 +msgid "Admin Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:566 +msgid "Only contact details" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:565 +msgid "Full billing info" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:561 +msgid "Details Collection" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:548 +msgid "Digital Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:515 +msgid "Apply Tax to Digital Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:236 +msgid "product (default)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:231 +msgid "If you are experiencing conflicts with other e-commerce plugins change this setting. This will change the internal post type of all your products. Please note that changing this option may break 3rd party themes or plugins." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1203 +msgid "Hide details" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1202 +msgid "Show all changes" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1184 +msgid "Version %s" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1161 +msgid "Current" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1131 +msgid "%s changelog" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:952 +msgid "We did not find any data for this plugin or theme..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:285 +msgid "Activate WPMU DEV Dashboard" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:279 +msgid "Just one more step - activate the WPMU DEV Dashboard plugin and you're all done!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:277 +msgid "Important updates are available for your WPMU DEV plugins/themes. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:273 +msgid "Just one more step to enable updates and support for %s!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:271 +msgid "Important updates are available for %s. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:264 +msgid "activate" +msgstr "" + +#: includes/admin/class-mp-admin.php:398 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:248 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:289 +msgid "Dismiss" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:247 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:288 +msgid "Saving..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:244 +msgid "Install Plugin" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:238 +msgid "Almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:236 +msgid "Important updates are available for your WPMU DEV plugins/themes. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:232 +msgid "%s is almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:230 +msgid "Important updates are available for %s. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:223 +msgid "install" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1428 +msgid "Sets the number of Tags to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1289 +msgid "How many products to display in the product list if \"paginate\" is set to false." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:739 +#: includes/admin/class-mp-shortcode-builder.php:906 +#: includes/admin/class-mp-shortcode-builder.php:1350 +msgid "Grid" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:735 +#: includes/admin/class-mp-shortcode-builder.php:902 +#: includes/admin/class-mp-shortcode-builder.php:1346 +msgid "Products will be displayed as list or grid." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:206 +msgid "Display a cloud or list of your global product tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:205 +msgid "Display a list of your global categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:204 +msgid "Display a list or grid of your global products." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:181 +msgid "Display a list of featured products." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1451 +msgid "Is Featured?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1444 +msgid "Featured Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:581 +#: includes/admin/class-mp-products-admin.php:1580 +msgid "% discount" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:579 +msgid "OR" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:460 +#: includes/admin/class-mp-products-admin.php:586 +#: includes/admin/widgets/product-list.php:217 +msgid "Featured" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:536 +#: includes/admin/class-mp-orders-admin.php:538 +msgid "Tracking Link" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:508 +msgid "Shipping Tax" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:356 +msgid "Shipping Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:352 +msgid "Taxes Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:349 +msgid "Products Total" +msgstr "" + +#: includes/admin/class-mp-ajax.php:366 +msgid "Oops! You entered an invalid username/email and or password." +msgstr "" + +#: includes/admin/class-mp-ajax.php:254 +msgid "Percentage Discount" +msgstr "" + +#: includes/admin/class-mp-ajax.php:234 +msgid "Limit the Amount of Items per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:214 +msgid "Unused Attributes" +msgstr "" + +#: includes/admin/class-mp-admin.php:82 +msgid "Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-admin.php:79 +msgid "MarketPress setup is not complete! Once you've completed this quick setup wizard you'll have a fully working online store - exciting! " +msgstr "" + +#: marketpress.php:263 +msgctxt "mp_order" +msgid "Add New" +msgstr "" + +#: marketpress.php:184 +msgctxt "product_tag" +msgid "Product Tag" +msgstr "" + +#: marketpress.php:183 +msgctxt "product_tag" +msgid "Product Tags" +msgstr "" + +#: marketpress.php:150 +msgctxt "product_category" +msgid "Product Category" +msgstr "" + +#: marketpress.php:149 +msgctxt "product_category" +msgid "Product Categories" +msgstr "" + +#. Author URI of the plugin/theme +msgid "http://premium.wpmudev.org" +msgstr "" + +#: marketpress.php:729 +msgid "Invoice PDF" +msgstr "" + +#: marketpress.php:712 +msgid "Grant access to themes and gateways depending on the user's Pro Site level" +msgstr "" + +#: marketpress.php:711 +msgid "Pro Sites" +msgstr "" + +#: marketpress.php:703 +msgid "Offer and accept coupon codes" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:687 +msgid "Install %s Pages" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:682 +msgid "Welcome to %s – Install pages required by the plugin automatically." +msgstr "" + +#: marketpress.php:668 +msgid "Your pages were created successfully." +msgstr "" + +#: marketpress.php:436 +msgid "Add a Product" +msgstr "" + +#: marketpress.php:271 +msgid "Parent Order" +msgstr "" + +#: marketpress.php:270 +msgid "No orders found in trash" +msgstr "" + +#: marketpress.php:269 +msgid "No orders found" +msgstr "" + +#: marketpress.php:265 +msgid "Edit Order" +msgstr "" + +#: marketpress.php:264 +msgid "Add New Order" +msgstr "" + +#: marketpress.php:220 marketpress.php:221 +msgid "Add New Product" +msgstr "" + +#: marketpress.php:197 +msgid "No product tags found" +msgstr "" + +#: marketpress.php:196 +msgid "Choose from the most used product tags" +msgstr "" + +#: marketpress.php:195 +msgid "Add or remove product tags" +msgstr "" + +#: marketpress.php:194 +msgid "Separate product tags with commas" +msgstr "" + +#: marketpress.php:193 +msgid "Search Product Tags" +msgstr "" + +#: marketpress.php:192 +msgid "Parent Product Tag:" +msgstr "" + +#: marketpress.php:191 +msgid "Parent Product Tag" +msgstr "" + +#: marketpress.php:190 +msgid "New Product Tag Name" +msgstr "" + +#: marketpress.php:189 +msgid "Add New Product Tag" +msgstr "" + +#: marketpress.php:188 +msgid "Update Product Tag" +msgstr "" + +#: marketpress.php:187 +msgid "View Product Tag" +msgstr "" + +#: marketpress.php:186 +msgid "Edit Product Tag" +msgstr "" + +#: marketpress.php:185 +msgid "All Product Tags" +msgstr "" + +#: marketpress.php:163 +msgid "No product categories found" +msgstr "" + +#: marketpress.php:162 +msgid "Choose from the most used product categories" +msgstr "" + +#: marketpress.php:161 +msgid "Add or remove product categories" +msgstr "" + +#: marketpress.php:160 +msgid "Separate product categories with commas" +msgstr "" + +#: marketpress.php:159 +msgid "Search Product Categories" +msgstr "" + +#: marketpress.php:158 +msgid "Parent Product Category:" +msgstr "" + +#: marketpress.php:157 +msgid "Parent Product Category" +msgstr "" + +#: marketpress.php:156 +msgid "New Product Category Name" +msgstr "" + +#: marketpress.php:155 +msgid "Add New Product Category" +msgstr "" + +#: marketpress.php:154 +msgid "Update Product Category" +msgstr "" + +#: marketpress.php:153 +msgid "View Product Category" +msgstr "" + +#: marketpress.php:152 +msgid "Edit Product Category" +msgstr "" + +#: marketpress.php:151 +msgid "All Product Categories" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Please fix the %s1 and then try submitting the form again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Oops! The form contains %s1 which %s2 been highlighted below." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:660 +msgid "have" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:659 +msgid "has" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:651 +msgid "Value must be less than {0}" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:650 +msgid "Please enter only letters and numbers" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:539 +msgid "Due to prolonged inactivity on this page, one or more settings were not saved. Please try again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:535 +msgid "Settings Saved" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-user-select.php:22 +msgid "Select Some Users" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-section.php:18 +msgid "Section Title" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:425 +msgid "Are you sure you want to delete this?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:30 +msgid "Add Row" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-post-select.php:24 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-taxonomy-select.php:22 +msgid "Select Posts" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:210 +msgid "Add Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:129 +msgid "Select the image that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:93 +msgid "Select image(s) that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:79 +msgid "Select the image that you would like to use for this variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:48 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:82 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:68 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:132 +msgid "Select Image" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:31 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:160 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:168 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:19 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:115 +msgid "Select File" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:30 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:18 +msgid "Select the file that you would like to use." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:357 +msgid "Create Variations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:356 +msgid "Add Another Variant" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Insert a value and press ENTER" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "(e.g. White, Grey, Red etc.)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Variation Values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:333 +msgid "Or create new variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "(e.g. Color)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:303 +msgid "You are about to delete selected variants.
    If you want to continue please confirm." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:302 +msgid "Confirmation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:290 +msgid "Insert quantity available. Empty for unlimited." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:281 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:294 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:307 +msgid "Cancel" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:280 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:293 +msgid "Update" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:277 +msgid "Insert the price i.e. 25 or 25.50" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:115 +msgid "Img." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:85 +msgid "Add New Variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:79 +msgid "Delete Variants" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:78 +msgid "Update Prices" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:77 +msgid "Update Inventory" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:76 +msgid "Update Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:75 +msgid "Bulk Actions" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:73 +msgid "Select bulk action" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:196 +msgid "Configure Store" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:195 +msgid "Configure shipping rates, emails and your store's appearance. " +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:190 +msgid "Add Product" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:189 +msgid "Add your first product for sale and get familiar with adding products." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:184 +msgid "Your store is almost ready for its first customers, but first it needs some products. Get started by adding products below, or jump straight into further configuring your store’s settings." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:183 +msgid "Woohoo! Your online store is up and running." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:160 +msgid "Finish Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:124 +msgid "And what metric system do you want to use?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:113 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:142 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:159 +msgid "Back" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:109 +msgid "Do you want to apply tax for your products? You can customize this for each product and variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:105 +msgid "What currency do you want to sell with?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:93 +msgid "And, which countries do you want to sell to?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:89 +msgid "Where is your online store based?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:80 +msgid "Payment Gateway" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:79 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:123 +msgid "Metric System" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:78 +msgid "Currency & Tax" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:77 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:88 +msgid "Locations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:70 +msgid "Choose where you want to sell your stuff and what currency. Easy!" +msgstr "" + +#: includes/public/class-mp-checkout.php:1400 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:58 +msgid "Continue" +msgstr "" + +#: includes/admin/class-mp-admin.php:83 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:53 +msgid "Skip this step, I'll do this manually" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:49 +msgid "Install store pages" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:44 +msgid "Once you've completed this quick setup wizard you'll have a fully working online store - exciting! Start
    by creating the default store pages for the online store such as the cart, checkout and store pages." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:42 +msgid "MarketPress adds a full online store to your website, with heaps of configuration options and addons
    to suit your needs. It's really easy to get going, and only takes a few minutes to setup!" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:41 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:69 +msgid "Welcome to MarketPress - Quick Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-advanced-select.php:23 +msgid "Select Some Options" +msgstr "" + +#: includes/wpmudev-metaboxes/class-wpmudev-field.php:694 +msgid "You must the WPMUDEV_Field::display() method in your form field class" +msgstr "" + +#: includes/public/class-mp-short-codes.php:636 +msgid "Only %s left in stock..." +msgstr "" + +#: includes/public/class-mp-short-codes.php:633 +msgid "Unlimited stock" +msgstr "" + +#: includes/public/class-mp-short-codes.php:430 +msgid "product_id must be defined" +msgstr "" + +#: includes/public/class-mp-checkout.php:1250 +msgid "An account with this username already exists" +msgstr "" + +#: includes/public/class-mp-checkout.php:1394 +msgid "Continue as Guest" +msgstr "" + +#: includes/public/class-mp-checkout.php:1393 +msgid "Proceed to checkout and you'll have an opportunity to create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1392 +#: includes/public/class-mp-checkout.php:1398 +msgid "First-time customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1386 +msgid "Login" +msgstr "" + +#: includes/public/class-mp-checkout.php:1379 +msgid "E-Mail Address/Username" +msgstr "" + +#: includes/public/class-mp-checkout.php:1377 +msgid "Sign in to speed up the checkout process." +msgstr "" + +#: includes/public/class-mp-checkout.php:1376 +msgid "Have an account?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1297 +msgid "Shipping address different than billing?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1184 +msgid "There are no available gateways to process this payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1160 +msgid "Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:1123 +msgid "Oops! An error occurred while processing your payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1051 +msgid "Next Step »" +msgstr "" + +#: includes/public/class-mp-checkout.php:1045 +msgid "« Previous Step" +msgstr "" + +#: includes/public/class-mp-checkout.php:873 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:657 +msgid "error" +msgstr "" + +#: includes/public/class-mp-checkout.php:872 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:658 +msgid "errors" +msgstr "" + +#: includes/public/class-mp-checkout.php:871 +msgid "

    Oops! We found %d %s in the form below.

    Fields that have errors are highlighted in red below. Entering into a field will reveal the actual error that occurred.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:870 +msgid "Please enter a valid first and last name" +msgstr "" + +#: includes/public/class-mp-checkout.php:869 +msgid " Please enter a valid card security code" +msgstr "" + +#: includes/public/class-mp-checkout.php:868 +msgid "Please enter a valid card expiration" +msgstr "" + +#: includes/public/class-mp-checkout.php:773 +msgid "Javascript is required in order to checkout. Please enable Javascript in your browser and then refresh this page." +msgstr "" + +#: includes/public/class-mp-checkout.php:588 +msgid "An unknown error occurred. Please try again." +msgstr "" + +#: includes/public/class-mp-checkout.php:386 +msgid "Town/City" +msgstr "" + +#: includes/public/class-mp-checkout.php:380 +msgid "Apartment, suite, unit, building, floor, etc" +msgstr "" + +#: includes/public/class-mp-checkout.php:376 +msgid "Address Line 2" +msgstr "" + +#: includes/public/class-mp-checkout.php:363 +msgid "Address Line 1" +msgstr "" + +#: includes/common/class-mp-order.php:770 +#: includes/public/class-mp-checkout.php:354 +msgid "Company" +msgstr "" + +#: includes/public/class-mp-checkout.php:330 +msgid "Last" +msgstr "" + +#: includes/public/class-mp-checkout.php:321 +msgid "First" +msgstr "" + +#: includes/public/class-mp-checkout.php:284 +msgid "State/Province" +msgstr "" + +#: includes/public/class-mp-checkout.php:83 +msgid "Review Order/Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing/Shipping Address" +msgstr "" + +#: includes/public/class-mp-checkout.php:80 +msgid "Login/Register" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:530 +msgid "Marketplace" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:523 +msgid "Global Marketplace Pages" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +msgid "Store Network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +#: includes/multisite/class-mp-admin-multisite.php:494 +msgid "Store Network Settings" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:440 +msgid "Set theme access permissions for network stores. For a custom css theme, save your css file with the MarketPress Theme: NAME header in the /marketpress/ui/themes/ folder and it will appear in this list so you may select it." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:361 +msgid "Choose a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:336 +msgid "%d products get indexed" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:285 +msgid "Product Indexer" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:281 +msgid "Please hold on..." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:280 +msgid "Index Products" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:279 +msgid "%d products have been indexed in whole network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:182 +msgid "Enable Global Shopping Cart?" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:178 +msgid "Limit Global Widgets/Shortcodes To Main Blog?" +msgstr "" + +#: includes/common/template-functions.php:2802 +#: includes/multisite/template-functions.php:355 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:97 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:114 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:143 +msgid "Next" +msgstr "" + +#: includes/common/template-functions.php:2801 +#: includes/multisite/template-functions.php:354 +msgid "Prev" +msgstr "" + +#: includes/common/template-functions.php:2597 +msgid "Tagged in " +msgstr "" + +#: includes/common/template-functions.php:2196 +#: includes/common/template-functions.php:2202 +#: includes/common/template-functions.php:2214 +#: includes/common/template-functions.php:2217 +msgid "Oops! We couldn't locate any orders matching that order number. Please verify the order number and try again." +msgstr "" + +#: includes/common/template-functions.php:2138 +msgid "Look Up" +msgstr "" + +#: includes/common/template-functions.php:1423 +msgid "Please choose a shipping method" +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "If you have your order ID you can look it up using the form below." +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "Order Search" +msgstr "" + +#: includes/common/template-functions.php:910 +#: includes/public/class-mp-checkout.php:1440 +msgid "Cart" +msgstr "" + +#: includes/common/template-functions.php:895 +msgid "[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:887 +msgid "[mp_global_categories_list]" +msgstr "" + +#: includes/common/template-functions.php:880 +msgid "" +"Welcome to our market place!\n" +"\n" +"Check out our network of products:\n" +"\n" +"[mp_list_global_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_global_categories_list]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:879 +msgid "Global Store" +msgstr "" + +#: includes/common/template-functions.php:873 +msgid "" +"Welcome to our online store! Feel free to browse around:\n" +"\n" +"[mp_store_navigation]\n" +"\n" +"Check out our most popular products:\n" +"\n" +"[mp_popular_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_list_categories]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_tag_cloud]" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:127 +msgid "If cart weight is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:126 +msgid "Cart Weight" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:222 +msgid "Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:206 +msgid "Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:196 +msgid "Retail Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:195 +msgid "Online Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:193 +msgid "Rates Request Type" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:189 +msgid "Maximum Weight Per Package" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:195 +#: includes/common/shipping-modules/mp-usps.php:236 +msgid "Enter your standard box sizes as LengthxWidthxHeight (e.g. 12x8x6) For each box defined enter the maximum weight it can contain. Note: the shipping prices this plugin calculates are estimates. If they are consistently too low or too high, please check that the list of boxes above and the product weights are accurate and complete." +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:187 +msgid "Handling Charge Per Box Shipped" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:176 +#: includes/common/shipping-modules/mp-ups.php:181 +msgid "Offered Services" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:165 +msgid "Shipper Number" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:151 +msgid "User ID" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:144 +msgid "Developer Kit Access Key" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:140 +msgid "Use Sandbox Mode?" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:123 +msgid "In order to use UPS, you will need a UPS Developer Kit access key and the UPS user ID and password associated with the access key. Set these up for free here. If this information is missing or incorrect, an error will appear during the checkout process and the buyer will not be able to complete the transaction." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:112 +msgid "If cart total is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:111 +msgid "Cart Total" +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:95 +#: includes/common/shipping-modules/mp-weight-rate.php:111 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Don't worry about sorting as this will be done automatically upon saving." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:170 +msgid "Method Title (visible for clients)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:409 +#: includes/common/shipping-modules/mp-ups.php:216 +#: includes/common/shipping-modules/mp-usps.php:251 +msgid "Max Weight (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:402 +#: includes/common/shipping-modules/mp-ups.php:209 +#: includes/common/shipping-modules/mp-usps.php:247 +msgid "Size (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:387 +msgid "Enter your standard box sizes as LengthxWidthxHeight ( 12x8x6 ) For each box defined enter the maximum weight it can contain. Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:361 +#: includes/common/shipping-modules/mp-usps.php:229 +msgid "Handling Charge per International Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:353 +msgid "International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:339 +#: includes/common/shipping-modules/mp-usps.php:213 +msgid "Handling Charge per Domestic Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:331 +msgid "Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:321 +msgid "When checked the customer can chose Residential or Commercial delivery with Residential the default. Unchecked it's only Residential rates." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:320 +msgid "Allow Commercial Delivery?" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:315 +msgid "Fedex 10kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:314 +msgid "Fedex 25kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:313 +msgid "Fedex Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:312 +msgid "Fedex Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:311 +msgid "Fedex Pak" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:310 +msgid "Fedex Tube" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:306 +msgid "Default Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:294 +msgid "Dropoff Type" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:290 +msgid "Meter ID" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:134 +msgid "This is a residential address" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:283 +msgid "There was an error processing your card: \"%s\". Please check your credit card info and try again." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:121 +msgid "Wepay makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept cards directly on your site. You don't need a merchant account or gateway. WePay handles everything including storing cards. Credit cards go directly to WePay's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:385 +msgid "There was an error processing your card - \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:356 +msgid "%s Store Purchase - Order ID - %s, Email - %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:251 +msgid "Stripe makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept Visa, MasterCard, American Express, Discover, JCB, and Diners Club cards directly on your site. You don't need a merchant account or gateway. Stripe handles everything, including storing cards, subscriptions, and direct payouts to your bank account. Credit cards go directly to Stripe's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:192 +msgid "ZMW - Zambian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:191 +msgid "ZAR - South African Rand" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:190 +msgid "YER - Yemeni Rial" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:189 +msgid "XPF - Cfp Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:188 +msgid "XOF - West African Cfa Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:187 +msgid "XCD - East Caribbean Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:186 +msgid "XAF - Central African Cfa Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:185 +msgid "WST - Samoan Tala" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:184 +msgid "VUV - Vanuatu Vatu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:183 +msgid "VND - Vietnamese Đồng" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:182 +msgid "VEF - Venezuelan Bolívar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:181 +msgid "UZS - Uzbekistani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:180 +msgid "UYI - Uruguayan Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:178 +msgid "UGX - Ugandan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:177 +msgid "UAH - Ukrainian Hryvnia" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:176 +msgid "TZS - Tanzanian Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:175 +msgid "TWD - New Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:174 +msgid "TTD - Trinidad and Tobago Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:172 +msgid "TOP - Tongan Paʻanga" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:171 +msgid "TJS - Tajikistani Somoni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:169 +msgid "SZL - Swazi Lilangeni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:168 +msgid "SVC - Salvadoran Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:167 +msgid "STD - São Tomé and Príncipe Dobra" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:166 +msgid "SRD - Surinamese Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:165 +msgid "SOS - Somali Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:164 +msgid "SLL - Sierra Leonean Leone" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:163 +msgid "SHP - Saint Helenian Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:160 +msgid "SCR - Seychellois Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:159 +msgid "SBD - Solomon Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:157 +msgid "RWF - Rwandan Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:156 +msgid "RUB - Russian Ruble" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:155 +msgid "RSD - Serbian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:154 +msgid "RON - Romanian Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:153 +msgid "QAR - Qatari Riyal" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:152 +msgid "PYG - Paraguayan Guaraní*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:151 +msgid "PLN - Polish Złoty" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:150 +msgid "PKR - Pakistani Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:149 +msgid "PHP - Philippine Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:148 +msgid "PGK - Papua New Guinean Kina" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:147 +msgid "PEN - Peruvian Nuevo Sol*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:146 +msgid "PAB - Panamanian Balboa*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:144 +msgid "NPR - Nepalese Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:142 +msgid "NIO - Nicaraguan Córdoba*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:141 +msgid "NGN - Nigerian Naira" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:140 +msgid "NAD - Namibian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:139 +msgid "MZN - Mozambican Metical" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:137 +msgid "MXN - Mexican Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:136 +msgid "MWK - Malawian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:135 +msgid "MVR - Maldivian Rufiyaa" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:134 +msgid "MUR - Mauritian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:133 +msgid "MRO - Mauritanian Ouguiya" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:132 +msgid "MOP - Macanese Pataca" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:131 +msgid "MNT - Mongolian Tögrög" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:130 +msgid "MKD - Macedonian Denar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:129 +msgid "MGA - Malagasy Ariary" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:128 +msgid "MDL - Moldovan Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:126 +msgid "LVL - Latvian Lats" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:124 +msgid "LSL - Lesotho Loti" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:123 +msgid "LRD - Liberian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:122 +msgid "LKR - Sri Lankan Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:121 +msgid "LBP - Lebanese Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:120 +msgid "LAK - Lao Kip*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:119 +msgid "KZT - Kazakhstani Tenge" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:118 +msgid "KYD - Cayman Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:117 +msgid "KRW - South Korean Won" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:116 +msgid "KMF - Comorian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:115 +msgid "KHR - Cambodian Riel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:114 +msgid "KGS - Kyrgyzstani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:113 +msgid "KES - Kenyan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:111 +msgid "JMD - Jamaican Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:110 +msgid "ISK - Icelandic Króna" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:109 +msgid "INR - Indian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:108 +msgid "ILS - Israeli New Sheqel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:107 +msgid "IDR - Indonesian Rupiah" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:105 +msgid "HTG - Haitian Gourde" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:103 +msgid "HNL - Honduran Lempira*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:101 +msgid "GYD - Guyanese Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:100 +msgid "GTQ - Guatemalan Quetzal*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:99 +msgid "GNF - Guinean Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:98 +msgid "GMD - Gambian Dalasi" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:97 +msgid "GIP - Gibraltar Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:96 +msgid "GEL - Georgian Lari" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:94 +msgid "FKP - Falkland Islands Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:93 +msgid "FJD - Fijian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:91 +msgid "ETB - Ethiopian Birr" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:90 +msgid "EGP - Egyptian Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:89 +msgid "EEK - Estonian Kroon*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:88 +msgid "DZD - Algerian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:87 +msgid "DOP - Dominican Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:85 +msgid "DJF - Djiboutian Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:84 +msgid "CZK - Czech Koruna*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:83 +msgid "CVE - Cape Verdean Escudo*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:82 +msgid "CRC - Costa Rican Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:81 +msgid "COP - Colombian Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:80 +msgid "CNY - Chinese Renminbi Yuan" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:79 +msgid "CLP - Chilean Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:77 +msgid "CDF - Congolese Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:76 +msgid "CAD - Canadian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:75 +msgid "BZD - Belize Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:74 +msgid "BWP - Botswana Pula" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:73 +msgid "BSD - Bahamian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:72 +msgid "BRL - Brazilian Real*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:71 +msgid "BOB - Bolivian Boliviano*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:70 +msgid "BND - Brunei Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:69 +msgid "BMD - Bermudian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:68 +msgid "BIF - Burundian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:67 +msgid "BGN - Bulgarian Lev" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:66 +msgid "BDT - Bangladeshi Taka" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:65 +msgid "BBD - Barbadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:64 +msgid "BAM - Bosnia & Herzegovina Convertible Mark" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:63 +msgid "AZN - Azerbaijani Manat" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:62 +msgid "AWG - Aruban Florin" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:61 +msgid "AUD - Australian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:60 +msgid "ARS - Argentine Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:59 +msgid "AOA - Angolan Kwanza*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:58 +msgid "ANG - Netherlands Antillean Gulden" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:57 +msgid "AMD - Armenian Dram" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:56 +msgid "ALL - Albanian Lek" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:55 +msgid "AFN - Afghan Afghani*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:54 +msgid "AED - United Arab Emirates Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:345 +msgid "Skrill balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:327 +msgid "Skrill IPN message received." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:283 +msgid "Skrill" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:278 +msgid "Pending payment" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:144 +msgid "The secret word must match the word submitted in the \"Merchant Tools\" section of your Skrill account." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:134 +msgid "You must use your valid Skrill merchant email. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:133 +msgid "Skrill Email" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:123 +msgid "Resell your inventory via Skrill.com (Moneybookers)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:95 +msgid "ZAR - South-African Rand" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:93 +msgid "TWD - Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:92 +msgid "TRY - New Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:91 +msgid "TND - Tunisian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:90 +msgid "THB - Thailand Baht" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:89 +msgid "SKK - Slovakian Koruna" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:86 +#: includes/common/payment-gateways/stripe.php:158 +msgid "SAR - Saudi Riyal" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:85 +msgid "RSD - Serbian dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:83 +msgid "QAR - Qatari Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:81 +msgid "OMR - Omani Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:80 +msgid "NOK - Norwegian Krone " +msgstr "" + +#: includes/common/payment-gateways/skrill.php:78 +#: includes/common/payment-gateways/stripe.php:138 +msgid "MYR - Malaysian Ringgit" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:77 +#: includes/common/payment-gateways/stripe.php:127 +msgid "MAD - Moroccan Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:74 +msgid "KRW - South-Korean Won" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:72 +msgid "JOD - Jordanian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:70 +msgid "INR - Indian Rupee" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:63 +msgid "EEK - Estonian Kroon" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:56 +msgid "AED - Utd. Arab Emir. Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:52 +msgid "Turkish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:51 +msgid "Swedish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:50 +msgid "Spanish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:49 +msgid "Russian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:48 +msgid "Romainian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:47 +msgid "Polish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:46 +msgid "Italian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:45 +msgid "Greek" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:44 +msgid "German" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:43 +msgid "French" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:42 +msgid "Finnish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:41 +msgid "English" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:40 +msgid "Dutch" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:39 +msgid "Danish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:38 +msgid "Czech" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:37 +msgid "Chinese" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:201 +msgid "There was an error processing your card: %s. Please re-enter your credit card info and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:278 +msgid "
  • There was an error processing your card: \"%s\". Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:274 +msgid "
  • There was an error processing your card. Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:177 +#: includes/common/payment-gateways/stripe.php:279 +msgid "Publishable Key" +msgstr "" + +#: includes/common/payment-gateways/pin.php:163 +msgid "API Credentials?" +msgstr "" + +#: includes/common/payment-gateways/pin.php:147 +msgid "PIN makes it easy to start accepting credit card payments with Australia’s first all-in-one online payment system. Accept all major credit cards directly on your site. Your sales proceeds are deposited to any Australian bank account, no merchant account required." +msgstr "" + +#: includes/common/payment-gateways/pin.php:57 +#: includes/common/payment-gateways/stripe.php:179 +msgid "USD - United States Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:455 +msgid "Email Footer" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:445 +msgid "Email Header" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:416 +msgid "Partner" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:409 +msgid "Vendor" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:852 +#: includes/common/payment-gateways/paypal-express.php:1126 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences\t section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:749 +msgid "Page Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:744 +msgid "Header Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:739 +msgid "Header Border Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:734 +msgid "Header Image" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:680 +msgid "Locale" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:624 +#: includes/common/payment-gateways/paypal-express.php:658 +msgid "Merchant Email" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:645 +msgid "Paypal Express Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:603 +msgid "Paypal Express Network Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:861 +msgid "Application ID (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:854 +msgid "Signature (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:847 +msgid "API Password (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:839 +msgid "API Username (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:832 +msgid "Signature (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:825 +msgid "API Password (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:817 +msgid "API Username (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:799 +msgid "This message is displayed at the top of the gateway settings page to store admins. It's a good place to inform them of your fees or put any sales messages." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:787 +msgid "Please enter your PayPal email address or business ID you want to recieve fees at." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:786 +msgid "PayPal E-mail" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:772 +msgid "Fees to Collect (%)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:375 +#: includes/public/class-mp-checkout.php:341 +msgid "Email Address" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:299 +msgid "Sorry, your order was not completed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:126 +#: includes/common/payment-gateways/paypal-express.php:780 +msgid "You will be redirected to the PayPal site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:90 +#: includes/common/payment-gateways/skrill.php:94 +msgid "USD - U.S. Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:89 +msgid "TRY - Turkish lira" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:88 +#: includes/common/payment-gateways/stripe.php:170 +msgid "THB - Thai Baht" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:87 +msgid "TWD - Taiwan New Dollars" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:86 +#: includes/common/payment-gateways/pin.php:59 +#: includes/common/payment-gateways/skrill.php:88 +#: includes/common/payment-gateways/stripe.php:162 +msgid "SGD - Singapore Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:84 +msgid "RUB - Russian Rubles" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:82 +msgid "PHP - Philippine Pesos" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:81 +#: includes/common/payment-gateways/pin.php:58 +#: includes/common/payment-gateways/skrill.php:79 +#: includes/common/payment-gateways/stripe.php:145 +msgid "NZD - New Zealand Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:79 +msgid "MXN - Mexican Peso" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:78 +msgid "MYR - Malaysian Ringgits" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:77 +#: includes/common/payment-gateways/pin.php:64 +#: includes/common/payment-gateways/skrill.php:73 +#: includes/common/payment-gateways/stripe.php:112 +msgid "JPY - Japanese Yen" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:75 +#: includes/common/payment-gateways/pin.php:63 +#: includes/common/payment-gateways/skrill.php:66 +#: includes/common/payment-gateways/stripe.php:102 +msgid "HKD - Hong Kong Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:73 +msgid "GBP - Pound Sterling" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:68 +#: includes/common/payment-gateways/pin.php:62 +#: includes/common/payment-gateways/skrill.php:59 +msgid "CAD - Canadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:67 +msgid "BRL - Brazilian Real" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:66 +#: includes/common/payment-gateways/pin.php:56 +#: includes/common/payment-gateways/skrill.php:57 +msgid "AUD - Australian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:288 +msgid "There was an error processing your card: \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:163 +msgid "When running on a live site, Paymill recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:161 +#: includes/common/payment-gateways/pin.php:157 +#: includes/common/payment-gateways/simplify.php:103 +#: includes/common/payment-gateways/stripe.php:260 +#: includes/common/payment-gateways/wepay.php:153 +msgid "Force SSL?" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:151 +msgid "Accept Visa, Mastercard, Maestro UK, Discover and Solo cards directly on your site. You don't need a merchant account or gateway. Credit cards go directly to Paymill's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:131 +msgid "CVV2" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:72 +#: includes/common/payment-gateways/pin.php:61 +#: includes/common/payment-gateways/skrill.php:65 +#: includes/common/payment-gateways/stripe.php:95 +msgid "GBP - British Pound" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:71 +#: includes/common/payment-gateways/stripe.php:173 +msgid "TRY - Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:70 +#: includes/common/payment-gateways/paypal-chained-payments.php:85 +#: includes/common/payment-gateways/skrill.php:87 +#: includes/common/payment-gateways/stripe.php:161 +msgid "SEK - Swedish Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:69 +#: includes/common/payment-gateways/skrill.php:84 +msgid "RON - Romanian Leu New" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:68 +#: includes/common/payment-gateways/paypal-chained-payments.php:83 +#: includes/common/payment-gateways/skrill.php:82 +msgid "PLN - Polish Zloty" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:67 +#: includes/common/payment-gateways/paypal-chained-payments.php:80 +#: includes/common/payment-gateways/stripe.php:143 +msgid "NOK - Norwegian Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:66 +#: includes/common/payment-gateways/skrill.php:75 +#: includes/common/payment-gateways/stripe.php:125 +msgid "LTL - Lithuanian Litas" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:65 +#: includes/common/payment-gateways/paypal-chained-payments.php:69 +#: includes/common/payment-gateways/skrill.php:60 +#: includes/common/payment-gateways/stripe.php:78 +msgid "CHF - Swiss Franc" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:64 +#: includes/common/payment-gateways/skrill.php:76 +msgid "LVL - Latvian Lat" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:63 +#: includes/common/payment-gateways/paypal-chained-payments.php:74 +#: includes/common/payment-gateways/skrill.php:69 +msgid "ILS - Israeli Shekel" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:62 +#: includes/common/payment-gateways/skrill.php:71 +msgid "ISK - Iceland Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:61 +#: includes/common/payment-gateways/paypal-chained-payments.php:76 +#: includes/common/payment-gateways/skrill.php:68 +#: includes/common/payment-gateways/stripe.php:106 +msgid "HUF - Hungarian Forint" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:60 +#: includes/common/payment-gateways/paypal-chained-payments.php:71 +#: includes/common/payment-gateways/skrill.php:62 +#: includes/common/payment-gateways/stripe.php:86 +msgid "DKK - Danish Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:59 +#: includes/common/payment-gateways/skrill.php:67 +#: includes/common/payment-gateways/stripe.php:104 +msgid "HRK - Croatian Kuna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:58 +#: includes/common/payment-gateways/paypal-chained-payments.php:70 +#: includes/common/payment-gateways/skrill.php:61 +msgid "CZK - Czech Koruna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:57 +#: includes/common/payment-gateways/skrill.php:58 +msgid "BGN - Bulgarian Leva" +msgstr "" + +#: includes/common/payment-gateways/payflow/class-mp-gateway-worker-payflow.php:123 +msgid "There was an error connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:344 +msgid "This setting will log all PayFast communication to the \"payfast.log\" file." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:342 +msgid "Log Debugging Info?" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:335 +msgid "DO NOT INPUT A VALUE UNLESS YOU HAVE SET ONE IN THE SETTINGS SECTION OF YOUR PAYFAST SETTINGS." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:333 +msgid "PayFast Passphrase" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:323 +msgid "You can find your credentials on your integration page." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:321 +msgid "PayFast Merchant Credentials" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:311 +msgid "PayFast Mode" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:308 +msgid "PayFast is a payments processing service for South Africa. We make it safe for buyers to send money and easy for sellers to receive money. More Info »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:306 +msgid "PayFast Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:285 +msgid "Your payment via PayFast for this order totaling %s is complete. The transaction number is %s." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:278 +msgid "Your payment via PayFast for this order totaling %s is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:124 +msgid "Your PayFast transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:82 +#: includes/common/payment-gateways/payfast.php:83 +msgid "PayFast" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:157 +msgid "API error: - \"%s\"" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:198 +msgid "The payment request is under process" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:140 +msgid "Order: #" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:116 +msgid "You will be redirected to the Mollie site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:73 +msgid "%sMollie%s provides a fully PCI Compliant and secure way to collect payments via iDeal, Credit Card, Bancontact / Mister Cash, SOFORT Banking, Overbooking, Bitcoin, PayPal, paysafecard and AcceptEmail." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:53 +#: includes/common/payment-gateways/mollie.php:54 +#: includes/common/payment-gateways/mollie.php:195 +#: includes/common/payment-gateways/mollie.php:245 +msgid "Mollie" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:50 +#: includes/common/payment-gateways/paymill.php:56 +#: includes/common/payment-gateways/paypal-chained-payments.php:72 +#: includes/common/payment-gateways/pin.php:60 +#: includes/common/payment-gateways/skrill.php:64 +#: includes/common/payment-gateways/stripe.php:92 +msgid "EUR - Euro" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:306 +msgid "Access Key" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:300 +msgid "You must login to the Mijireh.com dashboard to obtain the Access Key." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:299 +msgid "Credentials" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:289 +msgid "Mijireh Checkout provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:269 +msgid "Mijireh Error: " +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:89 +msgid "You will be redirected to the Mijireh.com site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:87 +msgid "Your Mijireh transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:42 +#: includes/common/payment-gateways/mijireh.php:43 +#: includes/common/payment-gateways/mijireh.php:324 +msgid "Mijireh" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:145 +msgid "These are the manual payment instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:189 +msgid "This is the email text to send to those who have made free order checkouts. You should include your free order instructions / information here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:183 +msgid "This is the free order information to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:182 +msgid "Confirmation User Information" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:177 +msgid "This is the information to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:163 +msgid "If enabled, all free orders will be automatically marked as paid." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:159 +msgid "Payment Status" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:149 +msgid "This gateway is automatically activated if order totalling 0 and it can't be disabled" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:35 +#: includes/common/payment-gateways/free_orders.php:36 +#: includes/common/payment-gateways/free_orders.php:89 +msgid "Free Order" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:34 +#: includes/common/payment-gateways/free_orders.php:197 +msgid "Free Orders" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:515 +msgid "Sandbox API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:266 +#: includes/common/payment-gateways/eway31.php:542 +msgid "eWay Rapid 3.1 Payments (beta)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:403 +msgid "Hosted Payment Page Language" +msgstr "" + +#: includes/common/payment-gateways/eway.php:373 +msgid "Note when testing in sandbox mode it will use the default eWay test API credentials. Also, please note that cart total needs to be a whole number (e.g. 10.00) in order to generate a successful transaction, otherwise the transaction will fail." +msgstr "" + +#: includes/common/payment-gateways/eway.php:267 +msgid "You will be redirected to https://www.eway.com.au to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:380 +msgid "You have chosen to checkout using %s. Please confirm your order details and click \"Submit Order\" when finished." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:272 +#: includes/common/payment-gateways/paymill.php:131 +#: includes/common/payment-gateways/stripe.php:231 +msgid "Security Code " +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Enter in MM/YYYY or MM/YY format" +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Expiration" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:321 +msgid "Delim Data" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:307 +#: includes/common/payment-gateways/paypal-payflow.php:456 +msgid "This text will appear as the footer of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:287 +#: includes/common/payment-gateways/paypal-payflow.php:440 +msgid "Email Customer (on success)" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:278 +msgid "Authorize.net default is \",\". Otherwise, get this from your credit card processor. If the transactions are not going through, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:277 +msgid "Delimeter Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:193 +msgid "Held For Review" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:310 +#: includes/common/payment-gateways/payfast.php:314 +msgid "Test" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:300 +#: includes/common/payment-gateways/pin.php:170 +#: includes/common/payment-gateways/stripe.php:272 +msgid "Secret Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:283 +msgid "Select Your Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:97 +msgid "Your payment will be processed by the iDEAL network" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:208 +msgid "These are the CubePoints to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:203 +msgid "These are the CubePoints instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:266 +msgid "If enabled, all API calls will be made to https://test.bitpay.com." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:263 +msgid "Use Test Mode?" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:259 +msgid "If checked, response fron bitpay will be stored in log file, keep it disabled unless required." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:256 +msgid "Enable Debug Log" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:249 +msgid "Full Notifications" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:231 +#: includes/common/payment-gateways/eway31.php:499 +#: includes/common/payment-gateways/eway31.php:526 +#: includes/common/payment-gateways/mollie.php:83 +#: includes/common/shipping-modules/mp-fedex.php:269 +msgid "API Key" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:222 +msgid "You can now accept a payment from any country on Earth, with no risk of fraud. To use Bitpay, you need to signup on Bitpay. \\n After completing the signup process, you can get api keys at Bitpay API key. You can read more about Bitpay at Bitpay API. \\n Bitpay requires SSL(https) for payment notifications to work." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:61 +msgid "You will be redirected to bitpay.com, for bitcoin payment. It is completely safe." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:346 +msgid "You must login to the 2Checkout vendor dashboard to obtain the seller ID and secret word. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:345 +#: includes/common/payment-gateways/authorizenet-aim.php:239 +#: includes/common/payment-gateways/paymill.php:168 +#: includes/common/payment-gateways/paypal-express.php:704 +#: includes/common/payment-gateways/simplify.php:80 +#: includes/common/payment-gateways/stripe.php:265 +#: includes/common/payment-gateways/wepay.php:158 +msgid "API Credentials" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:325 +#: includes/common/payment-gateways/_bitpay.php:220 +#: includes/common/payment-gateways/_cubepoints.php:185 +#: includes/common/payment-gateways/_ideal.php:268 +#: includes/common/payment-gateways/_payway.php:255 +#: includes/common/payment-gateways/authorizenet-aim.php:219 +#: includes/common/payment-gateways/eway.php:352 +#: includes/common/payment-gateways/eway31.php:460 +#: includes/common/payment-gateways/free_orders.php:147 +#: includes/common/payment-gateways/manual-payments.php:126 +#: includes/common/payment-gateways/mijireh.php:287 +#: includes/common/payment-gateways/mollie.php:71 +#: includes/common/payment-gateways/paymill.php:149 +#: includes/common/payment-gateways/paypal-chained-payments.php:344 +#: includes/common/payment-gateways/paypal-payflow.php:376 +#: includes/common/payment-gateways/pin.php:145 +#: includes/common/payment-gateways/simplify.php:69 +#: includes/common/payment-gateways/skrill.php:121 +#: includes/common/payment-gateways/stripe.php:249 +#: includes/common/payment-gateways/wepay.php:119 +#: includes/common/shipping-modules/mp-fedex.php:243 +#: includes/common/shipping-modules/mp-flat-rate.php:63 +#: includes/common/shipping-modules/mp-pickup.php:140 +#: includes/common/shipping-modules/mp-table-rate.php:94 +#: includes/common/shipping-modules/mp-ups.php:122 +#: includes/common/shipping-modules/mp-usps.php:167 +#: includes/common/shipping-modules/mp-weight-rate.php:110 +msgid "%s Settings" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:136 +msgid "You will be redirected to the 2Checkout site to finalize your payment." +msgstr "" + +#: includes/common/helpers.php:169 includes/public/class-mp-checkout.php:1277 +msgid "Billing" +msgstr "" + +#: includes/common/helpers.php:144 +msgid "FREE" +msgstr "" + +#: includes/common/helpers.php:134 +msgid "Coupons:" +msgstr "" + +#: includes/common/helpers.php:95 +msgid "Qty" +msgstr "" + +#: includes/common/helpers.php:94 +msgid "Sku" +msgstr "" + +#: includes/common/data.php:59 +msgid "Zip Code" +msgstr "" + +#: includes/common/class-mp-taxes.php:336 +msgid "Standard Table" +msgstr "" + +#: includes/common/class-mp-product.php:2698 +msgid "Tweet" +msgstr "" + +#: includes/common/class-mp-product.php:2321 +msgid "Notification Preferences: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2320 +msgid "Edit Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2318 +msgid "Link: %s

    " +msgstr "" + +#: includes/common/class-mp-product.php:2317 +msgid "Current Inventory: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2316 +msgid "Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2314 +msgid "This message is being sent to notify you of low stock of a product in your online store according to your preferences.

    " +msgstr "" + +#: includes/common/class-mp-product.php:1817 +msgid "" +msgstr "" + +#: includes/common/class-mp-product.php:1427 +#: includes/common/class-mp-product.php:1430 +msgid "(tax incl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1422 +#: includes/common/class-mp-product.php:1425 +msgid "(tax excl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1300 +#: includes/common/class-mp-product.php:1315 +msgid "%s each" +msgstr "" + +#: includes/common/class-mp-product.php:988 +msgid "Choose Options" +msgstr "" + +#: includes/common/class-mp-product.php:526 +msgid "Choose a %s" +msgstr "" + +#: includes/common/class-mp-product.php:284 +#: includes/common/class-mp-product.php:292 +#: includes/common/class-mp-product.php:615 +msgid "We're sorry, we only have %d of this item in stock right now." +msgstr "" + +#: includes/common/class-mp-order.php:1456 +msgid "Shipped: Track Shipment" +msgstr "" + +#: includes/common/class-mp-order.php:1049 +msgid "Order Received" +msgstr "" + +#: includes/common/class-mp-order.php:1014 +msgid "In Process" +msgstr "" + +#: includes/common/class-mp-order.php:969 +msgid "Order #" +msgstr "" + +#: includes/common/class-mp-order.php:866 +msgid "Copy billing address to shipping address" +msgstr "" + +#: includes/common/class-mp-order.php:822 +#: includes/public/class-mp-checkout.php:1314 +msgid "Special Instructions" +msgstr "" + +#: includes/common/class-mp-order.php:817 +#: includes/common/payment-gateways/stripe.php:335 +msgid "Email" +msgstr "" + +#: includes/common/class-mp-order.php:813 +#: includes/common/payment-gateways/stripe.php:341 +#: includes/public/class-mp-checkout.php:416 +msgid "Phone" +msgstr "" + +#: includes/common/class-mp-order.php:791 +#: includes/common/payment-gateways/stripe.php:337 +msgid "State" +msgstr "" + +#: includes/common/class-mp-order.php:776 +msgid "Address 1" +msgstr "" + +#: includes/common/class-mp-order.php:766 +msgid "Last Name" +msgstr "" + +#: includes/common/class-mp-order.php:762 +msgid "First Name" +msgstr "" + +#: includes/common/class-mp-installer.php:677 +msgid "MarketPress requires a database update to continue working correctly. Go to update page" +msgstr "" + +#: includes/common/class-mp-installer.php:657 +msgid "MarketPress performed a quick automatic update successfully!" +msgstr "" + +#: includes/common/class-mp-installer.php:653 +msgid "Perform Update" +msgstr "" + +#: includes/common/class-mp-installer.php:647 +msgid "Please update each subsite in your WordPress network where you have older version of the MarketPress plugin." +msgstr "" + +#: includes/common/class-mp-installer.php:641 +msgid "Depending on the amount of products you have, this update could take quite some time. Please keep this window open while the update completes. If you have products with multiple variations, the progress bar may move slower, please don't exit the window." +msgstr "" + +#: includes/common/class-mp-installer.php:632 +msgid "Product Metadata" +msgstr "" + +#: includes/common/class-mp-installer.php:601 +msgid "MarketPress requires a database update to continue working correctly.
    Below you will find a list of items that require your attention." +msgstr "" + +#: includes/common/class-mp-installer.php:600 +msgid "Update MarketPress Data" +msgstr "" + +#: includes/common/class-mp-installer.php:530 +msgid "Update Data" +msgstr "" + +#: includes/common/class-mp-installer.php:67 +msgid "Complete!" +msgstr "" + +#: includes/common/class-mp-installer.php:66 +msgid "Upgrading Database...Please Wait..." +msgstr "" + +#: includes/common/class-mp-installer.php:64 +msgid "An error occurred while updating. Please refresh this page and try again." +msgstr "" + +#: includes/common/class-mp-cart.php:2447 +msgid "Some items in your cart have fallen below the quantity you currently have in your cart. We have adjusted the quantity in your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:2443 +msgid "Some items in your cart are no longer available. We have removed these items from your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:1566 +msgid "item" +msgstr "" + +#: includes/common/class-mp-cart.php:1563 +#: includes/common/class-mp-cart.php:1568 +msgid "items" +msgstr "" + +#: includes/common/class-mp-cart.php:1363 +msgid "Items/Products added to Cart will show here." +msgstr "" + +#: includes/common/class-mp-cart.php:1362 +msgid "Your shopping cart is empty." +msgstr "" + +#: includes/common/class-mp-cart.php:1357 +msgid "View Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1241 +#: includes/common/class-mp-cart.php:1298 +#: includes/public/class-mp-short-codes.php:159 +msgid "Adding..." +msgstr "" + +#: includes/common/class-mp-cart.php:1033 +msgid "Continue Shopping?" +msgstr "" + +#: includes/common/class-mp-cart.php:961 +msgid "Secure Checkout
    Shopping is always safe and secure." +msgstr "" + +#: includes/common/class-mp-cart.php:959 +msgid "You are about to submit your order!
    Please review your order details before continuing. You will be charged immediately upon clicking \"Submit Order\"." +msgstr "" + +#: includes/common/class-mp-cart.php:956 +msgid "Continue »" +msgstr "" + +#: includes/common/class-mp-cart.php:955 +msgid "Submit Order" +msgstr "" + +#: includes/common/class-mp-cart.php:818 +msgid "There are no items in your cart - go add some !" +msgstr "" + +#: includes/common/class-mp-cart.php:816 +msgid "The cart is disabled." +msgstr "" + +#: includes/common/class-mp-cart.php:735 +msgid "Estimated %s" +msgstr "" + +#: includes/common/class-mp-cart.php:717 +msgid "Estimated Shipping" +msgstr "" + +#: includes/common/class-mp-cart.php:697 +msgid "Product Total" +msgstr "" + +#: includes/common/class-mp-cart.php:670 includes/common/class-mp-cart.php:672 +msgid "Estimated Total (%s, %s)" +msgstr "" + +#: includes/common/class-mp-cart.php:668 +msgid "Estimated Total (%s)" +msgstr "" + +#: includes/common/class-mp-cart.php:666 includes/common/class-mp-cart.php:752 +msgid "Estimated Total" +msgstr "" + +#: includes/admin/widgets/product-list.php:247 +msgid "Show Thumbnail Placeholder image (if image is not set)" +msgstr "" + +#: includes/admin/widgets/cart.php:73 +msgid "Display product price" +msgstr "" + +#: includes/admin/widgets/cart.php:71 +msgid "Display product quantity" +msgstr "" + +#: includes/admin/widgets/cart.php:69 +msgid "Display product image" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:93 +msgid "General Shipping Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:773 +msgid "If you are having conflicts with the lightbox library from your theme or another plugin you should uncheck this." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:772 +msgid "Use Built-In Lightbox for Images?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:762 +msgid "Disable Large Image Display?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:688 +msgid "Show Product Image?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:682 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:684 +msgid "Show Tags List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:676 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:678 +msgid "Show Categories List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:671 +msgid "If enabled, description excerpt will be added above Add to cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:669 +msgid "Show Excerpt?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:665 +msgid "If enabled, users will be able to choose how many of the product they want to purchase before adding to their cart. If not checked, quantity could be change later on the cart page." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:663 +msgid "Show Quantity Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:649 +msgid "Settings related to the display of individual product pages." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:648 +msgid "Product Page Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:605 +msgid "Related Products Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:573 +msgid "Show Related Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:568 +msgid "Related Product Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:549 +msgid "Order Status Entries Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:510 +msgid "Sort Products By" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:497 +msgid "Products Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:492 +msgid "Paginate Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:478 +msgid "Excerpts Length" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:473 +msgid "Show Excerpts?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:450 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:746 +msgid "Image Alignment" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:412 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:708 +msgid "Custom Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:401 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:697 +msgid "Large - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:400 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:696 +msgid "Medium - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:399 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:695 +msgid "Thumbnail - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:397 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:693 +msgid "Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:386 +msgid "Select default placeholder image thumbnail when product image is not available (if empty, plugin's built-in image will be used)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:380 +msgid "Show default product placeholder thumbnail when product image is not available?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:374 +msgid "Show Product Thumbnail?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:369 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:658 +msgid "Redirect to cart page for immediate checkout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:368 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:657 +msgid "Stay on current product page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:366 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:655 +msgid "MarketPress supports two \"flows\" for adding products to the shopping cart. After adding a product to their cart, two things can happen:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:365 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:654 +msgid "Add To Cart Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:355 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:628 +msgid "Four" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:354 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:627 +msgid "Three" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:353 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:626 +msgid "Two" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:625 +msgid "One" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:349 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:622 +msgid "Set the number of products that show up in a grid row to best fit your theme" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:348 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:621 +msgid "How many products per row?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:342 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:609 +msgid "Display as grid" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:341 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:608 +msgid "Display as list" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:339 +msgid "Product Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:334 +msgid "Settings related to the display of product lists/grids." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:333 +msgid "Product List/Grid Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:314 +msgid "Show Twitter Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:309 +msgid "Twitter" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:303 +msgid "Show Share Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:297 +msgid "Recommend" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:296 +msgid "Like" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:294 +msgid "Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:283 +msgid "Show Facebook Like Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:278 +msgid "Facebook" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:257 +msgid "Show \"Pin It\" Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:252 +msgid "Pinterest" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:246 +msgid "Social Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:193 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:202 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:211 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:220 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:229 +#: includes/multisite/class-mp-admin-multisite.php:532 +#: includes/multisite/class-mp-admin-multisite.php:541 +#: includes/multisite/class-mp-admin-multisite.php:550 +msgid "Choose a Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:191 +msgid "This page will be used as the root for your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:168 +#: includes/multisite/class-mp-admin-multisite.php:586 +msgid "Create Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "uncropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "cropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:87 +#: includes/multisite/class-mp-admin-multisite.php:121 +#: includes/multisite/class-mp-admin-multisite.php:620 +msgid "An error occurred while creating the store page. Please try again." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:66 +msgid "Choose the gateway(s) that you would like to be available for checkout." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:65 +msgid "Enabled Gateways" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:78 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:146 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:179 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:213 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:274 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:307 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:341 +msgid "Text" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:71 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:139 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:172 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:206 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:267 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:300 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:334 +msgid "Subject" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:52 +msgid "Notification Email" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:510 +msgid "Enabling this option will display label `excl. tax` or `incl. tax` after price" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:509 +msgid "Display tax label?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:504 +msgid "Enabling this option will show Price + Tax, eg. if your price is 100 and your tax 20, your price will be 120" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:416 +#: includes/multisite/class-mp-admin-multisite.php:234 +msgid "Price Format" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:366 +msgid "Enabling this field will display a textbox on the shipping checkout page for users to enter special instructions for their order. Useful for product personalization, etc." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:365 +msgid "Show Special Instructions Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:360 +msgid "Universal" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:359 +msgid "Old" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1167 +#: includes/admin/store-settings/class-mp-store-settings-general.php:358 +msgid "New" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:353 +msgid "If you already use Google Analytics for your website, you can track detailed ecommerce information by enabling this setting. Choose whether you are using the new asynchronous or old tracking code. Before Google Analytics can report ecommerce activity for your website, you must enable ecommerce tracking on the profile settings page for your website. Also keep in mind that some gateways do not reliably show the receipt page, so tracking may not be accurate in those cases. It is recommended to use the PayPal gateway for the most accurate data. More information »" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:347 +msgid "Do you want to display the product price on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:346 +msgid "Show product price on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:340 +msgid "Do you want to display the product quantity on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:339 +msgid "Show product quantity on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:333 +msgid "Do you want to display the product image on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:332 +msgid "Show product image on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:327 +msgid "This option hide floating Mini Cart in top right corner." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:326 +msgid "Disable Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:316 +msgid "If unchecked your Orders admin page will be hidden" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:315 +msgid "Show admin Orders page?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:309 +msgid "Disable Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:303 +msgid "Force Login?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:297 +msgid "Hide Out of Stock Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:555 +msgid "This will prevent multiples of the same downloadable product form being added to the cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:554 +msgid "Limit Digital Products Per-order?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:268 +msgid "If you're having issues downloading large files and have worked with your hosting provider to increase your memory limits, try enabling this - just keep in mind, it's not as secure!" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:267 +msgid "Use Alternative Download Method?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:252 +msgid "Download Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:230 +msgid "Change product post type" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:51 +msgid "%s Capabilities" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-addons.php:47 +msgid "Store Settings: Add Ons: %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:254 +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:56 +msgid "Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Edit Product Attribute %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:246 +msgid "Exporters" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:238 +msgid "Short Codes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:207 +msgid "An appropriate message for key \"%s\" could not be found." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:204 +msgid "Product attribute updated successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:203 +msgid "Product attribute added successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +msgid "Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +#: includes/admin/store-settings/class-mp-store-settings-addons.php:121 +msgid "Store Settings: Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "Store Settings: Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:118 +msgid "Store Settings: Product Tags" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:117 +msgid "Store Settings: Product Categories" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Store Settings: Product Attributes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +msgid "Store Settings: Payments" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:114 +msgid "Store Settings: Shipping" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +#: includes/admin/class-mp-store-settings-admin.php:226 +msgid "Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +msgid "Store Settings: Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:112 +msgid "Store Settings: Presentation" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:111 +msgid "Store Settings: General" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1489 +msgid "Select a Product" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1447 +msgid "Reset to Defaults" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1446 +msgid "Insert Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1202 +#: includes/admin/class-mp-shortcode-builder.php:1227 +#: includes/admin/class-mp-shortcode-builder.php:1252 +msgid "The text to show in the link." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1196 +#: includes/admin/class-mp-shortcode-builder.php:1221 +#: includes/admin/class-mp-shortcode-builder.php:1246 +msgid "Whether to return a clickable link or url." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1177 +msgid "Whether to display the cart only on store pages or not." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1171 +msgid "Whether to show or hide the product price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1165 +msgid "Whether to show or hide the product quantity." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1159 +msgid "Whether to show or hide the product image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1153 +msgid "The text displayed before the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1147 +msgid "The title of the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1058 +#: includes/admin/class-mp-shortcode-builder.php:1121 +msgid "A label to prepend to the price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1032 +#: includes/admin/class-mp-shortcode-builder.php:1127 +msgid "What context for display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1004 +msgid "Set the alignment of the image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:998 +msgid "Set a custom pixel width/height. If omitted defaults to the size set by \"context\"." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:993 +msgid "Widget" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:988 +msgid "What context for preset size options." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:982 +#: includes/admin/class-mp-shortcode-builder.php:1026 +#: includes/admin/class-mp-shortcode-builder.php:1052 +#: includes/admin/class-mp-shortcode-builder.php:1077 +#: includes/admin/class-mp-shortcode-builder.php:1096 +#: includes/admin/class-mp-shortcode-builder.php:1115 +msgid "The ID of the product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:963 +msgid "Whether to display the product meta (e.g. price, buy button)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:738 +#: includes/admin/class-mp-shortcode-builder.php:905 +#: includes/admin/class-mp-shortcode-builder.php:958 +#: includes/admin/class-mp-shortcode-builder.php:992 +#: includes/admin/class-mp-shortcode-builder.php:1035 +#: includes/admin/class-mp-shortcode-builder.php:1130 +#: includes/admin/class-mp-shortcode-builder.php:1349 +msgid "List" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:957 +#: includes/admin/class-mp-shortcode-builder.php:991 +#: includes/admin/class-mp-shortcode-builder.php:1034 +#: includes/admin/class-mp-shortcode-builder.php:1129 +msgid "Single" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:953 +msgid "Whether and what context of image size to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:948 +msgid "Full" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:943 +msgid "Whether and what type of content to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:937 +msgid "Whether to display the product title." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:931 +msgid "The ID of the product to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:747 +#: includes/admin/class-mp-shortcode-builder.php:914 +msgid "Hide" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:746 +#: includes/admin/class-mp-shortcode-builder.php:913 +msgid "Show" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:744 +#: includes/admin/class-mp-shortcode-builder.php:911 +msgid "Whether or not to show the product filters." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:724 +#: includes/admin/class-mp-shortcode-builder.php:891 +#: includes/admin/class-mp-shortcode-builder.php:1335 +msgid "Limits list to a specific product tag." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:713 +#: includes/admin/class-mp-shortcode-builder.php:880 +#: includes/admin/class-mp-shortcode-builder.php:1324 +msgid "Limits list to a specific product category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:706 +#: includes/admin/class-mp-shortcode-builder.php:873 +#: includes/admin/class-mp-shortcode-builder.php:1317 +msgid "Direction to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:684 +#: includes/admin/class-mp-shortcode-builder.php:851 +#: includes/admin/class-mp-shortcode-builder.php:1295 +msgid "What field to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:678 +#: includes/admin/class-mp-shortcode-builder.php:845 +#: includes/admin/class-mp-shortcode-builder.php:1283 +msgid "How many products to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:672 +#: includes/admin/class-mp-shortcode-builder.php:839 +#: includes/admin/class-mp-shortcode-builder.php:1277 +msgid "The page number to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:666 +#: includes/admin/class-mp-shortcode-builder.php:833 +#: includes/admin/class-mp-shortcode-builder.php:1271 +msgid "Whether to paginate the product list. This is useful to only show a subset." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:808 +msgid "How many related items to show." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:790 +msgid "How to relate the products" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:784 +msgid "The product to show related items for." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:765 +msgid "The maximum number of products to display" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:647 +msgid "Comma separated list of tags (term_id) to include. For example, include=5,27 means tags that have the term_id 5 or 27 will be the only tags displayed. Defaults to include everything." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:641 +msgid "Comma separated list of tags (term_id) to exclude. For example, exclude=5,27 means tags that have the term_id 5 or 27 will NOT be displayed. Defaults to exclude nothing." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:633 +#: includes/admin/class-mp-shortcode-builder.php:1420 +msgid "Sort order." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:629 +#: includes/admin/class-mp-shortcode-builder.php:1416 +msgid "Count" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:626 +#: includes/admin/class-mp-shortcode-builder.php:1413 +msgid "Order of the tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:620 +msgid "The text/space between tags)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:616 +msgid "UL with a class of \"wp-tag-cloud\"" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:615 +msgid "separated by whitespace defined by \"separator\" parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:613 +msgid "Format of the cloud display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:607 +msgid "The number of actual tags to display in the cloud. (Use \"0\" to display all tags.)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:601 +msgid "Unit of measure as pertains to the smallest and largest values. This can be any CSS length value, e.g. pt, px, em, %." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:595 +msgid "The text size of the tag with the largest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:589 +msgid "The text size of the tag with the smallest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:570 +msgid "The \"tabindex\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:564 +msgid "The \"name\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:558 +msgid "The \"id\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:552 +msgid "Which category ID is selected." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:540 +msgid "The max depth. This is ignored unless hierarchical is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:536 +#: includes/multisite/template-functions.php:816 +msgid "No Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:414 +#: includes/admin/class-mp-shortcode-builder.php:546 +msgid "Calculates link or post counts by including items from child categories. If show_counts and hierarchical are true this is automatically set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:409 +msgid "Value of n (some number) specifies the depth (or level) to descend in displaying Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:408 +msgid "Show only top level Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:407 +msgid "All Categories displayed in flat (no indent) form (overrides hierarchical)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:406 +msgid "All Categories and child Categories (Default)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:402 +msgid "This parameter controls how many levels in the hierarchy of Categories are to be included in the list of Categories. NOTE: The \"hierarchical\" argument, which is disabled by default, will override the depth argument, unless it is true. When the argument is false, it will display all of the categories. When it is enabled it will use the value in the \"depth\" argument." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:396 +#: includes/admin/class-mp-shortcode-builder.php:1394 +msgid "Sets the number of Categories to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:390 +#: includes/admin/class-mp-shortcode-builder.php:534 +msgid "Set the text to show when no categories are listed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:384 +msgid "Set the title and style of the outer list item. If present but empty, the outer list item will not be displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:378 +#: includes/admin/class-mp-shortcode-builder.php:528 +msgid "Display sub-categories as inner list items (below the parent list item) or inline." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:368 +#: includes/admin/class-mp-shortcode-builder.php:511 +msgid "Exclude category-tree from the results. The parameter include must be empty. If the hierarchical parameter is true, then use exclude instead of exclude_tree." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:354 +msgid "Only include these categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:340 +#: includes/admin/class-mp-shortcode-builder.php:356 +#: includes/admin/class-mp-shortcode-builder.php:370 +#: includes/admin/class-mp-shortcode-builder.php:496 +#: includes/admin/class-mp-shortcode-builder.php:513 +msgid "Select Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:338 +#: includes/admin/class-mp-shortcode-builder.php:494 +msgid "Exclude one or more categories from the results. The parameter include must be empty." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:332 +msgid "Set a URI for an image (usually an rss feed icon) to act as a link to each categories' rss-2 feed. This parameter overrides the feed parameter. There is no default for this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:320 +msgid "Display a link to each category's rss-2 feed and set the link text to display. The default is no text and no feed displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:313 +#: includes/admin/class-mp-shortcode-builder.php:487 +msgid "Any" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:307 +#: includes/admin/class-mp-shortcode-builder.php:481 +msgid "Only display categories that are children of the category identified by this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:301 +msgid "Sets whether a category's description is inserted into the title attribute of the links created (i.e. <a title=\"<em>Category Description</em>\" href=\"...)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:295 +#: includes/admin/class-mp-shortcode-builder.php:475 +msgid "Toggles the display of categories with no posts." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:289 +#: includes/admin/class-mp-shortcode-builder.php:469 +#: includes/admin/class-mp-shortcode-builder.php:1388 +msgid "Toggles the display of the current count of posts in each category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:279 +msgid "Style to display the categories list in. A value of list displays the categories as list items while none generates no special display method (the list items are separated by
    tags)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:269 +#: includes/admin/class-mp-shortcode-builder.php:449 +#: includes/admin/class-mp-shortcode-builder.php:1378 +msgid "Sort order for categories (either ascending or descending)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:259 +#: includes/admin/class-mp-shortcode-builder.php:439 +#: includes/admin/class-mp-shortcode-builder.php:1368 +msgid "Sort categories alphabetically, by unique Category ID, or by the count of posts in that Category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:253 +#: includes/admin/class-mp-shortcode-builder.php:433 +msgid "If a value is entered, causes the display of a link to all categories if the style is set to list." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:219 +msgid "Select an Action" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:217 +msgid "What would you like to do?" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:216 +#: includes/admin/class-mp-shortcode-builder.php:1522 +msgid "Add E-Commerce Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:197 +msgid "Display a list of links to your store pages." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:196 +msgid "Display a link or url to the order status page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:195 +msgid "Display a link or url to the current products list page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:194 +msgid "Display a link or url to the current store page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:193 +msgid "Display a link or url to the current shopping cart page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:192 +msgid "Display the cart widget." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:191 +msgid "Display the full product meta box with price and buy now/add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:190 +msgid "Display the product stock." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:189 +msgid "Display the product SKU number(s)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:188 +msgid "Display the product price (and sale price)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:187 +msgid "Display the buy or add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:186 +msgid "Display the featured image of a given product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:185 +msgid "Display a single product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:184 +msgid "Display a list of products according to preference." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:183 +msgid "Display products related to the one being viewed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:182 +msgid "Display a list of popular products ordered by sales." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:180 +msgid "Display an HTML dropdown of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:179 +msgid "Display an HTML list of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:178 +msgid "Display a cloud or list of your product tags." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:655 +msgid "Setup your payment gateway" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:643 +#: includes/admin/class-mp-setup-wizard.php:649 +msgid "Other Gateways" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:617 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:150 +msgid "Select which calculated shipping methods the customer will be able to choose from." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:601 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:134 +#: includes/public/class-mp-checkout.php:82 +msgid "Shipping Method" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:568 +msgid "I want to charge shipping" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:523 +#: includes/admin/store-settings/class-mp-store-settings-general.php:503 +msgid "Show Price + Tax?" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:507 +msgid "I.e. Taxes, VAT, GST, etc" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:491 +#: includes/admin/store-settings/class-mp-store-settings-general.php:471 +msgid "Current Rates" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:473 +msgid "Default Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:434 +#: includes/admin/class-mp-setup-wizard.php:442 +#: includes/admin/store-settings/class-mp-store-settings-general.php:386 +#: includes/admin/store-settings/class-mp-store-settings-general.php:394 +#: includes/multisite/class-mp-admin-multisite.php:204 +#: includes/multisite/class-mp-admin-multisite.php:212 +msgid "Select a Currency" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:414 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:105 +msgid "Choose Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:411 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:103 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:104 +msgid "All Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:410 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:102 +msgid "These are the countries that you will ship to." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:409 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:101 +msgid "Target Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:401 +msgid "Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:387 +#: includes/admin/store-settings/class-mp-store-settings-general.php:640 +msgid "Zip/Postal Code Label" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:352 +#: includes/admin/store-settings/class-mp-store-settings-general.php:606 +msgid "Select a State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:335 +#: includes/admin/store-settings/class-mp-store-settings-general.php:590 +msgid "Select A Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:332 +#: includes/admin/store-settings/class-mp-store-settings-general.php:587 +msgid "Select a Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:324 +msgid "Location" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:304 +#: includes/admin/class-mp-setup-wizard.php:312 +#: includes/admin/class-mp-store-settings-admin.php:129 +#: includes/admin/class-mp-store-settings-admin.php:262 +msgid "Quick Setup" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:289 +msgid "MarketPress setup is not complete! Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2479 +msgid "Enter your product name here" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2440 +msgid "Select a %s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2426 +msgid "Each product variation needs to have product attributes assigned to it so the system knows how to differentiate one product variation from the other. It is important that you assign a category to this product before choosing any attributes." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2409 +msgid "If you would like this variation to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2320 +msgid "Sale Price (if applicable)" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2281 +msgid "If you would like the description to be different than the main product enter it here." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2229 +msgid "Image" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2202 +#: includes/admin/class-mp-shortcode-builder.php:226 +msgid "Attributes" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2166 +msgid "Create your product variations here. You can reorder variations by using the number to left of each variation, or delete one by clicking the \"x\" to the right of each variation. NOTE: The variation that shows up first in this list will be considered the \"main variation\". The details from this variation will be used in product listings." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2061 +#: includes/admin/class-mp-products-admin.php:2332 +msgid "Value must be less than regular price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2043 +#: includes/admin/class-mp-products-admin.php:2306 +msgid "Regular Price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2023 +#: includes/admin/class-mp-products-admin.php:2286 +msgid "External URL" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1988 +#: includes/admin/class-mp-products-admin.php:2245 +msgid "Enter the quantity that you have available to sell." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1987 +#: includes/admin/class-mp-products-admin.php:2244 +msgid "Inventory Count" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1977 +#: includes/admin/class-mp-products-admin.php:2234 +msgid "Track Inventory?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1871 +msgid "%1$sProduct Images%2$s %3$sAdd images of the product. The first image on the list is the featured image for this product (you can reorder images on the list)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1806 +msgid "Add variations for this product. e.g. If you are selling t-shirts, you can create Color & Size variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1804 +msgid "%3$sAdd variations for%2$s %1$sProduct%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1776 +msgid "This product has a multiple variations %1$s(e.g. Multiple colors, sizes)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1775 +msgid "This is a unique product without variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1700 +msgid "Extra Shipping Cost %1$s(if applicable)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1659 +#: includes/admin/class-mp-products-admin.php:2112 +#: includes/admin/class-mp-products-admin.php:2359 +msgid "Weight" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1636 +#: includes/admin/class-mp-products-admin.php:2098 +#: includes/admin/class-mp-products-admin.php:2416 +msgid "Please enter a valid tax rate" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1531 +msgid "Limit Per Order %1$s(limit the number of the item a shopper can buy per order)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1513 +msgid "SKU %1$s(Stock Keeping Unit)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "%1$sPrice, Inventory & Variants%2$s %3$sSet price, manage inventory and create Product Variants (if appropriate for your product).%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "Product Variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1480 +msgid "External / Affiliate Link" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1471 +msgid "Digital Download" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1470 +msgid "Physical / Tangible Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1464 +msgid "Product Kind %1$s(Physical Product, Digital, etc)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1426 +msgid "Choose Products" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1420 +msgid "If you would like, you can choose specific related products instead of using the ones generated by MarketPress" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1019 +msgid "Changes saved successfully" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:826 +msgid "Option cannot be saved. Try again." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:821 +msgid "Option saved successfully." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:467 +msgid "Img" +msgstr "" + +#: includes/admin/class-mp-product-attributes-list-table.php:57 +msgid "Product attribute(s) deleted successfully." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:162 +msgid "- Create New Variation -" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:144 +msgid "Only lowercase letters and dashes (-) are allowed." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:139 +msgid "If a slug is not entered, it will be generated automatically. Max 32 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:138 +#: includes/admin/class-mp-product-attributes-list-table.php:23 +msgid "Slug" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:130 +msgid "Max 45 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:123 +msgid "Use the numbers on the left to sort. To delete - click the \"X\" to the right of each row." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:122 +msgid "Attribute Options" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:121 +msgid "Add Option" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:105 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:523 +msgid "Sort Order" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:87 +msgid "Alphabetical" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:86 +msgid "ID" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:84 +msgid "Select how the options will be sorted." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:82 +msgid "Sort By" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:75 +msgid "The name of the attribute (e.g. color, size, etc)" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:74 +msgid "Attribute Name" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:69 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Product Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Product Attributes" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:71 +msgid "You can choose to make this page one of the following core store pages." +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:66 +msgid "Network Store Base" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:61 +msgid "Checkout Page" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:52 +msgid "Store Page Settings" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1108 +msgid "Display billing/shipping info for this customer" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1097 +msgid "View order “%s”" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1072 +msgid "Flag as:" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:952 +msgid "Move To Trash" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:948 +msgid " Received" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:927 +msgid "Enter coupon code here" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:812 +msgid "The order status could not be updated due to unexpected error. Please try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:740 +msgid "An invalid bulk action was requested. Please go back and try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:692 +msgid "The order status for order ID %1$s was updated successfully." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:688 +msgid "Order statuses successfully updated." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:530 +msgid "Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:518 +msgid "Actual Shipping Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:513 +msgid "Method Paid For" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:504 +msgid "Amount Collected" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:477 +msgid "DHL" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:408 +msgid "There is no IPN history to show at this time" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:345 +msgid "Type" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:343 +msgid "Gateway" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:301 +#: includes/common/template-functions.php:528 +msgid "Order History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:291 +msgid "IPN History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:283 +msgid "Customer Info" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:279 +msgid "Order Details" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:157 +msgid "All Dates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:320 +msgid "Add Pages to Menu" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:318 +msgid "Add-ons" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:317 +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "User Capabilities" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:316 +#: includes/admin/class-mp-setup-wizard.php:631 +#: includes/admin/store-settings/class-mp-store-settings-payments.php:50 +msgid "Payment Gateways" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:315 +msgid "Shipping Rates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:312 +msgid "Configure" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:309 +#: includes/admin/class-mp-products-admin.php:466 +#: includes/admin/class-mp-shortcode-builder.php:797 +msgid "Tags" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:308 +#: includes/admin/class-mp-products-admin.php:465 +msgid "Categories" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:300 +msgid "Manage" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:297 +msgid "Here's some quick links to manage your store and products." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:288 +msgid "low in stock" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:287 +msgid "%s product" +msgid_plural "%s products" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-dashboard-widgets.php:280 +msgid "received" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:279 +#: includes/admin/class-mp-dashboard-widgets.php:283 +msgid "%s order" +msgid_plural "%s orders" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-dashboard-widgets.php:276 +msgid "Stock & Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:261 +msgid "Last 30 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:256 +msgid "Last 7 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:251 +msgid "Yesterday" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:248 +#: includes/admin/class-mp-dashboard-widgets.php:253 +#: includes/admin/class-mp-dashboard-widgets.php:258 +#: includes/admin/class-mp-dashboard-widgets.php:263 +msgid " Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:246 +msgid "Today" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:241 +msgid "Welcome back! Here's a quick summary of your store's performance." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:196 +#: includes/admin/class-mp-products-admin.php:895 +msgid "No products out of stock." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:136 +#: includes/admin/class-mp-products-admin.php:839 +msgid "Stock Level" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:135 +#: includes/admin/class-mp-products-admin.php:838 +msgid "Variation" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:121 +msgid "Low Stock (%s)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:116 +msgid "Store Management" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:115 +msgid "Store Reports" +msgstr "" + +#: includes/admin/class-mp-ajax.php:579 +#: includes/admin/class-mp-orders-admin.php:520 +#: includes/common/payment-gateways/2checkout.php:370 +#: includes/common/payment-gateways/authorizenet-aim.php:264 +#: includes/common/payment-gateways/mollie.php:93 +#: includes/common/payment-gateways/paymill.php:196 +#: includes/common/payment-gateways/pin.php:190 +#: includes/common/payment-gateways/skrill.php:157 +#: includes/common/payment-gateways/skrill.php:168 +#: includes/common/payment-gateways/wepay.php:143 +#: includes/public/class-mp-checkout.php:404 +msgid "Select One" +msgstr "" + +#: includes/admin/class-mp-ajax.php:511 +msgid "Oops... we could not locate any orders by that ID. Please double check your order ID and try again." +msgstr "" + +#: includes/admin/class-mp-ajax.php:482 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:166 +#: includes/multisite/class-mp-admin-multisite.php:584 +msgid "Edit Page" +msgstr "" + +#: includes/admin/class-mp-ajax.php:346 +msgid "Cancel " +msgstr "" + +#: includes/admin/class-mp-ajax.php:345 +msgid "Save " +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "Edit Description" +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "HTML Markup" +msgstr "" + +#: includes/admin/class-mp-ajax.php:333 +msgid "Plain Text Only" +msgstr "" + +#: includes/admin/class-mp-ajax.php:329 +msgid "Additional Content / Information for this Variation" +msgstr "" + +#: includes/admin/class-mp-ajax.php:317 +#: includes/admin/class-mp-products-admin.php:1762 +msgid "Allow this product to be purchased even if it's out of stock" +msgstr "" + +#: includes/admin/class-mp-ajax.php:313 +#: includes/admin/class-mp-products-admin.php:1711 +msgid "Track Product Inventory" +msgstr "" + +#: includes/admin/class-mp-ajax.php:300 +msgid "Extra Shipping Cost (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:295 +msgid "Ounces:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:294 +msgid "Pounds:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:292 +msgid "Kilograms:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:287 +#: includes/admin/class-mp-products-admin.php:1649 +msgid "Charge Shipping" +msgstr "" + +#: includes/admin/class-mp-ajax.php:273 +#: includes/admin/class-mp-products-admin.php:1623 +#: includes/admin/store-settings/class-mp-store-settings-general.php:454 +msgid "Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:272 +#: includes/admin/class-mp-products-admin.php:1622 +#: includes/admin/class-mp-products-admin.php:2090 +#: includes/admin/class-mp-products-admin.php:2408 +msgid "Special Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:271 +#: includes/admin/class-mp-products-admin.php:1625 +#: includes/admin/class-mp-products-admin.php:2092 +msgid "If you would like this product to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-ajax.php:268 +#: includes/admin/class-mp-products-admin.php:1599 +msgid "Charge Taxes (Special Rate)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:256 +#: includes/admin/class-mp-products-admin.php:1593 +#: includes/admin/class-mp-products-admin.php:2077 +#: includes/admin/class-mp-products-admin.php:2348 +msgid "End Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:255 +#: includes/admin/class-mp-products-admin.php:1589 +#: includes/admin/class-mp-products-admin.php:2072 +msgid "Start Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:1568 +msgid "Enter Sale Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:250 +#: includes/admin/class-mp-products-admin.php:1547 +msgid "Set up a Sale for this Product" +msgstr "" + +#: includes/admin/class-mp-ajax.php:206 includes/admin/class-mp-ajax.php:223 +msgid "Enter " +msgstr "" + +#: includes/admin/class-mp-ajax.php:193 +msgid "Browse" +msgstr "" + +#: includes/admin/class-mp-ajax.php:184 includes/admin/class-mp-ajax.php:192 +msgid "http://" +msgstr "" + +#: includes/admin/class-mp-ajax.php:183 +msgid "External Product URL" +msgstr "" + +#: includes/admin/class-mp-ajax.php:237 +msgid "Limit Per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:177 +#: includes/admin/class-mp-products-admin.php:1520 +msgid "Enter Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:174 +#: includes/admin/class-mp-products-admin.php:1512 +msgid "Enter SKU" +msgstr "" + +#: includes/admin/class-mp-ajax.php:173 +msgid "(Stock Keeping Unit)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:158 +msgid "Remove Image" +msgstr "" + +#: includes/admin/class-mp-ajax.php:74 +msgid "Variation Draft" +msgstr "" + +#: includes/admin/class-mp-admin.php:296 +#: includes/admin/class-mp-dashboard-widgets.php:70 +msgid "Please wait...saving in progress..." +msgstr "" + +#: includes/admin/class-mp-admin.php:295 +#: includes/admin/class-mp-dashboard-widgets.php:69 +msgid "Input is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:294 +#: includes/admin/class-mp-dashboard-widgets.php:68 +msgid "Valid number is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:292 +#: includes/admin/class-mp-dashboard-widgets.php:66 +msgid "Delete %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:291 +#: includes/admin/class-mp-dashboard-widgets.php:65 +msgid "Delete %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:290 +#: includes/admin/class-mp-dashboard-widgets.php:64 +msgid "Update inventory for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:289 +#: includes/admin/class-mp-dashboard-widgets.php:63 +msgid "Update inventory for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:288 +#: includes/admin/class-mp-dashboard-widgets.php:62 +msgid "Update price for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:287 +#: includes/admin/class-mp-dashboard-widgets.php:61 +msgid "Update prices for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:285 +#: includes/admin/class-mp-dashboard-widgets.php:59 +msgid "Creating variations, please wait..." +msgstr "" + +#: includes/admin/class-mp-admin.php:96 +msgid "The following payment gateways have been deprecated, Cubepoints, Bitpay, iDEAL, Skrill, Google Checkout. If you were using one of these gateways, please setup a new payment gateway here." +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:61 +msgid "Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:71 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:71 +#: includes/common/class-mp-gdpr.php:399 includes/common/class-mp-order.php:872 +#: includes/common/helpers.php:164 includes/public/class-mp-checkout.php:1434 +msgid "Shipping Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:66 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:66 +#: includes/common/class-mp-gdpr.php:392 includes/common/class-mp-order.php:864 +#: includes/common/helpers.php:163 includes/public/class-mp-checkout.php:1427 +msgid "Billing Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:61 +msgid "Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:258 +msgid "Shipping Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:256 +msgid "Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:235 +msgid "Payment Method: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:79 +msgid "The dir %s not exist or not writeable" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:239 +msgid "Shop header/logo" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:233 +msgid "Choose a template" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:226 +msgid "Template Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:221 +msgid "Disable automatic creation/attachment of invoices when only free products are ordered" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:220 +msgid "Disable for free products" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:216 +msgid "Attach invoice to" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:214 +msgid "Customer Order Shipped email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:212 +msgid "Customer New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:211 +msgid "Admin New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:206 +msgid "download" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:205 +msgid "How do you want to view the PDF?" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:203 +msgid "Open the PDF in a new browser tab/window" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:202 +msgid "Download the PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:158 +msgid "Export PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:103 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:106 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:109 +msgid "You can't download this order invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:76 +msgid "Invalid Request" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:72 +msgid "Order not exist!" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:67 +msgid "Invalid ID" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1293 +msgid "Coupon added successfully" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1292 +msgid "Please enter a code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1247 +msgid "No end" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1200 +msgid "Valid Dates" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1195 +msgid "Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1027 +msgid "No Coupons found in Trash" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1026 +msgid "No Coupons Found" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1025 +msgid "Search Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1024 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1028 +msgid "View Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1023 +msgid "New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1020 +msgid "Create New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1017 +msgid "Manage Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1002 +msgid "An error occurred while removing your coupon. Please try again." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:964 +msgid "Coupon can't be applied to this cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:951 +msgid "Invalid coupon code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:794 +msgid "Help Text" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:789 +msgid "Form Title" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:783 +msgid "Coupons Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:764 +msgid "End Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:758 +msgid "Does coupon have an end date?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:696 +msgid "Select Products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:688 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:723 +#: includes/common/payment-gateways/paypal-payflow.php:402 +msgid "User" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:638 +msgid "Max Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:636 +msgid "Enter the maximum number of times this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:623 +msgid "Leave blank to allow all other coupons." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:622 +msgid "Select combinable coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:618 +msgid "Can this coupon be combined with other coupons?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:613 +msgid "Apply to each applicable item once per cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:612 +msgid "Apply to each applicable item and quantity ordered" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:609 +msgid "How should the discount amount be applied?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:605 +msgid "Discount Amount" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:604 +msgid "Value must either be a decimal number or a percentage" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:602 +msgid "If you would like to give a percentage-based discount make sure to include the percent (%) symbol. Otherwise, the discount will be applied as a fixed amount off." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:595 +msgid "Letters and Numbers only." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:589 +msgid "Coupon Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:447 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:795 +msgid "More than one code? That's OK! Just be sure to enter one at a time." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:444 +msgid "Apply Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:314 +msgid "Coupon Discounts" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:89 +msgid "1 add-on disabled" +msgid_plural "%s add-ons disabled" +msgstr[0] "" +msgstr[1] "" + +#: includes/addons/class-mp-addons-list-table.php:84 +msgid "1 add-on enabled" +msgid_plural "%s add-ons enabled" +msgstr[0] "" +msgstr[1] "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Disabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Enable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:129 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:67 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:135 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:168 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:202 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:263 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:296 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:330 +msgid "Enabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +msgid "Disable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:34 +msgid "Disable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:33 +msgid "Enable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:21 +#: includes/admin/class-mp-products-admin.php:2280 +#: includes/common/class-mp-product.php:2916 +msgid "Description" +msgstr "" + +#: includes/common/template-functions.php:2889 +#: includes/multisite/template-functions.php:407 +msgid "Popularity (Least Popular - Most Popular)" +msgstr "" + +#: includes/common/template-functions.php:2888 +#: includes/multisite/template-functions.php:406 +msgid "Popularity (Most Popular - Least Popular)" +msgstr "" + +#: includes/common/template-functions.php:2885 +#: includes/multisite/template-functions.php:403 +msgid "Name (Z-A)" +msgstr "" + +#: includes/common/template-functions.php:2884 +#: includes/multisite/template-functions.php:402 +msgid "Name (A-Z)" +msgstr "" + +#: includes/common/template-functions.php:2883 +#: includes/multisite/template-functions.php:401 +msgid "Release Date (Oldest to Latest)" +msgstr "" + +#: includes/common/template-functions.php:2882 +#: includes/multisite/template-functions.php:400 +msgid "Release Date (Latest to Oldest)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:284 +msgid "paid" +msgstr "payé" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "One Time Pickup" +msgstr "Retrait unique" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Customer Counter" +msgstr "Guichet Client" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Daily Pickup" +msgstr "Retrait Quotidien" + +#: includes/common/shipping-modules/mp-ups.php:182 +msgid "For the most accurate rates, please select the appropriate pick up type for your business." +msgstr "" + +#: includes/admin/class-mp-admin.php:374 +msgid "Page saved." +msgstr "Page enregistré." + +#: includes/admin/class-mp-admin.php:370 +msgid "Custom field deleted." +msgstr "Champ personnalisé supprimé." + +#: includes/admin/class-mp-admin.php:369 +msgid "Custom field updated." +msgstr "Champ personnalisé mis à jour." + +#: includes/common/payment-gateways/_bitpay.php:541 +msgid "%s - The payment request expired, - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:536 +msgid "%s - The payment not credited in merchants bitpay account, action required. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:252 +msgid "If enabled, you will recieve an email for each status update on payment." +msgstr "S'il est activé, vous recevrez un email pour chaque mise à jour de statut sur ​​le paiement." + +#: includes/common/payment-gateways/_bitpay.php:240 +msgid "Speed at which the bitcoin transaction registers as \"confirmed\" to the store. This overrides your merchant settings on the Bitpay website." +msgstr "Vitesse à laquelle la transaction bitcoin s'inscrit comme «confirmé» à la boutique. Ceci remplace les paramètres de marchands sur le site Bitpay." + +#: includes/common/payment-gateways/_bitpay.php:238 +msgid "Transaction Speed" +msgstr "Vitesse de transaction" + +#: includes/common/payment-gateways/_bitpay.php:244 +msgid "Low" +msgstr "Bas" + +#: includes/common/payment-gateways/_bitpay.php:243 +msgid "Medium" +msgstr "Moyenne" + +#: includes/common/payment-gateways/_bitpay.php:242 +msgid "High" +msgstr "Haut" + +#: includes/common/payment-gateways/_bitpay.php:177 +#: includes/common/payment-gateways/_bitpay.php:517 +#: includes/common/payment-gateways/_bitpay.php:522 +msgid "%s - The payment request is under process. Bitpay invoice status - %s" +msgstr "%s - La demande de paiement est en cours de traitement. Statut de la facture Bitpay - %s" + +#: includes/common/payment-gateways/_bitpay.php:175 +#: includes/common/payment-gateways/_bitpay.php:527 +msgid "%s - The payment request has been processed - %s" +msgstr "%s - La demande de paiement a bien été traité - %s" + +#: includes/common/payment-gateways/_bitpay.php:150 +#: includes/common/payment-gateways/_bitpay.php:294 +msgid "Incorrect order invoice, please contact site administrator" +msgstr "Facture de commande incorrecte, s'il vous plaît contacter l'administrateur du site" + +#: includes/common/payment-gateways/_bitpay.php:141 +msgid "We could not verify order invoice details, please try again or contact site administrator for help" +msgstr "Nous n'avons pas pu vérifier les détails de la facture de votre commande, s'il vous plaît essayez de nouveau ou veuillez bien contacter l'administrateur du site afin qu'il puisse vous aider" + +#: includes/common/payment-gateways/simplify.php:81 +msgid "Login to Simplify to get your API credentials. Enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:605 +#: includes/common/payment-gateways/paypal-express.php:647 +msgid "Express Checkout is PayPal's premier checkout solution, which streamlines the checkout process for buyers and keeps them on your site after making a purchase. Unlike PayPal Pro, there are no additional fees to use Express Checkout, though you may need to do a free upgrade to a business account. More Info »" +msgstr "" + +#. Plugin URI of the plugin/theme +msgid "https://premium.wpmudev.org/project/e-commerce/" +msgstr "https://premium.wpmudev.org/project/e-commerce/" + +#. Author of the plugin/theme +msgid "WPMU DEV" +msgstr "wpmu dev" + +#: includes/admin/class-mp-orders-admin.php:541 +#: includes/admin/class-mp-orders-admin.php:543 +msgid "Tracking Number" +msgstr "numéro de suivi" + +#: includes/common/class-mp-order.php:805 +#: includes/common/payment-gateways/stripe.php:336 +#: includes/public/class-mp-checkout.php:402 +msgid "Country" +msgstr "pays" + +#: includes/common/class-mp-order.php:784 +#: includes/common/payment-gateways/stripe.php:338 +msgid "City" +msgstr "ville" + +#: includes/common/class-mp-order.php:780 +msgid "Address 2" +msgstr "adresse 2" + +#: includes/common/payment-gateways/stripe.php:340 +msgid "Address" +msgstr "Adresse" + +#: includes/common/class-mp-cart.php:752 includes/common/class-mp-gdpr.php:378 +msgid "Order Total" +msgstr "total de la commande" + +#: includes/admin/class-mp-orders-admin.php:360 +msgid "Payment Total" +msgstr "Paiement: total" + +#: includes/admin/class-mp-orders-admin.php:347 +msgid "Transaction ID" +msgstr "ID de la transaction" + +#: includes/common/payment-gateways/wepay.php:207 +msgid "The WePay Card Token was not generated correctly. Please go back and try again." +msgstr "Le jeton de WePay Card n' a pas été généré correctement. Veuillez recommencer la procédure." + +#: includes/common/payment-gateways/wepay.php:186 +#: includes/common/shipping-modules/mp-fedex.php:283 +msgid "Account ID" +msgstr "ID du compte" + +#: includes/common/payment-gateways/wepay.php:179 +msgid "Access Token" +msgstr "Jeton d'accès" + +#: includes/common/payment-gateways/wepay.php:172 +msgid "Client Secret" +msgstr "Secret client" + +#: includes/common/payment-gateways/wepay.php:165 +msgid "Client ID" +msgstr "ID du client" + +#: includes/common/payment-gateways/wepay.php:159 +msgid "You must login to WePay to get your API credentials. Make sure to check \"Tokenize credit cards\" option under \"API Keys\" section of your WePay app." +msgstr "Vous devez vous enregistrer auprès de WePay recevez vos certificats de l' API WePay . Vérifiez absolument que vous avez pris l' option \"Tokenize credit cards\" sous la section \"API Keys\" de votre application WePay" + +#: includes/common/payment-gateways/wepay.php:154 +msgid "When in live mode it is recommended to use SSL certificate setup for the site where the checkout form will be displayed." +msgstr "Quand, en mode actif, il est recommandé d' utiliser un certificat SSL dédicacé au site où le formulaire de caisse sera affiché." + +#: includes/common/payment-gateways/wepay.php:148 +msgid "Donation" +msgstr "Don" + +#: includes/common/payment-gateways/wepay.php:147 +msgid "Event" +msgstr "Evènement" + +#: includes/common/payment-gateways/wepay.php:146 +msgid "Personal" +msgstr "Personnel" + +#: includes/common/payment-gateways/wepay.php:145 +msgid "Service" +msgstr "Service" + +#: includes/common/payment-gateways/wepay.php:144 +msgid "Goods" +msgstr "Biens" + +#: includes/common/payment-gateways/wepay.php:141 +msgid "Choose type of payments" +msgstr "Choisissez vos types de paiements" + +#: includes/common/payment-gateways/wepay.php:140 +msgid "Checkout Type" +msgstr "Type de caisse" + +#: includes/common/payment-gateways/wepay.php:134 +msgid "Staging" +msgstr "Mise en scène" + +#: includes/common/payment-gateways/wepay.php:131 +msgid "Choose STAGING if you have registered the app on stage.wepay.com, or PRODUCTION if you registered on www.wepay.com" +msgstr "Choisissez STAGING si vous avez enregistré l' application via stage.wepay.com, ou PRODUCTION si vous l' avez enregistré via www.wepay.com" + +#: includes/common/payment-gateways/wepay.php:36 +#: includes/common/payment-gateways/wepay.php:299 +msgid "WePay" +msgstr "WePay" + +#: includes/common/payment-gateways/_payway.php:366 +msgid "Rejected - A payment was rejected." +msgstr "Refusé: un paiment a été refusé" + +#: includes/common/payment-gateways/_payway.php:360 +msgid "Failed - A payment was rejected due to an error." +msgstr "Echec: un paiement a été refusé suite à une erreur" + +#: includes/common/payment-gateways/_payway.php:342 +msgid "PayWay balance, Credit Card, or Instant Transfer" +msgstr "balance de PayWay, carte de crédit, ou Instant Transfer" + +#: includes/common/payment-gateways/_payway.php:298 +msgid "Full path of the cacerts.crt file" +msgstr "chemin complet pour le fichier: cacerts.crt" + +#: includes/common/payment-gateways/_payway.php:284 +msgid "User Name" +msgstr "Nom d' utilisateur" + +#: includes/common/payment-gateways/_payway.php:277 +msgid "Biller Code" +msgstr "code de facturation" + +#: includes/common/payment-gateways/_payway.php:273 +msgid "Log Directory" +msgstr "Dossier des Logs" + +#: includes/common/payment-gateways/_payway.php:266 +msgid "Encryption Key" +msgstr "clef de chiffrement" + +#: includes/common/payment-gateways/_payway.php:60 +msgid "Your PayWay transaction has been canceled." +msgstr "Votre transaction PayWay a été annulée" + +#: includes/common/payment-gateways/_payway.php:40 +#: includes/common/payment-gateways/_payway.php:41 +msgid "PayWay" +msgstr "PayWay" + +#: includes/common/payment-gateways/paypal-chained-payments.php:862 +msgid "You must register this application with PayPal using your business account login to get an Application ID that will work with your API credentials. A bit of a hassle, but worth it! In the near future we will be looking for ways to simplify this process. Register then submit your application while logged in to the developer portal. Note that you do not need an Application ID for testing in sandbox mode. More Information »" +msgstr "Vous devez enregistrer cette application avec Paypall en vous connectant à votre compte \"business\" de façon à obtenir une ID pour cette application et qui fonctionnera avec le certificat de votre API. C' est un peu gênant, mais, dans un proche futur, nous simplifierons la procédure Register then submit your application while logged in to the developer portal. Note that you do not need an Application ID for testing in sandbox mode. More Information »" + +#: includes/common/payment-gateways/paypal-chained-payments.php:818 +#: includes/common/payment-gateways/paypal-chained-payments.php:840 +#: includes/common/payment-gateways/paypal-express.php:705 +msgid "You must login to PayPal and create an API signature to get your credentials. Instructions »" +msgstr "Vous devez vous connecter sur Paypal et créer une signature API pour obtenir les éléments du certificat Instructions »" + +#: includes/common/payment-gateways/paypal-payflow.php:378 +msgid "Use Payflow payment gateway to accept online payments using your Internet merchant account and processing network. PayPal Payflow Pro is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:595 +msgid "Tags Only" +msgstr "Mots-clés seulement" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:594 +msgid "Category Only" +msgstr "Catégorie Seulement" + +#: includes/admin/class-mp-shortcode-builder.php:795 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:593 +msgid "Category & Tags" +msgstr "Catégorie & Mots clés" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:591 +msgid "Relate Products By" +msgstr "Produits semblables" + +#: includes/admin/class-mp-shortcode-builder.php:1008 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:455 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:751 +msgid "Right" +msgstr "Droite" + +#: includes/admin/class-mp-shortcode-builder.php:1007 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:454 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:749 +msgid "Left" +msgstr "Gauche" + +#: includes/admin/class-mp-shortcode-builder.php:1009 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:750 +msgid "Center" +msgstr "Centre" + +#: marketpress.php:273 +msgid "Orders from your e-commerce store." +msgstr "Les commandes de votre boutique e-commerce." + +#: marketpress.php:231 +msgid "Products for your e-commerce store." +msgstr "Produits pour votre boutique e-commerce." + +#: marketpress.php:222 +msgid "Edit Product" +msgstr "Modifier le produit" + +#. Description of the plugin/theme +msgid "The complete WordPress ecommerce plugin - works perfectly with BuddyPress and Multisite too to create a social marketplace, where you can take a percentage! Activate the plugin, adjust your settings then add some products to your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:272 +msgid "Beside" +msgstr "À côté" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:271 +msgid "Above" +msgstr "Au-dessus" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:268 +msgid "Pin Count" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:261 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:287 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:318 +msgid "All View" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:260 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:286 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:317 +msgid "Single View" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:259 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:285 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:316 +msgid "Off" +msgstr "Désactivé" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:578 +msgid "Related Product Limit" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:681 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1201 +msgid "Applies To" +msgstr "S'applique à" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:685 +msgid "All Products" +msgstr "Tous les produits" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:487 +msgid "The label shown for the tax line item in the cart. Taxes, VAT, GST, etc." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:485 +msgid "Tax Label" +msgstr "Étiquette Taxe" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:81 +msgid "Apply" +msgstr "Appliquer" + +#: includes/admin/class-mp-admin.php:192 +msgid "MarketPress Instructions" +msgstr "Instructions MarketPress" + +#: includes/admin/class-mp-products-admin.php:1954 +#: includes/admin/class-mp-products-admin.php:2194 includes/common/data.php:62 +#: includes/common/helpers.php:150 +msgid "Taxes" +msgstr "Taxes" + +#: includes/admin/class-mp-products-admin.php:1417 +#: includes/common/class-mp-product.php:2900 +msgid "Related Products" +msgstr "Produits Connexes" + +#: includes/common/shipping-modules/mp-usps.php:282 +#: includes/common/shipping-modules/mp-usps.php:316 +msgid "@ Max" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "(3-5 days)" +msgstr "(3-5 jours)" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "Priority Mail Express International Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:92 +msgid "Priority Mail Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:171 +#: includes/common/shipping-modules/mp-pickup.php:247 +msgid "In Store" +msgstr "En Magasin" + +#: includes/common/shipping-modules/mp-pickup.php:159 +msgid "Pickup Fee" +msgstr "Frais de Retrait" + +#: includes/common/shipping-modules/mp-pickup.php:141 +msgid "This option allows your customers to indicate that they will pick-up their order at your place of business." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:60 +#: includes/common/shipping-modules/mp-pickup.php:76 +#: includes/common/shipping-modules/mp-pickup.php:176 +msgid "Pickup Instructions" +msgstr "Instructions de Retrait" + +#: includes/common/shipping-modules/mp-pickup.php:24 +#: includes/common/shipping-modules/mp-pickup.php:254 +msgid "Pickup" +msgstr "Retrait" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping - 0.00" +msgstr "Livraison Gratuite - 0.00" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:256 +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:440 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping" +msgstr "Franco de port" + +#: includes/common/shipping-modules/mp-fedex.php:309 +msgid "Your Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:301 +msgid "Station" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:300 +msgid "Request Courier" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:299 +msgid "Drop Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:298 +msgid "Business Service Center" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:297 +msgid "Regular Pickup" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:135 +#: includes/common/shipping-modules/mp-fedex.php:264 +msgid "Production" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:207 +msgid "Simplify Commerce by MasterCard" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:104 +msgid "When in live mode, although it is not required, Simplify recommends you have an SSL certificate." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:183 +#: includes/common/payment-gateways/simplify.php:87 +msgid "Public Key" +msgstr "Clé publique" + +#: includes/common/payment-gateways/paymill.php:175 +#: includes/common/payment-gateways/simplify.php:94 +msgid "Private Key" +msgstr "Clé privée" + +#: includes/common/payment-gateways/simplify.php:71 +msgid "Simplify helps merchants to accept online payments from Mastercard, Visa, American Express, Discover, JCB, and Diners Club cards. It's that simple. We offer a merchant account and payment gateway in a single, secure package so you can concentrate on what really matters to your business. Only supports USD currently." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:267 +msgid "%1$s" +msgstr "%1$s" + +#: includes/common/payment-gateways/simplify.php:151 +msgid "The Simplify Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/simplify.php:18 +msgid "Simplify" +msgstr "Simplifier" + +#: includes/common/payment-gateways/pin.php:255 +msgid "%1$s Card %2$s" +msgstr "%1$s Carte %2$s" + +#: includes/common/payment-gateways/pin.php:211 +msgid "The PIN Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:187 +msgid "Selecting a currency other than currency supported by PIN may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/pin.php:164 +msgid "You must login to PIN to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/pin.php:158 +msgid "When in live mode PIN recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/pin.php:45 +#: includes/common/payment-gateways/pin.php:286 +msgid "PIN" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:830 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:534 +#: includes/common/payment-gateways/paypal-express.php:865 +msgid "The payment is pending" +msgstr "Le payment est en attente" + +#: includes/common/payment-gateways/paymill.php:235 +msgid "The Paymill Token was not generated correctly. Please go back and try again." +msgstr "Le jeton Paymill n'a pas été généré correctement. S'il vous plaît revenez en arrière et essayer à nouveau." + +#: includes/common/payment-gateways/paymill.php:169 +msgid "You must login to Paymill to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:45 +#: includes/common/payment-gateways/paymill.php:308 +msgid "Paymill" +msgstr "Paymill" + +#: includes/common/payment-gateways/paymill.php:90 +msgid "Invalid cardholder" +msgstr "Titulaire de la carte non valide" + +#: includes/common/payment-gateways/paymill.php:89 +msgid "Card is no longer valid or has expired" +msgstr "La carte n'est plus valide ou à expirée" + +#: includes/common/payment-gateways/paymill.php:88 +msgid "Please enter a valid Card CVC" +msgstr "Entrez un CVC de la carte valide s'il vous plaît" + +#: includes/common/payment-gateways/paymill.php:87 +msgid "Please choose a valid Expiration Date." +msgstr "S'il vous plait choisissez une date d'expiration valide." + +#: includes/common/payment-gateways/skrill.php:99 +#: includes/common/payment-gateways/skrill.php:100 +msgid "Skrill (Moneybookers)" +msgstr "Skrill (Moneybookers)" + +#: includes/common/shipping-modules/mp-weight-rate.php:24 +#: includes/common/shipping-modules/mp-weight-rate.php:292 +msgid "Weight Rate" +msgstr "Frais de livraison selon poids" + +#: includes/common/shipping-modules/mp-usps.php:303 +msgid "USPS Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:270 +msgid "USPS Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:264 +msgid "USPS Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:145 +msgid "Flat Rate Large" +msgstr "Taux fixe grand" + +#: includes/common/shipping-modules/mp-usps.php:140 +msgid "Flat Rate Medium 2" +msgstr "Taux fixe médium 2" + +#: includes/common/shipping-modules/mp-usps.php:135 +msgid "Flat Rate Medium 1" +msgstr "Taux fixe médium 1" + +#: includes/common/shipping-modules/mp-usps.php:130 +msgid "Flat Rate Small" +msgstr "Taux fixe: petit" + +#: includes/common/shipping-modules/mp-usps.php:118 +msgid "First Class International Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:114 +msgid "Priority Mail International Small Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:112 +msgid "Priority Mail International Medium Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:110 +msgid "Priority Mail International Large Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:108 +msgid "Priority Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:106 +msgid "Express Mail International Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:104 +msgid "Express Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:98 +msgid "Library Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:96 +msgid "Media Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "First-Class Mail Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:90 +msgid "Priority Mail Small Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:88 +msgid "Priority Mail Medium Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +#: includes/common/shipping-modules/mp-usps.php:88 +#: includes/common/shipping-modules/mp-usps.php:90 +#: includes/common/shipping-modules/mp-usps.php:92 +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "(2-4 days)" +msgstr "(2-4 jours)" + +#: includes/common/shipping-modules/mp-usps.php:86 +msgid "Priority Mail Large Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "(2-4) days" +msgstr "(2-4) jours" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "Priority Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "Express Mail Sunday/Holiday Delivery Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:80 +msgid "Express Mail Flat Rate Boxes Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:78 +msgid "Express Mail Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:76 +msgid "Express Mail Sunday/Holiday Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:74 +msgid "Express Mail Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:72 +#: includes/common/shipping-modules/mp-usps.php:74 +#: includes/common/shipping-modules/mp-usps.php:76 +#: includes/common/shipping-modules/mp-usps.php:78 +#: includes/common/shipping-modules/mp-usps.php:80 +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "(1-2 days)" +msgstr "(1-2 jours)" + +#: includes/common/shipping-modules/mp-usps.php:72 +msgid "Express Mail" +msgstr "Express Mail" + +#: includes/common/shipping-modules/mp-usps.php:67 +#: includes/common/shipping-modules/mp-usps.php:902 +msgid "USPS" +msgstr "USPS" + +#: includes/common/shipping-modules/mp-ups.php:534 +msgid "UPS (beta)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:166 +msgid "Required if using negotiated rates" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "Worldwide Express Plus" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "(Scheduled)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "Standard" +msgstr "Standard" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "(2-5 Days)" +msgstr "(2-5 jours)" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "Worldwide Expedited" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:54 +msgid "Worldwide Express" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "2nd Day Air AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "(1 Days)" +msgstr "(1 jour)" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "Next Day Air Early AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "Next Day Air Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "3 Day Select" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:49 +msgid "Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:48 +msgid "2nd Day Air" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "Next Day Air" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:475 +#: includes/common/shipping-modules/mp-ups.php:43 +msgid "UPS" +msgstr "UPS" + +#: includes/common/shipping-modules/mp-table-rate.php:27 +#: includes/common/shipping-modules/mp-table-rate.php:318 +msgid "Table Rate" +msgstr "Taux selon un tableau" + +#: includes/common/shipping-modules/mp-table-quantity.php:71 +#: includes/common/shipping-modules/mp-table-quantity.php:77 +msgid "Shipping Cost: " +msgstr "Coût d'expédition supplémentaire: " + +#: includes/common/shipping-modules/mp-table-quantity.php:70 +#: includes/common/shipping-modules/mp-table-quantity.php:76 +msgid "If quantity is greater than:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:66 +msgid "Each band must be a higher price than the one above it." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:56 +msgid "Number of Bands:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:53 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Each layer must be a higher quantity than the previous." +msgstr "Soyez sûr d'entrer un prix d'expédition pour chaque option ou les clients peuvent obtenir la livraison gratuite. Chaque niveau doit être un prix plus élevé que le précédent." + +#: includes/common/shipping-modules/mp-table-quantity.php:51 +msgid "Table Quantity Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:31 +msgid "Table Quantity" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:135 +#: includes/common/shipping-modules/mp-table-rate.php:174 +#: includes/common/shipping-modules/mp-weight-rate.php:189 +msgid "European Union" +msgstr "Union Européenne" + +#: includes/common/shipping-modules/mp-flat-rate.php:123 +#: includes/common/shipping-modules/mp-table-rate.php:162 +#: includes/common/shipping-modules/mp-weight-rate.php:177 +msgid "United States" +msgstr "États-Unis" + +#: includes/common/shipping-modules/mp-flat-rate.php:111 +#: includes/common/shipping-modules/mp-table-rate.php:151 +#: includes/common/shipping-modules/mp-weight-rate.php:166 +msgid "In Country" +msgstr "National" + +#: includes/common/shipping-modules/mp-flat-rate.php:146 +#: includes/common/shipping-modules/mp-table-rate.php:186 +#: includes/common/shipping-modules/mp-weight-rate.php:201 +msgid "International" +msgstr "International" + +#: includes/common/shipping-modules/mp-flat-rate.php:101 +#: includes/common/shipping-modules/mp-table-rate.php:141 +#: includes/common/shipping-modules/mp-weight-rate.php:156 +msgid "Canada" +msgstr "Canada" + +#: includes/common/shipping-modules/mp-flat-rate.php:92 +#: includes/common/shipping-modules/mp-table-rate.php:132 +#: includes/common/shipping-modules/mp-weight-rate.php:147 +msgid "Hawaii and Alaska" +msgstr "Hawaii and Alaska" + +#: includes/common/shipping-modules/mp-flat-rate.php:83 +#: includes/common/shipping-modules/mp-table-rate.php:123 +#: includes/common/shipping-modules/mp-weight-rate.php:138 +msgid "Lower 48 States" +msgstr "Lower 48 States" + +#: includes/common/shipping-modules/mp-flat-rate.php:64 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping." +msgstr "Soyez sûr d'entrer un prix de livraison pour chaque option ou les clients peuvent obtenir la livraison gratuite." + +#: includes/common/shipping-modules/mp-flat-rate.php:25 +#: includes/common/shipping-modules/mp-flat-rate.php:223 +msgid "Flat Rate" +msgstr "Taux fixe" + +#: includes/common/shipping-modules/mp-fedex.php:761 +msgid "FedEx (beta)" +msgstr "FedEx (beta)" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Centimeters" +msgstr "Centimètres" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Inches" +msgstr "Pouces" + +#: includes/admin/class-mp-products-admin.php:1676 +#: includes/admin/class-mp-setup-wizard.php:547 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:166 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +msgid "Kilograms" +msgstr "Kilogrammes" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:103 +msgid " %1$s - %2$s" +msgstr " %1$s - %2$s" + +#: includes/common/shipping-modules/mp-usps.php:358 +msgid "Max Weight per Box" +msgstr "Poids max par colis" + +#: includes/common/shipping-modules/mp-usps.php:356 +msgid "Box Dimensions" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:354 +msgid "Box Name" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:344 +msgid "Total weight selects the box size used for calculating Shipping costs." +msgstr "Poids total sélectionne la taille de la boîte utilisée pour calculer les coûts d'expédition." + +#: includes/common/shipping-modules/mp-usps.php:343 +msgid "For each box defined enter the maximum weight it can contain." +msgstr "Pour chaque boîte, définir le poids maximum qu'il peut contenir." + +#: includes/common/shipping-modules/mp-usps.php:341 +msgid "Enter your standard box sizes as LengthxWidthxHeight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:386 +#: includes/common/shipping-modules/mp-ups.php:193 +#: includes/common/shipping-modules/mp-usps.php:234 +#: includes/common/shipping-modules/mp-usps.php:338 +msgid "Standard Boxes and Weight Limits" +msgstr "Colis standards et limites sur le poids" + +#: includes/common/shipping-modules/mp-usps.php:328 +msgid "Handling Charge per Interntional Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:294 +msgid "Handling Charge per Domestic Shipment " +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:388 +#: includes/common/shipping-modules/mp-ups.php:196 +#: includes/common/shipping-modules/mp-usps.php:237 +msgid "Add Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "(Next Day)" +msgstr "(Jour suivant)" + +#: includes/common/shipping-modules/mp-fedex.php:63 +msgid "Europe First International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:62 +msgid "International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:61 +#: includes/common/shipping-modules/mp-fedex.php:62 +#: includes/common/shipping-modules/mp-ups.php:54 +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "(1-3 Days)" +msgstr "(1-3 jours)" + +#: includes/common/shipping-modules/mp-fedex.php:61 +msgid "International First" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "(5 Days)" +msgstr "(5 jours)" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "International Economy" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "(2-7 Days)" +msgstr "(2-7 jours)" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "Smart Post" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:55 +#: includes/common/shipping-modules/mp-ups.php:49 +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "(1-5 Days)" +msgstr "(1-5 jours)" + +#: includes/common/shipping-modules/mp-fedex.php:55 +msgid "Ground Home Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "(1-7 Days)" +msgstr "(1-7 jours)" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "Fedex Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:53 +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "(3 Days)" +msgstr "(3 jours)" + +#: includes/common/shipping-modules/mp-fedex.php:53 +msgid "Fedex Express Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +#: includes/common/shipping-modules/mp-ups.php:48 +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "(2 Days)" +msgstr "(2 jours)" + +#: includes/common/shipping-modules/mp-fedex.php:52 +msgid "Fedex 2 Day" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "(2 Days am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "Fedex 2 Day AM" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "(1 Day)" +msgstr "(1 jour)" + +#: includes/common/shipping-modules/mp-fedex.php:50 +msgid "Standard Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "(1 Day am )" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "Priority Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "(1 Day am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "First Overnight" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:476 +#: includes/common/shipping-modules/mp-fedex.php:31 +msgid "FedEx" +msgstr "FedEx" + +#: includes/common/payment-gateways/paymill.php:270 +#: includes/common/payment-gateways/simplify.php:179 +#: includes/common/payment-gateways/stripe.php:365 +msgid "%1$s Card ending in %2$s - Expires %3$s" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:259 +#: includes/common/payment-gateways/pin.php:238 +#: includes/common/payment-gateways/simplify.php:171 +msgid "%s Store Purchase - Order ID: %s, Email: %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:266 +msgid "You must login to Stripe to get your API credentials. You can enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:261 +msgid "When in live mode Stripe recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:311 +msgid "The Stripe Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:263 +#: includes/common/payment-gateways/paymill.php:122 +#: includes/common/payment-gateways/stripe.php:222 +msgid "Card Number" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:86 +msgid "Please enter a valid Credit Card Number." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:45 +#: includes/common/payment-gateways/stripe.php:433 +msgid "Stripe" +msgstr "Stripe" + +#: includes/common/payment-gateways/paypal-express.php:750 +msgid "Sets the background color for the payment page. By default, the color is white." +msgstr "Définit la couleur de fond pour la page de paiement. Par défaut, la couleur est le blanc." + +#: includes/common/payment-gateways/paypal-express.php:745 +msgid "Sets the background color for the header of the payment page. By default, the color is white." +msgstr "Définit la couleur de fond pour l'entête de la page de paiement. Par défaut, la couleur est le blanc." + +#: includes/common/payment-gateways/paypal-express.php:740 +msgid "Sets the border color around the header of the payment page. The border is a 2-pixel perimeter around the header space, which is 750 pixels wide by 90 pixels high. By default, the color is black." +msgstr "Définit la couleur de bordure autour de la tête de la page de paiement. La frontière est un périmètre de 2 pixels autour de l'espace-tête, qui est de 750 pixels de large par 90 pixels de haut. Par défaut, la couleur est noire." + +#: includes/common/payment-gateways/paypal-express.php:735 +msgid "URL for an image you want to appear at the top left of the payment page. The image has a maximum size of 750 pixels wide by 90 pixels high. PayPal recommends that you provide an image that is stored on a secure (https) server. If you do not specify an image, the business name is displayed." +msgstr "URL d'une image que vous souhaitez voir apparaître en haut à gauche de la page de paiement. L'image a une taille maximale de 750 pixels de large par 90 pixels de haut. PayPal vous recommande de fournir une image qui est stocké sur une connexion sécurisée (https) du serveur. Si vous ne spécifiez pas une image, le nom de l'entreprise est affiché." + +#: includes/common/payment-gateways/paypal-express.php:857 +#: includes/common/payment-gateways/paypal-express.php:1131 +msgid "The payment is pending because it is part of an order that has been authorized but not settled." +msgstr "Le paiement est en attente parce qu'il fait partie d'un ordre qui a été autorisé mais non encore réglées." + +#: includes/common/payment-gateways/paypal-express.php:853 +#: includes/common/payment-gateways/paypal-express.php:1127 +msgid "The payment is pending because it has been authorized but not settled. You must capture the funds first." +msgstr "Le paiement est en attente parce qu'il a été autorisé mais non encore réglées. Vous devez capturer les premiers fonds." + +#: includes/common/payment-gateways/paypal-express.php:847 +#: includes/common/payment-gateways/paypal-express.php:1120 +msgid "You denied the payment when it was marked as pending." +msgstr "Vous avez refusé le paiement quand elle a été marquée comme étant en attente." + +#: includes/common/payment-gateways/paypal-express.php:837 +#: includes/common/payment-gateways/paypal-express.php:1108 +msgid "A reversal has occurred on this transaction due to an unknown reason." +msgstr "Une inversion s'est produite sur cette transaction pour une raison inconnue." + +#: includes/common/payment-gateways/paypal-express.php:836 +#: includes/common/payment-gateways/paypal-express.php:1107 +msgid "A reversal has occurred on this transaction because you have given the customer a refund." +msgstr "Une inversion s'est produite dans cette transaction parce que vous avez donnée au client un remboursement." + +#: includes/common/payment-gateways/paypal-express.php:835 +#: includes/common/payment-gateways/paypal-express.php:1106 +msgid "A reversal has occurred on this transaction due to a complaint about the transaction from your customer." +msgstr "Une inversion s'est produite sur cette transaction en raison d'une plainte au sujet de la transaction de votre client." + +#: includes/common/payment-gateways/paypal-express.php:834 +#: includes/common/payment-gateways/paypal-express.php:1105 +msgid "A reversal has occurred on this transaction due to your customer triggering a money-back guarantee." +msgstr "Une inversion s'est produite sur cette transaction en raison de votre client déclenche une garantie de remboursement." + +#: includes/common/payment-gateways/paypal-express.php:833 +#: includes/common/payment-gateways/paypal-express.php:1104 +msgid "A reversal has occurred on this transaction due to a chargeback by your customer." +msgstr "Une inversion s'est produite sur cette transaction en raison d'un rejet de débit par votre client." + +#: includes/common/payment-gateways/paypal-express.php:1101 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer:" +msgstr "Un paiement a été annulé en raison d'un rejet de débit ou tout autre type d'inversion. Les fonds ont été retirés du solde de votre compte et retourné à l'acheteur:" + +#: includes/common/payment-gateways/paypal-express.php:826 +#: includes/common/payment-gateways/paypal-express.php:1097 +msgid "A payment has been accepted." +msgstr "Un paiement a été accepté." + +#: includes/common/payment-gateways/paypal-express.php:818 +#: includes/common/payment-gateways/paypal-express.php:1087 +msgid "The transaction has not terminated, e.g. an authorization may be awaiting completion." +msgstr "La transaction n'est pas terminée, par exemple une autorisation peut être en attente d'achèvement." + +#: includes/common/payment-gateways/payfast.php:531 +#: includes/common/payment-gateways/paypal-express.php:810 +#: includes/common/payment-gateways/paypal-express.php:1077 +msgid "The payment has failed. This happens only if the payment was made from your customer's bank account." +msgstr "Le paiement a échoué. Cela se produit uniquement si le paiement a été effectué à partir du compte bancaire de votre client." + +#: includes/common/payment-gateways/paypal-express.php:806 +#: includes/common/payment-gateways/paypal-express.php:1072 +msgid "An authorization for this transaction has been voided." +msgstr "Une autorisation pour cette transaction a été annulée." + +#: includes/common/payment-gateways/paypal-express.php:802 +#: includes/common/payment-gateways/paypal-express.php:1067 +msgid "The authorization period for this payment has been reached." +msgstr "La période d'autorisation pour ce versement a été dépassée." + +#: includes/common/payment-gateways/paypal-express.php:798 +#: includes/common/payment-gateways/paypal-express.php:1062 +msgid "A reversal has been canceled; for example, when you win a dispute and the funds for the reversal have been returned to you." +msgstr "Une inversion a été annulée, par exemple, quand vous gagnez un différend et le fonds pour l'inversion ont été retournés." + +#: includes/common/payment-gateways/paypal-express.php:499 +#: includes/common/payment-gateways/paypal-express.php:1163 +msgid "PayPal Express Checkout" +msgstr "Commande PayPal Express" + +#: includes/common/payment-gateways/paypal-chained-payments.php:798 +msgid "Gateway Settings Page Message" +msgstr "Paramètres Page Message Plateforme" + +#: includes/common/payment-gateways/paypal-express.php:725 +msgid "Signature" +msgstr "Signature" + +#: includes/common/payment-gateways/eway31.php:506 +#: includes/common/payment-gateways/eway31.php:533 +#: includes/common/shipping-modules/mp-fedex.php:276 +msgid "API Password" +msgstr "Mot de passe API" + +#: includes/common/payment-gateways/paypal-chained-payments.php:773 +msgid "Enter a percentage of all store sales to collect as a fee. Decimals allowed." +msgstr "Entrez un pourcentage de toutes les ventes des magasins pour collecter à titre de frais. Décimales autorisés." + +#: includes/common/payment-gateways/paypal-chained-payments.php:757 +msgid "Using PayPal Chained Payments allows you as the multisite network owner to collect a predefined fee or percentage of all sales on network MarketPress stores! This is invisible to the customers who purchase items in a store, and all PayPal fees will be charged to the store owner. To use this option you must create API credentials, and you should make all other gateways unavailable or limited above." +msgstr "En utilisant PayPal Paiements enchaînés vous permet en tant que propriétaire du réseau multisite à percevoir des honoraires prédéfinis ou le pourcentage de toutes les ventes sur les magasins MarketPress réseau! Ceci est invisible pour les clients qui achètent des articles dans un magasin, et tous les frais Paypal seront facturés au propriétaire du magasin. Pour utiliser cette option, vous devez créer informations d'authentification API, et vous devez prendre toutes les autres passerelles indisponible ou limitée ci-dessus." + +#: includes/common/payment-gateways/paypal-chained-payments.php:338 +msgid "Please be aware that we will deduct a ?% fee from the total of each transaction in addition to any fees PayPal may charge you. If for any reason you need to refund a customer for an order, please contact us with a screenshot of the refund receipt in your PayPal history as well as the Transaction ID of our fee deduction so we can issue you a refund. Thank you!" +msgstr "Please be aware that we will deduct a ?% fee from the total of each transaction in addition to any fees PayPal may charge you. If for any reason you need to refund a customer for an order, please contact us with a screenshot of the refund receipt in your PayPal history as well as the Transaction ID of our fee deduction so we can issue you a refund. Thank you!" + +#: includes/common/payment-gateways/paypal-chained-payments.php:698 +#: includes/common/payment-gateways/paypal-express.php:149 +msgid "There was a problem connecting to PayPal. Please try again." +msgstr "Il y a eu un problème durant la connexion à PayPal. Essayez encore, svp." + +#: includes/common/payment-gateways/paypal-chained-payments.php:470 +#: includes/common/payment-gateways/paypal-express.php:1053 +msgid "There was a problem verifying the IPN string with PayPal. Please try again." +msgstr "Il y a eu un problème durant la vérification de votre string IPN avec PayPal. Essayez encore, svp." + +#: includes/common/payment-gateways/paypal-chained-payments.php:310 +msgid "There was a problem connecting to PayPal to check the status of your purchase. Please check the status of your order here »" +msgstr "Il y a eu un problème de connexion à PayPal pour vérifier l'état de votre achat. S'il vous plaît vérifiez l'état de votre commande ici »" + +#: includes/common/payment-gateways/payfast.php:539 +#: includes/common/payment-gateways/paypal-chained-payments.php:254 +#: includes/common/payment-gateways/paypal-express.php:1139 +msgid "The payment is pending." +msgstr "Le paiement est en attente." + +#: includes/common/payment-gateways/paypal-chained-payments.php:251 +#: includes/common/payment-gateways/paypal-chained-payments.php:531 +#: includes/common/payment-gateways/paypal-express.php:862 +#: includes/common/payment-gateways/paypal-express.php:1136 +msgid "The payment is pending for an unknown reason. For more information, contact PayPal customer service." +msgstr "Le paiement est en attente pour une raison inconnue. Pour plus d'informations, contactez le service clientèle de PayPal." + +#: includes/common/payment-gateways/paypal-chained-payments.php:250 +#: includes/common/payment-gateways/paypal-chained-payments.php:530 +#: includes/common/payment-gateways/paypal-express.php:861 +#: includes/common/payment-gateways/paypal-express.php:1135 +msgid "The payment is pending because you are not yet verified. You must verify your account before you can accept this payment." +msgstr "Le paiement est en attente parce que vous n'êtes pas encore vérifié. Vous devez vérifier votre compte avant de pouvoir accepter ce paiement." + +#: includes/common/payment-gateways/paypal-chained-payments.php:249 +#: includes/common/payment-gateways/paypal-chained-payments.php:529 +#: includes/common/payment-gateways/paypal-express.php:860 +#: includes/common/payment-gateways/paypal-express.php:1134 +msgid "The payment is pending because it was made via credit card and you must upgrade your account to Business or Premier status in order to receive the funds. It can also mean that you have reached the monthly limit for transactions on your account." +msgstr "Le paiement est en attente parce qu'il a été fait par carte de crédit et vous devez mettre à niveau votre compte pour affaires ou Premier, afin de recevoir les fonds. Il peut également signifier que vous avez atteint la limite mensuelle de transactions sur votre compte." + +#: includes/common/payment-gateways/paypal-chained-payments.php:248 +#: includes/common/payment-gateways/paypal-chained-payments.php:528 +#: includes/common/payment-gateways/paypal-express.php:859 +#: includes/common/payment-gateways/paypal-express.php:1133 +msgid "The payment is pending because it was made to an email address that is not yet registered or confirmed." +msgstr "Le paiement est en attente parce qu'il a été fait à une adresse email qui n'est pas encore enregistrée ou confirmée." + +#: includes/common/payment-gateways/paypal-chained-payments.php:247 +#: includes/common/payment-gateways/paypal-chained-payments.php:527 +#: includes/common/payment-gateways/paypal-express.php:858 +#: includes/common/payment-gateways/paypal-express.php:1132 +msgid "The payment is pending while it is being reviewed by PayPal for risk." +msgstr "Le paiement est en attente pendant qu'il est examiné par PayPal pour le risque." + +#: includes/common/payment-gateways/paypal-chained-payments.php:246 +#: includes/common/payment-gateways/paypal-chained-payments.php:526 +#: includes/common/payment-gateways/paypal-express.php:856 +#: includes/common/payment-gateways/paypal-express.php:1130 +msgid "You do not have a balance in the currency sent, and you do not have your Payment Receiving Preferences set to automatically convert and accept this payment. You must manually accept or deny this payment." +msgstr "Vous n'avez pas de solde dans la devise envoyé, et que vous n'avez pas votre réception de paiements préférences définies pour convertir automatiquement et accepter ce paiement. Vous devez accepter ou refuser manuellement ce paiement." + +#: includes/common/payment-gateways/paypal-chained-payments.php:245 +#: includes/common/payment-gateways/paypal-chained-payments.php:525 +#: includes/common/payment-gateways/paypal-express.php:855 +#: includes/common/payment-gateways/paypal-express.php:1129 +msgid "The payment is pending because you hold a non-U.S. account and do not have a withdrawal mechanism. You must manually accept or deny this payment from your Account Overview." +msgstr "Le paiement est en attente parce que vous détenez un compte non-US et n'ont pas un mécanisme de retrait. Vous devez accepter ou refuser manuellement ce paiement à partir de votre Aperçu du compte." + +#: includes/common/payment-gateways/paypal-chained-payments.php:244 +#: includes/common/payment-gateways/paypal-chained-payments.php:524 +#: includes/common/payment-gateways/paypal-express.php:854 +#: includes/common/payment-gateways/paypal-express.php:1128 +msgid "The payment is pending because it was made by an eCheck that has not yet cleared." +msgstr "Le paiement est en attente car il a été fait par un Chèque électronique qui n'a pas encore été validé." + +#: includes/common/payment-gateways/paypal-chained-payments.php:243 +#: includes/common/payment-gateways/paypal-chained-payments.php:523 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences section of your Profile." +msgstr "Le paiement est en attente car votre client n'a pas confirmé les informations de livraison et vos préférences sont définies pour que vous acceptiez ou refusiez manuellement ces paiements. Pour changer vos préférences, allez dans la section préférences de votre profil." + +#: includes/common/payment-gateways/paypal-chained-payments.php:236 +#: includes/common/payment-gateways/paypal-chained-payments.php:516 +msgid "The transaction was rejected by the receiver (you)." +msgstr "La transaction a été rejetée par le destinataire (vous)." + +#: includes/common/payment-gateways/paypal-chained-payments.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:510 +#: includes/common/payment-gateways/paypal-express.php:843 +#: includes/common/payment-gateways/paypal-express.php:1115 +msgid "You refunded the payment." +msgstr "Vous avez remboursé le paiement." + +#: includes/common/payment-gateways/paypal-chained-payments.php:224 +#: includes/common/payment-gateways/paypal-chained-payments.php:504 +msgid "The transaction is in progress." +msgstr "La transaction est en cours." + +#: includes/common/payment-gateways/paypal-chained-payments.php:212 +#: includes/common/payment-gateways/paypal-chained-payments.php:491 +#: includes/common/payment-gateways/paypal-express.php:814 +#: includes/common/payment-gateways/paypal-express.php:1082 +msgid "The payment has been partially refunded." +msgstr "Le paiement a été partiellement remboursé." + +#: includes/common/payment-gateways/paypal-chained-payments.php:202 +#: includes/common/payment-gateways/paypal-chained-payments.php:481 +msgid "PayPal balance, Credit Card, or Instant Transfer" +msgstr "Balance PayPal, Carte de Crédit ou Virement Bancaire" + +#: includes/common/payment-gateways/paypal-chained-payments.php:177 +msgid "There was a problem connecting to PayPal to setup your purchase. Please try again." +msgstr "Il y a eu un problème durant la connexion à PayPal pour votre achat. Essayez encore, svp." + +#: includes/common/payment-gateways/paypal-chained-payments.php:122 +msgid "Your PayPal transaction has been canceled." +msgstr "Votre transaction PayPal a été annulée." + +#: includes/common/payment-gateways/paypal-chained-payments.php:50 +#: includes/common/payment-gateways/paypal-chained-payments.php:53 +#: includes/common/payment-gateways/paypal-chained-payments.php:732 +#: includes/common/payment-gateways/paypal-express.php:500 +#: includes/common/payment-gateways/paypal-express.php:938 +msgid "PayPal" +msgstr "PayPal" + +#: includes/common/payment-gateways/paypal-chained-payments.php:48 +#: includes/common/payment-gateways/paypal-chained-payments.php:730 +#: includes/common/payment-gateways/paypal-chained-payments.php:756 +#: includes/common/payment-gateways/paypal-chained-payments.php:873 +msgid "PayPal Chained Payments" +msgstr "PayPal Chained Payments" + +#: includes/common/payment-gateways/paypal-payflow.php:59 +#: includes/common/payment-gateways/paypal-payflow.php:467 +msgid "PayPal Payflow Pro" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:378 +msgid "Chargeback - A payment was reversed due to a chargeback. The funds have been removed from your account balance and returned to the buyer." +msgstr "Chargeback - Un paiement a été reversé à cause d'un Chargeback. Les fonds ont été enlevés de la balance de votre compte et retournés à l'acheteur." + +#: includes/common/payment-gateways/skrill.php:372 +msgid "Failed - The Credit Card or Direct Debit transaction was declined." +msgstr "Echec - La carte de crédit ou le virement à échoué." + +#: includes/common/payment-gateways/_payway.php:354 +#: includes/common/payment-gateways/skrill.php:366 +msgid "Cancelled - The payment was cancelled manually by the sender in their online account history or was auto-cancelled after 14 days pending." +msgstr "Annulé - La paiement a été annulé manuellement par l'expéditeur de l'historique en ligne de son compte ou bien a été annulé automatiquement après 14 jours d'attente." + +#: includes/common/payment-gateways/skrill.php:360 +msgid "Pending - The payment is pending. It can take 2-3 days for bank transfers to complete." +msgstr "Attente - Le paiement est en attente. Cela peut prendre 2-3 jours avant que le transfert bancaire soit effectué." + +#: includes/common/payment-gateways/_payway.php:349 +#: includes/common/payment-gateways/skrill.php:354 +msgid "Processed - The payment has been completed, and the funds have been added successfully to your Moneybookers account balance." +msgstr "Traité - Le paiement a été complété, et les fonds ont été ajouté avec succès dans votre balance Moneybookers." + +#: includes/common/payment-gateways/skrill.php:189 +msgid "Shown to the customer on the confirmation screen - the end step of the process - a note, confirmation number, or any other message. Line breaks <br> may be used for longer messages." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:188 +msgid "Confirmation Note (optional)" +msgstr "Note de Confirmation (optionnel)" + +#: includes/common/payment-gateways/skrill.php:183 +msgid "The URL of the logo which you would like to appear at the top of the payment form. The logo must be accessible via HTTPS otherwise it will not be shown. For best integration results we recommend that you use a logo with dimensions up to 200px in width and 50px in height." +msgstr "L'url du logo qui doit apparaître en haut du formulaire de paiement. Le logo doit être accessible via HTTPS sinon il ne sera pas visible. Pour de meilleurs résultats d'intégration il est recommandé d'utiliser un logo de 200 pixels de largeur et de 50 pixels de hauteur." + +#: includes/common/payment-gateways/skrill.php:182 +msgid "Logo Image (optional)" +msgstr "Image de Logo (optionnel)" + +#: includes/common/payment-gateways/skrill.php:177 +msgid "The name of this store, which will be shown on the gateway. If no value is submitted, the account email will be shown as the recipient of the payment." +msgstr "Le nom de cette boutique, qui sera affiché sur la plateforme. Si aucune valeur saisie, l'email du compte sera affiché au destinataire du paiement." + +#: includes/common/payment-gateways/skrill.php:176 +msgid "Merchant Name (optional)" +msgstr "Nom Marchand (optionnel)" + +#: includes/common/payment-gateways/skrill.php:165 +msgid "Language" +msgstr "Langage" + +#: includes/common/payment-gateways/2checkout.php:368 +#: includes/common/payment-gateways/authorizenet-aim.php:262 +#: includes/common/payment-gateways/eway.php:363 +#: includes/common/payment-gateways/eway31.php:471 +#: includes/common/payment-gateways/mollie.php:91 +#: includes/common/payment-gateways/paymill.php:193 +#: includes/common/payment-gateways/paypal-chained-payments.php:356 +#: includes/common/payment-gateways/paypal-express.php:688 +#: includes/common/payment-gateways/paypal-payflow.php:432 +#: includes/common/payment-gateways/pin.php:186 +#: includes/common/payment-gateways/skrill.php:152 +#: includes/common/payment-gateways/stripe.php:288 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:104 +msgid "Currency" +msgstr "Monnaie" + +#: includes/common/payment-gateways/2checkout.php:359 +#: includes/common/payment-gateways/skrill.php:143 +msgid "Secret Word" +msgstr "Mot Secret" + +#: includes/common/payment-gateways/skrill.php:261 +msgid "Order ID:" +msgstr "ID Commande :" + +#: includes/common/payment-gateways/skrill.php:234 +msgid "Complete Checkout" +msgstr "Compléter Commande" + +#: includes/common/payment-gateways/skrill.php:204 +msgid "Your Moneybookers transaction has been canceled." +msgstr "Votre transaction Moneybookers a été annulée." + +#: includes/common/payment-gateways/manual-payments.php:155 +msgid "This is the email text to send to those who have made manual payment checkouts. You should include your manual payment instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "Ceci est le texte de l'email envoyé à ceux ayant effectué un paiement manuel. Vous devriez inclure vos instructions de paiement manuel ici. Cela remplacera l'email par défaut de commande. Ces codes seront remplacés par les détails de la commande : CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. HTML non-autorisé" + +#: includes/common/payment-gateways/_payway.php:257 +#: includes/common/payment-gateways/manual-payments.php:128 +msgid "Record payments manually, such as by Cash, Check, or EFT." +msgstr "Enregistrer les paiements manuels tels que espèces, chèques, etc..." + +#: includes/common/payment-gateways/manual-payments.php:71 +msgid "Manual/Invoice" +msgstr "Manuel/Facture" + +#: includes/admin/class-mp-setup-wizard.php:648 +#: includes/common/payment-gateways/manual-payments.php:35 +#: includes/common/payment-gateways/manual-payments.php:36 +msgid "Manual Payment" +msgstr "Paiement manuel :" + +#: includes/common/payment-gateways/manual-payments.php:34 +#: includes/common/payment-gateways/manual-payments.php:163 +msgid "Manual Payments" +msgstr "Paiements Manuels :" + +#: includes/common/payment-gateways/_ideal.php:288 +msgid "iDEAL Simulator (for testing)" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:287 +msgid "ABN Amro Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:286 +msgid "Friesland Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:285 +msgid "Rabobank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:284 +msgid "ING Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:279 +msgid "Bank" +msgstr "Banque" + +#: includes/common/payment-gateways/_ideal.php:270 +msgid "To make it easier to pay for online products and services, the Dutch banking community has developed the iDEAL online payment method. iDEAL allows online payments to be made using online banking in EUR only." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:247 +#: includes/common/payment-gateways/_payway.php:199 +#: includes/common/payment-gateways/manual-payments.php:68 +msgid "Invoiced" +msgstr "Facturé" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1016 +msgid "Coupon" +msgstr "Bon de réduction" + +#: includes/common/payment-gateways/_ideal.php:77 +#: includes/common/payment-gateways/_ideal.php:250 +#: includes/common/payment-gateways/_payway.php:202 +msgid "iDEAL" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:76 +msgid "iDEAL (beta)" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:327 +msgid "Merchant Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:293 +#: includes/common/payment-gateways/_payway.php:302 +#: includes/common/payment-gateways/payfast.php:324 +msgid "Merchant ID" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:462 +msgid "eWay Rapid 3.0 Payments lets merchants recieve credit card payments through eWay without need for users to leave the shop. Note this gateway requires a valid SSL certificate configured for this site." +msgstr "" + +#: includes/common/payment-gateways/eway.php:452 +msgid "There was a problem connecting to eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/eway.php:432 +#: includes/common/payment-gateways/eway.php:437 +msgid "The url of the image can be hosted on your website and pass the secure https:// path of the image to be displayed at the top of the website. This is the second image block on the webpage and is restricted to 960px X 65px. A default secure image is used if none is supplied." +msgstr "" + +#: includes/common/payment-gateways/eway.php:431 +#: includes/common/payment-gateways/eway.php:436 +msgid "Company Logo (optional)" +msgstr "Logo de l'Entreprise (optionnel)" + +#: includes/common/payment-gateways/eway.php:427 +msgid "The page footer text can be customised and populated below the customer's order details. Useful for contact information." +msgstr "" + +#: includes/common/payment-gateways/eway.php:426 +msgid "Page Footer (optional)" +msgstr "Pied de Page (optionnel)" + +#: includes/common/payment-gateways/eway.php:421 +msgid "Page Description (optional)" +msgstr "Description de Page (optionnelle)" + +#: includes/common/payment-gateways/eway.php:417 +#: includes/common/payment-gateways/eway.php:422 +msgid "This value is used to populate the browsers title bar at the top of the screen." +msgstr "" + +#: includes/common/payment-gateways/eway.php:416 +msgid "Page Title (optional)" +msgstr "Titre de Page (optionnel)" + +#: includes/common/payment-gateways/eway.php:412 +msgid "This will be displayed as the company the customer is purchasing from, including this is highly recommended." +msgstr "" + +#: includes/common/payment-gateways/eway.php:411 +msgid "Company Name" +msgstr "Nom de la société" + +#: includes/common/payment-gateways/eway.php:394 +msgid "Customer ID" +msgstr "" + +#: includes/common/payment-gateways/eway.php:381 +#: includes/common/payment-gateways/eway31.php:488 +msgid "Live API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway.php:371 +#: includes/common/payment-gateways/eway31.php:479 +msgid "Gateway Mode" +msgstr "" + +#: includes/common/payment-gateways/eway.php:354 +msgid "The Hosted Page is a webpage hosted on eWAY's side eliminating the need for merchants to capture, transmit or store credit card numbers. At the checkout time the merchant automatically redirects the customer to the Hosted Page where they would enter their details and have the transaction processed. Upon completion of the transaction the customer is redirected back to the MarketPress checkout confirmation page." +msgstr "" + +#: includes/common/payment-gateways/eway.php:314 +msgid "There was a problem with your credit card information: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:300 +msgid "Paid - The card has been processed - %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:253 +msgid "There was a problem setting up the transaction with eWay: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:245 +#: includes/common/payment-gateways/eway.php:289 +msgid "There was a problem parsing the response from eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:159 +#: includes/common/payment-gateways/eway.php:189 +#: includes/common/payment-gateways/paypal-chained-payments.php:634 +#: includes/common/payment-gateways/paypal-express.php:322 +#: includes/common/payment-gateways/paypal-express.php:473 +msgid "%s Store Purchase - Order ID: %s" +msgstr "%s Store Purchase - Order ID: %s" + +#: includes/common/payment-gateways/eway.php:147 +#: includes/common/payment-gateways/eway.php:462 +msgid "eWay Shared Payments" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:214 +msgid "This is the email text to send to those who have made CubePoints checkouts. You should include your CubePoints instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:212 +#: includes/common/payment-gateways/free_orders.php:188 +#: includes/common/payment-gateways/manual-payments.php:154 +msgid "Order Confirmation Email" +msgstr "Email Confirmation Commande" + +#: includes/common/payment-gateways/_cubepoints.php:207 +#: includes/common/payment-gateways/manual-payments.php:149 +msgid "Confirmation User Instructions" +msgstr "Confirmation Instructions Utilisateur" + +#: includes/common/payment-gateways/_cubepoints.php:202 +#: includes/common/payment-gateways/manual-payments.php:144 +msgid "User Instructions" +msgstr "Instructions Utilisateur" + +#: includes/common/payment-gateways/_cubepoints.php:198 +#: includes/common/payment-gateways/free_orders.php:170 +#: includes/common/payment-gateways/manual-payments.php:139 +msgid "Enter a public name for this payment method that is displayed to users - No HTML" +msgstr "Entrez un nom public pour cette méthode qui sera affiché aux visiteurs (pas de HTML)" + +#: includes/admin/class-mp-orders-admin.php:532 +#: includes/common/payment-gateways/_cubepoints.php:196 +#: includes/common/payment-gateways/free_orders.php:169 +#: includes/common/payment-gateways/manual-payments.php:138 +msgid "Method Name" +msgstr "Nom Méthode" + +#: includes/common/payment-gateways/_cubepoints.php:187 +msgid "Accept CubePoints as payment(requires the CubePoints plugin)." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:140 +msgid "Sorry, but you do not appear to have enough points to complete this purchase!" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:124 +msgid "%s Store Purchase" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:79 +#: includes/common/payment-gateways/_cubepoints.php:171 +msgid "Your current points: " +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:133 +#: includes/common/payment-gateways/_cubepoints.php:197 +msgid "CubePoints" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:344 +msgid "Authorize.net AIM Checkout" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:331 +msgid "Custom API URL" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:332 +msgid "Many other gateways have Authorize.net API emulators. To use one of these gateways input their API post url here." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:322 +msgid "Request a delimited response from the payment gateway." +msgstr "Demandez une réponse délimitée par la passerelle de paiement." + +#: includes/common/payment-gateways/authorizenet-aim.php:316 +msgid "Security: MD5 Hash" +msgstr "Securité : MD5 Hash" + +#: includes/common/payment-gateways/authorizenet-aim.php:317 +msgid "The payment gateway generated MD5 hash value that can be used to authenticate the transaction response. Not needed because responses are returned using an SSL connection." +msgstr "La plateforme de paiement à généré un valeur MD5 qui peut être utilisée pour authentifier la réponse de transaction. Non nécessaire car les réponses sont envoyées avec une connexion SSL." + +#: includes/common/payment-gateways/authorizenet-aim.php:306 +msgid "Customer Receipt Email Footer" +msgstr "Bas Email Client" + +#: includes/common/payment-gateways/authorizenet-aim.php:296 +msgid "Customer Receipt Email Header" +msgstr "En-tête Email Client" + +#: includes/common/payment-gateways/authorizenet-aim.php:297 +#: includes/common/payment-gateways/paypal-payflow.php:446 +msgid "This text will appear as the header of the email receipt sent to the customer." +msgstr "Ce texte apparaîtra comme en-tête de l'email envoyé au client." + +#: includes/common/payment-gateways/authorizenet-aim.php:282 +msgid "Encapsulation Character" +msgstr "Caractère d'encapsulation" + +#: includes/common/payment-gateways/authorizenet-aim.php:283 +msgid "Authorize.net default is blank. Otherwise, get this from your credit card processor. If the transactions are going through, but getting strange responses, this character is most likely wrong." +msgstr "Authorize.net default is blank. Otherwise, get this from your credit card processor. If the transactions are going through, but getting strange responses, this character is most likely wrong." + +#: includes/common/payment-gateways/authorizenet-aim.php:273 +msgid "Optional settings to control advanced options" +msgstr "Paramètres optionnels pour contrôler les options avancées" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:224 +#: includes/common/payment-gateways/authorizenet-aim.php:272 +msgid "Advanced Settings" +msgstr "Paramètres avancés" + +#: includes/common/payment-gateways/authorizenet-aim.php:253 +msgid "Transaction Key" +msgstr "Clé de transaction" + +#: includes/common/payment-gateways/authorizenet-aim.php:246 +msgid "Login ID" +msgstr "ID Connexion" + +#: includes/common/payment-gateways/paypal-payflow.php:396 +msgid "Gateway Credentials" +msgstr "Pouvoirs Plateforme" + +#: includes/common/payment-gateways/authorizenet-aim.php:221 +msgid "Authorize.net AIM is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway. USD is the only currency supported by this gateway." +msgstr "Authorize.net AIM est une solution de paiement qui donne au marchand le contrôle sur toutes les étapes de la transaction. Un certificat SSL est requis pour utiliser cette plateforme. La seule monnaie supportée par cette plateforme est USD." + +#: includes/common/payment-gateways/authorizenet-aim.php:205 +msgid "There was a problem finalizing your purchase. %s Please go back and try again." +msgstr "Il y a eu un problème à la finalisation de votre commande. %s essayez encore, svp." + +#: includes/common/payment-gateways/payfast.php:519 +#: includes/common/payment-gateways/paypal-chained-payments.php:218 +#: includes/common/payment-gateways/paypal-chained-payments.php:498 +#: includes/common/payment-gateways/paypal-express.php:822 +#: includes/common/payment-gateways/paypal-express.php:1092 +msgid "The payment has been completed, and the funds have been added successfully to your account balance." +msgstr "Le paiement a été complété, et les fonds ont été ajoutés à votre compte." + +#: includes/common/payment-gateways/paypal-payflow.php:233 +msgid "Please enter a valid credit card security code" +msgstr "Entrez un code de sécurité valide pour votre carte de crédit, svp" + +#: includes/common/payment-gateways/paypal-payflow.php:224 +#: includes/public/class-mp-checkout.php:867 +msgid "Please enter a valid credit card number" +msgstr "Entrez un numéro de carte de crédit valide, svp" + +#: includes/common/payment-gateways/paypal-payflow.php:221 +msgid "Please enter your credit card number" +msgstr "Entre votre numéro de carte de crédit, svp" + +#: includes/common/payment-gateways/paypal-payflow.php:217 +msgid "Please enter your credit card security code" +msgstr "Entrez le code de sécurité de votre carte de crédit, svp" + +#: includes/common/payment-gateways/paypal-payflow.php:213 +msgid "Please select your credit card expiration date." +msgstr "Choisissez la date d'expiration de votre carte de crédit,svp." + +#: includes/common/payment-gateways/2checkout.php:299 +#: includes/common/payment-gateways/authorizenet-aim.php:50 +#: includes/common/payment-gateways/eway.php:148 +#: includes/common/payment-gateways/eway.php:298 +#: includes/common/payment-gateways/eway31.php:267 +#: includes/common/payment-gateways/paymill.php:46 +#: includes/common/payment-gateways/paypal-express.php:972 +#: includes/common/payment-gateways/paypal-payflow.php:60 +#: includes/common/payment-gateways/pin.php:46 +#: includes/common/payment-gateways/simplify.php:19 +#: includes/common/payment-gateways/stripe.php:46 +#: includes/common/payment-gateways/wepay.php:37 +msgid "Credit Card" +msgstr "Carte de Crédit" + +#: includes/common/payment-gateways/authorizenet-aim.php:49 +msgid "Authorize.net Checkout" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:156 +#: includes/common/payment-gateways/stripe.php:293 +msgid "Selecting a currency other than that used for your store may cause problems at checkout." +msgstr "Choisir une monnaie autre que celle utilisée pour votre boutique peut causer des problèmes à la commande." + +#: includes/common/payment-gateways/2checkout.php:352 +msgid "Seller ID" +msgstr "ID vendeur" + +#: includes/common/payment-gateways/2checkout.php:340 +#: includes/common/payment-gateways/_ideal.php:311 +#: includes/common/payment-gateways/authorizenet-aim.php:234 +#: includes/common/payment-gateways/eway.php:376 +#: includes/common/payment-gateways/payfast.php:315 +#: includes/common/payment-gateways/paypal-chained-payments.php:368 +#: includes/common/payment-gateways/paypal-express.php:699 +#: includes/common/payment-gateways/paypal-payflow.php:391 +msgid "Live" +msgstr "Live" + +#: includes/common/payment-gateways/2checkout.php:339 +#: includes/common/payment-gateways/authorizenet-aim.php:233 +#: includes/common/payment-gateways/eway.php:375 +#: includes/common/payment-gateways/paypal-chained-payments.php:367 +#: includes/common/payment-gateways/paypal-express.php:698 +#: includes/common/payment-gateways/paypal-payflow.php:390 +#: includes/common/shipping-modules/mp-fedex.php:263 +msgid "Sandbox" +msgstr "Sandbox" + +#: includes/common/payment-gateways/2checkout.php:336 +#: includes/common/payment-gateways/_ideal.php:307 +#: includes/common/payment-gateways/authorizenet-aim.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:365 +#: includes/common/payment-gateways/paypal-express.php:695 +#: includes/common/payment-gateways/paypal-payflow.php:387 +#: includes/common/payment-gateways/wepay.php:130 +#: includes/common/shipping-modules/mp-fedex.php:260 +msgid "Mode" +msgstr "Mode" + +#: includes/common/payment-gateways/2checkout.php:288 +#: includes/common/payment-gateways/mijireh.php:242 +#: includes/common/payment-gateways/mollie.php:212 +msgid "The order has been received" +msgstr "La commande a été reçue" + +#: includes/common/payment-gateways/2checkout.php:74 +#: includes/common/payment-gateways/2checkout.php:75 +#: includes/common/payment-gateways/2checkout.php:435 +msgid "2Checkout" +msgstr "2Checkout" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:306 +msgid "Confirm" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:218 +#: includes/common/class-mp-cart.php:974 includes/common/class-mp-cart.php:1354 +#: includes/common/template-functions.php:918 +msgid "Checkout" +msgstr "" + +#: includes/common/template-functions.php:207 +msgid "Check Order Status" +msgstr "Vérification État Commande" + +#: includes/common/template-functions.php:235 +msgid "View Products" +msgstr "Voir Produits" + +#: includes/common/template-functions.php:263 +msgid "Visit Store" +msgstr "Visiter Boutique" + +#: includes/common/template-functions.php:2912 +#: includes/multisite/template-functions.php:448 +msgid "Order By" +msgstr "" + +#: includes/common/template-functions.php:2887 +#: includes/multisite/template-functions.php:405 +msgid "Price (High to Low)" +msgstr "" + +#: includes/common/template-functions.php:2886 +#: includes/multisite/template-functions.php:404 +msgid "Price (Low to High)" +msgstr "Prix (croissant)" + +#: includes/common/template-functions.php:2881 +#: includes/multisite/template-functions.php:399 +msgid "Default" +msgstr "Valeur par défaut" + +#: includes/common/template-functions.php:2858 +msgid "Show All" +msgstr "Tous" + +#: includes/common/class-mp-product.php:2048 +msgid "View Larger Image »" +msgstr "Voir Image Large »" + +#: includes/common/class-mp-product.php:979 +msgid "Out of Stock" +msgstr "Rupture de Stock" + +#: includes/common/template-functions.php:148 +msgid "Price: " +msgstr "Prix :" + +#: includes/multisite/template-functions.php:833 +msgid "No Tags" +msgstr "Pas de mots-clés" + +#: includes/common/template-functions.php:3162 +msgid "Uncategorized" +msgstr "Non classé" + +#: includes/common/class-mp-cart.php:569 includes/common/class-mp-order.php:604 +#: includes/common/helpers.php:115 +msgid "Download" +msgstr "Téléchargement" + +#: includes/common/class-mp-cart.php:1353 +msgid "Empty Cart" +msgstr "Vider Panier" + +#: includes/common/payment-gateways/_payway.php:291 +#: includes/common/payment-gateways/paypal-express.php:718 +#: includes/common/payment-gateways/paypal-payflow.php:423 +#: includes/common/shipping-modules/mp-ups.php:158 +#: includes/public/class-mp-checkout.php:1254 +#: includes/public/class-mp-checkout.php:1383 +msgid "Password" +msgstr "Mot de passe" + +#: includes/common/payment-gateways/eway.php:387 +#: includes/common/payment-gateways/paypal-express.php:711 +#: includes/common/shipping-modules/mp-usps.php:185 +#: includes/public/class-mp-checkout.php:1249 +msgid "Username" +msgstr "Identifiant" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:437 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:790 +msgid "Have a coupon code?" +msgstr "Vous possédez un code de réduction (coupon)?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:321 +#: includes/admin/class-mp-orders-admin.php:526 +#: includes/common/class-mp-cart.php:592 +msgid "Remove" +msgstr "Supprimer" + +#: includes/admin/class-mp-ajax.php:316 +msgid "Quantity:" +msgstr "Quantité :" + +#: includes/admin/class-mp-products-admin.php:2140 +#: includes/admin/class-mp-products-admin.php:2387 +#: includes/common/shipping-modules/class-mp-shipping-api.php:507 +msgid "Extra Shipping Cost" +msgstr "Coût d'expédition supplémentaire" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:403 +msgid "Choose a Shipping Method:" +msgstr "Choisissez une méthode d'expedition" + +#: includes/admin/class-mp-products-admin.php:1691 +#: includes/admin/class-mp-products-admin.php:2131 +#: includes/admin/class-mp-products-admin.php:2378 +#: includes/common/shipping-modules/class-mp-shipping-api.php:228 +msgid "Ounces" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1684 +#: includes/admin/class-mp-products-admin.php:2123 +#: includes/admin/class-mp-products-admin.php:2369 +#: includes/admin/class-mp-setup-wizard.php:546 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:165 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +#: includes/common/shipping-modules/class-mp-shipping-api.php:227 +msgid "Pounds" +msgstr "Livres" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:226 +msgid "Product Weight:" +msgstr "Poids du produit:" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:214 +msgid "Weight (Kilograms)" +msgstr "Poids (kilos)" + +#: includes/admin/widgets/ms-global-categories.php:82 +msgid "Number of Categories:" +msgstr "Nombre de catégories :" + +#: includes/admin/widgets/ms-global-categories.php:72 +msgid "Product Count" +msgstr "Nombre de produits" + +#: includes/addons/class-mp-addons-list-table.php:20 +#: includes/admin/class-mp-product-attributes-admin.php:129 +#: includes/admin/class-mp-product-attributes-list-table.php:22 +#: includes/admin/class-mp-products-admin.php:2216 +#: includes/admin/class-mp-shortcode-builder.php:628 +#: includes/admin/class-mp-shortcode-builder.php:1415 +#: includes/admin/widgets/ms-global-categories.php:70 +#: includes/common/shipping-modules/mp-fedex.php:395 +#: includes/common/shipping-modules/mp-ups.php:202 +#: includes/common/shipping-modules/mp-usps.php:243 +#: includes/public/class-mp-checkout.php:314 +msgid "Name" +msgstr "Nom" + +#: includes/admin/widgets/ms-global-categories.php:67 +msgid "Order Categories By:" +msgstr "Tri des catégories par :" + +#: includes/admin/widgets/ms-global-categories.php:24 +#: includes/admin/widgets/ms-global-categories.php:50 +msgid "Global Product Categories" +msgstr "Catégories Produit Global" + +#: includes/admin/widgets/ms-global-categories.php:15 +msgid "Global Product Category List" +msgstr "Liste Catégorie Produit Global" + +#: includes/admin/widgets/ms-global-categories.php:13 +msgid "Displays a network-wide HTML list of product categories from network MarketPress stores." +msgstr "Affiche une liste HTML des réseaux de catégories de produits dans les boutiques du réseau MarketPress." + +#: includes/admin/widgets/ms-global-tag-cloud.php:24 +#: includes/admin/widgets/ms-global-tag-cloud.php:45 +msgid "Global Product Tags" +msgstr "Mots-clés Produit Global" + +#: includes/admin/widgets/ms-global-tag-cloud.php:15 +msgid "Global Product Tag Cloud" +msgstr "Nuage de mot-clé Produit Global" + +#: includes/admin/class-mp-shortcode-builder.php:947 +#: includes/admin/widgets/ms-global-product-list.php:173 +msgid "Excerpt" +msgstr "Extrait" + +#: includes/admin/widgets/ms-global-product-list.php:169 +msgid "Content To Show:" +msgstr "Contenu à afficher :" + +#: includes/admin/widgets/ms-global-product-list.php:140 +msgid "Limit To Product Tag:" +msgstr "Limite pour Mot-Clé Produit :" + +#: includes/admin/widgets/ms-global-product-list.php:132 +msgid "Limit To Product Category:" +msgstr "Limite pour Catégorie Produit" + +#: includes/admin/widgets/ms-global-product-list.php:72 +msgid "Global Products" +msgstr "Produits Globale" + +#: includes/admin/widgets/ms-global-product-list.php:16 +msgid "Global Product List" +msgstr "Liste Globale Produits" + +#: includes/admin/widgets/ms-global-product-list.php:14 +msgid "Shows a customizable global list of products from network MarketPress stores." +msgstr "Affiche une liste des produits personnalisables à partir du réseaux de boutiques MarketPress." + +#: includes/common/class-mp-product.php:974 +#: includes/multisite/template-functions.php:731 +msgid "Buy Now »" +msgstr "Acheter »" + +#: includes/admin/widgets/ms-global-tag-cloud.php:13 +msgid "Displays global most used product tags in cloud format from network MarketPress stores." +msgstr "Affiche les mots-clés globaux les plus utilisés à partir du réseau de boutiques MarketPress dans un nuage." + +#: includes/multisite/class-mp-admin-multisite.php:438 +msgid "Theme Permissions" +msgstr "Permissions Thème" + +#: includes/multisite/class-mp-admin-multisite.php:402 +#: includes/multisite/class-mp-admin-multisite.php:448 +msgid "No Access" +msgstr "Aucun accès" + +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:120 +msgid "Pro Site Level" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:401 +#: includes/multisite/class-mp-admin-multisite.php:447 +msgid "All Can Use" +msgstr "Tous peuvent utiliser" + +#: includes/multisite/class-mp-admin-multisite.php:390 +msgid "Gateway Permissions" +msgstr "Permissions plateforme" + +#: includes/multisite/class-mp-admin-multisite.php:375 +msgid "Select a Gateway" +msgstr "Choix de plateforme" + +#: includes/multisite/class-mp-admin-multisite.php:350 +msgid "Global Gateway" +msgstr "Passerelle Globale" + +#. Plugin Name of the plugin/theme +msgid "MarketPress" +msgstr "MarketPress" + +#: includes/admin/widgets/product-tag-cloud.php:7 +msgid "Your most used product tags in cloud format from your MarketPress store." +msgstr "Vos mots-clés de produits les plus utilisés dans un nuage." + +#: includes/admin/widgets/categories.php:79 +msgid "Show hierarchy" +msgstr "Afficher la hiérarchie" + +#: includes/admin/widgets/categories.php:76 +#: includes/admin/widgets/ms-global-categories.php:92 +msgid "Show product counts" +msgstr "Afficher nombre de produits" + +#: includes/admin/widgets/categories.php:73 +msgid "Show as dropdown" +msgstr "Afficher en menu déroulant" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:710 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:736 +#: includes/admin/widgets/categories.php:30 +msgid "Select Category" +msgstr "Choisir une catégorie" + +#: includes/admin/widgets/categories.php:7 +msgid "A list or dropdown of product categories from your MarketPress store." +msgstr "Un liste ou un menu déroulant des catégories de produits de votre boutique" + +#: includes/admin/widgets/product-list.php:250 +msgid "Show Buy Button" +msgstr "Afficher bouton Acheter" + +#: includes/admin/widgets/ms-global-product-list.php:183 +#: includes/admin/widgets/product-list.php:244 +msgid "Show Price" +msgstr "Afficher Prix" + +#: includes/admin/widgets/product-list.php:241 +msgid "Show Excerpt" +msgstr "Afficher Extrait" + +#: includes/admin/widgets/ms-global-product-list.php:155 +#: includes/admin/widgets/product-list.php:238 +msgid "Thumbnail Size:" +msgstr "Taille miniature :" + +#: includes/admin/widgets/ms-global-product-list.php:153 +#: includes/admin/widgets/product-list.php:237 +msgid "Show Thumbnail" +msgstr "Afficher miniature" + +#: includes/admin/widgets/ms-global-product-list.php:147 +#: includes/admin/widgets/product-list.php:233 +msgid "Display Settings" +msgstr "Réglages de l’affichage" + +#: includes/admin/widgets/ms-global-product-list.php:136 +#: includes/admin/widgets/ms-global-product-list.php:144 +#: includes/admin/widgets/product-list.php:230 +msgid "Enter the Slug" +msgstr "Entrez le slug" + +#: includes/admin/widgets/product-list.php:228 +#: includes/common/template-functions.php:894 +msgid "Tag" +msgstr "Mot-clé" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:686 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:712 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:739 +#: includes/admin/class-mp-shortcode-builder.php:796 +#: includes/admin/widgets/product-list.php:227 +#: includes/common/template-functions.php:886 +#: includes/common/template-functions.php:2907 +msgid "Category" +msgstr "Catégorie" + +#: includes/admin/widgets/product-list.php:226 +msgid "No Filter" +msgstr "Pas de filtre" + +#: includes/admin/widgets/product-list.php:224 +msgid "Taxonomy Filter:" +msgstr "Filtre de Taxonomie :" + +#: includes/admin/widgets/ms-global-product-list.php:108 +#: includes/admin/widgets/product-list.php:209 +msgid "Order Products By:" +msgstr "Trier les produits par :" + +#: includes/admin/widgets/ms-global-product-list.php:101 +#: includes/admin/widgets/product-list.php:206 +msgid "Number of Products:" +msgstr "Nombre de produits :" + +#: includes/admin/widgets/ms-global-product-list.php:98 +#: includes/admin/widgets/product-list.php:204 +msgid "List Settings" +msgstr "Paramètres Liste" + +#: includes/admin/widgets/product-list.php:177 +msgid "Our Products" +msgstr "Nos Produits" + +#: includes/admin/widgets/product-list.php:144 +#: includes/common/template-functions.php:2070 +#: includes/common/template-functions.php:2347 +#: includes/multisite/template-functions.php:303 +#: includes/multisite/template-functions.php:623 +msgid "No Products" +msgstr "0 Produits" + +#: includes/admin/widgets/product-list.php:8 +msgid "Product List" +msgstr "Liste Produits" + +#: includes/admin/widgets/product-list.php:7 +msgid "Shows a customizable list of products from your MarketPress store." +msgstr "Affiche une liste personnalisable de produits de votre boutique" + +#: includes/admin/widgets/cart.php:75 includes/admin/widgets/categories.php:82 +#: includes/admin/widgets/product-list.php:253 +#: includes/admin/widgets/product-tag-cloud.php:57 +msgid "Only show on store pages" +msgstr "Afficher seulement sur les pages de magasin" + +#: includes/admin/widgets/cart.php:65 +#: includes/admin/widgets/ms-global-product-list.php:92 +#: includes/admin/widgets/product-list.php:200 +msgid "Custom Text:" +msgstr "Texte Perso :" + +#: includes/admin/widgets/cart.php:64 includes/admin/widgets/categories.php:69 +#: includes/admin/widgets/ms-global-categories.php:59 +#: includes/admin/widgets/ms-global-product-list.php:87 +#: includes/admin/widgets/ms-global-tag-cloud.php:49 +#: includes/admin/widgets/product-list.php:199 +#: includes/admin/widgets/product-tag-cloud.php:49 +msgid "Title:" +msgstr "Titre :" + +#: includes/admin/widgets/cart.php:7 +msgid "Shows dynamic shopping cart contents along with a checkout button for your MarketPress store." +msgstr "Affiche contenu de panier dynamique avec un bouton de commande pour votre boutique MarketPress." + +#: includes/admin/widgets/product-tag-cloud.php:8 +msgid "Product Tag Cloud" +msgstr "Nuage de mot-clé produit" + +#: includes/admin/class-mp-setup-wizard.php:539 +#: includes/admin/class-mp-setup-wizard.php:575 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:163 +msgid "Measurement System" +msgstr "Système de mesures" + +#: includes/admin/class-mp-setup-wizard.php:616 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:149 +msgid "Select Shipping Options" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:596 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:129 +msgid "Calculated Options" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:582 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:115 +msgid "No Shipping" +msgstr "Pas de livraison" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:110 +msgid "EU" +msgstr "UE" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:109 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:93 +msgid "All" +msgstr "Tous" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:92 +msgid "Select:" +msgstr "Choix :" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:185 +msgid "Store Pages" +msgstr "Pages Boutique" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:223 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:256 +msgid "Order Shipped" +msgstr "Commande Expédiée" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:60 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:95 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:128 +#: marketpress.php:266 +msgid "New Order" +msgstr "Nouvelle Commande" + +#: includes/admin/class-mp-dashboard-widgets.php:314 +msgid "Email Notifications" +msgstr "Email de Notifications" + +#: includes/admin/class-mp-pages-admin.php:59 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:200 +msgid "Products List" +msgstr "Liste Produits" + +#: includes/admin/class-mp-pages-admin.php:58 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:190 +msgid "Store Base" +msgstr "Base Boutique" + +#: includes/admin/class-mp-product-attributes-admin.php:108 +#: includes/admin/class-mp-shortcode-builder.php:635 +#: includes/admin/class-mp-shortcode-builder.php:708 +#: includes/admin/class-mp-shortcode-builder.php:875 +#: includes/admin/class-mp-shortcode-builder.php:1319 +#: includes/admin/class-mp-shortcode-builder.php:1422 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:526 +#: includes/admin/widgets/ms-global-categories.php:78 +#: includes/admin/widgets/ms-global-product-list.php:127 +#: includes/admin/widgets/product-list.php:221 +msgid "Ascending" +msgstr "Ascendant" + +#: includes/admin/class-mp-product-attributes-admin.php:109 +#: includes/admin/class-mp-shortcode-builder.php:636 +#: includes/admin/class-mp-shortcode-builder.php:709 +#: includes/admin/class-mp-shortcode-builder.php:876 +#: includes/admin/class-mp-shortcode-builder.php:1320 +#: includes/admin/class-mp-shortcode-builder.php:1423 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:525 +#: includes/admin/widgets/ms-global-categories.php:75 +#: includes/admin/widgets/ms-global-product-list.php:124 +#: includes/admin/widgets/product-list.php:220 +msgid "Descending" +msgstr "Descendant" + +#: includes/admin/class-mp-shortcode-builder.php:637 +#: includes/admin/class-mp-shortcode-builder.php:695 +#: includes/admin/class-mp-shortcode-builder.php:862 +#: includes/admin/class-mp-shortcode-builder.php:1306 +#: includes/admin/class-mp-shortcode-builder.php:1424 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:518 +#: includes/admin/widgets/ms-global-product-list.php:121 +#: includes/admin/widgets/product-list.php:218 +msgid "Random" +msgstr "Aléatoire" + +#: includes/admin/class-mp-shortcode-builder.php:694 +#: includes/admin/class-mp-shortcode-builder.php:861 +#: includes/admin/class-mp-shortcode-builder.php:1305 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:517 +#: includes/admin/widgets/ms-global-product-list.php:119 +#: includes/admin/widgets/product-list.php:216 +msgid "Product Price" +msgstr "Prix Produit" + +#: includes/admin/class-mp-shortcode-builder.php:693 +#: includes/admin/class-mp-shortcode-builder.php:860 +#: includes/admin/class-mp-shortcode-builder.php:1304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:516 +#: includes/admin/widgets/ms-global-product-list.php:117 +#: includes/admin/widgets/product-list.php:215 +msgid "Number of Sales" +msgstr "Nombre de Ventes" + +#: includes/admin/class-mp-shortcode-builder.php:692 +#: includes/admin/class-mp-shortcode-builder.php:859 +#: includes/admin/class-mp-shortcode-builder.php:1303 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:515 +#: includes/admin/widgets/product-list.php:214 +msgid "Product Author" +msgstr "Auteur Produit" + +#: includes/admin/class-mp-shortcode-builder.php:691 +#: includes/admin/class-mp-shortcode-builder.php:858 +#: includes/admin/class-mp-shortcode-builder.php:1302 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:514 +#: includes/admin/widgets/product-list.php:213 +msgid "Product ID" +msgstr "ID Produit" + +#: includes/admin/class-mp-shortcode-builder.php:690 +#: includes/admin/class-mp-shortcode-builder.php:857 +#: includes/admin/class-mp-shortcode-builder.php:1301 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:513 +#: includes/admin/widgets/ms-global-product-list.php:113 +#: includes/admin/widgets/product-list.php:212 +msgid "Publish Date" +msgstr "Date Publication" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:430 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:726 +msgid "Width" +msgstr "Largeur" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:439 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:735 +msgid "Height" +msgstr "Hauteur" + +#: includes/admin/class-mp-product-attributes-admin.php:88 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:402 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:698 +msgid "Custom" +msgstr "Lien" + +#: includes/common/class-mp-product.php:179 +#: includes/common/class-mp-product.php:992 +#: includes/common/class-mp-product.php:1000 +#: includes/multisite/template-functions.php:579 +msgid "Buy Now" +msgstr "Acheter" + +#: includes/common/class-mp-product.php:175 +#: includes/common/class-mp-product.php:990 +#: includes/common/class-mp-product.php:998 +msgid "Add To Cart" +msgstr "Ajouter au Panier" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:807 +msgid "Store Style" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1021 +msgid "Edit Coupon" +msgstr "Modifier Coupon" + +#: includes/addons/mp-coupons/class-mp-coupon.php:580 +#: includes/admin/class-mp-ajax.php:238 +#: includes/admin/class-mp-products-admin.php:1532 +msgid "Unlimited" +msgstr "Illimité" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1198 +msgid "Remaining Uses" +msgstr "Utilisations Restantes" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1197 +msgid "Used" +msgstr "Utilisé" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:752 +#: includes/admin/class-mp-products-admin.php:2343 +msgid "Start Date" +msgstr "Date Départ" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:598 +msgid "Coupon Code" +msgstr "Code Promo" + +#: includes/admin/class-mp-orders-admin.php:444 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:284 +msgid "Save Changes" +msgstr "Sauvegarder" + +#: includes/admin/class-mp-pages-admin.php:57 +#: includes/admin/class-mp-shortcode-builder.php:716 +#: includes/admin/class-mp-shortcode-builder.php:727 +#: includes/admin/class-mp-shortcode-builder.php:883 +#: includes/admin/class-mp-shortcode-builder.php:894 +#: includes/admin/class-mp-shortcode-builder.php:946 +#: includes/admin/class-mp-shortcode-builder.php:956 +#: includes/admin/class-mp-shortcode-builder.php:1006 +#: includes/admin/class-mp-shortcode-builder.php:1327 +#: includes/admin/class-mp-shortcode-builder.php:1338 +#: includes/admin/store-settings/class-mp-store-settings-general.php:357 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:270 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:108 +#: includes/admin/widgets/ms-global-product-list.php:172 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:94 +msgid "None" +msgstr "Aucun" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:352 +msgid "Google Analytics Ecommerce Tracking" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:310 +msgid "This option turns MarketPress into more of a product listing plugin, disabling shopping carts, checkout, and order management. This is useful if you simply want to list items you can buy in a store somewhere else, optionally linking the \"Buy Now\" buttons to an external site. Some examples are a car dealership, or linking to songs/albums in itunes, or linking to products on another site with your own affiliate links." +msgstr "Cette option transforme MarketPress en catalogue, désactive le panier, la commande et la gestion des commandes. Ceci est utile si vous désirez simplement lister les produits que vous pouvez acheter dans une autre boutique, et occasionnellement lier le bouton \"Buy Now\" vers un site externe. Par exemple pour des ventes de voitures, des chansons/albums sur iTunes, ou lier des produits sur un autre site avec vos liens d'affiliation." + +#: includes/admin/store-settings/class-mp-store-settings-general.php:304 +msgid "Whether or not customers must be registered and logged in to checkout. (Not recommended: Enabling this can lower conversions)" +msgstr "Choisissez si vous voulez forcer les clients à être enregistrés et connectés pour acheter. (Du coup seuls les utilisateurs de Vintagers pourront acheter. Nous vous recommandons d'éviter cela afin de ne pas réduire vos ventes!)" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:258 +msgid "How many times may a customer download a file they have purchased? (It's best to set this higher than one in case they have any problems downloading)" +msgstr "Combien de fois un client peut télécharger le fichier acheté? (Il est préférable de laisser une limite assez haute afin d'éviter les problèmes de téléchargement)" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:257 +msgid "Maximum Downloads" +msgstr "Maximum de Téléchargements" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:298 +msgid "This will set the product to draft if inventory of all variations is gone." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:288 +msgid "At what low stock count do you want to be warned for products you have enabled inventory tracking for?" +msgstr "A partir de quel seuil d'alerte de stock désirez vous être notifié pour les produits dont vous avez activé le suivi d'inventaire?" + +#: includes/admin/class-mp-dashboard-widgets.php:208 +#: includes/admin/store-settings/class-mp-store-settings-general.php:287 +msgid "Inventory Warning Threshold" +msgstr "Seuil d'alerte des stocks" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:282 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:542 +msgid "Miscellaneous Settings" +msgstr "Paramètres Divers" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:429 +#: includes/multisite/class-mp-admin-multisite.php:247 +msgid "Show Decimal in Prices" +msgstr "Afficher les décimales dans les prix" + +#: includes/admin/class-mp-setup-wizard.php:451 +#: includes/admin/store-settings/class-mp-store-settings-general.php:403 +#: includes/multisite/class-mp-admin-multisite.php:221 +msgid "Currency Symbol Position" +msgstr "Position Symbole Monnaie" + +#: includes/admin/class-mp-setup-wizard.php:444 +#: includes/admin/store-settings/class-mp-store-settings-general.php:396 +msgid "Store Currency" +msgstr "Monnaie Boutique" + +#: includes/admin/class-mp-setup-wizard.php:429 +#: includes/admin/store-settings/class-mp-store-settings-general.php:381 +msgid "Currency Settings" +msgstr "Paramètres Monnaie" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:516 +msgid "Please see your local tax laws. Note if this is enabled and a downloadable only cart, rates will be the default for your base location." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:529 +msgid "Apply Tax to Downloadable Products?" +msgstr "Appliquer taxes pour les produits téléchargeables?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:498 +msgid "Enabling this option allows you to enter and show all prices inclusive of tax, while still listing the tax total as a line item in shopping carts. Please see your local tax laws." +msgstr "Cette option vous permets d'entrer vos prix TVA inclue, tout en maintenant l'affichage du total des taxes sur une ligne lors des commandes. Merci de vous reportez à vos obligations légales locales." + +#: includes/admin/class-mp-setup-wizard.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:497 +msgid "Enter Prices Inclusive of Tax?" +msgstr "Entrer les prix TVA inclue?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:492 +msgid "Please see your local tax laws. Most areas charge tax on shipping fees." +msgstr "Vérifiez les lois de vos taxes locales. Plusieurs zones taxent les frais de port." + +#: includes/admin/class-mp-setup-wizard.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:491 +msgid "Apply Tax To Shipping Fees?" +msgstr "Appliquer taxes aux frais de port?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:674 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:565 +#: includes/common/payment-gateways/authorizenet-aim.php:291 +#: includes/common/payment-gateways/authorizenet-aim.php:326 +#: includes/common/payment-gateways/payfast.php:347 +msgid "No" +msgstr "Non" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:675 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:759 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:512 +#: includes/admin/class-mp-setup-wizard.php:518 +#: includes/admin/class-mp-setup-wizard.php:524 +#: includes/admin/class-mp-setup-wizard.php:530 +#: includes/admin/class-mp-setup-wizard.php:564 +#: includes/admin/store-settings/class-mp-store-settings-general.php:232 +#: includes/admin/store-settings/class-mp-store-settings-general.php:299 +#: includes/admin/store-settings/class-mp-store-settings-general.php:305 +#: includes/admin/store-settings/class-mp-store-settings-general.php:311 +#: includes/admin/store-settings/class-mp-store-settings-general.php:317 +#: includes/admin/store-settings/class-mp-store-settings-general.php:328 +#: includes/admin/store-settings/class-mp-store-settings-general.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:341 +#: includes/admin/store-settings/class-mp-store-settings-general.php:348 +#: includes/admin/store-settings/class-mp-store-settings-general.php:367 +#: includes/admin/store-settings/class-mp-store-settings-general.php:493 +#: includes/admin/store-settings/class-mp-store-settings-general.php:499 +#: includes/admin/store-settings/class-mp-store-settings-general.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:556 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:375 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:381 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:387 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:474 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:493 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:532 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:574 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:606 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:664 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:670 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:677 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:683 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:689 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:763 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:774 +#: includes/common/payment-gateways/_bitpay.php:250 +#: includes/common/payment-gateways/_bitpay.php:257 +#: includes/common/payment-gateways/_bitpay.php:264 +#: includes/common/payment-gateways/authorizenet-aim.php:290 +#: includes/common/payment-gateways/authorizenet-aim.php:325 +#: includes/common/payment-gateways/free_orders.php:160 +#: includes/common/payment-gateways/payfast.php:346 +#: includes/common/payment-gateways/paymill.php:162 +#: includes/common/payment-gateways/paypal-payflow.php:441 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-checkbox.php:22 +msgid "Yes" +msgstr "Oui" + +#: includes/admin/class-mp-setup-wizard.php:492 +#: includes/admin/store-settings/class-mp-store-settings-general.php:472 +msgid "%s Tax Rate" +msgstr "Taux de Taxe %s" + +#: includes/admin/class-mp-setup-wizard.php:467 +#: includes/admin/store-settings/class-mp-store-settings-general.php:449 +msgid "Tax Settings" +msgstr "Paramètres Taxes" + +#: includes/admin/class-mp-setup-wizard.php:370 +#: includes/admin/store-settings/class-mp-store-settings-general.php:624 +msgid "Base Zip/Postal Code" +msgstr "Code Postal" + +#: includes/admin/class-mp-setup-wizard.php:354 +#: includes/admin/store-settings/class-mp-store-settings-general.php:608 +msgid "Base State/Province/Region" +msgstr "Etat/Province/Région de Base" + +#: includes/admin/class-mp-setup-wizard.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:589 +msgid "Base Country" +msgstr "Pays de Base" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:582 +msgid "Location Settings" +msgstr "Paramètres Localisation" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:195 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:800 +#: includes/multisite/class-mp-admin-multisite.php:172 +msgid "General Settings" +msgstr "Paramètres Généraux" + +#: includes/admin/class-mp-products-admin.php:1945 +#: includes/admin/class-mp-products-admin.php:2185 +#: includes/admin/class-mp-store-settings-admin.php:111 +#: includes/admin/class-mp-store-settings-admin.php:266 +msgid "General" +msgstr "Général" + +#: includes/admin/class-mp-store-settings-admin.php:242 +msgid "Importers" +msgstr "Importation" + +#: includes/admin/class-mp-store-settings-admin.php:115 +#: includes/admin/class-mp-store-settings-admin.php:234 +msgid "Payments" +msgstr "Paiements" + +#: includes/admin/class-mp-dashboard-widgets.php:313 +#: includes/admin/class-mp-store-settings-admin.php:112 +#: includes/admin/class-mp-store-settings-admin.php:222 +msgid "Presentation" +msgstr "Presentation" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:916 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1015 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1018 +#: includes/admin/class-mp-dashboard-widgets.php:305 marketpress.php:702 +msgid "Coupons" +msgstr "Codes Promos (coupons)" + +#: includes/admin/class-mp-admin.php:251 +msgid "Download »" +msgstr "Téléchargement »" + +#: includes/admin/class-mp-admin.php:245 +#: includes/admin/class-mp-exporter-orders.php:170 +msgid "All Statuses" +msgstr "Tous les Status" + +#: includes/admin/class-mp-admin.php:209 +#: includes/admin/class-mp-exporter-orders.php:150 +#: includes/admin/class-mp-exporter-orders.php:178 +msgid "Export Orders" +msgstr "Exporter les Commandes" + +#: includes/admin/class-mp-admin.php:228 +msgid "Show all dates" +msgstr "Afficher toutes les dates" + +#: includes/admin/class-mp-orders-admin.php:947 +msgid "Change Status" +msgstr "Changer Statut" + +#: includes/admin/class-mp-orders-admin.php:287 +msgid "Order Notes" +msgstr "Notes de Commande" + +#: includes/admin/class-mp-orders-admin.php:478 +msgid "Other" +msgstr "Autre" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:205 +msgid "Subtotal" +msgstr "Sous-total" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:84 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:87 +#: includes/admin/class-mp-products-admin.php:1737 +#: includes/common/class-mp-cart.php:1409 +#: includes/common/class-mp-product.php:559 +msgid "Quantity" +msgstr "Quantité" + +#: includes/common/helpers.php:93 +msgid "Item" +msgstr "Élément" + +#: includes/common/class-mp-order.php:1050 +msgid "Current Status" +msgstr "Statut Actuel :" + +#: includes/admin/class-mp-orders-admin.php:297 +msgid "Order Actions" +msgstr "Actions Commande" + +#: includes/common/class-mp-product.php:1084 +msgid "More Info »" +msgstr "En savoir plus »" + +#: includes/common/class-mp-product.php:2313 +msgid "Low Product Inventory Notification" +msgstr "Information de produit bientôt en rupture de stock" + +#: includes/common/class-mp-order.php:338 includes/common/data.php:154 +msgid "New Order Notification: ORDERID" +msgstr "Nouvelle notification de commande : ORDERID" + +#: includes/common/helpers.php:259 +msgid "Your payment for this order is complete." +msgstr "Votre paiement pour cette commande est complet." + +#: includes/common/helpers.php:261 +msgid "Your payment for this order is not yet complete. Here is the latest status:" +msgstr "Votre paiement pour cette commande n'est pas encore complet. Voici le dernier statut :" + +#: includes/common/helpers.php:256 +msgid "Payment Total:" +msgstr "Total Paiement :" + +#: includes/common/helpers.php:253 +msgid "Transaction ID:" +msgstr "ID Transaction :" + +#: includes/common/helpers.php:249 +msgid "Payment Type:" +msgstr "Type de Paiement :" + +#: includes/common/helpers.php:246 +msgid "Payment Method:" +msgstr "Méthode de Paiement :" + +#: includes/common/helpers.php:242 +msgid "Order Notes:" +msgstr "Remarques:" + +#: includes/common/helpers.php:237 +msgid "Special Instructions:" +msgstr "Instructions particulières:" + +#: includes/common/helpers.php:232 +msgid "Tracking Number:" +msgstr "Numéro de suivi:" + +#: includes/common/helpers.php:223 includes/common/helpers.php:226 +#: includes/common/helpers.php:228 +#: includes/common/shipping-modules/class-mp-shipping-api.php:406 +#: includes/common/shipping-modules/class-mp-shipping-api.php:428 +msgid "Shipping Method:" +msgstr "Méthode d'expédition:" + +#: includes/common/helpers.php:168 +msgid "No shipping required for this order." +msgstr "Pas de livraison requise pour cette commande" + +#: includes/common/helpers.php:155 +msgid "Order Total:" +msgstr "Total Commande :" + +#: includes/common/class-mp-order.php:1025 +msgid "Taxes:" +msgstr "Taxes :" + +#: includes/common/class-mp-order.php:1032 includes/common/helpers.php:144 +msgid "Shipping:" +msgstr "Livraison :" + +#: includes/public/class-mp-checkout.php:367 +msgid "Street address, P.O. box, company name, c/o" +msgstr "Nom de rue, Boite Postale, Entreprise, etc.." + +#: includes/admin/class-mp-orders-admin.php:314 +msgid "Shipping Info" +msgstr "Info Livraison" + +#: includes/public/class-mp-public.php:740 +msgid "Whoops, there was a problem loading up this file for your download. Please contact us for help." +msgstr "" + +#: includes/public/class-mp-public.php:683 +msgid "Sorry, our records show you've downloaded this file %d out of %d times allowed. Please contact us if you still need help." +msgstr "" + +#: includes/public/class-mp-public.php:634 +msgid "Sorry, your order has been marked as unpaid." +msgstr "Désolé, votre commande est marquée comme non payée." + +#: includes/public/class-mp-public.php:629 +msgid "Sorry, the link is invalid for this download." +msgstr "Désolé, le lien pour ce téléchargement est invalide" + +#: includes/admin/class-mp-exporter-orders.php:15 +#: includes/admin/class-mp-products-admin.php:1172 +msgid "Cheatin’ uh?" +msgstr "Alors, on triche ?" + +#: includes/public/class-mp-public.php:407 +#: includes/public/class-mp-short-codes.php:128 +msgid "Please enter a valid email address." +msgstr "" + +#: includes/admin/class-mp-ajax.php:191 +#: includes/admin/class-mp-products-admin.php:1821 +#: includes/admin/class-mp-products-admin.php:2010 +#: includes/admin/class-mp-products-admin.php:2267 +msgid "File URL" +msgstr "URL Fichier" + +#: includes/admin/class-mp-products-admin.php:1842 +msgid "External Link" +msgstr "Lien Externe" + +#: includes/admin/class-mp-products-admin.php:2177 +msgid "Add Variation" +msgstr "Ajouter Variation" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:126 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:289 +msgid "Inventory" +msgstr "Inventaire" + +#: includes/admin/class-mp-products-admin.php:438 +#: includes/admin/class-mp-products-admin.php:578 +#: includes/admin/class-mp-products-admin.php:1552 +#: includes/admin/class-mp-products-admin.php:2053 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:134 +msgid "Sale Price" +msgstr "Prix Soldé" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "Variation Name" +msgstr "Nom de Variation" + +#: includes/admin/class-mp-products-admin.php:1931 +msgid "Product Details" +msgstr "Détails du Produit" + +#: includes/admin/class-mp-product-attributes-list-table.php:33 +msgid "Delete" +msgstr "Supprimer" + +#: includes/admin/class-mp-orders-admin.php:1057 +msgid "Trashed" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:231 +#: includes/admin/class-mp-orders-admin.php:1015 +#: includes/common/class-mp-order.php:1052 includes/common/helpers.php:97 +msgid "Total" +msgstr "Total" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1196 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:210 +#: includes/admin/class-mp-orders-admin.php:1014 +msgid "Discount" +msgstr "Promotion" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:221 +#: includes/admin/class-mp-orders-admin.php:1013 +#: includes/common/payment-gateways/_ideal.php:148 +#: includes/common/payment-gateways/_payway.php:134 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:108 +msgid "Tax" +msgstr "Taxe" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:216 +#: includes/admin/class-mp-orders-admin.php:1012 +#: includes/admin/class-mp-products-admin.php:1958 +#: includes/admin/class-mp-products-admin.php:2198 +#: includes/admin/class-mp-store-settings-admin.php:114 +#: includes/admin/class-mp-store-settings-admin.php:230 +#: includes/common/class-mp-cart.php:717 includes/common/helpers.php:168 +#: includes/common/payment-gateways/_ideal.php:137 +#: includes/common/payment-gateways/_payway.php:116 +#: includes/public/class-mp-checkout.php:1304 +msgid "Shipping" +msgstr "Livraison" + +#: includes/admin/class-mp-orders-admin.php:1011 +msgid "Items" +msgstr "Produits" + +#: includes/admin/class-mp-orders-admin.php:1010 +msgid "From" +msgstr "De" + +#: includes/admin/class-mp-exporter-orders.php:154 +#: includes/admin/class-mp-orders-admin.php:1009 +#: includes/common/class-mp-gdpr.php:370 +msgid "Order Date" +msgstr "Date Commande" + +#: includes/admin/class-mp-orders-admin.php:1008 +#: includes/common/class-mp-gdpr.php:366 +#: includes/common/template-functions.php:2134 +msgid "Order ID" +msgstr "ID Commande" + +#: includes/addons/class-mp-addons-list-table.php:22 +#: includes/admin/class-mp-orders-admin.php:1007 +msgid "Status" +msgstr "Statut" + +#: includes/admin/class-mp-orders-admin.php:1155 +msgid "N/A" +msgstr "N/A" + +#: includes/admin/class-mp-dashboard-widgets.php:243 +#: includes/admin/class-mp-products-admin.php:464 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:142 +msgid "Sales" +msgstr "Ventes" + +#: includes/admin/class-mp-products-admin.php:463 +msgid "Stock" +msgstr "Stock" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:85 +#: includes/admin/class-mp-ajax.php:176 includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:434 +#: includes/admin/class-mp-products-admin.php:462 +#: includes/admin/class-mp-products-admin.php:576 +#: includes/admin/class-mp-products-admin.php:1519 +#: includes/admin/class-mp-products-admin.php:1569 +#: includes/admin/class-mp-products-admin.php:1950 +#: includes/admin/class-mp-products-admin.php:2059 +#: includes/admin/class-mp-products-admin.php:2190 +#: includes/admin/class-mp-products-admin.php:2330 +#: includes/common/class-mp-cart.php:1415 includes/common/helpers.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:130 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:276 +msgid "Price" +msgstr "Prix" + +#: includes/admin/class-mp-ajax.php:173 +#: includes/admin/class-mp-products-admin.php:461 +#: includes/admin/class-mp-products-admin.php:1972 +#: includes/admin/class-mp-products-admin.php:2224 +msgid "SKU" +msgstr "SKU (Référence produit)" + +#: includes/admin/class-mp-products-admin.php:459 +#: includes/admin/class-mp-products-admin.php:1793 +#: includes/admin/class-mp-products-admin.php:1805 +#: includes/admin/class-mp-products-admin.php:2163 +msgid "Variations" +msgstr "Variations" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:83 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:86 +#: includes/admin/class-mp-dashboard-widgets.php:134 +#: includes/admin/class-mp-products-admin.php:458 +#: includes/admin/class-mp-products-admin.php:837 +#: includes/admin/class-mp-shortcode-builder.php:689 +#: includes/admin/class-mp-shortcode-builder.php:856 +#: includes/admin/class-mp-shortcode-builder.php:1300 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:512 +#: includes/admin/widgets/ms-global-product-list.php:115 +#: includes/admin/widgets/product-list.php:211 +msgid "Product Name" +msgstr "Nom Produit" + +#: includes/common/template-functions.php:2575 +msgid "Categorized in " +msgstr "Classé dans " + +#: includes/admin/class-mp-orders-admin.php:305 +#: includes/common/payment-gateways/free_orders.php:176 +msgid "Payment Information" +msgstr "Informations de paiement" + +#: includes/admin/class-mp-exporter-orders.php:167 +#: includes/admin/class-mp-orders-admin.php:432 +#: includes/admin/class-mp-pages-admin.php:62 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:227 +#: includes/common/class-mp-gdpr.php:374 +#: includes/common/template-functions.php:175 +#: includes/common/template-functions.php:926 +msgid "Order Status" +msgstr "Statut Commande" + +#. translators: %s: orders closed +#: marketpress.php:327 +msgid "Closed (%s)" +msgid_plural "Closed (%s)" +msgstr[0] "Closes (%s)" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:249 +#: includes/admin/class-mp-orders-admin.php:375 +#: includes/admin/class-mp-orders-admin.php:951 +#: includes/admin/class-mp-orders-admin.php:1053 +#: includes/admin/class-mp-orders-admin.php:1065 +#: includes/common/class-mp-gdpr.php:330 +#: includes/common/class-mp-order.php:1019 marketpress.php:325 +msgid "Closed" +msgstr "Closes" + +#. translators: %s: shipped orders +#: marketpress.php:320 +msgid "Shipped (%s)" +msgid_plural "Shipped (%s)" +msgstr[0] "Livrées (%s)" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:248 +#: includes/admin/class-mp-orders-admin.php:376 +#: includes/admin/class-mp-orders-admin.php:950 +#: includes/admin/class-mp-orders-admin.php:1049 +#: includes/admin/class-mp-orders-admin.php:1064 +#: includes/common/class-mp-gdpr.php:329 +#: includes/common/class-mp-order.php:1002 marketpress.php:318 +msgid "Shipped" +msgstr "Livrées" + +#. translators: %s: paid orders +#: marketpress.php:313 +msgid "Paid (%s)" +msgid_plural "Paid (%s)" +msgstr[0] "Payées (%s)" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:247 +#: includes/admin/class-mp-orders-admin.php:377 +#: includes/admin/class-mp-orders-admin.php:949 +#: includes/admin/class-mp-orders-admin.php:1045 +#: includes/admin/class-mp-orders-admin.php:1063 +#: includes/common/class-mp-gdpr.php:328 +#: includes/common/payment-gateways/2checkout.php:294 +#: includes/common/payment-gateways/_cubepoints.php:130 +#: includes/common/payment-gateways/authorizenet-aim.php:193 +#: includes/common/payment-gateways/free_orders.php:91 +#: includes/common/payment-gateways/mijireh.php:248 +#: includes/common/payment-gateways/paymill.php:273 +#: includes/common/payment-gateways/paypal-express.php:933 +#: includes/common/payment-gateways/paypal-express.php:967 +#: includes/common/payment-gateways/pin.php:258 +#: includes/common/payment-gateways/simplify.php:181 +#: includes/common/payment-gateways/stripe.php:368 +#: includes/common/payment-gateways/wepay.php:269 marketpress.php:311 +msgid "Paid" +msgstr "Payées" + +#. translators: %s: orders received +#: marketpress.php:306 +msgid "Received (%s)" +msgid_plural "Received (%s)" +msgstr[0] "Reçues (%s)" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:246 +#: includes/admin/class-mp-orders-admin.php:378 +#: includes/admin/class-mp-orders-admin.php:1041 +#: includes/admin/class-mp-orders-admin.php:1062 +#: includes/common/class-mp-gdpr.php:327 includes/common/class-mp-order.php:995 +#: includes/common/payment-gateways/payfast.php:244 marketpress.php:304 +msgid "Received" +msgstr "Reçues" + +#: marketpress.php:268 +msgid "Search Orders" +msgstr "Rechercher Commandes" + +#: marketpress.php:267 +msgid "View Order" +msgstr "Voir Commande" + +#: marketpress.php:262 +msgid "Order" +msgstr "Commande" + +#: includes/admin/class-mp-dashboard-widgets.php:301 +#: includes/admin/class-mp-orders-admin.php:989 marketpress.php:261 +msgid "Orders" +msgstr "Commandes" + +#: marketpress.php:228 +msgid "No Products found in Trash" +msgstr "0 Produits dans la corbeille" + +#: marketpress.php:227 +msgid "No Products Found" +msgstr "0 Produits trouvés" + +#: marketpress.php:226 +msgid "Search Products" +msgstr "Rechercher Produits" + +#: marketpress.php:225 marketpress.php:229 +msgid "View Product" +msgstr "Voir Produit" + +#: marketpress.php:224 +msgid "New Product" +msgstr "Nouveau Produit" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1022 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:258 +#: marketpress.php:223 +msgid "Edit" +msgstr "Modifier" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1019 +msgid "Create New" +msgstr "Créer nouveau" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:687 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:698 +#: marketpress.php:217 +msgid "Product" +msgstr "Produit" + +#: includes/admin/class-mp-dashboard-widgets.php:307 +#: includes/common/template-functions.php:173 +#: includes/common/template-functions.php:179 +#: includes/common/template-functions.php:902 +#: includes/multisite/template-functions.php:82 marketpress.php:216 +#: marketpress.php:219 +msgid "Products" +msgstr "Produits" + +#: includes/admin/class-mp-store-settings-admin.php:118 +#: includes/admin/widgets/product-tag-cloud.php:46 +#: includes/multisite/class-mp-admin-multisite.php:548 +msgid "Product Tags" +msgstr "Mots-Clés de Produit" + +#: includes/common/template-functions.php:2906 +#: includes/multisite/template-functions.php:449 +msgid "Product Category" +msgstr "Catégorie du produit " + +#: includes/admin/class-mp-store-settings-admin.php:117 +#: includes/admin/widgets/categories.php:8 +#: includes/admin/widgets/categories.php:18 +#: includes/multisite/class-mp-admin-multisite.php:539 +msgid "Product Categories" +msgstr "Catégories de Produit" + +#: includes/common/payment-gateways/stripe.php:332 +#: includes/common/template-functions.php:872 marketpress.php:218 +msgid "Store" +msgstr "Boutique" + +#: includes/admin/class-mp-pages-admin.php:60 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:209 +#: includes/admin/widgets/cart.php:8 includes/admin/widgets/cart.php:56 +#: includes/common/template-functions.php:174 +#: includes/common/template-functions.php:811 +msgid "Shopping Cart" +msgstr "Panier" + +#: includes/admin/class-mp-store-settings-admin.php:110 +#: includes/admin/class-mp-store-settings-admin.php:218 +msgid "Store Settings" +msgstr "Paramètres Boutique" + +#: includes/addons/class-mp-addons-list-table.php:128 marketpress.php:607 +msgid "Settings" +msgstr "Réglages" + +#: includes/common/data.php:178 includes/common/data.php:190 +msgid "Your Order Has Been Shipped! (ORDERID)" +msgstr "Votre commande a été envoyée: (ORDERID)" + +#: includes/common/data.php:159 includes/common/data.php:166 +#: includes/common/data.php:172 +msgid "Your Order Confirmation (ORDERID)" +msgstr "Votre confirmation de Commande (ORDERID)" + +#: includes/common/data.php:148 +msgid "

    Thank you for your order! We appreciate your business, and please come back often to check out our new products.

    " +msgstr "

    Nous vous remercions de votre commande! Revenez souvent pour vérifier nos nouveaux produits, svp.

    " + +#: includes/common/data.php:147 +msgid "

    You are almost done! Please do a final review of your order to make sure everything is correct then click the \"Confirm Payment\" button.

    " +msgstr "

    Vous avez presque fini! S'il vous plaît faîtes un examen final de votre commande pour vous assurer que tout est correct, puis cliquez sur le bouton \"Confirmer Paiement\"

    " + +#: includes/common/data.php:145 +msgid "

    Please enter your shipping information in the form below to proceed with your order.

    " +msgstr "

    S'il vous plaît entrez vos informations de livraison dans le formulaire ci-dessous pour procéder à votre commande.

    " + +#: includes/common/data.php:143 +msgid "

    If you have any questions about your order please do not hesitate to contact us.

    " +msgstr "

    Si vous avez des questions à propos de votre commande, n'hésitez pas à nous contacter.

    " + +#: includes/common/data.php:106 +msgid "tag" +msgstr "mot-clé" + +#: includes/common/data.php:105 +msgid "category" +msgstr "catégorie" + +#: includes/common/data.php:104 +msgid "order-status" +msgstr "statut-commande" + +#: includes/common/data.php:103 +msgid "shopping-cart" +msgstr "panier" + +#: includes/common/data.php:102 +msgid "products" +msgstr "produits" + +#. Translators: change default slugs here +#: includes/common/data.php:101 +msgid "store" +msgstr "boutique" \ No newline at end of file diff --git a/languages/mp-fr-ch.mo b/languages/mp-fr-ch.mo new file mode 100644 index 0000000000000000000000000000000000000000..6369e4e5c97a97a537c85b0a7cd6d0e94cf4582e GIT binary patch literal 278 zcmYLD!AiqG6s+KBkDfiO;7woJ)JxfrQ*CRZ!5~$<$(p{#)%Z5NeHHs5{+?$)!%cJO zz%Vnsc`(0cr$2*;lgRVP%PvG*_j1s`=%LHyJv`u-3(gbVT0x_)MiHu57BhH4?hZz$ z$w*B-36j8i-^P~Uw+!3HI?8nQW;vkbkLx*1jy<*%w#YD}%5NOiMo(UysIu9yZD8*C zGZ;E7m~FLIq`>KPVD$W}ZXy=c6Yj3Eri$xV`~m8E)T>$qggFVj0!vVX@) PV7WQ2E-Zgw|D^{1a7a+1 literal 0 HcmV?d00001 diff --git a/languages/mp-fr-ch.po b/languages/mp-fr-ch.po new file mode 100644 index 00000000..d3dc288d --- /dev/null +++ b/languages/mp-fr-ch.po @@ -0,0 +1,8954 @@ +# Translation of MarketPress in French (Switzerland) +# This file is distributed under the same license as the MarketPress package. +msgid "" +msgstr "" +"PO-Revision-Date: +0000\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-Generator: GlotPress/2.3.1\n" +"Language: fr_CH\n" +"Project-Id-Version: MarketPress\n" + +#: includes/public/class-mp-checkout.php:1285 +msgid "By clicking this checkbox you allow the website to process your personal data." +msgstr "" + +#: includes/common/class-mp-gdpr.php:382 +msgid "Order Info" +msgstr "" + +#: includes/common/class-mp-gdpr.php:268 +msgid "Shipping Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:267 +msgid "Shipping Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:266 +msgid "Shipping ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:265 +msgid "Shipping State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:264 +msgid "Shipping City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:263 +msgid "Shipping Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:262 +msgid "Shipping Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:261 +msgid "Shipping Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:260 +msgid "Shipping Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:259 +msgid "Shipping Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:258 +msgid "Shipping First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:254 +msgid "Billing Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:253 +msgid "Billing Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:252 +msgid "Billing ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:251 +msgid "Billing State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:250 +msgid "Billing City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:249 +msgid "Billing Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:248 +msgid "Billing Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:247 +msgid "Billing Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:246 +msgid "Billing Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:245 +msgid "Billing Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:244 +msgid "Billing First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:151 +msgid "Orders Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:139 +msgid "Customer Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:100 includes/common/class-mp-gdpr.php:116 +msgid "MarketPress User Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:81 +msgid "" +"In addition to standard WordPress session cookies, this site might be setting an\n" +"\t\t additional cookie to remember your cart settings. This cookie will last for one year." +msgstr "" + +#: includes/common/class-mp-gdpr.php:80 +msgid "Cookies" +msgstr "" + +#: includes/common/class-mp-gdpr.php:77 +msgid "" +"The following information will be collected in order to process orders: your name,\n" +"\t\t username, email address, avatar and profile URLs, address and phone number. This data can be\n" +"\t\t exported and removed." +msgstr "" + +#: includes/common/class-mp-gdpr.php:76 +msgid "Additional data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:71 +msgid "" +"This site might be using third party services and tools to process payments or/and\n" +"\t\t process shipping data when creating orders on the MarketPress store. These services include payment\n" +"\t\t gateways: 2Checkout, Authorize.net AIM, eWay shared payments, eWay Rapid 3.1 Payments, Mijireh,\n" +"\t\t Mollie, Paymill, PayPal, PIN, Simplify Commerce by MasterCard, Stripe and WePay; shipping gateways:\n" +"\t\t Fedex, UPS, USPS." +msgstr "" + +#: includes/common/class-mp-gdpr.php:70 +msgid "Third parties" +msgstr "" + +#: includes/admin/class-mp-admin.php:403 +msgid "Start creating store pages and products for your online shop here." +msgstr "" + +#: includes/admin/class-mp-admin.php:402 +msgid "Create Online Shop" +msgstr "" + +#: includes/admin/class-mp-admin.php:394 +msgid "Run Setup Wizard" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:234 +msgid "If having problems during invoice generation, add define( 'DOMPDF_ENABLE_HTML5PARSER', true ); to the wp-config.php file." +msgstr "" + +#: includes/public/class-mp-checkout.php:723 +msgid "Invalid Email" +msgstr "" + +#: includes/public/class-mp-checkout.php:721 +#: includes/public/class-mp-checkout.php:729 +msgid "This field is required" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:804 +msgid "This option changes the built-in css styles for store pages. For a custom css style, save your css file with the /* MarketPress Style: Your CSS Theme Name Here */ header line in the \"%s\" folder and it will appear in this list so you may select it. You should select \"None\" if you don't wish to use custom CSS styles or if you are using default theme templates or custom theme templates and css to make your own completely unique store design. For more information on custom theme templates click here »." +msgstr "" + +#: includes/public/class-mp-public.php:421 +#: includes/public/class-mp-short-codes.php:142 +msgid "Please enter a value greater than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:420 +#: includes/public/class-mp-short-codes.php:141 +msgid "Please enter a value less than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:419 +#: includes/public/class-mp-short-codes.php:140 +msgid "Please enter a value between {0} and {1}." +msgstr "" + +#: includes/public/class-mp-public.php:418 +#: includes/public/class-mp-short-codes.php:139 +msgid "Please enter a value between {0} and {1} characters long." +msgstr "" + +#: includes/public/class-mp-public.php:417 +#: includes/public/class-mp-short-codes.php:138 +msgid "Please enter at least {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:416 +#: includes/public/class-mp-short-codes.php:137 +msgid "Please enter no more than {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:415 +#: includes/public/class-mp-short-codes.php:136 +msgid "Please enter a value with a valid extension." +msgstr "" + +#: includes/public/class-mp-public.php:414 +#: includes/public/class-mp-short-codes.php:135 +msgid "Please enter the same value again." +msgstr "" + +#: includes/public/class-mp-public.php:413 +#: includes/public/class-mp-short-codes.php:134 +msgid "Please enter a valid credit card number." +msgstr "" + +#: includes/public/class-mp-public.php:412 +#: includes/public/class-mp-short-codes.php:133 +msgid "Please enter only digits." +msgstr "" + +#: includes/public/class-mp-public.php:411 +#: includes/public/class-mp-short-codes.php:132 +msgid "Please enter a valid number." +msgstr "" + +#: includes/public/class-mp-public.php:410 +#: includes/public/class-mp-short-codes.php:131 +msgid "Please enter a valid date (ISO)." +msgstr "" + +#: includes/public/class-mp-public.php:409 +#: includes/public/class-mp-short-codes.php:130 +msgid "Please enter a valid date." +msgstr "" + +#: includes/public/class-mp-public.php:408 +#: includes/public/class-mp-short-codes.php:129 +msgid "Please enter a valid URL." +msgstr "" + +#: includes/public/class-mp-public.php:406 +#: includes/public/class-mp-short-codes.php:127 +msgid "Please fix this field." +msgstr "" + +#: includes/public/class-mp-checkout.php:1287 +#: includes/public/class-mp-public.php:405 +#: includes/public/class-mp-short-codes.php:126 +msgid "This field is required." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:810 +msgid "None - Without Special CSS-styles" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:809 +msgid "Default - Using Default CSS-styles" +msgstr "" + +#: marketpress.php:739 +msgid "Enable multiple downloads per product" +msgstr "" + +#: marketpress.php:738 +msgid "Multiple Downloads" +msgstr "" + +#: includes/public/class-mp-checkout.php:715 +msgid "Invalid Zip Code" +msgstr "" + +#: includes/common/template-functions.php:2126 +msgid "Guest Email" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:195 +msgid "There was a problem finalizing your purchase. Please re-enter your credit card information and try again" +msgstr "" + +#: includes/common/class-mp-cart.php:565 includes/common/class-mp-order.php:600 +#: includes/common/helpers.php:111 +msgid "Download %1$s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:331 +msgid "Export products to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:328 +msgid "The import process uses the WordPress importer plugin." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:326 +msgid "Import / Export Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:325 +msgid "Export settings to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:324 +msgid "Import configuration" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:320 +msgid "Use the text below to export to a new installation. Or paste in the new configuration to import." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:318 +msgid "Import / Export Settings" +msgstr "" + +#. translators: URL to wp-admin/import.php +#: includes/admin/store-settings/class-mp-store-settings-import.php:266 +msgid "This importer is not installed. Please install importers from the main site." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:261 +msgid "Install Now" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:260 +msgid "Install %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:240 +msgid "Run Importer" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:239 +msgid "Run %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:258 +msgid "Import/Export" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1199 +msgid "Requires Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:737 +msgid "Optionally limit the user to some categories" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:671 +msgid "Should this coupon only be available to logged in users?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:670 +msgid "Require Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:655 +msgid "Mimimum number of products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:653 +msgid "Enter the minimum number of products in the cart that this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:648 +msgid "Can this coupon be limited to a number of products in the cart?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:334 +msgid "Add all values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:265 +msgid "Set as default variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:154 +msgid "Set Default" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:150 +msgid "More Info" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:40 +msgid "MarketPress - Quick Setup" +msgstr "" + +#: includes/public/class-mp-checkout.php:1399 +msgid "Proceed to checkout and create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1241 +#: includes/public/class-mp-checkout.php:1245 +msgid "Register account" +msgstr "" + +#: includes/public/class-mp-checkout.php:1233 +msgid "Register as customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:765 +msgid "

    Oops!

    Looks like you haven't added anything your cart. Let's go shopping!

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:763 +msgid "

    Oops!

    The cart is disabled.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing Information" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:214 +msgid "Global Currency" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:198 +msgid "Global Store Currency" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:507 +msgid "There are no shipping services available for this type of package in your location." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:168 +msgid "Using this USPS Shipping calculator requires requesting an Ecommerce API Username and Password. Get your free set of credentials here ». The password is no longer used for the API, just the username which you should enter below. The USPS test site has not yet been updated and currently doesn't work - you should just request activating your credentials with USPS and go live." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:339 +msgid "ZIP Code" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:334 +msgid "Last name" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:333 +msgid "First name" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:150 +msgid "These are the manual payment instructions to display on the order confirmation screen. TOTAL will be replaced with the order total and ORDERID will be replaced with Order ID." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:240 +msgid "You must login to Authorize.net merchant dashboard to obtain the API login ID and API transaction key. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:327 +msgid "
    1. Set the \"Return Method\" within Site Management to Header Redirect and set the \"Return URL\" to %s
    2. Set your notifications url to %s
    " +msgstr "" + +#: includes/common/data.php:191 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Also, digital downloads included in your order are now ready to be downloaded. Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:185 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order is now available to download! Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:184 +msgid "Your Order Is Ready To Be Downloaded! (ORDERID)" +msgstr "" + +#: includes/common/data.php:179 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:173 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received, your digital goods are ready to be downloaded and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:167 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received and your digital goods are ready to be downloaded. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:160 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +" Your order has been received, and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information: \n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/class-mp-product.php:638 +msgid "You can not add more items to cart." +msgstr "" + +#: includes/common/class-mp-product.php:635 +msgid "You can only add {0} to cart." +msgstr "" + +#: includes/common/class-mp-product.php:625 +msgid "This product has an order limit of %d." +msgstr "" + +#: includes/common/class-mp-order.php:1454 +msgid "Shipped: tracking code: %s" +msgstr "" + +#: includes/common/class-mp-order.php:1000 +#: includes/common/class-mp-order.php:1012 +msgid "Finished" +msgstr "" + +#: includes/common/class-mp-order.php:858 +msgid "Contact Details" +msgstr "" + +#: includes/common/class-mp-order.php:339 includes/common/data.php:155 +msgid "" +"A new order (ORDERID) was created in your store:\n" +"\n" +" ORDERINFOSKU\n" +"\n" +" SHIPPINGINFO\n" +"\n" +" PAYMENTINFO\n" +"\n" +msgstr "\n" + +#: includes/common/class-mp-cart.php:1858 +msgid "Add again" +msgstr "" + +#: includes/common/class-mp-cart.php:1852 +msgid "was removed from Shopping Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1242 +#: includes/public/class-mp-short-codes.php:160 +msgid "Cart update notice: this item has a limit per order or you have reached the stock limit." +msgstr "" + +#: includes/admin/widgets/product-list.php:235 +msgid "Show Only Featured Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:533 +msgid "If enabled, users won't be able to filter products per category and/or to order by release date/name/price." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:531 +msgid "Hide Products Filter?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:353 +msgid "Notification to registration email instead of billing email?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:322 +msgid "Order Shipped - Mixed orders (with both digital and physical products)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:289 +msgid "Order Shipped - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:224 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:194 +msgid "New Order - Mixed" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:161 +msgid "New Order - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:115 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:243 +msgid "Mixed orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:110 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:238 +msgid "Digital downloads orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:105 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:233 +msgid "Physical orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:96 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed.
    For orders placed with manual payment, emails set here will be overriden by the one configured in manual payments settings, under payments settings page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:89 +msgid "Customer Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:47 +msgid "Admin Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:566 +msgid "Only contact details" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:565 +msgid "Full billing info" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:561 +msgid "Details Collection" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:548 +msgid "Digital Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:515 +msgid "Apply Tax to Digital Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:236 +msgid "product (default)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:231 +msgid "If you are experiencing conflicts with other e-commerce plugins change this setting. This will change the internal post type of all your products. Please note that changing this option may break 3rd party themes or plugins." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1203 +msgid "Hide details" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1202 +msgid "Show all changes" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1184 +msgid "Version %s" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1161 +msgid "Current" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1131 +msgid "%s changelog" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:952 +msgid "We did not find any data for this plugin or theme..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:285 +msgid "Activate WPMU DEV Dashboard" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:279 +msgid "Just one more step - activate the WPMU DEV Dashboard plugin and you're all done!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:277 +msgid "Important updates are available for your WPMU DEV plugins/themes. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:273 +msgid "Just one more step to enable updates and support for %s!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:271 +msgid "Important updates are available for %s. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:264 +msgid "activate" +msgstr "" + +#: includes/admin/class-mp-admin.php:398 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:248 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:289 +msgid "Dismiss" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:247 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:288 +msgid "Saving..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:244 +msgid "Install Plugin" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:238 +msgid "Almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:236 +msgid "Important updates are available for your WPMU DEV plugins/themes. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:232 +msgid "%s is almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:230 +msgid "Important updates are available for %s. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:223 +msgid "install" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1428 +msgid "Sets the number of Tags to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1289 +msgid "How many products to display in the product list if \"paginate\" is set to false." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:739 +#: includes/admin/class-mp-shortcode-builder.php:906 +#: includes/admin/class-mp-shortcode-builder.php:1350 +msgid "Grid" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:735 +#: includes/admin/class-mp-shortcode-builder.php:902 +#: includes/admin/class-mp-shortcode-builder.php:1346 +msgid "Products will be displayed as list or grid." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:206 +msgid "Display a cloud or list of your global product tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:205 +msgid "Display a list of your global categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:204 +msgid "Display a list or grid of your global products." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:181 +msgid "Display a list of featured products." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1451 +msgid "Is Featured?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1444 +msgid "Featured Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:581 +#: includes/admin/class-mp-products-admin.php:1580 +msgid "% discount" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:579 +msgid "OR" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:460 +#: includes/admin/class-mp-products-admin.php:586 +#: includes/admin/widgets/product-list.php:217 +msgid "Featured" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:536 +#: includes/admin/class-mp-orders-admin.php:538 +msgid "Tracking Link" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:508 +msgid "Shipping Tax" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:356 +msgid "Shipping Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:352 +msgid "Taxes Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:349 +msgid "Products Total" +msgstr "" + +#: includes/admin/class-mp-ajax.php:366 +msgid "Oops! You entered an invalid username/email and or password." +msgstr "" + +#: includes/admin/class-mp-ajax.php:254 +msgid "Percentage Discount" +msgstr "" + +#: includes/admin/class-mp-ajax.php:234 +msgid "Limit the Amount of Items per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:214 +msgid "Unused Attributes" +msgstr "" + +#: includes/admin/class-mp-admin.php:82 +msgid "Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-admin.php:79 +msgid "MarketPress setup is not complete! Once you've completed this quick setup wizard you'll have a fully working online store - exciting! " +msgstr "" + +#: marketpress.php:263 +msgctxt "mp_order" +msgid "Add New" +msgstr "" + +#: marketpress.php:184 +msgctxt "product_tag" +msgid "Product Tag" +msgstr "" + +#: marketpress.php:183 +msgctxt "product_tag" +msgid "Product Tags" +msgstr "" + +#: marketpress.php:150 +msgctxt "product_category" +msgid "Product Category" +msgstr "" + +#: marketpress.php:149 +msgctxt "product_category" +msgid "Product Categories" +msgstr "" + +#. Author URI of the plugin/theme +msgid "http://premium.wpmudev.org" +msgstr "" + +#: marketpress.php:729 +msgid "Invoice PDF" +msgstr "" + +#: marketpress.php:712 +msgid "Grant access to themes and gateways depending on the user's Pro Site level" +msgstr "" + +#: marketpress.php:711 +msgid "Pro Sites" +msgstr "" + +#: marketpress.php:703 +msgid "Offer and accept coupon codes" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:687 +msgid "Install %s Pages" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:682 +msgid "Welcome to %s – Install pages required by the plugin automatically." +msgstr "" + +#: marketpress.php:668 +msgid "Your pages were created successfully." +msgstr "" + +#: marketpress.php:436 +msgid "Add a Product" +msgstr "" + +#: marketpress.php:271 +msgid "Parent Order" +msgstr "" + +#: marketpress.php:270 +msgid "No orders found in trash" +msgstr "" + +#: marketpress.php:269 +msgid "No orders found" +msgstr "" + +#: marketpress.php:265 +msgid "Edit Order" +msgstr "" + +#: marketpress.php:264 +msgid "Add New Order" +msgstr "" + +#: marketpress.php:220 marketpress.php:221 +msgid "Add New Product" +msgstr "" + +#: marketpress.php:197 +msgid "No product tags found" +msgstr "" + +#: marketpress.php:196 +msgid "Choose from the most used product tags" +msgstr "" + +#: marketpress.php:195 +msgid "Add or remove product tags" +msgstr "" + +#: marketpress.php:194 +msgid "Separate product tags with commas" +msgstr "" + +#: marketpress.php:193 +msgid "Search Product Tags" +msgstr "" + +#: marketpress.php:192 +msgid "Parent Product Tag:" +msgstr "" + +#: marketpress.php:191 +msgid "Parent Product Tag" +msgstr "" + +#: marketpress.php:190 +msgid "New Product Tag Name" +msgstr "" + +#: marketpress.php:189 +msgid "Add New Product Tag" +msgstr "" + +#: marketpress.php:188 +msgid "Update Product Tag" +msgstr "" + +#: marketpress.php:187 +msgid "View Product Tag" +msgstr "" + +#: marketpress.php:186 +msgid "Edit Product Tag" +msgstr "" + +#: marketpress.php:185 +msgid "All Product Tags" +msgstr "" + +#: marketpress.php:163 +msgid "No product categories found" +msgstr "" + +#: marketpress.php:162 +msgid "Choose from the most used product categories" +msgstr "" + +#: marketpress.php:161 +msgid "Add or remove product categories" +msgstr "" + +#: marketpress.php:160 +msgid "Separate product categories with commas" +msgstr "" + +#: marketpress.php:159 +msgid "Search Product Categories" +msgstr "" + +#: marketpress.php:158 +msgid "Parent Product Category:" +msgstr "" + +#: marketpress.php:157 +msgid "Parent Product Category" +msgstr "" + +#: marketpress.php:156 +msgid "New Product Category Name" +msgstr "" + +#: marketpress.php:155 +msgid "Add New Product Category" +msgstr "" + +#: marketpress.php:154 +msgid "Update Product Category" +msgstr "" + +#: marketpress.php:153 +msgid "View Product Category" +msgstr "" + +#: marketpress.php:152 +msgid "Edit Product Category" +msgstr "" + +#: marketpress.php:151 +msgid "All Product Categories" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Please fix the %s1 and then try submitting the form again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Oops! The form contains %s1 which %s2 been highlighted below." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:660 +msgid "have" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:659 +msgid "has" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:651 +msgid "Value must be less than {0}" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:650 +msgid "Please enter only letters and numbers" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:539 +msgid "Due to prolonged inactivity on this page, one or more settings were not saved. Please try again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:535 +msgid "Settings Saved" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-user-select.php:22 +msgid "Select Some Users" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-section.php:18 +msgid "Section Title" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:425 +msgid "Are you sure you want to delete this?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:30 +msgid "Add Row" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-post-select.php:24 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-taxonomy-select.php:22 +msgid "Select Posts" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:210 +msgid "Add Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:129 +msgid "Select the image that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:93 +msgid "Select image(s) that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:79 +msgid "Select the image that you would like to use for this variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:48 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:82 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:68 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:132 +msgid "Select Image" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:31 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:160 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:168 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:19 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:115 +msgid "Select File" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:30 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:18 +msgid "Select the file that you would like to use." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:357 +msgid "Create Variations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:356 +msgid "Add Another Variant" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Insert a value and press ENTER" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "(e.g. White, Grey, Red etc.)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Variation Values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:333 +msgid "Or create new variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "(e.g. Color)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:303 +msgid "You are about to delete selected variants.
    If you want to continue please confirm." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:302 +msgid "Confirmation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:290 +msgid "Insert quantity available. Empty for unlimited." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:281 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:294 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:307 +msgid "Cancel" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:280 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:293 +msgid "Update" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:277 +msgid "Insert the price i.e. 25 or 25.50" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:115 +msgid "Img." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:85 +msgid "Add New Variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:79 +msgid "Delete Variants" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:78 +msgid "Update Prices" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:77 +msgid "Update Inventory" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:76 +msgid "Update Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:75 +msgid "Bulk Actions" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:73 +msgid "Select bulk action" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:196 +msgid "Configure Store" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:195 +msgid "Configure shipping rates, emails and your store's appearance. " +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:190 +msgid "Add Product" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:189 +msgid "Add your first product for sale and get familiar with adding products." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:184 +msgid "Your store is almost ready for its first customers, but first it needs some products. Get started by adding products below, or jump straight into further configuring your store’s settings." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:183 +msgid "Woohoo! Your online store is up and running." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:160 +msgid "Finish Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:124 +msgid "And what metric system do you want to use?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:113 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:142 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:159 +msgid "Back" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:109 +msgid "Do you want to apply tax for your products? You can customize this for each product and variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:105 +msgid "What currency do you want to sell with?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:93 +msgid "And, which countries do you want to sell to?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:89 +msgid "Where is your online store based?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:80 +msgid "Payment Gateway" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:79 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:123 +msgid "Metric System" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:78 +msgid "Currency & Tax" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:77 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:88 +msgid "Locations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:70 +msgid "Choose where you want to sell your stuff and what currency. Easy!" +msgstr "" + +#: includes/public/class-mp-checkout.php:1400 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:58 +msgid "Continue" +msgstr "" + +#: includes/admin/class-mp-admin.php:83 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:53 +msgid "Skip this step, I'll do this manually" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:49 +msgid "Install store pages" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:44 +msgid "Once you've completed this quick setup wizard you'll have a fully working online store - exciting! Start
    by creating the default store pages for the online store such as the cart, checkout and store pages." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:42 +msgid "MarketPress adds a full online store to your website, with heaps of configuration options and addons
    to suit your needs. It's really easy to get going, and only takes a few minutes to setup!" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:41 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:69 +msgid "Welcome to MarketPress - Quick Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-advanced-select.php:23 +msgid "Select Some Options" +msgstr "" + +#: includes/wpmudev-metaboxes/class-wpmudev-field.php:694 +msgid "You must the WPMUDEV_Field::display() method in your form field class" +msgstr "" + +#: includes/public/class-mp-short-codes.php:636 +msgid "Only %s left in stock..." +msgstr "" + +#: includes/public/class-mp-short-codes.php:633 +msgid "Unlimited stock" +msgstr "" + +#: includes/public/class-mp-short-codes.php:430 +msgid "product_id must be defined" +msgstr "" + +#: includes/public/class-mp-checkout.php:1250 +msgid "An account with this username already exists" +msgstr "" + +#: includes/public/class-mp-checkout.php:1394 +msgid "Continue as Guest" +msgstr "" + +#: includes/public/class-mp-checkout.php:1393 +msgid "Proceed to checkout and you'll have an opportunity to create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1392 +#: includes/public/class-mp-checkout.php:1398 +msgid "First-time customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1386 +msgid "Login" +msgstr "" + +#: includes/public/class-mp-checkout.php:1379 +msgid "E-Mail Address/Username" +msgstr "" + +#: includes/public/class-mp-checkout.php:1377 +msgid "Sign in to speed up the checkout process." +msgstr "" + +#: includes/public/class-mp-checkout.php:1376 +msgid "Have an account?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1297 +msgid "Shipping address different than billing?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1184 +msgid "There are no available gateways to process this payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1160 +msgid "Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:1123 +msgid "Oops! An error occurred while processing your payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1051 +msgid "Next Step »" +msgstr "" + +#: includes/public/class-mp-checkout.php:1045 +msgid "« Previous Step" +msgstr "" + +#: includes/public/class-mp-checkout.php:873 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:657 +msgid "error" +msgstr "" + +#: includes/public/class-mp-checkout.php:872 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:658 +msgid "errors" +msgstr "" + +#: includes/public/class-mp-checkout.php:871 +msgid "

    Oops! We found %d %s in the form below.

    Fields that have errors are highlighted in red below. Entering into a field will reveal the actual error that occurred.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:870 +msgid "Please enter a valid first and last name" +msgstr "" + +#: includes/public/class-mp-checkout.php:869 +msgid " Please enter a valid card security code" +msgstr "" + +#: includes/public/class-mp-checkout.php:868 +msgid "Please enter a valid card expiration" +msgstr "" + +#: includes/public/class-mp-checkout.php:773 +msgid "Javascript is required in order to checkout. Please enable Javascript in your browser and then refresh this page." +msgstr "" + +#: includes/public/class-mp-checkout.php:588 +msgid "An unknown error occurred. Please try again." +msgstr "" + +#: includes/public/class-mp-checkout.php:386 +msgid "Town/City" +msgstr "" + +#: includes/public/class-mp-checkout.php:380 +msgid "Apartment, suite, unit, building, floor, etc" +msgstr "" + +#: includes/public/class-mp-checkout.php:376 +msgid "Address Line 2" +msgstr "" + +#: includes/public/class-mp-checkout.php:363 +msgid "Address Line 1" +msgstr "" + +#: includes/common/class-mp-order.php:770 +#: includes/public/class-mp-checkout.php:354 +msgid "Company" +msgstr "" + +#: includes/public/class-mp-checkout.php:330 +msgid "Last" +msgstr "" + +#: includes/public/class-mp-checkout.php:321 +msgid "First" +msgstr "" + +#: includes/public/class-mp-checkout.php:284 +msgid "State/Province" +msgstr "" + +#: includes/public/class-mp-checkout.php:83 +msgid "Review Order/Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing/Shipping Address" +msgstr "" + +#: includes/public/class-mp-checkout.php:80 +msgid "Login/Register" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:530 +msgid "Marketplace" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:523 +msgid "Global Marketplace Pages" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +msgid "Store Network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +#: includes/multisite/class-mp-admin-multisite.php:494 +msgid "Store Network Settings" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:440 +msgid "Set theme access permissions for network stores. For a custom css theme, save your css file with the MarketPress Theme: NAME header in the /marketpress/ui/themes/ folder and it will appear in this list so you may select it." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:361 +msgid "Choose a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:336 +msgid "%d products get indexed" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:285 +msgid "Product Indexer" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:281 +msgid "Please hold on..." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:280 +msgid "Index Products" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:279 +msgid "%d products have been indexed in whole network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:182 +msgid "Enable Global Shopping Cart?" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:178 +msgid "Limit Global Widgets/Shortcodes To Main Blog?" +msgstr "" + +#: includes/common/template-functions.php:2802 +#: includes/multisite/template-functions.php:355 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:97 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:114 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:143 +msgid "Next" +msgstr "" + +#: includes/common/template-functions.php:2801 +#: includes/multisite/template-functions.php:354 +msgid "Prev" +msgstr "" + +#: includes/common/template-functions.php:2597 +msgid "Tagged in " +msgstr "" + +#: includes/common/template-functions.php:2196 +#: includes/common/template-functions.php:2202 +#: includes/common/template-functions.php:2214 +#: includes/common/template-functions.php:2217 +msgid "Oops! We couldn't locate any orders matching that order number. Please verify the order number and try again." +msgstr "" + +#: includes/common/template-functions.php:2138 +msgid "Look Up" +msgstr "" + +#: includes/common/template-functions.php:1423 +msgid "Please choose a shipping method" +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "If you have your order ID you can look it up using the form below." +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "Order Search" +msgstr "" + +#: includes/common/template-functions.php:910 +#: includes/public/class-mp-checkout.php:1440 +msgid "Cart" +msgstr "" + +#: includes/common/template-functions.php:895 +msgid "[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:887 +msgid "[mp_global_categories_list]" +msgstr "" + +#: includes/common/template-functions.php:880 +msgid "" +"Welcome to our market place!\n" +"\n" +"Check out our network of products:\n" +"\n" +"[mp_list_global_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_global_categories_list]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:879 +msgid "Global Store" +msgstr "" + +#: includes/common/template-functions.php:873 +msgid "" +"Welcome to our online store! Feel free to browse around:\n" +"\n" +"[mp_store_navigation]\n" +"\n" +"Check out our most popular products:\n" +"\n" +"[mp_popular_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_list_categories]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_tag_cloud]" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:127 +msgid "If cart weight is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:126 +msgid "Cart Weight" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:222 +msgid "Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:206 +msgid "Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:196 +msgid "Retail Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:195 +msgid "Online Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:193 +msgid "Rates Request Type" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:189 +msgid "Maximum Weight Per Package" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:195 +#: includes/common/shipping-modules/mp-usps.php:236 +msgid "Enter your standard box sizes as LengthxWidthxHeight (e.g. 12x8x6) For each box defined enter the maximum weight it can contain. Note: the shipping prices this plugin calculates are estimates. If they are consistently too low or too high, please check that the list of boxes above and the product weights are accurate and complete." +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:187 +msgid "Handling Charge Per Box Shipped" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:176 +#: includes/common/shipping-modules/mp-ups.php:181 +msgid "Offered Services" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:165 +msgid "Shipper Number" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:151 +msgid "User ID" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:144 +msgid "Developer Kit Access Key" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:140 +msgid "Use Sandbox Mode?" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:123 +msgid "In order to use UPS, you will need a UPS Developer Kit access key and the UPS user ID and password associated with the access key. Set these up for free here. If this information is missing or incorrect, an error will appear during the checkout process and the buyer will not be able to complete the transaction." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:112 +msgid "If cart total is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:111 +msgid "Cart Total" +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:95 +#: includes/common/shipping-modules/mp-weight-rate.php:111 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Don't worry about sorting as this will be done automatically upon saving." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:170 +msgid "Method Title (visible for clients)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:409 +#: includes/common/shipping-modules/mp-ups.php:216 +#: includes/common/shipping-modules/mp-usps.php:251 +msgid "Max Weight (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:402 +#: includes/common/shipping-modules/mp-ups.php:209 +#: includes/common/shipping-modules/mp-usps.php:247 +msgid "Size (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:387 +msgid "Enter your standard box sizes as LengthxWidthxHeight ( 12x8x6 ) For each box defined enter the maximum weight it can contain. Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:361 +#: includes/common/shipping-modules/mp-usps.php:229 +msgid "Handling Charge per International Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:353 +msgid "International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:339 +#: includes/common/shipping-modules/mp-usps.php:213 +msgid "Handling Charge per Domestic Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:331 +msgid "Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:321 +msgid "When checked the customer can chose Residential or Commercial delivery with Residential the default. Unchecked it's only Residential rates." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:320 +msgid "Allow Commercial Delivery?" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:315 +msgid "Fedex 10kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:314 +msgid "Fedex 25kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:313 +msgid "Fedex Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:312 +msgid "Fedex Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:311 +msgid "Fedex Pak" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:310 +msgid "Fedex Tube" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:306 +msgid "Default Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:294 +msgid "Dropoff Type" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:290 +msgid "Meter ID" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:134 +msgid "This is a residential address" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:283 +msgid "There was an error processing your card: \"%s\". Please check your credit card info and try again." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:121 +msgid "Wepay makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept cards directly on your site. You don't need a merchant account or gateway. WePay handles everything including storing cards. Credit cards go directly to WePay's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:385 +msgid "There was an error processing your card - \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:356 +msgid "%s Store Purchase - Order ID - %s, Email - %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:251 +msgid "Stripe makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept Visa, MasterCard, American Express, Discover, JCB, and Diners Club cards directly on your site. You don't need a merchant account or gateway. Stripe handles everything, including storing cards, subscriptions, and direct payouts to your bank account. Credit cards go directly to Stripe's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:192 +msgid "ZMW - Zambian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:191 +msgid "ZAR - South African Rand" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:190 +msgid "YER - Yemeni Rial" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:189 +msgid "XPF - Cfp Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:188 +msgid "XOF - West African Cfa Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:187 +msgid "XCD - East Caribbean Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:186 +msgid "XAF - Central African Cfa Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:185 +msgid "WST - Samoan Tala" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:184 +msgid "VUV - Vanuatu Vatu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:183 +msgid "VND - Vietnamese Đồng" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:182 +msgid "VEF - Venezuelan Bolívar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:181 +msgid "UZS - Uzbekistani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:180 +msgid "UYI - Uruguayan Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:178 +msgid "UGX - Ugandan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:177 +msgid "UAH - Ukrainian Hryvnia" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:176 +msgid "TZS - Tanzanian Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:175 +msgid "TWD - New Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:174 +msgid "TTD - Trinidad and Tobago Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:172 +msgid "TOP - Tongan Paʻanga" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:171 +msgid "TJS - Tajikistani Somoni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:169 +msgid "SZL - Swazi Lilangeni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:168 +msgid "SVC - Salvadoran Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:167 +msgid "STD - São Tomé and Príncipe Dobra" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:166 +msgid "SRD - Surinamese Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:165 +msgid "SOS - Somali Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:164 +msgid "SLL - Sierra Leonean Leone" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:163 +msgid "SHP - Saint Helenian Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:160 +msgid "SCR - Seychellois Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:159 +msgid "SBD - Solomon Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:157 +msgid "RWF - Rwandan Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:156 +msgid "RUB - Russian Ruble" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:155 +msgid "RSD - Serbian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:154 +msgid "RON - Romanian Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:153 +msgid "QAR - Qatari Riyal" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:152 +msgid "PYG - Paraguayan Guaraní*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:151 +msgid "PLN - Polish Złoty" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:150 +msgid "PKR - Pakistani Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:149 +msgid "PHP - Philippine Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:148 +msgid "PGK - Papua New Guinean Kina" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:147 +msgid "PEN - Peruvian Nuevo Sol*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:146 +msgid "PAB - Panamanian Balboa*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:144 +msgid "NPR - Nepalese Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:142 +msgid "NIO - Nicaraguan Córdoba*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:141 +msgid "NGN - Nigerian Naira" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:140 +msgid "NAD - Namibian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:139 +msgid "MZN - Mozambican Metical" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:137 +msgid "MXN - Mexican Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:136 +msgid "MWK - Malawian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:135 +msgid "MVR - Maldivian Rufiyaa" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:134 +msgid "MUR - Mauritian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:133 +msgid "MRO - Mauritanian Ouguiya" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:132 +msgid "MOP - Macanese Pataca" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:131 +msgid "MNT - Mongolian Tögrög" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:130 +msgid "MKD - Macedonian Denar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:129 +msgid "MGA - Malagasy Ariary" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:128 +msgid "MDL - Moldovan Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:126 +msgid "LVL - Latvian Lats" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:124 +msgid "LSL - Lesotho Loti" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:123 +msgid "LRD - Liberian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:122 +msgid "LKR - Sri Lankan Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:121 +msgid "LBP - Lebanese Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:120 +msgid "LAK - Lao Kip*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:119 +msgid "KZT - Kazakhstani Tenge" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:118 +msgid "KYD - Cayman Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:117 +msgid "KRW - South Korean Won" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:116 +msgid "KMF - Comorian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:115 +msgid "KHR - Cambodian Riel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:114 +msgid "KGS - Kyrgyzstani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:113 +msgid "KES - Kenyan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:111 +msgid "JMD - Jamaican Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:110 +msgid "ISK - Icelandic Króna" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:109 +msgid "INR - Indian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:108 +msgid "ILS - Israeli New Sheqel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:107 +msgid "IDR - Indonesian Rupiah" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:105 +msgid "HTG - Haitian Gourde" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:103 +msgid "HNL - Honduran Lempira*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:101 +msgid "GYD - Guyanese Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:100 +msgid "GTQ - Guatemalan Quetzal*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:99 +msgid "GNF - Guinean Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:98 +msgid "GMD - Gambian Dalasi" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:97 +msgid "GIP - Gibraltar Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:96 +msgid "GEL - Georgian Lari" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:94 +msgid "FKP - Falkland Islands Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:93 +msgid "FJD - Fijian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:91 +msgid "ETB - Ethiopian Birr" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:90 +msgid "EGP - Egyptian Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:89 +msgid "EEK - Estonian Kroon*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:88 +msgid "DZD - Algerian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:87 +msgid "DOP - Dominican Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:85 +msgid "DJF - Djiboutian Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:84 +msgid "CZK - Czech Koruna*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:83 +msgid "CVE - Cape Verdean Escudo*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:82 +msgid "CRC - Costa Rican Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:81 +msgid "COP - Colombian Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:80 +msgid "CNY - Chinese Renminbi Yuan" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:79 +msgid "CLP - Chilean Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:77 +msgid "CDF - Congolese Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:76 +msgid "CAD - Canadian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:75 +msgid "BZD - Belize Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:74 +msgid "BWP - Botswana Pula" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:73 +msgid "BSD - Bahamian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:72 +msgid "BRL - Brazilian Real*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:71 +msgid "BOB - Bolivian Boliviano*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:70 +msgid "BND - Brunei Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:69 +msgid "BMD - Bermudian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:68 +msgid "BIF - Burundian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:67 +msgid "BGN - Bulgarian Lev" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:66 +msgid "BDT - Bangladeshi Taka" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:65 +msgid "BBD - Barbadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:64 +msgid "BAM - Bosnia & Herzegovina Convertible Mark" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:63 +msgid "AZN - Azerbaijani Manat" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:62 +msgid "AWG - Aruban Florin" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:61 +msgid "AUD - Australian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:60 +msgid "ARS - Argentine Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:59 +msgid "AOA - Angolan Kwanza*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:58 +msgid "ANG - Netherlands Antillean Gulden" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:57 +msgid "AMD - Armenian Dram" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:56 +msgid "ALL - Albanian Lek" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:55 +msgid "AFN - Afghan Afghani*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:54 +msgid "AED - United Arab Emirates Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:345 +msgid "Skrill balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:327 +msgid "Skrill IPN message received." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:283 +msgid "Skrill" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:278 +msgid "Pending payment" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:144 +msgid "The secret word must match the word submitted in the \"Merchant Tools\" section of your Skrill account." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:134 +msgid "You must use your valid Skrill merchant email. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:133 +msgid "Skrill Email" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:123 +msgid "Resell your inventory via Skrill.com (Moneybookers)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:95 +msgid "ZAR - South-African Rand" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:93 +msgid "TWD - Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:92 +msgid "TRY - New Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:91 +msgid "TND - Tunisian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:90 +msgid "THB - Thailand Baht" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:89 +msgid "SKK - Slovakian Koruna" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:86 +#: includes/common/payment-gateways/stripe.php:158 +msgid "SAR - Saudi Riyal" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:85 +msgid "RSD - Serbian dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:83 +msgid "QAR - Qatari Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:81 +msgid "OMR - Omani Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:80 +msgid "NOK - Norwegian Krone " +msgstr "" + +#: includes/common/payment-gateways/skrill.php:78 +#: includes/common/payment-gateways/stripe.php:138 +msgid "MYR - Malaysian Ringgit" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:77 +#: includes/common/payment-gateways/stripe.php:127 +msgid "MAD - Moroccan Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:74 +msgid "KRW - South-Korean Won" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:72 +msgid "JOD - Jordanian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:70 +msgid "INR - Indian Rupee" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:63 +msgid "EEK - Estonian Kroon" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:56 +msgid "AED - Utd. Arab Emir. Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:52 +msgid "Turkish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:51 +msgid "Swedish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:50 +msgid "Spanish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:49 +msgid "Russian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:48 +msgid "Romainian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:47 +msgid "Polish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:46 +msgid "Italian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:45 +msgid "Greek" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:44 +msgid "German" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:43 +msgid "French" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:42 +msgid "Finnish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:41 +msgid "English" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:40 +msgid "Dutch" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:39 +msgid "Danish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:38 +msgid "Czech" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:37 +msgid "Chinese" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:201 +msgid "There was an error processing your card: %s. Please re-enter your credit card info and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:278 +msgid "
  • There was an error processing your card: \"%s\". Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:274 +msgid "
  • There was an error processing your card. Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:177 +#: includes/common/payment-gateways/stripe.php:279 +msgid "Publishable Key" +msgstr "" + +#: includes/common/payment-gateways/pin.php:163 +msgid "API Credentials?" +msgstr "" + +#: includes/common/payment-gateways/pin.php:147 +msgid "PIN makes it easy to start accepting credit card payments with Australia’s first all-in-one online payment system. Accept all major credit cards directly on your site. Your sales proceeds are deposited to any Australian bank account, no merchant account required." +msgstr "" + +#: includes/common/payment-gateways/pin.php:57 +#: includes/common/payment-gateways/stripe.php:179 +msgid "USD - United States Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:455 +msgid "Email Footer" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:445 +msgid "Email Header" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:416 +msgid "Partner" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:409 +msgid "Vendor" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:852 +#: includes/common/payment-gateways/paypal-express.php:1126 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences\t section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:749 +msgid "Page Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:744 +msgid "Header Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:739 +msgid "Header Border Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:734 +msgid "Header Image" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:680 +msgid "Locale" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:624 +#: includes/common/payment-gateways/paypal-express.php:658 +msgid "Merchant Email" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:645 +msgid "Paypal Express Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:603 +msgid "Paypal Express Network Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:861 +msgid "Application ID (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:854 +msgid "Signature (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:847 +msgid "API Password (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:839 +msgid "API Username (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:832 +msgid "Signature (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:825 +msgid "API Password (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:817 +msgid "API Username (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:799 +msgid "This message is displayed at the top of the gateway settings page to store admins. It's a good place to inform them of your fees or put any sales messages." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:787 +msgid "Please enter your PayPal email address or business ID you want to recieve fees at." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:786 +msgid "PayPal E-mail" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:772 +msgid "Fees to Collect (%)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:375 +#: includes/public/class-mp-checkout.php:341 +msgid "Email Address" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:299 +msgid "Sorry, your order was not completed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:126 +#: includes/common/payment-gateways/paypal-express.php:780 +msgid "You will be redirected to the PayPal site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:90 +#: includes/common/payment-gateways/skrill.php:94 +msgid "USD - U.S. Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:89 +msgid "TRY - Turkish lira" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:88 +#: includes/common/payment-gateways/stripe.php:170 +msgid "THB - Thai Baht" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:87 +msgid "TWD - Taiwan New Dollars" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:86 +#: includes/common/payment-gateways/pin.php:59 +#: includes/common/payment-gateways/skrill.php:88 +#: includes/common/payment-gateways/stripe.php:162 +msgid "SGD - Singapore Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:84 +msgid "RUB - Russian Rubles" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:82 +msgid "PHP - Philippine Pesos" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:81 +#: includes/common/payment-gateways/pin.php:58 +#: includes/common/payment-gateways/skrill.php:79 +#: includes/common/payment-gateways/stripe.php:145 +msgid "NZD - New Zealand Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:79 +msgid "MXN - Mexican Peso" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:78 +msgid "MYR - Malaysian Ringgits" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:77 +#: includes/common/payment-gateways/pin.php:64 +#: includes/common/payment-gateways/skrill.php:73 +#: includes/common/payment-gateways/stripe.php:112 +msgid "JPY - Japanese Yen" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:75 +#: includes/common/payment-gateways/pin.php:63 +#: includes/common/payment-gateways/skrill.php:66 +#: includes/common/payment-gateways/stripe.php:102 +msgid "HKD - Hong Kong Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:73 +msgid "GBP - Pound Sterling" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:68 +#: includes/common/payment-gateways/pin.php:62 +#: includes/common/payment-gateways/skrill.php:59 +msgid "CAD - Canadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:67 +msgid "BRL - Brazilian Real" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:66 +#: includes/common/payment-gateways/pin.php:56 +#: includes/common/payment-gateways/skrill.php:57 +msgid "AUD - Australian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:288 +msgid "There was an error processing your card: \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:163 +msgid "When running on a live site, Paymill recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:161 +#: includes/common/payment-gateways/pin.php:157 +#: includes/common/payment-gateways/simplify.php:103 +#: includes/common/payment-gateways/stripe.php:260 +#: includes/common/payment-gateways/wepay.php:153 +msgid "Force SSL?" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:151 +msgid "Accept Visa, Mastercard, Maestro UK, Discover and Solo cards directly on your site. You don't need a merchant account or gateway. Credit cards go directly to Paymill's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:131 +msgid "CVV2" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:72 +#: includes/common/payment-gateways/pin.php:61 +#: includes/common/payment-gateways/skrill.php:65 +#: includes/common/payment-gateways/stripe.php:95 +msgid "GBP - British Pound" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:71 +#: includes/common/payment-gateways/stripe.php:173 +msgid "TRY - Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:70 +#: includes/common/payment-gateways/paypal-chained-payments.php:85 +#: includes/common/payment-gateways/skrill.php:87 +#: includes/common/payment-gateways/stripe.php:161 +msgid "SEK - Swedish Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:69 +#: includes/common/payment-gateways/skrill.php:84 +msgid "RON - Romanian Leu New" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:68 +#: includes/common/payment-gateways/paypal-chained-payments.php:83 +#: includes/common/payment-gateways/skrill.php:82 +msgid "PLN - Polish Zloty" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:67 +#: includes/common/payment-gateways/paypal-chained-payments.php:80 +#: includes/common/payment-gateways/stripe.php:143 +msgid "NOK - Norwegian Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:66 +#: includes/common/payment-gateways/skrill.php:75 +#: includes/common/payment-gateways/stripe.php:125 +msgid "LTL - Lithuanian Litas" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:65 +#: includes/common/payment-gateways/paypal-chained-payments.php:69 +#: includes/common/payment-gateways/skrill.php:60 +#: includes/common/payment-gateways/stripe.php:78 +msgid "CHF - Swiss Franc" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:64 +#: includes/common/payment-gateways/skrill.php:76 +msgid "LVL - Latvian Lat" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:63 +#: includes/common/payment-gateways/paypal-chained-payments.php:74 +#: includes/common/payment-gateways/skrill.php:69 +msgid "ILS - Israeli Shekel" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:62 +#: includes/common/payment-gateways/skrill.php:71 +msgid "ISK - Iceland Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:61 +#: includes/common/payment-gateways/paypal-chained-payments.php:76 +#: includes/common/payment-gateways/skrill.php:68 +#: includes/common/payment-gateways/stripe.php:106 +msgid "HUF - Hungarian Forint" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:60 +#: includes/common/payment-gateways/paypal-chained-payments.php:71 +#: includes/common/payment-gateways/skrill.php:62 +#: includes/common/payment-gateways/stripe.php:86 +msgid "DKK - Danish Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:59 +#: includes/common/payment-gateways/skrill.php:67 +#: includes/common/payment-gateways/stripe.php:104 +msgid "HRK - Croatian Kuna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:58 +#: includes/common/payment-gateways/paypal-chained-payments.php:70 +#: includes/common/payment-gateways/skrill.php:61 +msgid "CZK - Czech Koruna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:57 +#: includes/common/payment-gateways/skrill.php:58 +msgid "BGN - Bulgarian Leva" +msgstr "" + +#: includes/common/payment-gateways/payflow/class-mp-gateway-worker-payflow.php:123 +msgid "There was an error connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:344 +msgid "This setting will log all PayFast communication to the \"payfast.log\" file." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:342 +msgid "Log Debugging Info?" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:335 +msgid "DO NOT INPUT A VALUE UNLESS YOU HAVE SET ONE IN THE SETTINGS SECTION OF YOUR PAYFAST SETTINGS." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:333 +msgid "PayFast Passphrase" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:323 +msgid "You can find your credentials on your integration page." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:321 +msgid "PayFast Merchant Credentials" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:311 +msgid "PayFast Mode" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:308 +msgid "PayFast is a payments processing service for South Africa. We make it safe for buyers to send money and easy for sellers to receive money. More Info »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:306 +msgid "PayFast Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:285 +msgid "Your payment via PayFast for this order totaling %s is complete. The transaction number is %s." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:278 +msgid "Your payment via PayFast for this order totaling %s is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:124 +msgid "Your PayFast transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:82 +#: includes/common/payment-gateways/payfast.php:83 +msgid "PayFast" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:157 +msgid "API error: - \"%s\"" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:198 +msgid "The payment request is under process" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:140 +msgid "Order: #" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:116 +msgid "You will be redirected to the Mollie site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:73 +msgid "%sMollie%s provides a fully PCI Compliant and secure way to collect payments via iDeal, Credit Card, Bancontact / Mister Cash, SOFORT Banking, Overbooking, Bitcoin, PayPal, paysafecard and AcceptEmail." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:53 +#: includes/common/payment-gateways/mollie.php:54 +#: includes/common/payment-gateways/mollie.php:195 +#: includes/common/payment-gateways/mollie.php:245 +msgid "Mollie" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:50 +#: includes/common/payment-gateways/paymill.php:56 +#: includes/common/payment-gateways/paypal-chained-payments.php:72 +#: includes/common/payment-gateways/pin.php:60 +#: includes/common/payment-gateways/skrill.php:64 +#: includes/common/payment-gateways/stripe.php:92 +msgid "EUR - Euro" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:306 +msgid "Access Key" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:300 +msgid "You must login to the Mijireh.com dashboard to obtain the Access Key." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:299 +msgid "Credentials" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:289 +msgid "Mijireh Checkout provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:269 +msgid "Mijireh Error: " +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:89 +msgid "You will be redirected to the Mijireh.com site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:87 +msgid "Your Mijireh transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:42 +#: includes/common/payment-gateways/mijireh.php:43 +#: includes/common/payment-gateways/mijireh.php:324 +msgid "Mijireh" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:145 +msgid "These are the manual payment instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:189 +msgid "This is the email text to send to those who have made free order checkouts. You should include your free order instructions / information here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:183 +msgid "This is the free order information to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:182 +msgid "Confirmation User Information" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:177 +msgid "This is the information to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:163 +msgid "If enabled, all free orders will be automatically marked as paid." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:159 +msgid "Payment Status" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:149 +msgid "This gateway is automatically activated if order totalling 0 and it can't be disabled" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:35 +#: includes/common/payment-gateways/free_orders.php:36 +#: includes/common/payment-gateways/free_orders.php:89 +msgid "Free Order" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:34 +#: includes/common/payment-gateways/free_orders.php:197 +msgid "Free Orders" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:515 +msgid "Sandbox API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:266 +#: includes/common/payment-gateways/eway31.php:542 +msgid "eWay Rapid 3.1 Payments (beta)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:403 +msgid "Hosted Payment Page Language" +msgstr "" + +#: includes/common/payment-gateways/eway.php:373 +msgid "Note when testing in sandbox mode it will use the default eWay test API credentials. Also, please note that cart total needs to be a whole number (e.g. 10.00) in order to generate a successful transaction, otherwise the transaction will fail." +msgstr "" + +#: includes/common/payment-gateways/eway.php:267 +msgid "You will be redirected to https://www.eway.com.au to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:380 +msgid "You have chosen to checkout using %s. Please confirm your order details and click \"Submit Order\" when finished." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:272 +#: includes/common/payment-gateways/paymill.php:131 +#: includes/common/payment-gateways/stripe.php:231 +msgid "Security Code " +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Enter in MM/YYYY or MM/YY format" +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Expiration" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:321 +msgid "Delim Data" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:307 +#: includes/common/payment-gateways/paypal-payflow.php:456 +msgid "This text will appear as the footer of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:287 +#: includes/common/payment-gateways/paypal-payflow.php:440 +msgid "Email Customer (on success)" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:278 +msgid "Authorize.net default is \",\". Otherwise, get this from your credit card processor. If the transactions are not going through, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:277 +msgid "Delimeter Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:193 +msgid "Held For Review" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:310 +#: includes/common/payment-gateways/payfast.php:314 +msgid "Test" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:300 +#: includes/common/payment-gateways/pin.php:170 +#: includes/common/payment-gateways/stripe.php:272 +msgid "Secret Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:283 +msgid "Select Your Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:97 +msgid "Your payment will be processed by the iDEAL network" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:208 +msgid "These are the CubePoints to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:203 +msgid "These are the CubePoints instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:266 +msgid "If enabled, all API calls will be made to https://test.bitpay.com." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:263 +msgid "Use Test Mode?" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:259 +msgid "If checked, response fron bitpay will be stored in log file, keep it disabled unless required." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:256 +msgid "Enable Debug Log" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:249 +msgid "Full Notifications" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:231 +#: includes/common/payment-gateways/eway31.php:499 +#: includes/common/payment-gateways/eway31.php:526 +#: includes/common/payment-gateways/mollie.php:83 +#: includes/common/shipping-modules/mp-fedex.php:269 +msgid "API Key" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:222 +msgid "You can now accept a payment from any country on Earth, with no risk of fraud. To use Bitpay, you need to signup on Bitpay. \\n After completing the signup process, you can get api keys at Bitpay API key. You can read more about Bitpay at Bitpay API. \\n Bitpay requires SSL(https) for payment notifications to work." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:61 +msgid "You will be redirected to bitpay.com, for bitcoin payment. It is completely safe." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:346 +msgid "You must login to the 2Checkout vendor dashboard to obtain the seller ID and secret word. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:345 +#: includes/common/payment-gateways/authorizenet-aim.php:239 +#: includes/common/payment-gateways/paymill.php:168 +#: includes/common/payment-gateways/paypal-express.php:704 +#: includes/common/payment-gateways/simplify.php:80 +#: includes/common/payment-gateways/stripe.php:265 +#: includes/common/payment-gateways/wepay.php:158 +msgid "API Credentials" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:325 +#: includes/common/payment-gateways/_bitpay.php:220 +#: includes/common/payment-gateways/_cubepoints.php:185 +#: includes/common/payment-gateways/_ideal.php:268 +#: includes/common/payment-gateways/_payway.php:255 +#: includes/common/payment-gateways/authorizenet-aim.php:219 +#: includes/common/payment-gateways/eway.php:352 +#: includes/common/payment-gateways/eway31.php:460 +#: includes/common/payment-gateways/free_orders.php:147 +#: includes/common/payment-gateways/manual-payments.php:126 +#: includes/common/payment-gateways/mijireh.php:287 +#: includes/common/payment-gateways/mollie.php:71 +#: includes/common/payment-gateways/paymill.php:149 +#: includes/common/payment-gateways/paypal-chained-payments.php:344 +#: includes/common/payment-gateways/paypal-payflow.php:376 +#: includes/common/payment-gateways/pin.php:145 +#: includes/common/payment-gateways/simplify.php:69 +#: includes/common/payment-gateways/skrill.php:121 +#: includes/common/payment-gateways/stripe.php:249 +#: includes/common/payment-gateways/wepay.php:119 +#: includes/common/shipping-modules/mp-fedex.php:243 +#: includes/common/shipping-modules/mp-flat-rate.php:63 +#: includes/common/shipping-modules/mp-pickup.php:140 +#: includes/common/shipping-modules/mp-table-rate.php:94 +#: includes/common/shipping-modules/mp-ups.php:122 +#: includes/common/shipping-modules/mp-usps.php:167 +#: includes/common/shipping-modules/mp-weight-rate.php:110 +msgid "%s Settings" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:136 +msgid "You will be redirected to the 2Checkout site to finalize your payment." +msgstr "" + +#: includes/common/helpers.php:169 includes/public/class-mp-checkout.php:1277 +msgid "Billing" +msgstr "" + +#: includes/common/helpers.php:144 +msgid "FREE" +msgstr "" + +#: includes/common/helpers.php:134 +msgid "Coupons:" +msgstr "" + +#: includes/common/helpers.php:95 +msgid "Qty" +msgstr "" + +#: includes/common/helpers.php:94 +msgid "Sku" +msgstr "" + +#: includes/common/data.php:59 +msgid "Zip Code" +msgstr "" + +#: includes/common/class-mp-taxes.php:336 +msgid "Standard Table" +msgstr "" + +#: includes/common/class-mp-product.php:2698 +msgid "Tweet" +msgstr "" + +#: includes/common/class-mp-product.php:2321 +msgid "Notification Preferences: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2320 +msgid "Edit Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2318 +msgid "Link: %s

    " +msgstr "" + +#: includes/common/class-mp-product.php:2317 +msgid "Current Inventory: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2316 +msgid "Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2314 +msgid "This message is being sent to notify you of low stock of a product in your online store according to your preferences.

    " +msgstr "" + +#: includes/common/class-mp-product.php:1817 +msgid "" +msgstr "" + +#: includes/common/class-mp-product.php:1427 +#: includes/common/class-mp-product.php:1430 +msgid "(tax incl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1422 +#: includes/common/class-mp-product.php:1425 +msgid "(tax excl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1300 +#: includes/common/class-mp-product.php:1315 +msgid "%s each" +msgstr "" + +#: includes/common/class-mp-product.php:988 +msgid "Choose Options" +msgstr "" + +#: includes/common/class-mp-product.php:526 +msgid "Choose a %s" +msgstr "" + +#: includes/common/class-mp-product.php:284 +#: includes/common/class-mp-product.php:292 +#: includes/common/class-mp-product.php:615 +msgid "We're sorry, we only have %d of this item in stock right now." +msgstr "" + +#: includes/common/class-mp-order.php:1456 +msgid "Shipped: Track Shipment" +msgstr "" + +#: includes/common/class-mp-order.php:1049 +msgid "Order Received" +msgstr "" + +#: includes/common/class-mp-order.php:1014 +msgid "In Process" +msgstr "" + +#: includes/common/class-mp-order.php:969 +msgid "Order #" +msgstr "" + +#: includes/common/class-mp-order.php:866 +msgid "Copy billing address to shipping address" +msgstr "" + +#: includes/common/class-mp-order.php:822 +#: includes/public/class-mp-checkout.php:1314 +msgid "Special Instructions" +msgstr "" + +#: includes/common/class-mp-order.php:817 +#: includes/common/payment-gateways/stripe.php:335 +msgid "Email" +msgstr "" + +#: includes/common/class-mp-order.php:813 +#: includes/common/payment-gateways/stripe.php:341 +#: includes/public/class-mp-checkout.php:416 +msgid "Phone" +msgstr "" + +#: includes/common/class-mp-order.php:791 +#: includes/common/payment-gateways/stripe.php:337 +msgid "State" +msgstr "" + +#: includes/common/class-mp-order.php:776 +msgid "Address 1" +msgstr "" + +#: includes/common/class-mp-order.php:766 +msgid "Last Name" +msgstr "" + +#: includes/common/class-mp-order.php:762 +msgid "First Name" +msgstr "" + +#: includes/common/class-mp-installer.php:677 +msgid "MarketPress requires a database update to continue working correctly. Go to update page" +msgstr "" + +#: includes/common/class-mp-installer.php:657 +msgid "MarketPress performed a quick automatic update successfully!" +msgstr "" + +#: includes/common/class-mp-installer.php:653 +msgid "Perform Update" +msgstr "" + +#: includes/common/class-mp-installer.php:647 +msgid "Please update each subsite in your WordPress network where you have older version of the MarketPress plugin." +msgstr "" + +#: includes/common/class-mp-installer.php:641 +msgid "Depending on the amount of products you have, this update could take quite some time. Please keep this window open while the update completes. If you have products with multiple variations, the progress bar may move slower, please don't exit the window." +msgstr "" + +#: includes/common/class-mp-installer.php:632 +msgid "Product Metadata" +msgstr "" + +#: includes/common/class-mp-installer.php:601 +msgid "MarketPress requires a database update to continue working correctly.
    Below you will find a list of items that require your attention." +msgstr "" + +#: includes/common/class-mp-installer.php:600 +msgid "Update MarketPress Data" +msgstr "" + +#: includes/common/class-mp-installer.php:530 +msgid "Update Data" +msgstr "" + +#: includes/common/class-mp-installer.php:67 +msgid "Complete!" +msgstr "" + +#: includes/common/class-mp-installer.php:66 +msgid "Upgrading Database...Please Wait..." +msgstr "" + +#: includes/common/class-mp-installer.php:64 +msgid "An error occurred while updating. Please refresh this page and try again." +msgstr "" + +#: includes/common/class-mp-cart.php:2447 +msgid "Some items in your cart have fallen below the quantity you currently have in your cart. We have adjusted the quantity in your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:2443 +msgid "Some items in your cart are no longer available. We have removed these items from your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:1566 +msgid "item" +msgstr "" + +#: includes/common/class-mp-cart.php:1563 +#: includes/common/class-mp-cart.php:1568 +msgid "items" +msgstr "" + +#: includes/common/class-mp-cart.php:1363 +msgid "Items/Products added to Cart will show here." +msgstr "" + +#: includes/common/class-mp-cart.php:1362 +msgid "Your shopping cart is empty." +msgstr "" + +#: includes/common/class-mp-cart.php:1357 +msgid "View Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1241 +#: includes/common/class-mp-cart.php:1298 +#: includes/public/class-mp-short-codes.php:159 +msgid "Adding..." +msgstr "" + +#: includes/common/class-mp-cart.php:1033 +msgid "Continue Shopping?" +msgstr "" + +#: includes/common/class-mp-cart.php:961 +msgid "Secure Checkout
    Shopping is always safe and secure." +msgstr "" + +#: includes/common/class-mp-cart.php:959 +msgid "You are about to submit your order!
    Please review your order details before continuing. You will be charged immediately upon clicking \"Submit Order\"." +msgstr "" + +#: includes/common/class-mp-cart.php:956 +msgid "Continue »" +msgstr "" + +#: includes/common/class-mp-cart.php:955 +msgid "Submit Order" +msgstr "" + +#: includes/common/class-mp-cart.php:818 +msgid "There are no items in your cart - go add some !" +msgstr "" + +#: includes/common/class-mp-cart.php:816 +msgid "The cart is disabled." +msgstr "" + +#: includes/common/class-mp-cart.php:735 +msgid "Estimated %s" +msgstr "" + +#: includes/common/class-mp-cart.php:717 +msgid "Estimated Shipping" +msgstr "" + +#: includes/common/class-mp-cart.php:697 +msgid "Product Total" +msgstr "" + +#: includes/common/class-mp-cart.php:670 includes/common/class-mp-cart.php:672 +msgid "Estimated Total (%s, %s)" +msgstr "" + +#: includes/common/class-mp-cart.php:668 +msgid "Estimated Total (%s)" +msgstr "" + +#: includes/common/class-mp-cart.php:666 includes/common/class-mp-cart.php:752 +msgid "Estimated Total" +msgstr "" + +#: includes/admin/widgets/product-list.php:247 +msgid "Show Thumbnail Placeholder image (if image is not set)" +msgstr "" + +#: includes/admin/widgets/cart.php:73 +msgid "Display product price" +msgstr "" + +#: includes/admin/widgets/cart.php:71 +msgid "Display product quantity" +msgstr "" + +#: includes/admin/widgets/cart.php:69 +msgid "Display product image" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:93 +msgid "General Shipping Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:773 +msgid "If you are having conflicts with the lightbox library from your theme or another plugin you should uncheck this." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:772 +msgid "Use Built-In Lightbox for Images?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:762 +msgid "Disable Large Image Display?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:688 +msgid "Show Product Image?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:682 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:684 +msgid "Show Tags List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:676 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:678 +msgid "Show Categories List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:671 +msgid "If enabled, description excerpt will be added above Add to cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:669 +msgid "Show Excerpt?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:665 +msgid "If enabled, users will be able to choose how many of the product they want to purchase before adding to their cart. If not checked, quantity could be change later on the cart page." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:663 +msgid "Show Quantity Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:649 +msgid "Settings related to the display of individual product pages." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:648 +msgid "Product Page Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:605 +msgid "Related Products Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:573 +msgid "Show Related Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:568 +msgid "Related Product Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:549 +msgid "Order Status Entries Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:510 +msgid "Sort Products By" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:497 +msgid "Products Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:492 +msgid "Paginate Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:478 +msgid "Excerpts Length" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:473 +msgid "Show Excerpts?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:450 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:746 +msgid "Image Alignment" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:412 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:708 +msgid "Custom Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:401 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:697 +msgid "Large - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:400 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:696 +msgid "Medium - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:399 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:695 +msgid "Thumbnail - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:397 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:693 +msgid "Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:386 +msgid "Select default placeholder image thumbnail when product image is not available (if empty, plugin's built-in image will be used)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:380 +msgid "Show default product placeholder thumbnail when product image is not available?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:374 +msgid "Show Product Thumbnail?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:369 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:658 +msgid "Redirect to cart page for immediate checkout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:368 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:657 +msgid "Stay on current product page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:366 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:655 +msgid "MarketPress supports two \"flows\" for adding products to the shopping cart. After adding a product to their cart, two things can happen:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:365 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:654 +msgid "Add To Cart Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:355 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:628 +msgid "Four" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:354 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:627 +msgid "Three" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:353 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:626 +msgid "Two" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:625 +msgid "One" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:349 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:622 +msgid "Set the number of products that show up in a grid row to best fit your theme" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:348 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:621 +msgid "How many products per row?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:342 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:609 +msgid "Display as grid" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:341 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:608 +msgid "Display as list" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:339 +msgid "Product Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:334 +msgid "Settings related to the display of product lists/grids." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:333 +msgid "Product List/Grid Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:314 +msgid "Show Twitter Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:309 +msgid "Twitter" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:303 +msgid "Show Share Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:297 +msgid "Recommend" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:296 +msgid "Like" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:294 +msgid "Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:283 +msgid "Show Facebook Like Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:278 +msgid "Facebook" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:257 +msgid "Show \"Pin It\" Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:252 +msgid "Pinterest" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:246 +msgid "Social Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:193 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:202 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:211 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:220 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:229 +#: includes/multisite/class-mp-admin-multisite.php:532 +#: includes/multisite/class-mp-admin-multisite.php:541 +#: includes/multisite/class-mp-admin-multisite.php:550 +msgid "Choose a Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:191 +msgid "This page will be used as the root for your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:168 +#: includes/multisite/class-mp-admin-multisite.php:586 +msgid "Create Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "uncropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "cropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:87 +#: includes/multisite/class-mp-admin-multisite.php:121 +#: includes/multisite/class-mp-admin-multisite.php:620 +msgid "An error occurred while creating the store page. Please try again." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:66 +msgid "Choose the gateway(s) that you would like to be available for checkout." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:65 +msgid "Enabled Gateways" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:78 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:146 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:179 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:213 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:274 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:307 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:341 +msgid "Text" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:71 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:139 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:172 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:206 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:267 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:300 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:334 +msgid "Subject" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:52 +msgid "Notification Email" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:510 +msgid "Enabling this option will display label `excl. tax` or `incl. tax` after price" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:509 +msgid "Display tax label?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:504 +msgid "Enabling this option will show Price + Tax, eg. if your price is 100 and your tax 20, your price will be 120" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:416 +#: includes/multisite/class-mp-admin-multisite.php:234 +msgid "Price Format" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:366 +msgid "Enabling this field will display a textbox on the shipping checkout page for users to enter special instructions for their order. Useful for product personalization, etc." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:365 +msgid "Show Special Instructions Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:360 +msgid "Universal" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:359 +msgid "Old" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1167 +#: includes/admin/store-settings/class-mp-store-settings-general.php:358 +msgid "New" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:353 +msgid "If you already use Google Analytics for your website, you can track detailed ecommerce information by enabling this setting. Choose whether you are using the new asynchronous or old tracking code. Before Google Analytics can report ecommerce activity for your website, you must enable ecommerce tracking on the profile settings page for your website. Also keep in mind that some gateways do not reliably show the receipt page, so tracking may not be accurate in those cases. It is recommended to use the PayPal gateway for the most accurate data. More information »" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:347 +msgid "Do you want to display the product price on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:346 +msgid "Show product price on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:340 +msgid "Do you want to display the product quantity on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:339 +msgid "Show product quantity on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:333 +msgid "Do you want to display the product image on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:332 +msgid "Show product image on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:327 +msgid "This option hide floating Mini Cart in top right corner." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:326 +msgid "Disable Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:316 +msgid "If unchecked your Orders admin page will be hidden" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:315 +msgid "Show admin Orders page?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:309 +msgid "Disable Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:303 +msgid "Force Login?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:297 +msgid "Hide Out of Stock Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:555 +msgid "This will prevent multiples of the same downloadable product form being added to the cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:554 +msgid "Limit Digital Products Per-order?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:268 +msgid "If you're having issues downloading large files and have worked with your hosting provider to increase your memory limits, try enabling this - just keep in mind, it's not as secure!" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:267 +msgid "Use Alternative Download Method?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:252 +msgid "Download Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:230 +msgid "Change product post type" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:51 +msgid "%s Capabilities" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-addons.php:47 +msgid "Store Settings: Add Ons: %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:254 +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:56 +msgid "Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Edit Product Attribute %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:246 +msgid "Exporters" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:238 +msgid "Short Codes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:207 +msgid "An appropriate message for key \"%s\" could not be found." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:204 +msgid "Product attribute updated successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:203 +msgid "Product attribute added successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +msgid "Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +#: includes/admin/store-settings/class-mp-store-settings-addons.php:121 +msgid "Store Settings: Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "Store Settings: Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:118 +msgid "Store Settings: Product Tags" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:117 +msgid "Store Settings: Product Categories" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Store Settings: Product Attributes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +msgid "Store Settings: Payments" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:114 +msgid "Store Settings: Shipping" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +#: includes/admin/class-mp-store-settings-admin.php:226 +msgid "Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +msgid "Store Settings: Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:112 +msgid "Store Settings: Presentation" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:111 +msgid "Store Settings: General" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1489 +msgid "Select a Product" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1447 +msgid "Reset to Defaults" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1446 +msgid "Insert Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1202 +#: includes/admin/class-mp-shortcode-builder.php:1227 +#: includes/admin/class-mp-shortcode-builder.php:1252 +msgid "The text to show in the link." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1196 +#: includes/admin/class-mp-shortcode-builder.php:1221 +#: includes/admin/class-mp-shortcode-builder.php:1246 +msgid "Whether to return a clickable link or url." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1177 +msgid "Whether to display the cart only on store pages or not." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1171 +msgid "Whether to show or hide the product price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1165 +msgid "Whether to show or hide the product quantity." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1159 +msgid "Whether to show or hide the product image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1153 +msgid "The text displayed before the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1147 +msgid "The title of the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1058 +#: includes/admin/class-mp-shortcode-builder.php:1121 +msgid "A label to prepend to the price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1032 +#: includes/admin/class-mp-shortcode-builder.php:1127 +msgid "What context for display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1004 +msgid "Set the alignment of the image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:998 +msgid "Set a custom pixel width/height. If omitted defaults to the size set by \"context\"." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:993 +msgid "Widget" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:988 +msgid "What context for preset size options." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:982 +#: includes/admin/class-mp-shortcode-builder.php:1026 +#: includes/admin/class-mp-shortcode-builder.php:1052 +#: includes/admin/class-mp-shortcode-builder.php:1077 +#: includes/admin/class-mp-shortcode-builder.php:1096 +#: includes/admin/class-mp-shortcode-builder.php:1115 +msgid "The ID of the product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:963 +msgid "Whether to display the product meta (e.g. price, buy button)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:738 +#: includes/admin/class-mp-shortcode-builder.php:905 +#: includes/admin/class-mp-shortcode-builder.php:958 +#: includes/admin/class-mp-shortcode-builder.php:992 +#: includes/admin/class-mp-shortcode-builder.php:1035 +#: includes/admin/class-mp-shortcode-builder.php:1130 +#: includes/admin/class-mp-shortcode-builder.php:1349 +msgid "List" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:957 +#: includes/admin/class-mp-shortcode-builder.php:991 +#: includes/admin/class-mp-shortcode-builder.php:1034 +#: includes/admin/class-mp-shortcode-builder.php:1129 +msgid "Single" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:953 +msgid "Whether and what context of image size to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:948 +msgid "Full" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:943 +msgid "Whether and what type of content to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:937 +msgid "Whether to display the product title." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:931 +msgid "The ID of the product to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:747 +#: includes/admin/class-mp-shortcode-builder.php:914 +msgid "Hide" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:746 +#: includes/admin/class-mp-shortcode-builder.php:913 +msgid "Show" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:744 +#: includes/admin/class-mp-shortcode-builder.php:911 +msgid "Whether or not to show the product filters." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:724 +#: includes/admin/class-mp-shortcode-builder.php:891 +#: includes/admin/class-mp-shortcode-builder.php:1335 +msgid "Limits list to a specific product tag." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:713 +#: includes/admin/class-mp-shortcode-builder.php:880 +#: includes/admin/class-mp-shortcode-builder.php:1324 +msgid "Limits list to a specific product category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:706 +#: includes/admin/class-mp-shortcode-builder.php:873 +#: includes/admin/class-mp-shortcode-builder.php:1317 +msgid "Direction to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:684 +#: includes/admin/class-mp-shortcode-builder.php:851 +#: includes/admin/class-mp-shortcode-builder.php:1295 +msgid "What field to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:678 +#: includes/admin/class-mp-shortcode-builder.php:845 +#: includes/admin/class-mp-shortcode-builder.php:1283 +msgid "How many products to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:672 +#: includes/admin/class-mp-shortcode-builder.php:839 +#: includes/admin/class-mp-shortcode-builder.php:1277 +msgid "The page number to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:666 +#: includes/admin/class-mp-shortcode-builder.php:833 +#: includes/admin/class-mp-shortcode-builder.php:1271 +msgid "Whether to paginate the product list. This is useful to only show a subset." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:808 +msgid "How many related items to show." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:790 +msgid "How to relate the products" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:784 +msgid "The product to show related items for." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:765 +msgid "The maximum number of products to display" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:647 +msgid "Comma separated list of tags (term_id) to include. For example, include=5,27 means tags that have the term_id 5 or 27 will be the only tags displayed. Defaults to include everything." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:641 +msgid "Comma separated list of tags (term_id) to exclude. For example, exclude=5,27 means tags that have the term_id 5 or 27 will NOT be displayed. Defaults to exclude nothing." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:633 +#: includes/admin/class-mp-shortcode-builder.php:1420 +msgid "Sort order." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:629 +#: includes/admin/class-mp-shortcode-builder.php:1416 +msgid "Count" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:626 +#: includes/admin/class-mp-shortcode-builder.php:1413 +msgid "Order of the tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:620 +msgid "The text/space between tags)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:616 +msgid "UL with a class of \"wp-tag-cloud\"" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:615 +msgid "separated by whitespace defined by \"separator\" parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:613 +msgid "Format of the cloud display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:607 +msgid "The number of actual tags to display in the cloud. (Use \"0\" to display all tags.)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:601 +msgid "Unit of measure as pertains to the smallest and largest values. This can be any CSS length value, e.g. pt, px, em, %." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:595 +msgid "The text size of the tag with the largest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:589 +msgid "The text size of the tag with the smallest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:570 +msgid "The \"tabindex\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:564 +msgid "The \"name\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:558 +msgid "The \"id\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:552 +msgid "Which category ID is selected." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:540 +msgid "The max depth. This is ignored unless hierarchical is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:536 +#: includes/multisite/template-functions.php:816 +msgid "No Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:414 +#: includes/admin/class-mp-shortcode-builder.php:546 +msgid "Calculates link or post counts by including items from child categories. If show_counts and hierarchical are true this is automatically set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:409 +msgid "Value of n (some number) specifies the depth (or level) to descend in displaying Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:408 +msgid "Show only top level Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:407 +msgid "All Categories displayed in flat (no indent) form (overrides hierarchical)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:406 +msgid "All Categories and child Categories (Default)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:402 +msgid "This parameter controls how many levels in the hierarchy of Categories are to be included in the list of Categories. NOTE: The \"hierarchical\" argument, which is disabled by default, will override the depth argument, unless it is true. When the argument is false, it will display all of the categories. When it is enabled it will use the value in the \"depth\" argument." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:396 +#: includes/admin/class-mp-shortcode-builder.php:1394 +msgid "Sets the number of Categories to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:390 +#: includes/admin/class-mp-shortcode-builder.php:534 +msgid "Set the text to show when no categories are listed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:384 +msgid "Set the title and style of the outer list item. If present but empty, the outer list item will not be displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:378 +#: includes/admin/class-mp-shortcode-builder.php:528 +msgid "Display sub-categories as inner list items (below the parent list item) or inline." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:368 +#: includes/admin/class-mp-shortcode-builder.php:511 +msgid "Exclude category-tree from the results. The parameter include must be empty. If the hierarchical parameter is true, then use exclude instead of exclude_tree." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:354 +msgid "Only include these categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:340 +#: includes/admin/class-mp-shortcode-builder.php:356 +#: includes/admin/class-mp-shortcode-builder.php:370 +#: includes/admin/class-mp-shortcode-builder.php:496 +#: includes/admin/class-mp-shortcode-builder.php:513 +msgid "Select Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:338 +#: includes/admin/class-mp-shortcode-builder.php:494 +msgid "Exclude one or more categories from the results. The parameter include must be empty." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:332 +msgid "Set a URI for an image (usually an rss feed icon) to act as a link to each categories' rss-2 feed. This parameter overrides the feed parameter. There is no default for this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:320 +msgid "Display a link to each category's rss-2 feed and set the link text to display. The default is no text and no feed displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:313 +#: includes/admin/class-mp-shortcode-builder.php:487 +msgid "Any" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:307 +#: includes/admin/class-mp-shortcode-builder.php:481 +msgid "Only display categories that are children of the category identified by this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:301 +msgid "Sets whether a category's description is inserted into the title attribute of the links created (i.e. <a title=\"<em>Category Description</em>\" href=\"...)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:295 +#: includes/admin/class-mp-shortcode-builder.php:475 +msgid "Toggles the display of categories with no posts." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:289 +#: includes/admin/class-mp-shortcode-builder.php:469 +#: includes/admin/class-mp-shortcode-builder.php:1388 +msgid "Toggles the display of the current count of posts in each category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:279 +msgid "Style to display the categories list in. A value of list displays the categories as list items while none generates no special display method (the list items are separated by
    tags)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:269 +#: includes/admin/class-mp-shortcode-builder.php:449 +#: includes/admin/class-mp-shortcode-builder.php:1378 +msgid "Sort order for categories (either ascending or descending)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:259 +#: includes/admin/class-mp-shortcode-builder.php:439 +#: includes/admin/class-mp-shortcode-builder.php:1368 +msgid "Sort categories alphabetically, by unique Category ID, or by the count of posts in that Category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:253 +#: includes/admin/class-mp-shortcode-builder.php:433 +msgid "If a value is entered, causes the display of a link to all categories if the style is set to list." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:219 +msgid "Select an Action" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:217 +msgid "What would you like to do?" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:216 +#: includes/admin/class-mp-shortcode-builder.php:1522 +msgid "Add E-Commerce Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:197 +msgid "Display a list of links to your store pages." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:196 +msgid "Display a link or url to the order status page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:195 +msgid "Display a link or url to the current products list page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:194 +msgid "Display a link or url to the current store page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:193 +msgid "Display a link or url to the current shopping cart page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:192 +msgid "Display the cart widget." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:191 +msgid "Display the full product meta box with price and buy now/add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:190 +msgid "Display the product stock." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:189 +msgid "Display the product SKU number(s)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:188 +msgid "Display the product price (and sale price)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:187 +msgid "Display the buy or add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:186 +msgid "Display the featured image of a given product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:185 +msgid "Display a single product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:184 +msgid "Display a list of products according to preference." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:183 +msgid "Display products related to the one being viewed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:182 +msgid "Display a list of popular products ordered by sales." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:180 +msgid "Display an HTML dropdown of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:179 +msgid "Display an HTML list of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:178 +msgid "Display a cloud or list of your product tags." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:655 +msgid "Setup your payment gateway" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:643 +#: includes/admin/class-mp-setup-wizard.php:649 +msgid "Other Gateways" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:617 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:150 +msgid "Select which calculated shipping methods the customer will be able to choose from." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:601 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:134 +#: includes/public/class-mp-checkout.php:82 +msgid "Shipping Method" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:568 +msgid "I want to charge shipping" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:523 +#: includes/admin/store-settings/class-mp-store-settings-general.php:503 +msgid "Show Price + Tax?" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:507 +msgid "I.e. Taxes, VAT, GST, etc" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:491 +#: includes/admin/store-settings/class-mp-store-settings-general.php:471 +msgid "Current Rates" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:473 +msgid "Default Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:434 +#: includes/admin/class-mp-setup-wizard.php:442 +#: includes/admin/store-settings/class-mp-store-settings-general.php:386 +#: includes/admin/store-settings/class-mp-store-settings-general.php:394 +#: includes/multisite/class-mp-admin-multisite.php:204 +#: includes/multisite/class-mp-admin-multisite.php:212 +msgid "Select a Currency" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:414 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:105 +msgid "Choose Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:411 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:103 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:104 +msgid "All Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:410 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:102 +msgid "These are the countries that you will ship to." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:409 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:101 +msgid "Target Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:401 +msgid "Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:387 +#: includes/admin/store-settings/class-mp-store-settings-general.php:640 +msgid "Zip/Postal Code Label" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:352 +#: includes/admin/store-settings/class-mp-store-settings-general.php:606 +msgid "Select a State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:335 +#: includes/admin/store-settings/class-mp-store-settings-general.php:590 +msgid "Select A Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:332 +#: includes/admin/store-settings/class-mp-store-settings-general.php:587 +msgid "Select a Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:324 +msgid "Location" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:304 +#: includes/admin/class-mp-setup-wizard.php:312 +#: includes/admin/class-mp-store-settings-admin.php:129 +#: includes/admin/class-mp-store-settings-admin.php:262 +msgid "Quick Setup" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:289 +msgid "MarketPress setup is not complete! Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2479 +msgid "Enter your product name here" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2440 +msgid "Select a %s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2426 +msgid "Each product variation needs to have product attributes assigned to it so the system knows how to differentiate one product variation from the other. It is important that you assign a category to this product before choosing any attributes." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2409 +msgid "If you would like this variation to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2320 +msgid "Sale Price (if applicable)" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2281 +msgid "If you would like the description to be different than the main product enter it here." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2229 +msgid "Image" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2202 +#: includes/admin/class-mp-shortcode-builder.php:226 +msgid "Attributes" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2166 +msgid "Create your product variations here. You can reorder variations by using the number to left of each variation, or delete one by clicking the \"x\" to the right of each variation. NOTE: The variation that shows up first in this list will be considered the \"main variation\". The details from this variation will be used in product listings." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2061 +#: includes/admin/class-mp-products-admin.php:2332 +msgid "Value must be less than regular price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2043 +#: includes/admin/class-mp-products-admin.php:2306 +msgid "Regular Price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2023 +#: includes/admin/class-mp-products-admin.php:2286 +msgid "External URL" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1988 +#: includes/admin/class-mp-products-admin.php:2245 +msgid "Enter the quantity that you have available to sell." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1987 +#: includes/admin/class-mp-products-admin.php:2244 +msgid "Inventory Count" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1977 +#: includes/admin/class-mp-products-admin.php:2234 +msgid "Track Inventory?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1871 +msgid "%1$sProduct Images%2$s %3$sAdd images of the product. The first image on the list is the featured image for this product (you can reorder images on the list)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1806 +msgid "Add variations for this product. e.g. If you are selling t-shirts, you can create Color & Size variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1804 +msgid "%3$sAdd variations for%2$s %1$sProduct%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1776 +msgid "This product has a multiple variations %1$s(e.g. Multiple colors, sizes)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1775 +msgid "This is a unique product without variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1700 +msgid "Extra Shipping Cost %1$s(if applicable)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1659 +#: includes/admin/class-mp-products-admin.php:2112 +#: includes/admin/class-mp-products-admin.php:2359 +msgid "Weight" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1636 +#: includes/admin/class-mp-products-admin.php:2098 +#: includes/admin/class-mp-products-admin.php:2416 +msgid "Please enter a valid tax rate" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1531 +msgid "Limit Per Order %1$s(limit the number of the item a shopper can buy per order)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1513 +msgid "SKU %1$s(Stock Keeping Unit)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "%1$sPrice, Inventory & Variants%2$s %3$sSet price, manage inventory and create Product Variants (if appropriate for your product).%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "Product Variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1480 +msgid "External / Affiliate Link" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1471 +msgid "Digital Download" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1470 +msgid "Physical / Tangible Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1464 +msgid "Product Kind %1$s(Physical Product, Digital, etc)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1426 +msgid "Choose Products" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1420 +msgid "If you would like, you can choose specific related products instead of using the ones generated by MarketPress" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1019 +msgid "Changes saved successfully" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:826 +msgid "Option cannot be saved. Try again." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:821 +msgid "Option saved successfully." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:467 +msgid "Img" +msgstr "" + +#: includes/admin/class-mp-product-attributes-list-table.php:57 +msgid "Product attribute(s) deleted successfully." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:162 +msgid "- Create New Variation -" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:144 +msgid "Only lowercase letters and dashes (-) are allowed." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:139 +msgid "If a slug is not entered, it will be generated automatically. Max 32 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:138 +#: includes/admin/class-mp-product-attributes-list-table.php:23 +msgid "Slug" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:130 +msgid "Max 45 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:123 +msgid "Use the numbers on the left to sort. To delete - click the \"X\" to the right of each row." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:122 +msgid "Attribute Options" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:121 +msgid "Add Option" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:105 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:523 +msgid "Sort Order" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:87 +msgid "Alphabetical" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:86 +msgid "ID" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:84 +msgid "Select how the options will be sorted." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:82 +msgid "Sort By" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:75 +msgid "The name of the attribute (e.g. color, size, etc)" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:74 +msgid "Attribute Name" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:69 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Product Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Product Attributes" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:71 +msgid "You can choose to make this page one of the following core store pages." +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:66 +msgid "Network Store Base" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:61 +msgid "Checkout Page" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:52 +msgid "Store Page Settings" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1108 +msgid "Display billing/shipping info for this customer" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1097 +msgid "View order “%s”" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1072 +msgid "Flag as:" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:952 +msgid "Move To Trash" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:948 +msgid " Received" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:927 +msgid "Enter coupon code here" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:812 +msgid "The order status could not be updated due to unexpected error. Please try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:740 +msgid "An invalid bulk action was requested. Please go back and try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:692 +msgid "The order status for order ID %1$s was updated successfully." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:688 +msgid "Order statuses successfully updated." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:530 +msgid "Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:518 +msgid "Actual Shipping Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:513 +msgid "Method Paid For" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:504 +msgid "Amount Collected" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:477 +msgid "DHL" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:408 +msgid "There is no IPN history to show at this time" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:345 +msgid "Type" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:343 +msgid "Gateway" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:301 +#: includes/common/template-functions.php:528 +msgid "Order History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:291 +msgid "IPN History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:283 +msgid "Customer Info" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:279 +msgid "Order Details" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:157 +msgid "All Dates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:320 +msgid "Add Pages to Menu" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:318 +msgid "Add-ons" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:317 +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "User Capabilities" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:316 +#: includes/admin/class-mp-setup-wizard.php:631 +#: includes/admin/store-settings/class-mp-store-settings-payments.php:50 +msgid "Payment Gateways" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:315 +msgid "Shipping Rates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:312 +msgid "Configure" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:309 +#: includes/admin/class-mp-products-admin.php:466 +#: includes/admin/class-mp-shortcode-builder.php:797 +msgid "Tags" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:308 +#: includes/admin/class-mp-products-admin.php:465 +msgid "Categories" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:300 +msgid "Manage" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:297 +msgid "Here's some quick links to manage your store and products." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:288 +msgid "low in stock" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:287 +msgid "%s product" +msgid_plural "%s products" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-dashboard-widgets.php:280 +msgid "received" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:279 +#: includes/admin/class-mp-dashboard-widgets.php:283 +msgid "%s order" +msgid_plural "%s orders" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-dashboard-widgets.php:276 +msgid "Stock & Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:261 +msgid "Last 30 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:256 +msgid "Last 7 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:251 +msgid "Yesterday" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:248 +#: includes/admin/class-mp-dashboard-widgets.php:253 +#: includes/admin/class-mp-dashboard-widgets.php:258 +#: includes/admin/class-mp-dashboard-widgets.php:263 +msgid " Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:246 +msgid "Today" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:241 +msgid "Welcome back! Here's a quick summary of your store's performance." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:196 +#: includes/admin/class-mp-products-admin.php:895 +msgid "No products out of stock." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:136 +#: includes/admin/class-mp-products-admin.php:839 +msgid "Stock Level" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:135 +#: includes/admin/class-mp-products-admin.php:838 +msgid "Variation" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:121 +msgid "Low Stock (%s)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:116 +msgid "Store Management" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:115 +msgid "Store Reports" +msgstr "" + +#: includes/admin/class-mp-ajax.php:579 +#: includes/admin/class-mp-orders-admin.php:520 +#: includes/common/payment-gateways/2checkout.php:370 +#: includes/common/payment-gateways/authorizenet-aim.php:264 +#: includes/common/payment-gateways/mollie.php:93 +#: includes/common/payment-gateways/paymill.php:196 +#: includes/common/payment-gateways/pin.php:190 +#: includes/common/payment-gateways/skrill.php:157 +#: includes/common/payment-gateways/skrill.php:168 +#: includes/common/payment-gateways/wepay.php:143 +#: includes/public/class-mp-checkout.php:404 +msgid "Select One" +msgstr "" + +#: includes/admin/class-mp-ajax.php:511 +msgid "Oops... we could not locate any orders by that ID. Please double check your order ID and try again." +msgstr "" + +#: includes/admin/class-mp-ajax.php:482 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:166 +#: includes/multisite/class-mp-admin-multisite.php:584 +msgid "Edit Page" +msgstr "" + +#: includes/admin/class-mp-ajax.php:346 +msgid "Cancel " +msgstr "" + +#: includes/admin/class-mp-ajax.php:345 +msgid "Save " +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "Edit Description" +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "HTML Markup" +msgstr "" + +#: includes/admin/class-mp-ajax.php:333 +msgid "Plain Text Only" +msgstr "" + +#: includes/admin/class-mp-ajax.php:329 +msgid "Additional Content / Information for this Variation" +msgstr "" + +#: includes/admin/class-mp-ajax.php:317 +#: includes/admin/class-mp-products-admin.php:1762 +msgid "Allow this product to be purchased even if it's out of stock" +msgstr "" + +#: includes/admin/class-mp-ajax.php:313 +#: includes/admin/class-mp-products-admin.php:1711 +msgid "Track Product Inventory" +msgstr "" + +#: includes/admin/class-mp-ajax.php:300 +msgid "Extra Shipping Cost (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:295 +msgid "Ounces:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:294 +msgid "Pounds:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:292 +msgid "Kilograms:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:287 +#: includes/admin/class-mp-products-admin.php:1649 +msgid "Charge Shipping" +msgstr "" + +#: includes/admin/class-mp-ajax.php:273 +#: includes/admin/class-mp-products-admin.php:1623 +#: includes/admin/store-settings/class-mp-store-settings-general.php:454 +msgid "Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:272 +#: includes/admin/class-mp-products-admin.php:1622 +#: includes/admin/class-mp-products-admin.php:2090 +#: includes/admin/class-mp-products-admin.php:2408 +msgid "Special Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:271 +#: includes/admin/class-mp-products-admin.php:1625 +#: includes/admin/class-mp-products-admin.php:2092 +msgid "If you would like this product to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-ajax.php:268 +#: includes/admin/class-mp-products-admin.php:1599 +msgid "Charge Taxes (Special Rate)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:256 +#: includes/admin/class-mp-products-admin.php:1593 +#: includes/admin/class-mp-products-admin.php:2077 +#: includes/admin/class-mp-products-admin.php:2348 +msgid "End Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:255 +#: includes/admin/class-mp-products-admin.php:1589 +#: includes/admin/class-mp-products-admin.php:2072 +msgid "Start Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:1568 +msgid "Enter Sale Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:250 +#: includes/admin/class-mp-products-admin.php:1547 +msgid "Set up a Sale for this Product" +msgstr "" + +#: includes/admin/class-mp-ajax.php:206 includes/admin/class-mp-ajax.php:223 +msgid "Enter " +msgstr "" + +#: includes/admin/class-mp-ajax.php:193 +msgid "Browse" +msgstr "" + +#: includes/admin/class-mp-ajax.php:184 includes/admin/class-mp-ajax.php:192 +msgid "http://" +msgstr "" + +#: includes/admin/class-mp-ajax.php:183 +msgid "External Product URL" +msgstr "" + +#: includes/admin/class-mp-ajax.php:237 +msgid "Limit Per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:177 +#: includes/admin/class-mp-products-admin.php:1520 +msgid "Enter Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:174 +#: includes/admin/class-mp-products-admin.php:1512 +msgid "Enter SKU" +msgstr "" + +#: includes/admin/class-mp-ajax.php:173 +msgid "(Stock Keeping Unit)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:158 +msgid "Remove Image" +msgstr "" + +#: includes/admin/class-mp-ajax.php:74 +msgid "Variation Draft" +msgstr "" + +#: includes/admin/class-mp-admin.php:296 +#: includes/admin/class-mp-dashboard-widgets.php:70 +msgid "Please wait...saving in progress..." +msgstr "" + +#: includes/admin/class-mp-admin.php:295 +#: includes/admin/class-mp-dashboard-widgets.php:69 +msgid "Input is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:294 +#: includes/admin/class-mp-dashboard-widgets.php:68 +msgid "Valid number is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:292 +#: includes/admin/class-mp-dashboard-widgets.php:66 +msgid "Delete %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:291 +#: includes/admin/class-mp-dashboard-widgets.php:65 +msgid "Delete %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:290 +#: includes/admin/class-mp-dashboard-widgets.php:64 +msgid "Update inventory for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:289 +#: includes/admin/class-mp-dashboard-widgets.php:63 +msgid "Update inventory for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:288 +#: includes/admin/class-mp-dashboard-widgets.php:62 +msgid "Update price for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:287 +#: includes/admin/class-mp-dashboard-widgets.php:61 +msgid "Update prices for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:285 +#: includes/admin/class-mp-dashboard-widgets.php:59 +msgid "Creating variations, please wait..." +msgstr "" + +#: includes/admin/class-mp-admin.php:96 +msgid "The following payment gateways have been deprecated, Cubepoints, Bitpay, iDEAL, Skrill, Google Checkout. If you were using one of these gateways, please setup a new payment gateway here." +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:61 +msgid "Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:71 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:71 +#: includes/common/class-mp-gdpr.php:399 includes/common/class-mp-order.php:872 +#: includes/common/helpers.php:164 includes/public/class-mp-checkout.php:1434 +msgid "Shipping Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:66 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:66 +#: includes/common/class-mp-gdpr.php:392 includes/common/class-mp-order.php:864 +#: includes/common/helpers.php:163 includes/public/class-mp-checkout.php:1427 +msgid "Billing Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:61 +msgid "Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:258 +msgid "Shipping Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:256 +msgid "Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:235 +msgid "Payment Method: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:79 +msgid "The dir %s not exist or not writeable" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:239 +msgid "Shop header/logo" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:233 +msgid "Choose a template" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:226 +msgid "Template Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:221 +msgid "Disable automatic creation/attachment of invoices when only free products are ordered" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:220 +msgid "Disable for free products" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:216 +msgid "Attach invoice to" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:214 +msgid "Customer Order Shipped email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:212 +msgid "Customer New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:211 +msgid "Admin New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:206 +msgid "download" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:205 +msgid "How do you want to view the PDF?" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:203 +msgid "Open the PDF in a new browser tab/window" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:202 +msgid "Download the PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:158 +msgid "Export PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:103 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:106 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:109 +msgid "You can't download this order invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:76 +msgid "Invalid Request" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:72 +msgid "Order not exist!" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:67 +msgid "Invalid ID" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1293 +msgid "Coupon added successfully" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1292 +msgid "Please enter a code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1247 +msgid "No end" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1200 +msgid "Valid Dates" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1195 +msgid "Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1027 +msgid "No Coupons found in Trash" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1026 +msgid "No Coupons Found" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1025 +msgid "Search Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1024 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1028 +msgid "View Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1023 +msgid "New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1020 +msgid "Create New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1017 +msgid "Manage Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1002 +msgid "An error occurred while removing your coupon. Please try again." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:964 +msgid "Coupon can't be applied to this cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:951 +msgid "Invalid coupon code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:794 +msgid "Help Text" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:789 +msgid "Form Title" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:783 +msgid "Coupons Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:764 +msgid "End Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:758 +msgid "Does coupon have an end date?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:696 +msgid "Select Products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:688 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:723 +#: includes/common/payment-gateways/paypal-payflow.php:402 +msgid "User" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:638 +msgid "Max Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:636 +msgid "Enter the maximum number of times this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:623 +msgid "Leave blank to allow all other coupons." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:622 +msgid "Select combinable coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:618 +msgid "Can this coupon be combined with other coupons?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:613 +msgid "Apply to each applicable item once per cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:612 +msgid "Apply to each applicable item and quantity ordered" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:609 +msgid "How should the discount amount be applied?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:605 +msgid "Discount Amount" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:604 +msgid "Value must either be a decimal number or a percentage" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:602 +msgid "If you would like to give a percentage-based discount make sure to include the percent (%) symbol. Otherwise, the discount will be applied as a fixed amount off." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:595 +msgid "Letters and Numbers only." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:589 +msgid "Coupon Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:447 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:795 +msgid "More than one code? That's OK! Just be sure to enter one at a time." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:444 +msgid "Apply Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:314 +msgid "Coupon Discounts" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:89 +msgid "1 add-on disabled" +msgid_plural "%s add-ons disabled" +msgstr[0] "" +msgstr[1] "" + +#: includes/addons/class-mp-addons-list-table.php:84 +msgid "1 add-on enabled" +msgid_plural "%s add-ons enabled" +msgstr[0] "" +msgstr[1] "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Disabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Enable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:129 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:67 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:135 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:168 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:202 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:263 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:296 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:330 +msgid "Enabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +msgid "Disable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:34 +msgid "Disable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:33 +msgid "Enable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:21 +#: includes/admin/class-mp-products-admin.php:2280 +#: includes/common/class-mp-product.php:2916 +msgid "Description" +msgstr "" + +#: includes/common/template-functions.php:2889 +#: includes/multisite/template-functions.php:407 +msgid "Popularity (Least Popular - Most Popular)" +msgstr "" + +#: includes/common/template-functions.php:2888 +#: includes/multisite/template-functions.php:406 +msgid "Popularity (Most Popular - Least Popular)" +msgstr "" + +#: includes/common/template-functions.php:2885 +#: includes/multisite/template-functions.php:403 +msgid "Name (Z-A)" +msgstr "" + +#: includes/common/template-functions.php:2884 +#: includes/multisite/template-functions.php:402 +msgid "Name (A-Z)" +msgstr "" + +#: includes/common/template-functions.php:2883 +#: includes/multisite/template-functions.php:401 +msgid "Release Date (Oldest to Latest)" +msgstr "" + +#: includes/common/template-functions.php:2882 +#: includes/multisite/template-functions.php:400 +msgid "Release Date (Latest to Oldest)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:284 +msgid "paid" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "One Time Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Customer Counter" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Daily Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:182 +msgid "For the most accurate rates, please select the appropriate pick up type for your business." +msgstr "" + +#: includes/admin/class-mp-admin.php:374 +msgid "Page saved." +msgstr "" + +#: includes/admin/class-mp-admin.php:370 +msgid "Custom field deleted." +msgstr "" + +#: includes/admin/class-mp-admin.php:369 +msgid "Custom field updated." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:541 +msgid "%s - The payment request expired, - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:536 +msgid "%s - The payment not credited in merchants bitpay account, action required. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:252 +msgid "If enabled, you will recieve an email for each status update on payment." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:240 +msgid "Speed at which the bitcoin transaction registers as \"confirmed\" to the store. This overrides your merchant settings on the Bitpay website." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:238 +msgid "Transaction Speed" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:244 +msgid "Low" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:243 +msgid "Medium" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:242 +msgid "High" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:177 +#: includes/common/payment-gateways/_bitpay.php:517 +#: includes/common/payment-gateways/_bitpay.php:522 +msgid "%s - The payment request is under process. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:175 +#: includes/common/payment-gateways/_bitpay.php:527 +msgid "%s - The payment request has been processed - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:150 +#: includes/common/payment-gateways/_bitpay.php:294 +msgid "Incorrect order invoice, please contact site administrator" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:141 +msgid "We could not verify order invoice details, please try again or contact site administrator for help" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:81 +msgid "Login to Simplify to get your API credentials. Enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:605 +#: includes/common/payment-gateways/paypal-express.php:647 +msgid "Express Checkout is PayPal's premier checkout solution, which streamlines the checkout process for buyers and keeps them on your site after making a purchase. Unlike PayPal Pro, there are no additional fees to use Express Checkout, though you may need to do a free upgrade to a business account. More Info »" +msgstr "" + +#. Plugin URI of the plugin/theme +msgid "https://premium.wpmudev.org/project/e-commerce/" +msgstr "" + +#. Author of the plugin/theme +msgid "WPMU DEV" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:541 +#: includes/admin/class-mp-orders-admin.php:543 +msgid "Tracking Number" +msgstr "" + +#: includes/common/class-mp-order.php:805 +#: includes/common/payment-gateways/stripe.php:336 +#: includes/public/class-mp-checkout.php:402 +msgid "Country" +msgstr "" + +#: includes/common/class-mp-order.php:784 +#: includes/common/payment-gateways/stripe.php:338 +msgid "City" +msgstr "" + +#: includes/common/class-mp-order.php:780 +msgid "Address 2" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:340 +msgid "Address" +msgstr "" + +#: includes/common/class-mp-cart.php:752 includes/common/class-mp-gdpr.php:378 +msgid "Order Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:360 +msgid "Payment Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:347 +msgid "Transaction ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:207 +msgid "The WePay Card Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:186 +#: includes/common/shipping-modules/mp-fedex.php:283 +msgid "Account ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:179 +msgid "Access Token" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:172 +msgid "Client Secret" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:165 +msgid "Client ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:159 +msgid "You must login to WePay to get your API credentials. Make sure to check \"Tokenize credit cards\" option under \"API Keys\" section of your WePay app." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:154 +msgid "When in live mode it is recommended to use SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:148 +msgid "Donation" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:147 +msgid "Event" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:146 +msgid "Personal" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:145 +msgid "Service" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:144 +msgid "Goods" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:141 +msgid "Choose type of payments" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:140 +msgid "Checkout Type" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:134 +msgid "Staging" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:131 +msgid "Choose STAGING if you have registered the app on stage.wepay.com, or PRODUCTION if you registered on www.wepay.com" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:36 +#: includes/common/payment-gateways/wepay.php:299 +msgid "WePay" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:366 +msgid "Rejected - A payment was rejected." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:360 +msgid "Failed - A payment was rejected due to an error." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:342 +msgid "PayWay balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:298 +msgid "Full path of the cacerts.crt file" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:284 +msgid "User Name" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:277 +msgid "Biller Code" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:273 +msgid "Log Directory" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:266 +msgid "Encryption Key" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:60 +msgid "Your PayWay transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:40 +#: includes/common/payment-gateways/_payway.php:41 +msgid "PayWay" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:862 +msgid "You must register this application with PayPal using your business account login to get an Application ID that will work with your API credentials. A bit of a hassle, but worth it! In the near future we will be looking for ways to simplify this process. Register then submit your application while logged in to the developer portal. Note that you do not need an Application ID for testing in sandbox mode. More Information »" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:818 +#: includes/common/payment-gateways/paypal-chained-payments.php:840 +#: includes/common/payment-gateways/paypal-express.php:705 +msgid "You must login to PayPal and create an API signature to get your credentials. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:378 +msgid "Use Payflow payment gateway to accept online payments using your Internet merchant account and processing network. PayPal Payflow Pro is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:595 +msgid "Tags Only" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:594 +msgid "Category Only" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:795 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:593 +msgid "Category & Tags" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:591 +msgid "Relate Products By" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1008 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:455 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:751 +msgid "Right" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1007 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:454 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:749 +msgid "Left" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1009 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:750 +msgid "Center" +msgstr "" + +#: marketpress.php:273 +msgid "Orders from your e-commerce store." +msgstr "" + +#: marketpress.php:231 +msgid "Products for your e-commerce store." +msgstr "" + +#: marketpress.php:222 +msgid "Edit Product" +msgstr "" + +#. Description of the plugin/theme +msgid "The complete WordPress ecommerce plugin - works perfectly with BuddyPress and Multisite too to create a social marketplace, where you can take a percentage! Activate the plugin, adjust your settings then add some products to your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:272 +msgid "Beside" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:271 +msgid "Above" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:268 +msgid "Pin Count" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:261 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:287 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:318 +msgid "All View" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:260 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:286 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:317 +msgid "Single View" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:259 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:285 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:316 +msgid "Off" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:578 +msgid "Related Product Limit" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:681 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1201 +msgid "Applies To" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:685 +msgid "All Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:487 +msgid "The label shown for the tax line item in the cart. Taxes, VAT, GST, etc." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:485 +msgid "Tax Label" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:81 +msgid "Apply" +msgstr "" + +#: includes/admin/class-mp-admin.php:192 +msgid "MarketPress Instructions" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1954 +#: includes/admin/class-mp-products-admin.php:2194 includes/common/data.php:62 +#: includes/common/helpers.php:150 +msgid "Taxes" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1417 +#: includes/common/class-mp-product.php:2900 +msgid "Related Products" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:282 +#: includes/common/shipping-modules/mp-usps.php:316 +msgid "@ Max" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "(3-5 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "Priority Mail Express International Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:92 +msgid "Priority Mail Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:171 +#: includes/common/shipping-modules/mp-pickup.php:247 +msgid "In Store" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:159 +msgid "Pickup Fee" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:141 +msgid "This option allows your customers to indicate that they will pick-up their order at your place of business." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:60 +#: includes/common/shipping-modules/mp-pickup.php:76 +#: includes/common/shipping-modules/mp-pickup.php:176 +msgid "Pickup Instructions" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:24 +#: includes/common/shipping-modules/mp-pickup.php:254 +msgid "Pickup" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping - 0.00" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:256 +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:440 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:309 +msgid "Your Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:301 +msgid "Station" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:300 +msgid "Request Courier" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:299 +msgid "Drop Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:298 +msgid "Business Service Center" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:297 +msgid "Regular Pickup" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:135 +#: includes/common/shipping-modules/mp-fedex.php:264 +msgid "Production" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:207 +msgid "Simplify Commerce by MasterCard" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:104 +msgid "When in live mode, although it is not required, Simplify recommends you have an SSL certificate." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:183 +#: includes/common/payment-gateways/simplify.php:87 +msgid "Public Key" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:175 +#: includes/common/payment-gateways/simplify.php:94 +msgid "Private Key" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:71 +msgid "Simplify helps merchants to accept online payments from Mastercard, Visa, American Express, Discover, JCB, and Diners Club cards. It's that simple. We offer a merchant account and payment gateway in a single, secure package so you can concentrate on what really matters to your business. Only supports USD currently." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:267 +msgid "%1$s" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:151 +msgid "The Simplify Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/simplify.php:18 +msgid "Simplify" +msgstr "" + +#: includes/common/payment-gateways/pin.php:255 +msgid "%1$s Card %2$s" +msgstr "" + +#: includes/common/payment-gateways/pin.php:211 +msgid "The PIN Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:187 +msgid "Selecting a currency other than currency supported by PIN may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/pin.php:164 +msgid "You must login to PIN to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/pin.php:158 +msgid "When in live mode PIN recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/pin.php:45 +#: includes/common/payment-gateways/pin.php:286 +msgid "PIN" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:830 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:534 +#: includes/common/payment-gateways/paypal-express.php:865 +msgid "The payment is pending" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:235 +msgid "The Paymill Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:169 +msgid "You must login to Paymill to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:45 +#: includes/common/payment-gateways/paymill.php:308 +msgid "Paymill" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:90 +msgid "Invalid cardholder" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:89 +msgid "Card is no longer valid or has expired" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:88 +msgid "Please enter a valid Card CVC" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:87 +msgid "Please choose a valid Expiration Date." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:99 +#: includes/common/payment-gateways/skrill.php:100 +msgid "Skrill (Moneybookers)" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:24 +#: includes/common/shipping-modules/mp-weight-rate.php:292 +msgid "Weight Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:303 +msgid "USPS Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:270 +msgid "USPS Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:264 +msgid "USPS Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:145 +msgid "Flat Rate Large" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:140 +msgid "Flat Rate Medium 2" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:135 +msgid "Flat Rate Medium 1" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:130 +msgid "Flat Rate Small" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:118 +msgid "First Class International Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:114 +msgid "Priority Mail International Small Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:112 +msgid "Priority Mail International Medium Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:110 +msgid "Priority Mail International Large Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:108 +msgid "Priority Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:106 +msgid "Express Mail International Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:104 +msgid "Express Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:98 +msgid "Library Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:96 +msgid "Media Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "First-Class Mail Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:90 +msgid "Priority Mail Small Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:88 +msgid "Priority Mail Medium Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +#: includes/common/shipping-modules/mp-usps.php:88 +#: includes/common/shipping-modules/mp-usps.php:90 +#: includes/common/shipping-modules/mp-usps.php:92 +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "(2-4 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +msgid "Priority Mail Large Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "(2-4) days" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "Priority Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "Express Mail Sunday/Holiday Delivery Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:80 +msgid "Express Mail Flat Rate Boxes Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:78 +msgid "Express Mail Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:76 +msgid "Express Mail Sunday/Holiday Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:74 +msgid "Express Mail Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:72 +#: includes/common/shipping-modules/mp-usps.php:74 +#: includes/common/shipping-modules/mp-usps.php:76 +#: includes/common/shipping-modules/mp-usps.php:78 +#: includes/common/shipping-modules/mp-usps.php:80 +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "(1-2 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:72 +msgid "Express Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:67 +#: includes/common/shipping-modules/mp-usps.php:902 +msgid "USPS" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:534 +msgid "UPS (beta)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:166 +msgid "Required if using negotiated rates" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "Worldwide Express Plus" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "(Scheduled)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "Standard" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "(2-5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "Worldwide Expedited" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:54 +msgid "Worldwide Express" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "2nd Day Air AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "(1 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "Next Day Air Early AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "Next Day Air Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "3 Day Select" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:49 +msgid "Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:48 +msgid "2nd Day Air" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "Next Day Air" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:475 +#: includes/common/shipping-modules/mp-ups.php:43 +msgid "UPS" +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:27 +#: includes/common/shipping-modules/mp-table-rate.php:318 +msgid "Table Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:71 +#: includes/common/shipping-modules/mp-table-quantity.php:77 +msgid "Shipping Cost: " +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:70 +#: includes/common/shipping-modules/mp-table-quantity.php:76 +msgid "If quantity is greater than:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:66 +msgid "Each band must be a higher price than the one above it." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:56 +msgid "Number of Bands:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:53 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Each layer must be a higher quantity than the previous." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:51 +msgid "Table Quantity Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:31 +msgid "Table Quantity" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:135 +#: includes/common/shipping-modules/mp-table-rate.php:174 +#: includes/common/shipping-modules/mp-weight-rate.php:189 +msgid "European Union" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:123 +#: includes/common/shipping-modules/mp-table-rate.php:162 +#: includes/common/shipping-modules/mp-weight-rate.php:177 +msgid "United States" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:111 +#: includes/common/shipping-modules/mp-table-rate.php:151 +#: includes/common/shipping-modules/mp-weight-rate.php:166 +msgid "In Country" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:146 +#: includes/common/shipping-modules/mp-table-rate.php:186 +#: includes/common/shipping-modules/mp-weight-rate.php:201 +msgid "International" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:101 +#: includes/common/shipping-modules/mp-table-rate.php:141 +#: includes/common/shipping-modules/mp-weight-rate.php:156 +msgid "Canada" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:92 +#: includes/common/shipping-modules/mp-table-rate.php:132 +#: includes/common/shipping-modules/mp-weight-rate.php:147 +msgid "Hawaii and Alaska" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:83 +#: includes/common/shipping-modules/mp-table-rate.php:123 +#: includes/common/shipping-modules/mp-weight-rate.php:138 +msgid "Lower 48 States" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:64 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping." +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:25 +#: includes/common/shipping-modules/mp-flat-rate.php:223 +msgid "Flat Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:761 +msgid "FedEx (beta)" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Centimeters" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Inches" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1676 +#: includes/admin/class-mp-setup-wizard.php:547 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:166 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +msgid "Kilograms" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:103 +msgid " %1$s - %2$s" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:358 +msgid "Max Weight per Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:356 +msgid "Box Dimensions" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:354 +msgid "Box Name" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:344 +msgid "Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:343 +msgid "For each box defined enter the maximum weight it can contain." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:341 +msgid "Enter your standard box sizes as LengthxWidthxHeight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:386 +#: includes/common/shipping-modules/mp-ups.php:193 +#: includes/common/shipping-modules/mp-usps.php:234 +#: includes/common/shipping-modules/mp-usps.php:338 +msgid "Standard Boxes and Weight Limits" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:328 +msgid "Handling Charge per Interntional Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:294 +msgid "Handling Charge per Domestic Shipment " +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:388 +#: includes/common/shipping-modules/mp-ups.php:196 +#: includes/common/shipping-modules/mp-usps.php:237 +msgid "Add Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "(Next Day)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +msgid "Europe First International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:62 +msgid "International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:61 +#: includes/common/shipping-modules/mp-fedex.php:62 +#: includes/common/shipping-modules/mp-ups.php:54 +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "(1-3 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:61 +msgid "International First" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "(5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "International Economy" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "(2-7 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "Smart Post" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:55 +#: includes/common/shipping-modules/mp-ups.php:49 +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "(1-5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:55 +msgid "Ground Home Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "(1-7 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "Fedex Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:53 +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "(3 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:53 +msgid "Fedex Express Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +#: includes/common/shipping-modules/mp-ups.php:48 +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "(2 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +msgid "Fedex 2 Day" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "(2 Days am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "Fedex 2 Day AM" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "(1 Day)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +msgid "Standard Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "(1 Day am )" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "Priority Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "(1 Day am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "First Overnight" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:476 +#: includes/common/shipping-modules/mp-fedex.php:31 +msgid "FedEx" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:270 +#: includes/common/payment-gateways/simplify.php:179 +#: includes/common/payment-gateways/stripe.php:365 +msgid "%1$s Card ending in %2$s - Expires %3$s" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:259 +#: includes/common/payment-gateways/pin.php:238 +#: includes/common/payment-gateways/simplify.php:171 +msgid "%s Store Purchase - Order ID: %s, Email: %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:266 +msgid "You must login to Stripe to get your API credentials. You can enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:261 +msgid "When in live mode Stripe recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:311 +msgid "The Stripe Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:263 +#: includes/common/payment-gateways/paymill.php:122 +#: includes/common/payment-gateways/stripe.php:222 +msgid "Card Number" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:86 +msgid "Please enter a valid Credit Card Number." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:45 +#: includes/common/payment-gateways/stripe.php:433 +msgid "Stripe" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:750 +msgid "Sets the background color for the payment page. By default, the color is white." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:745 +msgid "Sets the background color for the header of the payment page. By default, the color is white." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:740 +msgid "Sets the border color around the header of the payment page. The border is a 2-pixel perimeter around the header space, which is 750 pixels wide by 90 pixels high. By default, the color is black." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:735 +msgid "URL for an image you want to appear at the top left of the payment page. The image has a maximum size of 750 pixels wide by 90 pixels high. PayPal recommends that you provide an image that is stored on a secure (https) server. If you do not specify an image, the business name is displayed." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:857 +#: includes/common/payment-gateways/paypal-express.php:1131 +msgid "The payment is pending because it is part of an order that has been authorized but not settled." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:853 +#: includes/common/payment-gateways/paypal-express.php:1127 +msgid "The payment is pending because it has been authorized but not settled. You must capture the funds first." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:847 +#: includes/common/payment-gateways/paypal-express.php:1120 +msgid "You denied the payment when it was marked as pending." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:837 +#: includes/common/payment-gateways/paypal-express.php:1108 +msgid "A reversal has occurred on this transaction due to an unknown reason." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:836 +#: includes/common/payment-gateways/paypal-express.php:1107 +msgid "A reversal has occurred on this transaction because you have given the customer a refund." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:835 +#: includes/common/payment-gateways/paypal-express.php:1106 +msgid "A reversal has occurred on this transaction due to a complaint about the transaction from your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:834 +#: includes/common/payment-gateways/paypal-express.php:1105 +msgid "A reversal has occurred on this transaction due to your customer triggering a money-back guarantee." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:833 +#: includes/common/payment-gateways/paypal-express.php:1104 +msgid "A reversal has occurred on this transaction due to a chargeback by your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:1101 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer:" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:826 +#: includes/common/payment-gateways/paypal-express.php:1097 +msgid "A payment has been accepted." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:818 +#: includes/common/payment-gateways/paypal-express.php:1087 +msgid "The transaction has not terminated, e.g. an authorization may be awaiting completion." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:531 +#: includes/common/payment-gateways/paypal-express.php:810 +#: includes/common/payment-gateways/paypal-express.php:1077 +msgid "The payment has failed. This happens only if the payment was made from your customer's bank account." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:806 +#: includes/common/payment-gateways/paypal-express.php:1072 +msgid "An authorization for this transaction has been voided." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:802 +#: includes/common/payment-gateways/paypal-express.php:1067 +msgid "The authorization period for this payment has been reached." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:798 +#: includes/common/payment-gateways/paypal-express.php:1062 +msgid "A reversal has been canceled; for example, when you win a dispute and the funds for the reversal have been returned to you." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:499 +#: includes/common/payment-gateways/paypal-express.php:1163 +msgid "PayPal Express Checkout" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:798 +msgid "Gateway Settings Page Message" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:725 +msgid "Signature" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:506 +#: includes/common/payment-gateways/eway31.php:533 +#: includes/common/shipping-modules/mp-fedex.php:276 +msgid "API Password" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:773 +msgid "Enter a percentage of all store sales to collect as a fee. Decimals allowed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:757 +msgid "Using PayPal Chained Payments allows you as the multisite network owner to collect a predefined fee or percentage of all sales on network MarketPress stores! This is invisible to the customers who purchase items in a store, and all PayPal fees will be charged to the store owner. To use this option you must create API credentials, and you should make all other gateways unavailable or limited above." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:338 +msgid "Please be aware that we will deduct a ?% fee from the total of each transaction in addition to any fees PayPal may charge you. If for any reason you need to refund a customer for an order, please contact us with a screenshot of the refund receipt in your PayPal history as well as the Transaction ID of our fee deduction so we can issue you a refund. Thank you!" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:698 +#: includes/common/payment-gateways/paypal-express.php:149 +msgid "There was a problem connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:470 +#: includes/common/payment-gateways/paypal-express.php:1053 +msgid "There was a problem verifying the IPN string with PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:310 +msgid "There was a problem connecting to PayPal to check the status of your purchase. Please check the status of your order here »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:539 +#: includes/common/payment-gateways/paypal-chained-payments.php:254 +#: includes/common/payment-gateways/paypal-express.php:1139 +msgid "The payment is pending." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:251 +#: includes/common/payment-gateways/paypal-chained-payments.php:531 +#: includes/common/payment-gateways/paypal-express.php:862 +#: includes/common/payment-gateways/paypal-express.php:1136 +msgid "The payment is pending for an unknown reason. For more information, contact PayPal customer service." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:250 +#: includes/common/payment-gateways/paypal-chained-payments.php:530 +#: includes/common/payment-gateways/paypal-express.php:861 +#: includes/common/payment-gateways/paypal-express.php:1135 +msgid "The payment is pending because you are not yet verified. You must verify your account before you can accept this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:249 +#: includes/common/payment-gateways/paypal-chained-payments.php:529 +#: includes/common/payment-gateways/paypal-express.php:860 +#: includes/common/payment-gateways/paypal-express.php:1134 +msgid "The payment is pending because it was made via credit card and you must upgrade your account to Business or Premier status in order to receive the funds. It can also mean that you have reached the monthly limit for transactions on your account." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:248 +#: includes/common/payment-gateways/paypal-chained-payments.php:528 +#: includes/common/payment-gateways/paypal-express.php:859 +#: includes/common/payment-gateways/paypal-express.php:1133 +msgid "The payment is pending because it was made to an email address that is not yet registered or confirmed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:247 +#: includes/common/payment-gateways/paypal-chained-payments.php:527 +#: includes/common/payment-gateways/paypal-express.php:858 +#: includes/common/payment-gateways/paypal-express.php:1132 +msgid "The payment is pending while it is being reviewed by PayPal for risk." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:246 +#: includes/common/payment-gateways/paypal-chained-payments.php:526 +#: includes/common/payment-gateways/paypal-express.php:856 +#: includes/common/payment-gateways/paypal-express.php:1130 +msgid "You do not have a balance in the currency sent, and you do not have your Payment Receiving Preferences set to automatically convert and accept this payment. You must manually accept or deny this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:245 +#: includes/common/payment-gateways/paypal-chained-payments.php:525 +#: includes/common/payment-gateways/paypal-express.php:855 +#: includes/common/payment-gateways/paypal-express.php:1129 +msgid "The payment is pending because you hold a non-U.S. account and do not have a withdrawal mechanism. You must manually accept or deny this payment from your Account Overview." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:244 +#: includes/common/payment-gateways/paypal-chained-payments.php:524 +#: includes/common/payment-gateways/paypal-express.php:854 +#: includes/common/payment-gateways/paypal-express.php:1128 +msgid "The payment is pending because it was made by an eCheck that has not yet cleared." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:243 +#: includes/common/payment-gateways/paypal-chained-payments.php:523 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:236 +#: includes/common/payment-gateways/paypal-chained-payments.php:516 +msgid "The transaction was rejected by the receiver (you)." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:510 +#: includes/common/payment-gateways/paypal-express.php:843 +#: includes/common/payment-gateways/paypal-express.php:1115 +msgid "You refunded the payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:224 +#: includes/common/payment-gateways/paypal-chained-payments.php:504 +msgid "The transaction is in progress." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:212 +#: includes/common/payment-gateways/paypal-chained-payments.php:491 +#: includes/common/payment-gateways/paypal-express.php:814 +#: includes/common/payment-gateways/paypal-express.php:1082 +msgid "The payment has been partially refunded." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:202 +#: includes/common/payment-gateways/paypal-chained-payments.php:481 +msgid "PayPal balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:177 +msgid "There was a problem connecting to PayPal to setup your purchase. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:122 +msgid "Your PayPal transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:50 +#: includes/common/payment-gateways/paypal-chained-payments.php:53 +#: includes/common/payment-gateways/paypal-chained-payments.php:732 +#: includes/common/payment-gateways/paypal-express.php:500 +#: includes/common/payment-gateways/paypal-express.php:938 +msgid "PayPal" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:48 +#: includes/common/payment-gateways/paypal-chained-payments.php:730 +#: includes/common/payment-gateways/paypal-chained-payments.php:756 +#: includes/common/payment-gateways/paypal-chained-payments.php:873 +msgid "PayPal Chained Payments" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:59 +#: includes/common/payment-gateways/paypal-payflow.php:467 +msgid "PayPal Payflow Pro" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:378 +msgid "Chargeback - A payment was reversed due to a chargeback. The funds have been removed from your account balance and returned to the buyer." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:372 +msgid "Failed - The Credit Card or Direct Debit transaction was declined." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:354 +#: includes/common/payment-gateways/skrill.php:366 +msgid "Cancelled - The payment was cancelled manually by the sender in their online account history or was auto-cancelled after 14 days pending." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:360 +msgid "Pending - The payment is pending. It can take 2-3 days for bank transfers to complete." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:349 +#: includes/common/payment-gateways/skrill.php:354 +msgid "Processed - The payment has been completed, and the funds have been added successfully to your Moneybookers account balance." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:189 +msgid "Shown to the customer on the confirmation screen - the end step of the process - a note, confirmation number, or any other message. Line breaks <br> may be used for longer messages." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:188 +msgid "Confirmation Note (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:183 +msgid "The URL of the logo which you would like to appear at the top of the payment form. The logo must be accessible via HTTPS otherwise it will not be shown. For best integration results we recommend that you use a logo with dimensions up to 200px in width and 50px in height." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:182 +msgid "Logo Image (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:177 +msgid "The name of this store, which will be shown on the gateway. If no value is submitted, the account email will be shown as the recipient of the payment." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:176 +msgid "Merchant Name (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:165 +msgid "Language" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:368 +#: includes/common/payment-gateways/authorizenet-aim.php:262 +#: includes/common/payment-gateways/eway.php:363 +#: includes/common/payment-gateways/eway31.php:471 +#: includes/common/payment-gateways/mollie.php:91 +#: includes/common/payment-gateways/paymill.php:193 +#: includes/common/payment-gateways/paypal-chained-payments.php:356 +#: includes/common/payment-gateways/paypal-express.php:688 +#: includes/common/payment-gateways/paypal-payflow.php:432 +#: includes/common/payment-gateways/pin.php:186 +#: includes/common/payment-gateways/skrill.php:152 +#: includes/common/payment-gateways/stripe.php:288 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:104 +msgid "Currency" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:359 +#: includes/common/payment-gateways/skrill.php:143 +msgid "Secret Word" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:261 +msgid "Order ID:" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:234 +msgid "Complete Checkout" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:204 +msgid "Your Moneybookers transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:155 +msgid "This is the email text to send to those who have made manual payment checkouts. You should include your manual payment instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:257 +#: includes/common/payment-gateways/manual-payments.php:128 +msgid "Record payments manually, such as by Cash, Check, or EFT." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:71 +msgid "Manual/Invoice" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:648 +#: includes/common/payment-gateways/manual-payments.php:35 +#: includes/common/payment-gateways/manual-payments.php:36 +msgid "Manual Payment" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:34 +#: includes/common/payment-gateways/manual-payments.php:163 +msgid "Manual Payments" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:288 +msgid "iDEAL Simulator (for testing)" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:287 +msgid "ABN Amro Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:286 +msgid "Friesland Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:285 +msgid "Rabobank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:284 +msgid "ING Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:279 +msgid "Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:270 +msgid "To make it easier to pay for online products and services, the Dutch banking community has developed the iDEAL online payment method. iDEAL allows online payments to be made using online banking in EUR only." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:247 +#: includes/common/payment-gateways/_payway.php:199 +#: includes/common/payment-gateways/manual-payments.php:68 +msgid "Invoiced" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1016 +msgid "Coupon" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:77 +#: includes/common/payment-gateways/_ideal.php:250 +#: includes/common/payment-gateways/_payway.php:202 +msgid "iDEAL" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:76 +msgid "iDEAL (beta)" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:327 +msgid "Merchant Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:293 +#: includes/common/payment-gateways/_payway.php:302 +#: includes/common/payment-gateways/payfast.php:324 +msgid "Merchant ID" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:462 +msgid "eWay Rapid 3.0 Payments lets merchants recieve credit card payments through eWay without need for users to leave the shop. Note this gateway requires a valid SSL certificate configured for this site." +msgstr "" + +#: includes/common/payment-gateways/eway.php:452 +msgid "There was a problem connecting to eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/eway.php:432 +#: includes/common/payment-gateways/eway.php:437 +msgid "The url of the image can be hosted on your website and pass the secure https:// path of the image to be displayed at the top of the website. This is the second image block on the webpage and is restricted to 960px X 65px. A default secure image is used if none is supplied." +msgstr "" + +#: includes/common/payment-gateways/eway.php:431 +#: includes/common/payment-gateways/eway.php:436 +msgid "Company Logo (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:427 +msgid "The page footer text can be customised and populated below the customer's order details. Useful for contact information." +msgstr "" + +#: includes/common/payment-gateways/eway.php:426 +msgid "Page Footer (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:421 +msgid "Page Description (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:417 +#: includes/common/payment-gateways/eway.php:422 +msgid "This value is used to populate the browsers title bar at the top of the screen." +msgstr "" + +#: includes/common/payment-gateways/eway.php:416 +msgid "Page Title (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:412 +msgid "This will be displayed as the company the customer is purchasing from, including this is highly recommended." +msgstr "" + +#: includes/common/payment-gateways/eway.php:411 +msgid "Company Name" +msgstr "" + +#: includes/common/payment-gateways/eway.php:394 +msgid "Customer ID" +msgstr "" + +#: includes/common/payment-gateways/eway.php:381 +#: includes/common/payment-gateways/eway31.php:488 +msgid "Live API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway.php:371 +#: includes/common/payment-gateways/eway31.php:479 +msgid "Gateway Mode" +msgstr "" + +#: includes/common/payment-gateways/eway.php:354 +msgid "The Hosted Page is a webpage hosted on eWAY's side eliminating the need for merchants to capture, transmit or store credit card numbers. At the checkout time the merchant automatically redirects the customer to the Hosted Page where they would enter their details and have the transaction processed. Upon completion of the transaction the customer is redirected back to the MarketPress checkout confirmation page." +msgstr "" + +#: includes/common/payment-gateways/eway.php:314 +msgid "There was a problem with your credit card information: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:300 +msgid "Paid - The card has been processed - %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:253 +msgid "There was a problem setting up the transaction with eWay: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:245 +#: includes/common/payment-gateways/eway.php:289 +msgid "There was a problem parsing the response from eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:159 +#: includes/common/payment-gateways/eway.php:189 +#: includes/common/payment-gateways/paypal-chained-payments.php:634 +#: includes/common/payment-gateways/paypal-express.php:322 +#: includes/common/payment-gateways/paypal-express.php:473 +msgid "%s Store Purchase - Order ID: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:147 +#: includes/common/payment-gateways/eway.php:462 +msgid "eWay Shared Payments" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:214 +msgid "This is the email text to send to those who have made CubePoints checkouts. You should include your CubePoints instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:212 +#: includes/common/payment-gateways/free_orders.php:188 +#: includes/common/payment-gateways/manual-payments.php:154 +msgid "Order Confirmation Email" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:207 +#: includes/common/payment-gateways/manual-payments.php:149 +msgid "Confirmation User Instructions" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:202 +#: includes/common/payment-gateways/manual-payments.php:144 +msgid "User Instructions" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:198 +#: includes/common/payment-gateways/free_orders.php:170 +#: includes/common/payment-gateways/manual-payments.php:139 +msgid "Enter a public name for this payment method that is displayed to users - No HTML" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:532 +#: includes/common/payment-gateways/_cubepoints.php:196 +#: includes/common/payment-gateways/free_orders.php:169 +#: includes/common/payment-gateways/manual-payments.php:138 +msgid "Method Name" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:187 +msgid "Accept CubePoints as payment(requires the CubePoints plugin)." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:140 +msgid "Sorry, but you do not appear to have enough points to complete this purchase!" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:124 +msgid "%s Store Purchase" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:79 +#: includes/common/payment-gateways/_cubepoints.php:171 +msgid "Your current points: " +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:133 +#: includes/common/payment-gateways/_cubepoints.php:197 +msgid "CubePoints" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:344 +msgid "Authorize.net AIM Checkout" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:331 +msgid "Custom API URL" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:332 +msgid "Many other gateways have Authorize.net API emulators. To use one of these gateways input their API post url here." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:322 +msgid "Request a delimited response from the payment gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:316 +msgid "Security: MD5 Hash" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:317 +msgid "The payment gateway generated MD5 hash value that can be used to authenticate the transaction response. Not needed because responses are returned using an SSL connection." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:306 +msgid "Customer Receipt Email Footer" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:296 +msgid "Customer Receipt Email Header" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:297 +#: includes/common/payment-gateways/paypal-payflow.php:446 +msgid "This text will appear as the header of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:282 +msgid "Encapsulation Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:283 +msgid "Authorize.net default is blank. Otherwise, get this from your credit card processor. If the transactions are going through, but getting strange responses, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:273 +msgid "Optional settings to control advanced options" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:224 +#: includes/common/payment-gateways/authorizenet-aim.php:272 +msgid "Advanced Settings" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:253 +msgid "Transaction Key" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:246 +msgid "Login ID" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:396 +msgid "Gateway Credentials" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:221 +msgid "Authorize.net AIM is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway. USD is the only currency supported by this gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:205 +msgid "There was a problem finalizing your purchase. %s Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:519 +#: includes/common/payment-gateways/paypal-chained-payments.php:218 +#: includes/common/payment-gateways/paypal-chained-payments.php:498 +#: includes/common/payment-gateways/paypal-express.php:822 +#: includes/common/payment-gateways/paypal-express.php:1092 +msgid "The payment has been completed, and the funds have been added successfully to your account balance." +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:233 +msgid "Please enter a valid credit card security code" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:224 +#: includes/public/class-mp-checkout.php:867 +msgid "Please enter a valid credit card number" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:221 +msgid "Please enter your credit card number" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:217 +msgid "Please enter your credit card security code" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:213 +msgid "Please select your credit card expiration date." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:299 +#: includes/common/payment-gateways/authorizenet-aim.php:50 +#: includes/common/payment-gateways/eway.php:148 +#: includes/common/payment-gateways/eway.php:298 +#: includes/common/payment-gateways/eway31.php:267 +#: includes/common/payment-gateways/paymill.php:46 +#: includes/common/payment-gateways/paypal-express.php:972 +#: includes/common/payment-gateways/paypal-payflow.php:60 +#: includes/common/payment-gateways/pin.php:46 +#: includes/common/payment-gateways/simplify.php:19 +#: includes/common/payment-gateways/stripe.php:46 +#: includes/common/payment-gateways/wepay.php:37 +msgid "Credit Card" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:49 +msgid "Authorize.net Checkout" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:156 +#: includes/common/payment-gateways/stripe.php:293 +msgid "Selecting a currency other than that used for your store may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:352 +msgid "Seller ID" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:340 +#: includes/common/payment-gateways/_ideal.php:311 +#: includes/common/payment-gateways/authorizenet-aim.php:234 +#: includes/common/payment-gateways/eway.php:376 +#: includes/common/payment-gateways/payfast.php:315 +#: includes/common/payment-gateways/paypal-chained-payments.php:368 +#: includes/common/payment-gateways/paypal-express.php:699 +#: includes/common/payment-gateways/paypal-payflow.php:391 +msgid "Live" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:339 +#: includes/common/payment-gateways/authorizenet-aim.php:233 +#: includes/common/payment-gateways/eway.php:375 +#: includes/common/payment-gateways/paypal-chained-payments.php:367 +#: includes/common/payment-gateways/paypal-express.php:698 +#: includes/common/payment-gateways/paypal-payflow.php:390 +#: includes/common/shipping-modules/mp-fedex.php:263 +msgid "Sandbox" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:336 +#: includes/common/payment-gateways/_ideal.php:307 +#: includes/common/payment-gateways/authorizenet-aim.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:365 +#: includes/common/payment-gateways/paypal-express.php:695 +#: includes/common/payment-gateways/paypal-payflow.php:387 +#: includes/common/payment-gateways/wepay.php:130 +#: includes/common/shipping-modules/mp-fedex.php:260 +msgid "Mode" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:288 +#: includes/common/payment-gateways/mijireh.php:242 +#: includes/common/payment-gateways/mollie.php:212 +msgid "The order has been received" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:74 +#: includes/common/payment-gateways/2checkout.php:75 +#: includes/common/payment-gateways/2checkout.php:435 +msgid "2Checkout" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:306 +msgid "Confirm" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:218 +#: includes/common/class-mp-cart.php:974 includes/common/class-mp-cart.php:1354 +#: includes/common/template-functions.php:918 +msgid "Checkout" +msgstr "" + +#: includes/common/template-functions.php:207 +msgid "Check Order Status" +msgstr "" + +#: includes/common/template-functions.php:235 +msgid "View Products" +msgstr "" + +#: includes/common/template-functions.php:263 +msgid "Visit Store" +msgstr "" + +#: includes/common/template-functions.php:2912 +#: includes/multisite/template-functions.php:448 +msgid "Order By" +msgstr "" + +#: includes/common/template-functions.php:2887 +#: includes/multisite/template-functions.php:405 +msgid "Price (High to Low)" +msgstr "" + +#: includes/common/template-functions.php:2886 +#: includes/multisite/template-functions.php:404 +msgid "Price (Low to High)" +msgstr "" + +#: includes/common/template-functions.php:2881 +#: includes/multisite/template-functions.php:399 +msgid "Default" +msgstr "" + +#: includes/common/template-functions.php:2858 +msgid "Show All" +msgstr "" + +#: includes/common/class-mp-product.php:2048 +msgid "View Larger Image »" +msgstr "" + +#: includes/common/class-mp-product.php:979 +msgid "Out of Stock" +msgstr "" + +#: includes/common/template-functions.php:148 +msgid "Price: " +msgstr "" + +#: includes/multisite/template-functions.php:833 +msgid "No Tags" +msgstr "" + +#: includes/common/template-functions.php:3162 +msgid "Uncategorized" +msgstr "" + +#: includes/common/class-mp-cart.php:569 includes/common/class-mp-order.php:604 +#: includes/common/helpers.php:115 +msgid "Download" +msgstr "" + +#: includes/common/class-mp-cart.php:1353 +msgid "Empty Cart" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:291 +#: includes/common/payment-gateways/paypal-express.php:718 +#: includes/common/payment-gateways/paypal-payflow.php:423 +#: includes/common/shipping-modules/mp-ups.php:158 +#: includes/public/class-mp-checkout.php:1254 +#: includes/public/class-mp-checkout.php:1383 +msgid "Password" +msgstr "" + +#: includes/common/payment-gateways/eway.php:387 +#: includes/common/payment-gateways/paypal-express.php:711 +#: includes/common/shipping-modules/mp-usps.php:185 +#: includes/public/class-mp-checkout.php:1249 +msgid "Username" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:437 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:790 +msgid "Have a coupon code?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:321 +#: includes/admin/class-mp-orders-admin.php:526 +#: includes/common/class-mp-cart.php:592 +msgid "Remove" +msgstr "" + +#: includes/admin/class-mp-ajax.php:316 +msgid "Quantity:" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2140 +#: includes/admin/class-mp-products-admin.php:2387 +#: includes/common/shipping-modules/class-mp-shipping-api.php:507 +msgid "Extra Shipping Cost" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:403 +msgid "Choose a Shipping Method:" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1691 +#: includes/admin/class-mp-products-admin.php:2131 +#: includes/admin/class-mp-products-admin.php:2378 +#: includes/common/shipping-modules/class-mp-shipping-api.php:228 +msgid "Ounces" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1684 +#: includes/admin/class-mp-products-admin.php:2123 +#: includes/admin/class-mp-products-admin.php:2369 +#: includes/admin/class-mp-setup-wizard.php:546 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:165 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +#: includes/common/shipping-modules/class-mp-shipping-api.php:227 +msgid "Pounds" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:226 +msgid "Product Weight:" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:214 +msgid "Weight (Kilograms)" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:82 +msgid "Number of Categories:" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:72 +msgid "Product Count" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:20 +#: includes/admin/class-mp-product-attributes-admin.php:129 +#: includes/admin/class-mp-product-attributes-list-table.php:22 +#: includes/admin/class-mp-products-admin.php:2216 +#: includes/admin/class-mp-shortcode-builder.php:628 +#: includes/admin/class-mp-shortcode-builder.php:1415 +#: includes/admin/widgets/ms-global-categories.php:70 +#: includes/common/shipping-modules/mp-fedex.php:395 +#: includes/common/shipping-modules/mp-ups.php:202 +#: includes/common/shipping-modules/mp-usps.php:243 +#: includes/public/class-mp-checkout.php:314 +msgid "Name" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:67 +msgid "Order Categories By:" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:24 +#: includes/admin/widgets/ms-global-categories.php:50 +msgid "Global Product Categories" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:15 +msgid "Global Product Category List" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:13 +msgid "Displays a network-wide HTML list of product categories from network MarketPress stores." +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:24 +#: includes/admin/widgets/ms-global-tag-cloud.php:45 +msgid "Global Product Tags" +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:15 +msgid "Global Product Tag Cloud" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:947 +#: includes/admin/widgets/ms-global-product-list.php:173 +msgid "Excerpt" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:169 +msgid "Content To Show:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:140 +msgid "Limit To Product Tag:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:132 +msgid "Limit To Product Category:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:72 +msgid "Global Products" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:16 +msgid "Global Product List" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:14 +msgid "Shows a customizable global list of products from network MarketPress stores." +msgstr "" + +#: includes/common/class-mp-product.php:974 +#: includes/multisite/template-functions.php:731 +msgid "Buy Now »" +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:13 +msgid "Displays global most used product tags in cloud format from network MarketPress stores." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:438 +msgid "Theme Permissions" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:402 +#: includes/multisite/class-mp-admin-multisite.php:448 +msgid "No Access" +msgstr "" + +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:120 +msgid "Pro Site Level" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:401 +#: includes/multisite/class-mp-admin-multisite.php:447 +msgid "All Can Use" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:390 +msgid "Gateway Permissions" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:375 +msgid "Select a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:350 +msgid "Global Gateway" +msgstr "" + +#. Plugin Name of the plugin/theme +msgid "MarketPress" +msgstr "" + +#: includes/admin/widgets/product-tag-cloud.php:7 +msgid "Your most used product tags in cloud format from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/categories.php:79 +msgid "Show hierarchy" +msgstr "" + +#: includes/admin/widgets/categories.php:76 +#: includes/admin/widgets/ms-global-categories.php:92 +msgid "Show product counts" +msgstr "" + +#: includes/admin/widgets/categories.php:73 +msgid "Show as dropdown" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:710 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:736 +#: includes/admin/widgets/categories.php:30 +msgid "Select Category" +msgstr "" + +#: includes/admin/widgets/categories.php:7 +msgid "A list or dropdown of product categories from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/product-list.php:250 +msgid "Show Buy Button" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:183 +#: includes/admin/widgets/product-list.php:244 +msgid "Show Price" +msgstr "" + +#: includes/admin/widgets/product-list.php:241 +msgid "Show Excerpt" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:155 +#: includes/admin/widgets/product-list.php:238 +msgid "Thumbnail Size:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:153 +#: includes/admin/widgets/product-list.php:237 +msgid "Show Thumbnail" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:147 +#: includes/admin/widgets/product-list.php:233 +msgid "Display Settings" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:136 +#: includes/admin/widgets/ms-global-product-list.php:144 +#: includes/admin/widgets/product-list.php:230 +msgid "Enter the Slug" +msgstr "" + +#: includes/admin/widgets/product-list.php:228 +#: includes/common/template-functions.php:894 +msgid "Tag" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:686 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:712 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:739 +#: includes/admin/class-mp-shortcode-builder.php:796 +#: includes/admin/widgets/product-list.php:227 +#: includes/common/template-functions.php:886 +#: includes/common/template-functions.php:2907 +msgid "Category" +msgstr "" + +#: includes/admin/widgets/product-list.php:226 +msgid "No Filter" +msgstr "" + +#: includes/admin/widgets/product-list.php:224 +msgid "Taxonomy Filter:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:108 +#: includes/admin/widgets/product-list.php:209 +msgid "Order Products By:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:101 +#: includes/admin/widgets/product-list.php:206 +msgid "Number of Products:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:98 +#: includes/admin/widgets/product-list.php:204 +msgid "List Settings" +msgstr "" + +#: includes/admin/widgets/product-list.php:177 +msgid "Our Products" +msgstr "" + +#: includes/admin/widgets/product-list.php:144 +#: includes/common/template-functions.php:2070 +#: includes/common/template-functions.php:2347 +#: includes/multisite/template-functions.php:303 +#: includes/multisite/template-functions.php:623 +msgid "No Products" +msgstr "" + +#: includes/admin/widgets/product-list.php:8 +msgid "Product List" +msgstr "" + +#: includes/admin/widgets/product-list.php:7 +msgid "Shows a customizable list of products from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/cart.php:75 includes/admin/widgets/categories.php:82 +#: includes/admin/widgets/product-list.php:253 +#: includes/admin/widgets/product-tag-cloud.php:57 +msgid "Only show on store pages" +msgstr "" + +#: includes/admin/widgets/cart.php:65 +#: includes/admin/widgets/ms-global-product-list.php:92 +#: includes/admin/widgets/product-list.php:200 +msgid "Custom Text:" +msgstr "" + +#: includes/admin/widgets/cart.php:64 includes/admin/widgets/categories.php:69 +#: includes/admin/widgets/ms-global-categories.php:59 +#: includes/admin/widgets/ms-global-product-list.php:87 +#: includes/admin/widgets/ms-global-tag-cloud.php:49 +#: includes/admin/widgets/product-list.php:199 +#: includes/admin/widgets/product-tag-cloud.php:49 +msgid "Title:" +msgstr "" + +#: includes/admin/widgets/cart.php:7 +msgid "Shows dynamic shopping cart contents along with a checkout button for your MarketPress store." +msgstr "" + +#: includes/admin/widgets/product-tag-cloud.php:8 +msgid "Product Tag Cloud" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:539 +#: includes/admin/class-mp-setup-wizard.php:575 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:163 +msgid "Measurement System" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:616 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:149 +msgid "Select Shipping Options" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:596 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:129 +msgid "Calculated Options" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:582 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:115 +msgid "No Shipping" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:110 +msgid "EU" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:109 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:93 +msgid "All" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:92 +msgid "Select:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:185 +msgid "Store Pages" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:223 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:256 +msgid "Order Shipped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:60 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:95 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:128 +#: marketpress.php:266 +msgid "New Order" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:314 +msgid "Email Notifications" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:59 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:200 +msgid "Products List" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:58 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:190 +msgid "Store Base" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:108 +#: includes/admin/class-mp-shortcode-builder.php:635 +#: includes/admin/class-mp-shortcode-builder.php:708 +#: includes/admin/class-mp-shortcode-builder.php:875 +#: includes/admin/class-mp-shortcode-builder.php:1319 +#: includes/admin/class-mp-shortcode-builder.php:1422 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:526 +#: includes/admin/widgets/ms-global-categories.php:78 +#: includes/admin/widgets/ms-global-product-list.php:127 +#: includes/admin/widgets/product-list.php:221 +msgid "Ascending" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:109 +#: includes/admin/class-mp-shortcode-builder.php:636 +#: includes/admin/class-mp-shortcode-builder.php:709 +#: includes/admin/class-mp-shortcode-builder.php:876 +#: includes/admin/class-mp-shortcode-builder.php:1320 +#: includes/admin/class-mp-shortcode-builder.php:1423 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:525 +#: includes/admin/widgets/ms-global-categories.php:75 +#: includes/admin/widgets/ms-global-product-list.php:124 +#: includes/admin/widgets/product-list.php:220 +msgid "Descending" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:637 +#: includes/admin/class-mp-shortcode-builder.php:695 +#: includes/admin/class-mp-shortcode-builder.php:862 +#: includes/admin/class-mp-shortcode-builder.php:1306 +#: includes/admin/class-mp-shortcode-builder.php:1424 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:518 +#: includes/admin/widgets/ms-global-product-list.php:121 +#: includes/admin/widgets/product-list.php:218 +msgid "Random" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:694 +#: includes/admin/class-mp-shortcode-builder.php:861 +#: includes/admin/class-mp-shortcode-builder.php:1305 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:517 +#: includes/admin/widgets/ms-global-product-list.php:119 +#: includes/admin/widgets/product-list.php:216 +msgid "Product Price" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:693 +#: includes/admin/class-mp-shortcode-builder.php:860 +#: includes/admin/class-mp-shortcode-builder.php:1304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:516 +#: includes/admin/widgets/ms-global-product-list.php:117 +#: includes/admin/widgets/product-list.php:215 +msgid "Number of Sales" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:692 +#: includes/admin/class-mp-shortcode-builder.php:859 +#: includes/admin/class-mp-shortcode-builder.php:1303 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:515 +#: includes/admin/widgets/product-list.php:214 +msgid "Product Author" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:691 +#: includes/admin/class-mp-shortcode-builder.php:858 +#: includes/admin/class-mp-shortcode-builder.php:1302 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:514 +#: includes/admin/widgets/product-list.php:213 +msgid "Product ID" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:690 +#: includes/admin/class-mp-shortcode-builder.php:857 +#: includes/admin/class-mp-shortcode-builder.php:1301 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:513 +#: includes/admin/widgets/ms-global-product-list.php:113 +#: includes/admin/widgets/product-list.php:212 +msgid "Publish Date" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:430 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:726 +msgid "Width" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:439 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:735 +msgid "Height" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:88 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:402 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:698 +msgid "Custom" +msgstr "" + +#: includes/common/class-mp-product.php:179 +#: includes/common/class-mp-product.php:992 +#: includes/common/class-mp-product.php:1000 +#: includes/multisite/template-functions.php:579 +msgid "Buy Now" +msgstr "" + +#: includes/common/class-mp-product.php:175 +#: includes/common/class-mp-product.php:990 +#: includes/common/class-mp-product.php:998 +msgid "Add To Cart" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:807 +msgid "Store Style" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1021 +msgid "Edit Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupon.php:580 +#: includes/admin/class-mp-ajax.php:238 +#: includes/admin/class-mp-products-admin.php:1532 +msgid "Unlimited" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1198 +msgid "Remaining Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1197 +msgid "Used" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:752 +#: includes/admin/class-mp-products-admin.php:2343 +msgid "Start Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:598 +msgid "Coupon Code" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:444 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:284 +msgid "Save Changes" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:57 +#: includes/admin/class-mp-shortcode-builder.php:716 +#: includes/admin/class-mp-shortcode-builder.php:727 +#: includes/admin/class-mp-shortcode-builder.php:883 +#: includes/admin/class-mp-shortcode-builder.php:894 +#: includes/admin/class-mp-shortcode-builder.php:946 +#: includes/admin/class-mp-shortcode-builder.php:956 +#: includes/admin/class-mp-shortcode-builder.php:1006 +#: includes/admin/class-mp-shortcode-builder.php:1327 +#: includes/admin/class-mp-shortcode-builder.php:1338 +#: includes/admin/store-settings/class-mp-store-settings-general.php:357 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:270 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:108 +#: includes/admin/widgets/ms-global-product-list.php:172 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:94 +msgid "None" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:352 +msgid "Google Analytics Ecommerce Tracking" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:310 +msgid "This option turns MarketPress into more of a product listing plugin, disabling shopping carts, checkout, and order management. This is useful if you simply want to list items you can buy in a store somewhere else, optionally linking the \"Buy Now\" buttons to an external site. Some examples are a car dealership, or linking to songs/albums in itunes, or linking to products on another site with your own affiliate links." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:304 +msgid "Whether or not customers must be registered and logged in to checkout. (Not recommended: Enabling this can lower conversions)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:258 +msgid "How many times may a customer download a file they have purchased? (It's best to set this higher than one in case they have any problems downloading)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:257 +msgid "Maximum Downloads" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:298 +msgid "This will set the product to draft if inventory of all variations is gone." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:288 +msgid "At what low stock count do you want to be warned for products you have enabled inventory tracking for?" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:208 +#: includes/admin/store-settings/class-mp-store-settings-general.php:287 +msgid "Inventory Warning Threshold" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:282 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:542 +msgid "Miscellaneous Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:429 +#: includes/multisite/class-mp-admin-multisite.php:247 +msgid "Show Decimal in Prices" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:451 +#: includes/admin/store-settings/class-mp-store-settings-general.php:403 +#: includes/multisite/class-mp-admin-multisite.php:221 +msgid "Currency Symbol Position" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:444 +#: includes/admin/store-settings/class-mp-store-settings-general.php:396 +msgid "Store Currency" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:429 +#: includes/admin/store-settings/class-mp-store-settings-general.php:381 +msgid "Currency Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:516 +msgid "Please see your local tax laws. Note if this is enabled and a downloadable only cart, rates will be the default for your base location." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:529 +msgid "Apply Tax to Downloadable Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:498 +msgid "Enabling this option allows you to enter and show all prices inclusive of tax, while still listing the tax total as a line item in shopping carts. Please see your local tax laws." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:497 +msgid "Enter Prices Inclusive of Tax?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:492 +msgid "Please see your local tax laws. Most areas charge tax on shipping fees." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:491 +msgid "Apply Tax To Shipping Fees?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:674 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:565 +#: includes/common/payment-gateways/authorizenet-aim.php:291 +#: includes/common/payment-gateways/authorizenet-aim.php:326 +#: includes/common/payment-gateways/payfast.php:347 +msgid "No" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:675 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:759 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:512 +#: includes/admin/class-mp-setup-wizard.php:518 +#: includes/admin/class-mp-setup-wizard.php:524 +#: includes/admin/class-mp-setup-wizard.php:530 +#: includes/admin/class-mp-setup-wizard.php:564 +#: includes/admin/store-settings/class-mp-store-settings-general.php:232 +#: includes/admin/store-settings/class-mp-store-settings-general.php:299 +#: includes/admin/store-settings/class-mp-store-settings-general.php:305 +#: includes/admin/store-settings/class-mp-store-settings-general.php:311 +#: includes/admin/store-settings/class-mp-store-settings-general.php:317 +#: includes/admin/store-settings/class-mp-store-settings-general.php:328 +#: includes/admin/store-settings/class-mp-store-settings-general.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:341 +#: includes/admin/store-settings/class-mp-store-settings-general.php:348 +#: includes/admin/store-settings/class-mp-store-settings-general.php:367 +#: includes/admin/store-settings/class-mp-store-settings-general.php:493 +#: includes/admin/store-settings/class-mp-store-settings-general.php:499 +#: includes/admin/store-settings/class-mp-store-settings-general.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:556 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:375 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:381 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:387 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:474 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:493 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:532 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:574 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:606 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:664 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:670 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:677 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:683 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:689 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:763 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:774 +#: includes/common/payment-gateways/_bitpay.php:250 +#: includes/common/payment-gateways/_bitpay.php:257 +#: includes/common/payment-gateways/_bitpay.php:264 +#: includes/common/payment-gateways/authorizenet-aim.php:290 +#: includes/common/payment-gateways/authorizenet-aim.php:325 +#: includes/common/payment-gateways/free_orders.php:160 +#: includes/common/payment-gateways/payfast.php:346 +#: includes/common/payment-gateways/paymill.php:162 +#: includes/common/payment-gateways/paypal-payflow.php:441 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-checkbox.php:22 +msgid "Yes" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:492 +#: includes/admin/store-settings/class-mp-store-settings-general.php:472 +msgid "%s Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:467 +#: includes/admin/store-settings/class-mp-store-settings-general.php:449 +msgid "Tax Settings" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:370 +#: includes/admin/store-settings/class-mp-store-settings-general.php:624 +msgid "Base Zip/Postal Code" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:354 +#: includes/admin/store-settings/class-mp-store-settings-general.php:608 +msgid "Base State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:589 +msgid "Base Country" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:582 +msgid "Location Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:195 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:800 +#: includes/multisite/class-mp-admin-multisite.php:172 +msgid "General Settings" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1945 +#: includes/admin/class-mp-products-admin.php:2185 +#: includes/admin/class-mp-store-settings-admin.php:111 +#: includes/admin/class-mp-store-settings-admin.php:266 +msgid "General" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:242 +msgid "Importers" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +#: includes/admin/class-mp-store-settings-admin.php:234 +msgid "Payments" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:313 +#: includes/admin/class-mp-store-settings-admin.php:112 +#: includes/admin/class-mp-store-settings-admin.php:222 +msgid "Presentation" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:916 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1015 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1018 +#: includes/admin/class-mp-dashboard-widgets.php:305 marketpress.php:702 +msgid "Coupons" +msgstr "" + +#: includes/admin/class-mp-admin.php:251 +msgid "Download »" +msgstr "" + +#: includes/admin/class-mp-admin.php:245 +#: includes/admin/class-mp-exporter-orders.php:170 +msgid "All Statuses" +msgstr "" + +#: includes/admin/class-mp-admin.php:209 +#: includes/admin/class-mp-exporter-orders.php:150 +#: includes/admin/class-mp-exporter-orders.php:178 +msgid "Export Orders" +msgstr "" + +#: includes/admin/class-mp-admin.php:228 +msgid "Show all dates" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:947 +msgid "Change Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:287 +msgid "Order Notes" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:478 +msgid "Other" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:205 +msgid "Subtotal" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:84 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:87 +#: includes/admin/class-mp-products-admin.php:1737 +#: includes/common/class-mp-cart.php:1409 +#: includes/common/class-mp-product.php:559 +msgid "Quantity" +msgstr "" + +#: includes/common/helpers.php:93 +msgid "Item" +msgstr "" + +#: includes/common/class-mp-order.php:1050 +msgid "Current Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:297 +msgid "Order Actions" +msgstr "" + +#: includes/common/class-mp-product.php:1084 +msgid "More Info »" +msgstr "" + +#: includes/common/class-mp-product.php:2313 +msgid "Low Product Inventory Notification" +msgstr "" + +#: includes/common/class-mp-order.php:338 includes/common/data.php:154 +msgid "New Order Notification: ORDERID" +msgstr "" + +#: includes/common/helpers.php:259 +msgid "Your payment for this order is complete." +msgstr "" + +#: includes/common/helpers.php:261 +msgid "Your payment for this order is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/helpers.php:256 +msgid "Payment Total:" +msgstr "" + +#: includes/common/helpers.php:253 +msgid "Transaction ID:" +msgstr "" + +#: includes/common/helpers.php:249 +msgid "Payment Type:" +msgstr "" + +#: includes/common/helpers.php:246 +msgid "Payment Method:" +msgstr "" + +#: includes/common/helpers.php:242 +msgid "Order Notes:" +msgstr "" + +#: includes/common/helpers.php:237 +msgid "Special Instructions:" +msgstr "" + +#: includes/common/helpers.php:232 +msgid "Tracking Number:" +msgstr "" + +#: includes/common/helpers.php:223 includes/common/helpers.php:226 +#: includes/common/helpers.php:228 +#: includes/common/shipping-modules/class-mp-shipping-api.php:406 +#: includes/common/shipping-modules/class-mp-shipping-api.php:428 +msgid "Shipping Method:" +msgstr "" + +#: includes/common/helpers.php:168 +msgid "No shipping required for this order." +msgstr "" + +#: includes/common/helpers.php:155 +msgid "Order Total:" +msgstr "" + +#: includes/common/class-mp-order.php:1025 +msgid "Taxes:" +msgstr "" + +#: includes/common/class-mp-order.php:1032 includes/common/helpers.php:144 +msgid "Shipping:" +msgstr "" + +#: includes/public/class-mp-checkout.php:367 +msgid "Street address, P.O. box, company name, c/o" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:314 +msgid "Shipping Info" +msgstr "" + +#: includes/public/class-mp-public.php:740 +msgid "Whoops, there was a problem loading up this file for your download. Please contact us for help." +msgstr "" + +#: includes/public/class-mp-public.php:683 +msgid "Sorry, our records show you've downloaded this file %d out of %d times allowed. Please contact us if you still need help." +msgstr "" + +#: includes/public/class-mp-public.php:634 +msgid "Sorry, your order has been marked as unpaid." +msgstr "" + +#: includes/public/class-mp-public.php:629 +msgid "Sorry, the link is invalid for this download." +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:15 +#: includes/admin/class-mp-products-admin.php:1172 +msgid "Cheatin’ uh?" +msgstr "" + +#: includes/public/class-mp-public.php:407 +#: includes/public/class-mp-short-codes.php:128 +msgid "Please enter a valid email address." +msgstr "" + +#: includes/admin/class-mp-ajax.php:191 +#: includes/admin/class-mp-products-admin.php:1821 +#: includes/admin/class-mp-products-admin.php:2010 +#: includes/admin/class-mp-products-admin.php:2267 +msgid "File URL" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1842 +msgid "External Link" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2177 +msgid "Add Variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:126 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:289 +msgid "Inventory" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:438 +#: includes/admin/class-mp-products-admin.php:578 +#: includes/admin/class-mp-products-admin.php:1552 +#: includes/admin/class-mp-products-admin.php:2053 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:134 +msgid "Sale Price" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "Variation Name" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1931 +msgid "Product Details" +msgstr "" + +#: includes/admin/class-mp-product-attributes-list-table.php:33 +msgid "Delete" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1057 +msgid "Trashed" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:231 +#: includes/admin/class-mp-orders-admin.php:1015 +#: includes/common/class-mp-order.php:1052 includes/common/helpers.php:97 +msgid "Total" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1196 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:210 +#: includes/admin/class-mp-orders-admin.php:1014 +msgid "Discount" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:221 +#: includes/admin/class-mp-orders-admin.php:1013 +#: includes/common/payment-gateways/_ideal.php:148 +#: includes/common/payment-gateways/_payway.php:134 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:108 +msgid "Tax" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:216 +#: includes/admin/class-mp-orders-admin.php:1012 +#: includes/admin/class-mp-products-admin.php:1958 +#: includes/admin/class-mp-products-admin.php:2198 +#: includes/admin/class-mp-store-settings-admin.php:114 +#: includes/admin/class-mp-store-settings-admin.php:230 +#: includes/common/class-mp-cart.php:717 includes/common/helpers.php:168 +#: includes/common/payment-gateways/_ideal.php:137 +#: includes/common/payment-gateways/_payway.php:116 +#: includes/public/class-mp-checkout.php:1304 +msgid "Shipping" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1011 +msgid "Items" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1010 +msgid "From" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:154 +#: includes/admin/class-mp-orders-admin.php:1009 +#: includes/common/class-mp-gdpr.php:370 +msgid "Order Date" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1008 +#: includes/common/class-mp-gdpr.php:366 +#: includes/common/template-functions.php:2134 +msgid "Order ID" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:22 +#: includes/admin/class-mp-orders-admin.php:1007 +msgid "Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1155 +msgid "N/A" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:243 +#: includes/admin/class-mp-products-admin.php:464 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:142 +msgid "Sales" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:463 +msgid "Stock" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:85 +#: includes/admin/class-mp-ajax.php:176 includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:434 +#: includes/admin/class-mp-products-admin.php:462 +#: includes/admin/class-mp-products-admin.php:576 +#: includes/admin/class-mp-products-admin.php:1519 +#: includes/admin/class-mp-products-admin.php:1569 +#: includes/admin/class-mp-products-admin.php:1950 +#: includes/admin/class-mp-products-admin.php:2059 +#: includes/admin/class-mp-products-admin.php:2190 +#: includes/admin/class-mp-products-admin.php:2330 +#: includes/common/class-mp-cart.php:1415 includes/common/helpers.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:130 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:276 +msgid "Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:173 +#: includes/admin/class-mp-products-admin.php:461 +#: includes/admin/class-mp-products-admin.php:1972 +#: includes/admin/class-mp-products-admin.php:2224 +msgid "SKU" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:459 +#: includes/admin/class-mp-products-admin.php:1793 +#: includes/admin/class-mp-products-admin.php:1805 +#: includes/admin/class-mp-products-admin.php:2163 +msgid "Variations" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:83 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:86 +#: includes/admin/class-mp-dashboard-widgets.php:134 +#: includes/admin/class-mp-products-admin.php:458 +#: includes/admin/class-mp-products-admin.php:837 +#: includes/admin/class-mp-shortcode-builder.php:689 +#: includes/admin/class-mp-shortcode-builder.php:856 +#: includes/admin/class-mp-shortcode-builder.php:1300 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:512 +#: includes/admin/widgets/ms-global-product-list.php:115 +#: includes/admin/widgets/product-list.php:211 +msgid "Product Name" +msgstr "" + +#: includes/common/template-functions.php:2575 +msgid "Categorized in " +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:305 +#: includes/common/payment-gateways/free_orders.php:176 +msgid "Payment Information" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:167 +#: includes/admin/class-mp-orders-admin.php:432 +#: includes/admin/class-mp-pages-admin.php:62 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:227 +#: includes/common/class-mp-gdpr.php:374 +#: includes/common/template-functions.php:175 +#: includes/common/template-functions.php:926 +msgid "Order Status" +msgstr "" + +#. translators: %s: orders closed +#: marketpress.php:327 +msgid "Closed (%s)" +msgid_plural "Closed (%s)" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:249 +#: includes/admin/class-mp-orders-admin.php:375 +#: includes/admin/class-mp-orders-admin.php:951 +#: includes/admin/class-mp-orders-admin.php:1053 +#: includes/admin/class-mp-orders-admin.php:1065 +#: includes/common/class-mp-gdpr.php:330 +#: includes/common/class-mp-order.php:1019 marketpress.php:325 +msgid "Closed" +msgstr "" + +#. translators: %s: shipped orders +#: marketpress.php:320 +msgid "Shipped (%s)" +msgid_plural "Shipped (%s)" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:248 +#: includes/admin/class-mp-orders-admin.php:376 +#: includes/admin/class-mp-orders-admin.php:950 +#: includes/admin/class-mp-orders-admin.php:1049 +#: includes/admin/class-mp-orders-admin.php:1064 +#: includes/common/class-mp-gdpr.php:329 +#: includes/common/class-mp-order.php:1002 marketpress.php:318 +msgid "Shipped" +msgstr "" + +#. translators: %s: paid orders +#: marketpress.php:313 +msgid "Paid (%s)" +msgid_plural "Paid (%s)" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:247 +#: includes/admin/class-mp-orders-admin.php:377 +#: includes/admin/class-mp-orders-admin.php:949 +#: includes/admin/class-mp-orders-admin.php:1045 +#: includes/admin/class-mp-orders-admin.php:1063 +#: includes/common/class-mp-gdpr.php:328 +#: includes/common/payment-gateways/2checkout.php:294 +#: includes/common/payment-gateways/_cubepoints.php:130 +#: includes/common/payment-gateways/authorizenet-aim.php:193 +#: includes/common/payment-gateways/free_orders.php:91 +#: includes/common/payment-gateways/mijireh.php:248 +#: includes/common/payment-gateways/paymill.php:273 +#: includes/common/payment-gateways/paypal-express.php:933 +#: includes/common/payment-gateways/paypal-express.php:967 +#: includes/common/payment-gateways/pin.php:258 +#: includes/common/payment-gateways/simplify.php:181 +#: includes/common/payment-gateways/stripe.php:368 +#: includes/common/payment-gateways/wepay.php:269 marketpress.php:311 +msgid "Paid" +msgstr "" + +#. translators: %s: orders received +#: marketpress.php:306 +msgid "Received (%s)" +msgid_plural "Received (%s)" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:246 +#: includes/admin/class-mp-orders-admin.php:378 +#: includes/admin/class-mp-orders-admin.php:1041 +#: includes/admin/class-mp-orders-admin.php:1062 +#: includes/common/class-mp-gdpr.php:327 includes/common/class-mp-order.php:995 +#: includes/common/payment-gateways/payfast.php:244 marketpress.php:304 +msgid "Received" +msgstr "" + +#: marketpress.php:268 +msgid "Search Orders" +msgstr "" + +#: marketpress.php:267 +msgid "View Order" +msgstr "" + +#: marketpress.php:262 +msgid "Order" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:301 +#: includes/admin/class-mp-orders-admin.php:989 marketpress.php:261 +msgid "Orders" +msgstr "" + +#: marketpress.php:228 +msgid "No Products found in Trash" +msgstr "" + +#: marketpress.php:227 +msgid "No Products Found" +msgstr "" + +#: marketpress.php:226 +msgid "Search Products" +msgstr "" + +#: marketpress.php:225 marketpress.php:229 +msgid "View Product" +msgstr "" + +#: marketpress.php:224 +msgid "New Product" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1022 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:258 +#: marketpress.php:223 +msgid "Edit" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1019 +msgid "Create New" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:687 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:698 +#: marketpress.php:217 +msgid "Product" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:307 +#: includes/common/template-functions.php:173 +#: includes/common/template-functions.php:179 +#: includes/common/template-functions.php:902 +#: includes/multisite/template-functions.php:82 marketpress.php:216 +#: marketpress.php:219 +msgid "Products" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:118 +#: includes/admin/widgets/product-tag-cloud.php:46 +#: includes/multisite/class-mp-admin-multisite.php:548 +msgid "Product Tags" +msgstr "" + +#: includes/common/template-functions.php:2906 +#: includes/multisite/template-functions.php:449 +msgid "Product Category" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:117 +#: includes/admin/widgets/categories.php:8 +#: includes/admin/widgets/categories.php:18 +#: includes/multisite/class-mp-admin-multisite.php:539 +msgid "Product Categories" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:332 +#: includes/common/template-functions.php:872 marketpress.php:218 +msgid "Store" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:60 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:209 +#: includes/admin/widgets/cart.php:8 includes/admin/widgets/cart.php:56 +#: includes/common/template-functions.php:174 +#: includes/common/template-functions.php:811 +msgid "Shopping Cart" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:110 +#: includes/admin/class-mp-store-settings-admin.php:218 +msgid "Store Settings" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:128 marketpress.php:607 +msgid "Settings" +msgstr "" + +#: includes/common/data.php:178 includes/common/data.php:190 +msgid "Your Order Has Been Shipped! (ORDERID)" +msgstr "" + +#: includes/common/data.php:159 includes/common/data.php:166 +#: includes/common/data.php:172 +msgid "Your Order Confirmation (ORDERID)" +msgstr "" + +#: includes/common/data.php:148 +msgid "

    Thank you for your order! We appreciate your business, and please come back often to check out our new products.

    " +msgstr "" + +#: includes/common/data.php:147 +msgid "

    You are almost done! Please do a final review of your order to make sure everything is correct then click the \"Confirm Payment\" button.

    " +msgstr "" + +#: includes/common/data.php:145 +msgid "

    Please enter your shipping information in the form below to proceed with your order.

    " +msgstr "" + +#: includes/common/data.php:143 +msgid "

    If you have any questions about your order please do not hesitate to contact us.

    " +msgstr "" + +#: includes/common/data.php:106 +msgid "tag" +msgstr "" + +#: includes/common/data.php:105 +msgid "category" +msgstr "" + +#: includes/common/data.php:104 +msgid "order-status" +msgstr "" + +#: includes/common/data.php:103 +msgid "shopping-cart" +msgstr "" + +#: includes/common/data.php:102 +msgid "products" +msgstr "" + +#. Translators: change default slugs here +#: includes/common/data.php:101 +msgid "store" +msgstr "" \ No newline at end of file diff --git a/languages/mp-fr.mo b/languages/mp-fr.mo new file mode 100644 index 0000000000000000000000000000000000000000..f9d4f1da5a18f517d76e122e921b2ecb8baba72d GIT binary patch literal 202827 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 z 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 fs%b->Yo?&c&?>VCm<63X*+U&Bh}9#F*wg 1;\n" +"X-Generator: GlotPress/2.3.1\n" +"Language: fr\n" +"Project-Id-Version: MarketPress\n" + +#: includes/public/class-mp-checkout.php:1285 +msgid "By clicking this checkbox you allow the website to process your personal data." +msgstr "" + +#: includes/common/class-mp-gdpr.php:382 +msgid "Order Info" +msgstr "" + +#: includes/common/class-mp-gdpr.php:268 +msgid "Shipping Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:267 +msgid "Shipping Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:266 +msgid "Shipping ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:265 +msgid "Shipping State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:264 +msgid "Shipping City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:263 +msgid "Shipping Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:262 +msgid "Shipping Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:261 +msgid "Shipping Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:260 +msgid "Shipping Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:259 +msgid "Shipping Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:258 +msgid "Shipping First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:254 +msgid "Billing Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:253 +msgid "Billing Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:252 +msgid "Billing ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:251 +msgid "Billing State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:250 +msgid "Billing City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:249 +msgid "Billing Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:248 +msgid "Billing Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:247 +msgid "Billing Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:246 +msgid "Billing Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:245 +msgid "Billing Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:244 +msgid "Billing First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:151 +msgid "Orders Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:139 +msgid "Customer Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:100 includes/common/class-mp-gdpr.php:116 +msgid "MarketPress User Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:81 +msgid "" +"In addition to standard WordPress session cookies, this site might be setting an\n" +"\t\t additional cookie to remember your cart settings. This cookie will last for one year." +msgstr "" + +#: includes/common/class-mp-gdpr.php:80 +msgid "Cookies" +msgstr "" + +#: includes/common/class-mp-gdpr.php:77 +msgid "" +"The following information will be collected in order to process orders: your name,\n" +"\t\t username, email address, avatar and profile URLs, address and phone number. This data can be\n" +"\t\t exported and removed." +msgstr "" + +#: includes/common/class-mp-gdpr.php:76 +msgid "Additional data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:71 +msgid "" +"This site might be using third party services and tools to process payments or/and\n" +"\t\t process shipping data when creating orders on the MarketPress store. These services include payment\n" +"\t\t gateways: 2Checkout, Authorize.net AIM, eWay shared payments, eWay Rapid 3.1 Payments, Mijireh,\n" +"\t\t Mollie, Paymill, PayPal, PIN, Simplify Commerce by MasterCard, Stripe and WePay; shipping gateways:\n" +"\t\t Fedex, UPS, USPS." +msgstr "" + +#: includes/common/class-mp-gdpr.php:70 +msgid "Third parties" +msgstr "" + +#: includes/admin/class-mp-admin.php:403 +msgid "Start creating store pages and products for your online shop here." +msgstr "" + +#: includes/admin/class-mp-admin.php:402 +msgid "Create Online Shop" +msgstr "" + +#: includes/admin/class-mp-admin.php:394 +msgid "Run Setup Wizard" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:234 +msgid "If having problems during invoice generation, add define( 'DOMPDF_ENABLE_HTML5PARSER', true ); to the wp-config.php file." +msgstr "" + +#: includes/public/class-mp-checkout.php:723 +msgid "Invalid Email" +msgstr "Email Invalide" + +#: includes/public/class-mp-checkout.php:721 +#: includes/public/class-mp-checkout.php:729 +msgid "This field is required" +msgstr "Ce champ est requis" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:804 +msgid "This option changes the built-in css styles for store pages. For a custom css style, save your css file with the /* MarketPress Style: Your CSS Theme Name Here */ header line in the \"%s\" folder and it will appear in this list so you may select it. You should select \"None\" if you don't wish to use custom CSS styles or if you are using default theme templates or custom theme templates and css to make your own completely unique store design. For more information on custom theme templates click here »." +msgstr "Cette option modifie les styles de css intégrés pour les pages de la boutique. Pour un style css personnalisé, enregistrez votre fichier css avec la /* Style ProfitsBoutik: votre nom de thème CSS Ici */ ligne d'en-tête dans le dossier \"%s\" et il apparaîtra dans cette liste afin que vous puissiez le sélectionner. Vous devez sélectionner \"Aucun\" si vous ne souhaitez pas utiliser de styles CSS personnalisés ou si vous utilisez des modèles de thème par défaut ou des modèles de thème personnalisés et le css pour faire votre propre conception de boutique complètement unique. Pour plus d'informations sur les modèles de thème personnalisés, cliquez ici »." + +#: includes/public/class-mp-public.php:421 +#: includes/public/class-mp-short-codes.php:142 +msgid "Please enter a value greater than or equal to {0}." +msgstr "Saisir une valeur supérieure ou égale à {0}." + +#: includes/public/class-mp-public.php:420 +#: includes/public/class-mp-short-codes.php:141 +msgid "Please enter a value less than or equal to {0}." +msgstr "Veuillez saisir une valeur inférieure ou égale à {0}." + +#: includes/public/class-mp-public.php:419 +#: includes/public/class-mp-short-codes.php:140 +msgid "Please enter a value between {0} and {1}." +msgstr "Veuillez saisir une valeur comprise entre {0} et {1}." + +#: includes/public/class-mp-public.php:418 +#: includes/public/class-mp-short-codes.php:139 +msgid "Please enter a value between {0} and {1} characters long." +msgstr "Veuillez saisir une valeur comprise entre {0} et {1} caractères." + +#: includes/public/class-mp-public.php:417 +#: includes/public/class-mp-short-codes.php:138 +msgid "Please enter at least {0} characters." +msgstr "Veuillez saisir au moins {0} caractères." + +#: includes/public/class-mp-public.php:416 +#: includes/public/class-mp-short-codes.php:137 +msgid "Please enter no more than {0} characters." +msgstr "Veuillez ne pas saisir plus de {0} caractères." + +#: includes/public/class-mp-public.php:415 +#: includes/public/class-mp-short-codes.php:136 +msgid "Please enter a value with a valid extension." +msgstr "Entrer une valeur avec une extension valide." + +#: includes/public/class-mp-public.php:414 +#: includes/public/class-mp-short-codes.php:135 +msgid "Please enter the same value again." +msgstr "Veuillez saisir à nouveau la même valeur." + +#: includes/public/class-mp-public.php:413 +#: includes/public/class-mp-short-codes.php:134 +msgid "Please enter a valid credit card number." +msgstr "Veuillez saisir un numéro de carte de crédit valide." + +#: includes/public/class-mp-public.php:412 +#: includes/public/class-mp-short-codes.php:133 +msgid "Please enter only digits." +msgstr "Merci de n'entrer que des chiffres." + +#: includes/public/class-mp-public.php:411 +#: includes/public/class-mp-short-codes.php:132 +msgid "Please enter a valid number." +msgstr "Saisir un nombre valide." + +#: includes/public/class-mp-public.php:410 +#: includes/public/class-mp-short-codes.php:131 +msgid "Please enter a valid date (ISO)." +msgstr "Veuillez saisir une date valide (JJ-MM-AAAA)." + +#: includes/public/class-mp-public.php:409 +#: includes/public/class-mp-short-codes.php:130 +msgid "Please enter a valid date." +msgstr "Merci de saisir une date valide." + +#: includes/public/class-mp-public.php:408 +#: includes/public/class-mp-short-codes.php:129 +msgid "Please enter a valid URL." +msgstr "Veuillez entrer une URL valide." + +#: includes/public/class-mp-public.php:406 +#: includes/public/class-mp-short-codes.php:127 +msgid "Please fix this field." +msgstr "Veuiller corriger ce champ." + +#: includes/public/class-mp-checkout.php:1287 +#: includes/public/class-mp-public.php:405 +#: includes/public/class-mp-short-codes.php:126 +msgid "This field is required." +msgstr "Ce champ est requis." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:810 +msgid "None - Without Special CSS-styles" +msgstr "Aucun - Sans Styles CSS particuliers" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:809 +msgid "Default - Using Default CSS-styles" +msgstr "Défaut - Utiliser Styles CSS par défaut" + +#: marketpress.php:739 +msgid "Enable multiple downloads per product" +msgstr "Autoriser les téléchargements multiples par produit" + +#: marketpress.php:738 +msgid "Multiple Downloads" +msgstr "Téléchargements Multiples" + +#: includes/public/class-mp-checkout.php:715 +msgid "Invalid Zip Code" +msgstr "Code Postal Invalide" + +#: includes/common/template-functions.php:2126 +msgid "Guest Email" +msgstr "Courriel Invité" + +#: includes/common/payment-gateways/simplify.php:195 +msgid "There was a problem finalizing your purchase. Please re-enter your credit card information and try again" +msgstr "Un problème est survenu lors de la finalisation de votre achat. S'il vous plaît, resaisissez vos informations de carte de paiement et réessayez" + +#: includes/common/class-mp-cart.php:565 includes/common/class-mp-order.php:600 +#: includes/common/helpers.php:111 +msgid "Download %1$s" +msgstr "Télécharger %1$s" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:331 +msgid "Export products to file" +msgstr "Exporter des produits vers le fichier" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:328 +msgid "The import process uses the WordPress importer plugin." +msgstr "Le processus d'import utilise l'extension d'import WordPress." + +#: includes/admin/store-settings/class-mp-store-settings-import.php:326 +msgid "Import / Export Products" +msgstr "Importer/Exporter des Produits" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:325 +msgid "Export settings to file" +msgstr "Exporter les paramètres vers le fichier" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:324 +msgid "Import configuration" +msgstr "Importer la configuration" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:320 +msgid "Use the text below to export to a new installation. Or paste in the new configuration to import." +msgstr "Utilisez le texte ci-dessous pour exporter vers une nouvelle installation. Ou coller dans la nouvelle configuration à importer." + +#: includes/admin/store-settings/class-mp-store-settings-import.php:318 +msgid "Import / Export Settings" +msgstr "Importer/Exporter les Paramètres" + +#. translators: URL to wp-admin/import.php +#: includes/admin/store-settings/class-mp-store-settings-import.php:266 +msgid "This importer is not installed. Please install importers from the main site." +msgstr "Cet importateur est pas installé. S'il vous plaît installer les importateurs depuis le site principal ." + +#: includes/admin/store-settings/class-mp-store-settings-import.php:261 +msgid "Install Now" +msgstr "Installer Maintenant" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:260 +msgid "Install %s" +msgstr "Installer %s" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:240 +msgid "Run Importer" +msgstr "Exécuter l'Importateur" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:239 +msgid "Run %s" +msgstr "Exécuter %s" + +#: includes/admin/class-mp-store-settings-admin.php:258 +msgid "Import/Export" +msgstr "Importer / Exporter" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1199 +msgid "Requires Login" +msgstr "Nécessite la Connexion" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:737 +msgid "Optionally limit the user to some categories" +msgstr "Optionellement limiter l’utilisateur à certaines catégories" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:671 +msgid "Should this coupon only be available to logged in users?" +msgstr "Ce coupon ne devrait-il être disponible que pour les utilisateurs connectés ?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:670 +msgid "Require Login" +msgstr "Nécessite de se connecter" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:655 +msgid "Mimimum number of products" +msgstr "Nombre minimum de produits" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:653 +msgid "Enter the minimum number of products in the cart that this coupon can be used." +msgstr "Entrez le nombre minimum de produits dans le panier où ce coupon peut être utilisé." + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:648 +msgid "Can this coupon be limited to a number of products in the cart?" +msgstr "Ce coupon peut-il être limité à un certain nombre de produits dans le panier ?" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:334 +msgid "Add all values" +msgstr "Ajouter toutes les valeurs" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:265 +msgid "Set as default variation." +msgstr "Définir comme variante par défaut." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:154 +msgid "Set Default" +msgstr "Définir par Défaut" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:150 +msgid "More Info" +msgstr "Plus d'informations" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:40 +msgid "MarketPress - Quick Setup" +msgstr "MarketPress - Configuration Rapide" + +#: includes/public/class-mp-checkout.php:1399 +msgid "Proceed to checkout and create an account at the end." +msgstr "Procéder à la commande et créer un compte utilisateur à la fin." + +#: includes/public/class-mp-checkout.php:1241 +#: includes/public/class-mp-checkout.php:1245 +msgid "Register account" +msgstr "Créer compte" + +#: includes/public/class-mp-checkout.php:1233 +msgid "Register as customer?" +msgstr "Register en tant que client ?" + +#: includes/public/class-mp-checkout.php:765 +msgid "

    Oops!

    Looks like you haven't added anything your cart. Let's go shopping!

    " +msgstr "

    Aïe!

    Il semble que rien n'est encore ajouté au panier. Voir produits.

    " + +#: includes/public/class-mp-checkout.php:763 +msgid "

    Oops!

    The cart is disabled.

    " +msgstr "

    Oups !

    Le panier est désactivé.

    " + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing Information" +msgstr "Informations de Facturation" + +#: includes/multisite/class-mp-admin-multisite.php:214 +msgid "Global Currency" +msgstr "Devise Globale" + +#: includes/multisite/class-mp-admin-multisite.php:198 +msgid "Global Store Currency" +msgstr "Devise de la Boutique Globale" + +#: includes/common/shipping-modules/mp-usps.php:507 +msgid "There are no shipping services available for this type of package in your location." +msgstr "Il n'y a aucun service de livraison disponible pour ce type de paquet dans votre localisation." + +#: includes/common/shipping-modules/mp-usps.php:168 +msgid "Using this USPS Shipping calculator requires requesting an Ecommerce API Username and Password. Get your free set of credentials here ». The password is no longer used for the API, just the username which you should enter below. The USPS test site has not yet been updated and currently doesn't work - you should just request activating your credentials with USPS and go live." +msgstr "L'utilisation de cette calculatrice d'expédition USPS nécessite la demande d'un nom d'utilisateur et d'un mot de passe pour l'API Ecommerce. Obtenez votre ensemble gratuit d'informations d'identification ici ». Le mot de passe n'est plus utilisé pour l'API, juste le nom d'utilisateur que vous devez entrer ci-dessous. Le site de test USPS n'a pas encore été mis à jour et ne fonctionne pas actuellement - vous devez simplement demander l'activation de vos informations d'identification avec USPS et passer en production (Live)." + +#: includes/common/payment-gateways/stripe.php:339 +msgid "ZIP Code" +msgstr "Code postal" + +#: includes/common/payment-gateways/stripe.php:334 +msgid "Last name" +msgstr "Nom" + +#: includes/common/payment-gateways/stripe.php:333 +msgid "First name" +msgstr "Prénom" + +#: includes/common/payment-gateways/manual-payments.php:150 +msgid "These are the manual payment instructions to display on the order confirmation screen. TOTAL will be replaced with the order total and ORDERID will be replaced with Order ID." +msgstr "Ce sont les instructions de paiement manuel à afficher sur l'écran de confirmation de commande. TOTAL sera remplacé par le total de la commande et ORDERID sera remplacé par ID de Commande." + +#: includes/common/payment-gateways/authorizenet-aim.php:240 +msgid "You must login to Authorize.net merchant dashboard to obtain the API login ID and API transaction key. Instructions »" +msgstr "Vous devez vous connecter au tableau de bord marchand de Authorize.net pour obtenir l'ID de connexion de l'API et la clé de transaction de l'API. Instructions »" + +#: includes/common/payment-gateways/2checkout.php:327 +msgid "
    1. Set the \"Return Method\" within Site Management to Header Redirect and set the \"Return URL\" to %s
    2. Set your notifications url to %s
    " +msgstr "
    1. Définir la \"méthode de retour\" dans l'Administration du site pour la Redirection d'En-tête (du header) et définissez \"URL de retour\" sur %s
    2. Définissez votre url de notifications à %s
    " + +#: includes/common/data.php:191 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Also, digital downloads included in your order are now ready to be downloaded. Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" +"Cher(e) CUSTOMERNAME,\n" +"Votre commande a été expédiée! De plus, les téléchargements numériques inclus dans votre commande sont maintenant prêts à être téléchargés. Selon la méthode d'expédition et votre emplacement, elle devrait arriver bientôt. Veuillez vous référer à votre numéro de commande (ORDERID) chaque fois que vous nous contactez. Merci.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +"Informations de Commande :\n" +" ORDERINFO\n" +"\n" +"Informations de Livraison :\n" +" SHIPPINGINFO\n" +"\n" +"Informations de Paiement :\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"Vous pouvez suivre le dernier statut de votre commande ici : TRACKINGURL\n" +"\n" +"Encore Merci beaucoup !" + +#: includes/common/data.php:185 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order is now available to download! Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" +"Cher(e) CUSTOMERNAME,\n" +"Votre commande est maintenant disponible au téléchargement! Veuillez vous référer à votre numéro de commande (ORDERID) chaque fois que vous nous contactez. Merci.\n" +"\n" +"Voici une confirmation des détails de votre commande :\n" +"\n" +"Informations de Commande :\n" +" ORDERINFO\n" +"\n" +" Informations de Paiement:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"Vous pouvez suivre le dernier statut de votre commande ici : TRACKINGURL\n" +"\n" +"Encore Merci Beaucoup !" + +#: includes/common/data.php:184 +msgid "Your Order Is Ready To Be Downloaded! (ORDERID)" +msgstr "Votre commande est prête à être téléchargée ! (ORDERID)" + +#: includes/common/data.php:179 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" +"Cher(e) CUSTOMERNAME,\n" +"Votre commande a été expédiée ! Selon la méthode d'expédition et votre emplacement, elle devrait arriver bientôt. Veuillez vous référer à votre numéro de commande (ORDERID) chaque fois que vous nous contactez. Merci.\n" +"\n" +"Voici une confirmation des détails de votre commande :\n" +"\n" +"Informations de Commande :\n" +" ORDERINFO\n" +"\n" +" Informations de Livraison :\n" +" SHIPPINGINFO\n" +"\n" +"Informations de Paiement :\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"Vous pouvez suivre le dernier état de votre commande ici : TRACKINGURL\n" +"\n" +"Encore Merci Beaucoup !" + +#: includes/common/data.php:173 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received, your digital goods are ready to be downloaded and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" +"Merci beaucoup pour votre commande CUSTOMERNAME !\n" +"\n" +"Votre commande a été reçue, vos produits numériques sont prêts à être téléchargés et tous les articles à expédier seront traités dès que possible. Veuillez vous référer à votre numéro de commande (ORDERID) chaque fois que vous nous contactez. Merci.\n" +"\n" +"Voici une confirmation des détails de votre commande :\n" +"\n" +"Informations de Commande :\n" +" ORDERINFO\n" +"\n" +" Informations de Livraison :\n" +" SHIPPINGINFO\n" +"\n" +"Informations de Paiement:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"Vous pouvez suivre le dernier statut de votre commande ici : TRACKINGURL\n" +"\n" +"Encore Merci Beaucoup !" + +#: includes/common/data.php:167 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received and your digital goods are ready to be downloaded. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" +"Merci beaucoup pour votre commande CUSTOMERNAME !\n" +"\n" +"Votre commande a été reçue et vos produits numériques sont prêts à être téléchargés. Veuillez vous référer à votre numéro de commande (ORDERID) chaque fois que vous nous contactez. Merci\n" +"\n" +"Voici une confirmation des détails de votre commande :\n" +"\n" +" Informations de Commande:\n" +" ORDERINFO\n" +"\n" +" Informations de Paiement:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"Vous pouvez suivre le dernier état de votre commande ici : TRACKINGURL\n" +"\n" +"Encore Merci Beaucoup !" + +#: includes/common/data.php:160 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +" Your order has been received, and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information: \n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" +"Merci beaucoup pour votre commande CUSTOMERNAME !\n" +"\n" +"Votre commande a bien été reçue et tous les articles à expédier seront traités dans les plus brefs délais. Veuillez vous référer à votre numéro de commande (ORDERID) chaque fois que vous nous contactez. Merci.\n" +"\n" +"Voici une confirmation des détails de votre commande :\n" +"\n" +" Informations de Commande :\n" +" ORDERINFO\n" +"\n" +" Informations de Livraison-Expédition :\n" +" SHIPPINGINFO\n" +"\n" +"Informations de Paiement :\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"\n" +"Vous pouvez suivre le dernier statut de votre commande ici: TRACKINGURL\n" +"\n" +"Encore Merci Beaucoup !" + +#: includes/common/class-mp-product.php:638 +msgid "You can not add more items to cart." +msgstr "Vous ne pouvez pas ajouter plus d'articles au panier." + +#: includes/common/class-mp-product.php:635 +msgid "You can only add {0} to cart." +msgstr "Vous pouvez ajouter seulement {0} au panier." + +#: includes/common/class-mp-product.php:625 +msgid "This product has an order limit of %d." +msgstr "Ce produit a une limite de commande de %d." + +#: includes/common/class-mp-order.php:1454 +msgid "Shipped: tracking code: %s" +msgstr "Expédié: code de suivi: %s" + +#: includes/common/class-mp-order.php:1000 +#: includes/common/class-mp-order.php:1012 +msgid "Finished" +msgstr "Terminé" + +#: includes/common/class-mp-order.php:858 +msgid "Contact Details" +msgstr "Coordonnées" + +#: includes/common/class-mp-order.php:339 includes/common/data.php:155 +msgid "" +"A new order (ORDERID) was created in your store:\n" +"\n" +" ORDERINFOSKU\n" +"\n" +" SHIPPINGINFO\n" +"\n" +" PAYMENTINFO\n" +"\n" +msgstr "" +"Une nouvelle commande (ORDERID) vient d'être créé dans votre boutique:\n" +"\n" +" ORDERINFOSKU\n" +"\n" +" SHIPPINGINFO\n" +"\n" +" PAYMENTINFO\n" +"\n" + +#: includes/common/class-mp-cart.php:1858 +msgid "Add again" +msgstr "Ajouter une nouvelle fois" + +#: includes/common/class-mp-cart.php:1852 +msgid "was removed from Shopping Cart" +msgstr "a été ont été) supprimé(s) du Panier" + +#: includes/common/class-mp-cart.php:1242 +#: includes/public/class-mp-short-codes.php:160 +msgid "Cart update notice: this item has a limit per order or you have reached the stock limit." +msgstr "Avis de mise à jour du panier: cet article a une limite par commande ou vous avez atteint la limite de stock." + +#: includes/admin/widgets/product-list.php:235 +msgid "Show Only Featured Products" +msgstr "Voir uniquement les produits mis en avant" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:533 +msgid "If enabled, users won't be able to filter products per category and/or to order by release date/name/price." +msgstr "Si cette option est activée, les utilisateurs ne seront pas en mesure de filtrer les produits par catégorie et/ou de commander par date de parution/nom /prix." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:531 +msgid "Hide Products Filter?" +msgstr "Cacher le Filtre de Produits ?" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:353 +msgid "Notification to registration email instead of billing email?" +msgstr "Notification à l'adresse email d'inscription au lieu de l'email de facturation ?" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:322 +msgid "Order Shipped - Mixed orders (with both digital and physical products)" +msgstr "Commande Expédiée - Commandes mixtes (avec des produits physiques et numériques)" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:289 +msgid "Order Shipped - Digital downloads only orders" +msgstr "Commande Expédiée - Commandes de téléchargements numériques uniquement" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:224 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "Ces codes seront remplacés par les détails de la commande: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. Aucun HTML n'est autorisé." + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:194 +msgid "New Order - Mixed" +msgstr "Nouvelle Commande - Mixte" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:161 +msgid "New Order - Digital downloads only orders" +msgstr "Nouvelle Commande - Commandes de téléchargements numériques uniquement" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:115 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:243 +msgid "Mixed orders" +msgstr "Commandes Mixtes" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:110 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:238 +msgid "Digital downloads orders" +msgstr "Commande de Téléchargements Numériques" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:105 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:233 +msgid "Physical orders" +msgstr "Commandes Physiques" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:96 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed.
    For orders placed with manual payment, emails set here will be overriden by the one configured in manual payments settings, under payments settings page" +msgstr "Ces codes seront remplacés par les détails de la commande: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. Pas de code HTML autorisé.
    Pour les commandes effectuées avec un paiement manuel, les e-mails définis ici seront annulés par celui configuré dans les paramètres de paiements manuels, sous la page Paramètres de Paiement" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:89 +msgid "Customer Notification Settings" +msgstr "Paramètres de Notification Client" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:47 +msgid "Admin Notification Settings" +msgstr "Paramètres de Notification d'Administration" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:566 +msgid "Only contact details" +msgstr "Seulement les coordonnées de contact" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:565 +msgid "Full billing info" +msgstr "Toutes les informations de facturation" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:561 +msgid "Details Collection" +msgstr "Collecte des Détails" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:548 +msgid "Digital Settings" +msgstr "Paramètres de Téléchargement Numérique" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:515 +msgid "Apply Tax to Digital Products?" +msgstr "Appliquer la Taxe(s) sur les Produits Téléchargeables?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:236 +msgid "product (default)" +msgstr "produit (par défaut)" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:231 +msgid "If you are experiencing conflicts with other e-commerce plugins change this setting. This will change the internal post type of all your products. Please note that changing this option may break 3rd party themes or plugins." +msgstr "Si vous rencontrez des conflits avec d’autres plugins de commerce électronique, modifiez ce paramètre. Cela changera le type de publication interne de tous vos produits. Veuillez noter que changer cette option peut casser des thèmes ou des plugins de parties tierces." + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1203 +msgid "Hide details" +msgstr "Masquer les détails" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1202 +msgid "Show all changes" +msgstr "Afficher tous les changements" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1184 +msgid "Version %s" +msgstr "Version %s" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1161 +msgid "Current" +msgstr "Actuel" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1131 +msgid "%s changelog" +msgstr "%s changelog" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:952 +msgid "We did not find any data for this plugin or theme..." +msgstr "Nous n'avons trouvé aucune donnée pour cette extension ou thème..." + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:285 +msgid "Activate WPMU DEV Dashboard" +msgstr "Activer le Tableau de bord WPMU DEV" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:279 +msgid "Just one more step - activate the WPMU DEV Dashboard plugin and you're all done!" +msgstr "Plus qu'une étape - activez l'extension Tableau de bord WPMU DEV et vous êtes prêt!" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:277 +msgid "Important updates are available for your WPMU DEV plugins/themes. Activate the WPMU DEV Dashboard to update now!" +msgstr "Des mises à jour importantes sont disponibles pour vos plugins / thèmes WPMU DEV. Activez le WPMU DEV Dashboard pour mettre à jour maintenant !" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:273 +msgid "Just one more step to enable updates and support for %s!" +msgstr "Juste une étape supplémentaire pour activer les mises à jour et le support pour %s!" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:271 +msgid "Important updates are available for %s. Activate the WPMU DEV Dashboard to update now!" +msgstr "Des mises à jour importantes sont disponibles pour %s. Activez le WPMU DEV Dashboard pour mettre à jour maintenant !" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:264 +msgid "activate" +msgstr "activer" + +#: includes/admin/class-mp-admin.php:398 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:248 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:289 +msgid "Dismiss" +msgstr "Rejeter" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:247 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:288 +msgid "Saving..." +msgstr "Sauvegarde en cours..." + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:244 +msgid "Install Plugin" +msgstr "Installer l'Extension" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:238 +msgid "Almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "Presque prêt - installez le plugin WPMU DEV Dashboard gratuit pour les mises à jour et le support !" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:236 +msgid "Important updates are available for your WPMU DEV plugins/themes. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "Des mises à jour importantes sont disponibles pour vos plugins / thèmes WPMU DEV. Installez le plugin WPMU DEV Dashboard gratuit maintenant pour les mises à jour et le soutien !" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:232 +msgid "%s is almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "%s est presque prêt - installez le plugin WPMU DEV Dashboard gratuit pour les mises à jour et le support !" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:230 +msgid "Important updates are available for %s. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "Des mises à jour sont disponibles pour %s. Installer l'extension Tableau de bord WPMU DEV pour les mises à jour et le support!" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:223 +msgid "install" +msgstr "installer" + +#: includes/admin/class-mp-shortcode-builder.php:1428 +msgid "Sets the number of Tags to display. This causes the SQL LIMIT value to be defined." +msgstr "Définit le nombre de Tags à afficher. Cela provoque la définition de la valeur SQL LIMIT." + +#: includes/admin/class-mp-shortcode-builder.php:1289 +msgid "How many products to display in the product list if \"paginate\" is set to false." +msgstr "Combien de produits à afficher dans la liste de produits si « paginate » est définie sur \"false\"." + +#: includes/admin/class-mp-shortcode-builder.php:739 +#: includes/admin/class-mp-shortcode-builder.php:906 +#: includes/admin/class-mp-shortcode-builder.php:1350 +msgid "Grid" +msgstr "Grille" + +#: includes/admin/class-mp-shortcode-builder.php:735 +#: includes/admin/class-mp-shortcode-builder.php:902 +#: includes/admin/class-mp-shortcode-builder.php:1346 +msgid "Products will be displayed as list or grid." +msgstr "Les produits seront affichés sous forme de liste ou de grille." + +#: includes/admin/class-mp-shortcode-builder.php:206 +msgid "Display a cloud or list of your global product tags." +msgstr "Affichez un nuage ou une liste de vos étiquettes(mots-clés) globales de produits." + +#: includes/admin/class-mp-shortcode-builder.php:205 +msgid "Display a list of your global categories." +msgstr "Afficher une liste de vos catégories globales." + +#: includes/admin/class-mp-shortcode-builder.php:204 +msgid "Display a list or grid of your global products." +msgstr "Affichez une liste ou une grille de vos produits globaux." + +#: includes/admin/class-mp-shortcode-builder.php:181 +msgid "Display a list of featured products." +msgstr "Afficher une liste des produits en vedette." + +#: includes/admin/class-mp-products-admin.php:1451 +msgid "Is Featured?" +msgstr "Est-il en Vedette ?" + +#: includes/admin/class-mp-products-admin.php:1444 +msgid "Featured Product" +msgstr "Produit à la une" + +#: includes/admin/class-mp-products-admin.php:581 +#: includes/admin/class-mp-products-admin.php:1580 +msgid "% discount" +msgstr "% Remise" + +#: includes/admin/class-mp-products-admin.php:579 +msgid "OR" +msgstr "OU" + +#: includes/admin/class-mp-products-admin.php:460 +#: includes/admin/class-mp-products-admin.php:586 +#: includes/admin/widgets/product-list.php:217 +msgid "Featured" +msgstr "En vedette" + +#: includes/admin/class-mp-orders-admin.php:536 +#: includes/admin/class-mp-orders-admin.php:538 +msgid "Tracking Link" +msgstr "Lien de Suivi" + +#: includes/admin/class-mp-orders-admin.php:508 +msgid "Shipping Tax" +msgstr "TVA livraison" + +#: includes/admin/class-mp-orders-admin.php:356 +msgid "Shipping Total" +msgstr "Total des frais de livraison" + +#: includes/admin/class-mp-orders-admin.php:352 +msgid "Taxes Total" +msgstr "Total Taxes" + +#: includes/admin/class-mp-orders-admin.php:349 +msgid "Products Total" +msgstr "Total Produits" + +#: includes/admin/class-mp-ajax.php:366 +msgid "Oops! You entered an invalid username/email and or password." +msgstr "Oops! Vous avez entré un mot de passe, un email ou un nom d'utilisateur invalide." + +#: includes/admin/class-mp-ajax.php:254 +msgid "Percentage Discount" +msgstr "Remise en pourcentage" + +#: includes/admin/class-mp-ajax.php:234 +msgid "Limit the Amount of Items per Order" +msgstr "Limiter le nombre d’articles par commande" + +#: includes/admin/class-mp-ajax.php:214 +msgid "Unused Attributes" +msgstr "Attributs Inutilisés" + +#: includes/admin/class-mp-admin.php:82 +msgid "Run setup wizard" +msgstr "Exécuter l'assistant d'installation" + +#: includes/admin/class-mp-admin.php:79 +msgid "MarketPress setup is not complete! Once you've completed this quick setup wizard you'll have a fully working online store - exciting! " +msgstr "La configuration de MarketPress n'est pas complète ! Une fois que vous aurez terminé avec cet assistant d'installation rapide, vous aurez une boutique en ligne entièrement fonctionnelle - Terrible " + +#: marketpress.php:263 +msgctxt "mp_order" +msgid "Add New" +msgstr "Ajouter" + +#: marketpress.php:184 +msgctxt "product_tag" +msgid "Product Tag" +msgstr "Étiquette Produit" + +#: marketpress.php:183 +msgctxt "product_tag" +msgid "Product Tags" +msgstr "Mots-clés des services" + +#: marketpress.php:150 +msgctxt "product_category" +msgid "Product Category" +msgstr "Catégorie du Produit" + +#: marketpress.php:149 +msgctxt "product_category" +msgid "Product Categories" +msgstr "Catégories de produits" + +#. Author URI of the plugin/theme +msgid "http://premium.wpmudev.org" +msgstr "http://premium.wpmudev.org" + +#: marketpress.php:729 +msgid "Invoice PDF" +msgstr "Facture en PDF" + +#: marketpress.php:712 +msgid "Grant access to themes and gateways depending on the user's Pro Site level" +msgstr "Accorder l'accès aux thèmes et plateformes en fonction du niveau utilisateur Pro Site" + +#: marketpress.php:711 +msgid "Pro Sites" +msgstr "Pro Sites" + +#: marketpress.php:703 +msgid "Offer and accept coupon codes" +msgstr "Offrir et accepter des codes de coupon" + +#. translators: %s: plugin title +#: marketpress.php:687 +msgid "Install %s Pages" +msgstr "Installer %s pages" + +#. translators: %s: plugin title +#: marketpress.php:682 +msgid "Welcome to %s – Install pages required by the plugin automatically." +msgstr "Bienvenue à %s – Installez les pages requises automatiquement." + +#: marketpress.php:668 +msgid "Your pages were created successfully." +msgstr "Vos pages ont été créées avec succès." + +#: marketpress.php:436 +msgid "Add a Product" +msgstr "Ajouter un produit" + +#: marketpress.php:271 +msgid "Parent Order" +msgstr "Commande parente" + +#: marketpress.php:270 +msgid "No orders found in trash" +msgstr "Aucune commande n'a été trouvée dans la corbeille" + +#: marketpress.php:269 +msgid "No orders found" +msgstr "Aucune commande trouvée" + +#: marketpress.php:265 +msgid "Edit Order" +msgstr "Editer la commande" + +#: marketpress.php:264 +msgid "Add New Order" +msgstr "Ajouter une nouvelle commande" + +#: marketpress.php:220 marketpress.php:221 +msgid "Add New Product" +msgstr "Ajouter un nouveau Produit" + +#: marketpress.php:197 +msgid "No product tags found" +msgstr "Aucune étiquette/tag n'a été trouvée" + +#: marketpress.php:196 +msgid "Choose from the most used product tags" +msgstr "Choisir parmi les étiquettes/tags les plus utilisées" + +#: marketpress.php:195 +msgid "Add or remove product tags" +msgstr "Ajouter ou supprimer des étiquettes/tags produit" + +#: marketpress.php:194 +msgid "Separate product tags with commas" +msgstr "Séparer les étiquettes/tags par des virgules" + +#: marketpress.php:193 +msgid "Search Product Tags" +msgstr "Rechercher dans les étiquettes/tags produit" + +#: marketpress.php:192 +msgid "Parent Product Tag:" +msgstr "Étiquette/tag produit parent :" + +#: marketpress.php:191 +msgid "Parent Product Tag" +msgstr "Étiquette/tag produit parent" + +#: marketpress.php:190 +msgid "New Product Tag Name" +msgstr "Nom de la nouvelle étiquette/nouveau tag" + +#: marketpress.php:189 +msgid "Add New Product Tag" +msgstr "Ajouter une nouvelle étiquette/nouveau tag produit" + +#: marketpress.php:188 +msgid "Update Product Tag" +msgstr "Mettre à jour l'étiquette/tag du produit" + +#: marketpress.php:187 +msgid "View Product Tag" +msgstr "Afficher l'étiquette/tag du produit" + +#: marketpress.php:186 +msgid "Edit Product Tag" +msgstr "Editer l'étiquette/tag du produit" + +#: marketpress.php:185 +msgid "All Product Tags" +msgstr "Toutes les étiquettes/tags produit" + +#: marketpress.php:163 +msgid "No product categories found" +msgstr "Aucune catégorie produit n'a été trouvée" + +#: marketpress.php:162 +msgid "Choose from the most used product categories" +msgstr "Choisir parmi les catégories produit les plus utilisées" + +#: marketpress.php:161 +msgid "Add or remove product categories" +msgstr "Ajouter ou supprimer des catégories de produit" + +#: marketpress.php:160 +msgid "Separate product categories with commas" +msgstr "Séparer les catégories de produit par des virgules" + +#: marketpress.php:159 +msgid "Search Product Categories" +msgstr "Rechercher dans les catégories de produit" + +#: marketpress.php:158 +msgid "Parent Product Category:" +msgstr "Catégorie produit Parente :" + +#: marketpress.php:157 +msgid "Parent Product Category" +msgstr "Catégorie produit Parente" + +#: marketpress.php:156 +msgid "New Product Category Name" +msgstr "Nouveau nom de catégorie de produit" + +#: marketpress.php:155 +msgid "Add New Product Category" +msgstr "Ajouter une Nouvelle Catégorie de Produit" + +#: marketpress.php:154 +msgid "Update Product Category" +msgstr "Mettre à jour la catégorie de produit" + +#: marketpress.php:153 +msgid "View Product Category" +msgstr "Afficher la catégorie de produit" + +#: marketpress.php:152 +msgid "Edit Product Category" +msgstr "Editer la catégorie de produit" + +#: marketpress.php:151 +msgid "All Product Categories" +msgstr "Toutes les catégories de produit" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Please fix the %s1 and then try submitting the form again." +msgstr "Merci de corriger %s1 puis réessayer de valider le formulaire." + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Oops! The form contains %s1 which %s2 been highlighted below." +msgstr "Oups ! Le formulaire contient %s1 qui %s2 a été mis en surbrillance ci-dessous." + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:660 +msgid "have" +msgstr "ont" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:659 +msgid "has" +msgstr "a" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:651 +msgid "Value must be less than {0}" +msgstr "La valeur doit être inférieure que {0}" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:650 +msgid "Please enter only letters and numbers" +msgstr "Merci d'entrer seulement des lettres et des nombres" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:539 +msgid "Due to prolonged inactivity on this page, one or more settings were not saved. Please try again." +msgstr "A cause d'une inactivité prolongée sur cette page, un ou plusieurs paramètres n'ont pas été sauvegardés. Merci de réessayer." + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:535 +msgid "Settings Saved" +msgstr "Paramètres sauvegardés" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-user-select.php:22 +msgid "Select Some Users" +msgstr "Sélectionner des utilisateurs" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-section.php:18 +msgid "Section Title" +msgstr "Section Titre" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:425 +msgid "Are you sure you want to delete this?" +msgstr "Êtes-vous sûrs de vouloir supprimer cela ?" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:30 +msgid "Add Row" +msgstr "Ajouter une rangée" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-post-select.php:24 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-taxonomy-select.php:22 +msgid "Select Posts" +msgstr "Sélectionner des publications" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:210 +msgid "Add Images" +msgstr "Ajouter des images" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:129 +msgid "Select the image that you would like to use for this product." +msgstr "Sélectionner l'image que vous désirez utiliser pour ce produit." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:93 +msgid "Select image(s) that you would like to use for this product." +msgstr "Sélection l(es) image(s) que vous désirez utiliser pour ce produit." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:79 +msgid "Select the image that you would like to use for this variation." +msgstr "Sélectionner l'image que vous désirez utiliser pour cette variation." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:48 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:82 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:68 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:132 +msgid "Select Image" +msgstr "Sélectionner l'image" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:31 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:160 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:168 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:19 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:115 +msgid "Select File" +msgstr "Sélectionner le fichier" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:30 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:18 +msgid "Select the file that you would like to use." +msgstr "Sélectionner le fichier que vous désirez utiliser." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:357 +msgid "Create Variations" +msgstr "Créer des Variations" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:356 +msgid "Add Another Variant" +msgstr "Ajouter une autre Variante" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Insert a value and press ENTER" +msgstr "Insérer une valeur et appuyer sur Entrer" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "(e.g. White, Grey, Red etc.)" +msgstr "(exemple Blanc, Gris, Rouge, etc.)" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Variation Values" +msgstr "Valeurs de variation" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:333 +msgid "Or create new variation" +msgstr "Ou créer une nouvelle variation" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "(e.g. Color)" +msgstr "(exemple Couleur)" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:303 +msgid "You are about to delete selected variants.
    If you want to continue please confirm." +msgstr "Vous êtes en train de supprimer les variantes sélectionnées.
    Si vous voulez continuer merci de confirmer." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:302 +msgid "Confirmation" +msgstr "Confirmation" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:290 +msgid "Insert quantity available. Empty for unlimited." +msgstr "Insérer la quantité disponible. Laisser vide pour une quantité illimitée." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:281 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:294 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:307 +msgid "Cancel" +msgstr "Suppression" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:280 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:293 +msgid "Update" +msgstr "Mise à jour" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:277 +msgid "Insert the price i.e. 25 or 25.50" +msgstr "Insérer le prix, par exemple 25 ou 25,50" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:115 +msgid "Img." +msgstr "Img." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:85 +msgid "Add New Variation" +msgstr "Ajouter Une Nouvelle Variante" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:79 +msgid "Delete Variants" +msgstr "Supprimer des Variantes" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:78 +msgid "Update Prices" +msgstr "Mise à jour des prix" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:77 +msgid "Update Inventory" +msgstr "Mise à jour de l'inventaire" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:76 +msgid "Update Images" +msgstr "Mise à jour des images" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:75 +msgid "Bulk Actions" +msgstr "Actions groupées" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:73 +msgid "Select bulk action" +msgstr "Sélectionnez l'action groupée" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:196 +msgid "Configure Store" +msgstr "Configurer la boutique" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:195 +msgid "Configure shipping rates, emails and your store's appearance. " +msgstr "Configurez les tarifs d'expédition, les emails et l'apparence de votre boutique " + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:190 +msgid "Add Product" +msgstr "Ajout de produits" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:189 +msgid "Add your first product for sale and get familiar with adding products." +msgstr "Ajoutez votre premier produit à vendre et pour vous familiariser avec l'ajout de produits." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:184 +msgid "Your store is almost ready for its first customers, but first it needs some products. Get started by adding products below, or jump straight into further configuring your store’s settings." +msgstr "Votre boutique est presque prête pour ses premiers clients mais d'abord, il lui faut certains produits. Commencez par l'ajout de produits ci-dessous, ou passez directement dans davantage de configuration des paramètres pour votre boutique." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:183 +msgid "Woohoo! Your online store is up and running." +msgstr "Woohoo ! Votre boutique en ligne est opérationnelle." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:160 +msgid "Finish Setup" +msgstr "Finir l'installation" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:124 +msgid "And what metric system do you want to use?" +msgstr "Et quel système métrique voulez-vous utiliser ?" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:113 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:142 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:159 +msgid "Back" +msgstr "Retour" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:109 +msgid "Do you want to apply tax for your products? You can customize this for each product and variation." +msgstr "Voulez-vous appliquer la taxe pour vos produits ? Vous pouvez personnaliser ceci pour chaque produit et variation." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:105 +msgid "What currency do you want to sell with?" +msgstr "Quelle devise voulez-vous utiliser pour vos ventes ?" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:93 +msgid "And, which countries do you want to sell to?" +msgstr "Et à destination de quels pays voulez-vous vendre ?" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:89 +msgid "Where is your online store based?" +msgstr "Où est basé votre boutique en ligne ?" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:80 +msgid "Payment Gateway" +msgstr "Passerelle de Paiement" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:79 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:123 +msgid "Metric System" +msgstr "Système métrique" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:78 +msgid "Currency & Tax" +msgstr "Devise et taxe" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:77 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:88 +msgid "Locations" +msgstr "Localisations" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:70 +msgid "Choose where you want to sell your stuff and what currency. Easy!" +msgstr "Choisissez où vous voulez vendre vos produits et avec quelle devise. Facile !" + +#: includes/public/class-mp-checkout.php:1400 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:58 +msgid "Continue" +msgstr "Continuer" + +#: includes/admin/class-mp-admin.php:83 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:53 +msgid "Skip this step, I'll do this manually" +msgstr "Passez cette étape, je le ferai manuellement" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:49 +msgid "Install store pages" +msgstr "Installer les pages de la boutique" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:44 +msgid "Once you've completed this quick setup wizard you'll have a fully working online store - exciting! Start
    by creating the default store pages for the online store such as the cart, checkout and store pages." +msgstr "Une fois que vous aurez terminé cet assistant d'installation rapide, vous aurez une boutique en ligne pleinement fonctionnelle - excitant ! Commencez
    par créer les pages de la boutique par défaut pour la boutique en ligne, telles que le panier, la confirmation de commande et les pages de la boutique." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:42 +msgid "MarketPress adds a full online store to your website, with heaps of configuration options and addons
    to suit your needs. It's really easy to get going, and only takes a few minutes to setup!" +msgstr "MarketPress ajoute une boutique en ligne complète à votre site web, avec des tas d'options de configuration et d'extensions
    pour coller à vos besoins. C'est vraiment facile à utiliser, et cela prend à peine quelques minutes à installer !" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:41 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:69 +msgid "Welcome to MarketPress - Quick Setup" +msgstr "Bienvenue dans MarketPress - Installation Rapide" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-advanced-select.php:23 +msgid "Select Some Options" +msgstr "Sélectionnez quelques options" + +#: includes/wpmudev-metaboxes/class-wpmudev-field.php:694 +msgid "You must the WPMUDEV_Field::display() method in your form field class" +msgstr "Vous devez la méthode WPMUDEV_Field::display() dans votre classe de champ de formulaire" + +#: includes/public/class-mp-short-codes.php:636 +msgid "Only %s left in stock..." +msgstr "Il ne reste que %s en stock..." + +#: includes/public/class-mp-short-codes.php:633 +msgid "Unlimited stock" +msgstr "Stock illimité" + +#: includes/public/class-mp-short-codes.php:430 +msgid "product_id must be defined" +msgstr "product_id doit être défini" + +#: includes/public/class-mp-checkout.php:1250 +msgid "An account with this username already exists" +msgstr "Un compte avec ce nom d'utilisateur existe déjà" + +#: includes/public/class-mp-checkout.php:1394 +msgid "Continue as Guest" +msgstr "Continuer en tant qu'invité" + +#: includes/public/class-mp-checkout.php:1393 +msgid "Proceed to checkout and you'll have an opportunity to create an account at the end." +msgstr "Passez à la caisse et vous aurez l'occasion de créer un compte à la fin." + +#: includes/public/class-mp-checkout.php:1392 +#: includes/public/class-mp-checkout.php:1398 +msgid "First-time customer?" +msgstr "Client pour la première fois ?" + +#: includes/public/class-mp-checkout.php:1386 +msgid "Login" +msgstr "S'identifier" + +#: includes/public/class-mp-checkout.php:1379 +msgid "E-Mail Address/Username" +msgstr "Adresse e-mail / nom d'utilisateur" + +#: includes/public/class-mp-checkout.php:1377 +msgid "Sign in to speed up the checkout process." +msgstr "Connectez-vous pour accélérer le processus de paiement." + +#: includes/public/class-mp-checkout.php:1376 +msgid "Have an account?" +msgstr "Déjà un compte ?" + +#: includes/public/class-mp-checkout.php:1297 +msgid "Shipping address different than billing?" +msgstr "L'adresse de livraison différente de celle de facturation ?" + +#: includes/public/class-mp-checkout.php:1184 +msgid "There are no available gateways to process this payment." +msgstr "Il n'y a aucune plateforme de paiement disponible pour traiter ce paiement." + +#: includes/public/class-mp-checkout.php:1160 +msgid "Payment" +msgstr "Paiement" + +#: includes/public/class-mp-checkout.php:1123 +msgid "Oops! An error occurred while processing your payment." +msgstr "Oups ! Une erreur s'est produite durant la procédure de paiement." + +#: includes/public/class-mp-checkout.php:1051 +msgid "Next Step »" +msgstr "Prochaine étape »" + +#: includes/public/class-mp-checkout.php:1045 +msgid "« Previous Step" +msgstr "« Étape précédente" + +#: includes/public/class-mp-checkout.php:873 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:657 +msgid "error" +msgstr "erreur" + +#: includes/public/class-mp-checkout.php:872 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:658 +msgid "errors" +msgstr "erreurs" + +#: includes/public/class-mp-checkout.php:871 +msgid "

    Oops! We found %d %s in the form below.

    Fields that have errors are highlighted in red below. Entering into a field will reveal the actual error that occurred.

    " +msgstr "

    Oups ! Nous avons trouvé %d %s dans le formulaire ci-dessous.

    Les champs comportant des erreurs sont mis en surbrillance en rouge ci-dessous. Entrer dans un champ révélera l'erreur réelle qui s'est produite.

    " + +#: includes/public/class-mp-checkout.php:870 +msgid "Please enter a valid first and last name" +msgstr "S'il vous plaît entrer un prénom et un nom valides" + +#: includes/public/class-mp-checkout.php:869 +msgid " Please enter a valid card security code" +msgstr " Merci d'entrer un code de sécurité valide pour la carte" + +#: includes/public/class-mp-checkout.php:868 +msgid "Please enter a valid card expiration" +msgstr "Merci d'entrer une date d'expiration de carte valide" + +#: includes/public/class-mp-checkout.php:773 +msgid "Javascript is required in order to checkout. Please enable Javascript in your browser and then refresh this page." +msgstr "Javascript est requis afin de confirmer la commande. Merci d'activer Javascript sur votre navigateur et rafraîchissez cette page." + +#: includes/public/class-mp-checkout.php:588 +msgid "An unknown error occurred. Please try again." +msgstr "Une erreur inconnue s'est produite. Merci de réessayer." + +#: includes/public/class-mp-checkout.php:386 +msgid "Town/City" +msgstr "Ville" + +#: includes/public/class-mp-checkout.php:380 +msgid "Apartment, suite, unit, building, floor, etc" +msgstr "Appartement, immeuble, étage, etc" + +#: includes/public/class-mp-checkout.php:376 +msgid "Address Line 2" +msgstr "Adresse, ligne 2" + +#: includes/public/class-mp-checkout.php:363 +msgid "Address Line 1" +msgstr "Adresse, ligne 1" + +#: includes/common/class-mp-order.php:770 +#: includes/public/class-mp-checkout.php:354 +msgid "Company" +msgstr "Société" + +#: includes/public/class-mp-checkout.php:330 +msgid "Last" +msgstr "Nom de famille" + +#: includes/public/class-mp-checkout.php:321 +msgid "First" +msgstr "Prénom" + +#: includes/public/class-mp-checkout.php:284 +msgid "State/Province" +msgstr "Etat / Province" + +#: includes/public/class-mp-checkout.php:83 +msgid "Review Order/Payment" +msgstr "Récapitulatif Commande / Paiement" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing/Shipping Address" +msgstr "Adresse de Facturation / Livraison" + +#: includes/public/class-mp-checkout.php:80 +msgid "Login/Register" +msgstr "Connexion / Inscription" + +#: includes/multisite/class-mp-admin-multisite.php:530 +msgid "Marketplace" +msgstr "Marché en ligne" + +#: includes/multisite/class-mp-admin-multisite.php:523 +msgid "Global Marketplace Pages" +msgstr "Pages du Marché en ligne global" + +#: includes/multisite/class-mp-admin-multisite.php:478 +msgid "Store Network" +msgstr "Réseau de Boutiques" + +#: includes/multisite/class-mp-admin-multisite.php:478 +#: includes/multisite/class-mp-admin-multisite.php:494 +msgid "Store Network Settings" +msgstr "Paramètres du Réseau de Boutiques" + +#: includes/multisite/class-mp-admin-multisite.php:440 +msgid "Set theme access permissions for network stores. For a custom css theme, save your css file with the MarketPress Theme: NAME header in the /marketpress/ui/themes/ folder and it will appear in this list so you may select it." +msgstr "Paramétrez les permissions d'accès du thème pour les boutiques du réseau. Pour un thème avec css personnalisé, enregistrer votre fichier css avec l'en-tête MarketPress Theme : NOM dans le dossier /marketpress/ui/themes/ et il apparaîtra dans cette liste afin de pouvoir le sélectionner. " + +#: includes/multisite/class-mp-admin-multisite.php:361 +msgid "Choose a Gateway" +msgstr "Choisir une plateforme" + +#: includes/multisite/class-mp-admin-multisite.php:336 +msgid "%d products get indexed" +msgstr "%d de produits sont indexés" + +#: includes/multisite/class-mp-admin-multisite.php:285 +msgid "Product Indexer" +msgstr "Indexateur de produits" + +#: includes/multisite/class-mp-admin-multisite.php:281 +msgid "Please hold on..." +msgstr "Merci de patienter ..." + +#: includes/multisite/class-mp-admin-multisite.php:280 +msgid "Index Products" +msgstr "Indexer les produits" + +#: includes/multisite/class-mp-admin-multisite.php:279 +msgid "%d products have been indexed in whole network" +msgstr "%d de produits ont été indexés dans le réseau global" + +#: includes/multisite/class-mp-admin-multisite.php:182 +msgid "Enable Global Shopping Cart?" +msgstr "Activer le Panier Global ?" + +#: includes/multisite/class-mp-admin-multisite.php:178 +msgid "Limit Global Widgets/Shortcodes To Main Blog?" +msgstr "Restreindre les Widgets Globaux/Shortcodes au blog principal ?" + +#: includes/common/template-functions.php:2802 +#: includes/multisite/template-functions.php:355 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:97 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:114 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:143 +msgid "Next" +msgstr "Suivant" + +#: includes/common/template-functions.php:2801 +#: includes/multisite/template-functions.php:354 +msgid "Prev" +msgstr "Précédent" + +#: includes/common/template-functions.php:2597 +msgid "Tagged in " +msgstr "Étiquetté dans " + +#: includes/common/template-functions.php:2196 +#: includes/common/template-functions.php:2202 +#: includes/common/template-functions.php:2214 +#: includes/common/template-functions.php:2217 +msgid "Oops! We couldn't locate any orders matching that order number. Please verify the order number and try again." +msgstr "Oups ! Nous n'avons pas pu localiser aucune commande correspondant à votre numéro de commande. Merci de vérifier le numéro de commande et réessayez." + +#: includes/common/template-functions.php:2138 +msgid "Look Up" +msgstr "Recherchez" + +#: includes/common/template-functions.php:1423 +msgid "Please choose a shipping method" +msgstr "Veuillez choisir la méthode d'expédition" + +#: includes/common/template-functions.php:927 +msgid "If you have your order ID you can look it up using the form below." +msgstr "Si vous avez votre numéro (ID) de commande, vous pouvez la consulter en utilisant le formulaire ci-dessous." + +#: includes/common/template-functions.php:927 +msgid "Order Search" +msgstr "Recherche de commande" + +#: includes/common/template-functions.php:910 +#: includes/public/class-mp-checkout.php:1440 +msgid "Cart" +msgstr "Panier" + +#: includes/common/template-functions.php:895 +msgid "[mp_global_tag_cloud]" +msgstr "[mp_global_tag_cloud]" + +#: includes/common/template-functions.php:887 +msgid "[mp_global_categories_list]" +msgstr "[mp_global_categories_list]" + +#: includes/common/template-functions.php:880 +msgid "" +"Welcome to our market place!\n" +"\n" +"Check out our network of products:\n" +"\n" +"[mp_list_global_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_global_categories_list]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_global_tag_cloud]" +msgstr "" +"Bienvenue dans notre marché en ligne !\n" +"\n" +"Découvrez notre réseau de produits :\n" +"\n" +"[mp_list_global_products]\n" +"\n" +"Regardez par catégorie :\n" +"\n" +"[mp_global_categories_list]\n" +"\n" +"Regardez par étiquette/tag:\n" +"\n" +"[mp_global_tag_cloud]" + +#: includes/common/template-functions.php:879 +msgid "Global Store" +msgstr "Boutique globale" + +#: includes/common/template-functions.php:873 +msgid "" +"Welcome to our online store! Feel free to browse around:\n" +"\n" +"[mp_store_navigation]\n" +"\n" +"Check out our most popular products:\n" +"\n" +"[mp_popular_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_list_categories]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_tag_cloud]" +msgstr "" +"Bienvenue dans notre boutique en ligne! N'hésitez pas à faire du lèche-vitrine :\n" +"\n" +"[mp_store_navigation]\n" +"\n" +"Regardez nos produits les plus populaires :\n" +"\n" +"[mp_popular_products]\n" +"\n" +"Regardez par catégorie :\n" +"\n" +"[mp_list_categories]\n" +"\n" +"Regardez par étiquette/tag :\n" +"\n" +"[mp_tag_cloud]" + +#: includes/common/shipping-modules/mp-weight-rate.php:127 +msgid "If cart weight is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "Si le poids du panier est supérieur ou égal à cette valeur, les prix de cette rangée seront utilisés durant l'achat." + +#: includes/common/shipping-modules/mp-weight-rate.php:126 +msgid "Cart Weight" +msgstr "Poids du panier" + +#: includes/common/shipping-modules/mp-usps.php:222 +msgid "Offered International Services" +msgstr "Services internationaux offerts" + +#: includes/common/shipping-modules/mp-usps.php:206 +msgid "Offered Domestic Services" +msgstr "Services nationaux offerts" + +#: includes/common/shipping-modules/mp-usps.php:196 +msgid "Retail Rates" +msgstr "Tarifs au détail" + +#: includes/common/shipping-modules/mp-usps.php:195 +msgid "Online Rates" +msgstr "Tarifs en ligne" + +#: includes/common/shipping-modules/mp-usps.php:193 +msgid "Rates Request Type" +msgstr "Type de demande de tarif" + +#: includes/common/shipping-modules/mp-usps.php:189 +msgid "Maximum Weight Per Package" +msgstr "Poids maximum par paquet" + +#: includes/common/shipping-modules/mp-ups.php:195 +#: includes/common/shipping-modules/mp-usps.php:236 +msgid "Enter your standard box sizes as LengthxWidthxHeight (e.g. 12x8x6) For each box defined enter the maximum weight it can contain. Note: the shipping prices this plugin calculates are estimates. If they are consistently too low or too high, please check that the list of boxes above and the product weights are accurate and complete." +msgstr "Entrez les tailles standard de boîte sous la forme Longueur x Largeur x Hauteur (par exemple 12 x 8 x 6). Pour chaque boîte définie entrez le poids maximum qu'elle peut contenir. Note : les tarifs d'expédition calculés par ce plugin sont des estimations. S'ils sont régulièrement trop faibles ou trop élevés, vérifiez que la liste de boîtes ci-dessus et les poids du produit sont exacts et complets." + +#: includes/common/shipping-modules/mp-ups.php:187 +msgid "Handling Charge Per Box Shipped" +msgstr "Frais de prise en charge par boîte expédiée" + +#: includes/common/shipping-modules/mp-ups.php:176 +#: includes/common/shipping-modules/mp-ups.php:181 +msgid "Offered Services" +msgstr "Services offerts" + +#: includes/common/shipping-modules/mp-ups.php:165 +msgid "Shipper Number" +msgstr "Numéro d'expédition" + +#: includes/common/shipping-modules/mp-ups.php:151 +msgid "User ID" +msgstr "ID utilisateur" + +#: includes/common/shipping-modules/mp-ups.php:144 +msgid "Developer Kit Access Key" +msgstr "Clé d'accès du Kit de développeur" + +#: includes/common/shipping-modules/mp-ups.php:140 +msgid "Use Sandbox Mode?" +msgstr "Utiliser le mode Bac-à-sable ?" + +#: includes/common/shipping-modules/mp-ups.php:123 +msgid "In order to use UPS, you will need a UPS Developer Kit access key and the UPS user ID and password associated with the access key. Set these up for free here. If this information is missing or incorrect, an error will appear during the checkout process and the buyer will not be able to complete the transaction." +msgstr "Afin d'utiliser UPS, vous aurez besoin d'une clé d'accès du Kit Développeur et l'ID utilisateur UPS et le mot de passe associé avec la clé d'accès. Paramétrez-les gratuitement ici. Si ces informations sont manquantes ou incorrectes, une erreur apparaîtra durant la procédure d'achat et le vendeur ne pourra pas terminer sa transaction." + +#: includes/common/shipping-modules/mp-table-rate.php:112 +msgid "If cart total is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "Si le panier total est plus grand ou égal à cette valeur, alors les tarifs de cette rangée seront utilisés durant l'achat." + +#: includes/common/shipping-modules/mp-table-rate.php:111 +msgid "Cart Total" +msgstr "Total du Panier" + +#: includes/common/shipping-modules/mp-table-rate.php:95 +#: includes/common/shipping-modules/mp-weight-rate.php:111 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Don't worry about sorting as this will be done automatically upon saving." +msgstr "Assurez-vous d'entrer le prix d'expédition pour chaque option ou ces clients pourraient obtenir une expédition gratuite. Ne vous souciez pas du tri car cela se fera automatiquement lors de l'enregistrement." + +#: includes/common/shipping-modules/mp-pickup.php:170 +msgid "Method Title (visible for clients)" +msgstr "Titre de la méthode (visible aux clients)" + +#: includes/common/shipping-modules/mp-fedex.php:409 +#: includes/common/shipping-modules/mp-ups.php:216 +#: includes/common/shipping-modules/mp-usps.php:251 +msgid "Max Weight (%s)" +msgstr "Poids maximum (%s)" + +#: includes/common/shipping-modules/mp-fedex.php:402 +#: includes/common/shipping-modules/mp-ups.php:209 +#: includes/common/shipping-modules/mp-usps.php:247 +msgid "Size (%s)" +msgstr "Taille (%s)" + +#: includes/common/shipping-modules/mp-fedex.php:387 +msgid "Enter your standard box sizes as LengthxWidthxHeight ( 12x8x6 ) For each box defined enter the maximum weight it can contain. Total weight selects the box size used for calculating Shipping costs." +msgstr "Entrez les tailles standard de la boîte Longueur x Largeur x Hauteur (12 x 8 x 6). Pour chaque boîte définie, entrez le poids maximum qu'elle peut contenir. Poids total sélectionne la taille de la boîte utilisée pour le calcul des frais d'expédition." + +#: includes/common/shipping-modules/mp-fedex.php:361 +#: includes/common/shipping-modules/mp-usps.php:229 +msgid "Handling Charge per International Shipment" +msgstr "Frais de prise en charge pour une expéditions internationales" + +#: includes/common/shipping-modules/mp-fedex.php:353 +msgid "International Services" +msgstr "Services postaux internationaux" + +#: includes/common/shipping-modules/mp-fedex.php:339 +#: includes/common/shipping-modules/mp-usps.php:213 +msgid "Handling Charge per Domestic Shipment" +msgstr "Frais de prise en charge pour une expédition sur le territoire national" + +#: includes/common/shipping-modules/mp-fedex.php:331 +msgid "Domestic Services" +msgstr "Services postaux nationaux" + +#: includes/common/shipping-modules/mp-fedex.php:321 +msgid "When checked the customer can chose Residential or Commercial delivery with Residential the default. Unchecked it's only Residential rates." +msgstr "Une fois sélectionné, le client peut choisir la livraison résidentielle ou Commerciale comme choix par défaut. Non sélectionné, les tarifs sont uniquement pour la livraison Résidentielle." + +#: includes/common/shipping-modules/mp-fedex.php:320 +msgid "Allow Commercial Delivery?" +msgstr "Autoriser la livraison commerciale ?" + +#: includes/common/shipping-modules/mp-fedex.php:315 +msgid "Fedex 10kg Box" +msgstr "Boîte de FedEx 10 kg" + +#: includes/common/shipping-modules/mp-fedex.php:314 +msgid "Fedex 25kg Box" +msgstr "Boîte de FedEx 25 kg" + +#: includes/common/shipping-modules/mp-fedex.php:313 +msgid "Fedex Box" +msgstr "Fedex Box" + +#: includes/common/shipping-modules/mp-fedex.php:312 +msgid "Fedex Envelope" +msgstr "Fedex Envelope" + +#: includes/common/shipping-modules/mp-fedex.php:311 +msgid "Fedex Pak" +msgstr "Fedex Pak" + +#: includes/common/shipping-modules/mp-fedex.php:310 +msgid "Fedex Tube" +msgstr "Fedex Tube" + +#: includes/common/shipping-modules/mp-fedex.php:306 +msgid "Default Packaging" +msgstr "Emballage par défaut" + +#: includes/common/shipping-modules/mp-fedex.php:294 +msgid "Dropoff Type" +msgstr "Type de dépôt" + +#: includes/common/shipping-modules/mp-fedex.php:290 +msgid "Meter ID" +msgstr "ID Meter" + +#: includes/common/shipping-modules/mp-fedex.php:134 +msgid "This is a residential address" +msgstr "Ceci est une adresse résidentielle" + +#: includes/common/payment-gateways/wepay.php:283 +msgid "There was an error processing your card: \"%s\". Please check your credit card info and try again." +msgstr "Il y a eu une erreur de traitement de votre carte : \"%s\". Merci de vérifier les informations de votre carte et de réessayer." + +#: includes/common/payment-gateways/wepay.php:121 +msgid "Wepay makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept cards directly on your site. You don't need a merchant account or gateway. WePay handles everything including storing cards. Credit cards go directly to WePay's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "WePay facilite les premiers pas pour accepter les cartes de paiement directement sur votre site, conforme pleinement au standard PCI. Acceptez les cartes directement sur votre site. Vous n'avez pas besoin d'un compte marchand ou une plateforme de paiement. WePay s'occupe de tout même de l'enregistrement des cartes. Les cartes de paiement vont directement sur l'environnement sécurisé de WePay, et ne touchent jamais vos serveurs de sorte que la plupart des exigences PCI ne vous concernent pas." + +#: includes/common/payment-gateways/stripe.php:385 +msgid "There was an error processing your card - \"%s\". Please try again." +msgstr "Il y a une erreur durant le traitement de votre carte - \"%s\". Merci de réessayer." + +#: includes/common/payment-gateways/stripe.php:356 +msgid "%s Store Purchase - Order ID - %s, Email - %s" +msgstr "%s Achat en Boutique - ID de Commande - %s, E-mail - %s" + +#: includes/common/payment-gateways/stripe.php:251 +msgid "Stripe makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept Visa, MasterCard, American Express, Discover, JCB, and Diners Club cards directly on your site. You don't need a merchant account or gateway. Stripe handles everything, including storing cards, subscriptions, and direct payouts to your bank account. Credit cards go directly to Stripe's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "Stripe facilite l'acceptation des cartes de crédit directement sur votre site avec une conformité PCI complète. Acceptez les cartes Visa, MasterCard, American Express, Discover, JCB, and Diners Club directement sur votre site. Vous n'avez pas besoin d'un compte marchand ou d'une passerelle. Stripe gère tout, y compris le stockage des cartes, des abonnements et des paiements directs sur votre compte bancaire. Les cartes de crédit vont directement dans l'environnement sécurisé de Stripe et ne touchent jamais vos serveurs, vous évitant ainsi la plupart des exigences PCI." + +#: includes/common/payment-gateways/stripe.php:192 +msgid "ZMW - Zambian Kwacha" +msgstr "ZMW - Kwacha zambien" + +#: includes/common/payment-gateways/stripe.php:191 +msgid "ZAR - South African Rand" +msgstr "ZAR - Rand sud-africain" + +#: includes/common/payment-gateways/stripe.php:190 +msgid "YER - Yemeni Rial" +msgstr "YER - Rial yéménite" + +#: includes/common/payment-gateways/stripe.php:189 +msgid "XPF - Cfp Franc*" +msgstr "XPF - Cfp Franc*" + +#: includes/common/payment-gateways/stripe.php:188 +msgid "XOF - West African Cfa Franc*" +msgstr "XOF - West African Cfa Franc*" + +#: includes/common/payment-gateways/stripe.php:187 +msgid "XCD - East Caribbean Dollar" +msgstr "Dollar des Caraïbes de l’Est" + +#: includes/common/payment-gateways/stripe.php:186 +msgid "XAF - Central African Cfa Franc" +msgstr "XAF - Afrique centrale CFA" + +#: includes/common/payment-gateways/stripe.php:185 +msgid "WST - Samoan Tala" +msgstr "WST - Samoan Tala" + +#: includes/common/payment-gateways/stripe.php:184 +msgid "VUV - Vanuatu Vatu" +msgstr "Vanuatu" + +#: includes/common/payment-gateways/stripe.php:183 +msgid "VND - Vietnamese Đồng" +msgstr "VND - Vietnamese Đồng" + +#: includes/common/payment-gateways/stripe.php:182 +msgid "VEF - Venezuelan Bolívar*" +msgstr "VEF - Venezuelan Bolívar*" + +#: includes/common/payment-gateways/stripe.php:181 +msgid "UZS - Uzbekistani Som" +msgstr "UZS - Som ouzbek" + +#: includes/common/payment-gateways/stripe.php:180 +msgid "UYI - Uruguayan Peso*" +msgstr "UYI - Uruguayan Peso*" + +#: includes/common/payment-gateways/stripe.php:178 +msgid "UGX - Ugandan Shilling" +msgstr "Shilling ougandais" + +#: includes/common/payment-gateways/stripe.php:177 +msgid "UAH - Ukrainian Hryvnia" +msgstr "UAH - Hryvnia Ukrainienne" + +#: includes/common/payment-gateways/stripe.php:176 +msgid "TZS - Tanzanian Shilling" +msgstr "TZS - Shilling tanzanien" + +#: includes/common/payment-gateways/stripe.php:175 +msgid "TWD - New Taiwan Dollar" +msgstr "NZD - Dollar néo-zélandais" + +#: includes/common/payment-gateways/stripe.php:174 +msgid "TTD - Trinidad and Tobago Dollar" +msgstr "Trinité-et-Tobago" + +#: includes/common/payment-gateways/stripe.php:172 +msgid "TOP - Tongan Paʻanga" +msgstr "TOP - Tongan Paʻanga" + +#: includes/common/payment-gateways/stripe.php:171 +msgid "TJS - Tajikistani Somoni" +msgstr "Somoni" + +#: includes/common/payment-gateways/stripe.php:169 +msgid "SZL - Swazi Lilangeni" +msgstr "Lilangeni" + +#: includes/common/payment-gateways/stripe.php:168 +msgid "SVC - Salvadoran Colón*" +msgstr "SVC - Salvadoran Colón*" + +#: includes/common/payment-gateways/stripe.php:167 +msgid "STD - São Tomé and Príncipe Dobra" +msgstr "STD - Dobra de São Tomé et Príncipe" + +#: includes/common/payment-gateways/stripe.php:166 +msgid "SRD - Surinamese Dollar*" +msgstr "SRD - Surinamese Dollar*" + +#: includes/common/payment-gateways/stripe.php:165 +msgid "SOS - Somali Shilling" +msgstr "Shilling de Somalie" + +#: includes/common/payment-gateways/stripe.php:164 +msgid "SLL - Sierra Leonean Leone" +msgstr "SLL - Leone de Sierra Leone" + +#: includes/common/payment-gateways/stripe.php:163 +msgid "SHP - Saint Helenian Pound*" +msgstr "SHP - Saint Helenian Pound*" + +#: includes/common/payment-gateways/stripe.php:160 +msgid "SCR - Seychellois Rupee" +msgstr "Roupie seychelloise" + +#: includes/common/payment-gateways/stripe.php:159 +msgid "SBD - Solomon Islands Dollar" +msgstr "Îles Salomon" + +#: includes/common/payment-gateways/stripe.php:157 +msgid "RWF - Rwandan Franc" +msgstr "RWF - Franc Rwandais" + +#: includes/common/payment-gateways/stripe.php:156 +msgid "RUB - Russian Ruble" +msgstr "RUB - Rouble russe" + +#: includes/common/payment-gateways/stripe.php:155 +msgid "RSD - Serbian Dinar" +msgstr "DZD - Dinar algérien" + +#: includes/common/payment-gateways/stripe.php:154 +msgid "RON - Romanian Leu" +msgstr "RON - Leu Roumain" + +#: includes/common/payment-gateways/stripe.php:153 +msgid "QAR - Qatari Riyal" +msgstr "Riyal qatari" + +#: includes/common/payment-gateways/stripe.php:152 +msgid "PYG - Paraguayan Guaraní*" +msgstr "PYG - Paraguayan Guaraní*" + +#: includes/common/payment-gateways/stripe.php:151 +msgid "PLN - Polish Złoty" +msgstr "PLN - Polish Złoty" + +#: includes/common/payment-gateways/stripe.php:150 +msgid "PKR - Pakistani Rupee" +msgstr "Roupie pakistanaise" + +#: includes/common/payment-gateways/stripe.php:149 +msgid "PHP - Philippine Peso" +msgstr "GWP - Peso de Guinée-Bissau" + +#: includes/common/payment-gateways/stripe.php:148 +msgid "PGK - Papua New Guinean Kina" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:147 +msgid "PEN - Peruvian Nuevo Sol*" +msgstr "PEN - Peruvian Nuevo Sol*" + +#: includes/common/payment-gateways/stripe.php:146 +msgid "PAB - Panamanian Balboa*" +msgstr "PAB - Balboa de Panama*" + +#: includes/common/payment-gateways/stripe.php:144 +msgid "NPR - Nepalese Rupee" +msgstr "NPR - Roupie Népalaise" + +#: includes/common/payment-gateways/stripe.php:142 +msgid "NIO - Nicaraguan Córdoba*" +msgstr "NIO - Córdoba de Nicaragua*" + +#: includes/common/payment-gateways/stripe.php:141 +msgid "NGN - Nigerian Naira" +msgstr "NGN - Naira Nigérian" + +#: includes/common/payment-gateways/stripe.php:140 +msgid "NAD - Namibian Dollar" +msgstr "NAD - Dollar Namibien" + +#: includes/common/payment-gateways/stripe.php:139 +msgid "MZN - Mozambican Metical" +msgstr "MZN - Metical de Mozambique" + +#: includes/common/payment-gateways/stripe.php:137 +msgid "MXN - Mexican Peso*" +msgstr "MXN - Peso Mexicain*" + +#: includes/common/payment-gateways/stripe.php:136 +msgid "MWK - Malawian Kwacha" +msgstr "MWK - Kwacha de Malawi" + +#: includes/common/payment-gateways/stripe.php:135 +msgid "MVR - Maldivian Rufiyaa" +msgstr "MVR - Rufiyaa des Maldives" + +#: includes/common/payment-gateways/stripe.php:134 +msgid "MUR - Mauritian Rupee*" +msgstr "MUR - Roupie Mauritanienne*" + +#: includes/common/payment-gateways/stripe.php:133 +msgid "MRO - Mauritanian Ouguiya" +msgstr "MRO - Ouguiya Mauritanien" + +#: includes/common/payment-gateways/stripe.php:132 +msgid "MOP - Macanese Pataca" +msgstr "MOP - Pataca de Macao" + +#: includes/common/payment-gateways/stripe.php:131 +msgid "MNT - Mongolian Tögrög" +msgstr "MNT - Tögrög Mongol" + +#: includes/common/payment-gateways/stripe.php:130 +msgid "MKD - Macedonian Denar" +msgstr "MKD - Denar Macédonien" + +#: includes/common/payment-gateways/stripe.php:129 +msgid "MGA - Malagasy Ariary" +msgstr "MGA - Ariary Malgache" + +#: includes/common/payment-gateways/stripe.php:128 +msgid "MDL - Moldovan Leu" +msgstr "MDL - Leu Moldave" + +#: includes/common/payment-gateways/stripe.php:126 +msgid "LVL - Latvian Lats" +msgstr "LVL - Lats de Lettonie" + +#: includes/common/payment-gateways/stripe.php:124 +msgid "LSL - Lesotho Loti" +msgstr "LSL - Loti du Lesotho" + +#: includes/common/payment-gateways/stripe.php:123 +msgid "LRD - Liberian Dollar" +msgstr "LRD - Dollar du Libéria" + +#: includes/common/payment-gateways/stripe.php:122 +msgid "LKR - Sri Lankan Rupee" +msgstr "LKR - Roupie Sri Lankaise" + +#: includes/common/payment-gateways/stripe.php:121 +msgid "LBP - Lebanese Pound" +msgstr "NBP - Livre Libanaise" + +#: includes/common/payment-gateways/stripe.php:120 +msgid "LAK - Lao Kip*" +msgstr "LAK - Kip Laotien*" + +#: includes/common/payment-gateways/stripe.php:119 +msgid "KZT - Kazakhstani Tenge" +msgstr "KZT - Tenge du Kzakhstan" + +#: includes/common/payment-gateways/stripe.php:118 +msgid "KYD - Cayman Islands Dollar" +msgstr "KYD - Dollar des îles Cayman" + +#: includes/common/payment-gateways/stripe.php:117 +msgid "KRW - South Korean Won" +msgstr "KRW - Won Sud-Coréen" + +#: includes/common/payment-gateways/stripe.php:116 +msgid "KMF - Comorian Franc" +msgstr "KMF - Franc Comorien" + +#: includes/common/payment-gateways/stripe.php:115 +msgid "KHR - Cambodian Riel" +msgstr "KHR - Riel Cambodgien" + +#: includes/common/payment-gateways/stripe.php:114 +msgid "KGS - Kyrgyzstani Som" +msgstr "KGS - Som du Kyrgizstan" + +#: includes/common/payment-gateways/stripe.php:113 +msgid "KES - Kenyan Shilling" +msgstr "KES - Shilling Kenyan" + +#: includes/common/payment-gateways/stripe.php:111 +msgid "JMD - Jamaican Dollar" +msgstr "JMD - Dollar Jamaïcain" + +#: includes/common/payment-gateways/stripe.php:110 +msgid "ISK - Icelandic Króna" +msgstr "ISK - Couronne Islandaise" + +#: includes/common/payment-gateways/stripe.php:109 +msgid "INR - Indian Rupee*" +msgstr "INR - Roupie Indienne*" + +#: includes/common/payment-gateways/stripe.php:108 +msgid "ILS - Israeli New Sheqel" +msgstr "ILS - Nouveau Sheqel Israeli" + +#: includes/common/payment-gateways/stripe.php:107 +msgid "IDR - Indonesian Rupiah" +msgstr "IDR - Roupie Indonésienne" + +#: includes/common/payment-gateways/stripe.php:105 +msgid "HTG - Haitian Gourde" +msgstr "HTG - Gourde Haïtienne" + +#: includes/common/payment-gateways/stripe.php:103 +msgid "HNL - Honduran Lempira*" +msgstr "HNL - Lempira du Honduras*" + +#: includes/common/payment-gateways/stripe.php:101 +msgid "GYD - Guyanese Dollar" +msgstr "GYD - Dollar de Guyane" + +#: includes/common/payment-gateways/stripe.php:100 +msgid "GTQ - Guatemalan Quetzal*" +msgstr "GTQ - Quetzal du Guatemala*" + +#: includes/common/payment-gateways/stripe.php:99 +msgid "GNF - Guinean Franc*" +msgstr "GNF - Franc Guinéen*" + +#: includes/common/payment-gateways/stripe.php:98 +msgid "GMD - Gambian Dalasi" +msgstr "GMD - Dalasi de Gambie" + +#: includes/common/payment-gateways/stripe.php:97 +msgid "GIP - Gibraltar Pound" +msgstr "GIP - Livre de Gibraltar" + +#: includes/common/payment-gateways/stripe.php:96 +msgid "GEL - Georgian Lari" +msgstr "GEL - Lari Géorgien" + +#: includes/common/payment-gateways/stripe.php:94 +msgid "FKP - Falkland Islands Pound*" +msgstr "FKP - Livre des îles Falkland" + +#: includes/common/payment-gateways/stripe.php:93 +msgid "FJD - Fijian Dollar" +msgstr "FJD - Dollar de Fidji" + +#: includes/common/payment-gateways/stripe.php:91 +msgid "ETB - Ethiopian Birr" +msgstr "ETB - Birr Ethiopien" + +#: includes/common/payment-gateways/stripe.php:90 +msgid "EGP - Egyptian Pound" +msgstr "EGP - Livre Egyptienne" + +#: includes/common/payment-gateways/stripe.php:89 +msgid "EEK - Estonian Kroon*" +msgstr "EEK - Couronne Estonienne*" + +#: includes/common/payment-gateways/stripe.php:88 +msgid "DZD - Algerian Dinar" +msgstr "DZD - Dinar Algérien" + +#: includes/common/payment-gateways/stripe.php:87 +msgid "DOP - Dominican Peso" +msgstr "DOP - Peso Dominicain" + +#: includes/common/payment-gateways/stripe.php:85 +msgid "DJF - Djiboutian Franc*" +msgstr "DJF - Franc de Djibouti*" + +#: includes/common/payment-gateways/stripe.php:84 +msgid "CZK - Czech Koruna*" +msgstr "CZK - Couronne Tchèque*" + +#: includes/common/payment-gateways/stripe.php:83 +msgid "CVE - Cape Verdean Escudo*" +msgstr "CVE - Escudo du Cap Vert*" + +#: includes/common/payment-gateways/stripe.php:82 +msgid "CRC - Costa Rican Colón*" +msgstr "CRC - Colón du Costa Rica" + +#: includes/common/payment-gateways/stripe.php:81 +msgid "COP - Colombian Peso*" +msgstr "COP - Peso Colombien*" + +#: includes/common/payment-gateways/stripe.php:80 +msgid "CNY - Chinese Renminbi Yuan" +msgstr "CNY - Yuan Renminbi Chinois" + +#: includes/common/payment-gateways/stripe.php:79 +msgid "CLP - Chilean Peso*" +msgstr "CLP - Peso Chilien*" + +#: includes/common/payment-gateways/stripe.php:77 +msgid "CDF - Congolese Franc" +msgstr "CDF - Franc Congolais" + +#: includes/common/payment-gateways/stripe.php:76 +msgid "CAD - Canadian Dollar*" +msgstr "CAD - Dollar Canadien*" + +#: includes/common/payment-gateways/stripe.php:75 +msgid "BZD - Belize Dollar" +msgstr "BZD - Dollar du Bélize" + +#: includes/common/payment-gateways/stripe.php:74 +msgid "BWP - Botswana Pula" +msgstr "BWP - Pula du Botswana" + +#: includes/common/payment-gateways/stripe.php:73 +msgid "BSD - Bahamian Dollar" +msgstr "BSD - Dollar des Bahamas" + +#: includes/common/payment-gateways/stripe.php:72 +msgid "BRL - Brazilian Real*" +msgstr "BRL - Real Brésilien*" + +#: includes/common/payment-gateways/stripe.php:71 +msgid "BOB - Bolivian Boliviano*" +msgstr "BOB - Boliviano de Bolivie" + +#: includes/common/payment-gateways/stripe.php:70 +msgid "BND - Brunei Dollar" +msgstr "BND - Dollar de Brunei" + +#: includes/common/payment-gateways/stripe.php:69 +msgid "BMD - Bermudian Dollar" +msgstr "BMD - Dollar des Bermudes" + +#: includes/common/payment-gateways/stripe.php:68 +msgid "BIF - Burundian Franc" +msgstr "BIF - Franc du Burundi" + +#: includes/common/payment-gateways/stripe.php:67 +msgid "BGN - Bulgarian Lev" +msgstr "BGN - Lev Bulgare" + +#: includes/common/payment-gateways/stripe.php:66 +msgid "BDT - Bangladeshi Taka" +msgstr "BDT - Taka du Bangladesh" + +#: includes/common/payment-gateways/stripe.php:65 +msgid "BBD - Barbadian Dollar" +msgstr "BBD - Dollar des Barbades" + +#: includes/common/payment-gateways/stripe.php:64 +msgid "BAM - Bosnia & Herzegovina Convertible Mark" +msgstr "BAM - Mark convertible de Bosnie-Herzégovine" + +#: includes/common/payment-gateways/stripe.php:63 +msgid "AZN - Azerbaijani Manat" +msgstr "AZN - Manat d'Azerbaidjan" + +#: includes/common/payment-gateways/stripe.php:62 +msgid "AWG - Aruban Florin" +msgstr "AWG - Florin d'Aruba" + +#: includes/common/payment-gateways/stripe.php:61 +msgid "AUD - Australian Dollar*" +msgstr "AUD - Dollar Australien*" + +#: includes/common/payment-gateways/stripe.php:60 +msgid "ARS - Argentine Peso*" +msgstr "ARS - Peso Argentin" + +#: includes/common/payment-gateways/stripe.php:59 +msgid "AOA - Angolan Kwanza*" +msgstr "AOA - Kwanza Angolais" + +#: includes/common/payment-gateways/stripe.php:58 +msgid "ANG - Netherlands Antillean Gulden" +msgstr "ANG - Florin Antillais des Pays-Bas" + +#: includes/common/payment-gateways/stripe.php:57 +msgid "AMD - Armenian Dram" +msgstr "AMD - Dram Arménien" + +#: includes/common/payment-gateways/stripe.php:56 +msgid "ALL - Albanian Lek" +msgstr "ALL - Lek Albanien" + +#: includes/common/payment-gateways/stripe.php:55 +msgid "AFN - Afghan Afghani*" +msgstr "AFN - Afghani Afghan" + +#: includes/common/payment-gateways/stripe.php:54 +msgid "AED - United Arab Emirates Dirham" +msgstr "AED - Dirham des Emirats Arabes Unis" + +#: includes/common/payment-gateways/skrill.php:345 +msgid "Skrill balance, Credit Card, or Instant Transfer" +msgstr "Solde Skrill, carte bancaire, ou transfert immédiat" + +#: includes/common/payment-gateways/skrill.php:327 +msgid "Skrill IPN message received." +msgstr "Message IPN Skrill reçu." + +#: includes/common/payment-gateways/skrill.php:283 +msgid "Skrill" +msgstr "Skrill" + +#: includes/common/payment-gateways/skrill.php:278 +msgid "Pending payment" +msgstr "Paiement en attente" + +#: includes/common/payment-gateways/skrill.php:144 +msgid "The secret word must match the word submitted in the \"Merchant Tools\" section of your Skrill account." +msgstr "Le mot secret doit correspondre au mot soumis dans la section des \"Outils Marchand\" de votre compte Skrill." + +#: includes/common/payment-gateways/skrill.php:134 +msgid "You must use your valid Skrill merchant email. Instructions »" +msgstr "Vous devez utiliser votre email marchand Skrill valide. Instructions »" + +#: includes/common/payment-gateways/skrill.php:133 +msgid "Skrill Email" +msgstr "Email Skrill" + +#: includes/common/payment-gateways/skrill.php:123 +msgid "Resell your inventory via Skrill.com (Moneybookers)" +msgstr "Revendez votre inventaire via Skrill.com (Moneybookers)" + +#: includes/common/payment-gateways/skrill.php:95 +msgid "ZAR - South-African Rand" +msgstr "ZAR - Rand Sud-Africain" + +#: includes/common/payment-gateways/skrill.php:93 +msgid "TWD - Taiwan Dollar" +msgstr "TWD - Dollar Taïwanais" + +#: includes/common/payment-gateways/skrill.php:92 +msgid "TRY - New Turkish Lira" +msgstr "TRY - Nouvelle Lire Turque" + +#: includes/common/payment-gateways/skrill.php:91 +msgid "TND - Tunisian Dinar" +msgstr "TND - Dinar Tunisien" + +#: includes/common/payment-gateways/skrill.php:90 +msgid "THB - Thailand Baht" +msgstr "THB - Baht Thaïlandais" + +#: includes/common/payment-gateways/skrill.php:89 +msgid "SKK - Slovakian Koruna" +msgstr "SKK - Couronne Slovaque" + +#: includes/common/payment-gateways/skrill.php:86 +#: includes/common/payment-gateways/stripe.php:158 +msgid "SAR - Saudi Riyal" +msgstr "SAR - Riyal Saoudien" + +#: includes/common/payment-gateways/skrill.php:85 +msgid "RSD - Serbian dinar" +msgstr "RSD - Dinar Serbe" + +#: includes/common/payment-gateways/skrill.php:83 +msgid "QAR - Qatari Rial" +msgstr "QAR - Rial Qatari" + +#: includes/common/payment-gateways/skrill.php:81 +msgid "OMR - Omani Rial" +msgstr "OMR - Rial d'Oman" + +#: includes/common/payment-gateways/skrill.php:80 +msgid "NOK - Norwegian Krone " +msgstr "NOK - Couronne Norvégienne" + +#: includes/common/payment-gateways/skrill.php:78 +#: includes/common/payment-gateways/stripe.php:138 +msgid "MYR - Malaysian Ringgit" +msgstr "MYR - Ringgit Malaisien" + +#: includes/common/payment-gateways/skrill.php:77 +#: includes/common/payment-gateways/stripe.php:127 +msgid "MAD - Moroccan Dirham" +msgstr "MAD - Dirham Marocain" + +#: includes/common/payment-gateways/skrill.php:74 +msgid "KRW - South-Korean Won" +msgstr "KRW - Won Sud-Coréen" + +#: includes/common/payment-gateways/skrill.php:72 +msgid "JOD - Jordanian Dinar" +msgstr "JOD - Dinar Jordanien" + +#: includes/common/payment-gateways/skrill.php:70 +msgid "INR - Indian Rupee" +msgstr "INR - Roupie Indienne" + +#: includes/common/payment-gateways/skrill.php:63 +msgid "EEK - Estonian Kroon" +msgstr "EEK - Couronne Estonienne" + +#: includes/common/payment-gateways/skrill.php:56 +msgid "AED - Utd. Arab Emir. Dirham" +msgstr "AED - Dirham des Emirats Arabes Unis" + +#: includes/common/payment-gateways/skrill.php:52 +msgid "Turkish" +msgstr "Turc" + +#: includes/common/payment-gateways/skrill.php:51 +msgid "Swedish" +msgstr "Suédois" + +#: includes/common/payment-gateways/skrill.php:50 +msgid "Spanish" +msgstr "Espagnol" + +#: includes/common/payment-gateways/skrill.php:49 +msgid "Russian" +msgstr "Russe" + +#: includes/common/payment-gateways/skrill.php:48 +msgid "Romainian" +msgstr "Roumain" + +#: includes/common/payment-gateways/skrill.php:47 +msgid "Polish" +msgstr "Polonais" + +#: includes/common/payment-gateways/skrill.php:46 +msgid "Italian" +msgstr "Italien" + +#: includes/common/payment-gateways/skrill.php:45 +msgid "Greek" +msgstr "Grec" + +#: includes/common/payment-gateways/skrill.php:44 +msgid "German" +msgstr "Allemand" + +#: includes/common/payment-gateways/skrill.php:43 +msgid "French" +msgstr "Français" + +#: includes/common/payment-gateways/skrill.php:42 +msgid "Finnish" +msgstr "Finnois" + +#: includes/common/payment-gateways/skrill.php:41 +msgid "English" +msgstr "Anglais" + +#: includes/common/payment-gateways/skrill.php:40 +msgid "Dutch" +msgstr "Néerlandais" + +#: includes/common/payment-gateways/skrill.php:39 +msgid "Danish" +msgstr "Danois" + +#: includes/common/payment-gateways/skrill.php:38 +msgid "Czech" +msgstr "Tchèque" + +#: includes/common/payment-gateways/skrill.php:37 +msgid "Chinese" +msgstr "Chinois" + +#: includes/common/payment-gateways/simplify.php:201 +msgid "There was an error processing your card: %s. Please re-enter your credit card info and try again." +msgstr "Il y a eu une erreur de traitement de votre carte : %s. Merci d'entrer à nouveau les informations de votre carte et de réessayer. ." + +#: includes/common/payment-gateways/pin.php:278 +msgid "
  • There was an error processing your card: \"%s\". Please verify your credit card information and try again.
  • " +msgstr "
  • Il y a eu une erreur de traitement de votre carte : \"%s\". Merci de vérifier les informations de la carte et de réessayer.
  • " + +#: includes/common/payment-gateways/pin.php:274 +msgid "
  • There was an error processing your card. Please verify your credit card information and try again.
  • " +msgstr "
  • Il y a eu une erreur dans le traitement de votre carte. Merci de vérifier les informations de la carte et de réessayer.
  • " + +#: includes/common/payment-gateways/pin.php:177 +#: includes/common/payment-gateways/stripe.php:279 +msgid "Publishable Key" +msgstr "Clé Publicable" + +#: includes/common/payment-gateways/pin.php:163 +msgid "API Credentials?" +msgstr "Authentifiants API ?" + +#: includes/common/payment-gateways/pin.php:147 +msgid "PIN makes it easy to start accepting credit card payments with Australia’s first all-in-one online payment system. Accept all major credit cards directly on your site. Your sales proceeds are deposited to any Australian bank account, no merchant account required." +msgstr "PIN facilite le démarrage pour accepter les cartes de paiement avec le premier système de paiement tout inclus d'Australie. Acceptez toutes les principales cartes de paiement directement sur votre site. Le résultat de vos ventes est déposé sur le compte de n'importe quelle banque australienne, aucun compte marchand n'est requis." + +#: includes/common/payment-gateways/pin.php:57 +#: includes/common/payment-gateways/stripe.php:179 +msgid "USD - United States Dollar" +msgstr "USD - Dollar américain" + +#: includes/common/payment-gateways/paypal-payflow.php:455 +msgid "Email Footer" +msgstr "Pied de page du mail" + +#: includes/common/payment-gateways/paypal-payflow.php:445 +msgid "Email Header" +msgstr "Entête du mail" + +#: includes/common/payment-gateways/paypal-payflow.php:416 +msgid "Partner" +msgstr "Partenaire" + +#: includes/common/payment-gateways/paypal-payflow.php:409 +msgid "Vendor" +msgstr "Vendeur" + +#: includes/common/payment-gateways/paypal-express.php:852 +#: includes/common/payment-gateways/paypal-express.php:1126 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences\t section of your Profile." +msgstr "Le paiement est en attente parce que votre client n'a pas inclus une adresse de livraison confirmée et que vos Préférences de réception de paiement sont définies de sorte que vous souhaitez accepter manuellement ou refuser chacun de ces paiements. Pour modifier votre préférence, accédez à la section Préférences de votre Profil." + +#: includes/common/payment-gateways/paypal-express.php:749 +msgid "Page Background Color" +msgstr "Couleur de fond Page" + +#: includes/common/payment-gateways/paypal-express.php:744 +msgid "Header Background Color" +msgstr "Couleur d'arrière-plan de l'en-tête" + +#: includes/common/payment-gateways/paypal-express.php:739 +msgid "Header Border Color" +msgstr "Couleur des bordures de l'en-tête" + +#: includes/common/payment-gateways/paypal-express.php:734 +msgid "Header Image" +msgstr "Image d’en-tête" + +#: includes/common/payment-gateways/paypal-express.php:680 +msgid "Locale" +msgstr "Lieu" + +#: includes/common/payment-gateways/paypal-express.php:624 +#: includes/common/payment-gateways/paypal-express.php:658 +msgid "Merchant Email" +msgstr "Email Marchand" + +#: includes/common/payment-gateways/paypal-express.php:645 +msgid "Paypal Express Checkout Settings" +msgstr "Paramètres PayPal Express Checkout" + +#: includes/common/payment-gateways/paypal-express.php:603 +msgid "Paypal Express Network Settings" +msgstr "Paramètres Paypal Express Network" + +#: includes/common/payment-gateways/paypal-chained-payments.php:861 +msgid "Application ID (Live)" +msgstr "ID de l'Application (Live)" + +#: includes/common/payment-gateways/paypal-chained-payments.php:854 +msgid "Signature (Live)" +msgstr "Signature (Live)" + +#: includes/common/payment-gateways/paypal-chained-payments.php:847 +msgid "API Password (Live)" +msgstr "Mot de passe de l’API (Live)" + +#: includes/common/payment-gateways/paypal-chained-payments.php:839 +msgid "API Username (Live)" +msgstr "Nom Utilisateur de l’API (Live)" + +#: includes/common/payment-gateways/paypal-chained-payments.php:832 +msgid "Signature (Sandbox)" +msgstr "Signature (Sandbox)" + +#: includes/common/payment-gateways/paypal-chained-payments.php:825 +msgid "API Password (Sandbox)" +msgstr "Mot de passe API (Sandbox)" + +#: includes/common/payment-gateways/paypal-chained-payments.php:817 +msgid "API Username (Sandbox)" +msgstr "API Nom d'Utilisateur (Sandbox)" + +#: includes/common/payment-gateways/paypal-chained-payments.php:799 +msgid "This message is displayed at the top of the gateway settings page to store admins. It's a good place to inform them of your fees or put any sales messages." +msgstr "Ce message s'affiche en haut de la page de paramètres de passerelle aux admins de boutique. C'est un bon endroit pour les informer de vos frais ou mettre des messages de ventes." + +#: includes/common/payment-gateways/paypal-chained-payments.php:787 +msgid "Please enter your PayPal email address or business ID you want to recieve fees at." +msgstr "Veuillez entrer votre ID Marchand ou adresse de courriel de PayPal pour y recevoir les frais prélevés." + +#: includes/common/payment-gateways/paypal-chained-payments.php:786 +msgid "PayPal E-mail" +msgstr "E-mail PayPal" + +#: includes/common/payment-gateways/paypal-chained-payments.php:772 +msgid "Fees to Collect (%)" +msgstr "Frais à Collecter (%)" + +#: includes/common/payment-gateways/paypal-chained-payments.php:375 +#: includes/public/class-mp-checkout.php:341 +msgid "Email Address" +msgstr "Adresse Email" + +#: includes/common/payment-gateways/paypal-chained-payments.php:299 +msgid "Sorry, your order was not completed." +msgstr "Désolé, votre commande n'a pas été terminée." + +#: includes/common/payment-gateways/paypal-chained-payments.php:126 +#: includes/common/payment-gateways/paypal-express.php:780 +msgid "You will be redirected to the PayPal site to finalize your payment." +msgstr "Vous serez redirigé vers le site PayPal pour finaliser votre paiement." + +#: includes/common/payment-gateways/paypal-chained-payments.php:90 +#: includes/common/payment-gateways/skrill.php:94 +msgid "USD - U.S. Dollar" +msgstr "USD - Dollar américain" + +#: includes/common/payment-gateways/paypal-chained-payments.php:89 +msgid "TRY - Turkish lira" +msgstr "TRY - Turkish lira" + +#: includes/common/payment-gateways/paypal-chained-payments.php:88 +#: includes/common/payment-gateways/stripe.php:170 +msgid "THB - Thai Baht" +msgstr "THB - Baht thaïlandais" + +#: includes/common/payment-gateways/paypal-chained-payments.php:87 +msgid "TWD - Taiwan New Dollars" +msgstr "TWD - Nouveaux dollars taïwanais" + +#: includes/common/payment-gateways/paypal-chained-payments.php:86 +#: includes/common/payment-gateways/pin.php:59 +#: includes/common/payment-gateways/skrill.php:88 +#: includes/common/payment-gateways/stripe.php:162 +msgid "SGD - Singapore Dollar" +msgstr "SGD - Dollar de Singapour" + +#: includes/common/payment-gateways/paypal-chained-payments.php:84 +msgid "RUB - Russian Rubles" +msgstr "RUB - Russian Rubles" + +#: includes/common/payment-gateways/paypal-chained-payments.php:82 +msgid "PHP - Philippine Pesos" +msgstr "PHP - Peso philippin" + +#: includes/common/payment-gateways/paypal-chained-payments.php:81 +#: includes/common/payment-gateways/pin.php:58 +#: includes/common/payment-gateways/skrill.php:79 +#: includes/common/payment-gateways/stripe.php:145 +msgid "NZD - New Zealand Dollar" +msgstr "NZD - Dollar néo-zélandais" + +#: includes/common/payment-gateways/paypal-chained-payments.php:79 +msgid "MXN - Mexican Peso" +msgstr "MXN - Peso mexicain" + +#: includes/common/payment-gateways/paypal-chained-payments.php:78 +msgid "MYR - Malaysian Ringgits" +msgstr "MYR - Ringgit malaisien" + +#: includes/common/payment-gateways/paypal-chained-payments.php:77 +#: includes/common/payment-gateways/pin.php:64 +#: includes/common/payment-gateways/skrill.php:73 +#: includes/common/payment-gateways/stripe.php:112 +msgid "JPY - Japanese Yen" +msgstr "JPY - Yen japonais" + +#: includes/common/payment-gateways/paypal-chained-payments.php:75 +#: includes/common/payment-gateways/pin.php:63 +#: includes/common/payment-gateways/skrill.php:66 +#: includes/common/payment-gateways/stripe.php:102 +msgid "HKD - Hong Kong Dollar" +msgstr "HKD - Dollar de Hong-Kong" + +#: includes/common/payment-gateways/paypal-chained-payments.php:73 +msgid "GBP - Pound Sterling" +msgstr "GBP - Livre sterling" + +#: includes/common/payment-gateways/paypal-chained-payments.php:68 +#: includes/common/payment-gateways/pin.php:62 +#: includes/common/payment-gateways/skrill.php:59 +msgid "CAD - Canadian Dollar" +msgstr "CAD - Dollar canadien" + +#: includes/common/payment-gateways/paypal-chained-payments.php:67 +msgid "BRL - Brazilian Real" +msgstr "BRL - Réal brésilien" + +#: includes/common/payment-gateways/paypal-chained-payments.php:66 +#: includes/common/payment-gateways/pin.php:56 +#: includes/common/payment-gateways/skrill.php:57 +msgid "AUD - Australian Dollar" +msgstr "AUD - Dollar australien" + +#: includes/common/payment-gateways/paymill.php:288 +msgid "There was an error processing your card: \"%s\". Please try again." +msgstr "Une erreur s'est produite lors du traitement de votre carte : \"%s\". Veuillez réessayer." + +#: includes/common/payment-gateways/paymill.php:163 +msgid "When running on a live site, Paymill recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "En mode Production (Live) Paymill recommande la configuration d'un certificat SSL pour le site où le formulaire de commande sera affiché." + +#: includes/common/payment-gateways/paymill.php:161 +#: includes/common/payment-gateways/pin.php:157 +#: includes/common/payment-gateways/simplify.php:103 +#: includes/common/payment-gateways/stripe.php:260 +#: includes/common/payment-gateways/wepay.php:153 +msgid "Force SSL?" +msgstr "Forcer le SSL?" + +#: includes/common/payment-gateways/paymill.php:151 +msgid "Accept Visa, Mastercard, Maestro UK, Discover and Solo cards directly on your site. You don't need a merchant account or gateway. Credit cards go directly to Paymill's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "Acceptez les cartes Visa, Mastercard, Maestro UK, Discover et Solo directement sur votre site. Vous n'avez pas besoin un compte marchand ou d'une passerelle de paiement. Les cartes de crédit vont directement à l'environnement sécurisé de Paymill et jamais sur vos serveurs, ainsi vous pouvez éviter la plupart des exigences PCI." + +#: includes/common/payment-gateways/paymill.php:131 +msgid "CVV2" +msgstr "CVV2" + +#: includes/common/payment-gateways/paymill.php:72 +#: includes/common/payment-gateways/pin.php:61 +#: includes/common/payment-gateways/skrill.php:65 +#: includes/common/payment-gateways/stripe.php:95 +msgid "GBP - British Pound" +msgstr "GBP - Livre sterling" + +#: includes/common/payment-gateways/paymill.php:71 +#: includes/common/payment-gateways/stripe.php:173 +msgid "TRY - Turkish Lira" +msgstr "TRY - Livre turque" + +#: includes/common/payment-gateways/paymill.php:70 +#: includes/common/payment-gateways/paypal-chained-payments.php:85 +#: includes/common/payment-gateways/skrill.php:87 +#: includes/common/payment-gateways/stripe.php:161 +msgid "SEK - Swedish Krona" +msgstr "SEK - Couronne suédoise" + +#: includes/common/payment-gateways/paymill.php:69 +#: includes/common/payment-gateways/skrill.php:84 +msgid "RON - Romanian Leu New" +msgstr "RON - Romanian Leu New" + +#: includes/common/payment-gateways/paymill.php:68 +#: includes/common/payment-gateways/paypal-chained-payments.php:83 +#: includes/common/payment-gateways/skrill.php:82 +msgid "PLN - Polish Zloty" +msgstr "PLN - Zloty polonais" + +#: includes/common/payment-gateways/paymill.php:67 +#: includes/common/payment-gateways/paypal-chained-payments.php:80 +#: includes/common/payment-gateways/stripe.php:143 +msgid "NOK - Norwegian Krone" +msgstr "NOK - Couronne norvégienne" + +#: includes/common/payment-gateways/paymill.php:66 +#: includes/common/payment-gateways/skrill.php:75 +#: includes/common/payment-gateways/stripe.php:125 +msgid "LTL - Lithuanian Litas" +msgstr "litas lituanien" + +#: includes/common/payment-gateways/paymill.php:65 +#: includes/common/payment-gateways/paypal-chained-payments.php:69 +#: includes/common/payment-gateways/skrill.php:60 +#: includes/common/payment-gateways/stripe.php:78 +msgid "CHF - Swiss Franc" +msgstr "CHF + Franc Suisse" + +#: includes/common/payment-gateways/paymill.php:64 +#: includes/common/payment-gateways/skrill.php:76 +msgid "LVL - Latvian Lat" +msgstr "LVL - lat letton" + +#: includes/common/payment-gateways/paymill.php:63 +#: includes/common/payment-gateways/paypal-chained-payments.php:74 +#: includes/common/payment-gateways/skrill.php:69 +msgid "ILS - Israeli Shekel" +msgstr "ILS - Shekel israélien" + +#: includes/common/payment-gateways/paymill.php:62 +#: includes/common/payment-gateways/skrill.php:71 +msgid "ISK - Iceland Krona" +msgstr "Islande" + +#: includes/common/payment-gateways/paymill.php:61 +#: includes/common/payment-gateways/paypal-chained-payments.php:76 +#: includes/common/payment-gateways/skrill.php:68 +#: includes/common/payment-gateways/stripe.php:106 +msgid "HUF - Hungarian Forint" +msgstr "HUF - Florin hongrois" + +#: includes/common/payment-gateways/paymill.php:60 +#: includes/common/payment-gateways/paypal-chained-payments.php:71 +#: includes/common/payment-gateways/skrill.php:62 +#: includes/common/payment-gateways/stripe.php:86 +msgid "DKK - Danish Krone" +msgstr "DKK - Couronne danoise" + +#: includes/common/payment-gateways/paymill.php:59 +#: includes/common/payment-gateways/skrill.php:67 +#: includes/common/payment-gateways/stripe.php:104 +msgid "HRK - Croatian Kuna" +msgstr "HRK - Kuna croate" + +#: includes/common/payment-gateways/paymill.php:58 +#: includes/common/payment-gateways/paypal-chained-payments.php:70 +#: includes/common/payment-gateways/skrill.php:61 +msgid "CZK - Czech Koruna" +msgstr "CZK - Couronne tchèque" + +#: includes/common/payment-gateways/paymill.php:57 +#: includes/common/payment-gateways/skrill.php:58 +msgid "BGN - Bulgarian Leva" +msgstr "BGN - Bulgarian Leva" + +#: includes/common/payment-gateways/payflow/class-mp-gateway-worker-payflow.php:123 +msgid "There was an error connecting to PayPal. Please try again." +msgstr "Il y a eu une erreur de connexion à PayPal S’il vous plaît essayer de nouveau." + +#: includes/common/payment-gateways/payfast.php:344 +msgid "This setting will log all PayFast communication to the \"payfast.log\" file." +msgstr "Ce paramètre enregistrera toutes les communications de PayFast dans le fichier \"payfast.log\"." + +#: includes/common/payment-gateways/payfast.php:342 +msgid "Log Debugging Info?" +msgstr "Journal d'Informations de Débogage ?" + +#: includes/common/payment-gateways/payfast.php:335 +msgid "DO NOT INPUT A VALUE UNLESS YOU HAVE SET ONE IN THE SETTINGS SECTION OF YOUR PAYFAST SETTINGS." +msgstr "NE PAS SAISIR UNE VALEUR SAUF SI VOUS EN AVEZ DÉFINIE UNE DANS LA SECTION PARAMÈTRES DE RÉGLAGES GÉNÉRAUX DE PAYFAST." + +#: includes/common/payment-gateways/payfast.php:333 +msgid "PayFast Passphrase" +msgstr "PayFast Passphrase" + +#: includes/common/payment-gateways/payfast.php:323 +msgid "You can find your credentials on your integration page." +msgstr "Vous pouvez trouver vos informations d'identification sur votre page d'intégration." + +#: includes/common/payment-gateways/payfast.php:321 +msgid "PayFast Merchant Credentials" +msgstr "Informations d'Identification de Marchand PayFast" + +#: includes/common/payment-gateways/payfast.php:311 +msgid "PayFast Mode" +msgstr "Mode PayFast" + +#: includes/common/payment-gateways/payfast.php:308 +msgid "PayFast is a payments processing service for South Africa. We make it safe for buyers to send money and easy for sellers to receive money. More Info »" +msgstr "PayFast est un service de traitement des paiements pour l'Afrique du Sud. Nous faisons en sorte que les acheteurs puissent envoyer de l'argent en toute sécurité et que les vendeurs puissent facilement recevoir de l'argent. Plus d'Infos »" + +#: includes/common/payment-gateways/payfast.php:306 +msgid "PayFast Checkout Settings" +msgstr "Paramètres de PayFast Checkout" + +#: includes/common/payment-gateways/payfast.php:285 +msgid "Your payment via PayFast for this order totaling %s is complete. The transaction number is %s." +msgstr "Votre paiement via PayFast pour cette commande totalisant %s est complet. Le numéro de transaction est %s." + +#: includes/common/payment-gateways/payfast.php:278 +msgid "Your payment via PayFast for this order totaling %s is not yet complete. Here is the latest status:" +msgstr "Votre paiement via PayFast pour cette commande totalisant %s n'est pas encore complet. Voici le dernier Statut :" + +#: includes/common/payment-gateways/payfast.php:124 +msgid "Your PayFast transaction has been canceled." +msgstr "Votre transaction PayFast a été annulée." + +#: includes/common/payment-gateways/payfast.php:82 +#: includes/common/payment-gateways/payfast.php:83 +msgid "PayFast" +msgstr "PayFast" + +#: includes/common/payment-gateways/mollie.php:157 +msgid "API error: - \"%s\"" +msgstr "Erreur de l'API : - \"%s\" " + +#: includes/common/payment-gateways/mollie.php:198 +msgid "The payment request is under process" +msgstr "La demande de paiement est en cours" + +#: includes/common/payment-gateways/mollie.php:140 +msgid "Order: #" +msgstr "Commande: #" + +#: includes/common/payment-gateways/mollie.php:116 +msgid "You will be redirected to the Mollie site to finalize your payment." +msgstr "Vous allez être redirigé vers le site de Mollie pour finaliser votre paiement." + +#: includes/common/payment-gateways/mollie.php:73 +msgid "%sMollie%s provides a fully PCI Compliant and secure way to collect payments via iDeal, Credit Card, Bancontact / Mister Cash, SOFORT Banking, Overbooking, Bitcoin, PayPal, paysafecard and AcceptEmail." +msgstr "%sMollie%s fournit un moyen entièrement compatible PCI et sécurisé pour collecter des paiements via iDeal, Carte de Crédit, Bancontact / Mister Cash, SOFORT Banking, Overbooking, Bitcoin, PayPal, paysafecard et AcceptEmail." + +#: includes/common/payment-gateways/mollie.php:53 +#: includes/common/payment-gateways/mollie.php:54 +#: includes/common/payment-gateways/mollie.php:195 +#: includes/common/payment-gateways/mollie.php:245 +msgid "Mollie" +msgstr "Mollie" + +#: includes/common/payment-gateways/mollie.php:50 +#: includes/common/payment-gateways/paymill.php:56 +#: includes/common/payment-gateways/paypal-chained-payments.php:72 +#: includes/common/payment-gateways/pin.php:60 +#: includes/common/payment-gateways/skrill.php:64 +#: includes/common/payment-gateways/stripe.php:92 +msgid "EUR - Euro" +msgstr "EUR - Euro" + +#: includes/common/payment-gateways/mijireh.php:306 +msgid "Access Key" +msgstr "Clé d'accès" + +#: includes/common/payment-gateways/mijireh.php:300 +msgid "You must login to the Mijireh.com dashboard to obtain the Access Key." +msgstr "Vous devez vous connecter sur le tableau de bord de Mijireh.com pour obtenir la Clé d'Accès." + +#: includes/common/payment-gateways/mijireh.php:299 +msgid "Credentials" +msgstr "Codes d’accès" + +#: includes/common/payment-gateways/mijireh.php:289 +msgid "Mijireh Checkout provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site." +msgstr "Mijireh Checkout fournit un PCI conforme, un moyen sûr de recueillir et de transmettre les données de carte de crédit à votre passerelle de paiement tout en vous gardant en contrôle dans la conception de votre site." + +#: includes/common/payment-gateways/mijireh.php:269 +msgid "Mijireh Error: " +msgstr "Erreur Mijireh : " + +#: includes/common/payment-gateways/mijireh.php:89 +msgid "You will be redirected to the Mijireh.com site to finalize your payment." +msgstr "Vous allez être redirigé vers le site Mijireh.com afin de finaliser votre paiement." + +#: includes/common/payment-gateways/mijireh.php:87 +msgid "Your Mijireh transaction has been canceled." +msgstr "Votre transaction Mijireh a été annulée." + +#: includes/common/payment-gateways/mijireh.php:42 +#: includes/common/payment-gateways/mijireh.php:43 +#: includes/common/payment-gateways/mijireh.php:324 +msgid "Mijireh" +msgstr "Mijireh" + +#: includes/common/payment-gateways/manual-payments.php:145 +msgid "These are the manual payment instructions to display on the payments screen." +msgstr "Ce sont les instructions de paiement manuel à afficher sur l'écran de paiement." + +#: includes/common/payment-gateways/free_orders.php:189 +msgid "This is the email text to send to those who have made free order checkouts. You should include your free order instructions / information here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "Ceci est le texte de l'email à envoyer à ceux qui ont effectué des \"paiement\" de commande gratuite. Vous devez inclure vos instructions / informations de commande gratuite ici. Il remplace l'e-mail de paiement de commande par défaut. Ces codes seront remplacés par les détails de la commande : CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. Pas de HTML autorisés." + +#: includes/common/payment-gateways/free_orders.php:183 +msgid "This is the free order information to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "Il s'agit des informations de commande gratuite à afficher sur l'écran de confirmation de commande. TOTAL sera remplacé par le total de la commande." + +#: includes/common/payment-gateways/free_orders.php:182 +msgid "Confirmation User Information" +msgstr "Confirmation des Informations Utilisateur" + +#: includes/common/payment-gateways/free_orders.php:177 +msgid "This is the information to display on the payments screen." +msgstr "Ce sont les informations à afficher sur l'écran de paiement." + +#: includes/common/payment-gateways/free_orders.php:163 +msgid "If enabled, all free orders will be automatically marked as paid." +msgstr "Si activé, toutes les commandes gratuites seront automatiquement marquées comme payées." + +#: includes/common/payment-gateways/free_orders.php:159 +msgid "Payment Status" +msgstr "Statut du paiement" + +#: includes/common/payment-gateways/free_orders.php:149 +msgid "This gateway is automatically activated if order totalling 0 and it can't be disabled" +msgstr "Cette passerelle est automatiquement activée si la commande totalise 0 et elle ne peut pas être désactivée" + +#: includes/common/payment-gateways/free_orders.php:35 +#: includes/common/payment-gateways/free_orders.php:36 +#: includes/common/payment-gateways/free_orders.php:89 +msgid "Free Order" +msgstr "Commande gratuite" + +#: includes/common/payment-gateways/free_orders.php:34 +#: includes/common/payment-gateways/free_orders.php:197 +msgid "Free Orders" +msgstr "Commandes gratuites" + +#: includes/common/payment-gateways/eway31.php:515 +msgid "Sandbox API Credentials" +msgstr "Informations d'identification de la sandbox API" + +#: includes/common/payment-gateways/eway31.php:266 +#: includes/common/payment-gateways/eway31.php:542 +msgid "eWay Rapid 3.1 Payments (beta)" +msgstr "eWay Rapide 3.1 Paiements (bêta)" + +#: includes/common/payment-gateways/eway.php:403 +msgid "Hosted Payment Page Language" +msgstr "Langue de la Page de Paiement Hébergée" + +#: includes/common/payment-gateways/eway.php:373 +msgid "Note when testing in sandbox mode it will use the default eWay test API credentials. Also, please note that cart total needs to be a whole number (e.g. 10.00) in order to generate a successful transaction, otherwise the transaction will fail." +msgstr "Notez que lors du test en mode sandbox, cela utilisera les informations d'identification de l'API de test eWay par défaut. Notez également que le total du panier doit être un nombre entier (par exemple 10.00) afin de générer une transaction réussie, sinon la transaction échouera." + +#: includes/common/payment-gateways/eway.php:267 +msgid "You will be redirected to https://www.eway.com.au to finalize your payment." +msgstr "Vous allez être redirigé vers https://www.eway.com.au pour effectuer votre règlement " + +#: includes/common/payment-gateways/class-mp-gateway-api.php:380 +msgid "You have chosen to checkout using %s. Please confirm your order details and click \"Submit Order\" when finished." +msgstr "Vous avez sélectionné de payer à l'aide de %s. S'il vous plaît confirmer les détails de votre commande et cliquez sur \"Soumettre la commande\" lorsque vous avez terminé." + +#: includes/common/payment-gateways/class-mp-gateway-api.php:272 +#: includes/common/payment-gateways/paymill.php:131 +#: includes/common/payment-gateways/stripe.php:231 +msgid "Security Code " +msgstr "Code de Sécurité " + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Enter in MM/YYYY or MM/YY format" +msgstr "Entrer au format MM/AAAA ou MM/AA" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Expiration" +msgstr "Expiration" + +#: includes/common/payment-gateways/authorizenet-aim.php:321 +msgid "Delim Data" +msgstr "Données Délimitées" + +#: includes/common/payment-gateways/authorizenet-aim.php:307 +#: includes/common/payment-gateways/paypal-payflow.php:456 +msgid "This text will appear as the footer of the email receipt sent to the customer." +msgstr "Ce texte apparaîtra en pied de page de l'email de reçu envoyé au client." + +#: includes/common/payment-gateways/authorizenet-aim.php:287 +#: includes/common/payment-gateways/paypal-payflow.php:440 +msgid "Email Customer (on success)" +msgstr "Envoyer un Email au Client (en cas de succès)" + +#: includes/common/payment-gateways/authorizenet-aim.php:278 +msgid "Authorize.net default is \",\". Otherwise, get this from your credit card processor. If the transactions are not going through, this character is most likely wrong." +msgstr "Celui de Authorize.net par défaut est \",\". Sinon, obtenez-le de votre processeur de carte de crédit. Si les transactions ne passent pas, ce caractère est probablement faux." + +#: includes/common/payment-gateways/authorizenet-aim.php:277 +msgid "Delimeter Character" +msgstr "Caractère Délimiteur" + +#: includes/common/payment-gateways/authorizenet-aim.php:193 +msgid "Held For Review" +msgstr "Tenu Pour Évaluation" + +#: includes/common/payment-gateways/_ideal.php:310 +#: includes/common/payment-gateways/payfast.php:314 +msgid "Test" +msgstr "Test" + +#: includes/common/payment-gateways/_ideal.php:300 +#: includes/common/payment-gateways/pin.php:170 +#: includes/common/payment-gateways/stripe.php:272 +msgid "Secret Key" +msgstr "Clé secrète" + +#: includes/common/payment-gateways/_ideal.php:283 +msgid "Select Your Bank" +msgstr "Sélectionnez votre banque" + +#: includes/common/payment-gateways/_ideal.php:97 +msgid "Your payment will be processed by the iDEAL network" +msgstr "Votre paiement sera traité par le réseau iDEAL" + +#: includes/common/payment-gateways/_cubepoints.php:208 +msgid "These are the CubePoints to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "Ce sont les CubePoints à afficher sur l'écran de confirmation de commande. TOTAL sera remplacé par le total de la commande." + +#: includes/common/payment-gateways/_cubepoints.php:203 +msgid "These are the CubePoints instructions to display on the payments screen." +msgstr "Ce sont les instructions CubePoints à afficher sur l'écran des paiements." + +#: includes/common/payment-gateways/_bitpay.php:266 +msgid "If enabled, all API calls will be made to https://test.bitpay.com." +msgstr "Si activé, tous les appels API seront effectués à https://test.bitpay.com." + +#: includes/common/payment-gateways/_bitpay.php:263 +msgid "Use Test Mode?" +msgstr "Utilisez le Mode Test ?" + +#: includes/common/payment-gateways/_bitpay.php:259 +msgid "If checked, response fron bitpay will be stored in log file, keep it disabled unless required." +msgstr "Si coché, la réponse de bitpay sera stockée dans le fichier journal, gardez-la désactivée sauf si nécessaire." + +#: includes/common/payment-gateways/_bitpay.php:256 +msgid "Enable Debug Log" +msgstr "Activer le mode déboguage" + +#: includes/common/payment-gateways/_bitpay.php:249 +msgid "Full Notifications" +msgstr "Notifications Complètes" + +#: includes/common/payment-gateways/_bitpay.php:231 +#: includes/common/payment-gateways/eway31.php:499 +#: includes/common/payment-gateways/eway31.php:526 +#: includes/common/payment-gateways/mollie.php:83 +#: includes/common/shipping-modules/mp-fedex.php:269 +msgid "API Key" +msgstr "Clé API" + +#: includes/common/payment-gateways/_bitpay.php:222 +msgid "You can now accept a payment from any country on Earth, with no risk of fraud. To use Bitpay, you need to signup on Bitpay. \\n After completing the signup process, you can get api keys at Bitpay API key. You can read more about Bitpay at Bitpay API. \\n Bitpay requires SSL(https) for payment notifications to work." +msgstr "Vous pouvez désormais accepter un paiement de n'importe quel pays sur Terre, sans risque de fraude. Pour utiliser Bitpay, vous devez vous inscrire sur Bitpay. \\n Après avoir terminé le processus d'inscription, vous pouvez obtenir des clés api à Bitpay API key. Vous pouvez en savoir plus sur Bitpay à Bitpay API. \\n Bitpay nécessite SSL (https) pour que les notifications de paiement fonctionnent. " + +#: includes/common/payment-gateways/_bitpay.php:61 +msgid "You will be redirected to bitpay.com, for bitcoin payment. It is completely safe." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:346 +msgid "You must login to the 2Checkout vendor dashboard to obtain the seller ID and secret word. Instructions »" +msgstr "Connectez-vous à votre tableau de bord 2Checkout pour obtenir l'ID de vendeur et mot secret. Instructions »" + +#: includes/common/payment-gateways/2checkout.php:345 +#: includes/common/payment-gateways/authorizenet-aim.php:239 +#: includes/common/payment-gateways/paymill.php:168 +#: includes/common/payment-gateways/paypal-express.php:704 +#: includes/common/payment-gateways/simplify.php:80 +#: includes/common/payment-gateways/stripe.php:265 +#: includes/common/payment-gateways/wepay.php:158 +msgid "API Credentials" +msgstr "Informations d'identification API" + +#: includes/common/payment-gateways/2checkout.php:325 +#: includes/common/payment-gateways/_bitpay.php:220 +#: includes/common/payment-gateways/_cubepoints.php:185 +#: includes/common/payment-gateways/_ideal.php:268 +#: includes/common/payment-gateways/_payway.php:255 +#: includes/common/payment-gateways/authorizenet-aim.php:219 +#: includes/common/payment-gateways/eway.php:352 +#: includes/common/payment-gateways/eway31.php:460 +#: includes/common/payment-gateways/free_orders.php:147 +#: includes/common/payment-gateways/manual-payments.php:126 +#: includes/common/payment-gateways/mijireh.php:287 +#: includes/common/payment-gateways/mollie.php:71 +#: includes/common/payment-gateways/paymill.php:149 +#: includes/common/payment-gateways/paypal-chained-payments.php:344 +#: includes/common/payment-gateways/paypal-payflow.php:376 +#: includes/common/payment-gateways/pin.php:145 +#: includes/common/payment-gateways/simplify.php:69 +#: includes/common/payment-gateways/skrill.php:121 +#: includes/common/payment-gateways/stripe.php:249 +#: includes/common/payment-gateways/wepay.php:119 +#: includes/common/shipping-modules/mp-fedex.php:243 +#: includes/common/shipping-modules/mp-flat-rate.php:63 +#: includes/common/shipping-modules/mp-pickup.php:140 +#: includes/common/shipping-modules/mp-table-rate.php:94 +#: includes/common/shipping-modules/mp-ups.php:122 +#: includes/common/shipping-modules/mp-usps.php:167 +#: includes/common/shipping-modules/mp-weight-rate.php:110 +msgid "%s Settings" +msgstr "Réglages %s" + +#: includes/common/payment-gateways/2checkout.php:136 +msgid "You will be redirected to the 2Checkout site to finalize your payment." +msgstr "Vous serez redirigé vers le site 2Checkout pour finaliser votre paiement." + +#: includes/common/helpers.php:169 includes/public/class-mp-checkout.php:1277 +msgid "Billing" +msgstr "Facturation" + +#: includes/common/helpers.php:144 +msgid "FREE" +msgstr "GRATUIT" + +#: includes/common/helpers.php:134 +msgid "Coupons:" +msgstr "Coupons :" + +#: includes/common/helpers.php:95 +msgid "Qty" +msgstr "Qté" + +#: includes/common/helpers.php:94 +msgid "Sku" +msgstr "Sku" + +#: includes/common/data.php:59 +msgid "Zip Code" +msgstr "Code postal" + +#: includes/common/class-mp-taxes.php:336 +msgid "Standard Table" +msgstr "Table standard" + +#: includes/common/class-mp-product.php:2698 +msgid "Tweet" +msgstr "Tweet" + +#: includes/common/class-mp-product.php:2321 +msgid "Notification Preferences: %s" +msgstr "Préférences de Notification : %s" + +#: includes/common/class-mp-product.php:2320 +msgid "Edit Product: %s" +msgstr "Modifier le Produit : %s" + +#: includes/common/class-mp-product.php:2318 +msgid "Link: %s

    " +msgstr "Lien: %s

    " + +#: includes/common/class-mp-product.php:2317 +msgid "Current Inventory: %s" +msgstr "Inventaire Actuel : %s" + +#: includes/common/class-mp-product.php:2316 +msgid "Product: %s" +msgstr "Produit :%s" + +#: includes/common/class-mp-product.php:2314 +msgid "This message is being sent to notify you of low stock of a product in your online store according to your preferences.

    " +msgstr "Ce message vous alerte du faible niveau de stock d'un produit de votre boutique en ligne en fonction de vos préférences.

    " + +#: includes/common/class-mp-product.php:1817 +msgid "" +msgstr "" + +#: includes/common/class-mp-product.php:1427 +#: includes/common/class-mp-product.php:1430 +msgid "(tax incl.)" +msgstr "(taxe incl.)" + +#: includes/common/class-mp-product.php:1422 +#: includes/common/class-mp-product.php:1425 +msgid "(tax excl.)" +msgstr "(taxe excl.)" + +#: includes/common/class-mp-product.php:1300 +#: includes/common/class-mp-product.php:1315 +msgid "%s each" +msgstr "%s chacun" + +#: includes/common/class-mp-product.php:988 +msgid "Choose Options" +msgstr "Choix des options" + +#: includes/common/class-mp-product.php:526 +msgid "Choose a %s" +msgstr "Choix de %s" + +#: includes/common/class-mp-product.php:284 +#: includes/common/class-mp-product.php:292 +#: includes/common/class-mp-product.php:615 +msgid "We're sorry, we only have %d of this item in stock right now." +msgstr "Désolé, nous n'avons que %d de ce produit en stock pour le moment." + +#: includes/common/class-mp-order.php:1456 +msgid "Shipped: Track Shipment" +msgstr "Expédié: Suivi d'Expédition" + +#: includes/common/class-mp-order.php:1049 +msgid "Order Received" +msgstr "Commande Reçue" + +#: includes/common/class-mp-order.php:1014 +msgid "In Process" +msgstr "En cours" + +#: includes/common/class-mp-order.php:969 +msgid "Order #" +msgstr "Commande #" + +#: includes/common/class-mp-order.php:866 +msgid "Copy billing address to shipping address" +msgstr "Copiez l'adresse de facturation à l'adresse de livraison" + +#: includes/common/class-mp-order.php:822 +#: includes/public/class-mp-checkout.php:1314 +msgid "Special Instructions" +msgstr "Instructions Particulières" + +#: includes/common/class-mp-order.php:817 +#: includes/common/payment-gateways/stripe.php:335 +msgid "Email" +msgstr "E-mail" + +#: includes/common/class-mp-order.php:813 +#: includes/common/payment-gateways/stripe.php:341 +#: includes/public/class-mp-checkout.php:416 +msgid "Phone" +msgstr "Téléphone" + +#: includes/common/class-mp-order.php:791 +#: includes/common/payment-gateways/stripe.php:337 +msgid "State" +msgstr "Province/Région" + +#: includes/common/class-mp-order.php:776 +msgid "Address 1" +msgstr "Adresse 1" + +#: includes/common/class-mp-order.php:766 +msgid "Last Name" +msgstr "Nom de Famille" + +#: includes/common/class-mp-order.php:762 +msgid "First Name" +msgstr "Prénom" + +#: includes/common/class-mp-installer.php:677 +msgid "MarketPress requires a database update to continue working correctly. Go to update page" +msgstr "ProfitsBoutik nécessite une mise à jour de base de données pour continuer à fonctionner correctement. Allez mettre à jour la page" + +#: includes/common/class-mp-installer.php:657 +msgid "MarketPress performed a quick automatic update successfully!" +msgstr "ProfitsBoutik a exécuté une rapide mise à jour automatique !" + +#: includes/common/class-mp-installer.php:653 +msgid "Perform Update" +msgstr "Effectuer la Mise à Jour" + +#: includes/common/class-mp-installer.php:647 +msgid "Please update each subsite in your WordPress network where you have older version of the MarketPress plugin." +msgstr "SVP, Veuillez mettre à jour chaque sous-site dans votre réseau WordPress où vous avez une version antérieure du plugin ProfitsBoutik." + +#: includes/common/class-mp-installer.php:641 +msgid "Depending on the amount of products you have, this update could take quite some time. Please keep this window open while the update completes. If you have products with multiple variations, the progress bar may move slower, please don't exit the window." +msgstr "Selon la quantité de produits que vous avez, cette mise à jour peut prendre un certain temps. S'il vous plaît, garder cette fenêtre ouverte jusqu'à ce que la mise à jour soit terminée. Si vous avez des produits avec de multiples variantes, la barre de progression peut se déplacer plus lentement. S'il vous plaît, soyez patient(e) et ne fermez pas la fenêtre." + +#: includes/common/class-mp-installer.php:632 +msgid "Product Metadata" +msgstr "Métadonnées de Produit" + +#: includes/common/class-mp-installer.php:601 +msgid "MarketPress requires a database update to continue working correctly.
    Below you will find a list of items that require your attention." +msgstr "" + +#: includes/common/class-mp-installer.php:600 +msgid "Update MarketPress Data" +msgstr "Mise à jour des données ProfitsBoutik" + +#: includes/common/class-mp-installer.php:530 +msgid "Update Data" +msgstr "Mise à jour des données" + +#: includes/common/class-mp-installer.php:67 +msgid "Complete!" +msgstr "Terminé !" + +#: includes/common/class-mp-installer.php:66 +msgid "Upgrading Database...Please Wait..." +msgstr "Mise à niveau de la base de données... Veuillez patienter..." + +#: includes/common/class-mp-installer.php:64 +msgid "An error occurred while updating. Please refresh this page and try again." +msgstr "Une erreur est survenue lors de la mise à jour. S'il vous plaît rafraîchir la page et essayez à nouveau." + +#: includes/common/class-mp-cart.php:2447 +msgid "Some items in your cart have fallen below the quantity you currently have in your cart. We have adjusted the quantity in your cart automatically." +msgstr "Quelques articles dans votre panier sont tombés en dessous de la quantité que vous avez actuellement dans votre panier. Nous avons ajusté automatiquement la quantité dans votre panier." + +#: includes/common/class-mp-cart.php:2443 +msgid "Some items in your cart are no longer available. We have removed these items from your cart automatically." +msgstr "Certains articles dans votre panier ne sont plus disponibles. Nous avons supprimé automatiquement ces éléments de votre panier." + +#: includes/common/class-mp-cart.php:1566 +msgid "item" +msgstr "article" + +#: includes/common/class-mp-cart.php:1563 +#: includes/common/class-mp-cart.php:1568 +msgid "items" +msgstr "articles" + +#: includes/common/class-mp-cart.php:1363 +msgid "Items/Products added to Cart will show here." +msgstr "Articles / Produits ajoutés au panier seront présentés ici." + +#: includes/common/class-mp-cart.php:1362 +msgid "Your shopping cart is empty." +msgstr "Votre panier est vide." + +#: includes/common/class-mp-cart.php:1357 +msgid "View Cart" +msgstr "Voir le panier" + +#: includes/common/class-mp-cart.php:1241 +#: includes/common/class-mp-cart.php:1298 +#: includes/public/class-mp-short-codes.php:159 +msgid "Adding..." +msgstr "Ajout en cours..." + +#: includes/common/class-mp-cart.php:1033 +msgid "Continue Shopping?" +msgstr "Continuer vos achats?" + +#: includes/common/class-mp-cart.php:961 +msgid "Secure Checkout
    Shopping is always safe and secure." +msgstr "Paiement sécurisé
    Le shopping est toujours sûr et sécurisé." + +#: includes/common/class-mp-cart.php:959 +msgid "You are about to submit your order!
    Please review your order details before continuing. You will be charged immediately upon clicking \"Submit Order\"." +msgstr "Vous êtes sur le point de soumettre votre commande !
    Veuillez vérifier les détails de votre commande avant de continuer. Vous serez débité immédiatement en cliquant sur \"Soumettre la commande\"." + +#: includes/common/class-mp-cart.php:956 +msgid "Continue »" +msgstr "Continuer »" + +#: includes/common/class-mp-cart.php:955 +msgid "Submit Order" +msgstr "Enregistrer la commande" + +#: includes/common/class-mp-cart.php:818 +msgid "There are no items in your cart - go add some !" +msgstr "Il n'y a aucun article/produit dans votre panier - allez en ajouter !" + +#: includes/common/class-mp-cart.php:816 +msgid "The cart is disabled." +msgstr "Le panier est désactivé." + +#: includes/common/class-mp-cart.php:735 +msgid "Estimated %s" +msgstr "%s estimatif" + +#: includes/common/class-mp-cart.php:717 +msgid "Estimated Shipping" +msgstr "Frais de livraison estimatifs" + +#: includes/common/class-mp-cart.php:697 +msgid "Product Total" +msgstr "Total des Produits" + +#: includes/common/class-mp-cart.php:670 includes/common/class-mp-cart.php:672 +msgid "Estimated Total (%s, %s)" +msgstr "Total estimatif (%s, %s)" + +#: includes/common/class-mp-cart.php:668 +msgid "Estimated Total (%s)" +msgstr "Total estimatif (%s)" + +#: includes/common/class-mp-cart.php:666 includes/common/class-mp-cart.php:752 +msgid "Estimated Total" +msgstr "Total estimatif" + +#: includes/admin/widgets/product-list.php:247 +msgid "Show Thumbnail Placeholder image (if image is not set)" +msgstr "Voir la Vignette/Miniature Par Défaut à la place de l'image (si l'image n'est pas définie)" + +#: includes/admin/widgets/cart.php:73 +msgid "Display product price" +msgstr "Afficher le prix du produit" + +#: includes/admin/widgets/cart.php:71 +msgid "Display product quantity" +msgstr "Afficher la quantité de produit" + +#: includes/admin/widgets/cart.php:69 +msgid "Display product image" +msgstr "Afficher l'image du produit" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:93 +msgid "General Shipping Settings" +msgstr "Paramètres Généraux d’Expédition" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:773 +msgid "If you are having conflicts with the lightbox library from your theme or another plugin you should uncheck this." +msgstr "Si vous avez des conflits avec la bibliothèque lightbox de votre thème ou un autre plugin, vous devez désélectionner cela." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:772 +msgid "Use Built-In Lightbox for Images?" +msgstr "Utiliser la lightbox intégrée pour les Images ?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:762 +msgid "Disable Large Image Display?" +msgstr "Désactiver l'Affichage d'une Grande Image ?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:688 +msgid "Show Product Image?" +msgstr "Afficher l’Image du Produit?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:682 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:684 +msgid "Show Tags List?" +msgstr "Afficher la Liste des Mots-Clés?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:676 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:678 +msgid "Show Categories List?" +msgstr "Montrer la Liste des Catégories ?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:671 +msgid "If enabled, description excerpt will be added above Add to cart." +msgstr "Si activé, l'extrait de la description sera ajouté au-dessus de Ajouter au Panier." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:669 +msgid "Show Excerpt?" +msgstr "Voir l’extrait?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:665 +msgid "If enabled, users will be able to choose how many of the product they want to purchase before adding to their cart. If not checked, quantity could be change later on the cart page." +msgstr "Si activé, les utilisateurs seront en mesure de choisir le nombre du même produit qu'ils veulent acheter, avant de l'ajouter à leur panier. Si non coché, la quantité peut être modifiée ultérieurement sur la page du panier." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:663 +msgid "Show Quantity Field?" +msgstr "Afficher le Champ de Quantité ?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:649 +msgid "Settings related to the display of individual product pages." +msgstr "Paramètres liés à l'affichage de pages de produit individuel." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:648 +msgid "Product Page Settings" +msgstr "Paramètres de page produit" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:605 +msgid "Related Products Layout" +msgstr "Mise en Page des Produits Similaires/Relatifs" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:573 +msgid "Show Related Products?" +msgstr "Afficher des Produits Relatifs ?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:568 +msgid "Related Product Settings" +msgstr "Paramètres de Produit Relatif" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:549 +msgid "Order Status Entries Per Page" +msgstr "Entrées de Statut de Commande Par Page" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:510 +msgid "Sort Products By" +msgstr "Trier les produits par" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:497 +msgid "Products Per Page" +msgstr "Produits par page" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:492 +msgid "Paginate Products?" +msgstr "Paginer les Produits ?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:478 +msgid "Excerpts Length" +msgstr "Longueur des Extraits" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:473 +msgid "Show Excerpts?" +msgstr "Afficher les extraits ?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:450 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:746 +msgid "Image Alignment" +msgstr "Alignement de l’image" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:412 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:708 +msgid "Custom Image Size" +msgstr "Taille d'image personnalisée" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:401 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:697 +msgid "Large - %s" +msgstr "Grand - %s" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:400 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:696 +msgid "Medium - %s" +msgstr "Moyen - %s" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:399 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:695 +msgid "Thumbnail - %s" +msgstr "Vignette/Miniature - %s" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:397 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:693 +msgid "Image Size" +msgstr "Taille de l'image" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:386 +msgid "Select default placeholder image thumbnail when product image is not available (if empty, plugin's built-in image will be used)" +msgstr "Sélectionnez la vignette d'image par défaut lorsque l'image du produit n'est pas disponible (si vide, l'image intégrée du plugin sera utilisée)" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:380 +msgid "Show default product placeholder thumbnail when product image is not available?" +msgstr "Montrer la miniature par défaut (vignette \"placeholder\") de produit, lorsque l'image du produit n'est pas disponible ?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:374 +msgid "Show Product Thumbnail?" +msgstr "Afficher la Miniature du Produit ?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:369 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:658 +msgid "Redirect to cart page for immediate checkout" +msgstr "Rediriger sur la page du panier pour un paiement immédiat" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:368 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:657 +msgid "Stay on current product page" +msgstr "Restez à la page du produit actuel" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:366 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:655 +msgid "MarketPress supports two \"flows\" for adding products to the shopping cart. After adding a product to their cart, two things can happen:" +msgstr "ProfitsBoutik prend en charge deux \"flux\" pour ajouter des produits au panier. Après que les clients aient ajouté un produit à leur panier, deux choses peuvent se produire :" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:365 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:654 +msgid "Add To Cart Action" +msgstr "Action Ajouter au Panier" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:355 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:628 +msgid "Four" +msgstr "Quatre" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:354 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:627 +msgid "Three" +msgstr "Trois" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:353 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:626 +msgid "Two" +msgstr "Deux" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:625 +msgid "One" +msgstr "Un" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:349 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:622 +msgid "Set the number of products that show up in a grid row to best fit your theme" +msgstr "Définir le nombre de produits qui s'affichent dans une ligne de la grille de permettre un meilleur ajustement à votre thème" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:348 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:621 +msgid "How many products per row?" +msgstr "Combien de produits par ligne ?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:342 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:609 +msgid "Display as grid" +msgstr "Afficher sous forme de grille" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:341 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:608 +msgid "Display as list" +msgstr "Afficher sous forme de liste" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:339 +msgid "Product Layout" +msgstr "Mise en page du produit" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:334 +msgid "Settings related to the display of product lists/grids." +msgstr "Paramètres liés à l'affichage de listes/grilles de produit." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:333 +msgid "Product List/Grid Settings" +msgstr "Liste des Produits/Paramètres de la Grille" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:314 +msgid "Show Twitter Button" +msgstr "Afficher le bouton Twitter" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:309 +msgid "Twitter" +msgstr "Twitter" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:303 +msgid "Show Share Button" +msgstr "Afficher le bouton Partager" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:297 +msgid "Recommend" +msgstr "Recommander" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:296 +msgid "Like" +msgstr "J'aime" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:294 +msgid "Action" +msgstr "Action" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:283 +msgid "Show Facebook Like Button" +msgstr "Afficher le bouton \"Like\" de Facebook" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:278 +msgid "Facebook" +msgstr "Facebook" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:257 +msgid "Show \"Pin It\" Button" +msgstr "Afficher le bouton - Épingler" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:252 +msgid "Pinterest" +msgstr "Pinterest" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:246 +msgid "Social Settings" +msgstr "Paramètres des réseaux sociaux" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:193 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:202 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:211 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:220 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:229 +#: includes/multisite/class-mp-admin-multisite.php:532 +#: includes/multisite/class-mp-admin-multisite.php:541 +#: includes/multisite/class-mp-admin-multisite.php:550 +msgid "Choose a Page" +msgstr "Choisissez une page" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:191 +msgid "This page will be used as the root for your store." +msgstr "Cette page sera utilisée comme racine pour votre boutique." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:168 +#: includes/multisite/class-mp-admin-multisite.php:586 +msgid "Create Page" +msgstr "Créer une Page" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "uncropped" +msgstr "découpé" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "cropped" +msgstr "recadrée" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:87 +#: includes/multisite/class-mp-admin-multisite.php:121 +#: includes/multisite/class-mp-admin-multisite.php:620 +msgid "An error occurred while creating the store page. Please try again." +msgstr "Une erreur s'est produite lors de la création de la page de la boutique. S'il vous plaît, essayer de nouveau." + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:66 +msgid "Choose the gateway(s) that you would like to be available for checkout." +msgstr "Choisissez la passerelle(s) que vous aimeriez voir disponible pour le paiement." + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:65 +msgid "Enabled Gateways" +msgstr "Passerelles Activées" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:78 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:146 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:179 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:213 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:274 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:307 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:341 +msgid "Text" +msgstr "Texte" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:71 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:139 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:172 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:206 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:267 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:300 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:334 +msgid "Subject" +msgstr "Sujet" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:52 +msgid "Notification Email" +msgstr "Notification par email" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:510 +msgid "Enabling this option will display label `excl. tax` or `incl. tax` after price" +msgstr "L'activation de cette option affichera le libellé `Taxe excl.' ou `Taxe incl.' après le prix" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:509 +msgid "Display tax label?" +msgstr "Afficher le libellé de la taxe ?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:504 +msgid "Enabling this option will show Price + Tax, eg. if your price is 100 and your tax 20, your price will be 120" +msgstr "L'activation de cette option affichera le Prix + Taxes, par exemple: Si votre prix est de 100€ et votre taxe de 20€, votre prix sera de 120€" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:416 +#: includes/multisite/class-mp-admin-multisite.php:234 +msgid "Price Format" +msgstr "Format de prix" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:366 +msgid "Enabling this field will display a textbox on the shipping checkout page for users to enter special instructions for their order. Useful for product personalization, etc." +msgstr "Activer ce champ affiche une boite de texte sur la page de paiement d'expédition, pour les utilisateurs qui souhaitent y entrer des instructions spéciales pour leur commande. Utile pour la personnalisation de produits, etc.." + +#: includes/admin/store-settings/class-mp-store-settings-general.php:365 +msgid "Show Special Instructions Field?" +msgstr "Montrer le Champ Instructions Particulières ?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:360 +msgid "Universal" +msgstr "Universel" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:359 +msgid "Old" +msgstr "Ancien" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1167 +#: includes/admin/store-settings/class-mp-store-settings-general.php:358 +msgid "New" +msgstr "Nouveau" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:353 +msgid "If you already use Google Analytics for your website, you can track detailed ecommerce information by enabling this setting. Choose whether you are using the new asynchronous or old tracking code. Before Google Analytics can report ecommerce activity for your website, you must enable ecommerce tracking on the profile settings page for your website. Also keep in mind that some gateways do not reliably show the receipt page, so tracking may not be accurate in those cases. It is recommended to use the PayPal gateway for the most accurate data. More information »" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:347 +msgid "Do you want to display the product price on floating Mini Cart." +msgstr "Voulez-vous afficher le prix du produit sur le Mini Panier flottant." + +#: includes/admin/store-settings/class-mp-store-settings-general.php:346 +msgid "Show product price on Mini Cart?" +msgstr "Montrer le prix du produit sur le Mini Panier ?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:340 +msgid "Do you want to display the product quantity on floating Mini Cart." +msgstr "Voulez-vous afficher la quantité de produit sur le Mini Panier flottant." + +#: includes/admin/store-settings/class-mp-store-settings-general.php:339 +msgid "Show product quantity on Mini Cart?" +msgstr "Afficher la quantité de produit sur le Mini Panier?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:333 +msgid "Do you want to display the product image on floating Mini Cart." +msgstr "Voulez-vous afficher l'image de produit sur le Mini Panier flottant." + +#: includes/admin/store-settings/class-mp-store-settings-general.php:332 +msgid "Show product image on Mini Cart?" +msgstr "Montrer l'image du produit dans le Mini Panier ?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:327 +msgid "This option hide floating Mini Cart in top right corner." +msgstr "Cette option masque le Mini Panier flottant en haut à droite." + +#: includes/admin/store-settings/class-mp-store-settings-general.php:326 +msgid "Disable Mini Cart?" +msgstr "Désactiver le Mini Panier ?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:316 +msgid "If unchecked your Orders admin page will be hidden" +msgstr "Si non coché votre page d'admin de Commandes sera cachée" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:315 +msgid "Show admin Orders page?" +msgstr "Montrer la Page Commandes admin ?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:309 +msgid "Disable Cart?" +msgstr "Désactiver le Panier ?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:303 +msgid "Force Login?" +msgstr "Forcer la Connexion ?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:297 +msgid "Hide Out of Stock Products?" +msgstr "Masquer les Produits en Rupture de Stock ?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:555 +msgid "This will prevent multiples of the same downloadable product form being added to the cart." +msgstr "Cela évitera que de multiples exemplaires du même produit téléchargeable ne soient ajoutés au panier." + +#: includes/admin/store-settings/class-mp-store-settings-general.php:554 +msgid "Limit Digital Products Per-order?" +msgstr "Limiter les Produits Numériques par Commande ?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:268 +msgid "If you're having issues downloading large files and have worked with your hosting provider to increase your memory limits, try enabling this - just keep in mind, it's not as secure!" +msgstr "Si vous rencontrez des problèmes de téléchargement de gros fichiers et que vous avez travaillé avec votre hébergeur pour augmenter vos limites de mémoire, essayez d'activer ceci - Gardez à l'esprit, ce n'est pas aussi sûr en termes de sécurité !" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:267 +msgid "Use Alternative Download Method?" +msgstr "Utiliser Une Méthode Alternative de Téléchargement ?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:252 +msgid "Download Settings" +msgstr "Paramètres de Téléchargement" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:230 +msgid "Change product post type" +msgstr "Changer le type de publication de produit" + +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:51 +msgid "%s Capabilities" +msgstr "Permissions %s" + +#: includes/admin/store-settings/class-mp-store-settings-addons.php:47 +msgid "Store Settings: Add Ons: %s" +msgstr "Paramètres Boutique: Extensions: %s" + +#: includes/admin/class-mp-store-settings-admin.php:254 +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:56 +msgid "Capabilities" +msgstr "Capacités" + +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Edit Product Attribute %s" +msgstr "Modifier l'attribut Produit %s" + +#: includes/admin/class-mp-store-settings-admin.php:246 +msgid "Exporters" +msgstr "Exportateurs" + +#: includes/admin/class-mp-store-settings-admin.php:238 +msgid "Short Codes" +msgstr "Short Codes" + +#: includes/admin/class-mp-store-settings-admin.php:207 +msgid "An appropriate message for key \"%s\" could not be found." +msgstr "Un message approprié pour la touche « %s » est introuvable." + +#: includes/admin/class-mp-store-settings-admin.php:204 +msgid "Product attribute updated successfully." +msgstr "Attribut de produit mis à jour avec succès." + +#: includes/admin/class-mp-store-settings-admin.php:203 +msgid "Product attribute added successfully." +msgstr "Attribut de produit ajouté avec succès." + +#: includes/admin/class-mp-store-settings-admin.php:123 +msgid "Add Ons" +msgstr "Extensions" + +#: includes/admin/class-mp-store-settings-admin.php:123 +#: includes/admin/store-settings/class-mp-store-settings-addons.php:121 +msgid "Store Settings: Add Ons" +msgstr "Paramètres Boutique: Extensions" + +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "Store Settings: Capabilities" +msgstr "Paramètres de votre Boutique : Capacités" + +#: includes/admin/class-mp-store-settings-admin.php:118 +msgid "Store Settings: Product Tags" +msgstr "Paramètres de votre Boutique : Mots-Clés/Tags ds produits" + +#: includes/admin/class-mp-store-settings-admin.php:117 +msgid "Store Settings: Product Categories" +msgstr "Paramètres de votre Boutique : Catégories de Produit" + +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Store Settings: Product Attributes" +msgstr "Paramètres Boutique: Attributs de Produit" + +#: includes/admin/class-mp-store-settings-admin.php:115 +msgid "Store Settings: Payments" +msgstr "Paramètres de votre Boutique : Paiements" + +#: includes/admin/class-mp-store-settings-admin.php:114 +msgid "Store Settings: Shipping" +msgstr "Paramètres de votre Boutique : Livraison/Expédition" + +#: includes/admin/class-mp-store-settings-admin.php:113 +#: includes/admin/class-mp-store-settings-admin.php:226 +msgid "Notifications" +msgstr "Notifications" + +#: includes/admin/class-mp-store-settings-admin.php:113 +msgid "Store Settings: Notifications" +msgstr "Paramètres de votre Boutique : Notifications" + +#: includes/admin/class-mp-store-settings-admin.php:112 +msgid "Store Settings: Presentation" +msgstr "Paramètres Boutique: Présentation" + +#: includes/admin/class-mp-store-settings-admin.php:111 +msgid "Store Settings: General" +msgstr "Paramètres de votre Boutique : Général" + +#: includes/admin/class-mp-shortcode-builder.php:1489 +msgid "Select a Product" +msgstr "Sélectionnez un produit" + +#: includes/admin/class-mp-shortcode-builder.php:1447 +msgid "Reset to Defaults" +msgstr "Réinitialiser les paramètres par défaut" + +#: includes/admin/class-mp-shortcode-builder.php:1446 +msgid "Insert Short Code" +msgstr "Insérer le Short Code" + +#: includes/admin/class-mp-shortcode-builder.php:1202 +#: includes/admin/class-mp-shortcode-builder.php:1227 +#: includes/admin/class-mp-shortcode-builder.php:1252 +msgid "The text to show in the link." +msgstr "Le texte à afficher dans le lien." + +#: includes/admin/class-mp-shortcode-builder.php:1196 +#: includes/admin/class-mp-shortcode-builder.php:1221 +#: includes/admin/class-mp-shortcode-builder.php:1246 +msgid "Whether to return a clickable link or url." +msgstr "S'il faut retourner une url ou un lien cliquable." + +#: includes/admin/class-mp-shortcode-builder.php:1177 +msgid "Whether to display the cart only on store pages or not." +msgstr "S'il faut afficher le panier uniquement sur les pages de la boutique ou non." + +#: includes/admin/class-mp-shortcode-builder.php:1171 +msgid "Whether to show or hide the product price." +msgstr "S'il faut afficher ou masquer le prix du produit." + +#: includes/admin/class-mp-shortcode-builder.php:1165 +msgid "Whether to show or hide the product quantity." +msgstr "S'il faut afficher ou masquer la quantité de produit." + +#: includes/admin/class-mp-shortcode-builder.php:1159 +msgid "Whether to show or hide the product image." +msgstr "S'il faut afficher ou masquer l'image du produit." + +#: includes/admin/class-mp-shortcode-builder.php:1153 +msgid "The text displayed before the cart." +msgstr "Le texte affiché avant le panier." + +#: includes/admin/class-mp-shortcode-builder.php:1147 +msgid "The title of the cart." +msgstr "Le titre du panier." + +#: includes/admin/class-mp-shortcode-builder.php:1058 +#: includes/admin/class-mp-shortcode-builder.php:1121 +msgid "A label to prepend to the price." +msgstr "Un libellé à faire précéder du prix." + +#: includes/admin/class-mp-shortcode-builder.php:1032 +#: includes/admin/class-mp-shortcode-builder.php:1127 +msgid "What context for display." +msgstr "Quel contexte pour l'affichage." + +#: includes/admin/class-mp-shortcode-builder.php:1004 +msgid "Set the alignment of the image." +msgstr "Définir l'alignement de l'image." + +#: includes/admin/class-mp-shortcode-builder.php:998 +msgid "Set a custom pixel width/height. If omitted defaults to the size set by \"context\"." +msgstr "Définissez une largeur/hauteur en pixels personnalisée. Si cette valeur est omise par défaut à la taille définie par \"context\"." + +#: includes/admin/class-mp-shortcode-builder.php:993 +msgid "Widget" +msgstr "Widget" + +#: includes/admin/class-mp-shortcode-builder.php:988 +msgid "What context for preset size options." +msgstr "Quel contexte pour les options de taille prédéfinie." + +#: includes/admin/class-mp-shortcode-builder.php:982 +#: includes/admin/class-mp-shortcode-builder.php:1026 +#: includes/admin/class-mp-shortcode-builder.php:1052 +#: includes/admin/class-mp-shortcode-builder.php:1077 +#: includes/admin/class-mp-shortcode-builder.php:1096 +#: includes/admin/class-mp-shortcode-builder.php:1115 +msgid "The ID of the product." +msgstr "L'ID du produit." + +#: includes/admin/class-mp-shortcode-builder.php:963 +msgid "Whether to display the product meta (e.g. price, buy button)." +msgstr "Si vous souhaitez afficher la meta de produit (par exemple le prix, le bouton acheter)." + +#: includes/admin/class-mp-shortcode-builder.php:738 +#: includes/admin/class-mp-shortcode-builder.php:905 +#: includes/admin/class-mp-shortcode-builder.php:958 +#: includes/admin/class-mp-shortcode-builder.php:992 +#: includes/admin/class-mp-shortcode-builder.php:1035 +#: includes/admin/class-mp-shortcode-builder.php:1130 +#: includes/admin/class-mp-shortcode-builder.php:1349 +msgid "List" +msgstr "Liste" + +#: includes/admin/class-mp-shortcode-builder.php:957 +#: includes/admin/class-mp-shortcode-builder.php:991 +#: includes/admin/class-mp-shortcode-builder.php:1034 +#: includes/admin/class-mp-shortcode-builder.php:1129 +msgid "Single" +msgstr "Unique" + +#: includes/admin/class-mp-shortcode-builder.php:953 +msgid "Whether and what context of image size to display." +msgstr "Si et quel contexte de taille de l'image à afficher." + +#: includes/admin/class-mp-shortcode-builder.php:948 +msgid "Full" +msgstr "Complet" + +#: includes/admin/class-mp-shortcode-builder.php:943 +msgid "Whether and what type of content to display." +msgstr "Si et quel type de contenu à afficher." + +#: includes/admin/class-mp-shortcode-builder.php:937 +msgid "Whether to display the product title." +msgstr "Si vous souhaitez afficher le titre du produit." + +#: includes/admin/class-mp-shortcode-builder.php:931 +msgid "The ID of the product to display." +msgstr "L'ID du produit à afficher." + +#: includes/admin/class-mp-shortcode-builder.php:747 +#: includes/admin/class-mp-shortcode-builder.php:914 +msgid "Hide" +msgstr "Cacher" + +#: includes/admin/class-mp-shortcode-builder.php:746 +#: includes/admin/class-mp-shortcode-builder.php:913 +msgid "Show" +msgstr "Montrer" + +#: includes/admin/class-mp-shortcode-builder.php:744 +#: includes/admin/class-mp-shortcode-builder.php:911 +msgid "Whether or not to show the product filters." +msgstr "Indiquer ou non les filtres de produits." + +#: includes/admin/class-mp-shortcode-builder.php:724 +#: includes/admin/class-mp-shortcode-builder.php:891 +#: includes/admin/class-mp-shortcode-builder.php:1335 +msgid "Limits list to a specific product tag." +msgstr "Liste des Limites pour un tag de produit spécifique." + +#: includes/admin/class-mp-shortcode-builder.php:713 +#: includes/admin/class-mp-shortcode-builder.php:880 +#: includes/admin/class-mp-shortcode-builder.php:1324 +msgid "Limits list to a specific product category." +msgstr "Liste des Limites pour une catégorie de produit spécifique." + +#: includes/admin/class-mp-shortcode-builder.php:706 +#: includes/admin/class-mp-shortcode-builder.php:873 +#: includes/admin/class-mp-shortcode-builder.php:1317 +msgid "Direction to order products by." +msgstr "Direction de commander des produits par." + +#: includes/admin/class-mp-shortcode-builder.php:684 +#: includes/admin/class-mp-shortcode-builder.php:851 +#: includes/admin/class-mp-shortcode-builder.php:1295 +msgid "What field to order products by." +msgstr "Quel champ pour commander des produits par." + +#: includes/admin/class-mp-shortcode-builder.php:678 +#: includes/admin/class-mp-shortcode-builder.php:845 +#: includes/admin/class-mp-shortcode-builder.php:1283 +msgid "How many products to display in the product list if \"paginate\" is set to true." +msgstr "Quel nombre de produits à afficher dans la listed de produits si \"paginate\" est réglé à \"true\"." + +#: includes/admin/class-mp-shortcode-builder.php:672 +#: includes/admin/class-mp-shortcode-builder.php:839 +#: includes/admin/class-mp-shortcode-builder.php:1277 +msgid "The page number to display in the product list if \"paginate\" is set to true." +msgstr "Le numéro de page à afficher dans la liste de produits si « paginate » a la valeur \"true\"." + +#: includes/admin/class-mp-shortcode-builder.php:666 +#: includes/admin/class-mp-shortcode-builder.php:833 +#: includes/admin/class-mp-shortcode-builder.php:1271 +msgid "Whether to paginate the product list. This is useful to only show a subset." +msgstr "Pour paginer la liste de produits. Ceci est utile pour montrer seulement un sous-ensemble." + +#: includes/admin/class-mp-shortcode-builder.php:808 +msgid "How many related items to show." +msgstr "Quel nombre d'éléments relatifs à montrer." + +#: includes/admin/class-mp-shortcode-builder.php:790 +msgid "How to relate the products" +msgstr "Comment faire le lien entre les produits" + +#: includes/admin/class-mp-shortcode-builder.php:784 +msgid "The product to show related items for." +msgstr "Le produit pour afficher les articles relatifs pour." + +#: includes/admin/class-mp-shortcode-builder.php:765 +msgid "The maximum number of products to display" +msgstr "Le nombre maximum de produits à afficher" + +#: includes/admin/class-mp-shortcode-builder.php:647 +msgid "Comma separated list of tags (term_id) to include. For example, include=5,27 means tags that have the term_id 5 or 27 will be the only tags displayed. Defaults to include everything." +msgstr "Liste des tags (term_id) à inclure, séparés par des virgules. Par exemple, inclure = 5, 27 signifie que les tags qui ont le term_id 5 ou 27 seront les seuls tags affichés. Par défaut, tout inclure." + +#: includes/admin/class-mp-shortcode-builder.php:641 +msgid "Comma separated list of tags (term_id) to exclude. For example, exclude=5,27 means tags that have the term_id 5 or 27 will NOT be displayed. Defaults to exclude nothing." +msgstr "Liste des tags (term_id) à exclure, séparés par des virgules. Par exemple, exclure = 5, 27 signifie que les tags qui ont le term_id 5 ou 27 ne s'affichera PAS. Par défaut, ne rien exclure." + +#: includes/admin/class-mp-shortcode-builder.php:633 +#: includes/admin/class-mp-shortcode-builder.php:1420 +msgid "Sort order." +msgstr "Ordre de tri." + +#: includes/admin/class-mp-shortcode-builder.php:629 +#: includes/admin/class-mp-shortcode-builder.php:1416 +msgid "Count" +msgstr "Nombre" + +#: includes/admin/class-mp-shortcode-builder.php:626 +#: includes/admin/class-mp-shortcode-builder.php:1413 +msgid "Order of the tags." +msgstr "Ordre des tags." + +#: includes/admin/class-mp-shortcode-builder.php:620 +msgid "The text/space between tags)" +msgstr "Le texte / l'espace entre les tags" + +#: includes/admin/class-mp-shortcode-builder.php:616 +msgid "UL with a class of \"wp-tag-cloud\"" +msgstr "UL avec une classe de \"wp-tag-cloud\"" + +#: includes/admin/class-mp-shortcode-builder.php:615 +msgid "separated by whitespace defined by \"separator\" parameter." +msgstr "séparés par un espace défini par le paramètre « separator »." + +#: includes/admin/class-mp-shortcode-builder.php:613 +msgid "Format of the cloud display." +msgstr "Format de l'écran de nuages." + +#: includes/admin/class-mp-shortcode-builder.php:607 +msgid "The number of actual tags to display in the cloud. (Use \"0\" to display all tags.)" +msgstr "Le nombre de tags réels à afficher dans le nuage. (Utilisez « 0 » pour afficher toutes les balises.)" + +#: includes/admin/class-mp-shortcode-builder.php:601 +msgid "Unit of measure as pertains to the smallest and largest values. This can be any CSS length value, e.g. pt, px, em, %." +msgstr "Unité de mesure en qui a trait aux valeurs plus petites et plus grandes. Cela peut être n'importe quelle valeur de longueur CSS, par exemple pt, px, em, %." + +#: includes/admin/class-mp-shortcode-builder.php:595 +msgid "The text size of the tag with the largest count value (units given by unit parameter)." +msgstr "La taille du texte de la balise avec la plus grande valeur de compte (unités données par le paramètre d'unité)." + +#: includes/admin/class-mp-shortcode-builder.php:589 +msgid "The text size of the tag with the smallest count value (units given by unit parameter)." +msgstr "La taille du texte de la balise avec la plus petite valeur de compte (unités données par le paramètre d'unité)." + +#: includes/admin/class-mp-shortcode-builder.php:570 +msgid "The \"tabindex\" attribute value for select element. " +msgstr "La valeur de l'attribut « tabindex » pour l'élément selectionné. " + +#: includes/admin/class-mp-shortcode-builder.php:564 +msgid "The \"name\" attribute value for select element. " +msgstr "La valeur de l'attribut \"nom\" pour l'élément sélectionné. " + +#: includes/admin/class-mp-shortcode-builder.php:558 +msgid "The \"id\" attribute value for select element. " +msgstr "La valeur de l'attribut \"id\" pour l'élément sélectionné. " + +#: includes/admin/class-mp-shortcode-builder.php:552 +msgid "Which category ID is selected." +msgstr "Quel ID de catégorie est sélectionné." + +#: includes/admin/class-mp-shortcode-builder.php:540 +msgid "The max depth. This is ignored unless hierarchical is set to true." +msgstr "La profondeur maximum. C'est ignoré sauf si hiérarchique a la valeur \"true\"." + +#: includes/admin/class-mp-shortcode-builder.php:536 +#: includes/multisite/template-functions.php:816 +msgid "No Categories" +msgstr "Aucune catégorie" + +#: includes/admin/class-mp-shortcode-builder.php:414 +#: includes/admin/class-mp-shortcode-builder.php:546 +msgid "Calculates link or post counts by including items from child categories. If show_counts and hierarchical are true this is automatically set to true." +msgstr "Calcule le lien ou le nombre de post en incluant des éléments des catégories enfant. Si \"show_counts\" et \"hiérarchique\" sont \"true\" c'est automatiquement défini sur \"true\"." + +#: includes/admin/class-mp-shortcode-builder.php:409 +msgid "Value of n (some number) specifies the depth (or level) to descend in displaying Categories." +msgstr "Valeur de n (un nombre) spécifie la profondeur (ou niveau) pour descendre dans l'affichage des catégories." + +#: includes/admin/class-mp-shortcode-builder.php:408 +msgid "Show only top level Categories." +msgstr "Afficher uniquement les catégories de niveau supérieur." + +#: includes/admin/class-mp-shortcode-builder.php:407 +msgid "All Categories displayed in flat (no indent) form (overrides hierarchical)." +msgstr "Toutes les catégories s'affichent à plat (sans retrait) (remplace la hiérarchie)." + +#: includes/admin/class-mp-shortcode-builder.php:406 +msgid "All Categories and child Categories (Default)." +msgstr "Toutes les catégories et catégories enfants (par défaut)." + +#: includes/admin/class-mp-shortcode-builder.php:402 +msgid "This parameter controls how many levels in the hierarchy of Categories are to be included in the list of Categories. NOTE: The \"hierarchical\" argument, which is disabled by default, will override the depth argument, unless it is true. When the argument is false, it will display all of the categories. When it is enabled it will use the value in the \"depth\" argument." +msgstr "Ce paramètre contrôle combien de niveaux dans la hiérarchie des catégories doivent être inclus dans la liste des catégories. Remarque : L'argument « hiérarchique », qui est désactivé par défaut, écrasera l'argument de la profondeur, sauf s'il est \"true\". Lorsque l'argument est \"false\", il affichera toutes les catégories. Lorsqu'il est activée, il utilisera la valeur dans l'argument de la « profondeur »." + +#: includes/admin/class-mp-shortcode-builder.php:396 +#: includes/admin/class-mp-shortcode-builder.php:1394 +msgid "Sets the number of Categories to display. This causes the SQL LIMIT value to be defined." +msgstr "Définit le nombre de Catégories à afficher. Cela provoque la définition de la valeur SQL LIMIT." + +#: includes/admin/class-mp-shortcode-builder.php:390 +#: includes/admin/class-mp-shortcode-builder.php:534 +msgid "Set the text to show when no categories are listed." +msgstr "Définissez le texte à afficher lorsque aucune catégorie n'est répertoriée." + +#: includes/admin/class-mp-shortcode-builder.php:384 +msgid "Set the title and style of the outer list item. If present but empty, the outer list item will not be displayed." +msgstr "Définissez le titre et le style de l'élément de la liste externe. S'il est présent mais vide, l'élément de liste externe ne s'affichera pas." + +#: includes/admin/class-mp-shortcode-builder.php:378 +#: includes/admin/class-mp-shortcode-builder.php:528 +msgid "Display sub-categories as inner list items (below the parent list item) or inline." +msgstr "Afficher les sous-catégories en tant qu'éléments de liste interne (sous l'élément de liste parent) ou en ligne." + +#: includes/admin/class-mp-shortcode-builder.php:368 +#: includes/admin/class-mp-shortcode-builder.php:511 +msgid "Exclude category-tree from the results. The parameter include must be empty. If the hierarchical parameter is true, then use exclude instead of exclude_tree." +msgstr "Exclure l'arborescence des catégories des résultats. Le paramètre inclure doit être vide. Si le paramètre hiérarchique est \"true\", alors utilisez exclure au lieu de \"exclude_tree\"." + +#: includes/admin/class-mp-shortcode-builder.php:354 +msgid "Only include these categories." +msgstr "Inclure uniquement ces catégories." + +#: includes/admin/class-mp-shortcode-builder.php:340 +#: includes/admin/class-mp-shortcode-builder.php:356 +#: includes/admin/class-mp-shortcode-builder.php:370 +#: includes/admin/class-mp-shortcode-builder.php:496 +#: includes/admin/class-mp-shortcode-builder.php:513 +msgid "Select Categories" +msgstr "Sélectionner les catégories" + +#: includes/admin/class-mp-shortcode-builder.php:338 +#: includes/admin/class-mp-shortcode-builder.php:494 +msgid "Exclude one or more categories from the results. The parameter include must be empty." +msgstr "Exclure une ou plusieurs catégories des résultats. Le paramètre inclure doit être vide." + +#: includes/admin/class-mp-shortcode-builder.php:332 +msgid "Set a URI for an image (usually an rss feed icon) to act as a link to each categories' rss-2 feed. This parameter overrides the feed parameter. There is no default for this parameter." +msgstr "Définir une URI d'une image (généralement une icône de flux RSS) pour agir comme un lien vers chaque flux rss-2 des catégories. Ce paramètre écrase le paramètre de flux. Il n'y a aucune valeur par défaut pour ce paramètre." + +#: includes/admin/class-mp-shortcode-builder.php:320 +msgid "Display a link to each category's rss-2 feed and set the link text to display. The default is no text and no feed displayed." +msgstr "Afficher un lien pour le flux rss-2 de chaque catégorie et définir le texte du lien à afficher. La valeur par défaut est aucun texte et aucun flux affiché." + +#: includes/admin/class-mp-shortcode-builder.php:313 +#: includes/admin/class-mp-shortcode-builder.php:487 +msgid "Any" +msgstr "Tout" + +#: includes/admin/class-mp-shortcode-builder.php:307 +#: includes/admin/class-mp-shortcode-builder.php:481 +msgid "Only display categories that are children of the category identified by this parameter." +msgstr "Afficher uniquement les catégories qui sont des enfants de la catégorie identifiée par ce paramètre." + +#: includes/admin/class-mp-shortcode-builder.php:301 +msgid "Sets whether a category's description is inserted into the title attribute of the links created (i.e. <a title=\"<em>Category Description</em>\" href=\"...)." +msgstr "Détermine si la description de la catégorie est insérée dans l'attribut title des liens créés (ex: un titre=\"<em>Description de la Catégorie</em>\" href =\"...)." + +#: includes/admin/class-mp-shortcode-builder.php:295 +#: includes/admin/class-mp-shortcode-builder.php:475 +msgid "Toggles the display of categories with no posts." +msgstr "Active/désactive l'affichage des catégories avec aucun poste." + +#: includes/admin/class-mp-shortcode-builder.php:289 +#: includes/admin/class-mp-shortcode-builder.php:469 +#: includes/admin/class-mp-shortcode-builder.php:1388 +msgid "Toggles the display of the current count of posts in each category." +msgstr "Active/désactive l'affichage du nombre de publications dans chaque catégorie." + +#: includes/admin/class-mp-shortcode-builder.php:279 +msgid "Style to display the categories list in. A value of list displays the categories as list items while none generates no special display method (the list items are separated by
    tags)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:269 +#: includes/admin/class-mp-shortcode-builder.php:449 +#: includes/admin/class-mp-shortcode-builder.php:1378 +msgid "Sort order for categories (either ascending or descending)." +msgstr "Ordre de tri des catégories (ascendant ou descendant)." + +#: includes/admin/class-mp-shortcode-builder.php:259 +#: includes/admin/class-mp-shortcode-builder.php:439 +#: includes/admin/class-mp-shortcode-builder.php:1368 +msgid "Sort categories alphabetically, by unique Category ID, or by the count of posts in that Category." +msgstr "Trier les catégories par ordre alphabétique, par numéro de catégorie unique(ID) ou par nombre de publications dans cette catégorie." + +#: includes/admin/class-mp-shortcode-builder.php:253 +#: includes/admin/class-mp-shortcode-builder.php:433 +msgid "If a value is entered, causes the display of a link to all categories if the style is set to list." +msgstr "Si une valeur est entrée, cela affiche un lien vers toutes les catégories si le style est défini sur la liste." + +#: includes/admin/class-mp-shortcode-builder.php:219 +msgid "Select an Action" +msgstr "Sélectionner une Action" + +#: includes/admin/class-mp-shortcode-builder.php:217 +msgid "What would you like to do?" +msgstr "Que voulez-vous faire ?" + +#: includes/admin/class-mp-shortcode-builder.php:216 +#: includes/admin/class-mp-shortcode-builder.php:1522 +msgid "Add E-Commerce Short Code" +msgstr "Ajouter le Short-Code E-Commerce" + +#: includes/admin/class-mp-shortcode-builder.php:197 +msgid "Display a list of links to your store pages." +msgstr "Afficher une liste de liens vers vos pages de magasin." + +#: includes/admin/class-mp-shortcode-builder.php:196 +msgid "Display a link or url to the order status page." +msgstr "Afficher un lien ou une url de la page de statut de commande." + +#: includes/admin/class-mp-shortcode-builder.php:195 +msgid "Display a link or url to the current products list page." +msgstr "Afficher un lien ou une url vers la page actuelle de la liste des produits." + +#: includes/admin/class-mp-shortcode-builder.php:194 +msgid "Display a link or url to the current store page." +msgstr "Afficher un lien ou une URL vers la page actuelle de la boutique." + +#: includes/admin/class-mp-shortcode-builder.php:193 +msgid "Display a link or url to the current shopping cart page." +msgstr "Afficher un lien ou une url vers la page actuelle du panier." + +#: includes/admin/class-mp-shortcode-builder.php:192 +msgid "Display the cart widget." +msgstr "Afficher le widget de panier." + +#: includes/admin/class-mp-shortcode-builder.php:191 +msgid "Display the full product meta box with price and buy now/add to cart button." +msgstr "Afficher la pleine meta box du produit avec le prix et le bouton acheter maintenant/ajouter au panier." + +#: includes/admin/class-mp-shortcode-builder.php:190 +msgid "Display the product stock." +msgstr "Afficher le stock du produit." + +#: includes/admin/class-mp-shortcode-builder.php:189 +msgid "Display the product SKU number(s)." +msgstr "Afficher le numéro(s) SKU/UGS du produit." + +#: includes/admin/class-mp-shortcode-builder.php:188 +msgid "Display the product price (and sale price)." +msgstr "Afficher le prix des produits (et le prix de vente)." + +#: includes/admin/class-mp-shortcode-builder.php:187 +msgid "Display the buy or add to cart button." +msgstr "Afficher le bouton acheter ou ajouter au panier." + +#: includes/admin/class-mp-shortcode-builder.php:186 +msgid "Display the featured image of a given product." +msgstr "Afficher l'image en vedette d'un produit donné." + +#: includes/admin/class-mp-shortcode-builder.php:185 +msgid "Display a single product." +msgstr "Afficher un seul produit." + +#: includes/admin/class-mp-shortcode-builder.php:184 +msgid "Display a list of products according to preference." +msgstr "Afficher la liste des produits selon la préférence." + +#: includes/admin/class-mp-shortcode-builder.php:183 +msgid "Display products related to the one being viewed." +msgstr "Afficher les produits similaires/relatifs à celui en cours de visualisation." + +#: includes/admin/class-mp-shortcode-builder.php:182 +msgid "Display a list of popular products ordered by sales." +msgstr "Afficher la liste des produits populaires commandés et vendus." + +#: includes/admin/class-mp-shortcode-builder.php:180 +msgid "Display an HTML dropdown of your product categories." +msgstr "Afficher une liste déroulante HTML de vos catégories de produits." + +#: includes/admin/class-mp-shortcode-builder.php:179 +msgid "Display an HTML list of your product categories." +msgstr "Afficher une liste HTML de vos catégories de produits." + +#: includes/admin/class-mp-shortcode-builder.php:178 +msgid "Display a cloud or list of your product tags." +msgstr "Afficher un nuage ou une liste de vos mots-clés/étiquettes de produit." + +#: includes/admin/class-mp-setup-wizard.php:655 +msgid "Setup your payment gateway" +msgstr "Configurez votre passerelle de paiement" + +#: includes/admin/class-mp-setup-wizard.php:643 +#: includes/admin/class-mp-setup-wizard.php:649 +msgid "Other Gateways" +msgstr "Autres Passerelles" + +#: includes/admin/class-mp-setup-wizard.php:617 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:150 +msgid "Select which calculated shipping methods the customer will be able to choose from." +msgstr "Sélectionnez les mdes d'expédition calculées que le client pourra choisir." + +#: includes/admin/class-mp-setup-wizard.php:601 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:134 +#: includes/public/class-mp-checkout.php:82 +msgid "Shipping Method" +msgstr "Méthode d'Expédition" + +#: includes/admin/class-mp-setup-wizard.php:568 +msgid "I want to charge shipping" +msgstr "Je veux faire payer l'expédition" + +#: includes/admin/class-mp-setup-wizard.php:523 +#: includes/admin/store-settings/class-mp-store-settings-general.php:503 +msgid "Show Price + Tax?" +msgstr "Afficher le Prix + Taxe ?" + +#: includes/admin/class-mp-setup-wizard.php:507 +msgid "I.e. Taxes, VAT, GST, etc" +msgstr "Ex: Taxes, TVA, GST, etc" + +#: includes/admin/class-mp-setup-wizard.php:491 +#: includes/admin/store-settings/class-mp-store-settings-general.php:471 +msgid "Current Rates" +msgstr "Taux Actuels" + +#: includes/admin/class-mp-setup-wizard.php:473 +msgid "Default Tax Rate" +msgstr "Taux de taxes par défaut" + +#: includes/admin/class-mp-setup-wizard.php:434 +#: includes/admin/class-mp-setup-wizard.php:442 +#: includes/admin/store-settings/class-mp-store-settings-general.php:386 +#: includes/admin/store-settings/class-mp-store-settings-general.php:394 +#: includes/multisite/class-mp-admin-multisite.php:204 +#: includes/multisite/class-mp-admin-multisite.php:212 +msgid "Select a Currency" +msgstr "Sélectionnez la devise du paiement" + +#: includes/admin/class-mp-setup-wizard.php:414 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:105 +msgid "Choose Countries" +msgstr "Choisissez les Pays" + +#: includes/admin/class-mp-setup-wizard.php:411 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:103 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:104 +msgid "All Countries" +msgstr "Tous les pays" + +#: includes/admin/class-mp-setup-wizard.php:410 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:102 +msgid "These are the countries that you will ship to." +msgstr "Ce sont les pays vers lesquels vous expédierez." + +#: includes/admin/class-mp-setup-wizard.php:409 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:101 +msgid "Target Countries" +msgstr "Pays Ciblés" + +#: includes/admin/class-mp-setup-wizard.php:401 +msgid "Countries" +msgstr "Pays" + +#: includes/admin/class-mp-setup-wizard.php:387 +#: includes/admin/store-settings/class-mp-store-settings-general.php:640 +msgid "Zip/Postal Code Label" +msgstr "Libellé de Code Postal" + +#: includes/admin/class-mp-setup-wizard.php:352 +#: includes/admin/store-settings/class-mp-store-settings-general.php:606 +msgid "Select a State/Province/Region" +msgstr "Sélectionner une Dept/Province/Région" + +#: includes/admin/class-mp-setup-wizard.php:335 +#: includes/admin/store-settings/class-mp-store-settings-general.php:590 +msgid "Select A Country" +msgstr "Sélectionner un Pays" + +#: includes/admin/class-mp-setup-wizard.php:332 +#: includes/admin/store-settings/class-mp-store-settings-general.php:587 +msgid "Select a Country" +msgstr "Sélectionner un pays" + +#: includes/admin/class-mp-setup-wizard.php:324 +msgid "Location" +msgstr "Emplacement" + +#: includes/admin/class-mp-setup-wizard.php:304 +#: includes/admin/class-mp-setup-wizard.php:312 +#: includes/admin/class-mp-store-settings-admin.php:129 +#: includes/admin/class-mp-store-settings-admin.php:262 +msgid "Quick Setup" +msgstr "Installation Rapide" + +#: includes/admin/class-mp-setup-wizard.php:289 +msgid "MarketPress setup is not complete! Run setup wizard" +msgstr "La configuration de ProfitsBoutik n'est pas complète ! Exécuter l'Assistant D'Installation" + +#: includes/admin/class-mp-products-admin.php:2479 +msgid "Enter your product name here" +msgstr "Entrez ici le nom de votre produit" + +#: includes/admin/class-mp-products-admin.php:2440 +msgid "Select a %s" +msgstr "Sélectionner un %s" + +#: includes/admin/class-mp-products-admin.php:2426 +msgid "Each product variation needs to have product attributes assigned to it so the system knows how to differentiate one product variation from the other. It is important that you assign a category to this product before choosing any attributes." +msgstr "Chaque variante de produit doit être associée à des attributs de produit afin que le système sache comment différencier une variante de produit de l'autre. Il est important d'attribuer une catégorie à ce produit avant de choisir des attributs." + +#: includes/admin/class-mp-products-admin.php:2409 +msgid "If you would like this variation to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "Si vous souhaitez que cette variante utilise un taux de taxe spécial, entrez-le ici. Si vous omettez le symbole \"%\", le taux sera calculé comme un montant fixe pour chacun de ces produits dans le panier de l'utilisateur." + +#: includes/admin/class-mp-products-admin.php:2320 +msgid "Sale Price (if applicable)" +msgstr "Prix de Vente (si applicable)" + +#: includes/admin/class-mp-products-admin.php:2281 +msgid "If you would like the description to be different than the main product enter it here." +msgstr "Si vous souhaitez que la description soit différente de celle du produit principal, entrez-la ici." + +#: includes/admin/class-mp-products-admin.php:2229 +msgid "Image" +msgstr "Image" + +#: includes/admin/class-mp-products-admin.php:2202 +#: includes/admin/class-mp-shortcode-builder.php:226 +msgid "Attributes" +msgstr "Attributs" + +#: includes/admin/class-mp-products-admin.php:2166 +msgid "Create your product variations here. You can reorder variations by using the number to left of each variation, or delete one by clicking the \"x\" to the right of each variation. NOTE: The variation that shows up first in this list will be considered the \"main variation\". The details from this variation will be used in product listings." +msgstr "Créez vos variantes de produits ici. Vous pouvez réorganiser les variantes en utilisant le nombre à gauche de chaque variante, ou en supprimer une en cliquant sur le \"x\" à droite de chaque variante. REMARQUE: La variante apparaissant en premier dans cette liste sera considérée comme la \"variante principale\". Les détails de cette variante seront utilisés dans les listes de produits." + +#: includes/admin/class-mp-products-admin.php:2061 +#: includes/admin/class-mp-products-admin.php:2332 +msgid "Value must be less than regular price" +msgstr "La valeur doit être inférieure au prix régulier/normal" + +#: includes/admin/class-mp-products-admin.php:2043 +#: includes/admin/class-mp-products-admin.php:2306 +msgid "Regular Price" +msgstr "Prix de vente" + +#: includes/admin/class-mp-products-admin.php:2023 +#: includes/admin/class-mp-products-admin.php:2286 +msgid "External URL" +msgstr "Lien externe" + +#: includes/admin/class-mp-products-admin.php:1988 +#: includes/admin/class-mp-products-admin.php:2245 +msgid "Enter the quantity that you have available to sell." +msgstr "Saisissez la quantité que vous avez à vendre." + +#: includes/admin/class-mp-products-admin.php:1987 +#: includes/admin/class-mp-products-admin.php:2244 +msgid "Inventory Count" +msgstr "Compte de l'Inventaire" + +#: includes/admin/class-mp-products-admin.php:1977 +#: includes/admin/class-mp-products-admin.php:2234 +msgid "Track Inventory?" +msgstr "Suivi de l'nventaire ?" + +#: includes/admin/class-mp-products-admin.php:1871 +msgid "%1$sProduct Images%2$s %3$sAdd images of the product. The first image on the list is the featured image for this product (you can reorder images on the list)%2$s" +msgstr "%1$sImages du Produit%2$s %3$sAjouter des images du produit. La première image de la liste est l'image mise en avant pour ce produit (vous pouvez réordonner les images de la liste)%2$s" + +#: includes/admin/class-mp-products-admin.php:1806 +msgid "Add variations for this product. e.g. If you are selling t-shirts, you can create Color & Size variations" +msgstr "Ajoutez des variantes pour ce produit. Par exemple, si vous vendez des tee-shirts, vous pouvez créer des variantes de couleur et de taille" + +#: includes/admin/class-mp-products-admin.php:1804 +msgid "%3$sAdd variations for%2$s %1$sProduct%2$s" +msgstr "%3$sAjouter des variantes pour%2$s %1$sProduit%2$s" + +#: includes/admin/class-mp-products-admin.php:1776 +msgid "This product has a multiple variations %1$s(e.g. Multiple colors, sizes)%2$s" +msgstr "Ce produit a plusieurs déclinaisons %1$s(ex. plusieurs couleurs, tailles)%2$s" + +#: includes/admin/class-mp-products-admin.php:1775 +msgid "This is a unique product without variations" +msgstr "C'est un produit unique sans déclinaisons" + +#: includes/admin/class-mp-products-admin.php:1700 +msgid "Extra Shipping Cost %1$s(if applicable)%2$s" +msgstr "Coût Supplémentaire d'Expédition %1$s(si applicable)%2$s" + +#: includes/admin/class-mp-products-admin.php:1659 +#: includes/admin/class-mp-products-admin.php:2112 +#: includes/admin/class-mp-products-admin.php:2359 +msgid "Weight" +msgstr "Poids" + +#: includes/admin/class-mp-products-admin.php:1636 +#: includes/admin/class-mp-products-admin.php:2098 +#: includes/admin/class-mp-products-admin.php:2416 +msgid "Please enter a valid tax rate" +msgstr "S'il vous plaît entrer un taux valide" + +#: includes/admin/class-mp-products-admin.php:1531 +msgid "Limit Per Order %1$s(limit the number of the item a shopper can buy per order)%2$s" +msgstr "Limite par commande %1$s(vous pouvez limiter le nombre d'unités que l'acheteur peut prendre par commande)%2$s" + +#: includes/admin/class-mp-products-admin.php:1513 +msgid "SKU %1$s(Stock Keeping Unit)%2$s" +msgstr "SKU %1$s(UGS: Unité de Gestion de Stock)%2$s" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "%1$sPrice, Inventory & Variants%2$s %3$sSet price, manage inventory and create Product Variants (if appropriate for your product).%2$s" +msgstr "%1$sPrix, Stock & Déclinaisons%2$s %3$sDéfinir le prix, gérer le stock et créer des déclinaisons de produits (si votre type de produit le permet).%2$s" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "Product Variations" +msgstr "Variations du Produit" + +#: includes/admin/class-mp-products-admin.php:1480 +msgid "External / Affiliate Link" +msgstr "Lien externe / Affiliation" + +#: includes/admin/class-mp-products-admin.php:1471 +msgid "Digital Download" +msgstr "Téléchargement digital" + +#: includes/admin/class-mp-products-admin.php:1470 +msgid "Physical / Tangible Product" +msgstr "Produit Physique / Tangible" + +#: includes/admin/class-mp-products-admin.php:1464 +msgid "Product Kind %1$s(Physical Product, Digital, etc)%2$s" +msgstr "Type de Produit %1$s(Bien matériel, digital, etc)%2$s" + +#: includes/admin/class-mp-products-admin.php:1426 +msgid "Choose Products" +msgstr "Choisissez des Produits" + +#: includes/admin/class-mp-products-admin.php:1420 +msgid "If you would like, you can choose specific related products instead of using the ones generated by MarketPress" +msgstr "Si vous le souhaitez, vous pouvez choisir des produits spécifiques relatifs, au lieu d'utiliser ceux générés par le système" + +#: includes/admin/class-mp-products-admin.php:1019 +msgid "Changes saved successfully" +msgstr "Les modifications ont été enregistrées avec succès" + +#: includes/admin/class-mp-products-admin.php:826 +msgid "Option cannot be saved. Try again." +msgstr "L'option n'a pas pu être enregistrée. Veuillez réessayer svp." + +#: includes/admin/class-mp-products-admin.php:821 +msgid "Option saved successfully." +msgstr "Option enregistrée avec succès." + +#: includes/admin/class-mp-products-admin.php:467 +msgid "Img" +msgstr "Img" + +#: includes/admin/class-mp-product-attributes-list-table.php:57 +msgid "Product attribute(s) deleted successfully." +msgstr "Attributs du produit supprimés avec succès." + +#: includes/admin/class-mp-product-attributes-admin.php:162 +msgid "- Create New Variation -" +msgstr "-Créer une Nouvelle Variation-" + +#: includes/admin/class-mp-product-attributes-admin.php:144 +msgid "Only lowercase letters and dashes (-) are allowed." +msgstr "Seuls les lettres minuscules et les tirets (-) sont autorisés." + +#: includes/admin/class-mp-product-attributes-admin.php:139 +msgid "If a slug is not entered, it will be generated automatically. Max 32 characters." +msgstr "Si un permalien n'est pas saisi, il sera généré automatiquement. Maximum 32 caractères." + +#: includes/admin/class-mp-product-attributes-admin.php:138 +#: includes/admin/class-mp-product-attributes-list-table.php:23 +msgid "Slug" +msgstr "Identifiant" + +#: includes/admin/class-mp-product-attributes-admin.php:130 +msgid "Max 45 characters." +msgstr "Max 45 caractères." + +#: includes/admin/class-mp-product-attributes-admin.php:123 +msgid "Use the numbers on the left to sort. To delete - click the \"X\" to the right of each row." +msgstr "Utilisez les numéros sur la gauche pour trier. Pour supprimer - cliquez sur le « X » à droite de chaque ligne." + +#: includes/admin/class-mp-product-attributes-admin.php:122 +msgid "Attribute Options" +msgstr "Options d'Attribut" + +#: includes/admin/class-mp-product-attributes-admin.php:121 +msgid "Add Option" +msgstr "Ajouter une option" + +#: includes/admin/class-mp-product-attributes-admin.php:105 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:523 +msgid "Sort Order" +msgstr "Ordre de tri" + +#: includes/admin/class-mp-product-attributes-admin.php:87 +msgid "Alphabetical" +msgstr "Alphabétique" + +#: includes/admin/class-mp-product-attributes-admin.php:86 +msgid "ID" +msgstr "ID" + +#: includes/admin/class-mp-product-attributes-admin.php:84 +msgid "Select how the options will be sorted." +msgstr "Sélectionnez comment les options seront triées." + +#: includes/admin/class-mp-product-attributes-admin.php:82 +msgid "Sort By" +msgstr "Trier par" + +#: includes/admin/class-mp-product-attributes-admin.php:75 +msgid "The name of the attribute (e.g. color, size, etc)" +msgstr "Le nom de l'attribut (par exemple, couleur, taille, etc.)" + +#: includes/admin/class-mp-product-attributes-admin.php:74 +msgid "Attribute Name" +msgstr "Nom de l'attribut" + +#: includes/admin/class-mp-product-attributes-admin.php:69 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Product Attribute" +msgstr "Ajouter un Attribut de Produit" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Attribute" +msgstr "Ajouter un attribut" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Product Attributes" +msgstr "Attributs de Produit" + +#: includes/admin/class-mp-pages-admin.php:71 +msgid "You can choose to make this page one of the following core store pages." +msgstr "Vous pouvez choisir de faire de cette page l'une des pages suivantes du magasin principal." + +#: includes/admin/class-mp-pages-admin.php:66 +msgid "Network Store Base" +msgstr "Base de Réseau Boutique" + +#: includes/admin/class-mp-pages-admin.php:61 +msgid "Checkout Page" +msgstr "Page de Paiement" + +#: includes/admin/class-mp-pages-admin.php:52 +msgid "Store Page Settings" +msgstr "Paramètres de Page de la Boutique" + +#: includes/admin/class-mp-orders-admin.php:1108 +msgid "Display billing/shipping info for this customer" +msgstr "Afficher les informations de facturation/de livraison pour ce client" + +#: includes/admin/class-mp-orders-admin.php:1097 +msgid "View order “%s”" +msgstr "Afficher les commandes “%s”" + +#: includes/admin/class-mp-orders-admin.php:1072 +msgid "Flag as:" +msgstr "Signaler comme :" + +#: includes/admin/class-mp-orders-admin.php:952 +msgid "Move To Trash" +msgstr "Envoyer dans la Corbeille" + +#: includes/admin/class-mp-orders-admin.php:948 +msgid " Received" +msgstr " Reçu" + +#: includes/admin/class-mp-orders-admin.php:927 +msgid "Enter coupon code here" +msgstr "Saisir le code promo ici" + +#: includes/admin/class-mp-orders-admin.php:812 +msgid "The order status could not be updated due to unexpected error. Please try again." +msgstr "Le statut de la commande n'a pas pu être mis à jour en raison d'une erreur inattendue. Veuillez réessayer." + +#: includes/admin/class-mp-orders-admin.php:740 +msgid "An invalid bulk action was requested. Please go back and try again." +msgstr "Une action en masse non valide a été demandée. Veuillez revenir en arrière et réessayer." + +#: includes/admin/class-mp-orders-admin.php:692 +msgid "The order status for order ID %1$s was updated successfully." +msgstr "Le statut de la commande pour l'ID de commande %1$s a été mis à jour avec succès." + +#: includes/admin/class-mp-orders-admin.php:688 +msgid "Order statuses successfully updated." +msgstr "Les statuts des commandes ont bien été mis à jour." + +#: includes/admin/class-mp-orders-admin.php:530 +msgid "Method" +msgstr "Méthode" + +#: includes/admin/class-mp-orders-admin.php:518 +msgid "Actual Shipping Method" +msgstr "Mode d'Expédition Réel" + +#: includes/admin/class-mp-orders-admin.php:513 +msgid "Method Paid For" +msgstr "Méthode Payée Pour" + +#: includes/admin/class-mp-orders-admin.php:504 +msgid "Amount Collected" +msgstr "Montant Perçu" + +#: includes/admin/class-mp-orders-admin.php:477 +msgid "DHL" +msgstr "DHL" + +#: includes/admin/class-mp-orders-admin.php:408 +msgid "There is no IPN history to show at this time" +msgstr "Il n'y a aucune historique d'IPN à montrer en ce moment" + +#: includes/admin/class-mp-orders-admin.php:345 +msgid "Type" +msgstr "Type" + +#: includes/admin/class-mp-orders-admin.php:343 +msgid "Gateway" +msgstr "Passerelle" + +#: includes/admin/class-mp-orders-admin.php:301 +#: includes/common/template-functions.php:528 +msgid "Order History" +msgstr "Historique de la commande" + +#: includes/admin/class-mp-orders-admin.php:291 +msgid "IPN History" +msgstr "Histoire de l'IPN" + +#: includes/admin/class-mp-orders-admin.php:283 +msgid "Customer Info" +msgstr "Informations Client" + +#: includes/admin/class-mp-orders-admin.php:279 +msgid "Order Details" +msgstr "Détails de la commande" + +#: includes/admin/class-mp-exporter-orders.php:157 +msgid "All Dates" +msgstr "Montrer toutes les dates" + +#: includes/admin/class-mp-dashboard-widgets.php:320 +msgid "Add Pages to Menu" +msgstr "Ajouter des Pages au Menu" + +#: includes/admin/class-mp-dashboard-widgets.php:318 +msgid "Add-ons" +msgstr "Modules/Extensions" + +#: includes/admin/class-mp-dashboard-widgets.php:317 +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "User Capabilities" +msgstr "Droits d'utilisateur" + +#: includes/admin/class-mp-dashboard-widgets.php:316 +#: includes/admin/class-mp-setup-wizard.php:631 +#: includes/admin/store-settings/class-mp-store-settings-payments.php:50 +msgid "Payment Gateways" +msgstr "Passerelles de Paiement" + +#: includes/admin/class-mp-dashboard-widgets.php:315 +msgid "Shipping Rates" +msgstr "Frais de livraison" + +#: includes/admin/class-mp-dashboard-widgets.php:312 +msgid "Configure" +msgstr "Configurer" + +#: includes/admin/class-mp-dashboard-widgets.php:309 +#: includes/admin/class-mp-products-admin.php:466 +#: includes/admin/class-mp-shortcode-builder.php:797 +msgid "Tags" +msgstr "Étiquettes" + +#: includes/admin/class-mp-dashboard-widgets.php:308 +#: includes/admin/class-mp-products-admin.php:465 +msgid "Categories" +msgstr "Catégories" + +#: includes/admin/class-mp-dashboard-widgets.php:300 +msgid "Manage" +msgstr "Gérer" + +#: includes/admin/class-mp-dashboard-widgets.php:297 +msgid "Here's some quick links to manage your store and products." +msgstr "Voici quelques liens pour gérer votre boutique." + +#: includes/admin/class-mp-dashboard-widgets.php:288 +msgid "low in stock" +msgstr "en faible niveau de stock" + +#: includes/admin/class-mp-dashboard-widgets.php:287 +msgid "%s product" +msgid_plural "%s products" +msgstr[0] "%s produit" +msgstr[1] "%s produits" + +#: includes/admin/class-mp-dashboard-widgets.php:280 +msgid "received" +msgstr "reçue" + +#: includes/admin/class-mp-dashboard-widgets.php:279 +#: includes/admin/class-mp-dashboard-widgets.php:283 +msgid "%s order" +msgid_plural "%s orders" +msgstr[0] "%s commande" +msgstr[1] "%s commandes" + +#: includes/admin/class-mp-dashboard-widgets.php:276 +msgid "Stock & Orders" +msgstr "Stock & Commandes" + +#: includes/admin/class-mp-dashboard-widgets.php:261 +msgid "Last 30 Days" +msgstr "30 derniers jours" + +#: includes/admin/class-mp-dashboard-widgets.php:256 +msgid "Last 7 Days" +msgstr "7 Derniers Jours" + +#: includes/admin/class-mp-dashboard-widgets.php:251 +msgid "Yesterday" +msgstr "Hier" + +#: includes/admin/class-mp-dashboard-widgets.php:248 +#: includes/admin/class-mp-dashboard-widgets.php:253 +#: includes/admin/class-mp-dashboard-widgets.php:258 +#: includes/admin/class-mp-dashboard-widgets.php:263 +msgid " Orders" +msgstr "Commandes" + +#: includes/admin/class-mp-dashboard-widgets.php:246 +msgid "Today" +msgstr "Aujourd'hui" + +#: includes/admin/class-mp-dashboard-widgets.php:241 +msgid "Welcome back! Here's a quick summary of your store's performance." +msgstr "Bienvenue ! Voici un aperçu rapide des performances de votre boutique." + +#: includes/admin/class-mp-dashboard-widgets.php:196 +#: includes/admin/class-mp-products-admin.php:895 +msgid "No products out of stock." +msgstr "Aucun produit en rupture de stock." + +#: includes/admin/class-mp-dashboard-widgets.php:136 +#: includes/admin/class-mp-products-admin.php:839 +msgid "Stock Level" +msgstr "Niveau de stock" + +#: includes/admin/class-mp-dashboard-widgets.php:135 +#: includes/admin/class-mp-products-admin.php:838 +msgid "Variation" +msgstr "Variation" + +#: includes/admin/class-mp-dashboard-widgets.php:121 +msgid "Low Stock (%s)" +msgstr "Bas niveau de stock (%s)" + +#: includes/admin/class-mp-dashboard-widgets.php:116 +msgid "Store Management" +msgstr "Gestion de la Boutique" + +#: includes/admin/class-mp-dashboard-widgets.php:115 +msgid "Store Reports" +msgstr "Rapports de la Boutique" + +#: includes/admin/class-mp-ajax.php:579 +#: includes/admin/class-mp-orders-admin.php:520 +#: includes/common/payment-gateways/2checkout.php:370 +#: includes/common/payment-gateways/authorizenet-aim.php:264 +#: includes/common/payment-gateways/mollie.php:93 +#: includes/common/payment-gateways/paymill.php:196 +#: includes/common/payment-gateways/pin.php:190 +#: includes/common/payment-gateways/skrill.php:157 +#: includes/common/payment-gateways/skrill.php:168 +#: includes/common/payment-gateways/wepay.php:143 +#: includes/public/class-mp-checkout.php:404 +msgid "Select One" +msgstr "Choisissez un" + +#: includes/admin/class-mp-ajax.php:511 +msgid "Oops... we could not locate any orders by that ID. Please double check your order ID and try again." +msgstr "Oups ... nous ne pouvions pas localiser les commandes par cet ID. S'il vous plaît vérifier votre numéro de commande et essayez à nouveau." + +#: includes/admin/class-mp-ajax.php:482 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:166 +#: includes/multisite/class-mp-admin-multisite.php:584 +msgid "Edit Page" +msgstr "Modifier la page" + +#: includes/admin/class-mp-ajax.php:346 +msgid "Cancel " +msgstr "Annuler " + +#: includes/admin/class-mp-ajax.php:345 +msgid "Save " +msgstr "Enregistrer " + +#: includes/admin/class-mp-ajax.php:336 +msgid "Edit Description" +msgstr "Modifier la Description" + +#: includes/admin/class-mp-ajax.php:336 +msgid "HTML Markup" +msgstr "Élément HTML" + +#: includes/admin/class-mp-ajax.php:333 +msgid "Plain Text Only" +msgstr "Texte Brut" + +#: includes/admin/class-mp-ajax.php:329 +msgid "Additional Content / Information for this Variation" +msgstr "Contenus Additionnel / Informations pour cette Variation" + +#: includes/admin/class-mp-ajax.php:317 +#: includes/admin/class-mp-products-admin.php:1762 +msgid "Allow this product to be purchased even if it's out of stock" +msgstr "Autoriser l'achat de ce produit même s'il est en rupture de stock" + +#: includes/admin/class-mp-ajax.php:313 +#: includes/admin/class-mp-products-admin.php:1711 +msgid "Track Product Inventory" +msgstr "Suivre le stock du produit" + +#: includes/admin/class-mp-ajax.php:300 +msgid "Extra Shipping Cost (if applicable)" +msgstr "Coût d'Expédition Supplémentaire (si applicable)" + +#: includes/admin/class-mp-ajax.php:295 +msgid "Ounces:" +msgstr "Onces :" + +#: includes/admin/class-mp-ajax.php:294 +msgid "Pounds:" +msgstr "Livres :" + +#: includes/admin/class-mp-ajax.php:292 +msgid "Kilograms:" +msgstr "Kilogrammes :" + +#: includes/admin/class-mp-ajax.php:287 +#: includes/admin/class-mp-products-admin.php:1649 +msgid "Charge Shipping" +msgstr "Ajouter des frais de transport" + +#: includes/admin/class-mp-ajax.php:273 +#: includes/admin/class-mp-products-admin.php:1623 +#: includes/admin/store-settings/class-mp-store-settings-general.php:454 +msgid "Tax Rate" +msgstr "Taux de Taxe" + +#: includes/admin/class-mp-ajax.php:272 +#: includes/admin/class-mp-products-admin.php:1622 +#: includes/admin/class-mp-products-admin.php:2090 +#: includes/admin/class-mp-products-admin.php:2408 +msgid "Special Tax Rate" +msgstr "Taux de Taxe Particulier" + +#: includes/admin/class-mp-ajax.php:271 +#: includes/admin/class-mp-products-admin.php:1625 +#: includes/admin/class-mp-products-admin.php:2092 +msgid "If you would like this product to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "Si vous souhaitez que ce produit utilise un taux de taxe particulier, entrez-le ici. Si vous omettez le symbole \"%\", le taux sera calculé comme un montant fixe pour chacun de ce produit dans le panier de l'utilisateur." + +#: includes/admin/class-mp-ajax.php:268 +#: includes/admin/class-mp-products-admin.php:1599 +msgid "Charge Taxes (Special Rate)" +msgstr "Appliquer des taxes (taux spécifique)" + +#: includes/admin/class-mp-ajax.php:256 +#: includes/admin/class-mp-products-admin.php:1593 +#: includes/admin/class-mp-products-admin.php:2077 +#: includes/admin/class-mp-products-admin.php:2348 +msgid "End Date (if applicable)" +msgstr "Date de fin (si applicable)" + +#: includes/admin/class-mp-ajax.php:255 +#: includes/admin/class-mp-products-admin.php:1589 +#: includes/admin/class-mp-products-admin.php:2072 +msgid "Start Date (if applicable)" +msgstr "Date de début (si applicable)" + +#: includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:1568 +msgid "Enter Sale Price" +msgstr "Entrez le prix de vente" + +#: includes/admin/class-mp-ajax.php:250 +#: includes/admin/class-mp-products-admin.php:1547 +msgid "Set up a Sale for this Product" +msgstr "Créer une promo pour ce produit" + +#: includes/admin/class-mp-ajax.php:206 includes/admin/class-mp-ajax.php:223 +msgid "Enter " +msgstr "Entrez " + +#: includes/admin/class-mp-ajax.php:193 +msgid "Browse" +msgstr "Parcourir" + +#: includes/admin/class-mp-ajax.php:184 includes/admin/class-mp-ajax.php:192 +msgid "http://" +msgstr "http://" + +#: includes/admin/class-mp-ajax.php:183 +msgid "External Product URL" +msgstr "URL de Produit Externe (url affiliation, etc.)" + +#: includes/admin/class-mp-ajax.php:237 +msgid "Limit Per Order" +msgstr "Limite par Pommande" + +#: includes/admin/class-mp-ajax.php:177 +#: includes/admin/class-mp-products-admin.php:1520 +msgid "Enter Price" +msgstr "Entrez le Prix" + +#: includes/admin/class-mp-ajax.php:174 +#: includes/admin/class-mp-products-admin.php:1512 +msgid "Enter SKU" +msgstr "Entrer le SKU (Référence produit)" + +#: includes/admin/class-mp-ajax.php:173 +msgid "(Stock Keeping Unit)" +msgstr "(Unité de Gestion des Stocks)" + +#: includes/admin/class-mp-ajax.php:158 +msgid "Remove Image" +msgstr "Supprimer l'image" + +#: includes/admin/class-mp-ajax.php:74 +msgid "Variation Draft" +msgstr "Brouillon de Variation(s)" + +#: includes/admin/class-mp-admin.php:296 +#: includes/admin/class-mp-dashboard-widgets.php:70 +msgid "Please wait...saving in progress..." +msgstr "Patientez...enregistrement en cours ..." + +#: includes/admin/class-mp-admin.php:295 +#: includes/admin/class-mp-dashboard-widgets.php:69 +msgid "Input is required" +msgstr "La saisie est requise" + +#: includes/admin/class-mp-admin.php:294 +#: includes/admin/class-mp-dashboard-widgets.php:68 +msgid "Valid number is required" +msgstr "Un nombre valide est requis" + +#: includes/admin/class-mp-admin.php:292 +#: includes/admin/class-mp-dashboard-widgets.php:66 +msgid "Delete %s product variant" +msgstr "Supprimer la variante produit %s" + +#: includes/admin/class-mp-admin.php:291 +#: includes/admin/class-mp-dashboard-widgets.php:65 +msgid "Delete %s product variants" +msgstr "Supprimer les variantes de produit %s" + +#: includes/admin/class-mp-admin.php:290 +#: includes/admin/class-mp-dashboard-widgets.php:64 +msgid "Update inventory for %s product variant" +msgstr "Mettre à jour l'inventaire pour la variante produit %s" + +#: includes/admin/class-mp-admin.php:289 +#: includes/admin/class-mp-dashboard-widgets.php:63 +msgid "Update inventory for %s product variants" +msgstr "Mettre à jour l'inventaire pour les variantes produit %s" + +#: includes/admin/class-mp-admin.php:288 +#: includes/admin/class-mp-dashboard-widgets.php:62 +msgid "Update price for %s product variant" +msgstr "Mettre à jour le prix pour la variante produit %s" + +#: includes/admin/class-mp-admin.php:287 +#: includes/admin/class-mp-dashboard-widgets.php:61 +msgid "Update prices for %s product variants" +msgstr "Mettre à jour les prix pour les variantes produit %s" + +#: includes/admin/class-mp-admin.php:285 +#: includes/admin/class-mp-dashboard-widgets.php:59 +msgid "Creating variations, please wait..." +msgstr "Création des variations, veuillez patienter..." + +#: includes/admin/class-mp-admin.php:96 +msgid "The following payment gateways have been deprecated, Cubepoints, Bitpay, iDEAL, Skrill, Google Checkout. If you were using one of these gateways, please setup a new payment gateway here." +msgstr "Les passerelles de paiement suivantes ont été abandonnées. Cubepoints, Bitpay, iDEAL, Skrill, Google Checkout. Si vous utilisiez l'une de ces passerelles, veuillez configurer une nouvelle passerelle de paiement ici." + +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:61 +msgid "Packing Slip" +msgstr "Bon de livraison" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:71 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:71 +#: includes/common/class-mp-gdpr.php:399 includes/common/class-mp-order.php:872 +#: includes/common/helpers.php:164 includes/public/class-mp-checkout.php:1434 +msgid "Shipping Address" +msgstr "Adresse de Livraison" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:66 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:66 +#: includes/common/class-mp-gdpr.php:392 includes/common/class-mp-order.php:864 +#: includes/common/helpers.php:163 includes/public/class-mp-checkout.php:1427 +msgid "Billing Address" +msgstr "Adresse de Facturation" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:61 +msgid "Invoice" +msgstr "Facture" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:258 +msgid "Shipping Email: %s" +msgstr "Email de Livraison : %s" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:256 +msgid "Email: %s" +msgstr "Email : %s" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:235 +msgid "Payment Method: %s" +msgstr "Méthode de paiement: %s" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:79 +msgid "The dir %s not exist or not writeable" +msgstr "Le répertoire %s n'existe pas ou n'est pas inscriptible (permissions CHMOD)" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Packing Slip" +msgstr "Bon de livraison PDF" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Invoice" +msgstr "Facture PDF" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:239 +msgid "Shop header/logo" +msgstr "En tête / logo de la boutique" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:233 +msgid "Choose a template" +msgstr "Choisir un modèle" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:226 +msgid "Template Settings" +msgstr "Réglages de thème" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:221 +msgid "Disable automatic creation/attachment of invoices when only free products are ordered" +msgstr "Désactiver la création / envoi en pièce jointe automatique de factures lorsque seuls des produits gratuits sont commandés" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:220 +msgid "Disable for free products" +msgstr "Désactiver pour des produits gratuits" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:216 +msgid "Attach invoice to" +msgstr "Joindre la facture à" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:214 +msgid "Customer Order Shipped email" +msgstr "Email de Commande Expédiée (Client)" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:212 +msgid "Customer New Order email" +msgstr "E-mail Nouvelle commande (Client)" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:211 +msgid "Admin New Order email" +msgstr "E-mail Nouvelle commande (administrateur)" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:206 +msgid "download" +msgstr "téléchargement" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:205 +msgid "How do you want to view the PDF?" +msgstr "Comment voulez-vous voir le PDF ?" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:203 +msgid "Open the PDF in a new browser tab/window" +msgstr "Ouvrir le fichier PDF dans un nouvel onglet/une nouvelle fenêtre du navigateur" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:202 +msgid "Download the PDF" +msgstr "Télécharger le PDF" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:158 +msgid "Export PDF" +msgstr "Exporter PDF" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:103 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:106 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:109 +msgid "You can't download this order invoice" +msgstr "Vous ne pouvez pas télécharger la facture de cette commande" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:76 +msgid "Invalid Request" +msgstr "Requête invalide" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:72 +msgid "Order not exist!" +msgstr "La commande n'existe pas!" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:67 +msgid "Invalid ID" +msgstr "ID non valide" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1293 +msgid "Coupon added successfully" +msgstr "Coupon ajouté avec succès" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1292 +msgid "Please enter a code" +msgstr "Veuillez saisir un code" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1247 +msgid "No end" +msgstr "Pas de fin" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1200 +msgid "Valid Dates" +msgstr "Dates de Validité" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1195 +msgid "Code" +msgstr "Code" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1027 +msgid "No Coupons found in Trash" +msgstr "Pas de Code Promo dans la corbeille" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1026 +msgid "No Coupons Found" +msgstr "Aucun Coupon Trouvé" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1025 +msgid "Search Coupons" +msgstr "Recherche Codes Promo" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1024 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1028 +msgid "View Coupon" +msgstr "Voir le code promo" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1023 +msgid "New Coupon" +msgstr "Nouveau Coupon" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1020 +msgid "Create New Coupon" +msgstr "Créer un Nouveau Coupon" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1017 +msgid "Manage Coupons" +msgstr "Gérer les codes promo" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1002 +msgid "An error occurred while removing your coupon. Please try again." +msgstr "Une erreur s'est produite lors du retrait de votre coupon. S'il vous plaît essayer de nouveau." + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:964 +msgid "Coupon can't be applied to this cart" +msgstr "Le Code Coupon ne peut être appliqué à ce panier" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:951 +msgid "Invalid coupon code" +msgstr "Code promo invalide" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:794 +msgid "Help Text" +msgstr "Texte d'aide" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:789 +msgid "Form Title" +msgstr "Titre du formulaire" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:783 +msgid "Coupons Settings" +msgstr "Paramètres des Coupons" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:764 +msgid "End Date" +msgstr "Date de fin" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:758 +msgid "Does coupon have an end date?" +msgstr "Le coupon a-t-il une date de fin ?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:696 +msgid "Select Products" +msgstr "Sélectionnez les produits" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:688 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:723 +#: includes/common/payment-gateways/paypal-payflow.php:402 +msgid "User" +msgstr "Utilisateur" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:638 +msgid "Max Uses" +msgstr "Utilisations Maximales" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:636 +msgid "Enter the maximum number of times this coupon can be used." +msgstr "Entrez le nombre maximal de fois où que ce coupon peut être utilisé." + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:623 +msgid "Leave blank to allow all other coupons." +msgstr "Laissez vide pour autoriser tous les autres coupons." + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:622 +msgid "Select combinable coupons" +msgstr "Sélectionnez les bons de réduction cumulables" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:618 +msgid "Can this coupon be combined with other coupons?" +msgstr "Ce coupon est-il cumulable avec les autres coupons ?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:613 +msgid "Apply to each applicable item once per cart" +msgstr "Appliquer à chaque article applicable une fois par panier" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:612 +msgid "Apply to each applicable item and quantity ordered" +msgstr "Appliquer à chaque article applicable et quantité commandée" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:609 +msgid "How should the discount amount be applied?" +msgstr "Comment le montant de la réduction doit-il être appliqué ?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:605 +msgid "Discount Amount" +msgstr "Montant de remise" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:604 +msgid "Value must either be a decimal number or a percentage" +msgstr "La valeur doit être un nombre décimal ou un pourcentage" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:602 +msgid "If you would like to give a percentage-based discount make sure to include the percent (%) symbol. Otherwise, the discount will be applied as a fixed amount off." +msgstr "Si vous souhaitez donner une réduction en pourcentages, veillez à inclure le symbole de pourcentage (%). Dans le cas contraire, la remise sera appliquée comme un montant fixe déduit." + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:595 +msgid "Letters and Numbers only." +msgstr "Lettres et Chiffres uniquement." + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:589 +msgid "Coupon Settings" +msgstr "Paramètres du Coupon" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:447 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:795 +msgid "More than one code? That's OK! Just be sure to enter one at a time." +msgstr "Vous avez plusieurs codes? C'est OK! Veuillez les entrer un par un." + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:444 +msgid "Apply Code" +msgstr "Appliquer le Code" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:314 +msgid "Coupon Discounts" +msgstr "Coupon de Rabais" + +#: includes/addons/class-mp-addons-list-table.php:89 +msgid "1 add-on disabled" +msgid_plural "%s add-ons disabled" +msgstr[0] "1 module désactivé" +msgstr[1] "%s modules désactvés" + +#: includes/addons/class-mp-addons-list-table.php:84 +msgid "1 add-on enabled" +msgid_plural "%s add-ons enabled" +msgstr[0] "1 module activé" +msgstr[1] "%s modules activés" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Disabled" +msgstr "Désactivé" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Enable add-on" +msgstr "Activez le module" + +#: includes/addons/class-mp-addons-list-table.php:45 +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:129 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:67 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:135 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:168 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:202 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:263 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:296 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:330 +msgid "Enabled" +msgstr "Activé" + +#: includes/addons/class-mp-addons-list-table.php:45 +msgid "Disable add-on" +msgstr "Désactiver le module" + +#: includes/addons/class-mp-addons-list-table.php:34 +msgid "Disable" +msgstr "Désactiver" + +#: includes/addons/class-mp-addons-list-table.php:33 +msgid "Enable" +msgstr "Activer" + +#: includes/addons/class-mp-addons-list-table.php:21 +#: includes/admin/class-mp-products-admin.php:2280 +#: includes/common/class-mp-product.php:2916 +msgid "Description" +msgstr "Description" + +#: includes/common/template-functions.php:2889 +#: includes/multisite/template-functions.php:407 +msgid "Popularity (Least Popular - Most Popular)" +msgstr "Popularité (Moins populaire - Plus populaire)" + +#: includes/common/template-functions.php:2888 +#: includes/multisite/template-functions.php:406 +msgid "Popularity (Most Popular - Least Popular)" +msgstr "Popularité (Moins populaire - Plus populaire)" + +#: includes/common/template-functions.php:2885 +#: includes/multisite/template-functions.php:403 +msgid "Name (Z-A)" +msgstr "Nom (Z-A)" + +#: includes/common/template-functions.php:2884 +#: includes/multisite/template-functions.php:402 +msgid "Name (A-Z)" +msgstr "Nom (A-Z)" + +#: includes/common/template-functions.php:2883 +#: includes/multisite/template-functions.php:401 +msgid "Release Date (Oldest to Latest)" +msgstr "Date de mise à jour (Plus ancienne - Moins ancienne)" + +#: includes/common/template-functions.php:2882 +#: includes/multisite/template-functions.php:400 +msgid "Release Date (Latest to Oldest)" +msgstr "Date de mise à jour (plus récente à plus ancienne)" + +#: includes/admin/class-mp-dashboard-widgets.php:284 +msgid "paid" +msgstr "payé" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "One Time Pickup" +msgstr "Retrait unique" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Customer Counter" +msgstr "Guichet Client" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Daily Pickup" +msgstr "Retrait Quotidien" + +#: includes/common/shipping-modules/mp-ups.php:182 +msgid "For the most accurate rates, please select the appropriate pick up type for your business." +msgstr "Pour les taux les plus appropriés, sélectionner le mode de retrait adapté à votre business." + +#: includes/admin/class-mp-admin.php:374 +msgid "Page saved." +msgstr "Page enregistrée." + +#: includes/admin/class-mp-admin.php:370 +msgid "Custom field deleted." +msgstr "Champ personnalisé supprimé." + +#: includes/admin/class-mp-admin.php:369 +msgid "Custom field updated." +msgstr "Champ personnalisé mis à jour." + +#: includes/common/payment-gateways/_bitpay.php:541 +msgid "%s - The payment request expired, - %s" +msgstr "%s - La requête de paiement a expiré, - %s" + +#: includes/common/payment-gateways/_bitpay.php:536 +msgid "%s - The payment not credited in merchants bitpay account, action required. Bitpay invoice status - %s" +msgstr "%s - Le paiement n'est pas crédité sur le compte BitPay du marchand, une action est requise. Statut facture BitPay - %s" + +#: includes/common/payment-gateways/_bitpay.php:252 +msgid "If enabled, you will recieve an email for each status update on payment." +msgstr "S'il est activé, vous recevrez un email pour chaque mise à jour de statut sur ​​le paiement." + +#: includes/common/payment-gateways/_bitpay.php:240 +msgid "Speed at which the bitcoin transaction registers as \"confirmed\" to the store. This overrides your merchant settings on the Bitpay website." +msgstr "Vitesse à laquelle la transaction bitcoin s'inscrit comme «confirmé» à la boutique. Ceci remplace les paramètres de marchands sur le site Bitpay." + +#: includes/common/payment-gateways/_bitpay.php:238 +msgid "Transaction Speed" +msgstr "Vitesse de transaction" + +#: includes/common/payment-gateways/_bitpay.php:244 +msgid "Low" +msgstr "Bas" + +#: includes/common/payment-gateways/_bitpay.php:243 +msgid "Medium" +msgstr "Moyenne" + +#: includes/common/payment-gateways/_bitpay.php:242 +msgid "High" +msgstr "Haut" + +#: includes/common/payment-gateways/_bitpay.php:177 +#: includes/common/payment-gateways/_bitpay.php:517 +#: includes/common/payment-gateways/_bitpay.php:522 +msgid "%s - The payment request is under process. Bitpay invoice status - %s" +msgstr "%s - La demande de paiement est en cours de traitement. Statut de la facture Bitpay - %s" + +#: includes/common/payment-gateways/_bitpay.php:175 +#: includes/common/payment-gateways/_bitpay.php:527 +msgid "%s - The payment request has been processed - %s" +msgstr "%s - La demande de paiement a bien été traitée - %s" + +#: includes/common/payment-gateways/_bitpay.php:150 +#: includes/common/payment-gateways/_bitpay.php:294 +msgid "Incorrect order invoice, please contact site administrator" +msgstr "Facture de commande incorrecte, s'il vous plaît contacter l'administrateur du site" + +#: includes/common/payment-gateways/_bitpay.php:141 +msgid "We could not verify order invoice details, please try again or contact site administrator for help" +msgstr "Nous n'avons pas pu vérifier les détails de la facture de votre commande, s'il vous plaît essayez de nouveau ou veuillez contacter l'administrateur du site afin qu'il puisse vous aider" + +#: includes/common/payment-gateways/simplify.php:81 +msgid "Login to Simplify to get your API credentials. Enter your test credentials, then live ones when ready." +msgstr "Connectez-vous à Simplify pour obtenir vos identifiants. Entrez vos identifiants de test, puis les réels quand vous serez prêt." + +#: includes/common/payment-gateways/paypal-express.php:605 +#: includes/common/payment-gateways/paypal-express.php:647 +msgid "Express Checkout is PayPal's premier checkout solution, which streamlines the checkout process for buyers and keeps them on your site after making a purchase. Unlike PayPal Pro, there are no additional fees to use Express Checkout, though you may need to do a free upgrade to a business account. More Info »" +msgstr "Express Checkout est la première solution de paiement de Paypal, elle facilite le processus de paiement pour les acheteurs en les laissant sur votre site site après un achat. A l'inverse de Paypal Pro il n'y a pas de coût additionnel, mais vous devrez passer votre votre compte en Pro. Plus d'info »" + +#. Plugin URI of the plugin/theme +msgid "https://premium.wpmudev.org/project/e-commerce/" +msgstr "https://premium.wpmudev.org/project/e-commerce/" + +#. Author of the plugin/theme +msgid "WPMU DEV" +msgstr "wpmu dev" + +#: includes/admin/class-mp-orders-admin.php:541 +#: includes/admin/class-mp-orders-admin.php:543 +msgid "Tracking Number" +msgstr "Numéro de Suivi" + +#: includes/common/class-mp-order.php:805 +#: includes/common/payment-gateways/stripe.php:336 +#: includes/public/class-mp-checkout.php:402 +msgid "Country" +msgstr "Pays" + +#: includes/common/class-mp-order.php:784 +#: includes/common/payment-gateways/stripe.php:338 +msgid "City" +msgstr "Ville" + +#: includes/common/class-mp-order.php:780 +msgid "Address 2" +msgstr "Adresse ligne 2" + +#: includes/common/payment-gateways/stripe.php:340 +msgid "Address" +msgstr "Adresse" + +#: includes/common/class-mp-cart.php:752 includes/common/class-mp-gdpr.php:378 +msgid "Order Total" +msgstr "Total de la Commande" + +#: includes/admin/class-mp-orders-admin.php:360 +msgid "Payment Total" +msgstr "Total du Paiement" + +#: includes/admin/class-mp-orders-admin.php:347 +msgid "Transaction ID" +msgstr "ID de la transaction" + +#: includes/common/payment-gateways/wepay.php:207 +msgid "The WePay Card Token was not generated correctly. Please go back and try again." +msgstr "Le jeton de WePay Card n' a pas été généré correctement. Veuillez recommencer la procédure." + +#: includes/common/payment-gateways/wepay.php:186 +#: includes/common/shipping-modules/mp-fedex.php:283 +msgid "Account ID" +msgstr "ID du compte" + +#: includes/common/payment-gateways/wepay.php:179 +msgid "Access Token" +msgstr "Jeton d'accès" + +#: includes/common/payment-gateways/wepay.php:172 +msgid "Client Secret" +msgstr "Secret client" + +#: includes/common/payment-gateways/wepay.php:165 +msgid "Client ID" +msgstr "ID du client" + +#: includes/common/payment-gateways/wepay.php:159 +msgid "You must login to WePay to get your API credentials. Make sure to check \"Tokenize credit cards\" option under \"API Keys\" section of your WePay app." +msgstr "Vous devez vous connecter à WePay pour obtenir vos informations d'identification d'API. Assurez-vous de cocher l'option \"Tokenize credit cards\" sous la section \"API Keys\" de votre application WePay." + +#: includes/common/payment-gateways/wepay.php:154 +msgid "When in live mode it is recommended to use SSL certificate setup for the site where the checkout form will be displayed." +msgstr "Quand, en mode actif, il est recommandé d' utiliser un certificat SSL dédicacé au site où le formulaire de caisse sera affiché." + +#: includes/common/payment-gateways/wepay.php:148 +msgid "Donation" +msgstr "Don" + +#: includes/common/payment-gateways/wepay.php:147 +msgid "Event" +msgstr "Evènement" + +#: includes/common/payment-gateways/wepay.php:146 +msgid "Personal" +msgstr "Personnel" + +#: includes/common/payment-gateways/wepay.php:145 +msgid "Service" +msgstr "Service" + +#: includes/common/payment-gateways/wepay.php:144 +msgid "Goods" +msgstr "Biens" + +#: includes/common/payment-gateways/wepay.php:141 +msgid "Choose type of payments" +msgstr "Choisissez vos types de paiements" + +#: includes/common/payment-gateways/wepay.php:140 +msgid "Checkout Type" +msgstr "Type de caisse" + +#: includes/common/payment-gateways/wepay.php:134 +msgid "Staging" +msgstr "Mise en scène" + +#: includes/common/payment-gateways/wepay.php:131 +msgid "Choose STAGING if you have registered the app on stage.wepay.com, or PRODUCTION if you registered on www.wepay.com" +msgstr "Choisissez STAGING si vous avez enregistré l' application via stage.wepay.com, ou PRODUCTION si vous l' avez enregistré via www.wepay.com" + +#: includes/common/payment-gateways/wepay.php:36 +#: includes/common/payment-gateways/wepay.php:299 +msgid "WePay" +msgstr "WePay" + +#: includes/common/payment-gateways/_payway.php:366 +msgid "Rejected - A payment was rejected." +msgstr "Rejeté - Le paiement a été rejeté." + +#: includes/common/payment-gateways/_payway.php:360 +msgid "Failed - A payment was rejected due to an error." +msgstr "Le paiement a été rejeté en raison d'une erreur." + +#: includes/common/payment-gateways/_payway.php:342 +msgid "PayWay balance, Credit Card, or Instant Transfer" +msgstr "Balance PayWay, Carte de Crédit ou Transfert Instantané" + +#: includes/common/payment-gateways/_payway.php:298 +msgid "Full path of the cacerts.crt file" +msgstr "Chemin complet du fichier cacerts.crt" + +#: includes/common/payment-gateways/_payway.php:284 +msgid "User Name" +msgstr "Nom d' utilisateur" + +#: includes/common/payment-gateways/_payway.php:277 +msgid "Biller Code" +msgstr "Code de Facturation" + +#: includes/common/payment-gateways/_payway.php:273 +msgid "Log Directory" +msgstr "Dossier des Logs" + +#: includes/common/payment-gateways/_payway.php:266 +msgid "Encryption Key" +msgstr "Clé de Chiffrement" + +#: includes/common/payment-gateways/_payway.php:60 +msgid "Your PayWay transaction has been canceled." +msgstr "Votre transaction PayWay a été annulée." + +#: includes/common/payment-gateways/_payway.php:40 +#: includes/common/payment-gateways/_payway.php:41 +msgid "PayWay" +msgstr "PayWay" + +#: includes/common/payment-gateways/paypal-chained-payments.php:862 +msgid "You must register this application with PayPal using your business account login to get an Application ID that will work with your API credentials. A bit of a hassle, but worth it! In the near future we will be looking for ways to simplify this process. Register then submit your application while logged in to the developer portal. Note that you do not need an Application ID for testing in sandbox mode. More Information »" +msgstr "Vous devez enregistrer cette application avec Paypall en vous connectant à votre compte \"business\" de façon à obtenir une ID pour cette application et qui fonctionnera avec le certificat de votre API. C' est un peu gênant, mais, dans un proche futur, nous simplifierons la procédure Register then submit your application while logged in to the developer portal. Note that you do not need an Application ID for testing in sandbox mode. More Information »" + +#: includes/common/payment-gateways/paypal-chained-payments.php:818 +#: includes/common/payment-gateways/paypal-chained-payments.php:840 +#: includes/common/payment-gateways/paypal-express.php:705 +msgid "You must login to PayPal and create an API signature to get your credentials. Instructions »" +msgstr "Vous devez vous connecter sur Paypal et créer une signature API pour obtenir les éléments du certificat Instructions »" + +#: includes/common/payment-gateways/paypal-payflow.php:378 +msgid "Use Payflow payment gateway to accept online payments using your Internet merchant account and processing network. PayPal Payflow Pro is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway." +msgstr "Utilisez Payflow pour accepter des paiements avec votre propre service de paiement en ligne. Payflow est un service de paiement personnalisable qui donne au marchand un contrôle total sur toutes les étapes de la transaction. Un certificat SSL est obligatoire pour utiliser cette passerelle." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:595 +msgid "Tags Only" +msgstr "Mots-clés seulement" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:594 +msgid "Category Only" +msgstr "Catégorie Seulement" + +#: includes/admin/class-mp-shortcode-builder.php:795 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:593 +msgid "Category & Tags" +msgstr "Catégorie & Mots clés" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:591 +msgid "Relate Products By" +msgstr "Définir produits connexes par" + +#: includes/admin/class-mp-shortcode-builder.php:1008 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:455 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:751 +msgid "Right" +msgstr "Droite" + +#: includes/admin/class-mp-shortcode-builder.php:1007 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:454 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:749 +msgid "Left" +msgstr "Gauche" + +#: includes/admin/class-mp-shortcode-builder.php:1009 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:750 +msgid "Center" +msgstr "Centre" + +#: marketpress.php:273 +msgid "Orders from your e-commerce store." +msgstr "Les commandes de votre boutique e-commerce." + +#: marketpress.php:231 +msgid "Products for your e-commerce store." +msgstr "Produits pour votre boutique e-commerce." + +#: marketpress.php:222 +msgid "Edit Product" +msgstr "Modifier le produit" + +#. Description of the plugin/theme +msgid "The complete WordPress ecommerce plugin - works perfectly with BuddyPress and Multisite too to create a social marketplace, where you can take a percentage! Activate the plugin, adjust your settings then add some products to your store." +msgstr "L'extension complète Wordpress ecommerce - fonctionne parfaitement avec Buddypress and Multisite pour créer une place de marché sociale, où vous pouvez prendre un pourcentage. Activez l'extension, ajustez vos réglages et ajoutez des produits à votre boutique." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:272 +msgid "Beside" +msgstr "À côté" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:271 +msgid "Above" +msgstr "Au-dessus" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:268 +msgid "Pin Count" +msgstr "Comptage des pins" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:261 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:287 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:318 +msgid "All View" +msgstr "Voir Tous" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:260 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:286 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:317 +msgid "Single View" +msgstr "Voir Singulier" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:259 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:285 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:316 +msgid "Off" +msgstr "Désactivé" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:578 +msgid "Related Product Limit" +msgstr "Limite des produits associés" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:681 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1201 +msgid "Applies To" +msgstr "S'applique à" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:685 +msgid "All Products" +msgstr "Tous les produits" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:487 +msgid "The label shown for the tax line item in the cart. Taxes, VAT, GST, etc." +msgstr "L'étiquette pour la ligne de taxe dans le panier. Taxes, TVA, VAT, GST etc.." + +#: includes/admin/class-mp-setup-wizard.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:485 +msgid "Tax Label" +msgstr "Étiquette Taxe" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:81 +msgid "Apply" +msgstr "Appliquer" + +#: includes/admin/class-mp-admin.php:192 +msgid "MarketPress Instructions" +msgstr "Instructions MarketPress" + +#: includes/admin/class-mp-products-admin.php:1954 +#: includes/admin/class-mp-products-admin.php:2194 includes/common/data.php:62 +#: includes/common/helpers.php:150 +msgid "Taxes" +msgstr "Taxes" + +#: includes/admin/class-mp-products-admin.php:1417 +#: includes/common/class-mp-product.php:2900 +msgid "Related Products" +msgstr "Produits Connexes" + +#: includes/common/shipping-modules/mp-usps.php:282 +#: includes/common/shipping-modules/mp-usps.php:316 +msgid "@ Max" +msgstr "@ Max" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "(3-5 days)" +msgstr "(3-5 jours)" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "Priority Mail Express International Padded Flat Rate Envelope" +msgstr "Courrier Prioritaire International - Enveloppe Rembourrée à Tarif Forfaitaire" + +#: includes/common/shipping-modules/mp-usps.php:92 +msgid "Priority Mail Padded Flat Rate Envelope" +msgstr "Courrier Prioritaire Avec Enveloppe Rembourré A Tarif Forfaitaire" + +#: includes/common/shipping-modules/mp-pickup.php:171 +#: includes/common/shipping-modules/mp-pickup.php:247 +msgid "In Store" +msgstr "En Magasin" + +#: includes/common/shipping-modules/mp-pickup.php:159 +msgid "Pickup Fee" +msgstr "Frais de Retrait" + +#: includes/common/shipping-modules/mp-pickup.php:141 +msgid "This option allows your customers to indicate that they will pick-up their order at your place of business." +msgstr "Cette option permet à vos clients d'indiquer s'ils souhaitent retirer leur commande dans vos locaux." + +#: includes/common/shipping-modules/mp-pickup.php:60 +#: includes/common/shipping-modules/mp-pickup.php:76 +#: includes/common/shipping-modules/mp-pickup.php:176 +msgid "Pickup Instructions" +msgstr "Instructions de Retrait" + +#: includes/common/shipping-modules/mp-pickup.php:24 +#: includes/common/shipping-modules/mp-pickup.php:254 +msgid "Pickup" +msgstr "Retrait" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping - 0.00" +msgstr "Livraison Gratuite - 0.00" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:256 +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:440 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping" +msgstr "Livraison Gratuite" + +#: includes/common/shipping-modules/mp-fedex.php:309 +msgid "Your Packaging" +msgstr "Votre emballage" + +#: includes/common/shipping-modules/mp-fedex.php:301 +msgid "Station" +msgstr "Station" + +#: includes/common/shipping-modules/mp-fedex.php:300 +msgid "Request Courier" +msgstr "Requête Courrier" + +#: includes/common/shipping-modules/mp-fedex.php:299 +msgid "Drop Box" +msgstr "Drop Box" + +#: includes/common/shipping-modules/mp-fedex.php:298 +msgid "Business Service Center" +msgstr "Centre de services aux entreprises" + +#: includes/common/shipping-modules/mp-fedex.php:297 +msgid "Regular Pickup" +msgstr "Enlèvement classique" + +#: includes/common/payment-gateways/wepay.php:135 +#: includes/common/shipping-modules/mp-fedex.php:264 +msgid "Production" +msgstr "Production" + +#: includes/common/payment-gateways/simplify.php:207 +msgid "Simplify Commerce by MasterCard" +msgstr "Simplify Commerce par MasterCard" + +#: includes/common/payment-gateways/simplify.php:104 +msgid "When in live mode, although it is not required, Simplify recommends you have an SSL certificate." +msgstr "En mode réel, même si ce n'est pas obligatoire, Simplify vous recommande d'avoir un certificat SSL." + +#: includes/common/payment-gateways/paymill.php:183 +#: includes/common/payment-gateways/simplify.php:87 +msgid "Public Key" +msgstr "Clé publique" + +#: includes/common/payment-gateways/paymill.php:175 +#: includes/common/payment-gateways/simplify.php:94 +msgid "Private Key" +msgstr "Clé privée" + +#: includes/common/payment-gateways/simplify.php:71 +msgid "Simplify helps merchants to accept online payments from Mastercard, Visa, American Express, Discover, JCB, and Diners Club cards. It's that simple. We offer a merchant account and payment gateway in a single, secure package so you can concentrate on what really matters to your business. Only supports USD currently." +msgstr "Simplify aide les marchands à accepter les paiements en ligne via les cartes Mastercard, Visa, American Express, Discover, JCB, et Diners Club . C'est aussi simple. Nous offrons un compte marchand et une passerelle dans un seul package sécurisé, pour que vous puissiez vous concentrer sur vos affaires. Seulement USD pris en charge pour l'instant." + +#: includes/common/payment-gateways/wepay.php:267 +msgid "%1$s" +msgstr "%1$s" + +#: includes/common/payment-gateways/simplify.php:151 +msgid "The Simplify Token was not generated correctly. Please go back and try again." +msgstr "La clé Simplify n'a pas été générée correctement. Retournez en arrière et réessayez." + +#: includes/common/payment-gateways/simplify.php:18 +msgid "Simplify" +msgstr "Simplifier" + +#: includes/common/payment-gateways/pin.php:255 +msgid "%1$s Card %2$s" +msgstr "%1$s Carte %2$s" + +#: includes/common/payment-gateways/pin.php:211 +msgid "The PIN Token was not generated correctly. Please go back and try again." +msgstr "La clé PIN n'a pas été générée correctement. Retournez en arrière et réessayez. " + +#: includes/common/payment-gateways/pin.php:187 +msgid "Selecting a currency other than currency supported by PIN may cause problems at checkout." +msgstr "Choisir une autre devise que celle supportée par PIN peut causer des problèmes au moment de payer." + +#: includes/common/payment-gateways/pin.php:164 +msgid "You must login to PIN to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "Vous devez vous connecter à PIN Obtenez vos identifiants API. Entrez vos clés de test, puis les réelles quand vous êtes prêt." + +#: includes/common/payment-gateways/pin.php:158 +msgid "When in live mode PIN recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "En mode réel, PIN recommande l'utilisation d'un certificat SSL sur le site où le formulaire de paiement sera installé." + +#: includes/common/payment-gateways/pin.php:45 +#: includes/common/payment-gateways/pin.php:286 +msgid "PIN" +msgstr "PIN" + +#: includes/common/payment-gateways/paypal-express.php:830 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer" +msgstr "Un paiement a été reversé à cause d'un chargeback ou d'un autre type de reversement. les fonds ont été retirés de votre compte et retournés à l'acheteur." + +#: includes/common/payment-gateways/paypal-chained-payments.php:534 +#: includes/common/payment-gateways/paypal-express.php:865 +msgid "The payment is pending" +msgstr "Le payment est en attente" + +#: includes/common/payment-gateways/paymill.php:235 +msgid "The Paymill Token was not generated correctly. Please go back and try again." +msgstr "Le jeton Paymill n'a pas été généré correctement. S'il vous plaît revenez en arrière et essayer à nouveau." + +#: includes/common/payment-gateways/paymill.php:169 +msgid "You must login to Paymill to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "Vous devez vous connecter à Paymill pour Obtenez vos identifiants API. Vous pouvez entrer vos identifiants de test, puis réels quand vous êtes prêt." + +#: includes/common/payment-gateways/paymill.php:45 +#: includes/common/payment-gateways/paymill.php:308 +msgid "Paymill" +msgstr "Paymill" + +#: includes/common/payment-gateways/paymill.php:90 +msgid "Invalid cardholder" +msgstr "Titulaire de la carte non valide" + +#: includes/common/payment-gateways/paymill.php:89 +msgid "Card is no longer valid or has expired" +msgstr "La carte n'est plus valide ou à expirée" + +#: includes/common/payment-gateways/paymill.php:88 +msgid "Please enter a valid Card CVC" +msgstr "Entrez un CVC de la carte valide s'il vous plaît" + +#: includes/common/payment-gateways/paymill.php:87 +msgid "Please choose a valid Expiration Date." +msgstr "S'il vous plait choisissez une date d'expiration valide." + +#: includes/common/payment-gateways/skrill.php:99 +#: includes/common/payment-gateways/skrill.php:100 +msgid "Skrill (Moneybookers)" +msgstr "Skrill (Moneybookers)" + +#: includes/common/shipping-modules/mp-weight-rate.php:24 +#: includes/common/shipping-modules/mp-weight-rate.php:292 +msgid "Weight Rate" +msgstr "Taux selon Poids" + +#: includes/common/shipping-modules/mp-usps.php:303 +msgid "USPS Offered International Services" +msgstr "Services internationaux USPS" + +#: includes/common/shipping-modules/mp-usps.php:270 +msgid "USPS Offered Domestic Services" +msgstr "Services locaux USPS" + +#: includes/common/shipping-modules/mp-usps.php:264 +msgid "USPS Settings" +msgstr "Réglages USPS" + +#: includes/common/shipping-modules/mp-usps.php:145 +msgid "Flat Rate Large" +msgstr "Taux fixe grand" + +#: includes/common/shipping-modules/mp-usps.php:140 +msgid "Flat Rate Medium 2" +msgstr "Taux fixe médium 2" + +#: includes/common/shipping-modules/mp-usps.php:135 +msgid "Flat Rate Medium 1" +msgstr "Taux fixe médium 1" + +#: includes/common/shipping-modules/mp-usps.php:130 +msgid "Flat Rate Small" +msgstr "Taux fixe: petit" + +#: includes/common/shipping-modules/mp-usps.php:118 +msgid "First Class International Parcel" +msgstr "Colis international First Class" + +#: includes/common/shipping-modules/mp-usps.php:114 +msgid "Priority Mail International Small Flat Rate Boxes" +msgstr "Courrier prioritaire international petite boite tarif fixe" + +#: includes/common/shipping-modules/mp-usps.php:112 +msgid "Priority Mail International Medium Flat Rate Boxes" +msgstr "Courrier prioritaire international moyenne boite tarif fixe" + +#: includes/common/shipping-modules/mp-usps.php:110 +msgid "Priority Mail International Large Flat Rate Boxes" +msgstr "Courrier prioritaire international grande boite tarif fixe " + +#: includes/common/shipping-modules/mp-usps.php:108 +msgid "Priority Mail International" +msgstr "Courrier prioritaire international" + +#: includes/common/shipping-modules/mp-usps.php:106 +msgid "Express Mail International Flat Rate Boxes" +msgstr "Courrier express international boite tarif fixe" + +#: includes/common/shipping-modules/mp-usps.php:104 +msgid "Express Mail International" +msgstr "Courrier express international" + +#: includes/common/shipping-modules/mp-usps.php:98 +msgid "Library Mail" +msgstr "Courrier livre" + +#: includes/common/shipping-modules/mp-usps.php:96 +msgid "Media Mail" +msgstr "Courrier media" + +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "First-Class Mail Parcel" +msgstr "Colis First-Class Mail" + +#: includes/common/shipping-modules/mp-usps.php:90 +msgid "Priority Mail Small Flat Rate Box" +msgstr "Courrier prioritaire petite boite tarif fixe " + +#: includes/common/shipping-modules/mp-usps.php:88 +msgid "Priority Mail Medium Flat Rate Box" +msgstr "Courrier prioritaire moyenne boite tarif fixe " + +#: includes/common/shipping-modules/mp-usps.php:86 +#: includes/common/shipping-modules/mp-usps.php:88 +#: includes/common/shipping-modules/mp-usps.php:90 +#: includes/common/shipping-modules/mp-usps.php:92 +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "(2-4 days)" +msgstr "(2-4 jours)" + +#: includes/common/shipping-modules/mp-usps.php:86 +msgid "Priority Mail Large Flat Rate Box" +msgstr "Courrier prioritaire grande boite tarif fixe" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "(2-4) days" +msgstr "(2-4) jours" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "Priority Mail" +msgstr "Courrier prioritaire" + +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "Express Mail Sunday/Holiday Delivery Flat Rate Boxes" +msgstr "Livraison courrier express dimanche/Vacances boite tarif fixe" + +#: includes/common/shipping-modules/mp-usps.php:80 +msgid "Express Mail Flat Rate Boxes Hold For Pickup" +msgstr "Boites livraison express tarif fixe en attente de collecte" + +#: includes/common/shipping-modules/mp-usps.php:78 +msgid "Express Mail Flat Rate Boxes" +msgstr "Boites livraison express tarif fixe" + +#: includes/common/shipping-modules/mp-usps.php:76 +msgid "Express Mail Sunday/Holiday Delivery" +msgstr "Livraison courrier express Dimanche/Vacances" + +#: includes/common/shipping-modules/mp-usps.php:74 +msgid "Express Mail Hold For Pickup" +msgstr "Courrier express en attente de collecte" + +#: includes/common/shipping-modules/mp-usps.php:72 +#: includes/common/shipping-modules/mp-usps.php:74 +#: includes/common/shipping-modules/mp-usps.php:76 +#: includes/common/shipping-modules/mp-usps.php:78 +#: includes/common/shipping-modules/mp-usps.php:80 +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "(1-2 days)" +msgstr "(1-2 jours)" + +#: includes/common/shipping-modules/mp-usps.php:72 +msgid "Express Mail" +msgstr "Express Mail" + +#: includes/common/shipping-modules/mp-usps.php:67 +#: includes/common/shipping-modules/mp-usps.php:902 +msgid "USPS" +msgstr "USPS" + +#: includes/common/shipping-modules/mp-ups.php:534 +msgid "UPS (beta)" +msgstr "UPS (beta)" + +#: includes/common/shipping-modules/mp-ups.php:166 +msgid "Required if using negotiated rates" +msgstr "Requis si utilisation de tarifs négociés" + +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "Saver" +msgstr "Saver" + +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "Worldwide Express Plus" +msgstr "Worldwide Express Plus" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "(Scheduled)" +msgstr "(programmé)" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "Standard" +msgstr "Standard" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "(2-5 Days)" +msgstr "(2-5 jours)" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "Worldwide Expedited" +msgstr "Worldwide Expedited" + +#: includes/common/shipping-modules/mp-ups.php:54 +msgid "Worldwide Express" +msgstr "Worldwide Express" + +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "2nd Day Air AM" +msgstr "J+2 Air Après Midi" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "(1 Days)" +msgstr "(1 jour)" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "Next Day Air Early AM" +msgstr "J+1 Air Avant midi" + +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "Next Day Air Saver" +msgstr "J+1 Air Saver" + +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "3 Day Select" +msgstr "3 jours Select" + +#: includes/common/shipping-modules/mp-ups.php:49 +msgid "Ground" +msgstr "Terre" + +#: includes/common/shipping-modules/mp-ups.php:48 +msgid "2nd Day Air" +msgstr "J+2 Air" + +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "Next Day Air" +msgstr "J+1 Air" + +#: includes/admin/class-mp-orders-admin.php:475 +#: includes/common/shipping-modules/mp-ups.php:43 +msgid "UPS" +msgstr "UPS" + +#: includes/common/shipping-modules/mp-table-rate.php:27 +#: includes/common/shipping-modules/mp-table-rate.php:318 +msgid "Table Rate" +msgstr "Taux selon Tableau" + +#: includes/common/shipping-modules/mp-table-quantity.php:71 +#: includes/common/shipping-modules/mp-table-quantity.php:77 +msgid "Shipping Cost: " +msgstr "Coût d'expédition supplémentaire: " + +#: includes/common/shipping-modules/mp-table-quantity.php:70 +#: includes/common/shipping-modules/mp-table-quantity.php:76 +msgid "If quantity is greater than:" +msgstr "Si la quantité est supérieure à:" + +#: includes/common/shipping-modules/mp-table-quantity.php:66 +msgid "Each band must be a higher price than the one above it." +msgstr "Chaque bande doit avoir un prix plus élevé que celle du dessus." + +#: includes/common/shipping-modules/mp-table-quantity.php:56 +msgid "Number of Bands:" +msgstr "Nombre de bandes:" + +#: includes/common/shipping-modules/mp-table-quantity.php:53 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Each layer must be a higher quantity than the previous." +msgstr "Soyez sûr d'entrer un prix d'expédition pour chaque option ou les clients peuvent obtenir la livraison gratuite. Chaque niveau doit être un prix plus élevé que le précédent." + +#: includes/common/shipping-modules/mp-table-quantity.php:51 +msgid "Table Quantity Settings" +msgstr "Réglages de la quantité de la table" + +#: includes/common/shipping-modules/mp-table-quantity.php:31 +msgid "Table Quantity" +msgstr "Quantité de la table" + +#: includes/common/shipping-modules/mp-flat-rate.php:135 +#: includes/common/shipping-modules/mp-table-rate.php:174 +#: includes/common/shipping-modules/mp-weight-rate.php:189 +msgid "European Union" +msgstr "Union Européenne" + +#: includes/common/shipping-modules/mp-flat-rate.php:123 +#: includes/common/shipping-modules/mp-table-rate.php:162 +#: includes/common/shipping-modules/mp-weight-rate.php:177 +msgid "United States" +msgstr "États-Unis" + +#: includes/common/shipping-modules/mp-flat-rate.php:111 +#: includes/common/shipping-modules/mp-table-rate.php:151 +#: includes/common/shipping-modules/mp-weight-rate.php:166 +msgid "In Country" +msgstr "National" + +#: includes/common/shipping-modules/mp-flat-rate.php:146 +#: includes/common/shipping-modules/mp-table-rate.php:186 +#: includes/common/shipping-modules/mp-weight-rate.php:201 +msgid "International" +msgstr "International" + +#: includes/common/shipping-modules/mp-flat-rate.php:101 +#: includes/common/shipping-modules/mp-table-rate.php:141 +#: includes/common/shipping-modules/mp-weight-rate.php:156 +msgid "Canada" +msgstr "Canada" + +#: includes/common/shipping-modules/mp-flat-rate.php:92 +#: includes/common/shipping-modules/mp-table-rate.php:132 +#: includes/common/shipping-modules/mp-weight-rate.php:147 +msgid "Hawaii and Alaska" +msgstr "Hawaii and Alaska" + +#: includes/common/shipping-modules/mp-flat-rate.php:83 +#: includes/common/shipping-modules/mp-table-rate.php:123 +#: includes/common/shipping-modules/mp-weight-rate.php:138 +msgid "Lower 48 States" +msgstr "Lower 48 States" + +#: includes/common/shipping-modules/mp-flat-rate.php:64 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping." +msgstr "Soyez sûr d'entrer un prix de livraison pour chaque option ou les clients peuvent obtenir la livraison gratuite." + +#: includes/common/shipping-modules/mp-flat-rate.php:25 +#: includes/common/shipping-modules/mp-flat-rate.php:223 +msgid "Flat Rate" +msgstr "Taux fixe" + +#: includes/common/shipping-modules/mp-fedex.php:761 +msgid "FedEx (beta)" +msgstr "FedEx (beta)" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Centimeters" +msgstr "Centimètres" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Inches" +msgstr "Pouces" + +#: includes/admin/class-mp-products-admin.php:1676 +#: includes/admin/class-mp-setup-wizard.php:547 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:166 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +msgid "Kilograms" +msgstr "Kilogrammes" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:103 +msgid " %1$s - %2$s" +msgstr " %1$s - %2$s" + +#: includes/common/shipping-modules/mp-usps.php:358 +msgid "Max Weight per Box" +msgstr "Poids max par colis" + +#: includes/common/shipping-modules/mp-usps.php:356 +msgid "Box Dimensions" +msgstr "Dimensions de la boite" + +#: includes/common/shipping-modules/mp-usps.php:354 +msgid "Box Name" +msgstr "Nom de la boite" + +#: includes/common/shipping-modules/mp-usps.php:344 +msgid "Total weight selects the box size used for calculating Shipping costs." +msgstr "Poids total sélectionne la taille de la boîte utilisée pour calculer les coûts d'expédition." + +#: includes/common/shipping-modules/mp-usps.php:343 +msgid "For each box defined enter the maximum weight it can contain." +msgstr "Pour chaque boîte, définir le poids maximum qu'il peut contenir." + +#: includes/common/shipping-modules/mp-usps.php:341 +msgid "Enter your standard box sizes as LengthxWidthxHeight" +msgstr "Entrez les dimensions de votre boite standard, LongueurxLargeurXHauteur" + +#: includes/common/shipping-modules/mp-fedex.php:386 +#: includes/common/shipping-modules/mp-ups.php:193 +#: includes/common/shipping-modules/mp-usps.php:234 +#: includes/common/shipping-modules/mp-usps.php:338 +msgid "Standard Boxes and Weight Limits" +msgstr "Colis standards et limites sur le poids" + +#: includes/common/shipping-modules/mp-usps.php:328 +msgid "Handling Charge per Interntional Shipment" +msgstr "Frais de prise en charge par envoi international" + +#: includes/common/shipping-modules/mp-usps.php:294 +msgid "Handling Charge per Domestic Shipment " +msgstr "Frais de prise en charge par envoi local" + +#: includes/common/shipping-modules/mp-fedex.php:388 +#: includes/common/shipping-modules/mp-ups.php:196 +#: includes/common/shipping-modules/mp-usps.php:237 +msgid "Add Box" +msgstr "Ajouter boite" + +#: includes/common/shipping-modules/mp-fedex.php:63 +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "(Next Day)" +msgstr "(Jour suivant)" + +#: includes/common/shipping-modules/mp-fedex.php:63 +msgid "Europe First International Priority" +msgstr "Europe First International Priority" + +#: includes/common/shipping-modules/mp-fedex.php:62 +msgid "International Priority" +msgstr "International Priority" + +#: includes/common/shipping-modules/mp-fedex.php:61 +#: includes/common/shipping-modules/mp-fedex.php:62 +#: includes/common/shipping-modules/mp-ups.php:54 +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "(1-3 Days)" +msgstr "(1-3 jours)" + +#: includes/common/shipping-modules/mp-fedex.php:61 +msgid "International First" +msgstr "International First" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "(5 Days)" +msgstr "(5 jours)" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "International Economy" +msgstr "International Economy" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "(2-7 Days)" +msgstr "(2-7 jours)" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "Smart Post" +msgstr "Smart Post" + +#: includes/common/shipping-modules/mp-fedex.php:55 +#: includes/common/shipping-modules/mp-ups.php:49 +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "(1-5 Days)" +msgstr "(1-5 jours)" + +#: includes/common/shipping-modules/mp-fedex.php:55 +msgid "Ground Home Delivery" +msgstr "Livraison à domicile" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "(1-7 Days)" +msgstr "(1-7 jours)" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "Fedex Ground" +msgstr "Fedex Ground" + +#: includes/common/shipping-modules/mp-fedex.php:53 +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "(3 Days)" +msgstr "(3 jours)" + +#: includes/common/shipping-modules/mp-fedex.php:53 +msgid "Fedex Express Saver" +msgstr "Fedex Express Saver" + +#: includes/common/shipping-modules/mp-fedex.php:52 +#: includes/common/shipping-modules/mp-ups.php:48 +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "(2 Days)" +msgstr "(2 jours)" + +#: includes/common/shipping-modules/mp-fedex.php:52 +msgid "Fedex 2 Day" +msgstr "Fedex 2 Day" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "(2 Days am)" +msgstr "(2 Days am)" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "Fedex 2 Day AM" +msgstr "Fedex 2 Day AM" + +#: includes/common/shipping-modules/mp-fedex.php:50 +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "(1 Day)" +msgstr "(1 jour)" + +#: includes/common/shipping-modules/mp-fedex.php:50 +msgid "Standard Overnight" +msgstr "Standard Overnight" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "(1 Day am )" +msgstr "(1 Day am )" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "Priority Overnight" +msgstr "Priority Overnight" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "(1 Day am)" +msgstr "(1 Day am)" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "First Overnight" +msgstr "First Overnight" + +#: includes/admin/class-mp-orders-admin.php:476 +#: includes/common/shipping-modules/mp-fedex.php:31 +msgid "FedEx" +msgstr "FedEx" + +#: includes/common/payment-gateways/paymill.php:270 +#: includes/common/payment-gateways/simplify.php:179 +#: includes/common/payment-gateways/stripe.php:365 +msgid "%1$s Card ending in %2$s - Expires %3$s" +msgstr "%1$s Carte se terminant par %2$s - Expirant %3$s" + +#: includes/common/payment-gateways/paymill.php:259 +#: includes/common/payment-gateways/pin.php:238 +#: includes/common/payment-gateways/simplify.php:171 +msgid "%s Store Purchase - Order ID: %s, Email: %s" +msgstr "%s Achat dans le magasin - ID de commande: %s, E-mail: %s" + +#: includes/common/payment-gateways/stripe.php:266 +msgid "You must login to Stripe to get your API credentials. You can enter your test credentials, then live ones when ready." +msgstr "Vous devez vous connecter à Stripe Obtenez vos identifiants API. Vous pouvez entrer vos identifiants de test, puis les réels quand vous êtes prêt." + +#: includes/common/payment-gateways/stripe.php:261 +msgid "When in live mode Stripe recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "En mode réel Stripe recommande l'utilisation d'un certificat SSL sur le site où le formulaire est utilisé." + +#: includes/common/payment-gateways/stripe.php:311 +msgid "The Stripe Token was not generated correctly. Please go back and try again." +msgstr "La clé Stripe n'a pas été générée correctement. Retournez en arrière et réessayez." + +#: includes/common/payment-gateways/class-mp-gateway-api.php:263 +#: includes/common/payment-gateways/paymill.php:122 +#: includes/common/payment-gateways/stripe.php:222 +msgid "Card Number" +msgstr "Numéro de carte" + +#: includes/common/payment-gateways/paymill.php:86 +msgid "Please enter a valid Credit Card Number." +msgstr "Entrez un numéro de carte valide." + +#: includes/common/payment-gateways/stripe.php:45 +#: includes/common/payment-gateways/stripe.php:433 +msgid "Stripe" +msgstr "Stripe" + +#: includes/common/payment-gateways/paypal-express.php:750 +msgid "Sets the background color for the payment page. By default, the color is white." +msgstr "Définit la couleur de fond pour la page de paiement. Par défaut, la couleur est le blanc." + +#: includes/common/payment-gateways/paypal-express.php:745 +msgid "Sets the background color for the header of the payment page. By default, the color is white." +msgstr "Définit la couleur de fond pour l'entête de la page de paiement. Par défaut, la couleur est le blanc." + +#: includes/common/payment-gateways/paypal-express.php:740 +msgid "Sets the border color around the header of the payment page. The border is a 2-pixel perimeter around the header space, which is 750 pixels wide by 90 pixels high. By default, the color is black." +msgstr "Définit la couleur de bordure autour de la tête de la page de paiement. La frontière est un périmètre de 2 pixels autour de l'espace-tête, qui est de 750 pixels de large par 90 pixels de haut. Par défaut, la couleur est noire." + +#: includes/common/payment-gateways/paypal-express.php:735 +msgid "URL for an image you want to appear at the top left of the payment page. The image has a maximum size of 750 pixels wide by 90 pixels high. PayPal recommends that you provide an image that is stored on a secure (https) server. If you do not specify an image, the business name is displayed." +msgstr "URL d'une image que vous souhaitez voir apparaître en haut à gauche de la page de paiement. L'image a une taille maximale de 750 pixels de large par 90 pixels de haut. PayPal vous recommande de fournir une image qui est stocké sur une connexion sécurisée (https) du serveur. Si vous ne spécifiez pas une image, le nom de l'entreprise est affiché." + +#: includes/common/payment-gateways/paypal-express.php:857 +#: includes/common/payment-gateways/paypal-express.php:1131 +msgid "The payment is pending because it is part of an order that has been authorized but not settled." +msgstr "Le paiement est en attente parce qu'il fait partie d'un ordre qui a été autorisé mais non encore réglées." + +#: includes/common/payment-gateways/paypal-express.php:853 +#: includes/common/payment-gateways/paypal-express.php:1127 +msgid "The payment is pending because it has been authorized but not settled. You must capture the funds first." +msgstr "Le paiement est en attente parce qu'il a été autorisé mais non encore réglées. Vous devez capturer les premiers fonds." + +#: includes/common/payment-gateways/paypal-express.php:847 +#: includes/common/payment-gateways/paypal-express.php:1120 +msgid "You denied the payment when it was marked as pending." +msgstr "Vous avez refusé le paiement quand elle a été marquée comme étant en attente." + +#: includes/common/payment-gateways/paypal-express.php:837 +#: includes/common/payment-gateways/paypal-express.php:1108 +msgid "A reversal has occurred on this transaction due to an unknown reason." +msgstr "Une inversion s'est produite sur cette transaction pour une raison inconnue." + +#: includes/common/payment-gateways/paypal-express.php:836 +#: includes/common/payment-gateways/paypal-express.php:1107 +msgid "A reversal has occurred on this transaction because you have given the customer a refund." +msgstr "Une inversion s'est produite dans cette transaction parce que vous avez donnée au client un remboursement." + +#: includes/common/payment-gateways/paypal-express.php:835 +#: includes/common/payment-gateways/paypal-express.php:1106 +msgid "A reversal has occurred on this transaction due to a complaint about the transaction from your customer." +msgstr "Une inversion s'est produite sur cette transaction en raison d'une plainte au sujet de la transaction de votre client." + +#: includes/common/payment-gateways/paypal-express.php:834 +#: includes/common/payment-gateways/paypal-express.php:1105 +msgid "A reversal has occurred on this transaction due to your customer triggering a money-back guarantee." +msgstr "Une inversion s'est produite sur cette transaction en raison de votre client déclenche une garantie de remboursement." + +#: includes/common/payment-gateways/paypal-express.php:833 +#: includes/common/payment-gateways/paypal-express.php:1104 +msgid "A reversal has occurred on this transaction due to a chargeback by your customer." +msgstr "Une inversion s'est produite sur cette transaction en raison d'un rejet de débit par votre client." + +#: includes/common/payment-gateways/paypal-express.php:1101 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer:" +msgstr "Un paiement a été annulé en raison d'un rejet de débit ou tout autre type d'inversion. Les fonds ont été retirés du solde de votre compte et retourné à l'acheteur:" + +#: includes/common/payment-gateways/paypal-express.php:826 +#: includes/common/payment-gateways/paypal-express.php:1097 +msgid "A payment has been accepted." +msgstr "Un paiement a été accepté." + +#: includes/common/payment-gateways/paypal-express.php:818 +#: includes/common/payment-gateways/paypal-express.php:1087 +msgid "The transaction has not terminated, e.g. an authorization may be awaiting completion." +msgstr "La transaction n'est pas terminée, par exemple une autorisation peut être en attente d'achèvement." + +#: includes/common/payment-gateways/payfast.php:531 +#: includes/common/payment-gateways/paypal-express.php:810 +#: includes/common/payment-gateways/paypal-express.php:1077 +msgid "The payment has failed. This happens only if the payment was made from your customer's bank account." +msgstr "Le paiement a échoué. Cela se produit uniquement si le paiement a été effectué à partir du compte bancaire de votre client." + +#: includes/common/payment-gateways/paypal-express.php:806 +#: includes/common/payment-gateways/paypal-express.php:1072 +msgid "An authorization for this transaction has been voided." +msgstr "Une autorisation pour cette transaction a été annulée." + +#: includes/common/payment-gateways/paypal-express.php:802 +#: includes/common/payment-gateways/paypal-express.php:1067 +msgid "The authorization period for this payment has been reached." +msgstr "La période d'autorisation pour ce versement a été dépassée." + +#: includes/common/payment-gateways/paypal-express.php:798 +#: includes/common/payment-gateways/paypal-express.php:1062 +msgid "A reversal has been canceled; for example, when you win a dispute and the funds for the reversal have been returned to you." +msgstr "Une inversion a été annulée, par exemple, quand vous gagnez un différend et le fonds pour l'inversion ont été retournés." + +#: includes/common/payment-gateways/paypal-express.php:499 +#: includes/common/payment-gateways/paypal-express.php:1163 +msgid "PayPal Express Checkout" +msgstr "Commande PayPal Express" + +#: includes/common/payment-gateways/paypal-chained-payments.php:798 +msgid "Gateway Settings Page Message" +msgstr "Paramètres Page Message Plateforme" + +#: includes/common/payment-gateways/paypal-express.php:725 +msgid "Signature" +msgstr "Signature" + +#: includes/common/payment-gateways/eway31.php:506 +#: includes/common/payment-gateways/eway31.php:533 +#: includes/common/shipping-modules/mp-fedex.php:276 +msgid "API Password" +msgstr "Mot de passe API" + +#: includes/common/payment-gateways/paypal-chained-payments.php:773 +msgid "Enter a percentage of all store sales to collect as a fee. Decimals allowed." +msgstr "Entrez un pourcentage de toutes les ventes des magasins pour collecter à titre de frais. Décimales autorisés." + +#: includes/common/payment-gateways/paypal-chained-payments.php:757 +msgid "Using PayPal Chained Payments allows you as the multisite network owner to collect a predefined fee or percentage of all sales on network MarketPress stores! This is invisible to the customers who purchase items in a store, and all PayPal fees will be charged to the store owner. To use this option you must create API credentials, and you should make all other gateways unavailable or limited above." +msgstr "En utilisant PayPal Paiements enchaînés vous permet en tant que propriétaire du réseau multisite à percevoir des honoraires prédéfinis ou le pourcentage de toutes les ventes sur les magasins MarketPress réseau! Ceci est invisible pour les clients qui achètent des articles dans un magasin, et tous les frais Paypal seront facturés au propriétaire du magasin. Pour utiliser cette option, vous devez créer informations d'authentification API, et vous devez prendre toutes les autres passerelles indisponible ou limitée ci-dessus." + +#: includes/common/payment-gateways/paypal-chained-payments.php:338 +msgid "Please be aware that we will deduct a ?% fee from the total of each transaction in addition to any fees PayPal may charge you. If for any reason you need to refund a customer for an order, please contact us with a screenshot of the refund receipt in your PayPal history as well as the Transaction ID of our fee deduction so we can issue you a refund. Thank you!" +msgstr "Please be aware that we will deduct a ?% fee from the total of each transaction in addition to any fees PayPal may charge you. If for any reason you need to refund a customer for an order, please contact us with a screenshot of the refund receipt in your PayPal history as well as the Transaction ID of our fee deduction so we can issue you a refund. Thank you!" + +#: includes/common/payment-gateways/paypal-chained-payments.php:698 +#: includes/common/payment-gateways/paypal-express.php:149 +msgid "There was a problem connecting to PayPal. Please try again." +msgstr "Il y a eu un problème durant la connexion à PayPal. Essayez encore, svp." + +#: includes/common/payment-gateways/paypal-chained-payments.php:470 +#: includes/common/payment-gateways/paypal-express.php:1053 +msgid "There was a problem verifying the IPN string with PayPal. Please try again." +msgstr "Il y a eu un problème durant la vérification de votre string IPN avec PayPal. Essayez encore, svp." + +#: includes/common/payment-gateways/paypal-chained-payments.php:310 +msgid "There was a problem connecting to PayPal to check the status of your purchase. Please check the status of your order here »" +msgstr "Il y a eu un problème de connexion à PayPal pour vérifier l'état de votre achat. S'il vous plaît vérifiez l'état de votre commande ici »" + +#: includes/common/payment-gateways/payfast.php:539 +#: includes/common/payment-gateways/paypal-chained-payments.php:254 +#: includes/common/payment-gateways/paypal-express.php:1139 +msgid "The payment is pending." +msgstr "Le paiement est en attente." + +#: includes/common/payment-gateways/paypal-chained-payments.php:251 +#: includes/common/payment-gateways/paypal-chained-payments.php:531 +#: includes/common/payment-gateways/paypal-express.php:862 +#: includes/common/payment-gateways/paypal-express.php:1136 +msgid "The payment is pending for an unknown reason. For more information, contact PayPal customer service." +msgstr "Le paiement est en attente pour une raison inconnue. Pour plus d'informations, contactez le service clientèle de PayPal." + +#: includes/common/payment-gateways/paypal-chained-payments.php:250 +#: includes/common/payment-gateways/paypal-chained-payments.php:530 +#: includes/common/payment-gateways/paypal-express.php:861 +#: includes/common/payment-gateways/paypal-express.php:1135 +msgid "The payment is pending because you are not yet verified. You must verify your account before you can accept this payment." +msgstr "Le paiement est en attente parce que vous n'êtes pas encore vérifié. Vous devez vérifier votre compte avant de pouvoir accepter ce paiement." + +#: includes/common/payment-gateways/paypal-chained-payments.php:249 +#: includes/common/payment-gateways/paypal-chained-payments.php:529 +#: includes/common/payment-gateways/paypal-express.php:860 +#: includes/common/payment-gateways/paypal-express.php:1134 +msgid "The payment is pending because it was made via credit card and you must upgrade your account to Business or Premier status in order to receive the funds. It can also mean that you have reached the monthly limit for transactions on your account." +msgstr "Le paiement est en attente parce qu'il a été fait par carte de crédit et vous devez mettre à niveau votre compte pour affaires ou Premier, afin de recevoir les fonds. Il peut également signifier que vous avez atteint la limite mensuelle de transactions sur votre compte." + +#: includes/common/payment-gateways/paypal-chained-payments.php:248 +#: includes/common/payment-gateways/paypal-chained-payments.php:528 +#: includes/common/payment-gateways/paypal-express.php:859 +#: includes/common/payment-gateways/paypal-express.php:1133 +msgid "The payment is pending because it was made to an email address that is not yet registered or confirmed." +msgstr "Le paiement est en attente parce qu'il a été fait à une adresse email qui n'est pas encore enregistrée ou confirmée." + +#: includes/common/payment-gateways/paypal-chained-payments.php:247 +#: includes/common/payment-gateways/paypal-chained-payments.php:527 +#: includes/common/payment-gateways/paypal-express.php:858 +#: includes/common/payment-gateways/paypal-express.php:1132 +msgid "The payment is pending while it is being reviewed by PayPal for risk." +msgstr "Le paiement est en attente pendant qu'il est examiné par PayPal pour le risque." + +#: includes/common/payment-gateways/paypal-chained-payments.php:246 +#: includes/common/payment-gateways/paypal-chained-payments.php:526 +#: includes/common/payment-gateways/paypal-express.php:856 +#: includes/common/payment-gateways/paypal-express.php:1130 +msgid "You do not have a balance in the currency sent, and you do not have your Payment Receiving Preferences set to automatically convert and accept this payment. You must manually accept or deny this payment." +msgstr "Vous n'avez pas de solde dans la devise envoyé, et que vous n'avez pas votre réception de paiements préférences définies pour convertir automatiquement et accepter ce paiement. Vous devez accepter ou refuser manuellement ce paiement." + +#: includes/common/payment-gateways/paypal-chained-payments.php:245 +#: includes/common/payment-gateways/paypal-chained-payments.php:525 +#: includes/common/payment-gateways/paypal-express.php:855 +#: includes/common/payment-gateways/paypal-express.php:1129 +msgid "The payment is pending because you hold a non-U.S. account and do not have a withdrawal mechanism. You must manually accept or deny this payment from your Account Overview." +msgstr "Le paiement est en attente parce que vous détenez un compte non-US et n'ont pas un mécanisme de retrait. Vous devez accepter ou refuser manuellement ce paiement à partir de votre Aperçu du compte." + +#: includes/common/payment-gateways/paypal-chained-payments.php:244 +#: includes/common/payment-gateways/paypal-chained-payments.php:524 +#: includes/common/payment-gateways/paypal-express.php:854 +#: includes/common/payment-gateways/paypal-express.php:1128 +msgid "The payment is pending because it was made by an eCheck that has not yet cleared." +msgstr "Le paiement est en attente car il a été fait par un Chèque électronique qui n'a pas encore été validé." + +#: includes/common/payment-gateways/paypal-chained-payments.php:243 +#: includes/common/payment-gateways/paypal-chained-payments.php:523 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences section of your Profile." +msgstr "Le paiement est en attente car votre client n'a pas confirmé les informations de livraison et vos préférences sont définies pour que vous acceptiez ou refusiez manuellement ces paiements. Pour changer vos préférences, allez dans la section préférences de votre profil." + +#: includes/common/payment-gateways/paypal-chained-payments.php:236 +#: includes/common/payment-gateways/paypal-chained-payments.php:516 +msgid "The transaction was rejected by the receiver (you)." +msgstr "La transaction a été rejetée par le destinataire (vous)." + +#: includes/common/payment-gateways/paypal-chained-payments.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:510 +#: includes/common/payment-gateways/paypal-express.php:843 +#: includes/common/payment-gateways/paypal-express.php:1115 +msgid "You refunded the payment." +msgstr "Vous avez remboursé le paiement." + +#: includes/common/payment-gateways/paypal-chained-payments.php:224 +#: includes/common/payment-gateways/paypal-chained-payments.php:504 +msgid "The transaction is in progress." +msgstr "La transaction est en cours." + +#: includes/common/payment-gateways/paypal-chained-payments.php:212 +#: includes/common/payment-gateways/paypal-chained-payments.php:491 +#: includes/common/payment-gateways/paypal-express.php:814 +#: includes/common/payment-gateways/paypal-express.php:1082 +msgid "The payment has been partially refunded." +msgstr "Le paiement a été partiellement remboursé." + +#: includes/common/payment-gateways/paypal-chained-payments.php:202 +#: includes/common/payment-gateways/paypal-chained-payments.php:481 +msgid "PayPal balance, Credit Card, or Instant Transfer" +msgstr "Balance PayPal, Carte de Crédit ou Virement Bancaire" + +#: includes/common/payment-gateways/paypal-chained-payments.php:177 +msgid "There was a problem connecting to PayPal to setup your purchase. Please try again." +msgstr "Il y a eu un problème durant la connexion à PayPal pour votre achat. Essayez encore, svp." + +#: includes/common/payment-gateways/paypal-chained-payments.php:122 +msgid "Your PayPal transaction has been canceled." +msgstr "Votre transaction PayPal a été annulée." + +#: includes/common/payment-gateways/paypal-chained-payments.php:50 +#: includes/common/payment-gateways/paypal-chained-payments.php:53 +#: includes/common/payment-gateways/paypal-chained-payments.php:732 +#: includes/common/payment-gateways/paypal-express.php:500 +#: includes/common/payment-gateways/paypal-express.php:938 +msgid "PayPal" +msgstr "PayPal" + +#: includes/common/payment-gateways/paypal-chained-payments.php:48 +#: includes/common/payment-gateways/paypal-chained-payments.php:730 +#: includes/common/payment-gateways/paypal-chained-payments.php:756 +#: includes/common/payment-gateways/paypal-chained-payments.php:873 +msgid "PayPal Chained Payments" +msgstr "PayPal Chained Payments" + +#: includes/common/payment-gateways/paypal-payflow.php:59 +#: includes/common/payment-gateways/paypal-payflow.php:467 +msgid "PayPal Payflow Pro" +msgstr "PayPal Payflow Pro" + +#: includes/common/payment-gateways/skrill.php:378 +msgid "Chargeback - A payment was reversed due to a chargeback. The funds have been removed from your account balance and returned to the buyer." +msgstr "Chargeback - Un paiement a été reversé à cause d'un Chargeback. Les fonds ont été enlevés de la balance de votre compte et retournés à l'acheteur." + +#: includes/common/payment-gateways/skrill.php:372 +msgid "Failed - The Credit Card or Direct Debit transaction was declined." +msgstr "Echec - La carte de crédit ou le virement à échoué." + +#: includes/common/payment-gateways/_payway.php:354 +#: includes/common/payment-gateways/skrill.php:366 +msgid "Cancelled - The payment was cancelled manually by the sender in their online account history or was auto-cancelled after 14 days pending." +msgstr "Annulé - La paiement a été annulé manuellement par l'expéditeur de l'historique en ligne de son compte ou bien a été annulé automatiquement après 14 jours d'attente." + +#: includes/common/payment-gateways/skrill.php:360 +msgid "Pending - The payment is pending. It can take 2-3 days for bank transfers to complete." +msgstr "Attente - Le paiement est en attente. Cela peut prendre 2-3 jours avant que le transfert bancaire soit effectué." + +#: includes/common/payment-gateways/_payway.php:349 +#: includes/common/payment-gateways/skrill.php:354 +msgid "Processed - The payment has been completed, and the funds have been added successfully to your Moneybookers account balance." +msgstr "Traité - Le paiement a été complété, et les fonds ont été ajouté avec succès dans votre balance Moneybookers." + +#: includes/common/payment-gateways/skrill.php:189 +msgid "Shown to the customer on the confirmation screen - the end step of the process - a note, confirmation number, or any other message. Line breaks <br> may be used for longer messages." +msgstr "Montré au client sur l'écran de confirmation - la dernière étape du processus - une note, numéro de confirmation ou tout autre message. Des sauts de ligne <br> peuvent être utilisés pour des messages plus longs." + +#: includes/common/payment-gateways/skrill.php:188 +msgid "Confirmation Note (optional)" +msgstr "Note de Confirmation (optionnel)" + +#: includes/common/payment-gateways/skrill.php:183 +msgid "The URL of the logo which you would like to appear at the top of the payment form. The logo must be accessible via HTTPS otherwise it will not be shown. For best integration results we recommend that you use a logo with dimensions up to 200px in width and 50px in height." +msgstr "L'url du logo qui doit apparaître en haut du formulaire de paiement. Le logo doit être accessible via HTTPS sinon il ne sera pas visible. Pour de meilleurs résultats d'intégration il est recommandé d'utiliser un logo de 200 pixels de largeur et de 50 pixels de hauteur." + +#: includes/common/payment-gateways/skrill.php:182 +msgid "Logo Image (optional)" +msgstr "Image de Logo (optionnel)" + +#: includes/common/payment-gateways/skrill.php:177 +msgid "The name of this store, which will be shown on the gateway. If no value is submitted, the account email will be shown as the recipient of the payment." +msgstr "Le nom de cette boutique, qui sera affiché sur la plateforme. Si aucune valeur saisie, l'email du compte sera affiché au destinataire du paiement." + +#: includes/common/payment-gateways/skrill.php:176 +msgid "Merchant Name (optional)" +msgstr "Nom Marchand (optionnel)" + +#: includes/common/payment-gateways/skrill.php:165 +msgid "Language" +msgstr "Langage" + +#: includes/common/payment-gateways/2checkout.php:368 +#: includes/common/payment-gateways/authorizenet-aim.php:262 +#: includes/common/payment-gateways/eway.php:363 +#: includes/common/payment-gateways/eway31.php:471 +#: includes/common/payment-gateways/mollie.php:91 +#: includes/common/payment-gateways/paymill.php:193 +#: includes/common/payment-gateways/paypal-chained-payments.php:356 +#: includes/common/payment-gateways/paypal-express.php:688 +#: includes/common/payment-gateways/paypal-payflow.php:432 +#: includes/common/payment-gateways/pin.php:186 +#: includes/common/payment-gateways/skrill.php:152 +#: includes/common/payment-gateways/stripe.php:288 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:104 +msgid "Currency" +msgstr "Monnaie" + +#: includes/common/payment-gateways/2checkout.php:359 +#: includes/common/payment-gateways/skrill.php:143 +msgid "Secret Word" +msgstr "Mot Secret" + +#: includes/common/payment-gateways/skrill.php:261 +msgid "Order ID:" +msgstr "ID Commande :" + +#: includes/common/payment-gateways/skrill.php:234 +msgid "Complete Checkout" +msgstr "Compléter Commande" + +#: includes/common/payment-gateways/skrill.php:204 +msgid "Your Moneybookers transaction has been canceled." +msgstr "Votre transaction Moneybookers a été annulée." + +#: includes/common/payment-gateways/manual-payments.php:155 +msgid "This is the email text to send to those who have made manual payment checkouts. You should include your manual payment instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "Ceci est le texte de l'email envoyé à ceux ayant effectué un paiement manuel. Vous devriez inclure vos instructions de paiement manuel ici. Cela remplacera l'email par défaut de commande. Ces codes seront remplacés par les détails de la commande : CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. HTML non-autorisé" + +#: includes/common/payment-gateways/_payway.php:257 +#: includes/common/payment-gateways/manual-payments.php:128 +msgid "Record payments manually, such as by Cash, Check, or EFT." +msgstr "Enregistrer les paiements manuels tels que espèces, chèques, etc..." + +#: includes/common/payment-gateways/manual-payments.php:71 +msgid "Manual/Invoice" +msgstr "Manuel/Facture" + +#: includes/admin/class-mp-setup-wizard.php:648 +#: includes/common/payment-gateways/manual-payments.php:35 +#: includes/common/payment-gateways/manual-payments.php:36 +msgid "Manual Payment" +msgstr "Paiement manuel :" + +#: includes/common/payment-gateways/manual-payments.php:34 +#: includes/common/payment-gateways/manual-payments.php:163 +msgid "Manual Payments" +msgstr "Paiements Manuels" + +#: includes/common/payment-gateways/_ideal.php:288 +msgid "iDEAL Simulator (for testing)" +msgstr "Simulateur iDEAL (pour tester)" + +#: includes/common/payment-gateways/_ideal.php:287 +msgid "ABN Amro Bank" +msgstr "ABN Amro Bank" + +#: includes/common/payment-gateways/_ideal.php:286 +msgid "Friesland Bank" +msgstr "Friesland Bank" + +#: includes/common/payment-gateways/_ideal.php:285 +msgid "Rabobank" +msgstr "Rabobank" + +#: includes/common/payment-gateways/_ideal.php:284 +msgid "ING Bank" +msgstr "ING Bank" + +#: includes/common/payment-gateways/_ideal.php:279 +msgid "Bank" +msgstr "Banque" + +#: includes/common/payment-gateways/_ideal.php:270 +msgid "To make it easier to pay for online products and services, the Dutch banking community has developed the iDEAL online payment method. iDEAL allows online payments to be made using online banking in EUR only." +msgstr "Pour faciliter les paiements en ligne de produits et services, la communauté des banques hollandaises a développé iDEAL. iDEAL ne permet que les paiements en ligne en EUR." + +#: includes/common/payment-gateways/_ideal.php:247 +#: includes/common/payment-gateways/_payway.php:199 +#: includes/common/payment-gateways/manual-payments.php:68 +msgid "Invoiced" +msgstr "Facturé" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1016 +msgid "Coupon" +msgstr "Bon de réduction" + +#: includes/common/payment-gateways/_ideal.php:77 +#: includes/common/payment-gateways/_ideal.php:250 +#: includes/common/payment-gateways/_payway.php:202 +msgid "iDEAL" +msgstr "iDEAL" + +#: includes/common/payment-gateways/_ideal.php:76 +msgid "iDEAL (beta)" +msgstr "iDEAL (beta)" + +#: includes/common/payment-gateways/payfast.php:327 +msgid "Merchant Key" +msgstr "Clé marchand" + +#: includes/common/payment-gateways/_ideal.php:293 +#: includes/common/payment-gateways/_payway.php:302 +#: includes/common/payment-gateways/payfast.php:324 +msgid "Merchant ID" +msgstr "ID marchand" + +#: includes/common/payment-gateways/eway31.php:462 +msgid "eWay Rapid 3.0 Payments lets merchants recieve credit card payments through eWay without need for users to leave the shop. Note this gateway requires a valid SSL certificate configured for this site." +msgstr "eWay Rapid 3.0 permet aux marchands d'accepter les paiements par carte de crédit via eWay sans obliger les acheteurs à quitter la boutique. Notez que cette passerelle nécessite un certificat SSL valide pour le site." + +#: includes/common/payment-gateways/eway.php:452 +msgid "There was a problem connecting to eWay. Please try again." +msgstr "Il y a eu un problème lors de la connexion à eWay. Réessayez." + +#: includes/common/payment-gateways/eway.php:432 +#: includes/common/payment-gateways/eway.php:437 +msgid "The url of the image can be hosted on your website and pass the secure https:// path of the image to be displayed at the top of the website. This is the second image block on the webpage and is restricted to 960px X 65px. A default secure image is used if none is supplied." +msgstr "L'url de l'image peut être hébergée sur votre site web et passer le protocole https:// pour être affichée en haut de votre site. C'est le second bloc image sur la page et il est restreint à 965px X 65px. Une image sécurisée par défaut est fournie si rien n'est renseigné." + +#: includes/common/payment-gateways/eway.php:431 +#: includes/common/payment-gateways/eway.php:436 +msgid "Company Logo (optional)" +msgstr "Logo de l'Entreprise (optionnel)" + +#: includes/common/payment-gateways/eway.php:427 +msgid "The page footer text can be customised and populated below the customer's order details. Useful for contact information." +msgstr "Ce texte de pied de page peut être personnalisé et affiché en dessous des détails de commande du client. Très utile pour des informations de contact." + +#: includes/common/payment-gateways/eway.php:426 +msgid "Page Footer (optional)" +msgstr "Pied de Page (optionnel)" + +#: includes/common/payment-gateways/eway.php:421 +msgid "Page Description (optional)" +msgstr "Description de Page (optionnelle)" + +#: includes/common/payment-gateways/eway.php:417 +#: includes/common/payment-gateways/eway.php:422 +msgid "This value is used to populate the browsers title bar at the top of the screen." +msgstr "Cette valeur est utilisée dans la barre de titre en haut de votre navigateur internet." + +#: includes/common/payment-gateways/eway.php:416 +msgid "Page Title (optional)" +msgstr "Titre de Page (optionnel)" + +#: includes/common/payment-gateways/eway.php:412 +msgid "This will be displayed as the company the customer is purchasing from, including this is highly recommended." +msgstr "Ceci affichera le nom de la société à qui le client achète, il est hautement recommandé de l'inclure." + +#: includes/common/payment-gateways/eway.php:411 +msgid "Company Name" +msgstr "Nom de la société" + +#: includes/common/payment-gateways/eway.php:394 +msgid "Customer ID" +msgstr "ID Client" + +#: includes/common/payment-gateways/eway.php:381 +#: includes/common/payment-gateways/eway31.php:488 +msgid "Live API Credentials" +msgstr "Identifiants API réels" + +#: includes/common/payment-gateways/eway.php:371 +#: includes/common/payment-gateways/eway31.php:479 +msgid "Gateway Mode" +msgstr "Mode passerelle" + +#: includes/common/payment-gateways/eway.php:354 +msgid "The Hosted Page is a webpage hosted on eWAY's side eliminating the need for merchants to capture, transmit or store credit card numbers. At the checkout time the merchant automatically redirects the customer to the Hosted Page where they would enter their details and have the transaction processed. Upon completion of the transaction the customer is redirected back to the MarketPress checkout confirmation page." +msgstr "La page hébergée est une page internet hébergée chez eWay, ce qui élimine pour les marchands le besoin de stocker ou transmettre des numéros de carte de crédit. Au moment de payer le marchand redirige automatiquement le client vers la page hébergée où ils renseignera ses informations de paiement. Une fois la transaction réalisée, le client est redirigé vers la page de confirmation de MarketPress." + +#: includes/common/payment-gateways/eway.php:314 +msgid "There was a problem with your credit card information: %s" +msgstr "Un problème est survenu avec vos informations de carte de crédit: %s" + +#: includes/common/payment-gateways/eway.php:300 +msgid "Paid - The card has been processed - %s" +msgstr "Payé - La carte a été traitée - %s" + +#: includes/common/payment-gateways/eway.php:253 +msgid "There was a problem setting up the transaction with eWay: %s" +msgstr "Un problème est survenu lors de la préparation de la transaction avec eWay: %s" + +#: includes/common/payment-gateways/eway.php:245 +#: includes/common/payment-gateways/eway.php:289 +msgid "There was a problem parsing the response from eWay. Please try again." +msgstr "Un problème est survenu lors du retour de la réponse de eWay. Réessayez." + +#: includes/common/payment-gateways/_ideal.php:159 +#: includes/common/payment-gateways/eway.php:189 +#: includes/common/payment-gateways/paypal-chained-payments.php:634 +#: includes/common/payment-gateways/paypal-express.php:322 +#: includes/common/payment-gateways/paypal-express.php:473 +msgid "%s Store Purchase - Order ID: %s" +msgstr "%s Store Purchase - Order ID: %s" + +#: includes/common/payment-gateways/eway.php:147 +#: includes/common/payment-gateways/eway.php:462 +msgid "eWay Shared Payments" +msgstr "eWay paiements partagés" + +#: includes/common/payment-gateways/_cubepoints.php:214 +msgid "This is the email text to send to those who have made CubePoints checkouts. You should include your CubePoints instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "Ceci est le texte de l'e-mail envoyé à ceux qui ont commandé avec CubePoints. Vous devez ajouter vos instructions pour CubePoints ici. Ceci remplace l'e-mail de confirmation par défaut. Ces codes seront remplacés par les détails de la commande. CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. HTML interdit." + +#: includes/common/payment-gateways/_cubepoints.php:212 +#: includes/common/payment-gateways/free_orders.php:188 +#: includes/common/payment-gateways/manual-payments.php:154 +msgid "Order Confirmation Email" +msgstr "Email Confirmation Commande" + +#: includes/common/payment-gateways/_cubepoints.php:207 +#: includes/common/payment-gateways/manual-payments.php:149 +msgid "Confirmation User Instructions" +msgstr "Confirmation Instructions Utilisateur" + +#: includes/common/payment-gateways/_cubepoints.php:202 +#: includes/common/payment-gateways/manual-payments.php:144 +msgid "User Instructions" +msgstr "Instructions Utilisateur" + +#: includes/common/payment-gateways/_cubepoints.php:198 +#: includes/common/payment-gateways/free_orders.php:170 +#: includes/common/payment-gateways/manual-payments.php:139 +msgid "Enter a public name for this payment method that is displayed to users - No HTML" +msgstr "Entrez un nom public pour cette méthode qui sera affiché aux visiteurs (pas de HTML)" + +#: includes/admin/class-mp-orders-admin.php:532 +#: includes/common/payment-gateways/_cubepoints.php:196 +#: includes/common/payment-gateways/free_orders.php:169 +#: includes/common/payment-gateways/manual-payments.php:138 +msgid "Method Name" +msgstr "Nom Méthode" + +#: includes/common/payment-gateways/_cubepoints.php:187 +msgid "Accept CubePoints as payment(requires the CubePoints plugin)." +msgstr "Acceptez CubePoints comme paiement (nécessite l'extension CubePoints)" + +#: includes/common/payment-gateways/_cubepoints.php:140 +msgid "Sorry, but you do not appear to have enough points to complete this purchase!" +msgstr "Désolé, mais il semble que vous n'ayez pas assez de points pour réaliser cet achat." + +#: includes/common/payment-gateways/_cubepoints.php:124 +msgid "%s Store Purchase" +msgstr "%s Achats dans le magasin" + +#: includes/common/payment-gateways/_cubepoints.php:79 +#: includes/common/payment-gateways/_cubepoints.php:171 +msgid "Your current points: " +msgstr "Vos points actuels:" + +#: includes/common/payment-gateways/_cubepoints.php:133 +#: includes/common/payment-gateways/_cubepoints.php:197 +msgid "CubePoints" +msgstr "CubePoints" + +#: includes/common/payment-gateways/authorizenet-aim.php:344 +msgid "Authorize.net AIM Checkout" +msgstr "Authorize.net AIM Checkout" + +#: includes/common/payment-gateways/authorizenet-aim.php:331 +msgid "Custom API URL" +msgstr " URL API personnalisée" + +#: includes/common/payment-gateways/authorizenet-aim.php:332 +msgid "Many other gateways have Authorize.net API emulators. To use one of these gateways input their API post url here." +msgstr "D'autres passerelles ont des émulateurs Authorize.net API. Pour en utiliser une entrez leur url post API ici." + +#: includes/common/payment-gateways/authorizenet-aim.php:322 +msgid "Request a delimited response from the payment gateway." +msgstr "Demandez une réponse délimitée par la passerelle de paiement." + +#: includes/common/payment-gateways/authorizenet-aim.php:316 +msgid "Security: MD5 Hash" +msgstr "Securité : MD5 Hash" + +#: includes/common/payment-gateways/authorizenet-aim.php:317 +msgid "The payment gateway generated MD5 hash value that can be used to authenticate the transaction response. Not needed because responses are returned using an SSL connection." +msgstr "La plateforme de paiement à généré un valeur MD5 qui peut être utilisée pour authentifier la réponse de transaction. Non nécessaire car les réponses sont envoyées avec une connexion SSL." + +#: includes/common/payment-gateways/authorizenet-aim.php:306 +msgid "Customer Receipt Email Footer" +msgstr "Bas Email Client" + +#: includes/common/payment-gateways/authorizenet-aim.php:296 +msgid "Customer Receipt Email Header" +msgstr "En-tête Email Client" + +#: includes/common/payment-gateways/authorizenet-aim.php:297 +#: includes/common/payment-gateways/paypal-payflow.php:446 +msgid "This text will appear as the header of the email receipt sent to the customer." +msgstr "Ce texte apparaîtra comme en-tête de l'email envoyé au client." + +#: includes/common/payment-gateways/authorizenet-aim.php:282 +msgid "Encapsulation Character" +msgstr "Caractère d'encapsulation" + +#: includes/common/payment-gateways/authorizenet-aim.php:283 +msgid "Authorize.net default is blank. Otherwise, get this from your credit card processor. If the transactions are going through, but getting strange responses, this character is most likely wrong." +msgstr "Authorize.net default is blank. Otherwise, get this from your credit card processor. If the transactions are going through, but getting strange responses, this character is most likely wrong." + +#: includes/common/payment-gateways/authorizenet-aim.php:273 +msgid "Optional settings to control advanced options" +msgstr "Paramètres optionnels pour contrôler les options avancées" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:224 +#: includes/common/payment-gateways/authorizenet-aim.php:272 +msgid "Advanced Settings" +msgstr "Paramètres avancés" + +#: includes/common/payment-gateways/authorizenet-aim.php:253 +msgid "Transaction Key" +msgstr "Clé de transaction" + +#: includes/common/payment-gateways/authorizenet-aim.php:246 +msgid "Login ID" +msgstr "ID Connexion" + +#: includes/common/payment-gateways/paypal-payflow.php:396 +msgid "Gateway Credentials" +msgstr "Pouvoirs Plateforme" + +#: includes/common/payment-gateways/authorizenet-aim.php:221 +msgid "Authorize.net AIM is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway. USD is the only currency supported by this gateway." +msgstr "Authorize.net AIM est une solution de paiement qui donne au marchand le contrôle sur toutes les étapes de la transaction. Un certificat SSL est requis pour utiliser cette plateforme. La seule monnaie supportée par cette plateforme est USD." + +#: includes/common/payment-gateways/authorizenet-aim.php:205 +msgid "There was a problem finalizing your purchase. %s Please go back and try again." +msgstr "Il y a eu un problème à la finalisation de votre commande. %s essayez encore, svp." + +#: includes/common/payment-gateways/payfast.php:519 +#: includes/common/payment-gateways/paypal-chained-payments.php:218 +#: includes/common/payment-gateways/paypal-chained-payments.php:498 +#: includes/common/payment-gateways/paypal-express.php:822 +#: includes/common/payment-gateways/paypal-express.php:1092 +msgid "The payment has been completed, and the funds have been added successfully to your account balance." +msgstr "Le paiement a été complété, et les fonds ont été ajoutés à votre compte." + +#: includes/common/payment-gateways/paypal-payflow.php:233 +msgid "Please enter a valid credit card security code" +msgstr "Entrez un code de sécurité valide pour votre carte de crédit, svp" + +#: includes/common/payment-gateways/paypal-payflow.php:224 +#: includes/public/class-mp-checkout.php:867 +msgid "Please enter a valid credit card number" +msgstr "Entrez un numéro de carte de crédit valide, svp" + +#: includes/common/payment-gateways/paypal-payflow.php:221 +msgid "Please enter your credit card number" +msgstr "Entre votre numéro de carte de crédit, svp" + +#: includes/common/payment-gateways/paypal-payflow.php:217 +msgid "Please enter your credit card security code" +msgstr "Entrez le code de sécurité de votre carte de crédit, svp" + +#: includes/common/payment-gateways/paypal-payflow.php:213 +msgid "Please select your credit card expiration date." +msgstr "Choisissez la date d'expiration de votre carte de crédit,svp." + +#: includes/common/payment-gateways/2checkout.php:299 +#: includes/common/payment-gateways/authorizenet-aim.php:50 +#: includes/common/payment-gateways/eway.php:148 +#: includes/common/payment-gateways/eway.php:298 +#: includes/common/payment-gateways/eway31.php:267 +#: includes/common/payment-gateways/paymill.php:46 +#: includes/common/payment-gateways/paypal-express.php:972 +#: includes/common/payment-gateways/paypal-payflow.php:60 +#: includes/common/payment-gateways/pin.php:46 +#: includes/common/payment-gateways/simplify.php:19 +#: includes/common/payment-gateways/stripe.php:46 +#: includes/common/payment-gateways/wepay.php:37 +msgid "Credit Card" +msgstr "Carte de Crédit" + +#: includes/common/payment-gateways/authorizenet-aim.php:49 +msgid "Authorize.net Checkout" +msgstr "Authorize.net Checkout" + +#: includes/common/payment-gateways/skrill.php:156 +#: includes/common/payment-gateways/stripe.php:293 +msgid "Selecting a currency other than that used for your store may cause problems at checkout." +msgstr "Choisir une monnaie autre que celle utilisée pour votre boutique peut causer des problèmes à la commande." + +#: includes/common/payment-gateways/2checkout.php:352 +msgid "Seller ID" +msgstr "ID vendeur" + +#: includes/common/payment-gateways/2checkout.php:340 +#: includes/common/payment-gateways/_ideal.php:311 +#: includes/common/payment-gateways/authorizenet-aim.php:234 +#: includes/common/payment-gateways/eway.php:376 +#: includes/common/payment-gateways/payfast.php:315 +#: includes/common/payment-gateways/paypal-chained-payments.php:368 +#: includes/common/payment-gateways/paypal-express.php:699 +#: includes/common/payment-gateways/paypal-payflow.php:391 +msgid "Live" +msgstr "Live" + +#: includes/common/payment-gateways/2checkout.php:339 +#: includes/common/payment-gateways/authorizenet-aim.php:233 +#: includes/common/payment-gateways/eway.php:375 +#: includes/common/payment-gateways/paypal-chained-payments.php:367 +#: includes/common/payment-gateways/paypal-express.php:698 +#: includes/common/payment-gateways/paypal-payflow.php:390 +#: includes/common/shipping-modules/mp-fedex.php:263 +msgid "Sandbox" +msgstr "Sandbox" + +#: includes/common/payment-gateways/2checkout.php:336 +#: includes/common/payment-gateways/_ideal.php:307 +#: includes/common/payment-gateways/authorizenet-aim.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:365 +#: includes/common/payment-gateways/paypal-express.php:695 +#: includes/common/payment-gateways/paypal-payflow.php:387 +#: includes/common/payment-gateways/wepay.php:130 +#: includes/common/shipping-modules/mp-fedex.php:260 +msgid "Mode" +msgstr "Mode" + +#: includes/common/payment-gateways/2checkout.php:288 +#: includes/common/payment-gateways/mijireh.php:242 +#: includes/common/payment-gateways/mollie.php:212 +msgid "The order has been received" +msgstr "La commande a été reçue" + +#: includes/common/payment-gateways/2checkout.php:74 +#: includes/common/payment-gateways/2checkout.php:75 +#: includes/common/payment-gateways/2checkout.php:435 +msgid "2Checkout" +msgstr "2Checkout" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:306 +msgid "Confirm" +msgstr "Confirmer" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:218 +#: includes/common/class-mp-cart.php:974 includes/common/class-mp-cart.php:1354 +#: includes/common/template-functions.php:918 +msgid "Checkout" +msgstr "Paiement" + +#: includes/common/template-functions.php:207 +msgid "Check Order Status" +msgstr "Vérification État Commande" + +#: includes/common/template-functions.php:235 +msgid "View Products" +msgstr "Voir Produits" + +#: includes/common/template-functions.php:263 +msgid "Visit Store" +msgstr "Visiter Boutique" + +#: includes/common/template-functions.php:2912 +#: includes/multisite/template-functions.php:448 +msgid "Order By" +msgstr "Trier par" + +#: includes/common/template-functions.php:2887 +#: includes/multisite/template-functions.php:405 +msgid "Price (High to Low)" +msgstr "Prix (décroissant)" + +#: includes/common/template-functions.php:2886 +#: includes/multisite/template-functions.php:404 +msgid "Price (Low to High)" +msgstr "Prix (croissant)" + +#: includes/common/template-functions.php:2881 +#: includes/multisite/template-functions.php:399 +msgid "Default" +msgstr "Valeur par défaut" + +#: includes/common/template-functions.php:2858 +msgid "Show All" +msgstr "Tous" + +#: includes/common/class-mp-product.php:2048 +msgid "View Larger Image »" +msgstr "Voir Image Large »" + +#: includes/common/class-mp-product.php:979 +msgid "Out of Stock" +msgstr "Rupture de Stock" + +#: includes/common/template-functions.php:148 +msgid "Price: " +msgstr "Prix : " + +#: includes/multisite/template-functions.php:833 +msgid "No Tags" +msgstr "Pas de mots-clés" + +#: includes/common/template-functions.php:3162 +msgid "Uncategorized" +msgstr "Non classé" + +#: includes/common/class-mp-cart.php:569 includes/common/class-mp-order.php:604 +#: includes/common/helpers.php:115 +msgid "Download" +msgstr "Téléchargement" + +#: includes/common/class-mp-cart.php:1353 +msgid "Empty Cart" +msgstr "Vider Panier" + +#: includes/common/payment-gateways/_payway.php:291 +#: includes/common/payment-gateways/paypal-express.php:718 +#: includes/common/payment-gateways/paypal-payflow.php:423 +#: includes/common/shipping-modules/mp-ups.php:158 +#: includes/public/class-mp-checkout.php:1254 +#: includes/public/class-mp-checkout.php:1383 +msgid "Password" +msgstr "Mot de passe" + +#: includes/common/payment-gateways/eway.php:387 +#: includes/common/payment-gateways/paypal-express.php:711 +#: includes/common/shipping-modules/mp-usps.php:185 +#: includes/public/class-mp-checkout.php:1249 +msgid "Username" +msgstr "Identifiant" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:437 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:790 +msgid "Have a coupon code?" +msgstr "Vous possédez un code de réduction (coupon)?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:321 +#: includes/admin/class-mp-orders-admin.php:526 +#: includes/common/class-mp-cart.php:592 +msgid "Remove" +msgstr "Supprimer" + +#: includes/admin/class-mp-ajax.php:316 +msgid "Quantity:" +msgstr "Quantité" + +#: includes/admin/class-mp-products-admin.php:2140 +#: includes/admin/class-mp-products-admin.php:2387 +#: includes/common/shipping-modules/class-mp-shipping-api.php:507 +msgid "Extra Shipping Cost" +msgstr "Coût d'expédition supplémentaire" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:403 +msgid "Choose a Shipping Method:" +msgstr "Choisissez une méthode d'expedition" + +#: includes/admin/class-mp-products-admin.php:1691 +#: includes/admin/class-mp-products-admin.php:2131 +#: includes/admin/class-mp-products-admin.php:2378 +#: includes/common/shipping-modules/class-mp-shipping-api.php:228 +msgid "Ounces" +msgstr "Onces" + +#: includes/admin/class-mp-products-admin.php:1684 +#: includes/admin/class-mp-products-admin.php:2123 +#: includes/admin/class-mp-products-admin.php:2369 +#: includes/admin/class-mp-setup-wizard.php:546 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:165 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +#: includes/common/shipping-modules/class-mp-shipping-api.php:227 +msgid "Pounds" +msgstr "Livres" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:226 +msgid "Product Weight:" +msgstr "Poids du produit:" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:214 +msgid "Weight (Kilograms)" +msgstr "Poids (kilos)" + +#: includes/admin/widgets/ms-global-categories.php:82 +msgid "Number of Categories:" +msgstr "Nombre de catégories :" + +#: includes/admin/widgets/ms-global-categories.php:72 +msgid "Product Count" +msgstr "Nombre de produits" + +#: includes/addons/class-mp-addons-list-table.php:20 +#: includes/admin/class-mp-product-attributes-admin.php:129 +#: includes/admin/class-mp-product-attributes-list-table.php:22 +#: includes/admin/class-mp-products-admin.php:2216 +#: includes/admin/class-mp-shortcode-builder.php:628 +#: includes/admin/class-mp-shortcode-builder.php:1415 +#: includes/admin/widgets/ms-global-categories.php:70 +#: includes/common/shipping-modules/mp-fedex.php:395 +#: includes/common/shipping-modules/mp-ups.php:202 +#: includes/common/shipping-modules/mp-usps.php:243 +#: includes/public/class-mp-checkout.php:314 +msgid "Name" +msgstr "Nom" + +#: includes/admin/widgets/ms-global-categories.php:67 +msgid "Order Categories By:" +msgstr "Tri des catégories par :" + +#: includes/admin/widgets/ms-global-categories.php:24 +#: includes/admin/widgets/ms-global-categories.php:50 +msgid "Global Product Categories" +msgstr "Catégories Produit Global" + +#: includes/admin/widgets/ms-global-categories.php:15 +msgid "Global Product Category List" +msgstr "Liste Catégorie Produit Global" + +#: includes/admin/widgets/ms-global-categories.php:13 +msgid "Displays a network-wide HTML list of product categories from network MarketPress stores." +msgstr "Affiche une liste HTML des réseaux de catégories de produits dans les boutiques du réseau MarketPress." + +#: includes/admin/widgets/ms-global-tag-cloud.php:24 +#: includes/admin/widgets/ms-global-tag-cloud.php:45 +msgid "Global Product Tags" +msgstr "Mots-clés Produit Global" + +#: includes/admin/widgets/ms-global-tag-cloud.php:15 +msgid "Global Product Tag Cloud" +msgstr "Nuage de mot-clé Produit Global" + +#: includes/admin/class-mp-shortcode-builder.php:947 +#: includes/admin/widgets/ms-global-product-list.php:173 +msgid "Excerpt" +msgstr "Extrait" + +#: includes/admin/widgets/ms-global-product-list.php:169 +msgid "Content To Show:" +msgstr "Contenu à afficher :" + +#: includes/admin/widgets/ms-global-product-list.php:140 +msgid "Limit To Product Tag:" +msgstr "Limite pour Mot-Clé Produit :" + +#: includes/admin/widgets/ms-global-product-list.php:132 +msgid "Limit To Product Category:" +msgstr "Limite pour Catégorie Produit" + +#: includes/admin/widgets/ms-global-product-list.php:72 +msgid "Global Products" +msgstr "Produits Globale" + +#: includes/admin/widgets/ms-global-product-list.php:16 +msgid "Global Product List" +msgstr "Liste Globale Produits" + +#: includes/admin/widgets/ms-global-product-list.php:14 +msgid "Shows a customizable global list of products from network MarketPress stores." +msgstr "Affiche une liste des produits personnalisables à partir du réseaux de boutiques MarketPress." + +#: includes/common/class-mp-product.php:974 +#: includes/multisite/template-functions.php:731 +msgid "Buy Now »" +msgstr "Acheter »" + +#: includes/admin/widgets/ms-global-tag-cloud.php:13 +msgid "Displays global most used product tags in cloud format from network MarketPress stores." +msgstr "Affiche les mots-clés globaux les plus utilisés à partir du réseau de boutiques MarketPress dans un nuage." + +#: includes/multisite/class-mp-admin-multisite.php:438 +msgid "Theme Permissions" +msgstr "Permissions Thème" + +#: includes/multisite/class-mp-admin-multisite.php:402 +#: includes/multisite/class-mp-admin-multisite.php:448 +msgid "No Access" +msgstr "Aucun accès" + +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:120 +msgid "Pro Site Level" +msgstr "Niveau Site Pro" + +#: includes/multisite/class-mp-admin-multisite.php:401 +#: includes/multisite/class-mp-admin-multisite.php:447 +msgid "All Can Use" +msgstr "Tous peuvent utiliser" + +#: includes/multisite/class-mp-admin-multisite.php:390 +msgid "Gateway Permissions" +msgstr "Permissions plateforme" + +#: includes/multisite/class-mp-admin-multisite.php:375 +msgid "Select a Gateway" +msgstr "Choix de plateforme" + +#: includes/multisite/class-mp-admin-multisite.php:350 +msgid "Global Gateway" +msgstr "Passerelle Globale" + +#. Plugin Name of the plugin/theme +msgid "MarketPress" +msgstr "MarketPress" + +#: includes/admin/widgets/product-tag-cloud.php:7 +msgid "Your most used product tags in cloud format from your MarketPress store." +msgstr "Vos mots-clés de produits les plus utilisés dans un nuage." + +#: includes/admin/widgets/categories.php:79 +msgid "Show hierarchy" +msgstr "Afficher la hiérarchie" + +#: includes/admin/widgets/categories.php:76 +#: includes/admin/widgets/ms-global-categories.php:92 +msgid "Show product counts" +msgstr "Afficher nombre de produits" + +#: includes/admin/widgets/categories.php:73 +msgid "Show as dropdown" +msgstr "Afficher en menu déroulant" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:710 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:736 +#: includes/admin/widgets/categories.php:30 +msgid "Select Category" +msgstr "Choisir une catégorie" + +#: includes/admin/widgets/categories.php:7 +msgid "A list or dropdown of product categories from your MarketPress store." +msgstr "Un liste ou un menu déroulant des catégories de produits de votre boutique" + +#: includes/admin/widgets/product-list.php:250 +msgid "Show Buy Button" +msgstr "Afficher bouton Acheter" + +#: includes/admin/widgets/ms-global-product-list.php:183 +#: includes/admin/widgets/product-list.php:244 +msgid "Show Price" +msgstr "Afficher Prix" + +#: includes/admin/widgets/product-list.php:241 +msgid "Show Excerpt" +msgstr "Afficher Extrait" + +#: includes/admin/widgets/ms-global-product-list.php:155 +#: includes/admin/widgets/product-list.php:238 +msgid "Thumbnail Size:" +msgstr "Taille miniature :" + +#: includes/admin/widgets/ms-global-product-list.php:153 +#: includes/admin/widgets/product-list.php:237 +msgid "Show Thumbnail" +msgstr "Afficher miniature" + +#: includes/admin/widgets/ms-global-product-list.php:147 +#: includes/admin/widgets/product-list.php:233 +msgid "Display Settings" +msgstr "Réglages de l’affichage" + +#: includes/admin/widgets/ms-global-product-list.php:136 +#: includes/admin/widgets/ms-global-product-list.php:144 +#: includes/admin/widgets/product-list.php:230 +msgid "Enter the Slug" +msgstr "Entrez le slug" + +#: includes/admin/widgets/product-list.php:228 +#: includes/common/template-functions.php:894 +msgid "Tag" +msgstr "Mot-clé" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:686 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:712 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:739 +#: includes/admin/class-mp-shortcode-builder.php:796 +#: includes/admin/widgets/product-list.php:227 +#: includes/common/template-functions.php:886 +#: includes/common/template-functions.php:2907 +msgid "Category" +msgstr "Catégorie" + +#: includes/admin/widgets/product-list.php:226 +msgid "No Filter" +msgstr "Pas de filtre" + +#: includes/admin/widgets/product-list.php:224 +msgid "Taxonomy Filter:" +msgstr "Filtre de Taxonomie :" + +#: includes/admin/widgets/ms-global-product-list.php:108 +#: includes/admin/widgets/product-list.php:209 +msgid "Order Products By:" +msgstr "Trier les produits par :" + +#: includes/admin/widgets/ms-global-product-list.php:101 +#: includes/admin/widgets/product-list.php:206 +msgid "Number of Products:" +msgstr "Nombre de produits :" + +#: includes/admin/widgets/ms-global-product-list.php:98 +#: includes/admin/widgets/product-list.php:204 +msgid "List Settings" +msgstr "Paramètres Liste" + +#: includes/admin/widgets/product-list.php:177 +msgid "Our Products" +msgstr "Nos Produits" + +#: includes/admin/widgets/product-list.php:144 +#: includes/common/template-functions.php:2070 +#: includes/common/template-functions.php:2347 +#: includes/multisite/template-functions.php:303 +#: includes/multisite/template-functions.php:623 +msgid "No Products" +msgstr "0 Produits" + +#: includes/admin/widgets/product-list.php:8 +msgid "Product List" +msgstr "Liste Produits" + +#: includes/admin/widgets/product-list.php:7 +msgid "Shows a customizable list of products from your MarketPress store." +msgstr "Affiche une liste personnalisable de produits de votre boutique" + +#: includes/admin/widgets/cart.php:75 includes/admin/widgets/categories.php:82 +#: includes/admin/widgets/product-list.php:253 +#: includes/admin/widgets/product-tag-cloud.php:57 +msgid "Only show on store pages" +msgstr "Afficher seulement sur les pages de magasin" + +#: includes/admin/widgets/cart.php:65 +#: includes/admin/widgets/ms-global-product-list.php:92 +#: includes/admin/widgets/product-list.php:200 +msgid "Custom Text:" +msgstr "Texte Perso :" + +#: includes/admin/widgets/cart.php:64 includes/admin/widgets/categories.php:69 +#: includes/admin/widgets/ms-global-categories.php:59 +#: includes/admin/widgets/ms-global-product-list.php:87 +#: includes/admin/widgets/ms-global-tag-cloud.php:49 +#: includes/admin/widgets/product-list.php:199 +#: includes/admin/widgets/product-tag-cloud.php:49 +msgid "Title:" +msgstr "Titre :" + +#: includes/admin/widgets/cart.php:7 +msgid "Shows dynamic shopping cart contents along with a checkout button for your MarketPress store." +msgstr "Affiche contenu de panier dynamique avec un bouton de commande pour votre boutique MarketPress." + +#: includes/admin/widgets/product-tag-cloud.php:8 +msgid "Product Tag Cloud" +msgstr "Nuage de mot-clé produit" + +#: includes/admin/class-mp-setup-wizard.php:539 +#: includes/admin/class-mp-setup-wizard.php:575 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:163 +msgid "Measurement System" +msgstr "Système de mesures" + +#: includes/admin/class-mp-setup-wizard.php:616 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:149 +msgid "Select Shipping Options" +msgstr "Choisissez les options de livraison." + +#: includes/admin/class-mp-setup-wizard.php:596 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:129 +msgid "Calculated Options" +msgstr "Options Calculées" + +#: includes/admin/class-mp-setup-wizard.php:582 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:115 +msgid "No Shipping" +msgstr "Pas de livraison" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:110 +msgid "EU" +msgstr "UE" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:109 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:93 +msgid "All" +msgstr "Tous" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:92 +msgid "Select:" +msgstr "Choix :" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:185 +msgid "Store Pages" +msgstr "Pages Boutique" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:223 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:256 +msgid "Order Shipped" +msgstr "Commande Expédiée" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:60 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:95 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:128 +#: marketpress.php:266 +msgid "New Order" +msgstr "Nouvelle Commande" + +#: includes/admin/class-mp-dashboard-widgets.php:314 +msgid "Email Notifications" +msgstr "Email de Notifications" + +#: includes/admin/class-mp-pages-admin.php:59 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:200 +msgid "Products List" +msgstr "Liste Produits" + +#: includes/admin/class-mp-pages-admin.php:58 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:190 +msgid "Store Base" +msgstr "Base Boutique" + +#: includes/admin/class-mp-product-attributes-admin.php:108 +#: includes/admin/class-mp-shortcode-builder.php:635 +#: includes/admin/class-mp-shortcode-builder.php:708 +#: includes/admin/class-mp-shortcode-builder.php:875 +#: includes/admin/class-mp-shortcode-builder.php:1319 +#: includes/admin/class-mp-shortcode-builder.php:1422 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:526 +#: includes/admin/widgets/ms-global-categories.php:78 +#: includes/admin/widgets/ms-global-product-list.php:127 +#: includes/admin/widgets/product-list.php:221 +msgid "Ascending" +msgstr "Ascendant" + +#: includes/admin/class-mp-product-attributes-admin.php:109 +#: includes/admin/class-mp-shortcode-builder.php:636 +#: includes/admin/class-mp-shortcode-builder.php:709 +#: includes/admin/class-mp-shortcode-builder.php:876 +#: includes/admin/class-mp-shortcode-builder.php:1320 +#: includes/admin/class-mp-shortcode-builder.php:1423 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:525 +#: includes/admin/widgets/ms-global-categories.php:75 +#: includes/admin/widgets/ms-global-product-list.php:124 +#: includes/admin/widgets/product-list.php:220 +msgid "Descending" +msgstr "Descendant" + +#: includes/admin/class-mp-shortcode-builder.php:637 +#: includes/admin/class-mp-shortcode-builder.php:695 +#: includes/admin/class-mp-shortcode-builder.php:862 +#: includes/admin/class-mp-shortcode-builder.php:1306 +#: includes/admin/class-mp-shortcode-builder.php:1424 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:518 +#: includes/admin/widgets/ms-global-product-list.php:121 +#: includes/admin/widgets/product-list.php:218 +msgid "Random" +msgstr "Aléatoire" + +#: includes/admin/class-mp-shortcode-builder.php:694 +#: includes/admin/class-mp-shortcode-builder.php:861 +#: includes/admin/class-mp-shortcode-builder.php:1305 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:517 +#: includes/admin/widgets/ms-global-product-list.php:119 +#: includes/admin/widgets/product-list.php:216 +msgid "Product Price" +msgstr "Prix Produit" + +#: includes/admin/class-mp-shortcode-builder.php:693 +#: includes/admin/class-mp-shortcode-builder.php:860 +#: includes/admin/class-mp-shortcode-builder.php:1304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:516 +#: includes/admin/widgets/ms-global-product-list.php:117 +#: includes/admin/widgets/product-list.php:215 +msgid "Number of Sales" +msgstr "Nombre de Ventes" + +#: includes/admin/class-mp-shortcode-builder.php:692 +#: includes/admin/class-mp-shortcode-builder.php:859 +#: includes/admin/class-mp-shortcode-builder.php:1303 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:515 +#: includes/admin/widgets/product-list.php:214 +msgid "Product Author" +msgstr "Auteur Produit" + +#: includes/admin/class-mp-shortcode-builder.php:691 +#: includes/admin/class-mp-shortcode-builder.php:858 +#: includes/admin/class-mp-shortcode-builder.php:1302 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:514 +#: includes/admin/widgets/product-list.php:213 +msgid "Product ID" +msgstr "ID Produit" + +#: includes/admin/class-mp-shortcode-builder.php:690 +#: includes/admin/class-mp-shortcode-builder.php:857 +#: includes/admin/class-mp-shortcode-builder.php:1301 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:513 +#: includes/admin/widgets/ms-global-product-list.php:113 +#: includes/admin/widgets/product-list.php:212 +msgid "Publish Date" +msgstr "Date Publication" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:430 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:726 +msgid "Width" +msgstr "Largeur" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:439 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:735 +msgid "Height" +msgstr "Hauteur" + +#: includes/admin/class-mp-product-attributes-admin.php:88 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:402 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:698 +msgid "Custom" +msgstr "Personnalisée" + +#: includes/common/class-mp-product.php:179 +#: includes/common/class-mp-product.php:992 +#: includes/common/class-mp-product.php:1000 +#: includes/multisite/template-functions.php:579 +msgid "Buy Now" +msgstr "Acheter" + +#: includes/common/class-mp-product.php:175 +#: includes/common/class-mp-product.php:990 +#: includes/common/class-mp-product.php:998 +msgid "Add To Cart" +msgstr "Ajouter au Panier" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:807 +msgid "Store Style" +msgstr "Style de Boutique" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1021 +msgid "Edit Coupon" +msgstr "Modifier Coupon" + +#: includes/addons/mp-coupons/class-mp-coupon.php:580 +#: includes/admin/class-mp-ajax.php:238 +#: includes/admin/class-mp-products-admin.php:1532 +msgid "Unlimited" +msgstr "Illimité" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1198 +msgid "Remaining Uses" +msgstr "Utilisations Restantes" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1197 +msgid "Used" +msgstr "Utilisé" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:752 +#: includes/admin/class-mp-products-admin.php:2343 +msgid "Start Date" +msgstr "Date Départ" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:598 +msgid "Coupon Code" +msgstr "Code Promo" + +#: includes/admin/class-mp-orders-admin.php:444 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:284 +msgid "Save Changes" +msgstr "Sauvegarder" + +#: includes/admin/class-mp-pages-admin.php:57 +#: includes/admin/class-mp-shortcode-builder.php:716 +#: includes/admin/class-mp-shortcode-builder.php:727 +#: includes/admin/class-mp-shortcode-builder.php:883 +#: includes/admin/class-mp-shortcode-builder.php:894 +#: includes/admin/class-mp-shortcode-builder.php:946 +#: includes/admin/class-mp-shortcode-builder.php:956 +#: includes/admin/class-mp-shortcode-builder.php:1006 +#: includes/admin/class-mp-shortcode-builder.php:1327 +#: includes/admin/class-mp-shortcode-builder.php:1338 +#: includes/admin/store-settings/class-mp-store-settings-general.php:357 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:270 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:108 +#: includes/admin/widgets/ms-global-product-list.php:172 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:94 +msgid "None" +msgstr "Aucun" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:352 +msgid "Google Analytics Ecommerce Tracking" +msgstr "Google Analytics Ecommerce Tracking" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:310 +msgid "This option turns MarketPress into more of a product listing plugin, disabling shopping carts, checkout, and order management. This is useful if you simply want to list items you can buy in a store somewhere else, optionally linking the \"Buy Now\" buttons to an external site. Some examples are a car dealership, or linking to songs/albums in itunes, or linking to products on another site with your own affiliate links." +msgstr "Cette option transforme MarketPress en catalogue, désactive le panier, la commande et la gestion des commandes. Ceci est utile si vous désirez simplement lister les produits que vous pouvez acheter dans une autre boutique, et occasionnellement lier le bouton \"Buy Now\" vers un site externe. Par exemple pour des ventes de voitures, des chansons/albums sur iTunes, ou lier des produits sur un autre site avec vos liens d'affiliation." + +#: includes/admin/store-settings/class-mp-store-settings-general.php:304 +msgid "Whether or not customers must be registered and logged in to checkout. (Not recommended: Enabling this can lower conversions)" +msgstr "Choisissez si vous voulez forcer les clients à être enregistrés et connectés pour acheter. (Du coup seuls les utilisateurs de Vintagers pourront acheter. Nous vous recommandons d'éviter cela afin de ne pas réduire vos ventes!)" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:258 +msgid "How many times may a customer download a file they have purchased? (It's best to set this higher than one in case they have any problems downloading)" +msgstr "Combien de fois un client peut télécharger le fichier acheté? (Il est préférable de laisser une limite assez haute afin d'éviter les problèmes de téléchargement)" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:257 +msgid "Maximum Downloads" +msgstr "Maximum de Téléchargements" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:298 +msgid "This will set the product to draft if inventory of all variations is gone." +msgstr "Cela définira le produit en tant que brouillon si l'inventaire de toutes les variantes a disparu." + +#: includes/admin/store-settings/class-mp-store-settings-general.php:288 +msgid "At what low stock count do you want to be warned for products you have enabled inventory tracking for?" +msgstr "A partir de quel seuil d'alerte de stock désirez vous être notifié pour les produits dont vous avez activé le suivi d'inventaire?" + +#: includes/admin/class-mp-dashboard-widgets.php:208 +#: includes/admin/store-settings/class-mp-store-settings-general.php:287 +msgid "Inventory Warning Threshold" +msgstr "Seuil d'alerte des stocks" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:282 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:542 +msgid "Miscellaneous Settings" +msgstr "Paramètres Divers" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:429 +#: includes/multisite/class-mp-admin-multisite.php:247 +msgid "Show Decimal in Prices" +msgstr "Afficher les décimales dans les prix" + +#: includes/admin/class-mp-setup-wizard.php:451 +#: includes/admin/store-settings/class-mp-store-settings-general.php:403 +#: includes/multisite/class-mp-admin-multisite.php:221 +msgid "Currency Symbol Position" +msgstr "Position Symbole Monnaie" + +#: includes/admin/class-mp-setup-wizard.php:444 +#: includes/admin/store-settings/class-mp-store-settings-general.php:396 +msgid "Store Currency" +msgstr "Monnaie Boutique" + +#: includes/admin/class-mp-setup-wizard.php:429 +#: includes/admin/store-settings/class-mp-store-settings-general.php:381 +msgid "Currency Settings" +msgstr "Paramètres Monnaie" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:516 +msgid "Please see your local tax laws. Note if this is enabled and a downloadable only cart, rates will be the default for your base location." +msgstr "Reportez-vous à vos règles locales concernant les taxes. Si ceci est activé et que c'est un achat uniquement en téléchargement, les taux applicables seront ceux de votre résidence." + +#: includes/admin/class-mp-setup-wizard.php:529 +msgid "Apply Tax to Downloadable Products?" +msgstr "Appliquer taxes pour les produits téléchargeables?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:498 +msgid "Enabling this option allows you to enter and show all prices inclusive of tax, while still listing the tax total as a line item in shopping carts. Please see your local tax laws." +msgstr "Cette option vous permets d'entrer vos prix TVA inclue, tout en maintenant l'affichage du total des taxes sur une ligne lors des commandes. Merci de vous reportez à vos obligations légales locales." + +#: includes/admin/class-mp-setup-wizard.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:497 +msgid "Enter Prices Inclusive of Tax?" +msgstr "Entrer les prix TVA inclue?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:492 +msgid "Please see your local tax laws. Most areas charge tax on shipping fees." +msgstr "Vérifiez les lois de vos taxes locales. Plusieurs zones taxent les frais de port." + +#: includes/admin/class-mp-setup-wizard.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:491 +msgid "Apply Tax To Shipping Fees?" +msgstr "Appliquer taxes aux frais de port?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:674 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:565 +#: includes/common/payment-gateways/authorizenet-aim.php:291 +#: includes/common/payment-gateways/authorizenet-aim.php:326 +#: includes/common/payment-gateways/payfast.php:347 +msgid "No" +msgstr "Non" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:675 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:759 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:512 +#: includes/admin/class-mp-setup-wizard.php:518 +#: includes/admin/class-mp-setup-wizard.php:524 +#: includes/admin/class-mp-setup-wizard.php:530 +#: includes/admin/class-mp-setup-wizard.php:564 +#: includes/admin/store-settings/class-mp-store-settings-general.php:232 +#: includes/admin/store-settings/class-mp-store-settings-general.php:299 +#: includes/admin/store-settings/class-mp-store-settings-general.php:305 +#: includes/admin/store-settings/class-mp-store-settings-general.php:311 +#: includes/admin/store-settings/class-mp-store-settings-general.php:317 +#: includes/admin/store-settings/class-mp-store-settings-general.php:328 +#: includes/admin/store-settings/class-mp-store-settings-general.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:341 +#: includes/admin/store-settings/class-mp-store-settings-general.php:348 +#: includes/admin/store-settings/class-mp-store-settings-general.php:367 +#: includes/admin/store-settings/class-mp-store-settings-general.php:493 +#: includes/admin/store-settings/class-mp-store-settings-general.php:499 +#: includes/admin/store-settings/class-mp-store-settings-general.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:556 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:375 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:381 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:387 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:474 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:493 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:532 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:574 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:606 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:664 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:670 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:677 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:683 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:689 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:763 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:774 +#: includes/common/payment-gateways/_bitpay.php:250 +#: includes/common/payment-gateways/_bitpay.php:257 +#: includes/common/payment-gateways/_bitpay.php:264 +#: includes/common/payment-gateways/authorizenet-aim.php:290 +#: includes/common/payment-gateways/authorizenet-aim.php:325 +#: includes/common/payment-gateways/free_orders.php:160 +#: includes/common/payment-gateways/payfast.php:346 +#: includes/common/payment-gateways/paymill.php:162 +#: includes/common/payment-gateways/paypal-payflow.php:441 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-checkbox.php:22 +msgid "Yes" +msgstr "Oui" + +#: includes/admin/class-mp-setup-wizard.php:492 +#: includes/admin/store-settings/class-mp-store-settings-general.php:472 +msgid "%s Tax Rate" +msgstr "Taux de Taxe %s" + +#: includes/admin/class-mp-setup-wizard.php:467 +#: includes/admin/store-settings/class-mp-store-settings-general.php:449 +msgid "Tax Settings" +msgstr "Paramètres Taxes" + +#: includes/admin/class-mp-setup-wizard.php:370 +#: includes/admin/store-settings/class-mp-store-settings-general.php:624 +msgid "Base Zip/Postal Code" +msgstr "Code Postal" + +#: includes/admin/class-mp-setup-wizard.php:354 +#: includes/admin/store-settings/class-mp-store-settings-general.php:608 +msgid "Base State/Province/Region" +msgstr "Etat/Province/Région de Base" + +#: includes/admin/class-mp-setup-wizard.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:589 +msgid "Base Country" +msgstr "Pays de Base" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:582 +msgid "Location Settings" +msgstr "Paramètres Localisation" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:195 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:800 +#: includes/multisite/class-mp-admin-multisite.php:172 +msgid "General Settings" +msgstr "Paramètres Généraux" + +#: includes/admin/class-mp-products-admin.php:1945 +#: includes/admin/class-mp-products-admin.php:2185 +#: includes/admin/class-mp-store-settings-admin.php:111 +#: includes/admin/class-mp-store-settings-admin.php:266 +msgid "General" +msgstr "Général" + +#: includes/admin/class-mp-store-settings-admin.php:242 +msgid "Importers" +msgstr "Importation" + +#: includes/admin/class-mp-store-settings-admin.php:115 +#: includes/admin/class-mp-store-settings-admin.php:234 +msgid "Payments" +msgstr "Paiements" + +#: includes/admin/class-mp-dashboard-widgets.php:313 +#: includes/admin/class-mp-store-settings-admin.php:112 +#: includes/admin/class-mp-store-settings-admin.php:222 +msgid "Presentation" +msgstr "Presentation" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:916 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1015 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1018 +#: includes/admin/class-mp-dashboard-widgets.php:305 marketpress.php:702 +msgid "Coupons" +msgstr "Codes Promos (coupons)" + +#: includes/admin/class-mp-admin.php:251 +msgid "Download »" +msgstr "Téléchargement »" + +#: includes/admin/class-mp-admin.php:245 +#: includes/admin/class-mp-exporter-orders.php:170 +msgid "All Statuses" +msgstr "Tous les Status" + +#: includes/admin/class-mp-admin.php:209 +#: includes/admin/class-mp-exporter-orders.php:150 +#: includes/admin/class-mp-exporter-orders.php:178 +msgid "Export Orders" +msgstr "Exporter les Commandes" + +#: includes/admin/class-mp-admin.php:228 +msgid "Show all dates" +msgstr "Afficher toutes les dates" + +#: includes/admin/class-mp-orders-admin.php:947 +msgid "Change Status" +msgstr "Changer Statut" + +#: includes/admin/class-mp-orders-admin.php:287 +msgid "Order Notes" +msgstr "Notes de Commande" + +#: includes/admin/class-mp-orders-admin.php:478 +msgid "Other" +msgstr "Autre" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:205 +msgid "Subtotal" +msgstr "Sous-total" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:84 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:87 +#: includes/admin/class-mp-products-admin.php:1737 +#: includes/common/class-mp-cart.php:1409 +#: includes/common/class-mp-product.php:559 +msgid "Quantity" +msgstr "Quantité" + +#: includes/common/helpers.php:93 +msgid "Item" +msgstr "Produit" + +#: includes/common/class-mp-order.php:1050 +msgid "Current Status" +msgstr "Statut Actuel" + +#: includes/admin/class-mp-orders-admin.php:297 +msgid "Order Actions" +msgstr "Actions Commande" + +#: includes/common/class-mp-product.php:1084 +msgid "More Info »" +msgstr "En savoir plus »" + +#: includes/common/class-mp-product.php:2313 +msgid "Low Product Inventory Notification" +msgstr "Information de produit bientôt en rupture de stock" + +#: includes/common/class-mp-order.php:338 includes/common/data.php:154 +msgid "New Order Notification: ORDERID" +msgstr "Nouvelle notification de commande : ORDERID" + +#: includes/common/helpers.php:259 +msgid "Your payment for this order is complete." +msgstr "Votre paiement pour cette commande est complet." + +#: includes/common/helpers.php:261 +msgid "Your payment for this order is not yet complete. Here is the latest status:" +msgstr "Votre paiement pour cette commande n'est pas encore complet. Voici le dernier statut :" + +#: includes/common/helpers.php:256 +msgid "Payment Total:" +msgstr "Total Paiement :" + +#: includes/common/helpers.php:253 +msgid "Transaction ID:" +msgstr "ID Transaction :" + +#: includes/common/helpers.php:249 +msgid "Payment Type:" +msgstr "Type de Paiement :" + +#: includes/common/helpers.php:246 +msgid "Payment Method:" +msgstr "Méthode de Paiement :" + +#: includes/common/helpers.php:242 +msgid "Order Notes:" +msgstr "Remarques:" + +#: includes/common/helpers.php:237 +msgid "Special Instructions:" +msgstr "Instructions particulières :" + +#: includes/common/helpers.php:232 +msgid "Tracking Number:" +msgstr "Numéro de suivi:" + +#: includes/common/helpers.php:223 includes/common/helpers.php:226 +#: includes/common/helpers.php:228 +#: includes/common/shipping-modules/class-mp-shipping-api.php:406 +#: includes/common/shipping-modules/class-mp-shipping-api.php:428 +msgid "Shipping Method:" +msgstr "Méthode d'expédition:" + +#: includes/common/helpers.php:168 +msgid "No shipping required for this order." +msgstr "Pas de livraison requise pour cette commande" + +#: includes/common/helpers.php:155 +msgid "Order Total:" +msgstr "Total Commande :" + +#: includes/common/class-mp-order.php:1025 +msgid "Taxes:" +msgstr "Taxes :" + +#: includes/common/class-mp-order.php:1032 includes/common/helpers.php:144 +msgid "Shipping:" +msgstr "Livraison :" + +#: includes/public/class-mp-checkout.php:367 +msgid "Street address, P.O. box, company name, c/o" +msgstr "Nom de rue, Boite Postale, Entreprise, etc.." + +#: includes/admin/class-mp-orders-admin.php:314 +msgid "Shipping Info" +msgstr "Info Livraison" + +#: includes/public/class-mp-public.php:740 +msgid "Whoops, there was a problem loading up this file for your download. Please contact us for help." +msgstr "Oups, il y a eu un problème pour le téléchargement de votre fichier. Contactez-nous pour de l'aide." + +#: includes/public/class-mp-public.php:683 +msgid "Sorry, our records show you've downloaded this file %d out of %d times allowed. Please contact us if you still need help." +msgstr "Désolé, nos rapports montrent que vous avez téléchargé ce fichier %d hors%d du temps imparti. Contactez-nous pour de l'aide." + +#: includes/public/class-mp-public.php:634 +msgid "Sorry, your order has been marked as unpaid." +msgstr "Désolé, votre commande est marquée comme non payée." + +#: includes/public/class-mp-public.php:629 +msgid "Sorry, the link is invalid for this download." +msgstr "Désolé, le lien n’est pas valide pour ce téléchargement." + +#: includes/admin/class-mp-exporter-orders.php:15 +#: includes/admin/class-mp-products-admin.php:1172 +msgid "Cheatin’ uh?" +msgstr "Alors, on triche ?" + +#: includes/public/class-mp-public.php:407 +#: includes/public/class-mp-short-codes.php:128 +msgid "Please enter a valid email address." +msgstr "Veuillez saisir une adresse de messagerie valide." + +#: includes/admin/class-mp-ajax.php:191 +#: includes/admin/class-mp-products-admin.php:1821 +#: includes/admin/class-mp-products-admin.php:2010 +#: includes/admin/class-mp-products-admin.php:2267 +msgid "File URL" +msgstr "URL Fichier" + +#: includes/admin/class-mp-products-admin.php:1842 +msgid "External Link" +msgstr "Lien Externe" + +#: includes/admin/class-mp-products-admin.php:2177 +msgid "Add Variation" +msgstr "Ajouter Variation" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:126 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:289 +msgid "Inventory" +msgstr "Inventaire" + +#: includes/admin/class-mp-products-admin.php:438 +#: includes/admin/class-mp-products-admin.php:578 +#: includes/admin/class-mp-products-admin.php:1552 +#: includes/admin/class-mp-products-admin.php:2053 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:134 +msgid "Sale Price" +msgstr "Prix de Solde" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "Variation Name" +msgstr "Nom de Variation" + +#: includes/admin/class-mp-products-admin.php:1931 +msgid "Product Details" +msgstr "Détails du Produit" + +#: includes/admin/class-mp-product-attributes-list-table.php:33 +msgid "Delete" +msgstr "Supprimer" + +#: includes/admin/class-mp-orders-admin.php:1057 +msgid "Trashed" +msgstr "Mise à la Corbeille" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:231 +#: includes/admin/class-mp-orders-admin.php:1015 +#: includes/common/class-mp-order.php:1052 includes/common/helpers.php:97 +msgid "Total" +msgstr "Total" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1196 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:210 +#: includes/admin/class-mp-orders-admin.php:1014 +msgid "Discount" +msgstr "Promotion" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:221 +#: includes/admin/class-mp-orders-admin.php:1013 +#: includes/common/payment-gateways/_ideal.php:148 +#: includes/common/payment-gateways/_payway.php:134 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:108 +msgid "Tax" +msgstr "Taxe" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:216 +#: includes/admin/class-mp-orders-admin.php:1012 +#: includes/admin/class-mp-products-admin.php:1958 +#: includes/admin/class-mp-products-admin.php:2198 +#: includes/admin/class-mp-store-settings-admin.php:114 +#: includes/admin/class-mp-store-settings-admin.php:230 +#: includes/common/class-mp-cart.php:717 includes/common/helpers.php:168 +#: includes/common/payment-gateways/_ideal.php:137 +#: includes/common/payment-gateways/_payway.php:116 +#: includes/public/class-mp-checkout.php:1304 +msgid "Shipping" +msgstr "Livraison" + +#: includes/admin/class-mp-orders-admin.php:1011 +msgid "Items" +msgstr "Produits" + +#: includes/admin/class-mp-orders-admin.php:1010 +msgid "From" +msgstr "De" + +#: includes/admin/class-mp-exporter-orders.php:154 +#: includes/admin/class-mp-orders-admin.php:1009 +#: includes/common/class-mp-gdpr.php:370 +msgid "Order Date" +msgstr "Date Commande" + +#: includes/admin/class-mp-orders-admin.php:1008 +#: includes/common/class-mp-gdpr.php:366 +#: includes/common/template-functions.php:2134 +msgid "Order ID" +msgstr "ID Commande" + +#: includes/addons/class-mp-addons-list-table.php:22 +#: includes/admin/class-mp-orders-admin.php:1007 +msgid "Status" +msgstr "Statut" + +#: includes/admin/class-mp-orders-admin.php:1155 +msgid "N/A" +msgstr "N/A" + +#: includes/admin/class-mp-dashboard-widgets.php:243 +#: includes/admin/class-mp-products-admin.php:464 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:142 +msgid "Sales" +msgstr "Ventes" + +#: includes/admin/class-mp-products-admin.php:463 +msgid "Stock" +msgstr "Stock" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:85 +#: includes/admin/class-mp-ajax.php:176 includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:434 +#: includes/admin/class-mp-products-admin.php:462 +#: includes/admin/class-mp-products-admin.php:576 +#: includes/admin/class-mp-products-admin.php:1519 +#: includes/admin/class-mp-products-admin.php:1569 +#: includes/admin/class-mp-products-admin.php:1950 +#: includes/admin/class-mp-products-admin.php:2059 +#: includes/admin/class-mp-products-admin.php:2190 +#: includes/admin/class-mp-products-admin.php:2330 +#: includes/common/class-mp-cart.php:1415 includes/common/helpers.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:130 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:276 +msgid "Price" +msgstr "Prix" + +#: includes/admin/class-mp-ajax.php:173 +#: includes/admin/class-mp-products-admin.php:461 +#: includes/admin/class-mp-products-admin.php:1972 +#: includes/admin/class-mp-products-admin.php:2224 +msgid "SKU" +msgstr "SKU (Référence produit)" + +#: includes/admin/class-mp-products-admin.php:459 +#: includes/admin/class-mp-products-admin.php:1793 +#: includes/admin/class-mp-products-admin.php:1805 +#: includes/admin/class-mp-products-admin.php:2163 +msgid "Variations" +msgstr "Variations" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:83 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:86 +#: includes/admin/class-mp-dashboard-widgets.php:134 +#: includes/admin/class-mp-products-admin.php:458 +#: includes/admin/class-mp-products-admin.php:837 +#: includes/admin/class-mp-shortcode-builder.php:689 +#: includes/admin/class-mp-shortcode-builder.php:856 +#: includes/admin/class-mp-shortcode-builder.php:1300 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:512 +#: includes/admin/widgets/ms-global-product-list.php:115 +#: includes/admin/widgets/product-list.php:211 +msgid "Product Name" +msgstr "Nom Produit" + +#: includes/common/template-functions.php:2575 +msgid "Categorized in " +msgstr "Classé dans " + +#: includes/admin/class-mp-orders-admin.php:305 +#: includes/common/payment-gateways/free_orders.php:176 +msgid "Payment Information" +msgstr "Informations de paiement" + +#: includes/admin/class-mp-exporter-orders.php:167 +#: includes/admin/class-mp-orders-admin.php:432 +#: includes/admin/class-mp-pages-admin.php:62 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:227 +#: includes/common/class-mp-gdpr.php:374 +#: includes/common/template-functions.php:175 +#: includes/common/template-functions.php:926 +msgid "Order Status" +msgstr "Statut Commande" + +#. translators: %s: orders closed +#: marketpress.php:327 +msgid "Closed (%s)" +msgid_plural "Closed (%s)" +msgstr[0] "Closes (%s)" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:249 +#: includes/admin/class-mp-orders-admin.php:375 +#: includes/admin/class-mp-orders-admin.php:951 +#: includes/admin/class-mp-orders-admin.php:1053 +#: includes/admin/class-mp-orders-admin.php:1065 +#: includes/common/class-mp-gdpr.php:330 +#: includes/common/class-mp-order.php:1019 marketpress.php:325 +msgid "Closed" +msgstr "Closes" + +#. translators: %s: shipped orders +#: marketpress.php:320 +msgid "Shipped (%s)" +msgid_plural "Shipped (%s)" +msgstr[0] "Livrées (%s)" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:248 +#: includes/admin/class-mp-orders-admin.php:376 +#: includes/admin/class-mp-orders-admin.php:950 +#: includes/admin/class-mp-orders-admin.php:1049 +#: includes/admin/class-mp-orders-admin.php:1064 +#: includes/common/class-mp-gdpr.php:329 +#: includes/common/class-mp-order.php:1002 marketpress.php:318 +msgid "Shipped" +msgstr "Livrées" + +#. translators: %s: paid orders +#: marketpress.php:313 +msgid "Paid (%s)" +msgid_plural "Paid (%s)" +msgstr[0] "Payées (%s)" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:247 +#: includes/admin/class-mp-orders-admin.php:377 +#: includes/admin/class-mp-orders-admin.php:949 +#: includes/admin/class-mp-orders-admin.php:1045 +#: includes/admin/class-mp-orders-admin.php:1063 +#: includes/common/class-mp-gdpr.php:328 +#: includes/common/payment-gateways/2checkout.php:294 +#: includes/common/payment-gateways/_cubepoints.php:130 +#: includes/common/payment-gateways/authorizenet-aim.php:193 +#: includes/common/payment-gateways/free_orders.php:91 +#: includes/common/payment-gateways/mijireh.php:248 +#: includes/common/payment-gateways/paymill.php:273 +#: includes/common/payment-gateways/paypal-express.php:933 +#: includes/common/payment-gateways/paypal-express.php:967 +#: includes/common/payment-gateways/pin.php:258 +#: includes/common/payment-gateways/simplify.php:181 +#: includes/common/payment-gateways/stripe.php:368 +#: includes/common/payment-gateways/wepay.php:269 marketpress.php:311 +msgid "Paid" +msgstr "Payées" + +#. translators: %s: orders received +#: marketpress.php:306 +msgid "Received (%s)" +msgid_plural "Received (%s)" +msgstr[0] "Reçues (%s)" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:246 +#: includes/admin/class-mp-orders-admin.php:378 +#: includes/admin/class-mp-orders-admin.php:1041 +#: includes/admin/class-mp-orders-admin.php:1062 +#: includes/common/class-mp-gdpr.php:327 includes/common/class-mp-order.php:995 +#: includes/common/payment-gateways/payfast.php:244 marketpress.php:304 +msgid "Received" +msgstr "Reçues" + +#: marketpress.php:268 +msgid "Search Orders" +msgstr "Rechercher Commandes" + +#: marketpress.php:267 +msgid "View Order" +msgstr "Voir Commande" + +#: marketpress.php:262 +msgid "Order" +msgstr "Commande" + +#: includes/admin/class-mp-dashboard-widgets.php:301 +#: includes/admin/class-mp-orders-admin.php:989 marketpress.php:261 +msgid "Orders" +msgstr "Commandes" + +#: marketpress.php:228 +msgid "No Products found in Trash" +msgstr "0 Produits dans la corbeille" + +#: marketpress.php:227 +msgid "No Products Found" +msgstr "0 Produits trouvés" + +#: marketpress.php:226 +msgid "Search Products" +msgstr "Rechercher Produits" + +#: marketpress.php:225 marketpress.php:229 +msgid "View Product" +msgstr "Voir Produit" + +#: marketpress.php:224 +msgid "New Product" +msgstr "Nouveau Produit" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1022 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:258 +#: marketpress.php:223 +msgid "Edit" +msgstr "Modifier" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1019 +msgid "Create New" +msgstr "Créer nouveau" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:687 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:698 +#: marketpress.php:217 +msgid "Product" +msgstr "Produit" + +#: includes/admin/class-mp-dashboard-widgets.php:307 +#: includes/common/template-functions.php:173 +#: includes/common/template-functions.php:179 +#: includes/common/template-functions.php:902 +#: includes/multisite/template-functions.php:82 marketpress.php:216 +#: marketpress.php:219 +msgid "Products" +msgstr "Produits" + +#: includes/admin/class-mp-store-settings-admin.php:118 +#: includes/admin/widgets/product-tag-cloud.php:46 +#: includes/multisite/class-mp-admin-multisite.php:548 +msgid "Product Tags" +msgstr "Mots-Clés de Produit" + +#: includes/common/template-functions.php:2906 +#: includes/multisite/template-functions.php:449 +msgid "Product Category" +msgstr "Catégorie du produit " + +#: includes/admin/class-mp-store-settings-admin.php:117 +#: includes/admin/widgets/categories.php:8 +#: includes/admin/widgets/categories.php:18 +#: includes/multisite/class-mp-admin-multisite.php:539 +msgid "Product Categories" +msgstr "Catégories de Produit" + +#: includes/common/payment-gateways/stripe.php:332 +#: includes/common/template-functions.php:872 marketpress.php:218 +msgid "Store" +msgstr "Boutique" + +#: includes/admin/class-mp-pages-admin.php:60 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:209 +#: includes/admin/widgets/cart.php:8 includes/admin/widgets/cart.php:56 +#: includes/common/template-functions.php:174 +#: includes/common/template-functions.php:811 +msgid "Shopping Cart" +msgstr "Panier" + +#: includes/admin/class-mp-store-settings-admin.php:110 +#: includes/admin/class-mp-store-settings-admin.php:218 +msgid "Store Settings" +msgstr "Paramètres Boutique" + +#: includes/addons/class-mp-addons-list-table.php:128 marketpress.php:607 +msgid "Settings" +msgstr "Réglages" + +#: includes/common/data.php:178 includes/common/data.php:190 +msgid "Your Order Has Been Shipped! (ORDERID)" +msgstr "Votre commande a été envoyée: (ORDERID)" + +#: includes/common/data.php:159 includes/common/data.php:166 +#: includes/common/data.php:172 +msgid "Your Order Confirmation (ORDERID)" +msgstr "Votre confirmation de Commande (ORDERID)" + +#: includes/common/data.php:148 +msgid "

    Thank you for your order! We appreciate your business, and please come back often to check out our new products.

    " +msgstr "

    Nous vous remercions de votre commande! Revenez souvent pour vérifier nos nouveaux produits, svp.

    " + +#: includes/common/data.php:147 +msgid "

    You are almost done! Please do a final review of your order to make sure everything is correct then click the \"Confirm Payment\" button.

    " +msgstr "

    Vous avez presque fini! S'il vous plaît faîtes un examen final de votre commande pour vous assurer que tout est correct, puis cliquez sur le bouton \"Confirmer Paiement\"

    " + +#: includes/common/data.php:145 +msgid "

    Please enter your shipping information in the form below to proceed with your order.

    " +msgstr "

    S'il vous plaît entrez vos informations de livraison dans le formulaire ci-dessous pour procéder à votre commande.

    " + +#: includes/common/data.php:143 +msgid "

    If you have any questions about your order please do not hesitate to contact us.

    " +msgstr "

    Si vous avez des questions à propos de votre commande, n'hésitez pas à nous contacter.

    " + +#: includes/common/data.php:106 +msgid "tag" +msgstr "mot-clé" + +#: includes/common/data.php:105 +msgid "category" +msgstr "catégorie" + +#: includes/common/data.php:104 +msgid "order-status" +msgstr "statut-commande" + +#: includes/common/data.php:103 +msgid "shopping-cart" +msgstr "panier" + +#: includes/common/data.php:102 +msgid "products" +msgstr "produits" + +#. Translators: change default slugs here +#: includes/common/data.php:101 +msgid "store" +msgstr "boutique" \ No newline at end of file diff --git a/languages/mp-haw.mo b/languages/mp-haw.mo new file mode 100644 index 0000000000000000000000000000000000000000..107c427e0b6a563dd74cf37ada05fed1ade6450d GIT binary patch literal 279 zcmYLDyH3ME5DXI4mDCi6Ll6yN@9sXS%mJ>9bs?nR+sFBxDfJR?izRC1VJ~adMTU>K3TpLLHZE;Olwypi1^{ RSczGz53>v4ckJKP;2+4mQ78Za literal 0 HcmV?d00001 diff --git a/languages/mp-haw.po b/languages/mp-haw.po new file mode 100644 index 00000000..9d455429 --- /dev/null +++ b/languages/mp-haw.po @@ -0,0 +1,8954 @@ +# Translation of MarketPress in Hawaiian +# This file is distributed under the same license as the MarketPress package. +msgid "" +msgstr "" +"PO-Revision-Date: +0000\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-Generator: GlotPress/2.3.1\n" +"Language: haw_US\n" +"Project-Id-Version: MarketPress\n" + +#: includes/public/class-mp-checkout.php:1285 +msgid "By clicking this checkbox you allow the website to process your personal data." +msgstr "" + +#: includes/common/class-mp-gdpr.php:382 +msgid "Order Info" +msgstr "" + +#: includes/common/class-mp-gdpr.php:268 +msgid "Shipping Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:267 +msgid "Shipping Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:266 +msgid "Shipping ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:265 +msgid "Shipping State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:264 +msgid "Shipping City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:263 +msgid "Shipping Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:262 +msgid "Shipping Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:261 +msgid "Shipping Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:260 +msgid "Shipping Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:259 +msgid "Shipping Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:258 +msgid "Shipping First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:254 +msgid "Billing Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:253 +msgid "Billing Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:252 +msgid "Billing ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:251 +msgid "Billing State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:250 +msgid "Billing City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:249 +msgid "Billing Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:248 +msgid "Billing Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:247 +msgid "Billing Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:246 +msgid "Billing Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:245 +msgid "Billing Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:244 +msgid "Billing First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:151 +msgid "Orders Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:139 +msgid "Customer Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:100 includes/common/class-mp-gdpr.php:116 +msgid "MarketPress User Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:81 +msgid "" +"In addition to standard WordPress session cookies, this site might be setting an\n" +"\t\t additional cookie to remember your cart settings. This cookie will last for one year." +msgstr "" + +#: includes/common/class-mp-gdpr.php:80 +msgid "Cookies" +msgstr "" + +#: includes/common/class-mp-gdpr.php:77 +msgid "" +"The following information will be collected in order to process orders: your name,\n" +"\t\t username, email address, avatar and profile URLs, address and phone number. This data can be\n" +"\t\t exported and removed." +msgstr "" + +#: includes/common/class-mp-gdpr.php:76 +msgid "Additional data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:71 +msgid "" +"This site might be using third party services and tools to process payments or/and\n" +"\t\t process shipping data when creating orders on the MarketPress store. These services include payment\n" +"\t\t gateways: 2Checkout, Authorize.net AIM, eWay shared payments, eWay Rapid 3.1 Payments, Mijireh,\n" +"\t\t Mollie, Paymill, PayPal, PIN, Simplify Commerce by MasterCard, Stripe and WePay; shipping gateways:\n" +"\t\t Fedex, UPS, USPS." +msgstr "" + +#: includes/common/class-mp-gdpr.php:70 +msgid "Third parties" +msgstr "" + +#: includes/admin/class-mp-admin.php:403 +msgid "Start creating store pages and products for your online shop here." +msgstr "" + +#: includes/admin/class-mp-admin.php:402 +msgid "Create Online Shop" +msgstr "" + +#: includes/admin/class-mp-admin.php:394 +msgid "Run Setup Wizard" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:234 +msgid "If having problems during invoice generation, add define( 'DOMPDF_ENABLE_HTML5PARSER', true ); to the wp-config.php file." +msgstr "" + +#: includes/public/class-mp-checkout.php:723 +msgid "Invalid Email" +msgstr "" + +#: includes/public/class-mp-checkout.php:721 +#: includes/public/class-mp-checkout.php:729 +msgid "This field is required" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:804 +msgid "This option changes the built-in css styles for store pages. For a custom css style, save your css file with the /* MarketPress Style: Your CSS Theme Name Here */ header line in the \"%s\" folder and it will appear in this list so you may select it. You should select \"None\" if you don't wish to use custom CSS styles or if you are using default theme templates or custom theme templates and css to make your own completely unique store design. For more information on custom theme templates click here »." +msgstr "" + +#: includes/public/class-mp-public.php:421 +#: includes/public/class-mp-short-codes.php:142 +msgid "Please enter a value greater than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:420 +#: includes/public/class-mp-short-codes.php:141 +msgid "Please enter a value less than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:419 +#: includes/public/class-mp-short-codes.php:140 +msgid "Please enter a value between {0} and {1}." +msgstr "" + +#: includes/public/class-mp-public.php:418 +#: includes/public/class-mp-short-codes.php:139 +msgid "Please enter a value between {0} and {1} characters long." +msgstr "" + +#: includes/public/class-mp-public.php:417 +#: includes/public/class-mp-short-codes.php:138 +msgid "Please enter at least {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:416 +#: includes/public/class-mp-short-codes.php:137 +msgid "Please enter no more than {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:415 +#: includes/public/class-mp-short-codes.php:136 +msgid "Please enter a value with a valid extension." +msgstr "" + +#: includes/public/class-mp-public.php:414 +#: includes/public/class-mp-short-codes.php:135 +msgid "Please enter the same value again." +msgstr "" + +#: includes/public/class-mp-public.php:413 +#: includes/public/class-mp-short-codes.php:134 +msgid "Please enter a valid credit card number." +msgstr "" + +#: includes/public/class-mp-public.php:412 +#: includes/public/class-mp-short-codes.php:133 +msgid "Please enter only digits." +msgstr "" + +#: includes/public/class-mp-public.php:411 +#: includes/public/class-mp-short-codes.php:132 +msgid "Please enter a valid number." +msgstr "" + +#: includes/public/class-mp-public.php:410 +#: includes/public/class-mp-short-codes.php:131 +msgid "Please enter a valid date (ISO)." +msgstr "" + +#: includes/public/class-mp-public.php:409 +#: includes/public/class-mp-short-codes.php:130 +msgid "Please enter a valid date." +msgstr "" + +#: includes/public/class-mp-public.php:408 +#: includes/public/class-mp-short-codes.php:129 +msgid "Please enter a valid URL." +msgstr "" + +#: includes/public/class-mp-public.php:406 +#: includes/public/class-mp-short-codes.php:127 +msgid "Please fix this field." +msgstr "" + +#: includes/public/class-mp-checkout.php:1287 +#: includes/public/class-mp-public.php:405 +#: includes/public/class-mp-short-codes.php:126 +msgid "This field is required." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:810 +msgid "None - Without Special CSS-styles" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:809 +msgid "Default - Using Default CSS-styles" +msgstr "" + +#: marketpress.php:739 +msgid "Enable multiple downloads per product" +msgstr "" + +#: marketpress.php:738 +msgid "Multiple Downloads" +msgstr "" + +#: includes/public/class-mp-checkout.php:715 +msgid "Invalid Zip Code" +msgstr "" + +#: includes/common/template-functions.php:2126 +msgid "Guest Email" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:195 +msgid "There was a problem finalizing your purchase. Please re-enter your credit card information and try again" +msgstr "" + +#: includes/common/class-mp-cart.php:565 includes/common/class-mp-order.php:600 +#: includes/common/helpers.php:111 +msgid "Download %1$s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:331 +msgid "Export products to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:328 +msgid "The import process uses the WordPress importer plugin." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:326 +msgid "Import / Export Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:325 +msgid "Export settings to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:324 +msgid "Import configuration" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:320 +msgid "Use the text below to export to a new installation. Or paste in the new configuration to import." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:318 +msgid "Import / Export Settings" +msgstr "" + +#. translators: URL to wp-admin/import.php +#: includes/admin/store-settings/class-mp-store-settings-import.php:266 +msgid "This importer is not installed. Please install importers from the main site." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:261 +msgid "Install Now" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:260 +msgid "Install %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:240 +msgid "Run Importer" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:239 +msgid "Run %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:258 +msgid "Import/Export" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1199 +msgid "Requires Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:737 +msgid "Optionally limit the user to some categories" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:671 +msgid "Should this coupon only be available to logged in users?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:670 +msgid "Require Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:655 +msgid "Mimimum number of products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:653 +msgid "Enter the minimum number of products in the cart that this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:648 +msgid "Can this coupon be limited to a number of products in the cart?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:334 +msgid "Add all values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:265 +msgid "Set as default variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:154 +msgid "Set Default" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:150 +msgid "More Info" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:40 +msgid "MarketPress - Quick Setup" +msgstr "" + +#: includes/public/class-mp-checkout.php:1399 +msgid "Proceed to checkout and create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1241 +#: includes/public/class-mp-checkout.php:1245 +msgid "Register account" +msgstr "" + +#: includes/public/class-mp-checkout.php:1233 +msgid "Register as customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:765 +msgid "

    Oops!

    Looks like you haven't added anything your cart. Let's go shopping!

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:763 +msgid "

    Oops!

    The cart is disabled.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing Information" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:214 +msgid "Global Currency" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:198 +msgid "Global Store Currency" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:507 +msgid "There are no shipping services available for this type of package in your location." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:168 +msgid "Using this USPS Shipping calculator requires requesting an Ecommerce API Username and Password. Get your free set of credentials here ». The password is no longer used for the API, just the username which you should enter below. The USPS test site has not yet been updated and currently doesn't work - you should just request activating your credentials with USPS and go live." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:339 +msgid "ZIP Code" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:334 +msgid "Last name" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:333 +msgid "First name" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:150 +msgid "These are the manual payment instructions to display on the order confirmation screen. TOTAL will be replaced with the order total and ORDERID will be replaced with Order ID." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:240 +msgid "You must login to Authorize.net merchant dashboard to obtain the API login ID and API transaction key. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:327 +msgid "
    1. Set the \"Return Method\" within Site Management to Header Redirect and set the \"Return URL\" to %s
    2. Set your notifications url to %s
    " +msgstr "" + +#: includes/common/data.php:191 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Also, digital downloads included in your order are now ready to be downloaded. Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:185 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order is now available to download! Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:184 +msgid "Your Order Is Ready To Be Downloaded! (ORDERID)" +msgstr "" + +#: includes/common/data.php:179 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:173 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received, your digital goods are ready to be downloaded and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:167 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received and your digital goods are ready to be downloaded. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:160 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +" Your order has been received, and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information: \n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/class-mp-product.php:638 +msgid "You can not add more items to cart." +msgstr "" + +#: includes/common/class-mp-product.php:635 +msgid "You can only add {0} to cart." +msgstr "" + +#: includes/common/class-mp-product.php:625 +msgid "This product has an order limit of %d." +msgstr "" + +#: includes/common/class-mp-order.php:1454 +msgid "Shipped: tracking code: %s" +msgstr "" + +#: includes/common/class-mp-order.php:1000 +#: includes/common/class-mp-order.php:1012 +msgid "Finished" +msgstr "" + +#: includes/common/class-mp-order.php:858 +msgid "Contact Details" +msgstr "" + +#: includes/common/class-mp-order.php:339 includes/common/data.php:155 +msgid "" +"A new order (ORDERID) was created in your store:\n" +"\n" +" ORDERINFOSKU\n" +"\n" +" SHIPPINGINFO\n" +"\n" +" PAYMENTINFO\n" +"\n" +msgstr "\n" + +#: includes/common/class-mp-cart.php:1858 +msgid "Add again" +msgstr "" + +#: includes/common/class-mp-cart.php:1852 +msgid "was removed from Shopping Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1242 +#: includes/public/class-mp-short-codes.php:160 +msgid "Cart update notice: this item has a limit per order or you have reached the stock limit." +msgstr "" + +#: includes/admin/widgets/product-list.php:235 +msgid "Show Only Featured Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:533 +msgid "If enabled, users won't be able to filter products per category and/or to order by release date/name/price." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:531 +msgid "Hide Products Filter?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:353 +msgid "Notification to registration email instead of billing email?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:322 +msgid "Order Shipped - Mixed orders (with both digital and physical products)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:289 +msgid "Order Shipped - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:224 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:194 +msgid "New Order - Mixed" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:161 +msgid "New Order - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:115 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:243 +msgid "Mixed orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:110 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:238 +msgid "Digital downloads orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:105 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:233 +msgid "Physical orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:96 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed.
    For orders placed with manual payment, emails set here will be overriden by the one configured in manual payments settings, under payments settings page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:89 +msgid "Customer Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:47 +msgid "Admin Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:566 +msgid "Only contact details" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:565 +msgid "Full billing info" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:561 +msgid "Details Collection" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:548 +msgid "Digital Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:515 +msgid "Apply Tax to Digital Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:236 +msgid "product (default)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:231 +msgid "If you are experiencing conflicts with other e-commerce plugins change this setting. This will change the internal post type of all your products. Please note that changing this option may break 3rd party themes or plugins." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1203 +msgid "Hide details" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1202 +msgid "Show all changes" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1184 +msgid "Version %s" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1161 +msgid "Current" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1131 +msgid "%s changelog" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:952 +msgid "We did not find any data for this plugin or theme..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:285 +msgid "Activate WPMU DEV Dashboard" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:279 +msgid "Just one more step - activate the WPMU DEV Dashboard plugin and you're all done!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:277 +msgid "Important updates are available for your WPMU DEV plugins/themes. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:273 +msgid "Just one more step to enable updates and support for %s!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:271 +msgid "Important updates are available for %s. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:264 +msgid "activate" +msgstr "" + +#: includes/admin/class-mp-admin.php:398 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:248 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:289 +msgid "Dismiss" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:247 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:288 +msgid "Saving..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:244 +msgid "Install Plugin" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:238 +msgid "Almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:236 +msgid "Important updates are available for your WPMU DEV plugins/themes. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:232 +msgid "%s is almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:230 +msgid "Important updates are available for %s. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:223 +msgid "install" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1428 +msgid "Sets the number of Tags to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1289 +msgid "How many products to display in the product list if \"paginate\" is set to false." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:739 +#: includes/admin/class-mp-shortcode-builder.php:906 +#: includes/admin/class-mp-shortcode-builder.php:1350 +msgid "Grid" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:735 +#: includes/admin/class-mp-shortcode-builder.php:902 +#: includes/admin/class-mp-shortcode-builder.php:1346 +msgid "Products will be displayed as list or grid." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:206 +msgid "Display a cloud or list of your global product tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:205 +msgid "Display a list of your global categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:204 +msgid "Display a list or grid of your global products." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:181 +msgid "Display a list of featured products." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1451 +msgid "Is Featured?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1444 +msgid "Featured Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:581 +#: includes/admin/class-mp-products-admin.php:1580 +msgid "% discount" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:579 +msgid "OR" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:460 +#: includes/admin/class-mp-products-admin.php:586 +#: includes/admin/widgets/product-list.php:217 +msgid "Featured" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:536 +#: includes/admin/class-mp-orders-admin.php:538 +msgid "Tracking Link" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:508 +msgid "Shipping Tax" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:356 +msgid "Shipping Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:352 +msgid "Taxes Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:349 +msgid "Products Total" +msgstr "" + +#: includes/admin/class-mp-ajax.php:366 +msgid "Oops! You entered an invalid username/email and or password." +msgstr "" + +#: includes/admin/class-mp-ajax.php:254 +msgid "Percentage Discount" +msgstr "" + +#: includes/admin/class-mp-ajax.php:234 +msgid "Limit the Amount of Items per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:214 +msgid "Unused Attributes" +msgstr "" + +#: includes/admin/class-mp-admin.php:82 +msgid "Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-admin.php:79 +msgid "MarketPress setup is not complete! Once you've completed this quick setup wizard you'll have a fully working online store - exciting! " +msgstr "" + +#: marketpress.php:263 +msgctxt "mp_order" +msgid "Add New" +msgstr "" + +#: marketpress.php:184 +msgctxt "product_tag" +msgid "Product Tag" +msgstr "" + +#: marketpress.php:183 +msgctxt "product_tag" +msgid "Product Tags" +msgstr "" + +#: marketpress.php:150 +msgctxt "product_category" +msgid "Product Category" +msgstr "" + +#: marketpress.php:149 +msgctxt "product_category" +msgid "Product Categories" +msgstr "" + +#. Author URI of the plugin/theme +msgid "http://premium.wpmudev.org" +msgstr "" + +#: marketpress.php:729 +msgid "Invoice PDF" +msgstr "" + +#: marketpress.php:712 +msgid "Grant access to themes and gateways depending on the user's Pro Site level" +msgstr "" + +#: marketpress.php:711 +msgid "Pro Sites" +msgstr "" + +#: marketpress.php:703 +msgid "Offer and accept coupon codes" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:687 +msgid "Install %s Pages" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:682 +msgid "Welcome to %s – Install pages required by the plugin automatically." +msgstr "" + +#: marketpress.php:668 +msgid "Your pages were created successfully." +msgstr "" + +#: marketpress.php:436 +msgid "Add a Product" +msgstr "" + +#: marketpress.php:271 +msgid "Parent Order" +msgstr "" + +#: marketpress.php:270 +msgid "No orders found in trash" +msgstr "" + +#: marketpress.php:269 +msgid "No orders found" +msgstr "" + +#: marketpress.php:265 +msgid "Edit Order" +msgstr "" + +#: marketpress.php:264 +msgid "Add New Order" +msgstr "" + +#: marketpress.php:220 marketpress.php:221 +msgid "Add New Product" +msgstr "" + +#: marketpress.php:197 +msgid "No product tags found" +msgstr "" + +#: marketpress.php:196 +msgid "Choose from the most used product tags" +msgstr "" + +#: marketpress.php:195 +msgid "Add or remove product tags" +msgstr "" + +#: marketpress.php:194 +msgid "Separate product tags with commas" +msgstr "" + +#: marketpress.php:193 +msgid "Search Product Tags" +msgstr "" + +#: marketpress.php:192 +msgid "Parent Product Tag:" +msgstr "" + +#: marketpress.php:191 +msgid "Parent Product Tag" +msgstr "" + +#: marketpress.php:190 +msgid "New Product Tag Name" +msgstr "" + +#: marketpress.php:189 +msgid "Add New Product Tag" +msgstr "" + +#: marketpress.php:188 +msgid "Update Product Tag" +msgstr "" + +#: marketpress.php:187 +msgid "View Product Tag" +msgstr "" + +#: marketpress.php:186 +msgid "Edit Product Tag" +msgstr "" + +#: marketpress.php:185 +msgid "All Product Tags" +msgstr "" + +#: marketpress.php:163 +msgid "No product categories found" +msgstr "" + +#: marketpress.php:162 +msgid "Choose from the most used product categories" +msgstr "" + +#: marketpress.php:161 +msgid "Add or remove product categories" +msgstr "" + +#: marketpress.php:160 +msgid "Separate product categories with commas" +msgstr "" + +#: marketpress.php:159 +msgid "Search Product Categories" +msgstr "" + +#: marketpress.php:158 +msgid "Parent Product Category:" +msgstr "" + +#: marketpress.php:157 +msgid "Parent Product Category" +msgstr "" + +#: marketpress.php:156 +msgid "New Product Category Name" +msgstr "" + +#: marketpress.php:155 +msgid "Add New Product Category" +msgstr "" + +#: marketpress.php:154 +msgid "Update Product Category" +msgstr "" + +#: marketpress.php:153 +msgid "View Product Category" +msgstr "" + +#: marketpress.php:152 +msgid "Edit Product Category" +msgstr "" + +#: marketpress.php:151 +msgid "All Product Categories" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Please fix the %s1 and then try submitting the form again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Oops! The form contains %s1 which %s2 been highlighted below." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:660 +msgid "have" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:659 +msgid "has" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:651 +msgid "Value must be less than {0}" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:650 +msgid "Please enter only letters and numbers" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:539 +msgid "Due to prolonged inactivity on this page, one or more settings were not saved. Please try again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:535 +msgid "Settings Saved" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-user-select.php:22 +msgid "Select Some Users" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-section.php:18 +msgid "Section Title" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:425 +msgid "Are you sure you want to delete this?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:30 +msgid "Add Row" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-post-select.php:24 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-taxonomy-select.php:22 +msgid "Select Posts" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:210 +msgid "Add Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:129 +msgid "Select the image that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:93 +msgid "Select image(s) that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:79 +msgid "Select the image that you would like to use for this variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:48 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:82 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:68 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:132 +msgid "Select Image" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:31 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:160 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:168 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:19 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:115 +msgid "Select File" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:30 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:18 +msgid "Select the file that you would like to use." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:357 +msgid "Create Variations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:356 +msgid "Add Another Variant" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Insert a value and press ENTER" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "(e.g. White, Grey, Red etc.)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Variation Values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:333 +msgid "Or create new variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "(e.g. Color)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:303 +msgid "You are about to delete selected variants.
    If you want to continue please confirm." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:302 +msgid "Confirmation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:290 +msgid "Insert quantity available. Empty for unlimited." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:281 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:294 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:307 +msgid "Cancel" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:280 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:293 +msgid "Update" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:277 +msgid "Insert the price i.e. 25 or 25.50" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:115 +msgid "Img." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:85 +msgid "Add New Variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:79 +msgid "Delete Variants" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:78 +msgid "Update Prices" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:77 +msgid "Update Inventory" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:76 +msgid "Update Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:75 +msgid "Bulk Actions" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:73 +msgid "Select bulk action" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:196 +msgid "Configure Store" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:195 +msgid "Configure shipping rates, emails and your store's appearance. " +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:190 +msgid "Add Product" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:189 +msgid "Add your first product for sale and get familiar with adding products." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:184 +msgid "Your store is almost ready for its first customers, but first it needs some products. Get started by adding products below, or jump straight into further configuring your store’s settings." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:183 +msgid "Woohoo! Your online store is up and running." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:160 +msgid "Finish Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:124 +msgid "And what metric system do you want to use?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:113 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:142 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:159 +msgid "Back" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:109 +msgid "Do you want to apply tax for your products? You can customize this for each product and variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:105 +msgid "What currency do you want to sell with?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:93 +msgid "And, which countries do you want to sell to?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:89 +msgid "Where is your online store based?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:80 +msgid "Payment Gateway" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:79 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:123 +msgid "Metric System" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:78 +msgid "Currency & Tax" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:77 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:88 +msgid "Locations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:70 +msgid "Choose where you want to sell your stuff and what currency. Easy!" +msgstr "" + +#: includes/public/class-mp-checkout.php:1400 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:58 +msgid "Continue" +msgstr "" + +#: includes/admin/class-mp-admin.php:83 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:53 +msgid "Skip this step, I'll do this manually" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:49 +msgid "Install store pages" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:44 +msgid "Once you've completed this quick setup wizard you'll have a fully working online store - exciting! Start
    by creating the default store pages for the online store such as the cart, checkout and store pages." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:42 +msgid "MarketPress adds a full online store to your website, with heaps of configuration options and addons
    to suit your needs. It's really easy to get going, and only takes a few minutes to setup!" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:41 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:69 +msgid "Welcome to MarketPress - Quick Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-advanced-select.php:23 +msgid "Select Some Options" +msgstr "" + +#: includes/wpmudev-metaboxes/class-wpmudev-field.php:694 +msgid "You must the WPMUDEV_Field::display() method in your form field class" +msgstr "" + +#: includes/public/class-mp-short-codes.php:636 +msgid "Only %s left in stock..." +msgstr "" + +#: includes/public/class-mp-short-codes.php:633 +msgid "Unlimited stock" +msgstr "" + +#: includes/public/class-mp-short-codes.php:430 +msgid "product_id must be defined" +msgstr "" + +#: includes/public/class-mp-checkout.php:1250 +msgid "An account with this username already exists" +msgstr "" + +#: includes/public/class-mp-checkout.php:1394 +msgid "Continue as Guest" +msgstr "" + +#: includes/public/class-mp-checkout.php:1393 +msgid "Proceed to checkout and you'll have an opportunity to create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1392 +#: includes/public/class-mp-checkout.php:1398 +msgid "First-time customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1386 +msgid "Login" +msgstr "" + +#: includes/public/class-mp-checkout.php:1379 +msgid "E-Mail Address/Username" +msgstr "" + +#: includes/public/class-mp-checkout.php:1377 +msgid "Sign in to speed up the checkout process." +msgstr "" + +#: includes/public/class-mp-checkout.php:1376 +msgid "Have an account?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1297 +msgid "Shipping address different than billing?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1184 +msgid "There are no available gateways to process this payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1160 +msgid "Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:1123 +msgid "Oops! An error occurred while processing your payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1051 +msgid "Next Step »" +msgstr "" + +#: includes/public/class-mp-checkout.php:1045 +msgid "« Previous Step" +msgstr "" + +#: includes/public/class-mp-checkout.php:873 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:657 +msgid "error" +msgstr "" + +#: includes/public/class-mp-checkout.php:872 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:658 +msgid "errors" +msgstr "" + +#: includes/public/class-mp-checkout.php:871 +msgid "

    Oops! We found %d %s in the form below.

    Fields that have errors are highlighted in red below. Entering into a field will reveal the actual error that occurred.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:870 +msgid "Please enter a valid first and last name" +msgstr "" + +#: includes/public/class-mp-checkout.php:869 +msgid " Please enter a valid card security code" +msgstr "" + +#: includes/public/class-mp-checkout.php:868 +msgid "Please enter a valid card expiration" +msgstr "" + +#: includes/public/class-mp-checkout.php:773 +msgid "Javascript is required in order to checkout. Please enable Javascript in your browser and then refresh this page." +msgstr "" + +#: includes/public/class-mp-checkout.php:588 +msgid "An unknown error occurred. Please try again." +msgstr "" + +#: includes/public/class-mp-checkout.php:386 +msgid "Town/City" +msgstr "" + +#: includes/public/class-mp-checkout.php:380 +msgid "Apartment, suite, unit, building, floor, etc" +msgstr "" + +#: includes/public/class-mp-checkout.php:376 +msgid "Address Line 2" +msgstr "" + +#: includes/public/class-mp-checkout.php:363 +msgid "Address Line 1" +msgstr "" + +#: includes/common/class-mp-order.php:770 +#: includes/public/class-mp-checkout.php:354 +msgid "Company" +msgstr "" + +#: includes/public/class-mp-checkout.php:330 +msgid "Last" +msgstr "" + +#: includes/public/class-mp-checkout.php:321 +msgid "First" +msgstr "" + +#: includes/public/class-mp-checkout.php:284 +msgid "State/Province" +msgstr "" + +#: includes/public/class-mp-checkout.php:83 +msgid "Review Order/Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing/Shipping Address" +msgstr "" + +#: includes/public/class-mp-checkout.php:80 +msgid "Login/Register" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:530 +msgid "Marketplace" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:523 +msgid "Global Marketplace Pages" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +msgid "Store Network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +#: includes/multisite/class-mp-admin-multisite.php:494 +msgid "Store Network Settings" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:440 +msgid "Set theme access permissions for network stores. For a custom css theme, save your css file with the MarketPress Theme: NAME header in the /marketpress/ui/themes/ folder and it will appear in this list so you may select it." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:361 +msgid "Choose a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:336 +msgid "%d products get indexed" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:285 +msgid "Product Indexer" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:281 +msgid "Please hold on..." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:280 +msgid "Index Products" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:279 +msgid "%d products have been indexed in whole network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:182 +msgid "Enable Global Shopping Cart?" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:178 +msgid "Limit Global Widgets/Shortcodes To Main Blog?" +msgstr "" + +#: includes/common/template-functions.php:2802 +#: includes/multisite/template-functions.php:355 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:97 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:114 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:143 +msgid "Next" +msgstr "" + +#: includes/common/template-functions.php:2801 +#: includes/multisite/template-functions.php:354 +msgid "Prev" +msgstr "" + +#: includes/common/template-functions.php:2597 +msgid "Tagged in " +msgstr "" + +#: includes/common/template-functions.php:2196 +#: includes/common/template-functions.php:2202 +#: includes/common/template-functions.php:2214 +#: includes/common/template-functions.php:2217 +msgid "Oops! We couldn't locate any orders matching that order number. Please verify the order number and try again." +msgstr "" + +#: includes/common/template-functions.php:2138 +msgid "Look Up" +msgstr "" + +#: includes/common/template-functions.php:1423 +msgid "Please choose a shipping method" +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "If you have your order ID you can look it up using the form below." +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "Order Search" +msgstr "" + +#: includes/common/template-functions.php:910 +#: includes/public/class-mp-checkout.php:1440 +msgid "Cart" +msgstr "" + +#: includes/common/template-functions.php:895 +msgid "[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:887 +msgid "[mp_global_categories_list]" +msgstr "" + +#: includes/common/template-functions.php:880 +msgid "" +"Welcome to our market place!\n" +"\n" +"Check out our network of products:\n" +"\n" +"[mp_list_global_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_global_categories_list]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:879 +msgid "Global Store" +msgstr "" + +#: includes/common/template-functions.php:873 +msgid "" +"Welcome to our online store! Feel free to browse around:\n" +"\n" +"[mp_store_navigation]\n" +"\n" +"Check out our most popular products:\n" +"\n" +"[mp_popular_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_list_categories]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_tag_cloud]" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:127 +msgid "If cart weight is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:126 +msgid "Cart Weight" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:222 +msgid "Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:206 +msgid "Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:196 +msgid "Retail Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:195 +msgid "Online Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:193 +msgid "Rates Request Type" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:189 +msgid "Maximum Weight Per Package" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:195 +#: includes/common/shipping-modules/mp-usps.php:236 +msgid "Enter your standard box sizes as LengthxWidthxHeight (e.g. 12x8x6) For each box defined enter the maximum weight it can contain. Note: the shipping prices this plugin calculates are estimates. If they are consistently too low or too high, please check that the list of boxes above and the product weights are accurate and complete." +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:187 +msgid "Handling Charge Per Box Shipped" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:176 +#: includes/common/shipping-modules/mp-ups.php:181 +msgid "Offered Services" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:165 +msgid "Shipper Number" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:151 +msgid "User ID" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:144 +msgid "Developer Kit Access Key" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:140 +msgid "Use Sandbox Mode?" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:123 +msgid "In order to use UPS, you will need a UPS Developer Kit access key and the UPS user ID and password associated with the access key. Set these up for free here. If this information is missing or incorrect, an error will appear during the checkout process and the buyer will not be able to complete the transaction." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:112 +msgid "If cart total is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:111 +msgid "Cart Total" +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:95 +#: includes/common/shipping-modules/mp-weight-rate.php:111 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Don't worry about sorting as this will be done automatically upon saving." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:170 +msgid "Method Title (visible for clients)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:409 +#: includes/common/shipping-modules/mp-ups.php:216 +#: includes/common/shipping-modules/mp-usps.php:251 +msgid "Max Weight (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:402 +#: includes/common/shipping-modules/mp-ups.php:209 +#: includes/common/shipping-modules/mp-usps.php:247 +msgid "Size (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:387 +msgid "Enter your standard box sizes as LengthxWidthxHeight ( 12x8x6 ) For each box defined enter the maximum weight it can contain. Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:361 +#: includes/common/shipping-modules/mp-usps.php:229 +msgid "Handling Charge per International Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:353 +msgid "International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:339 +#: includes/common/shipping-modules/mp-usps.php:213 +msgid "Handling Charge per Domestic Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:331 +msgid "Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:321 +msgid "When checked the customer can chose Residential or Commercial delivery with Residential the default. Unchecked it's only Residential rates." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:320 +msgid "Allow Commercial Delivery?" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:315 +msgid "Fedex 10kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:314 +msgid "Fedex 25kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:313 +msgid "Fedex Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:312 +msgid "Fedex Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:311 +msgid "Fedex Pak" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:310 +msgid "Fedex Tube" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:306 +msgid "Default Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:294 +msgid "Dropoff Type" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:290 +msgid "Meter ID" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:134 +msgid "This is a residential address" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:283 +msgid "There was an error processing your card: \"%s\". Please check your credit card info and try again." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:121 +msgid "Wepay makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept cards directly on your site. You don't need a merchant account or gateway. WePay handles everything including storing cards. Credit cards go directly to WePay's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:385 +msgid "There was an error processing your card - \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:356 +msgid "%s Store Purchase - Order ID - %s, Email - %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:251 +msgid "Stripe makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept Visa, MasterCard, American Express, Discover, JCB, and Diners Club cards directly on your site. You don't need a merchant account or gateway. Stripe handles everything, including storing cards, subscriptions, and direct payouts to your bank account. Credit cards go directly to Stripe's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:192 +msgid "ZMW - Zambian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:191 +msgid "ZAR - South African Rand" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:190 +msgid "YER - Yemeni Rial" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:189 +msgid "XPF - Cfp Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:188 +msgid "XOF - West African Cfa Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:187 +msgid "XCD - East Caribbean Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:186 +msgid "XAF - Central African Cfa Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:185 +msgid "WST - Samoan Tala" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:184 +msgid "VUV - Vanuatu Vatu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:183 +msgid "VND - Vietnamese Đồng" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:182 +msgid "VEF - Venezuelan Bolívar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:181 +msgid "UZS - Uzbekistani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:180 +msgid "UYI - Uruguayan Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:178 +msgid "UGX - Ugandan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:177 +msgid "UAH - Ukrainian Hryvnia" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:176 +msgid "TZS - Tanzanian Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:175 +msgid "TWD - New Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:174 +msgid "TTD - Trinidad and Tobago Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:172 +msgid "TOP - Tongan Paʻanga" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:171 +msgid "TJS - Tajikistani Somoni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:169 +msgid "SZL - Swazi Lilangeni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:168 +msgid "SVC - Salvadoran Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:167 +msgid "STD - São Tomé and Príncipe Dobra" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:166 +msgid "SRD - Surinamese Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:165 +msgid "SOS - Somali Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:164 +msgid "SLL - Sierra Leonean Leone" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:163 +msgid "SHP - Saint Helenian Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:160 +msgid "SCR - Seychellois Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:159 +msgid "SBD - Solomon Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:157 +msgid "RWF - Rwandan Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:156 +msgid "RUB - Russian Ruble" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:155 +msgid "RSD - Serbian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:154 +msgid "RON - Romanian Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:153 +msgid "QAR - Qatari Riyal" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:152 +msgid "PYG - Paraguayan Guaraní*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:151 +msgid "PLN - Polish Złoty" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:150 +msgid "PKR - Pakistani Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:149 +msgid "PHP - Philippine Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:148 +msgid "PGK - Papua New Guinean Kina" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:147 +msgid "PEN - Peruvian Nuevo Sol*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:146 +msgid "PAB - Panamanian Balboa*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:144 +msgid "NPR - Nepalese Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:142 +msgid "NIO - Nicaraguan Córdoba*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:141 +msgid "NGN - Nigerian Naira" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:140 +msgid "NAD - Namibian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:139 +msgid "MZN - Mozambican Metical" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:137 +msgid "MXN - Mexican Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:136 +msgid "MWK - Malawian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:135 +msgid "MVR - Maldivian Rufiyaa" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:134 +msgid "MUR - Mauritian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:133 +msgid "MRO - Mauritanian Ouguiya" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:132 +msgid "MOP - Macanese Pataca" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:131 +msgid "MNT - Mongolian Tögrög" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:130 +msgid "MKD - Macedonian Denar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:129 +msgid "MGA - Malagasy Ariary" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:128 +msgid "MDL - Moldovan Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:126 +msgid "LVL - Latvian Lats" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:124 +msgid "LSL - Lesotho Loti" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:123 +msgid "LRD - Liberian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:122 +msgid "LKR - Sri Lankan Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:121 +msgid "LBP - Lebanese Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:120 +msgid "LAK - Lao Kip*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:119 +msgid "KZT - Kazakhstani Tenge" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:118 +msgid "KYD - Cayman Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:117 +msgid "KRW - South Korean Won" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:116 +msgid "KMF - Comorian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:115 +msgid "KHR - Cambodian Riel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:114 +msgid "KGS - Kyrgyzstani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:113 +msgid "KES - Kenyan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:111 +msgid "JMD - Jamaican Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:110 +msgid "ISK - Icelandic Króna" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:109 +msgid "INR - Indian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:108 +msgid "ILS - Israeli New Sheqel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:107 +msgid "IDR - Indonesian Rupiah" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:105 +msgid "HTG - Haitian Gourde" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:103 +msgid "HNL - Honduran Lempira*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:101 +msgid "GYD - Guyanese Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:100 +msgid "GTQ - Guatemalan Quetzal*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:99 +msgid "GNF - Guinean Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:98 +msgid "GMD - Gambian Dalasi" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:97 +msgid "GIP - Gibraltar Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:96 +msgid "GEL - Georgian Lari" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:94 +msgid "FKP - Falkland Islands Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:93 +msgid "FJD - Fijian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:91 +msgid "ETB - Ethiopian Birr" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:90 +msgid "EGP - Egyptian Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:89 +msgid "EEK - Estonian Kroon*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:88 +msgid "DZD - Algerian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:87 +msgid "DOP - Dominican Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:85 +msgid "DJF - Djiboutian Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:84 +msgid "CZK - Czech Koruna*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:83 +msgid "CVE - Cape Verdean Escudo*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:82 +msgid "CRC - Costa Rican Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:81 +msgid "COP - Colombian Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:80 +msgid "CNY - Chinese Renminbi Yuan" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:79 +msgid "CLP - Chilean Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:77 +msgid "CDF - Congolese Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:76 +msgid "CAD - Canadian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:75 +msgid "BZD - Belize Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:74 +msgid "BWP - Botswana Pula" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:73 +msgid "BSD - Bahamian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:72 +msgid "BRL - Brazilian Real*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:71 +msgid "BOB - Bolivian Boliviano*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:70 +msgid "BND - Brunei Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:69 +msgid "BMD - Bermudian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:68 +msgid "BIF - Burundian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:67 +msgid "BGN - Bulgarian Lev" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:66 +msgid "BDT - Bangladeshi Taka" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:65 +msgid "BBD - Barbadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:64 +msgid "BAM - Bosnia & Herzegovina Convertible Mark" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:63 +msgid "AZN - Azerbaijani Manat" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:62 +msgid "AWG - Aruban Florin" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:61 +msgid "AUD - Australian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:60 +msgid "ARS - Argentine Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:59 +msgid "AOA - Angolan Kwanza*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:58 +msgid "ANG - Netherlands Antillean Gulden" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:57 +msgid "AMD - Armenian Dram" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:56 +msgid "ALL - Albanian Lek" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:55 +msgid "AFN - Afghan Afghani*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:54 +msgid "AED - United Arab Emirates Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:345 +msgid "Skrill balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:327 +msgid "Skrill IPN message received." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:283 +msgid "Skrill" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:278 +msgid "Pending payment" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:144 +msgid "The secret word must match the word submitted in the \"Merchant Tools\" section of your Skrill account." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:134 +msgid "You must use your valid Skrill merchant email. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:133 +msgid "Skrill Email" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:123 +msgid "Resell your inventory via Skrill.com (Moneybookers)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:95 +msgid "ZAR - South-African Rand" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:93 +msgid "TWD - Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:92 +msgid "TRY - New Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:91 +msgid "TND - Tunisian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:90 +msgid "THB - Thailand Baht" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:89 +msgid "SKK - Slovakian Koruna" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:86 +#: includes/common/payment-gateways/stripe.php:158 +msgid "SAR - Saudi Riyal" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:85 +msgid "RSD - Serbian dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:83 +msgid "QAR - Qatari Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:81 +msgid "OMR - Omani Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:80 +msgid "NOK - Norwegian Krone " +msgstr "" + +#: includes/common/payment-gateways/skrill.php:78 +#: includes/common/payment-gateways/stripe.php:138 +msgid "MYR - Malaysian Ringgit" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:77 +#: includes/common/payment-gateways/stripe.php:127 +msgid "MAD - Moroccan Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:74 +msgid "KRW - South-Korean Won" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:72 +msgid "JOD - Jordanian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:70 +msgid "INR - Indian Rupee" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:63 +msgid "EEK - Estonian Kroon" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:56 +msgid "AED - Utd. Arab Emir. Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:52 +msgid "Turkish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:51 +msgid "Swedish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:50 +msgid "Spanish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:49 +msgid "Russian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:48 +msgid "Romainian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:47 +msgid "Polish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:46 +msgid "Italian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:45 +msgid "Greek" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:44 +msgid "German" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:43 +msgid "French" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:42 +msgid "Finnish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:41 +msgid "English" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:40 +msgid "Dutch" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:39 +msgid "Danish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:38 +msgid "Czech" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:37 +msgid "Chinese" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:201 +msgid "There was an error processing your card: %s. Please re-enter your credit card info and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:278 +msgid "
  • There was an error processing your card: \"%s\". Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:274 +msgid "
  • There was an error processing your card. Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:177 +#: includes/common/payment-gateways/stripe.php:279 +msgid "Publishable Key" +msgstr "" + +#: includes/common/payment-gateways/pin.php:163 +msgid "API Credentials?" +msgstr "" + +#: includes/common/payment-gateways/pin.php:147 +msgid "PIN makes it easy to start accepting credit card payments with Australia’s first all-in-one online payment system. Accept all major credit cards directly on your site. Your sales proceeds are deposited to any Australian bank account, no merchant account required." +msgstr "" + +#: includes/common/payment-gateways/pin.php:57 +#: includes/common/payment-gateways/stripe.php:179 +msgid "USD - United States Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:455 +msgid "Email Footer" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:445 +msgid "Email Header" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:416 +msgid "Partner" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:409 +msgid "Vendor" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:852 +#: includes/common/payment-gateways/paypal-express.php:1126 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences\t section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:749 +msgid "Page Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:744 +msgid "Header Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:739 +msgid "Header Border Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:734 +msgid "Header Image" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:680 +msgid "Locale" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:624 +#: includes/common/payment-gateways/paypal-express.php:658 +msgid "Merchant Email" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:645 +msgid "Paypal Express Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:603 +msgid "Paypal Express Network Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:861 +msgid "Application ID (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:854 +msgid "Signature (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:847 +msgid "API Password (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:839 +msgid "API Username (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:832 +msgid "Signature (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:825 +msgid "API Password (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:817 +msgid "API Username (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:799 +msgid "This message is displayed at the top of the gateway settings page to store admins. It's a good place to inform them of your fees or put any sales messages." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:787 +msgid "Please enter your PayPal email address or business ID you want to recieve fees at." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:786 +msgid "PayPal E-mail" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:772 +msgid "Fees to Collect (%)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:375 +#: includes/public/class-mp-checkout.php:341 +msgid "Email Address" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:299 +msgid "Sorry, your order was not completed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:126 +#: includes/common/payment-gateways/paypal-express.php:780 +msgid "You will be redirected to the PayPal site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:90 +#: includes/common/payment-gateways/skrill.php:94 +msgid "USD - U.S. Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:89 +msgid "TRY - Turkish lira" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:88 +#: includes/common/payment-gateways/stripe.php:170 +msgid "THB - Thai Baht" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:87 +msgid "TWD - Taiwan New Dollars" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:86 +#: includes/common/payment-gateways/pin.php:59 +#: includes/common/payment-gateways/skrill.php:88 +#: includes/common/payment-gateways/stripe.php:162 +msgid "SGD - Singapore Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:84 +msgid "RUB - Russian Rubles" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:82 +msgid "PHP - Philippine Pesos" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:81 +#: includes/common/payment-gateways/pin.php:58 +#: includes/common/payment-gateways/skrill.php:79 +#: includes/common/payment-gateways/stripe.php:145 +msgid "NZD - New Zealand Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:79 +msgid "MXN - Mexican Peso" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:78 +msgid "MYR - Malaysian Ringgits" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:77 +#: includes/common/payment-gateways/pin.php:64 +#: includes/common/payment-gateways/skrill.php:73 +#: includes/common/payment-gateways/stripe.php:112 +msgid "JPY - Japanese Yen" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:75 +#: includes/common/payment-gateways/pin.php:63 +#: includes/common/payment-gateways/skrill.php:66 +#: includes/common/payment-gateways/stripe.php:102 +msgid "HKD - Hong Kong Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:73 +msgid "GBP - Pound Sterling" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:68 +#: includes/common/payment-gateways/pin.php:62 +#: includes/common/payment-gateways/skrill.php:59 +msgid "CAD - Canadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:67 +msgid "BRL - Brazilian Real" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:66 +#: includes/common/payment-gateways/pin.php:56 +#: includes/common/payment-gateways/skrill.php:57 +msgid "AUD - Australian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:288 +msgid "There was an error processing your card: \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:163 +msgid "When running on a live site, Paymill recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:161 +#: includes/common/payment-gateways/pin.php:157 +#: includes/common/payment-gateways/simplify.php:103 +#: includes/common/payment-gateways/stripe.php:260 +#: includes/common/payment-gateways/wepay.php:153 +msgid "Force SSL?" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:151 +msgid "Accept Visa, Mastercard, Maestro UK, Discover and Solo cards directly on your site. You don't need a merchant account or gateway. Credit cards go directly to Paymill's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:131 +msgid "CVV2" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:72 +#: includes/common/payment-gateways/pin.php:61 +#: includes/common/payment-gateways/skrill.php:65 +#: includes/common/payment-gateways/stripe.php:95 +msgid "GBP - British Pound" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:71 +#: includes/common/payment-gateways/stripe.php:173 +msgid "TRY - Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:70 +#: includes/common/payment-gateways/paypal-chained-payments.php:85 +#: includes/common/payment-gateways/skrill.php:87 +#: includes/common/payment-gateways/stripe.php:161 +msgid "SEK - Swedish Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:69 +#: includes/common/payment-gateways/skrill.php:84 +msgid "RON - Romanian Leu New" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:68 +#: includes/common/payment-gateways/paypal-chained-payments.php:83 +#: includes/common/payment-gateways/skrill.php:82 +msgid "PLN - Polish Zloty" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:67 +#: includes/common/payment-gateways/paypal-chained-payments.php:80 +#: includes/common/payment-gateways/stripe.php:143 +msgid "NOK - Norwegian Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:66 +#: includes/common/payment-gateways/skrill.php:75 +#: includes/common/payment-gateways/stripe.php:125 +msgid "LTL - Lithuanian Litas" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:65 +#: includes/common/payment-gateways/paypal-chained-payments.php:69 +#: includes/common/payment-gateways/skrill.php:60 +#: includes/common/payment-gateways/stripe.php:78 +msgid "CHF - Swiss Franc" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:64 +#: includes/common/payment-gateways/skrill.php:76 +msgid "LVL - Latvian Lat" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:63 +#: includes/common/payment-gateways/paypal-chained-payments.php:74 +#: includes/common/payment-gateways/skrill.php:69 +msgid "ILS - Israeli Shekel" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:62 +#: includes/common/payment-gateways/skrill.php:71 +msgid "ISK - Iceland Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:61 +#: includes/common/payment-gateways/paypal-chained-payments.php:76 +#: includes/common/payment-gateways/skrill.php:68 +#: includes/common/payment-gateways/stripe.php:106 +msgid "HUF - Hungarian Forint" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:60 +#: includes/common/payment-gateways/paypal-chained-payments.php:71 +#: includes/common/payment-gateways/skrill.php:62 +#: includes/common/payment-gateways/stripe.php:86 +msgid "DKK - Danish Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:59 +#: includes/common/payment-gateways/skrill.php:67 +#: includes/common/payment-gateways/stripe.php:104 +msgid "HRK - Croatian Kuna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:58 +#: includes/common/payment-gateways/paypal-chained-payments.php:70 +#: includes/common/payment-gateways/skrill.php:61 +msgid "CZK - Czech Koruna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:57 +#: includes/common/payment-gateways/skrill.php:58 +msgid "BGN - Bulgarian Leva" +msgstr "" + +#: includes/common/payment-gateways/payflow/class-mp-gateway-worker-payflow.php:123 +msgid "There was an error connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:344 +msgid "This setting will log all PayFast communication to the \"payfast.log\" file." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:342 +msgid "Log Debugging Info?" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:335 +msgid "DO NOT INPUT A VALUE UNLESS YOU HAVE SET ONE IN THE SETTINGS SECTION OF YOUR PAYFAST SETTINGS." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:333 +msgid "PayFast Passphrase" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:323 +msgid "You can find your credentials on your integration page." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:321 +msgid "PayFast Merchant Credentials" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:311 +msgid "PayFast Mode" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:308 +msgid "PayFast is a payments processing service for South Africa. We make it safe for buyers to send money and easy for sellers to receive money. More Info »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:306 +msgid "PayFast Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:285 +msgid "Your payment via PayFast for this order totaling %s is complete. The transaction number is %s." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:278 +msgid "Your payment via PayFast for this order totaling %s is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:124 +msgid "Your PayFast transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:82 +#: includes/common/payment-gateways/payfast.php:83 +msgid "PayFast" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:157 +msgid "API error: - \"%s\"" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:198 +msgid "The payment request is under process" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:140 +msgid "Order: #" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:116 +msgid "You will be redirected to the Mollie site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:73 +msgid "%sMollie%s provides a fully PCI Compliant and secure way to collect payments via iDeal, Credit Card, Bancontact / Mister Cash, SOFORT Banking, Overbooking, Bitcoin, PayPal, paysafecard and AcceptEmail." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:53 +#: includes/common/payment-gateways/mollie.php:54 +#: includes/common/payment-gateways/mollie.php:195 +#: includes/common/payment-gateways/mollie.php:245 +msgid "Mollie" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:50 +#: includes/common/payment-gateways/paymill.php:56 +#: includes/common/payment-gateways/paypal-chained-payments.php:72 +#: includes/common/payment-gateways/pin.php:60 +#: includes/common/payment-gateways/skrill.php:64 +#: includes/common/payment-gateways/stripe.php:92 +msgid "EUR - Euro" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:306 +msgid "Access Key" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:300 +msgid "You must login to the Mijireh.com dashboard to obtain the Access Key." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:299 +msgid "Credentials" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:289 +msgid "Mijireh Checkout provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:269 +msgid "Mijireh Error: " +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:89 +msgid "You will be redirected to the Mijireh.com site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:87 +msgid "Your Mijireh transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:42 +#: includes/common/payment-gateways/mijireh.php:43 +#: includes/common/payment-gateways/mijireh.php:324 +msgid "Mijireh" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:145 +msgid "These are the manual payment instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:189 +msgid "This is the email text to send to those who have made free order checkouts. You should include your free order instructions / information here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:183 +msgid "This is the free order information to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:182 +msgid "Confirmation User Information" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:177 +msgid "This is the information to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:163 +msgid "If enabled, all free orders will be automatically marked as paid." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:159 +msgid "Payment Status" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:149 +msgid "This gateway is automatically activated if order totalling 0 and it can't be disabled" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:35 +#: includes/common/payment-gateways/free_orders.php:36 +#: includes/common/payment-gateways/free_orders.php:89 +msgid "Free Order" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:34 +#: includes/common/payment-gateways/free_orders.php:197 +msgid "Free Orders" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:515 +msgid "Sandbox API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:266 +#: includes/common/payment-gateways/eway31.php:542 +msgid "eWay Rapid 3.1 Payments (beta)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:403 +msgid "Hosted Payment Page Language" +msgstr "" + +#: includes/common/payment-gateways/eway.php:373 +msgid "Note when testing in sandbox mode it will use the default eWay test API credentials. Also, please note that cart total needs to be a whole number (e.g. 10.00) in order to generate a successful transaction, otherwise the transaction will fail." +msgstr "" + +#: includes/common/payment-gateways/eway.php:267 +msgid "You will be redirected to https://www.eway.com.au to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:380 +msgid "You have chosen to checkout using %s. Please confirm your order details and click \"Submit Order\" when finished." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:272 +#: includes/common/payment-gateways/paymill.php:131 +#: includes/common/payment-gateways/stripe.php:231 +msgid "Security Code " +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Enter in MM/YYYY or MM/YY format" +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Expiration" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:321 +msgid "Delim Data" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:307 +#: includes/common/payment-gateways/paypal-payflow.php:456 +msgid "This text will appear as the footer of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:287 +#: includes/common/payment-gateways/paypal-payflow.php:440 +msgid "Email Customer (on success)" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:278 +msgid "Authorize.net default is \",\". Otherwise, get this from your credit card processor. If the transactions are not going through, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:277 +msgid "Delimeter Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:193 +msgid "Held For Review" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:310 +#: includes/common/payment-gateways/payfast.php:314 +msgid "Test" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:300 +#: includes/common/payment-gateways/pin.php:170 +#: includes/common/payment-gateways/stripe.php:272 +msgid "Secret Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:283 +msgid "Select Your Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:97 +msgid "Your payment will be processed by the iDEAL network" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:208 +msgid "These are the CubePoints to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:203 +msgid "These are the CubePoints instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:266 +msgid "If enabled, all API calls will be made to https://test.bitpay.com." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:263 +msgid "Use Test Mode?" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:259 +msgid "If checked, response fron bitpay will be stored in log file, keep it disabled unless required." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:256 +msgid "Enable Debug Log" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:249 +msgid "Full Notifications" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:231 +#: includes/common/payment-gateways/eway31.php:499 +#: includes/common/payment-gateways/eway31.php:526 +#: includes/common/payment-gateways/mollie.php:83 +#: includes/common/shipping-modules/mp-fedex.php:269 +msgid "API Key" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:222 +msgid "You can now accept a payment from any country on Earth, with no risk of fraud. To use Bitpay, you need to signup on Bitpay. \\n After completing the signup process, you can get api keys at Bitpay API key. You can read more about Bitpay at Bitpay API. \\n Bitpay requires SSL(https) for payment notifications to work." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:61 +msgid "You will be redirected to bitpay.com, for bitcoin payment. It is completely safe." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:346 +msgid "You must login to the 2Checkout vendor dashboard to obtain the seller ID and secret word. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:345 +#: includes/common/payment-gateways/authorizenet-aim.php:239 +#: includes/common/payment-gateways/paymill.php:168 +#: includes/common/payment-gateways/paypal-express.php:704 +#: includes/common/payment-gateways/simplify.php:80 +#: includes/common/payment-gateways/stripe.php:265 +#: includes/common/payment-gateways/wepay.php:158 +msgid "API Credentials" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:325 +#: includes/common/payment-gateways/_bitpay.php:220 +#: includes/common/payment-gateways/_cubepoints.php:185 +#: includes/common/payment-gateways/_ideal.php:268 +#: includes/common/payment-gateways/_payway.php:255 +#: includes/common/payment-gateways/authorizenet-aim.php:219 +#: includes/common/payment-gateways/eway.php:352 +#: includes/common/payment-gateways/eway31.php:460 +#: includes/common/payment-gateways/free_orders.php:147 +#: includes/common/payment-gateways/manual-payments.php:126 +#: includes/common/payment-gateways/mijireh.php:287 +#: includes/common/payment-gateways/mollie.php:71 +#: includes/common/payment-gateways/paymill.php:149 +#: includes/common/payment-gateways/paypal-chained-payments.php:344 +#: includes/common/payment-gateways/paypal-payflow.php:376 +#: includes/common/payment-gateways/pin.php:145 +#: includes/common/payment-gateways/simplify.php:69 +#: includes/common/payment-gateways/skrill.php:121 +#: includes/common/payment-gateways/stripe.php:249 +#: includes/common/payment-gateways/wepay.php:119 +#: includes/common/shipping-modules/mp-fedex.php:243 +#: includes/common/shipping-modules/mp-flat-rate.php:63 +#: includes/common/shipping-modules/mp-pickup.php:140 +#: includes/common/shipping-modules/mp-table-rate.php:94 +#: includes/common/shipping-modules/mp-ups.php:122 +#: includes/common/shipping-modules/mp-usps.php:167 +#: includes/common/shipping-modules/mp-weight-rate.php:110 +msgid "%s Settings" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:136 +msgid "You will be redirected to the 2Checkout site to finalize your payment." +msgstr "" + +#: includes/common/helpers.php:169 includes/public/class-mp-checkout.php:1277 +msgid "Billing" +msgstr "" + +#: includes/common/helpers.php:144 +msgid "FREE" +msgstr "" + +#: includes/common/helpers.php:134 +msgid "Coupons:" +msgstr "" + +#: includes/common/helpers.php:95 +msgid "Qty" +msgstr "" + +#: includes/common/helpers.php:94 +msgid "Sku" +msgstr "" + +#: includes/common/data.php:59 +msgid "Zip Code" +msgstr "" + +#: includes/common/class-mp-taxes.php:336 +msgid "Standard Table" +msgstr "" + +#: includes/common/class-mp-product.php:2698 +msgid "Tweet" +msgstr "" + +#: includes/common/class-mp-product.php:2321 +msgid "Notification Preferences: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2320 +msgid "Edit Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2318 +msgid "Link: %s

    " +msgstr "" + +#: includes/common/class-mp-product.php:2317 +msgid "Current Inventory: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2316 +msgid "Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2314 +msgid "This message is being sent to notify you of low stock of a product in your online store according to your preferences.

    " +msgstr "" + +#: includes/common/class-mp-product.php:1817 +msgid "" +msgstr "" + +#: includes/common/class-mp-product.php:1427 +#: includes/common/class-mp-product.php:1430 +msgid "(tax incl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1422 +#: includes/common/class-mp-product.php:1425 +msgid "(tax excl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1300 +#: includes/common/class-mp-product.php:1315 +msgid "%s each" +msgstr "" + +#: includes/common/class-mp-product.php:988 +msgid "Choose Options" +msgstr "" + +#: includes/common/class-mp-product.php:526 +msgid "Choose a %s" +msgstr "" + +#: includes/common/class-mp-product.php:284 +#: includes/common/class-mp-product.php:292 +#: includes/common/class-mp-product.php:615 +msgid "We're sorry, we only have %d of this item in stock right now." +msgstr "" + +#: includes/common/class-mp-order.php:1456 +msgid "Shipped: Track Shipment" +msgstr "" + +#: includes/common/class-mp-order.php:1049 +msgid "Order Received" +msgstr "" + +#: includes/common/class-mp-order.php:1014 +msgid "In Process" +msgstr "" + +#: includes/common/class-mp-order.php:969 +msgid "Order #" +msgstr "" + +#: includes/common/class-mp-order.php:866 +msgid "Copy billing address to shipping address" +msgstr "" + +#: includes/common/class-mp-order.php:822 +#: includes/public/class-mp-checkout.php:1314 +msgid "Special Instructions" +msgstr "" + +#: includes/common/class-mp-order.php:817 +#: includes/common/payment-gateways/stripe.php:335 +msgid "Email" +msgstr "" + +#: includes/common/class-mp-order.php:813 +#: includes/common/payment-gateways/stripe.php:341 +#: includes/public/class-mp-checkout.php:416 +msgid "Phone" +msgstr "" + +#: includes/common/class-mp-order.php:791 +#: includes/common/payment-gateways/stripe.php:337 +msgid "State" +msgstr "" + +#: includes/common/class-mp-order.php:776 +msgid "Address 1" +msgstr "" + +#: includes/common/class-mp-order.php:766 +msgid "Last Name" +msgstr "" + +#: includes/common/class-mp-order.php:762 +msgid "First Name" +msgstr "" + +#: includes/common/class-mp-installer.php:677 +msgid "MarketPress requires a database update to continue working correctly. Go to update page" +msgstr "" + +#: includes/common/class-mp-installer.php:657 +msgid "MarketPress performed a quick automatic update successfully!" +msgstr "" + +#: includes/common/class-mp-installer.php:653 +msgid "Perform Update" +msgstr "" + +#: includes/common/class-mp-installer.php:647 +msgid "Please update each subsite in your WordPress network where you have older version of the MarketPress plugin." +msgstr "" + +#: includes/common/class-mp-installer.php:641 +msgid "Depending on the amount of products you have, this update could take quite some time. Please keep this window open while the update completes. If you have products with multiple variations, the progress bar may move slower, please don't exit the window." +msgstr "" + +#: includes/common/class-mp-installer.php:632 +msgid "Product Metadata" +msgstr "" + +#: includes/common/class-mp-installer.php:601 +msgid "MarketPress requires a database update to continue working correctly.
    Below you will find a list of items that require your attention." +msgstr "" + +#: includes/common/class-mp-installer.php:600 +msgid "Update MarketPress Data" +msgstr "" + +#: includes/common/class-mp-installer.php:530 +msgid "Update Data" +msgstr "" + +#: includes/common/class-mp-installer.php:67 +msgid "Complete!" +msgstr "" + +#: includes/common/class-mp-installer.php:66 +msgid "Upgrading Database...Please Wait..." +msgstr "" + +#: includes/common/class-mp-installer.php:64 +msgid "An error occurred while updating. Please refresh this page and try again." +msgstr "" + +#: includes/common/class-mp-cart.php:2447 +msgid "Some items in your cart have fallen below the quantity you currently have in your cart. We have adjusted the quantity in your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:2443 +msgid "Some items in your cart are no longer available. We have removed these items from your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:1566 +msgid "item" +msgstr "" + +#: includes/common/class-mp-cart.php:1563 +#: includes/common/class-mp-cart.php:1568 +msgid "items" +msgstr "" + +#: includes/common/class-mp-cart.php:1363 +msgid "Items/Products added to Cart will show here." +msgstr "" + +#: includes/common/class-mp-cart.php:1362 +msgid "Your shopping cart is empty." +msgstr "" + +#: includes/common/class-mp-cart.php:1357 +msgid "View Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1241 +#: includes/common/class-mp-cart.php:1298 +#: includes/public/class-mp-short-codes.php:159 +msgid "Adding..." +msgstr "" + +#: includes/common/class-mp-cart.php:1033 +msgid "Continue Shopping?" +msgstr "" + +#: includes/common/class-mp-cart.php:961 +msgid "Secure Checkout
    Shopping is always safe and secure." +msgstr "" + +#: includes/common/class-mp-cart.php:959 +msgid "You are about to submit your order!
    Please review your order details before continuing. You will be charged immediately upon clicking \"Submit Order\"." +msgstr "" + +#: includes/common/class-mp-cart.php:956 +msgid "Continue »" +msgstr "" + +#: includes/common/class-mp-cart.php:955 +msgid "Submit Order" +msgstr "" + +#: includes/common/class-mp-cart.php:818 +msgid "There are no items in your cart - go add some !" +msgstr "" + +#: includes/common/class-mp-cart.php:816 +msgid "The cart is disabled." +msgstr "" + +#: includes/common/class-mp-cart.php:735 +msgid "Estimated %s" +msgstr "" + +#: includes/common/class-mp-cart.php:717 +msgid "Estimated Shipping" +msgstr "" + +#: includes/common/class-mp-cart.php:697 +msgid "Product Total" +msgstr "" + +#: includes/common/class-mp-cart.php:670 includes/common/class-mp-cart.php:672 +msgid "Estimated Total (%s, %s)" +msgstr "" + +#: includes/common/class-mp-cart.php:668 +msgid "Estimated Total (%s)" +msgstr "" + +#: includes/common/class-mp-cart.php:666 includes/common/class-mp-cart.php:752 +msgid "Estimated Total" +msgstr "" + +#: includes/admin/widgets/product-list.php:247 +msgid "Show Thumbnail Placeholder image (if image is not set)" +msgstr "" + +#: includes/admin/widgets/cart.php:73 +msgid "Display product price" +msgstr "" + +#: includes/admin/widgets/cart.php:71 +msgid "Display product quantity" +msgstr "" + +#: includes/admin/widgets/cart.php:69 +msgid "Display product image" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:93 +msgid "General Shipping Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:773 +msgid "If you are having conflicts with the lightbox library from your theme or another plugin you should uncheck this." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:772 +msgid "Use Built-In Lightbox for Images?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:762 +msgid "Disable Large Image Display?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:688 +msgid "Show Product Image?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:682 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:684 +msgid "Show Tags List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:676 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:678 +msgid "Show Categories List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:671 +msgid "If enabled, description excerpt will be added above Add to cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:669 +msgid "Show Excerpt?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:665 +msgid "If enabled, users will be able to choose how many of the product they want to purchase before adding to their cart. If not checked, quantity could be change later on the cart page." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:663 +msgid "Show Quantity Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:649 +msgid "Settings related to the display of individual product pages." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:648 +msgid "Product Page Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:605 +msgid "Related Products Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:573 +msgid "Show Related Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:568 +msgid "Related Product Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:549 +msgid "Order Status Entries Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:510 +msgid "Sort Products By" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:497 +msgid "Products Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:492 +msgid "Paginate Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:478 +msgid "Excerpts Length" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:473 +msgid "Show Excerpts?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:450 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:746 +msgid "Image Alignment" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:412 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:708 +msgid "Custom Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:401 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:697 +msgid "Large - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:400 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:696 +msgid "Medium - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:399 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:695 +msgid "Thumbnail - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:397 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:693 +msgid "Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:386 +msgid "Select default placeholder image thumbnail when product image is not available (if empty, plugin's built-in image will be used)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:380 +msgid "Show default product placeholder thumbnail when product image is not available?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:374 +msgid "Show Product Thumbnail?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:369 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:658 +msgid "Redirect to cart page for immediate checkout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:368 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:657 +msgid "Stay on current product page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:366 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:655 +msgid "MarketPress supports two \"flows\" for adding products to the shopping cart. After adding a product to their cart, two things can happen:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:365 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:654 +msgid "Add To Cart Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:355 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:628 +msgid "Four" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:354 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:627 +msgid "Three" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:353 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:626 +msgid "Two" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:625 +msgid "One" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:349 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:622 +msgid "Set the number of products that show up in a grid row to best fit your theme" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:348 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:621 +msgid "How many products per row?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:342 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:609 +msgid "Display as grid" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:341 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:608 +msgid "Display as list" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:339 +msgid "Product Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:334 +msgid "Settings related to the display of product lists/grids." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:333 +msgid "Product List/Grid Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:314 +msgid "Show Twitter Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:309 +msgid "Twitter" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:303 +msgid "Show Share Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:297 +msgid "Recommend" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:296 +msgid "Like" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:294 +msgid "Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:283 +msgid "Show Facebook Like Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:278 +msgid "Facebook" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:257 +msgid "Show \"Pin It\" Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:252 +msgid "Pinterest" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:246 +msgid "Social Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:193 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:202 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:211 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:220 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:229 +#: includes/multisite/class-mp-admin-multisite.php:532 +#: includes/multisite/class-mp-admin-multisite.php:541 +#: includes/multisite/class-mp-admin-multisite.php:550 +msgid "Choose a Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:191 +msgid "This page will be used as the root for your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:168 +#: includes/multisite/class-mp-admin-multisite.php:586 +msgid "Create Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "uncropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "cropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:87 +#: includes/multisite/class-mp-admin-multisite.php:121 +#: includes/multisite/class-mp-admin-multisite.php:620 +msgid "An error occurred while creating the store page. Please try again." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:66 +msgid "Choose the gateway(s) that you would like to be available for checkout." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:65 +msgid "Enabled Gateways" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:78 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:146 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:179 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:213 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:274 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:307 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:341 +msgid "Text" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:71 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:139 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:172 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:206 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:267 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:300 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:334 +msgid "Subject" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:52 +msgid "Notification Email" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:510 +msgid "Enabling this option will display label `excl. tax` or `incl. tax` after price" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:509 +msgid "Display tax label?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:504 +msgid "Enabling this option will show Price + Tax, eg. if your price is 100 and your tax 20, your price will be 120" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:416 +#: includes/multisite/class-mp-admin-multisite.php:234 +msgid "Price Format" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:366 +msgid "Enabling this field will display a textbox on the shipping checkout page for users to enter special instructions for their order. Useful for product personalization, etc." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:365 +msgid "Show Special Instructions Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:360 +msgid "Universal" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:359 +msgid "Old" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1167 +#: includes/admin/store-settings/class-mp-store-settings-general.php:358 +msgid "New" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:353 +msgid "If you already use Google Analytics for your website, you can track detailed ecommerce information by enabling this setting. Choose whether you are using the new asynchronous or old tracking code. Before Google Analytics can report ecommerce activity for your website, you must enable ecommerce tracking on the profile settings page for your website. Also keep in mind that some gateways do not reliably show the receipt page, so tracking may not be accurate in those cases. It is recommended to use the PayPal gateway for the most accurate data. More information »" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:347 +msgid "Do you want to display the product price on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:346 +msgid "Show product price on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:340 +msgid "Do you want to display the product quantity on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:339 +msgid "Show product quantity on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:333 +msgid "Do you want to display the product image on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:332 +msgid "Show product image on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:327 +msgid "This option hide floating Mini Cart in top right corner." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:326 +msgid "Disable Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:316 +msgid "If unchecked your Orders admin page will be hidden" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:315 +msgid "Show admin Orders page?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:309 +msgid "Disable Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:303 +msgid "Force Login?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:297 +msgid "Hide Out of Stock Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:555 +msgid "This will prevent multiples of the same downloadable product form being added to the cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:554 +msgid "Limit Digital Products Per-order?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:268 +msgid "If you're having issues downloading large files and have worked with your hosting provider to increase your memory limits, try enabling this - just keep in mind, it's not as secure!" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:267 +msgid "Use Alternative Download Method?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:252 +msgid "Download Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:230 +msgid "Change product post type" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:51 +msgid "%s Capabilities" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-addons.php:47 +msgid "Store Settings: Add Ons: %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:254 +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:56 +msgid "Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Edit Product Attribute %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:246 +msgid "Exporters" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:238 +msgid "Short Codes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:207 +msgid "An appropriate message for key \"%s\" could not be found." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:204 +msgid "Product attribute updated successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:203 +msgid "Product attribute added successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +msgid "Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +#: includes/admin/store-settings/class-mp-store-settings-addons.php:121 +msgid "Store Settings: Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "Store Settings: Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:118 +msgid "Store Settings: Product Tags" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:117 +msgid "Store Settings: Product Categories" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Store Settings: Product Attributes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +msgid "Store Settings: Payments" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:114 +msgid "Store Settings: Shipping" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +#: includes/admin/class-mp-store-settings-admin.php:226 +msgid "Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +msgid "Store Settings: Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:112 +msgid "Store Settings: Presentation" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:111 +msgid "Store Settings: General" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1489 +msgid "Select a Product" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1447 +msgid "Reset to Defaults" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1446 +msgid "Insert Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1202 +#: includes/admin/class-mp-shortcode-builder.php:1227 +#: includes/admin/class-mp-shortcode-builder.php:1252 +msgid "The text to show in the link." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1196 +#: includes/admin/class-mp-shortcode-builder.php:1221 +#: includes/admin/class-mp-shortcode-builder.php:1246 +msgid "Whether to return a clickable link or url." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1177 +msgid "Whether to display the cart only on store pages or not." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1171 +msgid "Whether to show or hide the product price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1165 +msgid "Whether to show or hide the product quantity." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1159 +msgid "Whether to show or hide the product image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1153 +msgid "The text displayed before the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1147 +msgid "The title of the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1058 +#: includes/admin/class-mp-shortcode-builder.php:1121 +msgid "A label to prepend to the price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1032 +#: includes/admin/class-mp-shortcode-builder.php:1127 +msgid "What context for display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1004 +msgid "Set the alignment of the image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:998 +msgid "Set a custom pixel width/height. If omitted defaults to the size set by \"context\"." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:993 +msgid "Widget" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:988 +msgid "What context for preset size options." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:982 +#: includes/admin/class-mp-shortcode-builder.php:1026 +#: includes/admin/class-mp-shortcode-builder.php:1052 +#: includes/admin/class-mp-shortcode-builder.php:1077 +#: includes/admin/class-mp-shortcode-builder.php:1096 +#: includes/admin/class-mp-shortcode-builder.php:1115 +msgid "The ID of the product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:963 +msgid "Whether to display the product meta (e.g. price, buy button)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:738 +#: includes/admin/class-mp-shortcode-builder.php:905 +#: includes/admin/class-mp-shortcode-builder.php:958 +#: includes/admin/class-mp-shortcode-builder.php:992 +#: includes/admin/class-mp-shortcode-builder.php:1035 +#: includes/admin/class-mp-shortcode-builder.php:1130 +#: includes/admin/class-mp-shortcode-builder.php:1349 +msgid "List" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:957 +#: includes/admin/class-mp-shortcode-builder.php:991 +#: includes/admin/class-mp-shortcode-builder.php:1034 +#: includes/admin/class-mp-shortcode-builder.php:1129 +msgid "Single" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:953 +msgid "Whether and what context of image size to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:948 +msgid "Full" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:943 +msgid "Whether and what type of content to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:937 +msgid "Whether to display the product title." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:931 +msgid "The ID of the product to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:747 +#: includes/admin/class-mp-shortcode-builder.php:914 +msgid "Hide" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:746 +#: includes/admin/class-mp-shortcode-builder.php:913 +msgid "Show" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:744 +#: includes/admin/class-mp-shortcode-builder.php:911 +msgid "Whether or not to show the product filters." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:724 +#: includes/admin/class-mp-shortcode-builder.php:891 +#: includes/admin/class-mp-shortcode-builder.php:1335 +msgid "Limits list to a specific product tag." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:713 +#: includes/admin/class-mp-shortcode-builder.php:880 +#: includes/admin/class-mp-shortcode-builder.php:1324 +msgid "Limits list to a specific product category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:706 +#: includes/admin/class-mp-shortcode-builder.php:873 +#: includes/admin/class-mp-shortcode-builder.php:1317 +msgid "Direction to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:684 +#: includes/admin/class-mp-shortcode-builder.php:851 +#: includes/admin/class-mp-shortcode-builder.php:1295 +msgid "What field to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:678 +#: includes/admin/class-mp-shortcode-builder.php:845 +#: includes/admin/class-mp-shortcode-builder.php:1283 +msgid "How many products to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:672 +#: includes/admin/class-mp-shortcode-builder.php:839 +#: includes/admin/class-mp-shortcode-builder.php:1277 +msgid "The page number to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:666 +#: includes/admin/class-mp-shortcode-builder.php:833 +#: includes/admin/class-mp-shortcode-builder.php:1271 +msgid "Whether to paginate the product list. This is useful to only show a subset." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:808 +msgid "How many related items to show." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:790 +msgid "How to relate the products" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:784 +msgid "The product to show related items for." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:765 +msgid "The maximum number of products to display" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:647 +msgid "Comma separated list of tags (term_id) to include. For example, include=5,27 means tags that have the term_id 5 or 27 will be the only tags displayed. Defaults to include everything." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:641 +msgid "Comma separated list of tags (term_id) to exclude. For example, exclude=5,27 means tags that have the term_id 5 or 27 will NOT be displayed. Defaults to exclude nothing." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:633 +#: includes/admin/class-mp-shortcode-builder.php:1420 +msgid "Sort order." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:629 +#: includes/admin/class-mp-shortcode-builder.php:1416 +msgid "Count" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:626 +#: includes/admin/class-mp-shortcode-builder.php:1413 +msgid "Order of the tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:620 +msgid "The text/space between tags)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:616 +msgid "UL with a class of \"wp-tag-cloud\"" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:615 +msgid "separated by whitespace defined by \"separator\" parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:613 +msgid "Format of the cloud display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:607 +msgid "The number of actual tags to display in the cloud. (Use \"0\" to display all tags.)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:601 +msgid "Unit of measure as pertains to the smallest and largest values. This can be any CSS length value, e.g. pt, px, em, %." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:595 +msgid "The text size of the tag with the largest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:589 +msgid "The text size of the tag with the smallest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:570 +msgid "The \"tabindex\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:564 +msgid "The \"name\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:558 +msgid "The \"id\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:552 +msgid "Which category ID is selected." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:540 +msgid "The max depth. This is ignored unless hierarchical is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:536 +#: includes/multisite/template-functions.php:816 +msgid "No Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:414 +#: includes/admin/class-mp-shortcode-builder.php:546 +msgid "Calculates link or post counts by including items from child categories. If show_counts and hierarchical are true this is automatically set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:409 +msgid "Value of n (some number) specifies the depth (or level) to descend in displaying Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:408 +msgid "Show only top level Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:407 +msgid "All Categories displayed in flat (no indent) form (overrides hierarchical)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:406 +msgid "All Categories and child Categories (Default)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:402 +msgid "This parameter controls how many levels in the hierarchy of Categories are to be included in the list of Categories. NOTE: The \"hierarchical\" argument, which is disabled by default, will override the depth argument, unless it is true. When the argument is false, it will display all of the categories. When it is enabled it will use the value in the \"depth\" argument." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:396 +#: includes/admin/class-mp-shortcode-builder.php:1394 +msgid "Sets the number of Categories to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:390 +#: includes/admin/class-mp-shortcode-builder.php:534 +msgid "Set the text to show when no categories are listed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:384 +msgid "Set the title and style of the outer list item. If present but empty, the outer list item will not be displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:378 +#: includes/admin/class-mp-shortcode-builder.php:528 +msgid "Display sub-categories as inner list items (below the parent list item) or inline." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:368 +#: includes/admin/class-mp-shortcode-builder.php:511 +msgid "Exclude category-tree from the results. The parameter include must be empty. If the hierarchical parameter is true, then use exclude instead of exclude_tree." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:354 +msgid "Only include these categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:340 +#: includes/admin/class-mp-shortcode-builder.php:356 +#: includes/admin/class-mp-shortcode-builder.php:370 +#: includes/admin/class-mp-shortcode-builder.php:496 +#: includes/admin/class-mp-shortcode-builder.php:513 +msgid "Select Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:338 +#: includes/admin/class-mp-shortcode-builder.php:494 +msgid "Exclude one or more categories from the results. The parameter include must be empty." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:332 +msgid "Set a URI for an image (usually an rss feed icon) to act as a link to each categories' rss-2 feed. This parameter overrides the feed parameter. There is no default for this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:320 +msgid "Display a link to each category's rss-2 feed and set the link text to display. The default is no text and no feed displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:313 +#: includes/admin/class-mp-shortcode-builder.php:487 +msgid "Any" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:307 +#: includes/admin/class-mp-shortcode-builder.php:481 +msgid "Only display categories that are children of the category identified by this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:301 +msgid "Sets whether a category's description is inserted into the title attribute of the links created (i.e. <a title=\"<em>Category Description</em>\" href=\"...)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:295 +#: includes/admin/class-mp-shortcode-builder.php:475 +msgid "Toggles the display of categories with no posts." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:289 +#: includes/admin/class-mp-shortcode-builder.php:469 +#: includes/admin/class-mp-shortcode-builder.php:1388 +msgid "Toggles the display of the current count of posts in each category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:279 +msgid "Style to display the categories list in. A value of list displays the categories as list items while none generates no special display method (the list items are separated by
    tags)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:269 +#: includes/admin/class-mp-shortcode-builder.php:449 +#: includes/admin/class-mp-shortcode-builder.php:1378 +msgid "Sort order for categories (either ascending or descending)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:259 +#: includes/admin/class-mp-shortcode-builder.php:439 +#: includes/admin/class-mp-shortcode-builder.php:1368 +msgid "Sort categories alphabetically, by unique Category ID, or by the count of posts in that Category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:253 +#: includes/admin/class-mp-shortcode-builder.php:433 +msgid "If a value is entered, causes the display of a link to all categories if the style is set to list." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:219 +msgid "Select an Action" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:217 +msgid "What would you like to do?" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:216 +#: includes/admin/class-mp-shortcode-builder.php:1522 +msgid "Add E-Commerce Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:197 +msgid "Display a list of links to your store pages." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:196 +msgid "Display a link or url to the order status page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:195 +msgid "Display a link or url to the current products list page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:194 +msgid "Display a link or url to the current store page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:193 +msgid "Display a link or url to the current shopping cart page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:192 +msgid "Display the cart widget." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:191 +msgid "Display the full product meta box with price and buy now/add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:190 +msgid "Display the product stock." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:189 +msgid "Display the product SKU number(s)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:188 +msgid "Display the product price (and sale price)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:187 +msgid "Display the buy or add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:186 +msgid "Display the featured image of a given product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:185 +msgid "Display a single product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:184 +msgid "Display a list of products according to preference." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:183 +msgid "Display products related to the one being viewed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:182 +msgid "Display a list of popular products ordered by sales." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:180 +msgid "Display an HTML dropdown of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:179 +msgid "Display an HTML list of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:178 +msgid "Display a cloud or list of your product tags." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:655 +msgid "Setup your payment gateway" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:643 +#: includes/admin/class-mp-setup-wizard.php:649 +msgid "Other Gateways" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:617 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:150 +msgid "Select which calculated shipping methods the customer will be able to choose from." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:601 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:134 +#: includes/public/class-mp-checkout.php:82 +msgid "Shipping Method" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:568 +msgid "I want to charge shipping" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:523 +#: includes/admin/store-settings/class-mp-store-settings-general.php:503 +msgid "Show Price + Tax?" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:507 +msgid "I.e. Taxes, VAT, GST, etc" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:491 +#: includes/admin/store-settings/class-mp-store-settings-general.php:471 +msgid "Current Rates" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:473 +msgid "Default Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:434 +#: includes/admin/class-mp-setup-wizard.php:442 +#: includes/admin/store-settings/class-mp-store-settings-general.php:386 +#: includes/admin/store-settings/class-mp-store-settings-general.php:394 +#: includes/multisite/class-mp-admin-multisite.php:204 +#: includes/multisite/class-mp-admin-multisite.php:212 +msgid "Select a Currency" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:414 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:105 +msgid "Choose Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:411 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:103 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:104 +msgid "All Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:410 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:102 +msgid "These are the countries that you will ship to." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:409 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:101 +msgid "Target Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:401 +msgid "Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:387 +#: includes/admin/store-settings/class-mp-store-settings-general.php:640 +msgid "Zip/Postal Code Label" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:352 +#: includes/admin/store-settings/class-mp-store-settings-general.php:606 +msgid "Select a State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:335 +#: includes/admin/store-settings/class-mp-store-settings-general.php:590 +msgid "Select A Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:332 +#: includes/admin/store-settings/class-mp-store-settings-general.php:587 +msgid "Select a Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:324 +msgid "Location" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:304 +#: includes/admin/class-mp-setup-wizard.php:312 +#: includes/admin/class-mp-store-settings-admin.php:129 +#: includes/admin/class-mp-store-settings-admin.php:262 +msgid "Quick Setup" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:289 +msgid "MarketPress setup is not complete! Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2479 +msgid "Enter your product name here" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2440 +msgid "Select a %s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2426 +msgid "Each product variation needs to have product attributes assigned to it so the system knows how to differentiate one product variation from the other. It is important that you assign a category to this product before choosing any attributes." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2409 +msgid "If you would like this variation to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2320 +msgid "Sale Price (if applicable)" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2281 +msgid "If you would like the description to be different than the main product enter it here." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2229 +msgid "Image" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2202 +#: includes/admin/class-mp-shortcode-builder.php:226 +msgid "Attributes" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2166 +msgid "Create your product variations here. You can reorder variations by using the number to left of each variation, or delete one by clicking the \"x\" to the right of each variation. NOTE: The variation that shows up first in this list will be considered the \"main variation\". The details from this variation will be used in product listings." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2061 +#: includes/admin/class-mp-products-admin.php:2332 +msgid "Value must be less than regular price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2043 +#: includes/admin/class-mp-products-admin.php:2306 +msgid "Regular Price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2023 +#: includes/admin/class-mp-products-admin.php:2286 +msgid "External URL" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1988 +#: includes/admin/class-mp-products-admin.php:2245 +msgid "Enter the quantity that you have available to sell." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1987 +#: includes/admin/class-mp-products-admin.php:2244 +msgid "Inventory Count" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1977 +#: includes/admin/class-mp-products-admin.php:2234 +msgid "Track Inventory?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1871 +msgid "%1$sProduct Images%2$s %3$sAdd images of the product. The first image on the list is the featured image for this product (you can reorder images on the list)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1806 +msgid "Add variations for this product. e.g. If you are selling t-shirts, you can create Color & Size variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1804 +msgid "%3$sAdd variations for%2$s %1$sProduct%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1776 +msgid "This product has a multiple variations %1$s(e.g. Multiple colors, sizes)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1775 +msgid "This is a unique product without variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1700 +msgid "Extra Shipping Cost %1$s(if applicable)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1659 +#: includes/admin/class-mp-products-admin.php:2112 +#: includes/admin/class-mp-products-admin.php:2359 +msgid "Weight" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1636 +#: includes/admin/class-mp-products-admin.php:2098 +#: includes/admin/class-mp-products-admin.php:2416 +msgid "Please enter a valid tax rate" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1531 +msgid "Limit Per Order %1$s(limit the number of the item a shopper can buy per order)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1513 +msgid "SKU %1$s(Stock Keeping Unit)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "%1$sPrice, Inventory & Variants%2$s %3$sSet price, manage inventory and create Product Variants (if appropriate for your product).%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "Product Variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1480 +msgid "External / Affiliate Link" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1471 +msgid "Digital Download" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1470 +msgid "Physical / Tangible Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1464 +msgid "Product Kind %1$s(Physical Product, Digital, etc)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1426 +msgid "Choose Products" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1420 +msgid "If you would like, you can choose specific related products instead of using the ones generated by MarketPress" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1019 +msgid "Changes saved successfully" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:826 +msgid "Option cannot be saved. Try again." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:821 +msgid "Option saved successfully." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:467 +msgid "Img" +msgstr "" + +#: includes/admin/class-mp-product-attributes-list-table.php:57 +msgid "Product attribute(s) deleted successfully." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:162 +msgid "- Create New Variation -" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:144 +msgid "Only lowercase letters and dashes (-) are allowed." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:139 +msgid "If a slug is not entered, it will be generated automatically. Max 32 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:138 +#: includes/admin/class-mp-product-attributes-list-table.php:23 +msgid "Slug" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:130 +msgid "Max 45 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:123 +msgid "Use the numbers on the left to sort. To delete - click the \"X\" to the right of each row." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:122 +msgid "Attribute Options" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:121 +msgid "Add Option" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:105 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:523 +msgid "Sort Order" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:87 +msgid "Alphabetical" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:86 +msgid "ID" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:84 +msgid "Select how the options will be sorted." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:82 +msgid "Sort By" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:75 +msgid "The name of the attribute (e.g. color, size, etc)" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:74 +msgid "Attribute Name" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:69 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Product Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Product Attributes" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:71 +msgid "You can choose to make this page one of the following core store pages." +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:66 +msgid "Network Store Base" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:61 +msgid "Checkout Page" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:52 +msgid "Store Page Settings" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1108 +msgid "Display billing/shipping info for this customer" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1097 +msgid "View order “%s”" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1072 +msgid "Flag as:" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:952 +msgid "Move To Trash" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:948 +msgid " Received" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:927 +msgid "Enter coupon code here" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:812 +msgid "The order status could not be updated due to unexpected error. Please try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:740 +msgid "An invalid bulk action was requested. Please go back and try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:692 +msgid "The order status for order ID %1$s was updated successfully." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:688 +msgid "Order statuses successfully updated." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:530 +msgid "Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:518 +msgid "Actual Shipping Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:513 +msgid "Method Paid For" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:504 +msgid "Amount Collected" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:477 +msgid "DHL" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:408 +msgid "There is no IPN history to show at this time" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:345 +msgid "Type" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:343 +msgid "Gateway" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:301 +#: includes/common/template-functions.php:528 +msgid "Order History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:291 +msgid "IPN History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:283 +msgid "Customer Info" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:279 +msgid "Order Details" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:157 +msgid "All Dates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:320 +msgid "Add Pages to Menu" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:318 +msgid "Add-ons" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:317 +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "User Capabilities" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:316 +#: includes/admin/class-mp-setup-wizard.php:631 +#: includes/admin/store-settings/class-mp-store-settings-payments.php:50 +msgid "Payment Gateways" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:315 +msgid "Shipping Rates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:312 +msgid "Configure" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:309 +#: includes/admin/class-mp-products-admin.php:466 +#: includes/admin/class-mp-shortcode-builder.php:797 +msgid "Tags" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:308 +#: includes/admin/class-mp-products-admin.php:465 +msgid "Categories" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:300 +msgid "Manage" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:297 +msgid "Here's some quick links to manage your store and products." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:288 +msgid "low in stock" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:287 +msgid "%s product" +msgid_plural "%s products" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-dashboard-widgets.php:280 +msgid "received" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:279 +#: includes/admin/class-mp-dashboard-widgets.php:283 +msgid "%s order" +msgid_plural "%s orders" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-dashboard-widgets.php:276 +msgid "Stock & Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:261 +msgid "Last 30 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:256 +msgid "Last 7 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:251 +msgid "Yesterday" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:248 +#: includes/admin/class-mp-dashboard-widgets.php:253 +#: includes/admin/class-mp-dashboard-widgets.php:258 +#: includes/admin/class-mp-dashboard-widgets.php:263 +msgid " Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:246 +msgid "Today" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:241 +msgid "Welcome back! Here's a quick summary of your store's performance." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:196 +#: includes/admin/class-mp-products-admin.php:895 +msgid "No products out of stock." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:136 +#: includes/admin/class-mp-products-admin.php:839 +msgid "Stock Level" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:135 +#: includes/admin/class-mp-products-admin.php:838 +msgid "Variation" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:121 +msgid "Low Stock (%s)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:116 +msgid "Store Management" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:115 +msgid "Store Reports" +msgstr "" + +#: includes/admin/class-mp-ajax.php:579 +#: includes/admin/class-mp-orders-admin.php:520 +#: includes/common/payment-gateways/2checkout.php:370 +#: includes/common/payment-gateways/authorizenet-aim.php:264 +#: includes/common/payment-gateways/mollie.php:93 +#: includes/common/payment-gateways/paymill.php:196 +#: includes/common/payment-gateways/pin.php:190 +#: includes/common/payment-gateways/skrill.php:157 +#: includes/common/payment-gateways/skrill.php:168 +#: includes/common/payment-gateways/wepay.php:143 +#: includes/public/class-mp-checkout.php:404 +msgid "Select One" +msgstr "" + +#: includes/admin/class-mp-ajax.php:511 +msgid "Oops... we could not locate any orders by that ID. Please double check your order ID and try again." +msgstr "" + +#: includes/admin/class-mp-ajax.php:482 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:166 +#: includes/multisite/class-mp-admin-multisite.php:584 +msgid "Edit Page" +msgstr "" + +#: includes/admin/class-mp-ajax.php:346 +msgid "Cancel " +msgstr "" + +#: includes/admin/class-mp-ajax.php:345 +msgid "Save " +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "Edit Description" +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "HTML Markup" +msgstr "" + +#: includes/admin/class-mp-ajax.php:333 +msgid "Plain Text Only" +msgstr "" + +#: includes/admin/class-mp-ajax.php:329 +msgid "Additional Content / Information for this Variation" +msgstr "" + +#: includes/admin/class-mp-ajax.php:317 +#: includes/admin/class-mp-products-admin.php:1762 +msgid "Allow this product to be purchased even if it's out of stock" +msgstr "" + +#: includes/admin/class-mp-ajax.php:313 +#: includes/admin/class-mp-products-admin.php:1711 +msgid "Track Product Inventory" +msgstr "" + +#: includes/admin/class-mp-ajax.php:300 +msgid "Extra Shipping Cost (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:295 +msgid "Ounces:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:294 +msgid "Pounds:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:292 +msgid "Kilograms:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:287 +#: includes/admin/class-mp-products-admin.php:1649 +msgid "Charge Shipping" +msgstr "" + +#: includes/admin/class-mp-ajax.php:273 +#: includes/admin/class-mp-products-admin.php:1623 +#: includes/admin/store-settings/class-mp-store-settings-general.php:454 +msgid "Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:272 +#: includes/admin/class-mp-products-admin.php:1622 +#: includes/admin/class-mp-products-admin.php:2090 +#: includes/admin/class-mp-products-admin.php:2408 +msgid "Special Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:271 +#: includes/admin/class-mp-products-admin.php:1625 +#: includes/admin/class-mp-products-admin.php:2092 +msgid "If you would like this product to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-ajax.php:268 +#: includes/admin/class-mp-products-admin.php:1599 +msgid "Charge Taxes (Special Rate)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:256 +#: includes/admin/class-mp-products-admin.php:1593 +#: includes/admin/class-mp-products-admin.php:2077 +#: includes/admin/class-mp-products-admin.php:2348 +msgid "End Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:255 +#: includes/admin/class-mp-products-admin.php:1589 +#: includes/admin/class-mp-products-admin.php:2072 +msgid "Start Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:1568 +msgid "Enter Sale Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:250 +#: includes/admin/class-mp-products-admin.php:1547 +msgid "Set up a Sale for this Product" +msgstr "" + +#: includes/admin/class-mp-ajax.php:206 includes/admin/class-mp-ajax.php:223 +msgid "Enter " +msgstr "" + +#: includes/admin/class-mp-ajax.php:193 +msgid "Browse" +msgstr "" + +#: includes/admin/class-mp-ajax.php:184 includes/admin/class-mp-ajax.php:192 +msgid "http://" +msgstr "" + +#: includes/admin/class-mp-ajax.php:183 +msgid "External Product URL" +msgstr "" + +#: includes/admin/class-mp-ajax.php:237 +msgid "Limit Per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:177 +#: includes/admin/class-mp-products-admin.php:1520 +msgid "Enter Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:174 +#: includes/admin/class-mp-products-admin.php:1512 +msgid "Enter SKU" +msgstr "" + +#: includes/admin/class-mp-ajax.php:173 +msgid "(Stock Keeping Unit)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:158 +msgid "Remove Image" +msgstr "" + +#: includes/admin/class-mp-ajax.php:74 +msgid "Variation Draft" +msgstr "" + +#: includes/admin/class-mp-admin.php:296 +#: includes/admin/class-mp-dashboard-widgets.php:70 +msgid "Please wait...saving in progress..." +msgstr "" + +#: includes/admin/class-mp-admin.php:295 +#: includes/admin/class-mp-dashboard-widgets.php:69 +msgid "Input is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:294 +#: includes/admin/class-mp-dashboard-widgets.php:68 +msgid "Valid number is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:292 +#: includes/admin/class-mp-dashboard-widgets.php:66 +msgid "Delete %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:291 +#: includes/admin/class-mp-dashboard-widgets.php:65 +msgid "Delete %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:290 +#: includes/admin/class-mp-dashboard-widgets.php:64 +msgid "Update inventory for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:289 +#: includes/admin/class-mp-dashboard-widgets.php:63 +msgid "Update inventory for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:288 +#: includes/admin/class-mp-dashboard-widgets.php:62 +msgid "Update price for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:287 +#: includes/admin/class-mp-dashboard-widgets.php:61 +msgid "Update prices for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:285 +#: includes/admin/class-mp-dashboard-widgets.php:59 +msgid "Creating variations, please wait..." +msgstr "" + +#: includes/admin/class-mp-admin.php:96 +msgid "The following payment gateways have been deprecated, Cubepoints, Bitpay, iDEAL, Skrill, Google Checkout. If you were using one of these gateways, please setup a new payment gateway here." +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:61 +msgid "Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:71 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:71 +#: includes/common/class-mp-gdpr.php:399 includes/common/class-mp-order.php:872 +#: includes/common/helpers.php:164 includes/public/class-mp-checkout.php:1434 +msgid "Shipping Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:66 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:66 +#: includes/common/class-mp-gdpr.php:392 includes/common/class-mp-order.php:864 +#: includes/common/helpers.php:163 includes/public/class-mp-checkout.php:1427 +msgid "Billing Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:61 +msgid "Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:258 +msgid "Shipping Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:256 +msgid "Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:235 +msgid "Payment Method: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:79 +msgid "The dir %s not exist or not writeable" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:239 +msgid "Shop header/logo" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:233 +msgid "Choose a template" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:226 +msgid "Template Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:221 +msgid "Disable automatic creation/attachment of invoices when only free products are ordered" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:220 +msgid "Disable for free products" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:216 +msgid "Attach invoice to" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:214 +msgid "Customer Order Shipped email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:212 +msgid "Customer New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:211 +msgid "Admin New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:206 +msgid "download" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:205 +msgid "How do you want to view the PDF?" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:203 +msgid "Open the PDF in a new browser tab/window" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:202 +msgid "Download the PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:158 +msgid "Export PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:103 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:106 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:109 +msgid "You can't download this order invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:76 +msgid "Invalid Request" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:72 +msgid "Order not exist!" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:67 +msgid "Invalid ID" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1293 +msgid "Coupon added successfully" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1292 +msgid "Please enter a code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1247 +msgid "No end" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1200 +msgid "Valid Dates" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1195 +msgid "Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1027 +msgid "No Coupons found in Trash" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1026 +msgid "No Coupons Found" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1025 +msgid "Search Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1024 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1028 +msgid "View Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1023 +msgid "New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1020 +msgid "Create New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1017 +msgid "Manage Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1002 +msgid "An error occurred while removing your coupon. Please try again." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:964 +msgid "Coupon can't be applied to this cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:951 +msgid "Invalid coupon code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:794 +msgid "Help Text" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:789 +msgid "Form Title" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:783 +msgid "Coupons Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:764 +msgid "End Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:758 +msgid "Does coupon have an end date?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:696 +msgid "Select Products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:688 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:723 +#: includes/common/payment-gateways/paypal-payflow.php:402 +msgid "User" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:638 +msgid "Max Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:636 +msgid "Enter the maximum number of times this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:623 +msgid "Leave blank to allow all other coupons." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:622 +msgid "Select combinable coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:618 +msgid "Can this coupon be combined with other coupons?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:613 +msgid "Apply to each applicable item once per cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:612 +msgid "Apply to each applicable item and quantity ordered" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:609 +msgid "How should the discount amount be applied?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:605 +msgid "Discount Amount" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:604 +msgid "Value must either be a decimal number or a percentage" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:602 +msgid "If you would like to give a percentage-based discount make sure to include the percent (%) symbol. Otherwise, the discount will be applied as a fixed amount off." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:595 +msgid "Letters and Numbers only." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:589 +msgid "Coupon Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:447 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:795 +msgid "More than one code? That's OK! Just be sure to enter one at a time." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:444 +msgid "Apply Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:314 +msgid "Coupon Discounts" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:89 +msgid "1 add-on disabled" +msgid_plural "%s add-ons disabled" +msgstr[0] "" +msgstr[1] "" + +#: includes/addons/class-mp-addons-list-table.php:84 +msgid "1 add-on enabled" +msgid_plural "%s add-ons enabled" +msgstr[0] "" +msgstr[1] "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Disabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Enable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:129 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:67 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:135 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:168 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:202 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:263 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:296 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:330 +msgid "Enabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +msgid "Disable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:34 +msgid "Disable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:33 +msgid "Enable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:21 +#: includes/admin/class-mp-products-admin.php:2280 +#: includes/common/class-mp-product.php:2916 +msgid "Description" +msgstr "" + +#: includes/common/template-functions.php:2889 +#: includes/multisite/template-functions.php:407 +msgid "Popularity (Least Popular - Most Popular)" +msgstr "" + +#: includes/common/template-functions.php:2888 +#: includes/multisite/template-functions.php:406 +msgid "Popularity (Most Popular - Least Popular)" +msgstr "" + +#: includes/common/template-functions.php:2885 +#: includes/multisite/template-functions.php:403 +msgid "Name (Z-A)" +msgstr "" + +#: includes/common/template-functions.php:2884 +#: includes/multisite/template-functions.php:402 +msgid "Name (A-Z)" +msgstr "" + +#: includes/common/template-functions.php:2883 +#: includes/multisite/template-functions.php:401 +msgid "Release Date (Oldest to Latest)" +msgstr "" + +#: includes/common/template-functions.php:2882 +#: includes/multisite/template-functions.php:400 +msgid "Release Date (Latest to Oldest)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:284 +msgid "paid" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "One Time Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Customer Counter" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Daily Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:182 +msgid "For the most accurate rates, please select the appropriate pick up type for your business." +msgstr "" + +#: includes/admin/class-mp-admin.php:374 +msgid "Page saved." +msgstr "" + +#: includes/admin/class-mp-admin.php:370 +msgid "Custom field deleted." +msgstr "" + +#: includes/admin/class-mp-admin.php:369 +msgid "Custom field updated." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:541 +msgid "%s - The payment request expired, - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:536 +msgid "%s - The payment not credited in merchants bitpay account, action required. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:252 +msgid "If enabled, you will recieve an email for each status update on payment." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:240 +msgid "Speed at which the bitcoin transaction registers as \"confirmed\" to the store. This overrides your merchant settings on the Bitpay website." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:238 +msgid "Transaction Speed" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:244 +msgid "Low" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:243 +msgid "Medium" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:242 +msgid "High" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:177 +#: includes/common/payment-gateways/_bitpay.php:517 +#: includes/common/payment-gateways/_bitpay.php:522 +msgid "%s - The payment request is under process. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:175 +#: includes/common/payment-gateways/_bitpay.php:527 +msgid "%s - The payment request has been processed - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:150 +#: includes/common/payment-gateways/_bitpay.php:294 +msgid "Incorrect order invoice, please contact site administrator" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:141 +msgid "We could not verify order invoice details, please try again or contact site administrator for help" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:81 +msgid "Login to Simplify to get your API credentials. Enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:605 +#: includes/common/payment-gateways/paypal-express.php:647 +msgid "Express Checkout is PayPal's premier checkout solution, which streamlines the checkout process for buyers and keeps them on your site after making a purchase. Unlike PayPal Pro, there are no additional fees to use Express Checkout, though you may need to do a free upgrade to a business account. More Info »" +msgstr "" + +#. Plugin URI of the plugin/theme +msgid "https://premium.wpmudev.org/project/e-commerce/" +msgstr "" + +#. Author of the plugin/theme +msgid "WPMU DEV" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:541 +#: includes/admin/class-mp-orders-admin.php:543 +msgid "Tracking Number" +msgstr "" + +#: includes/common/class-mp-order.php:805 +#: includes/common/payment-gateways/stripe.php:336 +#: includes/public/class-mp-checkout.php:402 +msgid "Country" +msgstr "" + +#: includes/common/class-mp-order.php:784 +#: includes/common/payment-gateways/stripe.php:338 +msgid "City" +msgstr "" + +#: includes/common/class-mp-order.php:780 +msgid "Address 2" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:340 +msgid "Address" +msgstr "" + +#: includes/common/class-mp-cart.php:752 includes/common/class-mp-gdpr.php:378 +msgid "Order Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:360 +msgid "Payment Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:347 +msgid "Transaction ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:207 +msgid "The WePay Card Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:186 +#: includes/common/shipping-modules/mp-fedex.php:283 +msgid "Account ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:179 +msgid "Access Token" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:172 +msgid "Client Secret" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:165 +msgid "Client ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:159 +msgid "You must login to WePay to get your API credentials. Make sure to check \"Tokenize credit cards\" option under \"API Keys\" section of your WePay app." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:154 +msgid "When in live mode it is recommended to use SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:148 +msgid "Donation" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:147 +msgid "Event" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:146 +msgid "Personal" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:145 +msgid "Service" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:144 +msgid "Goods" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:141 +msgid "Choose type of payments" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:140 +msgid "Checkout Type" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:134 +msgid "Staging" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:131 +msgid "Choose STAGING if you have registered the app on stage.wepay.com, or PRODUCTION if you registered on www.wepay.com" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:36 +#: includes/common/payment-gateways/wepay.php:299 +msgid "WePay" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:366 +msgid "Rejected - A payment was rejected." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:360 +msgid "Failed - A payment was rejected due to an error." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:342 +msgid "PayWay balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:298 +msgid "Full path of the cacerts.crt file" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:284 +msgid "User Name" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:277 +msgid "Biller Code" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:273 +msgid "Log Directory" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:266 +msgid "Encryption Key" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:60 +msgid "Your PayWay transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:40 +#: includes/common/payment-gateways/_payway.php:41 +msgid "PayWay" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:862 +msgid "You must register this application with PayPal using your business account login to get an Application ID that will work with your API credentials. A bit of a hassle, but worth it! In the near future we will be looking for ways to simplify this process. Register then submit your application while logged in to the developer portal. Note that you do not need an Application ID for testing in sandbox mode. More Information »" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:818 +#: includes/common/payment-gateways/paypal-chained-payments.php:840 +#: includes/common/payment-gateways/paypal-express.php:705 +msgid "You must login to PayPal and create an API signature to get your credentials. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:378 +msgid "Use Payflow payment gateway to accept online payments using your Internet merchant account and processing network. PayPal Payflow Pro is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:595 +msgid "Tags Only" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:594 +msgid "Category Only" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:795 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:593 +msgid "Category & Tags" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:591 +msgid "Relate Products By" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1008 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:455 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:751 +msgid "Right" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1007 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:454 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:749 +msgid "Left" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1009 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:750 +msgid "Center" +msgstr "" + +#: marketpress.php:273 +msgid "Orders from your e-commerce store." +msgstr "" + +#: marketpress.php:231 +msgid "Products for your e-commerce store." +msgstr "" + +#: marketpress.php:222 +msgid "Edit Product" +msgstr "" + +#. Description of the plugin/theme +msgid "The complete WordPress ecommerce plugin - works perfectly with BuddyPress and Multisite too to create a social marketplace, where you can take a percentage! Activate the plugin, adjust your settings then add some products to your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:272 +msgid "Beside" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:271 +msgid "Above" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:268 +msgid "Pin Count" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:261 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:287 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:318 +msgid "All View" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:260 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:286 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:317 +msgid "Single View" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:259 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:285 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:316 +msgid "Off" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:578 +msgid "Related Product Limit" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:681 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1201 +msgid "Applies To" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:685 +msgid "All Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:487 +msgid "The label shown for the tax line item in the cart. Taxes, VAT, GST, etc." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:485 +msgid "Tax Label" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:81 +msgid "Apply" +msgstr "" + +#: includes/admin/class-mp-admin.php:192 +msgid "MarketPress Instructions" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1954 +#: includes/admin/class-mp-products-admin.php:2194 includes/common/data.php:62 +#: includes/common/helpers.php:150 +msgid "Taxes" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1417 +#: includes/common/class-mp-product.php:2900 +msgid "Related Products" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:282 +#: includes/common/shipping-modules/mp-usps.php:316 +msgid "@ Max" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "(3-5 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "Priority Mail Express International Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:92 +msgid "Priority Mail Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:171 +#: includes/common/shipping-modules/mp-pickup.php:247 +msgid "In Store" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:159 +msgid "Pickup Fee" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:141 +msgid "This option allows your customers to indicate that they will pick-up their order at your place of business." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:60 +#: includes/common/shipping-modules/mp-pickup.php:76 +#: includes/common/shipping-modules/mp-pickup.php:176 +msgid "Pickup Instructions" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:24 +#: includes/common/shipping-modules/mp-pickup.php:254 +msgid "Pickup" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping - 0.00" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:256 +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:440 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:309 +msgid "Your Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:301 +msgid "Station" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:300 +msgid "Request Courier" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:299 +msgid "Drop Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:298 +msgid "Business Service Center" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:297 +msgid "Regular Pickup" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:135 +#: includes/common/shipping-modules/mp-fedex.php:264 +msgid "Production" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:207 +msgid "Simplify Commerce by MasterCard" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:104 +msgid "When in live mode, although it is not required, Simplify recommends you have an SSL certificate." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:183 +#: includes/common/payment-gateways/simplify.php:87 +msgid "Public Key" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:175 +#: includes/common/payment-gateways/simplify.php:94 +msgid "Private Key" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:71 +msgid "Simplify helps merchants to accept online payments from Mastercard, Visa, American Express, Discover, JCB, and Diners Club cards. It's that simple. We offer a merchant account and payment gateway in a single, secure package so you can concentrate on what really matters to your business. Only supports USD currently." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:267 +msgid "%1$s" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:151 +msgid "The Simplify Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/simplify.php:18 +msgid "Simplify" +msgstr "" + +#: includes/common/payment-gateways/pin.php:255 +msgid "%1$s Card %2$s" +msgstr "" + +#: includes/common/payment-gateways/pin.php:211 +msgid "The PIN Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:187 +msgid "Selecting a currency other than currency supported by PIN may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/pin.php:164 +msgid "You must login to PIN to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/pin.php:158 +msgid "When in live mode PIN recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/pin.php:45 +#: includes/common/payment-gateways/pin.php:286 +msgid "PIN" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:830 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:534 +#: includes/common/payment-gateways/paypal-express.php:865 +msgid "The payment is pending" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:235 +msgid "The Paymill Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:169 +msgid "You must login to Paymill to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:45 +#: includes/common/payment-gateways/paymill.php:308 +msgid "Paymill" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:90 +msgid "Invalid cardholder" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:89 +msgid "Card is no longer valid or has expired" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:88 +msgid "Please enter a valid Card CVC" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:87 +msgid "Please choose a valid Expiration Date." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:99 +#: includes/common/payment-gateways/skrill.php:100 +msgid "Skrill (Moneybookers)" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:24 +#: includes/common/shipping-modules/mp-weight-rate.php:292 +msgid "Weight Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:303 +msgid "USPS Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:270 +msgid "USPS Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:264 +msgid "USPS Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:145 +msgid "Flat Rate Large" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:140 +msgid "Flat Rate Medium 2" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:135 +msgid "Flat Rate Medium 1" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:130 +msgid "Flat Rate Small" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:118 +msgid "First Class International Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:114 +msgid "Priority Mail International Small Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:112 +msgid "Priority Mail International Medium Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:110 +msgid "Priority Mail International Large Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:108 +msgid "Priority Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:106 +msgid "Express Mail International Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:104 +msgid "Express Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:98 +msgid "Library Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:96 +msgid "Media Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "First-Class Mail Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:90 +msgid "Priority Mail Small Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:88 +msgid "Priority Mail Medium Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +#: includes/common/shipping-modules/mp-usps.php:88 +#: includes/common/shipping-modules/mp-usps.php:90 +#: includes/common/shipping-modules/mp-usps.php:92 +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "(2-4 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +msgid "Priority Mail Large Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "(2-4) days" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "Priority Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "Express Mail Sunday/Holiday Delivery Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:80 +msgid "Express Mail Flat Rate Boxes Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:78 +msgid "Express Mail Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:76 +msgid "Express Mail Sunday/Holiday Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:74 +msgid "Express Mail Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:72 +#: includes/common/shipping-modules/mp-usps.php:74 +#: includes/common/shipping-modules/mp-usps.php:76 +#: includes/common/shipping-modules/mp-usps.php:78 +#: includes/common/shipping-modules/mp-usps.php:80 +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "(1-2 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:72 +msgid "Express Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:67 +#: includes/common/shipping-modules/mp-usps.php:902 +msgid "USPS" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:534 +msgid "UPS (beta)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:166 +msgid "Required if using negotiated rates" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "Worldwide Express Plus" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "(Scheduled)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "Standard" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "(2-5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "Worldwide Expedited" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:54 +msgid "Worldwide Express" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "2nd Day Air AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "(1 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "Next Day Air Early AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "Next Day Air Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "3 Day Select" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:49 +msgid "Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:48 +msgid "2nd Day Air" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "Next Day Air" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:475 +#: includes/common/shipping-modules/mp-ups.php:43 +msgid "UPS" +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:27 +#: includes/common/shipping-modules/mp-table-rate.php:318 +msgid "Table Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:71 +#: includes/common/shipping-modules/mp-table-quantity.php:77 +msgid "Shipping Cost: " +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:70 +#: includes/common/shipping-modules/mp-table-quantity.php:76 +msgid "If quantity is greater than:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:66 +msgid "Each band must be a higher price than the one above it." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:56 +msgid "Number of Bands:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:53 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Each layer must be a higher quantity than the previous." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:51 +msgid "Table Quantity Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:31 +msgid "Table Quantity" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:135 +#: includes/common/shipping-modules/mp-table-rate.php:174 +#: includes/common/shipping-modules/mp-weight-rate.php:189 +msgid "European Union" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:123 +#: includes/common/shipping-modules/mp-table-rate.php:162 +#: includes/common/shipping-modules/mp-weight-rate.php:177 +msgid "United States" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:111 +#: includes/common/shipping-modules/mp-table-rate.php:151 +#: includes/common/shipping-modules/mp-weight-rate.php:166 +msgid "In Country" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:146 +#: includes/common/shipping-modules/mp-table-rate.php:186 +#: includes/common/shipping-modules/mp-weight-rate.php:201 +msgid "International" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:101 +#: includes/common/shipping-modules/mp-table-rate.php:141 +#: includes/common/shipping-modules/mp-weight-rate.php:156 +msgid "Canada" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:92 +#: includes/common/shipping-modules/mp-table-rate.php:132 +#: includes/common/shipping-modules/mp-weight-rate.php:147 +msgid "Hawaii and Alaska" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:83 +#: includes/common/shipping-modules/mp-table-rate.php:123 +#: includes/common/shipping-modules/mp-weight-rate.php:138 +msgid "Lower 48 States" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:64 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping." +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:25 +#: includes/common/shipping-modules/mp-flat-rate.php:223 +msgid "Flat Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:761 +msgid "FedEx (beta)" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Centimeters" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Inches" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1676 +#: includes/admin/class-mp-setup-wizard.php:547 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:166 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +msgid "Kilograms" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:103 +msgid " %1$s - %2$s" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:358 +msgid "Max Weight per Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:356 +msgid "Box Dimensions" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:354 +msgid "Box Name" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:344 +msgid "Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:343 +msgid "For each box defined enter the maximum weight it can contain." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:341 +msgid "Enter your standard box sizes as LengthxWidthxHeight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:386 +#: includes/common/shipping-modules/mp-ups.php:193 +#: includes/common/shipping-modules/mp-usps.php:234 +#: includes/common/shipping-modules/mp-usps.php:338 +msgid "Standard Boxes and Weight Limits" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:328 +msgid "Handling Charge per Interntional Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:294 +msgid "Handling Charge per Domestic Shipment " +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:388 +#: includes/common/shipping-modules/mp-ups.php:196 +#: includes/common/shipping-modules/mp-usps.php:237 +msgid "Add Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "(Next Day)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +msgid "Europe First International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:62 +msgid "International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:61 +#: includes/common/shipping-modules/mp-fedex.php:62 +#: includes/common/shipping-modules/mp-ups.php:54 +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "(1-3 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:61 +msgid "International First" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "(5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "International Economy" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "(2-7 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "Smart Post" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:55 +#: includes/common/shipping-modules/mp-ups.php:49 +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "(1-5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:55 +msgid "Ground Home Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "(1-7 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "Fedex Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:53 +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "(3 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:53 +msgid "Fedex Express Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +#: includes/common/shipping-modules/mp-ups.php:48 +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "(2 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +msgid "Fedex 2 Day" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "(2 Days am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "Fedex 2 Day AM" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "(1 Day)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +msgid "Standard Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "(1 Day am )" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "Priority Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "(1 Day am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "First Overnight" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:476 +#: includes/common/shipping-modules/mp-fedex.php:31 +msgid "FedEx" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:270 +#: includes/common/payment-gateways/simplify.php:179 +#: includes/common/payment-gateways/stripe.php:365 +msgid "%1$s Card ending in %2$s - Expires %3$s" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:259 +#: includes/common/payment-gateways/pin.php:238 +#: includes/common/payment-gateways/simplify.php:171 +msgid "%s Store Purchase - Order ID: %s, Email: %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:266 +msgid "You must login to Stripe to get your API credentials. You can enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:261 +msgid "When in live mode Stripe recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:311 +msgid "The Stripe Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:263 +#: includes/common/payment-gateways/paymill.php:122 +#: includes/common/payment-gateways/stripe.php:222 +msgid "Card Number" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:86 +msgid "Please enter a valid Credit Card Number." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:45 +#: includes/common/payment-gateways/stripe.php:433 +msgid "Stripe" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:750 +msgid "Sets the background color for the payment page. By default, the color is white." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:745 +msgid "Sets the background color for the header of the payment page. By default, the color is white." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:740 +msgid "Sets the border color around the header of the payment page. The border is a 2-pixel perimeter around the header space, which is 750 pixels wide by 90 pixels high. By default, the color is black." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:735 +msgid "URL for an image you want to appear at the top left of the payment page. The image has a maximum size of 750 pixels wide by 90 pixels high. PayPal recommends that you provide an image that is stored on a secure (https) server. If you do not specify an image, the business name is displayed." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:857 +#: includes/common/payment-gateways/paypal-express.php:1131 +msgid "The payment is pending because it is part of an order that has been authorized but not settled." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:853 +#: includes/common/payment-gateways/paypal-express.php:1127 +msgid "The payment is pending because it has been authorized but not settled. You must capture the funds first." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:847 +#: includes/common/payment-gateways/paypal-express.php:1120 +msgid "You denied the payment when it was marked as pending." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:837 +#: includes/common/payment-gateways/paypal-express.php:1108 +msgid "A reversal has occurred on this transaction due to an unknown reason." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:836 +#: includes/common/payment-gateways/paypal-express.php:1107 +msgid "A reversal has occurred on this transaction because you have given the customer a refund." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:835 +#: includes/common/payment-gateways/paypal-express.php:1106 +msgid "A reversal has occurred on this transaction due to a complaint about the transaction from your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:834 +#: includes/common/payment-gateways/paypal-express.php:1105 +msgid "A reversal has occurred on this transaction due to your customer triggering a money-back guarantee." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:833 +#: includes/common/payment-gateways/paypal-express.php:1104 +msgid "A reversal has occurred on this transaction due to a chargeback by your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:1101 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer:" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:826 +#: includes/common/payment-gateways/paypal-express.php:1097 +msgid "A payment has been accepted." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:818 +#: includes/common/payment-gateways/paypal-express.php:1087 +msgid "The transaction has not terminated, e.g. an authorization may be awaiting completion." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:531 +#: includes/common/payment-gateways/paypal-express.php:810 +#: includes/common/payment-gateways/paypal-express.php:1077 +msgid "The payment has failed. This happens only if the payment was made from your customer's bank account." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:806 +#: includes/common/payment-gateways/paypal-express.php:1072 +msgid "An authorization for this transaction has been voided." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:802 +#: includes/common/payment-gateways/paypal-express.php:1067 +msgid "The authorization period for this payment has been reached." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:798 +#: includes/common/payment-gateways/paypal-express.php:1062 +msgid "A reversal has been canceled; for example, when you win a dispute and the funds for the reversal have been returned to you." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:499 +#: includes/common/payment-gateways/paypal-express.php:1163 +msgid "PayPal Express Checkout" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:798 +msgid "Gateway Settings Page Message" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:725 +msgid "Signature" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:506 +#: includes/common/payment-gateways/eway31.php:533 +#: includes/common/shipping-modules/mp-fedex.php:276 +msgid "API Password" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:773 +msgid "Enter a percentage of all store sales to collect as a fee. Decimals allowed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:757 +msgid "Using PayPal Chained Payments allows you as the multisite network owner to collect a predefined fee or percentage of all sales on network MarketPress stores! This is invisible to the customers who purchase items in a store, and all PayPal fees will be charged to the store owner. To use this option you must create API credentials, and you should make all other gateways unavailable or limited above." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:338 +msgid "Please be aware that we will deduct a ?% fee from the total of each transaction in addition to any fees PayPal may charge you. If for any reason you need to refund a customer for an order, please contact us with a screenshot of the refund receipt in your PayPal history as well as the Transaction ID of our fee deduction so we can issue you a refund. Thank you!" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:698 +#: includes/common/payment-gateways/paypal-express.php:149 +msgid "There was a problem connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:470 +#: includes/common/payment-gateways/paypal-express.php:1053 +msgid "There was a problem verifying the IPN string with PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:310 +msgid "There was a problem connecting to PayPal to check the status of your purchase. Please check the status of your order here »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:539 +#: includes/common/payment-gateways/paypal-chained-payments.php:254 +#: includes/common/payment-gateways/paypal-express.php:1139 +msgid "The payment is pending." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:251 +#: includes/common/payment-gateways/paypal-chained-payments.php:531 +#: includes/common/payment-gateways/paypal-express.php:862 +#: includes/common/payment-gateways/paypal-express.php:1136 +msgid "The payment is pending for an unknown reason. For more information, contact PayPal customer service." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:250 +#: includes/common/payment-gateways/paypal-chained-payments.php:530 +#: includes/common/payment-gateways/paypal-express.php:861 +#: includes/common/payment-gateways/paypal-express.php:1135 +msgid "The payment is pending because you are not yet verified. You must verify your account before you can accept this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:249 +#: includes/common/payment-gateways/paypal-chained-payments.php:529 +#: includes/common/payment-gateways/paypal-express.php:860 +#: includes/common/payment-gateways/paypal-express.php:1134 +msgid "The payment is pending because it was made via credit card and you must upgrade your account to Business or Premier status in order to receive the funds. It can also mean that you have reached the monthly limit for transactions on your account." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:248 +#: includes/common/payment-gateways/paypal-chained-payments.php:528 +#: includes/common/payment-gateways/paypal-express.php:859 +#: includes/common/payment-gateways/paypal-express.php:1133 +msgid "The payment is pending because it was made to an email address that is not yet registered or confirmed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:247 +#: includes/common/payment-gateways/paypal-chained-payments.php:527 +#: includes/common/payment-gateways/paypal-express.php:858 +#: includes/common/payment-gateways/paypal-express.php:1132 +msgid "The payment is pending while it is being reviewed by PayPal for risk." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:246 +#: includes/common/payment-gateways/paypal-chained-payments.php:526 +#: includes/common/payment-gateways/paypal-express.php:856 +#: includes/common/payment-gateways/paypal-express.php:1130 +msgid "You do not have a balance in the currency sent, and you do not have your Payment Receiving Preferences set to automatically convert and accept this payment. You must manually accept or deny this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:245 +#: includes/common/payment-gateways/paypal-chained-payments.php:525 +#: includes/common/payment-gateways/paypal-express.php:855 +#: includes/common/payment-gateways/paypal-express.php:1129 +msgid "The payment is pending because you hold a non-U.S. account and do not have a withdrawal mechanism. You must manually accept or deny this payment from your Account Overview." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:244 +#: includes/common/payment-gateways/paypal-chained-payments.php:524 +#: includes/common/payment-gateways/paypal-express.php:854 +#: includes/common/payment-gateways/paypal-express.php:1128 +msgid "The payment is pending because it was made by an eCheck that has not yet cleared." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:243 +#: includes/common/payment-gateways/paypal-chained-payments.php:523 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:236 +#: includes/common/payment-gateways/paypal-chained-payments.php:516 +msgid "The transaction was rejected by the receiver (you)." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:510 +#: includes/common/payment-gateways/paypal-express.php:843 +#: includes/common/payment-gateways/paypal-express.php:1115 +msgid "You refunded the payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:224 +#: includes/common/payment-gateways/paypal-chained-payments.php:504 +msgid "The transaction is in progress." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:212 +#: includes/common/payment-gateways/paypal-chained-payments.php:491 +#: includes/common/payment-gateways/paypal-express.php:814 +#: includes/common/payment-gateways/paypal-express.php:1082 +msgid "The payment has been partially refunded." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:202 +#: includes/common/payment-gateways/paypal-chained-payments.php:481 +msgid "PayPal balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:177 +msgid "There was a problem connecting to PayPal to setup your purchase. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:122 +msgid "Your PayPal transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:50 +#: includes/common/payment-gateways/paypal-chained-payments.php:53 +#: includes/common/payment-gateways/paypal-chained-payments.php:732 +#: includes/common/payment-gateways/paypal-express.php:500 +#: includes/common/payment-gateways/paypal-express.php:938 +msgid "PayPal" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:48 +#: includes/common/payment-gateways/paypal-chained-payments.php:730 +#: includes/common/payment-gateways/paypal-chained-payments.php:756 +#: includes/common/payment-gateways/paypal-chained-payments.php:873 +msgid "PayPal Chained Payments" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:59 +#: includes/common/payment-gateways/paypal-payflow.php:467 +msgid "PayPal Payflow Pro" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:378 +msgid "Chargeback - A payment was reversed due to a chargeback. The funds have been removed from your account balance and returned to the buyer." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:372 +msgid "Failed - The Credit Card or Direct Debit transaction was declined." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:354 +#: includes/common/payment-gateways/skrill.php:366 +msgid "Cancelled - The payment was cancelled manually by the sender in their online account history or was auto-cancelled after 14 days pending." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:360 +msgid "Pending - The payment is pending. It can take 2-3 days for bank transfers to complete." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:349 +#: includes/common/payment-gateways/skrill.php:354 +msgid "Processed - The payment has been completed, and the funds have been added successfully to your Moneybookers account balance." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:189 +msgid "Shown to the customer on the confirmation screen - the end step of the process - a note, confirmation number, or any other message. Line breaks <br> may be used for longer messages." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:188 +msgid "Confirmation Note (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:183 +msgid "The URL of the logo which you would like to appear at the top of the payment form. The logo must be accessible via HTTPS otherwise it will not be shown. For best integration results we recommend that you use a logo with dimensions up to 200px in width and 50px in height." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:182 +msgid "Logo Image (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:177 +msgid "The name of this store, which will be shown on the gateway. If no value is submitted, the account email will be shown as the recipient of the payment." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:176 +msgid "Merchant Name (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:165 +msgid "Language" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:368 +#: includes/common/payment-gateways/authorizenet-aim.php:262 +#: includes/common/payment-gateways/eway.php:363 +#: includes/common/payment-gateways/eway31.php:471 +#: includes/common/payment-gateways/mollie.php:91 +#: includes/common/payment-gateways/paymill.php:193 +#: includes/common/payment-gateways/paypal-chained-payments.php:356 +#: includes/common/payment-gateways/paypal-express.php:688 +#: includes/common/payment-gateways/paypal-payflow.php:432 +#: includes/common/payment-gateways/pin.php:186 +#: includes/common/payment-gateways/skrill.php:152 +#: includes/common/payment-gateways/stripe.php:288 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:104 +msgid "Currency" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:359 +#: includes/common/payment-gateways/skrill.php:143 +msgid "Secret Word" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:261 +msgid "Order ID:" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:234 +msgid "Complete Checkout" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:204 +msgid "Your Moneybookers transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:155 +msgid "This is the email text to send to those who have made manual payment checkouts. You should include your manual payment instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:257 +#: includes/common/payment-gateways/manual-payments.php:128 +msgid "Record payments manually, such as by Cash, Check, or EFT." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:71 +msgid "Manual/Invoice" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:648 +#: includes/common/payment-gateways/manual-payments.php:35 +#: includes/common/payment-gateways/manual-payments.php:36 +msgid "Manual Payment" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:34 +#: includes/common/payment-gateways/manual-payments.php:163 +msgid "Manual Payments" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:288 +msgid "iDEAL Simulator (for testing)" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:287 +msgid "ABN Amro Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:286 +msgid "Friesland Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:285 +msgid "Rabobank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:284 +msgid "ING Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:279 +msgid "Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:270 +msgid "To make it easier to pay for online products and services, the Dutch banking community has developed the iDEAL online payment method. iDEAL allows online payments to be made using online banking in EUR only." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:247 +#: includes/common/payment-gateways/_payway.php:199 +#: includes/common/payment-gateways/manual-payments.php:68 +msgid "Invoiced" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1016 +msgid "Coupon" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:77 +#: includes/common/payment-gateways/_ideal.php:250 +#: includes/common/payment-gateways/_payway.php:202 +msgid "iDEAL" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:76 +msgid "iDEAL (beta)" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:327 +msgid "Merchant Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:293 +#: includes/common/payment-gateways/_payway.php:302 +#: includes/common/payment-gateways/payfast.php:324 +msgid "Merchant ID" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:462 +msgid "eWay Rapid 3.0 Payments lets merchants recieve credit card payments through eWay without need for users to leave the shop. Note this gateway requires a valid SSL certificate configured for this site." +msgstr "" + +#: includes/common/payment-gateways/eway.php:452 +msgid "There was a problem connecting to eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/eway.php:432 +#: includes/common/payment-gateways/eway.php:437 +msgid "The url of the image can be hosted on your website and pass the secure https:// path of the image to be displayed at the top of the website. This is the second image block on the webpage and is restricted to 960px X 65px. A default secure image is used if none is supplied." +msgstr "" + +#: includes/common/payment-gateways/eway.php:431 +#: includes/common/payment-gateways/eway.php:436 +msgid "Company Logo (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:427 +msgid "The page footer text can be customised and populated below the customer's order details. Useful for contact information." +msgstr "" + +#: includes/common/payment-gateways/eway.php:426 +msgid "Page Footer (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:421 +msgid "Page Description (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:417 +#: includes/common/payment-gateways/eway.php:422 +msgid "This value is used to populate the browsers title bar at the top of the screen." +msgstr "" + +#: includes/common/payment-gateways/eway.php:416 +msgid "Page Title (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:412 +msgid "This will be displayed as the company the customer is purchasing from, including this is highly recommended." +msgstr "" + +#: includes/common/payment-gateways/eway.php:411 +msgid "Company Name" +msgstr "" + +#: includes/common/payment-gateways/eway.php:394 +msgid "Customer ID" +msgstr "" + +#: includes/common/payment-gateways/eway.php:381 +#: includes/common/payment-gateways/eway31.php:488 +msgid "Live API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway.php:371 +#: includes/common/payment-gateways/eway31.php:479 +msgid "Gateway Mode" +msgstr "" + +#: includes/common/payment-gateways/eway.php:354 +msgid "The Hosted Page is a webpage hosted on eWAY's side eliminating the need for merchants to capture, transmit or store credit card numbers. At the checkout time the merchant automatically redirects the customer to the Hosted Page where they would enter their details and have the transaction processed. Upon completion of the transaction the customer is redirected back to the MarketPress checkout confirmation page." +msgstr "" + +#: includes/common/payment-gateways/eway.php:314 +msgid "There was a problem with your credit card information: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:300 +msgid "Paid - The card has been processed - %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:253 +msgid "There was a problem setting up the transaction with eWay: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:245 +#: includes/common/payment-gateways/eway.php:289 +msgid "There was a problem parsing the response from eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:159 +#: includes/common/payment-gateways/eway.php:189 +#: includes/common/payment-gateways/paypal-chained-payments.php:634 +#: includes/common/payment-gateways/paypal-express.php:322 +#: includes/common/payment-gateways/paypal-express.php:473 +msgid "%s Store Purchase - Order ID: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:147 +#: includes/common/payment-gateways/eway.php:462 +msgid "eWay Shared Payments" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:214 +msgid "This is the email text to send to those who have made CubePoints checkouts. You should include your CubePoints instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:212 +#: includes/common/payment-gateways/free_orders.php:188 +#: includes/common/payment-gateways/manual-payments.php:154 +msgid "Order Confirmation Email" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:207 +#: includes/common/payment-gateways/manual-payments.php:149 +msgid "Confirmation User Instructions" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:202 +#: includes/common/payment-gateways/manual-payments.php:144 +msgid "User Instructions" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:198 +#: includes/common/payment-gateways/free_orders.php:170 +#: includes/common/payment-gateways/manual-payments.php:139 +msgid "Enter a public name for this payment method that is displayed to users - No HTML" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:532 +#: includes/common/payment-gateways/_cubepoints.php:196 +#: includes/common/payment-gateways/free_orders.php:169 +#: includes/common/payment-gateways/manual-payments.php:138 +msgid "Method Name" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:187 +msgid "Accept CubePoints as payment(requires the CubePoints plugin)." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:140 +msgid "Sorry, but you do not appear to have enough points to complete this purchase!" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:124 +msgid "%s Store Purchase" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:79 +#: includes/common/payment-gateways/_cubepoints.php:171 +msgid "Your current points: " +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:133 +#: includes/common/payment-gateways/_cubepoints.php:197 +msgid "CubePoints" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:344 +msgid "Authorize.net AIM Checkout" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:331 +msgid "Custom API URL" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:332 +msgid "Many other gateways have Authorize.net API emulators. To use one of these gateways input their API post url here." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:322 +msgid "Request a delimited response from the payment gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:316 +msgid "Security: MD5 Hash" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:317 +msgid "The payment gateway generated MD5 hash value that can be used to authenticate the transaction response. Not needed because responses are returned using an SSL connection." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:306 +msgid "Customer Receipt Email Footer" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:296 +msgid "Customer Receipt Email Header" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:297 +#: includes/common/payment-gateways/paypal-payflow.php:446 +msgid "This text will appear as the header of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:282 +msgid "Encapsulation Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:283 +msgid "Authorize.net default is blank. Otherwise, get this from your credit card processor. If the transactions are going through, but getting strange responses, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:273 +msgid "Optional settings to control advanced options" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:224 +#: includes/common/payment-gateways/authorizenet-aim.php:272 +msgid "Advanced Settings" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:253 +msgid "Transaction Key" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:246 +msgid "Login ID" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:396 +msgid "Gateway Credentials" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:221 +msgid "Authorize.net AIM is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway. USD is the only currency supported by this gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:205 +msgid "There was a problem finalizing your purchase. %s Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:519 +#: includes/common/payment-gateways/paypal-chained-payments.php:218 +#: includes/common/payment-gateways/paypal-chained-payments.php:498 +#: includes/common/payment-gateways/paypal-express.php:822 +#: includes/common/payment-gateways/paypal-express.php:1092 +msgid "The payment has been completed, and the funds have been added successfully to your account balance." +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:233 +msgid "Please enter a valid credit card security code" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:224 +#: includes/public/class-mp-checkout.php:867 +msgid "Please enter a valid credit card number" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:221 +msgid "Please enter your credit card number" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:217 +msgid "Please enter your credit card security code" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:213 +msgid "Please select your credit card expiration date." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:299 +#: includes/common/payment-gateways/authorizenet-aim.php:50 +#: includes/common/payment-gateways/eway.php:148 +#: includes/common/payment-gateways/eway.php:298 +#: includes/common/payment-gateways/eway31.php:267 +#: includes/common/payment-gateways/paymill.php:46 +#: includes/common/payment-gateways/paypal-express.php:972 +#: includes/common/payment-gateways/paypal-payflow.php:60 +#: includes/common/payment-gateways/pin.php:46 +#: includes/common/payment-gateways/simplify.php:19 +#: includes/common/payment-gateways/stripe.php:46 +#: includes/common/payment-gateways/wepay.php:37 +msgid "Credit Card" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:49 +msgid "Authorize.net Checkout" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:156 +#: includes/common/payment-gateways/stripe.php:293 +msgid "Selecting a currency other than that used for your store may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:352 +msgid "Seller ID" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:340 +#: includes/common/payment-gateways/_ideal.php:311 +#: includes/common/payment-gateways/authorizenet-aim.php:234 +#: includes/common/payment-gateways/eway.php:376 +#: includes/common/payment-gateways/payfast.php:315 +#: includes/common/payment-gateways/paypal-chained-payments.php:368 +#: includes/common/payment-gateways/paypal-express.php:699 +#: includes/common/payment-gateways/paypal-payflow.php:391 +msgid "Live" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:339 +#: includes/common/payment-gateways/authorizenet-aim.php:233 +#: includes/common/payment-gateways/eway.php:375 +#: includes/common/payment-gateways/paypal-chained-payments.php:367 +#: includes/common/payment-gateways/paypal-express.php:698 +#: includes/common/payment-gateways/paypal-payflow.php:390 +#: includes/common/shipping-modules/mp-fedex.php:263 +msgid "Sandbox" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:336 +#: includes/common/payment-gateways/_ideal.php:307 +#: includes/common/payment-gateways/authorizenet-aim.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:365 +#: includes/common/payment-gateways/paypal-express.php:695 +#: includes/common/payment-gateways/paypal-payflow.php:387 +#: includes/common/payment-gateways/wepay.php:130 +#: includes/common/shipping-modules/mp-fedex.php:260 +msgid "Mode" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:288 +#: includes/common/payment-gateways/mijireh.php:242 +#: includes/common/payment-gateways/mollie.php:212 +msgid "The order has been received" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:74 +#: includes/common/payment-gateways/2checkout.php:75 +#: includes/common/payment-gateways/2checkout.php:435 +msgid "2Checkout" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:306 +msgid "Confirm" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:218 +#: includes/common/class-mp-cart.php:974 includes/common/class-mp-cart.php:1354 +#: includes/common/template-functions.php:918 +msgid "Checkout" +msgstr "" + +#: includes/common/template-functions.php:207 +msgid "Check Order Status" +msgstr "" + +#: includes/common/template-functions.php:235 +msgid "View Products" +msgstr "" + +#: includes/common/template-functions.php:263 +msgid "Visit Store" +msgstr "" + +#: includes/common/template-functions.php:2912 +#: includes/multisite/template-functions.php:448 +msgid "Order By" +msgstr "" + +#: includes/common/template-functions.php:2887 +#: includes/multisite/template-functions.php:405 +msgid "Price (High to Low)" +msgstr "" + +#: includes/common/template-functions.php:2886 +#: includes/multisite/template-functions.php:404 +msgid "Price (Low to High)" +msgstr "" + +#: includes/common/template-functions.php:2881 +#: includes/multisite/template-functions.php:399 +msgid "Default" +msgstr "" + +#: includes/common/template-functions.php:2858 +msgid "Show All" +msgstr "" + +#: includes/common/class-mp-product.php:2048 +msgid "View Larger Image »" +msgstr "" + +#: includes/common/class-mp-product.php:979 +msgid "Out of Stock" +msgstr "" + +#: includes/common/template-functions.php:148 +msgid "Price: " +msgstr "" + +#: includes/multisite/template-functions.php:833 +msgid "No Tags" +msgstr "" + +#: includes/common/template-functions.php:3162 +msgid "Uncategorized" +msgstr "" + +#: includes/common/class-mp-cart.php:569 includes/common/class-mp-order.php:604 +#: includes/common/helpers.php:115 +msgid "Download" +msgstr "" + +#: includes/common/class-mp-cart.php:1353 +msgid "Empty Cart" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:291 +#: includes/common/payment-gateways/paypal-express.php:718 +#: includes/common/payment-gateways/paypal-payflow.php:423 +#: includes/common/shipping-modules/mp-ups.php:158 +#: includes/public/class-mp-checkout.php:1254 +#: includes/public/class-mp-checkout.php:1383 +msgid "Password" +msgstr "" + +#: includes/common/payment-gateways/eway.php:387 +#: includes/common/payment-gateways/paypal-express.php:711 +#: includes/common/shipping-modules/mp-usps.php:185 +#: includes/public/class-mp-checkout.php:1249 +msgid "Username" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:437 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:790 +msgid "Have a coupon code?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:321 +#: includes/admin/class-mp-orders-admin.php:526 +#: includes/common/class-mp-cart.php:592 +msgid "Remove" +msgstr "" + +#: includes/admin/class-mp-ajax.php:316 +msgid "Quantity:" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2140 +#: includes/admin/class-mp-products-admin.php:2387 +#: includes/common/shipping-modules/class-mp-shipping-api.php:507 +msgid "Extra Shipping Cost" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:403 +msgid "Choose a Shipping Method:" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1691 +#: includes/admin/class-mp-products-admin.php:2131 +#: includes/admin/class-mp-products-admin.php:2378 +#: includes/common/shipping-modules/class-mp-shipping-api.php:228 +msgid "Ounces" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1684 +#: includes/admin/class-mp-products-admin.php:2123 +#: includes/admin/class-mp-products-admin.php:2369 +#: includes/admin/class-mp-setup-wizard.php:546 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:165 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +#: includes/common/shipping-modules/class-mp-shipping-api.php:227 +msgid "Pounds" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:226 +msgid "Product Weight:" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:214 +msgid "Weight (Kilograms)" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:82 +msgid "Number of Categories:" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:72 +msgid "Product Count" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:20 +#: includes/admin/class-mp-product-attributes-admin.php:129 +#: includes/admin/class-mp-product-attributes-list-table.php:22 +#: includes/admin/class-mp-products-admin.php:2216 +#: includes/admin/class-mp-shortcode-builder.php:628 +#: includes/admin/class-mp-shortcode-builder.php:1415 +#: includes/admin/widgets/ms-global-categories.php:70 +#: includes/common/shipping-modules/mp-fedex.php:395 +#: includes/common/shipping-modules/mp-ups.php:202 +#: includes/common/shipping-modules/mp-usps.php:243 +#: includes/public/class-mp-checkout.php:314 +msgid "Name" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:67 +msgid "Order Categories By:" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:24 +#: includes/admin/widgets/ms-global-categories.php:50 +msgid "Global Product Categories" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:15 +msgid "Global Product Category List" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:13 +msgid "Displays a network-wide HTML list of product categories from network MarketPress stores." +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:24 +#: includes/admin/widgets/ms-global-tag-cloud.php:45 +msgid "Global Product Tags" +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:15 +msgid "Global Product Tag Cloud" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:947 +#: includes/admin/widgets/ms-global-product-list.php:173 +msgid "Excerpt" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:169 +msgid "Content To Show:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:140 +msgid "Limit To Product Tag:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:132 +msgid "Limit To Product Category:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:72 +msgid "Global Products" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:16 +msgid "Global Product List" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:14 +msgid "Shows a customizable global list of products from network MarketPress stores." +msgstr "" + +#: includes/common/class-mp-product.php:974 +#: includes/multisite/template-functions.php:731 +msgid "Buy Now »" +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:13 +msgid "Displays global most used product tags in cloud format from network MarketPress stores." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:438 +msgid "Theme Permissions" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:402 +#: includes/multisite/class-mp-admin-multisite.php:448 +msgid "No Access" +msgstr "" + +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:120 +msgid "Pro Site Level" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:401 +#: includes/multisite/class-mp-admin-multisite.php:447 +msgid "All Can Use" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:390 +msgid "Gateway Permissions" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:375 +msgid "Select a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:350 +msgid "Global Gateway" +msgstr "" + +#. Plugin Name of the plugin/theme +msgid "MarketPress" +msgstr "" + +#: includes/admin/widgets/product-tag-cloud.php:7 +msgid "Your most used product tags in cloud format from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/categories.php:79 +msgid "Show hierarchy" +msgstr "" + +#: includes/admin/widgets/categories.php:76 +#: includes/admin/widgets/ms-global-categories.php:92 +msgid "Show product counts" +msgstr "" + +#: includes/admin/widgets/categories.php:73 +msgid "Show as dropdown" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:710 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:736 +#: includes/admin/widgets/categories.php:30 +msgid "Select Category" +msgstr "" + +#: includes/admin/widgets/categories.php:7 +msgid "A list or dropdown of product categories from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/product-list.php:250 +msgid "Show Buy Button" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:183 +#: includes/admin/widgets/product-list.php:244 +msgid "Show Price" +msgstr "" + +#: includes/admin/widgets/product-list.php:241 +msgid "Show Excerpt" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:155 +#: includes/admin/widgets/product-list.php:238 +msgid "Thumbnail Size:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:153 +#: includes/admin/widgets/product-list.php:237 +msgid "Show Thumbnail" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:147 +#: includes/admin/widgets/product-list.php:233 +msgid "Display Settings" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:136 +#: includes/admin/widgets/ms-global-product-list.php:144 +#: includes/admin/widgets/product-list.php:230 +msgid "Enter the Slug" +msgstr "" + +#: includes/admin/widgets/product-list.php:228 +#: includes/common/template-functions.php:894 +msgid "Tag" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:686 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:712 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:739 +#: includes/admin/class-mp-shortcode-builder.php:796 +#: includes/admin/widgets/product-list.php:227 +#: includes/common/template-functions.php:886 +#: includes/common/template-functions.php:2907 +msgid "Category" +msgstr "" + +#: includes/admin/widgets/product-list.php:226 +msgid "No Filter" +msgstr "" + +#: includes/admin/widgets/product-list.php:224 +msgid "Taxonomy Filter:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:108 +#: includes/admin/widgets/product-list.php:209 +msgid "Order Products By:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:101 +#: includes/admin/widgets/product-list.php:206 +msgid "Number of Products:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:98 +#: includes/admin/widgets/product-list.php:204 +msgid "List Settings" +msgstr "" + +#: includes/admin/widgets/product-list.php:177 +msgid "Our Products" +msgstr "" + +#: includes/admin/widgets/product-list.php:144 +#: includes/common/template-functions.php:2070 +#: includes/common/template-functions.php:2347 +#: includes/multisite/template-functions.php:303 +#: includes/multisite/template-functions.php:623 +msgid "No Products" +msgstr "" + +#: includes/admin/widgets/product-list.php:8 +msgid "Product List" +msgstr "" + +#: includes/admin/widgets/product-list.php:7 +msgid "Shows a customizable list of products from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/cart.php:75 includes/admin/widgets/categories.php:82 +#: includes/admin/widgets/product-list.php:253 +#: includes/admin/widgets/product-tag-cloud.php:57 +msgid "Only show on store pages" +msgstr "" + +#: includes/admin/widgets/cart.php:65 +#: includes/admin/widgets/ms-global-product-list.php:92 +#: includes/admin/widgets/product-list.php:200 +msgid "Custom Text:" +msgstr "" + +#: includes/admin/widgets/cart.php:64 includes/admin/widgets/categories.php:69 +#: includes/admin/widgets/ms-global-categories.php:59 +#: includes/admin/widgets/ms-global-product-list.php:87 +#: includes/admin/widgets/ms-global-tag-cloud.php:49 +#: includes/admin/widgets/product-list.php:199 +#: includes/admin/widgets/product-tag-cloud.php:49 +msgid "Title:" +msgstr "" + +#: includes/admin/widgets/cart.php:7 +msgid "Shows dynamic shopping cart contents along with a checkout button for your MarketPress store." +msgstr "" + +#: includes/admin/widgets/product-tag-cloud.php:8 +msgid "Product Tag Cloud" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:539 +#: includes/admin/class-mp-setup-wizard.php:575 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:163 +msgid "Measurement System" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:616 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:149 +msgid "Select Shipping Options" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:596 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:129 +msgid "Calculated Options" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:582 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:115 +msgid "No Shipping" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:110 +msgid "EU" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:109 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:93 +msgid "All" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:92 +msgid "Select:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:185 +msgid "Store Pages" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:223 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:256 +msgid "Order Shipped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:60 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:95 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:128 +#: marketpress.php:266 +msgid "New Order" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:314 +msgid "Email Notifications" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:59 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:200 +msgid "Products List" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:58 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:190 +msgid "Store Base" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:108 +#: includes/admin/class-mp-shortcode-builder.php:635 +#: includes/admin/class-mp-shortcode-builder.php:708 +#: includes/admin/class-mp-shortcode-builder.php:875 +#: includes/admin/class-mp-shortcode-builder.php:1319 +#: includes/admin/class-mp-shortcode-builder.php:1422 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:526 +#: includes/admin/widgets/ms-global-categories.php:78 +#: includes/admin/widgets/ms-global-product-list.php:127 +#: includes/admin/widgets/product-list.php:221 +msgid "Ascending" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:109 +#: includes/admin/class-mp-shortcode-builder.php:636 +#: includes/admin/class-mp-shortcode-builder.php:709 +#: includes/admin/class-mp-shortcode-builder.php:876 +#: includes/admin/class-mp-shortcode-builder.php:1320 +#: includes/admin/class-mp-shortcode-builder.php:1423 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:525 +#: includes/admin/widgets/ms-global-categories.php:75 +#: includes/admin/widgets/ms-global-product-list.php:124 +#: includes/admin/widgets/product-list.php:220 +msgid "Descending" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:637 +#: includes/admin/class-mp-shortcode-builder.php:695 +#: includes/admin/class-mp-shortcode-builder.php:862 +#: includes/admin/class-mp-shortcode-builder.php:1306 +#: includes/admin/class-mp-shortcode-builder.php:1424 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:518 +#: includes/admin/widgets/ms-global-product-list.php:121 +#: includes/admin/widgets/product-list.php:218 +msgid "Random" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:694 +#: includes/admin/class-mp-shortcode-builder.php:861 +#: includes/admin/class-mp-shortcode-builder.php:1305 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:517 +#: includes/admin/widgets/ms-global-product-list.php:119 +#: includes/admin/widgets/product-list.php:216 +msgid "Product Price" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:693 +#: includes/admin/class-mp-shortcode-builder.php:860 +#: includes/admin/class-mp-shortcode-builder.php:1304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:516 +#: includes/admin/widgets/ms-global-product-list.php:117 +#: includes/admin/widgets/product-list.php:215 +msgid "Number of Sales" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:692 +#: includes/admin/class-mp-shortcode-builder.php:859 +#: includes/admin/class-mp-shortcode-builder.php:1303 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:515 +#: includes/admin/widgets/product-list.php:214 +msgid "Product Author" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:691 +#: includes/admin/class-mp-shortcode-builder.php:858 +#: includes/admin/class-mp-shortcode-builder.php:1302 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:514 +#: includes/admin/widgets/product-list.php:213 +msgid "Product ID" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:690 +#: includes/admin/class-mp-shortcode-builder.php:857 +#: includes/admin/class-mp-shortcode-builder.php:1301 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:513 +#: includes/admin/widgets/ms-global-product-list.php:113 +#: includes/admin/widgets/product-list.php:212 +msgid "Publish Date" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:430 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:726 +msgid "Width" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:439 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:735 +msgid "Height" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:88 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:402 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:698 +msgid "Custom" +msgstr "" + +#: includes/common/class-mp-product.php:179 +#: includes/common/class-mp-product.php:992 +#: includes/common/class-mp-product.php:1000 +#: includes/multisite/template-functions.php:579 +msgid "Buy Now" +msgstr "" + +#: includes/common/class-mp-product.php:175 +#: includes/common/class-mp-product.php:990 +#: includes/common/class-mp-product.php:998 +msgid "Add To Cart" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:807 +msgid "Store Style" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1021 +msgid "Edit Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupon.php:580 +#: includes/admin/class-mp-ajax.php:238 +#: includes/admin/class-mp-products-admin.php:1532 +msgid "Unlimited" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1198 +msgid "Remaining Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1197 +msgid "Used" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:752 +#: includes/admin/class-mp-products-admin.php:2343 +msgid "Start Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:598 +msgid "Coupon Code" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:444 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:284 +msgid "Save Changes" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:57 +#: includes/admin/class-mp-shortcode-builder.php:716 +#: includes/admin/class-mp-shortcode-builder.php:727 +#: includes/admin/class-mp-shortcode-builder.php:883 +#: includes/admin/class-mp-shortcode-builder.php:894 +#: includes/admin/class-mp-shortcode-builder.php:946 +#: includes/admin/class-mp-shortcode-builder.php:956 +#: includes/admin/class-mp-shortcode-builder.php:1006 +#: includes/admin/class-mp-shortcode-builder.php:1327 +#: includes/admin/class-mp-shortcode-builder.php:1338 +#: includes/admin/store-settings/class-mp-store-settings-general.php:357 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:270 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:108 +#: includes/admin/widgets/ms-global-product-list.php:172 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:94 +msgid "None" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:352 +msgid "Google Analytics Ecommerce Tracking" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:310 +msgid "This option turns MarketPress into more of a product listing plugin, disabling shopping carts, checkout, and order management. This is useful if you simply want to list items you can buy in a store somewhere else, optionally linking the \"Buy Now\" buttons to an external site. Some examples are a car dealership, or linking to songs/albums in itunes, or linking to products on another site with your own affiliate links." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:304 +msgid "Whether or not customers must be registered and logged in to checkout. (Not recommended: Enabling this can lower conversions)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:258 +msgid "How many times may a customer download a file they have purchased? (It's best to set this higher than one in case they have any problems downloading)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:257 +msgid "Maximum Downloads" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:298 +msgid "This will set the product to draft if inventory of all variations is gone." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:288 +msgid "At what low stock count do you want to be warned for products you have enabled inventory tracking for?" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:208 +#: includes/admin/store-settings/class-mp-store-settings-general.php:287 +msgid "Inventory Warning Threshold" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:282 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:542 +msgid "Miscellaneous Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:429 +#: includes/multisite/class-mp-admin-multisite.php:247 +msgid "Show Decimal in Prices" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:451 +#: includes/admin/store-settings/class-mp-store-settings-general.php:403 +#: includes/multisite/class-mp-admin-multisite.php:221 +msgid "Currency Symbol Position" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:444 +#: includes/admin/store-settings/class-mp-store-settings-general.php:396 +msgid "Store Currency" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:429 +#: includes/admin/store-settings/class-mp-store-settings-general.php:381 +msgid "Currency Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:516 +msgid "Please see your local tax laws. Note if this is enabled and a downloadable only cart, rates will be the default for your base location." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:529 +msgid "Apply Tax to Downloadable Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:498 +msgid "Enabling this option allows you to enter and show all prices inclusive of tax, while still listing the tax total as a line item in shopping carts. Please see your local tax laws." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:497 +msgid "Enter Prices Inclusive of Tax?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:492 +msgid "Please see your local tax laws. Most areas charge tax on shipping fees." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:491 +msgid "Apply Tax To Shipping Fees?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:674 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:565 +#: includes/common/payment-gateways/authorizenet-aim.php:291 +#: includes/common/payment-gateways/authorizenet-aim.php:326 +#: includes/common/payment-gateways/payfast.php:347 +msgid "No" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:675 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:759 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:512 +#: includes/admin/class-mp-setup-wizard.php:518 +#: includes/admin/class-mp-setup-wizard.php:524 +#: includes/admin/class-mp-setup-wizard.php:530 +#: includes/admin/class-mp-setup-wizard.php:564 +#: includes/admin/store-settings/class-mp-store-settings-general.php:232 +#: includes/admin/store-settings/class-mp-store-settings-general.php:299 +#: includes/admin/store-settings/class-mp-store-settings-general.php:305 +#: includes/admin/store-settings/class-mp-store-settings-general.php:311 +#: includes/admin/store-settings/class-mp-store-settings-general.php:317 +#: includes/admin/store-settings/class-mp-store-settings-general.php:328 +#: includes/admin/store-settings/class-mp-store-settings-general.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:341 +#: includes/admin/store-settings/class-mp-store-settings-general.php:348 +#: includes/admin/store-settings/class-mp-store-settings-general.php:367 +#: includes/admin/store-settings/class-mp-store-settings-general.php:493 +#: includes/admin/store-settings/class-mp-store-settings-general.php:499 +#: includes/admin/store-settings/class-mp-store-settings-general.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:556 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:375 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:381 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:387 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:474 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:493 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:532 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:574 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:606 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:664 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:670 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:677 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:683 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:689 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:763 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:774 +#: includes/common/payment-gateways/_bitpay.php:250 +#: includes/common/payment-gateways/_bitpay.php:257 +#: includes/common/payment-gateways/_bitpay.php:264 +#: includes/common/payment-gateways/authorizenet-aim.php:290 +#: includes/common/payment-gateways/authorizenet-aim.php:325 +#: includes/common/payment-gateways/free_orders.php:160 +#: includes/common/payment-gateways/payfast.php:346 +#: includes/common/payment-gateways/paymill.php:162 +#: includes/common/payment-gateways/paypal-payflow.php:441 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-checkbox.php:22 +msgid "Yes" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:492 +#: includes/admin/store-settings/class-mp-store-settings-general.php:472 +msgid "%s Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:467 +#: includes/admin/store-settings/class-mp-store-settings-general.php:449 +msgid "Tax Settings" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:370 +#: includes/admin/store-settings/class-mp-store-settings-general.php:624 +msgid "Base Zip/Postal Code" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:354 +#: includes/admin/store-settings/class-mp-store-settings-general.php:608 +msgid "Base State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:589 +msgid "Base Country" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:582 +msgid "Location Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:195 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:800 +#: includes/multisite/class-mp-admin-multisite.php:172 +msgid "General Settings" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1945 +#: includes/admin/class-mp-products-admin.php:2185 +#: includes/admin/class-mp-store-settings-admin.php:111 +#: includes/admin/class-mp-store-settings-admin.php:266 +msgid "General" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:242 +msgid "Importers" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +#: includes/admin/class-mp-store-settings-admin.php:234 +msgid "Payments" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:313 +#: includes/admin/class-mp-store-settings-admin.php:112 +#: includes/admin/class-mp-store-settings-admin.php:222 +msgid "Presentation" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:916 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1015 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1018 +#: includes/admin/class-mp-dashboard-widgets.php:305 marketpress.php:702 +msgid "Coupons" +msgstr "" + +#: includes/admin/class-mp-admin.php:251 +msgid "Download »" +msgstr "" + +#: includes/admin/class-mp-admin.php:245 +#: includes/admin/class-mp-exporter-orders.php:170 +msgid "All Statuses" +msgstr "" + +#: includes/admin/class-mp-admin.php:209 +#: includes/admin/class-mp-exporter-orders.php:150 +#: includes/admin/class-mp-exporter-orders.php:178 +msgid "Export Orders" +msgstr "" + +#: includes/admin/class-mp-admin.php:228 +msgid "Show all dates" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:947 +msgid "Change Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:287 +msgid "Order Notes" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:478 +msgid "Other" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:205 +msgid "Subtotal" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:84 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:87 +#: includes/admin/class-mp-products-admin.php:1737 +#: includes/common/class-mp-cart.php:1409 +#: includes/common/class-mp-product.php:559 +msgid "Quantity" +msgstr "" + +#: includes/common/helpers.php:93 +msgid "Item" +msgstr "" + +#: includes/common/class-mp-order.php:1050 +msgid "Current Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:297 +msgid "Order Actions" +msgstr "" + +#: includes/common/class-mp-product.php:1084 +msgid "More Info »" +msgstr "" + +#: includes/common/class-mp-product.php:2313 +msgid "Low Product Inventory Notification" +msgstr "" + +#: includes/common/class-mp-order.php:338 includes/common/data.php:154 +msgid "New Order Notification: ORDERID" +msgstr "" + +#: includes/common/helpers.php:259 +msgid "Your payment for this order is complete." +msgstr "" + +#: includes/common/helpers.php:261 +msgid "Your payment for this order is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/helpers.php:256 +msgid "Payment Total:" +msgstr "" + +#: includes/common/helpers.php:253 +msgid "Transaction ID:" +msgstr "" + +#: includes/common/helpers.php:249 +msgid "Payment Type:" +msgstr "" + +#: includes/common/helpers.php:246 +msgid "Payment Method:" +msgstr "" + +#: includes/common/helpers.php:242 +msgid "Order Notes:" +msgstr "" + +#: includes/common/helpers.php:237 +msgid "Special Instructions:" +msgstr "" + +#: includes/common/helpers.php:232 +msgid "Tracking Number:" +msgstr "" + +#: includes/common/helpers.php:223 includes/common/helpers.php:226 +#: includes/common/helpers.php:228 +#: includes/common/shipping-modules/class-mp-shipping-api.php:406 +#: includes/common/shipping-modules/class-mp-shipping-api.php:428 +msgid "Shipping Method:" +msgstr "" + +#: includes/common/helpers.php:168 +msgid "No shipping required for this order." +msgstr "" + +#: includes/common/helpers.php:155 +msgid "Order Total:" +msgstr "" + +#: includes/common/class-mp-order.php:1025 +msgid "Taxes:" +msgstr "" + +#: includes/common/class-mp-order.php:1032 includes/common/helpers.php:144 +msgid "Shipping:" +msgstr "" + +#: includes/public/class-mp-checkout.php:367 +msgid "Street address, P.O. box, company name, c/o" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:314 +msgid "Shipping Info" +msgstr "" + +#: includes/public/class-mp-public.php:740 +msgid "Whoops, there was a problem loading up this file for your download. Please contact us for help." +msgstr "" + +#: includes/public/class-mp-public.php:683 +msgid "Sorry, our records show you've downloaded this file %d out of %d times allowed. Please contact us if you still need help." +msgstr "" + +#: includes/public/class-mp-public.php:634 +msgid "Sorry, your order has been marked as unpaid." +msgstr "" + +#: includes/public/class-mp-public.php:629 +msgid "Sorry, the link is invalid for this download." +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:15 +#: includes/admin/class-mp-products-admin.php:1172 +msgid "Cheatin’ uh?" +msgstr "" + +#: includes/public/class-mp-public.php:407 +#: includes/public/class-mp-short-codes.php:128 +msgid "Please enter a valid email address." +msgstr "" + +#: includes/admin/class-mp-ajax.php:191 +#: includes/admin/class-mp-products-admin.php:1821 +#: includes/admin/class-mp-products-admin.php:2010 +#: includes/admin/class-mp-products-admin.php:2267 +msgid "File URL" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1842 +msgid "External Link" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2177 +msgid "Add Variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:126 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:289 +msgid "Inventory" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:438 +#: includes/admin/class-mp-products-admin.php:578 +#: includes/admin/class-mp-products-admin.php:1552 +#: includes/admin/class-mp-products-admin.php:2053 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:134 +msgid "Sale Price" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "Variation Name" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1931 +msgid "Product Details" +msgstr "" + +#: includes/admin/class-mp-product-attributes-list-table.php:33 +msgid "Delete" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1057 +msgid "Trashed" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:231 +#: includes/admin/class-mp-orders-admin.php:1015 +#: includes/common/class-mp-order.php:1052 includes/common/helpers.php:97 +msgid "Total" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1196 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:210 +#: includes/admin/class-mp-orders-admin.php:1014 +msgid "Discount" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:221 +#: includes/admin/class-mp-orders-admin.php:1013 +#: includes/common/payment-gateways/_ideal.php:148 +#: includes/common/payment-gateways/_payway.php:134 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:108 +msgid "Tax" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:216 +#: includes/admin/class-mp-orders-admin.php:1012 +#: includes/admin/class-mp-products-admin.php:1958 +#: includes/admin/class-mp-products-admin.php:2198 +#: includes/admin/class-mp-store-settings-admin.php:114 +#: includes/admin/class-mp-store-settings-admin.php:230 +#: includes/common/class-mp-cart.php:717 includes/common/helpers.php:168 +#: includes/common/payment-gateways/_ideal.php:137 +#: includes/common/payment-gateways/_payway.php:116 +#: includes/public/class-mp-checkout.php:1304 +msgid "Shipping" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1011 +msgid "Items" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1010 +msgid "From" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:154 +#: includes/admin/class-mp-orders-admin.php:1009 +#: includes/common/class-mp-gdpr.php:370 +msgid "Order Date" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1008 +#: includes/common/class-mp-gdpr.php:366 +#: includes/common/template-functions.php:2134 +msgid "Order ID" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:22 +#: includes/admin/class-mp-orders-admin.php:1007 +msgid "Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1155 +msgid "N/A" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:243 +#: includes/admin/class-mp-products-admin.php:464 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:142 +msgid "Sales" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:463 +msgid "Stock" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:85 +#: includes/admin/class-mp-ajax.php:176 includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:434 +#: includes/admin/class-mp-products-admin.php:462 +#: includes/admin/class-mp-products-admin.php:576 +#: includes/admin/class-mp-products-admin.php:1519 +#: includes/admin/class-mp-products-admin.php:1569 +#: includes/admin/class-mp-products-admin.php:1950 +#: includes/admin/class-mp-products-admin.php:2059 +#: includes/admin/class-mp-products-admin.php:2190 +#: includes/admin/class-mp-products-admin.php:2330 +#: includes/common/class-mp-cart.php:1415 includes/common/helpers.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:130 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:276 +msgid "Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:173 +#: includes/admin/class-mp-products-admin.php:461 +#: includes/admin/class-mp-products-admin.php:1972 +#: includes/admin/class-mp-products-admin.php:2224 +msgid "SKU" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:459 +#: includes/admin/class-mp-products-admin.php:1793 +#: includes/admin/class-mp-products-admin.php:1805 +#: includes/admin/class-mp-products-admin.php:2163 +msgid "Variations" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:83 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:86 +#: includes/admin/class-mp-dashboard-widgets.php:134 +#: includes/admin/class-mp-products-admin.php:458 +#: includes/admin/class-mp-products-admin.php:837 +#: includes/admin/class-mp-shortcode-builder.php:689 +#: includes/admin/class-mp-shortcode-builder.php:856 +#: includes/admin/class-mp-shortcode-builder.php:1300 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:512 +#: includes/admin/widgets/ms-global-product-list.php:115 +#: includes/admin/widgets/product-list.php:211 +msgid "Product Name" +msgstr "" + +#: includes/common/template-functions.php:2575 +msgid "Categorized in " +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:305 +#: includes/common/payment-gateways/free_orders.php:176 +msgid "Payment Information" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:167 +#: includes/admin/class-mp-orders-admin.php:432 +#: includes/admin/class-mp-pages-admin.php:62 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:227 +#: includes/common/class-mp-gdpr.php:374 +#: includes/common/template-functions.php:175 +#: includes/common/template-functions.php:926 +msgid "Order Status" +msgstr "" + +#. translators: %s: orders closed +#: marketpress.php:327 +msgid "Closed (%s)" +msgid_plural "Closed (%s)" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:249 +#: includes/admin/class-mp-orders-admin.php:375 +#: includes/admin/class-mp-orders-admin.php:951 +#: includes/admin/class-mp-orders-admin.php:1053 +#: includes/admin/class-mp-orders-admin.php:1065 +#: includes/common/class-mp-gdpr.php:330 +#: includes/common/class-mp-order.php:1019 marketpress.php:325 +msgid "Closed" +msgstr "" + +#. translators: %s: shipped orders +#: marketpress.php:320 +msgid "Shipped (%s)" +msgid_plural "Shipped (%s)" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:248 +#: includes/admin/class-mp-orders-admin.php:376 +#: includes/admin/class-mp-orders-admin.php:950 +#: includes/admin/class-mp-orders-admin.php:1049 +#: includes/admin/class-mp-orders-admin.php:1064 +#: includes/common/class-mp-gdpr.php:329 +#: includes/common/class-mp-order.php:1002 marketpress.php:318 +msgid "Shipped" +msgstr "" + +#. translators: %s: paid orders +#: marketpress.php:313 +msgid "Paid (%s)" +msgid_plural "Paid (%s)" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:247 +#: includes/admin/class-mp-orders-admin.php:377 +#: includes/admin/class-mp-orders-admin.php:949 +#: includes/admin/class-mp-orders-admin.php:1045 +#: includes/admin/class-mp-orders-admin.php:1063 +#: includes/common/class-mp-gdpr.php:328 +#: includes/common/payment-gateways/2checkout.php:294 +#: includes/common/payment-gateways/_cubepoints.php:130 +#: includes/common/payment-gateways/authorizenet-aim.php:193 +#: includes/common/payment-gateways/free_orders.php:91 +#: includes/common/payment-gateways/mijireh.php:248 +#: includes/common/payment-gateways/paymill.php:273 +#: includes/common/payment-gateways/paypal-express.php:933 +#: includes/common/payment-gateways/paypal-express.php:967 +#: includes/common/payment-gateways/pin.php:258 +#: includes/common/payment-gateways/simplify.php:181 +#: includes/common/payment-gateways/stripe.php:368 +#: includes/common/payment-gateways/wepay.php:269 marketpress.php:311 +msgid "Paid" +msgstr "" + +#. translators: %s: orders received +#: marketpress.php:306 +msgid "Received (%s)" +msgid_plural "Received (%s)" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:246 +#: includes/admin/class-mp-orders-admin.php:378 +#: includes/admin/class-mp-orders-admin.php:1041 +#: includes/admin/class-mp-orders-admin.php:1062 +#: includes/common/class-mp-gdpr.php:327 includes/common/class-mp-order.php:995 +#: includes/common/payment-gateways/payfast.php:244 marketpress.php:304 +msgid "Received" +msgstr "" + +#: marketpress.php:268 +msgid "Search Orders" +msgstr "" + +#: marketpress.php:267 +msgid "View Order" +msgstr "" + +#: marketpress.php:262 +msgid "Order" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:301 +#: includes/admin/class-mp-orders-admin.php:989 marketpress.php:261 +msgid "Orders" +msgstr "" + +#: marketpress.php:228 +msgid "No Products found in Trash" +msgstr "" + +#: marketpress.php:227 +msgid "No Products Found" +msgstr "" + +#: marketpress.php:226 +msgid "Search Products" +msgstr "" + +#: marketpress.php:225 marketpress.php:229 +msgid "View Product" +msgstr "" + +#: marketpress.php:224 +msgid "New Product" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1022 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:258 +#: marketpress.php:223 +msgid "Edit" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1019 +msgid "Create New" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:687 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:698 +#: marketpress.php:217 +msgid "Product" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:307 +#: includes/common/template-functions.php:173 +#: includes/common/template-functions.php:179 +#: includes/common/template-functions.php:902 +#: includes/multisite/template-functions.php:82 marketpress.php:216 +#: marketpress.php:219 +msgid "Products" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:118 +#: includes/admin/widgets/product-tag-cloud.php:46 +#: includes/multisite/class-mp-admin-multisite.php:548 +msgid "Product Tags" +msgstr "" + +#: includes/common/template-functions.php:2906 +#: includes/multisite/template-functions.php:449 +msgid "Product Category" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:117 +#: includes/admin/widgets/categories.php:8 +#: includes/admin/widgets/categories.php:18 +#: includes/multisite/class-mp-admin-multisite.php:539 +msgid "Product Categories" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:332 +#: includes/common/template-functions.php:872 marketpress.php:218 +msgid "Store" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:60 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:209 +#: includes/admin/widgets/cart.php:8 includes/admin/widgets/cart.php:56 +#: includes/common/template-functions.php:174 +#: includes/common/template-functions.php:811 +msgid "Shopping Cart" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:110 +#: includes/admin/class-mp-store-settings-admin.php:218 +msgid "Store Settings" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:128 marketpress.php:607 +msgid "Settings" +msgstr "" + +#: includes/common/data.php:178 includes/common/data.php:190 +msgid "Your Order Has Been Shipped! (ORDERID)" +msgstr "" + +#: includes/common/data.php:159 includes/common/data.php:166 +#: includes/common/data.php:172 +msgid "Your Order Confirmation (ORDERID)" +msgstr "" + +#: includes/common/data.php:148 +msgid "

    Thank you for your order! We appreciate your business, and please come back often to check out our new products.

    " +msgstr "" + +#: includes/common/data.php:147 +msgid "

    You are almost done! Please do a final review of your order to make sure everything is correct then click the \"Confirm Payment\" button.

    " +msgstr "" + +#: includes/common/data.php:145 +msgid "

    Please enter your shipping information in the form below to proceed with your order.

    " +msgstr "" + +#: includes/common/data.php:143 +msgid "

    If you have any questions about your order please do not hesitate to contact us.

    " +msgstr "" + +#: includes/common/data.php:106 +msgid "tag" +msgstr "" + +#: includes/common/data.php:105 +msgid "category" +msgstr "" + +#: includes/common/data.php:104 +msgid "order-status" +msgstr "" + +#: includes/common/data.php:103 +msgid "shopping-cart" +msgstr "" + +#: includes/common/data.php:102 +msgid "products" +msgstr "" + +#. Translators: change default slugs here +#: includes/common/data.php:101 +msgid "store" +msgstr "" \ No newline at end of file diff --git a/languages/mp-he.mo b/languages/mp-he.mo new file mode 100644 index 0000000000000000000000000000000000000000..57c5f0d8217e871d0e614b0ed11999640ed67c60 GIT binary patch literal 17135 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 IkPkNh2Y4M$;{X5v literal 0 HcmV?d00001 diff --git a/languages/mp-he.po b/languages/mp-he.po new file mode 100644 index 00000000..fedd56c0 --- /dev/null +++ b/languages/mp-he.po @@ -0,0 +1,8954 @@ +# Translation of MarketPress in Hebrew +# This file is distributed under the same license as the MarketPress package. +msgid "" +msgstr "" +"PO-Revision-Date: 2017-10-29 09:37:31+0000\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-Generator: GlotPress/2.3.1\n" +"Language: he_IL\n" +"Project-Id-Version: MarketPress\n" + +#: includes/public/class-mp-checkout.php:1285 +msgid "By clicking this checkbox you allow the website to process your personal data." +msgstr "" + +#: includes/common/class-mp-gdpr.php:382 +msgid "Order Info" +msgstr "" + +#: includes/common/class-mp-gdpr.php:268 +msgid "Shipping Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:267 +msgid "Shipping Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:266 +msgid "Shipping ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:265 +msgid "Shipping State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:264 +msgid "Shipping City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:263 +msgid "Shipping Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:262 +msgid "Shipping Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:261 +msgid "Shipping Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:260 +msgid "Shipping Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:259 +msgid "Shipping Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:258 +msgid "Shipping First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:254 +msgid "Billing Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:253 +msgid "Billing Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:252 +msgid "Billing ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:251 +msgid "Billing State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:250 +msgid "Billing City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:249 +msgid "Billing Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:248 +msgid "Billing Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:247 +msgid "Billing Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:246 +msgid "Billing Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:245 +msgid "Billing Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:244 +msgid "Billing First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:151 +msgid "Orders Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:139 +msgid "Customer Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:100 includes/common/class-mp-gdpr.php:116 +msgid "MarketPress User Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:81 +msgid "" +"In addition to standard WordPress session cookies, this site might be setting an\n" +"\t\t additional cookie to remember your cart settings. This cookie will last for one year." +msgstr "" + +#: includes/common/class-mp-gdpr.php:80 +msgid "Cookies" +msgstr "" + +#: includes/common/class-mp-gdpr.php:77 +msgid "" +"The following information will be collected in order to process orders: your name,\n" +"\t\t username, email address, avatar and profile URLs, address and phone number. This data can be\n" +"\t\t exported and removed." +msgstr "" + +#: includes/common/class-mp-gdpr.php:76 +msgid "Additional data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:71 +msgid "" +"This site might be using third party services and tools to process payments or/and\n" +"\t\t process shipping data when creating orders on the MarketPress store. These services include payment\n" +"\t\t gateways: 2Checkout, Authorize.net AIM, eWay shared payments, eWay Rapid 3.1 Payments, Mijireh,\n" +"\t\t Mollie, Paymill, PayPal, PIN, Simplify Commerce by MasterCard, Stripe and WePay; shipping gateways:\n" +"\t\t Fedex, UPS, USPS." +msgstr "" + +#: includes/common/class-mp-gdpr.php:70 +msgid "Third parties" +msgstr "" + +#: includes/admin/class-mp-admin.php:403 +msgid "Start creating store pages and products for your online shop here." +msgstr "" + +#: includes/admin/class-mp-admin.php:402 +msgid "Create Online Shop" +msgstr "" + +#: includes/admin/class-mp-admin.php:394 +msgid "Run Setup Wizard" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:234 +msgid "If having problems during invoice generation, add define( 'DOMPDF_ENABLE_HTML5PARSER', true ); to the wp-config.php file." +msgstr "" + +#: includes/public/class-mp-checkout.php:723 +msgid "Invalid Email" +msgstr "" + +#: includes/public/class-mp-checkout.php:721 +#: includes/public/class-mp-checkout.php:729 +msgid "This field is required" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:804 +msgid "This option changes the built-in css styles for store pages. For a custom css style, save your css file with the /* MarketPress Style: Your CSS Theme Name Here */ header line in the \"%s\" folder and it will appear in this list so you may select it. You should select \"None\" if you don't wish to use custom CSS styles or if you are using default theme templates or custom theme templates and css to make your own completely unique store design. For more information on custom theme templates click here »." +msgstr "" + +#: includes/public/class-mp-public.php:421 +#: includes/public/class-mp-short-codes.php:142 +msgid "Please enter a value greater than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:420 +#: includes/public/class-mp-short-codes.php:141 +msgid "Please enter a value less than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:419 +#: includes/public/class-mp-short-codes.php:140 +msgid "Please enter a value between {0} and {1}." +msgstr "" + +#: includes/public/class-mp-public.php:418 +#: includes/public/class-mp-short-codes.php:139 +msgid "Please enter a value between {0} and {1} characters long." +msgstr "" + +#: includes/public/class-mp-public.php:417 +#: includes/public/class-mp-short-codes.php:138 +msgid "Please enter at least {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:416 +#: includes/public/class-mp-short-codes.php:137 +msgid "Please enter no more than {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:415 +#: includes/public/class-mp-short-codes.php:136 +msgid "Please enter a value with a valid extension." +msgstr "" + +#: includes/public/class-mp-public.php:414 +#: includes/public/class-mp-short-codes.php:135 +msgid "Please enter the same value again." +msgstr "" + +#: includes/public/class-mp-public.php:413 +#: includes/public/class-mp-short-codes.php:134 +msgid "Please enter a valid credit card number." +msgstr "" + +#: includes/public/class-mp-public.php:412 +#: includes/public/class-mp-short-codes.php:133 +msgid "Please enter only digits." +msgstr "" + +#: includes/public/class-mp-public.php:411 +#: includes/public/class-mp-short-codes.php:132 +msgid "Please enter a valid number." +msgstr "" + +#: includes/public/class-mp-public.php:410 +#: includes/public/class-mp-short-codes.php:131 +msgid "Please enter a valid date (ISO)." +msgstr "" + +#: includes/public/class-mp-public.php:409 +#: includes/public/class-mp-short-codes.php:130 +msgid "Please enter a valid date." +msgstr "" + +#: includes/public/class-mp-public.php:408 +#: includes/public/class-mp-short-codes.php:129 +msgid "Please enter a valid URL." +msgstr "" + +#: includes/public/class-mp-public.php:406 +#: includes/public/class-mp-short-codes.php:127 +msgid "Please fix this field." +msgstr "יש לתקן את השדה הזה." + +#: includes/public/class-mp-checkout.php:1287 +#: includes/public/class-mp-public.php:405 +#: includes/public/class-mp-short-codes.php:126 +msgid "This field is required." +msgstr "השדה הזה חובה." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:810 +msgid "None - Without Special CSS-styles" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:809 +msgid "Default - Using Default CSS-styles" +msgstr "" + +#: marketpress.php:739 +msgid "Enable multiple downloads per product" +msgstr "" + +#: marketpress.php:738 +msgid "Multiple Downloads" +msgstr "" + +#: includes/public/class-mp-checkout.php:715 +msgid "Invalid Zip Code" +msgstr "מיקוד לא תקין" + +#: includes/common/template-functions.php:2126 +msgid "Guest Email" +msgstr "דוא\"ל אורח" + +#: includes/common/payment-gateways/simplify.php:195 +msgid "There was a problem finalizing your purchase. Please re-enter your credit card information and try again" +msgstr "" + +#: includes/common/class-mp-cart.php:565 includes/common/class-mp-order.php:600 +#: includes/common/helpers.php:111 +msgid "Download %1$s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:331 +msgid "Export products to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:328 +msgid "The import process uses the WordPress importer plugin." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:326 +msgid "Import / Export Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:325 +msgid "Export settings to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:324 +msgid "Import configuration" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:320 +msgid "Use the text below to export to a new installation. Or paste in the new configuration to import." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:318 +msgid "Import / Export Settings" +msgstr "" + +#. translators: URL to wp-admin/import.php +#: includes/admin/store-settings/class-mp-store-settings-import.php:266 +msgid "This importer is not installed. Please install importers from the main site." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:261 +msgid "Install Now" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:260 +msgid "Install %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:240 +msgid "Run Importer" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:239 +msgid "Run %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:258 +msgid "Import/Export" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1199 +msgid "Requires Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:737 +msgid "Optionally limit the user to some categories" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:671 +msgid "Should this coupon only be available to logged in users?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:670 +msgid "Require Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:655 +msgid "Mimimum number of products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:653 +msgid "Enter the minimum number of products in the cart that this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:648 +msgid "Can this coupon be limited to a number of products in the cart?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:334 +msgid "Add all values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:265 +msgid "Set as default variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:154 +msgid "Set Default" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:150 +msgid "More Info" +msgstr "פרטים נוספים" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:40 +msgid "MarketPress - Quick Setup" +msgstr "" + +#: includes/public/class-mp-checkout.php:1399 +msgid "Proceed to checkout and create an account at the end." +msgstr "המשך לקופה וצור חשבון בסוף." + +#: includes/public/class-mp-checkout.php:1241 +#: includes/public/class-mp-checkout.php:1245 +msgid "Register account" +msgstr "רישום החשבון
    חשוב מאוד (a-z) ו (0-9) בלבד!" + +#: includes/public/class-mp-checkout.php:1233 +msgid "Register as customer?" +msgstr "להרשמה כלקוח?" + +#: includes/public/class-mp-checkout.php:765 +msgid "

    Oops!

    Looks like you haven't added anything your cart. Let's go shopping!

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:763 +msgid "

    Oops!

    The cart is disabled.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing Information" +msgstr "פרטי המשלם" + +#: includes/multisite/class-mp-admin-multisite.php:214 +msgid "Global Currency" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:198 +msgid "Global Store Currency" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:507 +msgid "There are no shipping services available for this type of package in your location." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:168 +msgid "Using this USPS Shipping calculator requires requesting an Ecommerce API Username and Password. Get your free set of credentials here ». The password is no longer used for the API, just the username which you should enter below. The USPS test site has not yet been updated and currently doesn't work - you should just request activating your credentials with USPS and go live." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:339 +msgid "ZIP Code" +msgstr "מיקוד" + +#: includes/common/payment-gateways/stripe.php:334 +msgid "Last name" +msgstr "שם משפחה" + +#: includes/common/payment-gateways/stripe.php:333 +msgid "First name" +msgstr "שם פרטי" + +#: includes/common/payment-gateways/manual-payments.php:150 +msgid "These are the manual payment instructions to display on the order confirmation screen. TOTAL will be replaced with the order total and ORDERID will be replaced with Order ID." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:240 +msgid "You must login to Authorize.net merchant dashboard to obtain the API login ID and API transaction key. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:327 +msgid "
    1. Set the \"Return Method\" within Site Management to Header Redirect and set the \"Return URL\" to %s
    2. Set your notifications url to %s
    " +msgstr "" + +#: includes/common/data.php:191 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Also, digital downloads included in your order are now ready to be downloaded. Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:185 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order is now available to download! Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:184 +msgid "Your Order Is Ready To Be Downloaded! (ORDERID)" +msgstr "" + +#: includes/common/data.php:179 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:173 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received, your digital goods are ready to be downloaded and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:167 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received and your digital goods are ready to be downloaded. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:160 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +" Your order has been received, and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information: \n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/class-mp-product.php:638 +msgid "You can not add more items to cart." +msgstr "לא ניתן להוסיף פריטים נוספים לעגלה." + +#: includes/common/class-mp-product.php:635 +msgid "You can only add {0} to cart." +msgstr "" + +#: includes/common/class-mp-product.php:625 +msgid "This product has an order limit of %d." +msgstr "" + +#: includes/common/class-mp-order.php:1454 +msgid "Shipped: tracking code: %s" +msgstr "" + +#: includes/common/class-mp-order.php:1000 +#: includes/common/class-mp-order.php:1012 +msgid "Finished" +msgstr "שולם" + +#: includes/common/class-mp-order.php:858 +msgid "Contact Details" +msgstr "פרטי יצירת קשר" + +#: includes/common/class-mp-order.php:339 includes/common/data.php:155 +msgid "" +"A new order (ORDERID) was created in your store:\n" +"\n" +" ORDERINFOSKU\n" +"\n" +" SHIPPINGINFO\n" +"\n" +" PAYMENTINFO\n" +"\n" +msgstr "\n" + +#: includes/common/class-mp-cart.php:1858 +msgid "Add again" +msgstr "" + +#: includes/common/class-mp-cart.php:1852 +msgid "was removed from Shopping Cart" +msgstr "הוסר מעגלת הקניות" + +#: includes/common/class-mp-cart.php:1242 +#: includes/public/class-mp-short-codes.php:160 +msgid "Cart update notice: this item has a limit per order or you have reached the stock limit." +msgstr "" + +#: includes/admin/widgets/product-list.php:235 +msgid "Show Only Featured Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:533 +msgid "If enabled, users won't be able to filter products per category and/or to order by release date/name/price." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:531 +msgid "Hide Products Filter?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:353 +msgid "Notification to registration email instead of billing email?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:322 +msgid "Order Shipped - Mixed orders (with both digital and physical products)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:289 +msgid "Order Shipped - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:224 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:194 +msgid "New Order - Mixed" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:161 +msgid "New Order - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:115 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:243 +msgid "Mixed orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:110 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:238 +msgid "Digital downloads orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:105 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:233 +msgid "Physical orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:96 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed.
    For orders placed with manual payment, emails set here will be overriden by the one configured in manual payments settings, under payments settings page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:89 +msgid "Customer Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:47 +msgid "Admin Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:566 +msgid "Only contact details" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:565 +msgid "Full billing info" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:561 +msgid "Details Collection" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:548 +msgid "Digital Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:515 +msgid "Apply Tax to Digital Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:236 +msgid "product (default)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:231 +msgid "If you are experiencing conflicts with other e-commerce plugins change this setting. This will change the internal post type of all your products. Please note that changing this option may break 3rd party themes or plugins." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1203 +msgid "Hide details" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1202 +msgid "Show all changes" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1184 +msgid "Version %s" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1161 +msgid "Current" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1131 +msgid "%s changelog" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:952 +msgid "We did not find any data for this plugin or theme..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:285 +msgid "Activate WPMU DEV Dashboard" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:279 +msgid "Just one more step - activate the WPMU DEV Dashboard plugin and you're all done!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:277 +msgid "Important updates are available for your WPMU DEV plugins/themes. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:273 +msgid "Just one more step to enable updates and support for %s!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:271 +msgid "Important updates are available for %s. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:264 +msgid "activate" +msgstr "" + +#: includes/admin/class-mp-admin.php:398 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:248 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:289 +msgid "Dismiss" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:247 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:288 +msgid "Saving..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:244 +msgid "Install Plugin" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:238 +msgid "Almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:236 +msgid "Important updates are available for your WPMU DEV plugins/themes. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:232 +msgid "%s is almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:230 +msgid "Important updates are available for %s. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:223 +msgid "install" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1428 +msgid "Sets the number of Tags to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1289 +msgid "How many products to display in the product list if \"paginate\" is set to false." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:739 +#: includes/admin/class-mp-shortcode-builder.php:906 +#: includes/admin/class-mp-shortcode-builder.php:1350 +msgid "Grid" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:735 +#: includes/admin/class-mp-shortcode-builder.php:902 +#: includes/admin/class-mp-shortcode-builder.php:1346 +msgid "Products will be displayed as list or grid." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:206 +msgid "Display a cloud or list of your global product tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:205 +msgid "Display a list of your global categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:204 +msgid "Display a list or grid of your global products." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:181 +msgid "Display a list of featured products." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1451 +msgid "Is Featured?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1444 +msgid "Featured Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:581 +#: includes/admin/class-mp-products-admin.php:1580 +msgid "% discount" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:579 +msgid "OR" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:460 +#: includes/admin/class-mp-products-admin.php:586 +#: includes/admin/widgets/product-list.php:217 +msgid "Featured" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:536 +#: includes/admin/class-mp-orders-admin.php:538 +msgid "Tracking Link" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:508 +msgid "Shipping Tax" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:356 +msgid "Shipping Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:352 +msgid "Taxes Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:349 +msgid "Products Total" +msgstr "סך הכל " + +#: includes/admin/class-mp-ajax.php:366 +msgid "Oops! You entered an invalid username/email and or password." +msgstr "אופס! הזנת שם משתמש / דוא\"ל לא נכונים וסיסמא." + +#: includes/admin/class-mp-ajax.php:254 +msgid "Percentage Discount" +msgstr "" + +#: includes/admin/class-mp-ajax.php:234 +msgid "Limit the Amount of Items per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:214 +msgid "Unused Attributes" +msgstr "" + +#: includes/admin/class-mp-admin.php:82 +msgid "Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-admin.php:79 +msgid "MarketPress setup is not complete! Once you've completed this quick setup wizard you'll have a fully working online store - exciting! " +msgstr "" + +#: marketpress.php:263 +msgctxt "mp_order" +msgid "Add New" +msgstr "" + +#: marketpress.php:184 +msgctxt "product_tag" +msgid "Product Tag" +msgstr "" + +#: marketpress.php:183 +msgctxt "product_tag" +msgid "Product Tags" +msgstr "" + +#: marketpress.php:150 +msgctxt "product_category" +msgid "Product Category" +msgstr "" + +#: marketpress.php:149 +msgctxt "product_category" +msgid "Product Categories" +msgstr "" + +#. Author URI of the plugin/theme +msgid "http://premium.wpmudev.org" +msgstr "" + +#: marketpress.php:729 +msgid "Invoice PDF" +msgstr "" + +#: marketpress.php:712 +msgid "Grant access to themes and gateways depending on the user's Pro Site level" +msgstr "" + +#: marketpress.php:711 +msgid "Pro Sites" +msgstr "" + +#: marketpress.php:703 +msgid "Offer and accept coupon codes" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:687 +msgid "Install %s Pages" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:682 +msgid "Welcome to %s – Install pages required by the plugin automatically." +msgstr "" + +#: marketpress.php:668 +msgid "Your pages were created successfully." +msgstr "" + +#: marketpress.php:436 +msgid "Add a Product" +msgstr "" + +#: marketpress.php:271 +msgid "Parent Order" +msgstr "" + +#: marketpress.php:270 +msgid "No orders found in trash" +msgstr "" + +#: marketpress.php:269 +msgid "No orders found" +msgstr "" + +#: marketpress.php:265 +msgid "Edit Order" +msgstr "" + +#: marketpress.php:264 +msgid "Add New Order" +msgstr "" + +#: marketpress.php:220 marketpress.php:221 +msgid "Add New Product" +msgstr "" + +#: marketpress.php:197 +msgid "No product tags found" +msgstr "" + +#: marketpress.php:196 +msgid "Choose from the most used product tags" +msgstr "" + +#: marketpress.php:195 +msgid "Add or remove product tags" +msgstr "" + +#: marketpress.php:194 +msgid "Separate product tags with commas" +msgstr "" + +#: marketpress.php:193 +msgid "Search Product Tags" +msgstr "" + +#: marketpress.php:192 +msgid "Parent Product Tag:" +msgstr "" + +#: marketpress.php:191 +msgid "Parent Product Tag" +msgstr "" + +#: marketpress.php:190 +msgid "New Product Tag Name" +msgstr "" + +#: marketpress.php:189 +msgid "Add New Product Tag" +msgstr "" + +#: marketpress.php:188 +msgid "Update Product Tag" +msgstr "" + +#: marketpress.php:187 +msgid "View Product Tag" +msgstr "" + +#: marketpress.php:186 +msgid "Edit Product Tag" +msgstr "" + +#: marketpress.php:185 +msgid "All Product Tags" +msgstr "" + +#: marketpress.php:163 +msgid "No product categories found" +msgstr "" + +#: marketpress.php:162 +msgid "Choose from the most used product categories" +msgstr "" + +#: marketpress.php:161 +msgid "Add or remove product categories" +msgstr "" + +#: marketpress.php:160 +msgid "Separate product categories with commas" +msgstr "" + +#: marketpress.php:159 +msgid "Search Product Categories" +msgstr "" + +#: marketpress.php:158 +msgid "Parent Product Category:" +msgstr "" + +#: marketpress.php:157 +msgid "Parent Product Category" +msgstr "" + +#: marketpress.php:156 +msgid "New Product Category Name" +msgstr "" + +#: marketpress.php:155 +msgid "Add New Product Category" +msgstr "" + +#: marketpress.php:154 +msgid "Update Product Category" +msgstr "" + +#: marketpress.php:153 +msgid "View Product Category" +msgstr "" + +#: marketpress.php:152 +msgid "Edit Product Category" +msgstr "" + +#: marketpress.php:151 +msgid "All Product Categories" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Please fix the %s1 and then try submitting the form again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Oops! The form contains %s1 which %s2 been highlighted below." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:660 +msgid "have" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:659 +msgid "has" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:651 +msgid "Value must be less than {0}" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:650 +msgid "Please enter only letters and numbers" +msgstr "נא להזין רק אותיות ומספרים" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:539 +msgid "Due to prolonged inactivity on this page, one or more settings were not saved. Please try again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:535 +msgid "Settings Saved" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-user-select.php:22 +msgid "Select Some Users" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-section.php:18 +msgid "Section Title" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:425 +msgid "Are you sure you want to delete this?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:30 +msgid "Add Row" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-post-select.php:24 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-taxonomy-select.php:22 +msgid "Select Posts" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:210 +msgid "Add Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:129 +msgid "Select the image that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:93 +msgid "Select image(s) that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:79 +msgid "Select the image that you would like to use for this variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:48 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:82 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:68 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:132 +msgid "Select Image" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:31 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:160 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:168 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:19 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:115 +msgid "Select File" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:30 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:18 +msgid "Select the file that you would like to use." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:357 +msgid "Create Variations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:356 +msgid "Add Another Variant" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Insert a value and press ENTER" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "(e.g. White, Grey, Red etc.)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Variation Values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:333 +msgid "Or create new variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "(e.g. Color)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:303 +msgid "You are about to delete selected variants.
    If you want to continue please confirm." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:302 +msgid "Confirmation" +msgstr "אישור" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:290 +msgid "Insert quantity available. Empty for unlimited." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:281 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:294 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:307 +msgid "Cancel" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:280 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:293 +msgid "Update" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:277 +msgid "Insert the price i.e. 25 or 25.50" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:115 +msgid "Img." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:85 +msgid "Add New Variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:79 +msgid "Delete Variants" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:78 +msgid "Update Prices" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:77 +msgid "Update Inventory" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:76 +msgid "Update Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:75 +msgid "Bulk Actions" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:73 +msgid "Select bulk action" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:196 +msgid "Configure Store" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:195 +msgid "Configure shipping rates, emails and your store's appearance. " +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:190 +msgid "Add Product" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:189 +msgid "Add your first product for sale and get familiar with adding products." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:184 +msgid "Your store is almost ready for its first customers, but first it needs some products. Get started by adding products below, or jump straight into further configuring your store’s settings." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:183 +msgid "Woohoo! Your online store is up and running." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:160 +msgid "Finish Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:124 +msgid "And what metric system do you want to use?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:113 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:142 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:159 +msgid "Back" +msgstr "חזרה" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:109 +msgid "Do you want to apply tax for your products? You can customize this for each product and variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:105 +msgid "What currency do you want to sell with?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:93 +msgid "And, which countries do you want to sell to?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:89 +msgid "Where is your online store based?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:80 +msgid "Payment Gateway" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:79 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:123 +msgid "Metric System" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:78 +msgid "Currency & Tax" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:77 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:88 +msgid "Locations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:70 +msgid "Choose where you want to sell your stuff and what currency. Easy!" +msgstr "" + +#: includes/public/class-mp-checkout.php:1400 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:58 +msgid "Continue" +msgstr "המשך" + +#: includes/admin/class-mp-admin.php:83 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:53 +msgid "Skip this step, I'll do this manually" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:49 +msgid "Install store pages" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:44 +msgid "Once you've completed this quick setup wizard you'll have a fully working online store - exciting! Start
    by creating the default store pages for the online store such as the cart, checkout and store pages." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:42 +msgid "MarketPress adds a full online store to your website, with heaps of configuration options and addons
    to suit your needs. It's really easy to get going, and only takes a few minutes to setup!" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:41 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:69 +msgid "Welcome to MarketPress - Quick Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-advanced-select.php:23 +msgid "Select Some Options" +msgstr "" + +#: includes/wpmudev-metaboxes/class-wpmudev-field.php:694 +msgid "You must the WPMUDEV_Field::display() method in your form field class" +msgstr "" + +#: includes/public/class-mp-short-codes.php:636 +msgid "Only %s left in stock..." +msgstr "" + +#: includes/public/class-mp-short-codes.php:633 +msgid "Unlimited stock" +msgstr "" + +#: includes/public/class-mp-short-codes.php:430 +msgid "product_id must be defined" +msgstr "" + +#: includes/public/class-mp-checkout.php:1250 +msgid "An account with this username already exists" +msgstr "כבר קיים חשבון עם שם משתמש זה" + +#: includes/public/class-mp-checkout.php:1394 +msgid "Continue as Guest" +msgstr "להמשיך כאורח" + +#: includes/public/class-mp-checkout.php:1393 +msgid "Proceed to checkout and you'll have an opportunity to create an account at the end." +msgstr "המשך לקופה ותהיה לך הזדמנות ליצור חשבון בסוף." + +#: includes/public/class-mp-checkout.php:1392 +#: includes/public/class-mp-checkout.php:1398 +msgid "First-time customer?" +msgstr "לקוח בפעם הראשונה?" + +#: includes/public/class-mp-checkout.php:1386 +msgid "Login" +msgstr "התחברות" + +#: includes/public/class-mp-checkout.php:1379 +msgid "E-Mail Address/Username" +msgstr "כתובת דוא\"ל / שם משתמש" + +#: includes/public/class-mp-checkout.php:1377 +msgid "Sign in to speed up the checkout process." +msgstr "יש להתחבר בכדי להאיץ את התהליך" + +#: includes/public/class-mp-checkout.php:1376 +msgid "Have an account?" +msgstr "יש לך חשבון?" + +#: includes/public/class-mp-checkout.php:1297 +msgid "Shipping address different than billing?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1184 +msgid "There are no available gateways to process this payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1160 +msgid "Payment" +msgstr "תשלום" + +#: includes/public/class-mp-checkout.php:1123 +msgid "Oops! An error occurred while processing your payment." +msgstr "אופס! אירעה שגיאה במהלך התשלום." + +#: includes/public/class-mp-checkout.php:1051 +msgid "Next Step »" +msgstr "לשלב הבא »" + +#: includes/public/class-mp-checkout.php:1045 +msgid "« Previous Step" +msgstr "« לשלב הקודם" + +#: includes/public/class-mp-checkout.php:873 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:657 +msgid "error" +msgstr "שגיאה" + +#: includes/public/class-mp-checkout.php:872 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:658 +msgid "errors" +msgstr "שגיעות " + +#: includes/public/class-mp-checkout.php:871 +msgid "

    Oops! We found %d %s in the form below.

    Fields that have errors are highlighted in red below. Entering into a field will reveal the actual error that occurred.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:870 +msgid "Please enter a valid first and last name" +msgstr "" + +#: includes/public/class-mp-checkout.php:869 +msgid " Please enter a valid card security code" +msgstr "" + +#: includes/public/class-mp-checkout.php:868 +msgid "Please enter a valid card expiration" +msgstr "" + +#: includes/public/class-mp-checkout.php:773 +msgid "Javascript is required in order to checkout. Please enable Javascript in your browser and then refresh this page." +msgstr "" + +#: includes/public/class-mp-checkout.php:588 +msgid "An unknown error occurred. Please try again." +msgstr "" + +#: includes/public/class-mp-checkout.php:386 +msgid "Town/City" +msgstr "" + +#: includes/public/class-mp-checkout.php:380 +msgid "Apartment, suite, unit, building, floor, etc" +msgstr "" + +#: includes/public/class-mp-checkout.php:376 +msgid "Address Line 2" +msgstr "" + +#: includes/public/class-mp-checkout.php:363 +msgid "Address Line 1" +msgstr "" + +#: includes/common/class-mp-order.php:770 +#: includes/public/class-mp-checkout.php:354 +msgid "Company" +msgstr "חברה" + +#: includes/public/class-mp-checkout.php:330 +msgid "Last" +msgstr "משפחה" + +#: includes/public/class-mp-checkout.php:321 +msgid "First" +msgstr "פרטי" + +#: includes/public/class-mp-checkout.php:284 +msgid "State/Province" +msgstr "" + +#: includes/public/class-mp-checkout.php:83 +msgid "Review Order/Payment" +msgstr "בדיקת הזמנה / תשלום" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing/Shipping Address" +msgstr "" + +#: includes/public/class-mp-checkout.php:80 +msgid "Login/Register" +msgstr "כניסה / הרשמה" + +#: includes/multisite/class-mp-admin-multisite.php:530 +msgid "Marketplace" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:523 +msgid "Global Marketplace Pages" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +msgid "Store Network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +#: includes/multisite/class-mp-admin-multisite.php:494 +msgid "Store Network Settings" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:440 +msgid "Set theme access permissions for network stores. For a custom css theme, save your css file with the MarketPress Theme: NAME header in the /marketpress/ui/themes/ folder and it will appear in this list so you may select it." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:361 +msgid "Choose a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:336 +msgid "%d products get indexed" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:285 +msgid "Product Indexer" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:281 +msgid "Please hold on..." +msgstr "בבקשה להמתין..." + +#: includes/multisite/class-mp-admin-multisite.php:280 +msgid "Index Products" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:279 +msgid "%d products have been indexed in whole network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:182 +msgid "Enable Global Shopping Cart?" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:178 +msgid "Limit Global Widgets/Shortcodes To Main Blog?" +msgstr "" + +#: includes/common/template-functions.php:2802 +#: includes/multisite/template-functions.php:355 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:97 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:114 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:143 +msgid "Next" +msgstr "הבא" + +#: includes/common/template-functions.php:2801 +#: includes/multisite/template-functions.php:354 +msgid "Prev" +msgstr "הקודם" + +#: includes/common/template-functions.php:2597 +msgid "Tagged in " +msgstr "" + +#: includes/common/template-functions.php:2196 +#: includes/common/template-functions.php:2202 +#: includes/common/template-functions.php:2214 +#: includes/common/template-functions.php:2217 +msgid "Oops! We couldn't locate any orders matching that order number. Please verify the order number and try again." +msgstr "אופס! לא הצלחנו לאתר הזמנה תואמת למספר ההזמנה. יש לאמת את מספר ההזמנה ולנסות שוב." + +#: includes/common/template-functions.php:2138 +msgid "Look Up" +msgstr "חפש" + +#: includes/common/template-functions.php:1423 +msgid "Please choose a shipping method" +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "If you have your order ID you can look it up using the form below." +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "Order Search" +msgstr "חיפוש הזמנה" + +#: includes/common/template-functions.php:910 +#: includes/public/class-mp-checkout.php:1440 +msgid "Cart" +msgstr "עגלה" + +#: includes/common/template-functions.php:895 +msgid "[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:887 +msgid "[mp_global_categories_list]" +msgstr "" + +#: includes/common/template-functions.php:880 +msgid "" +"Welcome to our market place!\n" +"\n" +"Check out our network of products:\n" +"\n" +"[mp_list_global_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_global_categories_list]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:879 +msgid "Global Store" +msgstr "" + +#: includes/common/template-functions.php:873 +msgid "" +"Welcome to our online store! Feel free to browse around:\n" +"\n" +"[mp_store_navigation]\n" +"\n" +"Check out our most popular products:\n" +"\n" +"[mp_popular_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_list_categories]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_tag_cloud]" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:127 +msgid "If cart weight is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:126 +msgid "Cart Weight" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:222 +msgid "Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:206 +msgid "Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:196 +msgid "Retail Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:195 +msgid "Online Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:193 +msgid "Rates Request Type" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:189 +msgid "Maximum Weight Per Package" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:195 +#: includes/common/shipping-modules/mp-usps.php:236 +msgid "Enter your standard box sizes as LengthxWidthxHeight (e.g. 12x8x6) For each box defined enter the maximum weight it can contain. Note: the shipping prices this plugin calculates are estimates. If they are consistently too low or too high, please check that the list of boxes above and the product weights are accurate and complete." +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:187 +msgid "Handling Charge Per Box Shipped" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:176 +#: includes/common/shipping-modules/mp-ups.php:181 +msgid "Offered Services" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:165 +msgid "Shipper Number" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:151 +msgid "User ID" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:144 +msgid "Developer Kit Access Key" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:140 +msgid "Use Sandbox Mode?" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:123 +msgid "In order to use UPS, you will need a UPS Developer Kit access key and the UPS user ID and password associated with the access key. Set these up for free here. If this information is missing or incorrect, an error will appear during the checkout process and the buyer will not be able to complete the transaction." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:112 +msgid "If cart total is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:111 +msgid "Cart Total" +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:95 +#: includes/common/shipping-modules/mp-weight-rate.php:111 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Don't worry about sorting as this will be done automatically upon saving." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:170 +msgid "Method Title (visible for clients)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:409 +#: includes/common/shipping-modules/mp-ups.php:216 +#: includes/common/shipping-modules/mp-usps.php:251 +msgid "Max Weight (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:402 +#: includes/common/shipping-modules/mp-ups.php:209 +#: includes/common/shipping-modules/mp-usps.php:247 +msgid "Size (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:387 +msgid "Enter your standard box sizes as LengthxWidthxHeight ( 12x8x6 ) For each box defined enter the maximum weight it can contain. Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:361 +#: includes/common/shipping-modules/mp-usps.php:229 +msgid "Handling Charge per International Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:353 +msgid "International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:339 +#: includes/common/shipping-modules/mp-usps.php:213 +msgid "Handling Charge per Domestic Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:331 +msgid "Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:321 +msgid "When checked the customer can chose Residential or Commercial delivery with Residential the default. Unchecked it's only Residential rates." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:320 +msgid "Allow Commercial Delivery?" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:315 +msgid "Fedex 10kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:314 +msgid "Fedex 25kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:313 +msgid "Fedex Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:312 +msgid "Fedex Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:311 +msgid "Fedex Pak" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:310 +msgid "Fedex Tube" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:306 +msgid "Default Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:294 +msgid "Dropoff Type" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:290 +msgid "Meter ID" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:134 +msgid "This is a residential address" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:283 +msgid "There was an error processing your card: \"%s\". Please check your credit card info and try again." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:121 +msgid "Wepay makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept cards directly on your site. You don't need a merchant account or gateway. WePay handles everything including storing cards. Credit cards go directly to WePay's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:385 +msgid "There was an error processing your card - \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:356 +msgid "%s Store Purchase - Order ID - %s, Email - %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:251 +msgid "Stripe makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept Visa, MasterCard, American Express, Discover, JCB, and Diners Club cards directly on your site. You don't need a merchant account or gateway. Stripe handles everything, including storing cards, subscriptions, and direct payouts to your bank account. Credit cards go directly to Stripe's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:192 +msgid "ZMW - Zambian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:191 +msgid "ZAR - South African Rand" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:190 +msgid "YER - Yemeni Rial" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:189 +msgid "XPF - Cfp Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:188 +msgid "XOF - West African Cfa Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:187 +msgid "XCD - East Caribbean Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:186 +msgid "XAF - Central African Cfa Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:185 +msgid "WST - Samoan Tala" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:184 +msgid "VUV - Vanuatu Vatu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:183 +msgid "VND - Vietnamese Đồng" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:182 +msgid "VEF - Venezuelan Bolívar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:181 +msgid "UZS - Uzbekistani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:180 +msgid "UYI - Uruguayan Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:178 +msgid "UGX - Ugandan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:177 +msgid "UAH - Ukrainian Hryvnia" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:176 +msgid "TZS - Tanzanian Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:175 +msgid "TWD - New Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:174 +msgid "TTD - Trinidad and Tobago Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:172 +msgid "TOP - Tongan Paʻanga" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:171 +msgid "TJS - Tajikistani Somoni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:169 +msgid "SZL - Swazi Lilangeni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:168 +msgid "SVC - Salvadoran Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:167 +msgid "STD - São Tomé and Príncipe Dobra" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:166 +msgid "SRD - Surinamese Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:165 +msgid "SOS - Somali Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:164 +msgid "SLL - Sierra Leonean Leone" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:163 +msgid "SHP - Saint Helenian Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:160 +msgid "SCR - Seychellois Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:159 +msgid "SBD - Solomon Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:157 +msgid "RWF - Rwandan Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:156 +msgid "RUB - Russian Ruble" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:155 +msgid "RSD - Serbian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:154 +msgid "RON - Romanian Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:153 +msgid "QAR - Qatari Riyal" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:152 +msgid "PYG - Paraguayan Guaraní*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:151 +msgid "PLN - Polish Złoty" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:150 +msgid "PKR - Pakistani Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:149 +msgid "PHP - Philippine Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:148 +msgid "PGK - Papua New Guinean Kina" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:147 +msgid "PEN - Peruvian Nuevo Sol*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:146 +msgid "PAB - Panamanian Balboa*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:144 +msgid "NPR - Nepalese Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:142 +msgid "NIO - Nicaraguan Córdoba*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:141 +msgid "NGN - Nigerian Naira" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:140 +msgid "NAD - Namibian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:139 +msgid "MZN - Mozambican Metical" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:137 +msgid "MXN - Mexican Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:136 +msgid "MWK - Malawian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:135 +msgid "MVR - Maldivian Rufiyaa" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:134 +msgid "MUR - Mauritian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:133 +msgid "MRO - Mauritanian Ouguiya" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:132 +msgid "MOP - Macanese Pataca" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:131 +msgid "MNT - Mongolian Tögrög" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:130 +msgid "MKD - Macedonian Denar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:129 +msgid "MGA - Malagasy Ariary" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:128 +msgid "MDL - Moldovan Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:126 +msgid "LVL - Latvian Lats" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:124 +msgid "LSL - Lesotho Loti" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:123 +msgid "LRD - Liberian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:122 +msgid "LKR - Sri Lankan Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:121 +msgid "LBP - Lebanese Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:120 +msgid "LAK - Lao Kip*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:119 +msgid "KZT - Kazakhstani Tenge" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:118 +msgid "KYD - Cayman Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:117 +msgid "KRW - South Korean Won" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:116 +msgid "KMF - Comorian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:115 +msgid "KHR - Cambodian Riel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:114 +msgid "KGS - Kyrgyzstani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:113 +msgid "KES - Kenyan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:111 +msgid "JMD - Jamaican Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:110 +msgid "ISK - Icelandic Króna" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:109 +msgid "INR - Indian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:108 +msgid "ILS - Israeli New Sheqel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:107 +msgid "IDR - Indonesian Rupiah" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:105 +msgid "HTG - Haitian Gourde" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:103 +msgid "HNL - Honduran Lempira*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:101 +msgid "GYD - Guyanese Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:100 +msgid "GTQ - Guatemalan Quetzal*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:99 +msgid "GNF - Guinean Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:98 +msgid "GMD - Gambian Dalasi" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:97 +msgid "GIP - Gibraltar Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:96 +msgid "GEL - Georgian Lari" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:94 +msgid "FKP - Falkland Islands Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:93 +msgid "FJD - Fijian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:91 +msgid "ETB - Ethiopian Birr" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:90 +msgid "EGP - Egyptian Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:89 +msgid "EEK - Estonian Kroon*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:88 +msgid "DZD - Algerian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:87 +msgid "DOP - Dominican Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:85 +msgid "DJF - Djiboutian Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:84 +msgid "CZK - Czech Koruna*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:83 +msgid "CVE - Cape Verdean Escudo*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:82 +msgid "CRC - Costa Rican Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:81 +msgid "COP - Colombian Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:80 +msgid "CNY - Chinese Renminbi Yuan" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:79 +msgid "CLP - Chilean Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:77 +msgid "CDF - Congolese Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:76 +msgid "CAD - Canadian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:75 +msgid "BZD - Belize Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:74 +msgid "BWP - Botswana Pula" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:73 +msgid "BSD - Bahamian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:72 +msgid "BRL - Brazilian Real*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:71 +msgid "BOB - Bolivian Boliviano*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:70 +msgid "BND - Brunei Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:69 +msgid "BMD - Bermudian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:68 +msgid "BIF - Burundian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:67 +msgid "BGN - Bulgarian Lev" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:66 +msgid "BDT - Bangladeshi Taka" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:65 +msgid "BBD - Barbadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:64 +msgid "BAM - Bosnia & Herzegovina Convertible Mark" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:63 +msgid "AZN - Azerbaijani Manat" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:62 +msgid "AWG - Aruban Florin" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:61 +msgid "AUD - Australian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:60 +msgid "ARS - Argentine Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:59 +msgid "AOA - Angolan Kwanza*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:58 +msgid "ANG - Netherlands Antillean Gulden" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:57 +msgid "AMD - Armenian Dram" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:56 +msgid "ALL - Albanian Lek" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:55 +msgid "AFN - Afghan Afghani*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:54 +msgid "AED - United Arab Emirates Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:345 +msgid "Skrill balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:327 +msgid "Skrill IPN message received." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:283 +msgid "Skrill" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:278 +msgid "Pending payment" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:144 +msgid "The secret word must match the word submitted in the \"Merchant Tools\" section of your Skrill account." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:134 +msgid "You must use your valid Skrill merchant email. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:133 +msgid "Skrill Email" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:123 +msgid "Resell your inventory via Skrill.com (Moneybookers)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:95 +msgid "ZAR - South-African Rand" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:93 +msgid "TWD - Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:92 +msgid "TRY - New Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:91 +msgid "TND - Tunisian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:90 +msgid "THB - Thailand Baht" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:89 +msgid "SKK - Slovakian Koruna" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:86 +#: includes/common/payment-gateways/stripe.php:158 +msgid "SAR - Saudi Riyal" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:85 +msgid "RSD - Serbian dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:83 +msgid "QAR - Qatari Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:81 +msgid "OMR - Omani Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:80 +msgid "NOK - Norwegian Krone " +msgstr "" + +#: includes/common/payment-gateways/skrill.php:78 +#: includes/common/payment-gateways/stripe.php:138 +msgid "MYR - Malaysian Ringgit" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:77 +#: includes/common/payment-gateways/stripe.php:127 +msgid "MAD - Moroccan Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:74 +msgid "KRW - South-Korean Won" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:72 +msgid "JOD - Jordanian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:70 +msgid "INR - Indian Rupee" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:63 +msgid "EEK - Estonian Kroon" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:56 +msgid "AED - Utd. Arab Emir. Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:52 +msgid "Turkish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:51 +msgid "Swedish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:50 +msgid "Spanish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:49 +msgid "Russian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:48 +msgid "Romainian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:47 +msgid "Polish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:46 +msgid "Italian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:45 +msgid "Greek" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:44 +msgid "German" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:43 +msgid "French" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:42 +msgid "Finnish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:41 +msgid "English" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:40 +msgid "Dutch" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:39 +msgid "Danish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:38 +msgid "Czech" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:37 +msgid "Chinese" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:201 +msgid "There was an error processing your card: %s. Please re-enter your credit card info and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:278 +msgid "
  • There was an error processing your card: \"%s\". Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:274 +msgid "
  • There was an error processing your card. Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:177 +#: includes/common/payment-gateways/stripe.php:279 +msgid "Publishable Key" +msgstr "" + +#: includes/common/payment-gateways/pin.php:163 +msgid "API Credentials?" +msgstr "" + +#: includes/common/payment-gateways/pin.php:147 +msgid "PIN makes it easy to start accepting credit card payments with Australia’s first all-in-one online payment system. Accept all major credit cards directly on your site. Your sales proceeds are deposited to any Australian bank account, no merchant account required." +msgstr "" + +#: includes/common/payment-gateways/pin.php:57 +#: includes/common/payment-gateways/stripe.php:179 +msgid "USD - United States Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:455 +msgid "Email Footer" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:445 +msgid "Email Header" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:416 +msgid "Partner" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:409 +msgid "Vendor" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:852 +#: includes/common/payment-gateways/paypal-express.php:1126 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences\t section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:749 +msgid "Page Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:744 +msgid "Header Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:739 +msgid "Header Border Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:734 +msgid "Header Image" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:680 +msgid "Locale" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:624 +#: includes/common/payment-gateways/paypal-express.php:658 +msgid "Merchant Email" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:645 +msgid "Paypal Express Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:603 +msgid "Paypal Express Network Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:861 +msgid "Application ID (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:854 +msgid "Signature (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:847 +msgid "API Password (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:839 +msgid "API Username (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:832 +msgid "Signature (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:825 +msgid "API Password (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:817 +msgid "API Username (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:799 +msgid "This message is displayed at the top of the gateway settings page to store admins. It's a good place to inform them of your fees or put any sales messages." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:787 +msgid "Please enter your PayPal email address or business ID you want to recieve fees at." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:786 +msgid "PayPal E-mail" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:772 +msgid "Fees to Collect (%)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:375 +#: includes/public/class-mp-checkout.php:341 +msgid "Email Address" +msgstr "כתובת דוא\"ל" + +#: includes/common/payment-gateways/paypal-chained-payments.php:299 +msgid "Sorry, your order was not completed." +msgstr "מצטערים, ההזמנה שלך לא הושלמה." + +#: includes/common/payment-gateways/paypal-chained-payments.php:126 +#: includes/common/payment-gateways/paypal-express.php:780 +msgid "You will be redirected to the PayPal site to finalize your payment." +msgstr "תנותב מחדש אל פייפאל (PayPal) כדי לסיים את התשלום." + +#: includes/common/payment-gateways/paypal-chained-payments.php:90 +#: includes/common/payment-gateways/skrill.php:94 +msgid "USD - U.S. Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:89 +msgid "TRY - Turkish lira" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:88 +#: includes/common/payment-gateways/stripe.php:170 +msgid "THB - Thai Baht" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:87 +msgid "TWD - Taiwan New Dollars" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:86 +#: includes/common/payment-gateways/pin.php:59 +#: includes/common/payment-gateways/skrill.php:88 +#: includes/common/payment-gateways/stripe.php:162 +msgid "SGD - Singapore Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:84 +msgid "RUB - Russian Rubles" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:82 +msgid "PHP - Philippine Pesos" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:81 +#: includes/common/payment-gateways/pin.php:58 +#: includes/common/payment-gateways/skrill.php:79 +#: includes/common/payment-gateways/stripe.php:145 +msgid "NZD - New Zealand Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:79 +msgid "MXN - Mexican Peso" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:78 +msgid "MYR - Malaysian Ringgits" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:77 +#: includes/common/payment-gateways/pin.php:64 +#: includes/common/payment-gateways/skrill.php:73 +#: includes/common/payment-gateways/stripe.php:112 +msgid "JPY - Japanese Yen" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:75 +#: includes/common/payment-gateways/pin.php:63 +#: includes/common/payment-gateways/skrill.php:66 +#: includes/common/payment-gateways/stripe.php:102 +msgid "HKD - Hong Kong Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:73 +msgid "GBP - Pound Sterling" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:68 +#: includes/common/payment-gateways/pin.php:62 +#: includes/common/payment-gateways/skrill.php:59 +msgid "CAD - Canadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:67 +msgid "BRL - Brazilian Real" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:66 +#: includes/common/payment-gateways/pin.php:56 +#: includes/common/payment-gateways/skrill.php:57 +msgid "AUD - Australian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:288 +msgid "There was an error processing your card: \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:163 +msgid "When running on a live site, Paymill recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:161 +#: includes/common/payment-gateways/pin.php:157 +#: includes/common/payment-gateways/simplify.php:103 +#: includes/common/payment-gateways/stripe.php:260 +#: includes/common/payment-gateways/wepay.php:153 +msgid "Force SSL?" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:151 +msgid "Accept Visa, Mastercard, Maestro UK, Discover and Solo cards directly on your site. You don't need a merchant account or gateway. Credit cards go directly to Paymill's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:131 +msgid "CVV2" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:72 +#: includes/common/payment-gateways/pin.php:61 +#: includes/common/payment-gateways/skrill.php:65 +#: includes/common/payment-gateways/stripe.php:95 +msgid "GBP - British Pound" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:71 +#: includes/common/payment-gateways/stripe.php:173 +msgid "TRY - Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:70 +#: includes/common/payment-gateways/paypal-chained-payments.php:85 +#: includes/common/payment-gateways/skrill.php:87 +#: includes/common/payment-gateways/stripe.php:161 +msgid "SEK - Swedish Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:69 +#: includes/common/payment-gateways/skrill.php:84 +msgid "RON - Romanian Leu New" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:68 +#: includes/common/payment-gateways/paypal-chained-payments.php:83 +#: includes/common/payment-gateways/skrill.php:82 +msgid "PLN - Polish Zloty" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:67 +#: includes/common/payment-gateways/paypal-chained-payments.php:80 +#: includes/common/payment-gateways/stripe.php:143 +msgid "NOK - Norwegian Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:66 +#: includes/common/payment-gateways/skrill.php:75 +#: includes/common/payment-gateways/stripe.php:125 +msgid "LTL - Lithuanian Litas" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:65 +#: includes/common/payment-gateways/paypal-chained-payments.php:69 +#: includes/common/payment-gateways/skrill.php:60 +#: includes/common/payment-gateways/stripe.php:78 +msgid "CHF - Swiss Franc" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:64 +#: includes/common/payment-gateways/skrill.php:76 +msgid "LVL - Latvian Lat" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:63 +#: includes/common/payment-gateways/paypal-chained-payments.php:74 +#: includes/common/payment-gateways/skrill.php:69 +msgid "ILS - Israeli Shekel" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:62 +#: includes/common/payment-gateways/skrill.php:71 +msgid "ISK - Iceland Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:61 +#: includes/common/payment-gateways/paypal-chained-payments.php:76 +#: includes/common/payment-gateways/skrill.php:68 +#: includes/common/payment-gateways/stripe.php:106 +msgid "HUF - Hungarian Forint" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:60 +#: includes/common/payment-gateways/paypal-chained-payments.php:71 +#: includes/common/payment-gateways/skrill.php:62 +#: includes/common/payment-gateways/stripe.php:86 +msgid "DKK - Danish Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:59 +#: includes/common/payment-gateways/skrill.php:67 +#: includes/common/payment-gateways/stripe.php:104 +msgid "HRK - Croatian Kuna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:58 +#: includes/common/payment-gateways/paypal-chained-payments.php:70 +#: includes/common/payment-gateways/skrill.php:61 +msgid "CZK - Czech Koruna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:57 +#: includes/common/payment-gateways/skrill.php:58 +msgid "BGN - Bulgarian Leva" +msgstr "" + +#: includes/common/payment-gateways/payflow/class-mp-gateway-worker-payflow.php:123 +msgid "There was an error connecting to PayPal. Please try again." +msgstr "אירעה שגיאה בהתחברות ל- PayPal יש לנסות שוב." + +#: includes/common/payment-gateways/payfast.php:344 +msgid "This setting will log all PayFast communication to the \"payfast.log\" file." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:342 +msgid "Log Debugging Info?" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:335 +msgid "DO NOT INPUT A VALUE UNLESS YOU HAVE SET ONE IN THE SETTINGS SECTION OF YOUR PAYFAST SETTINGS." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:333 +msgid "PayFast Passphrase" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:323 +msgid "You can find your credentials on your integration page." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:321 +msgid "PayFast Merchant Credentials" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:311 +msgid "PayFast Mode" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:308 +msgid "PayFast is a payments processing service for South Africa. We make it safe for buyers to send money and easy for sellers to receive money. More Info »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:306 +msgid "PayFast Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:285 +msgid "Your payment via PayFast for this order totaling %s is complete. The transaction number is %s." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:278 +msgid "Your payment via PayFast for this order totaling %s is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:124 +msgid "Your PayFast transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:82 +#: includes/common/payment-gateways/payfast.php:83 +msgid "PayFast" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:157 +msgid "API error: - \"%s\"" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:198 +msgid "The payment request is under process" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:140 +msgid "Order: #" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:116 +msgid "You will be redirected to the Mollie site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:73 +msgid "%sMollie%s provides a fully PCI Compliant and secure way to collect payments via iDeal, Credit Card, Bancontact / Mister Cash, SOFORT Banking, Overbooking, Bitcoin, PayPal, paysafecard and AcceptEmail." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:53 +#: includes/common/payment-gateways/mollie.php:54 +#: includes/common/payment-gateways/mollie.php:195 +#: includes/common/payment-gateways/mollie.php:245 +msgid "Mollie" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:50 +#: includes/common/payment-gateways/paymill.php:56 +#: includes/common/payment-gateways/paypal-chained-payments.php:72 +#: includes/common/payment-gateways/pin.php:60 +#: includes/common/payment-gateways/skrill.php:64 +#: includes/common/payment-gateways/stripe.php:92 +msgid "EUR - Euro" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:306 +msgid "Access Key" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:300 +msgid "You must login to the Mijireh.com dashboard to obtain the Access Key." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:299 +msgid "Credentials" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:289 +msgid "Mijireh Checkout provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:269 +msgid "Mijireh Error: " +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:89 +msgid "You will be redirected to the Mijireh.com site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:87 +msgid "Your Mijireh transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:42 +#: includes/common/payment-gateways/mijireh.php:43 +#: includes/common/payment-gateways/mijireh.php:324 +msgid "Mijireh" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:145 +msgid "These are the manual payment instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:189 +msgid "This is the email text to send to those who have made free order checkouts. You should include your free order instructions / information here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:183 +msgid "This is the free order information to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:182 +msgid "Confirmation User Information" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:177 +msgid "This is the information to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:163 +msgid "If enabled, all free orders will be automatically marked as paid." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:159 +msgid "Payment Status" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:149 +msgid "This gateway is automatically activated if order totalling 0 and it can't be disabled" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:35 +#: includes/common/payment-gateways/free_orders.php:36 +#: includes/common/payment-gateways/free_orders.php:89 +msgid "Free Order" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:34 +#: includes/common/payment-gateways/free_orders.php:197 +msgid "Free Orders" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:515 +msgid "Sandbox API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:266 +#: includes/common/payment-gateways/eway31.php:542 +msgid "eWay Rapid 3.1 Payments (beta)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:403 +msgid "Hosted Payment Page Language" +msgstr "" + +#: includes/common/payment-gateways/eway.php:373 +msgid "Note when testing in sandbox mode it will use the default eWay test API credentials. Also, please note that cart total needs to be a whole number (e.g. 10.00) in order to generate a successful transaction, otherwise the transaction will fail." +msgstr "" + +#: includes/common/payment-gateways/eway.php:267 +msgid "You will be redirected to https://www.eway.com.au to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:380 +msgid "You have chosen to checkout using %s. Please confirm your order details and click \"Submit Order\" when finished." +msgstr "להשלמת הרכישה באמצעות %s יש לבדוק את פרטי ההזמנה ולחץ על \"שליחת ההזמנה\"." + +#: includes/common/payment-gateways/class-mp-gateway-api.php:272 +#: includes/common/payment-gateways/paymill.php:131 +#: includes/common/payment-gateways/stripe.php:231 +msgid "Security Code " +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Enter in MM/YYYY or MM/YY format" +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Expiration" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:321 +msgid "Delim Data" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:307 +#: includes/common/payment-gateways/paypal-payflow.php:456 +msgid "This text will appear as the footer of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:287 +#: includes/common/payment-gateways/paypal-payflow.php:440 +msgid "Email Customer (on success)" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:278 +msgid "Authorize.net default is \",\". Otherwise, get this from your credit card processor. If the transactions are not going through, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:277 +msgid "Delimeter Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:193 +msgid "Held For Review" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:310 +#: includes/common/payment-gateways/payfast.php:314 +msgid "Test" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:300 +#: includes/common/payment-gateways/pin.php:170 +#: includes/common/payment-gateways/stripe.php:272 +msgid "Secret Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:283 +msgid "Select Your Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:97 +msgid "Your payment will be processed by the iDEAL network" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:208 +msgid "These are the CubePoints to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:203 +msgid "These are the CubePoints instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:266 +msgid "If enabled, all API calls will be made to https://test.bitpay.com." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:263 +msgid "Use Test Mode?" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:259 +msgid "If checked, response fron bitpay will be stored in log file, keep it disabled unless required." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:256 +msgid "Enable Debug Log" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:249 +msgid "Full Notifications" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:231 +#: includes/common/payment-gateways/eway31.php:499 +#: includes/common/payment-gateways/eway31.php:526 +#: includes/common/payment-gateways/mollie.php:83 +#: includes/common/shipping-modules/mp-fedex.php:269 +msgid "API Key" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:222 +msgid "You can now accept a payment from any country on Earth, with no risk of fraud. To use Bitpay, you need to signup on Bitpay. \\n After completing the signup process, you can get api keys at Bitpay API key. You can read more about Bitpay at Bitpay API. \\n Bitpay requires SSL(https) for payment notifications to work." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:61 +msgid "You will be redirected to bitpay.com, for bitcoin payment. It is completely safe." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:346 +msgid "You must login to the 2Checkout vendor dashboard to obtain the seller ID and secret word. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:345 +#: includes/common/payment-gateways/authorizenet-aim.php:239 +#: includes/common/payment-gateways/paymill.php:168 +#: includes/common/payment-gateways/paypal-express.php:704 +#: includes/common/payment-gateways/simplify.php:80 +#: includes/common/payment-gateways/stripe.php:265 +#: includes/common/payment-gateways/wepay.php:158 +msgid "API Credentials" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:325 +#: includes/common/payment-gateways/_bitpay.php:220 +#: includes/common/payment-gateways/_cubepoints.php:185 +#: includes/common/payment-gateways/_ideal.php:268 +#: includes/common/payment-gateways/_payway.php:255 +#: includes/common/payment-gateways/authorizenet-aim.php:219 +#: includes/common/payment-gateways/eway.php:352 +#: includes/common/payment-gateways/eway31.php:460 +#: includes/common/payment-gateways/free_orders.php:147 +#: includes/common/payment-gateways/manual-payments.php:126 +#: includes/common/payment-gateways/mijireh.php:287 +#: includes/common/payment-gateways/mollie.php:71 +#: includes/common/payment-gateways/paymill.php:149 +#: includes/common/payment-gateways/paypal-chained-payments.php:344 +#: includes/common/payment-gateways/paypal-payflow.php:376 +#: includes/common/payment-gateways/pin.php:145 +#: includes/common/payment-gateways/simplify.php:69 +#: includes/common/payment-gateways/skrill.php:121 +#: includes/common/payment-gateways/stripe.php:249 +#: includes/common/payment-gateways/wepay.php:119 +#: includes/common/shipping-modules/mp-fedex.php:243 +#: includes/common/shipping-modules/mp-flat-rate.php:63 +#: includes/common/shipping-modules/mp-pickup.php:140 +#: includes/common/shipping-modules/mp-table-rate.php:94 +#: includes/common/shipping-modules/mp-ups.php:122 +#: includes/common/shipping-modules/mp-usps.php:167 +#: includes/common/shipping-modules/mp-weight-rate.php:110 +msgid "%s Settings" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:136 +msgid "You will be redirected to the 2Checkout site to finalize your payment." +msgstr "" + +#: includes/common/helpers.php:169 includes/public/class-mp-checkout.php:1277 +msgid "Billing" +msgstr "המשלם" + +#: includes/common/helpers.php:144 +msgid "FREE" +msgstr "ח י נ ם " + +#: includes/common/helpers.php:134 +msgid "Coupons:" +msgstr "" + +#: includes/common/helpers.php:95 +msgid "Qty" +msgstr "" + +#: includes/common/helpers.php:94 +msgid "Sku" +msgstr "" + +#: includes/common/data.php:59 +msgid "Zip Code" +msgstr "מיקוד" + +#: includes/common/class-mp-taxes.php:336 +msgid "Standard Table" +msgstr "" + +#: includes/common/class-mp-product.php:2698 +msgid "Tweet" +msgstr "" + +#: includes/common/class-mp-product.php:2321 +msgid "Notification Preferences: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2320 +msgid "Edit Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2318 +msgid "Link: %s

    " +msgstr "" + +#: includes/common/class-mp-product.php:2317 +msgid "Current Inventory: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2316 +msgid "Product: %s" +msgstr "מוצר: %s" + +#: includes/common/class-mp-product.php:2314 +msgid "This message is being sent to notify you of low stock of a product in your online store according to your preferences.

    " +msgstr "" + +#: includes/common/class-mp-product.php:1817 +msgid "" +msgstr "" + +#: includes/common/class-mp-product.php:1427 +#: includes/common/class-mp-product.php:1430 +msgid "(tax incl.)" +msgstr "(כולל מע\"מ)." + +#: includes/common/class-mp-product.php:1422 +#: includes/common/class-mp-product.php:1425 +msgid "(tax excl.)" +msgstr "(+ מע\"מ)." + +#: includes/common/class-mp-product.php:1300 +#: includes/common/class-mp-product.php:1315 +msgid "%s each" +msgstr "" + +#: includes/common/class-mp-product.php:988 +msgid "Choose Options" +msgstr "" + +#: includes/common/class-mp-product.php:526 +msgid "Choose a %s" +msgstr "" + +#: includes/common/class-mp-product.php:284 +#: includes/common/class-mp-product.php:292 +#: includes/common/class-mp-product.php:615 +msgid "We're sorry, we only have %d of this item in stock right now." +msgstr "" + +#: includes/common/class-mp-order.php:1456 +msgid "Shipped: Track Shipment" +msgstr "" + +#: includes/common/class-mp-order.php:1049 +msgid "Order Received" +msgstr "ההזמנה התקבלה" + +#: includes/common/class-mp-order.php:1014 +msgid "In Process" +msgstr "בתהליך" + +#: includes/common/class-mp-order.php:969 +msgid "Order #" +msgstr "הזמנה #" + +#: includes/common/class-mp-order.php:866 +msgid "Copy billing address to shipping address" +msgstr "" + +#: includes/common/class-mp-order.php:822 +#: includes/public/class-mp-checkout.php:1314 +msgid "Special Instructions" +msgstr "" + +#: includes/common/class-mp-order.php:817 +#: includes/common/payment-gateways/stripe.php:335 +msgid "Email" +msgstr "דוא\"ל" + +#: includes/common/class-mp-order.php:813 +#: includes/common/payment-gateways/stripe.php:341 +#: includes/public/class-mp-checkout.php:416 +msgid "Phone" +msgstr "טלפון" + +#: includes/common/class-mp-order.php:791 +#: includes/common/payment-gateways/stripe.php:337 +msgid "State" +msgstr "מדינה" + +#: includes/common/class-mp-order.php:776 +msgid "Address 1" +msgstr "כתובת 1" + +#: includes/common/class-mp-order.php:766 +msgid "Last Name" +msgstr "שם משפחה" + +#: includes/common/class-mp-order.php:762 +msgid "First Name" +msgstr "שם פרטי" + +#: includes/common/class-mp-installer.php:677 +msgid "MarketPress requires a database update to continue working correctly. Go to update page" +msgstr "" + +#: includes/common/class-mp-installer.php:657 +msgid "MarketPress performed a quick automatic update successfully!" +msgstr "" + +#: includes/common/class-mp-installer.php:653 +msgid "Perform Update" +msgstr "" + +#: includes/common/class-mp-installer.php:647 +msgid "Please update each subsite in your WordPress network where you have older version of the MarketPress plugin." +msgstr "" + +#: includes/common/class-mp-installer.php:641 +msgid "Depending on the amount of products you have, this update could take quite some time. Please keep this window open while the update completes. If you have products with multiple variations, the progress bar may move slower, please don't exit the window." +msgstr "" + +#: includes/common/class-mp-installer.php:632 +msgid "Product Metadata" +msgstr "" + +#: includes/common/class-mp-installer.php:601 +msgid "MarketPress requires a database update to continue working correctly.
    Below you will find a list of items that require your attention." +msgstr "" + +#: includes/common/class-mp-installer.php:600 +msgid "Update MarketPress Data" +msgstr "" + +#: includes/common/class-mp-installer.php:530 +msgid "Update Data" +msgstr "" + +#: includes/common/class-mp-installer.php:67 +msgid "Complete!" +msgstr "הושלם!" + +#: includes/common/class-mp-installer.php:66 +msgid "Upgrading Database...Please Wait..." +msgstr "" + +#: includes/common/class-mp-installer.php:64 +msgid "An error occurred while updating. Please refresh this page and try again." +msgstr "" + +#: includes/common/class-mp-cart.php:2447 +msgid "Some items in your cart have fallen below the quantity you currently have in your cart. We have adjusted the quantity in your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:2443 +msgid "Some items in your cart are no longer available. We have removed these items from your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:1566 +msgid "item" +msgstr "מוצר" + +#: includes/common/class-mp-cart.php:1563 +#: includes/common/class-mp-cart.php:1568 +msgid "items" +msgstr "מוצרים" + +#: includes/common/class-mp-cart.php:1363 +msgid "Items/Products added to Cart will show here." +msgstr "" + +#: includes/common/class-mp-cart.php:1362 +msgid "Your shopping cart is empty." +msgstr "עגלת הקניות שלך ריקה." + +#: includes/common/class-mp-cart.php:1357 +msgid "View Cart" +msgstr "לצפייה בעגלת הקניות" + +#: includes/common/class-mp-cart.php:1241 +#: includes/common/class-mp-cart.php:1298 +#: includes/public/class-mp-short-codes.php:159 +msgid "Adding..." +msgstr "" + +#: includes/common/class-mp-cart.php:1033 +msgid "Continue Shopping?" +msgstr "המשך בקניות?" + +#: includes/common/class-mp-cart.php:961 +msgid "Secure Checkout
    Shopping is always safe and secure." +msgstr "תשלום מאובטח
    הקנייה תמיד בטוחה ומאובטחת " + +#: includes/common/class-mp-cart.php:959 +msgid "You are about to submit your order!
    Please review your order details before continuing. You will be charged immediately upon clicking \"Submit Order\"." +msgstr "רגע לפני השלמת ההזמנה!
    יש לבדוק את פרטי ההזמנה, החיוב יבוצע מיד עם הלחיצה על \"שליחת ההזמנה\"." + +#: includes/common/class-mp-cart.php:956 +msgid "Continue »" +msgstr "לתשלום »" + +#: includes/common/class-mp-cart.php:955 +msgid "Submit Order" +msgstr "שליחת ההזמנה" + +#: includes/common/class-mp-cart.php:818 +msgid "There are no items in your cart - go add some !" +msgstr "" + +#: includes/common/class-mp-cart.php:816 +msgid "The cart is disabled." +msgstr "" + +#: includes/common/class-mp-cart.php:735 +msgid "Estimated %s" +msgstr "הערכה %s" + +#: includes/common/class-mp-cart.php:717 +msgid "Estimated Shipping" +msgstr "" + +#: includes/common/class-mp-cart.php:697 +msgid "Product Total" +msgstr "סה\"כ מוצרים" + +#: includes/common/class-mp-cart.php:670 includes/common/class-mp-cart.php:672 +msgid "Estimated Total (%s, %s)" +msgstr "" + +#: includes/common/class-mp-cart.php:668 +msgid "Estimated Total (%s)" +msgstr "" + +#: includes/common/class-mp-cart.php:666 includes/common/class-mp-cart.php:752 +msgid "Estimated Total" +msgstr "סה\"כ לתשלום" + +#: includes/admin/widgets/product-list.php:247 +msgid "Show Thumbnail Placeholder image (if image is not set)" +msgstr "" + +#: includes/admin/widgets/cart.php:73 +msgid "Display product price" +msgstr "" + +#: includes/admin/widgets/cart.php:71 +msgid "Display product quantity" +msgstr "" + +#: includes/admin/widgets/cart.php:69 +msgid "Display product image" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:93 +msgid "General Shipping Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:773 +msgid "If you are having conflicts with the lightbox library from your theme or another plugin you should uncheck this." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:772 +msgid "Use Built-In Lightbox for Images?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:762 +msgid "Disable Large Image Display?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:688 +msgid "Show Product Image?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:682 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:684 +msgid "Show Tags List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:676 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:678 +msgid "Show Categories List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:671 +msgid "If enabled, description excerpt will be added above Add to cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:669 +msgid "Show Excerpt?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:665 +msgid "If enabled, users will be able to choose how many of the product they want to purchase before adding to their cart. If not checked, quantity could be change later on the cart page." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:663 +msgid "Show Quantity Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:649 +msgid "Settings related to the display of individual product pages." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:648 +msgid "Product Page Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:605 +msgid "Related Products Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:573 +msgid "Show Related Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:568 +msgid "Related Product Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:549 +msgid "Order Status Entries Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:510 +msgid "Sort Products By" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:497 +msgid "Products Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:492 +msgid "Paginate Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:478 +msgid "Excerpts Length" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:473 +msgid "Show Excerpts?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:450 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:746 +msgid "Image Alignment" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:412 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:708 +msgid "Custom Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:401 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:697 +msgid "Large - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:400 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:696 +msgid "Medium - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:399 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:695 +msgid "Thumbnail - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:397 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:693 +msgid "Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:386 +msgid "Select default placeholder image thumbnail when product image is not available (if empty, plugin's built-in image will be used)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:380 +msgid "Show default product placeholder thumbnail when product image is not available?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:374 +msgid "Show Product Thumbnail?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:369 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:658 +msgid "Redirect to cart page for immediate checkout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:368 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:657 +msgid "Stay on current product page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:366 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:655 +msgid "MarketPress supports two \"flows\" for adding products to the shopping cart. After adding a product to their cart, two things can happen:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:365 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:654 +msgid "Add To Cart Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:355 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:628 +msgid "Four" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:354 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:627 +msgid "Three" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:353 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:626 +msgid "Two" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:625 +msgid "One" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:349 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:622 +msgid "Set the number of products that show up in a grid row to best fit your theme" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:348 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:621 +msgid "How many products per row?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:342 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:609 +msgid "Display as grid" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:341 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:608 +msgid "Display as list" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:339 +msgid "Product Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:334 +msgid "Settings related to the display of product lists/grids." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:333 +msgid "Product List/Grid Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:314 +msgid "Show Twitter Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:309 +msgid "Twitter" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:303 +msgid "Show Share Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:297 +msgid "Recommend" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:296 +msgid "Like" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:294 +msgid "Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:283 +msgid "Show Facebook Like Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:278 +msgid "Facebook" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:257 +msgid "Show \"Pin It\" Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:252 +msgid "Pinterest" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:246 +msgid "Social Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:193 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:202 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:211 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:220 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:229 +#: includes/multisite/class-mp-admin-multisite.php:532 +#: includes/multisite/class-mp-admin-multisite.php:541 +#: includes/multisite/class-mp-admin-multisite.php:550 +msgid "Choose a Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:191 +msgid "This page will be used as the root for your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:168 +#: includes/multisite/class-mp-admin-multisite.php:586 +msgid "Create Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "uncropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "cropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:87 +#: includes/multisite/class-mp-admin-multisite.php:121 +#: includes/multisite/class-mp-admin-multisite.php:620 +msgid "An error occurred while creating the store page. Please try again." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:66 +msgid "Choose the gateway(s) that you would like to be available for checkout." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:65 +msgid "Enabled Gateways" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:78 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:146 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:179 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:213 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:274 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:307 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:341 +msgid "Text" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:71 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:139 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:172 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:206 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:267 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:300 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:334 +msgid "Subject" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:52 +msgid "Notification Email" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:510 +msgid "Enabling this option will display label `excl. tax` or `incl. tax` after price" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:509 +msgid "Display tax label?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:504 +msgid "Enabling this option will show Price + Tax, eg. if your price is 100 and your tax 20, your price will be 120" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:416 +#: includes/multisite/class-mp-admin-multisite.php:234 +msgid "Price Format" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:366 +msgid "Enabling this field will display a textbox on the shipping checkout page for users to enter special instructions for their order. Useful for product personalization, etc." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:365 +msgid "Show Special Instructions Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:360 +msgid "Universal" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:359 +msgid "Old" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1167 +#: includes/admin/store-settings/class-mp-store-settings-general.php:358 +msgid "New" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:353 +msgid "If you already use Google Analytics for your website, you can track detailed ecommerce information by enabling this setting. Choose whether you are using the new asynchronous or old tracking code. Before Google Analytics can report ecommerce activity for your website, you must enable ecommerce tracking on the profile settings page for your website. Also keep in mind that some gateways do not reliably show the receipt page, so tracking may not be accurate in those cases. It is recommended to use the PayPal gateway for the most accurate data. More information »" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:347 +msgid "Do you want to display the product price on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:346 +msgid "Show product price on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:340 +msgid "Do you want to display the product quantity on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:339 +msgid "Show product quantity on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:333 +msgid "Do you want to display the product image on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:332 +msgid "Show product image on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:327 +msgid "This option hide floating Mini Cart in top right corner." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:326 +msgid "Disable Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:316 +msgid "If unchecked your Orders admin page will be hidden" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:315 +msgid "Show admin Orders page?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:309 +msgid "Disable Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:303 +msgid "Force Login?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:297 +msgid "Hide Out of Stock Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:555 +msgid "This will prevent multiples of the same downloadable product form being added to the cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:554 +msgid "Limit Digital Products Per-order?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:268 +msgid "If you're having issues downloading large files and have worked with your hosting provider to increase your memory limits, try enabling this - just keep in mind, it's not as secure!" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:267 +msgid "Use Alternative Download Method?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:252 +msgid "Download Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:230 +msgid "Change product post type" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:51 +msgid "%s Capabilities" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-addons.php:47 +msgid "Store Settings: Add Ons: %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:254 +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:56 +msgid "Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Edit Product Attribute %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:246 +msgid "Exporters" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:238 +msgid "Short Codes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:207 +msgid "An appropriate message for key \"%s\" could not be found." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:204 +msgid "Product attribute updated successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:203 +msgid "Product attribute added successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +msgid "Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +#: includes/admin/store-settings/class-mp-store-settings-addons.php:121 +msgid "Store Settings: Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "Store Settings: Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:118 +msgid "Store Settings: Product Tags" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:117 +msgid "Store Settings: Product Categories" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Store Settings: Product Attributes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +msgid "Store Settings: Payments" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:114 +msgid "Store Settings: Shipping" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +#: includes/admin/class-mp-store-settings-admin.php:226 +msgid "Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +msgid "Store Settings: Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:112 +msgid "Store Settings: Presentation" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:111 +msgid "Store Settings: General" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1489 +msgid "Select a Product" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1447 +msgid "Reset to Defaults" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1446 +msgid "Insert Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1202 +#: includes/admin/class-mp-shortcode-builder.php:1227 +#: includes/admin/class-mp-shortcode-builder.php:1252 +msgid "The text to show in the link." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1196 +#: includes/admin/class-mp-shortcode-builder.php:1221 +#: includes/admin/class-mp-shortcode-builder.php:1246 +msgid "Whether to return a clickable link or url." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1177 +msgid "Whether to display the cart only on store pages or not." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1171 +msgid "Whether to show or hide the product price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1165 +msgid "Whether to show or hide the product quantity." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1159 +msgid "Whether to show or hide the product image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1153 +msgid "The text displayed before the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1147 +msgid "The title of the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1058 +#: includes/admin/class-mp-shortcode-builder.php:1121 +msgid "A label to prepend to the price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1032 +#: includes/admin/class-mp-shortcode-builder.php:1127 +msgid "What context for display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1004 +msgid "Set the alignment of the image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:998 +msgid "Set a custom pixel width/height. If omitted defaults to the size set by \"context\"." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:993 +msgid "Widget" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:988 +msgid "What context for preset size options." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:982 +#: includes/admin/class-mp-shortcode-builder.php:1026 +#: includes/admin/class-mp-shortcode-builder.php:1052 +#: includes/admin/class-mp-shortcode-builder.php:1077 +#: includes/admin/class-mp-shortcode-builder.php:1096 +#: includes/admin/class-mp-shortcode-builder.php:1115 +msgid "The ID of the product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:963 +msgid "Whether to display the product meta (e.g. price, buy button)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:738 +#: includes/admin/class-mp-shortcode-builder.php:905 +#: includes/admin/class-mp-shortcode-builder.php:958 +#: includes/admin/class-mp-shortcode-builder.php:992 +#: includes/admin/class-mp-shortcode-builder.php:1035 +#: includes/admin/class-mp-shortcode-builder.php:1130 +#: includes/admin/class-mp-shortcode-builder.php:1349 +msgid "List" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:957 +#: includes/admin/class-mp-shortcode-builder.php:991 +#: includes/admin/class-mp-shortcode-builder.php:1034 +#: includes/admin/class-mp-shortcode-builder.php:1129 +msgid "Single" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:953 +msgid "Whether and what context of image size to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:948 +msgid "Full" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:943 +msgid "Whether and what type of content to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:937 +msgid "Whether to display the product title." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:931 +msgid "The ID of the product to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:747 +#: includes/admin/class-mp-shortcode-builder.php:914 +msgid "Hide" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:746 +#: includes/admin/class-mp-shortcode-builder.php:913 +msgid "Show" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:744 +#: includes/admin/class-mp-shortcode-builder.php:911 +msgid "Whether or not to show the product filters." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:724 +#: includes/admin/class-mp-shortcode-builder.php:891 +#: includes/admin/class-mp-shortcode-builder.php:1335 +msgid "Limits list to a specific product tag." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:713 +#: includes/admin/class-mp-shortcode-builder.php:880 +#: includes/admin/class-mp-shortcode-builder.php:1324 +msgid "Limits list to a specific product category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:706 +#: includes/admin/class-mp-shortcode-builder.php:873 +#: includes/admin/class-mp-shortcode-builder.php:1317 +msgid "Direction to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:684 +#: includes/admin/class-mp-shortcode-builder.php:851 +#: includes/admin/class-mp-shortcode-builder.php:1295 +msgid "What field to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:678 +#: includes/admin/class-mp-shortcode-builder.php:845 +#: includes/admin/class-mp-shortcode-builder.php:1283 +msgid "How many products to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:672 +#: includes/admin/class-mp-shortcode-builder.php:839 +#: includes/admin/class-mp-shortcode-builder.php:1277 +msgid "The page number to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:666 +#: includes/admin/class-mp-shortcode-builder.php:833 +#: includes/admin/class-mp-shortcode-builder.php:1271 +msgid "Whether to paginate the product list. This is useful to only show a subset." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:808 +msgid "How many related items to show." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:790 +msgid "How to relate the products" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:784 +msgid "The product to show related items for." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:765 +msgid "The maximum number of products to display" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:647 +msgid "Comma separated list of tags (term_id) to include. For example, include=5,27 means tags that have the term_id 5 or 27 will be the only tags displayed. Defaults to include everything." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:641 +msgid "Comma separated list of tags (term_id) to exclude. For example, exclude=5,27 means tags that have the term_id 5 or 27 will NOT be displayed. Defaults to exclude nothing." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:633 +#: includes/admin/class-mp-shortcode-builder.php:1420 +msgid "Sort order." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:629 +#: includes/admin/class-mp-shortcode-builder.php:1416 +msgid "Count" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:626 +#: includes/admin/class-mp-shortcode-builder.php:1413 +msgid "Order of the tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:620 +msgid "The text/space between tags)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:616 +msgid "UL with a class of \"wp-tag-cloud\"" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:615 +msgid "separated by whitespace defined by \"separator\" parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:613 +msgid "Format of the cloud display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:607 +msgid "The number of actual tags to display in the cloud. (Use \"0\" to display all tags.)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:601 +msgid "Unit of measure as pertains to the smallest and largest values. This can be any CSS length value, e.g. pt, px, em, %." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:595 +msgid "The text size of the tag with the largest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:589 +msgid "The text size of the tag with the smallest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:570 +msgid "The \"tabindex\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:564 +msgid "The \"name\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:558 +msgid "The \"id\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:552 +msgid "Which category ID is selected." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:540 +msgid "The max depth. This is ignored unless hierarchical is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:536 +#: includes/multisite/template-functions.php:816 +msgid "No Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:414 +#: includes/admin/class-mp-shortcode-builder.php:546 +msgid "Calculates link or post counts by including items from child categories. If show_counts and hierarchical are true this is automatically set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:409 +msgid "Value of n (some number) specifies the depth (or level) to descend in displaying Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:408 +msgid "Show only top level Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:407 +msgid "All Categories displayed in flat (no indent) form (overrides hierarchical)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:406 +msgid "All Categories and child Categories (Default)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:402 +msgid "This parameter controls how many levels in the hierarchy of Categories are to be included in the list of Categories. NOTE: The \"hierarchical\" argument, which is disabled by default, will override the depth argument, unless it is true. When the argument is false, it will display all of the categories. When it is enabled it will use the value in the \"depth\" argument." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:396 +#: includes/admin/class-mp-shortcode-builder.php:1394 +msgid "Sets the number of Categories to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:390 +#: includes/admin/class-mp-shortcode-builder.php:534 +msgid "Set the text to show when no categories are listed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:384 +msgid "Set the title and style of the outer list item. If present but empty, the outer list item will not be displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:378 +#: includes/admin/class-mp-shortcode-builder.php:528 +msgid "Display sub-categories as inner list items (below the parent list item) or inline." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:368 +#: includes/admin/class-mp-shortcode-builder.php:511 +msgid "Exclude category-tree from the results. The parameter include must be empty. If the hierarchical parameter is true, then use exclude instead of exclude_tree." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:354 +msgid "Only include these categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:340 +#: includes/admin/class-mp-shortcode-builder.php:356 +#: includes/admin/class-mp-shortcode-builder.php:370 +#: includes/admin/class-mp-shortcode-builder.php:496 +#: includes/admin/class-mp-shortcode-builder.php:513 +msgid "Select Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:338 +#: includes/admin/class-mp-shortcode-builder.php:494 +msgid "Exclude one or more categories from the results. The parameter include must be empty." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:332 +msgid "Set a URI for an image (usually an rss feed icon) to act as a link to each categories' rss-2 feed. This parameter overrides the feed parameter. There is no default for this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:320 +msgid "Display a link to each category's rss-2 feed and set the link text to display. The default is no text and no feed displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:313 +#: includes/admin/class-mp-shortcode-builder.php:487 +msgid "Any" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:307 +#: includes/admin/class-mp-shortcode-builder.php:481 +msgid "Only display categories that are children of the category identified by this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:301 +msgid "Sets whether a category's description is inserted into the title attribute of the links created (i.e. <a title=\"<em>Category Description</em>\" href=\"...)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:295 +#: includes/admin/class-mp-shortcode-builder.php:475 +msgid "Toggles the display of categories with no posts." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:289 +#: includes/admin/class-mp-shortcode-builder.php:469 +#: includes/admin/class-mp-shortcode-builder.php:1388 +msgid "Toggles the display of the current count of posts in each category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:279 +msgid "Style to display the categories list in. A value of list displays the categories as list items while none generates no special display method (the list items are separated by
    tags)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:269 +#: includes/admin/class-mp-shortcode-builder.php:449 +#: includes/admin/class-mp-shortcode-builder.php:1378 +msgid "Sort order for categories (either ascending or descending)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:259 +#: includes/admin/class-mp-shortcode-builder.php:439 +#: includes/admin/class-mp-shortcode-builder.php:1368 +msgid "Sort categories alphabetically, by unique Category ID, or by the count of posts in that Category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:253 +#: includes/admin/class-mp-shortcode-builder.php:433 +msgid "If a value is entered, causes the display of a link to all categories if the style is set to list." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:219 +msgid "Select an Action" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:217 +msgid "What would you like to do?" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:216 +#: includes/admin/class-mp-shortcode-builder.php:1522 +msgid "Add E-Commerce Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:197 +msgid "Display a list of links to your store pages." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:196 +msgid "Display a link or url to the order status page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:195 +msgid "Display a link or url to the current products list page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:194 +msgid "Display a link or url to the current store page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:193 +msgid "Display a link or url to the current shopping cart page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:192 +msgid "Display the cart widget." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:191 +msgid "Display the full product meta box with price and buy now/add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:190 +msgid "Display the product stock." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:189 +msgid "Display the product SKU number(s)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:188 +msgid "Display the product price (and sale price)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:187 +msgid "Display the buy or add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:186 +msgid "Display the featured image of a given product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:185 +msgid "Display a single product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:184 +msgid "Display a list of products according to preference." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:183 +msgid "Display products related to the one being viewed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:182 +msgid "Display a list of popular products ordered by sales." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:180 +msgid "Display an HTML dropdown of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:179 +msgid "Display an HTML list of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:178 +msgid "Display a cloud or list of your product tags." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:655 +msgid "Setup your payment gateway" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:643 +#: includes/admin/class-mp-setup-wizard.php:649 +msgid "Other Gateways" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:617 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:150 +msgid "Select which calculated shipping methods the customer will be able to choose from." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:601 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:134 +#: includes/public/class-mp-checkout.php:82 +msgid "Shipping Method" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:568 +msgid "I want to charge shipping" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:523 +#: includes/admin/store-settings/class-mp-store-settings-general.php:503 +msgid "Show Price + Tax?" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:507 +msgid "I.e. Taxes, VAT, GST, etc" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:491 +#: includes/admin/store-settings/class-mp-store-settings-general.php:471 +msgid "Current Rates" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:473 +msgid "Default Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:434 +#: includes/admin/class-mp-setup-wizard.php:442 +#: includes/admin/store-settings/class-mp-store-settings-general.php:386 +#: includes/admin/store-settings/class-mp-store-settings-general.php:394 +#: includes/multisite/class-mp-admin-multisite.php:204 +#: includes/multisite/class-mp-admin-multisite.php:212 +msgid "Select a Currency" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:414 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:105 +msgid "Choose Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:411 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:103 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:104 +msgid "All Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:410 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:102 +msgid "These are the countries that you will ship to." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:409 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:101 +msgid "Target Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:401 +msgid "Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:387 +#: includes/admin/store-settings/class-mp-store-settings-general.php:640 +msgid "Zip/Postal Code Label" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:352 +#: includes/admin/store-settings/class-mp-store-settings-general.php:606 +msgid "Select a State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:335 +#: includes/admin/store-settings/class-mp-store-settings-general.php:590 +msgid "Select A Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:332 +#: includes/admin/store-settings/class-mp-store-settings-general.php:587 +msgid "Select a Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:324 +msgid "Location" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:304 +#: includes/admin/class-mp-setup-wizard.php:312 +#: includes/admin/class-mp-store-settings-admin.php:129 +#: includes/admin/class-mp-store-settings-admin.php:262 +msgid "Quick Setup" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:289 +msgid "MarketPress setup is not complete! Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2479 +msgid "Enter your product name here" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2440 +msgid "Select a %s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2426 +msgid "Each product variation needs to have product attributes assigned to it so the system knows how to differentiate one product variation from the other. It is important that you assign a category to this product before choosing any attributes." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2409 +msgid "If you would like this variation to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2320 +msgid "Sale Price (if applicable)" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2281 +msgid "If you would like the description to be different than the main product enter it here." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2229 +msgid "Image" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2202 +#: includes/admin/class-mp-shortcode-builder.php:226 +msgid "Attributes" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2166 +msgid "Create your product variations here. You can reorder variations by using the number to left of each variation, or delete one by clicking the \"x\" to the right of each variation. NOTE: The variation that shows up first in this list will be considered the \"main variation\". The details from this variation will be used in product listings." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2061 +#: includes/admin/class-mp-products-admin.php:2332 +msgid "Value must be less than regular price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2043 +#: includes/admin/class-mp-products-admin.php:2306 +msgid "Regular Price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2023 +#: includes/admin/class-mp-products-admin.php:2286 +msgid "External URL" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1988 +#: includes/admin/class-mp-products-admin.php:2245 +msgid "Enter the quantity that you have available to sell." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1987 +#: includes/admin/class-mp-products-admin.php:2244 +msgid "Inventory Count" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1977 +#: includes/admin/class-mp-products-admin.php:2234 +msgid "Track Inventory?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1871 +msgid "%1$sProduct Images%2$s %3$sAdd images of the product. The first image on the list is the featured image for this product (you can reorder images on the list)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1806 +msgid "Add variations for this product. e.g. If you are selling t-shirts, you can create Color & Size variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1804 +msgid "%3$sAdd variations for%2$s %1$sProduct%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1776 +msgid "This product has a multiple variations %1$s(e.g. Multiple colors, sizes)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1775 +msgid "This is a unique product without variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1700 +msgid "Extra Shipping Cost %1$s(if applicable)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1659 +#: includes/admin/class-mp-products-admin.php:2112 +#: includes/admin/class-mp-products-admin.php:2359 +msgid "Weight" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1636 +#: includes/admin/class-mp-products-admin.php:2098 +#: includes/admin/class-mp-products-admin.php:2416 +msgid "Please enter a valid tax rate" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1531 +msgid "Limit Per Order %1$s(limit the number of the item a shopper can buy per order)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1513 +msgid "SKU %1$s(Stock Keeping Unit)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "%1$sPrice, Inventory & Variants%2$s %3$sSet price, manage inventory and create Product Variants (if appropriate for your product).%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "Product Variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1480 +msgid "External / Affiliate Link" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1471 +msgid "Digital Download" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1470 +msgid "Physical / Tangible Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1464 +msgid "Product Kind %1$s(Physical Product, Digital, etc)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1426 +msgid "Choose Products" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1420 +msgid "If you would like, you can choose specific related products instead of using the ones generated by MarketPress" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1019 +msgid "Changes saved successfully" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:826 +msgid "Option cannot be saved. Try again." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:821 +msgid "Option saved successfully." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:467 +msgid "Img" +msgstr "" + +#: includes/admin/class-mp-product-attributes-list-table.php:57 +msgid "Product attribute(s) deleted successfully." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:162 +msgid "- Create New Variation -" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:144 +msgid "Only lowercase letters and dashes (-) are allowed." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:139 +msgid "If a slug is not entered, it will be generated automatically. Max 32 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:138 +#: includes/admin/class-mp-product-attributes-list-table.php:23 +msgid "Slug" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:130 +msgid "Max 45 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:123 +msgid "Use the numbers on the left to sort. To delete - click the \"X\" to the right of each row." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:122 +msgid "Attribute Options" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:121 +msgid "Add Option" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:105 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:523 +msgid "Sort Order" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:87 +msgid "Alphabetical" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:86 +msgid "ID" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:84 +msgid "Select how the options will be sorted." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:82 +msgid "Sort By" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:75 +msgid "The name of the attribute (e.g. color, size, etc)" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:74 +msgid "Attribute Name" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:69 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Product Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Product Attributes" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:71 +msgid "You can choose to make this page one of the following core store pages." +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:66 +msgid "Network Store Base" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:61 +msgid "Checkout Page" +msgstr "עמוד התשלום" + +#: includes/admin/class-mp-pages-admin.php:52 +msgid "Store Page Settings" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1108 +msgid "Display billing/shipping info for this customer" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1097 +msgid "View order “%s”" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1072 +msgid "Flag as:" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:952 +msgid "Move To Trash" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:948 +msgid " Received" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:927 +msgid "Enter coupon code here" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:812 +msgid "The order status could not be updated due to unexpected error. Please try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:740 +msgid "An invalid bulk action was requested. Please go back and try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:692 +msgid "The order status for order ID %1$s was updated successfully." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:688 +msgid "Order statuses successfully updated." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:530 +msgid "Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:518 +msgid "Actual Shipping Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:513 +msgid "Method Paid For" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:504 +msgid "Amount Collected" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:477 +msgid "DHL" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:408 +msgid "There is no IPN history to show at this time" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:345 +msgid "Type" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:343 +msgid "Gateway" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:301 +#: includes/common/template-functions.php:528 +msgid "Order History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:291 +msgid "IPN History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:283 +msgid "Customer Info" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:279 +msgid "Order Details" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:157 +msgid "All Dates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:320 +msgid "Add Pages to Menu" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:318 +msgid "Add-ons" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:317 +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "User Capabilities" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:316 +#: includes/admin/class-mp-setup-wizard.php:631 +#: includes/admin/store-settings/class-mp-store-settings-payments.php:50 +msgid "Payment Gateways" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:315 +msgid "Shipping Rates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:312 +msgid "Configure" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:309 +#: includes/admin/class-mp-products-admin.php:466 +#: includes/admin/class-mp-shortcode-builder.php:797 +msgid "Tags" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:308 +#: includes/admin/class-mp-products-admin.php:465 +msgid "Categories" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:300 +msgid "Manage" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:297 +msgid "Here's some quick links to manage your store and products." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:288 +msgid "low in stock" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:287 +msgid "%s product" +msgid_plural "%s products" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-dashboard-widgets.php:280 +msgid "received" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:279 +#: includes/admin/class-mp-dashboard-widgets.php:283 +msgid "%s order" +msgid_plural "%s orders" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-dashboard-widgets.php:276 +msgid "Stock & Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:261 +msgid "Last 30 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:256 +msgid "Last 7 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:251 +msgid "Yesterday" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:248 +#: includes/admin/class-mp-dashboard-widgets.php:253 +#: includes/admin/class-mp-dashboard-widgets.php:258 +#: includes/admin/class-mp-dashboard-widgets.php:263 +msgid " Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:246 +msgid "Today" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:241 +msgid "Welcome back! Here's a quick summary of your store's performance." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:196 +#: includes/admin/class-mp-products-admin.php:895 +msgid "No products out of stock." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:136 +#: includes/admin/class-mp-products-admin.php:839 +msgid "Stock Level" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:135 +#: includes/admin/class-mp-products-admin.php:838 +msgid "Variation" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:121 +msgid "Low Stock (%s)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:116 +msgid "Store Management" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:115 +msgid "Store Reports" +msgstr "" + +#: includes/admin/class-mp-ajax.php:579 +#: includes/admin/class-mp-orders-admin.php:520 +#: includes/common/payment-gateways/2checkout.php:370 +#: includes/common/payment-gateways/authorizenet-aim.php:264 +#: includes/common/payment-gateways/mollie.php:93 +#: includes/common/payment-gateways/paymill.php:196 +#: includes/common/payment-gateways/pin.php:190 +#: includes/common/payment-gateways/skrill.php:157 +#: includes/common/payment-gateways/skrill.php:168 +#: includes/common/payment-gateways/wepay.php:143 +#: includes/public/class-mp-checkout.php:404 +msgid "Select One" +msgstr "" + +#: includes/admin/class-mp-ajax.php:511 +msgid "Oops... we could not locate any orders by that ID. Please double check your order ID and try again." +msgstr "" + +#: includes/admin/class-mp-ajax.php:482 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:166 +#: includes/multisite/class-mp-admin-multisite.php:584 +msgid "Edit Page" +msgstr "" + +#: includes/admin/class-mp-ajax.php:346 +msgid "Cancel " +msgstr "" + +#: includes/admin/class-mp-ajax.php:345 +msgid "Save " +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "Edit Description" +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "HTML Markup" +msgstr "" + +#: includes/admin/class-mp-ajax.php:333 +msgid "Plain Text Only" +msgstr "" + +#: includes/admin/class-mp-ajax.php:329 +msgid "Additional Content / Information for this Variation" +msgstr "" + +#: includes/admin/class-mp-ajax.php:317 +#: includes/admin/class-mp-products-admin.php:1762 +msgid "Allow this product to be purchased even if it's out of stock" +msgstr "" + +#: includes/admin/class-mp-ajax.php:313 +#: includes/admin/class-mp-products-admin.php:1711 +msgid "Track Product Inventory" +msgstr "" + +#: includes/admin/class-mp-ajax.php:300 +msgid "Extra Shipping Cost (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:295 +msgid "Ounces:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:294 +msgid "Pounds:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:292 +msgid "Kilograms:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:287 +#: includes/admin/class-mp-products-admin.php:1649 +msgid "Charge Shipping" +msgstr "" + +#: includes/admin/class-mp-ajax.php:273 +#: includes/admin/class-mp-products-admin.php:1623 +#: includes/admin/store-settings/class-mp-store-settings-general.php:454 +msgid "Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:272 +#: includes/admin/class-mp-products-admin.php:1622 +#: includes/admin/class-mp-products-admin.php:2090 +#: includes/admin/class-mp-products-admin.php:2408 +msgid "Special Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:271 +#: includes/admin/class-mp-products-admin.php:1625 +#: includes/admin/class-mp-products-admin.php:2092 +msgid "If you would like this product to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-ajax.php:268 +#: includes/admin/class-mp-products-admin.php:1599 +msgid "Charge Taxes (Special Rate)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:256 +#: includes/admin/class-mp-products-admin.php:1593 +#: includes/admin/class-mp-products-admin.php:2077 +#: includes/admin/class-mp-products-admin.php:2348 +msgid "End Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:255 +#: includes/admin/class-mp-products-admin.php:1589 +#: includes/admin/class-mp-products-admin.php:2072 +msgid "Start Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:1568 +msgid "Enter Sale Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:250 +#: includes/admin/class-mp-products-admin.php:1547 +msgid "Set up a Sale for this Product" +msgstr "" + +#: includes/admin/class-mp-ajax.php:206 includes/admin/class-mp-ajax.php:223 +msgid "Enter " +msgstr "" + +#: includes/admin/class-mp-ajax.php:193 +msgid "Browse" +msgstr "" + +#: includes/admin/class-mp-ajax.php:184 includes/admin/class-mp-ajax.php:192 +msgid "http://" +msgstr "" + +#: includes/admin/class-mp-ajax.php:183 +msgid "External Product URL" +msgstr "" + +#: includes/admin/class-mp-ajax.php:237 +msgid "Limit Per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:177 +#: includes/admin/class-mp-products-admin.php:1520 +msgid "Enter Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:174 +#: includes/admin/class-mp-products-admin.php:1512 +msgid "Enter SKU" +msgstr "" + +#: includes/admin/class-mp-ajax.php:173 +msgid "(Stock Keeping Unit)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:158 +msgid "Remove Image" +msgstr "" + +#: includes/admin/class-mp-ajax.php:74 +msgid "Variation Draft" +msgstr "" + +#: includes/admin/class-mp-admin.php:296 +#: includes/admin/class-mp-dashboard-widgets.php:70 +msgid "Please wait...saving in progress..." +msgstr "" + +#: includes/admin/class-mp-admin.php:295 +#: includes/admin/class-mp-dashboard-widgets.php:69 +msgid "Input is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:294 +#: includes/admin/class-mp-dashboard-widgets.php:68 +msgid "Valid number is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:292 +#: includes/admin/class-mp-dashboard-widgets.php:66 +msgid "Delete %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:291 +#: includes/admin/class-mp-dashboard-widgets.php:65 +msgid "Delete %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:290 +#: includes/admin/class-mp-dashboard-widgets.php:64 +msgid "Update inventory for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:289 +#: includes/admin/class-mp-dashboard-widgets.php:63 +msgid "Update inventory for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:288 +#: includes/admin/class-mp-dashboard-widgets.php:62 +msgid "Update price for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:287 +#: includes/admin/class-mp-dashboard-widgets.php:61 +msgid "Update prices for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:285 +#: includes/admin/class-mp-dashboard-widgets.php:59 +msgid "Creating variations, please wait..." +msgstr "" + +#: includes/admin/class-mp-admin.php:96 +msgid "The following payment gateways have been deprecated, Cubepoints, Bitpay, iDEAL, Skrill, Google Checkout. If you were using one of these gateways, please setup a new payment gateway here." +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:61 +msgid "Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:71 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:71 +#: includes/common/class-mp-gdpr.php:399 includes/common/class-mp-order.php:872 +#: includes/common/helpers.php:164 includes/public/class-mp-checkout.php:1434 +msgid "Shipping Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:66 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:66 +#: includes/common/class-mp-gdpr.php:392 includes/common/class-mp-order.php:864 +#: includes/common/helpers.php:163 includes/public/class-mp-checkout.php:1427 +msgid "Billing Address" +msgstr "פרטי המשלם" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:61 +msgid "Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:258 +msgid "Shipping Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:256 +msgid "Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:235 +msgid "Payment Method: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:79 +msgid "The dir %s not exist or not writeable" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:239 +msgid "Shop header/logo" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:233 +msgid "Choose a template" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:226 +msgid "Template Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:221 +msgid "Disable automatic creation/attachment of invoices when only free products are ordered" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:220 +msgid "Disable for free products" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:216 +msgid "Attach invoice to" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:214 +msgid "Customer Order Shipped email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:212 +msgid "Customer New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:211 +msgid "Admin New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:206 +msgid "download" +msgstr "download" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:205 +msgid "How do you want to view the PDF?" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:203 +msgid "Open the PDF in a new browser tab/window" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:202 +msgid "Download the PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:158 +msgid "Export PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:103 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:106 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:109 +msgid "You can't download this order invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:76 +msgid "Invalid Request" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:72 +msgid "Order not exist!" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:67 +msgid "Invalid ID" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1293 +msgid "Coupon added successfully" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1292 +msgid "Please enter a code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1247 +msgid "No end" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1200 +msgid "Valid Dates" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1195 +msgid "Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1027 +msgid "No Coupons found in Trash" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1026 +msgid "No Coupons Found" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1025 +msgid "Search Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1024 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1028 +msgid "View Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1023 +msgid "New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1020 +msgid "Create New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1017 +msgid "Manage Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1002 +msgid "An error occurred while removing your coupon. Please try again." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:964 +msgid "Coupon can't be applied to this cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:951 +msgid "Invalid coupon code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:794 +msgid "Help Text" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:789 +msgid "Form Title" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:783 +msgid "Coupons Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:764 +msgid "End Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:758 +msgid "Does coupon have an end date?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:696 +msgid "Select Products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:688 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:723 +#: includes/common/payment-gateways/paypal-payflow.php:402 +msgid "User" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:638 +msgid "Max Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:636 +msgid "Enter the maximum number of times this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:623 +msgid "Leave blank to allow all other coupons." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:622 +msgid "Select combinable coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:618 +msgid "Can this coupon be combined with other coupons?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:613 +msgid "Apply to each applicable item once per cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:612 +msgid "Apply to each applicable item and quantity ordered" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:609 +msgid "How should the discount amount be applied?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:605 +msgid "Discount Amount" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:604 +msgid "Value must either be a decimal number or a percentage" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:602 +msgid "If you would like to give a percentage-based discount make sure to include the percent (%) symbol. Otherwise, the discount will be applied as a fixed amount off." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:595 +msgid "Letters and Numbers only." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:589 +msgid "Coupon Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:447 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:795 +msgid "More than one code? That's OK! Just be sure to enter one at a time." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:444 +msgid "Apply Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:314 +msgid "Coupon Discounts" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:89 +msgid "1 add-on disabled" +msgid_plural "%s add-ons disabled" +msgstr[0] "" +msgstr[1] "" + +#: includes/addons/class-mp-addons-list-table.php:84 +msgid "1 add-on enabled" +msgid_plural "%s add-ons enabled" +msgstr[0] "" +msgstr[1] "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Disabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Enable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:129 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:67 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:135 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:168 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:202 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:263 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:296 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:330 +msgid "Enabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +msgid "Disable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:34 +msgid "Disable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:33 +msgid "Enable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:21 +#: includes/admin/class-mp-products-admin.php:2280 +#: includes/common/class-mp-product.php:2916 +msgid "Description" +msgstr "תיאור" + +#: includes/common/template-functions.php:2889 +#: includes/multisite/template-functions.php:407 +msgid "Popularity (Least Popular - Most Popular)" +msgstr "" + +#: includes/common/template-functions.php:2888 +#: includes/multisite/template-functions.php:406 +msgid "Popularity (Most Popular - Least Popular)" +msgstr "" + +#: includes/common/template-functions.php:2885 +#: includes/multisite/template-functions.php:403 +msgid "Name (Z-A)" +msgstr "" + +#: includes/common/template-functions.php:2884 +#: includes/multisite/template-functions.php:402 +msgid "Name (A-Z)" +msgstr "" + +#: includes/common/template-functions.php:2883 +#: includes/multisite/template-functions.php:401 +msgid "Release Date (Oldest to Latest)" +msgstr "" + +#: includes/common/template-functions.php:2882 +#: includes/multisite/template-functions.php:400 +msgid "Release Date (Latest to Oldest)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:284 +msgid "paid" +msgstr "שולם" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "One Time Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Customer Counter" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Daily Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:182 +msgid "For the most accurate rates, please select the appropriate pick up type for your business." +msgstr "" + +#: includes/admin/class-mp-admin.php:374 +msgid "Page saved." +msgstr "העמוד נשמר" + +#: includes/admin/class-mp-admin.php:370 +msgid "Custom field deleted." +msgstr "השדה הנבחר נמחק" + +#: includes/admin/class-mp-admin.php:369 +msgid "Custom field updated." +msgstr "השדה עודכן בהצלחה" + +#: includes/common/payment-gateways/_bitpay.php:541 +msgid "%s - The payment request expired, - %s" +msgstr "%s - בקשת התשלום נדחתה, - %s" + +#: includes/common/payment-gateways/_bitpay.php:536 +msgid "%s - The payment not credited in merchants bitpay account, action required. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:252 +msgid "If enabled, you will recieve an email for each status update on payment." +msgstr "אם הוא מופעל, אתה תקבל הודעת דוא\"ל עבור כל עדכון סטטוס בתשלום." + +#: includes/common/payment-gateways/_bitpay.php:240 +msgid "Speed at which the bitcoin transaction registers as \"confirmed\" to the store. This overrides your merchant settings on the Bitpay website." +msgstr "מהירות שבה עסקת Bitcoin רושמת כ\" אישר \"לחנות. זו עוקפת את הגדרות הסוחר שלך באתר Bitpay." + +#: includes/common/payment-gateways/_bitpay.php:238 +msgid "Transaction Speed" +msgstr "מהירות Transaction " + +#: includes/common/payment-gateways/_bitpay.php:244 +msgid "Low" +msgstr "נמוך" + +#: includes/common/payment-gateways/_bitpay.php:243 +msgid "Medium" +msgstr "בינוני" + +#: includes/common/payment-gateways/_bitpay.php:242 +msgid "High" +msgstr "גבוה" + +#: includes/common/payment-gateways/_bitpay.php:177 +#: includes/common/payment-gateways/_bitpay.php:517 +#: includes/common/payment-gateways/_bitpay.php:522 +msgid "%s - The payment request is under process. Bitpay invoice status - %s" +msgstr "%s - The payment request is under process. Bitpay invoice status - %s" + +#: includes/common/payment-gateways/_bitpay.php:175 +#: includes/common/payment-gateways/_bitpay.php:527 +msgid "%s - The payment request has been processed - %s" +msgstr "%s - The payment request has been processed - %s" + +#: includes/common/payment-gateways/_bitpay.php:150 +#: includes/common/payment-gateways/_bitpay.php:294 +msgid "Incorrect order invoice, please contact site administrator" +msgstr "חשבונית סדר שגוי, אנא צור קשר עם מנהל אתר" + +#: includes/common/payment-gateways/_bitpay.php:141 +msgid "We could not verify order invoice details, please try again or contact site administrator for help" +msgstr "לא הצלחנו לאמת את פרטי חשבונית ההזמנה, נסה שוב או פנה למנהל האתר לקבלת עזרה" + +#: includes/common/payment-gateways/simplify.php:81 +msgid "Login to Simplify to get your API credentials. Enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:605 +#: includes/common/payment-gateways/paypal-express.php:647 +msgid "Express Checkout is PayPal's premier checkout solution, which streamlines the checkout process for buyers and keeps them on your site after making a purchase. Unlike PayPal Pro, there are no additional fees to use Express Checkout, though you may need to do a free upgrade to a business account. More Info »" +msgstr "" + +#. Plugin URI of the plugin/theme +msgid "https://premium.wpmudev.org/project/e-commerce/" +msgstr "https://premium.wpmudev.org/project/e-commerce/" + +#. Author of the plugin/theme +msgid "WPMU DEV" +msgstr "WPMU DEV" + +#: includes/admin/class-mp-orders-admin.php:541 +#: includes/admin/class-mp-orders-admin.php:543 +msgid "Tracking Number" +msgstr "מספר מעקב" + +#: includes/common/class-mp-order.php:805 +#: includes/common/payment-gateways/stripe.php:336 +#: includes/public/class-mp-checkout.php:402 +msgid "Country" +msgstr "מדינה" + +#: includes/common/class-mp-order.php:784 +#: includes/common/payment-gateways/stripe.php:338 +msgid "City" +msgstr "עיר" + +#: includes/common/class-mp-order.php:780 +msgid "Address 2" +msgstr "כתובת נוספת" + +#: includes/common/payment-gateways/stripe.php:340 +msgid "Address" +msgstr "כתובת" + +#: includes/common/class-mp-cart.php:752 includes/common/class-mp-gdpr.php:378 +msgid "Order Total" +msgstr "סה״כ הזמנה" + +#: includes/admin/class-mp-orders-admin.php:360 +msgid "Payment Total" +msgstr "סה״כ לתשלום" + +#: includes/admin/class-mp-orders-admin.php:347 +msgid "Transaction ID" +msgstr "מספר העברה" + +#: includes/common/payment-gateways/wepay.php:207 +msgid "The WePay Card Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:186 +#: includes/common/shipping-modules/mp-fedex.php:283 +msgid "Account ID" +msgstr "מספר חשבון" + +#: includes/common/payment-gateways/wepay.php:179 +msgid "Access Token" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:172 +msgid "Client Secret" +msgstr "שאלה הסודית של הלקוח" + +#: includes/common/payment-gateways/wepay.php:165 +msgid "Client ID" +msgstr "מספר לקוח" + +#: includes/common/payment-gateways/wepay.php:159 +msgid "You must login to WePay to get your API credentials. Make sure to check \"Tokenize credit cards\" option under \"API Keys\" section of your WePay app." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:154 +msgid "When in live mode it is recommended to use SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:148 +msgid "Donation" +msgstr "תרומה" + +#: includes/common/payment-gateways/wepay.php:147 +msgid "Event" +msgstr "ארוע" + +#: includes/common/payment-gateways/wepay.php:146 +msgid "Personal" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:145 +msgid "Service" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:144 +msgid "Goods" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:141 +msgid "Choose type of payments" +msgstr "בחר את אופן התשלום." + +#: includes/common/payment-gateways/wepay.php:140 +msgid "Checkout Type" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:134 +msgid "Staging" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:131 +msgid "Choose STAGING if you have registered the app on stage.wepay.com, or PRODUCTION if you registered on www.wepay.com" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:36 +#: includes/common/payment-gateways/wepay.php:299 +msgid "WePay" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:366 +msgid "Rejected - A payment was rejected." +msgstr "התשלום נדחה." + +#: includes/common/payment-gateways/_payway.php:360 +msgid "Failed - A payment was rejected due to an error." +msgstr "התשלום נדחה עקב שגיאה." + +#: includes/common/payment-gateways/_payway.php:342 +msgid "PayWay balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:298 +msgid "Full path of the cacerts.crt file" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:284 +msgid "User Name" +msgstr "שם משתמש" + +#: includes/common/payment-gateways/_payway.php:277 +msgid "Biller Code" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:273 +msgid "Log Directory" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:266 +msgid "Encryption Key" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:60 +msgid "Your PayWay transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:40 +#: includes/common/payment-gateways/_payway.php:41 +msgid "PayWay" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:862 +msgid "You must register this application with PayPal using your business account login to get an Application ID that will work with your API credentials. A bit of a hassle, but worth it! In the near future we will be looking for ways to simplify this process. Register then submit your application while logged in to the developer portal. Note that you do not need an Application ID for testing in sandbox mode. More Information »" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:818 +#: includes/common/payment-gateways/paypal-chained-payments.php:840 +#: includes/common/payment-gateways/paypal-express.php:705 +msgid "You must login to PayPal and create an API signature to get your credentials. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:378 +msgid "Use Payflow payment gateway to accept online payments using your Internet merchant account and processing network. PayPal Payflow Pro is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:595 +msgid "Tags Only" +msgstr "תגיות בלבד" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:594 +msgid "Category Only" +msgstr "קטגוריות בלבד" + +#: includes/admin/class-mp-shortcode-builder.php:795 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:593 +msgid "Category & Tags" +msgstr "קטגוריות & תגיות" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:591 +msgid "Relate Products By" +msgstr "יחס מוצרים ע״פ" + +#: includes/admin/class-mp-shortcode-builder.php:1008 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:455 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:751 +msgid "Right" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1007 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:454 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:749 +msgid "Left" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1009 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:750 +msgid "Center" +msgstr "" + +#: marketpress.php:273 +msgid "Orders from your e-commerce store." +msgstr "" + +#: marketpress.php:231 +msgid "Products for your e-commerce store." +msgstr "" + +#: marketpress.php:222 +msgid "Edit Product" +msgstr "ערוך מוצר" + +#. Description of the plugin/theme +msgid "The complete WordPress ecommerce plugin - works perfectly with BuddyPress and Multisite too to create a social marketplace, where you can take a percentage! Activate the plugin, adjust your settings then add some products to your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:272 +msgid "Beside" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:271 +msgid "Above" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:268 +msgid "Pin Count" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:261 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:287 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:318 +msgid "All View" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:260 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:286 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:317 +msgid "Single View" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:259 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:285 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:316 +msgid "Off" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:578 +msgid "Related Product Limit" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:681 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1201 +msgid "Applies To" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:685 +msgid "All Products" +msgstr "כל המוצרים" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:487 +msgid "The label shown for the tax line item in the cart. Taxes, VAT, GST, etc." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:485 +msgid "Tax Label" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:81 +msgid "Apply" +msgstr "הוסף" + +#: includes/admin/class-mp-admin.php:192 +msgid "MarketPress Instructions" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1954 +#: includes/admin/class-mp-products-admin.php:2194 includes/common/data.php:62 +#: includes/common/helpers.php:150 +msgid "Taxes" +msgstr "מיסים" + +#: includes/admin/class-mp-products-admin.php:1417 +#: includes/common/class-mp-product.php:2900 +msgid "Related Products" +msgstr "מוצרים נלווים" + +#: includes/common/shipping-modules/mp-usps.php:282 +#: includes/common/shipping-modules/mp-usps.php:316 +msgid "@ Max" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "(3-5 days)" +msgstr "(3-5 ימים)" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "Priority Mail Express International Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:92 +msgid "Priority Mail Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:171 +#: includes/common/shipping-modules/mp-pickup.php:247 +msgid "In Store" +msgstr "בחנות" + +#: includes/common/shipping-modules/mp-pickup.php:159 +msgid "Pickup Fee" +msgstr "דמי איסוף" + +#: includes/common/shipping-modules/mp-pickup.php:141 +msgid "This option allows your customers to indicate that they will pick-up their order at your place of business." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:60 +#: includes/common/shipping-modules/mp-pickup.php:76 +#: includes/common/shipping-modules/mp-pickup.php:176 +msgid "Pickup Instructions" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:24 +#: includes/common/shipping-modules/mp-pickup.php:254 +msgid "Pickup" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping - 0.00" +msgstr "משלוח חינם - 0.00" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:256 +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:440 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping" +msgstr "משלוח חינם" + +#: includes/common/shipping-modules/mp-fedex.php:309 +msgid "Your Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:301 +msgid "Station" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:300 +msgid "Request Courier" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:299 +msgid "Drop Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:298 +msgid "Business Service Center" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:297 +msgid "Regular Pickup" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:135 +#: includes/common/shipping-modules/mp-fedex.php:264 +msgid "Production" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:207 +msgid "Simplify Commerce by MasterCard" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:104 +msgid "When in live mode, although it is not required, Simplify recommends you have an SSL certificate." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:183 +#: includes/common/payment-gateways/simplify.php:87 +msgid "Public Key" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:175 +#: includes/common/payment-gateways/simplify.php:94 +msgid "Private Key" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:71 +msgid "Simplify helps merchants to accept online payments from Mastercard, Visa, American Express, Discover, JCB, and Diners Club cards. It's that simple. We offer a merchant account and payment gateway in a single, secure package so you can concentrate on what really matters to your business. Only supports USD currently." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:267 +msgid "%1$s" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:151 +msgid "The Simplify Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/simplify.php:18 +msgid "Simplify" +msgstr "" + +#: includes/common/payment-gateways/pin.php:255 +msgid "%1$s Card %2$s" +msgstr "%1$s כרטיס %2$s" + +#: includes/common/payment-gateways/pin.php:211 +msgid "The PIN Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:187 +msgid "Selecting a currency other than currency supported by PIN may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/pin.php:164 +msgid "You must login to PIN to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/pin.php:158 +msgid "When in live mode PIN recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/pin.php:45 +#: includes/common/payment-gateways/pin.php:286 +msgid "PIN" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:830 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:534 +#: includes/common/payment-gateways/paypal-express.php:865 +msgid "The payment is pending" +msgstr "התשלום בתהליך" + +#: includes/common/payment-gateways/paymill.php:235 +msgid "The Paymill Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:169 +msgid "You must login to Paymill to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:45 +#: includes/common/payment-gateways/paymill.php:308 +msgid "Paymill" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:90 +msgid "Invalid cardholder" +msgstr "מחזיק כרטיס לא מורשה" + +#: includes/common/payment-gateways/paymill.php:89 +msgid "Card is no longer valid or has expired" +msgstr "כרטיס לא בתוקף" + +#: includes/common/payment-gateways/paymill.php:88 +msgid "Please enter a valid Card CVC" +msgstr "אנא הכנס את שלוש הספרות המופיעות בגב הכרטיס (CVC)" + +#: includes/common/payment-gateways/paymill.php:87 +msgid "Please choose a valid Expiration Date." +msgstr "אנא בחר תאריך תפוגה בר תוקף." + +#: includes/common/payment-gateways/skrill.php:99 +#: includes/common/payment-gateways/skrill.php:100 +msgid "Skrill (Moneybookers)" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:24 +#: includes/common/shipping-modules/mp-weight-rate.php:292 +msgid "Weight Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:303 +msgid "USPS Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:270 +msgid "USPS Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:264 +msgid "USPS Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:145 +msgid "Flat Rate Large" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:140 +msgid "Flat Rate Medium 2" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:135 +msgid "Flat Rate Medium 1" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:130 +msgid "Flat Rate Small" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:118 +msgid "First Class International Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:114 +msgid "Priority Mail International Small Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:112 +msgid "Priority Mail International Medium Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:110 +msgid "Priority Mail International Large Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:108 +msgid "Priority Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:106 +msgid "Express Mail International Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:104 +msgid "Express Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:98 +msgid "Library Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:96 +msgid "Media Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "First-Class Mail Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:90 +msgid "Priority Mail Small Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:88 +msgid "Priority Mail Medium Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +#: includes/common/shipping-modules/mp-usps.php:88 +#: includes/common/shipping-modules/mp-usps.php:90 +#: includes/common/shipping-modules/mp-usps.php:92 +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "(2-4 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +msgid "Priority Mail Large Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "(2-4) days" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "Priority Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "Express Mail Sunday/Holiday Delivery Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:80 +msgid "Express Mail Flat Rate Boxes Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:78 +msgid "Express Mail Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:76 +msgid "Express Mail Sunday/Holiday Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:74 +msgid "Express Mail Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:72 +#: includes/common/shipping-modules/mp-usps.php:74 +#: includes/common/shipping-modules/mp-usps.php:76 +#: includes/common/shipping-modules/mp-usps.php:78 +#: includes/common/shipping-modules/mp-usps.php:80 +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "(1-2 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:72 +msgid "Express Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:67 +#: includes/common/shipping-modules/mp-usps.php:902 +msgid "USPS" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:534 +msgid "UPS (beta)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:166 +msgid "Required if using negotiated rates" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "Worldwide Express Plus" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "(Scheduled)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "Standard" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "(2-5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "Worldwide Expedited" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:54 +msgid "Worldwide Express" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "2nd Day Air AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "(1 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "Next Day Air Early AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "Next Day Air Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "3 Day Select" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:49 +msgid "Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:48 +msgid "2nd Day Air" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "Next Day Air" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:475 +#: includes/common/shipping-modules/mp-ups.php:43 +msgid "UPS" +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:27 +#: includes/common/shipping-modules/mp-table-rate.php:318 +msgid "Table Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:71 +#: includes/common/shipping-modules/mp-table-quantity.php:77 +msgid "Shipping Cost: " +msgstr "עלות משלוח" + +#: includes/common/shipping-modules/mp-table-quantity.php:70 +#: includes/common/shipping-modules/mp-table-quantity.php:76 +msgid "If quantity is greater than:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:66 +msgid "Each band must be a higher price than the one above it." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:56 +msgid "Number of Bands:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:53 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Each layer must be a higher quantity than the previous." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:51 +msgid "Table Quantity Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:31 +msgid "Table Quantity" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:135 +#: includes/common/shipping-modules/mp-table-rate.php:174 +#: includes/common/shipping-modules/mp-weight-rate.php:189 +msgid "European Union" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:123 +#: includes/common/shipping-modules/mp-table-rate.php:162 +#: includes/common/shipping-modules/mp-weight-rate.php:177 +msgid "United States" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:111 +#: includes/common/shipping-modules/mp-table-rate.php:151 +#: includes/common/shipping-modules/mp-weight-rate.php:166 +msgid "In Country" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:146 +#: includes/common/shipping-modules/mp-table-rate.php:186 +#: includes/common/shipping-modules/mp-weight-rate.php:201 +msgid "International" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:101 +#: includes/common/shipping-modules/mp-table-rate.php:141 +#: includes/common/shipping-modules/mp-weight-rate.php:156 +msgid "Canada" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:92 +#: includes/common/shipping-modules/mp-table-rate.php:132 +#: includes/common/shipping-modules/mp-weight-rate.php:147 +msgid "Hawaii and Alaska" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:83 +#: includes/common/shipping-modules/mp-table-rate.php:123 +#: includes/common/shipping-modules/mp-weight-rate.php:138 +msgid "Lower 48 States" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:64 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping." +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:25 +#: includes/common/shipping-modules/mp-flat-rate.php:223 +msgid "Flat Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:761 +msgid "FedEx (beta)" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Centimeters" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Inches" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1676 +#: includes/admin/class-mp-setup-wizard.php:547 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:166 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +msgid "Kilograms" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:103 +msgid " %1$s - %2$s" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:358 +msgid "Max Weight per Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:356 +msgid "Box Dimensions" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:354 +msgid "Box Name" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:344 +msgid "Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:343 +msgid "For each box defined enter the maximum weight it can contain." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:341 +msgid "Enter your standard box sizes as LengthxWidthxHeight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:386 +#: includes/common/shipping-modules/mp-ups.php:193 +#: includes/common/shipping-modules/mp-usps.php:234 +#: includes/common/shipping-modules/mp-usps.php:338 +msgid "Standard Boxes and Weight Limits" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:328 +msgid "Handling Charge per Interntional Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:294 +msgid "Handling Charge per Domestic Shipment " +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:388 +#: includes/common/shipping-modules/mp-ups.php:196 +#: includes/common/shipping-modules/mp-usps.php:237 +msgid "Add Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "(Next Day)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +msgid "Europe First International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:62 +msgid "International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:61 +#: includes/common/shipping-modules/mp-fedex.php:62 +#: includes/common/shipping-modules/mp-ups.php:54 +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "(1-3 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:61 +msgid "International First" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "(5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "International Economy" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "(2-7 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "Smart Post" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:55 +#: includes/common/shipping-modules/mp-ups.php:49 +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "(1-5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:55 +msgid "Ground Home Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "(1-7 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "Fedex Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:53 +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "(3 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:53 +msgid "Fedex Express Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +#: includes/common/shipping-modules/mp-ups.php:48 +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "(2 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +msgid "Fedex 2 Day" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "(2 Days am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "Fedex 2 Day AM" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "(1 Day)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +msgid "Standard Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "(1 Day am )" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "Priority Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "(1 Day am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "First Overnight" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:476 +#: includes/common/shipping-modules/mp-fedex.php:31 +msgid "FedEx" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:270 +#: includes/common/payment-gateways/simplify.php:179 +#: includes/common/payment-gateways/stripe.php:365 +msgid "%1$s Card ending in %2$s - Expires %3$s" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:259 +#: includes/common/payment-gateways/pin.php:238 +#: includes/common/payment-gateways/simplify.php:171 +msgid "%s Store Purchase - Order ID: %s, Email: %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:266 +msgid "You must login to Stripe to get your API credentials. You can enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:261 +msgid "When in live mode Stripe recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:311 +msgid "The Stripe Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:263 +#: includes/common/payment-gateways/paymill.php:122 +#: includes/common/payment-gateways/stripe.php:222 +msgid "Card Number" +msgstr "מספר כרטיס." + +#: includes/common/payment-gateways/paymill.php:86 +msgid "Please enter a valid Credit Card Number." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:45 +#: includes/common/payment-gateways/stripe.php:433 +msgid "Stripe" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:750 +msgid "Sets the background color for the payment page. By default, the color is white." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:745 +msgid "Sets the background color for the header of the payment page. By default, the color is white." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:740 +msgid "Sets the border color around the header of the payment page. The border is a 2-pixel perimeter around the header space, which is 750 pixels wide by 90 pixels high. By default, the color is black." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:735 +msgid "URL for an image you want to appear at the top left of the payment page. The image has a maximum size of 750 pixels wide by 90 pixels high. PayPal recommends that you provide an image that is stored on a secure (https) server. If you do not specify an image, the business name is displayed." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:857 +#: includes/common/payment-gateways/paypal-express.php:1131 +msgid "The payment is pending because it is part of an order that has been authorized but not settled." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:853 +#: includes/common/payment-gateways/paypal-express.php:1127 +msgid "The payment is pending because it has been authorized but not settled. You must capture the funds first." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:847 +#: includes/common/payment-gateways/paypal-express.php:1120 +msgid "You denied the payment when it was marked as pending." +msgstr "התכחשת לתשלום כשהוא היה עדיין בתהליך." + +#: includes/common/payment-gateways/paypal-express.php:837 +#: includes/common/payment-gateways/paypal-express.php:1108 +msgid "A reversal has occurred on this transaction due to an unknown reason." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:836 +#: includes/common/payment-gateways/paypal-express.php:1107 +msgid "A reversal has occurred on this transaction because you have given the customer a refund." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:835 +#: includes/common/payment-gateways/paypal-express.php:1106 +msgid "A reversal has occurred on this transaction due to a complaint about the transaction from your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:834 +#: includes/common/payment-gateways/paypal-express.php:1105 +msgid "A reversal has occurred on this transaction due to your customer triggering a money-back guarantee." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:833 +#: includes/common/payment-gateways/paypal-express.php:1104 +msgid "A reversal has occurred on this transaction due to a chargeback by your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:1101 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer:" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:826 +#: includes/common/payment-gateways/paypal-express.php:1097 +msgid "A payment has been accepted." +msgstr "תשלום התקבל" + +#: includes/common/payment-gateways/paypal-express.php:818 +#: includes/common/payment-gateways/paypal-express.php:1087 +msgid "The transaction has not terminated, e.g. an authorization may be awaiting completion." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:531 +#: includes/common/payment-gateways/paypal-express.php:810 +#: includes/common/payment-gateways/paypal-express.php:1077 +msgid "The payment has failed. This happens only if the payment was made from your customer's bank account." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:806 +#: includes/common/payment-gateways/paypal-express.php:1072 +msgid "An authorization for this transaction has been voided." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:802 +#: includes/common/payment-gateways/paypal-express.php:1067 +msgid "The authorization period for this payment has been reached." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:798 +#: includes/common/payment-gateways/paypal-express.php:1062 +msgid "A reversal has been canceled; for example, when you win a dispute and the funds for the reversal have been returned to you." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:499 +#: includes/common/payment-gateways/paypal-express.php:1163 +msgid "PayPal Express Checkout" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:798 +msgid "Gateway Settings Page Message" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:725 +msgid "Signature" +msgstr "חתימה." + +#: includes/common/payment-gateways/eway31.php:506 +#: includes/common/payment-gateways/eway31.php:533 +#: includes/common/shipping-modules/mp-fedex.php:276 +msgid "API Password" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:773 +msgid "Enter a percentage of all store sales to collect as a fee. Decimals allowed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:757 +msgid "Using PayPal Chained Payments allows you as the multisite network owner to collect a predefined fee or percentage of all sales on network MarketPress stores! This is invisible to the customers who purchase items in a store, and all PayPal fees will be charged to the store owner. To use this option you must create API credentials, and you should make all other gateways unavailable or limited above." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:338 +msgid "Please be aware that we will deduct a ?% fee from the total of each transaction in addition to any fees PayPal may charge you. If for any reason you need to refund a customer for an order, please contact us with a screenshot of the refund receipt in your PayPal history as well as the Transaction ID of our fee deduction so we can issue you a refund. Thank you!" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:698 +#: includes/common/payment-gateways/paypal-express.php:149 +msgid "There was a problem connecting to PayPal. Please try again." +msgstr "היתה בעיה בהתחברות ל- PayPal. בבקשה נסה שוב." + +#: includes/common/payment-gateways/paypal-chained-payments.php:470 +#: includes/common/payment-gateways/paypal-express.php:1053 +msgid "There was a problem verifying the IPN string with PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:310 +msgid "There was a problem connecting to PayPal to check the status of your purchase. Please check the status of your order here »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:539 +#: includes/common/payment-gateways/paypal-chained-payments.php:254 +#: includes/common/payment-gateways/paypal-express.php:1139 +msgid "The payment is pending." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:251 +#: includes/common/payment-gateways/paypal-chained-payments.php:531 +#: includes/common/payment-gateways/paypal-express.php:862 +#: includes/common/payment-gateways/paypal-express.php:1136 +msgid "The payment is pending for an unknown reason. For more information, contact PayPal customer service." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:250 +#: includes/common/payment-gateways/paypal-chained-payments.php:530 +#: includes/common/payment-gateways/paypal-express.php:861 +#: includes/common/payment-gateways/paypal-express.php:1135 +msgid "The payment is pending because you are not yet verified. You must verify your account before you can accept this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:249 +#: includes/common/payment-gateways/paypal-chained-payments.php:529 +#: includes/common/payment-gateways/paypal-express.php:860 +#: includes/common/payment-gateways/paypal-express.php:1134 +msgid "The payment is pending because it was made via credit card and you must upgrade your account to Business or Premier status in order to receive the funds. It can also mean that you have reached the monthly limit for transactions on your account." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:248 +#: includes/common/payment-gateways/paypal-chained-payments.php:528 +#: includes/common/payment-gateways/paypal-express.php:859 +#: includes/common/payment-gateways/paypal-express.php:1133 +msgid "The payment is pending because it was made to an email address that is not yet registered or confirmed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:247 +#: includes/common/payment-gateways/paypal-chained-payments.php:527 +#: includes/common/payment-gateways/paypal-express.php:858 +#: includes/common/payment-gateways/paypal-express.php:1132 +msgid "The payment is pending while it is being reviewed by PayPal for risk." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:246 +#: includes/common/payment-gateways/paypal-chained-payments.php:526 +#: includes/common/payment-gateways/paypal-express.php:856 +#: includes/common/payment-gateways/paypal-express.php:1130 +msgid "You do not have a balance in the currency sent, and you do not have your Payment Receiving Preferences set to automatically convert and accept this payment. You must manually accept or deny this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:245 +#: includes/common/payment-gateways/paypal-chained-payments.php:525 +#: includes/common/payment-gateways/paypal-express.php:855 +#: includes/common/payment-gateways/paypal-express.php:1129 +msgid "The payment is pending because you hold a non-U.S. account and do not have a withdrawal mechanism. You must manually accept or deny this payment from your Account Overview." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:244 +#: includes/common/payment-gateways/paypal-chained-payments.php:524 +#: includes/common/payment-gateways/paypal-express.php:854 +#: includes/common/payment-gateways/paypal-express.php:1128 +msgid "The payment is pending because it was made by an eCheck that has not yet cleared." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:243 +#: includes/common/payment-gateways/paypal-chained-payments.php:523 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:236 +#: includes/common/payment-gateways/paypal-chained-payments.php:516 +msgid "The transaction was rejected by the receiver (you)." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:510 +#: includes/common/payment-gateways/paypal-express.php:843 +#: includes/common/payment-gateways/paypal-express.php:1115 +msgid "You refunded the payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:224 +#: includes/common/payment-gateways/paypal-chained-payments.php:504 +msgid "The transaction is in progress." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:212 +#: includes/common/payment-gateways/paypal-chained-payments.php:491 +#: includes/common/payment-gateways/paypal-express.php:814 +#: includes/common/payment-gateways/paypal-express.php:1082 +msgid "The payment has been partially refunded." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:202 +#: includes/common/payment-gateways/paypal-chained-payments.php:481 +msgid "PayPal balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:177 +msgid "There was a problem connecting to PayPal to setup your purchase. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:122 +msgid "Your PayPal transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:50 +#: includes/common/payment-gateways/paypal-chained-payments.php:53 +#: includes/common/payment-gateways/paypal-chained-payments.php:732 +#: includes/common/payment-gateways/paypal-express.php:500 +#: includes/common/payment-gateways/paypal-express.php:938 +msgid "PayPal" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:48 +#: includes/common/payment-gateways/paypal-chained-payments.php:730 +#: includes/common/payment-gateways/paypal-chained-payments.php:756 +#: includes/common/payment-gateways/paypal-chained-payments.php:873 +msgid "PayPal Chained Payments" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:59 +#: includes/common/payment-gateways/paypal-payflow.php:467 +msgid "PayPal Payflow Pro" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:378 +msgid "Chargeback - A payment was reversed due to a chargeback. The funds have been removed from your account balance and returned to the buyer." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:372 +msgid "Failed - The Credit Card or Direct Debit transaction was declined." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:354 +#: includes/common/payment-gateways/skrill.php:366 +msgid "Cancelled - The payment was cancelled manually by the sender in their online account history or was auto-cancelled after 14 days pending." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:360 +msgid "Pending - The payment is pending. It can take 2-3 days for bank transfers to complete." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:349 +#: includes/common/payment-gateways/skrill.php:354 +msgid "Processed - The payment has been completed, and the funds have been added successfully to your Moneybookers account balance." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:189 +msgid "Shown to the customer on the confirmation screen - the end step of the process - a note, confirmation number, or any other message. Line breaks <br> may be used for longer messages." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:188 +msgid "Confirmation Note (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:183 +msgid "The URL of the logo which you would like to appear at the top of the payment form. The logo must be accessible via HTTPS otherwise it will not be shown. For best integration results we recommend that you use a logo with dimensions up to 200px in width and 50px in height." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:182 +msgid "Logo Image (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:177 +msgid "The name of this store, which will be shown on the gateway. If no value is submitted, the account email will be shown as the recipient of the payment." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:176 +msgid "Merchant Name (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:165 +msgid "Language" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:368 +#: includes/common/payment-gateways/authorizenet-aim.php:262 +#: includes/common/payment-gateways/eway.php:363 +#: includes/common/payment-gateways/eway31.php:471 +#: includes/common/payment-gateways/mollie.php:91 +#: includes/common/payment-gateways/paymill.php:193 +#: includes/common/payment-gateways/paypal-chained-payments.php:356 +#: includes/common/payment-gateways/paypal-express.php:688 +#: includes/common/payment-gateways/paypal-payflow.php:432 +#: includes/common/payment-gateways/pin.php:186 +#: includes/common/payment-gateways/skrill.php:152 +#: includes/common/payment-gateways/stripe.php:288 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:104 +msgid "Currency" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:359 +#: includes/common/payment-gateways/skrill.php:143 +msgid "Secret Word" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:261 +msgid "Order ID:" +msgstr "מספר הזמנה:" + +#: includes/common/payment-gateways/skrill.php:234 +msgid "Complete Checkout" +msgstr "השלמת הרכישה" + +#: includes/common/payment-gateways/skrill.php:204 +msgid "Your Moneybookers transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:155 +msgid "This is the email text to send to those who have made manual payment checkouts. You should include your manual payment instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:257 +#: includes/common/payment-gateways/manual-payments.php:128 +msgid "Record payments manually, such as by Cash, Check, or EFT." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:71 +msgid "Manual/Invoice" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:648 +#: includes/common/payment-gateways/manual-payments.php:35 +#: includes/common/payment-gateways/manual-payments.php:36 +msgid "Manual Payment" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:34 +#: includes/common/payment-gateways/manual-payments.php:163 +msgid "Manual Payments" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:288 +msgid "iDEAL Simulator (for testing)" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:287 +msgid "ABN Amro Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:286 +msgid "Friesland Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:285 +msgid "Rabobank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:284 +msgid "ING Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:279 +msgid "Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:270 +msgid "To make it easier to pay for online products and services, the Dutch banking community has developed the iDEAL online payment method. iDEAL allows online payments to be made using online banking in EUR only." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:247 +#: includes/common/payment-gateways/_payway.php:199 +#: includes/common/payment-gateways/manual-payments.php:68 +msgid "Invoiced" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1016 +msgid "Coupon" +msgstr "קופון" + +#: includes/common/payment-gateways/_ideal.php:77 +#: includes/common/payment-gateways/_ideal.php:250 +#: includes/common/payment-gateways/_payway.php:202 +msgid "iDEAL" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:76 +msgid "iDEAL (beta)" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:327 +msgid "Merchant Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:293 +#: includes/common/payment-gateways/_payway.php:302 +#: includes/common/payment-gateways/payfast.php:324 +msgid "Merchant ID" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:462 +msgid "eWay Rapid 3.0 Payments lets merchants recieve credit card payments through eWay without need for users to leave the shop. Note this gateway requires a valid SSL certificate configured for this site." +msgstr "" + +#: includes/common/payment-gateways/eway.php:452 +msgid "There was a problem connecting to eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/eway.php:432 +#: includes/common/payment-gateways/eway.php:437 +msgid "The url of the image can be hosted on your website and pass the secure https:// path of the image to be displayed at the top of the website. This is the second image block on the webpage and is restricted to 960px X 65px. A default secure image is used if none is supplied." +msgstr "" + +#: includes/common/payment-gateways/eway.php:431 +#: includes/common/payment-gateways/eway.php:436 +msgid "Company Logo (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:427 +msgid "The page footer text can be customised and populated below the customer's order details. Useful for contact information." +msgstr "" + +#: includes/common/payment-gateways/eway.php:426 +msgid "Page Footer (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:421 +msgid "Page Description (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:417 +#: includes/common/payment-gateways/eway.php:422 +msgid "This value is used to populate the browsers title bar at the top of the screen." +msgstr "" + +#: includes/common/payment-gateways/eway.php:416 +msgid "Page Title (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:412 +msgid "This will be displayed as the company the customer is purchasing from, including this is highly recommended." +msgstr "" + +#: includes/common/payment-gateways/eway.php:411 +msgid "Company Name" +msgstr "" + +#: includes/common/payment-gateways/eway.php:394 +msgid "Customer ID" +msgstr "" + +#: includes/common/payment-gateways/eway.php:381 +#: includes/common/payment-gateways/eway31.php:488 +msgid "Live API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway.php:371 +#: includes/common/payment-gateways/eway31.php:479 +msgid "Gateway Mode" +msgstr "" + +#: includes/common/payment-gateways/eway.php:354 +msgid "The Hosted Page is a webpage hosted on eWAY's side eliminating the need for merchants to capture, transmit or store credit card numbers. At the checkout time the merchant automatically redirects the customer to the Hosted Page where they would enter their details and have the transaction processed. Upon completion of the transaction the customer is redirected back to the MarketPress checkout confirmation page." +msgstr "" + +#: includes/common/payment-gateways/eway.php:314 +msgid "There was a problem with your credit card information: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:300 +msgid "Paid - The card has been processed - %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:253 +msgid "There was a problem setting up the transaction with eWay: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:245 +#: includes/common/payment-gateways/eway.php:289 +msgid "There was a problem parsing the response from eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:159 +#: includes/common/payment-gateways/eway.php:189 +#: includes/common/payment-gateways/paypal-chained-payments.php:634 +#: includes/common/payment-gateways/paypal-express.php:322 +#: includes/common/payment-gateways/paypal-express.php:473 +msgid "%s Store Purchase - Order ID: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:147 +#: includes/common/payment-gateways/eway.php:462 +msgid "eWay Shared Payments" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:214 +msgid "This is the email text to send to those who have made CubePoints checkouts. You should include your CubePoints instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:212 +#: includes/common/payment-gateways/free_orders.php:188 +#: includes/common/payment-gateways/manual-payments.php:154 +msgid "Order Confirmation Email" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:207 +#: includes/common/payment-gateways/manual-payments.php:149 +msgid "Confirmation User Instructions" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:202 +#: includes/common/payment-gateways/manual-payments.php:144 +msgid "User Instructions" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:198 +#: includes/common/payment-gateways/free_orders.php:170 +#: includes/common/payment-gateways/manual-payments.php:139 +msgid "Enter a public name for this payment method that is displayed to users - No HTML" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:532 +#: includes/common/payment-gateways/_cubepoints.php:196 +#: includes/common/payment-gateways/free_orders.php:169 +#: includes/common/payment-gateways/manual-payments.php:138 +msgid "Method Name" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:187 +msgid "Accept CubePoints as payment(requires the CubePoints plugin)." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:140 +msgid "Sorry, but you do not appear to have enough points to complete this purchase!" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:124 +msgid "%s Store Purchase" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:79 +#: includes/common/payment-gateways/_cubepoints.php:171 +msgid "Your current points: " +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:133 +#: includes/common/payment-gateways/_cubepoints.php:197 +msgid "CubePoints" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:344 +msgid "Authorize.net AIM Checkout" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:331 +msgid "Custom API URL" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:332 +msgid "Many other gateways have Authorize.net API emulators. To use one of these gateways input their API post url here." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:322 +msgid "Request a delimited response from the payment gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:316 +msgid "Security: MD5 Hash" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:317 +msgid "The payment gateway generated MD5 hash value that can be used to authenticate the transaction response. Not needed because responses are returned using an SSL connection." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:306 +msgid "Customer Receipt Email Footer" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:296 +msgid "Customer Receipt Email Header" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:297 +#: includes/common/payment-gateways/paypal-payflow.php:446 +msgid "This text will appear as the header of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:282 +msgid "Encapsulation Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:283 +msgid "Authorize.net default is blank. Otherwise, get this from your credit card processor. If the transactions are going through, but getting strange responses, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:273 +msgid "Optional settings to control advanced options" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:224 +#: includes/common/payment-gateways/authorizenet-aim.php:272 +msgid "Advanced Settings" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:253 +msgid "Transaction Key" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:246 +msgid "Login ID" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:396 +msgid "Gateway Credentials" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:221 +msgid "Authorize.net AIM is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway. USD is the only currency supported by this gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:205 +msgid "There was a problem finalizing your purchase. %s Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:519 +#: includes/common/payment-gateways/paypal-chained-payments.php:218 +#: includes/common/payment-gateways/paypal-chained-payments.php:498 +#: includes/common/payment-gateways/paypal-express.php:822 +#: includes/common/payment-gateways/paypal-express.php:1092 +msgid "The payment has been completed, and the funds have been added successfully to your account balance." +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:233 +msgid "Please enter a valid credit card security code" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:224 +#: includes/public/class-mp-checkout.php:867 +msgid "Please enter a valid credit card number" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:221 +msgid "Please enter your credit card number" +msgstr "אנא הכנס את מספר כרטיס האשראי שברשותך." + +#: includes/common/payment-gateways/paypal-payflow.php:217 +msgid "Please enter your credit card security code" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:213 +msgid "Please select your credit card expiration date." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:299 +#: includes/common/payment-gateways/authorizenet-aim.php:50 +#: includes/common/payment-gateways/eway.php:148 +#: includes/common/payment-gateways/eway.php:298 +#: includes/common/payment-gateways/eway31.php:267 +#: includes/common/payment-gateways/paymill.php:46 +#: includes/common/payment-gateways/paypal-express.php:972 +#: includes/common/payment-gateways/paypal-payflow.php:60 +#: includes/common/payment-gateways/pin.php:46 +#: includes/common/payment-gateways/simplify.php:19 +#: includes/common/payment-gateways/stripe.php:46 +#: includes/common/payment-gateways/wepay.php:37 +msgid "Credit Card" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:49 +msgid "Authorize.net Checkout" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:156 +#: includes/common/payment-gateways/stripe.php:293 +msgid "Selecting a currency other than that used for your store may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:352 +msgid "Seller ID" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:340 +#: includes/common/payment-gateways/_ideal.php:311 +#: includes/common/payment-gateways/authorizenet-aim.php:234 +#: includes/common/payment-gateways/eway.php:376 +#: includes/common/payment-gateways/payfast.php:315 +#: includes/common/payment-gateways/paypal-chained-payments.php:368 +#: includes/common/payment-gateways/paypal-express.php:699 +#: includes/common/payment-gateways/paypal-payflow.php:391 +msgid "Live" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:339 +#: includes/common/payment-gateways/authorizenet-aim.php:233 +#: includes/common/payment-gateways/eway.php:375 +#: includes/common/payment-gateways/paypal-chained-payments.php:367 +#: includes/common/payment-gateways/paypal-express.php:698 +#: includes/common/payment-gateways/paypal-payflow.php:390 +#: includes/common/shipping-modules/mp-fedex.php:263 +msgid "Sandbox" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:336 +#: includes/common/payment-gateways/_ideal.php:307 +#: includes/common/payment-gateways/authorizenet-aim.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:365 +#: includes/common/payment-gateways/paypal-express.php:695 +#: includes/common/payment-gateways/paypal-payflow.php:387 +#: includes/common/payment-gateways/wepay.php:130 +#: includes/common/shipping-modules/mp-fedex.php:260 +msgid "Mode" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:288 +#: includes/common/payment-gateways/mijireh.php:242 +#: includes/common/payment-gateways/mollie.php:212 +msgid "The order has been received" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:74 +#: includes/common/payment-gateways/2checkout.php:75 +#: includes/common/payment-gateways/2checkout.php:435 +msgid "2Checkout" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:306 +msgid "Confirm" +msgstr "לאשר" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:218 +#: includes/common/class-mp-cart.php:974 includes/common/class-mp-cart.php:1354 +#: includes/common/template-functions.php:918 +msgid "Checkout" +msgstr "לתשלום" + +#: includes/common/template-functions.php:207 +msgid "Check Order Status" +msgstr "" + +#: includes/common/template-functions.php:235 +msgid "View Products" +msgstr "צפה במוצרים" + +#: includes/common/template-functions.php:263 +msgid "Visit Store" +msgstr "" + +#: includes/common/template-functions.php:2912 +#: includes/multisite/template-functions.php:448 +msgid "Order By" +msgstr "" + +#: includes/common/template-functions.php:2887 +#: includes/multisite/template-functions.php:405 +msgid "Price (High to Low)" +msgstr "מחיר (מהגבוה לנמוך)" + +#: includes/common/template-functions.php:2886 +#: includes/multisite/template-functions.php:404 +msgid "Price (Low to High)" +msgstr "" + +#: includes/common/template-functions.php:2881 +#: includes/multisite/template-functions.php:399 +msgid "Default" +msgstr "" + +#: includes/common/template-functions.php:2858 +msgid "Show All" +msgstr "" + +#: includes/common/class-mp-product.php:2048 +msgid "View Larger Image »" +msgstr "" + +#: includes/common/class-mp-product.php:979 +msgid "Out of Stock" +msgstr "" + +#: includes/common/template-functions.php:148 +msgid "Price: " +msgstr "" + +#: includes/multisite/template-functions.php:833 +msgid "No Tags" +msgstr "" + +#: includes/common/template-functions.php:3162 +msgid "Uncategorized" +msgstr "" + +#: includes/common/class-mp-cart.php:569 includes/common/class-mp-order.php:604 +#: includes/common/helpers.php:115 +msgid "Download" +msgstr "לקורס" + +#: includes/common/class-mp-cart.php:1353 +msgid "Empty Cart" +msgstr "רוקן את העגלה" + +#: includes/common/payment-gateways/_payway.php:291 +#: includes/common/payment-gateways/paypal-express.php:718 +#: includes/common/payment-gateways/paypal-payflow.php:423 +#: includes/common/shipping-modules/mp-ups.php:158 +#: includes/public/class-mp-checkout.php:1254 +#: includes/public/class-mp-checkout.php:1383 +msgid "Password" +msgstr "סיסמה" + +#: includes/common/payment-gateways/eway.php:387 +#: includes/common/payment-gateways/paypal-express.php:711 +#: includes/common/shipping-modules/mp-usps.php:185 +#: includes/public/class-mp-checkout.php:1249 +msgid "Username" +msgstr "שם משתמש" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:437 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:790 +msgid "Have a coupon code?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:321 +#: includes/admin/class-mp-orders-admin.php:526 +#: includes/common/class-mp-cart.php:592 +msgid "Remove" +msgstr "הסר" + +#: includes/admin/class-mp-ajax.php:316 +msgid "Quantity:" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2140 +#: includes/admin/class-mp-products-admin.php:2387 +#: includes/common/shipping-modules/class-mp-shipping-api.php:507 +msgid "Extra Shipping Cost" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:403 +msgid "Choose a Shipping Method:" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1691 +#: includes/admin/class-mp-products-admin.php:2131 +#: includes/admin/class-mp-products-admin.php:2378 +#: includes/common/shipping-modules/class-mp-shipping-api.php:228 +msgid "Ounces" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1684 +#: includes/admin/class-mp-products-admin.php:2123 +#: includes/admin/class-mp-products-admin.php:2369 +#: includes/admin/class-mp-setup-wizard.php:546 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:165 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +#: includes/common/shipping-modules/class-mp-shipping-api.php:227 +msgid "Pounds" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:226 +msgid "Product Weight:" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:214 +msgid "Weight (Kilograms)" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:82 +msgid "Number of Categories:" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:72 +msgid "Product Count" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:20 +#: includes/admin/class-mp-product-attributes-admin.php:129 +#: includes/admin/class-mp-product-attributes-list-table.php:22 +#: includes/admin/class-mp-products-admin.php:2216 +#: includes/admin/class-mp-shortcode-builder.php:628 +#: includes/admin/class-mp-shortcode-builder.php:1415 +#: includes/admin/widgets/ms-global-categories.php:70 +#: includes/common/shipping-modules/mp-fedex.php:395 +#: includes/common/shipping-modules/mp-ups.php:202 +#: includes/common/shipping-modules/mp-usps.php:243 +#: includes/public/class-mp-checkout.php:314 +msgid "Name" +msgstr "שם" + +#: includes/admin/widgets/ms-global-categories.php:67 +msgid "Order Categories By:" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:24 +#: includes/admin/widgets/ms-global-categories.php:50 +msgid "Global Product Categories" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:15 +msgid "Global Product Category List" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:13 +msgid "Displays a network-wide HTML list of product categories from network MarketPress stores." +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:24 +#: includes/admin/widgets/ms-global-tag-cloud.php:45 +msgid "Global Product Tags" +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:15 +msgid "Global Product Tag Cloud" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:947 +#: includes/admin/widgets/ms-global-product-list.php:173 +msgid "Excerpt" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:169 +msgid "Content To Show:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:140 +msgid "Limit To Product Tag:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:132 +msgid "Limit To Product Category:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:72 +msgid "Global Products" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:16 +msgid "Global Product List" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:14 +msgid "Shows a customizable global list of products from network MarketPress stores." +msgstr "" + +#: includes/common/class-mp-product.php:974 +#: includes/multisite/template-functions.php:731 +msgid "Buy Now »" +msgstr "לקניה עכשיו »" + +#: includes/admin/widgets/ms-global-tag-cloud.php:13 +msgid "Displays global most used product tags in cloud format from network MarketPress stores." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:438 +msgid "Theme Permissions" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:402 +#: includes/multisite/class-mp-admin-multisite.php:448 +msgid "No Access" +msgstr "" + +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:120 +msgid "Pro Site Level" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:401 +#: includes/multisite/class-mp-admin-multisite.php:447 +msgid "All Can Use" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:390 +msgid "Gateway Permissions" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:375 +msgid "Select a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:350 +msgid "Global Gateway" +msgstr "" + +#. Plugin Name of the plugin/theme +msgid "MarketPress" +msgstr "" + +#: includes/admin/widgets/product-tag-cloud.php:7 +msgid "Your most used product tags in cloud format from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/categories.php:79 +msgid "Show hierarchy" +msgstr "" + +#: includes/admin/widgets/categories.php:76 +#: includes/admin/widgets/ms-global-categories.php:92 +msgid "Show product counts" +msgstr "" + +#: includes/admin/widgets/categories.php:73 +msgid "Show as dropdown" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:710 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:736 +#: includes/admin/widgets/categories.php:30 +msgid "Select Category" +msgstr "בחר קטגוריה" + +#: includes/admin/widgets/categories.php:7 +msgid "A list or dropdown of product categories from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/product-list.php:250 +msgid "Show Buy Button" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:183 +#: includes/admin/widgets/product-list.php:244 +msgid "Show Price" +msgstr "" + +#: includes/admin/widgets/product-list.php:241 +msgid "Show Excerpt" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:155 +#: includes/admin/widgets/product-list.php:238 +msgid "Thumbnail Size:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:153 +#: includes/admin/widgets/product-list.php:237 +msgid "Show Thumbnail" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:147 +#: includes/admin/widgets/product-list.php:233 +msgid "Display Settings" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:136 +#: includes/admin/widgets/ms-global-product-list.php:144 +#: includes/admin/widgets/product-list.php:230 +msgid "Enter the Slug" +msgstr "" + +#: includes/admin/widgets/product-list.php:228 +#: includes/common/template-functions.php:894 +msgid "Tag" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:686 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:712 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:739 +#: includes/admin/class-mp-shortcode-builder.php:796 +#: includes/admin/widgets/product-list.php:227 +#: includes/common/template-functions.php:886 +#: includes/common/template-functions.php:2907 +msgid "Category" +msgstr "קטגוריה" + +#: includes/admin/widgets/product-list.php:226 +msgid "No Filter" +msgstr "" + +#: includes/admin/widgets/product-list.php:224 +msgid "Taxonomy Filter:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:108 +#: includes/admin/widgets/product-list.php:209 +msgid "Order Products By:" +msgstr "סדר מוצרים ע״פ:" + +#: includes/admin/widgets/ms-global-product-list.php:101 +#: includes/admin/widgets/product-list.php:206 +msgid "Number of Products:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:98 +#: includes/admin/widgets/product-list.php:204 +msgid "List Settings" +msgstr "" + +#: includes/admin/widgets/product-list.php:177 +msgid "Our Products" +msgstr "המוצרים שלנו" + +#: includes/admin/widgets/product-list.php:144 +#: includes/common/template-functions.php:2070 +#: includes/common/template-functions.php:2347 +#: includes/multisite/template-functions.php:303 +#: includes/multisite/template-functions.php:623 +msgid "No Products" +msgstr "אין מוצרים" + +#: includes/admin/widgets/product-list.php:8 +msgid "Product List" +msgstr "" + +#: includes/admin/widgets/product-list.php:7 +msgid "Shows a customizable list of products from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/cart.php:75 includes/admin/widgets/categories.php:82 +#: includes/admin/widgets/product-list.php:253 +#: includes/admin/widgets/product-tag-cloud.php:57 +msgid "Only show on store pages" +msgstr "" + +#: includes/admin/widgets/cart.php:65 +#: includes/admin/widgets/ms-global-product-list.php:92 +#: includes/admin/widgets/product-list.php:200 +msgid "Custom Text:" +msgstr "" + +#: includes/admin/widgets/cart.php:64 includes/admin/widgets/categories.php:69 +#: includes/admin/widgets/ms-global-categories.php:59 +#: includes/admin/widgets/ms-global-product-list.php:87 +#: includes/admin/widgets/ms-global-tag-cloud.php:49 +#: includes/admin/widgets/product-list.php:199 +#: includes/admin/widgets/product-tag-cloud.php:49 +msgid "Title:" +msgstr "" + +#: includes/admin/widgets/cart.php:7 +msgid "Shows dynamic shopping cart contents along with a checkout button for your MarketPress store." +msgstr "" + +#: includes/admin/widgets/product-tag-cloud.php:8 +msgid "Product Tag Cloud" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:539 +#: includes/admin/class-mp-setup-wizard.php:575 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:163 +msgid "Measurement System" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:616 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:149 +msgid "Select Shipping Options" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:596 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:129 +msgid "Calculated Options" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:582 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:115 +msgid "No Shipping" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:110 +msgid "EU" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:109 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:93 +msgid "All" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:92 +msgid "Select:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:185 +msgid "Store Pages" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:223 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:256 +msgid "Order Shipped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:60 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:95 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:128 +#: marketpress.php:266 +msgid "New Order" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:314 +msgid "Email Notifications" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:59 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:200 +msgid "Products List" +msgstr "רשימת מוצרים" + +#: includes/admin/class-mp-pages-admin.php:58 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:190 +msgid "Store Base" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:108 +#: includes/admin/class-mp-shortcode-builder.php:635 +#: includes/admin/class-mp-shortcode-builder.php:708 +#: includes/admin/class-mp-shortcode-builder.php:875 +#: includes/admin/class-mp-shortcode-builder.php:1319 +#: includes/admin/class-mp-shortcode-builder.php:1422 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:526 +#: includes/admin/widgets/ms-global-categories.php:78 +#: includes/admin/widgets/ms-global-product-list.php:127 +#: includes/admin/widgets/product-list.php:221 +msgid "Ascending" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:109 +#: includes/admin/class-mp-shortcode-builder.php:636 +#: includes/admin/class-mp-shortcode-builder.php:709 +#: includes/admin/class-mp-shortcode-builder.php:876 +#: includes/admin/class-mp-shortcode-builder.php:1320 +#: includes/admin/class-mp-shortcode-builder.php:1423 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:525 +#: includes/admin/widgets/ms-global-categories.php:75 +#: includes/admin/widgets/ms-global-product-list.php:124 +#: includes/admin/widgets/product-list.php:220 +msgid "Descending" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:637 +#: includes/admin/class-mp-shortcode-builder.php:695 +#: includes/admin/class-mp-shortcode-builder.php:862 +#: includes/admin/class-mp-shortcode-builder.php:1306 +#: includes/admin/class-mp-shortcode-builder.php:1424 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:518 +#: includes/admin/widgets/ms-global-product-list.php:121 +#: includes/admin/widgets/product-list.php:218 +msgid "Random" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:694 +#: includes/admin/class-mp-shortcode-builder.php:861 +#: includes/admin/class-mp-shortcode-builder.php:1305 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:517 +#: includes/admin/widgets/ms-global-product-list.php:119 +#: includes/admin/widgets/product-list.php:216 +msgid "Product Price" +msgstr "מחיר המוצר" + +#: includes/admin/class-mp-shortcode-builder.php:693 +#: includes/admin/class-mp-shortcode-builder.php:860 +#: includes/admin/class-mp-shortcode-builder.php:1304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:516 +#: includes/admin/widgets/ms-global-product-list.php:117 +#: includes/admin/widgets/product-list.php:215 +msgid "Number of Sales" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:692 +#: includes/admin/class-mp-shortcode-builder.php:859 +#: includes/admin/class-mp-shortcode-builder.php:1303 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:515 +#: includes/admin/widgets/product-list.php:214 +msgid "Product Author" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:691 +#: includes/admin/class-mp-shortcode-builder.php:858 +#: includes/admin/class-mp-shortcode-builder.php:1302 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:514 +#: includes/admin/widgets/product-list.php:213 +msgid "Product ID" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:690 +#: includes/admin/class-mp-shortcode-builder.php:857 +#: includes/admin/class-mp-shortcode-builder.php:1301 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:513 +#: includes/admin/widgets/ms-global-product-list.php:113 +#: includes/admin/widgets/product-list.php:212 +msgid "Publish Date" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:430 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:726 +msgid "Width" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:439 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:735 +msgid "Height" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:88 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:402 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:698 +msgid "Custom" +msgstr "" + +#: includes/common/class-mp-product.php:179 +#: includes/common/class-mp-product.php:992 +#: includes/common/class-mp-product.php:1000 +#: includes/multisite/template-functions.php:579 +msgid "Buy Now" +msgstr "קנה עכשיו" + +#: includes/common/class-mp-product.php:175 +#: includes/common/class-mp-product.php:990 +#: includes/common/class-mp-product.php:998 +msgid "Add To Cart" +msgstr "הוסף לעגלה" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:807 +msgid "Store Style" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1021 +msgid "Edit Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupon.php:580 +#: includes/admin/class-mp-ajax.php:238 +#: includes/admin/class-mp-products-admin.php:1532 +msgid "Unlimited" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1198 +msgid "Remaining Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1197 +msgid "Used" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:752 +#: includes/admin/class-mp-products-admin.php:2343 +msgid "Start Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:598 +msgid "Coupon Code" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:444 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:284 +msgid "Save Changes" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:57 +#: includes/admin/class-mp-shortcode-builder.php:716 +#: includes/admin/class-mp-shortcode-builder.php:727 +#: includes/admin/class-mp-shortcode-builder.php:883 +#: includes/admin/class-mp-shortcode-builder.php:894 +#: includes/admin/class-mp-shortcode-builder.php:946 +#: includes/admin/class-mp-shortcode-builder.php:956 +#: includes/admin/class-mp-shortcode-builder.php:1006 +#: includes/admin/class-mp-shortcode-builder.php:1327 +#: includes/admin/class-mp-shortcode-builder.php:1338 +#: includes/admin/store-settings/class-mp-store-settings-general.php:357 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:270 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:108 +#: includes/admin/widgets/ms-global-product-list.php:172 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:94 +msgid "None" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:352 +msgid "Google Analytics Ecommerce Tracking" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:310 +msgid "This option turns MarketPress into more of a product listing plugin, disabling shopping carts, checkout, and order management. This is useful if you simply want to list items you can buy in a store somewhere else, optionally linking the \"Buy Now\" buttons to an external site. Some examples are a car dealership, or linking to songs/albums in itunes, or linking to products on another site with your own affiliate links." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:304 +msgid "Whether or not customers must be registered and logged in to checkout. (Not recommended: Enabling this can lower conversions)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:258 +msgid "How many times may a customer download a file they have purchased? (It's best to set this higher than one in case they have any problems downloading)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:257 +msgid "Maximum Downloads" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:298 +msgid "This will set the product to draft if inventory of all variations is gone." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:288 +msgid "At what low stock count do you want to be warned for products you have enabled inventory tracking for?" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:208 +#: includes/admin/store-settings/class-mp-store-settings-general.php:287 +msgid "Inventory Warning Threshold" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:282 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:542 +msgid "Miscellaneous Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:429 +#: includes/multisite/class-mp-admin-multisite.php:247 +msgid "Show Decimal in Prices" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:451 +#: includes/admin/store-settings/class-mp-store-settings-general.php:403 +#: includes/multisite/class-mp-admin-multisite.php:221 +msgid "Currency Symbol Position" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:444 +#: includes/admin/store-settings/class-mp-store-settings-general.php:396 +msgid "Store Currency" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:429 +#: includes/admin/store-settings/class-mp-store-settings-general.php:381 +msgid "Currency Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:516 +msgid "Please see your local tax laws. Note if this is enabled and a downloadable only cart, rates will be the default for your base location." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:529 +msgid "Apply Tax to Downloadable Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:498 +msgid "Enabling this option allows you to enter and show all prices inclusive of tax, while still listing the tax total as a line item in shopping carts. Please see your local tax laws." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:497 +msgid "Enter Prices Inclusive of Tax?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:492 +msgid "Please see your local tax laws. Most areas charge tax on shipping fees." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:491 +msgid "Apply Tax To Shipping Fees?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:674 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:565 +#: includes/common/payment-gateways/authorizenet-aim.php:291 +#: includes/common/payment-gateways/authorizenet-aim.php:326 +#: includes/common/payment-gateways/payfast.php:347 +msgid "No" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:675 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:759 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:512 +#: includes/admin/class-mp-setup-wizard.php:518 +#: includes/admin/class-mp-setup-wizard.php:524 +#: includes/admin/class-mp-setup-wizard.php:530 +#: includes/admin/class-mp-setup-wizard.php:564 +#: includes/admin/store-settings/class-mp-store-settings-general.php:232 +#: includes/admin/store-settings/class-mp-store-settings-general.php:299 +#: includes/admin/store-settings/class-mp-store-settings-general.php:305 +#: includes/admin/store-settings/class-mp-store-settings-general.php:311 +#: includes/admin/store-settings/class-mp-store-settings-general.php:317 +#: includes/admin/store-settings/class-mp-store-settings-general.php:328 +#: includes/admin/store-settings/class-mp-store-settings-general.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:341 +#: includes/admin/store-settings/class-mp-store-settings-general.php:348 +#: includes/admin/store-settings/class-mp-store-settings-general.php:367 +#: includes/admin/store-settings/class-mp-store-settings-general.php:493 +#: includes/admin/store-settings/class-mp-store-settings-general.php:499 +#: includes/admin/store-settings/class-mp-store-settings-general.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:556 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:375 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:381 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:387 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:474 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:493 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:532 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:574 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:606 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:664 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:670 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:677 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:683 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:689 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:763 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:774 +#: includes/common/payment-gateways/_bitpay.php:250 +#: includes/common/payment-gateways/_bitpay.php:257 +#: includes/common/payment-gateways/_bitpay.php:264 +#: includes/common/payment-gateways/authorizenet-aim.php:290 +#: includes/common/payment-gateways/authorizenet-aim.php:325 +#: includes/common/payment-gateways/free_orders.php:160 +#: includes/common/payment-gateways/payfast.php:346 +#: includes/common/payment-gateways/paymill.php:162 +#: includes/common/payment-gateways/paypal-payflow.php:441 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-checkbox.php:22 +msgid "Yes" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:492 +#: includes/admin/store-settings/class-mp-store-settings-general.php:472 +msgid "%s Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:467 +#: includes/admin/store-settings/class-mp-store-settings-general.php:449 +msgid "Tax Settings" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:370 +#: includes/admin/store-settings/class-mp-store-settings-general.php:624 +msgid "Base Zip/Postal Code" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:354 +#: includes/admin/store-settings/class-mp-store-settings-general.php:608 +msgid "Base State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:589 +msgid "Base Country" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:582 +msgid "Location Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:195 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:800 +#: includes/multisite/class-mp-admin-multisite.php:172 +msgid "General Settings" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1945 +#: includes/admin/class-mp-products-admin.php:2185 +#: includes/admin/class-mp-store-settings-admin.php:111 +#: includes/admin/class-mp-store-settings-admin.php:266 +msgid "General" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:242 +msgid "Importers" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +#: includes/admin/class-mp-store-settings-admin.php:234 +msgid "Payments" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:313 +#: includes/admin/class-mp-store-settings-admin.php:112 +#: includes/admin/class-mp-store-settings-admin.php:222 +msgid "Presentation" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:916 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1015 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1018 +#: includes/admin/class-mp-dashboard-widgets.php:305 marketpress.php:702 +msgid "Coupons" +msgstr "" + +#: includes/admin/class-mp-admin.php:251 +msgid "Download »" +msgstr "להורדה »" + +#: includes/admin/class-mp-admin.php:245 +#: includes/admin/class-mp-exporter-orders.php:170 +msgid "All Statuses" +msgstr "" + +#: includes/admin/class-mp-admin.php:209 +#: includes/admin/class-mp-exporter-orders.php:150 +#: includes/admin/class-mp-exporter-orders.php:178 +msgid "Export Orders" +msgstr "" + +#: includes/admin/class-mp-admin.php:228 +msgid "Show all dates" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:947 +msgid "Change Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:287 +msgid "Order Notes" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:478 +msgid "Other" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:205 +msgid "Subtotal" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:84 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:87 +#: includes/admin/class-mp-products-admin.php:1737 +#: includes/common/class-mp-cart.php:1409 +#: includes/common/class-mp-product.php:559 +msgid "Quantity" +msgstr "" + +#: includes/common/helpers.php:93 +msgid "Item" +msgstr "" + +#: includes/common/class-mp-order.php:1050 +msgid "Current Status" +msgstr "סטאטוס נוכחי" + +#: includes/admin/class-mp-orders-admin.php:297 +msgid "Order Actions" +msgstr "" + +#: includes/common/class-mp-product.php:1084 +msgid "More Info »" +msgstr "למידע נוסף »" + +#: includes/common/class-mp-product.php:2313 +msgid "Low Product Inventory Notification" +msgstr "" + +#: includes/common/class-mp-order.php:338 includes/common/data.php:154 +msgid "New Order Notification: ORDERID" +msgstr "" + +#: includes/common/helpers.php:259 +msgid "Your payment for this order is complete." +msgstr "התשלום עבור הזמנה זו הושלם." + +#: includes/common/helpers.php:261 +msgid "Your payment for this order is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/helpers.php:256 +msgid "Payment Total:" +msgstr "" + +#: includes/common/helpers.php:253 +msgid "Transaction ID:" +msgstr "" + +#: includes/common/helpers.php:249 +msgid "Payment Type:" +msgstr "" + +#: includes/common/helpers.php:246 +msgid "Payment Method:" +msgstr "" + +#: includes/common/helpers.php:242 +msgid "Order Notes:" +msgstr "Order Notes:" + +#: includes/common/helpers.php:237 +msgid "Special Instructions:" +msgstr "הוראות מיוחדות:" + +#: includes/common/helpers.php:232 +msgid "Tracking Number:" +msgstr "מספר מעקב:" + +#: includes/common/helpers.php:223 includes/common/helpers.php:226 +#: includes/common/helpers.php:228 +#: includes/common/shipping-modules/class-mp-shipping-api.php:406 +#: includes/common/shipping-modules/class-mp-shipping-api.php:428 +msgid "Shipping Method:" +msgstr "אופן המשלוח:" + +#: includes/common/helpers.php:168 +msgid "No shipping required for this order." +msgstr "אין צורך במשלוח עבור הזמנה זו." + +#: includes/common/helpers.php:155 +msgid "Order Total:" +msgstr "" + +#: includes/common/class-mp-order.php:1025 +msgid "Taxes:" +msgstr "" + +#: includes/common/class-mp-order.php:1032 includes/common/helpers.php:144 +msgid "Shipping:" +msgstr "" + +#: includes/public/class-mp-checkout.php:367 +msgid "Street address, P.O. box, company name, c/o" +msgstr "כתובת, ת.ד, שם החברה" + +#: includes/admin/class-mp-orders-admin.php:314 +msgid "Shipping Info" +msgstr "" + +#: includes/public/class-mp-public.php:740 +msgid "Whoops, there was a problem loading up this file for your download. Please contact us for help." +msgstr "אופס, היתה בעיה בטעינת קובץ זה להורדה שלך. אנא צור עמנו קשר לעזרה." + +#: includes/public/class-mp-public.php:683 +msgid "Sorry, our records show you've downloaded this file %d out of %d times allowed. Please contact us if you still need help." +msgstr "סליחה, הרישומים שלנו מראים כי הורדת קובץ זה %d מתוך %d הפעמים המורשות. אנא צור קשר עם עדיין זקוק לעזרה." + +#: includes/public/class-mp-public.php:634 +msgid "Sorry, your order has been marked as unpaid." +msgstr "סליחה, הזמנתך סומנה כלא משולמת." + +#: includes/public/class-mp-public.php:629 +msgid "Sorry, the link is invalid for this download." +msgstr "סליחה, הקישור אינו בתוקף להורדה זו." + +#: includes/admin/class-mp-exporter-orders.php:15 +#: includes/admin/class-mp-products-admin.php:1172 +msgid "Cheatin’ uh?" +msgstr "" + +#: includes/public/class-mp-public.php:407 +#: includes/public/class-mp-short-codes.php:128 +msgid "Please enter a valid email address." +msgstr "יש להזין כתובת דוא\"ל תקינה." + +#: includes/admin/class-mp-ajax.php:191 +#: includes/admin/class-mp-products-admin.php:1821 +#: includes/admin/class-mp-products-admin.php:2010 +#: includes/admin/class-mp-products-admin.php:2267 +msgid "File URL" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1842 +msgid "External Link" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2177 +msgid "Add Variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:126 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:289 +msgid "Inventory" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:438 +#: includes/admin/class-mp-products-admin.php:578 +#: includes/admin/class-mp-products-admin.php:1552 +#: includes/admin/class-mp-products-admin.php:2053 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:134 +msgid "Sale Price" +msgstr "מחיר מבצע" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "Variation Name" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1931 +msgid "Product Details" +msgstr "פרטי המוצר" + +#: includes/admin/class-mp-product-attributes-list-table.php:33 +msgid "Delete" +msgstr "מחק" + +#: includes/admin/class-mp-orders-admin.php:1057 +msgid "Trashed" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:231 +#: includes/admin/class-mp-orders-admin.php:1015 +#: includes/common/class-mp-order.php:1052 includes/common/helpers.php:97 +msgid "Total" +msgstr "סה״כ" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1196 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:210 +#: includes/admin/class-mp-orders-admin.php:1014 +msgid "Discount" +msgstr "הנחה" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:221 +#: includes/admin/class-mp-orders-admin.php:1013 +#: includes/common/payment-gateways/_ideal.php:148 +#: includes/common/payment-gateways/_payway.php:134 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:108 +msgid "Tax" +msgstr "מע\"מ" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:216 +#: includes/admin/class-mp-orders-admin.php:1012 +#: includes/admin/class-mp-products-admin.php:1958 +#: includes/admin/class-mp-products-admin.php:2198 +#: includes/admin/class-mp-store-settings-admin.php:114 +#: includes/admin/class-mp-store-settings-admin.php:230 +#: includes/common/class-mp-cart.php:717 includes/common/helpers.php:168 +#: includes/common/payment-gateways/_ideal.php:137 +#: includes/common/payment-gateways/_payway.php:116 +#: includes/public/class-mp-checkout.php:1304 +msgid "Shipping" +msgstr "משלוח" + +#: includes/admin/class-mp-orders-admin.php:1011 +msgid "Items" +msgstr "פריטים" + +#: includes/admin/class-mp-orders-admin.php:1010 +msgid "From" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:154 +#: includes/admin/class-mp-orders-admin.php:1009 +#: includes/common/class-mp-gdpr.php:370 +msgid "Order Date" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1008 +#: includes/common/class-mp-gdpr.php:366 +#: includes/common/template-functions.php:2134 +msgid "Order ID" +msgstr "מספר הזמנה" + +#: includes/addons/class-mp-addons-list-table.php:22 +#: includes/admin/class-mp-orders-admin.php:1007 +msgid "Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1155 +msgid "N/A" +msgstr "N/A" + +#: includes/admin/class-mp-dashboard-widgets.php:243 +#: includes/admin/class-mp-products-admin.php:464 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:142 +msgid "Sales" +msgstr "מכירות" + +#: includes/admin/class-mp-products-admin.php:463 +msgid "Stock" +msgstr "מלאי" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:85 +#: includes/admin/class-mp-ajax.php:176 includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:434 +#: includes/admin/class-mp-products-admin.php:462 +#: includes/admin/class-mp-products-admin.php:576 +#: includes/admin/class-mp-products-admin.php:1519 +#: includes/admin/class-mp-products-admin.php:1569 +#: includes/admin/class-mp-products-admin.php:1950 +#: includes/admin/class-mp-products-admin.php:2059 +#: includes/admin/class-mp-products-admin.php:2190 +#: includes/admin/class-mp-products-admin.php:2330 +#: includes/common/class-mp-cart.php:1415 includes/common/helpers.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:130 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:276 +msgid "Price" +msgstr "מחיר" + +#: includes/admin/class-mp-ajax.php:173 +#: includes/admin/class-mp-products-admin.php:461 +#: includes/admin/class-mp-products-admin.php:1972 +#: includes/admin/class-mp-products-admin.php:2224 +msgid "SKU" +msgstr "SKU" + +#: includes/admin/class-mp-products-admin.php:459 +#: includes/admin/class-mp-products-admin.php:1793 +#: includes/admin/class-mp-products-admin.php:1805 +#: includes/admin/class-mp-products-admin.php:2163 +msgid "Variations" +msgstr "וריאציות" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:83 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:86 +#: includes/admin/class-mp-dashboard-widgets.php:134 +#: includes/admin/class-mp-products-admin.php:458 +#: includes/admin/class-mp-products-admin.php:837 +#: includes/admin/class-mp-shortcode-builder.php:689 +#: includes/admin/class-mp-shortcode-builder.php:856 +#: includes/admin/class-mp-shortcode-builder.php:1300 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:512 +#: includes/admin/widgets/ms-global-product-list.php:115 +#: includes/admin/widgets/product-list.php:211 +msgid "Product Name" +msgstr "שם המוצר" + +#: includes/common/template-functions.php:2575 +msgid "Categorized in " +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:305 +#: includes/common/payment-gateways/free_orders.php:176 +msgid "Payment Information" +msgstr "פרטים לתשלום" + +#: includes/admin/class-mp-exporter-orders.php:167 +#: includes/admin/class-mp-orders-admin.php:432 +#: includes/admin/class-mp-pages-admin.php:62 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:227 +#: includes/common/class-mp-gdpr.php:374 +#: includes/common/template-functions.php:175 +#: includes/common/template-functions.php:926 +msgid "Order Status" +msgstr "מצב ההזמנה" + +#. translators: %s: orders closed +#: marketpress.php:327 +msgid "Closed (%s)" +msgid_plural "Closed (%s)" +msgstr[0] "סגור (%s)" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:249 +#: includes/admin/class-mp-orders-admin.php:375 +#: includes/admin/class-mp-orders-admin.php:951 +#: includes/admin/class-mp-orders-admin.php:1053 +#: includes/admin/class-mp-orders-admin.php:1065 +#: includes/common/class-mp-gdpr.php:330 +#: includes/common/class-mp-order.php:1019 marketpress.php:325 +msgid "Closed" +msgstr "סגור" + +#. translators: %s: shipped orders +#: marketpress.php:320 +msgid "Shipped (%s)" +msgid_plural "Shipped (%s)" +msgstr[0] "נשלח (%s)" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:248 +#: includes/admin/class-mp-orders-admin.php:376 +#: includes/admin/class-mp-orders-admin.php:950 +#: includes/admin/class-mp-orders-admin.php:1049 +#: includes/admin/class-mp-orders-admin.php:1064 +#: includes/common/class-mp-gdpr.php:329 +#: includes/common/class-mp-order.php:1002 marketpress.php:318 +msgid "Shipped" +msgstr "נשלח" + +#. translators: %s: paid orders +#: marketpress.php:313 +msgid "Paid (%s)" +msgid_plural "Paid (%s)" +msgstr[0] "שולם (%s)" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:247 +#: includes/admin/class-mp-orders-admin.php:377 +#: includes/admin/class-mp-orders-admin.php:949 +#: includes/admin/class-mp-orders-admin.php:1045 +#: includes/admin/class-mp-orders-admin.php:1063 +#: includes/common/class-mp-gdpr.php:328 +#: includes/common/payment-gateways/2checkout.php:294 +#: includes/common/payment-gateways/_cubepoints.php:130 +#: includes/common/payment-gateways/authorizenet-aim.php:193 +#: includes/common/payment-gateways/free_orders.php:91 +#: includes/common/payment-gateways/mijireh.php:248 +#: includes/common/payment-gateways/paymill.php:273 +#: includes/common/payment-gateways/paypal-express.php:933 +#: includes/common/payment-gateways/paypal-express.php:967 +#: includes/common/payment-gateways/pin.php:258 +#: includes/common/payment-gateways/simplify.php:181 +#: includes/common/payment-gateways/stripe.php:368 +#: includes/common/payment-gateways/wepay.php:269 marketpress.php:311 +msgid "Paid" +msgstr "שולם" + +#. translators: %s: orders received +#: marketpress.php:306 +msgid "Received (%s)" +msgid_plural "Received (%s)" +msgstr[0] "התקבל (%s)" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:246 +#: includes/admin/class-mp-orders-admin.php:378 +#: includes/admin/class-mp-orders-admin.php:1041 +#: includes/admin/class-mp-orders-admin.php:1062 +#: includes/common/class-mp-gdpr.php:327 includes/common/class-mp-order.php:995 +#: includes/common/payment-gateways/payfast.php:244 marketpress.php:304 +msgid "Received" +msgstr "התקבל" + +#: marketpress.php:268 +msgid "Search Orders" +msgstr "חפש הזמנות" + +#: marketpress.php:267 +msgid "View Order" +msgstr "עיין בהזמנות" + +#: marketpress.php:262 +msgid "Order" +msgstr "הזמנה" + +#: includes/admin/class-mp-dashboard-widgets.php:301 +#: includes/admin/class-mp-orders-admin.php:989 marketpress.php:261 +msgid "Orders" +msgstr "הזמנות" + +#: marketpress.php:228 +msgid "No Products found in Trash" +msgstr "לא נמצאו מוצרים בפח" + +#: marketpress.php:227 +msgid "No Products Found" +msgstr "לא נמצאו מוצרים" + +#: marketpress.php:226 +msgid "Search Products" +msgstr "חפש מוצרים" + +#: marketpress.php:225 marketpress.php:229 +msgid "View Product" +msgstr "צפה במוצר" + +#: marketpress.php:224 +msgid "New Product" +msgstr "מוצר חדש" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1022 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:258 +#: marketpress.php:223 +msgid "Edit" +msgstr "ערוך" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1019 +msgid "Create New" +msgstr "צור חדש" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:687 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:698 +#: marketpress.php:217 +msgid "Product" +msgstr "מוצר" + +#: includes/admin/class-mp-dashboard-widgets.php:307 +#: includes/common/template-functions.php:173 +#: includes/common/template-functions.php:179 +#: includes/common/template-functions.php:902 +#: includes/multisite/template-functions.php:82 marketpress.php:216 +#: marketpress.php:219 +msgid "Products" +msgstr "מוצרים" + +#: includes/admin/class-mp-store-settings-admin.php:118 +#: includes/admin/widgets/product-tag-cloud.php:46 +#: includes/multisite/class-mp-admin-multisite.php:548 +msgid "Product Tags" +msgstr "תגיות מוצרים" + +#: includes/common/template-functions.php:2906 +#: includes/multisite/template-functions.php:449 +msgid "Product Category" +msgstr "קטגורית מוצר" + +#: includes/admin/class-mp-store-settings-admin.php:117 +#: includes/admin/widgets/categories.php:8 +#: includes/admin/widgets/categories.php:18 +#: includes/multisite/class-mp-admin-multisite.php:539 +msgid "Product Categories" +msgstr "קטגוריות מוצרים" + +#: includes/common/payment-gateways/stripe.php:332 +#: includes/common/template-functions.php:872 marketpress.php:218 +msgid "Store" +msgstr "חנות" + +#: includes/admin/class-mp-pages-admin.php:60 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:209 +#: includes/admin/widgets/cart.php:8 includes/admin/widgets/cart.php:56 +#: includes/common/template-functions.php:174 +#: includes/common/template-functions.php:811 +msgid "Shopping Cart" +msgstr "עגלת קניות" + +#: includes/admin/class-mp-store-settings-admin.php:110 +#: includes/admin/class-mp-store-settings-admin.php:218 +msgid "Store Settings" +msgstr "הגדרות חנות" + +#: includes/addons/class-mp-addons-list-table.php:128 marketpress.php:607 +msgid "Settings" +msgstr "הגדרות" + +#: includes/common/data.php:178 includes/common/data.php:190 +msgid "Your Order Has Been Shipped! (ORDERID)" +msgstr "הזמנתך נשלחה! (מספר הזמנה)" + +#: includes/common/data.php:159 includes/common/data.php:166 +#: includes/common/data.php:172 +msgid "Your Order Confirmation (ORDERID)" +msgstr "אישור ההזמנה שלך (מספר הזמנה)" + +#: includes/common/data.php:148 +msgid "

    Thank you for your order! We appreciate your business, and please come back often to check out our new products.

    " +msgstr "

    תודה על הזמנתך! אנו מעריכים את הקניה שלך אצלנו ומזמינים לשוב לחנותנו ולבחון את המוצרים החדשים שנוספו אליה.

    " + +#: includes/common/data.php:147 +msgid "

    You are almost done! Please do a final review of your order to make sure everything is correct then click the \"Confirm Payment\" button.

    " +msgstr "

    כמעט סיימנו! נא לבדוק שהכל כשורה בהזמנה sure everything is correct ואז להקליק על הכפתור ״לאישור התשלום:.

    " + +#: includes/common/data.php:145 +msgid "

    Please enter your shipping information in the form below to proceed with your order.

    " +msgstr "

    נא להכניס את הכתובת למשלוח כדי להמשיך עם ההזמנה שלך.

    " + +#: includes/common/data.php:143 +msgid "

    If you have any questions about your order please do not hesitate to contact us.

    " +msgstr "

    לכל שאלה וברור, אנא צרו אתנו קשר.

    " + +#: includes/common/data.php:106 +msgid "tag" +msgstr "תגית" + +#: includes/common/data.php:105 +msgid "category" +msgstr "קטגוריה" + +#: includes/common/data.php:104 +msgid "order-status" +msgstr "מצב-ההזמנה" + +#: includes/common/data.php:103 +msgid "shopping-cart" +msgstr "עגלת קניות" + +#: includes/common/data.php:102 +msgid "products" +msgstr "מוצרים" + +#. Translators: change default slugs here +#: includes/common/data.php:101 +msgid "store" +msgstr "חנות" \ No newline at end of file diff --git a/languages/mp-hr.mo b/languages/mp-hr.mo new file mode 100644 index 0000000000000000000000000000000000000000..bfcabe18e814952d804aec8870f551f06d25fbf7 GIT binary patch literal 63475 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 literal 0 HcmV?d00001 diff --git a/languages/mp-hr.po b/languages/mp-hr.po new file mode 100644 index 00000000..0ea8ebe9 --- /dev/null +++ b/languages/mp-hr.po @@ -0,0 +1,8962 @@ +# Translation of MarketPress in Croatian +# This file is distributed under the same license as the MarketPress package. +msgid "" +msgstr "" +"PO-Revision-Date: 2014-04-17 14:51:42+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: GlotPress/2.3.1\n" +"Language: hr\n" +"Project-Id-Version: MarketPress\n" + +#: includes/public/class-mp-checkout.php:1285 +msgid "By clicking this checkbox you allow the website to process your personal data." +msgstr "" + +#: includes/common/class-mp-gdpr.php:382 +msgid "Order Info" +msgstr "" + +#: includes/common/class-mp-gdpr.php:268 +msgid "Shipping Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:267 +msgid "Shipping Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:266 +msgid "Shipping ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:265 +msgid "Shipping State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:264 +msgid "Shipping City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:263 +msgid "Shipping Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:262 +msgid "Shipping Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:261 +msgid "Shipping Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:260 +msgid "Shipping Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:259 +msgid "Shipping Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:258 +msgid "Shipping First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:254 +msgid "Billing Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:253 +msgid "Billing Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:252 +msgid "Billing ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:251 +msgid "Billing State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:250 +msgid "Billing City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:249 +msgid "Billing Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:248 +msgid "Billing Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:247 +msgid "Billing Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:246 +msgid "Billing Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:245 +msgid "Billing Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:244 +msgid "Billing First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:151 +msgid "Orders Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:139 +msgid "Customer Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:100 includes/common/class-mp-gdpr.php:116 +msgid "MarketPress User Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:81 +msgid "" +"In addition to standard WordPress session cookies, this site might be setting an\n" +"\t\t additional cookie to remember your cart settings. This cookie will last for one year." +msgstr "" + +#: includes/common/class-mp-gdpr.php:80 +msgid "Cookies" +msgstr "" + +#: includes/common/class-mp-gdpr.php:77 +msgid "" +"The following information will be collected in order to process orders: your name,\n" +"\t\t username, email address, avatar and profile URLs, address and phone number. This data can be\n" +"\t\t exported and removed." +msgstr "" + +#: includes/common/class-mp-gdpr.php:76 +msgid "Additional data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:71 +msgid "" +"This site might be using third party services and tools to process payments or/and\n" +"\t\t process shipping data when creating orders on the MarketPress store. These services include payment\n" +"\t\t gateways: 2Checkout, Authorize.net AIM, eWay shared payments, eWay Rapid 3.1 Payments, Mijireh,\n" +"\t\t Mollie, Paymill, PayPal, PIN, Simplify Commerce by MasterCard, Stripe and WePay; shipping gateways:\n" +"\t\t Fedex, UPS, USPS." +msgstr "" + +#: includes/common/class-mp-gdpr.php:70 +msgid "Third parties" +msgstr "" + +#: includes/admin/class-mp-admin.php:403 +msgid "Start creating store pages and products for your online shop here." +msgstr "" + +#: includes/admin/class-mp-admin.php:402 +msgid "Create Online Shop" +msgstr "" + +#: includes/admin/class-mp-admin.php:394 +msgid "Run Setup Wizard" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:234 +msgid "If having problems during invoice generation, add define( 'DOMPDF_ENABLE_HTML5PARSER', true ); to the wp-config.php file." +msgstr "" + +#: includes/public/class-mp-checkout.php:723 +msgid "Invalid Email" +msgstr "" + +#: includes/public/class-mp-checkout.php:721 +#: includes/public/class-mp-checkout.php:729 +msgid "This field is required" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:804 +msgid "This option changes the built-in css styles for store pages. For a custom css style, save your css file with the /* MarketPress Style: Your CSS Theme Name Here */ header line in the \"%s\" folder and it will appear in this list so you may select it. You should select \"None\" if you don't wish to use custom CSS styles or if you are using default theme templates or custom theme templates and css to make your own completely unique store design. For more information on custom theme templates click here »." +msgstr "" + +#: includes/public/class-mp-public.php:421 +#: includes/public/class-mp-short-codes.php:142 +msgid "Please enter a value greater than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:420 +#: includes/public/class-mp-short-codes.php:141 +msgid "Please enter a value less than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:419 +#: includes/public/class-mp-short-codes.php:140 +msgid "Please enter a value between {0} and {1}." +msgstr "" + +#: includes/public/class-mp-public.php:418 +#: includes/public/class-mp-short-codes.php:139 +msgid "Please enter a value between {0} and {1} characters long." +msgstr "" + +#: includes/public/class-mp-public.php:417 +#: includes/public/class-mp-short-codes.php:138 +msgid "Please enter at least {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:416 +#: includes/public/class-mp-short-codes.php:137 +msgid "Please enter no more than {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:415 +#: includes/public/class-mp-short-codes.php:136 +msgid "Please enter a value with a valid extension." +msgstr "" + +#: includes/public/class-mp-public.php:414 +#: includes/public/class-mp-short-codes.php:135 +msgid "Please enter the same value again." +msgstr "" + +#: includes/public/class-mp-public.php:413 +#: includes/public/class-mp-short-codes.php:134 +msgid "Please enter a valid credit card number." +msgstr "" + +#: includes/public/class-mp-public.php:412 +#: includes/public/class-mp-short-codes.php:133 +msgid "Please enter only digits." +msgstr "" + +#: includes/public/class-mp-public.php:411 +#: includes/public/class-mp-short-codes.php:132 +msgid "Please enter a valid number." +msgstr "" + +#: includes/public/class-mp-public.php:410 +#: includes/public/class-mp-short-codes.php:131 +msgid "Please enter a valid date (ISO)." +msgstr "" + +#: includes/public/class-mp-public.php:409 +#: includes/public/class-mp-short-codes.php:130 +msgid "Please enter a valid date." +msgstr "" + +#: includes/public/class-mp-public.php:408 +#: includes/public/class-mp-short-codes.php:129 +msgid "Please enter a valid URL." +msgstr "" + +#: includes/public/class-mp-public.php:406 +#: includes/public/class-mp-short-codes.php:127 +msgid "Please fix this field." +msgstr "" + +#: includes/public/class-mp-checkout.php:1287 +#: includes/public/class-mp-public.php:405 +#: includes/public/class-mp-short-codes.php:126 +msgid "This field is required." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:810 +msgid "None - Without Special CSS-styles" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:809 +msgid "Default - Using Default CSS-styles" +msgstr "" + +#: marketpress.php:739 +msgid "Enable multiple downloads per product" +msgstr "" + +#: marketpress.php:738 +msgid "Multiple Downloads" +msgstr "" + +#: includes/public/class-mp-checkout.php:715 +msgid "Invalid Zip Code" +msgstr "" + +#: includes/common/template-functions.php:2126 +msgid "Guest Email" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:195 +msgid "There was a problem finalizing your purchase. Please re-enter your credit card information and try again" +msgstr "" + +#: includes/common/class-mp-cart.php:565 includes/common/class-mp-order.php:600 +#: includes/common/helpers.php:111 +msgid "Download %1$s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:331 +msgid "Export products to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:328 +msgid "The import process uses the WordPress importer plugin." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:326 +msgid "Import / Export Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:325 +msgid "Export settings to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:324 +msgid "Import configuration" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:320 +msgid "Use the text below to export to a new installation. Or paste in the new configuration to import." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:318 +msgid "Import / Export Settings" +msgstr "" + +#. translators: URL to wp-admin/import.php +#: includes/admin/store-settings/class-mp-store-settings-import.php:266 +msgid "This importer is not installed. Please install importers from the main site." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:261 +msgid "Install Now" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:260 +msgid "Install %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:240 +msgid "Run Importer" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:239 +msgid "Run %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:258 +msgid "Import/Export" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1199 +msgid "Requires Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:737 +msgid "Optionally limit the user to some categories" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:671 +msgid "Should this coupon only be available to logged in users?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:670 +msgid "Require Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:655 +msgid "Mimimum number of products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:653 +msgid "Enter the minimum number of products in the cart that this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:648 +msgid "Can this coupon be limited to a number of products in the cart?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:334 +msgid "Add all values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:265 +msgid "Set as default variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:154 +msgid "Set Default" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:150 +msgid "More Info" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:40 +msgid "MarketPress - Quick Setup" +msgstr "" + +#: includes/public/class-mp-checkout.php:1399 +msgid "Proceed to checkout and create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1241 +#: includes/public/class-mp-checkout.php:1245 +msgid "Register account" +msgstr "" + +#: includes/public/class-mp-checkout.php:1233 +msgid "Register as customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:765 +msgid "

    Oops!

    Looks like you haven't added anything your cart. Let's go shopping!

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:763 +msgid "

    Oops!

    The cart is disabled.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing Information" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:214 +msgid "Global Currency" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:198 +msgid "Global Store Currency" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:507 +msgid "There are no shipping services available for this type of package in your location." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:168 +msgid "Using this USPS Shipping calculator requires requesting an Ecommerce API Username and Password. Get your free set of credentials here ». The password is no longer used for the API, just the username which you should enter below. The USPS test site has not yet been updated and currently doesn't work - you should just request activating your credentials with USPS and go live." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:339 +msgid "ZIP Code" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:334 +msgid "Last name" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:333 +msgid "First name" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:150 +msgid "These are the manual payment instructions to display on the order confirmation screen. TOTAL will be replaced with the order total and ORDERID will be replaced with Order ID." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:240 +msgid "You must login to Authorize.net merchant dashboard to obtain the API login ID and API transaction key. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:327 +msgid "
    1. Set the \"Return Method\" within Site Management to Header Redirect and set the \"Return URL\" to %s
    2. Set your notifications url to %s
    " +msgstr "" + +#: includes/common/data.php:191 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Also, digital downloads included in your order are now ready to be downloaded. Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:185 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order is now available to download! Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:184 +msgid "Your Order Is Ready To Be Downloaded! (ORDERID)" +msgstr "" + +#: includes/common/data.php:179 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:173 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received, your digital goods are ready to be downloaded and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:167 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received and your digital goods are ready to be downloaded. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:160 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +" Your order has been received, and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information: \n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/class-mp-product.php:638 +msgid "You can not add more items to cart." +msgstr "" + +#: includes/common/class-mp-product.php:635 +msgid "You can only add {0} to cart." +msgstr "" + +#: includes/common/class-mp-product.php:625 +msgid "This product has an order limit of %d." +msgstr "" + +#: includes/common/class-mp-order.php:1454 +msgid "Shipped: tracking code: %s" +msgstr "" + +#: includes/common/class-mp-order.php:1000 +#: includes/common/class-mp-order.php:1012 +msgid "Finished" +msgstr "" + +#: includes/common/class-mp-order.php:858 +msgid "Contact Details" +msgstr "" + +#: includes/common/class-mp-order.php:339 includes/common/data.php:155 +msgid "" +"A new order (ORDERID) was created in your store:\n" +"\n" +" ORDERINFOSKU\n" +"\n" +" SHIPPINGINFO\n" +"\n" +" PAYMENTINFO\n" +"\n" +msgstr "\n" + +#: includes/common/class-mp-cart.php:1858 +msgid "Add again" +msgstr "" + +#: includes/common/class-mp-cart.php:1852 +msgid "was removed from Shopping Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1242 +#: includes/public/class-mp-short-codes.php:160 +msgid "Cart update notice: this item has a limit per order or you have reached the stock limit." +msgstr "" + +#: includes/admin/widgets/product-list.php:235 +msgid "Show Only Featured Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:533 +msgid "If enabled, users won't be able to filter products per category and/or to order by release date/name/price." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:531 +msgid "Hide Products Filter?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:353 +msgid "Notification to registration email instead of billing email?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:322 +msgid "Order Shipped - Mixed orders (with both digital and physical products)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:289 +msgid "Order Shipped - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:224 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:194 +msgid "New Order - Mixed" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:161 +msgid "New Order - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:115 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:243 +msgid "Mixed orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:110 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:238 +msgid "Digital downloads orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:105 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:233 +msgid "Physical orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:96 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed.
    For orders placed with manual payment, emails set here will be overriden by the one configured in manual payments settings, under payments settings page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:89 +msgid "Customer Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:47 +msgid "Admin Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:566 +msgid "Only contact details" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:565 +msgid "Full billing info" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:561 +msgid "Details Collection" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:548 +msgid "Digital Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:515 +msgid "Apply Tax to Digital Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:236 +msgid "product (default)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:231 +msgid "If you are experiencing conflicts with other e-commerce plugins change this setting. This will change the internal post type of all your products. Please note that changing this option may break 3rd party themes or plugins." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1203 +msgid "Hide details" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1202 +msgid "Show all changes" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1184 +msgid "Version %s" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1161 +msgid "Current" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1131 +msgid "%s changelog" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:952 +msgid "We did not find any data for this plugin or theme..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:285 +msgid "Activate WPMU DEV Dashboard" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:279 +msgid "Just one more step - activate the WPMU DEV Dashboard plugin and you're all done!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:277 +msgid "Important updates are available for your WPMU DEV plugins/themes. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:273 +msgid "Just one more step to enable updates and support for %s!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:271 +msgid "Important updates are available for %s. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:264 +msgid "activate" +msgstr "" + +#: includes/admin/class-mp-admin.php:398 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:248 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:289 +msgid "Dismiss" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:247 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:288 +msgid "Saving..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:244 +msgid "Install Plugin" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:238 +msgid "Almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:236 +msgid "Important updates are available for your WPMU DEV plugins/themes. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:232 +msgid "%s is almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:230 +msgid "Important updates are available for %s. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:223 +msgid "install" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1428 +msgid "Sets the number of Tags to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1289 +msgid "How many products to display in the product list if \"paginate\" is set to false." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:739 +#: includes/admin/class-mp-shortcode-builder.php:906 +#: includes/admin/class-mp-shortcode-builder.php:1350 +msgid "Grid" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:735 +#: includes/admin/class-mp-shortcode-builder.php:902 +#: includes/admin/class-mp-shortcode-builder.php:1346 +msgid "Products will be displayed as list or grid." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:206 +msgid "Display a cloud or list of your global product tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:205 +msgid "Display a list of your global categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:204 +msgid "Display a list or grid of your global products." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:181 +msgid "Display a list of featured products." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1451 +msgid "Is Featured?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1444 +msgid "Featured Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:581 +#: includes/admin/class-mp-products-admin.php:1580 +msgid "% discount" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:579 +msgid "OR" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:460 +#: includes/admin/class-mp-products-admin.php:586 +#: includes/admin/widgets/product-list.php:217 +msgid "Featured" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:536 +#: includes/admin/class-mp-orders-admin.php:538 +msgid "Tracking Link" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:508 +msgid "Shipping Tax" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:356 +msgid "Shipping Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:352 +msgid "Taxes Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:349 +msgid "Products Total" +msgstr "" + +#: includes/admin/class-mp-ajax.php:366 +msgid "Oops! You entered an invalid username/email and or password." +msgstr "" + +#: includes/admin/class-mp-ajax.php:254 +msgid "Percentage Discount" +msgstr "" + +#: includes/admin/class-mp-ajax.php:234 +msgid "Limit the Amount of Items per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:214 +msgid "Unused Attributes" +msgstr "" + +#: includes/admin/class-mp-admin.php:82 +msgid "Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-admin.php:79 +msgid "MarketPress setup is not complete! Once you've completed this quick setup wizard you'll have a fully working online store - exciting! " +msgstr "" + +#: marketpress.php:263 +msgctxt "mp_order" +msgid "Add New" +msgstr "" + +#: marketpress.php:184 +msgctxt "product_tag" +msgid "Product Tag" +msgstr "" + +#: marketpress.php:183 +msgctxt "product_tag" +msgid "Product Tags" +msgstr "" + +#: marketpress.php:150 +msgctxt "product_category" +msgid "Product Category" +msgstr "" + +#: marketpress.php:149 +msgctxt "product_category" +msgid "Product Categories" +msgstr "" + +#. Author URI of the plugin/theme +msgid "http://premium.wpmudev.org" +msgstr "" + +#: marketpress.php:729 +msgid "Invoice PDF" +msgstr "" + +#: marketpress.php:712 +msgid "Grant access to themes and gateways depending on the user's Pro Site level" +msgstr "" + +#: marketpress.php:711 +msgid "Pro Sites" +msgstr "" + +#: marketpress.php:703 +msgid "Offer and accept coupon codes" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:687 +msgid "Install %s Pages" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:682 +msgid "Welcome to %s – Install pages required by the plugin automatically." +msgstr "" + +#: marketpress.php:668 +msgid "Your pages were created successfully." +msgstr "" + +#: marketpress.php:436 +msgid "Add a Product" +msgstr "" + +#: marketpress.php:271 +msgid "Parent Order" +msgstr "" + +#: marketpress.php:270 +msgid "No orders found in trash" +msgstr "" + +#: marketpress.php:269 +msgid "No orders found" +msgstr "" + +#: marketpress.php:265 +msgid "Edit Order" +msgstr "" + +#: marketpress.php:264 +msgid "Add New Order" +msgstr "" + +#: marketpress.php:220 marketpress.php:221 +msgid "Add New Product" +msgstr "" + +#: marketpress.php:197 +msgid "No product tags found" +msgstr "" + +#: marketpress.php:196 +msgid "Choose from the most used product tags" +msgstr "" + +#: marketpress.php:195 +msgid "Add or remove product tags" +msgstr "" + +#: marketpress.php:194 +msgid "Separate product tags with commas" +msgstr "" + +#: marketpress.php:193 +msgid "Search Product Tags" +msgstr "" + +#: marketpress.php:192 +msgid "Parent Product Tag:" +msgstr "" + +#: marketpress.php:191 +msgid "Parent Product Tag" +msgstr "" + +#: marketpress.php:190 +msgid "New Product Tag Name" +msgstr "" + +#: marketpress.php:189 +msgid "Add New Product Tag" +msgstr "" + +#: marketpress.php:188 +msgid "Update Product Tag" +msgstr "" + +#: marketpress.php:187 +msgid "View Product Tag" +msgstr "" + +#: marketpress.php:186 +msgid "Edit Product Tag" +msgstr "" + +#: marketpress.php:185 +msgid "All Product Tags" +msgstr "" + +#: marketpress.php:163 +msgid "No product categories found" +msgstr "" + +#: marketpress.php:162 +msgid "Choose from the most used product categories" +msgstr "" + +#: marketpress.php:161 +msgid "Add or remove product categories" +msgstr "" + +#: marketpress.php:160 +msgid "Separate product categories with commas" +msgstr "" + +#: marketpress.php:159 +msgid "Search Product Categories" +msgstr "" + +#: marketpress.php:158 +msgid "Parent Product Category:" +msgstr "" + +#: marketpress.php:157 +msgid "Parent Product Category" +msgstr "" + +#: marketpress.php:156 +msgid "New Product Category Name" +msgstr "" + +#: marketpress.php:155 +msgid "Add New Product Category" +msgstr "" + +#: marketpress.php:154 +msgid "Update Product Category" +msgstr "" + +#: marketpress.php:153 +msgid "View Product Category" +msgstr "" + +#: marketpress.php:152 +msgid "Edit Product Category" +msgstr "" + +#: marketpress.php:151 +msgid "All Product Categories" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Please fix the %s1 and then try submitting the form again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Oops! The form contains %s1 which %s2 been highlighted below." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:660 +msgid "have" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:659 +msgid "has" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:651 +msgid "Value must be less than {0}" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:650 +msgid "Please enter only letters and numbers" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:539 +msgid "Due to prolonged inactivity on this page, one or more settings were not saved. Please try again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:535 +msgid "Settings Saved" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-user-select.php:22 +msgid "Select Some Users" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-section.php:18 +msgid "Section Title" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:425 +msgid "Are you sure you want to delete this?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:30 +msgid "Add Row" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-post-select.php:24 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-taxonomy-select.php:22 +msgid "Select Posts" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:210 +msgid "Add Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:129 +msgid "Select the image that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:93 +msgid "Select image(s) that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:79 +msgid "Select the image that you would like to use for this variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:48 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:82 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:68 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:132 +msgid "Select Image" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:31 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:160 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:168 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:19 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:115 +msgid "Select File" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:30 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:18 +msgid "Select the file that you would like to use." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:357 +msgid "Create Variations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:356 +msgid "Add Another Variant" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Insert a value and press ENTER" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "(e.g. White, Grey, Red etc.)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Variation Values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:333 +msgid "Or create new variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "(e.g. Color)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:303 +msgid "You are about to delete selected variants.
    If you want to continue please confirm." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:302 +msgid "Confirmation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:290 +msgid "Insert quantity available. Empty for unlimited." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:281 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:294 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:307 +msgid "Cancel" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:280 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:293 +msgid "Update" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:277 +msgid "Insert the price i.e. 25 or 25.50" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:115 +msgid "Img." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:85 +msgid "Add New Variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:79 +msgid "Delete Variants" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:78 +msgid "Update Prices" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:77 +msgid "Update Inventory" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:76 +msgid "Update Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:75 +msgid "Bulk Actions" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:73 +msgid "Select bulk action" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:196 +msgid "Configure Store" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:195 +msgid "Configure shipping rates, emails and your store's appearance. " +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:190 +msgid "Add Product" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:189 +msgid "Add your first product for sale and get familiar with adding products." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:184 +msgid "Your store is almost ready for its first customers, but first it needs some products. Get started by adding products below, or jump straight into further configuring your store’s settings." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:183 +msgid "Woohoo! Your online store is up and running." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:160 +msgid "Finish Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:124 +msgid "And what metric system do you want to use?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:113 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:142 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:159 +msgid "Back" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:109 +msgid "Do you want to apply tax for your products? You can customize this for each product and variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:105 +msgid "What currency do you want to sell with?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:93 +msgid "And, which countries do you want to sell to?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:89 +msgid "Where is your online store based?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:80 +msgid "Payment Gateway" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:79 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:123 +msgid "Metric System" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:78 +msgid "Currency & Tax" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:77 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:88 +msgid "Locations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:70 +msgid "Choose where you want to sell your stuff and what currency. Easy!" +msgstr "" + +#: includes/public/class-mp-checkout.php:1400 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:58 +msgid "Continue" +msgstr "" + +#: includes/admin/class-mp-admin.php:83 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:53 +msgid "Skip this step, I'll do this manually" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:49 +msgid "Install store pages" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:44 +msgid "Once you've completed this quick setup wizard you'll have a fully working online store - exciting! Start
    by creating the default store pages for the online store such as the cart, checkout and store pages." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:42 +msgid "MarketPress adds a full online store to your website, with heaps of configuration options and addons
    to suit your needs. It's really easy to get going, and only takes a few minutes to setup!" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:41 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:69 +msgid "Welcome to MarketPress - Quick Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-advanced-select.php:23 +msgid "Select Some Options" +msgstr "" + +#: includes/wpmudev-metaboxes/class-wpmudev-field.php:694 +msgid "You must the WPMUDEV_Field::display() method in your form field class" +msgstr "" + +#: includes/public/class-mp-short-codes.php:636 +msgid "Only %s left in stock..." +msgstr "" + +#: includes/public/class-mp-short-codes.php:633 +msgid "Unlimited stock" +msgstr "" + +#: includes/public/class-mp-short-codes.php:430 +msgid "product_id must be defined" +msgstr "" + +#: includes/public/class-mp-checkout.php:1250 +msgid "An account with this username already exists" +msgstr "" + +#: includes/public/class-mp-checkout.php:1394 +msgid "Continue as Guest" +msgstr "" + +#: includes/public/class-mp-checkout.php:1393 +msgid "Proceed to checkout and you'll have an opportunity to create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1392 +#: includes/public/class-mp-checkout.php:1398 +msgid "First-time customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1386 +msgid "Login" +msgstr "" + +#: includes/public/class-mp-checkout.php:1379 +msgid "E-Mail Address/Username" +msgstr "" + +#: includes/public/class-mp-checkout.php:1377 +msgid "Sign in to speed up the checkout process." +msgstr "" + +#: includes/public/class-mp-checkout.php:1376 +msgid "Have an account?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1297 +msgid "Shipping address different than billing?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1184 +msgid "There are no available gateways to process this payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1160 +msgid "Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:1123 +msgid "Oops! An error occurred while processing your payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1051 +msgid "Next Step »" +msgstr "" + +#: includes/public/class-mp-checkout.php:1045 +msgid "« Previous Step" +msgstr "" + +#: includes/public/class-mp-checkout.php:873 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:657 +msgid "error" +msgstr "" + +#: includes/public/class-mp-checkout.php:872 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:658 +msgid "errors" +msgstr "" + +#: includes/public/class-mp-checkout.php:871 +msgid "

    Oops! We found %d %s in the form below.

    Fields that have errors are highlighted in red below. Entering into a field will reveal the actual error that occurred.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:870 +msgid "Please enter a valid first and last name" +msgstr "" + +#: includes/public/class-mp-checkout.php:869 +msgid " Please enter a valid card security code" +msgstr "" + +#: includes/public/class-mp-checkout.php:868 +msgid "Please enter a valid card expiration" +msgstr "" + +#: includes/public/class-mp-checkout.php:773 +msgid "Javascript is required in order to checkout. Please enable Javascript in your browser and then refresh this page." +msgstr "" + +#: includes/public/class-mp-checkout.php:588 +msgid "An unknown error occurred. Please try again." +msgstr "" + +#: includes/public/class-mp-checkout.php:386 +msgid "Town/City" +msgstr "" + +#: includes/public/class-mp-checkout.php:380 +msgid "Apartment, suite, unit, building, floor, etc" +msgstr "" + +#: includes/public/class-mp-checkout.php:376 +msgid "Address Line 2" +msgstr "" + +#: includes/public/class-mp-checkout.php:363 +msgid "Address Line 1" +msgstr "" + +#: includes/common/class-mp-order.php:770 +#: includes/public/class-mp-checkout.php:354 +msgid "Company" +msgstr "" + +#: includes/public/class-mp-checkout.php:330 +msgid "Last" +msgstr "" + +#: includes/public/class-mp-checkout.php:321 +msgid "First" +msgstr "" + +#: includes/public/class-mp-checkout.php:284 +msgid "State/Province" +msgstr "" + +#: includes/public/class-mp-checkout.php:83 +msgid "Review Order/Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing/Shipping Address" +msgstr "" + +#: includes/public/class-mp-checkout.php:80 +msgid "Login/Register" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:530 +msgid "Marketplace" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:523 +msgid "Global Marketplace Pages" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +msgid "Store Network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +#: includes/multisite/class-mp-admin-multisite.php:494 +msgid "Store Network Settings" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:440 +msgid "Set theme access permissions for network stores. For a custom css theme, save your css file with the MarketPress Theme: NAME header in the /marketpress/ui/themes/ folder and it will appear in this list so you may select it." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:361 +msgid "Choose a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:336 +msgid "%d products get indexed" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:285 +msgid "Product Indexer" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:281 +msgid "Please hold on..." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:280 +msgid "Index Products" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:279 +msgid "%d products have been indexed in whole network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:182 +msgid "Enable Global Shopping Cart?" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:178 +msgid "Limit Global Widgets/Shortcodes To Main Blog?" +msgstr "" + +#: includes/common/template-functions.php:2802 +#: includes/multisite/template-functions.php:355 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:97 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:114 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:143 +msgid "Next" +msgstr "" + +#: includes/common/template-functions.php:2801 +#: includes/multisite/template-functions.php:354 +msgid "Prev" +msgstr "" + +#: includes/common/template-functions.php:2597 +msgid "Tagged in " +msgstr "" + +#: includes/common/template-functions.php:2196 +#: includes/common/template-functions.php:2202 +#: includes/common/template-functions.php:2214 +#: includes/common/template-functions.php:2217 +msgid "Oops! We couldn't locate any orders matching that order number. Please verify the order number and try again." +msgstr "" + +#: includes/common/template-functions.php:2138 +msgid "Look Up" +msgstr "" + +#: includes/common/template-functions.php:1423 +msgid "Please choose a shipping method" +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "If you have your order ID you can look it up using the form below." +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "Order Search" +msgstr "" + +#: includes/common/template-functions.php:910 +#: includes/public/class-mp-checkout.php:1440 +msgid "Cart" +msgstr "" + +#: includes/common/template-functions.php:895 +msgid "[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:887 +msgid "[mp_global_categories_list]" +msgstr "" + +#: includes/common/template-functions.php:880 +msgid "" +"Welcome to our market place!\n" +"\n" +"Check out our network of products:\n" +"\n" +"[mp_list_global_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_global_categories_list]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:879 +msgid "Global Store" +msgstr "" + +#: includes/common/template-functions.php:873 +msgid "" +"Welcome to our online store! Feel free to browse around:\n" +"\n" +"[mp_store_navigation]\n" +"\n" +"Check out our most popular products:\n" +"\n" +"[mp_popular_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_list_categories]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_tag_cloud]" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:127 +msgid "If cart weight is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:126 +msgid "Cart Weight" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:222 +msgid "Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:206 +msgid "Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:196 +msgid "Retail Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:195 +msgid "Online Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:193 +msgid "Rates Request Type" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:189 +msgid "Maximum Weight Per Package" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:195 +#: includes/common/shipping-modules/mp-usps.php:236 +msgid "Enter your standard box sizes as LengthxWidthxHeight (e.g. 12x8x6) For each box defined enter the maximum weight it can contain. Note: the shipping prices this plugin calculates are estimates. If they are consistently too low or too high, please check that the list of boxes above and the product weights are accurate and complete." +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:187 +msgid "Handling Charge Per Box Shipped" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:176 +#: includes/common/shipping-modules/mp-ups.php:181 +msgid "Offered Services" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:165 +msgid "Shipper Number" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:151 +msgid "User ID" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:144 +msgid "Developer Kit Access Key" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:140 +msgid "Use Sandbox Mode?" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:123 +msgid "In order to use UPS, you will need a UPS Developer Kit access key and the UPS user ID and password associated with the access key. Set these up for free here. If this information is missing or incorrect, an error will appear during the checkout process and the buyer will not be able to complete the transaction." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:112 +msgid "If cart total is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:111 +msgid "Cart Total" +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:95 +#: includes/common/shipping-modules/mp-weight-rate.php:111 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Don't worry about sorting as this will be done automatically upon saving." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:170 +msgid "Method Title (visible for clients)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:409 +#: includes/common/shipping-modules/mp-ups.php:216 +#: includes/common/shipping-modules/mp-usps.php:251 +msgid "Max Weight (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:402 +#: includes/common/shipping-modules/mp-ups.php:209 +#: includes/common/shipping-modules/mp-usps.php:247 +msgid "Size (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:387 +msgid "Enter your standard box sizes as LengthxWidthxHeight ( 12x8x6 ) For each box defined enter the maximum weight it can contain. Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:361 +#: includes/common/shipping-modules/mp-usps.php:229 +msgid "Handling Charge per International Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:353 +msgid "International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:339 +#: includes/common/shipping-modules/mp-usps.php:213 +msgid "Handling Charge per Domestic Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:331 +msgid "Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:321 +msgid "When checked the customer can chose Residential or Commercial delivery with Residential the default. Unchecked it's only Residential rates." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:320 +msgid "Allow Commercial Delivery?" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:315 +msgid "Fedex 10kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:314 +msgid "Fedex 25kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:313 +msgid "Fedex Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:312 +msgid "Fedex Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:311 +msgid "Fedex Pak" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:310 +msgid "Fedex Tube" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:306 +msgid "Default Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:294 +msgid "Dropoff Type" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:290 +msgid "Meter ID" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:134 +msgid "This is a residential address" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:283 +msgid "There was an error processing your card: \"%s\". Please check your credit card info and try again." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:121 +msgid "Wepay makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept cards directly on your site. You don't need a merchant account or gateway. WePay handles everything including storing cards. Credit cards go directly to WePay's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:385 +msgid "There was an error processing your card - \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:356 +msgid "%s Store Purchase - Order ID - %s, Email - %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:251 +msgid "Stripe makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept Visa, MasterCard, American Express, Discover, JCB, and Diners Club cards directly on your site. You don't need a merchant account or gateway. Stripe handles everything, including storing cards, subscriptions, and direct payouts to your bank account. Credit cards go directly to Stripe's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:192 +msgid "ZMW - Zambian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:191 +msgid "ZAR - South African Rand" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:190 +msgid "YER - Yemeni Rial" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:189 +msgid "XPF - Cfp Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:188 +msgid "XOF - West African Cfa Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:187 +msgid "XCD - East Caribbean Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:186 +msgid "XAF - Central African Cfa Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:185 +msgid "WST - Samoan Tala" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:184 +msgid "VUV - Vanuatu Vatu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:183 +msgid "VND - Vietnamese Đồng" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:182 +msgid "VEF - Venezuelan Bolívar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:181 +msgid "UZS - Uzbekistani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:180 +msgid "UYI - Uruguayan Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:178 +msgid "UGX - Ugandan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:177 +msgid "UAH - Ukrainian Hryvnia" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:176 +msgid "TZS - Tanzanian Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:175 +msgid "TWD - New Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:174 +msgid "TTD - Trinidad and Tobago Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:172 +msgid "TOP - Tongan Paʻanga" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:171 +msgid "TJS - Tajikistani Somoni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:169 +msgid "SZL - Swazi Lilangeni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:168 +msgid "SVC - Salvadoran Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:167 +msgid "STD - São Tomé and Príncipe Dobra" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:166 +msgid "SRD - Surinamese Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:165 +msgid "SOS - Somali Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:164 +msgid "SLL - Sierra Leonean Leone" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:163 +msgid "SHP - Saint Helenian Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:160 +msgid "SCR - Seychellois Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:159 +msgid "SBD - Solomon Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:157 +msgid "RWF - Rwandan Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:156 +msgid "RUB - Russian Ruble" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:155 +msgid "RSD - Serbian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:154 +msgid "RON - Romanian Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:153 +msgid "QAR - Qatari Riyal" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:152 +msgid "PYG - Paraguayan Guaraní*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:151 +msgid "PLN - Polish Złoty" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:150 +msgid "PKR - Pakistani Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:149 +msgid "PHP - Philippine Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:148 +msgid "PGK - Papua New Guinean Kina" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:147 +msgid "PEN - Peruvian Nuevo Sol*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:146 +msgid "PAB - Panamanian Balboa*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:144 +msgid "NPR - Nepalese Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:142 +msgid "NIO - Nicaraguan Córdoba*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:141 +msgid "NGN - Nigerian Naira" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:140 +msgid "NAD - Namibian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:139 +msgid "MZN - Mozambican Metical" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:137 +msgid "MXN - Mexican Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:136 +msgid "MWK - Malawian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:135 +msgid "MVR - Maldivian Rufiyaa" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:134 +msgid "MUR - Mauritian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:133 +msgid "MRO - Mauritanian Ouguiya" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:132 +msgid "MOP - Macanese Pataca" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:131 +msgid "MNT - Mongolian Tögrög" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:130 +msgid "MKD - Macedonian Denar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:129 +msgid "MGA - Malagasy Ariary" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:128 +msgid "MDL - Moldovan Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:126 +msgid "LVL - Latvian Lats" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:124 +msgid "LSL - Lesotho Loti" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:123 +msgid "LRD - Liberian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:122 +msgid "LKR - Sri Lankan Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:121 +msgid "LBP - Lebanese Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:120 +msgid "LAK - Lao Kip*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:119 +msgid "KZT - Kazakhstani Tenge" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:118 +msgid "KYD - Cayman Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:117 +msgid "KRW - South Korean Won" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:116 +msgid "KMF - Comorian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:115 +msgid "KHR - Cambodian Riel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:114 +msgid "KGS - Kyrgyzstani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:113 +msgid "KES - Kenyan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:111 +msgid "JMD - Jamaican Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:110 +msgid "ISK - Icelandic Króna" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:109 +msgid "INR - Indian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:108 +msgid "ILS - Israeli New Sheqel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:107 +msgid "IDR - Indonesian Rupiah" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:105 +msgid "HTG - Haitian Gourde" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:103 +msgid "HNL - Honduran Lempira*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:101 +msgid "GYD - Guyanese Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:100 +msgid "GTQ - Guatemalan Quetzal*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:99 +msgid "GNF - Guinean Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:98 +msgid "GMD - Gambian Dalasi" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:97 +msgid "GIP - Gibraltar Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:96 +msgid "GEL - Georgian Lari" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:94 +msgid "FKP - Falkland Islands Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:93 +msgid "FJD - Fijian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:91 +msgid "ETB - Ethiopian Birr" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:90 +msgid "EGP - Egyptian Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:89 +msgid "EEK - Estonian Kroon*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:88 +msgid "DZD - Algerian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:87 +msgid "DOP - Dominican Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:85 +msgid "DJF - Djiboutian Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:84 +msgid "CZK - Czech Koruna*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:83 +msgid "CVE - Cape Verdean Escudo*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:82 +msgid "CRC - Costa Rican Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:81 +msgid "COP - Colombian Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:80 +msgid "CNY - Chinese Renminbi Yuan" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:79 +msgid "CLP - Chilean Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:77 +msgid "CDF - Congolese Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:76 +msgid "CAD - Canadian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:75 +msgid "BZD - Belize Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:74 +msgid "BWP - Botswana Pula" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:73 +msgid "BSD - Bahamian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:72 +msgid "BRL - Brazilian Real*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:71 +msgid "BOB - Bolivian Boliviano*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:70 +msgid "BND - Brunei Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:69 +msgid "BMD - Bermudian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:68 +msgid "BIF - Burundian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:67 +msgid "BGN - Bulgarian Lev" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:66 +msgid "BDT - Bangladeshi Taka" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:65 +msgid "BBD - Barbadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:64 +msgid "BAM - Bosnia & Herzegovina Convertible Mark" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:63 +msgid "AZN - Azerbaijani Manat" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:62 +msgid "AWG - Aruban Florin" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:61 +msgid "AUD - Australian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:60 +msgid "ARS - Argentine Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:59 +msgid "AOA - Angolan Kwanza*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:58 +msgid "ANG - Netherlands Antillean Gulden" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:57 +msgid "AMD - Armenian Dram" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:56 +msgid "ALL - Albanian Lek" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:55 +msgid "AFN - Afghan Afghani*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:54 +msgid "AED - United Arab Emirates Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:345 +msgid "Skrill balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:327 +msgid "Skrill IPN message received." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:283 +msgid "Skrill" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:278 +msgid "Pending payment" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:144 +msgid "The secret word must match the word submitted in the \"Merchant Tools\" section of your Skrill account." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:134 +msgid "You must use your valid Skrill merchant email. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:133 +msgid "Skrill Email" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:123 +msgid "Resell your inventory via Skrill.com (Moneybookers)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:95 +msgid "ZAR - South-African Rand" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:93 +msgid "TWD - Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:92 +msgid "TRY - New Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:91 +msgid "TND - Tunisian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:90 +msgid "THB - Thailand Baht" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:89 +msgid "SKK - Slovakian Koruna" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:86 +#: includes/common/payment-gateways/stripe.php:158 +msgid "SAR - Saudi Riyal" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:85 +msgid "RSD - Serbian dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:83 +msgid "QAR - Qatari Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:81 +msgid "OMR - Omani Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:80 +msgid "NOK - Norwegian Krone " +msgstr "" + +#: includes/common/payment-gateways/skrill.php:78 +#: includes/common/payment-gateways/stripe.php:138 +msgid "MYR - Malaysian Ringgit" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:77 +#: includes/common/payment-gateways/stripe.php:127 +msgid "MAD - Moroccan Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:74 +msgid "KRW - South-Korean Won" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:72 +msgid "JOD - Jordanian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:70 +msgid "INR - Indian Rupee" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:63 +msgid "EEK - Estonian Kroon" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:56 +msgid "AED - Utd. Arab Emir. Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:52 +msgid "Turkish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:51 +msgid "Swedish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:50 +msgid "Spanish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:49 +msgid "Russian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:48 +msgid "Romainian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:47 +msgid "Polish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:46 +msgid "Italian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:45 +msgid "Greek" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:44 +msgid "German" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:43 +msgid "French" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:42 +msgid "Finnish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:41 +msgid "English" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:40 +msgid "Dutch" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:39 +msgid "Danish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:38 +msgid "Czech" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:37 +msgid "Chinese" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:201 +msgid "There was an error processing your card: %s. Please re-enter your credit card info and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:278 +msgid "
  • There was an error processing your card: \"%s\". Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:274 +msgid "
  • There was an error processing your card. Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:177 +#: includes/common/payment-gateways/stripe.php:279 +msgid "Publishable Key" +msgstr "" + +#: includes/common/payment-gateways/pin.php:163 +msgid "API Credentials?" +msgstr "" + +#: includes/common/payment-gateways/pin.php:147 +msgid "PIN makes it easy to start accepting credit card payments with Australia’s first all-in-one online payment system. Accept all major credit cards directly on your site. Your sales proceeds are deposited to any Australian bank account, no merchant account required." +msgstr "" + +#: includes/common/payment-gateways/pin.php:57 +#: includes/common/payment-gateways/stripe.php:179 +msgid "USD - United States Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:455 +msgid "Email Footer" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:445 +msgid "Email Header" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:416 +msgid "Partner" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:409 +msgid "Vendor" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:852 +#: includes/common/payment-gateways/paypal-express.php:1126 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences\t section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:749 +msgid "Page Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:744 +msgid "Header Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:739 +msgid "Header Border Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:734 +msgid "Header Image" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:680 +msgid "Locale" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:624 +#: includes/common/payment-gateways/paypal-express.php:658 +msgid "Merchant Email" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:645 +msgid "Paypal Express Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:603 +msgid "Paypal Express Network Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:861 +msgid "Application ID (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:854 +msgid "Signature (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:847 +msgid "API Password (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:839 +msgid "API Username (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:832 +msgid "Signature (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:825 +msgid "API Password (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:817 +msgid "API Username (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:799 +msgid "This message is displayed at the top of the gateway settings page to store admins. It's a good place to inform them of your fees or put any sales messages." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:787 +msgid "Please enter your PayPal email address or business ID you want to recieve fees at." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:786 +msgid "PayPal E-mail" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:772 +msgid "Fees to Collect (%)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:375 +#: includes/public/class-mp-checkout.php:341 +msgid "Email Address" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:299 +msgid "Sorry, your order was not completed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:126 +#: includes/common/payment-gateways/paypal-express.php:780 +msgid "You will be redirected to the PayPal site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:90 +#: includes/common/payment-gateways/skrill.php:94 +msgid "USD - U.S. Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:89 +msgid "TRY - Turkish lira" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:88 +#: includes/common/payment-gateways/stripe.php:170 +msgid "THB - Thai Baht" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:87 +msgid "TWD - Taiwan New Dollars" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:86 +#: includes/common/payment-gateways/pin.php:59 +#: includes/common/payment-gateways/skrill.php:88 +#: includes/common/payment-gateways/stripe.php:162 +msgid "SGD - Singapore Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:84 +msgid "RUB - Russian Rubles" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:82 +msgid "PHP - Philippine Pesos" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:81 +#: includes/common/payment-gateways/pin.php:58 +#: includes/common/payment-gateways/skrill.php:79 +#: includes/common/payment-gateways/stripe.php:145 +msgid "NZD - New Zealand Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:79 +msgid "MXN - Mexican Peso" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:78 +msgid "MYR - Malaysian Ringgits" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:77 +#: includes/common/payment-gateways/pin.php:64 +#: includes/common/payment-gateways/skrill.php:73 +#: includes/common/payment-gateways/stripe.php:112 +msgid "JPY - Japanese Yen" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:75 +#: includes/common/payment-gateways/pin.php:63 +#: includes/common/payment-gateways/skrill.php:66 +#: includes/common/payment-gateways/stripe.php:102 +msgid "HKD - Hong Kong Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:73 +msgid "GBP - Pound Sterling" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:68 +#: includes/common/payment-gateways/pin.php:62 +#: includes/common/payment-gateways/skrill.php:59 +msgid "CAD - Canadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:67 +msgid "BRL - Brazilian Real" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:66 +#: includes/common/payment-gateways/pin.php:56 +#: includes/common/payment-gateways/skrill.php:57 +msgid "AUD - Australian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:288 +msgid "There was an error processing your card: \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:163 +msgid "When running on a live site, Paymill recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:161 +#: includes/common/payment-gateways/pin.php:157 +#: includes/common/payment-gateways/simplify.php:103 +#: includes/common/payment-gateways/stripe.php:260 +#: includes/common/payment-gateways/wepay.php:153 +msgid "Force SSL?" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:151 +msgid "Accept Visa, Mastercard, Maestro UK, Discover and Solo cards directly on your site. You don't need a merchant account or gateway. Credit cards go directly to Paymill's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:131 +msgid "CVV2" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:72 +#: includes/common/payment-gateways/pin.php:61 +#: includes/common/payment-gateways/skrill.php:65 +#: includes/common/payment-gateways/stripe.php:95 +msgid "GBP - British Pound" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:71 +#: includes/common/payment-gateways/stripe.php:173 +msgid "TRY - Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:70 +#: includes/common/payment-gateways/paypal-chained-payments.php:85 +#: includes/common/payment-gateways/skrill.php:87 +#: includes/common/payment-gateways/stripe.php:161 +msgid "SEK - Swedish Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:69 +#: includes/common/payment-gateways/skrill.php:84 +msgid "RON - Romanian Leu New" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:68 +#: includes/common/payment-gateways/paypal-chained-payments.php:83 +#: includes/common/payment-gateways/skrill.php:82 +msgid "PLN - Polish Zloty" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:67 +#: includes/common/payment-gateways/paypal-chained-payments.php:80 +#: includes/common/payment-gateways/stripe.php:143 +msgid "NOK - Norwegian Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:66 +#: includes/common/payment-gateways/skrill.php:75 +#: includes/common/payment-gateways/stripe.php:125 +msgid "LTL - Lithuanian Litas" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:65 +#: includes/common/payment-gateways/paypal-chained-payments.php:69 +#: includes/common/payment-gateways/skrill.php:60 +#: includes/common/payment-gateways/stripe.php:78 +msgid "CHF - Swiss Franc" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:64 +#: includes/common/payment-gateways/skrill.php:76 +msgid "LVL - Latvian Lat" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:63 +#: includes/common/payment-gateways/paypal-chained-payments.php:74 +#: includes/common/payment-gateways/skrill.php:69 +msgid "ILS - Israeli Shekel" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:62 +#: includes/common/payment-gateways/skrill.php:71 +msgid "ISK - Iceland Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:61 +#: includes/common/payment-gateways/paypal-chained-payments.php:76 +#: includes/common/payment-gateways/skrill.php:68 +#: includes/common/payment-gateways/stripe.php:106 +msgid "HUF - Hungarian Forint" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:60 +#: includes/common/payment-gateways/paypal-chained-payments.php:71 +#: includes/common/payment-gateways/skrill.php:62 +#: includes/common/payment-gateways/stripe.php:86 +msgid "DKK - Danish Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:59 +#: includes/common/payment-gateways/skrill.php:67 +#: includes/common/payment-gateways/stripe.php:104 +msgid "HRK - Croatian Kuna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:58 +#: includes/common/payment-gateways/paypal-chained-payments.php:70 +#: includes/common/payment-gateways/skrill.php:61 +msgid "CZK - Czech Koruna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:57 +#: includes/common/payment-gateways/skrill.php:58 +msgid "BGN - Bulgarian Leva" +msgstr "" + +#: includes/common/payment-gateways/payflow/class-mp-gateway-worker-payflow.php:123 +msgid "There was an error connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:344 +msgid "This setting will log all PayFast communication to the \"payfast.log\" file." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:342 +msgid "Log Debugging Info?" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:335 +msgid "DO NOT INPUT A VALUE UNLESS YOU HAVE SET ONE IN THE SETTINGS SECTION OF YOUR PAYFAST SETTINGS." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:333 +msgid "PayFast Passphrase" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:323 +msgid "You can find your credentials on your integration page." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:321 +msgid "PayFast Merchant Credentials" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:311 +msgid "PayFast Mode" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:308 +msgid "PayFast is a payments processing service for South Africa. We make it safe for buyers to send money and easy for sellers to receive money. More Info »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:306 +msgid "PayFast Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:285 +msgid "Your payment via PayFast for this order totaling %s is complete. The transaction number is %s." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:278 +msgid "Your payment via PayFast for this order totaling %s is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:124 +msgid "Your PayFast transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:82 +#: includes/common/payment-gateways/payfast.php:83 +msgid "PayFast" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:157 +msgid "API error: - \"%s\"" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:198 +msgid "The payment request is under process" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:140 +msgid "Order: #" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:116 +msgid "You will be redirected to the Mollie site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:73 +msgid "%sMollie%s provides a fully PCI Compliant and secure way to collect payments via iDeal, Credit Card, Bancontact / Mister Cash, SOFORT Banking, Overbooking, Bitcoin, PayPal, paysafecard and AcceptEmail." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:53 +#: includes/common/payment-gateways/mollie.php:54 +#: includes/common/payment-gateways/mollie.php:195 +#: includes/common/payment-gateways/mollie.php:245 +msgid "Mollie" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:50 +#: includes/common/payment-gateways/paymill.php:56 +#: includes/common/payment-gateways/paypal-chained-payments.php:72 +#: includes/common/payment-gateways/pin.php:60 +#: includes/common/payment-gateways/skrill.php:64 +#: includes/common/payment-gateways/stripe.php:92 +msgid "EUR - Euro" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:306 +msgid "Access Key" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:300 +msgid "You must login to the Mijireh.com dashboard to obtain the Access Key." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:299 +msgid "Credentials" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:289 +msgid "Mijireh Checkout provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:269 +msgid "Mijireh Error: " +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:89 +msgid "You will be redirected to the Mijireh.com site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:87 +msgid "Your Mijireh transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:42 +#: includes/common/payment-gateways/mijireh.php:43 +#: includes/common/payment-gateways/mijireh.php:324 +msgid "Mijireh" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:145 +msgid "These are the manual payment instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:189 +msgid "This is the email text to send to those who have made free order checkouts. You should include your free order instructions / information here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:183 +msgid "This is the free order information to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:182 +msgid "Confirmation User Information" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:177 +msgid "This is the information to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:163 +msgid "If enabled, all free orders will be automatically marked as paid." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:159 +msgid "Payment Status" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:149 +msgid "This gateway is automatically activated if order totalling 0 and it can't be disabled" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:35 +#: includes/common/payment-gateways/free_orders.php:36 +#: includes/common/payment-gateways/free_orders.php:89 +msgid "Free Order" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:34 +#: includes/common/payment-gateways/free_orders.php:197 +msgid "Free Orders" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:515 +msgid "Sandbox API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:266 +#: includes/common/payment-gateways/eway31.php:542 +msgid "eWay Rapid 3.1 Payments (beta)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:403 +msgid "Hosted Payment Page Language" +msgstr "" + +#: includes/common/payment-gateways/eway.php:373 +msgid "Note when testing in sandbox mode it will use the default eWay test API credentials. Also, please note that cart total needs to be a whole number (e.g. 10.00) in order to generate a successful transaction, otherwise the transaction will fail." +msgstr "" + +#: includes/common/payment-gateways/eway.php:267 +msgid "You will be redirected to https://www.eway.com.au to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:380 +msgid "You have chosen to checkout using %s. Please confirm your order details and click \"Submit Order\" when finished." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:272 +#: includes/common/payment-gateways/paymill.php:131 +#: includes/common/payment-gateways/stripe.php:231 +msgid "Security Code " +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Enter in MM/YYYY or MM/YY format" +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Expiration" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:321 +msgid "Delim Data" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:307 +#: includes/common/payment-gateways/paypal-payflow.php:456 +msgid "This text will appear as the footer of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:287 +#: includes/common/payment-gateways/paypal-payflow.php:440 +msgid "Email Customer (on success)" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:278 +msgid "Authorize.net default is \",\". Otherwise, get this from your credit card processor. If the transactions are not going through, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:277 +msgid "Delimeter Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:193 +msgid "Held For Review" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:310 +#: includes/common/payment-gateways/payfast.php:314 +msgid "Test" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:300 +#: includes/common/payment-gateways/pin.php:170 +#: includes/common/payment-gateways/stripe.php:272 +msgid "Secret Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:283 +msgid "Select Your Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:97 +msgid "Your payment will be processed by the iDEAL network" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:208 +msgid "These are the CubePoints to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:203 +msgid "These are the CubePoints instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:266 +msgid "If enabled, all API calls will be made to https://test.bitpay.com." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:263 +msgid "Use Test Mode?" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:259 +msgid "If checked, response fron bitpay will be stored in log file, keep it disabled unless required." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:256 +msgid "Enable Debug Log" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:249 +msgid "Full Notifications" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:231 +#: includes/common/payment-gateways/eway31.php:499 +#: includes/common/payment-gateways/eway31.php:526 +#: includes/common/payment-gateways/mollie.php:83 +#: includes/common/shipping-modules/mp-fedex.php:269 +msgid "API Key" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:222 +msgid "You can now accept a payment from any country on Earth, with no risk of fraud. To use Bitpay, you need to signup on Bitpay. \\n After completing the signup process, you can get api keys at Bitpay API key. You can read more about Bitpay at Bitpay API. \\n Bitpay requires SSL(https) for payment notifications to work." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:61 +msgid "You will be redirected to bitpay.com, for bitcoin payment. It is completely safe." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:346 +msgid "You must login to the 2Checkout vendor dashboard to obtain the seller ID and secret word. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:345 +#: includes/common/payment-gateways/authorizenet-aim.php:239 +#: includes/common/payment-gateways/paymill.php:168 +#: includes/common/payment-gateways/paypal-express.php:704 +#: includes/common/payment-gateways/simplify.php:80 +#: includes/common/payment-gateways/stripe.php:265 +#: includes/common/payment-gateways/wepay.php:158 +msgid "API Credentials" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:325 +#: includes/common/payment-gateways/_bitpay.php:220 +#: includes/common/payment-gateways/_cubepoints.php:185 +#: includes/common/payment-gateways/_ideal.php:268 +#: includes/common/payment-gateways/_payway.php:255 +#: includes/common/payment-gateways/authorizenet-aim.php:219 +#: includes/common/payment-gateways/eway.php:352 +#: includes/common/payment-gateways/eway31.php:460 +#: includes/common/payment-gateways/free_orders.php:147 +#: includes/common/payment-gateways/manual-payments.php:126 +#: includes/common/payment-gateways/mijireh.php:287 +#: includes/common/payment-gateways/mollie.php:71 +#: includes/common/payment-gateways/paymill.php:149 +#: includes/common/payment-gateways/paypal-chained-payments.php:344 +#: includes/common/payment-gateways/paypal-payflow.php:376 +#: includes/common/payment-gateways/pin.php:145 +#: includes/common/payment-gateways/simplify.php:69 +#: includes/common/payment-gateways/skrill.php:121 +#: includes/common/payment-gateways/stripe.php:249 +#: includes/common/payment-gateways/wepay.php:119 +#: includes/common/shipping-modules/mp-fedex.php:243 +#: includes/common/shipping-modules/mp-flat-rate.php:63 +#: includes/common/shipping-modules/mp-pickup.php:140 +#: includes/common/shipping-modules/mp-table-rate.php:94 +#: includes/common/shipping-modules/mp-ups.php:122 +#: includes/common/shipping-modules/mp-usps.php:167 +#: includes/common/shipping-modules/mp-weight-rate.php:110 +msgid "%s Settings" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:136 +msgid "You will be redirected to the 2Checkout site to finalize your payment." +msgstr "" + +#: includes/common/helpers.php:169 includes/public/class-mp-checkout.php:1277 +msgid "Billing" +msgstr "" + +#: includes/common/helpers.php:144 +msgid "FREE" +msgstr "" + +#: includes/common/helpers.php:134 +msgid "Coupons:" +msgstr "" + +#: includes/common/helpers.php:95 +msgid "Qty" +msgstr "" + +#: includes/common/helpers.php:94 +msgid "Sku" +msgstr "" + +#: includes/common/data.php:59 +msgid "Zip Code" +msgstr "" + +#: includes/common/class-mp-taxes.php:336 +msgid "Standard Table" +msgstr "" + +#: includes/common/class-mp-product.php:2698 +msgid "Tweet" +msgstr "" + +#: includes/common/class-mp-product.php:2321 +msgid "Notification Preferences: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2320 +msgid "Edit Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2318 +msgid "Link: %s

    " +msgstr "" + +#: includes/common/class-mp-product.php:2317 +msgid "Current Inventory: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2316 +msgid "Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2314 +msgid "This message is being sent to notify you of low stock of a product in your online store according to your preferences.

    " +msgstr "" + +#: includes/common/class-mp-product.php:1817 +msgid "" +msgstr "" + +#: includes/common/class-mp-product.php:1427 +#: includes/common/class-mp-product.php:1430 +msgid "(tax incl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1422 +#: includes/common/class-mp-product.php:1425 +msgid "(tax excl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1300 +#: includes/common/class-mp-product.php:1315 +msgid "%s each" +msgstr "" + +#: includes/common/class-mp-product.php:988 +msgid "Choose Options" +msgstr "" + +#: includes/common/class-mp-product.php:526 +msgid "Choose a %s" +msgstr "" + +#: includes/common/class-mp-product.php:284 +#: includes/common/class-mp-product.php:292 +#: includes/common/class-mp-product.php:615 +msgid "We're sorry, we only have %d of this item in stock right now." +msgstr "" + +#: includes/common/class-mp-order.php:1456 +msgid "Shipped: Track Shipment" +msgstr "" + +#: includes/common/class-mp-order.php:1049 +msgid "Order Received" +msgstr "" + +#: includes/common/class-mp-order.php:1014 +msgid "In Process" +msgstr "" + +#: includes/common/class-mp-order.php:969 +msgid "Order #" +msgstr "" + +#: includes/common/class-mp-order.php:866 +msgid "Copy billing address to shipping address" +msgstr "" + +#: includes/common/class-mp-order.php:822 +#: includes/public/class-mp-checkout.php:1314 +msgid "Special Instructions" +msgstr "" + +#: includes/common/class-mp-order.php:817 +#: includes/common/payment-gateways/stripe.php:335 +msgid "Email" +msgstr "" + +#: includes/common/class-mp-order.php:813 +#: includes/common/payment-gateways/stripe.php:341 +#: includes/public/class-mp-checkout.php:416 +msgid "Phone" +msgstr "" + +#: includes/common/class-mp-order.php:791 +#: includes/common/payment-gateways/stripe.php:337 +msgid "State" +msgstr "" + +#: includes/common/class-mp-order.php:776 +msgid "Address 1" +msgstr "" + +#: includes/common/class-mp-order.php:766 +msgid "Last Name" +msgstr "" + +#: includes/common/class-mp-order.php:762 +msgid "First Name" +msgstr "" + +#: includes/common/class-mp-installer.php:677 +msgid "MarketPress requires a database update to continue working correctly. Go to update page" +msgstr "" + +#: includes/common/class-mp-installer.php:657 +msgid "MarketPress performed a quick automatic update successfully!" +msgstr "" + +#: includes/common/class-mp-installer.php:653 +msgid "Perform Update" +msgstr "" + +#: includes/common/class-mp-installer.php:647 +msgid "Please update each subsite in your WordPress network where you have older version of the MarketPress plugin." +msgstr "" + +#: includes/common/class-mp-installer.php:641 +msgid "Depending on the amount of products you have, this update could take quite some time. Please keep this window open while the update completes. If you have products with multiple variations, the progress bar may move slower, please don't exit the window." +msgstr "" + +#: includes/common/class-mp-installer.php:632 +msgid "Product Metadata" +msgstr "" + +#: includes/common/class-mp-installer.php:601 +msgid "MarketPress requires a database update to continue working correctly.
    Below you will find a list of items that require your attention." +msgstr "" + +#: includes/common/class-mp-installer.php:600 +msgid "Update MarketPress Data" +msgstr "" + +#: includes/common/class-mp-installer.php:530 +msgid "Update Data" +msgstr "" + +#: includes/common/class-mp-installer.php:67 +msgid "Complete!" +msgstr "" + +#: includes/common/class-mp-installer.php:66 +msgid "Upgrading Database...Please Wait..." +msgstr "" + +#: includes/common/class-mp-installer.php:64 +msgid "An error occurred while updating. Please refresh this page and try again." +msgstr "" + +#: includes/common/class-mp-cart.php:2447 +msgid "Some items in your cart have fallen below the quantity you currently have in your cart. We have adjusted the quantity in your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:2443 +msgid "Some items in your cart are no longer available. We have removed these items from your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:1566 +msgid "item" +msgstr "" + +#: includes/common/class-mp-cart.php:1563 +#: includes/common/class-mp-cart.php:1568 +msgid "items" +msgstr "" + +#: includes/common/class-mp-cart.php:1363 +msgid "Items/Products added to Cart will show here." +msgstr "" + +#: includes/common/class-mp-cart.php:1362 +msgid "Your shopping cart is empty." +msgstr "" + +#: includes/common/class-mp-cart.php:1357 +msgid "View Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1241 +#: includes/common/class-mp-cart.php:1298 +#: includes/public/class-mp-short-codes.php:159 +msgid "Adding..." +msgstr "" + +#: includes/common/class-mp-cart.php:1033 +msgid "Continue Shopping?" +msgstr "" + +#: includes/common/class-mp-cart.php:961 +msgid "Secure Checkout
    Shopping is always safe and secure." +msgstr "" + +#: includes/common/class-mp-cart.php:959 +msgid "You are about to submit your order!
    Please review your order details before continuing. You will be charged immediately upon clicking \"Submit Order\"." +msgstr "" + +#: includes/common/class-mp-cart.php:956 +msgid "Continue »" +msgstr "" + +#: includes/common/class-mp-cart.php:955 +msgid "Submit Order" +msgstr "" + +#: includes/common/class-mp-cart.php:818 +msgid "There are no items in your cart - go add some !" +msgstr "" + +#: includes/common/class-mp-cart.php:816 +msgid "The cart is disabled." +msgstr "" + +#: includes/common/class-mp-cart.php:735 +msgid "Estimated %s" +msgstr "" + +#: includes/common/class-mp-cart.php:717 +msgid "Estimated Shipping" +msgstr "" + +#: includes/common/class-mp-cart.php:697 +msgid "Product Total" +msgstr "" + +#: includes/common/class-mp-cart.php:670 includes/common/class-mp-cart.php:672 +msgid "Estimated Total (%s, %s)" +msgstr "" + +#: includes/common/class-mp-cart.php:668 +msgid "Estimated Total (%s)" +msgstr "" + +#: includes/common/class-mp-cart.php:666 includes/common/class-mp-cart.php:752 +msgid "Estimated Total" +msgstr "" + +#: includes/admin/widgets/product-list.php:247 +msgid "Show Thumbnail Placeholder image (if image is not set)" +msgstr "" + +#: includes/admin/widgets/cart.php:73 +msgid "Display product price" +msgstr "" + +#: includes/admin/widgets/cart.php:71 +msgid "Display product quantity" +msgstr "" + +#: includes/admin/widgets/cart.php:69 +msgid "Display product image" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:93 +msgid "General Shipping Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:773 +msgid "If you are having conflicts with the lightbox library from your theme or another plugin you should uncheck this." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:772 +msgid "Use Built-In Lightbox for Images?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:762 +msgid "Disable Large Image Display?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:688 +msgid "Show Product Image?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:682 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:684 +msgid "Show Tags List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:676 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:678 +msgid "Show Categories List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:671 +msgid "If enabled, description excerpt will be added above Add to cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:669 +msgid "Show Excerpt?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:665 +msgid "If enabled, users will be able to choose how many of the product they want to purchase before adding to their cart. If not checked, quantity could be change later on the cart page." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:663 +msgid "Show Quantity Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:649 +msgid "Settings related to the display of individual product pages." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:648 +msgid "Product Page Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:605 +msgid "Related Products Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:573 +msgid "Show Related Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:568 +msgid "Related Product Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:549 +msgid "Order Status Entries Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:510 +msgid "Sort Products By" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:497 +msgid "Products Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:492 +msgid "Paginate Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:478 +msgid "Excerpts Length" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:473 +msgid "Show Excerpts?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:450 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:746 +msgid "Image Alignment" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:412 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:708 +msgid "Custom Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:401 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:697 +msgid "Large - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:400 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:696 +msgid "Medium - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:399 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:695 +msgid "Thumbnail - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:397 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:693 +msgid "Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:386 +msgid "Select default placeholder image thumbnail when product image is not available (if empty, plugin's built-in image will be used)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:380 +msgid "Show default product placeholder thumbnail when product image is not available?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:374 +msgid "Show Product Thumbnail?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:369 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:658 +msgid "Redirect to cart page for immediate checkout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:368 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:657 +msgid "Stay on current product page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:366 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:655 +msgid "MarketPress supports two \"flows\" for adding products to the shopping cart. After adding a product to their cart, two things can happen:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:365 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:654 +msgid "Add To Cart Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:355 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:628 +msgid "Four" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:354 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:627 +msgid "Three" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:353 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:626 +msgid "Two" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:625 +msgid "One" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:349 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:622 +msgid "Set the number of products that show up in a grid row to best fit your theme" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:348 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:621 +msgid "How many products per row?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:342 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:609 +msgid "Display as grid" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:341 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:608 +msgid "Display as list" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:339 +msgid "Product Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:334 +msgid "Settings related to the display of product lists/grids." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:333 +msgid "Product List/Grid Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:314 +msgid "Show Twitter Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:309 +msgid "Twitter" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:303 +msgid "Show Share Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:297 +msgid "Recommend" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:296 +msgid "Like" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:294 +msgid "Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:283 +msgid "Show Facebook Like Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:278 +msgid "Facebook" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:257 +msgid "Show \"Pin It\" Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:252 +msgid "Pinterest" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:246 +msgid "Social Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:193 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:202 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:211 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:220 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:229 +#: includes/multisite/class-mp-admin-multisite.php:532 +#: includes/multisite/class-mp-admin-multisite.php:541 +#: includes/multisite/class-mp-admin-multisite.php:550 +msgid "Choose a Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:191 +msgid "This page will be used as the root for your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:168 +#: includes/multisite/class-mp-admin-multisite.php:586 +msgid "Create Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "uncropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "cropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:87 +#: includes/multisite/class-mp-admin-multisite.php:121 +#: includes/multisite/class-mp-admin-multisite.php:620 +msgid "An error occurred while creating the store page. Please try again." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:66 +msgid "Choose the gateway(s) that you would like to be available for checkout." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:65 +msgid "Enabled Gateways" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:78 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:146 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:179 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:213 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:274 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:307 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:341 +msgid "Text" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:71 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:139 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:172 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:206 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:267 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:300 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:334 +msgid "Subject" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:52 +msgid "Notification Email" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:510 +msgid "Enabling this option will display label `excl. tax` or `incl. tax` after price" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:509 +msgid "Display tax label?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:504 +msgid "Enabling this option will show Price + Tax, eg. if your price is 100 and your tax 20, your price will be 120" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:416 +#: includes/multisite/class-mp-admin-multisite.php:234 +msgid "Price Format" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:366 +msgid "Enabling this field will display a textbox on the shipping checkout page for users to enter special instructions for their order. Useful for product personalization, etc." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:365 +msgid "Show Special Instructions Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:360 +msgid "Universal" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:359 +msgid "Old" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1167 +#: includes/admin/store-settings/class-mp-store-settings-general.php:358 +msgid "New" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:353 +msgid "If you already use Google Analytics for your website, you can track detailed ecommerce information by enabling this setting. Choose whether you are using the new asynchronous or old tracking code. Before Google Analytics can report ecommerce activity for your website, you must enable ecommerce tracking on the profile settings page for your website. Also keep in mind that some gateways do not reliably show the receipt page, so tracking may not be accurate in those cases. It is recommended to use the PayPal gateway for the most accurate data. More information »" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:347 +msgid "Do you want to display the product price on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:346 +msgid "Show product price on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:340 +msgid "Do you want to display the product quantity on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:339 +msgid "Show product quantity on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:333 +msgid "Do you want to display the product image on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:332 +msgid "Show product image on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:327 +msgid "This option hide floating Mini Cart in top right corner." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:326 +msgid "Disable Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:316 +msgid "If unchecked your Orders admin page will be hidden" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:315 +msgid "Show admin Orders page?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:309 +msgid "Disable Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:303 +msgid "Force Login?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:297 +msgid "Hide Out of Stock Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:555 +msgid "This will prevent multiples of the same downloadable product form being added to the cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:554 +msgid "Limit Digital Products Per-order?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:268 +msgid "If you're having issues downloading large files and have worked with your hosting provider to increase your memory limits, try enabling this - just keep in mind, it's not as secure!" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:267 +msgid "Use Alternative Download Method?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:252 +msgid "Download Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:230 +msgid "Change product post type" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:51 +msgid "%s Capabilities" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-addons.php:47 +msgid "Store Settings: Add Ons: %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:254 +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:56 +msgid "Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Edit Product Attribute %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:246 +msgid "Exporters" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:238 +msgid "Short Codes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:207 +msgid "An appropriate message for key \"%s\" could not be found." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:204 +msgid "Product attribute updated successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:203 +msgid "Product attribute added successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +msgid "Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +#: includes/admin/store-settings/class-mp-store-settings-addons.php:121 +msgid "Store Settings: Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "Store Settings: Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:118 +msgid "Store Settings: Product Tags" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:117 +msgid "Store Settings: Product Categories" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Store Settings: Product Attributes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +msgid "Store Settings: Payments" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:114 +msgid "Store Settings: Shipping" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +#: includes/admin/class-mp-store-settings-admin.php:226 +msgid "Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +msgid "Store Settings: Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:112 +msgid "Store Settings: Presentation" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:111 +msgid "Store Settings: General" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1489 +msgid "Select a Product" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1447 +msgid "Reset to Defaults" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1446 +msgid "Insert Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1202 +#: includes/admin/class-mp-shortcode-builder.php:1227 +#: includes/admin/class-mp-shortcode-builder.php:1252 +msgid "The text to show in the link." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1196 +#: includes/admin/class-mp-shortcode-builder.php:1221 +#: includes/admin/class-mp-shortcode-builder.php:1246 +msgid "Whether to return a clickable link or url." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1177 +msgid "Whether to display the cart only on store pages or not." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1171 +msgid "Whether to show or hide the product price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1165 +msgid "Whether to show or hide the product quantity." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1159 +msgid "Whether to show or hide the product image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1153 +msgid "The text displayed before the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1147 +msgid "The title of the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1058 +#: includes/admin/class-mp-shortcode-builder.php:1121 +msgid "A label to prepend to the price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1032 +#: includes/admin/class-mp-shortcode-builder.php:1127 +msgid "What context for display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1004 +msgid "Set the alignment of the image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:998 +msgid "Set a custom pixel width/height. If omitted defaults to the size set by \"context\"." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:993 +msgid "Widget" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:988 +msgid "What context for preset size options." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:982 +#: includes/admin/class-mp-shortcode-builder.php:1026 +#: includes/admin/class-mp-shortcode-builder.php:1052 +#: includes/admin/class-mp-shortcode-builder.php:1077 +#: includes/admin/class-mp-shortcode-builder.php:1096 +#: includes/admin/class-mp-shortcode-builder.php:1115 +msgid "The ID of the product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:963 +msgid "Whether to display the product meta (e.g. price, buy button)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:738 +#: includes/admin/class-mp-shortcode-builder.php:905 +#: includes/admin/class-mp-shortcode-builder.php:958 +#: includes/admin/class-mp-shortcode-builder.php:992 +#: includes/admin/class-mp-shortcode-builder.php:1035 +#: includes/admin/class-mp-shortcode-builder.php:1130 +#: includes/admin/class-mp-shortcode-builder.php:1349 +msgid "List" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:957 +#: includes/admin/class-mp-shortcode-builder.php:991 +#: includes/admin/class-mp-shortcode-builder.php:1034 +#: includes/admin/class-mp-shortcode-builder.php:1129 +msgid "Single" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:953 +msgid "Whether and what context of image size to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:948 +msgid "Full" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:943 +msgid "Whether and what type of content to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:937 +msgid "Whether to display the product title." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:931 +msgid "The ID of the product to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:747 +#: includes/admin/class-mp-shortcode-builder.php:914 +msgid "Hide" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:746 +#: includes/admin/class-mp-shortcode-builder.php:913 +msgid "Show" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:744 +#: includes/admin/class-mp-shortcode-builder.php:911 +msgid "Whether or not to show the product filters." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:724 +#: includes/admin/class-mp-shortcode-builder.php:891 +#: includes/admin/class-mp-shortcode-builder.php:1335 +msgid "Limits list to a specific product tag." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:713 +#: includes/admin/class-mp-shortcode-builder.php:880 +#: includes/admin/class-mp-shortcode-builder.php:1324 +msgid "Limits list to a specific product category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:706 +#: includes/admin/class-mp-shortcode-builder.php:873 +#: includes/admin/class-mp-shortcode-builder.php:1317 +msgid "Direction to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:684 +#: includes/admin/class-mp-shortcode-builder.php:851 +#: includes/admin/class-mp-shortcode-builder.php:1295 +msgid "What field to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:678 +#: includes/admin/class-mp-shortcode-builder.php:845 +#: includes/admin/class-mp-shortcode-builder.php:1283 +msgid "How many products to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:672 +#: includes/admin/class-mp-shortcode-builder.php:839 +#: includes/admin/class-mp-shortcode-builder.php:1277 +msgid "The page number to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:666 +#: includes/admin/class-mp-shortcode-builder.php:833 +#: includes/admin/class-mp-shortcode-builder.php:1271 +msgid "Whether to paginate the product list. This is useful to only show a subset." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:808 +msgid "How many related items to show." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:790 +msgid "How to relate the products" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:784 +msgid "The product to show related items for." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:765 +msgid "The maximum number of products to display" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:647 +msgid "Comma separated list of tags (term_id) to include. For example, include=5,27 means tags that have the term_id 5 or 27 will be the only tags displayed. Defaults to include everything." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:641 +msgid "Comma separated list of tags (term_id) to exclude. For example, exclude=5,27 means tags that have the term_id 5 or 27 will NOT be displayed. Defaults to exclude nothing." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:633 +#: includes/admin/class-mp-shortcode-builder.php:1420 +msgid "Sort order." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:629 +#: includes/admin/class-mp-shortcode-builder.php:1416 +msgid "Count" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:626 +#: includes/admin/class-mp-shortcode-builder.php:1413 +msgid "Order of the tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:620 +msgid "The text/space between tags)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:616 +msgid "UL with a class of \"wp-tag-cloud\"" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:615 +msgid "separated by whitespace defined by \"separator\" parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:613 +msgid "Format of the cloud display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:607 +msgid "The number of actual tags to display in the cloud. (Use \"0\" to display all tags.)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:601 +msgid "Unit of measure as pertains to the smallest and largest values. This can be any CSS length value, e.g. pt, px, em, %." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:595 +msgid "The text size of the tag with the largest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:589 +msgid "The text size of the tag with the smallest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:570 +msgid "The \"tabindex\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:564 +msgid "The \"name\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:558 +msgid "The \"id\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:552 +msgid "Which category ID is selected." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:540 +msgid "The max depth. This is ignored unless hierarchical is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:536 +#: includes/multisite/template-functions.php:816 +msgid "No Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:414 +#: includes/admin/class-mp-shortcode-builder.php:546 +msgid "Calculates link or post counts by including items from child categories. If show_counts and hierarchical are true this is automatically set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:409 +msgid "Value of n (some number) specifies the depth (or level) to descend in displaying Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:408 +msgid "Show only top level Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:407 +msgid "All Categories displayed in flat (no indent) form (overrides hierarchical)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:406 +msgid "All Categories and child Categories (Default)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:402 +msgid "This parameter controls how many levels in the hierarchy of Categories are to be included in the list of Categories. NOTE: The \"hierarchical\" argument, which is disabled by default, will override the depth argument, unless it is true. When the argument is false, it will display all of the categories. When it is enabled it will use the value in the \"depth\" argument." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:396 +#: includes/admin/class-mp-shortcode-builder.php:1394 +msgid "Sets the number of Categories to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:390 +#: includes/admin/class-mp-shortcode-builder.php:534 +msgid "Set the text to show when no categories are listed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:384 +msgid "Set the title and style of the outer list item. If present but empty, the outer list item will not be displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:378 +#: includes/admin/class-mp-shortcode-builder.php:528 +msgid "Display sub-categories as inner list items (below the parent list item) or inline." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:368 +#: includes/admin/class-mp-shortcode-builder.php:511 +msgid "Exclude category-tree from the results. The parameter include must be empty. If the hierarchical parameter is true, then use exclude instead of exclude_tree." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:354 +msgid "Only include these categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:340 +#: includes/admin/class-mp-shortcode-builder.php:356 +#: includes/admin/class-mp-shortcode-builder.php:370 +#: includes/admin/class-mp-shortcode-builder.php:496 +#: includes/admin/class-mp-shortcode-builder.php:513 +msgid "Select Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:338 +#: includes/admin/class-mp-shortcode-builder.php:494 +msgid "Exclude one or more categories from the results. The parameter include must be empty." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:332 +msgid "Set a URI for an image (usually an rss feed icon) to act as a link to each categories' rss-2 feed. This parameter overrides the feed parameter. There is no default for this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:320 +msgid "Display a link to each category's rss-2 feed and set the link text to display. The default is no text and no feed displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:313 +#: includes/admin/class-mp-shortcode-builder.php:487 +msgid "Any" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:307 +#: includes/admin/class-mp-shortcode-builder.php:481 +msgid "Only display categories that are children of the category identified by this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:301 +msgid "Sets whether a category's description is inserted into the title attribute of the links created (i.e. <a title=\"<em>Category Description</em>\" href=\"...)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:295 +#: includes/admin/class-mp-shortcode-builder.php:475 +msgid "Toggles the display of categories with no posts." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:289 +#: includes/admin/class-mp-shortcode-builder.php:469 +#: includes/admin/class-mp-shortcode-builder.php:1388 +msgid "Toggles the display of the current count of posts in each category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:279 +msgid "Style to display the categories list in. A value of list displays the categories as list items while none generates no special display method (the list items are separated by
    tags)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:269 +#: includes/admin/class-mp-shortcode-builder.php:449 +#: includes/admin/class-mp-shortcode-builder.php:1378 +msgid "Sort order for categories (either ascending or descending)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:259 +#: includes/admin/class-mp-shortcode-builder.php:439 +#: includes/admin/class-mp-shortcode-builder.php:1368 +msgid "Sort categories alphabetically, by unique Category ID, or by the count of posts in that Category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:253 +#: includes/admin/class-mp-shortcode-builder.php:433 +msgid "If a value is entered, causes the display of a link to all categories if the style is set to list." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:219 +msgid "Select an Action" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:217 +msgid "What would you like to do?" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:216 +#: includes/admin/class-mp-shortcode-builder.php:1522 +msgid "Add E-Commerce Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:197 +msgid "Display a list of links to your store pages." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:196 +msgid "Display a link or url to the order status page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:195 +msgid "Display a link or url to the current products list page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:194 +msgid "Display a link or url to the current store page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:193 +msgid "Display a link or url to the current shopping cart page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:192 +msgid "Display the cart widget." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:191 +msgid "Display the full product meta box with price and buy now/add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:190 +msgid "Display the product stock." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:189 +msgid "Display the product SKU number(s)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:188 +msgid "Display the product price (and sale price)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:187 +msgid "Display the buy or add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:186 +msgid "Display the featured image of a given product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:185 +msgid "Display a single product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:184 +msgid "Display a list of products according to preference." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:183 +msgid "Display products related to the one being viewed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:182 +msgid "Display a list of popular products ordered by sales." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:180 +msgid "Display an HTML dropdown of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:179 +msgid "Display an HTML list of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:178 +msgid "Display a cloud or list of your product tags." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:655 +msgid "Setup your payment gateway" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:643 +#: includes/admin/class-mp-setup-wizard.php:649 +msgid "Other Gateways" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:617 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:150 +msgid "Select which calculated shipping methods the customer will be able to choose from." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:601 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:134 +#: includes/public/class-mp-checkout.php:82 +msgid "Shipping Method" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:568 +msgid "I want to charge shipping" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:523 +#: includes/admin/store-settings/class-mp-store-settings-general.php:503 +msgid "Show Price + Tax?" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:507 +msgid "I.e. Taxes, VAT, GST, etc" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:491 +#: includes/admin/store-settings/class-mp-store-settings-general.php:471 +msgid "Current Rates" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:473 +msgid "Default Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:434 +#: includes/admin/class-mp-setup-wizard.php:442 +#: includes/admin/store-settings/class-mp-store-settings-general.php:386 +#: includes/admin/store-settings/class-mp-store-settings-general.php:394 +#: includes/multisite/class-mp-admin-multisite.php:204 +#: includes/multisite/class-mp-admin-multisite.php:212 +msgid "Select a Currency" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:414 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:105 +msgid "Choose Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:411 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:103 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:104 +msgid "All Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:410 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:102 +msgid "These are the countries that you will ship to." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:409 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:101 +msgid "Target Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:401 +msgid "Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:387 +#: includes/admin/store-settings/class-mp-store-settings-general.php:640 +msgid "Zip/Postal Code Label" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:352 +#: includes/admin/store-settings/class-mp-store-settings-general.php:606 +msgid "Select a State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:335 +#: includes/admin/store-settings/class-mp-store-settings-general.php:590 +msgid "Select A Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:332 +#: includes/admin/store-settings/class-mp-store-settings-general.php:587 +msgid "Select a Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:324 +msgid "Location" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:304 +#: includes/admin/class-mp-setup-wizard.php:312 +#: includes/admin/class-mp-store-settings-admin.php:129 +#: includes/admin/class-mp-store-settings-admin.php:262 +msgid "Quick Setup" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:289 +msgid "MarketPress setup is not complete! Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2479 +msgid "Enter your product name here" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2440 +msgid "Select a %s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2426 +msgid "Each product variation needs to have product attributes assigned to it so the system knows how to differentiate one product variation from the other. It is important that you assign a category to this product before choosing any attributes." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2409 +msgid "If you would like this variation to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2320 +msgid "Sale Price (if applicable)" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2281 +msgid "If you would like the description to be different than the main product enter it here." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2229 +msgid "Image" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2202 +#: includes/admin/class-mp-shortcode-builder.php:226 +msgid "Attributes" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2166 +msgid "Create your product variations here. You can reorder variations by using the number to left of each variation, or delete one by clicking the \"x\" to the right of each variation. NOTE: The variation that shows up first in this list will be considered the \"main variation\". The details from this variation will be used in product listings." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2061 +#: includes/admin/class-mp-products-admin.php:2332 +msgid "Value must be less than regular price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2043 +#: includes/admin/class-mp-products-admin.php:2306 +msgid "Regular Price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2023 +#: includes/admin/class-mp-products-admin.php:2286 +msgid "External URL" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1988 +#: includes/admin/class-mp-products-admin.php:2245 +msgid "Enter the quantity that you have available to sell." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1987 +#: includes/admin/class-mp-products-admin.php:2244 +msgid "Inventory Count" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1977 +#: includes/admin/class-mp-products-admin.php:2234 +msgid "Track Inventory?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1871 +msgid "%1$sProduct Images%2$s %3$sAdd images of the product. The first image on the list is the featured image for this product (you can reorder images on the list)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1806 +msgid "Add variations for this product. e.g. If you are selling t-shirts, you can create Color & Size variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1804 +msgid "%3$sAdd variations for%2$s %1$sProduct%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1776 +msgid "This product has a multiple variations %1$s(e.g. Multiple colors, sizes)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1775 +msgid "This is a unique product without variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1700 +msgid "Extra Shipping Cost %1$s(if applicable)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1659 +#: includes/admin/class-mp-products-admin.php:2112 +#: includes/admin/class-mp-products-admin.php:2359 +msgid "Weight" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1636 +#: includes/admin/class-mp-products-admin.php:2098 +#: includes/admin/class-mp-products-admin.php:2416 +msgid "Please enter a valid tax rate" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1531 +msgid "Limit Per Order %1$s(limit the number of the item a shopper can buy per order)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1513 +msgid "SKU %1$s(Stock Keeping Unit)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "%1$sPrice, Inventory & Variants%2$s %3$sSet price, manage inventory and create Product Variants (if appropriate for your product).%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "Product Variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1480 +msgid "External / Affiliate Link" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1471 +msgid "Digital Download" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1470 +msgid "Physical / Tangible Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1464 +msgid "Product Kind %1$s(Physical Product, Digital, etc)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1426 +msgid "Choose Products" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1420 +msgid "If you would like, you can choose specific related products instead of using the ones generated by MarketPress" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1019 +msgid "Changes saved successfully" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:826 +msgid "Option cannot be saved. Try again." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:821 +msgid "Option saved successfully." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:467 +msgid "Img" +msgstr "" + +#: includes/admin/class-mp-product-attributes-list-table.php:57 +msgid "Product attribute(s) deleted successfully." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:162 +msgid "- Create New Variation -" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:144 +msgid "Only lowercase letters and dashes (-) are allowed." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:139 +msgid "If a slug is not entered, it will be generated automatically. Max 32 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:138 +#: includes/admin/class-mp-product-attributes-list-table.php:23 +msgid "Slug" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:130 +msgid "Max 45 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:123 +msgid "Use the numbers on the left to sort. To delete - click the \"X\" to the right of each row." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:122 +msgid "Attribute Options" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:121 +msgid "Add Option" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:105 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:523 +msgid "Sort Order" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:87 +msgid "Alphabetical" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:86 +msgid "ID" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:84 +msgid "Select how the options will be sorted." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:82 +msgid "Sort By" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:75 +msgid "The name of the attribute (e.g. color, size, etc)" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:74 +msgid "Attribute Name" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:69 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Product Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Product Attributes" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:71 +msgid "You can choose to make this page one of the following core store pages." +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:66 +msgid "Network Store Base" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:61 +msgid "Checkout Page" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:52 +msgid "Store Page Settings" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1108 +msgid "Display billing/shipping info for this customer" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1097 +msgid "View order “%s”" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1072 +msgid "Flag as:" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:952 +msgid "Move To Trash" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:948 +msgid " Received" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:927 +msgid "Enter coupon code here" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:812 +msgid "The order status could not be updated due to unexpected error. Please try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:740 +msgid "An invalid bulk action was requested. Please go back and try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:692 +msgid "The order status for order ID %1$s was updated successfully." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:688 +msgid "Order statuses successfully updated." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:530 +msgid "Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:518 +msgid "Actual Shipping Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:513 +msgid "Method Paid For" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:504 +msgid "Amount Collected" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:477 +msgid "DHL" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:408 +msgid "There is no IPN history to show at this time" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:345 +msgid "Type" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:343 +msgid "Gateway" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:301 +#: includes/common/template-functions.php:528 +msgid "Order History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:291 +msgid "IPN History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:283 +msgid "Customer Info" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:279 +msgid "Order Details" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:157 +msgid "All Dates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:320 +msgid "Add Pages to Menu" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:318 +msgid "Add-ons" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:317 +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "User Capabilities" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:316 +#: includes/admin/class-mp-setup-wizard.php:631 +#: includes/admin/store-settings/class-mp-store-settings-payments.php:50 +msgid "Payment Gateways" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:315 +msgid "Shipping Rates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:312 +msgid "Configure" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:309 +#: includes/admin/class-mp-products-admin.php:466 +#: includes/admin/class-mp-shortcode-builder.php:797 +msgid "Tags" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:308 +#: includes/admin/class-mp-products-admin.php:465 +msgid "Categories" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:300 +msgid "Manage" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:297 +msgid "Here's some quick links to manage your store and products." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:288 +msgid "low in stock" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:287 +msgid "%s product" +msgid_plural "%s products" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/admin/class-mp-dashboard-widgets.php:280 +msgid "received" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:279 +#: includes/admin/class-mp-dashboard-widgets.php:283 +msgid "%s order" +msgid_plural "%s orders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/admin/class-mp-dashboard-widgets.php:276 +msgid "Stock & Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:261 +msgid "Last 30 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:256 +msgid "Last 7 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:251 +msgid "Yesterday" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:248 +#: includes/admin/class-mp-dashboard-widgets.php:253 +#: includes/admin/class-mp-dashboard-widgets.php:258 +#: includes/admin/class-mp-dashboard-widgets.php:263 +msgid " Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:246 +msgid "Today" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:241 +msgid "Welcome back! Here's a quick summary of your store's performance." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:196 +#: includes/admin/class-mp-products-admin.php:895 +msgid "No products out of stock." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:136 +#: includes/admin/class-mp-products-admin.php:839 +msgid "Stock Level" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:135 +#: includes/admin/class-mp-products-admin.php:838 +msgid "Variation" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:121 +msgid "Low Stock (%s)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:116 +msgid "Store Management" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:115 +msgid "Store Reports" +msgstr "" + +#: includes/admin/class-mp-ajax.php:579 +#: includes/admin/class-mp-orders-admin.php:520 +#: includes/common/payment-gateways/2checkout.php:370 +#: includes/common/payment-gateways/authorizenet-aim.php:264 +#: includes/common/payment-gateways/mollie.php:93 +#: includes/common/payment-gateways/paymill.php:196 +#: includes/common/payment-gateways/pin.php:190 +#: includes/common/payment-gateways/skrill.php:157 +#: includes/common/payment-gateways/skrill.php:168 +#: includes/common/payment-gateways/wepay.php:143 +#: includes/public/class-mp-checkout.php:404 +msgid "Select One" +msgstr "" + +#: includes/admin/class-mp-ajax.php:511 +msgid "Oops... we could not locate any orders by that ID. Please double check your order ID and try again." +msgstr "" + +#: includes/admin/class-mp-ajax.php:482 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:166 +#: includes/multisite/class-mp-admin-multisite.php:584 +msgid "Edit Page" +msgstr "" + +#: includes/admin/class-mp-ajax.php:346 +msgid "Cancel " +msgstr "" + +#: includes/admin/class-mp-ajax.php:345 +msgid "Save " +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "Edit Description" +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "HTML Markup" +msgstr "" + +#: includes/admin/class-mp-ajax.php:333 +msgid "Plain Text Only" +msgstr "" + +#: includes/admin/class-mp-ajax.php:329 +msgid "Additional Content / Information for this Variation" +msgstr "" + +#: includes/admin/class-mp-ajax.php:317 +#: includes/admin/class-mp-products-admin.php:1762 +msgid "Allow this product to be purchased even if it's out of stock" +msgstr "" + +#: includes/admin/class-mp-ajax.php:313 +#: includes/admin/class-mp-products-admin.php:1711 +msgid "Track Product Inventory" +msgstr "" + +#: includes/admin/class-mp-ajax.php:300 +msgid "Extra Shipping Cost (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:295 +msgid "Ounces:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:294 +msgid "Pounds:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:292 +msgid "Kilograms:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:287 +#: includes/admin/class-mp-products-admin.php:1649 +msgid "Charge Shipping" +msgstr "" + +#: includes/admin/class-mp-ajax.php:273 +#: includes/admin/class-mp-products-admin.php:1623 +#: includes/admin/store-settings/class-mp-store-settings-general.php:454 +msgid "Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:272 +#: includes/admin/class-mp-products-admin.php:1622 +#: includes/admin/class-mp-products-admin.php:2090 +#: includes/admin/class-mp-products-admin.php:2408 +msgid "Special Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:271 +#: includes/admin/class-mp-products-admin.php:1625 +#: includes/admin/class-mp-products-admin.php:2092 +msgid "If you would like this product to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-ajax.php:268 +#: includes/admin/class-mp-products-admin.php:1599 +msgid "Charge Taxes (Special Rate)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:256 +#: includes/admin/class-mp-products-admin.php:1593 +#: includes/admin/class-mp-products-admin.php:2077 +#: includes/admin/class-mp-products-admin.php:2348 +msgid "End Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:255 +#: includes/admin/class-mp-products-admin.php:1589 +#: includes/admin/class-mp-products-admin.php:2072 +msgid "Start Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:1568 +msgid "Enter Sale Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:250 +#: includes/admin/class-mp-products-admin.php:1547 +msgid "Set up a Sale for this Product" +msgstr "" + +#: includes/admin/class-mp-ajax.php:206 includes/admin/class-mp-ajax.php:223 +msgid "Enter " +msgstr "" + +#: includes/admin/class-mp-ajax.php:193 +msgid "Browse" +msgstr "" + +#: includes/admin/class-mp-ajax.php:184 includes/admin/class-mp-ajax.php:192 +msgid "http://" +msgstr "" + +#: includes/admin/class-mp-ajax.php:183 +msgid "External Product URL" +msgstr "" + +#: includes/admin/class-mp-ajax.php:237 +msgid "Limit Per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:177 +#: includes/admin/class-mp-products-admin.php:1520 +msgid "Enter Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:174 +#: includes/admin/class-mp-products-admin.php:1512 +msgid "Enter SKU" +msgstr "" + +#: includes/admin/class-mp-ajax.php:173 +msgid "(Stock Keeping Unit)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:158 +msgid "Remove Image" +msgstr "" + +#: includes/admin/class-mp-ajax.php:74 +msgid "Variation Draft" +msgstr "" + +#: includes/admin/class-mp-admin.php:296 +#: includes/admin/class-mp-dashboard-widgets.php:70 +msgid "Please wait...saving in progress..." +msgstr "" + +#: includes/admin/class-mp-admin.php:295 +#: includes/admin/class-mp-dashboard-widgets.php:69 +msgid "Input is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:294 +#: includes/admin/class-mp-dashboard-widgets.php:68 +msgid "Valid number is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:292 +#: includes/admin/class-mp-dashboard-widgets.php:66 +msgid "Delete %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:291 +#: includes/admin/class-mp-dashboard-widgets.php:65 +msgid "Delete %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:290 +#: includes/admin/class-mp-dashboard-widgets.php:64 +msgid "Update inventory for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:289 +#: includes/admin/class-mp-dashboard-widgets.php:63 +msgid "Update inventory for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:288 +#: includes/admin/class-mp-dashboard-widgets.php:62 +msgid "Update price for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:287 +#: includes/admin/class-mp-dashboard-widgets.php:61 +msgid "Update prices for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:285 +#: includes/admin/class-mp-dashboard-widgets.php:59 +msgid "Creating variations, please wait..." +msgstr "" + +#: includes/admin/class-mp-admin.php:96 +msgid "The following payment gateways have been deprecated, Cubepoints, Bitpay, iDEAL, Skrill, Google Checkout. If you were using one of these gateways, please setup a new payment gateway here." +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:61 +msgid "Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:71 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:71 +#: includes/common/class-mp-gdpr.php:399 includes/common/class-mp-order.php:872 +#: includes/common/helpers.php:164 includes/public/class-mp-checkout.php:1434 +msgid "Shipping Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:66 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:66 +#: includes/common/class-mp-gdpr.php:392 includes/common/class-mp-order.php:864 +#: includes/common/helpers.php:163 includes/public/class-mp-checkout.php:1427 +msgid "Billing Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:61 +msgid "Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:258 +msgid "Shipping Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:256 +msgid "Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:235 +msgid "Payment Method: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:79 +msgid "The dir %s not exist or not writeable" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:239 +msgid "Shop header/logo" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:233 +msgid "Choose a template" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:226 +msgid "Template Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:221 +msgid "Disable automatic creation/attachment of invoices when only free products are ordered" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:220 +msgid "Disable for free products" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:216 +msgid "Attach invoice to" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:214 +msgid "Customer Order Shipped email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:212 +msgid "Customer New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:211 +msgid "Admin New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:206 +msgid "download" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:205 +msgid "How do you want to view the PDF?" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:203 +msgid "Open the PDF in a new browser tab/window" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:202 +msgid "Download the PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:158 +msgid "Export PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:103 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:106 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:109 +msgid "You can't download this order invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:76 +msgid "Invalid Request" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:72 +msgid "Order not exist!" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:67 +msgid "Invalid ID" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1293 +msgid "Coupon added successfully" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1292 +msgid "Please enter a code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1247 +msgid "No end" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1200 +msgid "Valid Dates" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1195 +msgid "Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1027 +msgid "No Coupons found in Trash" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1026 +msgid "No Coupons Found" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1025 +msgid "Search Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1024 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1028 +msgid "View Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1023 +msgid "New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1020 +msgid "Create New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1017 +msgid "Manage Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1002 +msgid "An error occurred while removing your coupon. Please try again." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:964 +msgid "Coupon can't be applied to this cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:951 +msgid "Invalid coupon code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:794 +msgid "Help Text" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:789 +msgid "Form Title" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:783 +msgid "Coupons Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:764 +msgid "End Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:758 +msgid "Does coupon have an end date?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:696 +msgid "Select Products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:688 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:723 +#: includes/common/payment-gateways/paypal-payflow.php:402 +msgid "User" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:638 +msgid "Max Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:636 +msgid "Enter the maximum number of times this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:623 +msgid "Leave blank to allow all other coupons." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:622 +msgid "Select combinable coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:618 +msgid "Can this coupon be combined with other coupons?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:613 +msgid "Apply to each applicable item once per cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:612 +msgid "Apply to each applicable item and quantity ordered" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:609 +msgid "How should the discount amount be applied?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:605 +msgid "Discount Amount" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:604 +msgid "Value must either be a decimal number or a percentage" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:602 +msgid "If you would like to give a percentage-based discount make sure to include the percent (%) symbol. Otherwise, the discount will be applied as a fixed amount off." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:595 +msgid "Letters and Numbers only." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:589 +msgid "Coupon Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:447 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:795 +msgid "More than one code? That's OK! Just be sure to enter one at a time." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:444 +msgid "Apply Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:314 +msgid "Coupon Discounts" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:89 +msgid "1 add-on disabled" +msgid_plural "%s add-ons disabled" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/addons/class-mp-addons-list-table.php:84 +msgid "1 add-on enabled" +msgid_plural "%s add-ons enabled" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Disabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Enable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:129 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:67 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:135 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:168 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:202 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:263 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:296 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:330 +msgid "Enabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +msgid "Disable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:34 +msgid "Disable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:33 +msgid "Enable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:21 +#: includes/admin/class-mp-products-admin.php:2280 +#: includes/common/class-mp-product.php:2916 +msgid "Description" +msgstr "" + +#: includes/common/template-functions.php:2889 +#: includes/multisite/template-functions.php:407 +msgid "Popularity (Least Popular - Most Popular)" +msgstr "" + +#: includes/common/template-functions.php:2888 +#: includes/multisite/template-functions.php:406 +msgid "Popularity (Most Popular - Least Popular)" +msgstr "" + +#: includes/common/template-functions.php:2885 +#: includes/multisite/template-functions.php:403 +msgid "Name (Z-A)" +msgstr "" + +#: includes/common/template-functions.php:2884 +#: includes/multisite/template-functions.php:402 +msgid "Name (A-Z)" +msgstr "" + +#: includes/common/template-functions.php:2883 +#: includes/multisite/template-functions.php:401 +msgid "Release Date (Oldest to Latest)" +msgstr "" + +#: includes/common/template-functions.php:2882 +#: includes/multisite/template-functions.php:400 +msgid "Release Date (Latest to Oldest)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:284 +msgid "paid" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "One Time Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Customer Counter" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Daily Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:182 +msgid "For the most accurate rates, please select the appropriate pick up type for your business." +msgstr "" + +#: includes/admin/class-mp-admin.php:374 +msgid "Page saved." +msgstr "" + +#: includes/admin/class-mp-admin.php:370 +msgid "Custom field deleted." +msgstr "" + +#: includes/admin/class-mp-admin.php:369 +msgid "Custom field updated." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:541 +msgid "%s - The payment request expired, - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:536 +msgid "%s - The payment not credited in merchants bitpay account, action required. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:252 +msgid "If enabled, you will recieve an email for each status update on payment." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:240 +msgid "Speed at which the bitcoin transaction registers as \"confirmed\" to the store. This overrides your merchant settings on the Bitpay website." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:238 +msgid "Transaction Speed" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:244 +msgid "Low" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:243 +msgid "Medium" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:242 +msgid "High" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:177 +#: includes/common/payment-gateways/_bitpay.php:517 +#: includes/common/payment-gateways/_bitpay.php:522 +msgid "%s - The payment request is under process. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:175 +#: includes/common/payment-gateways/_bitpay.php:527 +msgid "%s - The payment request has been processed - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:150 +#: includes/common/payment-gateways/_bitpay.php:294 +msgid "Incorrect order invoice, please contact site administrator" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:141 +msgid "We could not verify order invoice details, please try again or contact site administrator for help" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:81 +msgid "Login to Simplify to get your API credentials. Enter your test credentials, then live ones when ready." +msgstr "Prijavi se u Simplify za pristup svojim API podacima. Upišite test podatke i zatim podatke za produkciju (live) kada ste spremni." + +#: includes/common/payment-gateways/paypal-express.php:605 +#: includes/common/payment-gateways/paypal-express.php:647 +msgid "Express Checkout is PayPal's premier checkout solution, which streamlines the checkout process for buyers and keeps them on your site after making a purchase. Unlike PayPal Pro, there are no additional fees to use Express Checkout, though you may need to do a free upgrade to a business account. More Info »" +msgstr "Express Checkout je Paypalovo premijerno rješenje naplate koje pojednostavljuje proces naplate za kupce i zadržava ih na vašim stranicama nakon kupovine. Za razliku od PayPal Pro, nema dodatne naknade za korištenje Express Checkouta, iako ćete možda morati napraviti besplatnu nadogradnju na poslovni račun. Više informacija »" + +#. Plugin URI of the plugin/theme +msgid "https://premium.wpmudev.org/project/e-commerce/" +msgstr "https://premium.wpmudev.org/project/e-commerce/" + +#. Author of the plugin/theme +msgid "WPMU DEV" +msgstr "WPMU DEV" + +#: includes/admin/class-mp-orders-admin.php:541 +#: includes/admin/class-mp-orders-admin.php:543 +msgid "Tracking Number" +msgstr "Broj za pračenje pošiljke" + +#: includes/common/class-mp-order.php:805 +#: includes/common/payment-gateways/stripe.php:336 +#: includes/public/class-mp-checkout.php:402 +msgid "Country" +msgstr "Zemlja" + +#: includes/common/class-mp-order.php:784 +#: includes/common/payment-gateways/stripe.php:338 +msgid "City" +msgstr "Grad" + +#: includes/common/class-mp-order.php:780 +msgid "Address 2" +msgstr "Adresa 2" + +#: includes/common/payment-gateways/stripe.php:340 +msgid "Address" +msgstr "Adresa" + +#: includes/common/class-mp-cart.php:752 includes/common/class-mp-gdpr.php:378 +msgid "Order Total" +msgstr "Ukupno" + +#: includes/admin/class-mp-orders-admin.php:360 +msgid "Payment Total" +msgstr "Ukupno plaćanje" + +#: includes/admin/class-mp-orders-admin.php:347 +msgid "Transaction ID" +msgstr "Transaction ID" + +#: includes/common/payment-gateways/wepay.php:207 +msgid "The WePay Card Token was not generated correctly. Please go back and try again." +msgstr "WePay Card Token nije ispravno generiran. Molimo vratite se i pokušajte ponovno." + +#: includes/common/payment-gateways/wepay.php:186 +#: includes/common/shipping-modules/mp-fedex.php:283 +msgid "Account ID" +msgstr "Account ID" + +#: includes/common/payment-gateways/wepay.php:179 +msgid "Access Token" +msgstr "Access Token" + +#: includes/common/payment-gateways/wepay.php:172 +msgid "Client Secret" +msgstr "Client Secret" + +#: includes/common/payment-gateways/wepay.php:165 +msgid "Client ID" +msgstr "Client ID" + +#: includes/common/payment-gateways/wepay.php:159 +msgid "You must login to WePay to get your API credentials. Make sure to check \"Tokenize credit cards\" option under \"API Keys\" section of your WePay app." +msgstr "Morate se prijaviti u WePay to get your API credentials. Make sure to check \"Tokenize credit cards\" option under \"API Keys\" section of your WePay app." + +#: includes/common/payment-gateways/wepay.php:154 +msgid "When in live mode it is recommended to use SSL certificate setup for the site where the checkout form will be displayed." +msgstr "Kad je u live modu preporuča se korištenje SSL certifikata za postavljanje na stranici gdje će biti prikazana forma za naplatu." + +#: includes/common/payment-gateways/wepay.php:148 +msgid "Donation" +msgstr "Donacija" + +#: includes/common/payment-gateways/wepay.php:147 +msgid "Event" +msgstr "Događaj" + +#: includes/common/payment-gateways/wepay.php:146 +msgid "Personal" +msgstr "Osobno" + +#: includes/common/payment-gateways/wepay.php:145 +msgid "Service" +msgstr "Usluga" + +#: includes/common/payment-gateways/wepay.php:144 +msgid "Goods" +msgstr "Roba" + +#: includes/common/payment-gateways/wepay.php:141 +msgid "Choose type of payments" +msgstr "Odaberite vrstu plaćanja" + +#: includes/common/payment-gateways/wepay.php:140 +msgid "Checkout Type" +msgstr "Tip Naplate" + +#: includes/common/payment-gateways/wepay.php:134 +msgid "Staging" +msgstr "Staging" + +#: includes/common/payment-gateways/wepay.php:131 +msgid "Choose STAGING if you have registered the app on stage.wepay.com, or PRODUCTION if you registered on www.wepay.com" +msgstr "Izaberite STAGING ako ste registrirali aplikaciju na stage.wepay.com ili PRODUCTION ako ste se registrirali na www.wepay.com" + +#: includes/common/payment-gateways/wepay.php:36 +#: includes/common/payment-gateways/wepay.php:299 +msgid "WePay" +msgstr "WePay" + +#: includes/common/payment-gateways/_payway.php:366 +msgid "Rejected - A payment was rejected." +msgstr "Odbijeno - uplata je odbijena." + +#: includes/common/payment-gateways/_payway.php:360 +msgid "Failed - A payment was rejected due to an error." +msgstr "Neuspješno - plaćanje je odbijeno zbog pogreške." + +#: includes/common/payment-gateways/_payway.php:342 +msgid "PayWay balance, Credit Card, or Instant Transfer" +msgstr "PayWay saldo, Kreditna Kartica, or Trenutni Prijenos" + +#: includes/common/payment-gateways/_payway.php:298 +msgid "Full path of the cacerts.crt file" +msgstr "Puna putanja cacerts.crt datoteke" + +#: includes/common/payment-gateways/_payway.php:284 +msgid "User Name" +msgstr "Korisničko Ime" + +#: includes/common/payment-gateways/_payway.php:277 +msgid "Biller Code" +msgstr "Kod Naplate" + +#: includes/common/payment-gateways/_payway.php:273 +msgid "Log Directory" +msgstr "Log Direktorij" + +#: includes/common/payment-gateways/_payway.php:266 +msgid "Encryption Key" +msgstr "Encryption Ključ" + +#: includes/common/payment-gateways/_payway.php:60 +msgid "Your PayWay transaction has been canceled." +msgstr "Vaša PayWay transakcija je otkazana." + +#: includes/common/payment-gateways/_payway.php:40 +#: includes/common/payment-gateways/_payway.php:41 +msgid "PayWay" +msgstr "PayWay" + +#: includes/common/payment-gateways/paypal-chained-payments.php:862 +msgid "You must register this application with PayPal using your business account login to get an Application ID that will work with your API credentials. A bit of a hassle, but worth it! In the near future we will be looking for ways to simplify this process. Register then submit your application while logged in to the developer portal. Note that you do not need an Application ID for testing in sandbox mode. More Information »" +msgstr "Morate registrirati ovu aplikaciju s PayPalom koristeći svoj poslovni račun kako bi dobili Application ID koji će raditi sa vašim API podacima. Malo gnjavaže, ali se isplati! U skoroj budućnosti ćemo biti u potrazi za načinima kako pojednostaviti taj proces. Registrirajte se pa predajte molbu dok ste prijavljeni na developer portal. Imajte na umu da vam ne treba Application ID za testiranje u sandbox modu. Više informacija »" + +#: includes/common/payment-gateways/paypal-chained-payments.php:818 +#: includes/common/payment-gateways/paypal-chained-payments.php:840 +#: includes/common/payment-gateways/paypal-express.php:705 +msgid "You must login to PayPal and create an API signature to get your credentials. Instructions »" +msgstr "Morate se prijaviti u PayPal napraviti API api potpis kako bi dobili svoje podatke. Upute »" + +#: includes/common/payment-gateways/paypal-payflow.php:378 +msgid "Use Payflow payment gateway to accept online payments using your Internet merchant account and processing network. PayPal Payflow Pro is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway." +msgstr "Koristite PayFlow payement gateway za prihvaćanje online plaćanja koristeći svoj račun trgovca na internetu i obrađivačke mreže. PayPal PayFlow Pro je prilagodljivo rješenje za obradu plaćanja koje daje trgovcu kontrolu nad svim koracima u provođenju transakcija. SSL certifikat je potreban da biste koristili ovaj gateway." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:595 +msgid "Tags Only" +msgstr "Samo Oznake" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:594 +msgid "Category Only" +msgstr "Samo Kategorija" + +#: includes/admin/class-mp-shortcode-builder.php:795 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:593 +msgid "Category & Tags" +msgstr "Kategorije & Oznake" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:591 +msgid "Relate Products By" +msgstr "Poveži Proizvode Po" + +#: includes/admin/class-mp-shortcode-builder.php:1008 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:455 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:751 +msgid "Right" +msgstr "Desno" + +#: includes/admin/class-mp-shortcode-builder.php:1007 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:454 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:749 +msgid "Left" +msgstr "Lijevo" + +#: includes/admin/class-mp-shortcode-builder.php:1009 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:750 +msgid "Center" +msgstr "Centar" + +#: marketpress.php:273 +msgid "Orders from your e-commerce store." +msgstr "Narudžbe iz vašeg e-commerce dučana." + +#: marketpress.php:231 +msgid "Products for your e-commerce store." +msgstr "Proizvodi za vaš e-commerce dučan." + +#: marketpress.php:222 +msgid "Edit Product" +msgstr "Uredi Proizvod" + +#. Description of the plugin/theme +msgid "The complete WordPress ecommerce plugin - works perfectly with BuddyPress and Multisite too to create a social marketplace, where you can take a percentage! Activate the plugin, adjust your settings then add some products to your store." +msgstr "Kompletan WordPress ecommerce dodatak - radi savršeno uz BuddyPress i Multisite za stvaranje društvenih online trgtovina, gdje vi možete uzeti postotak! Aktivirajte dodatak, prilagodite postavke te zatim dodajte neke proizvode svojoj trgovini." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:272 +msgid "Beside" +msgstr "Pored" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:271 +msgid "Above" +msgstr "Iznad" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:268 +msgid "Pin Count" +msgstr "Pin Count" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:261 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:287 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:318 +msgid "All View" +msgstr "Sav pregled" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:260 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:286 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:317 +msgid "Single View" +msgstr "Jedinični pregled" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:259 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:285 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:316 +msgid "Off" +msgstr "Isključeno" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:578 +msgid "Related Product Limit" +msgstr "Limit povezanih proivoda" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:681 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1201 +msgid "Applies To" +msgstr "Vrijedi za" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:685 +msgid "All Products" +msgstr "Svi proizvodi" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:487 +msgid "The label shown for the tax line item in the cart. Taxes, VAT, GST, etc." +msgstr "Naziv prikazan na liniji poreza u košarici. Porezi; VAT, GST, itd." + +#: includes/admin/class-mp-setup-wizard.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:485 +msgid "Tax Label" +msgstr "Naziv Poreza" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:81 +msgid "Apply" +msgstr "Primijeni" + +#: includes/admin/class-mp-admin.php:192 +msgid "MarketPress Instructions" +msgstr "MarketPress Upute" + +#: includes/admin/class-mp-products-admin.php:1954 +#: includes/admin/class-mp-products-admin.php:2194 includes/common/data.php:62 +#: includes/common/helpers.php:150 +msgid "Taxes" +msgstr "Porezi" + +#: includes/admin/class-mp-products-admin.php:1417 +#: includes/common/class-mp-product.php:2900 +msgid "Related Products" +msgstr "Povezani proizvodi" + +#: includes/common/shipping-modules/mp-usps.php:282 +#: includes/common/shipping-modules/mp-usps.php:316 +msgid "@ Max" +msgstr "@ Max" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "(3-5 days)" +msgstr "(3-5 dana)" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "Priority Mail Express International Padded Flat Rate Envelope" +msgstr "Priority Mail Express International Padded Flat Rate Envelope" + +#: includes/common/shipping-modules/mp-usps.php:92 +msgid "Priority Mail Padded Flat Rate Envelope" +msgstr "Priority Mail Padded Flat Rate Envelope" + +#: includes/common/shipping-modules/mp-pickup.php:171 +#: includes/common/shipping-modules/mp-pickup.php:247 +msgid "In Store" +msgstr "U trgovini" + +#: includes/common/shipping-modules/mp-pickup.php:159 +msgid "Pickup Fee" +msgstr "Naknada za preuzimanje" + +#: includes/common/shipping-modules/mp-pickup.php:141 +msgid "This option allows your customers to indicate that they will pick-up their order at your place of business." +msgstr "Ova opcija omogućuje korisnicima da upute na to da će podići njihovu narudžbu na vašem mjestu poslovanja." + +#: includes/common/shipping-modules/mp-pickup.php:60 +#: includes/common/shipping-modules/mp-pickup.php:76 +#: includes/common/shipping-modules/mp-pickup.php:176 +msgid "Pickup Instructions" +msgstr "Upute za podizanje" + +#: includes/common/shipping-modules/mp-pickup.php:24 +#: includes/common/shipping-modules/mp-pickup.php:254 +msgid "Pickup" +msgstr "Podizanje" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping - 0.00" +msgstr "Besplatna dostava - 0.00" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:256 +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:440 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping" +msgstr "Besplatna dostava" + +#: includes/common/shipping-modules/mp-fedex.php:309 +msgid "Your Packaging" +msgstr "Vaše pakiranje" + +#: includes/common/shipping-modules/mp-fedex.php:301 +msgid "Station" +msgstr "Postaja" + +#: includes/common/shipping-modules/mp-fedex.php:300 +msgid "Request Courier" +msgstr "Zahtjev za kurira" + +#: includes/common/shipping-modules/mp-fedex.php:299 +msgid "Drop Box" +msgstr "Drop Box" + +#: includes/common/shipping-modules/mp-fedex.php:298 +msgid "Business Service Center" +msgstr "Poslovni Uslužni Centar" + +#: includes/common/shipping-modules/mp-fedex.php:297 +msgid "Regular Pickup" +msgstr "Obično podizanje" + +#: includes/common/payment-gateways/wepay.php:135 +#: includes/common/shipping-modules/mp-fedex.php:264 +msgid "Production" +msgstr "Produkcija" + +#: includes/common/payment-gateways/simplify.php:207 +msgid "Simplify Commerce by MasterCard" +msgstr "Simplify Commerce od MasterCard" + +#: includes/common/payment-gateways/simplify.php:104 +msgid "When in live mode, although it is not required, Simplify recommends you have an SSL certificate." +msgstr "Kada u live modu, iako nije potrebno, Simplify preporuča da imate SSL certifikat." + +#: includes/common/payment-gateways/paymill.php:183 +#: includes/common/payment-gateways/simplify.php:87 +msgid "Public Key" +msgstr "Public Key" + +#: includes/common/payment-gateways/paymill.php:175 +#: includes/common/payment-gateways/simplify.php:94 +msgid "Private Key" +msgstr "Private Key" + +#: includes/common/payment-gateways/simplify.php:71 +msgid "Simplify helps merchants to accept online payments from Mastercard, Visa, American Express, Discover, JCB, and Diners Club cards. It's that simple. We offer a merchant account and payment gateway in a single, secure package so you can concentrate on what really matters to your business. Only supports USD currently." +msgstr "Simplify pomaže trgovcima pri prihvaćanju online plaćanja koristeći MasterCard, Visa, American Express, Discover, JCB i Diners Club karticama. Tako je jednostavno. Nudimo trgovački račun i gateway u jednom, sigurnom paketu, tako da se moežte usredotočiti na ono što je zaista bitno za vaše poslovanje. Trenutno podržava samo USD." + +#: includes/common/payment-gateways/wepay.php:267 +msgid "%1$s" +msgstr "%1$s" + +#: includes/common/payment-gateways/simplify.php:151 +msgid "The Simplify Token was not generated correctly. Please go back and try again." +msgstr "Simplify Token nije generiran uspješno. Molimo vratite se i pokušajte ponovno." + +#: includes/common/payment-gateways/simplify.php:18 +msgid "Simplify" +msgstr "Simplify" + +#: includes/common/payment-gateways/pin.php:255 +msgid "%1$s Card %2$s" +msgstr "%1$s Kartica %2$s" + +#: includes/common/payment-gateways/pin.php:211 +msgid "The PIN Token was not generated correctly. Please go back and try again." +msgstr "PIN Token nije generiran uspješno. Molimo vratite se i pokušajte ponovno." + +#: includes/common/payment-gateways/pin.php:187 +msgid "Selecting a currency other than currency supported by PIN may cause problems at checkout." +msgstr "Odabir valute druge od valute podžane od strane PIN-a može uzrokovati probleme pri naplati." + +#: includes/common/payment-gateways/pin.php:164 +msgid "You must login to PIN to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "Morate se prijaviti na PIN kako bi dobili vaše API podatke. Možete unijeti svoje testne ključeve i zatim one za live mod kad ste spremni." + +#: includes/common/payment-gateways/pin.php:158 +msgid "When in live mode PIN recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "Kada u live modu, PIN preporučuje da imate SSL certifikat postavljen na stranici gdje će forma za naplatu biti prikazana." + +#: includes/common/payment-gateways/pin.php:45 +#: includes/common/payment-gateways/pin.php:286 +msgid "PIN" +msgstr "PIN" + +#: includes/common/payment-gateways/paypal-express.php:830 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer" +msgstr "Plaćanje je preknuto zbog odbijanja transakcije ili druge vrste greške. Sredsta su uklonjena iz salda vašeg korisničkog računa i vraćena kupcu" + +#: includes/common/payment-gateways/paypal-chained-payments.php:534 +#: includes/common/payment-gateways/paypal-express.php:865 +msgid "The payment is pending" +msgstr "Plaćanje je na čekanju" + +#: includes/common/payment-gateways/paymill.php:235 +msgid "The Paymill Token was not generated correctly. Please go back and try again." +msgstr "The Paymill Token nije generiran pravilo. Molimo vratite se i pokušajte ponovno." + +#: includes/common/payment-gateways/paymill.php:169 +msgid "You must login to Paymill to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "Morate se prijaviti u Paymill kako bi dobili svoje API podatke. Možete unesti ključeve za testiranje i zatim ključeve za live mod kada ste spremni." + +#: includes/common/payment-gateways/paymill.php:45 +#: includes/common/payment-gateways/paymill.php:308 +msgid "Paymill" +msgstr "Paymill" + +#: includes/common/payment-gateways/paymill.php:90 +msgid "Invalid cardholder" +msgstr "Pogrešan vlasnik kartice" + +#: includes/common/payment-gateways/paymill.php:89 +msgid "Card is no longer valid or has expired" +msgstr "Kartica više ne vrijedi ili je istekla" + +#: includes/common/payment-gateways/paymill.php:88 +msgid "Please enter a valid Card CVC" +msgstr "Molimo unesite valjani CVC broj" + +#: includes/common/payment-gateways/paymill.php:87 +msgid "Please choose a valid Expiration Date." +msgstr "Molimo unesite važeći Datum Isteka." + +#: includes/common/payment-gateways/skrill.php:99 +#: includes/common/payment-gateways/skrill.php:100 +msgid "Skrill (Moneybookers)" +msgstr "Skrill (Moneybookers)" + +#: includes/common/shipping-modules/mp-weight-rate.php:24 +#: includes/common/shipping-modules/mp-weight-rate.php:292 +msgid "Weight Rate" +msgstr "Stopa težine" + +#: includes/common/shipping-modules/mp-usps.php:303 +msgid "USPS Offered International Services" +msgstr "USPS ponuđene internacionalne usluge" + +#: includes/common/shipping-modules/mp-usps.php:270 +msgid "USPS Offered Domestic Services" +msgstr "USPS ponuđene domaće usluge" + +#: includes/common/shipping-modules/mp-usps.php:264 +msgid "USPS Settings" +msgstr "USPS postavke" + +#: includes/common/shipping-modules/mp-usps.php:145 +msgid "Flat Rate Large" +msgstr "Paušalno veliko" + +#: includes/common/shipping-modules/mp-usps.php:140 +msgid "Flat Rate Medium 2" +msgstr "Paušalno srednje 2" + +#: includes/common/shipping-modules/mp-usps.php:135 +msgid "Flat Rate Medium 1" +msgstr "Paušalno srednje 1" + +#: includes/common/shipping-modules/mp-usps.php:130 +msgid "Flat Rate Small" +msgstr "Paušalno malo" + +#: includes/common/shipping-modules/mp-usps.php:118 +msgid "First Class International Parcel" +msgstr "Internacionalna parcela prve klase" + +#: includes/common/shipping-modules/mp-usps.php:114 +msgid "Priority Mail International Small Flat Rate Boxes" +msgstr "Prioritetne internacionalne male poštanske kutije" + +#: includes/common/shipping-modules/mp-usps.php:112 +msgid "Priority Mail International Medium Flat Rate Boxes" +msgstr "Prioritetne internacionalne srednje poštanske kutije" + +#: includes/common/shipping-modules/mp-usps.php:110 +msgid "Priority Mail International Large Flat Rate Boxes" +msgstr "Prioritetne internacionalne velike poštanske kutije" + +#: includes/common/shipping-modules/mp-usps.php:108 +msgid "Priority Mail International" +msgstr "Prioritetna internacionalna pošta" + +#: includes/common/shipping-modules/mp-usps.php:106 +msgid "Express Mail International Flat Rate Boxes" +msgstr "Expres pošta internacionalne paušalne kutije" + +#: includes/common/shipping-modules/mp-usps.php:104 +msgid "Express Mail International" +msgstr "Express Mail International" + +#: includes/common/shipping-modules/mp-usps.php:98 +msgid "Library Mail" +msgstr "Library Mail" + +#: includes/common/shipping-modules/mp-usps.php:96 +msgid "Media Mail" +msgstr "Media Mail" + +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "First-Class Mail Parcel" +msgstr "First-Class Mail Parcel" + +#: includes/common/shipping-modules/mp-usps.php:90 +msgid "Priority Mail Small Flat Rate Box" +msgstr "Prioritetna pošta paušalno mala kutija" + +#: includes/common/shipping-modules/mp-usps.php:88 +msgid "Priority Mail Medium Flat Rate Box" +msgstr "Prioritetna pošta paušalno srednja kutija" + +#: includes/common/shipping-modules/mp-usps.php:86 +#: includes/common/shipping-modules/mp-usps.php:88 +#: includes/common/shipping-modules/mp-usps.php:90 +#: includes/common/shipping-modules/mp-usps.php:92 +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "(2-4 days)" +msgstr "(2-4 dana)" + +#: includes/common/shipping-modules/mp-usps.php:86 +msgid "Priority Mail Large Flat Rate Box" +msgstr "Prioritetna pošta paušalno velika kutija" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "(2-4) days" +msgstr "(2-4) dana" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "Priority Mail" +msgstr "Prioritetna pošta" + +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "Express Mail Sunday/Holiday Delivery Flat Rate Boxes" +msgstr "Ekspres pošta nedjelja/dostava blagdanom paušalne kutije" + +#: includes/common/shipping-modules/mp-usps.php:80 +msgid "Express Mail Flat Rate Boxes Hold For Pickup" +msgstr "Expres pošta paušalne kutije zadržavanje do preuzimanja" + +#: includes/common/shipping-modules/mp-usps.php:78 +msgid "Express Mail Flat Rate Boxes" +msgstr "Expres mail paušalne kutije" + +#: includes/common/shipping-modules/mp-usps.php:76 +msgid "Express Mail Sunday/Holiday Delivery" +msgstr "Expres pošta nedjeljom / dostava praznikom" + +#: includes/common/shipping-modules/mp-usps.php:74 +msgid "Express Mail Hold For Pickup" +msgstr "Expres pošta zadržavanje do preuzimanja" + +#: includes/common/shipping-modules/mp-usps.php:72 +#: includes/common/shipping-modules/mp-usps.php:74 +#: includes/common/shipping-modules/mp-usps.php:76 +#: includes/common/shipping-modules/mp-usps.php:78 +#: includes/common/shipping-modules/mp-usps.php:80 +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "(1-2 days)" +msgstr "(1-2 dana)" + +#: includes/common/shipping-modules/mp-usps.php:72 +msgid "Express Mail" +msgstr "Ekspres pošta" + +#: includes/common/shipping-modules/mp-usps.php:67 +#: includes/common/shipping-modules/mp-usps.php:902 +msgid "USPS" +msgstr "USPS" + +#: includes/common/shipping-modules/mp-ups.php:534 +msgid "UPS (beta)" +msgstr "UPS (beta)" + +#: includes/common/shipping-modules/mp-ups.php:166 +msgid "Required if using negotiated rates" +msgstr "Potrebno ako se koriste dogovarane stope" + +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "Saver" +msgstr "Uštedljivo" + +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "Worldwide Express Plus" +msgstr "Diljem svijeta ekspresno Plus" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "(Scheduled)" +msgstr "(Planirano)" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "Standard" +msgstr "Standardno" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "(2-5 Days)" +msgstr "(2-5 dana)" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "Worldwide Expedited" +msgstr "Diljem svijeta ubrzano" + +#: includes/common/shipping-modules/mp-ups.php:54 +msgid "Worldwide Express" +msgstr "Diljem svijeta ekspresno" + +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "2nd Day Air AM" +msgstr "Drugi dan AM zrakom" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "(1 Days)" +msgstr "(1 dan)" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "Next Day Air Early AM" +msgstr "Sljedeći dan rano ujutro zrakom" + +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "Next Day Air Saver" +msgstr "Sljedeći dan zračno štedno" + +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "3 Day Select" +msgstr "Treći dan po izboru" + +#: includes/common/shipping-modules/mp-ups.php:49 +msgid "Ground" +msgstr "Kopnom" + +#: includes/common/shipping-modules/mp-ups.php:48 +msgid "2nd Day Air" +msgstr "Drugi dan zračno" + +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "Next Day Air" +msgstr "Sljedeći dan zračno" + +#: includes/admin/class-mp-orders-admin.php:475 +#: includes/common/shipping-modules/mp-ups.php:43 +msgid "UPS" +msgstr "UPS" + +#: includes/common/shipping-modules/mp-table-rate.php:27 +#: includes/common/shipping-modules/mp-table-rate.php:318 +msgid "Table Rate" +msgstr "Table Rate" + +#: includes/common/shipping-modules/mp-table-quantity.php:71 +#: includes/common/shipping-modules/mp-table-quantity.php:77 +msgid "Shipping Cost: " +msgstr "Trošak dostave:" + +#: includes/common/shipping-modules/mp-table-quantity.php:70 +#: includes/common/shipping-modules/mp-table-quantity.php:76 +msgid "If quantity is greater than:" +msgstr "Ako je količina veća od:" + +#: includes/common/shipping-modules/mp-table-quantity.php:66 +msgid "Each band must be a higher price than the one above it." +msgstr "Svaki pojas mora imati veću cijenu od onoga iznad njega." + +#: includes/common/shipping-modules/mp-table-quantity.php:56 +msgid "Number of Bands:" +msgstr "Broj pojasa:" + +#: includes/common/shipping-modules/mp-table-quantity.php:53 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Each layer must be a higher quantity than the previous." +msgstr "Uneside cijenu dostave za svaku opciju ili bi u protivnom ti kupci mogli dobiti besplatnu dostavu. Svaki sloj mora sadržavati veću količinu od prethodnog." + +#: includes/common/shipping-modules/mp-table-quantity.php:51 +msgid "Table Quantity Settings" +msgstr "Table količina postavke" + +#: includes/common/shipping-modules/mp-table-quantity.php:31 +msgid "Table Quantity" +msgstr "Table količina" + +#: includes/common/shipping-modules/mp-flat-rate.php:135 +#: includes/common/shipping-modules/mp-table-rate.php:174 +#: includes/common/shipping-modules/mp-weight-rate.php:189 +msgid "European Union" +msgstr "Europska Unija" + +#: includes/common/shipping-modules/mp-flat-rate.php:123 +#: includes/common/shipping-modules/mp-table-rate.php:162 +#: includes/common/shipping-modules/mp-weight-rate.php:177 +msgid "United States" +msgstr "Sjedinjene Američke Države" + +#: includes/common/shipping-modules/mp-flat-rate.php:111 +#: includes/common/shipping-modules/mp-table-rate.php:151 +#: includes/common/shipping-modules/mp-weight-rate.php:166 +msgid "In Country" +msgstr "U zemlji" + +#: includes/common/shipping-modules/mp-flat-rate.php:146 +#: includes/common/shipping-modules/mp-table-rate.php:186 +#: includes/common/shipping-modules/mp-weight-rate.php:201 +msgid "International" +msgstr "Internacionalno" + +#: includes/common/shipping-modules/mp-flat-rate.php:101 +#: includes/common/shipping-modules/mp-table-rate.php:141 +#: includes/common/shipping-modules/mp-weight-rate.php:156 +msgid "Canada" +msgstr "Kanada" + +#: includes/common/shipping-modules/mp-flat-rate.php:92 +#: includes/common/shipping-modules/mp-table-rate.php:132 +#: includes/common/shipping-modules/mp-weight-rate.php:147 +msgid "Hawaii and Alaska" +msgstr "Hawaii i Alaska" + +#: includes/common/shipping-modules/mp-flat-rate.php:83 +#: includes/common/shipping-modules/mp-table-rate.php:123 +#: includes/common/shipping-modules/mp-weight-rate.php:138 +msgid "Lower 48 States" +msgstr "Donjih 48 država" + +#: includes/common/shipping-modules/mp-flat-rate.php:64 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping." +msgstr "Unesite cijenu dostave za svaku opciju ili bi u protivnom ti kupci mogli dobiti besplatnu dostavu." + +#: includes/common/shipping-modules/mp-flat-rate.php:25 +#: includes/common/shipping-modules/mp-flat-rate.php:223 +msgid "Flat Rate" +msgstr "Paušalno" + +#: includes/common/shipping-modules/mp-fedex.php:761 +msgid "FedEx (beta)" +msgstr "FedEx (beta)" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Centimeters" +msgstr "Centimetri" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Inches" +msgstr "Inči" + +#: includes/admin/class-mp-products-admin.php:1676 +#: includes/admin/class-mp-setup-wizard.php:547 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:166 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +msgid "Kilograms" +msgstr "Kilogrami" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:103 +msgid " %1$s - %2$s" +msgstr " %1$s - %2$s" + +#: includes/common/shipping-modules/mp-usps.php:358 +msgid "Max Weight per Box" +msgstr "Maksimalna težina po kutiji" + +#: includes/common/shipping-modules/mp-usps.php:356 +msgid "Box Dimensions" +msgstr "Dimenzije kutije" + +#: includes/common/shipping-modules/mp-usps.php:354 +msgid "Box Name" +msgstr "Ime kutije" + +#: includes/common/shipping-modules/mp-usps.php:344 +msgid "Total weight selects the box size used for calculating Shipping costs." +msgstr "Ukupna težina određuje veličinu kutije korištenu za kalkuliranje troškova dostave." + +#: includes/common/shipping-modules/mp-usps.php:343 +msgid "For each box defined enter the maximum weight it can contain." +msgstr "Za svaku definiranu kutiju unesite maksimalnu težinu koju može sadržavati." + +#: includes/common/shipping-modules/mp-usps.php:341 +msgid "Enter your standard box sizes as LengthxWidthxHeight" +msgstr "Unesite standardne veličine kutije kao DužinaxŠirinaxVisina" + +#: includes/common/shipping-modules/mp-fedex.php:386 +#: includes/common/shipping-modules/mp-ups.php:193 +#: includes/common/shipping-modules/mp-usps.php:234 +#: includes/common/shipping-modules/mp-usps.php:338 +msgid "Standard Boxes and Weight Limits" +msgstr "Standardne limiti kutija i težina" + +#: includes/common/shipping-modules/mp-usps.php:328 +msgid "Handling Charge per Interntional Shipment" +msgstr "Naknada za rukovanje po internacionalnoj pošiljki" + +#: includes/common/shipping-modules/mp-usps.php:294 +msgid "Handling Charge per Domestic Shipment " +msgstr "Naknada za rukovođenje po domaćoj pošiljki" + +#: includes/common/shipping-modules/mp-fedex.php:388 +#: includes/common/shipping-modules/mp-ups.php:196 +#: includes/common/shipping-modules/mp-usps.php:237 +msgid "Add Box" +msgstr "Dodaj kutiju" + +#: includes/common/shipping-modules/mp-fedex.php:63 +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "(Next Day)" +msgstr "(Sljedeći dan)" + +#: includes/common/shipping-modules/mp-fedex.php:63 +msgid "Europe First International Priority" +msgstr "Europa prvo internacionalni prioritet" + +#: includes/common/shipping-modules/mp-fedex.php:62 +msgid "International Priority" +msgstr "Internacionalno prioritetno" + +#: includes/common/shipping-modules/mp-fedex.php:61 +#: includes/common/shipping-modules/mp-fedex.php:62 +#: includes/common/shipping-modules/mp-ups.php:54 +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "(1-3 Days)" +msgstr "(1-3 dana)" + +#: includes/common/shipping-modules/mp-fedex.php:61 +msgid "International First" +msgstr "Internacionalno prvo" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "(5 Days)" +msgstr "(5 dana)" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "International Economy" +msgstr "Internacionalna ekonomija" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "(2-7 Days)" +msgstr "(2-7 dana)" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "Smart Post" +msgstr "Pametan post" + +#: includes/common/shipping-modules/mp-fedex.php:55 +#: includes/common/shipping-modules/mp-ups.php:49 +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "(1-5 Days)" +msgstr "(1-5 dana)" + +#: includes/common/shipping-modules/mp-fedex.php:55 +msgid "Ground Home Delivery" +msgstr "Kućna dostava kompnom" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "(1-7 Days)" +msgstr "(1-7 dana)" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "Fedex Ground" +msgstr "Fedex Ground" + +#: includes/common/shipping-modules/mp-fedex.php:53 +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "(3 Days)" +msgstr "(3 dana)" + +#: includes/common/shipping-modules/mp-fedex.php:53 +msgid "Fedex Express Saver" +msgstr "Fedex Express Saver" + +#: includes/common/shipping-modules/mp-fedex.php:52 +#: includes/common/shipping-modules/mp-ups.php:48 +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "(2 Days)" +msgstr "(2 dana)" + +#: includes/common/shipping-modules/mp-fedex.php:52 +msgid "Fedex 2 Day" +msgstr "Fedex 2 dan" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "(2 Days am)" +msgstr "(2 dana am)" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "Fedex 2 Day AM" +msgstr "Fedex 2 dan AM" + +#: includes/common/shipping-modules/mp-fedex.php:50 +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "(1 Day)" +msgstr "(1 dan)" + +#: includes/common/shipping-modules/mp-fedex.php:50 +msgid "Standard Overnight" +msgstr "Standardno preko noći" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "(1 Day am )" +msgstr "(1 dan am )" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "Priority Overnight" +msgstr "Prioritetno preko noći" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "(1 Day am)" +msgstr "(1 dan am)" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "First Overnight" +msgstr "Preko noći" + +#: includes/admin/class-mp-orders-admin.php:476 +#: includes/common/shipping-modules/mp-fedex.php:31 +msgid "FedEx" +msgstr "FedEx" + +#: includes/common/payment-gateways/paymill.php:270 +#: includes/common/payment-gateways/simplify.php:179 +#: includes/common/payment-gateways/stripe.php:365 +msgid "%1$s Card ending in %2$s - Expires %3$s" +msgstr "%1$s kartica koja završava s %2$s - Istiće %3$s" + +#: includes/common/payment-gateways/paymill.php:259 +#: includes/common/payment-gateways/pin.php:238 +#: includes/common/payment-gateways/simplify.php:171 +msgid "%s Store Purchase - Order ID: %s, Email: %s" +msgstr "%s kupnja u trgovini - Order ID: %s, Email: %s" + +#: includes/common/payment-gateways/stripe.php:266 +msgid "You must login to Stripe to get your API credentials. You can enter your test credentials, then live ones when ready." +msgstr "Morate se prijaviti u Stripe kako bi dobili API podatke. Možete unesti test podatke pa zatim prave podatke kada ste spremni." + +#: includes/common/payment-gateways/stripe.php:261 +msgid "When in live mode Stripe recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "Kad je u live modu Stripe preporučuje da imate SSL certifikat postavljen na stranici gdje će biti prikazan obrazac za naplatu." + +#: includes/common/payment-gateways/stripe.php:311 +msgid "The Stripe Token was not generated correctly. Please go back and try again." +msgstr "Stripe Token nije generiran pravilno. Molimo vratite se i pokušajte ponovno." + +#: includes/common/payment-gateways/class-mp-gateway-api.php:263 +#: includes/common/payment-gateways/paymill.php:122 +#: includes/common/payment-gateways/stripe.php:222 +msgid "Card Number" +msgstr "Broj kartice" + +#: includes/common/payment-gateways/paymill.php:86 +msgid "Please enter a valid Credit Card Number." +msgstr "Molimo unesite važeći broj kreditne kartice." + +#: includes/common/payment-gateways/stripe.php:45 +#: includes/common/payment-gateways/stripe.php:433 +msgid "Stripe" +msgstr "Stripe" + +#: includes/common/payment-gateways/paypal-express.php:750 +msgid "Sets the background color for the payment page. By default, the color is white." +msgstr "Postavlja boju pozadine stranice za plaćanje. Zadano, boja je bijela." + +#: includes/common/payment-gateways/paypal-express.php:745 +msgid "Sets the background color for the header of the payment page. By default, the color is white." +msgstr "Postavlja boju pozadine zaglavlja stranice za plaćanje. zadano, boja je bijela." + +#: includes/common/payment-gateways/paypal-express.php:740 +msgid "Sets the border color around the header of the payment page. The border is a 2-pixel perimeter around the header space, which is 750 pixels wide by 90 pixels high. By default, the color is black." +msgstr "Postavlja koju obruba oko zaglavlja stranice za plaćanje. Obrub je širok 2 piksela oko prostora zaglavlja, koje je 750 piksela široko i 90 piksela visoko. Zadano, boja je crna." + +#: includes/common/payment-gateways/paypal-express.php:735 +msgid "URL for an image you want to appear at the top left of the payment page. The image has a maximum size of 750 pixels wide by 90 pixels high. PayPal recommends that you provide an image that is stored on a secure (https) server. If you do not specify an image, the business name is displayed." +msgstr "URL slike za koju želite da se pojavi na vrhu lijevo stranice za plaćanje. Slika ima maksimalnu veličinu od 750 piksela širine 90 piksela. PayPal preporuča da osigurate sliku koja je pohranjena na sigurnom (https) serveru. Ako ne specificirate sliku ime trgovine će biti prikazano." + +#: includes/common/payment-gateways/paypal-express.php:857 +#: includes/common/payment-gateways/paypal-express.php:1131 +msgid "The payment is pending because it is part of an order that has been authorized but not settled." +msgstr "Plaćanje je na čekanju zato što je dio narudžbe koja je odobrena, ali ne i završena." + +#: includes/common/payment-gateways/paypal-express.php:853 +#: includes/common/payment-gateways/paypal-express.php:1127 +msgid "The payment is pending because it has been authorized but not settled. You must capture the funds first." +msgstr "Plaćanje je na čekanju zato što je odobreno ali ne i završeno. Prvo morate prihvatiti sredstva." + +#: includes/common/payment-gateways/paypal-express.php:847 +#: includes/common/payment-gateways/paypal-express.php:1120 +msgid "You denied the payment when it was marked as pending." +msgstr "Odbili ste plaćanje kada je bilo označeno kao \"na čekanju\"." + +#: includes/common/payment-gateways/paypal-express.php:837 +#: includes/common/payment-gateways/paypal-express.php:1108 +msgid "A reversal has occurred on this transaction due to an unknown reason." +msgstr "Dogodilo se poništenje na ovoj transakciji iz nepoznatog razloga." + +#: includes/common/payment-gateways/paypal-express.php:836 +#: includes/common/payment-gateways/paypal-express.php:1107 +msgid "A reversal has occurred on this transaction because you have given the customer a refund." +msgstr "Dogodilo se poništenje na ovoj transakciji zbog toga što ste refundirali kupca." + +#: includes/common/payment-gateways/paypal-express.php:835 +#: includes/common/payment-gateways/paypal-express.php:1106 +msgid "A reversal has occurred on this transaction due to a complaint about the transaction from your customer." +msgstr "Dogodilo se poništenje na ovoj transakciji zbog pritužbe o transakciji od strane kupca." + +#: includes/common/payment-gateways/paypal-express.php:834 +#: includes/common/payment-gateways/paypal-express.php:1105 +msgid "A reversal has occurred on this transaction due to your customer triggering a money-back guarantee." +msgstr "Dogodilo se poništenje na ovoj transakciji zbog toga što je vaš kupac pokrenuo postupak garancije povrata novca." + +#: includes/common/payment-gateways/paypal-express.php:833 +#: includes/common/payment-gateways/paypal-express.php:1104 +msgid "A reversal has occurred on this transaction due to a chargeback by your customer." +msgstr "Dogodilo se poništenje na ovoj transakciji zbog odbijanja transakcije od strane kupca." + +#: includes/common/payment-gateways/paypal-express.php:1101 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer:" +msgstr "Uplata je prekinuta zbog odbijanja transakcije ili druge vrste preokreta. Sredstva su uklonjena iz salda vašeg računa i vraćena kupcu:" + +#: includes/common/payment-gateways/paypal-express.php:826 +#: includes/common/payment-gateways/paypal-express.php:1097 +msgid "A payment has been accepted." +msgstr "Uplata je prihvaćena." + +#: includes/common/payment-gateways/paypal-express.php:818 +#: includes/common/payment-gateways/paypal-express.php:1087 +msgid "The transaction has not terminated, e.g. an authorization may be awaiting completion." +msgstr "Transakcija nije prekinuta, npr. autorizacija možda čeka završetak." + +#: includes/common/payment-gateways/payfast.php:531 +#: includes/common/payment-gateways/paypal-express.php:810 +#: includes/common/payment-gateways/paypal-express.php:1077 +msgid "The payment has failed. This happens only if the payment was made from your customer's bank account." +msgstr "Uplata nije uspjela. To će se dogoditi samo ako je isplada izvršena iz bankovnog računa vašeg kupca." + +#: includes/common/payment-gateways/paypal-express.php:806 +#: includes/common/payment-gateways/paypal-express.php:1072 +msgid "An authorization for this transaction has been voided." +msgstr "Autorizacija za ovu transakciju je poništena." + +#: includes/common/payment-gateways/paypal-express.php:802 +#: includes/common/payment-gateways/paypal-express.php:1067 +msgid "The authorization period for this payment has been reached." +msgstr "Autorizacijski period za ovu uplatu je dostignut." + +#: includes/common/payment-gateways/paypal-express.php:798 +#: includes/common/payment-gateways/paypal-express.php:1062 +msgid "A reversal has been canceled; for example, when you win a dispute and the funds for the reversal have been returned to you." +msgstr "Povrat sredstva je otkazan; npr. možete osvojiti spor, a sredstva za povrat će se vratiti vama." + +#: includes/common/payment-gateways/paypal-express.php:499 +#: includes/common/payment-gateways/paypal-express.php:1163 +msgid "PayPal Express Checkout" +msgstr "PayPal Express naplata" + +#: includes/common/payment-gateways/paypal-chained-payments.php:798 +msgid "Gateway Settings Page Message" +msgstr "Poruka stranice postavki gatewaya" + +#: includes/common/payment-gateways/paypal-express.php:725 +msgid "Signature" +msgstr "Potpis" + +#: includes/common/payment-gateways/eway31.php:506 +#: includes/common/payment-gateways/eway31.php:533 +#: includes/common/shipping-modules/mp-fedex.php:276 +msgid "API Password" +msgstr "API Password" + +#: includes/common/payment-gateways/paypal-chained-payments.php:773 +msgid "Enter a percentage of all store sales to collect as a fee. Decimals allowed." +msgstr "Unesite postotak od svih prodaja trgovine za prikupljanje kao naknadu. Decimale dopuštene." + +#: includes/common/payment-gateways/paypal-chained-payments.php:757 +msgid "Using PayPal Chained Payments allows you as the multisite network owner to collect a predefined fee or percentage of all sales on network MarketPress stores! This is invisible to the customers who purchase items in a store, and all PayPal fees will be charged to the store owner. To use this option you must create API credentials, and you should make all other gateways unavailable or limited above." +msgstr "Korištenje PayPal Chained Payments omogućuje vam kao vlasniku multisite mreže prikupljanje predefiniranih naknada ili postotaka svih prodaja na mreži MarketPress trgovina. Ovo je nevidljivo kupcima koji kupuju proizvode u trgovini i sve PayPal naknade će biti naplaćene vlasniku trgovine. Za korištenje ove opcije morate kreirati API podatke (credentials) i trebali bi onemogućiti sve ostale gatewaye ili ih limitirati." + +#: includes/common/payment-gateways/paypal-chained-payments.php:338 +msgid "Please be aware that we will deduct a ?% fee from the total of each transaction in addition to any fees PayPal may charge you. If for any reason you need to refund a customer for an order, please contact us with a screenshot of the refund receipt in your PayPal history as well as the Transaction ID of our fee deduction so we can issue you a refund. Thank you!" +msgstr "Imajte na umu da ćemo odbiti naknadu od ?% od ukupnog iznosa svake transakcije uz dodatak bilo kakve naknade PayPal vam može naplatiti. Ako iz bilo kojeg razloga morate refundirati kupca za narudžb, molimo kontaktirajte nas s preslikom računa za refundiranje u vašoj PayPal povijesti, kao i Transaction ID naše naknade, tako da vam možemo izdati povrat sredstva. Hvala!" + +#: includes/common/payment-gateways/paypal-chained-payments.php:698 +#: includes/common/payment-gateways/paypal-express.php:149 +msgid "There was a problem connecting to PayPal. Please try again." +msgstr "Došlo je do problema prilikom povezivanja s PayPalom. Molimo pokušajte ponovno." + +#: includes/common/payment-gateways/paypal-chained-payments.php:470 +#: includes/common/payment-gateways/paypal-express.php:1053 +msgid "There was a problem verifying the IPN string with PayPal. Please try again." +msgstr "Došlo je do problema prilikom verificiranja IPN niti s PayPalom. Molimo pokušajte ponovno." + +#: includes/common/payment-gateways/paypal-chained-payments.php:310 +msgid "There was a problem connecting to PayPal to check the status of your purchase. Please check the status of your order here »" +msgstr "Došlo je do problema prilikom spajanja na PayPal i provjere statusa vaše kupnje. Molimo provjerite status vaše narudžbe ovdje »" + +#: includes/common/payment-gateways/payfast.php:539 +#: includes/common/payment-gateways/paypal-chained-payments.php:254 +#: includes/common/payment-gateways/paypal-express.php:1139 +msgid "The payment is pending." +msgstr "Uplata je na čekanju." + +#: includes/common/payment-gateways/paypal-chained-payments.php:251 +#: includes/common/payment-gateways/paypal-chained-payments.php:531 +#: includes/common/payment-gateways/paypal-express.php:862 +#: includes/common/payment-gateways/paypal-express.php:1136 +msgid "The payment is pending for an unknown reason. For more information, contact PayPal customer service." +msgstr "Uplata je na čekanju iz nepoznatog razloga. Za više informacija kontaktirajte PayPal podršku za korisnike." + +#: includes/common/payment-gateways/paypal-chained-payments.php:250 +#: includes/common/payment-gateways/paypal-chained-payments.php:530 +#: includes/common/payment-gateways/paypal-express.php:861 +#: includes/common/payment-gateways/paypal-express.php:1135 +msgid "The payment is pending because you are not yet verified. You must verify your account before you can accept this payment." +msgstr "Uplata je na čekanju zato što još niste potvrdili svoj račun. Morate potvrditi svoj račun prije nego što možete primiti ovu uplatu." + +#: includes/common/payment-gateways/paypal-chained-payments.php:249 +#: includes/common/payment-gateways/paypal-chained-payments.php:529 +#: includes/common/payment-gateways/paypal-express.php:860 +#: includes/common/payment-gateways/paypal-express.php:1134 +msgid "The payment is pending because it was made via credit card and you must upgrade your account to Business or Premier status in order to receive the funds. It can also mean that you have reached the monthly limit for transactions on your account." +msgstr "Uplata je na čekanju zato što je pokrenuto pomoću kreditne kartice i morate nadograditi vaš račun na Business ili Premeir satus kako bi mogli primiti sredstva. Ovo također može značiti da ste dostigli mjesečni limit transakcija za vaš račun." + +#: includes/common/payment-gateways/paypal-chained-payments.php:248 +#: includes/common/payment-gateways/paypal-chained-payments.php:528 +#: includes/common/payment-gateways/paypal-express.php:859 +#: includes/common/payment-gateways/paypal-express.php:1133 +msgid "The payment is pending because it was made to an email address that is not yet registered or confirmed." +msgstr "Uplata je na čekanju zato što je pokrenuto s email adrese koja nije registrirana ili potvrđena.-" + +#: includes/common/payment-gateways/paypal-chained-payments.php:247 +#: includes/common/payment-gateways/paypal-chained-payments.php:527 +#: includes/common/payment-gateways/paypal-express.php:858 +#: includes/common/payment-gateways/paypal-express.php:1132 +msgid "The payment is pending while it is being reviewed by PayPal for risk." +msgstr "Uplata je na čekanju dok PayPal ne pregleda transakciju zbog rizika." + +#: includes/common/payment-gateways/paypal-chained-payments.php:246 +#: includes/common/payment-gateways/paypal-chained-payments.php:526 +#: includes/common/payment-gateways/paypal-express.php:856 +#: includes/common/payment-gateways/paypal-express.php:1130 +msgid "You do not have a balance in the currency sent, and you do not have your Payment Receiving Preferences set to automatically convert and accept this payment. You must manually accept or deny this payment." +msgstr "Nemate dovoljno sredstva u poslanoj valuti i nemate vaše Payment Receiving Preferences postavljene na automatsku konverziju i prihvaćanje ove uplate. Morate ručno prihvatiti ili odbiti ovu uplatu." + +#: includes/common/payment-gateways/paypal-chained-payments.php:245 +#: includes/common/payment-gateways/paypal-chained-payments.php:525 +#: includes/common/payment-gateways/paypal-express.php:855 +#: includes/common/payment-gateways/paypal-express.php:1129 +msgid "The payment is pending because you hold a non-U.S. account and do not have a withdrawal mechanism. You must manually accept or deny this payment from your Account Overview." +msgstr "Uplata je na čekanju zato što posjedujete non-U.S. račun i nemate mehanizam potreban za povlačenje sredstva. Morate ručno prihvatiti ili odbiti ovu uplatu direktno iz vašeg Account Overview prozora." + +#: includes/common/payment-gateways/paypal-chained-payments.php:244 +#: includes/common/payment-gateways/paypal-chained-payments.php:524 +#: includes/common/payment-gateways/paypal-express.php:854 +#: includes/common/payment-gateways/paypal-express.php:1128 +msgid "The payment is pending because it was made by an eCheck that has not yet cleared." +msgstr "Uplata je na čekanju zato što je napravljena pomoću eChecka koji još nije potvrđen." + +#: includes/common/payment-gateways/paypal-chained-payments.php:243 +#: includes/common/payment-gateways/paypal-chained-payments.php:523 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences section of your Profile." +msgstr "Plaćanje je na čekanju jer vaš klijent nije priložio potvrđenu adresu dostave i vaše Payement Receiving Preferences su postavljene tako da želite ručno odbiti ili prihvatiti svaku od tih uplata. Da biste promijenili postavke idite na odjeljak Preferences vašeg Profila." + +#: includes/common/payment-gateways/paypal-chained-payments.php:236 +#: includes/common/payment-gateways/paypal-chained-payments.php:516 +msgid "The transaction was rejected by the receiver (you)." +msgstr "Transakcija je odbijena od strane primatelja (vi)." + +#: includes/common/payment-gateways/paypal-chained-payments.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:510 +#: includes/common/payment-gateways/paypal-express.php:843 +#: includes/common/payment-gateways/paypal-express.php:1115 +msgid "You refunded the payment." +msgstr "Refundirali ste uplatu." + +#: includes/common/payment-gateways/paypal-chained-payments.php:224 +#: includes/common/payment-gateways/paypal-chained-payments.php:504 +msgid "The transaction is in progress." +msgstr "Transakcija je u tijeku." + +#: includes/common/payment-gateways/paypal-chained-payments.php:212 +#: includes/common/payment-gateways/paypal-chained-payments.php:491 +#: includes/common/payment-gateways/paypal-express.php:814 +#: includes/common/payment-gateways/paypal-express.php:1082 +msgid "The payment has been partially refunded." +msgstr "Uplata je djelomično refundirana." + +#: includes/common/payment-gateways/paypal-chained-payments.php:202 +#: includes/common/payment-gateways/paypal-chained-payments.php:481 +msgid "PayPal balance, Credit Card, or Instant Transfer" +msgstr "PayPal saldo, kreditna kartica ili Instant Transfer" + +#: includes/common/payment-gateways/paypal-chained-payments.php:177 +msgid "There was a problem connecting to PayPal to setup your purchase. Please try again." +msgstr "Došlo je do problema prilikom spajanja na PayPal pri postavljanju vaše kupnje. Molimo pokušajte ponovno." + +#: includes/common/payment-gateways/paypal-chained-payments.php:122 +msgid "Your PayPal transaction has been canceled." +msgstr "Vaša PayPal transakcija je otkazana." + +#: includes/common/payment-gateways/paypal-chained-payments.php:50 +#: includes/common/payment-gateways/paypal-chained-payments.php:53 +#: includes/common/payment-gateways/paypal-chained-payments.php:732 +#: includes/common/payment-gateways/paypal-express.php:500 +#: includes/common/payment-gateways/paypal-express.php:938 +msgid "PayPal" +msgstr "PayPal" + +#: includes/common/payment-gateways/paypal-chained-payments.php:48 +#: includes/common/payment-gateways/paypal-chained-payments.php:730 +#: includes/common/payment-gateways/paypal-chained-payments.php:756 +#: includes/common/payment-gateways/paypal-chained-payments.php:873 +msgid "PayPal Chained Payments" +msgstr "PayPal lančane uplate" + +#: includes/common/payment-gateways/paypal-payflow.php:59 +#: includes/common/payment-gateways/paypal-payflow.php:467 +msgid "PayPal Payflow Pro" +msgstr "PayPal Payflow Pro" + +#: includes/common/payment-gateways/skrill.php:378 +msgid "Chargeback - A payment was reversed due to a chargeback. The funds have been removed from your account balance and returned to the buyer." +msgstr "Stornirano - uplata je preokrenuta zbog storniranja. Sredstva su maknuta iz salda vašeg računa i vraćena kupcu." + +#: includes/common/payment-gateways/skrill.php:372 +msgid "Failed - The Credit Card or Direct Debit transaction was declined." +msgstr "Neuspjelo - transakcija s kreditnom ili debitnom karticom je odbijena." + +#: includes/common/payment-gateways/_payway.php:354 +#: includes/common/payment-gateways/skrill.php:366 +msgid "Cancelled - The payment was cancelled manually by the sender in their online account history or was auto-cancelled after 14 days pending." +msgstr "Otkazano - uplata je ručno otkazana od strane pošiljatelja ili je automatski otkazana nakon 14 dana statusa čekanja." + +#: includes/common/payment-gateways/skrill.php:360 +msgid "Pending - The payment is pending. It can take 2-3 days for bank transfers to complete." +msgstr "Na čekanju - uplata je na čekanju. Može potrajati 2-3 dana da bankovni transferi završe." + +#: includes/common/payment-gateways/_payway.php:349 +#: includes/common/payment-gateways/skrill.php:354 +msgid "Processed - The payment has been completed, and the funds have been added successfully to your Moneybookers account balance." +msgstr "Procesirano - uplata je završena i sredstva su uspješno dodana na saldo vašeg Moneybookers računa." + +#: includes/common/payment-gateways/skrill.php:189 +msgid "Shown to the customer on the confirmation screen - the end step of the process - a note, confirmation number, or any other message. Line breaks <br> may be used for longer messages." +msgstr "Prikazano kupcu na zaslonu potvrde - zadnjji korac procesa - bilješka, broj potvde ili bilo koja druga poruka. Tagovi poput <br> mogu biti korišteni za duge poruke." + +#: includes/common/payment-gateways/skrill.php:188 +msgid "Confirmation Note (optional)" +msgstr "Bilješka potvrde uplate (opcionalno)" + +#: includes/common/payment-gateways/skrill.php:183 +msgid "The URL of the logo which you would like to appear at the top of the payment form. The logo must be accessible via HTTPS otherwise it will not be shown. For best integration results we recommend that you use a logo with dimensions up to 200px in width and 50px in height." +msgstr "URL logotipa koji želite da se pojavi na vrhu obrasca za uplatu. Logo mora biti dostupan putem HTTPS protokola inače neće biti prikazan. Za najbolje rezultate integracije predlažemo da koristite logo dimenzija do 200px u širini i 50px u visini." + +#: includes/common/payment-gateways/skrill.php:182 +msgid "Logo Image (optional)" +msgstr "Logo slika (opcionalno)" + +#: includes/common/payment-gateways/skrill.php:177 +msgid "The name of this store, which will be shown on the gateway. If no value is submitted, the account email will be shown as the recipient of the payment." +msgstr "Naziv ove trgovine koji će biti prikazan na gatewayu. Ako ništa nije uneseno bit će prikazan email računa kao primatelj uplate." + +#: includes/common/payment-gateways/skrill.php:176 +msgid "Merchant Name (optional)" +msgstr "Ime trgovca (opcionalno)" + +#: includes/common/payment-gateways/skrill.php:165 +msgid "Language" +msgstr "Jezik" + +#: includes/common/payment-gateways/2checkout.php:368 +#: includes/common/payment-gateways/authorizenet-aim.php:262 +#: includes/common/payment-gateways/eway.php:363 +#: includes/common/payment-gateways/eway31.php:471 +#: includes/common/payment-gateways/mollie.php:91 +#: includes/common/payment-gateways/paymill.php:193 +#: includes/common/payment-gateways/paypal-chained-payments.php:356 +#: includes/common/payment-gateways/paypal-express.php:688 +#: includes/common/payment-gateways/paypal-payflow.php:432 +#: includes/common/payment-gateways/pin.php:186 +#: includes/common/payment-gateways/skrill.php:152 +#: includes/common/payment-gateways/stripe.php:288 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:104 +msgid "Currency" +msgstr "Valuta" + +#: includes/common/payment-gateways/2checkout.php:359 +#: includes/common/payment-gateways/skrill.php:143 +msgid "Secret Word" +msgstr "Tajna riječ" + +#: includes/common/payment-gateways/skrill.php:261 +msgid "Order ID:" +msgstr "ID narudžbe:" + +#: includes/common/payment-gateways/skrill.php:234 +msgid "Complete Checkout" +msgstr "Završi naplatu" + +#: includes/common/payment-gateways/skrill.php:204 +msgid "Your Moneybookers transaction has been canceled." +msgstr "Vaša Moneybookers transakcija je otkazana." + +#: includes/common/payment-gateways/manual-payments.php:155 +msgid "This is the email text to send to those who have made manual payment checkouts. You should include your manual payment instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "Ovo je tekst za email za slanje onima koji su ručno uplatili za svoju narudšbu. Ovdje možete upute za ručnu uplatu. Nadjačava zadane postavke emaila za potvrdu naplate. Ovi kodovi će biti zamijenjeni s detaljima narudžbe: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. HTML nije dopušten." + +#: includes/common/payment-gateways/_payway.php:257 +#: includes/common/payment-gateways/manual-payments.php:128 +msgid "Record payments manually, such as by Cash, Check, or EFT." +msgstr "Ručno pohvanjivanje uplata, poput gotovine, čekova ili EFT-a." + +#: includes/common/payment-gateways/manual-payments.php:71 +msgid "Manual/Invoice" +msgstr "Ručno/Faktura" + +#: includes/admin/class-mp-setup-wizard.php:648 +#: includes/common/payment-gateways/manual-payments.php:35 +#: includes/common/payment-gateways/manual-payments.php:36 +msgid "Manual Payment" +msgstr "Ručna uplata" + +#: includes/common/payment-gateways/manual-payments.php:34 +#: includes/common/payment-gateways/manual-payments.php:163 +msgid "Manual Payments" +msgstr "Ručne uplate" + +#: includes/common/payment-gateways/_ideal.php:288 +msgid "iDEAL Simulator (for testing)" +msgstr "iDEAL Simulator (za testiranje)" + +#: includes/common/payment-gateways/_ideal.php:287 +msgid "ABN Amro Bank" +msgstr "ABN Amro Bank" + +#: includes/common/payment-gateways/_ideal.php:286 +msgid "Friesland Bank" +msgstr "Friesland Bank" + +#: includes/common/payment-gateways/_ideal.php:285 +msgid "Rabobank" +msgstr "Rabobank" + +#: includes/common/payment-gateways/_ideal.php:284 +msgid "ING Bank" +msgstr "ING banka" + +#: includes/common/payment-gateways/_ideal.php:279 +msgid "Bank" +msgstr "Banka" + +#: includes/common/payment-gateways/_ideal.php:270 +msgid "To make it easier to pay for online products and services, the Dutch banking community has developed the iDEAL online payment method. iDEAL allows online payments to be made using online banking in EUR only." +msgstr "Da bi se lakše plaćalo online proizvode i usluge, nizozemska zajednica bankara razvila je iDEAL online način plaćanja. iDEAL omogućuje online plaćanja samo u EUR valuti." + +#: includes/common/payment-gateways/_ideal.php:247 +#: includes/common/payment-gateways/_payway.php:199 +#: includes/common/payment-gateways/manual-payments.php:68 +msgid "Invoiced" +msgstr "Fakturirano" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1016 +msgid "Coupon" +msgstr "Kupon" + +#: includes/common/payment-gateways/_ideal.php:77 +#: includes/common/payment-gateways/_ideal.php:250 +#: includes/common/payment-gateways/_payway.php:202 +msgid "iDEAL" +msgstr "iDEAL" + +#: includes/common/payment-gateways/_ideal.php:76 +msgid "iDEAL (beta)" +msgstr "iDEAL (beta)" + +#: includes/common/payment-gateways/payfast.php:327 +msgid "Merchant Key" +msgstr "Ključ trgovca" + +#: includes/common/payment-gateways/_ideal.php:293 +#: includes/common/payment-gateways/_payway.php:302 +#: includes/common/payment-gateways/payfast.php:324 +msgid "Merchant ID" +msgstr "ID trgovca" + +#: includes/common/payment-gateways/eway31.php:462 +msgid "eWay Rapid 3.0 Payments lets merchants recieve credit card payments through eWay without need for users to leave the shop. Note this gateway requires a valid SSL certificate configured for this site." +msgstr "eWay Rapid 3.0 Payments omogućuje trgovcima da primaju uplate kreditnm karticama kroz eWay bez potrebe da korisnici napuštaju trgovinu. Napomena; ovaj gateway zahtijeva valjani SSL certifikat konfiguriran za ovu stranicu." + +#: includes/common/payment-gateways/eway.php:452 +msgid "There was a problem connecting to eWay. Please try again." +msgstr "Došlo je do problema prilikom spajanja na eWay. Molimo pokušajte ponovno." + +#: includes/common/payment-gateways/eway.php:432 +#: includes/common/payment-gateways/eway.php:437 +msgid "The url of the image can be hosted on your website and pass the secure https:// path of the image to be displayed at the top of the website. This is the second image block on the webpage and is restricted to 960px X 65px. A default secure image is used if none is supplied." +msgstr "URL slike može biti na vašoj web stranici i prolazit kroz sigurnu https:// putanju slike za prikaz na vrhu stranice. Ovo je drugi blok za sliku na web stranici i ograničen je na 960px X 65px. Zadana sigurnosna slika je korištena ako korisnik ne osigura svoju." + +#: includes/common/payment-gateways/eway.php:431 +#: includes/common/payment-gateways/eway.php:436 +msgid "Company Logo (optional)" +msgstr "Logotip tvrtke (opcionalno)" + +#: includes/common/payment-gateways/eway.php:427 +msgid "The page footer text can be customised and populated below the customer's order details. Useful for contact information." +msgstr "Tekst podnožja stranice može se prilagoditi i popuniti ispod detalja korisnikove narudžbe. Korisno za kontakt informacije." + +#: includes/common/payment-gateways/eway.php:426 +msgid "Page Footer (optional)" +msgstr "Podnožje stranice (opcionalno)" + +#: includes/common/payment-gateways/eway.php:421 +msgid "Page Description (optional)" +msgstr "Opis stranice (opcionalno)" + +#: includes/common/payment-gateways/eway.php:417 +#: includes/common/payment-gateways/eway.php:422 +msgid "This value is used to populate the browsers title bar at the top of the screen." +msgstr "Ova vrijednost se koristi za popunjavanje naslovne trake preglednika na vrhu ekrana." + +#: includes/common/payment-gateways/eway.php:416 +msgid "Page Title (optional)" +msgstr "Naslov stranice (opcionalno)" + +#: includes/common/payment-gateways/eway.php:412 +msgid "This will be displayed as the company the customer is purchasing from, including this is highly recommended." +msgstr "Ovo će biti prikazano kao tvrtka od koje kupac kupuje, uključivanje ovog je vrlo preporučljivo." + +#: includes/common/payment-gateways/eway.php:411 +msgid "Company Name" +msgstr "Ime tvrtke" + +#: includes/common/payment-gateways/eway.php:394 +msgid "Customer ID" +msgstr "Customer ID" + +#: includes/common/payment-gateways/eway.php:381 +#: includes/common/payment-gateways/eway31.php:488 +msgid "Live API Credentials" +msgstr "Live API podaci" + +#: includes/common/payment-gateways/eway.php:371 +#: includes/common/payment-gateways/eway31.php:479 +msgid "Gateway Mode" +msgstr "Gateway Mod" + +#: includes/common/payment-gateways/eway.php:354 +msgid "The Hosted Page is a webpage hosted on eWAY's side eliminating the need for merchants to capture, transmit or store credit card numbers. At the checkout time the merchant automatically redirects the customer to the Hosted Page where they would enter their details and have the transaction processed. Upon completion of the transaction the customer is redirected back to the MarketPress checkout confirmation page." +msgstr "Hosted Page je web stranica smještena na eWAYovim serverima, eliminirajući potrebu trgovca da prate, prenose ili spremaju brojeve kreditnih kartica. Za vrijeme naplate trgovac automatski preusmjerava kupca na Hosted Page gdje oni upisuju detalje i transakcija se obrađuje. Po završetku transakcije kupac se preusmjerava nazad na MarketPress stranicu o potvrdi uplate." + +#: includes/common/payment-gateways/eway.php:314 +msgid "There was a problem with your credit card information: %s" +msgstr "Došlo je do problema s informacijama vaše kreditne kartice: %s" + +#: includes/common/payment-gateways/eway.php:300 +msgid "Paid - The card has been processed - %s" +msgstr "Plaćeno - kartica obrađena - %s" + +#: includes/common/payment-gateways/eway.php:253 +msgid "There was a problem setting up the transaction with eWay: %s" +msgstr "Došlo je do problema pri uspostavljanju transakcije s eWayom: %s" + +#: includes/common/payment-gateways/eway.php:245 +#: includes/common/payment-gateways/eway.php:289 +msgid "There was a problem parsing the response from eWay. Please try again." +msgstr "Došlo je do do problema prilikom analize odgovora od eWaya. Molimo pokušajte ponovno." + +#: includes/common/payment-gateways/_ideal.php:159 +#: includes/common/payment-gateways/eway.php:189 +#: includes/common/payment-gateways/paypal-chained-payments.php:634 +#: includes/common/payment-gateways/paypal-express.php:322 +#: includes/common/payment-gateways/paypal-express.php:473 +msgid "%s Store Purchase - Order ID: %s" +msgstr "%s kupnja u trgovini - Order ID: %s" + +#: includes/common/payment-gateways/eway.php:147 +#: includes/common/payment-gateways/eway.php:462 +msgid "eWay Shared Payments" +msgstr "eWay Shared Payments" + +#: includes/common/payment-gateways/_cubepoints.php:214 +msgid "This is the email text to send to those who have made CubePoints checkouts. You should include your CubePoints instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "Ovo je tekst emaila za slanje onima koji su kupovali preko CubePointsa. Ovdje unesite svoje CubePoints upute. Nadjačava zadane postavke emaila potvrde uplate. Ovi kodovi će biti zamijenjeni s detaljima narudžbe: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. HTML nije dozvoljen." + +#: includes/common/payment-gateways/_cubepoints.php:212 +#: includes/common/payment-gateways/free_orders.php:188 +#: includes/common/payment-gateways/manual-payments.php:154 +msgid "Order Confirmation Email" +msgstr "Email potvrde narudžbe" + +#: includes/common/payment-gateways/_cubepoints.php:207 +#: includes/common/payment-gateways/manual-payments.php:149 +msgid "Confirmation User Instructions" +msgstr "Potvrda uputa za korisnike" + +#: includes/common/payment-gateways/_cubepoints.php:202 +#: includes/common/payment-gateways/manual-payments.php:144 +msgid "User Instructions" +msgstr "Upute za korisnike" + +#: includes/common/payment-gateways/_cubepoints.php:198 +#: includes/common/payment-gateways/free_orders.php:170 +#: includes/common/payment-gateways/manual-payments.php:139 +msgid "Enter a public name for this payment method that is displayed to users - No HTML" +msgstr "Unesite javno ime za ovaj način plačanja koje se prkazuje korisnicima - bez HTML-a" + +#: includes/admin/class-mp-orders-admin.php:532 +#: includes/common/payment-gateways/_cubepoints.php:196 +#: includes/common/payment-gateways/free_orders.php:169 +#: includes/common/payment-gateways/manual-payments.php:138 +msgid "Method Name" +msgstr "Naziv metode" + +#: includes/common/payment-gateways/_cubepoints.php:187 +msgid "Accept CubePoints as payment(requires the CubePoints plugin)." +msgstr "Prihvati CubePoints kao uplatu(potreban je CubePoints dodatak)." + +#: includes/common/payment-gateways/_cubepoints.php:140 +msgid "Sorry, but you do not appear to have enough points to complete this purchase!" +msgstr "Žao nam je, ali čini se da nemate dovoljno bodova za završetak ove kupovine!" + +#: includes/common/payment-gateways/_cubepoints.php:124 +msgid "%s Store Purchase" +msgstr "%s kupnja u trgovini" + +#: includes/common/payment-gateways/_cubepoints.php:79 +#: includes/common/payment-gateways/_cubepoints.php:171 +msgid "Your current points: " +msgstr "Vaš trenutni broj bodova:" + +#: includes/common/payment-gateways/_cubepoints.php:133 +#: includes/common/payment-gateways/_cubepoints.php:197 +msgid "CubePoints" +msgstr "CubePoints" + +#: includes/common/payment-gateways/authorizenet-aim.php:344 +msgid "Authorize.net AIM Checkout" +msgstr "Authorize.net AIM Naplata" + +#: includes/common/payment-gateways/authorizenet-aim.php:331 +msgid "Custom API URL" +msgstr "Prilagođeni API URL" + +#: includes/common/payment-gateways/authorizenet-aim.php:332 +msgid "Many other gateways have Authorize.net API emulators. To use one of these gateways input their API post url here." +msgstr "Mnogo drugih gatewaya imaju Authorine.net API emulatore. Da biste koristili jedan od tih gatewaya upišite njihov API post url ovdje." + +#: includes/common/payment-gateways/authorizenet-aim.php:322 +msgid "Request a delimited response from the payment gateway." +msgstr "Zatraži ograničeni odgovor od gatewaya za plaćanje." + +#: includes/common/payment-gateways/authorizenet-aim.php:316 +msgid "Security: MD5 Hash" +msgstr "Sigurnost: MD5 Hash" + +#: includes/common/payment-gateways/authorizenet-aim.php:317 +msgid "The payment gateway generated MD5 hash value that can be used to authenticate the transaction response. Not needed because responses are returned using an SSL connection." +msgstr "Gateway za plaćanje stvorio je MD5 hash vrijednost koja može biti korištena za provjeru autentičnosti odgovora transakcije. Nije potrebno jer odgovori su vraćeni korištenjem SSL konekcije." + +#: includes/common/payment-gateways/authorizenet-aim.php:306 +msgid "Customer Receipt Email Footer" +msgstr "Podnožje email računa korisnika" + +#: includes/common/payment-gateways/authorizenet-aim.php:296 +msgid "Customer Receipt Email Header" +msgstr "Zaglavlje emaila računa korisnika" + +#: includes/common/payment-gateways/authorizenet-aim.php:297 +#: includes/common/payment-gateways/paypal-payflow.php:446 +msgid "This text will appear as the header of the email receipt sent to the customer." +msgstr "Ovaj tekst će se pojaviti kao zaglavlje email računa poslanog korisniku." + +#: includes/common/payment-gateways/authorizenet-aim.php:282 +msgid "Encapsulation Character" +msgstr "Znak za inkapsuliranje" + +#: includes/common/payment-gateways/authorizenet-aim.php:283 +msgid "Authorize.net default is blank. Otherwise, get this from your credit card processor. If the transactions are going through, but getting strange responses, this character is most likely wrong." +msgstr "Authorize.net po zadanim postavkama je prazno. Inale, zatražite ovo od izdavatelja kreditne kartice. Ako transakcije prolaze, ali dobivate čudne odgovore, najvjerojatnije je ovaj znak krivo upisan." + +#: includes/common/payment-gateways/authorizenet-aim.php:273 +msgid "Optional settings to control advanced options" +msgstr "Opcionalne postavke za kontrolu naprednih opcija" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:224 +#: includes/common/payment-gateways/authorizenet-aim.php:272 +msgid "Advanced Settings" +msgstr "Napredne postavke" + +#: includes/common/payment-gateways/authorizenet-aim.php:253 +msgid "Transaction Key" +msgstr "Transaction Key" + +#: includes/common/payment-gateways/authorizenet-aim.php:246 +msgid "Login ID" +msgstr "Login ID" + +#: includes/common/payment-gateways/paypal-payflow.php:396 +msgid "Gateway Credentials" +msgstr "Gateway Podaci" + +#: includes/common/payment-gateways/authorizenet-aim.php:221 +msgid "Authorize.net AIM is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway. USD is the only currency supported by this gateway." +msgstr "Authorize.net AIM je prilagodljivo rješenje za plaćanje koje daje trgovcu kontrolu nad svim koracima pri provođenju dransakcije. SSL certifikat je potreban za korištenje ovog gatewaya. USD je jedina valuta podržana." + +#: includes/common/payment-gateways/authorizenet-aim.php:205 +msgid "There was a problem finalizing your purchase. %s Please go back and try again." +msgstr "Došlo je do problema pri finaliziranju vaše kupnje. %s Molimo vratite se i pokušajte ponovno." + +#: includes/common/payment-gateways/payfast.php:519 +#: includes/common/payment-gateways/paypal-chained-payments.php:218 +#: includes/common/payment-gateways/paypal-chained-payments.php:498 +#: includes/common/payment-gateways/paypal-express.php:822 +#: includes/common/payment-gateways/paypal-express.php:1092 +msgid "The payment has been completed, and the funds have been added successfully to your account balance." +msgstr "Uplata je izvršena i sredstva su uspješno dodana na saldo vašeg računa." + +#: includes/common/payment-gateways/paypal-payflow.php:233 +msgid "Please enter a valid credit card security code" +msgstr "Molimo unesite važeći sigurnosni kod kreditne kartice " + +#: includes/common/payment-gateways/paypal-payflow.php:224 +#: includes/public/class-mp-checkout.php:867 +msgid "Please enter a valid credit card number" +msgstr "Molimo unesite važeći broj kreditne kartice " + +#: includes/common/payment-gateways/paypal-payflow.php:221 +msgid "Please enter your credit card number" +msgstr "Molimo unesite broj vaše kreditne kartice " + +#: includes/common/payment-gateways/paypal-payflow.php:217 +msgid "Please enter your credit card security code" +msgstr "Molimo unesite sigurnosni kod vaše kreditne kartice " + +#: includes/common/payment-gateways/paypal-payflow.php:213 +msgid "Please select your credit card expiration date." +msgstr "Molimo odaberite datum isteka vaše kreditne kartice." + +#: includes/common/payment-gateways/2checkout.php:299 +#: includes/common/payment-gateways/authorizenet-aim.php:50 +#: includes/common/payment-gateways/eway.php:148 +#: includes/common/payment-gateways/eway.php:298 +#: includes/common/payment-gateways/eway31.php:267 +#: includes/common/payment-gateways/paymill.php:46 +#: includes/common/payment-gateways/paypal-express.php:972 +#: includes/common/payment-gateways/paypal-payflow.php:60 +#: includes/common/payment-gateways/pin.php:46 +#: includes/common/payment-gateways/simplify.php:19 +#: includes/common/payment-gateways/stripe.php:46 +#: includes/common/payment-gateways/wepay.php:37 +msgid "Credit Card" +msgstr "Kreditna kartica" + +#: includes/common/payment-gateways/authorizenet-aim.php:49 +msgid "Authorize.net Checkout" +msgstr "Authorize.net naplata" + +#: includes/common/payment-gateways/skrill.php:156 +#: includes/common/payment-gateways/stripe.php:293 +msgid "Selecting a currency other than that used for your store may cause problems at checkout." +msgstr "Odabir valute drugačije od one koje koristite u vašoj trgovini može uzrokovati probleme prilikom naplate." + +#: includes/common/payment-gateways/2checkout.php:352 +msgid "Seller ID" +msgstr "Seller ID" + +#: includes/common/payment-gateways/2checkout.php:340 +#: includes/common/payment-gateways/_ideal.php:311 +#: includes/common/payment-gateways/authorizenet-aim.php:234 +#: includes/common/payment-gateways/eway.php:376 +#: includes/common/payment-gateways/payfast.php:315 +#: includes/common/payment-gateways/paypal-chained-payments.php:368 +#: includes/common/payment-gateways/paypal-express.php:699 +#: includes/common/payment-gateways/paypal-payflow.php:391 +msgid "Live" +msgstr "Live" + +#: includes/common/payment-gateways/2checkout.php:339 +#: includes/common/payment-gateways/authorizenet-aim.php:233 +#: includes/common/payment-gateways/eway.php:375 +#: includes/common/payment-gateways/paypal-chained-payments.php:367 +#: includes/common/payment-gateways/paypal-express.php:698 +#: includes/common/payment-gateways/paypal-payflow.php:390 +#: includes/common/shipping-modules/mp-fedex.php:263 +msgid "Sandbox" +msgstr "Sandbox" + +#: includes/common/payment-gateways/2checkout.php:336 +#: includes/common/payment-gateways/_ideal.php:307 +#: includes/common/payment-gateways/authorizenet-aim.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:365 +#: includes/common/payment-gateways/paypal-express.php:695 +#: includes/common/payment-gateways/paypal-payflow.php:387 +#: includes/common/payment-gateways/wepay.php:130 +#: includes/common/shipping-modules/mp-fedex.php:260 +msgid "Mode" +msgstr "Mod" + +#: includes/common/payment-gateways/2checkout.php:288 +#: includes/common/payment-gateways/mijireh.php:242 +#: includes/common/payment-gateways/mollie.php:212 +msgid "The order has been received" +msgstr "Narudžba je zaprimljena" + +#: includes/common/payment-gateways/2checkout.php:74 +#: includes/common/payment-gateways/2checkout.php:75 +#: includes/common/payment-gateways/2checkout.php:435 +msgid "2Checkout" +msgstr "2Checkout" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:306 +msgid "Confirm" +msgstr "Potvrda" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:218 +#: includes/common/class-mp-cart.php:974 includes/common/class-mp-cart.php:1354 +#: includes/common/template-functions.php:918 +msgid "Checkout" +msgstr "Naplata" + +#: includes/common/template-functions.php:207 +msgid "Check Order Status" +msgstr "Provjeri status narudžbe" + +#: includes/common/template-functions.php:235 +msgid "View Products" +msgstr "Pogledaj Proizvode" + +#: includes/common/template-functions.php:263 +msgid "Visit Store" +msgstr "Posjeti Trgovinu" + +#: includes/common/template-functions.php:2912 +#: includes/multisite/template-functions.php:448 +msgid "Order By" +msgstr "Poredaj po" + +#: includes/common/template-functions.php:2887 +#: includes/multisite/template-functions.php:405 +msgid "Price (High to Low)" +msgstr "Cijena (Najveća do Najniža)" + +#: includes/common/template-functions.php:2886 +#: includes/multisite/template-functions.php:404 +msgid "Price (Low to High)" +msgstr "Cijena (Najniža do Najviša)" + +#: includes/common/template-functions.php:2881 +#: includes/multisite/template-functions.php:399 +msgid "Default" +msgstr "Zadano" + +#: includes/common/template-functions.php:2858 +msgid "Show All" +msgstr "Pokaži sve" + +#: includes/common/class-mp-product.php:2048 +msgid "View Larger Image »" +msgstr "Pogledaj veću sliku »" + +#: includes/common/class-mp-product.php:979 +msgid "Out of Stock" +msgstr "Rasprodano" + +#: includes/common/template-functions.php:148 +msgid "Price: " +msgstr "Cijena: " + +#: includes/multisite/template-functions.php:833 +msgid "No Tags" +msgstr "Nema oznaka" + +#: includes/common/template-functions.php:3162 +msgid "Uncategorized" +msgstr "Nekategorizirano" + +#: includes/common/class-mp-cart.php:569 includes/common/class-mp-order.php:604 +#: includes/common/helpers.php:115 +msgid "Download" +msgstr "Preuzmi" + +#: includes/common/class-mp-cart.php:1353 +msgid "Empty Cart" +msgstr "Isprazni Košaricu" + +#: includes/common/payment-gateways/_payway.php:291 +#: includes/common/payment-gateways/paypal-express.php:718 +#: includes/common/payment-gateways/paypal-payflow.php:423 +#: includes/common/shipping-modules/mp-ups.php:158 +#: includes/public/class-mp-checkout.php:1254 +#: includes/public/class-mp-checkout.php:1383 +msgid "Password" +msgstr "Zaporka" + +#: includes/common/payment-gateways/eway.php:387 +#: includes/common/payment-gateways/paypal-express.php:711 +#: includes/common/shipping-modules/mp-usps.php:185 +#: includes/public/class-mp-checkout.php:1249 +msgid "Username" +msgstr "Korisničko ime" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:437 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:790 +msgid "Have a coupon code?" +msgstr "Imate kupon?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:321 +#: includes/admin/class-mp-orders-admin.php:526 +#: includes/common/class-mp-cart.php:592 +msgid "Remove" +msgstr "Obriši" + +#: includes/admin/class-mp-ajax.php:316 +msgid "Quantity:" +msgstr "Količina:" + +#: includes/admin/class-mp-products-admin.php:2140 +#: includes/admin/class-mp-products-admin.php:2387 +#: includes/common/shipping-modules/class-mp-shipping-api.php:507 +msgid "Extra Shipping Cost" +msgstr "Dodatni trošak dostave" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:403 +msgid "Choose a Shipping Method:" +msgstr "Odaberite metodu dostave:" + +#: includes/admin/class-mp-products-admin.php:1691 +#: includes/admin/class-mp-products-admin.php:2131 +#: includes/admin/class-mp-products-admin.php:2378 +#: includes/common/shipping-modules/class-mp-shipping-api.php:228 +msgid "Ounces" +msgstr "Grama" + +#: includes/admin/class-mp-products-admin.php:1684 +#: includes/admin/class-mp-products-admin.php:2123 +#: includes/admin/class-mp-products-admin.php:2369 +#: includes/admin/class-mp-setup-wizard.php:546 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:165 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +#: includes/common/shipping-modules/class-mp-shipping-api.php:227 +msgid "Pounds" +msgstr "Pounds (mjerna jedinica težine)" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:226 +msgid "Product Weight:" +msgstr "Težina proizvoda:" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:214 +msgid "Weight (Kilograms)" +msgstr "Težina (kilogrami)" + +#: includes/admin/widgets/ms-global-categories.php:82 +msgid "Number of Categories:" +msgstr "Broj kategorija:" + +#: includes/admin/widgets/ms-global-categories.php:72 +msgid "Product Count" +msgstr "Broj proizvoda" + +#: includes/addons/class-mp-addons-list-table.php:20 +#: includes/admin/class-mp-product-attributes-admin.php:129 +#: includes/admin/class-mp-product-attributes-list-table.php:22 +#: includes/admin/class-mp-products-admin.php:2216 +#: includes/admin/class-mp-shortcode-builder.php:628 +#: includes/admin/class-mp-shortcode-builder.php:1415 +#: includes/admin/widgets/ms-global-categories.php:70 +#: includes/common/shipping-modules/mp-fedex.php:395 +#: includes/common/shipping-modules/mp-ups.php:202 +#: includes/common/shipping-modules/mp-usps.php:243 +#: includes/public/class-mp-checkout.php:314 +msgid "Name" +msgstr "Ime" + +#: includes/admin/widgets/ms-global-categories.php:67 +msgid "Order Categories By:" +msgstr "Poredaj kategorije po:" + +#: includes/admin/widgets/ms-global-categories.php:24 +#: includes/admin/widgets/ms-global-categories.php:50 +msgid "Global Product Categories" +msgstr "Globalne kategorije proizvoda" + +#: includes/admin/widgets/ms-global-categories.php:15 +msgid "Global Product Category List" +msgstr "Globalni popis kategorija proizvoda" + +#: includes/admin/widgets/ms-global-categories.php:13 +msgid "Displays a network-wide HTML list of product categories from network MarketPress stores." +msgstr "Prikazuje HTML listu kategorija proizvoda iz vaše MarketPress mreže trgovina." + +#: includes/admin/widgets/ms-global-tag-cloud.php:24 +#: includes/admin/widgets/ms-global-tag-cloud.php:45 +msgid "Global Product Tags" +msgstr "Globalne oznake proizvoda" + +#: includes/admin/widgets/ms-global-tag-cloud.php:15 +msgid "Global Product Tag Cloud" +msgstr "Globalni oblak oznaka proizvoda" + +#: includes/admin/class-mp-shortcode-builder.php:947 +#: includes/admin/widgets/ms-global-product-list.php:173 +msgid "Excerpt" +msgstr "Izvadak" + +#: includes/admin/widgets/ms-global-product-list.php:169 +msgid "Content To Show:" +msgstr "Sadržaj za prikazati:" + +#: includes/admin/widgets/ms-global-product-list.php:140 +msgid "Limit To Product Tag:" +msgstr "Limitiraj na oznaku proizvoda:" + +#: includes/admin/widgets/ms-global-product-list.php:132 +msgid "Limit To Product Category:" +msgstr "Limitiraj na kategoriju proizvoda:" + +#: includes/admin/widgets/ms-global-product-list.php:72 +msgid "Global Products" +msgstr "Globalni proizvodi" + +#: includes/admin/widgets/ms-global-product-list.php:16 +msgid "Global Product List" +msgstr "Globalni popis proizvoda" + +#: includes/admin/widgets/ms-global-product-list.php:14 +msgid "Shows a customizable global list of products from network MarketPress stores." +msgstr "Prikazuje prilagodljivi globalni popis proizvoda iz trgovina MarketPress mreže." + +#: includes/common/class-mp-product.php:974 +#: includes/multisite/template-functions.php:731 +msgid "Buy Now »" +msgstr "Kupi odmah »" + +#: includes/admin/widgets/ms-global-tag-cloud.php:13 +msgid "Displays global most used product tags in cloud format from network MarketPress stores." +msgstr "Prikazuje najkorištenije oznake proizvoda u formatu oblaka iz mrežnih MarketPress trgovina." + +#: includes/multisite/class-mp-admin-multisite.php:438 +msgid "Theme Permissions" +msgstr "Dozvole teme" + +#: includes/multisite/class-mp-admin-multisite.php:402 +#: includes/multisite/class-mp-admin-multisite.php:448 +msgid "No Access" +msgstr "Bez pristupa" + +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:120 +msgid "Pro Site Level" +msgstr "Pro Site nivo" + +#: includes/multisite/class-mp-admin-multisite.php:401 +#: includes/multisite/class-mp-admin-multisite.php:447 +msgid "All Can Use" +msgstr "Svi mogu vidjeti" + +#: includes/multisite/class-mp-admin-multisite.php:390 +msgid "Gateway Permissions" +msgstr "Gateway dozvole" + +#: includes/multisite/class-mp-admin-multisite.php:375 +msgid "Select a Gateway" +msgstr "Odaberi gateway" + +#: includes/multisite/class-mp-admin-multisite.php:350 +msgid "Global Gateway" +msgstr "Globalni Gateway" + +#. Plugin Name of the plugin/theme +msgid "MarketPress" +msgstr "MarketPress" + +#: includes/admin/widgets/product-tag-cloud.php:7 +msgid "Your most used product tags in cloud format from your MarketPress store." +msgstr "Najkorištenije oznake proizvoda u formatu oblaka iz vaše MarketPress trgovine." + +#: includes/admin/widgets/categories.php:79 +msgid "Show hierarchy" +msgstr "Pokaži hijerarhiju" + +#: includes/admin/widgets/categories.php:76 +#: includes/admin/widgets/ms-global-categories.php:92 +msgid "Show product counts" +msgstr "Prikaži broj proizvoda" + +#: includes/admin/widgets/categories.php:73 +msgid "Show as dropdown" +msgstr "Pokaži kao padajući izbornik" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:710 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:736 +#: includes/admin/widgets/categories.php:30 +msgid "Select Category" +msgstr "Odaberi kategoriju" + +#: includes/admin/widgets/categories.php:7 +msgid "A list or dropdown of product categories from your MarketPress store." +msgstr "Popis ili padajući izbornik kategorija proizvoda iz vaše MarketPress trgovine." + +#: includes/admin/widgets/product-list.php:250 +msgid "Show Buy Button" +msgstr "Pokaži Kupi gumb" + +#: includes/admin/widgets/ms-global-product-list.php:183 +#: includes/admin/widgets/product-list.php:244 +msgid "Show Price" +msgstr "Pokaži cijenu" + +#: includes/admin/widgets/product-list.php:241 +msgid "Show Excerpt" +msgstr "Pokaži izvadak" + +#: includes/admin/widgets/ms-global-product-list.php:155 +#: includes/admin/widgets/product-list.php:238 +msgid "Thumbnail Size:" +msgstr "Veličina minijature:" + +#: includes/admin/widgets/ms-global-product-list.php:153 +#: includes/admin/widgets/product-list.php:237 +msgid "Show Thumbnail" +msgstr "Pokaži minijaturu" + +#: includes/admin/widgets/ms-global-product-list.php:147 +#: includes/admin/widgets/product-list.php:233 +msgid "Display Settings" +msgstr "Postavke prikaza" + +#: includes/admin/widgets/ms-global-product-list.php:136 +#: includes/admin/widgets/ms-global-product-list.php:144 +#: includes/admin/widgets/product-list.php:230 +msgid "Enter the Slug" +msgstr "Upiši slug" + +#: includes/admin/widgets/product-list.php:228 +#: includes/common/template-functions.php:894 +msgid "Tag" +msgstr "Oznaka" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:686 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:712 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:739 +#: includes/admin/class-mp-shortcode-builder.php:796 +#: includes/admin/widgets/product-list.php:227 +#: includes/common/template-functions.php:886 +#: includes/common/template-functions.php:2907 +msgid "Category" +msgstr "Kategorija" + +#: includes/admin/widgets/product-list.php:226 +msgid "No Filter" +msgstr "Nema filtera" + +#: includes/admin/widgets/product-list.php:224 +msgid "Taxonomy Filter:" +msgstr "Filter taksonomija:" + +#: includes/admin/widgets/ms-global-product-list.php:108 +#: includes/admin/widgets/product-list.php:209 +msgid "Order Products By:" +msgstr "Poredaj proizvode po:" + +#: includes/admin/widgets/ms-global-product-list.php:101 +#: includes/admin/widgets/product-list.php:206 +msgid "Number of Products:" +msgstr "Broj proizvoda:" + +#: includes/admin/widgets/ms-global-product-list.php:98 +#: includes/admin/widgets/product-list.php:204 +msgid "List Settings" +msgstr "Postavke popisa" + +#: includes/admin/widgets/product-list.php:177 +msgid "Our Products" +msgstr "Naši proizvodi" + +#: includes/admin/widgets/product-list.php:144 +#: includes/common/template-functions.php:2070 +#: includes/common/template-functions.php:2347 +#: includes/multisite/template-functions.php:303 +#: includes/multisite/template-functions.php:623 +msgid "No Products" +msgstr "Nema proizvoda" + +#: includes/admin/widgets/product-list.php:8 +msgid "Product List" +msgstr "Popis proizvoda" + +#: includes/admin/widgets/product-list.php:7 +msgid "Shows a customizable list of products from your MarketPress store." +msgstr "Pokazuje izmjenjiv popis proizvoda iz vaše MarketPress trgovine." + +#: includes/admin/widgets/cart.php:75 includes/admin/widgets/categories.php:82 +#: includes/admin/widgets/product-list.php:253 +#: includes/admin/widgets/product-tag-cloud.php:57 +msgid "Only show on store pages" +msgstr "Pokaži samo na stranicama trgovine" + +#: includes/admin/widgets/cart.php:65 +#: includes/admin/widgets/ms-global-product-list.php:92 +#: includes/admin/widgets/product-list.php:200 +msgid "Custom Text:" +msgstr "Prilagođeni tekst:" + +#: includes/admin/widgets/cart.php:64 includes/admin/widgets/categories.php:69 +#: includes/admin/widgets/ms-global-categories.php:59 +#: includes/admin/widgets/ms-global-product-list.php:87 +#: includes/admin/widgets/ms-global-tag-cloud.php:49 +#: includes/admin/widgets/product-list.php:199 +#: includes/admin/widgets/product-tag-cloud.php:49 +msgid "Title:" +msgstr "Naslov:" + +#: includes/admin/widgets/cart.php:7 +msgid "Shows dynamic shopping cart contents along with a checkout button for your MarketPress store." +msgstr "Pokazuje dinamični sadržaj košarice uz Naplati gumb za vašu MarketPress trgovinu." + +#: includes/admin/widgets/product-tag-cloud.php:8 +msgid "Product Tag Cloud" +msgstr "Oblak oznaka proizvoda" + +#: includes/admin/class-mp-setup-wizard.php:539 +#: includes/admin/class-mp-setup-wizard.php:575 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:163 +msgid "Measurement System" +msgstr "Sustav mjerenja" + +#: includes/admin/class-mp-setup-wizard.php:616 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:149 +msgid "Select Shipping Options" +msgstr "Izaberi opcije dostave" + +#: includes/admin/class-mp-setup-wizard.php:596 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:129 +msgid "Calculated Options" +msgstr "Kalkulirane opcije" + +#: includes/admin/class-mp-setup-wizard.php:582 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:115 +msgid "No Shipping" +msgstr "Bez dostave" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:110 +msgid "EU" +msgstr "EU" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:109 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:93 +msgid "All" +msgstr "Sve" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:92 +msgid "Select:" +msgstr "Izaberi:" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:185 +msgid "Store Pages" +msgstr "Stranice trgovine" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:223 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:256 +msgid "Order Shipped" +msgstr "Narudžba poslana" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:60 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:95 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:128 +#: marketpress.php:266 +msgid "New Order" +msgstr "Nova narudžba" + +#: includes/admin/class-mp-dashboard-widgets.php:314 +msgid "Email Notifications" +msgstr "Email obavijesti" + +#: includes/admin/class-mp-pages-admin.php:59 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:200 +msgid "Products List" +msgstr "Popis proizvoda" + +#: includes/admin/class-mp-pages-admin.php:58 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:190 +msgid "Store Base" +msgstr "Baza trgovine" + +#: includes/admin/class-mp-product-attributes-admin.php:108 +#: includes/admin/class-mp-shortcode-builder.php:635 +#: includes/admin/class-mp-shortcode-builder.php:708 +#: includes/admin/class-mp-shortcode-builder.php:875 +#: includes/admin/class-mp-shortcode-builder.php:1319 +#: includes/admin/class-mp-shortcode-builder.php:1422 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:526 +#: includes/admin/widgets/ms-global-categories.php:78 +#: includes/admin/widgets/ms-global-product-list.php:127 +#: includes/admin/widgets/product-list.php:221 +msgid "Ascending" +msgstr "Uzlazno" + +#: includes/admin/class-mp-product-attributes-admin.php:109 +#: includes/admin/class-mp-shortcode-builder.php:636 +#: includes/admin/class-mp-shortcode-builder.php:709 +#: includes/admin/class-mp-shortcode-builder.php:876 +#: includes/admin/class-mp-shortcode-builder.php:1320 +#: includes/admin/class-mp-shortcode-builder.php:1423 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:525 +#: includes/admin/widgets/ms-global-categories.php:75 +#: includes/admin/widgets/ms-global-product-list.php:124 +#: includes/admin/widgets/product-list.php:220 +msgid "Descending" +msgstr "Silazno" + +#: includes/admin/class-mp-shortcode-builder.php:637 +#: includes/admin/class-mp-shortcode-builder.php:695 +#: includes/admin/class-mp-shortcode-builder.php:862 +#: includes/admin/class-mp-shortcode-builder.php:1306 +#: includes/admin/class-mp-shortcode-builder.php:1424 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:518 +#: includes/admin/widgets/ms-global-product-list.php:121 +#: includes/admin/widgets/product-list.php:218 +msgid "Random" +msgstr "Nasumično" + +#: includes/admin/class-mp-shortcode-builder.php:694 +#: includes/admin/class-mp-shortcode-builder.php:861 +#: includes/admin/class-mp-shortcode-builder.php:1305 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:517 +#: includes/admin/widgets/ms-global-product-list.php:119 +#: includes/admin/widgets/product-list.php:216 +msgid "Product Price" +msgstr "Cijena proizvoda" + +#: includes/admin/class-mp-shortcode-builder.php:693 +#: includes/admin/class-mp-shortcode-builder.php:860 +#: includes/admin/class-mp-shortcode-builder.php:1304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:516 +#: includes/admin/widgets/ms-global-product-list.php:117 +#: includes/admin/widgets/product-list.php:215 +msgid "Number of Sales" +msgstr "Broj prodaja" + +#: includes/admin/class-mp-shortcode-builder.php:692 +#: includes/admin/class-mp-shortcode-builder.php:859 +#: includes/admin/class-mp-shortcode-builder.php:1303 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:515 +#: includes/admin/widgets/product-list.php:214 +msgid "Product Author" +msgstr "Autor proizvoda" + +#: includes/admin/class-mp-shortcode-builder.php:691 +#: includes/admin/class-mp-shortcode-builder.php:858 +#: includes/admin/class-mp-shortcode-builder.php:1302 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:514 +#: includes/admin/widgets/product-list.php:213 +msgid "Product ID" +msgstr "ID proizvoda" + +#: includes/admin/class-mp-shortcode-builder.php:690 +#: includes/admin/class-mp-shortcode-builder.php:857 +#: includes/admin/class-mp-shortcode-builder.php:1301 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:513 +#: includes/admin/widgets/ms-global-product-list.php:113 +#: includes/admin/widgets/product-list.php:212 +msgid "Publish Date" +msgstr "Datum objavljivanja" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:430 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:726 +msgid "Width" +msgstr "Širina" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:439 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:735 +msgid "Height" +msgstr "Visina" + +#: includes/admin/class-mp-product-attributes-admin.php:88 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:402 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:698 +msgid "Custom" +msgstr "Prilagođeno" + +#: includes/common/class-mp-product.php:179 +#: includes/common/class-mp-product.php:992 +#: includes/common/class-mp-product.php:1000 +#: includes/multisite/template-functions.php:579 +msgid "Buy Now" +msgstr "Kupi odmah" + +#: includes/common/class-mp-product.php:175 +#: includes/common/class-mp-product.php:990 +#: includes/common/class-mp-product.php:998 +msgid "Add To Cart" +msgstr "Dodaj u košaricu" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:807 +msgid "Store Style" +msgstr "Stil trgovine" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1021 +msgid "Edit Coupon" +msgstr "Uredi kupon" + +#: includes/addons/mp-coupons/class-mp-coupon.php:580 +#: includes/admin/class-mp-ajax.php:238 +#: includes/admin/class-mp-products-admin.php:1532 +msgid "Unlimited" +msgstr "Neograničeno" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1198 +msgid "Remaining Uses" +msgstr "Preostalih korištenja" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1197 +msgid "Used" +msgstr "Korišteno" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:752 +#: includes/admin/class-mp-products-admin.php:2343 +msgid "Start Date" +msgstr "Datum početka" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:598 +msgid "Coupon Code" +msgstr "Kod kupona" + +#: includes/admin/class-mp-orders-admin.php:444 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:284 +msgid "Save Changes" +msgstr "Spremi promjene" + +#: includes/admin/class-mp-pages-admin.php:57 +#: includes/admin/class-mp-shortcode-builder.php:716 +#: includes/admin/class-mp-shortcode-builder.php:727 +#: includes/admin/class-mp-shortcode-builder.php:883 +#: includes/admin/class-mp-shortcode-builder.php:894 +#: includes/admin/class-mp-shortcode-builder.php:946 +#: includes/admin/class-mp-shortcode-builder.php:956 +#: includes/admin/class-mp-shortcode-builder.php:1006 +#: includes/admin/class-mp-shortcode-builder.php:1327 +#: includes/admin/class-mp-shortcode-builder.php:1338 +#: includes/admin/store-settings/class-mp-store-settings-general.php:357 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:270 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:108 +#: includes/admin/widgets/ms-global-product-list.php:172 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:94 +msgid "None" +msgstr "Ništa" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:352 +msgid "Google Analytics Ecommerce Tracking" +msgstr "Google Analytics Ecommerce Tracking" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:310 +msgid "This option turns MarketPress into more of a product listing plugin, disabling shopping carts, checkout, and order management. This is useful if you simply want to list items you can buy in a store somewhere else, optionally linking the \"Buy Now\" buttons to an external site. Some examples are a car dealership, or linking to songs/albums in itunes, or linking to products on another site with your own affiliate links." +msgstr "Ova opcija pretvara MarketPress u dodatak više sličan popisu proizvoda, onemogućuje košarice, naplatu i upravljanje narudžbama. To je korisno ako želite jednostavan popis stavki koje se mogu kupiti u trgovini negdje drugdje, po želji povezujući \"Kupi sada\" gumbe na vanjsku stranicu. Neki od primjera su automobilske prodavaonice ili povezivanje albuma/pjesama na iTunesu ili povezivanje proizvoda sa drugih stranica preko vlastitith affiliate poveznica." + +#: includes/admin/store-settings/class-mp-store-settings-general.php:304 +msgid "Whether or not customers must be registered and logged in to checkout. (Not recommended: Enabling this can lower conversions)" +msgstr "Moraju li ili ne moraju kupci biti registrirani i prijavljeni kako bi kupovali. (Ne preporučuje se: Omogućavanje ove opcije može smanjiti pretvorbe iz korisnika u kupce)" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:258 +msgid "How many times may a customer download a file they have purchased? (It's best to set this higher than one in case they have any problems downloading)" +msgstr "Koliko puta kupac može preuzeti datoteku koju su kupili? (Najbolje je postaviti ovo više od 1 u slučaju problema pri preuzimanju)" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:257 +msgid "Maximum Downloads" +msgstr "Maksimalan broj preuzimanja" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:298 +msgid "This will set the product to draft if inventory of all variations is gone." +msgstr "Ovo će postaviti proizvod kao skicu ako su zalihe svih varijacija potrošene." + +#: includes/admin/store-settings/class-mp-store-settings-general.php:288 +msgid "At what low stock count do you want to be warned for products you have enabled inventory tracking for?" +msgstr "Pri kojem broju niskih zaliha želite biti upozoreni za proizvode za koje ste omogućili praćenje zaliha?" + +#: includes/admin/class-mp-dashboard-widgets.php:208 +#: includes/admin/store-settings/class-mp-store-settings-general.php:287 +msgid "Inventory Warning Threshold" +msgstr "Upozorenje praga zaliha" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:282 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:542 +msgid "Miscellaneous Settings" +msgstr "Razne postavke" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:429 +#: includes/multisite/class-mp-admin-multisite.php:247 +msgid "Show Decimal in Prices" +msgstr "Prikaži decimale u Cijenama" + +#: includes/admin/class-mp-setup-wizard.php:451 +#: includes/admin/store-settings/class-mp-store-settings-general.php:403 +#: includes/multisite/class-mp-admin-multisite.php:221 +msgid "Currency Symbol Position" +msgstr "Pozicija simbola valute" + +#: includes/admin/class-mp-setup-wizard.php:444 +#: includes/admin/store-settings/class-mp-store-settings-general.php:396 +msgid "Store Currency" +msgstr "Valuta trgovine" + +#: includes/admin/class-mp-setup-wizard.php:429 +#: includes/admin/store-settings/class-mp-store-settings-general.php:381 +msgid "Currency Settings" +msgstr "Postavke valute" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:516 +msgid "Please see your local tax laws. Note if this is enabled and a downloadable only cart, rates will be the default for your base location." +msgstr "Molimo provjerite vaše lokalne porezne zakone. Napomena, ako je ovo omogućeno i košarica sa samo mogućnošću preuzimanja je aktivna, onda će biti primijenjene stope vaše osnovne lokacije." + +#: includes/admin/class-mp-setup-wizard.php:529 +msgid "Apply Tax to Downloadable Products?" +msgstr "Primijeni porez na proizvode koji se preuzimaju (digitalno)?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:498 +msgid "Enabling this option allows you to enter and show all prices inclusive of tax, while still listing the tax total as a line item in shopping carts. Please see your local tax laws." +msgstr "Uključivanje ove opcije omogućuje unošenje i pokazivanje svih cijena u koje je uključen porez, dok je još uvijek prikazan ukupan porez kao linija stavki u košaricama. Molimo provjerite vaše lokalne porezne zakone." + +#: includes/admin/class-mp-setup-wizard.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:497 +msgid "Enter Prices Inclusive of Tax?" +msgstr "Unos cijena koje ukljućuju porez?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:492 +msgid "Please see your local tax laws. Most areas charge tax on shipping fees." +msgstr "Molimo proučite vaše lokalne porezne zakone. Većina područja naplaćuje porez na troškove dostave." + +#: includes/admin/class-mp-setup-wizard.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:491 +msgid "Apply Tax To Shipping Fees?" +msgstr "Primijeni porez na trošak dostave?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:674 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:565 +#: includes/common/payment-gateways/authorizenet-aim.php:291 +#: includes/common/payment-gateways/authorizenet-aim.php:326 +#: includes/common/payment-gateways/payfast.php:347 +msgid "No" +msgstr "Ne" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:675 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:759 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:512 +#: includes/admin/class-mp-setup-wizard.php:518 +#: includes/admin/class-mp-setup-wizard.php:524 +#: includes/admin/class-mp-setup-wizard.php:530 +#: includes/admin/class-mp-setup-wizard.php:564 +#: includes/admin/store-settings/class-mp-store-settings-general.php:232 +#: includes/admin/store-settings/class-mp-store-settings-general.php:299 +#: includes/admin/store-settings/class-mp-store-settings-general.php:305 +#: includes/admin/store-settings/class-mp-store-settings-general.php:311 +#: includes/admin/store-settings/class-mp-store-settings-general.php:317 +#: includes/admin/store-settings/class-mp-store-settings-general.php:328 +#: includes/admin/store-settings/class-mp-store-settings-general.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:341 +#: includes/admin/store-settings/class-mp-store-settings-general.php:348 +#: includes/admin/store-settings/class-mp-store-settings-general.php:367 +#: includes/admin/store-settings/class-mp-store-settings-general.php:493 +#: includes/admin/store-settings/class-mp-store-settings-general.php:499 +#: includes/admin/store-settings/class-mp-store-settings-general.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:556 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:375 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:381 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:387 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:474 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:493 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:532 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:574 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:606 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:664 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:670 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:677 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:683 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:689 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:763 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:774 +#: includes/common/payment-gateways/_bitpay.php:250 +#: includes/common/payment-gateways/_bitpay.php:257 +#: includes/common/payment-gateways/_bitpay.php:264 +#: includes/common/payment-gateways/authorizenet-aim.php:290 +#: includes/common/payment-gateways/authorizenet-aim.php:325 +#: includes/common/payment-gateways/free_orders.php:160 +#: includes/common/payment-gateways/payfast.php:346 +#: includes/common/payment-gateways/paymill.php:162 +#: includes/common/payment-gateways/paypal-payflow.php:441 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-checkbox.php:22 +msgid "Yes" +msgstr "Da" + +#: includes/admin/class-mp-setup-wizard.php:492 +#: includes/admin/store-settings/class-mp-store-settings-general.php:472 +msgid "%s Tax Rate" +msgstr "%s porezna stopa" + +#: includes/admin/class-mp-setup-wizard.php:467 +#: includes/admin/store-settings/class-mp-store-settings-general.php:449 +msgid "Tax Settings" +msgstr "Postavke poreza" + +#: includes/admin/class-mp-setup-wizard.php:370 +#: includes/admin/store-settings/class-mp-store-settings-general.php:624 +msgid "Base Zip/Postal Code" +msgstr "Osnovni poštanski broj" + +#: includes/admin/class-mp-setup-wizard.php:354 +#: includes/admin/store-settings/class-mp-store-settings-general.php:608 +msgid "Base State/Province/Region" +msgstr "Osnovna država/provincija/regija" + +#: includes/admin/class-mp-setup-wizard.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:589 +msgid "Base Country" +msgstr "Osnovna zemlja" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:582 +msgid "Location Settings" +msgstr "Postavke lokacije" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:195 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:800 +#: includes/multisite/class-mp-admin-multisite.php:172 +msgid "General Settings" +msgstr "Općenite postavke" + +#: includes/admin/class-mp-products-admin.php:1945 +#: includes/admin/class-mp-products-admin.php:2185 +#: includes/admin/class-mp-store-settings-admin.php:111 +#: includes/admin/class-mp-store-settings-admin.php:266 +msgid "General" +msgstr "Općenito" + +#: includes/admin/class-mp-store-settings-admin.php:242 +msgid "Importers" +msgstr "Importeri" + +#: includes/admin/class-mp-store-settings-admin.php:115 +#: includes/admin/class-mp-store-settings-admin.php:234 +msgid "Payments" +msgstr "Plaćanja" + +#: includes/admin/class-mp-dashboard-widgets.php:313 +#: includes/admin/class-mp-store-settings-admin.php:112 +#: includes/admin/class-mp-store-settings-admin.php:222 +msgid "Presentation" +msgstr "Prezentacija" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:916 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1015 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1018 +#: includes/admin/class-mp-dashboard-widgets.php:305 marketpress.php:702 +msgid "Coupons" +msgstr "Kuponi" + +#: includes/admin/class-mp-admin.php:251 +msgid "Download »" +msgstr "Preuzimanje »" + +#: includes/admin/class-mp-admin.php:245 +#: includes/admin/class-mp-exporter-orders.php:170 +msgid "All Statuses" +msgstr "Svi statusi" + +#: includes/admin/class-mp-admin.php:209 +#: includes/admin/class-mp-exporter-orders.php:150 +#: includes/admin/class-mp-exporter-orders.php:178 +msgid "Export Orders" +msgstr "Izvedi narudžbe" + +#: includes/admin/class-mp-admin.php:228 +msgid "Show all dates" +msgstr "Pokaži sve datume" + +#: includes/admin/class-mp-orders-admin.php:947 +msgid "Change Status" +msgstr "Promijeni status" + +#: includes/admin/class-mp-orders-admin.php:287 +msgid "Order Notes" +msgstr "Bilješke narudžbe:" + +#: includes/admin/class-mp-orders-admin.php:478 +msgid "Other" +msgstr "Drugo" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:205 +msgid "Subtotal" +msgstr "Ukupno" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:84 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:87 +#: includes/admin/class-mp-products-admin.php:1737 +#: includes/common/class-mp-cart.php:1409 +#: includes/common/class-mp-product.php:559 +msgid "Quantity" +msgstr "Količina" + +#: includes/common/helpers.php:93 +msgid "Item" +msgstr "Stavka" + +#: includes/common/class-mp-order.php:1050 +msgid "Current Status" +msgstr "Trenutni status" + +#: includes/admin/class-mp-orders-admin.php:297 +msgid "Order Actions" +msgstr "Aktivnosti narudžbe" + +#: includes/common/class-mp-product.php:1084 +msgid "More Info »" +msgstr "Više informacija »" + +#: includes/common/class-mp-product.php:2313 +msgid "Low Product Inventory Notification" +msgstr "Obavijest o niskoj zalihi proizvoda" + +#: includes/common/class-mp-order.php:338 includes/common/data.php:154 +msgid "New Order Notification: ORDERID" +msgstr "Obavijest o novoj narudžbi: ORDERID" + +#: includes/common/helpers.php:259 +msgid "Your payment for this order is complete." +msgstr "Plaćanje za ovu naurdžbu je završeno." + +#: includes/common/helpers.php:261 +msgid "Your payment for this order is not yet complete. Here is the latest status:" +msgstr "Plaćanje za ovu narudžbu još nije gotovo. Ovo je najnoviji status:" + +#: includes/common/helpers.php:256 +msgid "Payment Total:" +msgstr "Ukupno:" + +#: includes/common/helpers.php:253 +msgid "Transaction ID:" +msgstr "ID transakcije:" + +#: includes/common/helpers.php:249 +msgid "Payment Type:" +msgstr "Vrsta plačanja:" + +#: includes/common/helpers.php:246 +msgid "Payment Method:" +msgstr "Način plačanja:" + +#: includes/common/helpers.php:242 +msgid "Order Notes:" +msgstr "Bilješke narudžbe:" + +#: includes/common/helpers.php:237 +msgid "Special Instructions:" +msgstr "Posebne upute:" + +#: includes/common/helpers.php:232 +msgid "Tracking Number:" +msgstr "Broj za praćenje:" + +#: includes/common/helpers.php:223 includes/common/helpers.php:226 +#: includes/common/helpers.php:228 +#: includes/common/shipping-modules/class-mp-shipping-api.php:406 +#: includes/common/shipping-modules/class-mp-shipping-api.php:428 +msgid "Shipping Method:" +msgstr "Način dostave:" + +#: includes/common/helpers.php:168 +msgid "No shipping required for this order." +msgstr "Dostava nije potrebna za ovu narudžbu." + +#: includes/common/helpers.php:155 +msgid "Order Total:" +msgstr "Ukupno:" + +#: includes/common/class-mp-order.php:1025 +msgid "Taxes:" +msgstr "Porezi:" + +#: includes/common/class-mp-order.php:1032 includes/common/helpers.php:144 +msgid "Shipping:" +msgstr "Dostava:" + +#: includes/public/class-mp-checkout.php:367 +msgid "Street address, P.O. box, company name, c/o" +msgstr "Broj ulice, poštanski broj, ime tvrtke, c/o" + +#: includes/admin/class-mp-orders-admin.php:314 +msgid "Shipping Info" +msgstr "Informacije o dostavi" + +#: includes/public/class-mp-public.php:740 +msgid "Whoops, there was a problem loading up this file for your download. Please contact us for help." +msgstr "Ups, došlo je do problema prilikom učitavanja datoteke za vaše preuzimanje. Molimo da nas kontaktirate kako bi vam pomogli." + +#: includes/public/class-mp-public.php:683 +msgid "Sorry, our records show you've downloaded this file %d out of %d times allowed. Please contact us if you still need help." +msgstr "Nažalost, naši podaci pokazuju da ste preuzeli ovu datoteku %d od %d puta dovoljeno. Molimo da nas kontaktirate ako vam je još uvijek potrebna pomoć." + +#: includes/public/class-mp-public.php:634 +msgid "Sorry, your order has been marked as unpaid." +msgstr "Žao nam je, vaša narudžba je označena kao neplaćena." + +#: includes/public/class-mp-public.php:629 +msgid "Sorry, the link is invalid for this download." +msgstr "Žao nam je, poveznica je nevažeća za ovo preuzimanje." + +#: includes/admin/class-mp-exporter-orders.php:15 +#: includes/admin/class-mp-products-admin.php:1172 +msgid "Cheatin’ uh?" +msgstr "Cheatin’ uh?" + +#: includes/public/class-mp-public.php:407 +#: includes/public/class-mp-short-codes.php:128 +msgid "Please enter a valid email address." +msgstr "" + +#: includes/admin/class-mp-ajax.php:191 +#: includes/admin/class-mp-products-admin.php:1821 +#: includes/admin/class-mp-products-admin.php:2010 +#: includes/admin/class-mp-products-admin.php:2267 +msgid "File URL" +msgstr "URL datoteke" + +#: includes/admin/class-mp-products-admin.php:1842 +msgid "External Link" +msgstr "Vanjska poveznica" + +#: includes/admin/class-mp-products-admin.php:2177 +msgid "Add Variation" +msgstr "Dodaj varijaciju" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:126 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:289 +msgid "Inventory" +msgstr "Zalihe" + +#: includes/admin/class-mp-products-admin.php:438 +#: includes/admin/class-mp-products-admin.php:578 +#: includes/admin/class-mp-products-admin.php:1552 +#: includes/admin/class-mp-products-admin.php:2053 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:134 +msgid "Sale Price" +msgstr "Prodajna cijena" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "Variation Name" +msgstr "Ime varijacije" + +#: includes/admin/class-mp-products-admin.php:1931 +msgid "Product Details" +msgstr "Detalji proizvoda" + +#: includes/admin/class-mp-product-attributes-list-table.php:33 +msgid "Delete" +msgstr "Obriši" + +#: includes/admin/class-mp-orders-admin.php:1057 +msgid "Trashed" +msgstr "Obrisano" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:231 +#: includes/admin/class-mp-orders-admin.php:1015 +#: includes/common/class-mp-order.php:1052 includes/common/helpers.php:97 +msgid "Total" +msgstr "Ukupno" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1196 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:210 +#: includes/admin/class-mp-orders-admin.php:1014 +msgid "Discount" +msgstr "Popust" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:221 +#: includes/admin/class-mp-orders-admin.php:1013 +#: includes/common/payment-gateways/_ideal.php:148 +#: includes/common/payment-gateways/_payway.php:134 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:108 +msgid "Tax" +msgstr "PDV" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:216 +#: includes/admin/class-mp-orders-admin.php:1012 +#: includes/admin/class-mp-products-admin.php:1958 +#: includes/admin/class-mp-products-admin.php:2198 +#: includes/admin/class-mp-store-settings-admin.php:114 +#: includes/admin/class-mp-store-settings-admin.php:230 +#: includes/common/class-mp-cart.php:717 includes/common/helpers.php:168 +#: includes/common/payment-gateways/_ideal.php:137 +#: includes/common/payment-gateways/_payway.php:116 +#: includes/public/class-mp-checkout.php:1304 +msgid "Shipping" +msgstr "Dostava" + +#: includes/admin/class-mp-orders-admin.php:1011 +msgid "Items" +msgstr "Stavke" + +#: includes/admin/class-mp-orders-admin.php:1010 +msgid "From" +msgstr "Od" + +#: includes/admin/class-mp-exporter-orders.php:154 +#: includes/admin/class-mp-orders-admin.php:1009 +#: includes/common/class-mp-gdpr.php:370 +msgid "Order Date" +msgstr "Datum narudžbe" + +#: includes/admin/class-mp-orders-admin.php:1008 +#: includes/common/class-mp-gdpr.php:366 +#: includes/common/template-functions.php:2134 +msgid "Order ID" +msgstr "Order ID" + +#: includes/addons/class-mp-addons-list-table.php:22 +#: includes/admin/class-mp-orders-admin.php:1007 +msgid "Status" +msgstr "Status" + +#: includes/admin/class-mp-orders-admin.php:1155 +msgid "N/A" +msgstr "N/A" + +#: includes/admin/class-mp-dashboard-widgets.php:243 +#: includes/admin/class-mp-products-admin.php:464 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:142 +msgid "Sales" +msgstr "Prodano" + +#: includes/admin/class-mp-products-admin.php:463 +msgid "Stock" +msgstr "Dostupno" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:85 +#: includes/admin/class-mp-ajax.php:176 includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:434 +#: includes/admin/class-mp-products-admin.php:462 +#: includes/admin/class-mp-products-admin.php:576 +#: includes/admin/class-mp-products-admin.php:1519 +#: includes/admin/class-mp-products-admin.php:1569 +#: includes/admin/class-mp-products-admin.php:1950 +#: includes/admin/class-mp-products-admin.php:2059 +#: includes/admin/class-mp-products-admin.php:2190 +#: includes/admin/class-mp-products-admin.php:2330 +#: includes/common/class-mp-cart.php:1415 includes/common/helpers.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:130 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:276 +msgid "Price" +msgstr "Cijena" + +#: includes/admin/class-mp-ajax.php:173 +#: includes/admin/class-mp-products-admin.php:461 +#: includes/admin/class-mp-products-admin.php:1972 +#: includes/admin/class-mp-products-admin.php:2224 +msgid "SKU" +msgstr "SKU" + +#: includes/admin/class-mp-products-admin.php:459 +#: includes/admin/class-mp-products-admin.php:1793 +#: includes/admin/class-mp-products-admin.php:1805 +#: includes/admin/class-mp-products-admin.php:2163 +msgid "Variations" +msgstr "Varijacije" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:83 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:86 +#: includes/admin/class-mp-dashboard-widgets.php:134 +#: includes/admin/class-mp-products-admin.php:458 +#: includes/admin/class-mp-products-admin.php:837 +#: includes/admin/class-mp-shortcode-builder.php:689 +#: includes/admin/class-mp-shortcode-builder.php:856 +#: includes/admin/class-mp-shortcode-builder.php:1300 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:512 +#: includes/admin/widgets/ms-global-product-list.php:115 +#: includes/admin/widgets/product-list.php:211 +msgid "Product Name" +msgstr "Ime Proizvoda" + +#: includes/common/template-functions.php:2575 +msgid "Categorized in " +msgstr "Kategorizirano pod " + +#: includes/admin/class-mp-orders-admin.php:305 +#: includes/common/payment-gateways/free_orders.php:176 +msgid "Payment Information" +msgstr "Informacije o plačanju" + +#: includes/admin/class-mp-exporter-orders.php:167 +#: includes/admin/class-mp-orders-admin.php:432 +#: includes/admin/class-mp-pages-admin.php:62 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:227 +#: includes/common/class-mp-gdpr.php:374 +#: includes/common/template-functions.php:175 +#: includes/common/template-functions.php:926 +msgid "Order Status" +msgstr "Status Narudžbe" + +#. translators: %s: orders closed +#: marketpress.php:327 +msgid "Closed (%s)" +msgid_plural "Closed (%s)" +msgstr[0] "Zatvoreno (%s)" +msgstr[1] "" +msgstr[2] "" + +#: includes/admin/class-mp-admin.php:249 +#: includes/admin/class-mp-orders-admin.php:375 +#: includes/admin/class-mp-orders-admin.php:951 +#: includes/admin/class-mp-orders-admin.php:1053 +#: includes/admin/class-mp-orders-admin.php:1065 +#: includes/common/class-mp-gdpr.php:330 +#: includes/common/class-mp-order.php:1019 marketpress.php:325 +msgid "Closed" +msgstr "Zatvoreno" + +#. translators: %s: shipped orders +#: marketpress.php:320 +msgid "Shipped (%s)" +msgid_plural "Shipped (%s)" +msgstr[0] "Poslano (%s)" +msgstr[1] "" +msgstr[2] "" + +#: includes/admin/class-mp-admin.php:248 +#: includes/admin/class-mp-orders-admin.php:376 +#: includes/admin/class-mp-orders-admin.php:950 +#: includes/admin/class-mp-orders-admin.php:1049 +#: includes/admin/class-mp-orders-admin.php:1064 +#: includes/common/class-mp-gdpr.php:329 +#: includes/common/class-mp-order.php:1002 marketpress.php:318 +msgid "Shipped" +msgstr "Poslano" + +#. translators: %s: paid orders +#: marketpress.php:313 +msgid "Paid (%s)" +msgid_plural "Paid (%s)" +msgstr[0] "Plačeno (%s)" +msgstr[1] "" +msgstr[2] "" + +#: includes/admin/class-mp-admin.php:247 +#: includes/admin/class-mp-orders-admin.php:377 +#: includes/admin/class-mp-orders-admin.php:949 +#: includes/admin/class-mp-orders-admin.php:1045 +#: includes/admin/class-mp-orders-admin.php:1063 +#: includes/common/class-mp-gdpr.php:328 +#: includes/common/payment-gateways/2checkout.php:294 +#: includes/common/payment-gateways/_cubepoints.php:130 +#: includes/common/payment-gateways/authorizenet-aim.php:193 +#: includes/common/payment-gateways/free_orders.php:91 +#: includes/common/payment-gateways/mijireh.php:248 +#: includes/common/payment-gateways/paymill.php:273 +#: includes/common/payment-gateways/paypal-express.php:933 +#: includes/common/payment-gateways/paypal-express.php:967 +#: includes/common/payment-gateways/pin.php:258 +#: includes/common/payment-gateways/simplify.php:181 +#: includes/common/payment-gateways/stripe.php:368 +#: includes/common/payment-gateways/wepay.php:269 marketpress.php:311 +msgid "Paid" +msgstr "Plačeno" + +#. translators: %s: orders received +#: marketpress.php:306 +msgid "Received (%s)" +msgid_plural "Received (%s)" +msgstr[0] "Zaprimljeno (%s)" +msgstr[1] "" +msgstr[2] "" + +#: includes/admin/class-mp-admin.php:246 +#: includes/admin/class-mp-orders-admin.php:378 +#: includes/admin/class-mp-orders-admin.php:1041 +#: includes/admin/class-mp-orders-admin.php:1062 +#: includes/common/class-mp-gdpr.php:327 includes/common/class-mp-order.php:995 +#: includes/common/payment-gateways/payfast.php:244 marketpress.php:304 +msgid "Received" +msgstr "Zaprimljeno" + +#: marketpress.php:268 +msgid "Search Orders" +msgstr "Pretraži Narudžbe" + +#: marketpress.php:267 +msgid "View Order" +msgstr "Pogledaj Narudžbu" + +#: marketpress.php:262 +msgid "Order" +msgstr "Narudžba" + +#: includes/admin/class-mp-dashboard-widgets.php:301 +#: includes/admin/class-mp-orders-admin.php:989 marketpress.php:261 +msgid "Orders" +msgstr "Narudžbe" + +#: marketpress.php:228 +msgid "No Products found in Trash" +msgstr "Niti Jedan Proizvod Nije Pronađen u Smeću" + +#: marketpress.php:227 +msgid "No Products Found" +msgstr "Niti Jedan Proizvod Nije Pronađen" + +#: marketpress.php:226 +msgid "Search Products" +msgstr "Pretraži Proizvod" + +#: marketpress.php:225 marketpress.php:229 +msgid "View Product" +msgstr "Pogledaj Proizvod" + +#: marketpress.php:224 +msgid "New Product" +msgstr "Novi Proizvod" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1022 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:258 +#: marketpress.php:223 +msgid "Edit" +msgstr "Uredi" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1019 +msgid "Create New" +msgstr "Napravi Novi" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:687 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:698 +#: marketpress.php:217 +msgid "Product" +msgstr "Proizvod" + +#: includes/admin/class-mp-dashboard-widgets.php:307 +#: includes/common/template-functions.php:173 +#: includes/common/template-functions.php:179 +#: includes/common/template-functions.php:902 +#: includes/multisite/template-functions.php:82 marketpress.php:216 +#: marketpress.php:219 +msgid "Products" +msgstr "Proizvodi" + +#: includes/admin/class-mp-store-settings-admin.php:118 +#: includes/admin/widgets/product-tag-cloud.php:46 +#: includes/multisite/class-mp-admin-multisite.php:548 +msgid "Product Tags" +msgstr "Oznake Proizvoda" + +#: includes/common/template-functions.php:2906 +#: includes/multisite/template-functions.php:449 +msgid "Product Category" +msgstr "Kategorija proizvoida" + +#: includes/admin/class-mp-store-settings-admin.php:117 +#: includes/admin/widgets/categories.php:8 +#: includes/admin/widgets/categories.php:18 +#: includes/multisite/class-mp-admin-multisite.php:539 +msgid "Product Categories" +msgstr "Kategorije Proizvoda" + +#: includes/common/payment-gateways/stripe.php:332 +#: includes/common/template-functions.php:872 marketpress.php:218 +msgid "Store" +msgstr "Trgovina" + +#: includes/admin/class-mp-pages-admin.php:60 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:209 +#: includes/admin/widgets/cart.php:8 includes/admin/widgets/cart.php:56 +#: includes/common/template-functions.php:174 +#: includes/common/template-functions.php:811 +msgid "Shopping Cart" +msgstr "Košarica" + +#: includes/admin/class-mp-store-settings-admin.php:110 +#: includes/admin/class-mp-store-settings-admin.php:218 +msgid "Store Settings" +msgstr "Postavke Trgovine" + +#: includes/addons/class-mp-addons-list-table.php:128 marketpress.php:607 +msgid "Settings" +msgstr "Postavke" + +#: includes/common/data.php:178 includes/common/data.php:190 +msgid "Your Order Has Been Shipped! (ORDERID)" +msgstr "Vaša narudžba je isporučena! (ORDERID)" + +#: includes/common/data.php:159 includes/common/data.php:166 +#: includes/common/data.php:172 +msgid "Your Order Confirmation (ORDERID)" +msgstr "Potvrda Narudžbe (ORDERID)" + +#: includes/common/data.php:148 +msgid "

    Thank you for your order! We appreciate your business, and please come back often to check out our new products.

    " +msgstr "

    Hvala vam na narudžbi! Cijenimo što ste izabrali naš dučan te se nadamo da ćete nas posjetiti opet!

    " + +#: includes/common/data.php:147 +msgid "

    You are almost done! Please do a final review of your order to make sure everything is correct then click the \"Confirm Payment\" button.

    " +msgstr "

    Skoro pa ste gotovi! Molimo da još jedanput provjerite kako bi se uvjerili da je sve točno i zatim kliknite \"Potvrdi Plaćanje\" gumb.

    " + +#: includes/common/data.php:145 +msgid "

    Please enter your shipping information in the form below to proceed with your order.

    " +msgstr "

    Molimo unesite svoje podatke dostave u obrazac ispod da nastavite s narudžbom.

    " + +#: includes/common/data.php:143 +msgid "

    If you have any questions about your order please do not hesitate to contact us.

    " +msgstr "

    Ako imate bilo kakvih pitanja u vezi vaše narudžbe, molimo ne ustručavajte se kontaktirati nas.

    " + +#: includes/common/data.php:106 +msgid "tag" +msgstr "oznaka" + +#: includes/common/data.php:105 +msgid "category" +msgstr "kategorija" + +#: includes/common/data.php:104 +msgid "order-status" +msgstr "status-narudžbe" + +#: includes/common/data.php:103 +msgid "shopping-cart" +msgstr "košarica" + +#: includes/common/data.php:102 +msgid "products" +msgstr "proizvodi" + +#. Translators: change default slugs here +#: includes/common/data.php:101 +msgid "store" +msgstr "trgovina" \ No newline at end of file diff --git a/languages/mp-hu.mo b/languages/mp-hu.mo new file mode 100644 index 0000000000000000000000000000000000000000..2737aacf76781d7204dbaf7caecae4b0c9225d5a GIT binary patch literal 294 zcmYLD!AiqG6s+KBkDfiO;7wneO%>~goU|| z3^M~WFuy0qKcj%7z|+9+d!UJ%0Id+nAbCS?&xw^x0-Thv}imhTJPM%&4^6 znkp@)FSQp%)3Iq_Zu!G$N$ozmEJ@{HGm>YSRH=A|1roCHmbF|o))$PP!`$>^f1feZ$hja(lR(8-B-OB1ZptLsNeM literal 0 HcmV?d00001 diff --git a/languages/mp-hu.po b/languages/mp-hu.po new file mode 100644 index 00000000..e890db05 --- /dev/null +++ b/languages/mp-hu.po @@ -0,0 +1,8954 @@ +# Translation of MarketPress in Hungarian +# This file is distributed under the same license as the MarketPress package. +msgid "" +msgstr "" +"PO-Revision-Date: 2014-07-23 10:15:19+0000\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-Generator: GlotPress/2.3.1\n" +"Language: hu\n" +"Project-Id-Version: MarketPress\n" + +#: includes/public/class-mp-checkout.php:1285 +msgid "By clicking this checkbox you allow the website to process your personal data." +msgstr "" + +#: includes/common/class-mp-gdpr.php:382 +msgid "Order Info" +msgstr "" + +#: includes/common/class-mp-gdpr.php:268 +msgid "Shipping Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:267 +msgid "Shipping Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:266 +msgid "Shipping ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:265 +msgid "Shipping State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:264 +msgid "Shipping City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:263 +msgid "Shipping Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:262 +msgid "Shipping Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:261 +msgid "Shipping Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:260 +msgid "Shipping Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:259 +msgid "Shipping Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:258 +msgid "Shipping First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:254 +msgid "Billing Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:253 +msgid "Billing Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:252 +msgid "Billing ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:251 +msgid "Billing State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:250 +msgid "Billing City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:249 +msgid "Billing Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:248 +msgid "Billing Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:247 +msgid "Billing Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:246 +msgid "Billing Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:245 +msgid "Billing Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:244 +msgid "Billing First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:151 +msgid "Orders Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:139 +msgid "Customer Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:100 includes/common/class-mp-gdpr.php:116 +msgid "MarketPress User Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:81 +msgid "" +"In addition to standard WordPress session cookies, this site might be setting an\n" +"\t\t additional cookie to remember your cart settings. This cookie will last for one year." +msgstr "" + +#: includes/common/class-mp-gdpr.php:80 +msgid "Cookies" +msgstr "" + +#: includes/common/class-mp-gdpr.php:77 +msgid "" +"The following information will be collected in order to process orders: your name,\n" +"\t\t username, email address, avatar and profile URLs, address and phone number. This data can be\n" +"\t\t exported and removed." +msgstr "" + +#: includes/common/class-mp-gdpr.php:76 +msgid "Additional data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:71 +msgid "" +"This site might be using third party services and tools to process payments or/and\n" +"\t\t process shipping data when creating orders on the MarketPress store. These services include payment\n" +"\t\t gateways: 2Checkout, Authorize.net AIM, eWay shared payments, eWay Rapid 3.1 Payments, Mijireh,\n" +"\t\t Mollie, Paymill, PayPal, PIN, Simplify Commerce by MasterCard, Stripe and WePay; shipping gateways:\n" +"\t\t Fedex, UPS, USPS." +msgstr "" + +#: includes/common/class-mp-gdpr.php:70 +msgid "Third parties" +msgstr "" + +#: includes/admin/class-mp-admin.php:403 +msgid "Start creating store pages and products for your online shop here." +msgstr "" + +#: includes/admin/class-mp-admin.php:402 +msgid "Create Online Shop" +msgstr "" + +#: includes/admin/class-mp-admin.php:394 +msgid "Run Setup Wizard" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:234 +msgid "If having problems during invoice generation, add define( 'DOMPDF_ENABLE_HTML5PARSER', true ); to the wp-config.php file." +msgstr "" + +#: includes/public/class-mp-checkout.php:723 +msgid "Invalid Email" +msgstr "" + +#: includes/public/class-mp-checkout.php:721 +#: includes/public/class-mp-checkout.php:729 +msgid "This field is required" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:804 +msgid "This option changes the built-in css styles for store pages. For a custom css style, save your css file with the /* MarketPress Style: Your CSS Theme Name Here */ header line in the \"%s\" folder and it will appear in this list so you may select it. You should select \"None\" if you don't wish to use custom CSS styles or if you are using default theme templates or custom theme templates and css to make your own completely unique store design. For more information on custom theme templates click here »." +msgstr "" + +#: includes/public/class-mp-public.php:421 +#: includes/public/class-mp-short-codes.php:142 +msgid "Please enter a value greater than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:420 +#: includes/public/class-mp-short-codes.php:141 +msgid "Please enter a value less than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:419 +#: includes/public/class-mp-short-codes.php:140 +msgid "Please enter a value between {0} and {1}." +msgstr "" + +#: includes/public/class-mp-public.php:418 +#: includes/public/class-mp-short-codes.php:139 +msgid "Please enter a value between {0} and {1} characters long." +msgstr "" + +#: includes/public/class-mp-public.php:417 +#: includes/public/class-mp-short-codes.php:138 +msgid "Please enter at least {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:416 +#: includes/public/class-mp-short-codes.php:137 +msgid "Please enter no more than {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:415 +#: includes/public/class-mp-short-codes.php:136 +msgid "Please enter a value with a valid extension." +msgstr "" + +#: includes/public/class-mp-public.php:414 +#: includes/public/class-mp-short-codes.php:135 +msgid "Please enter the same value again." +msgstr "" + +#: includes/public/class-mp-public.php:413 +#: includes/public/class-mp-short-codes.php:134 +msgid "Please enter a valid credit card number." +msgstr "" + +#: includes/public/class-mp-public.php:412 +#: includes/public/class-mp-short-codes.php:133 +msgid "Please enter only digits." +msgstr "" + +#: includes/public/class-mp-public.php:411 +#: includes/public/class-mp-short-codes.php:132 +msgid "Please enter a valid number." +msgstr "" + +#: includes/public/class-mp-public.php:410 +#: includes/public/class-mp-short-codes.php:131 +msgid "Please enter a valid date (ISO)." +msgstr "" + +#: includes/public/class-mp-public.php:409 +#: includes/public/class-mp-short-codes.php:130 +msgid "Please enter a valid date." +msgstr "" + +#: includes/public/class-mp-public.php:408 +#: includes/public/class-mp-short-codes.php:129 +msgid "Please enter a valid URL." +msgstr "" + +#: includes/public/class-mp-public.php:406 +#: includes/public/class-mp-short-codes.php:127 +msgid "Please fix this field." +msgstr "" + +#: includes/public/class-mp-checkout.php:1287 +#: includes/public/class-mp-public.php:405 +#: includes/public/class-mp-short-codes.php:126 +msgid "This field is required." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:810 +msgid "None - Without Special CSS-styles" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:809 +msgid "Default - Using Default CSS-styles" +msgstr "" + +#: marketpress.php:739 +msgid "Enable multiple downloads per product" +msgstr "" + +#: marketpress.php:738 +msgid "Multiple Downloads" +msgstr "" + +#: includes/public/class-mp-checkout.php:715 +msgid "Invalid Zip Code" +msgstr "" + +#: includes/common/template-functions.php:2126 +msgid "Guest Email" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:195 +msgid "There was a problem finalizing your purchase. Please re-enter your credit card information and try again" +msgstr "" + +#: includes/common/class-mp-cart.php:565 includes/common/class-mp-order.php:600 +#: includes/common/helpers.php:111 +msgid "Download %1$s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:331 +msgid "Export products to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:328 +msgid "The import process uses the WordPress importer plugin." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:326 +msgid "Import / Export Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:325 +msgid "Export settings to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:324 +msgid "Import configuration" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:320 +msgid "Use the text below to export to a new installation. Or paste in the new configuration to import." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:318 +msgid "Import / Export Settings" +msgstr "" + +#. translators: URL to wp-admin/import.php +#: includes/admin/store-settings/class-mp-store-settings-import.php:266 +msgid "This importer is not installed. Please install importers from the main site." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:261 +msgid "Install Now" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:260 +msgid "Install %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:240 +msgid "Run Importer" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:239 +msgid "Run %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:258 +msgid "Import/Export" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1199 +msgid "Requires Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:737 +msgid "Optionally limit the user to some categories" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:671 +msgid "Should this coupon only be available to logged in users?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:670 +msgid "Require Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:655 +msgid "Mimimum number of products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:653 +msgid "Enter the minimum number of products in the cart that this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:648 +msgid "Can this coupon be limited to a number of products in the cart?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:334 +msgid "Add all values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:265 +msgid "Set as default variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:154 +msgid "Set Default" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:150 +msgid "More Info" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:40 +msgid "MarketPress - Quick Setup" +msgstr "" + +#: includes/public/class-mp-checkout.php:1399 +msgid "Proceed to checkout and create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1241 +#: includes/public/class-mp-checkout.php:1245 +msgid "Register account" +msgstr "" + +#: includes/public/class-mp-checkout.php:1233 +msgid "Register as customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:765 +msgid "

    Oops!

    Looks like you haven't added anything your cart. Let's go shopping!

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:763 +msgid "

    Oops!

    The cart is disabled.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing Information" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:214 +msgid "Global Currency" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:198 +msgid "Global Store Currency" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:507 +msgid "There are no shipping services available for this type of package in your location." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:168 +msgid "Using this USPS Shipping calculator requires requesting an Ecommerce API Username and Password. Get your free set of credentials here ». The password is no longer used for the API, just the username which you should enter below. The USPS test site has not yet been updated and currently doesn't work - you should just request activating your credentials with USPS and go live." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:339 +msgid "ZIP Code" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:334 +msgid "Last name" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:333 +msgid "First name" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:150 +msgid "These are the manual payment instructions to display on the order confirmation screen. TOTAL will be replaced with the order total and ORDERID will be replaced with Order ID." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:240 +msgid "You must login to Authorize.net merchant dashboard to obtain the API login ID and API transaction key. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:327 +msgid "
    1. Set the \"Return Method\" within Site Management to Header Redirect and set the \"Return URL\" to %s
    2. Set your notifications url to %s
    " +msgstr "" + +#: includes/common/data.php:191 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Also, digital downloads included in your order are now ready to be downloaded. Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:185 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order is now available to download! Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:184 +msgid "Your Order Is Ready To Be Downloaded! (ORDERID)" +msgstr "" + +#: includes/common/data.php:179 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:173 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received, your digital goods are ready to be downloaded and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:167 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received and your digital goods are ready to be downloaded. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:160 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +" Your order has been received, and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information: \n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/class-mp-product.php:638 +msgid "You can not add more items to cart." +msgstr "" + +#: includes/common/class-mp-product.php:635 +msgid "You can only add {0} to cart." +msgstr "" + +#: includes/common/class-mp-product.php:625 +msgid "This product has an order limit of %d." +msgstr "" + +#: includes/common/class-mp-order.php:1454 +msgid "Shipped: tracking code: %s" +msgstr "" + +#: includes/common/class-mp-order.php:1000 +#: includes/common/class-mp-order.php:1012 +msgid "Finished" +msgstr "" + +#: includes/common/class-mp-order.php:858 +msgid "Contact Details" +msgstr "" + +#: includes/common/class-mp-order.php:339 includes/common/data.php:155 +msgid "" +"A new order (ORDERID) was created in your store:\n" +"\n" +" ORDERINFOSKU\n" +"\n" +" SHIPPINGINFO\n" +"\n" +" PAYMENTINFO\n" +"\n" +msgstr "\n" + +#: includes/common/class-mp-cart.php:1858 +msgid "Add again" +msgstr "" + +#: includes/common/class-mp-cart.php:1852 +msgid "was removed from Shopping Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1242 +#: includes/public/class-mp-short-codes.php:160 +msgid "Cart update notice: this item has a limit per order or you have reached the stock limit." +msgstr "" + +#: includes/admin/widgets/product-list.php:235 +msgid "Show Only Featured Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:533 +msgid "If enabled, users won't be able to filter products per category and/or to order by release date/name/price." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:531 +msgid "Hide Products Filter?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:353 +msgid "Notification to registration email instead of billing email?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:322 +msgid "Order Shipped - Mixed orders (with both digital and physical products)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:289 +msgid "Order Shipped - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:224 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:194 +msgid "New Order - Mixed" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:161 +msgid "New Order - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:115 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:243 +msgid "Mixed orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:110 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:238 +msgid "Digital downloads orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:105 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:233 +msgid "Physical orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:96 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed.
    For orders placed with manual payment, emails set here will be overriden by the one configured in manual payments settings, under payments settings page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:89 +msgid "Customer Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:47 +msgid "Admin Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:566 +msgid "Only contact details" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:565 +msgid "Full billing info" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:561 +msgid "Details Collection" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:548 +msgid "Digital Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:515 +msgid "Apply Tax to Digital Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:236 +msgid "product (default)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:231 +msgid "If you are experiencing conflicts with other e-commerce plugins change this setting. This will change the internal post type of all your products. Please note that changing this option may break 3rd party themes or plugins." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1203 +msgid "Hide details" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1202 +msgid "Show all changes" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1184 +msgid "Version %s" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1161 +msgid "Current" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1131 +msgid "%s changelog" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:952 +msgid "We did not find any data for this plugin or theme..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:285 +msgid "Activate WPMU DEV Dashboard" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:279 +msgid "Just one more step - activate the WPMU DEV Dashboard plugin and you're all done!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:277 +msgid "Important updates are available for your WPMU DEV plugins/themes. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:273 +msgid "Just one more step to enable updates and support for %s!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:271 +msgid "Important updates are available for %s. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:264 +msgid "activate" +msgstr "" + +#: includes/admin/class-mp-admin.php:398 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:248 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:289 +msgid "Dismiss" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:247 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:288 +msgid "Saving..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:244 +msgid "Install Plugin" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:238 +msgid "Almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:236 +msgid "Important updates are available for your WPMU DEV plugins/themes. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:232 +msgid "%s is almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:230 +msgid "Important updates are available for %s. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:223 +msgid "install" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1428 +msgid "Sets the number of Tags to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1289 +msgid "How many products to display in the product list if \"paginate\" is set to false." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:739 +#: includes/admin/class-mp-shortcode-builder.php:906 +#: includes/admin/class-mp-shortcode-builder.php:1350 +msgid "Grid" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:735 +#: includes/admin/class-mp-shortcode-builder.php:902 +#: includes/admin/class-mp-shortcode-builder.php:1346 +msgid "Products will be displayed as list or grid." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:206 +msgid "Display a cloud or list of your global product tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:205 +msgid "Display a list of your global categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:204 +msgid "Display a list or grid of your global products." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:181 +msgid "Display a list of featured products." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1451 +msgid "Is Featured?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1444 +msgid "Featured Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:581 +#: includes/admin/class-mp-products-admin.php:1580 +msgid "% discount" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:579 +msgid "OR" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:460 +#: includes/admin/class-mp-products-admin.php:586 +#: includes/admin/widgets/product-list.php:217 +msgid "Featured" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:536 +#: includes/admin/class-mp-orders-admin.php:538 +msgid "Tracking Link" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:508 +msgid "Shipping Tax" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:356 +msgid "Shipping Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:352 +msgid "Taxes Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:349 +msgid "Products Total" +msgstr "" + +#: includes/admin/class-mp-ajax.php:366 +msgid "Oops! You entered an invalid username/email and or password." +msgstr "" + +#: includes/admin/class-mp-ajax.php:254 +msgid "Percentage Discount" +msgstr "" + +#: includes/admin/class-mp-ajax.php:234 +msgid "Limit the Amount of Items per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:214 +msgid "Unused Attributes" +msgstr "" + +#: includes/admin/class-mp-admin.php:82 +msgid "Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-admin.php:79 +msgid "MarketPress setup is not complete! Once you've completed this quick setup wizard you'll have a fully working online store - exciting! " +msgstr "" + +#: marketpress.php:263 +msgctxt "mp_order" +msgid "Add New" +msgstr "" + +#: marketpress.php:184 +msgctxt "product_tag" +msgid "Product Tag" +msgstr "" + +#: marketpress.php:183 +msgctxt "product_tag" +msgid "Product Tags" +msgstr "" + +#: marketpress.php:150 +msgctxt "product_category" +msgid "Product Category" +msgstr "" + +#: marketpress.php:149 +msgctxt "product_category" +msgid "Product Categories" +msgstr "" + +#. Author URI of the plugin/theme +msgid "http://premium.wpmudev.org" +msgstr "" + +#: marketpress.php:729 +msgid "Invoice PDF" +msgstr "" + +#: marketpress.php:712 +msgid "Grant access to themes and gateways depending on the user's Pro Site level" +msgstr "" + +#: marketpress.php:711 +msgid "Pro Sites" +msgstr "" + +#: marketpress.php:703 +msgid "Offer and accept coupon codes" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:687 +msgid "Install %s Pages" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:682 +msgid "Welcome to %s – Install pages required by the plugin automatically." +msgstr "" + +#: marketpress.php:668 +msgid "Your pages were created successfully." +msgstr "" + +#: marketpress.php:436 +msgid "Add a Product" +msgstr "" + +#: marketpress.php:271 +msgid "Parent Order" +msgstr "" + +#: marketpress.php:270 +msgid "No orders found in trash" +msgstr "" + +#: marketpress.php:269 +msgid "No orders found" +msgstr "" + +#: marketpress.php:265 +msgid "Edit Order" +msgstr "" + +#: marketpress.php:264 +msgid "Add New Order" +msgstr "" + +#: marketpress.php:220 marketpress.php:221 +msgid "Add New Product" +msgstr "" + +#: marketpress.php:197 +msgid "No product tags found" +msgstr "" + +#: marketpress.php:196 +msgid "Choose from the most used product tags" +msgstr "" + +#: marketpress.php:195 +msgid "Add or remove product tags" +msgstr "" + +#: marketpress.php:194 +msgid "Separate product tags with commas" +msgstr "" + +#: marketpress.php:193 +msgid "Search Product Tags" +msgstr "" + +#: marketpress.php:192 +msgid "Parent Product Tag:" +msgstr "" + +#: marketpress.php:191 +msgid "Parent Product Tag" +msgstr "" + +#: marketpress.php:190 +msgid "New Product Tag Name" +msgstr "" + +#: marketpress.php:189 +msgid "Add New Product Tag" +msgstr "" + +#: marketpress.php:188 +msgid "Update Product Tag" +msgstr "" + +#: marketpress.php:187 +msgid "View Product Tag" +msgstr "" + +#: marketpress.php:186 +msgid "Edit Product Tag" +msgstr "" + +#: marketpress.php:185 +msgid "All Product Tags" +msgstr "" + +#: marketpress.php:163 +msgid "No product categories found" +msgstr "" + +#: marketpress.php:162 +msgid "Choose from the most used product categories" +msgstr "" + +#: marketpress.php:161 +msgid "Add or remove product categories" +msgstr "" + +#: marketpress.php:160 +msgid "Separate product categories with commas" +msgstr "" + +#: marketpress.php:159 +msgid "Search Product Categories" +msgstr "" + +#: marketpress.php:158 +msgid "Parent Product Category:" +msgstr "" + +#: marketpress.php:157 +msgid "Parent Product Category" +msgstr "" + +#: marketpress.php:156 +msgid "New Product Category Name" +msgstr "" + +#: marketpress.php:155 +msgid "Add New Product Category" +msgstr "" + +#: marketpress.php:154 +msgid "Update Product Category" +msgstr "" + +#: marketpress.php:153 +msgid "View Product Category" +msgstr "" + +#: marketpress.php:152 +msgid "Edit Product Category" +msgstr "" + +#: marketpress.php:151 +msgid "All Product Categories" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Please fix the %s1 and then try submitting the form again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Oops! The form contains %s1 which %s2 been highlighted below." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:660 +msgid "have" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:659 +msgid "has" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:651 +msgid "Value must be less than {0}" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:650 +msgid "Please enter only letters and numbers" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:539 +msgid "Due to prolonged inactivity on this page, one or more settings were not saved. Please try again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:535 +msgid "Settings Saved" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-user-select.php:22 +msgid "Select Some Users" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-section.php:18 +msgid "Section Title" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:425 +msgid "Are you sure you want to delete this?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:30 +msgid "Add Row" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-post-select.php:24 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-taxonomy-select.php:22 +msgid "Select Posts" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:210 +msgid "Add Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:129 +msgid "Select the image that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:93 +msgid "Select image(s) that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:79 +msgid "Select the image that you would like to use for this variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:48 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:82 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:68 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:132 +msgid "Select Image" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:31 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:160 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:168 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:19 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:115 +msgid "Select File" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:30 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:18 +msgid "Select the file that you would like to use." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:357 +msgid "Create Variations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:356 +msgid "Add Another Variant" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Insert a value and press ENTER" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "(e.g. White, Grey, Red etc.)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Variation Values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:333 +msgid "Or create new variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "(e.g. Color)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:303 +msgid "You are about to delete selected variants.
    If you want to continue please confirm." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:302 +msgid "Confirmation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:290 +msgid "Insert quantity available. Empty for unlimited." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:281 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:294 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:307 +msgid "Cancel" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:280 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:293 +msgid "Update" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:277 +msgid "Insert the price i.e. 25 or 25.50" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:115 +msgid "Img." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:85 +msgid "Add New Variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:79 +msgid "Delete Variants" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:78 +msgid "Update Prices" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:77 +msgid "Update Inventory" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:76 +msgid "Update Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:75 +msgid "Bulk Actions" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:73 +msgid "Select bulk action" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:196 +msgid "Configure Store" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:195 +msgid "Configure shipping rates, emails and your store's appearance. " +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:190 +msgid "Add Product" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:189 +msgid "Add your first product for sale and get familiar with adding products." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:184 +msgid "Your store is almost ready for its first customers, but first it needs some products. Get started by adding products below, or jump straight into further configuring your store’s settings." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:183 +msgid "Woohoo! Your online store is up and running." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:160 +msgid "Finish Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:124 +msgid "And what metric system do you want to use?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:113 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:142 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:159 +msgid "Back" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:109 +msgid "Do you want to apply tax for your products? You can customize this for each product and variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:105 +msgid "What currency do you want to sell with?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:93 +msgid "And, which countries do you want to sell to?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:89 +msgid "Where is your online store based?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:80 +msgid "Payment Gateway" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:79 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:123 +msgid "Metric System" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:78 +msgid "Currency & Tax" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:77 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:88 +msgid "Locations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:70 +msgid "Choose where you want to sell your stuff and what currency. Easy!" +msgstr "" + +#: includes/public/class-mp-checkout.php:1400 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:58 +msgid "Continue" +msgstr "" + +#: includes/admin/class-mp-admin.php:83 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:53 +msgid "Skip this step, I'll do this manually" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:49 +msgid "Install store pages" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:44 +msgid "Once you've completed this quick setup wizard you'll have a fully working online store - exciting! Start
    by creating the default store pages for the online store such as the cart, checkout and store pages." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:42 +msgid "MarketPress adds a full online store to your website, with heaps of configuration options and addons
    to suit your needs. It's really easy to get going, and only takes a few minutes to setup!" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:41 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:69 +msgid "Welcome to MarketPress - Quick Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-advanced-select.php:23 +msgid "Select Some Options" +msgstr "" + +#: includes/wpmudev-metaboxes/class-wpmudev-field.php:694 +msgid "You must the WPMUDEV_Field::display() method in your form field class" +msgstr "" + +#: includes/public/class-mp-short-codes.php:636 +msgid "Only %s left in stock..." +msgstr "" + +#: includes/public/class-mp-short-codes.php:633 +msgid "Unlimited stock" +msgstr "" + +#: includes/public/class-mp-short-codes.php:430 +msgid "product_id must be defined" +msgstr "" + +#: includes/public/class-mp-checkout.php:1250 +msgid "An account with this username already exists" +msgstr "" + +#: includes/public/class-mp-checkout.php:1394 +msgid "Continue as Guest" +msgstr "" + +#: includes/public/class-mp-checkout.php:1393 +msgid "Proceed to checkout and you'll have an opportunity to create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1392 +#: includes/public/class-mp-checkout.php:1398 +msgid "First-time customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1386 +msgid "Login" +msgstr "" + +#: includes/public/class-mp-checkout.php:1379 +msgid "E-Mail Address/Username" +msgstr "" + +#: includes/public/class-mp-checkout.php:1377 +msgid "Sign in to speed up the checkout process." +msgstr "" + +#: includes/public/class-mp-checkout.php:1376 +msgid "Have an account?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1297 +msgid "Shipping address different than billing?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1184 +msgid "There are no available gateways to process this payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1160 +msgid "Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:1123 +msgid "Oops! An error occurred while processing your payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1051 +msgid "Next Step »" +msgstr "" + +#: includes/public/class-mp-checkout.php:1045 +msgid "« Previous Step" +msgstr "" + +#: includes/public/class-mp-checkout.php:873 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:657 +msgid "error" +msgstr "" + +#: includes/public/class-mp-checkout.php:872 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:658 +msgid "errors" +msgstr "" + +#: includes/public/class-mp-checkout.php:871 +msgid "

    Oops! We found %d %s in the form below.

    Fields that have errors are highlighted in red below. Entering into a field will reveal the actual error that occurred.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:870 +msgid "Please enter a valid first and last name" +msgstr "" + +#: includes/public/class-mp-checkout.php:869 +msgid " Please enter a valid card security code" +msgstr "" + +#: includes/public/class-mp-checkout.php:868 +msgid "Please enter a valid card expiration" +msgstr "" + +#: includes/public/class-mp-checkout.php:773 +msgid "Javascript is required in order to checkout. Please enable Javascript in your browser and then refresh this page." +msgstr "" + +#: includes/public/class-mp-checkout.php:588 +msgid "An unknown error occurred. Please try again." +msgstr "" + +#: includes/public/class-mp-checkout.php:386 +msgid "Town/City" +msgstr "" + +#: includes/public/class-mp-checkout.php:380 +msgid "Apartment, suite, unit, building, floor, etc" +msgstr "" + +#: includes/public/class-mp-checkout.php:376 +msgid "Address Line 2" +msgstr "" + +#: includes/public/class-mp-checkout.php:363 +msgid "Address Line 1" +msgstr "" + +#: includes/common/class-mp-order.php:770 +#: includes/public/class-mp-checkout.php:354 +msgid "Company" +msgstr "" + +#: includes/public/class-mp-checkout.php:330 +msgid "Last" +msgstr "" + +#: includes/public/class-mp-checkout.php:321 +msgid "First" +msgstr "" + +#: includes/public/class-mp-checkout.php:284 +msgid "State/Province" +msgstr "" + +#: includes/public/class-mp-checkout.php:83 +msgid "Review Order/Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing/Shipping Address" +msgstr "" + +#: includes/public/class-mp-checkout.php:80 +msgid "Login/Register" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:530 +msgid "Marketplace" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:523 +msgid "Global Marketplace Pages" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +msgid "Store Network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +#: includes/multisite/class-mp-admin-multisite.php:494 +msgid "Store Network Settings" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:440 +msgid "Set theme access permissions for network stores. For a custom css theme, save your css file with the MarketPress Theme: NAME header in the /marketpress/ui/themes/ folder and it will appear in this list so you may select it." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:361 +msgid "Choose a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:336 +msgid "%d products get indexed" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:285 +msgid "Product Indexer" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:281 +msgid "Please hold on..." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:280 +msgid "Index Products" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:279 +msgid "%d products have been indexed in whole network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:182 +msgid "Enable Global Shopping Cart?" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:178 +msgid "Limit Global Widgets/Shortcodes To Main Blog?" +msgstr "" + +#: includes/common/template-functions.php:2802 +#: includes/multisite/template-functions.php:355 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:97 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:114 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:143 +msgid "Next" +msgstr "" + +#: includes/common/template-functions.php:2801 +#: includes/multisite/template-functions.php:354 +msgid "Prev" +msgstr "" + +#: includes/common/template-functions.php:2597 +msgid "Tagged in " +msgstr "" + +#: includes/common/template-functions.php:2196 +#: includes/common/template-functions.php:2202 +#: includes/common/template-functions.php:2214 +#: includes/common/template-functions.php:2217 +msgid "Oops! We couldn't locate any orders matching that order number. Please verify the order number and try again." +msgstr "" + +#: includes/common/template-functions.php:2138 +msgid "Look Up" +msgstr "" + +#: includes/common/template-functions.php:1423 +msgid "Please choose a shipping method" +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "If you have your order ID you can look it up using the form below." +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "Order Search" +msgstr "" + +#: includes/common/template-functions.php:910 +#: includes/public/class-mp-checkout.php:1440 +msgid "Cart" +msgstr "" + +#: includes/common/template-functions.php:895 +msgid "[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:887 +msgid "[mp_global_categories_list]" +msgstr "" + +#: includes/common/template-functions.php:880 +msgid "" +"Welcome to our market place!\n" +"\n" +"Check out our network of products:\n" +"\n" +"[mp_list_global_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_global_categories_list]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:879 +msgid "Global Store" +msgstr "" + +#: includes/common/template-functions.php:873 +msgid "" +"Welcome to our online store! Feel free to browse around:\n" +"\n" +"[mp_store_navigation]\n" +"\n" +"Check out our most popular products:\n" +"\n" +"[mp_popular_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_list_categories]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_tag_cloud]" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:127 +msgid "If cart weight is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:126 +msgid "Cart Weight" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:222 +msgid "Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:206 +msgid "Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:196 +msgid "Retail Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:195 +msgid "Online Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:193 +msgid "Rates Request Type" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:189 +msgid "Maximum Weight Per Package" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:195 +#: includes/common/shipping-modules/mp-usps.php:236 +msgid "Enter your standard box sizes as LengthxWidthxHeight (e.g. 12x8x6) For each box defined enter the maximum weight it can contain. Note: the shipping prices this plugin calculates are estimates. If they are consistently too low or too high, please check that the list of boxes above and the product weights are accurate and complete." +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:187 +msgid "Handling Charge Per Box Shipped" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:176 +#: includes/common/shipping-modules/mp-ups.php:181 +msgid "Offered Services" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:165 +msgid "Shipper Number" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:151 +msgid "User ID" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:144 +msgid "Developer Kit Access Key" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:140 +msgid "Use Sandbox Mode?" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:123 +msgid "In order to use UPS, you will need a UPS Developer Kit access key and the UPS user ID and password associated with the access key. Set these up for free here. If this information is missing or incorrect, an error will appear during the checkout process and the buyer will not be able to complete the transaction." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:112 +msgid "If cart total is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:111 +msgid "Cart Total" +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:95 +#: includes/common/shipping-modules/mp-weight-rate.php:111 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Don't worry about sorting as this will be done automatically upon saving." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:170 +msgid "Method Title (visible for clients)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:409 +#: includes/common/shipping-modules/mp-ups.php:216 +#: includes/common/shipping-modules/mp-usps.php:251 +msgid "Max Weight (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:402 +#: includes/common/shipping-modules/mp-ups.php:209 +#: includes/common/shipping-modules/mp-usps.php:247 +msgid "Size (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:387 +msgid "Enter your standard box sizes as LengthxWidthxHeight ( 12x8x6 ) For each box defined enter the maximum weight it can contain. Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:361 +#: includes/common/shipping-modules/mp-usps.php:229 +msgid "Handling Charge per International Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:353 +msgid "International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:339 +#: includes/common/shipping-modules/mp-usps.php:213 +msgid "Handling Charge per Domestic Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:331 +msgid "Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:321 +msgid "When checked the customer can chose Residential or Commercial delivery with Residential the default. Unchecked it's only Residential rates." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:320 +msgid "Allow Commercial Delivery?" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:315 +msgid "Fedex 10kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:314 +msgid "Fedex 25kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:313 +msgid "Fedex Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:312 +msgid "Fedex Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:311 +msgid "Fedex Pak" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:310 +msgid "Fedex Tube" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:306 +msgid "Default Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:294 +msgid "Dropoff Type" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:290 +msgid "Meter ID" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:134 +msgid "This is a residential address" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:283 +msgid "There was an error processing your card: \"%s\". Please check your credit card info and try again." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:121 +msgid "Wepay makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept cards directly on your site. You don't need a merchant account or gateway. WePay handles everything including storing cards. Credit cards go directly to WePay's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:385 +msgid "There was an error processing your card - \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:356 +msgid "%s Store Purchase - Order ID - %s, Email - %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:251 +msgid "Stripe makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept Visa, MasterCard, American Express, Discover, JCB, and Diners Club cards directly on your site. You don't need a merchant account or gateway. Stripe handles everything, including storing cards, subscriptions, and direct payouts to your bank account. Credit cards go directly to Stripe's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:192 +msgid "ZMW - Zambian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:191 +msgid "ZAR - South African Rand" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:190 +msgid "YER - Yemeni Rial" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:189 +msgid "XPF - Cfp Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:188 +msgid "XOF - West African Cfa Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:187 +msgid "XCD - East Caribbean Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:186 +msgid "XAF - Central African Cfa Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:185 +msgid "WST - Samoan Tala" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:184 +msgid "VUV - Vanuatu Vatu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:183 +msgid "VND - Vietnamese Đồng" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:182 +msgid "VEF - Venezuelan Bolívar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:181 +msgid "UZS - Uzbekistani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:180 +msgid "UYI - Uruguayan Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:178 +msgid "UGX - Ugandan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:177 +msgid "UAH - Ukrainian Hryvnia" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:176 +msgid "TZS - Tanzanian Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:175 +msgid "TWD - New Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:174 +msgid "TTD - Trinidad and Tobago Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:172 +msgid "TOP - Tongan Paʻanga" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:171 +msgid "TJS - Tajikistani Somoni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:169 +msgid "SZL - Swazi Lilangeni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:168 +msgid "SVC - Salvadoran Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:167 +msgid "STD - São Tomé and Príncipe Dobra" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:166 +msgid "SRD - Surinamese Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:165 +msgid "SOS - Somali Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:164 +msgid "SLL - Sierra Leonean Leone" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:163 +msgid "SHP - Saint Helenian Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:160 +msgid "SCR - Seychellois Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:159 +msgid "SBD - Solomon Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:157 +msgid "RWF - Rwandan Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:156 +msgid "RUB - Russian Ruble" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:155 +msgid "RSD - Serbian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:154 +msgid "RON - Romanian Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:153 +msgid "QAR - Qatari Riyal" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:152 +msgid "PYG - Paraguayan Guaraní*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:151 +msgid "PLN - Polish Złoty" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:150 +msgid "PKR - Pakistani Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:149 +msgid "PHP - Philippine Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:148 +msgid "PGK - Papua New Guinean Kina" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:147 +msgid "PEN - Peruvian Nuevo Sol*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:146 +msgid "PAB - Panamanian Balboa*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:144 +msgid "NPR - Nepalese Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:142 +msgid "NIO - Nicaraguan Córdoba*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:141 +msgid "NGN - Nigerian Naira" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:140 +msgid "NAD - Namibian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:139 +msgid "MZN - Mozambican Metical" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:137 +msgid "MXN - Mexican Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:136 +msgid "MWK - Malawian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:135 +msgid "MVR - Maldivian Rufiyaa" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:134 +msgid "MUR - Mauritian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:133 +msgid "MRO - Mauritanian Ouguiya" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:132 +msgid "MOP - Macanese Pataca" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:131 +msgid "MNT - Mongolian Tögrög" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:130 +msgid "MKD - Macedonian Denar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:129 +msgid "MGA - Malagasy Ariary" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:128 +msgid "MDL - Moldovan Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:126 +msgid "LVL - Latvian Lats" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:124 +msgid "LSL - Lesotho Loti" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:123 +msgid "LRD - Liberian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:122 +msgid "LKR - Sri Lankan Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:121 +msgid "LBP - Lebanese Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:120 +msgid "LAK - Lao Kip*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:119 +msgid "KZT - Kazakhstani Tenge" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:118 +msgid "KYD - Cayman Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:117 +msgid "KRW - South Korean Won" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:116 +msgid "KMF - Comorian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:115 +msgid "KHR - Cambodian Riel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:114 +msgid "KGS - Kyrgyzstani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:113 +msgid "KES - Kenyan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:111 +msgid "JMD - Jamaican Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:110 +msgid "ISK - Icelandic Króna" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:109 +msgid "INR - Indian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:108 +msgid "ILS - Israeli New Sheqel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:107 +msgid "IDR - Indonesian Rupiah" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:105 +msgid "HTG - Haitian Gourde" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:103 +msgid "HNL - Honduran Lempira*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:101 +msgid "GYD - Guyanese Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:100 +msgid "GTQ - Guatemalan Quetzal*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:99 +msgid "GNF - Guinean Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:98 +msgid "GMD - Gambian Dalasi" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:97 +msgid "GIP - Gibraltar Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:96 +msgid "GEL - Georgian Lari" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:94 +msgid "FKP - Falkland Islands Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:93 +msgid "FJD - Fijian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:91 +msgid "ETB - Ethiopian Birr" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:90 +msgid "EGP - Egyptian Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:89 +msgid "EEK - Estonian Kroon*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:88 +msgid "DZD - Algerian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:87 +msgid "DOP - Dominican Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:85 +msgid "DJF - Djiboutian Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:84 +msgid "CZK - Czech Koruna*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:83 +msgid "CVE - Cape Verdean Escudo*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:82 +msgid "CRC - Costa Rican Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:81 +msgid "COP - Colombian Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:80 +msgid "CNY - Chinese Renminbi Yuan" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:79 +msgid "CLP - Chilean Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:77 +msgid "CDF - Congolese Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:76 +msgid "CAD - Canadian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:75 +msgid "BZD - Belize Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:74 +msgid "BWP - Botswana Pula" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:73 +msgid "BSD - Bahamian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:72 +msgid "BRL - Brazilian Real*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:71 +msgid "BOB - Bolivian Boliviano*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:70 +msgid "BND - Brunei Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:69 +msgid "BMD - Bermudian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:68 +msgid "BIF - Burundian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:67 +msgid "BGN - Bulgarian Lev" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:66 +msgid "BDT - Bangladeshi Taka" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:65 +msgid "BBD - Barbadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:64 +msgid "BAM - Bosnia & Herzegovina Convertible Mark" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:63 +msgid "AZN - Azerbaijani Manat" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:62 +msgid "AWG - Aruban Florin" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:61 +msgid "AUD - Australian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:60 +msgid "ARS - Argentine Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:59 +msgid "AOA - Angolan Kwanza*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:58 +msgid "ANG - Netherlands Antillean Gulden" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:57 +msgid "AMD - Armenian Dram" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:56 +msgid "ALL - Albanian Lek" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:55 +msgid "AFN - Afghan Afghani*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:54 +msgid "AED - United Arab Emirates Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:345 +msgid "Skrill balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:327 +msgid "Skrill IPN message received." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:283 +msgid "Skrill" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:278 +msgid "Pending payment" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:144 +msgid "The secret word must match the word submitted in the \"Merchant Tools\" section of your Skrill account." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:134 +msgid "You must use your valid Skrill merchant email. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:133 +msgid "Skrill Email" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:123 +msgid "Resell your inventory via Skrill.com (Moneybookers)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:95 +msgid "ZAR - South-African Rand" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:93 +msgid "TWD - Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:92 +msgid "TRY - New Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:91 +msgid "TND - Tunisian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:90 +msgid "THB - Thailand Baht" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:89 +msgid "SKK - Slovakian Koruna" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:86 +#: includes/common/payment-gateways/stripe.php:158 +msgid "SAR - Saudi Riyal" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:85 +msgid "RSD - Serbian dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:83 +msgid "QAR - Qatari Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:81 +msgid "OMR - Omani Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:80 +msgid "NOK - Norwegian Krone " +msgstr "" + +#: includes/common/payment-gateways/skrill.php:78 +#: includes/common/payment-gateways/stripe.php:138 +msgid "MYR - Malaysian Ringgit" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:77 +#: includes/common/payment-gateways/stripe.php:127 +msgid "MAD - Moroccan Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:74 +msgid "KRW - South-Korean Won" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:72 +msgid "JOD - Jordanian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:70 +msgid "INR - Indian Rupee" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:63 +msgid "EEK - Estonian Kroon" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:56 +msgid "AED - Utd. Arab Emir. Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:52 +msgid "Turkish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:51 +msgid "Swedish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:50 +msgid "Spanish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:49 +msgid "Russian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:48 +msgid "Romainian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:47 +msgid "Polish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:46 +msgid "Italian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:45 +msgid "Greek" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:44 +msgid "German" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:43 +msgid "French" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:42 +msgid "Finnish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:41 +msgid "English" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:40 +msgid "Dutch" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:39 +msgid "Danish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:38 +msgid "Czech" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:37 +msgid "Chinese" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:201 +msgid "There was an error processing your card: %s. Please re-enter your credit card info and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:278 +msgid "
  • There was an error processing your card: \"%s\". Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:274 +msgid "
  • There was an error processing your card. Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:177 +#: includes/common/payment-gateways/stripe.php:279 +msgid "Publishable Key" +msgstr "" + +#: includes/common/payment-gateways/pin.php:163 +msgid "API Credentials?" +msgstr "" + +#: includes/common/payment-gateways/pin.php:147 +msgid "PIN makes it easy to start accepting credit card payments with Australia’s first all-in-one online payment system. Accept all major credit cards directly on your site. Your sales proceeds are deposited to any Australian bank account, no merchant account required." +msgstr "" + +#: includes/common/payment-gateways/pin.php:57 +#: includes/common/payment-gateways/stripe.php:179 +msgid "USD - United States Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:455 +msgid "Email Footer" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:445 +msgid "Email Header" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:416 +msgid "Partner" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:409 +msgid "Vendor" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:852 +#: includes/common/payment-gateways/paypal-express.php:1126 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences\t section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:749 +msgid "Page Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:744 +msgid "Header Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:739 +msgid "Header Border Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:734 +msgid "Header Image" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:680 +msgid "Locale" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:624 +#: includes/common/payment-gateways/paypal-express.php:658 +msgid "Merchant Email" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:645 +msgid "Paypal Express Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:603 +msgid "Paypal Express Network Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:861 +msgid "Application ID (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:854 +msgid "Signature (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:847 +msgid "API Password (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:839 +msgid "API Username (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:832 +msgid "Signature (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:825 +msgid "API Password (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:817 +msgid "API Username (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:799 +msgid "This message is displayed at the top of the gateway settings page to store admins. It's a good place to inform them of your fees or put any sales messages." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:787 +msgid "Please enter your PayPal email address or business ID you want to recieve fees at." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:786 +msgid "PayPal E-mail" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:772 +msgid "Fees to Collect (%)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:375 +#: includes/public/class-mp-checkout.php:341 +msgid "Email Address" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:299 +msgid "Sorry, your order was not completed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:126 +#: includes/common/payment-gateways/paypal-express.php:780 +msgid "You will be redirected to the PayPal site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:90 +#: includes/common/payment-gateways/skrill.php:94 +msgid "USD - U.S. Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:89 +msgid "TRY - Turkish lira" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:88 +#: includes/common/payment-gateways/stripe.php:170 +msgid "THB - Thai Baht" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:87 +msgid "TWD - Taiwan New Dollars" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:86 +#: includes/common/payment-gateways/pin.php:59 +#: includes/common/payment-gateways/skrill.php:88 +#: includes/common/payment-gateways/stripe.php:162 +msgid "SGD - Singapore Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:84 +msgid "RUB - Russian Rubles" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:82 +msgid "PHP - Philippine Pesos" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:81 +#: includes/common/payment-gateways/pin.php:58 +#: includes/common/payment-gateways/skrill.php:79 +#: includes/common/payment-gateways/stripe.php:145 +msgid "NZD - New Zealand Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:79 +msgid "MXN - Mexican Peso" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:78 +msgid "MYR - Malaysian Ringgits" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:77 +#: includes/common/payment-gateways/pin.php:64 +#: includes/common/payment-gateways/skrill.php:73 +#: includes/common/payment-gateways/stripe.php:112 +msgid "JPY - Japanese Yen" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:75 +#: includes/common/payment-gateways/pin.php:63 +#: includes/common/payment-gateways/skrill.php:66 +#: includes/common/payment-gateways/stripe.php:102 +msgid "HKD - Hong Kong Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:73 +msgid "GBP - Pound Sterling" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:68 +#: includes/common/payment-gateways/pin.php:62 +#: includes/common/payment-gateways/skrill.php:59 +msgid "CAD - Canadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:67 +msgid "BRL - Brazilian Real" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:66 +#: includes/common/payment-gateways/pin.php:56 +#: includes/common/payment-gateways/skrill.php:57 +msgid "AUD - Australian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:288 +msgid "There was an error processing your card: \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:163 +msgid "When running on a live site, Paymill recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:161 +#: includes/common/payment-gateways/pin.php:157 +#: includes/common/payment-gateways/simplify.php:103 +#: includes/common/payment-gateways/stripe.php:260 +#: includes/common/payment-gateways/wepay.php:153 +msgid "Force SSL?" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:151 +msgid "Accept Visa, Mastercard, Maestro UK, Discover and Solo cards directly on your site. You don't need a merchant account or gateway. Credit cards go directly to Paymill's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:131 +msgid "CVV2" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:72 +#: includes/common/payment-gateways/pin.php:61 +#: includes/common/payment-gateways/skrill.php:65 +#: includes/common/payment-gateways/stripe.php:95 +msgid "GBP - British Pound" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:71 +#: includes/common/payment-gateways/stripe.php:173 +msgid "TRY - Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:70 +#: includes/common/payment-gateways/paypal-chained-payments.php:85 +#: includes/common/payment-gateways/skrill.php:87 +#: includes/common/payment-gateways/stripe.php:161 +msgid "SEK - Swedish Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:69 +#: includes/common/payment-gateways/skrill.php:84 +msgid "RON - Romanian Leu New" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:68 +#: includes/common/payment-gateways/paypal-chained-payments.php:83 +#: includes/common/payment-gateways/skrill.php:82 +msgid "PLN - Polish Zloty" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:67 +#: includes/common/payment-gateways/paypal-chained-payments.php:80 +#: includes/common/payment-gateways/stripe.php:143 +msgid "NOK - Norwegian Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:66 +#: includes/common/payment-gateways/skrill.php:75 +#: includes/common/payment-gateways/stripe.php:125 +msgid "LTL - Lithuanian Litas" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:65 +#: includes/common/payment-gateways/paypal-chained-payments.php:69 +#: includes/common/payment-gateways/skrill.php:60 +#: includes/common/payment-gateways/stripe.php:78 +msgid "CHF - Swiss Franc" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:64 +#: includes/common/payment-gateways/skrill.php:76 +msgid "LVL - Latvian Lat" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:63 +#: includes/common/payment-gateways/paypal-chained-payments.php:74 +#: includes/common/payment-gateways/skrill.php:69 +msgid "ILS - Israeli Shekel" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:62 +#: includes/common/payment-gateways/skrill.php:71 +msgid "ISK - Iceland Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:61 +#: includes/common/payment-gateways/paypal-chained-payments.php:76 +#: includes/common/payment-gateways/skrill.php:68 +#: includes/common/payment-gateways/stripe.php:106 +msgid "HUF - Hungarian Forint" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:60 +#: includes/common/payment-gateways/paypal-chained-payments.php:71 +#: includes/common/payment-gateways/skrill.php:62 +#: includes/common/payment-gateways/stripe.php:86 +msgid "DKK - Danish Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:59 +#: includes/common/payment-gateways/skrill.php:67 +#: includes/common/payment-gateways/stripe.php:104 +msgid "HRK - Croatian Kuna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:58 +#: includes/common/payment-gateways/paypal-chained-payments.php:70 +#: includes/common/payment-gateways/skrill.php:61 +msgid "CZK - Czech Koruna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:57 +#: includes/common/payment-gateways/skrill.php:58 +msgid "BGN - Bulgarian Leva" +msgstr "" + +#: includes/common/payment-gateways/payflow/class-mp-gateway-worker-payflow.php:123 +msgid "There was an error connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:344 +msgid "This setting will log all PayFast communication to the \"payfast.log\" file." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:342 +msgid "Log Debugging Info?" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:335 +msgid "DO NOT INPUT A VALUE UNLESS YOU HAVE SET ONE IN THE SETTINGS SECTION OF YOUR PAYFAST SETTINGS." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:333 +msgid "PayFast Passphrase" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:323 +msgid "You can find your credentials on your integration page." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:321 +msgid "PayFast Merchant Credentials" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:311 +msgid "PayFast Mode" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:308 +msgid "PayFast is a payments processing service for South Africa. We make it safe for buyers to send money and easy for sellers to receive money. More Info »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:306 +msgid "PayFast Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:285 +msgid "Your payment via PayFast for this order totaling %s is complete. The transaction number is %s." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:278 +msgid "Your payment via PayFast for this order totaling %s is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:124 +msgid "Your PayFast transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:82 +#: includes/common/payment-gateways/payfast.php:83 +msgid "PayFast" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:157 +msgid "API error: - \"%s\"" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:198 +msgid "The payment request is under process" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:140 +msgid "Order: #" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:116 +msgid "You will be redirected to the Mollie site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:73 +msgid "%sMollie%s provides a fully PCI Compliant and secure way to collect payments via iDeal, Credit Card, Bancontact / Mister Cash, SOFORT Banking, Overbooking, Bitcoin, PayPal, paysafecard and AcceptEmail." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:53 +#: includes/common/payment-gateways/mollie.php:54 +#: includes/common/payment-gateways/mollie.php:195 +#: includes/common/payment-gateways/mollie.php:245 +msgid "Mollie" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:50 +#: includes/common/payment-gateways/paymill.php:56 +#: includes/common/payment-gateways/paypal-chained-payments.php:72 +#: includes/common/payment-gateways/pin.php:60 +#: includes/common/payment-gateways/skrill.php:64 +#: includes/common/payment-gateways/stripe.php:92 +msgid "EUR - Euro" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:306 +msgid "Access Key" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:300 +msgid "You must login to the Mijireh.com dashboard to obtain the Access Key." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:299 +msgid "Credentials" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:289 +msgid "Mijireh Checkout provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:269 +msgid "Mijireh Error: " +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:89 +msgid "You will be redirected to the Mijireh.com site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:87 +msgid "Your Mijireh transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:42 +#: includes/common/payment-gateways/mijireh.php:43 +#: includes/common/payment-gateways/mijireh.php:324 +msgid "Mijireh" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:145 +msgid "These are the manual payment instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:189 +msgid "This is the email text to send to those who have made free order checkouts. You should include your free order instructions / information here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:183 +msgid "This is the free order information to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:182 +msgid "Confirmation User Information" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:177 +msgid "This is the information to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:163 +msgid "If enabled, all free orders will be automatically marked as paid." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:159 +msgid "Payment Status" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:149 +msgid "This gateway is automatically activated if order totalling 0 and it can't be disabled" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:35 +#: includes/common/payment-gateways/free_orders.php:36 +#: includes/common/payment-gateways/free_orders.php:89 +msgid "Free Order" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:34 +#: includes/common/payment-gateways/free_orders.php:197 +msgid "Free Orders" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:515 +msgid "Sandbox API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:266 +#: includes/common/payment-gateways/eway31.php:542 +msgid "eWay Rapid 3.1 Payments (beta)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:403 +msgid "Hosted Payment Page Language" +msgstr "" + +#: includes/common/payment-gateways/eway.php:373 +msgid "Note when testing in sandbox mode it will use the default eWay test API credentials. Also, please note that cart total needs to be a whole number (e.g. 10.00) in order to generate a successful transaction, otherwise the transaction will fail." +msgstr "" + +#: includes/common/payment-gateways/eway.php:267 +msgid "You will be redirected to https://www.eway.com.au to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:380 +msgid "You have chosen to checkout using %s. Please confirm your order details and click \"Submit Order\" when finished." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:272 +#: includes/common/payment-gateways/paymill.php:131 +#: includes/common/payment-gateways/stripe.php:231 +msgid "Security Code " +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Enter in MM/YYYY or MM/YY format" +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Expiration" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:321 +msgid "Delim Data" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:307 +#: includes/common/payment-gateways/paypal-payflow.php:456 +msgid "This text will appear as the footer of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:287 +#: includes/common/payment-gateways/paypal-payflow.php:440 +msgid "Email Customer (on success)" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:278 +msgid "Authorize.net default is \",\". Otherwise, get this from your credit card processor. If the transactions are not going through, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:277 +msgid "Delimeter Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:193 +msgid "Held For Review" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:310 +#: includes/common/payment-gateways/payfast.php:314 +msgid "Test" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:300 +#: includes/common/payment-gateways/pin.php:170 +#: includes/common/payment-gateways/stripe.php:272 +msgid "Secret Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:283 +msgid "Select Your Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:97 +msgid "Your payment will be processed by the iDEAL network" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:208 +msgid "These are the CubePoints to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:203 +msgid "These are the CubePoints instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:266 +msgid "If enabled, all API calls will be made to https://test.bitpay.com." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:263 +msgid "Use Test Mode?" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:259 +msgid "If checked, response fron bitpay will be stored in log file, keep it disabled unless required." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:256 +msgid "Enable Debug Log" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:249 +msgid "Full Notifications" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:231 +#: includes/common/payment-gateways/eway31.php:499 +#: includes/common/payment-gateways/eway31.php:526 +#: includes/common/payment-gateways/mollie.php:83 +#: includes/common/shipping-modules/mp-fedex.php:269 +msgid "API Key" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:222 +msgid "You can now accept a payment from any country on Earth, with no risk of fraud. To use Bitpay, you need to signup on Bitpay. \\n After completing the signup process, you can get api keys at Bitpay API key. You can read more about Bitpay at Bitpay API. \\n Bitpay requires SSL(https) for payment notifications to work." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:61 +msgid "You will be redirected to bitpay.com, for bitcoin payment. It is completely safe." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:346 +msgid "You must login to the 2Checkout vendor dashboard to obtain the seller ID and secret word. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:345 +#: includes/common/payment-gateways/authorizenet-aim.php:239 +#: includes/common/payment-gateways/paymill.php:168 +#: includes/common/payment-gateways/paypal-express.php:704 +#: includes/common/payment-gateways/simplify.php:80 +#: includes/common/payment-gateways/stripe.php:265 +#: includes/common/payment-gateways/wepay.php:158 +msgid "API Credentials" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:325 +#: includes/common/payment-gateways/_bitpay.php:220 +#: includes/common/payment-gateways/_cubepoints.php:185 +#: includes/common/payment-gateways/_ideal.php:268 +#: includes/common/payment-gateways/_payway.php:255 +#: includes/common/payment-gateways/authorizenet-aim.php:219 +#: includes/common/payment-gateways/eway.php:352 +#: includes/common/payment-gateways/eway31.php:460 +#: includes/common/payment-gateways/free_orders.php:147 +#: includes/common/payment-gateways/manual-payments.php:126 +#: includes/common/payment-gateways/mijireh.php:287 +#: includes/common/payment-gateways/mollie.php:71 +#: includes/common/payment-gateways/paymill.php:149 +#: includes/common/payment-gateways/paypal-chained-payments.php:344 +#: includes/common/payment-gateways/paypal-payflow.php:376 +#: includes/common/payment-gateways/pin.php:145 +#: includes/common/payment-gateways/simplify.php:69 +#: includes/common/payment-gateways/skrill.php:121 +#: includes/common/payment-gateways/stripe.php:249 +#: includes/common/payment-gateways/wepay.php:119 +#: includes/common/shipping-modules/mp-fedex.php:243 +#: includes/common/shipping-modules/mp-flat-rate.php:63 +#: includes/common/shipping-modules/mp-pickup.php:140 +#: includes/common/shipping-modules/mp-table-rate.php:94 +#: includes/common/shipping-modules/mp-ups.php:122 +#: includes/common/shipping-modules/mp-usps.php:167 +#: includes/common/shipping-modules/mp-weight-rate.php:110 +msgid "%s Settings" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:136 +msgid "You will be redirected to the 2Checkout site to finalize your payment." +msgstr "" + +#: includes/common/helpers.php:169 includes/public/class-mp-checkout.php:1277 +msgid "Billing" +msgstr "" + +#: includes/common/helpers.php:144 +msgid "FREE" +msgstr "" + +#: includes/common/helpers.php:134 +msgid "Coupons:" +msgstr "" + +#: includes/common/helpers.php:95 +msgid "Qty" +msgstr "" + +#: includes/common/helpers.php:94 +msgid "Sku" +msgstr "" + +#: includes/common/data.php:59 +msgid "Zip Code" +msgstr "" + +#: includes/common/class-mp-taxes.php:336 +msgid "Standard Table" +msgstr "" + +#: includes/common/class-mp-product.php:2698 +msgid "Tweet" +msgstr "" + +#: includes/common/class-mp-product.php:2321 +msgid "Notification Preferences: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2320 +msgid "Edit Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2318 +msgid "Link: %s

    " +msgstr "" + +#: includes/common/class-mp-product.php:2317 +msgid "Current Inventory: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2316 +msgid "Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2314 +msgid "This message is being sent to notify you of low stock of a product in your online store according to your preferences.

    " +msgstr "" + +#: includes/common/class-mp-product.php:1817 +msgid "" +msgstr "" + +#: includes/common/class-mp-product.php:1427 +#: includes/common/class-mp-product.php:1430 +msgid "(tax incl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1422 +#: includes/common/class-mp-product.php:1425 +msgid "(tax excl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1300 +#: includes/common/class-mp-product.php:1315 +msgid "%s each" +msgstr "" + +#: includes/common/class-mp-product.php:988 +msgid "Choose Options" +msgstr "" + +#: includes/common/class-mp-product.php:526 +msgid "Choose a %s" +msgstr "" + +#: includes/common/class-mp-product.php:284 +#: includes/common/class-mp-product.php:292 +#: includes/common/class-mp-product.php:615 +msgid "We're sorry, we only have %d of this item in stock right now." +msgstr "" + +#: includes/common/class-mp-order.php:1456 +msgid "Shipped: Track Shipment" +msgstr "" + +#: includes/common/class-mp-order.php:1049 +msgid "Order Received" +msgstr "" + +#: includes/common/class-mp-order.php:1014 +msgid "In Process" +msgstr "" + +#: includes/common/class-mp-order.php:969 +msgid "Order #" +msgstr "" + +#: includes/common/class-mp-order.php:866 +msgid "Copy billing address to shipping address" +msgstr "" + +#: includes/common/class-mp-order.php:822 +#: includes/public/class-mp-checkout.php:1314 +msgid "Special Instructions" +msgstr "" + +#: includes/common/class-mp-order.php:817 +#: includes/common/payment-gateways/stripe.php:335 +msgid "Email" +msgstr "" + +#: includes/common/class-mp-order.php:813 +#: includes/common/payment-gateways/stripe.php:341 +#: includes/public/class-mp-checkout.php:416 +msgid "Phone" +msgstr "" + +#: includes/common/class-mp-order.php:791 +#: includes/common/payment-gateways/stripe.php:337 +msgid "State" +msgstr "" + +#: includes/common/class-mp-order.php:776 +msgid "Address 1" +msgstr "" + +#: includes/common/class-mp-order.php:766 +msgid "Last Name" +msgstr "" + +#: includes/common/class-mp-order.php:762 +msgid "First Name" +msgstr "" + +#: includes/common/class-mp-installer.php:677 +msgid "MarketPress requires a database update to continue working correctly. Go to update page" +msgstr "" + +#: includes/common/class-mp-installer.php:657 +msgid "MarketPress performed a quick automatic update successfully!" +msgstr "" + +#: includes/common/class-mp-installer.php:653 +msgid "Perform Update" +msgstr "" + +#: includes/common/class-mp-installer.php:647 +msgid "Please update each subsite in your WordPress network where you have older version of the MarketPress plugin." +msgstr "" + +#: includes/common/class-mp-installer.php:641 +msgid "Depending on the amount of products you have, this update could take quite some time. Please keep this window open while the update completes. If you have products with multiple variations, the progress bar may move slower, please don't exit the window." +msgstr "" + +#: includes/common/class-mp-installer.php:632 +msgid "Product Metadata" +msgstr "" + +#: includes/common/class-mp-installer.php:601 +msgid "MarketPress requires a database update to continue working correctly.
    Below you will find a list of items that require your attention." +msgstr "" + +#: includes/common/class-mp-installer.php:600 +msgid "Update MarketPress Data" +msgstr "" + +#: includes/common/class-mp-installer.php:530 +msgid "Update Data" +msgstr "" + +#: includes/common/class-mp-installer.php:67 +msgid "Complete!" +msgstr "" + +#: includes/common/class-mp-installer.php:66 +msgid "Upgrading Database...Please Wait..." +msgstr "" + +#: includes/common/class-mp-installer.php:64 +msgid "An error occurred while updating. Please refresh this page and try again." +msgstr "" + +#: includes/common/class-mp-cart.php:2447 +msgid "Some items in your cart have fallen below the quantity you currently have in your cart. We have adjusted the quantity in your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:2443 +msgid "Some items in your cart are no longer available. We have removed these items from your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:1566 +msgid "item" +msgstr "" + +#: includes/common/class-mp-cart.php:1563 +#: includes/common/class-mp-cart.php:1568 +msgid "items" +msgstr "" + +#: includes/common/class-mp-cart.php:1363 +msgid "Items/Products added to Cart will show here." +msgstr "" + +#: includes/common/class-mp-cart.php:1362 +msgid "Your shopping cart is empty." +msgstr "" + +#: includes/common/class-mp-cart.php:1357 +msgid "View Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1241 +#: includes/common/class-mp-cart.php:1298 +#: includes/public/class-mp-short-codes.php:159 +msgid "Adding..." +msgstr "" + +#: includes/common/class-mp-cart.php:1033 +msgid "Continue Shopping?" +msgstr "" + +#: includes/common/class-mp-cart.php:961 +msgid "Secure Checkout
    Shopping is always safe and secure." +msgstr "" + +#: includes/common/class-mp-cart.php:959 +msgid "You are about to submit your order!
    Please review your order details before continuing. You will be charged immediately upon clicking \"Submit Order\"." +msgstr "" + +#: includes/common/class-mp-cart.php:956 +msgid "Continue »" +msgstr "" + +#: includes/common/class-mp-cart.php:955 +msgid "Submit Order" +msgstr "" + +#: includes/common/class-mp-cart.php:818 +msgid "There are no items in your cart - go add some !" +msgstr "" + +#: includes/common/class-mp-cart.php:816 +msgid "The cart is disabled." +msgstr "" + +#: includes/common/class-mp-cart.php:735 +msgid "Estimated %s" +msgstr "" + +#: includes/common/class-mp-cart.php:717 +msgid "Estimated Shipping" +msgstr "" + +#: includes/common/class-mp-cart.php:697 +msgid "Product Total" +msgstr "" + +#: includes/common/class-mp-cart.php:670 includes/common/class-mp-cart.php:672 +msgid "Estimated Total (%s, %s)" +msgstr "" + +#: includes/common/class-mp-cart.php:668 +msgid "Estimated Total (%s)" +msgstr "" + +#: includes/common/class-mp-cart.php:666 includes/common/class-mp-cart.php:752 +msgid "Estimated Total" +msgstr "" + +#: includes/admin/widgets/product-list.php:247 +msgid "Show Thumbnail Placeholder image (if image is not set)" +msgstr "" + +#: includes/admin/widgets/cart.php:73 +msgid "Display product price" +msgstr "" + +#: includes/admin/widgets/cart.php:71 +msgid "Display product quantity" +msgstr "" + +#: includes/admin/widgets/cart.php:69 +msgid "Display product image" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:93 +msgid "General Shipping Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:773 +msgid "If you are having conflicts with the lightbox library from your theme or another plugin you should uncheck this." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:772 +msgid "Use Built-In Lightbox for Images?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:762 +msgid "Disable Large Image Display?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:688 +msgid "Show Product Image?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:682 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:684 +msgid "Show Tags List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:676 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:678 +msgid "Show Categories List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:671 +msgid "If enabled, description excerpt will be added above Add to cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:669 +msgid "Show Excerpt?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:665 +msgid "If enabled, users will be able to choose how many of the product they want to purchase before adding to their cart. If not checked, quantity could be change later on the cart page." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:663 +msgid "Show Quantity Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:649 +msgid "Settings related to the display of individual product pages." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:648 +msgid "Product Page Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:605 +msgid "Related Products Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:573 +msgid "Show Related Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:568 +msgid "Related Product Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:549 +msgid "Order Status Entries Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:510 +msgid "Sort Products By" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:497 +msgid "Products Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:492 +msgid "Paginate Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:478 +msgid "Excerpts Length" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:473 +msgid "Show Excerpts?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:450 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:746 +msgid "Image Alignment" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:412 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:708 +msgid "Custom Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:401 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:697 +msgid "Large - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:400 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:696 +msgid "Medium - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:399 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:695 +msgid "Thumbnail - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:397 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:693 +msgid "Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:386 +msgid "Select default placeholder image thumbnail when product image is not available (if empty, plugin's built-in image will be used)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:380 +msgid "Show default product placeholder thumbnail when product image is not available?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:374 +msgid "Show Product Thumbnail?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:369 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:658 +msgid "Redirect to cart page for immediate checkout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:368 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:657 +msgid "Stay on current product page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:366 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:655 +msgid "MarketPress supports two \"flows\" for adding products to the shopping cart. After adding a product to their cart, two things can happen:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:365 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:654 +msgid "Add To Cart Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:355 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:628 +msgid "Four" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:354 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:627 +msgid "Three" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:353 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:626 +msgid "Two" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:625 +msgid "One" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:349 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:622 +msgid "Set the number of products that show up in a grid row to best fit your theme" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:348 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:621 +msgid "How many products per row?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:342 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:609 +msgid "Display as grid" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:341 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:608 +msgid "Display as list" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:339 +msgid "Product Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:334 +msgid "Settings related to the display of product lists/grids." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:333 +msgid "Product List/Grid Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:314 +msgid "Show Twitter Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:309 +msgid "Twitter" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:303 +msgid "Show Share Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:297 +msgid "Recommend" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:296 +msgid "Like" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:294 +msgid "Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:283 +msgid "Show Facebook Like Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:278 +msgid "Facebook" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:257 +msgid "Show \"Pin It\" Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:252 +msgid "Pinterest" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:246 +msgid "Social Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:193 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:202 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:211 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:220 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:229 +#: includes/multisite/class-mp-admin-multisite.php:532 +#: includes/multisite/class-mp-admin-multisite.php:541 +#: includes/multisite/class-mp-admin-multisite.php:550 +msgid "Choose a Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:191 +msgid "This page will be used as the root for your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:168 +#: includes/multisite/class-mp-admin-multisite.php:586 +msgid "Create Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "uncropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "cropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:87 +#: includes/multisite/class-mp-admin-multisite.php:121 +#: includes/multisite/class-mp-admin-multisite.php:620 +msgid "An error occurred while creating the store page. Please try again." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:66 +msgid "Choose the gateway(s) that you would like to be available for checkout." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:65 +msgid "Enabled Gateways" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:78 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:146 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:179 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:213 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:274 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:307 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:341 +msgid "Text" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:71 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:139 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:172 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:206 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:267 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:300 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:334 +msgid "Subject" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:52 +msgid "Notification Email" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:510 +msgid "Enabling this option will display label `excl. tax` or `incl. tax` after price" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:509 +msgid "Display tax label?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:504 +msgid "Enabling this option will show Price + Tax, eg. if your price is 100 and your tax 20, your price will be 120" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:416 +#: includes/multisite/class-mp-admin-multisite.php:234 +msgid "Price Format" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:366 +msgid "Enabling this field will display a textbox on the shipping checkout page for users to enter special instructions for their order. Useful for product personalization, etc." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:365 +msgid "Show Special Instructions Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:360 +msgid "Universal" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:359 +msgid "Old" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1167 +#: includes/admin/store-settings/class-mp-store-settings-general.php:358 +msgid "New" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:353 +msgid "If you already use Google Analytics for your website, you can track detailed ecommerce information by enabling this setting. Choose whether you are using the new asynchronous or old tracking code. Before Google Analytics can report ecommerce activity for your website, you must enable ecommerce tracking on the profile settings page for your website. Also keep in mind that some gateways do not reliably show the receipt page, so tracking may not be accurate in those cases. It is recommended to use the PayPal gateway for the most accurate data. More information »" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:347 +msgid "Do you want to display the product price on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:346 +msgid "Show product price on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:340 +msgid "Do you want to display the product quantity on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:339 +msgid "Show product quantity on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:333 +msgid "Do you want to display the product image on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:332 +msgid "Show product image on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:327 +msgid "This option hide floating Mini Cart in top right corner." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:326 +msgid "Disable Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:316 +msgid "If unchecked your Orders admin page will be hidden" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:315 +msgid "Show admin Orders page?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:309 +msgid "Disable Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:303 +msgid "Force Login?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:297 +msgid "Hide Out of Stock Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:555 +msgid "This will prevent multiples of the same downloadable product form being added to the cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:554 +msgid "Limit Digital Products Per-order?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:268 +msgid "If you're having issues downloading large files and have worked with your hosting provider to increase your memory limits, try enabling this - just keep in mind, it's not as secure!" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:267 +msgid "Use Alternative Download Method?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:252 +msgid "Download Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:230 +msgid "Change product post type" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:51 +msgid "%s Capabilities" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-addons.php:47 +msgid "Store Settings: Add Ons: %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:254 +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:56 +msgid "Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Edit Product Attribute %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:246 +msgid "Exporters" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:238 +msgid "Short Codes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:207 +msgid "An appropriate message for key \"%s\" could not be found." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:204 +msgid "Product attribute updated successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:203 +msgid "Product attribute added successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +msgid "Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +#: includes/admin/store-settings/class-mp-store-settings-addons.php:121 +msgid "Store Settings: Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "Store Settings: Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:118 +msgid "Store Settings: Product Tags" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:117 +msgid "Store Settings: Product Categories" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Store Settings: Product Attributes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +msgid "Store Settings: Payments" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:114 +msgid "Store Settings: Shipping" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +#: includes/admin/class-mp-store-settings-admin.php:226 +msgid "Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +msgid "Store Settings: Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:112 +msgid "Store Settings: Presentation" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:111 +msgid "Store Settings: General" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1489 +msgid "Select a Product" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1447 +msgid "Reset to Defaults" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1446 +msgid "Insert Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1202 +#: includes/admin/class-mp-shortcode-builder.php:1227 +#: includes/admin/class-mp-shortcode-builder.php:1252 +msgid "The text to show in the link." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1196 +#: includes/admin/class-mp-shortcode-builder.php:1221 +#: includes/admin/class-mp-shortcode-builder.php:1246 +msgid "Whether to return a clickable link or url." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1177 +msgid "Whether to display the cart only on store pages or not." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1171 +msgid "Whether to show or hide the product price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1165 +msgid "Whether to show or hide the product quantity." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1159 +msgid "Whether to show or hide the product image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1153 +msgid "The text displayed before the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1147 +msgid "The title of the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1058 +#: includes/admin/class-mp-shortcode-builder.php:1121 +msgid "A label to prepend to the price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1032 +#: includes/admin/class-mp-shortcode-builder.php:1127 +msgid "What context for display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1004 +msgid "Set the alignment of the image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:998 +msgid "Set a custom pixel width/height. If omitted defaults to the size set by \"context\"." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:993 +msgid "Widget" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:988 +msgid "What context for preset size options." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:982 +#: includes/admin/class-mp-shortcode-builder.php:1026 +#: includes/admin/class-mp-shortcode-builder.php:1052 +#: includes/admin/class-mp-shortcode-builder.php:1077 +#: includes/admin/class-mp-shortcode-builder.php:1096 +#: includes/admin/class-mp-shortcode-builder.php:1115 +msgid "The ID of the product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:963 +msgid "Whether to display the product meta (e.g. price, buy button)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:738 +#: includes/admin/class-mp-shortcode-builder.php:905 +#: includes/admin/class-mp-shortcode-builder.php:958 +#: includes/admin/class-mp-shortcode-builder.php:992 +#: includes/admin/class-mp-shortcode-builder.php:1035 +#: includes/admin/class-mp-shortcode-builder.php:1130 +#: includes/admin/class-mp-shortcode-builder.php:1349 +msgid "List" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:957 +#: includes/admin/class-mp-shortcode-builder.php:991 +#: includes/admin/class-mp-shortcode-builder.php:1034 +#: includes/admin/class-mp-shortcode-builder.php:1129 +msgid "Single" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:953 +msgid "Whether and what context of image size to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:948 +msgid "Full" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:943 +msgid "Whether and what type of content to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:937 +msgid "Whether to display the product title." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:931 +msgid "The ID of the product to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:747 +#: includes/admin/class-mp-shortcode-builder.php:914 +msgid "Hide" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:746 +#: includes/admin/class-mp-shortcode-builder.php:913 +msgid "Show" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:744 +#: includes/admin/class-mp-shortcode-builder.php:911 +msgid "Whether or not to show the product filters." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:724 +#: includes/admin/class-mp-shortcode-builder.php:891 +#: includes/admin/class-mp-shortcode-builder.php:1335 +msgid "Limits list to a specific product tag." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:713 +#: includes/admin/class-mp-shortcode-builder.php:880 +#: includes/admin/class-mp-shortcode-builder.php:1324 +msgid "Limits list to a specific product category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:706 +#: includes/admin/class-mp-shortcode-builder.php:873 +#: includes/admin/class-mp-shortcode-builder.php:1317 +msgid "Direction to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:684 +#: includes/admin/class-mp-shortcode-builder.php:851 +#: includes/admin/class-mp-shortcode-builder.php:1295 +msgid "What field to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:678 +#: includes/admin/class-mp-shortcode-builder.php:845 +#: includes/admin/class-mp-shortcode-builder.php:1283 +msgid "How many products to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:672 +#: includes/admin/class-mp-shortcode-builder.php:839 +#: includes/admin/class-mp-shortcode-builder.php:1277 +msgid "The page number to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:666 +#: includes/admin/class-mp-shortcode-builder.php:833 +#: includes/admin/class-mp-shortcode-builder.php:1271 +msgid "Whether to paginate the product list. This is useful to only show a subset." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:808 +msgid "How many related items to show." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:790 +msgid "How to relate the products" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:784 +msgid "The product to show related items for." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:765 +msgid "The maximum number of products to display" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:647 +msgid "Comma separated list of tags (term_id) to include. For example, include=5,27 means tags that have the term_id 5 or 27 will be the only tags displayed. Defaults to include everything." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:641 +msgid "Comma separated list of tags (term_id) to exclude. For example, exclude=5,27 means tags that have the term_id 5 or 27 will NOT be displayed. Defaults to exclude nothing." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:633 +#: includes/admin/class-mp-shortcode-builder.php:1420 +msgid "Sort order." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:629 +#: includes/admin/class-mp-shortcode-builder.php:1416 +msgid "Count" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:626 +#: includes/admin/class-mp-shortcode-builder.php:1413 +msgid "Order of the tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:620 +msgid "The text/space between tags)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:616 +msgid "UL with a class of \"wp-tag-cloud\"" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:615 +msgid "separated by whitespace defined by \"separator\" parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:613 +msgid "Format of the cloud display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:607 +msgid "The number of actual tags to display in the cloud. (Use \"0\" to display all tags.)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:601 +msgid "Unit of measure as pertains to the smallest and largest values. This can be any CSS length value, e.g. pt, px, em, %." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:595 +msgid "The text size of the tag with the largest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:589 +msgid "The text size of the tag with the smallest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:570 +msgid "The \"tabindex\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:564 +msgid "The \"name\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:558 +msgid "The \"id\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:552 +msgid "Which category ID is selected." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:540 +msgid "The max depth. This is ignored unless hierarchical is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:536 +#: includes/multisite/template-functions.php:816 +msgid "No Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:414 +#: includes/admin/class-mp-shortcode-builder.php:546 +msgid "Calculates link or post counts by including items from child categories. If show_counts and hierarchical are true this is automatically set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:409 +msgid "Value of n (some number) specifies the depth (or level) to descend in displaying Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:408 +msgid "Show only top level Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:407 +msgid "All Categories displayed in flat (no indent) form (overrides hierarchical)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:406 +msgid "All Categories and child Categories (Default)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:402 +msgid "This parameter controls how many levels in the hierarchy of Categories are to be included in the list of Categories. NOTE: The \"hierarchical\" argument, which is disabled by default, will override the depth argument, unless it is true. When the argument is false, it will display all of the categories. When it is enabled it will use the value in the \"depth\" argument." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:396 +#: includes/admin/class-mp-shortcode-builder.php:1394 +msgid "Sets the number of Categories to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:390 +#: includes/admin/class-mp-shortcode-builder.php:534 +msgid "Set the text to show when no categories are listed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:384 +msgid "Set the title and style of the outer list item. If present but empty, the outer list item will not be displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:378 +#: includes/admin/class-mp-shortcode-builder.php:528 +msgid "Display sub-categories as inner list items (below the parent list item) or inline." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:368 +#: includes/admin/class-mp-shortcode-builder.php:511 +msgid "Exclude category-tree from the results. The parameter include must be empty. If the hierarchical parameter is true, then use exclude instead of exclude_tree." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:354 +msgid "Only include these categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:340 +#: includes/admin/class-mp-shortcode-builder.php:356 +#: includes/admin/class-mp-shortcode-builder.php:370 +#: includes/admin/class-mp-shortcode-builder.php:496 +#: includes/admin/class-mp-shortcode-builder.php:513 +msgid "Select Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:338 +#: includes/admin/class-mp-shortcode-builder.php:494 +msgid "Exclude one or more categories from the results. The parameter include must be empty." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:332 +msgid "Set a URI for an image (usually an rss feed icon) to act as a link to each categories' rss-2 feed. This parameter overrides the feed parameter. There is no default for this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:320 +msgid "Display a link to each category's rss-2 feed and set the link text to display. The default is no text and no feed displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:313 +#: includes/admin/class-mp-shortcode-builder.php:487 +msgid "Any" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:307 +#: includes/admin/class-mp-shortcode-builder.php:481 +msgid "Only display categories that are children of the category identified by this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:301 +msgid "Sets whether a category's description is inserted into the title attribute of the links created (i.e. <a title=\"<em>Category Description</em>\" href=\"...)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:295 +#: includes/admin/class-mp-shortcode-builder.php:475 +msgid "Toggles the display of categories with no posts." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:289 +#: includes/admin/class-mp-shortcode-builder.php:469 +#: includes/admin/class-mp-shortcode-builder.php:1388 +msgid "Toggles the display of the current count of posts in each category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:279 +msgid "Style to display the categories list in. A value of list displays the categories as list items while none generates no special display method (the list items are separated by
    tags)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:269 +#: includes/admin/class-mp-shortcode-builder.php:449 +#: includes/admin/class-mp-shortcode-builder.php:1378 +msgid "Sort order for categories (either ascending or descending)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:259 +#: includes/admin/class-mp-shortcode-builder.php:439 +#: includes/admin/class-mp-shortcode-builder.php:1368 +msgid "Sort categories alphabetically, by unique Category ID, or by the count of posts in that Category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:253 +#: includes/admin/class-mp-shortcode-builder.php:433 +msgid "If a value is entered, causes the display of a link to all categories if the style is set to list." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:219 +msgid "Select an Action" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:217 +msgid "What would you like to do?" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:216 +#: includes/admin/class-mp-shortcode-builder.php:1522 +msgid "Add E-Commerce Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:197 +msgid "Display a list of links to your store pages." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:196 +msgid "Display a link or url to the order status page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:195 +msgid "Display a link or url to the current products list page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:194 +msgid "Display a link or url to the current store page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:193 +msgid "Display a link or url to the current shopping cart page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:192 +msgid "Display the cart widget." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:191 +msgid "Display the full product meta box with price and buy now/add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:190 +msgid "Display the product stock." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:189 +msgid "Display the product SKU number(s)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:188 +msgid "Display the product price (and sale price)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:187 +msgid "Display the buy or add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:186 +msgid "Display the featured image of a given product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:185 +msgid "Display a single product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:184 +msgid "Display a list of products according to preference." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:183 +msgid "Display products related to the one being viewed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:182 +msgid "Display a list of popular products ordered by sales." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:180 +msgid "Display an HTML dropdown of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:179 +msgid "Display an HTML list of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:178 +msgid "Display a cloud or list of your product tags." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:655 +msgid "Setup your payment gateway" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:643 +#: includes/admin/class-mp-setup-wizard.php:649 +msgid "Other Gateways" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:617 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:150 +msgid "Select which calculated shipping methods the customer will be able to choose from." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:601 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:134 +#: includes/public/class-mp-checkout.php:82 +msgid "Shipping Method" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:568 +msgid "I want to charge shipping" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:523 +#: includes/admin/store-settings/class-mp-store-settings-general.php:503 +msgid "Show Price + Tax?" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:507 +msgid "I.e. Taxes, VAT, GST, etc" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:491 +#: includes/admin/store-settings/class-mp-store-settings-general.php:471 +msgid "Current Rates" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:473 +msgid "Default Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:434 +#: includes/admin/class-mp-setup-wizard.php:442 +#: includes/admin/store-settings/class-mp-store-settings-general.php:386 +#: includes/admin/store-settings/class-mp-store-settings-general.php:394 +#: includes/multisite/class-mp-admin-multisite.php:204 +#: includes/multisite/class-mp-admin-multisite.php:212 +msgid "Select a Currency" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:414 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:105 +msgid "Choose Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:411 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:103 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:104 +msgid "All Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:410 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:102 +msgid "These are the countries that you will ship to." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:409 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:101 +msgid "Target Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:401 +msgid "Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:387 +#: includes/admin/store-settings/class-mp-store-settings-general.php:640 +msgid "Zip/Postal Code Label" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:352 +#: includes/admin/store-settings/class-mp-store-settings-general.php:606 +msgid "Select a State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:335 +#: includes/admin/store-settings/class-mp-store-settings-general.php:590 +msgid "Select A Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:332 +#: includes/admin/store-settings/class-mp-store-settings-general.php:587 +msgid "Select a Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:324 +msgid "Location" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:304 +#: includes/admin/class-mp-setup-wizard.php:312 +#: includes/admin/class-mp-store-settings-admin.php:129 +#: includes/admin/class-mp-store-settings-admin.php:262 +msgid "Quick Setup" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:289 +msgid "MarketPress setup is not complete! Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2479 +msgid "Enter your product name here" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2440 +msgid "Select a %s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2426 +msgid "Each product variation needs to have product attributes assigned to it so the system knows how to differentiate one product variation from the other. It is important that you assign a category to this product before choosing any attributes." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2409 +msgid "If you would like this variation to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2320 +msgid "Sale Price (if applicable)" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2281 +msgid "If you would like the description to be different than the main product enter it here." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2229 +msgid "Image" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2202 +#: includes/admin/class-mp-shortcode-builder.php:226 +msgid "Attributes" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2166 +msgid "Create your product variations here. You can reorder variations by using the number to left of each variation, or delete one by clicking the \"x\" to the right of each variation. NOTE: The variation that shows up first in this list will be considered the \"main variation\". The details from this variation will be used in product listings." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2061 +#: includes/admin/class-mp-products-admin.php:2332 +msgid "Value must be less than regular price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2043 +#: includes/admin/class-mp-products-admin.php:2306 +msgid "Regular Price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2023 +#: includes/admin/class-mp-products-admin.php:2286 +msgid "External URL" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1988 +#: includes/admin/class-mp-products-admin.php:2245 +msgid "Enter the quantity that you have available to sell." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1987 +#: includes/admin/class-mp-products-admin.php:2244 +msgid "Inventory Count" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1977 +#: includes/admin/class-mp-products-admin.php:2234 +msgid "Track Inventory?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1871 +msgid "%1$sProduct Images%2$s %3$sAdd images of the product. The first image on the list is the featured image for this product (you can reorder images on the list)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1806 +msgid "Add variations for this product. e.g. If you are selling t-shirts, you can create Color & Size variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1804 +msgid "%3$sAdd variations for%2$s %1$sProduct%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1776 +msgid "This product has a multiple variations %1$s(e.g. Multiple colors, sizes)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1775 +msgid "This is a unique product without variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1700 +msgid "Extra Shipping Cost %1$s(if applicable)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1659 +#: includes/admin/class-mp-products-admin.php:2112 +#: includes/admin/class-mp-products-admin.php:2359 +msgid "Weight" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1636 +#: includes/admin/class-mp-products-admin.php:2098 +#: includes/admin/class-mp-products-admin.php:2416 +msgid "Please enter a valid tax rate" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1531 +msgid "Limit Per Order %1$s(limit the number of the item a shopper can buy per order)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1513 +msgid "SKU %1$s(Stock Keeping Unit)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "%1$sPrice, Inventory & Variants%2$s %3$sSet price, manage inventory and create Product Variants (if appropriate for your product).%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "Product Variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1480 +msgid "External / Affiliate Link" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1471 +msgid "Digital Download" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1470 +msgid "Physical / Tangible Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1464 +msgid "Product Kind %1$s(Physical Product, Digital, etc)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1426 +msgid "Choose Products" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1420 +msgid "If you would like, you can choose specific related products instead of using the ones generated by MarketPress" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1019 +msgid "Changes saved successfully" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:826 +msgid "Option cannot be saved. Try again." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:821 +msgid "Option saved successfully." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:467 +msgid "Img" +msgstr "" + +#: includes/admin/class-mp-product-attributes-list-table.php:57 +msgid "Product attribute(s) deleted successfully." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:162 +msgid "- Create New Variation -" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:144 +msgid "Only lowercase letters and dashes (-) are allowed." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:139 +msgid "If a slug is not entered, it will be generated automatically. Max 32 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:138 +#: includes/admin/class-mp-product-attributes-list-table.php:23 +msgid "Slug" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:130 +msgid "Max 45 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:123 +msgid "Use the numbers on the left to sort. To delete - click the \"X\" to the right of each row." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:122 +msgid "Attribute Options" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:121 +msgid "Add Option" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:105 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:523 +msgid "Sort Order" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:87 +msgid "Alphabetical" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:86 +msgid "ID" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:84 +msgid "Select how the options will be sorted." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:82 +msgid "Sort By" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:75 +msgid "The name of the attribute (e.g. color, size, etc)" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:74 +msgid "Attribute Name" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:69 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Product Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Product Attributes" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:71 +msgid "You can choose to make this page one of the following core store pages." +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:66 +msgid "Network Store Base" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:61 +msgid "Checkout Page" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:52 +msgid "Store Page Settings" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1108 +msgid "Display billing/shipping info for this customer" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1097 +msgid "View order “%s”" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1072 +msgid "Flag as:" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:952 +msgid "Move To Trash" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:948 +msgid " Received" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:927 +msgid "Enter coupon code here" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:812 +msgid "The order status could not be updated due to unexpected error. Please try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:740 +msgid "An invalid bulk action was requested. Please go back and try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:692 +msgid "The order status for order ID %1$s was updated successfully." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:688 +msgid "Order statuses successfully updated." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:530 +msgid "Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:518 +msgid "Actual Shipping Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:513 +msgid "Method Paid For" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:504 +msgid "Amount Collected" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:477 +msgid "DHL" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:408 +msgid "There is no IPN history to show at this time" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:345 +msgid "Type" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:343 +msgid "Gateway" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:301 +#: includes/common/template-functions.php:528 +msgid "Order History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:291 +msgid "IPN History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:283 +msgid "Customer Info" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:279 +msgid "Order Details" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:157 +msgid "All Dates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:320 +msgid "Add Pages to Menu" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:318 +msgid "Add-ons" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:317 +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "User Capabilities" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:316 +#: includes/admin/class-mp-setup-wizard.php:631 +#: includes/admin/store-settings/class-mp-store-settings-payments.php:50 +msgid "Payment Gateways" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:315 +msgid "Shipping Rates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:312 +msgid "Configure" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:309 +#: includes/admin/class-mp-products-admin.php:466 +#: includes/admin/class-mp-shortcode-builder.php:797 +msgid "Tags" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:308 +#: includes/admin/class-mp-products-admin.php:465 +msgid "Categories" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:300 +msgid "Manage" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:297 +msgid "Here's some quick links to manage your store and products." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:288 +msgid "low in stock" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:287 +msgid "%s product" +msgid_plural "%s products" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-dashboard-widgets.php:280 +msgid "received" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:279 +#: includes/admin/class-mp-dashboard-widgets.php:283 +msgid "%s order" +msgid_plural "%s orders" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-dashboard-widgets.php:276 +msgid "Stock & Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:261 +msgid "Last 30 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:256 +msgid "Last 7 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:251 +msgid "Yesterday" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:248 +#: includes/admin/class-mp-dashboard-widgets.php:253 +#: includes/admin/class-mp-dashboard-widgets.php:258 +#: includes/admin/class-mp-dashboard-widgets.php:263 +msgid " Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:246 +msgid "Today" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:241 +msgid "Welcome back! Here's a quick summary of your store's performance." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:196 +#: includes/admin/class-mp-products-admin.php:895 +msgid "No products out of stock." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:136 +#: includes/admin/class-mp-products-admin.php:839 +msgid "Stock Level" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:135 +#: includes/admin/class-mp-products-admin.php:838 +msgid "Variation" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:121 +msgid "Low Stock (%s)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:116 +msgid "Store Management" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:115 +msgid "Store Reports" +msgstr "" + +#: includes/admin/class-mp-ajax.php:579 +#: includes/admin/class-mp-orders-admin.php:520 +#: includes/common/payment-gateways/2checkout.php:370 +#: includes/common/payment-gateways/authorizenet-aim.php:264 +#: includes/common/payment-gateways/mollie.php:93 +#: includes/common/payment-gateways/paymill.php:196 +#: includes/common/payment-gateways/pin.php:190 +#: includes/common/payment-gateways/skrill.php:157 +#: includes/common/payment-gateways/skrill.php:168 +#: includes/common/payment-gateways/wepay.php:143 +#: includes/public/class-mp-checkout.php:404 +msgid "Select One" +msgstr "" + +#: includes/admin/class-mp-ajax.php:511 +msgid "Oops... we could not locate any orders by that ID. Please double check your order ID and try again." +msgstr "" + +#: includes/admin/class-mp-ajax.php:482 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:166 +#: includes/multisite/class-mp-admin-multisite.php:584 +msgid "Edit Page" +msgstr "" + +#: includes/admin/class-mp-ajax.php:346 +msgid "Cancel " +msgstr "" + +#: includes/admin/class-mp-ajax.php:345 +msgid "Save " +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "Edit Description" +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "HTML Markup" +msgstr "" + +#: includes/admin/class-mp-ajax.php:333 +msgid "Plain Text Only" +msgstr "" + +#: includes/admin/class-mp-ajax.php:329 +msgid "Additional Content / Information for this Variation" +msgstr "" + +#: includes/admin/class-mp-ajax.php:317 +#: includes/admin/class-mp-products-admin.php:1762 +msgid "Allow this product to be purchased even if it's out of stock" +msgstr "" + +#: includes/admin/class-mp-ajax.php:313 +#: includes/admin/class-mp-products-admin.php:1711 +msgid "Track Product Inventory" +msgstr "" + +#: includes/admin/class-mp-ajax.php:300 +msgid "Extra Shipping Cost (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:295 +msgid "Ounces:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:294 +msgid "Pounds:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:292 +msgid "Kilograms:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:287 +#: includes/admin/class-mp-products-admin.php:1649 +msgid "Charge Shipping" +msgstr "" + +#: includes/admin/class-mp-ajax.php:273 +#: includes/admin/class-mp-products-admin.php:1623 +#: includes/admin/store-settings/class-mp-store-settings-general.php:454 +msgid "Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:272 +#: includes/admin/class-mp-products-admin.php:1622 +#: includes/admin/class-mp-products-admin.php:2090 +#: includes/admin/class-mp-products-admin.php:2408 +msgid "Special Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:271 +#: includes/admin/class-mp-products-admin.php:1625 +#: includes/admin/class-mp-products-admin.php:2092 +msgid "If you would like this product to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-ajax.php:268 +#: includes/admin/class-mp-products-admin.php:1599 +msgid "Charge Taxes (Special Rate)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:256 +#: includes/admin/class-mp-products-admin.php:1593 +#: includes/admin/class-mp-products-admin.php:2077 +#: includes/admin/class-mp-products-admin.php:2348 +msgid "End Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:255 +#: includes/admin/class-mp-products-admin.php:1589 +#: includes/admin/class-mp-products-admin.php:2072 +msgid "Start Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:1568 +msgid "Enter Sale Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:250 +#: includes/admin/class-mp-products-admin.php:1547 +msgid "Set up a Sale for this Product" +msgstr "" + +#: includes/admin/class-mp-ajax.php:206 includes/admin/class-mp-ajax.php:223 +msgid "Enter " +msgstr "" + +#: includes/admin/class-mp-ajax.php:193 +msgid "Browse" +msgstr "" + +#: includes/admin/class-mp-ajax.php:184 includes/admin/class-mp-ajax.php:192 +msgid "http://" +msgstr "" + +#: includes/admin/class-mp-ajax.php:183 +msgid "External Product URL" +msgstr "" + +#: includes/admin/class-mp-ajax.php:237 +msgid "Limit Per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:177 +#: includes/admin/class-mp-products-admin.php:1520 +msgid "Enter Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:174 +#: includes/admin/class-mp-products-admin.php:1512 +msgid "Enter SKU" +msgstr "" + +#: includes/admin/class-mp-ajax.php:173 +msgid "(Stock Keeping Unit)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:158 +msgid "Remove Image" +msgstr "" + +#: includes/admin/class-mp-ajax.php:74 +msgid "Variation Draft" +msgstr "" + +#: includes/admin/class-mp-admin.php:296 +#: includes/admin/class-mp-dashboard-widgets.php:70 +msgid "Please wait...saving in progress..." +msgstr "" + +#: includes/admin/class-mp-admin.php:295 +#: includes/admin/class-mp-dashboard-widgets.php:69 +msgid "Input is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:294 +#: includes/admin/class-mp-dashboard-widgets.php:68 +msgid "Valid number is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:292 +#: includes/admin/class-mp-dashboard-widgets.php:66 +msgid "Delete %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:291 +#: includes/admin/class-mp-dashboard-widgets.php:65 +msgid "Delete %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:290 +#: includes/admin/class-mp-dashboard-widgets.php:64 +msgid "Update inventory for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:289 +#: includes/admin/class-mp-dashboard-widgets.php:63 +msgid "Update inventory for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:288 +#: includes/admin/class-mp-dashboard-widgets.php:62 +msgid "Update price for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:287 +#: includes/admin/class-mp-dashboard-widgets.php:61 +msgid "Update prices for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:285 +#: includes/admin/class-mp-dashboard-widgets.php:59 +msgid "Creating variations, please wait..." +msgstr "" + +#: includes/admin/class-mp-admin.php:96 +msgid "The following payment gateways have been deprecated, Cubepoints, Bitpay, iDEAL, Skrill, Google Checkout. If you were using one of these gateways, please setup a new payment gateway here." +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:61 +msgid "Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:71 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:71 +#: includes/common/class-mp-gdpr.php:399 includes/common/class-mp-order.php:872 +#: includes/common/helpers.php:164 includes/public/class-mp-checkout.php:1434 +msgid "Shipping Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:66 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:66 +#: includes/common/class-mp-gdpr.php:392 includes/common/class-mp-order.php:864 +#: includes/common/helpers.php:163 includes/public/class-mp-checkout.php:1427 +msgid "Billing Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:61 +msgid "Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:258 +msgid "Shipping Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:256 +msgid "Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:235 +msgid "Payment Method: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:79 +msgid "The dir %s not exist or not writeable" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:239 +msgid "Shop header/logo" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:233 +msgid "Choose a template" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:226 +msgid "Template Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:221 +msgid "Disable automatic creation/attachment of invoices when only free products are ordered" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:220 +msgid "Disable for free products" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:216 +msgid "Attach invoice to" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:214 +msgid "Customer Order Shipped email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:212 +msgid "Customer New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:211 +msgid "Admin New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:206 +msgid "download" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:205 +msgid "How do you want to view the PDF?" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:203 +msgid "Open the PDF in a new browser tab/window" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:202 +msgid "Download the PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:158 +msgid "Export PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:103 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:106 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:109 +msgid "You can't download this order invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:76 +msgid "Invalid Request" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:72 +msgid "Order not exist!" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:67 +msgid "Invalid ID" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1293 +msgid "Coupon added successfully" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1292 +msgid "Please enter a code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1247 +msgid "No end" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1200 +msgid "Valid Dates" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1195 +msgid "Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1027 +msgid "No Coupons found in Trash" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1026 +msgid "No Coupons Found" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1025 +msgid "Search Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1024 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1028 +msgid "View Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1023 +msgid "New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1020 +msgid "Create New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1017 +msgid "Manage Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1002 +msgid "An error occurred while removing your coupon. Please try again." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:964 +msgid "Coupon can't be applied to this cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:951 +msgid "Invalid coupon code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:794 +msgid "Help Text" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:789 +msgid "Form Title" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:783 +msgid "Coupons Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:764 +msgid "End Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:758 +msgid "Does coupon have an end date?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:696 +msgid "Select Products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:688 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:723 +#: includes/common/payment-gateways/paypal-payflow.php:402 +msgid "User" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:638 +msgid "Max Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:636 +msgid "Enter the maximum number of times this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:623 +msgid "Leave blank to allow all other coupons." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:622 +msgid "Select combinable coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:618 +msgid "Can this coupon be combined with other coupons?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:613 +msgid "Apply to each applicable item once per cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:612 +msgid "Apply to each applicable item and quantity ordered" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:609 +msgid "How should the discount amount be applied?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:605 +msgid "Discount Amount" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:604 +msgid "Value must either be a decimal number or a percentage" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:602 +msgid "If you would like to give a percentage-based discount make sure to include the percent (%) symbol. Otherwise, the discount will be applied as a fixed amount off." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:595 +msgid "Letters and Numbers only." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:589 +msgid "Coupon Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:447 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:795 +msgid "More than one code? That's OK! Just be sure to enter one at a time." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:444 +msgid "Apply Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:314 +msgid "Coupon Discounts" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:89 +msgid "1 add-on disabled" +msgid_plural "%s add-ons disabled" +msgstr[0] "" +msgstr[1] "" + +#: includes/addons/class-mp-addons-list-table.php:84 +msgid "1 add-on enabled" +msgid_plural "%s add-ons enabled" +msgstr[0] "" +msgstr[1] "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Disabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Enable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:129 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:67 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:135 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:168 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:202 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:263 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:296 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:330 +msgid "Enabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +msgid "Disable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:34 +msgid "Disable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:33 +msgid "Enable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:21 +#: includes/admin/class-mp-products-admin.php:2280 +#: includes/common/class-mp-product.php:2916 +msgid "Description" +msgstr "" + +#: includes/common/template-functions.php:2889 +#: includes/multisite/template-functions.php:407 +msgid "Popularity (Least Popular - Most Popular)" +msgstr "" + +#: includes/common/template-functions.php:2888 +#: includes/multisite/template-functions.php:406 +msgid "Popularity (Most Popular - Least Popular)" +msgstr "" + +#: includes/common/template-functions.php:2885 +#: includes/multisite/template-functions.php:403 +msgid "Name (Z-A)" +msgstr "" + +#: includes/common/template-functions.php:2884 +#: includes/multisite/template-functions.php:402 +msgid "Name (A-Z)" +msgstr "" + +#: includes/common/template-functions.php:2883 +#: includes/multisite/template-functions.php:401 +msgid "Release Date (Oldest to Latest)" +msgstr "" + +#: includes/common/template-functions.php:2882 +#: includes/multisite/template-functions.php:400 +msgid "Release Date (Latest to Oldest)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:284 +msgid "paid" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "One Time Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Customer Counter" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Daily Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:182 +msgid "For the most accurate rates, please select the appropriate pick up type for your business." +msgstr "" + +#: includes/admin/class-mp-admin.php:374 +msgid "Page saved." +msgstr "" + +#: includes/admin/class-mp-admin.php:370 +msgid "Custom field deleted." +msgstr "" + +#: includes/admin/class-mp-admin.php:369 +msgid "Custom field updated." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:541 +msgid "%s - The payment request expired, - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:536 +msgid "%s - The payment not credited in merchants bitpay account, action required. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:252 +msgid "If enabled, you will recieve an email for each status update on payment." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:240 +msgid "Speed at which the bitcoin transaction registers as \"confirmed\" to the store. This overrides your merchant settings on the Bitpay website." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:238 +msgid "Transaction Speed" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:244 +msgid "Low" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:243 +msgid "Medium" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:242 +msgid "High" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:177 +#: includes/common/payment-gateways/_bitpay.php:517 +#: includes/common/payment-gateways/_bitpay.php:522 +msgid "%s - The payment request is under process. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:175 +#: includes/common/payment-gateways/_bitpay.php:527 +msgid "%s - The payment request has been processed - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:150 +#: includes/common/payment-gateways/_bitpay.php:294 +msgid "Incorrect order invoice, please contact site administrator" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:141 +msgid "We could not verify order invoice details, please try again or contact site administrator for help" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:81 +msgid "Login to Simplify to get your API credentials. Enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:605 +#: includes/common/payment-gateways/paypal-express.php:647 +msgid "Express Checkout is PayPal's premier checkout solution, which streamlines the checkout process for buyers and keeps them on your site after making a purchase. Unlike PayPal Pro, there are no additional fees to use Express Checkout, though you may need to do a free upgrade to a business account. More Info »" +msgstr "" + +#. Plugin URI of the plugin/theme +msgid "https://premium.wpmudev.org/project/e-commerce/" +msgstr "" + +#. Author of the plugin/theme +msgid "WPMU DEV" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:541 +#: includes/admin/class-mp-orders-admin.php:543 +msgid "Tracking Number" +msgstr "" + +#: includes/common/class-mp-order.php:805 +#: includes/common/payment-gateways/stripe.php:336 +#: includes/public/class-mp-checkout.php:402 +msgid "Country" +msgstr "" + +#: includes/common/class-mp-order.php:784 +#: includes/common/payment-gateways/stripe.php:338 +msgid "City" +msgstr "" + +#: includes/common/class-mp-order.php:780 +msgid "Address 2" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:340 +msgid "Address" +msgstr "" + +#: includes/common/class-mp-cart.php:752 includes/common/class-mp-gdpr.php:378 +msgid "Order Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:360 +msgid "Payment Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:347 +msgid "Transaction ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:207 +msgid "The WePay Card Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:186 +#: includes/common/shipping-modules/mp-fedex.php:283 +msgid "Account ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:179 +msgid "Access Token" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:172 +msgid "Client Secret" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:165 +msgid "Client ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:159 +msgid "You must login to WePay to get your API credentials. Make sure to check \"Tokenize credit cards\" option under \"API Keys\" section of your WePay app." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:154 +msgid "When in live mode it is recommended to use SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:148 +msgid "Donation" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:147 +msgid "Event" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:146 +msgid "Personal" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:145 +msgid "Service" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:144 +msgid "Goods" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:141 +msgid "Choose type of payments" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:140 +msgid "Checkout Type" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:134 +msgid "Staging" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:131 +msgid "Choose STAGING if you have registered the app on stage.wepay.com, or PRODUCTION if you registered on www.wepay.com" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:36 +#: includes/common/payment-gateways/wepay.php:299 +msgid "WePay" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:366 +msgid "Rejected - A payment was rejected." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:360 +msgid "Failed - A payment was rejected due to an error." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:342 +msgid "PayWay balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:298 +msgid "Full path of the cacerts.crt file" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:284 +msgid "User Name" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:277 +msgid "Biller Code" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:273 +msgid "Log Directory" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:266 +msgid "Encryption Key" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:60 +msgid "Your PayWay transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:40 +#: includes/common/payment-gateways/_payway.php:41 +msgid "PayWay" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:862 +msgid "You must register this application with PayPal using your business account login to get an Application ID that will work with your API credentials. A bit of a hassle, but worth it! In the near future we will be looking for ways to simplify this process. Register then submit your application while logged in to the developer portal. Note that you do not need an Application ID for testing in sandbox mode. More Information »" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:818 +#: includes/common/payment-gateways/paypal-chained-payments.php:840 +#: includes/common/payment-gateways/paypal-express.php:705 +msgid "You must login to PayPal and create an API signature to get your credentials. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:378 +msgid "Use Payflow payment gateway to accept online payments using your Internet merchant account and processing network. PayPal Payflow Pro is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:595 +msgid "Tags Only" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:594 +msgid "Category Only" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:795 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:593 +msgid "Category & Tags" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:591 +msgid "Relate Products By" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1008 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:455 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:751 +msgid "Right" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1007 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:454 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:749 +msgid "Left" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1009 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:750 +msgid "Center" +msgstr "" + +#: marketpress.php:273 +msgid "Orders from your e-commerce store." +msgstr "" + +#: marketpress.php:231 +msgid "Products for your e-commerce store." +msgstr "" + +#: marketpress.php:222 +msgid "Edit Product" +msgstr "" + +#. Description of the plugin/theme +msgid "The complete WordPress ecommerce plugin - works perfectly with BuddyPress and Multisite too to create a social marketplace, where you can take a percentage! Activate the plugin, adjust your settings then add some products to your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:272 +msgid "Beside" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:271 +msgid "Above" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:268 +msgid "Pin Count" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:261 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:287 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:318 +msgid "All View" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:260 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:286 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:317 +msgid "Single View" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:259 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:285 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:316 +msgid "Off" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:578 +msgid "Related Product Limit" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:681 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1201 +msgid "Applies To" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:685 +msgid "All Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:487 +msgid "The label shown for the tax line item in the cart. Taxes, VAT, GST, etc." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:485 +msgid "Tax Label" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:81 +msgid "Apply" +msgstr "" + +#: includes/admin/class-mp-admin.php:192 +msgid "MarketPress Instructions" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1954 +#: includes/admin/class-mp-products-admin.php:2194 includes/common/data.php:62 +#: includes/common/helpers.php:150 +msgid "Taxes" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1417 +#: includes/common/class-mp-product.php:2900 +msgid "Related Products" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:282 +#: includes/common/shipping-modules/mp-usps.php:316 +msgid "@ Max" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "(3-5 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "Priority Mail Express International Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:92 +msgid "Priority Mail Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:171 +#: includes/common/shipping-modules/mp-pickup.php:247 +msgid "In Store" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:159 +msgid "Pickup Fee" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:141 +msgid "This option allows your customers to indicate that they will pick-up their order at your place of business." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:60 +#: includes/common/shipping-modules/mp-pickup.php:76 +#: includes/common/shipping-modules/mp-pickup.php:176 +msgid "Pickup Instructions" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:24 +#: includes/common/shipping-modules/mp-pickup.php:254 +msgid "Pickup" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping - 0.00" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:256 +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:440 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:309 +msgid "Your Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:301 +msgid "Station" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:300 +msgid "Request Courier" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:299 +msgid "Drop Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:298 +msgid "Business Service Center" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:297 +msgid "Regular Pickup" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:135 +#: includes/common/shipping-modules/mp-fedex.php:264 +msgid "Production" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:207 +msgid "Simplify Commerce by MasterCard" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:104 +msgid "When in live mode, although it is not required, Simplify recommends you have an SSL certificate." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:183 +#: includes/common/payment-gateways/simplify.php:87 +msgid "Public Key" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:175 +#: includes/common/payment-gateways/simplify.php:94 +msgid "Private Key" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:71 +msgid "Simplify helps merchants to accept online payments from Mastercard, Visa, American Express, Discover, JCB, and Diners Club cards. It's that simple. We offer a merchant account and payment gateway in a single, secure package so you can concentrate on what really matters to your business. Only supports USD currently." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:267 +msgid "%1$s" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:151 +msgid "The Simplify Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/simplify.php:18 +msgid "Simplify" +msgstr "" + +#: includes/common/payment-gateways/pin.php:255 +msgid "%1$s Card %2$s" +msgstr "" + +#: includes/common/payment-gateways/pin.php:211 +msgid "The PIN Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:187 +msgid "Selecting a currency other than currency supported by PIN may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/pin.php:164 +msgid "You must login to PIN to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/pin.php:158 +msgid "When in live mode PIN recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/pin.php:45 +#: includes/common/payment-gateways/pin.php:286 +msgid "PIN" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:830 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:534 +#: includes/common/payment-gateways/paypal-express.php:865 +msgid "The payment is pending" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:235 +msgid "The Paymill Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:169 +msgid "You must login to Paymill to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:45 +#: includes/common/payment-gateways/paymill.php:308 +msgid "Paymill" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:90 +msgid "Invalid cardholder" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:89 +msgid "Card is no longer valid or has expired" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:88 +msgid "Please enter a valid Card CVC" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:87 +msgid "Please choose a valid Expiration Date." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:99 +#: includes/common/payment-gateways/skrill.php:100 +msgid "Skrill (Moneybookers)" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:24 +#: includes/common/shipping-modules/mp-weight-rate.php:292 +msgid "Weight Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:303 +msgid "USPS Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:270 +msgid "USPS Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:264 +msgid "USPS Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:145 +msgid "Flat Rate Large" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:140 +msgid "Flat Rate Medium 2" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:135 +msgid "Flat Rate Medium 1" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:130 +msgid "Flat Rate Small" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:118 +msgid "First Class International Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:114 +msgid "Priority Mail International Small Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:112 +msgid "Priority Mail International Medium Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:110 +msgid "Priority Mail International Large Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:108 +msgid "Priority Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:106 +msgid "Express Mail International Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:104 +msgid "Express Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:98 +msgid "Library Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:96 +msgid "Media Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "First-Class Mail Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:90 +msgid "Priority Mail Small Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:88 +msgid "Priority Mail Medium Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +#: includes/common/shipping-modules/mp-usps.php:88 +#: includes/common/shipping-modules/mp-usps.php:90 +#: includes/common/shipping-modules/mp-usps.php:92 +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "(2-4 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +msgid "Priority Mail Large Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "(2-4) days" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "Priority Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "Express Mail Sunday/Holiday Delivery Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:80 +msgid "Express Mail Flat Rate Boxes Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:78 +msgid "Express Mail Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:76 +msgid "Express Mail Sunday/Holiday Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:74 +msgid "Express Mail Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:72 +#: includes/common/shipping-modules/mp-usps.php:74 +#: includes/common/shipping-modules/mp-usps.php:76 +#: includes/common/shipping-modules/mp-usps.php:78 +#: includes/common/shipping-modules/mp-usps.php:80 +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "(1-2 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:72 +msgid "Express Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:67 +#: includes/common/shipping-modules/mp-usps.php:902 +msgid "USPS" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:534 +msgid "UPS (beta)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:166 +msgid "Required if using negotiated rates" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "Worldwide Express Plus" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "(Scheduled)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "Standard" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "(2-5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "Worldwide Expedited" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:54 +msgid "Worldwide Express" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "2nd Day Air AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "(1 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "Next Day Air Early AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "Next Day Air Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "3 Day Select" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:49 +msgid "Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:48 +msgid "2nd Day Air" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "Next Day Air" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:475 +#: includes/common/shipping-modules/mp-ups.php:43 +msgid "UPS" +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:27 +#: includes/common/shipping-modules/mp-table-rate.php:318 +msgid "Table Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:71 +#: includes/common/shipping-modules/mp-table-quantity.php:77 +msgid "Shipping Cost: " +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:70 +#: includes/common/shipping-modules/mp-table-quantity.php:76 +msgid "If quantity is greater than:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:66 +msgid "Each band must be a higher price than the one above it." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:56 +msgid "Number of Bands:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:53 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Each layer must be a higher quantity than the previous." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:51 +msgid "Table Quantity Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:31 +msgid "Table Quantity" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:135 +#: includes/common/shipping-modules/mp-table-rate.php:174 +#: includes/common/shipping-modules/mp-weight-rate.php:189 +msgid "European Union" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:123 +#: includes/common/shipping-modules/mp-table-rate.php:162 +#: includes/common/shipping-modules/mp-weight-rate.php:177 +msgid "United States" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:111 +#: includes/common/shipping-modules/mp-table-rate.php:151 +#: includes/common/shipping-modules/mp-weight-rate.php:166 +msgid "In Country" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:146 +#: includes/common/shipping-modules/mp-table-rate.php:186 +#: includes/common/shipping-modules/mp-weight-rate.php:201 +msgid "International" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:101 +#: includes/common/shipping-modules/mp-table-rate.php:141 +#: includes/common/shipping-modules/mp-weight-rate.php:156 +msgid "Canada" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:92 +#: includes/common/shipping-modules/mp-table-rate.php:132 +#: includes/common/shipping-modules/mp-weight-rate.php:147 +msgid "Hawaii and Alaska" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:83 +#: includes/common/shipping-modules/mp-table-rate.php:123 +#: includes/common/shipping-modules/mp-weight-rate.php:138 +msgid "Lower 48 States" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:64 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping." +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:25 +#: includes/common/shipping-modules/mp-flat-rate.php:223 +msgid "Flat Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:761 +msgid "FedEx (beta)" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Centimeters" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Inches" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1676 +#: includes/admin/class-mp-setup-wizard.php:547 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:166 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +msgid "Kilograms" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:103 +msgid " %1$s - %2$s" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:358 +msgid "Max Weight per Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:356 +msgid "Box Dimensions" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:354 +msgid "Box Name" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:344 +msgid "Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:343 +msgid "For each box defined enter the maximum weight it can contain." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:341 +msgid "Enter your standard box sizes as LengthxWidthxHeight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:386 +#: includes/common/shipping-modules/mp-ups.php:193 +#: includes/common/shipping-modules/mp-usps.php:234 +#: includes/common/shipping-modules/mp-usps.php:338 +msgid "Standard Boxes and Weight Limits" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:328 +msgid "Handling Charge per Interntional Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:294 +msgid "Handling Charge per Domestic Shipment " +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:388 +#: includes/common/shipping-modules/mp-ups.php:196 +#: includes/common/shipping-modules/mp-usps.php:237 +msgid "Add Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "(Next Day)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +msgid "Europe First International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:62 +msgid "International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:61 +#: includes/common/shipping-modules/mp-fedex.php:62 +#: includes/common/shipping-modules/mp-ups.php:54 +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "(1-3 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:61 +msgid "International First" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "(5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "International Economy" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "(2-7 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "Smart Post" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:55 +#: includes/common/shipping-modules/mp-ups.php:49 +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "(1-5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:55 +msgid "Ground Home Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "(1-7 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "Fedex Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:53 +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "(3 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:53 +msgid "Fedex Express Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +#: includes/common/shipping-modules/mp-ups.php:48 +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "(2 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +msgid "Fedex 2 Day" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "(2 Days am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "Fedex 2 Day AM" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "(1 Day)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +msgid "Standard Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "(1 Day am )" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "Priority Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "(1 Day am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "First Overnight" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:476 +#: includes/common/shipping-modules/mp-fedex.php:31 +msgid "FedEx" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:270 +#: includes/common/payment-gateways/simplify.php:179 +#: includes/common/payment-gateways/stripe.php:365 +msgid "%1$s Card ending in %2$s - Expires %3$s" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:259 +#: includes/common/payment-gateways/pin.php:238 +#: includes/common/payment-gateways/simplify.php:171 +msgid "%s Store Purchase - Order ID: %s, Email: %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:266 +msgid "You must login to Stripe to get your API credentials. You can enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:261 +msgid "When in live mode Stripe recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:311 +msgid "The Stripe Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:263 +#: includes/common/payment-gateways/paymill.php:122 +#: includes/common/payment-gateways/stripe.php:222 +msgid "Card Number" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:86 +msgid "Please enter a valid Credit Card Number." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:45 +#: includes/common/payment-gateways/stripe.php:433 +msgid "Stripe" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:750 +msgid "Sets the background color for the payment page. By default, the color is white." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:745 +msgid "Sets the background color for the header of the payment page. By default, the color is white." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:740 +msgid "Sets the border color around the header of the payment page. The border is a 2-pixel perimeter around the header space, which is 750 pixels wide by 90 pixels high. By default, the color is black." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:735 +msgid "URL for an image you want to appear at the top left of the payment page. The image has a maximum size of 750 pixels wide by 90 pixels high. PayPal recommends that you provide an image that is stored on a secure (https) server. If you do not specify an image, the business name is displayed." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:857 +#: includes/common/payment-gateways/paypal-express.php:1131 +msgid "The payment is pending because it is part of an order that has been authorized but not settled." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:853 +#: includes/common/payment-gateways/paypal-express.php:1127 +msgid "The payment is pending because it has been authorized but not settled. You must capture the funds first." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:847 +#: includes/common/payment-gateways/paypal-express.php:1120 +msgid "You denied the payment when it was marked as pending." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:837 +#: includes/common/payment-gateways/paypal-express.php:1108 +msgid "A reversal has occurred on this transaction due to an unknown reason." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:836 +#: includes/common/payment-gateways/paypal-express.php:1107 +msgid "A reversal has occurred on this transaction because you have given the customer a refund." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:835 +#: includes/common/payment-gateways/paypal-express.php:1106 +msgid "A reversal has occurred on this transaction due to a complaint about the transaction from your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:834 +#: includes/common/payment-gateways/paypal-express.php:1105 +msgid "A reversal has occurred on this transaction due to your customer triggering a money-back guarantee." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:833 +#: includes/common/payment-gateways/paypal-express.php:1104 +msgid "A reversal has occurred on this transaction due to a chargeback by your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:1101 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer:" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:826 +#: includes/common/payment-gateways/paypal-express.php:1097 +msgid "A payment has been accepted." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:818 +#: includes/common/payment-gateways/paypal-express.php:1087 +msgid "The transaction has not terminated, e.g. an authorization may be awaiting completion." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:531 +#: includes/common/payment-gateways/paypal-express.php:810 +#: includes/common/payment-gateways/paypal-express.php:1077 +msgid "The payment has failed. This happens only if the payment was made from your customer's bank account." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:806 +#: includes/common/payment-gateways/paypal-express.php:1072 +msgid "An authorization for this transaction has been voided." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:802 +#: includes/common/payment-gateways/paypal-express.php:1067 +msgid "The authorization period for this payment has been reached." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:798 +#: includes/common/payment-gateways/paypal-express.php:1062 +msgid "A reversal has been canceled; for example, when you win a dispute and the funds for the reversal have been returned to you." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:499 +#: includes/common/payment-gateways/paypal-express.php:1163 +msgid "PayPal Express Checkout" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:798 +msgid "Gateway Settings Page Message" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:725 +msgid "Signature" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:506 +#: includes/common/payment-gateways/eway31.php:533 +#: includes/common/shipping-modules/mp-fedex.php:276 +msgid "API Password" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:773 +msgid "Enter a percentage of all store sales to collect as a fee. Decimals allowed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:757 +msgid "Using PayPal Chained Payments allows you as the multisite network owner to collect a predefined fee or percentage of all sales on network MarketPress stores! This is invisible to the customers who purchase items in a store, and all PayPal fees will be charged to the store owner. To use this option you must create API credentials, and you should make all other gateways unavailable or limited above." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:338 +msgid "Please be aware that we will deduct a ?% fee from the total of each transaction in addition to any fees PayPal may charge you. If for any reason you need to refund a customer for an order, please contact us with a screenshot of the refund receipt in your PayPal history as well as the Transaction ID of our fee deduction so we can issue you a refund. Thank you!" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:698 +#: includes/common/payment-gateways/paypal-express.php:149 +msgid "There was a problem connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:470 +#: includes/common/payment-gateways/paypal-express.php:1053 +msgid "There was a problem verifying the IPN string with PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:310 +msgid "There was a problem connecting to PayPal to check the status of your purchase. Please check the status of your order here »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:539 +#: includes/common/payment-gateways/paypal-chained-payments.php:254 +#: includes/common/payment-gateways/paypal-express.php:1139 +msgid "The payment is pending." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:251 +#: includes/common/payment-gateways/paypal-chained-payments.php:531 +#: includes/common/payment-gateways/paypal-express.php:862 +#: includes/common/payment-gateways/paypal-express.php:1136 +msgid "The payment is pending for an unknown reason. For more information, contact PayPal customer service." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:250 +#: includes/common/payment-gateways/paypal-chained-payments.php:530 +#: includes/common/payment-gateways/paypal-express.php:861 +#: includes/common/payment-gateways/paypal-express.php:1135 +msgid "The payment is pending because you are not yet verified. You must verify your account before you can accept this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:249 +#: includes/common/payment-gateways/paypal-chained-payments.php:529 +#: includes/common/payment-gateways/paypal-express.php:860 +#: includes/common/payment-gateways/paypal-express.php:1134 +msgid "The payment is pending because it was made via credit card and you must upgrade your account to Business or Premier status in order to receive the funds. It can also mean that you have reached the monthly limit for transactions on your account." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:248 +#: includes/common/payment-gateways/paypal-chained-payments.php:528 +#: includes/common/payment-gateways/paypal-express.php:859 +#: includes/common/payment-gateways/paypal-express.php:1133 +msgid "The payment is pending because it was made to an email address that is not yet registered or confirmed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:247 +#: includes/common/payment-gateways/paypal-chained-payments.php:527 +#: includes/common/payment-gateways/paypal-express.php:858 +#: includes/common/payment-gateways/paypal-express.php:1132 +msgid "The payment is pending while it is being reviewed by PayPal for risk." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:246 +#: includes/common/payment-gateways/paypal-chained-payments.php:526 +#: includes/common/payment-gateways/paypal-express.php:856 +#: includes/common/payment-gateways/paypal-express.php:1130 +msgid "You do not have a balance in the currency sent, and you do not have your Payment Receiving Preferences set to automatically convert and accept this payment. You must manually accept or deny this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:245 +#: includes/common/payment-gateways/paypal-chained-payments.php:525 +#: includes/common/payment-gateways/paypal-express.php:855 +#: includes/common/payment-gateways/paypal-express.php:1129 +msgid "The payment is pending because you hold a non-U.S. account and do not have a withdrawal mechanism. You must manually accept or deny this payment from your Account Overview." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:244 +#: includes/common/payment-gateways/paypal-chained-payments.php:524 +#: includes/common/payment-gateways/paypal-express.php:854 +#: includes/common/payment-gateways/paypal-express.php:1128 +msgid "The payment is pending because it was made by an eCheck that has not yet cleared." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:243 +#: includes/common/payment-gateways/paypal-chained-payments.php:523 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:236 +#: includes/common/payment-gateways/paypal-chained-payments.php:516 +msgid "The transaction was rejected by the receiver (you)." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:510 +#: includes/common/payment-gateways/paypal-express.php:843 +#: includes/common/payment-gateways/paypal-express.php:1115 +msgid "You refunded the payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:224 +#: includes/common/payment-gateways/paypal-chained-payments.php:504 +msgid "The transaction is in progress." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:212 +#: includes/common/payment-gateways/paypal-chained-payments.php:491 +#: includes/common/payment-gateways/paypal-express.php:814 +#: includes/common/payment-gateways/paypal-express.php:1082 +msgid "The payment has been partially refunded." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:202 +#: includes/common/payment-gateways/paypal-chained-payments.php:481 +msgid "PayPal balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:177 +msgid "There was a problem connecting to PayPal to setup your purchase. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:122 +msgid "Your PayPal transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:50 +#: includes/common/payment-gateways/paypal-chained-payments.php:53 +#: includes/common/payment-gateways/paypal-chained-payments.php:732 +#: includes/common/payment-gateways/paypal-express.php:500 +#: includes/common/payment-gateways/paypal-express.php:938 +msgid "PayPal" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:48 +#: includes/common/payment-gateways/paypal-chained-payments.php:730 +#: includes/common/payment-gateways/paypal-chained-payments.php:756 +#: includes/common/payment-gateways/paypal-chained-payments.php:873 +msgid "PayPal Chained Payments" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:59 +#: includes/common/payment-gateways/paypal-payflow.php:467 +msgid "PayPal Payflow Pro" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:378 +msgid "Chargeback - A payment was reversed due to a chargeback. The funds have been removed from your account balance and returned to the buyer." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:372 +msgid "Failed - The Credit Card or Direct Debit transaction was declined." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:354 +#: includes/common/payment-gateways/skrill.php:366 +msgid "Cancelled - The payment was cancelled manually by the sender in their online account history or was auto-cancelled after 14 days pending." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:360 +msgid "Pending - The payment is pending. It can take 2-3 days for bank transfers to complete." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:349 +#: includes/common/payment-gateways/skrill.php:354 +msgid "Processed - The payment has been completed, and the funds have been added successfully to your Moneybookers account balance." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:189 +msgid "Shown to the customer on the confirmation screen - the end step of the process - a note, confirmation number, or any other message. Line breaks <br> may be used for longer messages." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:188 +msgid "Confirmation Note (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:183 +msgid "The URL of the logo which you would like to appear at the top of the payment form. The logo must be accessible via HTTPS otherwise it will not be shown. For best integration results we recommend that you use a logo with dimensions up to 200px in width and 50px in height." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:182 +msgid "Logo Image (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:177 +msgid "The name of this store, which will be shown on the gateway. If no value is submitted, the account email will be shown as the recipient of the payment." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:176 +msgid "Merchant Name (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:165 +msgid "Language" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:368 +#: includes/common/payment-gateways/authorizenet-aim.php:262 +#: includes/common/payment-gateways/eway.php:363 +#: includes/common/payment-gateways/eway31.php:471 +#: includes/common/payment-gateways/mollie.php:91 +#: includes/common/payment-gateways/paymill.php:193 +#: includes/common/payment-gateways/paypal-chained-payments.php:356 +#: includes/common/payment-gateways/paypal-express.php:688 +#: includes/common/payment-gateways/paypal-payflow.php:432 +#: includes/common/payment-gateways/pin.php:186 +#: includes/common/payment-gateways/skrill.php:152 +#: includes/common/payment-gateways/stripe.php:288 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:104 +msgid "Currency" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:359 +#: includes/common/payment-gateways/skrill.php:143 +msgid "Secret Word" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:261 +msgid "Order ID:" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:234 +msgid "Complete Checkout" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:204 +msgid "Your Moneybookers transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:155 +msgid "This is the email text to send to those who have made manual payment checkouts. You should include your manual payment instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:257 +#: includes/common/payment-gateways/manual-payments.php:128 +msgid "Record payments manually, such as by Cash, Check, or EFT." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:71 +msgid "Manual/Invoice" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:648 +#: includes/common/payment-gateways/manual-payments.php:35 +#: includes/common/payment-gateways/manual-payments.php:36 +msgid "Manual Payment" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:34 +#: includes/common/payment-gateways/manual-payments.php:163 +msgid "Manual Payments" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:288 +msgid "iDEAL Simulator (for testing)" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:287 +msgid "ABN Amro Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:286 +msgid "Friesland Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:285 +msgid "Rabobank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:284 +msgid "ING Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:279 +msgid "Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:270 +msgid "To make it easier to pay for online products and services, the Dutch banking community has developed the iDEAL online payment method. iDEAL allows online payments to be made using online banking in EUR only." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:247 +#: includes/common/payment-gateways/_payway.php:199 +#: includes/common/payment-gateways/manual-payments.php:68 +msgid "Invoiced" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1016 +msgid "Coupon" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:77 +#: includes/common/payment-gateways/_ideal.php:250 +#: includes/common/payment-gateways/_payway.php:202 +msgid "iDEAL" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:76 +msgid "iDEAL (beta)" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:327 +msgid "Merchant Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:293 +#: includes/common/payment-gateways/_payway.php:302 +#: includes/common/payment-gateways/payfast.php:324 +msgid "Merchant ID" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:462 +msgid "eWay Rapid 3.0 Payments lets merchants recieve credit card payments through eWay without need for users to leave the shop. Note this gateway requires a valid SSL certificate configured for this site." +msgstr "" + +#: includes/common/payment-gateways/eway.php:452 +msgid "There was a problem connecting to eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/eway.php:432 +#: includes/common/payment-gateways/eway.php:437 +msgid "The url of the image can be hosted on your website and pass the secure https:// path of the image to be displayed at the top of the website. This is the second image block on the webpage and is restricted to 960px X 65px. A default secure image is used if none is supplied." +msgstr "" + +#: includes/common/payment-gateways/eway.php:431 +#: includes/common/payment-gateways/eway.php:436 +msgid "Company Logo (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:427 +msgid "The page footer text can be customised and populated below the customer's order details. Useful for contact information." +msgstr "" + +#: includes/common/payment-gateways/eway.php:426 +msgid "Page Footer (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:421 +msgid "Page Description (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:417 +#: includes/common/payment-gateways/eway.php:422 +msgid "This value is used to populate the browsers title bar at the top of the screen." +msgstr "" + +#: includes/common/payment-gateways/eway.php:416 +msgid "Page Title (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:412 +msgid "This will be displayed as the company the customer is purchasing from, including this is highly recommended." +msgstr "" + +#: includes/common/payment-gateways/eway.php:411 +msgid "Company Name" +msgstr "" + +#: includes/common/payment-gateways/eway.php:394 +msgid "Customer ID" +msgstr "" + +#: includes/common/payment-gateways/eway.php:381 +#: includes/common/payment-gateways/eway31.php:488 +msgid "Live API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway.php:371 +#: includes/common/payment-gateways/eway31.php:479 +msgid "Gateway Mode" +msgstr "" + +#: includes/common/payment-gateways/eway.php:354 +msgid "The Hosted Page is a webpage hosted on eWAY's side eliminating the need for merchants to capture, transmit or store credit card numbers. At the checkout time the merchant automatically redirects the customer to the Hosted Page where they would enter their details and have the transaction processed. Upon completion of the transaction the customer is redirected back to the MarketPress checkout confirmation page." +msgstr "" + +#: includes/common/payment-gateways/eway.php:314 +msgid "There was a problem with your credit card information: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:300 +msgid "Paid - The card has been processed - %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:253 +msgid "There was a problem setting up the transaction with eWay: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:245 +#: includes/common/payment-gateways/eway.php:289 +msgid "There was a problem parsing the response from eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:159 +#: includes/common/payment-gateways/eway.php:189 +#: includes/common/payment-gateways/paypal-chained-payments.php:634 +#: includes/common/payment-gateways/paypal-express.php:322 +#: includes/common/payment-gateways/paypal-express.php:473 +msgid "%s Store Purchase - Order ID: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:147 +#: includes/common/payment-gateways/eway.php:462 +msgid "eWay Shared Payments" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:214 +msgid "This is the email text to send to those who have made CubePoints checkouts. You should include your CubePoints instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:212 +#: includes/common/payment-gateways/free_orders.php:188 +#: includes/common/payment-gateways/manual-payments.php:154 +msgid "Order Confirmation Email" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:207 +#: includes/common/payment-gateways/manual-payments.php:149 +msgid "Confirmation User Instructions" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:202 +#: includes/common/payment-gateways/manual-payments.php:144 +msgid "User Instructions" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:198 +#: includes/common/payment-gateways/free_orders.php:170 +#: includes/common/payment-gateways/manual-payments.php:139 +msgid "Enter a public name for this payment method that is displayed to users - No HTML" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:532 +#: includes/common/payment-gateways/_cubepoints.php:196 +#: includes/common/payment-gateways/free_orders.php:169 +#: includes/common/payment-gateways/manual-payments.php:138 +msgid "Method Name" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:187 +msgid "Accept CubePoints as payment(requires the CubePoints plugin)." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:140 +msgid "Sorry, but you do not appear to have enough points to complete this purchase!" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:124 +msgid "%s Store Purchase" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:79 +#: includes/common/payment-gateways/_cubepoints.php:171 +msgid "Your current points: " +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:133 +#: includes/common/payment-gateways/_cubepoints.php:197 +msgid "CubePoints" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:344 +msgid "Authorize.net AIM Checkout" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:331 +msgid "Custom API URL" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:332 +msgid "Many other gateways have Authorize.net API emulators. To use one of these gateways input their API post url here." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:322 +msgid "Request a delimited response from the payment gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:316 +msgid "Security: MD5 Hash" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:317 +msgid "The payment gateway generated MD5 hash value that can be used to authenticate the transaction response. Not needed because responses are returned using an SSL connection." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:306 +msgid "Customer Receipt Email Footer" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:296 +msgid "Customer Receipt Email Header" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:297 +#: includes/common/payment-gateways/paypal-payflow.php:446 +msgid "This text will appear as the header of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:282 +msgid "Encapsulation Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:283 +msgid "Authorize.net default is blank. Otherwise, get this from your credit card processor. If the transactions are going through, but getting strange responses, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:273 +msgid "Optional settings to control advanced options" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:224 +#: includes/common/payment-gateways/authorizenet-aim.php:272 +msgid "Advanced Settings" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:253 +msgid "Transaction Key" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:246 +msgid "Login ID" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:396 +msgid "Gateway Credentials" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:221 +msgid "Authorize.net AIM is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway. USD is the only currency supported by this gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:205 +msgid "There was a problem finalizing your purchase. %s Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:519 +#: includes/common/payment-gateways/paypal-chained-payments.php:218 +#: includes/common/payment-gateways/paypal-chained-payments.php:498 +#: includes/common/payment-gateways/paypal-express.php:822 +#: includes/common/payment-gateways/paypal-express.php:1092 +msgid "The payment has been completed, and the funds have been added successfully to your account balance." +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:233 +msgid "Please enter a valid credit card security code" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:224 +#: includes/public/class-mp-checkout.php:867 +msgid "Please enter a valid credit card number" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:221 +msgid "Please enter your credit card number" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:217 +msgid "Please enter your credit card security code" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:213 +msgid "Please select your credit card expiration date." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:299 +#: includes/common/payment-gateways/authorizenet-aim.php:50 +#: includes/common/payment-gateways/eway.php:148 +#: includes/common/payment-gateways/eway.php:298 +#: includes/common/payment-gateways/eway31.php:267 +#: includes/common/payment-gateways/paymill.php:46 +#: includes/common/payment-gateways/paypal-express.php:972 +#: includes/common/payment-gateways/paypal-payflow.php:60 +#: includes/common/payment-gateways/pin.php:46 +#: includes/common/payment-gateways/simplify.php:19 +#: includes/common/payment-gateways/stripe.php:46 +#: includes/common/payment-gateways/wepay.php:37 +msgid "Credit Card" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:49 +msgid "Authorize.net Checkout" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:156 +#: includes/common/payment-gateways/stripe.php:293 +msgid "Selecting a currency other than that used for your store may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:352 +msgid "Seller ID" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:340 +#: includes/common/payment-gateways/_ideal.php:311 +#: includes/common/payment-gateways/authorizenet-aim.php:234 +#: includes/common/payment-gateways/eway.php:376 +#: includes/common/payment-gateways/payfast.php:315 +#: includes/common/payment-gateways/paypal-chained-payments.php:368 +#: includes/common/payment-gateways/paypal-express.php:699 +#: includes/common/payment-gateways/paypal-payflow.php:391 +msgid "Live" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:339 +#: includes/common/payment-gateways/authorizenet-aim.php:233 +#: includes/common/payment-gateways/eway.php:375 +#: includes/common/payment-gateways/paypal-chained-payments.php:367 +#: includes/common/payment-gateways/paypal-express.php:698 +#: includes/common/payment-gateways/paypal-payflow.php:390 +#: includes/common/shipping-modules/mp-fedex.php:263 +msgid "Sandbox" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:336 +#: includes/common/payment-gateways/_ideal.php:307 +#: includes/common/payment-gateways/authorizenet-aim.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:365 +#: includes/common/payment-gateways/paypal-express.php:695 +#: includes/common/payment-gateways/paypal-payflow.php:387 +#: includes/common/payment-gateways/wepay.php:130 +#: includes/common/shipping-modules/mp-fedex.php:260 +msgid "Mode" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:288 +#: includes/common/payment-gateways/mijireh.php:242 +#: includes/common/payment-gateways/mollie.php:212 +msgid "The order has been received" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:74 +#: includes/common/payment-gateways/2checkout.php:75 +#: includes/common/payment-gateways/2checkout.php:435 +msgid "2Checkout" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:306 +msgid "Confirm" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:218 +#: includes/common/class-mp-cart.php:974 includes/common/class-mp-cart.php:1354 +#: includes/common/template-functions.php:918 +msgid "Checkout" +msgstr "" + +#: includes/common/template-functions.php:207 +msgid "Check Order Status" +msgstr "" + +#: includes/common/template-functions.php:235 +msgid "View Products" +msgstr "" + +#: includes/common/template-functions.php:263 +msgid "Visit Store" +msgstr "" + +#: includes/common/template-functions.php:2912 +#: includes/multisite/template-functions.php:448 +msgid "Order By" +msgstr "" + +#: includes/common/template-functions.php:2887 +#: includes/multisite/template-functions.php:405 +msgid "Price (High to Low)" +msgstr "" + +#: includes/common/template-functions.php:2886 +#: includes/multisite/template-functions.php:404 +msgid "Price (Low to High)" +msgstr "" + +#: includes/common/template-functions.php:2881 +#: includes/multisite/template-functions.php:399 +msgid "Default" +msgstr "" + +#: includes/common/template-functions.php:2858 +msgid "Show All" +msgstr "" + +#: includes/common/class-mp-product.php:2048 +msgid "View Larger Image »" +msgstr "" + +#: includes/common/class-mp-product.php:979 +msgid "Out of Stock" +msgstr "" + +#: includes/common/template-functions.php:148 +msgid "Price: " +msgstr "" + +#: includes/multisite/template-functions.php:833 +msgid "No Tags" +msgstr "" + +#: includes/common/template-functions.php:3162 +msgid "Uncategorized" +msgstr "" + +#: includes/common/class-mp-cart.php:569 includes/common/class-mp-order.php:604 +#: includes/common/helpers.php:115 +msgid "Download" +msgstr "" + +#: includes/common/class-mp-cart.php:1353 +msgid "Empty Cart" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:291 +#: includes/common/payment-gateways/paypal-express.php:718 +#: includes/common/payment-gateways/paypal-payflow.php:423 +#: includes/common/shipping-modules/mp-ups.php:158 +#: includes/public/class-mp-checkout.php:1254 +#: includes/public/class-mp-checkout.php:1383 +msgid "Password" +msgstr "" + +#: includes/common/payment-gateways/eway.php:387 +#: includes/common/payment-gateways/paypal-express.php:711 +#: includes/common/shipping-modules/mp-usps.php:185 +#: includes/public/class-mp-checkout.php:1249 +msgid "Username" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:437 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:790 +msgid "Have a coupon code?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:321 +#: includes/admin/class-mp-orders-admin.php:526 +#: includes/common/class-mp-cart.php:592 +msgid "Remove" +msgstr "" + +#: includes/admin/class-mp-ajax.php:316 +msgid "Quantity:" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2140 +#: includes/admin/class-mp-products-admin.php:2387 +#: includes/common/shipping-modules/class-mp-shipping-api.php:507 +msgid "Extra Shipping Cost" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:403 +msgid "Choose a Shipping Method:" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1691 +#: includes/admin/class-mp-products-admin.php:2131 +#: includes/admin/class-mp-products-admin.php:2378 +#: includes/common/shipping-modules/class-mp-shipping-api.php:228 +msgid "Ounces" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1684 +#: includes/admin/class-mp-products-admin.php:2123 +#: includes/admin/class-mp-products-admin.php:2369 +#: includes/admin/class-mp-setup-wizard.php:546 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:165 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +#: includes/common/shipping-modules/class-mp-shipping-api.php:227 +msgid "Pounds" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:226 +msgid "Product Weight:" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:214 +msgid "Weight (Kilograms)" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:82 +msgid "Number of Categories:" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:72 +msgid "Product Count" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:20 +#: includes/admin/class-mp-product-attributes-admin.php:129 +#: includes/admin/class-mp-product-attributes-list-table.php:22 +#: includes/admin/class-mp-products-admin.php:2216 +#: includes/admin/class-mp-shortcode-builder.php:628 +#: includes/admin/class-mp-shortcode-builder.php:1415 +#: includes/admin/widgets/ms-global-categories.php:70 +#: includes/common/shipping-modules/mp-fedex.php:395 +#: includes/common/shipping-modules/mp-ups.php:202 +#: includes/common/shipping-modules/mp-usps.php:243 +#: includes/public/class-mp-checkout.php:314 +msgid "Name" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:67 +msgid "Order Categories By:" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:24 +#: includes/admin/widgets/ms-global-categories.php:50 +msgid "Global Product Categories" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:15 +msgid "Global Product Category List" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:13 +msgid "Displays a network-wide HTML list of product categories from network MarketPress stores." +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:24 +#: includes/admin/widgets/ms-global-tag-cloud.php:45 +msgid "Global Product Tags" +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:15 +msgid "Global Product Tag Cloud" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:947 +#: includes/admin/widgets/ms-global-product-list.php:173 +msgid "Excerpt" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:169 +msgid "Content To Show:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:140 +msgid "Limit To Product Tag:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:132 +msgid "Limit To Product Category:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:72 +msgid "Global Products" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:16 +msgid "Global Product List" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:14 +msgid "Shows a customizable global list of products from network MarketPress stores." +msgstr "" + +#: includes/common/class-mp-product.php:974 +#: includes/multisite/template-functions.php:731 +msgid "Buy Now »" +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:13 +msgid "Displays global most used product tags in cloud format from network MarketPress stores." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:438 +msgid "Theme Permissions" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:402 +#: includes/multisite/class-mp-admin-multisite.php:448 +msgid "No Access" +msgstr "" + +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:120 +msgid "Pro Site Level" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:401 +#: includes/multisite/class-mp-admin-multisite.php:447 +msgid "All Can Use" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:390 +msgid "Gateway Permissions" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:375 +msgid "Select a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:350 +msgid "Global Gateway" +msgstr "" + +#. Plugin Name of the plugin/theme +msgid "MarketPress" +msgstr "" + +#: includes/admin/widgets/product-tag-cloud.php:7 +msgid "Your most used product tags in cloud format from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/categories.php:79 +msgid "Show hierarchy" +msgstr "" + +#: includes/admin/widgets/categories.php:76 +#: includes/admin/widgets/ms-global-categories.php:92 +msgid "Show product counts" +msgstr "" + +#: includes/admin/widgets/categories.php:73 +msgid "Show as dropdown" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:710 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:736 +#: includes/admin/widgets/categories.php:30 +msgid "Select Category" +msgstr "" + +#: includes/admin/widgets/categories.php:7 +msgid "A list or dropdown of product categories from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/product-list.php:250 +msgid "Show Buy Button" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:183 +#: includes/admin/widgets/product-list.php:244 +msgid "Show Price" +msgstr "" + +#: includes/admin/widgets/product-list.php:241 +msgid "Show Excerpt" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:155 +#: includes/admin/widgets/product-list.php:238 +msgid "Thumbnail Size:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:153 +#: includes/admin/widgets/product-list.php:237 +msgid "Show Thumbnail" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:147 +#: includes/admin/widgets/product-list.php:233 +msgid "Display Settings" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:136 +#: includes/admin/widgets/ms-global-product-list.php:144 +#: includes/admin/widgets/product-list.php:230 +msgid "Enter the Slug" +msgstr "" + +#: includes/admin/widgets/product-list.php:228 +#: includes/common/template-functions.php:894 +msgid "Tag" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:686 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:712 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:739 +#: includes/admin/class-mp-shortcode-builder.php:796 +#: includes/admin/widgets/product-list.php:227 +#: includes/common/template-functions.php:886 +#: includes/common/template-functions.php:2907 +msgid "Category" +msgstr "" + +#: includes/admin/widgets/product-list.php:226 +msgid "No Filter" +msgstr "" + +#: includes/admin/widgets/product-list.php:224 +msgid "Taxonomy Filter:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:108 +#: includes/admin/widgets/product-list.php:209 +msgid "Order Products By:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:101 +#: includes/admin/widgets/product-list.php:206 +msgid "Number of Products:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:98 +#: includes/admin/widgets/product-list.php:204 +msgid "List Settings" +msgstr "" + +#: includes/admin/widgets/product-list.php:177 +msgid "Our Products" +msgstr "" + +#: includes/admin/widgets/product-list.php:144 +#: includes/common/template-functions.php:2070 +#: includes/common/template-functions.php:2347 +#: includes/multisite/template-functions.php:303 +#: includes/multisite/template-functions.php:623 +msgid "No Products" +msgstr "" + +#: includes/admin/widgets/product-list.php:8 +msgid "Product List" +msgstr "" + +#: includes/admin/widgets/product-list.php:7 +msgid "Shows a customizable list of products from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/cart.php:75 includes/admin/widgets/categories.php:82 +#: includes/admin/widgets/product-list.php:253 +#: includes/admin/widgets/product-tag-cloud.php:57 +msgid "Only show on store pages" +msgstr "" + +#: includes/admin/widgets/cart.php:65 +#: includes/admin/widgets/ms-global-product-list.php:92 +#: includes/admin/widgets/product-list.php:200 +msgid "Custom Text:" +msgstr "" + +#: includes/admin/widgets/cart.php:64 includes/admin/widgets/categories.php:69 +#: includes/admin/widgets/ms-global-categories.php:59 +#: includes/admin/widgets/ms-global-product-list.php:87 +#: includes/admin/widgets/ms-global-tag-cloud.php:49 +#: includes/admin/widgets/product-list.php:199 +#: includes/admin/widgets/product-tag-cloud.php:49 +msgid "Title:" +msgstr "" + +#: includes/admin/widgets/cart.php:7 +msgid "Shows dynamic shopping cart contents along with a checkout button for your MarketPress store." +msgstr "" + +#: includes/admin/widgets/product-tag-cloud.php:8 +msgid "Product Tag Cloud" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:539 +#: includes/admin/class-mp-setup-wizard.php:575 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:163 +msgid "Measurement System" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:616 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:149 +msgid "Select Shipping Options" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:596 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:129 +msgid "Calculated Options" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:582 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:115 +msgid "No Shipping" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:110 +msgid "EU" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:109 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:93 +msgid "All" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:92 +msgid "Select:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:185 +msgid "Store Pages" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:223 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:256 +msgid "Order Shipped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:60 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:95 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:128 +#: marketpress.php:266 +msgid "New Order" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:314 +msgid "Email Notifications" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:59 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:200 +msgid "Products List" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:58 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:190 +msgid "Store Base" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:108 +#: includes/admin/class-mp-shortcode-builder.php:635 +#: includes/admin/class-mp-shortcode-builder.php:708 +#: includes/admin/class-mp-shortcode-builder.php:875 +#: includes/admin/class-mp-shortcode-builder.php:1319 +#: includes/admin/class-mp-shortcode-builder.php:1422 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:526 +#: includes/admin/widgets/ms-global-categories.php:78 +#: includes/admin/widgets/ms-global-product-list.php:127 +#: includes/admin/widgets/product-list.php:221 +msgid "Ascending" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:109 +#: includes/admin/class-mp-shortcode-builder.php:636 +#: includes/admin/class-mp-shortcode-builder.php:709 +#: includes/admin/class-mp-shortcode-builder.php:876 +#: includes/admin/class-mp-shortcode-builder.php:1320 +#: includes/admin/class-mp-shortcode-builder.php:1423 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:525 +#: includes/admin/widgets/ms-global-categories.php:75 +#: includes/admin/widgets/ms-global-product-list.php:124 +#: includes/admin/widgets/product-list.php:220 +msgid "Descending" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:637 +#: includes/admin/class-mp-shortcode-builder.php:695 +#: includes/admin/class-mp-shortcode-builder.php:862 +#: includes/admin/class-mp-shortcode-builder.php:1306 +#: includes/admin/class-mp-shortcode-builder.php:1424 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:518 +#: includes/admin/widgets/ms-global-product-list.php:121 +#: includes/admin/widgets/product-list.php:218 +msgid "Random" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:694 +#: includes/admin/class-mp-shortcode-builder.php:861 +#: includes/admin/class-mp-shortcode-builder.php:1305 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:517 +#: includes/admin/widgets/ms-global-product-list.php:119 +#: includes/admin/widgets/product-list.php:216 +msgid "Product Price" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:693 +#: includes/admin/class-mp-shortcode-builder.php:860 +#: includes/admin/class-mp-shortcode-builder.php:1304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:516 +#: includes/admin/widgets/ms-global-product-list.php:117 +#: includes/admin/widgets/product-list.php:215 +msgid "Number of Sales" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:692 +#: includes/admin/class-mp-shortcode-builder.php:859 +#: includes/admin/class-mp-shortcode-builder.php:1303 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:515 +#: includes/admin/widgets/product-list.php:214 +msgid "Product Author" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:691 +#: includes/admin/class-mp-shortcode-builder.php:858 +#: includes/admin/class-mp-shortcode-builder.php:1302 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:514 +#: includes/admin/widgets/product-list.php:213 +msgid "Product ID" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:690 +#: includes/admin/class-mp-shortcode-builder.php:857 +#: includes/admin/class-mp-shortcode-builder.php:1301 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:513 +#: includes/admin/widgets/ms-global-product-list.php:113 +#: includes/admin/widgets/product-list.php:212 +msgid "Publish Date" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:430 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:726 +msgid "Width" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:439 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:735 +msgid "Height" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:88 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:402 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:698 +msgid "Custom" +msgstr "" + +#: includes/common/class-mp-product.php:179 +#: includes/common/class-mp-product.php:992 +#: includes/common/class-mp-product.php:1000 +#: includes/multisite/template-functions.php:579 +msgid "Buy Now" +msgstr "" + +#: includes/common/class-mp-product.php:175 +#: includes/common/class-mp-product.php:990 +#: includes/common/class-mp-product.php:998 +msgid "Add To Cart" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:807 +msgid "Store Style" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1021 +msgid "Edit Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupon.php:580 +#: includes/admin/class-mp-ajax.php:238 +#: includes/admin/class-mp-products-admin.php:1532 +msgid "Unlimited" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1198 +msgid "Remaining Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1197 +msgid "Used" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:752 +#: includes/admin/class-mp-products-admin.php:2343 +msgid "Start Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:598 +msgid "Coupon Code" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:444 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:284 +msgid "Save Changes" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:57 +#: includes/admin/class-mp-shortcode-builder.php:716 +#: includes/admin/class-mp-shortcode-builder.php:727 +#: includes/admin/class-mp-shortcode-builder.php:883 +#: includes/admin/class-mp-shortcode-builder.php:894 +#: includes/admin/class-mp-shortcode-builder.php:946 +#: includes/admin/class-mp-shortcode-builder.php:956 +#: includes/admin/class-mp-shortcode-builder.php:1006 +#: includes/admin/class-mp-shortcode-builder.php:1327 +#: includes/admin/class-mp-shortcode-builder.php:1338 +#: includes/admin/store-settings/class-mp-store-settings-general.php:357 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:270 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:108 +#: includes/admin/widgets/ms-global-product-list.php:172 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:94 +msgid "None" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:352 +msgid "Google Analytics Ecommerce Tracking" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:310 +msgid "This option turns MarketPress into more of a product listing plugin, disabling shopping carts, checkout, and order management. This is useful if you simply want to list items you can buy in a store somewhere else, optionally linking the \"Buy Now\" buttons to an external site. Some examples are a car dealership, or linking to songs/albums in itunes, or linking to products on another site with your own affiliate links." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:304 +msgid "Whether or not customers must be registered and logged in to checkout. (Not recommended: Enabling this can lower conversions)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:258 +msgid "How many times may a customer download a file they have purchased? (It's best to set this higher than one in case they have any problems downloading)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:257 +msgid "Maximum Downloads" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:298 +msgid "This will set the product to draft if inventory of all variations is gone." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:288 +msgid "At what low stock count do you want to be warned for products you have enabled inventory tracking for?" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:208 +#: includes/admin/store-settings/class-mp-store-settings-general.php:287 +msgid "Inventory Warning Threshold" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:282 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:542 +msgid "Miscellaneous Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:429 +#: includes/multisite/class-mp-admin-multisite.php:247 +msgid "Show Decimal in Prices" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:451 +#: includes/admin/store-settings/class-mp-store-settings-general.php:403 +#: includes/multisite/class-mp-admin-multisite.php:221 +msgid "Currency Symbol Position" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:444 +#: includes/admin/store-settings/class-mp-store-settings-general.php:396 +msgid "Store Currency" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:429 +#: includes/admin/store-settings/class-mp-store-settings-general.php:381 +msgid "Currency Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:516 +msgid "Please see your local tax laws. Note if this is enabled and a downloadable only cart, rates will be the default for your base location." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:529 +msgid "Apply Tax to Downloadable Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:498 +msgid "Enabling this option allows you to enter and show all prices inclusive of tax, while still listing the tax total as a line item in shopping carts. Please see your local tax laws." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:497 +msgid "Enter Prices Inclusive of Tax?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:492 +msgid "Please see your local tax laws. Most areas charge tax on shipping fees." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:491 +msgid "Apply Tax To Shipping Fees?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:674 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:565 +#: includes/common/payment-gateways/authorizenet-aim.php:291 +#: includes/common/payment-gateways/authorizenet-aim.php:326 +#: includes/common/payment-gateways/payfast.php:347 +msgid "No" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:675 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:759 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:512 +#: includes/admin/class-mp-setup-wizard.php:518 +#: includes/admin/class-mp-setup-wizard.php:524 +#: includes/admin/class-mp-setup-wizard.php:530 +#: includes/admin/class-mp-setup-wizard.php:564 +#: includes/admin/store-settings/class-mp-store-settings-general.php:232 +#: includes/admin/store-settings/class-mp-store-settings-general.php:299 +#: includes/admin/store-settings/class-mp-store-settings-general.php:305 +#: includes/admin/store-settings/class-mp-store-settings-general.php:311 +#: includes/admin/store-settings/class-mp-store-settings-general.php:317 +#: includes/admin/store-settings/class-mp-store-settings-general.php:328 +#: includes/admin/store-settings/class-mp-store-settings-general.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:341 +#: includes/admin/store-settings/class-mp-store-settings-general.php:348 +#: includes/admin/store-settings/class-mp-store-settings-general.php:367 +#: includes/admin/store-settings/class-mp-store-settings-general.php:493 +#: includes/admin/store-settings/class-mp-store-settings-general.php:499 +#: includes/admin/store-settings/class-mp-store-settings-general.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:556 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:375 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:381 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:387 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:474 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:493 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:532 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:574 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:606 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:664 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:670 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:677 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:683 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:689 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:763 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:774 +#: includes/common/payment-gateways/_bitpay.php:250 +#: includes/common/payment-gateways/_bitpay.php:257 +#: includes/common/payment-gateways/_bitpay.php:264 +#: includes/common/payment-gateways/authorizenet-aim.php:290 +#: includes/common/payment-gateways/authorizenet-aim.php:325 +#: includes/common/payment-gateways/free_orders.php:160 +#: includes/common/payment-gateways/payfast.php:346 +#: includes/common/payment-gateways/paymill.php:162 +#: includes/common/payment-gateways/paypal-payflow.php:441 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-checkbox.php:22 +msgid "Yes" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:492 +#: includes/admin/store-settings/class-mp-store-settings-general.php:472 +msgid "%s Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:467 +#: includes/admin/store-settings/class-mp-store-settings-general.php:449 +msgid "Tax Settings" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:370 +#: includes/admin/store-settings/class-mp-store-settings-general.php:624 +msgid "Base Zip/Postal Code" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:354 +#: includes/admin/store-settings/class-mp-store-settings-general.php:608 +msgid "Base State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:589 +msgid "Base Country" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:582 +msgid "Location Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:195 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:800 +#: includes/multisite/class-mp-admin-multisite.php:172 +msgid "General Settings" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1945 +#: includes/admin/class-mp-products-admin.php:2185 +#: includes/admin/class-mp-store-settings-admin.php:111 +#: includes/admin/class-mp-store-settings-admin.php:266 +msgid "General" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:242 +msgid "Importers" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +#: includes/admin/class-mp-store-settings-admin.php:234 +msgid "Payments" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:313 +#: includes/admin/class-mp-store-settings-admin.php:112 +#: includes/admin/class-mp-store-settings-admin.php:222 +msgid "Presentation" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:916 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1015 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1018 +#: includes/admin/class-mp-dashboard-widgets.php:305 marketpress.php:702 +msgid "Coupons" +msgstr "" + +#: includes/admin/class-mp-admin.php:251 +msgid "Download »" +msgstr "" + +#: includes/admin/class-mp-admin.php:245 +#: includes/admin/class-mp-exporter-orders.php:170 +msgid "All Statuses" +msgstr "" + +#: includes/admin/class-mp-admin.php:209 +#: includes/admin/class-mp-exporter-orders.php:150 +#: includes/admin/class-mp-exporter-orders.php:178 +msgid "Export Orders" +msgstr "" + +#: includes/admin/class-mp-admin.php:228 +msgid "Show all dates" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:947 +msgid "Change Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:287 +msgid "Order Notes" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:478 +msgid "Other" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:205 +msgid "Subtotal" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:84 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:87 +#: includes/admin/class-mp-products-admin.php:1737 +#: includes/common/class-mp-cart.php:1409 +#: includes/common/class-mp-product.php:559 +msgid "Quantity" +msgstr "" + +#: includes/common/helpers.php:93 +msgid "Item" +msgstr "" + +#: includes/common/class-mp-order.php:1050 +msgid "Current Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:297 +msgid "Order Actions" +msgstr "" + +#: includes/common/class-mp-product.php:1084 +msgid "More Info »" +msgstr "" + +#: includes/common/class-mp-product.php:2313 +msgid "Low Product Inventory Notification" +msgstr "" + +#: includes/common/class-mp-order.php:338 includes/common/data.php:154 +msgid "New Order Notification: ORDERID" +msgstr "" + +#: includes/common/helpers.php:259 +msgid "Your payment for this order is complete." +msgstr "" + +#: includes/common/helpers.php:261 +msgid "Your payment for this order is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/helpers.php:256 +msgid "Payment Total:" +msgstr "" + +#: includes/common/helpers.php:253 +msgid "Transaction ID:" +msgstr "" + +#: includes/common/helpers.php:249 +msgid "Payment Type:" +msgstr "" + +#: includes/common/helpers.php:246 +msgid "Payment Method:" +msgstr "" + +#: includes/common/helpers.php:242 +msgid "Order Notes:" +msgstr "" + +#: includes/common/helpers.php:237 +msgid "Special Instructions:" +msgstr "" + +#: includes/common/helpers.php:232 +msgid "Tracking Number:" +msgstr "" + +#: includes/common/helpers.php:223 includes/common/helpers.php:226 +#: includes/common/helpers.php:228 +#: includes/common/shipping-modules/class-mp-shipping-api.php:406 +#: includes/common/shipping-modules/class-mp-shipping-api.php:428 +msgid "Shipping Method:" +msgstr "" + +#: includes/common/helpers.php:168 +msgid "No shipping required for this order." +msgstr "" + +#: includes/common/helpers.php:155 +msgid "Order Total:" +msgstr "" + +#: includes/common/class-mp-order.php:1025 +msgid "Taxes:" +msgstr "" + +#: includes/common/class-mp-order.php:1032 includes/common/helpers.php:144 +msgid "Shipping:" +msgstr "" + +#: includes/public/class-mp-checkout.php:367 +msgid "Street address, P.O. box, company name, c/o" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:314 +msgid "Shipping Info" +msgstr "" + +#: includes/public/class-mp-public.php:740 +msgid "Whoops, there was a problem loading up this file for your download. Please contact us for help." +msgstr "" + +#: includes/public/class-mp-public.php:683 +msgid "Sorry, our records show you've downloaded this file %d out of %d times allowed. Please contact us if you still need help." +msgstr "" + +#: includes/public/class-mp-public.php:634 +msgid "Sorry, your order has been marked as unpaid." +msgstr "" + +#: includes/public/class-mp-public.php:629 +msgid "Sorry, the link is invalid for this download." +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:15 +#: includes/admin/class-mp-products-admin.php:1172 +msgid "Cheatin’ uh?" +msgstr "" + +#: includes/public/class-mp-public.php:407 +#: includes/public/class-mp-short-codes.php:128 +msgid "Please enter a valid email address." +msgstr "" + +#: includes/admin/class-mp-ajax.php:191 +#: includes/admin/class-mp-products-admin.php:1821 +#: includes/admin/class-mp-products-admin.php:2010 +#: includes/admin/class-mp-products-admin.php:2267 +msgid "File URL" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1842 +msgid "External Link" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2177 +msgid "Add Variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:126 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:289 +msgid "Inventory" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:438 +#: includes/admin/class-mp-products-admin.php:578 +#: includes/admin/class-mp-products-admin.php:1552 +#: includes/admin/class-mp-products-admin.php:2053 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:134 +msgid "Sale Price" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "Variation Name" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1931 +msgid "Product Details" +msgstr "" + +#: includes/admin/class-mp-product-attributes-list-table.php:33 +msgid "Delete" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1057 +msgid "Trashed" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:231 +#: includes/admin/class-mp-orders-admin.php:1015 +#: includes/common/class-mp-order.php:1052 includes/common/helpers.php:97 +msgid "Total" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1196 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:210 +#: includes/admin/class-mp-orders-admin.php:1014 +msgid "Discount" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:221 +#: includes/admin/class-mp-orders-admin.php:1013 +#: includes/common/payment-gateways/_ideal.php:148 +#: includes/common/payment-gateways/_payway.php:134 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:108 +msgid "Tax" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:216 +#: includes/admin/class-mp-orders-admin.php:1012 +#: includes/admin/class-mp-products-admin.php:1958 +#: includes/admin/class-mp-products-admin.php:2198 +#: includes/admin/class-mp-store-settings-admin.php:114 +#: includes/admin/class-mp-store-settings-admin.php:230 +#: includes/common/class-mp-cart.php:717 includes/common/helpers.php:168 +#: includes/common/payment-gateways/_ideal.php:137 +#: includes/common/payment-gateways/_payway.php:116 +#: includes/public/class-mp-checkout.php:1304 +msgid "Shipping" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1011 +msgid "Items" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1010 +msgid "From" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:154 +#: includes/admin/class-mp-orders-admin.php:1009 +#: includes/common/class-mp-gdpr.php:370 +msgid "Order Date" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1008 +#: includes/common/class-mp-gdpr.php:366 +#: includes/common/template-functions.php:2134 +msgid "Order ID" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:22 +#: includes/admin/class-mp-orders-admin.php:1007 +msgid "Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1155 +msgid "N/A" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:243 +#: includes/admin/class-mp-products-admin.php:464 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:142 +msgid "Sales" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:463 +msgid "Stock" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:85 +#: includes/admin/class-mp-ajax.php:176 includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:434 +#: includes/admin/class-mp-products-admin.php:462 +#: includes/admin/class-mp-products-admin.php:576 +#: includes/admin/class-mp-products-admin.php:1519 +#: includes/admin/class-mp-products-admin.php:1569 +#: includes/admin/class-mp-products-admin.php:1950 +#: includes/admin/class-mp-products-admin.php:2059 +#: includes/admin/class-mp-products-admin.php:2190 +#: includes/admin/class-mp-products-admin.php:2330 +#: includes/common/class-mp-cart.php:1415 includes/common/helpers.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:130 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:276 +msgid "Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:173 +#: includes/admin/class-mp-products-admin.php:461 +#: includes/admin/class-mp-products-admin.php:1972 +#: includes/admin/class-mp-products-admin.php:2224 +msgid "SKU" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:459 +#: includes/admin/class-mp-products-admin.php:1793 +#: includes/admin/class-mp-products-admin.php:1805 +#: includes/admin/class-mp-products-admin.php:2163 +msgid "Variations" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:83 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:86 +#: includes/admin/class-mp-dashboard-widgets.php:134 +#: includes/admin/class-mp-products-admin.php:458 +#: includes/admin/class-mp-products-admin.php:837 +#: includes/admin/class-mp-shortcode-builder.php:689 +#: includes/admin/class-mp-shortcode-builder.php:856 +#: includes/admin/class-mp-shortcode-builder.php:1300 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:512 +#: includes/admin/widgets/ms-global-product-list.php:115 +#: includes/admin/widgets/product-list.php:211 +msgid "Product Name" +msgstr "" + +#: includes/common/template-functions.php:2575 +msgid "Categorized in " +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:305 +#: includes/common/payment-gateways/free_orders.php:176 +msgid "Payment Information" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:167 +#: includes/admin/class-mp-orders-admin.php:432 +#: includes/admin/class-mp-pages-admin.php:62 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:227 +#: includes/common/class-mp-gdpr.php:374 +#: includes/common/template-functions.php:175 +#: includes/common/template-functions.php:926 +msgid "Order Status" +msgstr "" + +#. translators: %s: orders closed +#: marketpress.php:327 +msgid "Closed (%s)" +msgid_plural "Closed (%s)" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:249 +#: includes/admin/class-mp-orders-admin.php:375 +#: includes/admin/class-mp-orders-admin.php:951 +#: includes/admin/class-mp-orders-admin.php:1053 +#: includes/admin/class-mp-orders-admin.php:1065 +#: includes/common/class-mp-gdpr.php:330 +#: includes/common/class-mp-order.php:1019 marketpress.php:325 +msgid "Closed" +msgstr "" + +#. translators: %s: shipped orders +#: marketpress.php:320 +msgid "Shipped (%s)" +msgid_plural "Shipped (%s)" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:248 +#: includes/admin/class-mp-orders-admin.php:376 +#: includes/admin/class-mp-orders-admin.php:950 +#: includes/admin/class-mp-orders-admin.php:1049 +#: includes/admin/class-mp-orders-admin.php:1064 +#: includes/common/class-mp-gdpr.php:329 +#: includes/common/class-mp-order.php:1002 marketpress.php:318 +msgid "Shipped" +msgstr "" + +#. translators: %s: paid orders +#: marketpress.php:313 +msgid "Paid (%s)" +msgid_plural "Paid (%s)" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:247 +#: includes/admin/class-mp-orders-admin.php:377 +#: includes/admin/class-mp-orders-admin.php:949 +#: includes/admin/class-mp-orders-admin.php:1045 +#: includes/admin/class-mp-orders-admin.php:1063 +#: includes/common/class-mp-gdpr.php:328 +#: includes/common/payment-gateways/2checkout.php:294 +#: includes/common/payment-gateways/_cubepoints.php:130 +#: includes/common/payment-gateways/authorizenet-aim.php:193 +#: includes/common/payment-gateways/free_orders.php:91 +#: includes/common/payment-gateways/mijireh.php:248 +#: includes/common/payment-gateways/paymill.php:273 +#: includes/common/payment-gateways/paypal-express.php:933 +#: includes/common/payment-gateways/paypal-express.php:967 +#: includes/common/payment-gateways/pin.php:258 +#: includes/common/payment-gateways/simplify.php:181 +#: includes/common/payment-gateways/stripe.php:368 +#: includes/common/payment-gateways/wepay.php:269 marketpress.php:311 +msgid "Paid" +msgstr "" + +#. translators: %s: orders received +#: marketpress.php:306 +msgid "Received (%s)" +msgid_plural "Received (%s)" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:246 +#: includes/admin/class-mp-orders-admin.php:378 +#: includes/admin/class-mp-orders-admin.php:1041 +#: includes/admin/class-mp-orders-admin.php:1062 +#: includes/common/class-mp-gdpr.php:327 includes/common/class-mp-order.php:995 +#: includes/common/payment-gateways/payfast.php:244 marketpress.php:304 +msgid "Received" +msgstr "" + +#: marketpress.php:268 +msgid "Search Orders" +msgstr "" + +#: marketpress.php:267 +msgid "View Order" +msgstr "" + +#: marketpress.php:262 +msgid "Order" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:301 +#: includes/admin/class-mp-orders-admin.php:989 marketpress.php:261 +msgid "Orders" +msgstr "" + +#: marketpress.php:228 +msgid "No Products found in Trash" +msgstr "" + +#: marketpress.php:227 +msgid "No Products Found" +msgstr "" + +#: marketpress.php:226 +msgid "Search Products" +msgstr "" + +#: marketpress.php:225 marketpress.php:229 +msgid "View Product" +msgstr "" + +#: marketpress.php:224 +msgid "New Product" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1022 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:258 +#: marketpress.php:223 +msgid "Edit" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1019 +msgid "Create New" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:687 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:698 +#: marketpress.php:217 +msgid "Product" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:307 +#: includes/common/template-functions.php:173 +#: includes/common/template-functions.php:179 +#: includes/common/template-functions.php:902 +#: includes/multisite/template-functions.php:82 marketpress.php:216 +#: marketpress.php:219 +msgid "Products" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:118 +#: includes/admin/widgets/product-tag-cloud.php:46 +#: includes/multisite/class-mp-admin-multisite.php:548 +msgid "Product Tags" +msgstr "" + +#: includes/common/template-functions.php:2906 +#: includes/multisite/template-functions.php:449 +msgid "Product Category" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:117 +#: includes/admin/widgets/categories.php:8 +#: includes/admin/widgets/categories.php:18 +#: includes/multisite/class-mp-admin-multisite.php:539 +msgid "Product Categories" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:332 +#: includes/common/template-functions.php:872 marketpress.php:218 +msgid "Store" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:60 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:209 +#: includes/admin/widgets/cart.php:8 includes/admin/widgets/cart.php:56 +#: includes/common/template-functions.php:174 +#: includes/common/template-functions.php:811 +msgid "Shopping Cart" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:110 +#: includes/admin/class-mp-store-settings-admin.php:218 +msgid "Store Settings" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:128 marketpress.php:607 +msgid "Settings" +msgstr "" + +#: includes/common/data.php:178 includes/common/data.php:190 +msgid "Your Order Has Been Shipped! (ORDERID)" +msgstr "" + +#: includes/common/data.php:159 includes/common/data.php:166 +#: includes/common/data.php:172 +msgid "Your Order Confirmation (ORDERID)" +msgstr "" + +#: includes/common/data.php:148 +msgid "

    Thank you for your order! We appreciate your business, and please come back often to check out our new products.

    " +msgstr "" + +#: includes/common/data.php:147 +msgid "

    You are almost done! Please do a final review of your order to make sure everything is correct then click the \"Confirm Payment\" button.

    " +msgstr "" + +#: includes/common/data.php:145 +msgid "

    Please enter your shipping information in the form below to proceed with your order.

    " +msgstr "" + +#: includes/common/data.php:143 +msgid "

    If you have any questions about your order please do not hesitate to contact us.

    " +msgstr "" + +#: includes/common/data.php:106 +msgid "tag" +msgstr "" + +#: includes/common/data.php:105 +msgid "category" +msgstr "" + +#: includes/common/data.php:104 +msgid "order-status" +msgstr "" + +#: includes/common/data.php:103 +msgid "shopping-cart" +msgstr "" + +#: includes/common/data.php:102 +msgid "products" +msgstr "" + +#. Translators: change default slugs here +#: includes/common/data.php:101 +msgid "store" +msgstr "" \ No newline at end of file diff --git a/languages/mp-id.mo b/languages/mp-id.mo new file mode 100644 index 0000000000000000000000000000000000000000..61a39298ffe13a8f0db6b84ad6e01ad64f5098b5 GIT binary patch literal 20304 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

    QZyS=L&vx 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 literal 0 HcmV?d00001 diff --git a/languages/mp-id.po b/languages/mp-id.po new file mode 100644 index 00000000..9a6cd6e0 --- /dev/null +++ b/languages/mp-id.po @@ -0,0 +1,8954 @@ +# Translation of MarketPress in Indonesian +# This file is distributed under the same license as the MarketPress package. +msgid "" +msgstr "" +"PO-Revision-Date: 2013-10-08 23:20:43+0000\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-Generator: GlotPress/2.3.1\n" +"Language: id\n" +"Project-Id-Version: MarketPress\n" + +#: includes/public/class-mp-checkout.php:1285 +msgid "By clicking this checkbox you allow the website to process your personal data." +msgstr "" + +#: includes/common/class-mp-gdpr.php:382 +msgid "Order Info" +msgstr "" + +#: includes/common/class-mp-gdpr.php:268 +msgid "Shipping Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:267 +msgid "Shipping Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:266 +msgid "Shipping ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:265 +msgid "Shipping State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:264 +msgid "Shipping City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:263 +msgid "Shipping Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:262 +msgid "Shipping Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:261 +msgid "Shipping Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:260 +msgid "Shipping Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:259 +msgid "Shipping Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:258 +msgid "Shipping First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:254 +msgid "Billing Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:253 +msgid "Billing Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:252 +msgid "Billing ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:251 +msgid "Billing State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:250 +msgid "Billing City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:249 +msgid "Billing Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:248 +msgid "Billing Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:247 +msgid "Billing Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:246 +msgid "Billing Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:245 +msgid "Billing Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:244 +msgid "Billing First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:151 +msgid "Orders Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:139 +msgid "Customer Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:100 includes/common/class-mp-gdpr.php:116 +msgid "MarketPress User Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:81 +msgid "" +"In addition to standard WordPress session cookies, this site might be setting an\n" +"\t\t additional cookie to remember your cart settings. This cookie will last for one year." +msgstr "" + +#: includes/common/class-mp-gdpr.php:80 +msgid "Cookies" +msgstr "" + +#: includes/common/class-mp-gdpr.php:77 +msgid "" +"The following information will be collected in order to process orders: your name,\n" +"\t\t username, email address, avatar and profile URLs, address and phone number. This data can be\n" +"\t\t exported and removed." +msgstr "" + +#: includes/common/class-mp-gdpr.php:76 +msgid "Additional data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:71 +msgid "" +"This site might be using third party services and tools to process payments or/and\n" +"\t\t process shipping data when creating orders on the MarketPress store. These services include payment\n" +"\t\t gateways: 2Checkout, Authorize.net AIM, eWay shared payments, eWay Rapid 3.1 Payments, Mijireh,\n" +"\t\t Mollie, Paymill, PayPal, PIN, Simplify Commerce by MasterCard, Stripe and WePay; shipping gateways:\n" +"\t\t Fedex, UPS, USPS." +msgstr "" + +#: includes/common/class-mp-gdpr.php:70 +msgid "Third parties" +msgstr "" + +#: includes/admin/class-mp-admin.php:403 +msgid "Start creating store pages and products for your online shop here." +msgstr "" + +#: includes/admin/class-mp-admin.php:402 +msgid "Create Online Shop" +msgstr "" + +#: includes/admin/class-mp-admin.php:394 +msgid "Run Setup Wizard" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:234 +msgid "If having problems during invoice generation, add define( 'DOMPDF_ENABLE_HTML5PARSER', true ); to the wp-config.php file." +msgstr "" + +#: includes/public/class-mp-checkout.php:723 +msgid "Invalid Email" +msgstr "" + +#: includes/public/class-mp-checkout.php:721 +#: includes/public/class-mp-checkout.php:729 +msgid "This field is required" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:804 +msgid "This option changes the built-in css styles for store pages. For a custom css style, save your css file with the /* MarketPress Style: Your CSS Theme Name Here */ header line in the \"%s\" folder and it will appear in this list so you may select it. You should select \"None\" if you don't wish to use custom CSS styles or if you are using default theme templates or custom theme templates and css to make your own completely unique store design. For more information on custom theme templates click here »." +msgstr "" + +#: includes/public/class-mp-public.php:421 +#: includes/public/class-mp-short-codes.php:142 +msgid "Please enter a value greater than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:420 +#: includes/public/class-mp-short-codes.php:141 +msgid "Please enter a value less than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:419 +#: includes/public/class-mp-short-codes.php:140 +msgid "Please enter a value between {0} and {1}." +msgstr "" + +#: includes/public/class-mp-public.php:418 +#: includes/public/class-mp-short-codes.php:139 +msgid "Please enter a value between {0} and {1} characters long." +msgstr "" + +#: includes/public/class-mp-public.php:417 +#: includes/public/class-mp-short-codes.php:138 +msgid "Please enter at least {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:416 +#: includes/public/class-mp-short-codes.php:137 +msgid "Please enter no more than {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:415 +#: includes/public/class-mp-short-codes.php:136 +msgid "Please enter a value with a valid extension." +msgstr "" + +#: includes/public/class-mp-public.php:414 +#: includes/public/class-mp-short-codes.php:135 +msgid "Please enter the same value again." +msgstr "" + +#: includes/public/class-mp-public.php:413 +#: includes/public/class-mp-short-codes.php:134 +msgid "Please enter a valid credit card number." +msgstr "" + +#: includes/public/class-mp-public.php:412 +#: includes/public/class-mp-short-codes.php:133 +msgid "Please enter only digits." +msgstr "" + +#: includes/public/class-mp-public.php:411 +#: includes/public/class-mp-short-codes.php:132 +msgid "Please enter a valid number." +msgstr "" + +#: includes/public/class-mp-public.php:410 +#: includes/public/class-mp-short-codes.php:131 +msgid "Please enter a valid date (ISO)." +msgstr "" + +#: includes/public/class-mp-public.php:409 +#: includes/public/class-mp-short-codes.php:130 +msgid "Please enter a valid date." +msgstr "" + +#: includes/public/class-mp-public.php:408 +#: includes/public/class-mp-short-codes.php:129 +msgid "Please enter a valid URL." +msgstr "" + +#: includes/public/class-mp-public.php:406 +#: includes/public/class-mp-short-codes.php:127 +msgid "Please fix this field." +msgstr "" + +#: includes/public/class-mp-checkout.php:1287 +#: includes/public/class-mp-public.php:405 +#: includes/public/class-mp-short-codes.php:126 +msgid "This field is required." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:810 +msgid "None - Without Special CSS-styles" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:809 +msgid "Default - Using Default CSS-styles" +msgstr "" + +#: marketpress.php:739 +msgid "Enable multiple downloads per product" +msgstr "" + +#: marketpress.php:738 +msgid "Multiple Downloads" +msgstr "" + +#: includes/public/class-mp-checkout.php:715 +msgid "Invalid Zip Code" +msgstr "" + +#: includes/common/template-functions.php:2126 +msgid "Guest Email" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:195 +msgid "There was a problem finalizing your purchase. Please re-enter your credit card information and try again" +msgstr "" + +#: includes/common/class-mp-cart.php:565 includes/common/class-mp-order.php:600 +#: includes/common/helpers.php:111 +msgid "Download %1$s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:331 +msgid "Export products to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:328 +msgid "The import process uses the WordPress importer plugin." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:326 +msgid "Import / Export Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:325 +msgid "Export settings to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:324 +msgid "Import configuration" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:320 +msgid "Use the text below to export to a new installation. Or paste in the new configuration to import." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:318 +msgid "Import / Export Settings" +msgstr "" + +#. translators: URL to wp-admin/import.php +#: includes/admin/store-settings/class-mp-store-settings-import.php:266 +msgid "This importer is not installed. Please install importers from the main site." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:261 +msgid "Install Now" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:260 +msgid "Install %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:240 +msgid "Run Importer" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:239 +msgid "Run %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:258 +msgid "Import/Export" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1199 +msgid "Requires Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:737 +msgid "Optionally limit the user to some categories" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:671 +msgid "Should this coupon only be available to logged in users?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:670 +msgid "Require Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:655 +msgid "Mimimum number of products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:653 +msgid "Enter the minimum number of products in the cart that this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:648 +msgid "Can this coupon be limited to a number of products in the cart?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:334 +msgid "Add all values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:265 +msgid "Set as default variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:154 +msgid "Set Default" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:150 +msgid "More Info" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:40 +msgid "MarketPress - Quick Setup" +msgstr "" + +#: includes/public/class-mp-checkout.php:1399 +msgid "Proceed to checkout and create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1241 +#: includes/public/class-mp-checkout.php:1245 +msgid "Register account" +msgstr "" + +#: includes/public/class-mp-checkout.php:1233 +msgid "Register as customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:765 +msgid "

    Oops!

    Looks like you haven't added anything your cart. Let's go shopping!

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:763 +msgid "

    Oops!

    The cart is disabled.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing Information" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:214 +msgid "Global Currency" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:198 +msgid "Global Store Currency" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:507 +msgid "There are no shipping services available for this type of package in your location." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:168 +msgid "Using this USPS Shipping calculator requires requesting an Ecommerce API Username and Password. Get your free set of credentials here ». The password is no longer used for the API, just the username which you should enter below. The USPS test site has not yet been updated and currently doesn't work - you should just request activating your credentials with USPS and go live." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:339 +msgid "ZIP Code" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:334 +msgid "Last name" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:333 +msgid "First name" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:150 +msgid "These are the manual payment instructions to display on the order confirmation screen. TOTAL will be replaced with the order total and ORDERID will be replaced with Order ID." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:240 +msgid "You must login to Authorize.net merchant dashboard to obtain the API login ID and API transaction key. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:327 +msgid "
    1. Set the \"Return Method\" within Site Management to Header Redirect and set the \"Return URL\" to %s
    2. Set your notifications url to %s
    " +msgstr "" + +#: includes/common/data.php:191 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Also, digital downloads included in your order are now ready to be downloaded. Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:185 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order is now available to download! Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:184 +msgid "Your Order Is Ready To Be Downloaded! (ORDERID)" +msgstr "" + +#: includes/common/data.php:179 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:173 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received, your digital goods are ready to be downloaded and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:167 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received and your digital goods are ready to be downloaded. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:160 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +" Your order has been received, and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information: \n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/class-mp-product.php:638 +msgid "You can not add more items to cart." +msgstr "" + +#: includes/common/class-mp-product.php:635 +msgid "You can only add {0} to cart." +msgstr "" + +#: includes/common/class-mp-product.php:625 +msgid "This product has an order limit of %d." +msgstr "" + +#: includes/common/class-mp-order.php:1454 +msgid "Shipped: tracking code: %s" +msgstr "" + +#: includes/common/class-mp-order.php:1000 +#: includes/common/class-mp-order.php:1012 +msgid "Finished" +msgstr "" + +#: includes/common/class-mp-order.php:858 +msgid "Contact Details" +msgstr "" + +#: includes/common/class-mp-order.php:339 includes/common/data.php:155 +msgid "" +"A new order (ORDERID) was created in your store:\n" +"\n" +" ORDERINFOSKU\n" +"\n" +" SHIPPINGINFO\n" +"\n" +" PAYMENTINFO\n" +"\n" +msgstr "\n" + +#: includes/common/class-mp-cart.php:1858 +msgid "Add again" +msgstr "" + +#: includes/common/class-mp-cart.php:1852 +msgid "was removed from Shopping Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1242 +#: includes/public/class-mp-short-codes.php:160 +msgid "Cart update notice: this item has a limit per order or you have reached the stock limit." +msgstr "" + +#: includes/admin/widgets/product-list.php:235 +msgid "Show Only Featured Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:533 +msgid "If enabled, users won't be able to filter products per category and/or to order by release date/name/price." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:531 +msgid "Hide Products Filter?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:353 +msgid "Notification to registration email instead of billing email?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:322 +msgid "Order Shipped - Mixed orders (with both digital and physical products)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:289 +msgid "Order Shipped - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:224 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:194 +msgid "New Order - Mixed" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:161 +msgid "New Order - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:115 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:243 +msgid "Mixed orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:110 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:238 +msgid "Digital downloads orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:105 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:233 +msgid "Physical orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:96 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed.
    For orders placed with manual payment, emails set here will be overriden by the one configured in manual payments settings, under payments settings page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:89 +msgid "Customer Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:47 +msgid "Admin Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:566 +msgid "Only contact details" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:565 +msgid "Full billing info" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:561 +msgid "Details Collection" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:548 +msgid "Digital Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:515 +msgid "Apply Tax to Digital Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:236 +msgid "product (default)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:231 +msgid "If you are experiencing conflicts with other e-commerce plugins change this setting. This will change the internal post type of all your products. Please note that changing this option may break 3rd party themes or plugins." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1203 +msgid "Hide details" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1202 +msgid "Show all changes" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1184 +msgid "Version %s" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1161 +msgid "Current" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1131 +msgid "%s changelog" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:952 +msgid "We did not find any data for this plugin or theme..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:285 +msgid "Activate WPMU DEV Dashboard" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:279 +msgid "Just one more step - activate the WPMU DEV Dashboard plugin and you're all done!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:277 +msgid "Important updates are available for your WPMU DEV plugins/themes. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:273 +msgid "Just one more step to enable updates and support for %s!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:271 +msgid "Important updates are available for %s. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:264 +msgid "activate" +msgstr "" + +#: includes/admin/class-mp-admin.php:398 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:248 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:289 +msgid "Dismiss" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:247 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:288 +msgid "Saving..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:244 +msgid "Install Plugin" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:238 +msgid "Almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:236 +msgid "Important updates are available for your WPMU DEV plugins/themes. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:232 +msgid "%s is almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:230 +msgid "Important updates are available for %s. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:223 +msgid "install" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1428 +msgid "Sets the number of Tags to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1289 +msgid "How many products to display in the product list if \"paginate\" is set to false." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:739 +#: includes/admin/class-mp-shortcode-builder.php:906 +#: includes/admin/class-mp-shortcode-builder.php:1350 +msgid "Grid" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:735 +#: includes/admin/class-mp-shortcode-builder.php:902 +#: includes/admin/class-mp-shortcode-builder.php:1346 +msgid "Products will be displayed as list or grid." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:206 +msgid "Display a cloud or list of your global product tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:205 +msgid "Display a list of your global categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:204 +msgid "Display a list or grid of your global products." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:181 +msgid "Display a list of featured products." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1451 +msgid "Is Featured?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1444 +msgid "Featured Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:581 +#: includes/admin/class-mp-products-admin.php:1580 +msgid "% discount" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:579 +msgid "OR" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:460 +#: includes/admin/class-mp-products-admin.php:586 +#: includes/admin/widgets/product-list.php:217 +msgid "Featured" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:536 +#: includes/admin/class-mp-orders-admin.php:538 +msgid "Tracking Link" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:508 +msgid "Shipping Tax" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:356 +msgid "Shipping Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:352 +msgid "Taxes Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:349 +msgid "Products Total" +msgstr "" + +#: includes/admin/class-mp-ajax.php:366 +msgid "Oops! You entered an invalid username/email and or password." +msgstr "" + +#: includes/admin/class-mp-ajax.php:254 +msgid "Percentage Discount" +msgstr "" + +#: includes/admin/class-mp-ajax.php:234 +msgid "Limit the Amount of Items per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:214 +msgid "Unused Attributes" +msgstr "" + +#: includes/admin/class-mp-admin.php:82 +msgid "Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-admin.php:79 +msgid "MarketPress setup is not complete! Once you've completed this quick setup wizard you'll have a fully working online store - exciting! " +msgstr "" + +#: marketpress.php:263 +msgctxt "mp_order" +msgid "Add New" +msgstr "" + +#: marketpress.php:184 +msgctxt "product_tag" +msgid "Product Tag" +msgstr "" + +#: marketpress.php:183 +msgctxt "product_tag" +msgid "Product Tags" +msgstr "" + +#: marketpress.php:150 +msgctxt "product_category" +msgid "Product Category" +msgstr "" + +#: marketpress.php:149 +msgctxt "product_category" +msgid "Product Categories" +msgstr "" + +#. Author URI of the plugin/theme +msgid "http://premium.wpmudev.org" +msgstr "" + +#: marketpress.php:729 +msgid "Invoice PDF" +msgstr "" + +#: marketpress.php:712 +msgid "Grant access to themes and gateways depending on the user's Pro Site level" +msgstr "" + +#: marketpress.php:711 +msgid "Pro Sites" +msgstr "" + +#: marketpress.php:703 +msgid "Offer and accept coupon codes" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:687 +msgid "Install %s Pages" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:682 +msgid "Welcome to %s – Install pages required by the plugin automatically." +msgstr "" + +#: marketpress.php:668 +msgid "Your pages were created successfully." +msgstr "" + +#: marketpress.php:436 +msgid "Add a Product" +msgstr "" + +#: marketpress.php:271 +msgid "Parent Order" +msgstr "" + +#: marketpress.php:270 +msgid "No orders found in trash" +msgstr "" + +#: marketpress.php:269 +msgid "No orders found" +msgstr "" + +#: marketpress.php:265 +msgid "Edit Order" +msgstr "" + +#: marketpress.php:264 +msgid "Add New Order" +msgstr "" + +#: marketpress.php:220 marketpress.php:221 +msgid "Add New Product" +msgstr "" + +#: marketpress.php:197 +msgid "No product tags found" +msgstr "" + +#: marketpress.php:196 +msgid "Choose from the most used product tags" +msgstr "" + +#: marketpress.php:195 +msgid "Add or remove product tags" +msgstr "" + +#: marketpress.php:194 +msgid "Separate product tags with commas" +msgstr "" + +#: marketpress.php:193 +msgid "Search Product Tags" +msgstr "" + +#: marketpress.php:192 +msgid "Parent Product Tag:" +msgstr "" + +#: marketpress.php:191 +msgid "Parent Product Tag" +msgstr "" + +#: marketpress.php:190 +msgid "New Product Tag Name" +msgstr "" + +#: marketpress.php:189 +msgid "Add New Product Tag" +msgstr "" + +#: marketpress.php:188 +msgid "Update Product Tag" +msgstr "" + +#: marketpress.php:187 +msgid "View Product Tag" +msgstr "" + +#: marketpress.php:186 +msgid "Edit Product Tag" +msgstr "" + +#: marketpress.php:185 +msgid "All Product Tags" +msgstr "" + +#: marketpress.php:163 +msgid "No product categories found" +msgstr "" + +#: marketpress.php:162 +msgid "Choose from the most used product categories" +msgstr "" + +#: marketpress.php:161 +msgid "Add or remove product categories" +msgstr "" + +#: marketpress.php:160 +msgid "Separate product categories with commas" +msgstr "" + +#: marketpress.php:159 +msgid "Search Product Categories" +msgstr "" + +#: marketpress.php:158 +msgid "Parent Product Category:" +msgstr "" + +#: marketpress.php:157 +msgid "Parent Product Category" +msgstr "" + +#: marketpress.php:156 +msgid "New Product Category Name" +msgstr "" + +#: marketpress.php:155 +msgid "Add New Product Category" +msgstr "" + +#: marketpress.php:154 +msgid "Update Product Category" +msgstr "" + +#: marketpress.php:153 +msgid "View Product Category" +msgstr "" + +#: marketpress.php:152 +msgid "Edit Product Category" +msgstr "" + +#: marketpress.php:151 +msgid "All Product Categories" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Please fix the %s1 and then try submitting the form again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Oops! The form contains %s1 which %s2 been highlighted below." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:660 +msgid "have" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:659 +msgid "has" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:651 +msgid "Value must be less than {0}" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:650 +msgid "Please enter only letters and numbers" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:539 +msgid "Due to prolonged inactivity on this page, one or more settings were not saved. Please try again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:535 +msgid "Settings Saved" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-user-select.php:22 +msgid "Select Some Users" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-section.php:18 +msgid "Section Title" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:425 +msgid "Are you sure you want to delete this?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:30 +msgid "Add Row" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-post-select.php:24 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-taxonomy-select.php:22 +msgid "Select Posts" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:210 +msgid "Add Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:129 +msgid "Select the image that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:93 +msgid "Select image(s) that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:79 +msgid "Select the image that you would like to use for this variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:48 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:82 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:68 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:132 +msgid "Select Image" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:31 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:160 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:168 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:19 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:115 +msgid "Select File" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:30 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:18 +msgid "Select the file that you would like to use." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:357 +msgid "Create Variations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:356 +msgid "Add Another Variant" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Insert a value and press ENTER" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "(e.g. White, Grey, Red etc.)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Variation Values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:333 +msgid "Or create new variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "(e.g. Color)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:303 +msgid "You are about to delete selected variants.
    If you want to continue please confirm." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:302 +msgid "Confirmation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:290 +msgid "Insert quantity available. Empty for unlimited." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:281 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:294 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:307 +msgid "Cancel" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:280 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:293 +msgid "Update" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:277 +msgid "Insert the price i.e. 25 or 25.50" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:115 +msgid "Img." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:85 +msgid "Add New Variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:79 +msgid "Delete Variants" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:78 +msgid "Update Prices" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:77 +msgid "Update Inventory" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:76 +msgid "Update Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:75 +msgid "Bulk Actions" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:73 +msgid "Select bulk action" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:196 +msgid "Configure Store" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:195 +msgid "Configure shipping rates, emails and your store's appearance. " +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:190 +msgid "Add Product" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:189 +msgid "Add your first product for sale and get familiar with adding products." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:184 +msgid "Your store is almost ready for its first customers, but first it needs some products. Get started by adding products below, or jump straight into further configuring your store’s settings." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:183 +msgid "Woohoo! Your online store is up and running." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:160 +msgid "Finish Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:124 +msgid "And what metric system do you want to use?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:113 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:142 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:159 +msgid "Back" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:109 +msgid "Do you want to apply tax for your products? You can customize this for each product and variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:105 +msgid "What currency do you want to sell with?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:93 +msgid "And, which countries do you want to sell to?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:89 +msgid "Where is your online store based?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:80 +msgid "Payment Gateway" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:79 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:123 +msgid "Metric System" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:78 +msgid "Currency & Tax" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:77 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:88 +msgid "Locations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:70 +msgid "Choose where you want to sell your stuff and what currency. Easy!" +msgstr "" + +#: includes/public/class-mp-checkout.php:1400 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:58 +msgid "Continue" +msgstr "" + +#: includes/admin/class-mp-admin.php:83 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:53 +msgid "Skip this step, I'll do this manually" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:49 +msgid "Install store pages" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:44 +msgid "Once you've completed this quick setup wizard you'll have a fully working online store - exciting! Start
    by creating the default store pages for the online store such as the cart, checkout and store pages." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:42 +msgid "MarketPress adds a full online store to your website, with heaps of configuration options and addons
    to suit your needs. It's really easy to get going, and only takes a few minutes to setup!" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:41 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:69 +msgid "Welcome to MarketPress - Quick Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-advanced-select.php:23 +msgid "Select Some Options" +msgstr "" + +#: includes/wpmudev-metaboxes/class-wpmudev-field.php:694 +msgid "You must the WPMUDEV_Field::display() method in your form field class" +msgstr "" + +#: includes/public/class-mp-short-codes.php:636 +msgid "Only %s left in stock..." +msgstr "" + +#: includes/public/class-mp-short-codes.php:633 +msgid "Unlimited stock" +msgstr "" + +#: includes/public/class-mp-short-codes.php:430 +msgid "product_id must be defined" +msgstr "" + +#: includes/public/class-mp-checkout.php:1250 +msgid "An account with this username already exists" +msgstr "" + +#: includes/public/class-mp-checkout.php:1394 +msgid "Continue as Guest" +msgstr "" + +#: includes/public/class-mp-checkout.php:1393 +msgid "Proceed to checkout and you'll have an opportunity to create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1392 +#: includes/public/class-mp-checkout.php:1398 +msgid "First-time customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1386 +msgid "Login" +msgstr "" + +#: includes/public/class-mp-checkout.php:1379 +msgid "E-Mail Address/Username" +msgstr "" + +#: includes/public/class-mp-checkout.php:1377 +msgid "Sign in to speed up the checkout process." +msgstr "" + +#: includes/public/class-mp-checkout.php:1376 +msgid "Have an account?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1297 +msgid "Shipping address different than billing?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1184 +msgid "There are no available gateways to process this payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1160 +msgid "Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:1123 +msgid "Oops! An error occurred while processing your payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1051 +msgid "Next Step »" +msgstr "" + +#: includes/public/class-mp-checkout.php:1045 +msgid "« Previous Step" +msgstr "" + +#: includes/public/class-mp-checkout.php:873 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:657 +msgid "error" +msgstr "" + +#: includes/public/class-mp-checkout.php:872 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:658 +msgid "errors" +msgstr "" + +#: includes/public/class-mp-checkout.php:871 +msgid "

    Oops! We found %d %s in the form below.

    Fields that have errors are highlighted in red below. Entering into a field will reveal the actual error that occurred.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:870 +msgid "Please enter a valid first and last name" +msgstr "" + +#: includes/public/class-mp-checkout.php:869 +msgid " Please enter a valid card security code" +msgstr "" + +#: includes/public/class-mp-checkout.php:868 +msgid "Please enter a valid card expiration" +msgstr "" + +#: includes/public/class-mp-checkout.php:773 +msgid "Javascript is required in order to checkout. Please enable Javascript in your browser and then refresh this page." +msgstr "" + +#: includes/public/class-mp-checkout.php:588 +msgid "An unknown error occurred. Please try again." +msgstr "" + +#: includes/public/class-mp-checkout.php:386 +msgid "Town/City" +msgstr "" + +#: includes/public/class-mp-checkout.php:380 +msgid "Apartment, suite, unit, building, floor, etc" +msgstr "" + +#: includes/public/class-mp-checkout.php:376 +msgid "Address Line 2" +msgstr "" + +#: includes/public/class-mp-checkout.php:363 +msgid "Address Line 1" +msgstr "" + +#: includes/common/class-mp-order.php:770 +#: includes/public/class-mp-checkout.php:354 +msgid "Company" +msgstr "" + +#: includes/public/class-mp-checkout.php:330 +msgid "Last" +msgstr "" + +#: includes/public/class-mp-checkout.php:321 +msgid "First" +msgstr "" + +#: includes/public/class-mp-checkout.php:284 +msgid "State/Province" +msgstr "" + +#: includes/public/class-mp-checkout.php:83 +msgid "Review Order/Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing/Shipping Address" +msgstr "" + +#: includes/public/class-mp-checkout.php:80 +msgid "Login/Register" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:530 +msgid "Marketplace" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:523 +msgid "Global Marketplace Pages" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +msgid "Store Network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +#: includes/multisite/class-mp-admin-multisite.php:494 +msgid "Store Network Settings" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:440 +msgid "Set theme access permissions for network stores. For a custom css theme, save your css file with the MarketPress Theme: NAME header in the /marketpress/ui/themes/ folder and it will appear in this list so you may select it." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:361 +msgid "Choose a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:336 +msgid "%d products get indexed" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:285 +msgid "Product Indexer" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:281 +msgid "Please hold on..." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:280 +msgid "Index Products" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:279 +msgid "%d products have been indexed in whole network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:182 +msgid "Enable Global Shopping Cart?" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:178 +msgid "Limit Global Widgets/Shortcodes To Main Blog?" +msgstr "" + +#: includes/common/template-functions.php:2802 +#: includes/multisite/template-functions.php:355 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:97 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:114 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:143 +msgid "Next" +msgstr "" + +#: includes/common/template-functions.php:2801 +#: includes/multisite/template-functions.php:354 +msgid "Prev" +msgstr "" + +#: includes/common/template-functions.php:2597 +msgid "Tagged in " +msgstr "" + +#: includes/common/template-functions.php:2196 +#: includes/common/template-functions.php:2202 +#: includes/common/template-functions.php:2214 +#: includes/common/template-functions.php:2217 +msgid "Oops! We couldn't locate any orders matching that order number. Please verify the order number and try again." +msgstr "" + +#: includes/common/template-functions.php:2138 +msgid "Look Up" +msgstr "" + +#: includes/common/template-functions.php:1423 +msgid "Please choose a shipping method" +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "If you have your order ID you can look it up using the form below." +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "Order Search" +msgstr "" + +#: includes/common/template-functions.php:910 +#: includes/public/class-mp-checkout.php:1440 +msgid "Cart" +msgstr "" + +#: includes/common/template-functions.php:895 +msgid "[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:887 +msgid "[mp_global_categories_list]" +msgstr "" + +#: includes/common/template-functions.php:880 +msgid "" +"Welcome to our market place!\n" +"\n" +"Check out our network of products:\n" +"\n" +"[mp_list_global_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_global_categories_list]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:879 +msgid "Global Store" +msgstr "" + +#: includes/common/template-functions.php:873 +msgid "" +"Welcome to our online store! Feel free to browse around:\n" +"\n" +"[mp_store_navigation]\n" +"\n" +"Check out our most popular products:\n" +"\n" +"[mp_popular_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_list_categories]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_tag_cloud]" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:127 +msgid "If cart weight is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:126 +msgid "Cart Weight" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:222 +msgid "Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:206 +msgid "Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:196 +msgid "Retail Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:195 +msgid "Online Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:193 +msgid "Rates Request Type" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:189 +msgid "Maximum Weight Per Package" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:195 +#: includes/common/shipping-modules/mp-usps.php:236 +msgid "Enter your standard box sizes as LengthxWidthxHeight (e.g. 12x8x6) For each box defined enter the maximum weight it can contain. Note: the shipping prices this plugin calculates are estimates. If they are consistently too low or too high, please check that the list of boxes above and the product weights are accurate and complete." +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:187 +msgid "Handling Charge Per Box Shipped" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:176 +#: includes/common/shipping-modules/mp-ups.php:181 +msgid "Offered Services" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:165 +msgid "Shipper Number" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:151 +msgid "User ID" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:144 +msgid "Developer Kit Access Key" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:140 +msgid "Use Sandbox Mode?" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:123 +msgid "In order to use UPS, you will need a UPS Developer Kit access key and the UPS user ID and password associated with the access key. Set these up for free here. If this information is missing or incorrect, an error will appear during the checkout process and the buyer will not be able to complete the transaction." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:112 +msgid "If cart total is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:111 +msgid "Cart Total" +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:95 +#: includes/common/shipping-modules/mp-weight-rate.php:111 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Don't worry about sorting as this will be done automatically upon saving." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:170 +msgid "Method Title (visible for clients)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:409 +#: includes/common/shipping-modules/mp-ups.php:216 +#: includes/common/shipping-modules/mp-usps.php:251 +msgid "Max Weight (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:402 +#: includes/common/shipping-modules/mp-ups.php:209 +#: includes/common/shipping-modules/mp-usps.php:247 +msgid "Size (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:387 +msgid "Enter your standard box sizes as LengthxWidthxHeight ( 12x8x6 ) For each box defined enter the maximum weight it can contain. Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:361 +#: includes/common/shipping-modules/mp-usps.php:229 +msgid "Handling Charge per International Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:353 +msgid "International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:339 +#: includes/common/shipping-modules/mp-usps.php:213 +msgid "Handling Charge per Domestic Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:331 +msgid "Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:321 +msgid "When checked the customer can chose Residential or Commercial delivery with Residential the default. Unchecked it's only Residential rates." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:320 +msgid "Allow Commercial Delivery?" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:315 +msgid "Fedex 10kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:314 +msgid "Fedex 25kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:313 +msgid "Fedex Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:312 +msgid "Fedex Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:311 +msgid "Fedex Pak" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:310 +msgid "Fedex Tube" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:306 +msgid "Default Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:294 +msgid "Dropoff Type" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:290 +msgid "Meter ID" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:134 +msgid "This is a residential address" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:283 +msgid "There was an error processing your card: \"%s\". Please check your credit card info and try again." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:121 +msgid "Wepay makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept cards directly on your site. You don't need a merchant account or gateway. WePay handles everything including storing cards. Credit cards go directly to WePay's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:385 +msgid "There was an error processing your card - \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:356 +msgid "%s Store Purchase - Order ID - %s, Email - %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:251 +msgid "Stripe makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept Visa, MasterCard, American Express, Discover, JCB, and Diners Club cards directly on your site. You don't need a merchant account or gateway. Stripe handles everything, including storing cards, subscriptions, and direct payouts to your bank account. Credit cards go directly to Stripe's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:192 +msgid "ZMW - Zambian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:191 +msgid "ZAR - South African Rand" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:190 +msgid "YER - Yemeni Rial" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:189 +msgid "XPF - Cfp Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:188 +msgid "XOF - West African Cfa Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:187 +msgid "XCD - East Caribbean Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:186 +msgid "XAF - Central African Cfa Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:185 +msgid "WST - Samoan Tala" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:184 +msgid "VUV - Vanuatu Vatu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:183 +msgid "VND - Vietnamese Đồng" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:182 +msgid "VEF - Venezuelan Bolívar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:181 +msgid "UZS - Uzbekistani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:180 +msgid "UYI - Uruguayan Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:178 +msgid "UGX - Ugandan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:177 +msgid "UAH - Ukrainian Hryvnia" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:176 +msgid "TZS - Tanzanian Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:175 +msgid "TWD - New Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:174 +msgid "TTD - Trinidad and Tobago Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:172 +msgid "TOP - Tongan Paʻanga" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:171 +msgid "TJS - Tajikistani Somoni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:169 +msgid "SZL - Swazi Lilangeni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:168 +msgid "SVC - Salvadoran Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:167 +msgid "STD - São Tomé and Príncipe Dobra" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:166 +msgid "SRD - Surinamese Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:165 +msgid "SOS - Somali Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:164 +msgid "SLL - Sierra Leonean Leone" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:163 +msgid "SHP - Saint Helenian Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:160 +msgid "SCR - Seychellois Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:159 +msgid "SBD - Solomon Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:157 +msgid "RWF - Rwandan Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:156 +msgid "RUB - Russian Ruble" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:155 +msgid "RSD - Serbian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:154 +msgid "RON - Romanian Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:153 +msgid "QAR - Qatari Riyal" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:152 +msgid "PYG - Paraguayan Guaraní*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:151 +msgid "PLN - Polish Złoty" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:150 +msgid "PKR - Pakistani Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:149 +msgid "PHP - Philippine Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:148 +msgid "PGK - Papua New Guinean Kina" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:147 +msgid "PEN - Peruvian Nuevo Sol*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:146 +msgid "PAB - Panamanian Balboa*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:144 +msgid "NPR - Nepalese Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:142 +msgid "NIO - Nicaraguan Córdoba*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:141 +msgid "NGN - Nigerian Naira" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:140 +msgid "NAD - Namibian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:139 +msgid "MZN - Mozambican Metical" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:137 +msgid "MXN - Mexican Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:136 +msgid "MWK - Malawian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:135 +msgid "MVR - Maldivian Rufiyaa" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:134 +msgid "MUR - Mauritian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:133 +msgid "MRO - Mauritanian Ouguiya" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:132 +msgid "MOP - Macanese Pataca" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:131 +msgid "MNT - Mongolian Tögrög" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:130 +msgid "MKD - Macedonian Denar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:129 +msgid "MGA - Malagasy Ariary" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:128 +msgid "MDL - Moldovan Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:126 +msgid "LVL - Latvian Lats" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:124 +msgid "LSL - Lesotho Loti" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:123 +msgid "LRD - Liberian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:122 +msgid "LKR - Sri Lankan Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:121 +msgid "LBP - Lebanese Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:120 +msgid "LAK - Lao Kip*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:119 +msgid "KZT - Kazakhstani Tenge" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:118 +msgid "KYD - Cayman Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:117 +msgid "KRW - South Korean Won" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:116 +msgid "KMF - Comorian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:115 +msgid "KHR - Cambodian Riel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:114 +msgid "KGS - Kyrgyzstani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:113 +msgid "KES - Kenyan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:111 +msgid "JMD - Jamaican Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:110 +msgid "ISK - Icelandic Króna" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:109 +msgid "INR - Indian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:108 +msgid "ILS - Israeli New Sheqel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:107 +msgid "IDR - Indonesian Rupiah" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:105 +msgid "HTG - Haitian Gourde" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:103 +msgid "HNL - Honduran Lempira*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:101 +msgid "GYD - Guyanese Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:100 +msgid "GTQ - Guatemalan Quetzal*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:99 +msgid "GNF - Guinean Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:98 +msgid "GMD - Gambian Dalasi" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:97 +msgid "GIP - Gibraltar Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:96 +msgid "GEL - Georgian Lari" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:94 +msgid "FKP - Falkland Islands Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:93 +msgid "FJD - Fijian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:91 +msgid "ETB - Ethiopian Birr" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:90 +msgid "EGP - Egyptian Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:89 +msgid "EEK - Estonian Kroon*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:88 +msgid "DZD - Algerian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:87 +msgid "DOP - Dominican Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:85 +msgid "DJF - Djiboutian Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:84 +msgid "CZK - Czech Koruna*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:83 +msgid "CVE - Cape Verdean Escudo*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:82 +msgid "CRC - Costa Rican Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:81 +msgid "COP - Colombian Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:80 +msgid "CNY - Chinese Renminbi Yuan" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:79 +msgid "CLP - Chilean Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:77 +msgid "CDF - Congolese Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:76 +msgid "CAD - Canadian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:75 +msgid "BZD - Belize Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:74 +msgid "BWP - Botswana Pula" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:73 +msgid "BSD - Bahamian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:72 +msgid "BRL - Brazilian Real*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:71 +msgid "BOB - Bolivian Boliviano*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:70 +msgid "BND - Brunei Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:69 +msgid "BMD - Bermudian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:68 +msgid "BIF - Burundian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:67 +msgid "BGN - Bulgarian Lev" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:66 +msgid "BDT - Bangladeshi Taka" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:65 +msgid "BBD - Barbadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:64 +msgid "BAM - Bosnia & Herzegovina Convertible Mark" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:63 +msgid "AZN - Azerbaijani Manat" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:62 +msgid "AWG - Aruban Florin" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:61 +msgid "AUD - Australian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:60 +msgid "ARS - Argentine Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:59 +msgid "AOA - Angolan Kwanza*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:58 +msgid "ANG - Netherlands Antillean Gulden" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:57 +msgid "AMD - Armenian Dram" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:56 +msgid "ALL - Albanian Lek" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:55 +msgid "AFN - Afghan Afghani*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:54 +msgid "AED - United Arab Emirates Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:345 +msgid "Skrill balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:327 +msgid "Skrill IPN message received." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:283 +msgid "Skrill" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:278 +msgid "Pending payment" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:144 +msgid "The secret word must match the word submitted in the \"Merchant Tools\" section of your Skrill account." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:134 +msgid "You must use your valid Skrill merchant email. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:133 +msgid "Skrill Email" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:123 +msgid "Resell your inventory via Skrill.com (Moneybookers)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:95 +msgid "ZAR - South-African Rand" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:93 +msgid "TWD - Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:92 +msgid "TRY - New Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:91 +msgid "TND - Tunisian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:90 +msgid "THB - Thailand Baht" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:89 +msgid "SKK - Slovakian Koruna" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:86 +#: includes/common/payment-gateways/stripe.php:158 +msgid "SAR - Saudi Riyal" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:85 +msgid "RSD - Serbian dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:83 +msgid "QAR - Qatari Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:81 +msgid "OMR - Omani Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:80 +msgid "NOK - Norwegian Krone " +msgstr "" + +#: includes/common/payment-gateways/skrill.php:78 +#: includes/common/payment-gateways/stripe.php:138 +msgid "MYR - Malaysian Ringgit" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:77 +#: includes/common/payment-gateways/stripe.php:127 +msgid "MAD - Moroccan Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:74 +msgid "KRW - South-Korean Won" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:72 +msgid "JOD - Jordanian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:70 +msgid "INR - Indian Rupee" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:63 +msgid "EEK - Estonian Kroon" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:56 +msgid "AED - Utd. Arab Emir. Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:52 +msgid "Turkish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:51 +msgid "Swedish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:50 +msgid "Spanish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:49 +msgid "Russian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:48 +msgid "Romainian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:47 +msgid "Polish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:46 +msgid "Italian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:45 +msgid "Greek" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:44 +msgid "German" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:43 +msgid "French" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:42 +msgid "Finnish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:41 +msgid "English" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:40 +msgid "Dutch" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:39 +msgid "Danish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:38 +msgid "Czech" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:37 +msgid "Chinese" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:201 +msgid "There was an error processing your card: %s. Please re-enter your credit card info and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:278 +msgid "
  • There was an error processing your card: \"%s\". Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:274 +msgid "
  • There was an error processing your card. Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:177 +#: includes/common/payment-gateways/stripe.php:279 +msgid "Publishable Key" +msgstr "" + +#: includes/common/payment-gateways/pin.php:163 +msgid "API Credentials?" +msgstr "" + +#: includes/common/payment-gateways/pin.php:147 +msgid "PIN makes it easy to start accepting credit card payments with Australia’s first all-in-one online payment system. Accept all major credit cards directly on your site. Your sales proceeds are deposited to any Australian bank account, no merchant account required." +msgstr "" + +#: includes/common/payment-gateways/pin.php:57 +#: includes/common/payment-gateways/stripe.php:179 +msgid "USD - United States Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:455 +msgid "Email Footer" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:445 +msgid "Email Header" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:416 +msgid "Partner" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:409 +msgid "Vendor" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:852 +#: includes/common/payment-gateways/paypal-express.php:1126 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences\t section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:749 +msgid "Page Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:744 +msgid "Header Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:739 +msgid "Header Border Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:734 +msgid "Header Image" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:680 +msgid "Locale" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:624 +#: includes/common/payment-gateways/paypal-express.php:658 +msgid "Merchant Email" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:645 +msgid "Paypal Express Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:603 +msgid "Paypal Express Network Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:861 +msgid "Application ID (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:854 +msgid "Signature (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:847 +msgid "API Password (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:839 +msgid "API Username (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:832 +msgid "Signature (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:825 +msgid "API Password (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:817 +msgid "API Username (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:799 +msgid "This message is displayed at the top of the gateway settings page to store admins. It's a good place to inform them of your fees or put any sales messages." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:787 +msgid "Please enter your PayPal email address or business ID you want to recieve fees at." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:786 +msgid "PayPal E-mail" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:772 +msgid "Fees to Collect (%)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:375 +#: includes/public/class-mp-checkout.php:341 +msgid "Email Address" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:299 +msgid "Sorry, your order was not completed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:126 +#: includes/common/payment-gateways/paypal-express.php:780 +msgid "You will be redirected to the PayPal site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:90 +#: includes/common/payment-gateways/skrill.php:94 +msgid "USD - U.S. Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:89 +msgid "TRY - Turkish lira" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:88 +#: includes/common/payment-gateways/stripe.php:170 +msgid "THB - Thai Baht" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:87 +msgid "TWD - Taiwan New Dollars" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:86 +#: includes/common/payment-gateways/pin.php:59 +#: includes/common/payment-gateways/skrill.php:88 +#: includes/common/payment-gateways/stripe.php:162 +msgid "SGD - Singapore Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:84 +msgid "RUB - Russian Rubles" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:82 +msgid "PHP - Philippine Pesos" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:81 +#: includes/common/payment-gateways/pin.php:58 +#: includes/common/payment-gateways/skrill.php:79 +#: includes/common/payment-gateways/stripe.php:145 +msgid "NZD - New Zealand Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:79 +msgid "MXN - Mexican Peso" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:78 +msgid "MYR - Malaysian Ringgits" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:77 +#: includes/common/payment-gateways/pin.php:64 +#: includes/common/payment-gateways/skrill.php:73 +#: includes/common/payment-gateways/stripe.php:112 +msgid "JPY - Japanese Yen" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:75 +#: includes/common/payment-gateways/pin.php:63 +#: includes/common/payment-gateways/skrill.php:66 +#: includes/common/payment-gateways/stripe.php:102 +msgid "HKD - Hong Kong Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:73 +msgid "GBP - Pound Sterling" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:68 +#: includes/common/payment-gateways/pin.php:62 +#: includes/common/payment-gateways/skrill.php:59 +msgid "CAD - Canadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:67 +msgid "BRL - Brazilian Real" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:66 +#: includes/common/payment-gateways/pin.php:56 +#: includes/common/payment-gateways/skrill.php:57 +msgid "AUD - Australian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:288 +msgid "There was an error processing your card: \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:163 +msgid "When running on a live site, Paymill recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:161 +#: includes/common/payment-gateways/pin.php:157 +#: includes/common/payment-gateways/simplify.php:103 +#: includes/common/payment-gateways/stripe.php:260 +#: includes/common/payment-gateways/wepay.php:153 +msgid "Force SSL?" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:151 +msgid "Accept Visa, Mastercard, Maestro UK, Discover and Solo cards directly on your site. You don't need a merchant account or gateway. Credit cards go directly to Paymill's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:131 +msgid "CVV2" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:72 +#: includes/common/payment-gateways/pin.php:61 +#: includes/common/payment-gateways/skrill.php:65 +#: includes/common/payment-gateways/stripe.php:95 +msgid "GBP - British Pound" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:71 +#: includes/common/payment-gateways/stripe.php:173 +msgid "TRY - Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:70 +#: includes/common/payment-gateways/paypal-chained-payments.php:85 +#: includes/common/payment-gateways/skrill.php:87 +#: includes/common/payment-gateways/stripe.php:161 +msgid "SEK - Swedish Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:69 +#: includes/common/payment-gateways/skrill.php:84 +msgid "RON - Romanian Leu New" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:68 +#: includes/common/payment-gateways/paypal-chained-payments.php:83 +#: includes/common/payment-gateways/skrill.php:82 +msgid "PLN - Polish Zloty" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:67 +#: includes/common/payment-gateways/paypal-chained-payments.php:80 +#: includes/common/payment-gateways/stripe.php:143 +msgid "NOK - Norwegian Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:66 +#: includes/common/payment-gateways/skrill.php:75 +#: includes/common/payment-gateways/stripe.php:125 +msgid "LTL - Lithuanian Litas" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:65 +#: includes/common/payment-gateways/paypal-chained-payments.php:69 +#: includes/common/payment-gateways/skrill.php:60 +#: includes/common/payment-gateways/stripe.php:78 +msgid "CHF - Swiss Franc" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:64 +#: includes/common/payment-gateways/skrill.php:76 +msgid "LVL - Latvian Lat" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:63 +#: includes/common/payment-gateways/paypal-chained-payments.php:74 +#: includes/common/payment-gateways/skrill.php:69 +msgid "ILS - Israeli Shekel" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:62 +#: includes/common/payment-gateways/skrill.php:71 +msgid "ISK - Iceland Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:61 +#: includes/common/payment-gateways/paypal-chained-payments.php:76 +#: includes/common/payment-gateways/skrill.php:68 +#: includes/common/payment-gateways/stripe.php:106 +msgid "HUF - Hungarian Forint" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:60 +#: includes/common/payment-gateways/paypal-chained-payments.php:71 +#: includes/common/payment-gateways/skrill.php:62 +#: includes/common/payment-gateways/stripe.php:86 +msgid "DKK - Danish Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:59 +#: includes/common/payment-gateways/skrill.php:67 +#: includes/common/payment-gateways/stripe.php:104 +msgid "HRK - Croatian Kuna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:58 +#: includes/common/payment-gateways/paypal-chained-payments.php:70 +#: includes/common/payment-gateways/skrill.php:61 +msgid "CZK - Czech Koruna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:57 +#: includes/common/payment-gateways/skrill.php:58 +msgid "BGN - Bulgarian Leva" +msgstr "" + +#: includes/common/payment-gateways/payflow/class-mp-gateway-worker-payflow.php:123 +msgid "There was an error connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:344 +msgid "This setting will log all PayFast communication to the \"payfast.log\" file." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:342 +msgid "Log Debugging Info?" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:335 +msgid "DO NOT INPUT A VALUE UNLESS YOU HAVE SET ONE IN THE SETTINGS SECTION OF YOUR PAYFAST SETTINGS." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:333 +msgid "PayFast Passphrase" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:323 +msgid "You can find your credentials on your integration page." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:321 +msgid "PayFast Merchant Credentials" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:311 +msgid "PayFast Mode" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:308 +msgid "PayFast is a payments processing service for South Africa. We make it safe for buyers to send money and easy for sellers to receive money. More Info »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:306 +msgid "PayFast Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:285 +msgid "Your payment via PayFast for this order totaling %s is complete. The transaction number is %s." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:278 +msgid "Your payment via PayFast for this order totaling %s is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:124 +msgid "Your PayFast transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:82 +#: includes/common/payment-gateways/payfast.php:83 +msgid "PayFast" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:157 +msgid "API error: - \"%s\"" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:198 +msgid "The payment request is under process" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:140 +msgid "Order: #" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:116 +msgid "You will be redirected to the Mollie site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:73 +msgid "%sMollie%s provides a fully PCI Compliant and secure way to collect payments via iDeal, Credit Card, Bancontact / Mister Cash, SOFORT Banking, Overbooking, Bitcoin, PayPal, paysafecard and AcceptEmail." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:53 +#: includes/common/payment-gateways/mollie.php:54 +#: includes/common/payment-gateways/mollie.php:195 +#: includes/common/payment-gateways/mollie.php:245 +msgid "Mollie" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:50 +#: includes/common/payment-gateways/paymill.php:56 +#: includes/common/payment-gateways/paypal-chained-payments.php:72 +#: includes/common/payment-gateways/pin.php:60 +#: includes/common/payment-gateways/skrill.php:64 +#: includes/common/payment-gateways/stripe.php:92 +msgid "EUR - Euro" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:306 +msgid "Access Key" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:300 +msgid "You must login to the Mijireh.com dashboard to obtain the Access Key." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:299 +msgid "Credentials" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:289 +msgid "Mijireh Checkout provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:269 +msgid "Mijireh Error: " +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:89 +msgid "You will be redirected to the Mijireh.com site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:87 +msgid "Your Mijireh transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:42 +#: includes/common/payment-gateways/mijireh.php:43 +#: includes/common/payment-gateways/mijireh.php:324 +msgid "Mijireh" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:145 +msgid "These are the manual payment instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:189 +msgid "This is the email text to send to those who have made free order checkouts. You should include your free order instructions / information here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:183 +msgid "This is the free order information to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:182 +msgid "Confirmation User Information" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:177 +msgid "This is the information to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:163 +msgid "If enabled, all free orders will be automatically marked as paid." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:159 +msgid "Payment Status" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:149 +msgid "This gateway is automatically activated if order totalling 0 and it can't be disabled" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:35 +#: includes/common/payment-gateways/free_orders.php:36 +#: includes/common/payment-gateways/free_orders.php:89 +msgid "Free Order" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:34 +#: includes/common/payment-gateways/free_orders.php:197 +msgid "Free Orders" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:515 +msgid "Sandbox API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:266 +#: includes/common/payment-gateways/eway31.php:542 +msgid "eWay Rapid 3.1 Payments (beta)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:403 +msgid "Hosted Payment Page Language" +msgstr "" + +#: includes/common/payment-gateways/eway.php:373 +msgid "Note when testing in sandbox mode it will use the default eWay test API credentials. Also, please note that cart total needs to be a whole number (e.g. 10.00) in order to generate a successful transaction, otherwise the transaction will fail." +msgstr "" + +#: includes/common/payment-gateways/eway.php:267 +msgid "You will be redirected to https://www.eway.com.au to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:380 +msgid "You have chosen to checkout using %s. Please confirm your order details and click \"Submit Order\" when finished." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:272 +#: includes/common/payment-gateways/paymill.php:131 +#: includes/common/payment-gateways/stripe.php:231 +msgid "Security Code " +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Enter in MM/YYYY or MM/YY format" +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Expiration" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:321 +msgid "Delim Data" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:307 +#: includes/common/payment-gateways/paypal-payflow.php:456 +msgid "This text will appear as the footer of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:287 +#: includes/common/payment-gateways/paypal-payflow.php:440 +msgid "Email Customer (on success)" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:278 +msgid "Authorize.net default is \",\". Otherwise, get this from your credit card processor. If the transactions are not going through, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:277 +msgid "Delimeter Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:193 +msgid "Held For Review" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:310 +#: includes/common/payment-gateways/payfast.php:314 +msgid "Test" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:300 +#: includes/common/payment-gateways/pin.php:170 +#: includes/common/payment-gateways/stripe.php:272 +msgid "Secret Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:283 +msgid "Select Your Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:97 +msgid "Your payment will be processed by the iDEAL network" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:208 +msgid "These are the CubePoints to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:203 +msgid "These are the CubePoints instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:266 +msgid "If enabled, all API calls will be made to https://test.bitpay.com." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:263 +msgid "Use Test Mode?" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:259 +msgid "If checked, response fron bitpay will be stored in log file, keep it disabled unless required." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:256 +msgid "Enable Debug Log" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:249 +msgid "Full Notifications" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:231 +#: includes/common/payment-gateways/eway31.php:499 +#: includes/common/payment-gateways/eway31.php:526 +#: includes/common/payment-gateways/mollie.php:83 +#: includes/common/shipping-modules/mp-fedex.php:269 +msgid "API Key" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:222 +msgid "You can now accept a payment from any country on Earth, with no risk of fraud. To use Bitpay, you need to signup on Bitpay. \\n After completing the signup process, you can get api keys at Bitpay API key. You can read more about Bitpay at Bitpay API. \\n Bitpay requires SSL(https) for payment notifications to work." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:61 +msgid "You will be redirected to bitpay.com, for bitcoin payment. It is completely safe." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:346 +msgid "You must login to the 2Checkout vendor dashboard to obtain the seller ID and secret word. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:345 +#: includes/common/payment-gateways/authorizenet-aim.php:239 +#: includes/common/payment-gateways/paymill.php:168 +#: includes/common/payment-gateways/paypal-express.php:704 +#: includes/common/payment-gateways/simplify.php:80 +#: includes/common/payment-gateways/stripe.php:265 +#: includes/common/payment-gateways/wepay.php:158 +msgid "API Credentials" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:325 +#: includes/common/payment-gateways/_bitpay.php:220 +#: includes/common/payment-gateways/_cubepoints.php:185 +#: includes/common/payment-gateways/_ideal.php:268 +#: includes/common/payment-gateways/_payway.php:255 +#: includes/common/payment-gateways/authorizenet-aim.php:219 +#: includes/common/payment-gateways/eway.php:352 +#: includes/common/payment-gateways/eway31.php:460 +#: includes/common/payment-gateways/free_orders.php:147 +#: includes/common/payment-gateways/manual-payments.php:126 +#: includes/common/payment-gateways/mijireh.php:287 +#: includes/common/payment-gateways/mollie.php:71 +#: includes/common/payment-gateways/paymill.php:149 +#: includes/common/payment-gateways/paypal-chained-payments.php:344 +#: includes/common/payment-gateways/paypal-payflow.php:376 +#: includes/common/payment-gateways/pin.php:145 +#: includes/common/payment-gateways/simplify.php:69 +#: includes/common/payment-gateways/skrill.php:121 +#: includes/common/payment-gateways/stripe.php:249 +#: includes/common/payment-gateways/wepay.php:119 +#: includes/common/shipping-modules/mp-fedex.php:243 +#: includes/common/shipping-modules/mp-flat-rate.php:63 +#: includes/common/shipping-modules/mp-pickup.php:140 +#: includes/common/shipping-modules/mp-table-rate.php:94 +#: includes/common/shipping-modules/mp-ups.php:122 +#: includes/common/shipping-modules/mp-usps.php:167 +#: includes/common/shipping-modules/mp-weight-rate.php:110 +msgid "%s Settings" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:136 +msgid "You will be redirected to the 2Checkout site to finalize your payment." +msgstr "" + +#: includes/common/helpers.php:169 includes/public/class-mp-checkout.php:1277 +msgid "Billing" +msgstr "" + +#: includes/common/helpers.php:144 +msgid "FREE" +msgstr "" + +#: includes/common/helpers.php:134 +msgid "Coupons:" +msgstr "" + +#: includes/common/helpers.php:95 +msgid "Qty" +msgstr "" + +#: includes/common/helpers.php:94 +msgid "Sku" +msgstr "" + +#: includes/common/data.php:59 +msgid "Zip Code" +msgstr "" + +#: includes/common/class-mp-taxes.php:336 +msgid "Standard Table" +msgstr "" + +#: includes/common/class-mp-product.php:2698 +msgid "Tweet" +msgstr "" + +#: includes/common/class-mp-product.php:2321 +msgid "Notification Preferences: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2320 +msgid "Edit Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2318 +msgid "Link: %s

    " +msgstr "" + +#: includes/common/class-mp-product.php:2317 +msgid "Current Inventory: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2316 +msgid "Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2314 +msgid "This message is being sent to notify you of low stock of a product in your online store according to your preferences.

    " +msgstr "" + +#: includes/common/class-mp-product.php:1817 +msgid "" +msgstr "" + +#: includes/common/class-mp-product.php:1427 +#: includes/common/class-mp-product.php:1430 +msgid "(tax incl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1422 +#: includes/common/class-mp-product.php:1425 +msgid "(tax excl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1300 +#: includes/common/class-mp-product.php:1315 +msgid "%s each" +msgstr "" + +#: includes/common/class-mp-product.php:988 +msgid "Choose Options" +msgstr "" + +#: includes/common/class-mp-product.php:526 +msgid "Choose a %s" +msgstr "" + +#: includes/common/class-mp-product.php:284 +#: includes/common/class-mp-product.php:292 +#: includes/common/class-mp-product.php:615 +msgid "We're sorry, we only have %d of this item in stock right now." +msgstr "" + +#: includes/common/class-mp-order.php:1456 +msgid "Shipped: Track Shipment" +msgstr "" + +#: includes/common/class-mp-order.php:1049 +msgid "Order Received" +msgstr "" + +#: includes/common/class-mp-order.php:1014 +msgid "In Process" +msgstr "" + +#: includes/common/class-mp-order.php:969 +msgid "Order #" +msgstr "" + +#: includes/common/class-mp-order.php:866 +msgid "Copy billing address to shipping address" +msgstr "" + +#: includes/common/class-mp-order.php:822 +#: includes/public/class-mp-checkout.php:1314 +msgid "Special Instructions" +msgstr "" + +#: includes/common/class-mp-order.php:817 +#: includes/common/payment-gateways/stripe.php:335 +msgid "Email" +msgstr "" + +#: includes/common/class-mp-order.php:813 +#: includes/common/payment-gateways/stripe.php:341 +#: includes/public/class-mp-checkout.php:416 +msgid "Phone" +msgstr "" + +#: includes/common/class-mp-order.php:791 +#: includes/common/payment-gateways/stripe.php:337 +msgid "State" +msgstr "" + +#: includes/common/class-mp-order.php:776 +msgid "Address 1" +msgstr "" + +#: includes/common/class-mp-order.php:766 +msgid "Last Name" +msgstr "" + +#: includes/common/class-mp-order.php:762 +msgid "First Name" +msgstr "" + +#: includes/common/class-mp-installer.php:677 +msgid "MarketPress requires a database update to continue working correctly. Go to update page" +msgstr "" + +#: includes/common/class-mp-installer.php:657 +msgid "MarketPress performed a quick automatic update successfully!" +msgstr "" + +#: includes/common/class-mp-installer.php:653 +msgid "Perform Update" +msgstr "" + +#: includes/common/class-mp-installer.php:647 +msgid "Please update each subsite in your WordPress network where you have older version of the MarketPress plugin." +msgstr "" + +#: includes/common/class-mp-installer.php:641 +msgid "Depending on the amount of products you have, this update could take quite some time. Please keep this window open while the update completes. If you have products with multiple variations, the progress bar may move slower, please don't exit the window." +msgstr "" + +#: includes/common/class-mp-installer.php:632 +msgid "Product Metadata" +msgstr "" + +#: includes/common/class-mp-installer.php:601 +msgid "MarketPress requires a database update to continue working correctly.
    Below you will find a list of items that require your attention." +msgstr "" + +#: includes/common/class-mp-installer.php:600 +msgid "Update MarketPress Data" +msgstr "" + +#: includes/common/class-mp-installer.php:530 +msgid "Update Data" +msgstr "" + +#: includes/common/class-mp-installer.php:67 +msgid "Complete!" +msgstr "" + +#: includes/common/class-mp-installer.php:66 +msgid "Upgrading Database...Please Wait..." +msgstr "" + +#: includes/common/class-mp-installer.php:64 +msgid "An error occurred while updating. Please refresh this page and try again." +msgstr "" + +#: includes/common/class-mp-cart.php:2447 +msgid "Some items in your cart have fallen below the quantity you currently have in your cart. We have adjusted the quantity in your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:2443 +msgid "Some items in your cart are no longer available. We have removed these items from your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:1566 +msgid "item" +msgstr "" + +#: includes/common/class-mp-cart.php:1563 +#: includes/common/class-mp-cart.php:1568 +msgid "items" +msgstr "" + +#: includes/common/class-mp-cart.php:1363 +msgid "Items/Products added to Cart will show here." +msgstr "" + +#: includes/common/class-mp-cart.php:1362 +msgid "Your shopping cart is empty." +msgstr "" + +#: includes/common/class-mp-cart.php:1357 +msgid "View Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1241 +#: includes/common/class-mp-cart.php:1298 +#: includes/public/class-mp-short-codes.php:159 +msgid "Adding..." +msgstr "" + +#: includes/common/class-mp-cart.php:1033 +msgid "Continue Shopping?" +msgstr "" + +#: includes/common/class-mp-cart.php:961 +msgid "Secure Checkout
    Shopping is always safe and secure." +msgstr "" + +#: includes/common/class-mp-cart.php:959 +msgid "You are about to submit your order!
    Please review your order details before continuing. You will be charged immediately upon clicking \"Submit Order\"." +msgstr "" + +#: includes/common/class-mp-cart.php:956 +msgid "Continue »" +msgstr "" + +#: includes/common/class-mp-cart.php:955 +msgid "Submit Order" +msgstr "" + +#: includes/common/class-mp-cart.php:818 +msgid "There are no items in your cart - go add some !" +msgstr "" + +#: includes/common/class-mp-cart.php:816 +msgid "The cart is disabled." +msgstr "" + +#: includes/common/class-mp-cart.php:735 +msgid "Estimated %s" +msgstr "" + +#: includes/common/class-mp-cart.php:717 +msgid "Estimated Shipping" +msgstr "" + +#: includes/common/class-mp-cart.php:697 +msgid "Product Total" +msgstr "" + +#: includes/common/class-mp-cart.php:670 includes/common/class-mp-cart.php:672 +msgid "Estimated Total (%s, %s)" +msgstr "" + +#: includes/common/class-mp-cart.php:668 +msgid "Estimated Total (%s)" +msgstr "" + +#: includes/common/class-mp-cart.php:666 includes/common/class-mp-cart.php:752 +msgid "Estimated Total" +msgstr "" + +#: includes/admin/widgets/product-list.php:247 +msgid "Show Thumbnail Placeholder image (if image is not set)" +msgstr "" + +#: includes/admin/widgets/cart.php:73 +msgid "Display product price" +msgstr "" + +#: includes/admin/widgets/cart.php:71 +msgid "Display product quantity" +msgstr "" + +#: includes/admin/widgets/cart.php:69 +msgid "Display product image" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:93 +msgid "General Shipping Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:773 +msgid "If you are having conflicts with the lightbox library from your theme or another plugin you should uncheck this." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:772 +msgid "Use Built-In Lightbox for Images?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:762 +msgid "Disable Large Image Display?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:688 +msgid "Show Product Image?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:682 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:684 +msgid "Show Tags List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:676 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:678 +msgid "Show Categories List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:671 +msgid "If enabled, description excerpt will be added above Add to cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:669 +msgid "Show Excerpt?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:665 +msgid "If enabled, users will be able to choose how many of the product they want to purchase before adding to their cart. If not checked, quantity could be change later on the cart page." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:663 +msgid "Show Quantity Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:649 +msgid "Settings related to the display of individual product pages." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:648 +msgid "Product Page Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:605 +msgid "Related Products Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:573 +msgid "Show Related Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:568 +msgid "Related Product Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:549 +msgid "Order Status Entries Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:510 +msgid "Sort Products By" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:497 +msgid "Products Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:492 +msgid "Paginate Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:478 +msgid "Excerpts Length" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:473 +msgid "Show Excerpts?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:450 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:746 +msgid "Image Alignment" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:412 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:708 +msgid "Custom Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:401 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:697 +msgid "Large - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:400 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:696 +msgid "Medium - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:399 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:695 +msgid "Thumbnail - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:397 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:693 +msgid "Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:386 +msgid "Select default placeholder image thumbnail when product image is not available (if empty, plugin's built-in image will be used)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:380 +msgid "Show default product placeholder thumbnail when product image is not available?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:374 +msgid "Show Product Thumbnail?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:369 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:658 +msgid "Redirect to cart page for immediate checkout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:368 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:657 +msgid "Stay on current product page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:366 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:655 +msgid "MarketPress supports two \"flows\" for adding products to the shopping cart. After adding a product to their cart, two things can happen:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:365 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:654 +msgid "Add To Cart Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:355 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:628 +msgid "Four" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:354 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:627 +msgid "Three" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:353 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:626 +msgid "Two" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:625 +msgid "One" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:349 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:622 +msgid "Set the number of products that show up in a grid row to best fit your theme" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:348 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:621 +msgid "How many products per row?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:342 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:609 +msgid "Display as grid" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:341 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:608 +msgid "Display as list" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:339 +msgid "Product Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:334 +msgid "Settings related to the display of product lists/grids." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:333 +msgid "Product List/Grid Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:314 +msgid "Show Twitter Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:309 +msgid "Twitter" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:303 +msgid "Show Share Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:297 +msgid "Recommend" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:296 +msgid "Like" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:294 +msgid "Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:283 +msgid "Show Facebook Like Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:278 +msgid "Facebook" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:257 +msgid "Show \"Pin It\" Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:252 +msgid "Pinterest" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:246 +msgid "Social Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:193 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:202 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:211 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:220 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:229 +#: includes/multisite/class-mp-admin-multisite.php:532 +#: includes/multisite/class-mp-admin-multisite.php:541 +#: includes/multisite/class-mp-admin-multisite.php:550 +msgid "Choose a Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:191 +msgid "This page will be used as the root for your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:168 +#: includes/multisite/class-mp-admin-multisite.php:586 +msgid "Create Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "uncropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "cropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:87 +#: includes/multisite/class-mp-admin-multisite.php:121 +#: includes/multisite/class-mp-admin-multisite.php:620 +msgid "An error occurred while creating the store page. Please try again." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:66 +msgid "Choose the gateway(s) that you would like to be available for checkout." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:65 +msgid "Enabled Gateways" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:78 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:146 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:179 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:213 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:274 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:307 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:341 +msgid "Text" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:71 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:139 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:172 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:206 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:267 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:300 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:334 +msgid "Subject" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:52 +msgid "Notification Email" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:510 +msgid "Enabling this option will display label `excl. tax` or `incl. tax` after price" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:509 +msgid "Display tax label?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:504 +msgid "Enabling this option will show Price + Tax, eg. if your price is 100 and your tax 20, your price will be 120" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:416 +#: includes/multisite/class-mp-admin-multisite.php:234 +msgid "Price Format" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:366 +msgid "Enabling this field will display a textbox on the shipping checkout page for users to enter special instructions for their order. Useful for product personalization, etc." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:365 +msgid "Show Special Instructions Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:360 +msgid "Universal" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:359 +msgid "Old" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1167 +#: includes/admin/store-settings/class-mp-store-settings-general.php:358 +msgid "New" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:353 +msgid "If you already use Google Analytics for your website, you can track detailed ecommerce information by enabling this setting. Choose whether you are using the new asynchronous or old tracking code. Before Google Analytics can report ecommerce activity for your website, you must enable ecommerce tracking on the profile settings page for your website. Also keep in mind that some gateways do not reliably show the receipt page, so tracking may not be accurate in those cases. It is recommended to use the PayPal gateway for the most accurate data. More information »" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:347 +msgid "Do you want to display the product price on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:346 +msgid "Show product price on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:340 +msgid "Do you want to display the product quantity on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:339 +msgid "Show product quantity on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:333 +msgid "Do you want to display the product image on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:332 +msgid "Show product image on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:327 +msgid "This option hide floating Mini Cart in top right corner." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:326 +msgid "Disable Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:316 +msgid "If unchecked your Orders admin page will be hidden" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:315 +msgid "Show admin Orders page?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:309 +msgid "Disable Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:303 +msgid "Force Login?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:297 +msgid "Hide Out of Stock Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:555 +msgid "This will prevent multiples of the same downloadable product form being added to the cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:554 +msgid "Limit Digital Products Per-order?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:268 +msgid "If you're having issues downloading large files and have worked with your hosting provider to increase your memory limits, try enabling this - just keep in mind, it's not as secure!" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:267 +msgid "Use Alternative Download Method?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:252 +msgid "Download Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:230 +msgid "Change product post type" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:51 +msgid "%s Capabilities" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-addons.php:47 +msgid "Store Settings: Add Ons: %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:254 +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:56 +msgid "Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Edit Product Attribute %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:246 +msgid "Exporters" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:238 +msgid "Short Codes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:207 +msgid "An appropriate message for key \"%s\" could not be found." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:204 +msgid "Product attribute updated successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:203 +msgid "Product attribute added successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +msgid "Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +#: includes/admin/store-settings/class-mp-store-settings-addons.php:121 +msgid "Store Settings: Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "Store Settings: Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:118 +msgid "Store Settings: Product Tags" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:117 +msgid "Store Settings: Product Categories" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Store Settings: Product Attributes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +msgid "Store Settings: Payments" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:114 +msgid "Store Settings: Shipping" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +#: includes/admin/class-mp-store-settings-admin.php:226 +msgid "Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +msgid "Store Settings: Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:112 +msgid "Store Settings: Presentation" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:111 +msgid "Store Settings: General" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1489 +msgid "Select a Product" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1447 +msgid "Reset to Defaults" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1446 +msgid "Insert Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1202 +#: includes/admin/class-mp-shortcode-builder.php:1227 +#: includes/admin/class-mp-shortcode-builder.php:1252 +msgid "The text to show in the link." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1196 +#: includes/admin/class-mp-shortcode-builder.php:1221 +#: includes/admin/class-mp-shortcode-builder.php:1246 +msgid "Whether to return a clickable link or url." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1177 +msgid "Whether to display the cart only on store pages or not." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1171 +msgid "Whether to show or hide the product price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1165 +msgid "Whether to show or hide the product quantity." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1159 +msgid "Whether to show or hide the product image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1153 +msgid "The text displayed before the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1147 +msgid "The title of the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1058 +#: includes/admin/class-mp-shortcode-builder.php:1121 +msgid "A label to prepend to the price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1032 +#: includes/admin/class-mp-shortcode-builder.php:1127 +msgid "What context for display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1004 +msgid "Set the alignment of the image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:998 +msgid "Set a custom pixel width/height. If omitted defaults to the size set by \"context\"." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:993 +msgid "Widget" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:988 +msgid "What context for preset size options." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:982 +#: includes/admin/class-mp-shortcode-builder.php:1026 +#: includes/admin/class-mp-shortcode-builder.php:1052 +#: includes/admin/class-mp-shortcode-builder.php:1077 +#: includes/admin/class-mp-shortcode-builder.php:1096 +#: includes/admin/class-mp-shortcode-builder.php:1115 +msgid "The ID of the product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:963 +msgid "Whether to display the product meta (e.g. price, buy button)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:738 +#: includes/admin/class-mp-shortcode-builder.php:905 +#: includes/admin/class-mp-shortcode-builder.php:958 +#: includes/admin/class-mp-shortcode-builder.php:992 +#: includes/admin/class-mp-shortcode-builder.php:1035 +#: includes/admin/class-mp-shortcode-builder.php:1130 +#: includes/admin/class-mp-shortcode-builder.php:1349 +msgid "List" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:957 +#: includes/admin/class-mp-shortcode-builder.php:991 +#: includes/admin/class-mp-shortcode-builder.php:1034 +#: includes/admin/class-mp-shortcode-builder.php:1129 +msgid "Single" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:953 +msgid "Whether and what context of image size to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:948 +msgid "Full" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:943 +msgid "Whether and what type of content to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:937 +msgid "Whether to display the product title." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:931 +msgid "The ID of the product to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:747 +#: includes/admin/class-mp-shortcode-builder.php:914 +msgid "Hide" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:746 +#: includes/admin/class-mp-shortcode-builder.php:913 +msgid "Show" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:744 +#: includes/admin/class-mp-shortcode-builder.php:911 +msgid "Whether or not to show the product filters." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:724 +#: includes/admin/class-mp-shortcode-builder.php:891 +#: includes/admin/class-mp-shortcode-builder.php:1335 +msgid "Limits list to a specific product tag." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:713 +#: includes/admin/class-mp-shortcode-builder.php:880 +#: includes/admin/class-mp-shortcode-builder.php:1324 +msgid "Limits list to a specific product category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:706 +#: includes/admin/class-mp-shortcode-builder.php:873 +#: includes/admin/class-mp-shortcode-builder.php:1317 +msgid "Direction to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:684 +#: includes/admin/class-mp-shortcode-builder.php:851 +#: includes/admin/class-mp-shortcode-builder.php:1295 +msgid "What field to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:678 +#: includes/admin/class-mp-shortcode-builder.php:845 +#: includes/admin/class-mp-shortcode-builder.php:1283 +msgid "How many products to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:672 +#: includes/admin/class-mp-shortcode-builder.php:839 +#: includes/admin/class-mp-shortcode-builder.php:1277 +msgid "The page number to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:666 +#: includes/admin/class-mp-shortcode-builder.php:833 +#: includes/admin/class-mp-shortcode-builder.php:1271 +msgid "Whether to paginate the product list. This is useful to only show a subset." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:808 +msgid "How many related items to show." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:790 +msgid "How to relate the products" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:784 +msgid "The product to show related items for." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:765 +msgid "The maximum number of products to display" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:647 +msgid "Comma separated list of tags (term_id) to include. For example, include=5,27 means tags that have the term_id 5 or 27 will be the only tags displayed. Defaults to include everything." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:641 +msgid "Comma separated list of tags (term_id) to exclude. For example, exclude=5,27 means tags that have the term_id 5 or 27 will NOT be displayed. Defaults to exclude nothing." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:633 +#: includes/admin/class-mp-shortcode-builder.php:1420 +msgid "Sort order." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:629 +#: includes/admin/class-mp-shortcode-builder.php:1416 +msgid "Count" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:626 +#: includes/admin/class-mp-shortcode-builder.php:1413 +msgid "Order of the tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:620 +msgid "The text/space between tags)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:616 +msgid "UL with a class of \"wp-tag-cloud\"" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:615 +msgid "separated by whitespace defined by \"separator\" parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:613 +msgid "Format of the cloud display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:607 +msgid "The number of actual tags to display in the cloud. (Use \"0\" to display all tags.)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:601 +msgid "Unit of measure as pertains to the smallest and largest values. This can be any CSS length value, e.g. pt, px, em, %." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:595 +msgid "The text size of the tag with the largest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:589 +msgid "The text size of the tag with the smallest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:570 +msgid "The \"tabindex\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:564 +msgid "The \"name\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:558 +msgid "The \"id\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:552 +msgid "Which category ID is selected." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:540 +msgid "The max depth. This is ignored unless hierarchical is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:536 +#: includes/multisite/template-functions.php:816 +msgid "No Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:414 +#: includes/admin/class-mp-shortcode-builder.php:546 +msgid "Calculates link or post counts by including items from child categories. If show_counts and hierarchical are true this is automatically set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:409 +msgid "Value of n (some number) specifies the depth (or level) to descend in displaying Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:408 +msgid "Show only top level Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:407 +msgid "All Categories displayed in flat (no indent) form (overrides hierarchical)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:406 +msgid "All Categories and child Categories (Default)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:402 +msgid "This parameter controls how many levels in the hierarchy of Categories are to be included in the list of Categories. NOTE: The \"hierarchical\" argument, which is disabled by default, will override the depth argument, unless it is true. When the argument is false, it will display all of the categories. When it is enabled it will use the value in the \"depth\" argument." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:396 +#: includes/admin/class-mp-shortcode-builder.php:1394 +msgid "Sets the number of Categories to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:390 +#: includes/admin/class-mp-shortcode-builder.php:534 +msgid "Set the text to show when no categories are listed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:384 +msgid "Set the title and style of the outer list item. If present but empty, the outer list item will not be displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:378 +#: includes/admin/class-mp-shortcode-builder.php:528 +msgid "Display sub-categories as inner list items (below the parent list item) or inline." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:368 +#: includes/admin/class-mp-shortcode-builder.php:511 +msgid "Exclude category-tree from the results. The parameter include must be empty. If the hierarchical parameter is true, then use exclude instead of exclude_tree." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:354 +msgid "Only include these categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:340 +#: includes/admin/class-mp-shortcode-builder.php:356 +#: includes/admin/class-mp-shortcode-builder.php:370 +#: includes/admin/class-mp-shortcode-builder.php:496 +#: includes/admin/class-mp-shortcode-builder.php:513 +msgid "Select Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:338 +#: includes/admin/class-mp-shortcode-builder.php:494 +msgid "Exclude one or more categories from the results. The parameter include must be empty." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:332 +msgid "Set a URI for an image (usually an rss feed icon) to act as a link to each categories' rss-2 feed. This parameter overrides the feed parameter. There is no default for this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:320 +msgid "Display a link to each category's rss-2 feed and set the link text to display. The default is no text and no feed displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:313 +#: includes/admin/class-mp-shortcode-builder.php:487 +msgid "Any" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:307 +#: includes/admin/class-mp-shortcode-builder.php:481 +msgid "Only display categories that are children of the category identified by this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:301 +msgid "Sets whether a category's description is inserted into the title attribute of the links created (i.e. <a title=\"<em>Category Description</em>\" href=\"...)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:295 +#: includes/admin/class-mp-shortcode-builder.php:475 +msgid "Toggles the display of categories with no posts." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:289 +#: includes/admin/class-mp-shortcode-builder.php:469 +#: includes/admin/class-mp-shortcode-builder.php:1388 +msgid "Toggles the display of the current count of posts in each category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:279 +msgid "Style to display the categories list in. A value of list displays the categories as list items while none generates no special display method (the list items are separated by
    tags)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:269 +#: includes/admin/class-mp-shortcode-builder.php:449 +#: includes/admin/class-mp-shortcode-builder.php:1378 +msgid "Sort order for categories (either ascending or descending)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:259 +#: includes/admin/class-mp-shortcode-builder.php:439 +#: includes/admin/class-mp-shortcode-builder.php:1368 +msgid "Sort categories alphabetically, by unique Category ID, or by the count of posts in that Category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:253 +#: includes/admin/class-mp-shortcode-builder.php:433 +msgid "If a value is entered, causes the display of a link to all categories if the style is set to list." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:219 +msgid "Select an Action" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:217 +msgid "What would you like to do?" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:216 +#: includes/admin/class-mp-shortcode-builder.php:1522 +msgid "Add E-Commerce Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:197 +msgid "Display a list of links to your store pages." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:196 +msgid "Display a link or url to the order status page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:195 +msgid "Display a link or url to the current products list page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:194 +msgid "Display a link or url to the current store page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:193 +msgid "Display a link or url to the current shopping cart page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:192 +msgid "Display the cart widget." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:191 +msgid "Display the full product meta box with price and buy now/add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:190 +msgid "Display the product stock." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:189 +msgid "Display the product SKU number(s)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:188 +msgid "Display the product price (and sale price)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:187 +msgid "Display the buy or add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:186 +msgid "Display the featured image of a given product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:185 +msgid "Display a single product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:184 +msgid "Display a list of products according to preference." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:183 +msgid "Display products related to the one being viewed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:182 +msgid "Display a list of popular products ordered by sales." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:180 +msgid "Display an HTML dropdown of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:179 +msgid "Display an HTML list of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:178 +msgid "Display a cloud or list of your product tags." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:655 +msgid "Setup your payment gateway" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:643 +#: includes/admin/class-mp-setup-wizard.php:649 +msgid "Other Gateways" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:617 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:150 +msgid "Select which calculated shipping methods the customer will be able to choose from." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:601 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:134 +#: includes/public/class-mp-checkout.php:82 +msgid "Shipping Method" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:568 +msgid "I want to charge shipping" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:523 +#: includes/admin/store-settings/class-mp-store-settings-general.php:503 +msgid "Show Price + Tax?" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:507 +msgid "I.e. Taxes, VAT, GST, etc" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:491 +#: includes/admin/store-settings/class-mp-store-settings-general.php:471 +msgid "Current Rates" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:473 +msgid "Default Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:434 +#: includes/admin/class-mp-setup-wizard.php:442 +#: includes/admin/store-settings/class-mp-store-settings-general.php:386 +#: includes/admin/store-settings/class-mp-store-settings-general.php:394 +#: includes/multisite/class-mp-admin-multisite.php:204 +#: includes/multisite/class-mp-admin-multisite.php:212 +msgid "Select a Currency" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:414 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:105 +msgid "Choose Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:411 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:103 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:104 +msgid "All Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:410 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:102 +msgid "These are the countries that you will ship to." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:409 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:101 +msgid "Target Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:401 +msgid "Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:387 +#: includes/admin/store-settings/class-mp-store-settings-general.php:640 +msgid "Zip/Postal Code Label" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:352 +#: includes/admin/store-settings/class-mp-store-settings-general.php:606 +msgid "Select a State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:335 +#: includes/admin/store-settings/class-mp-store-settings-general.php:590 +msgid "Select A Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:332 +#: includes/admin/store-settings/class-mp-store-settings-general.php:587 +msgid "Select a Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:324 +msgid "Location" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:304 +#: includes/admin/class-mp-setup-wizard.php:312 +#: includes/admin/class-mp-store-settings-admin.php:129 +#: includes/admin/class-mp-store-settings-admin.php:262 +msgid "Quick Setup" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:289 +msgid "MarketPress setup is not complete! Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2479 +msgid "Enter your product name here" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2440 +msgid "Select a %s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2426 +msgid "Each product variation needs to have product attributes assigned to it so the system knows how to differentiate one product variation from the other. It is important that you assign a category to this product before choosing any attributes." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2409 +msgid "If you would like this variation to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2320 +msgid "Sale Price (if applicable)" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2281 +msgid "If you would like the description to be different than the main product enter it here." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2229 +msgid "Image" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2202 +#: includes/admin/class-mp-shortcode-builder.php:226 +msgid "Attributes" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2166 +msgid "Create your product variations here. You can reorder variations by using the number to left of each variation, or delete one by clicking the \"x\" to the right of each variation. NOTE: The variation that shows up first in this list will be considered the \"main variation\". The details from this variation will be used in product listings." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2061 +#: includes/admin/class-mp-products-admin.php:2332 +msgid "Value must be less than regular price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2043 +#: includes/admin/class-mp-products-admin.php:2306 +msgid "Regular Price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2023 +#: includes/admin/class-mp-products-admin.php:2286 +msgid "External URL" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1988 +#: includes/admin/class-mp-products-admin.php:2245 +msgid "Enter the quantity that you have available to sell." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1987 +#: includes/admin/class-mp-products-admin.php:2244 +msgid "Inventory Count" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1977 +#: includes/admin/class-mp-products-admin.php:2234 +msgid "Track Inventory?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1871 +msgid "%1$sProduct Images%2$s %3$sAdd images of the product. The first image on the list is the featured image for this product (you can reorder images on the list)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1806 +msgid "Add variations for this product. e.g. If you are selling t-shirts, you can create Color & Size variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1804 +msgid "%3$sAdd variations for%2$s %1$sProduct%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1776 +msgid "This product has a multiple variations %1$s(e.g. Multiple colors, sizes)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1775 +msgid "This is a unique product without variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1700 +msgid "Extra Shipping Cost %1$s(if applicable)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1659 +#: includes/admin/class-mp-products-admin.php:2112 +#: includes/admin/class-mp-products-admin.php:2359 +msgid "Weight" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1636 +#: includes/admin/class-mp-products-admin.php:2098 +#: includes/admin/class-mp-products-admin.php:2416 +msgid "Please enter a valid tax rate" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1531 +msgid "Limit Per Order %1$s(limit the number of the item a shopper can buy per order)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1513 +msgid "SKU %1$s(Stock Keeping Unit)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "%1$sPrice, Inventory & Variants%2$s %3$sSet price, manage inventory and create Product Variants (if appropriate for your product).%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "Product Variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1480 +msgid "External / Affiliate Link" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1471 +msgid "Digital Download" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1470 +msgid "Physical / Tangible Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1464 +msgid "Product Kind %1$s(Physical Product, Digital, etc)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1426 +msgid "Choose Products" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1420 +msgid "If you would like, you can choose specific related products instead of using the ones generated by MarketPress" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1019 +msgid "Changes saved successfully" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:826 +msgid "Option cannot be saved. Try again." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:821 +msgid "Option saved successfully." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:467 +msgid "Img" +msgstr "" + +#: includes/admin/class-mp-product-attributes-list-table.php:57 +msgid "Product attribute(s) deleted successfully." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:162 +msgid "- Create New Variation -" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:144 +msgid "Only lowercase letters and dashes (-) are allowed." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:139 +msgid "If a slug is not entered, it will be generated automatically. Max 32 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:138 +#: includes/admin/class-mp-product-attributes-list-table.php:23 +msgid "Slug" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:130 +msgid "Max 45 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:123 +msgid "Use the numbers on the left to sort. To delete - click the \"X\" to the right of each row." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:122 +msgid "Attribute Options" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:121 +msgid "Add Option" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:105 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:523 +msgid "Sort Order" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:87 +msgid "Alphabetical" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:86 +msgid "ID" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:84 +msgid "Select how the options will be sorted." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:82 +msgid "Sort By" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:75 +msgid "The name of the attribute (e.g. color, size, etc)" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:74 +msgid "Attribute Name" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:69 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Product Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Product Attributes" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:71 +msgid "You can choose to make this page one of the following core store pages." +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:66 +msgid "Network Store Base" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:61 +msgid "Checkout Page" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:52 +msgid "Store Page Settings" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1108 +msgid "Display billing/shipping info for this customer" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1097 +msgid "View order “%s”" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1072 +msgid "Flag as:" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:952 +msgid "Move To Trash" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:948 +msgid " Received" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:927 +msgid "Enter coupon code here" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:812 +msgid "The order status could not be updated due to unexpected error. Please try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:740 +msgid "An invalid bulk action was requested. Please go back and try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:692 +msgid "The order status for order ID %1$s was updated successfully." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:688 +msgid "Order statuses successfully updated." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:530 +msgid "Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:518 +msgid "Actual Shipping Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:513 +msgid "Method Paid For" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:504 +msgid "Amount Collected" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:477 +msgid "DHL" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:408 +msgid "There is no IPN history to show at this time" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:345 +msgid "Type" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:343 +msgid "Gateway" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:301 +#: includes/common/template-functions.php:528 +msgid "Order History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:291 +msgid "IPN History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:283 +msgid "Customer Info" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:279 +msgid "Order Details" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:157 +msgid "All Dates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:320 +msgid "Add Pages to Menu" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:318 +msgid "Add-ons" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:317 +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "User Capabilities" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:316 +#: includes/admin/class-mp-setup-wizard.php:631 +#: includes/admin/store-settings/class-mp-store-settings-payments.php:50 +msgid "Payment Gateways" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:315 +msgid "Shipping Rates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:312 +msgid "Configure" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:309 +#: includes/admin/class-mp-products-admin.php:466 +#: includes/admin/class-mp-shortcode-builder.php:797 +msgid "Tags" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:308 +#: includes/admin/class-mp-products-admin.php:465 +msgid "Categories" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:300 +msgid "Manage" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:297 +msgid "Here's some quick links to manage your store and products." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:288 +msgid "low in stock" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:287 +msgid "%s product" +msgid_plural "%s products" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-dashboard-widgets.php:280 +msgid "received" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:279 +#: includes/admin/class-mp-dashboard-widgets.php:283 +msgid "%s order" +msgid_plural "%s orders" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-dashboard-widgets.php:276 +msgid "Stock & Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:261 +msgid "Last 30 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:256 +msgid "Last 7 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:251 +msgid "Yesterday" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:248 +#: includes/admin/class-mp-dashboard-widgets.php:253 +#: includes/admin/class-mp-dashboard-widgets.php:258 +#: includes/admin/class-mp-dashboard-widgets.php:263 +msgid " Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:246 +msgid "Today" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:241 +msgid "Welcome back! Here's a quick summary of your store's performance." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:196 +#: includes/admin/class-mp-products-admin.php:895 +msgid "No products out of stock." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:136 +#: includes/admin/class-mp-products-admin.php:839 +msgid "Stock Level" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:135 +#: includes/admin/class-mp-products-admin.php:838 +msgid "Variation" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:121 +msgid "Low Stock (%s)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:116 +msgid "Store Management" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:115 +msgid "Store Reports" +msgstr "" + +#: includes/admin/class-mp-ajax.php:579 +#: includes/admin/class-mp-orders-admin.php:520 +#: includes/common/payment-gateways/2checkout.php:370 +#: includes/common/payment-gateways/authorizenet-aim.php:264 +#: includes/common/payment-gateways/mollie.php:93 +#: includes/common/payment-gateways/paymill.php:196 +#: includes/common/payment-gateways/pin.php:190 +#: includes/common/payment-gateways/skrill.php:157 +#: includes/common/payment-gateways/skrill.php:168 +#: includes/common/payment-gateways/wepay.php:143 +#: includes/public/class-mp-checkout.php:404 +msgid "Select One" +msgstr "" + +#: includes/admin/class-mp-ajax.php:511 +msgid "Oops... we could not locate any orders by that ID. Please double check your order ID and try again." +msgstr "" + +#: includes/admin/class-mp-ajax.php:482 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:166 +#: includes/multisite/class-mp-admin-multisite.php:584 +msgid "Edit Page" +msgstr "" + +#: includes/admin/class-mp-ajax.php:346 +msgid "Cancel " +msgstr "" + +#: includes/admin/class-mp-ajax.php:345 +msgid "Save " +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "Edit Description" +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "HTML Markup" +msgstr "" + +#: includes/admin/class-mp-ajax.php:333 +msgid "Plain Text Only" +msgstr "" + +#: includes/admin/class-mp-ajax.php:329 +msgid "Additional Content / Information for this Variation" +msgstr "" + +#: includes/admin/class-mp-ajax.php:317 +#: includes/admin/class-mp-products-admin.php:1762 +msgid "Allow this product to be purchased even if it's out of stock" +msgstr "" + +#: includes/admin/class-mp-ajax.php:313 +#: includes/admin/class-mp-products-admin.php:1711 +msgid "Track Product Inventory" +msgstr "" + +#: includes/admin/class-mp-ajax.php:300 +msgid "Extra Shipping Cost (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:295 +msgid "Ounces:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:294 +msgid "Pounds:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:292 +msgid "Kilograms:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:287 +#: includes/admin/class-mp-products-admin.php:1649 +msgid "Charge Shipping" +msgstr "" + +#: includes/admin/class-mp-ajax.php:273 +#: includes/admin/class-mp-products-admin.php:1623 +#: includes/admin/store-settings/class-mp-store-settings-general.php:454 +msgid "Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:272 +#: includes/admin/class-mp-products-admin.php:1622 +#: includes/admin/class-mp-products-admin.php:2090 +#: includes/admin/class-mp-products-admin.php:2408 +msgid "Special Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:271 +#: includes/admin/class-mp-products-admin.php:1625 +#: includes/admin/class-mp-products-admin.php:2092 +msgid "If you would like this product to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-ajax.php:268 +#: includes/admin/class-mp-products-admin.php:1599 +msgid "Charge Taxes (Special Rate)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:256 +#: includes/admin/class-mp-products-admin.php:1593 +#: includes/admin/class-mp-products-admin.php:2077 +#: includes/admin/class-mp-products-admin.php:2348 +msgid "End Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:255 +#: includes/admin/class-mp-products-admin.php:1589 +#: includes/admin/class-mp-products-admin.php:2072 +msgid "Start Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:1568 +msgid "Enter Sale Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:250 +#: includes/admin/class-mp-products-admin.php:1547 +msgid "Set up a Sale for this Product" +msgstr "" + +#: includes/admin/class-mp-ajax.php:206 includes/admin/class-mp-ajax.php:223 +msgid "Enter " +msgstr "" + +#: includes/admin/class-mp-ajax.php:193 +msgid "Browse" +msgstr "" + +#: includes/admin/class-mp-ajax.php:184 includes/admin/class-mp-ajax.php:192 +msgid "http://" +msgstr "" + +#: includes/admin/class-mp-ajax.php:183 +msgid "External Product URL" +msgstr "" + +#: includes/admin/class-mp-ajax.php:237 +msgid "Limit Per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:177 +#: includes/admin/class-mp-products-admin.php:1520 +msgid "Enter Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:174 +#: includes/admin/class-mp-products-admin.php:1512 +msgid "Enter SKU" +msgstr "" + +#: includes/admin/class-mp-ajax.php:173 +msgid "(Stock Keeping Unit)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:158 +msgid "Remove Image" +msgstr "" + +#: includes/admin/class-mp-ajax.php:74 +msgid "Variation Draft" +msgstr "" + +#: includes/admin/class-mp-admin.php:296 +#: includes/admin/class-mp-dashboard-widgets.php:70 +msgid "Please wait...saving in progress..." +msgstr "" + +#: includes/admin/class-mp-admin.php:295 +#: includes/admin/class-mp-dashboard-widgets.php:69 +msgid "Input is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:294 +#: includes/admin/class-mp-dashboard-widgets.php:68 +msgid "Valid number is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:292 +#: includes/admin/class-mp-dashboard-widgets.php:66 +msgid "Delete %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:291 +#: includes/admin/class-mp-dashboard-widgets.php:65 +msgid "Delete %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:290 +#: includes/admin/class-mp-dashboard-widgets.php:64 +msgid "Update inventory for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:289 +#: includes/admin/class-mp-dashboard-widgets.php:63 +msgid "Update inventory for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:288 +#: includes/admin/class-mp-dashboard-widgets.php:62 +msgid "Update price for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:287 +#: includes/admin/class-mp-dashboard-widgets.php:61 +msgid "Update prices for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:285 +#: includes/admin/class-mp-dashboard-widgets.php:59 +msgid "Creating variations, please wait..." +msgstr "" + +#: includes/admin/class-mp-admin.php:96 +msgid "The following payment gateways have been deprecated, Cubepoints, Bitpay, iDEAL, Skrill, Google Checkout. If you were using one of these gateways, please setup a new payment gateway here." +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:61 +msgid "Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:71 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:71 +#: includes/common/class-mp-gdpr.php:399 includes/common/class-mp-order.php:872 +#: includes/common/helpers.php:164 includes/public/class-mp-checkout.php:1434 +msgid "Shipping Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:66 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:66 +#: includes/common/class-mp-gdpr.php:392 includes/common/class-mp-order.php:864 +#: includes/common/helpers.php:163 includes/public/class-mp-checkout.php:1427 +msgid "Billing Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:61 +msgid "Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:258 +msgid "Shipping Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:256 +msgid "Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:235 +msgid "Payment Method: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:79 +msgid "The dir %s not exist or not writeable" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:239 +msgid "Shop header/logo" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:233 +msgid "Choose a template" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:226 +msgid "Template Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:221 +msgid "Disable automatic creation/attachment of invoices when only free products are ordered" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:220 +msgid "Disable for free products" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:216 +msgid "Attach invoice to" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:214 +msgid "Customer Order Shipped email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:212 +msgid "Customer New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:211 +msgid "Admin New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:206 +msgid "download" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:205 +msgid "How do you want to view the PDF?" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:203 +msgid "Open the PDF in a new browser tab/window" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:202 +msgid "Download the PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:158 +msgid "Export PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:103 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:106 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:109 +msgid "You can't download this order invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:76 +msgid "Invalid Request" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:72 +msgid "Order not exist!" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:67 +msgid "Invalid ID" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1293 +msgid "Coupon added successfully" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1292 +msgid "Please enter a code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1247 +msgid "No end" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1200 +msgid "Valid Dates" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1195 +msgid "Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1027 +msgid "No Coupons found in Trash" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1026 +msgid "No Coupons Found" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1025 +msgid "Search Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1024 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1028 +msgid "View Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1023 +msgid "New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1020 +msgid "Create New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1017 +msgid "Manage Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1002 +msgid "An error occurred while removing your coupon. Please try again." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:964 +msgid "Coupon can't be applied to this cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:951 +msgid "Invalid coupon code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:794 +msgid "Help Text" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:789 +msgid "Form Title" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:783 +msgid "Coupons Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:764 +msgid "End Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:758 +msgid "Does coupon have an end date?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:696 +msgid "Select Products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:688 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:723 +#: includes/common/payment-gateways/paypal-payflow.php:402 +msgid "User" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:638 +msgid "Max Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:636 +msgid "Enter the maximum number of times this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:623 +msgid "Leave blank to allow all other coupons." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:622 +msgid "Select combinable coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:618 +msgid "Can this coupon be combined with other coupons?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:613 +msgid "Apply to each applicable item once per cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:612 +msgid "Apply to each applicable item and quantity ordered" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:609 +msgid "How should the discount amount be applied?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:605 +msgid "Discount Amount" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:604 +msgid "Value must either be a decimal number or a percentage" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:602 +msgid "If you would like to give a percentage-based discount make sure to include the percent (%) symbol. Otherwise, the discount will be applied as a fixed amount off." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:595 +msgid "Letters and Numbers only." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:589 +msgid "Coupon Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:447 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:795 +msgid "More than one code? That's OK! Just be sure to enter one at a time." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:444 +msgid "Apply Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:314 +msgid "Coupon Discounts" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:89 +msgid "1 add-on disabled" +msgid_plural "%s add-ons disabled" +msgstr[0] "" +msgstr[1] "" + +#: includes/addons/class-mp-addons-list-table.php:84 +msgid "1 add-on enabled" +msgid_plural "%s add-ons enabled" +msgstr[0] "" +msgstr[1] "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Disabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Enable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:129 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:67 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:135 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:168 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:202 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:263 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:296 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:330 +msgid "Enabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +msgid "Disable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:34 +msgid "Disable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:33 +msgid "Enable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:21 +#: includes/admin/class-mp-products-admin.php:2280 +#: includes/common/class-mp-product.php:2916 +msgid "Description" +msgstr "" + +#: includes/common/template-functions.php:2889 +#: includes/multisite/template-functions.php:407 +msgid "Popularity (Least Popular - Most Popular)" +msgstr "" + +#: includes/common/template-functions.php:2888 +#: includes/multisite/template-functions.php:406 +msgid "Popularity (Most Popular - Least Popular)" +msgstr "" + +#: includes/common/template-functions.php:2885 +#: includes/multisite/template-functions.php:403 +msgid "Name (Z-A)" +msgstr "" + +#: includes/common/template-functions.php:2884 +#: includes/multisite/template-functions.php:402 +msgid "Name (A-Z)" +msgstr "" + +#: includes/common/template-functions.php:2883 +#: includes/multisite/template-functions.php:401 +msgid "Release Date (Oldest to Latest)" +msgstr "" + +#: includes/common/template-functions.php:2882 +#: includes/multisite/template-functions.php:400 +msgid "Release Date (Latest to Oldest)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:284 +msgid "paid" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "One Time Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Customer Counter" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Daily Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:182 +msgid "For the most accurate rates, please select the appropriate pick up type for your business." +msgstr "" + +#: includes/admin/class-mp-admin.php:374 +msgid "Page saved." +msgstr "" + +#: includes/admin/class-mp-admin.php:370 +msgid "Custom field deleted." +msgstr "" + +#: includes/admin/class-mp-admin.php:369 +msgid "Custom field updated." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:541 +msgid "%s - The payment request expired, - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:536 +msgid "%s - The payment not credited in merchants bitpay account, action required. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:252 +msgid "If enabled, you will recieve an email for each status update on payment." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:240 +msgid "Speed at which the bitcoin transaction registers as \"confirmed\" to the store. This overrides your merchant settings on the Bitpay website." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:238 +msgid "Transaction Speed" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:244 +msgid "Low" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:243 +msgid "Medium" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:242 +msgid "High" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:177 +#: includes/common/payment-gateways/_bitpay.php:517 +#: includes/common/payment-gateways/_bitpay.php:522 +msgid "%s - The payment request is under process. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:175 +#: includes/common/payment-gateways/_bitpay.php:527 +msgid "%s - The payment request has been processed - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:150 +#: includes/common/payment-gateways/_bitpay.php:294 +msgid "Incorrect order invoice, please contact site administrator" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:141 +msgid "We could not verify order invoice details, please try again or contact site administrator for help" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:81 +msgid "Login to Simplify to get your API credentials. Enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:605 +#: includes/common/payment-gateways/paypal-express.php:647 +msgid "Express Checkout is PayPal's premier checkout solution, which streamlines the checkout process for buyers and keeps them on your site after making a purchase. Unlike PayPal Pro, there are no additional fees to use Express Checkout, though you may need to do a free upgrade to a business account. More Info »" +msgstr "" + +#. Plugin URI of the plugin/theme +msgid "https://premium.wpmudev.org/project/e-commerce/" +msgstr "" + +#. Author of the plugin/theme +msgid "WPMU DEV" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:541 +#: includes/admin/class-mp-orders-admin.php:543 +msgid "Tracking Number" +msgstr "" + +#: includes/common/class-mp-order.php:805 +#: includes/common/payment-gateways/stripe.php:336 +#: includes/public/class-mp-checkout.php:402 +msgid "Country" +msgstr "" + +#: includes/common/class-mp-order.php:784 +#: includes/common/payment-gateways/stripe.php:338 +msgid "City" +msgstr "" + +#: includes/common/class-mp-order.php:780 +msgid "Address 2" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:340 +msgid "Address" +msgstr "" + +#: includes/common/class-mp-cart.php:752 includes/common/class-mp-gdpr.php:378 +msgid "Order Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:360 +msgid "Payment Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:347 +msgid "Transaction ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:207 +msgid "The WePay Card Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:186 +#: includes/common/shipping-modules/mp-fedex.php:283 +msgid "Account ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:179 +msgid "Access Token" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:172 +msgid "Client Secret" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:165 +msgid "Client ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:159 +msgid "You must login to WePay to get your API credentials. Make sure to check \"Tokenize credit cards\" option under \"API Keys\" section of your WePay app." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:154 +msgid "When in live mode it is recommended to use SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:148 +msgid "Donation" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:147 +msgid "Event" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:146 +msgid "Personal" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:145 +msgid "Service" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:144 +msgid "Goods" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:141 +msgid "Choose type of payments" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:140 +msgid "Checkout Type" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:134 +msgid "Staging" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:131 +msgid "Choose STAGING if you have registered the app on stage.wepay.com, or PRODUCTION if you registered on www.wepay.com" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:36 +#: includes/common/payment-gateways/wepay.php:299 +msgid "WePay" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:366 +msgid "Rejected - A payment was rejected." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:360 +msgid "Failed - A payment was rejected due to an error." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:342 +msgid "PayWay balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:298 +msgid "Full path of the cacerts.crt file" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:284 +msgid "User Name" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:277 +msgid "Biller Code" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:273 +msgid "Log Directory" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:266 +msgid "Encryption Key" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:60 +msgid "Your PayWay transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:40 +#: includes/common/payment-gateways/_payway.php:41 +msgid "PayWay" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:862 +msgid "You must register this application with PayPal using your business account login to get an Application ID that will work with your API credentials. A bit of a hassle, but worth it! In the near future we will be looking for ways to simplify this process. Register then submit your application while logged in to the developer portal. Note that you do not need an Application ID for testing in sandbox mode. More Information »" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:818 +#: includes/common/payment-gateways/paypal-chained-payments.php:840 +#: includes/common/payment-gateways/paypal-express.php:705 +msgid "You must login to PayPal and create an API signature to get your credentials. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:378 +msgid "Use Payflow payment gateway to accept online payments using your Internet merchant account and processing network. PayPal Payflow Pro is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:595 +msgid "Tags Only" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:594 +msgid "Category Only" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:795 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:593 +msgid "Category & Tags" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:591 +msgid "Relate Products By" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1008 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:455 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:751 +msgid "Right" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1007 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:454 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:749 +msgid "Left" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1009 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:750 +msgid "Center" +msgstr "" + +#: marketpress.php:273 +msgid "Orders from your e-commerce store." +msgstr "" + +#: marketpress.php:231 +msgid "Products for your e-commerce store." +msgstr "" + +#: marketpress.php:222 +msgid "Edit Product" +msgstr "" + +#. Description of the plugin/theme +msgid "The complete WordPress ecommerce plugin - works perfectly with BuddyPress and Multisite too to create a social marketplace, where you can take a percentage! Activate the plugin, adjust your settings then add some products to your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:272 +msgid "Beside" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:271 +msgid "Above" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:268 +msgid "Pin Count" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:261 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:287 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:318 +msgid "All View" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:260 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:286 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:317 +msgid "Single View" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:259 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:285 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:316 +msgid "Off" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:578 +msgid "Related Product Limit" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:681 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1201 +msgid "Applies To" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:685 +msgid "All Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:487 +msgid "The label shown for the tax line item in the cart. Taxes, VAT, GST, etc." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:485 +msgid "Tax Label" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:81 +msgid "Apply" +msgstr "" + +#: includes/admin/class-mp-admin.php:192 +msgid "MarketPress Instructions" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1954 +#: includes/admin/class-mp-products-admin.php:2194 includes/common/data.php:62 +#: includes/common/helpers.php:150 +msgid "Taxes" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1417 +#: includes/common/class-mp-product.php:2900 +msgid "Related Products" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:282 +#: includes/common/shipping-modules/mp-usps.php:316 +msgid "@ Max" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "(3-5 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "Priority Mail Express International Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:92 +msgid "Priority Mail Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:171 +#: includes/common/shipping-modules/mp-pickup.php:247 +msgid "In Store" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:159 +msgid "Pickup Fee" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:141 +msgid "This option allows your customers to indicate that they will pick-up their order at your place of business." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:60 +#: includes/common/shipping-modules/mp-pickup.php:76 +#: includes/common/shipping-modules/mp-pickup.php:176 +msgid "Pickup Instructions" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:24 +#: includes/common/shipping-modules/mp-pickup.php:254 +msgid "Pickup" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping - 0.00" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:256 +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:440 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:309 +msgid "Your Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:301 +msgid "Station" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:300 +msgid "Request Courier" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:299 +msgid "Drop Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:298 +msgid "Business Service Center" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:297 +msgid "Regular Pickup" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:135 +#: includes/common/shipping-modules/mp-fedex.php:264 +msgid "Production" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:207 +msgid "Simplify Commerce by MasterCard" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:104 +msgid "When in live mode, although it is not required, Simplify recommends you have an SSL certificate." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:183 +#: includes/common/payment-gateways/simplify.php:87 +msgid "Public Key" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:175 +#: includes/common/payment-gateways/simplify.php:94 +msgid "Private Key" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:71 +msgid "Simplify helps merchants to accept online payments from Mastercard, Visa, American Express, Discover, JCB, and Diners Club cards. It's that simple. We offer a merchant account and payment gateway in a single, secure package so you can concentrate on what really matters to your business. Only supports USD currently." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:267 +msgid "%1$s" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:151 +msgid "The Simplify Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/simplify.php:18 +msgid "Simplify" +msgstr "" + +#: includes/common/payment-gateways/pin.php:255 +msgid "%1$s Card %2$s" +msgstr "" + +#: includes/common/payment-gateways/pin.php:211 +msgid "The PIN Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:187 +msgid "Selecting a currency other than currency supported by PIN may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/pin.php:164 +msgid "You must login to PIN to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/pin.php:158 +msgid "When in live mode PIN recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/pin.php:45 +#: includes/common/payment-gateways/pin.php:286 +msgid "PIN" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:830 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:534 +#: includes/common/payment-gateways/paypal-express.php:865 +msgid "The payment is pending" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:235 +msgid "The Paymill Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:169 +msgid "You must login to Paymill to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:45 +#: includes/common/payment-gateways/paymill.php:308 +msgid "Paymill" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:90 +msgid "Invalid cardholder" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:89 +msgid "Card is no longer valid or has expired" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:88 +msgid "Please enter a valid Card CVC" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:87 +msgid "Please choose a valid Expiration Date." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:99 +#: includes/common/payment-gateways/skrill.php:100 +msgid "Skrill (Moneybookers)" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:24 +#: includes/common/shipping-modules/mp-weight-rate.php:292 +msgid "Weight Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:303 +msgid "USPS Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:270 +msgid "USPS Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:264 +msgid "USPS Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:145 +msgid "Flat Rate Large" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:140 +msgid "Flat Rate Medium 2" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:135 +msgid "Flat Rate Medium 1" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:130 +msgid "Flat Rate Small" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:118 +msgid "First Class International Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:114 +msgid "Priority Mail International Small Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:112 +msgid "Priority Mail International Medium Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:110 +msgid "Priority Mail International Large Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:108 +msgid "Priority Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:106 +msgid "Express Mail International Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:104 +msgid "Express Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:98 +msgid "Library Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:96 +msgid "Media Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "First-Class Mail Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:90 +msgid "Priority Mail Small Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:88 +msgid "Priority Mail Medium Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +#: includes/common/shipping-modules/mp-usps.php:88 +#: includes/common/shipping-modules/mp-usps.php:90 +#: includes/common/shipping-modules/mp-usps.php:92 +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "(2-4 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +msgid "Priority Mail Large Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "(2-4) days" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "Priority Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "Express Mail Sunday/Holiday Delivery Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:80 +msgid "Express Mail Flat Rate Boxes Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:78 +msgid "Express Mail Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:76 +msgid "Express Mail Sunday/Holiday Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:74 +msgid "Express Mail Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:72 +#: includes/common/shipping-modules/mp-usps.php:74 +#: includes/common/shipping-modules/mp-usps.php:76 +#: includes/common/shipping-modules/mp-usps.php:78 +#: includes/common/shipping-modules/mp-usps.php:80 +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "(1-2 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:72 +msgid "Express Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:67 +#: includes/common/shipping-modules/mp-usps.php:902 +msgid "USPS" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:534 +msgid "UPS (beta)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:166 +msgid "Required if using negotiated rates" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "Worldwide Express Plus" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "(Scheduled)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "Standard" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "(2-5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "Worldwide Expedited" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:54 +msgid "Worldwide Express" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "2nd Day Air AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "(1 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "Next Day Air Early AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "Next Day Air Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "3 Day Select" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:49 +msgid "Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:48 +msgid "2nd Day Air" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "Next Day Air" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:475 +#: includes/common/shipping-modules/mp-ups.php:43 +msgid "UPS" +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:27 +#: includes/common/shipping-modules/mp-table-rate.php:318 +msgid "Table Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:71 +#: includes/common/shipping-modules/mp-table-quantity.php:77 +msgid "Shipping Cost: " +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:70 +#: includes/common/shipping-modules/mp-table-quantity.php:76 +msgid "If quantity is greater than:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:66 +msgid "Each band must be a higher price than the one above it." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:56 +msgid "Number of Bands:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:53 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Each layer must be a higher quantity than the previous." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:51 +msgid "Table Quantity Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:31 +msgid "Table Quantity" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:135 +#: includes/common/shipping-modules/mp-table-rate.php:174 +#: includes/common/shipping-modules/mp-weight-rate.php:189 +msgid "European Union" +msgstr "Uni Eropa" + +#: includes/common/shipping-modules/mp-flat-rate.php:123 +#: includes/common/shipping-modules/mp-table-rate.php:162 +#: includes/common/shipping-modules/mp-weight-rate.php:177 +msgid "United States" +msgstr "Amerika Serikat" + +#: includes/common/shipping-modules/mp-flat-rate.php:111 +#: includes/common/shipping-modules/mp-table-rate.php:151 +#: includes/common/shipping-modules/mp-weight-rate.php:166 +msgid "In Country" +msgstr "Dalam Negeri" + +#: includes/common/shipping-modules/mp-flat-rate.php:146 +#: includes/common/shipping-modules/mp-table-rate.php:186 +#: includes/common/shipping-modules/mp-weight-rate.php:201 +msgid "International" +msgstr "Internasional" + +#: includes/common/shipping-modules/mp-flat-rate.php:101 +#: includes/common/shipping-modules/mp-table-rate.php:141 +#: includes/common/shipping-modules/mp-weight-rate.php:156 +msgid "Canada" +msgstr "Canada" + +#: includes/common/shipping-modules/mp-flat-rate.php:92 +#: includes/common/shipping-modules/mp-table-rate.php:132 +#: includes/common/shipping-modules/mp-weight-rate.php:147 +msgid "Hawaii and Alaska" +msgstr "Hawaii dan Alaska" + +#: includes/common/shipping-modules/mp-flat-rate.php:83 +#: includes/common/shipping-modules/mp-table-rate.php:123 +#: includes/common/shipping-modules/mp-weight-rate.php:138 +msgid "Lower 48 States" +msgstr "Dibawah 48 Negara" + +#: includes/common/shipping-modules/mp-flat-rate.php:64 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping." +msgstr "Pastikan masukkan biaya pengiriman untuk setiap pilihan atau pelanggan bisa mendapatkan bebas biaya kirim." + +#: includes/common/shipping-modules/mp-flat-rate.php:25 +#: includes/common/shipping-modules/mp-flat-rate.php:223 +msgid "Flat Rate" +msgstr "Harga Umum" + +#: includes/common/shipping-modules/mp-fedex.php:761 +msgid "FedEx (beta)" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Centimeters" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Inches" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1676 +#: includes/admin/class-mp-setup-wizard.php:547 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:166 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +msgid "Kilograms" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:103 +msgid " %1$s - %2$s" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:358 +msgid "Max Weight per Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:356 +msgid "Box Dimensions" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:354 +msgid "Box Name" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:344 +msgid "Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:343 +msgid "For each box defined enter the maximum weight it can contain." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:341 +msgid "Enter your standard box sizes as LengthxWidthxHeight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:386 +#: includes/common/shipping-modules/mp-ups.php:193 +#: includes/common/shipping-modules/mp-usps.php:234 +#: includes/common/shipping-modules/mp-usps.php:338 +msgid "Standard Boxes and Weight Limits" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:328 +msgid "Handling Charge per Interntional Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:294 +msgid "Handling Charge per Domestic Shipment " +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:388 +#: includes/common/shipping-modules/mp-ups.php:196 +#: includes/common/shipping-modules/mp-usps.php:237 +msgid "Add Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "(Next Day)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +msgid "Europe First International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:62 +msgid "International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:61 +#: includes/common/shipping-modules/mp-fedex.php:62 +#: includes/common/shipping-modules/mp-ups.php:54 +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "(1-3 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:61 +msgid "International First" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "(5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "International Economy" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "(2-7 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "Smart Post" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:55 +#: includes/common/shipping-modules/mp-ups.php:49 +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "(1-5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:55 +msgid "Ground Home Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "(1-7 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "Fedex Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:53 +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "(3 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:53 +msgid "Fedex Express Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +#: includes/common/shipping-modules/mp-ups.php:48 +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "(2 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +msgid "Fedex 2 Day" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "(2 Days am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "Fedex 2 Day AM" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "(1 Day)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +msgid "Standard Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "(1 Day am )" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "Priority Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "(1 Day am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "First Overnight" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:476 +#: includes/common/shipping-modules/mp-fedex.php:31 +msgid "FedEx" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:270 +#: includes/common/payment-gateways/simplify.php:179 +#: includes/common/payment-gateways/stripe.php:365 +msgid "%1$s Card ending in %2$s - Expires %3$s" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:259 +#: includes/common/payment-gateways/pin.php:238 +#: includes/common/payment-gateways/simplify.php:171 +msgid "%s Store Purchase - Order ID: %s, Email: %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:266 +msgid "You must login to Stripe to get your API credentials. You can enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:261 +msgid "When in live mode Stripe recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:311 +msgid "The Stripe Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:263 +#: includes/common/payment-gateways/paymill.php:122 +#: includes/common/payment-gateways/stripe.php:222 +msgid "Card Number" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:86 +msgid "Please enter a valid Credit Card Number." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:45 +#: includes/common/payment-gateways/stripe.php:433 +msgid "Stripe" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:750 +msgid "Sets the background color for the payment page. By default, the color is white." +msgstr "Pengaturan warna latar untuk halaman pembayaran. Standar, warna putih." + +#: includes/common/payment-gateways/paypal-express.php:745 +msgid "Sets the background color for the header of the payment page. By default, the color is white." +msgstr "Pengaturan warna latar untuk kepala halaman pembayaran. Standar, warna putih." + +#: includes/common/payment-gateways/paypal-express.php:740 +msgid "Sets the border color around the header of the payment page. The border is a 2-pixel perimeter around the header space, which is 750 pixels wide by 90 pixels high. By default, the color is black." +msgstr "Pengaturan warna garis sekitar kepala halaman pembayaran. Ukuran garis sekitar 2-pixel dengan lebar 750 pixel dan tinggi 90 pixel. Standar, warna hitam." + +#: includes/common/payment-gateways/paypal-express.php:735 +msgid "URL for an image you want to appear at the top left of the payment page. The image has a maximum size of 750 pixels wide by 90 pixels high. PayPal recommends that you provide an image that is stored on a secure (https) server. If you do not specify an image, the business name is displayed." +msgstr "URL untuk gambar jika anda ingin muncul di kiri atas pada halaman pembayaran. Ukuran lembar maksimal gambar 750 pixel kali 90 pixel tinggi. Paypal merekomendasikan agar anda menyediakan gambar yang disimpan dengan aman di server (https). Jika anda tidak menyediakan gambar, nama bisnis yang dipakai. " + +#: includes/common/payment-gateways/paypal-express.php:857 +#: includes/common/payment-gateways/paypal-express.php:1131 +msgid "The payment is pending because it is part of an order that has been authorized but not settled." +msgstr "Pembayaran sedang menunggu karena merupakan bagian dari pesanan yang telah diotorisasi namun belum disetujui." + +#: includes/common/payment-gateways/paypal-express.php:853 +#: includes/common/payment-gateways/paypal-express.php:1127 +msgid "The payment is pending because it has been authorized but not settled. You must capture the funds first." +msgstr "Pembayaran sedang proses menunggu karena belum beres. Sebelum itu anda harus meng-capture dana." + +#: includes/common/payment-gateways/paypal-express.php:847 +#: includes/common/payment-gateways/paypal-express.php:1120 +msgid "You denied the payment when it was marked as pending." +msgstr "Anda meniadakan pembayaran ketika ditandai sebagai menunggu." + +#: includes/common/payment-gateways/paypal-express.php:837 +#: includes/common/payment-gateways/paypal-express.php:1108 +msgid "A reversal has occurred on this transaction due to an unknown reason." +msgstr "Penolakan transaksi terjadi karena sebab alasan tidak diketahui." + +#: includes/common/payment-gateways/paypal-express.php:836 +#: includes/common/payment-gateways/paypal-express.php:1107 +msgid "A reversal has occurred on this transaction because you have given the customer a refund." +msgstr "Penolakan transaksi terjadi karena anda telah mengembalikan dana pelanggan." + +#: includes/common/payment-gateways/paypal-express.php:835 +#: includes/common/payment-gateways/paypal-express.php:1106 +msgid "A reversal has occurred on this transaction due to a complaint about the transaction from your customer." +msgstr "Penolakan transaksi terjadi karena sebab tuntutan tentang transaksi dari pelanggan anda." + +#: includes/common/payment-gateways/paypal-express.php:834 +#: includes/common/payment-gateways/paypal-express.php:1105 +msgid "A reversal has occurred on this transaction due to your customer triggering a money-back guarantee." +msgstr "Penolakan transaksi terjadi karena sebab pelanggan anda mencetuskan garansi uang kembali." + +#: includes/common/payment-gateways/paypal-express.php:833 +#: includes/common/payment-gateways/paypal-express.php:1104 +msgid "A reversal has occurred on this transaction due to a chargeback by your customer." +msgstr "Penolakan transaksi terjadi karena sebab pengembalian ongkos kepada pelanggan anda." + +#: includes/common/payment-gateways/paypal-express.php:1101 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer:" +msgstr "Pembayaran telah ditolak karena sebab pengembalian ongkos atau jenis pembayaran tidak diterima. Dana telah dihapus dari akun neraca anda dan dikembalikan kepada pembeli." + +#: includes/common/payment-gateways/paypal-express.php:826 +#: includes/common/payment-gateways/paypal-express.php:1097 +msgid "A payment has been accepted." +msgstr "Pembayaran telah diterima." + +#: includes/common/payment-gateways/paypal-express.php:818 +#: includes/common/payment-gateways/paypal-express.php:1087 +msgid "The transaction has not terminated, e.g. an authorization may be awaiting completion." +msgstr "Transaksi belum selesai, misal, menunggu otorisasi penyelesaian." + +#: includes/common/payment-gateways/payfast.php:531 +#: includes/common/payment-gateways/paypal-express.php:810 +#: includes/common/payment-gateways/paypal-express.php:1077 +msgid "The payment has failed. This happens only if the payment was made from your customer's bank account." +msgstr "Pembayaran gagal. Ini terjadi hanya apabila pembayaran dilakukan melalui akun bank pelanggan anda." + +#: includes/common/payment-gateways/paypal-express.php:806 +#: includes/common/payment-gateways/paypal-express.php:1072 +msgid "An authorization for this transaction has been voided." +msgstr "Otorisasi untuk transaksi ini telah dikosongkan" + +#: includes/common/payment-gateways/paypal-express.php:802 +#: includes/common/payment-gateways/paypal-express.php:1067 +msgid "The authorization period for this payment has been reached." +msgstr "Masa otorisasi untuk pembayaran telah tercapai" + +#: includes/common/payment-gateways/paypal-express.php:798 +#: includes/common/payment-gateways/paypal-express.php:1062 +msgid "A reversal has been canceled; for example, when you win a dispute and the funds for the reversal have been returned to you." +msgstr "Pengembalian kerugian telah dibatalkan; misalnya, ketika anda memenangkan perselisihan dengan pelanggan dan dana pengembalian kerugian telah dikembalikan kepada anda." + +#: includes/common/payment-gateways/paypal-express.php:499 +#: includes/common/payment-gateways/paypal-express.php:1163 +msgid "PayPal Express Checkout" +msgstr "PayPal Express Checkout" + +#: includes/common/payment-gateways/paypal-chained-payments.php:798 +msgid "Gateway Settings Page Message" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:725 +msgid "Signature" +msgstr "Signature" + +#: includes/common/payment-gateways/eway31.php:506 +#: includes/common/payment-gateways/eway31.php:533 +#: includes/common/shipping-modules/mp-fedex.php:276 +msgid "API Password" +msgstr "API Sandi" + +#: includes/common/payment-gateways/paypal-chained-payments.php:773 +msgid "Enter a percentage of all store sales to collect as a fee. Decimals allowed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:757 +msgid "Using PayPal Chained Payments allows you as the multisite network owner to collect a predefined fee or percentage of all sales on network MarketPress stores! This is invisible to the customers who purchase items in a store, and all PayPal fees will be charged to the store owner. To use this option you must create API credentials, and you should make all other gateways unavailable or limited above." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:338 +msgid "Please be aware that we will deduct a ?% fee from the total of each transaction in addition to any fees PayPal may charge you. If for any reason you need to refund a customer for an order, please contact us with a screenshot of the refund receipt in your PayPal history as well as the Transaction ID of our fee deduction so we can issue you a refund. Thank you!" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:698 +#: includes/common/payment-gateways/paypal-express.php:149 +msgid "There was a problem connecting to PayPal. Please try again." +msgstr "Ada masalah koneksi dengan Paypal. Silahkan ulangi lagi." + +#: includes/common/payment-gateways/paypal-chained-payments.php:470 +#: includes/common/payment-gateways/paypal-express.php:1053 +msgid "There was a problem verifying the IPN string with PayPal. Please try again." +msgstr "Ada masalah dalam verifikasi IPN Paypal. Silahkan ulangi lagi." + +#: includes/common/payment-gateways/paypal-chained-payments.php:310 +msgid "There was a problem connecting to PayPal to check the status of your purchase. Please check the status of your order here »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:539 +#: includes/common/payment-gateways/paypal-chained-payments.php:254 +#: includes/common/payment-gateways/paypal-express.php:1139 +msgid "The payment is pending." +msgstr "Pembayaran sedang menunggu." + +#: includes/common/payment-gateways/paypal-chained-payments.php:251 +#: includes/common/payment-gateways/paypal-chained-payments.php:531 +#: includes/common/payment-gateways/paypal-express.php:862 +#: includes/common/payment-gateways/paypal-express.php:1136 +msgid "The payment is pending for an unknown reason. For more information, contact PayPal customer service." +msgstr "Pembayaran sedang menunggu karena alasan tak diketahui. Untuk informasi lebih lanjut, hubungi layanan pelanggan Paypal." + +#: includes/common/payment-gateways/paypal-chained-payments.php:250 +#: includes/common/payment-gateways/paypal-chained-payments.php:530 +#: includes/common/payment-gateways/paypal-express.php:861 +#: includes/common/payment-gateways/paypal-express.php:1135 +msgid "The payment is pending because you are not yet verified. You must verify your account before you can accept this payment." +msgstr "Pembayaran masih menunggu karena anda belum diverifikasi. Anda harus memverifikasi akun anda sebelum anda bisa menerima pembayaran ini." + +#: includes/common/payment-gateways/paypal-chained-payments.php:249 +#: includes/common/payment-gateways/paypal-chained-payments.php:529 +#: includes/common/payment-gateways/paypal-express.php:860 +#: includes/common/payment-gateways/paypal-express.php:1134 +msgid "The payment is pending because it was made via credit card and you must upgrade your account to Business or Premier status in order to receive the funds. It can also mean that you have reached the monthly limit for transactions on your account." +msgstr "Pembayaran masih menunggu karena dibayar lewat kartu kredit dan anda harus upgrade akun anda ke status Business atau Premier agar bisa menerima dana. Ini juga bisa berarti bahwa transaksi melebihi batas transaksi bulanan pada akun anda." + +#: includes/common/payment-gateways/paypal-chained-payments.php:248 +#: includes/common/payment-gateways/paypal-chained-payments.php:528 +#: includes/common/payment-gateways/paypal-express.php:859 +#: includes/common/payment-gateways/paypal-express.php:1133 +msgid "The payment is pending because it was made to an email address that is not yet registered or confirmed." +msgstr "Pembayaran masih menunggu karena dilakukan melalui alamat email yang belum terdaftar atau dikonfirmasi." + +#: includes/common/payment-gateways/paypal-chained-payments.php:247 +#: includes/common/payment-gateways/paypal-chained-payments.php:527 +#: includes/common/payment-gateways/paypal-express.php:858 +#: includes/common/payment-gateways/paypal-express.php:1132 +msgid "The payment is pending while it is being reviewed by PayPal for risk." +msgstr "Pembayaran sedang menunggu mengingat dipandang oleh Paypal sebagai beresiko." + +#: includes/common/payment-gateways/paypal-chained-payments.php:246 +#: includes/common/payment-gateways/paypal-chained-payments.php:526 +#: includes/common/payment-gateways/paypal-express.php:856 +#: includes/common/payment-gateways/paypal-express.php:1130 +msgid "You do not have a balance in the currency sent, and you do not have your Payment Receiving Preferences set to automatically convert and accept this payment. You must manually accept or deny this payment." +msgstr "Anda tidak memiliki neraca dalam pengiriman mata uang, dan anda tidak memiliki pengaturan konversi otomatis Pilihan Penerimaan Pembayaran dan menerima pembayaran ini. Anda harus menerima pembayaran secara manual atau menolaknya." + +#: includes/common/payment-gateways/paypal-chained-payments.php:245 +#: includes/common/payment-gateways/paypal-chained-payments.php:525 +#: includes/common/payment-gateways/paypal-express.php:855 +#: includes/common/payment-gateways/paypal-express.php:1129 +msgid "The payment is pending because you hold a non-U.S. account and do not have a withdrawal mechanism. You must manually accept or deny this payment from your Account Overview." +msgstr "Pembayaran sedang menunggu karena akun anda berada diluar U.S. dan tidak memiliki mekanisme penukaran. Anda harus menerima pembayaran secara manual atau menolaknya dari ikhtisar akun anda." + +#: includes/common/payment-gateways/paypal-chained-payments.php:244 +#: includes/common/payment-gateways/paypal-chained-payments.php:524 +#: includes/common/payment-gateways/paypal-express.php:854 +#: includes/common/payment-gateways/paypal-express.php:1128 +msgid "The payment is pending because it was made by an eCheck that has not yet cleared." +msgstr "Pembayaran sedang menunggu karena pembayaran melalui eCheck belum lengkap." + +#: includes/common/payment-gateways/paypal-chained-payments.php:243 +#: includes/common/payment-gateways/paypal-chained-payments.php:523 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:236 +#: includes/common/payment-gateways/paypal-chained-payments.php:516 +msgid "The transaction was rejected by the receiver (you)." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:510 +#: includes/common/payment-gateways/paypal-express.php:843 +#: includes/common/payment-gateways/paypal-express.php:1115 +msgid "You refunded the payment." +msgstr "Anda mengembalikan uang pembayaran." + +#: includes/common/payment-gateways/paypal-chained-payments.php:224 +#: includes/common/payment-gateways/paypal-chained-payments.php:504 +msgid "The transaction is in progress." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:212 +#: includes/common/payment-gateways/paypal-chained-payments.php:491 +#: includes/common/payment-gateways/paypal-express.php:814 +#: includes/common/payment-gateways/paypal-express.php:1082 +msgid "The payment has been partially refunded." +msgstr "Pembayaran sebagian telah dikembalikan" + +#: includes/common/payment-gateways/paypal-chained-payments.php:202 +#: includes/common/payment-gateways/paypal-chained-payments.php:481 +msgid "PayPal balance, Credit Card, or Instant Transfer" +msgstr "Neraca Paypal, Kartu Kredit, atau Transfer Langsung" + +#: includes/common/payment-gateways/paypal-chained-payments.php:177 +msgid "There was a problem connecting to PayPal to setup your purchase. Please try again." +msgstr "Ada masalah menghubungi Paypal untuk mengatur pembelian anda. Silahkan ulangi lagi." + +#: includes/common/payment-gateways/paypal-chained-payments.php:122 +msgid "Your PayPal transaction has been canceled." +msgstr "Transaksi Paypal anda telah dibatalkan." + +#: includes/common/payment-gateways/paypal-chained-payments.php:50 +#: includes/common/payment-gateways/paypal-chained-payments.php:53 +#: includes/common/payment-gateways/paypal-chained-payments.php:732 +#: includes/common/payment-gateways/paypal-express.php:500 +#: includes/common/payment-gateways/paypal-express.php:938 +msgid "PayPal" +msgstr "PayPal" + +#: includes/common/payment-gateways/paypal-chained-payments.php:48 +#: includes/common/payment-gateways/paypal-chained-payments.php:730 +#: includes/common/payment-gateways/paypal-chained-payments.php:756 +#: includes/common/payment-gateways/paypal-chained-payments.php:873 +msgid "PayPal Chained Payments" +msgstr "PayPal Chained Payments" + +#: includes/common/payment-gateways/paypal-payflow.php:59 +#: includes/common/payment-gateways/paypal-payflow.php:467 +msgid "PayPal Payflow Pro" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:378 +msgid "Chargeback - A payment was reversed due to a chargeback. The funds have been removed from your account balance and returned to the buyer." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:372 +msgid "Failed - The Credit Card or Direct Debit transaction was declined." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:354 +#: includes/common/payment-gateways/skrill.php:366 +msgid "Cancelled - The payment was cancelled manually by the sender in their online account history or was auto-cancelled after 14 days pending." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:360 +msgid "Pending - The payment is pending. It can take 2-3 days for bank transfers to complete." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:349 +#: includes/common/payment-gateways/skrill.php:354 +msgid "Processed - The payment has been completed, and the funds have been added successfully to your Moneybookers account balance." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:189 +msgid "Shown to the customer on the confirmation screen - the end step of the process - a note, confirmation number, or any other message. Line breaks <br> may be used for longer messages." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:188 +msgid "Confirmation Note (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:183 +msgid "The URL of the logo which you would like to appear at the top of the payment form. The logo must be accessible via HTTPS otherwise it will not be shown. For best integration results we recommend that you use a logo with dimensions up to 200px in width and 50px in height." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:182 +msgid "Logo Image (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:177 +msgid "The name of this store, which will be shown on the gateway. If no value is submitted, the account email will be shown as the recipient of the payment." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:176 +msgid "Merchant Name (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:165 +msgid "Language" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:368 +#: includes/common/payment-gateways/authorizenet-aim.php:262 +#: includes/common/payment-gateways/eway.php:363 +#: includes/common/payment-gateways/eway31.php:471 +#: includes/common/payment-gateways/mollie.php:91 +#: includes/common/payment-gateways/paymill.php:193 +#: includes/common/payment-gateways/paypal-chained-payments.php:356 +#: includes/common/payment-gateways/paypal-express.php:688 +#: includes/common/payment-gateways/paypal-payflow.php:432 +#: includes/common/payment-gateways/pin.php:186 +#: includes/common/payment-gateways/skrill.php:152 +#: includes/common/payment-gateways/stripe.php:288 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:104 +msgid "Currency" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:359 +#: includes/common/payment-gateways/skrill.php:143 +msgid "Secret Word" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:261 +msgid "Order ID:" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:234 +msgid "Complete Checkout" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:204 +msgid "Your Moneybookers transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:155 +msgid "This is the email text to send to those who have made manual payment checkouts. You should include your manual payment instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "Email ini dikirim kepada mereka yang melakukan checkout pembayaran manual. Anda harus menyertakan instruksi pembayaran manual disini. Ini mengesampingkan email pesanan periksa belanja standar. Kode-kode berikut akan diganti dengan penjelasan pesanan: NAMAPELANGGAN, IDPESANAN, INFOPESANAN, INFOPENGIRIMAN, INFOPEMBAYARAN, TOTAL, LACAKGURL. Tidak diperkenankan HTML." + +#: includes/common/payment-gateways/_payway.php:257 +#: includes/common/payment-gateways/manual-payments.php:128 +msgid "Record payments manually, such as by Cash, Check, or EFT." +msgstr "Rekam pembayaran secara manual, misal menurut Cash, Check, atau EFT." + +#: includes/common/payment-gateways/manual-payments.php:71 +msgid "Manual/Invoice" +msgstr "Manual/Faktur" + +#: includes/admin/class-mp-setup-wizard.php:648 +#: includes/common/payment-gateways/manual-payments.php:35 +#: includes/common/payment-gateways/manual-payments.php:36 +msgid "Manual Payment" +msgstr "Manual Pembayaran" + +#: includes/common/payment-gateways/manual-payments.php:34 +#: includes/common/payment-gateways/manual-payments.php:163 +msgid "Manual Payments" +msgstr "Manual Pembayaran" + +#: includes/common/payment-gateways/_ideal.php:288 +msgid "iDEAL Simulator (for testing)" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:287 +msgid "ABN Amro Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:286 +msgid "Friesland Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:285 +msgid "Rabobank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:284 +msgid "ING Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:279 +msgid "Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:270 +msgid "To make it easier to pay for online products and services, the Dutch banking community has developed the iDEAL online payment method. iDEAL allows online payments to be made using online banking in EUR only." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:247 +#: includes/common/payment-gateways/_payway.php:199 +#: includes/common/payment-gateways/manual-payments.php:68 +msgid "Invoiced" +msgstr "Faktur" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1016 +msgid "Coupon" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:77 +#: includes/common/payment-gateways/_ideal.php:250 +#: includes/common/payment-gateways/_payway.php:202 +msgid "iDEAL" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:76 +msgid "iDEAL (beta)" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:327 +msgid "Merchant Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:293 +#: includes/common/payment-gateways/_payway.php:302 +#: includes/common/payment-gateways/payfast.php:324 +msgid "Merchant ID" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:462 +msgid "eWay Rapid 3.0 Payments lets merchants recieve credit card payments through eWay without need for users to leave the shop. Note this gateway requires a valid SSL certificate configured for this site." +msgstr "" + +#: includes/common/payment-gateways/eway.php:452 +msgid "There was a problem connecting to eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/eway.php:432 +#: includes/common/payment-gateways/eway.php:437 +msgid "The url of the image can be hosted on your website and pass the secure https:// path of the image to be displayed at the top of the website. This is the second image block on the webpage and is restricted to 960px X 65px. A default secure image is used if none is supplied." +msgstr "" + +#: includes/common/payment-gateways/eway.php:431 +#: includes/common/payment-gateways/eway.php:436 +msgid "Company Logo (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:427 +msgid "The page footer text can be customised and populated below the customer's order details. Useful for contact information." +msgstr "" + +#: includes/common/payment-gateways/eway.php:426 +msgid "Page Footer (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:421 +msgid "Page Description (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:417 +#: includes/common/payment-gateways/eway.php:422 +msgid "This value is used to populate the browsers title bar at the top of the screen." +msgstr "" + +#: includes/common/payment-gateways/eway.php:416 +msgid "Page Title (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:412 +msgid "This will be displayed as the company the customer is purchasing from, including this is highly recommended." +msgstr "" + +#: includes/common/payment-gateways/eway.php:411 +msgid "Company Name" +msgstr "" + +#: includes/common/payment-gateways/eway.php:394 +msgid "Customer ID" +msgstr "" + +#: includes/common/payment-gateways/eway.php:381 +#: includes/common/payment-gateways/eway31.php:488 +msgid "Live API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway.php:371 +#: includes/common/payment-gateways/eway31.php:479 +msgid "Gateway Mode" +msgstr "" + +#: includes/common/payment-gateways/eway.php:354 +msgid "The Hosted Page is a webpage hosted on eWAY's side eliminating the need for merchants to capture, transmit or store credit card numbers. At the checkout time the merchant automatically redirects the customer to the Hosted Page where they would enter their details and have the transaction processed. Upon completion of the transaction the customer is redirected back to the MarketPress checkout confirmation page." +msgstr "" + +#: includes/common/payment-gateways/eway.php:314 +msgid "There was a problem with your credit card information: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:300 +msgid "Paid - The card has been processed - %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:253 +msgid "There was a problem setting up the transaction with eWay: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:245 +#: includes/common/payment-gateways/eway.php:289 +msgid "There was a problem parsing the response from eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:159 +#: includes/common/payment-gateways/eway.php:189 +#: includes/common/payment-gateways/paypal-chained-payments.php:634 +#: includes/common/payment-gateways/paypal-express.php:322 +#: includes/common/payment-gateways/paypal-express.php:473 +msgid "%s Store Purchase - Order ID: %s" +msgstr "%s Pembelian Toko - ID Pesanan: %s" + +#: includes/common/payment-gateways/eway.php:147 +#: includes/common/payment-gateways/eway.php:462 +msgid "eWay Shared Payments" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:214 +msgid "This is the email text to send to those who have made CubePoints checkouts. You should include your CubePoints instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:212 +#: includes/common/payment-gateways/free_orders.php:188 +#: includes/common/payment-gateways/manual-payments.php:154 +msgid "Order Confirmation Email" +msgstr "Email Konfirmasi Pesanan" + +#: includes/common/payment-gateways/_cubepoints.php:207 +#: includes/common/payment-gateways/manual-payments.php:149 +msgid "Confirmation User Instructions" +msgstr "Instruksi Konfirmasi Pengguna" + +#: includes/common/payment-gateways/_cubepoints.php:202 +#: includes/common/payment-gateways/manual-payments.php:144 +msgid "User Instructions" +msgstr "Instruksi Pengguna" + +#: includes/common/payment-gateways/_cubepoints.php:198 +#: includes/common/payment-gateways/free_orders.php:170 +#: includes/common/payment-gateways/manual-payments.php:139 +msgid "Enter a public name for this payment method that is displayed to users - No HTML" +msgstr "Masukkan nama sehari-hari untuk metode pembayaran guna ditampilkan di pengguna - Tidak HTML" + +#: includes/admin/class-mp-orders-admin.php:532 +#: includes/common/payment-gateways/_cubepoints.php:196 +#: includes/common/payment-gateways/free_orders.php:169 +#: includes/common/payment-gateways/manual-payments.php:138 +msgid "Method Name" +msgstr "Nama metode" + +#: includes/common/payment-gateways/_cubepoints.php:187 +msgid "Accept CubePoints as payment(requires the CubePoints plugin)." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:140 +msgid "Sorry, but you do not appear to have enough points to complete this purchase!" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:124 +msgid "%s Store Purchase" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:79 +#: includes/common/payment-gateways/_cubepoints.php:171 +msgid "Your current points: " +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:133 +#: includes/common/payment-gateways/_cubepoints.php:197 +msgid "CubePoints" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:344 +msgid "Authorize.net AIM Checkout" +msgstr "Authorized.net AIM Checkout" + +#: includes/common/payment-gateways/authorizenet-aim.php:331 +msgid "Custom API URL" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:332 +msgid "Many other gateways have Authorize.net API emulators. To use one of these gateways input their API post url here." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:322 +msgid "Request a delimited response from the payment gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:316 +msgid "Security: MD5 Hash" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:317 +msgid "The payment gateway generated MD5 hash value that can be used to authenticate the transaction response. Not needed because responses are returned using an SSL connection." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:306 +msgid "Customer Receipt Email Footer" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:296 +msgid "Customer Receipt Email Header" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:297 +#: includes/common/payment-gateways/paypal-payflow.php:446 +msgid "This text will appear as the header of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:282 +msgid "Encapsulation Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:283 +msgid "Authorize.net default is blank. Otherwise, get this from your credit card processor. If the transactions are going through, but getting strange responses, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:273 +msgid "Optional settings to control advanced options" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:224 +#: includes/common/payment-gateways/authorizenet-aim.php:272 +msgid "Advanced Settings" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:253 +msgid "Transaction Key" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:246 +msgid "Login ID" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:396 +msgid "Gateway Credentials" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:221 +msgid "Authorize.net AIM is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway. USD is the only currency supported by this gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:205 +msgid "There was a problem finalizing your purchase. %s Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:519 +#: includes/common/payment-gateways/paypal-chained-payments.php:218 +#: includes/common/payment-gateways/paypal-chained-payments.php:498 +#: includes/common/payment-gateways/paypal-express.php:822 +#: includes/common/payment-gateways/paypal-express.php:1092 +msgid "The payment has been completed, and the funds have been added successfully to your account balance." +msgstr "Pembayaran telah lengkap, dan dana telah ditambahkan dengan sukses ke neraca keuangan anda." + +#: includes/common/payment-gateways/paypal-payflow.php:233 +msgid "Please enter a valid credit card security code" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:224 +#: includes/public/class-mp-checkout.php:867 +msgid "Please enter a valid credit card number" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:221 +msgid "Please enter your credit card number" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:217 +msgid "Please enter your credit card security code" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:213 +msgid "Please select your credit card expiration date." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:299 +#: includes/common/payment-gateways/authorizenet-aim.php:50 +#: includes/common/payment-gateways/eway.php:148 +#: includes/common/payment-gateways/eway.php:298 +#: includes/common/payment-gateways/eway31.php:267 +#: includes/common/payment-gateways/paymill.php:46 +#: includes/common/payment-gateways/paypal-express.php:972 +#: includes/common/payment-gateways/paypal-payflow.php:60 +#: includes/common/payment-gateways/pin.php:46 +#: includes/common/payment-gateways/simplify.php:19 +#: includes/common/payment-gateways/stripe.php:46 +#: includes/common/payment-gateways/wepay.php:37 +msgid "Credit Card" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:49 +msgid "Authorize.net Checkout" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:156 +#: includes/common/payment-gateways/stripe.php:293 +msgid "Selecting a currency other than that used for your store may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:352 +msgid "Seller ID" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:340 +#: includes/common/payment-gateways/_ideal.php:311 +#: includes/common/payment-gateways/authorizenet-aim.php:234 +#: includes/common/payment-gateways/eway.php:376 +#: includes/common/payment-gateways/payfast.php:315 +#: includes/common/payment-gateways/paypal-chained-payments.php:368 +#: includes/common/payment-gateways/paypal-express.php:699 +#: includes/common/payment-gateways/paypal-payflow.php:391 +msgid "Live" +msgstr "Live" + +#: includes/common/payment-gateways/2checkout.php:339 +#: includes/common/payment-gateways/authorizenet-aim.php:233 +#: includes/common/payment-gateways/eway.php:375 +#: includes/common/payment-gateways/paypal-chained-payments.php:367 +#: includes/common/payment-gateways/paypal-express.php:698 +#: includes/common/payment-gateways/paypal-payflow.php:390 +#: includes/common/shipping-modules/mp-fedex.php:263 +msgid "Sandbox" +msgstr "Sandbox" + +#: includes/common/payment-gateways/2checkout.php:336 +#: includes/common/payment-gateways/_ideal.php:307 +#: includes/common/payment-gateways/authorizenet-aim.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:365 +#: includes/common/payment-gateways/paypal-express.php:695 +#: includes/common/payment-gateways/paypal-payflow.php:387 +#: includes/common/payment-gateways/wepay.php:130 +#: includes/common/shipping-modules/mp-fedex.php:260 +msgid "Mode" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:288 +#: includes/common/payment-gateways/mijireh.php:242 +#: includes/common/payment-gateways/mollie.php:212 +msgid "The order has been received" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:74 +#: includes/common/payment-gateways/2checkout.php:75 +#: includes/common/payment-gateways/2checkout.php:435 +msgid "2Checkout" +msgstr "2Checkout" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:306 +msgid "Confirm" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:218 +#: includes/common/class-mp-cart.php:974 includes/common/class-mp-cart.php:1354 +#: includes/common/template-functions.php:918 +msgid "Checkout" +msgstr "" + +#: includes/common/template-functions.php:207 +msgid "Check Order Status" +msgstr "Cek Status Pesanan" + +#: includes/common/template-functions.php:235 +msgid "View Products" +msgstr "Lihat Produk" + +#: includes/common/template-functions.php:263 +msgid "Visit Store" +msgstr "Kunjungi Toko" + +#: includes/common/template-functions.php:2912 +#: includes/multisite/template-functions.php:448 +msgid "Order By" +msgstr "" + +#: includes/common/template-functions.php:2887 +#: includes/multisite/template-functions.php:405 +msgid "Price (High to Low)" +msgstr "" + +#: includes/common/template-functions.php:2886 +#: includes/multisite/template-functions.php:404 +msgid "Price (Low to High)" +msgstr "" + +#: includes/common/template-functions.php:2881 +#: includes/multisite/template-functions.php:399 +msgid "Default" +msgstr "" + +#: includes/common/template-functions.php:2858 +msgid "Show All" +msgstr "" + +#: includes/common/class-mp-product.php:2048 +msgid "View Larger Image »" +msgstr "Perbesar gambar »" + +#: includes/common/class-mp-product.php:979 +msgid "Out of Stock" +msgstr "Stok Habis" + +#: includes/common/template-functions.php:148 +msgid "Price: " +msgstr "Harga:" + +#: includes/multisite/template-functions.php:833 +msgid "No Tags" +msgstr "Tidak ada Label" + +#: includes/common/template-functions.php:3162 +msgid "Uncategorized" +msgstr "" + +#: includes/common/class-mp-cart.php:569 includes/common/class-mp-order.php:604 +#: includes/common/helpers.php:115 +msgid "Download" +msgstr "Unduh" + +#: includes/common/class-mp-cart.php:1353 +msgid "Empty Cart" +msgstr "Keranjang Kosong" + +#: includes/common/payment-gateways/_payway.php:291 +#: includes/common/payment-gateways/paypal-express.php:718 +#: includes/common/payment-gateways/paypal-payflow.php:423 +#: includes/common/shipping-modules/mp-ups.php:158 +#: includes/public/class-mp-checkout.php:1254 +#: includes/public/class-mp-checkout.php:1383 +msgid "Password" +msgstr "Sandi" + +#: includes/common/payment-gateways/eway.php:387 +#: includes/common/payment-gateways/paypal-express.php:711 +#: includes/common/shipping-modules/mp-usps.php:185 +#: includes/public/class-mp-checkout.php:1249 +msgid "Username" +msgstr "Nama Pengguna" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:437 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:790 +msgid "Have a coupon code?" +msgstr "Punya kode kupon?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:321 +#: includes/admin/class-mp-orders-admin.php:526 +#: includes/common/class-mp-cart.php:592 +msgid "Remove" +msgstr "Hapus" + +#: includes/admin/class-mp-ajax.php:316 +msgid "Quantity:" +msgstr "Kuantitas:" + +#: includes/admin/class-mp-products-admin.php:2140 +#: includes/admin/class-mp-products-admin.php:2387 +#: includes/common/shipping-modules/class-mp-shipping-api.php:507 +msgid "Extra Shipping Cost" +msgstr "Biaya Pengiriman Tambahan" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:403 +msgid "Choose a Shipping Method:" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1691 +#: includes/admin/class-mp-products-admin.php:2131 +#: includes/admin/class-mp-products-admin.php:2378 +#: includes/common/shipping-modules/class-mp-shipping-api.php:228 +msgid "Ounces" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1684 +#: includes/admin/class-mp-products-admin.php:2123 +#: includes/admin/class-mp-products-admin.php:2369 +#: includes/admin/class-mp-setup-wizard.php:546 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:165 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +#: includes/common/shipping-modules/class-mp-shipping-api.php:227 +msgid "Pounds" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:226 +msgid "Product Weight:" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:214 +msgid "Weight (Kilograms)" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:82 +msgid "Number of Categories:" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:72 +msgid "Product Count" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:20 +#: includes/admin/class-mp-product-attributes-admin.php:129 +#: includes/admin/class-mp-product-attributes-list-table.php:22 +#: includes/admin/class-mp-products-admin.php:2216 +#: includes/admin/class-mp-shortcode-builder.php:628 +#: includes/admin/class-mp-shortcode-builder.php:1415 +#: includes/admin/widgets/ms-global-categories.php:70 +#: includes/common/shipping-modules/mp-fedex.php:395 +#: includes/common/shipping-modules/mp-ups.php:202 +#: includes/common/shipping-modules/mp-usps.php:243 +#: includes/public/class-mp-checkout.php:314 +msgid "Name" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:67 +msgid "Order Categories By:" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:24 +#: includes/admin/widgets/ms-global-categories.php:50 +msgid "Global Product Categories" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:15 +msgid "Global Product Category List" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:13 +msgid "Displays a network-wide HTML list of product categories from network MarketPress stores." +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:24 +#: includes/admin/widgets/ms-global-tag-cloud.php:45 +msgid "Global Product Tags" +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:15 +msgid "Global Product Tag Cloud" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:947 +#: includes/admin/widgets/ms-global-product-list.php:173 +msgid "Excerpt" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:169 +msgid "Content To Show:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:140 +msgid "Limit To Product Tag:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:132 +msgid "Limit To Product Category:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:72 +msgid "Global Products" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:16 +msgid "Global Product List" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:14 +msgid "Shows a customizable global list of products from network MarketPress stores." +msgstr "" + +#: includes/common/class-mp-product.php:974 +#: includes/multisite/template-functions.php:731 +msgid "Buy Now »" +msgstr "Beli Sekarang »" + +#: includes/admin/widgets/ms-global-tag-cloud.php:13 +msgid "Displays global most used product tags in cloud format from network MarketPress stores." +msgstr "Tampilkan label produk global paling banyak digunakan dalam format awan dari jaringan toko MarketPress." + +#: includes/multisite/class-mp-admin-multisite.php:438 +msgid "Theme Permissions" +msgstr "Izin Tema" + +#: includes/multisite/class-mp-admin-multisite.php:402 +#: includes/multisite/class-mp-admin-multisite.php:448 +msgid "No Access" +msgstr "Tidak ada akses" + +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:120 +msgid "Pro Site Level" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:401 +#: includes/multisite/class-mp-admin-multisite.php:447 +msgid "All Can Use" +msgstr "Bisa Pakai Semua" + +#: includes/multisite/class-mp-admin-multisite.php:390 +msgid "Gateway Permissions" +msgstr "Izin Pintu Pembayaran" + +#: includes/multisite/class-mp-admin-multisite.php:375 +msgid "Select a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:350 +msgid "Global Gateway" +msgstr "" + +#. Plugin Name of the plugin/theme +msgid "MarketPress" +msgstr "MarketPress" + +#: includes/admin/widgets/product-tag-cloud.php:7 +msgid "Your most used product tags in cloud format from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/categories.php:79 +msgid "Show hierarchy" +msgstr "" + +#: includes/admin/widgets/categories.php:76 +#: includes/admin/widgets/ms-global-categories.php:92 +msgid "Show product counts" +msgstr "" + +#: includes/admin/widgets/categories.php:73 +msgid "Show as dropdown" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:710 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:736 +#: includes/admin/widgets/categories.php:30 +msgid "Select Category" +msgstr "" + +#: includes/admin/widgets/categories.php:7 +msgid "A list or dropdown of product categories from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/product-list.php:250 +msgid "Show Buy Button" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:183 +#: includes/admin/widgets/product-list.php:244 +msgid "Show Price" +msgstr "" + +#: includes/admin/widgets/product-list.php:241 +msgid "Show Excerpt" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:155 +#: includes/admin/widgets/product-list.php:238 +msgid "Thumbnail Size:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:153 +#: includes/admin/widgets/product-list.php:237 +msgid "Show Thumbnail" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:147 +#: includes/admin/widgets/product-list.php:233 +msgid "Display Settings" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:136 +#: includes/admin/widgets/ms-global-product-list.php:144 +#: includes/admin/widgets/product-list.php:230 +msgid "Enter the Slug" +msgstr "" + +#: includes/admin/widgets/product-list.php:228 +#: includes/common/template-functions.php:894 +msgid "Tag" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:686 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:712 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:739 +#: includes/admin/class-mp-shortcode-builder.php:796 +#: includes/admin/widgets/product-list.php:227 +#: includes/common/template-functions.php:886 +#: includes/common/template-functions.php:2907 +msgid "Category" +msgstr "" + +#: includes/admin/widgets/product-list.php:226 +msgid "No Filter" +msgstr "" + +#: includes/admin/widgets/product-list.php:224 +msgid "Taxonomy Filter:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:108 +#: includes/admin/widgets/product-list.php:209 +msgid "Order Products By:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:101 +#: includes/admin/widgets/product-list.php:206 +msgid "Number of Products:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:98 +#: includes/admin/widgets/product-list.php:204 +msgid "List Settings" +msgstr "" + +#: includes/admin/widgets/product-list.php:177 +msgid "Our Products" +msgstr "" + +#: includes/admin/widgets/product-list.php:144 +#: includes/common/template-functions.php:2070 +#: includes/common/template-functions.php:2347 +#: includes/multisite/template-functions.php:303 +#: includes/multisite/template-functions.php:623 +msgid "No Products" +msgstr "Tidak Ada Produk" + +#: includes/admin/widgets/product-list.php:8 +msgid "Product List" +msgstr "" + +#: includes/admin/widgets/product-list.php:7 +msgid "Shows a customizable list of products from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/cart.php:75 includes/admin/widgets/categories.php:82 +#: includes/admin/widgets/product-list.php:253 +#: includes/admin/widgets/product-tag-cloud.php:57 +msgid "Only show on store pages" +msgstr "" + +#: includes/admin/widgets/cart.php:65 +#: includes/admin/widgets/ms-global-product-list.php:92 +#: includes/admin/widgets/product-list.php:200 +msgid "Custom Text:" +msgstr "" + +#: includes/admin/widgets/cart.php:64 includes/admin/widgets/categories.php:69 +#: includes/admin/widgets/ms-global-categories.php:59 +#: includes/admin/widgets/ms-global-product-list.php:87 +#: includes/admin/widgets/ms-global-tag-cloud.php:49 +#: includes/admin/widgets/product-list.php:199 +#: includes/admin/widgets/product-tag-cloud.php:49 +msgid "Title:" +msgstr "" + +#: includes/admin/widgets/cart.php:7 +msgid "Shows dynamic shopping cart contents along with a checkout button for your MarketPress store." +msgstr "" + +#: includes/admin/widgets/product-tag-cloud.php:8 +msgid "Product Tag Cloud" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:539 +#: includes/admin/class-mp-setup-wizard.php:575 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:163 +msgid "Measurement System" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:616 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:149 +msgid "Select Shipping Options" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:596 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:129 +msgid "Calculated Options" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:582 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:115 +msgid "No Shipping" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:110 +msgid "EU" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:109 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:93 +msgid "All" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:92 +msgid "Select:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:185 +msgid "Store Pages" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:223 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:256 +msgid "Order Shipped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:60 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:95 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:128 +#: marketpress.php:266 +msgid "New Order" +msgstr "Pesanan Baru" + +#: includes/admin/class-mp-dashboard-widgets.php:314 +msgid "Email Notifications" +msgstr "Notifikasi Email" + +#: includes/admin/class-mp-pages-admin.php:59 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:200 +msgid "Products List" +msgstr "Daftar Produk" + +#: includes/admin/class-mp-pages-admin.php:58 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:190 +msgid "Store Base" +msgstr "Asal Toko" + +#: includes/admin/class-mp-product-attributes-admin.php:108 +#: includes/admin/class-mp-shortcode-builder.php:635 +#: includes/admin/class-mp-shortcode-builder.php:708 +#: includes/admin/class-mp-shortcode-builder.php:875 +#: includes/admin/class-mp-shortcode-builder.php:1319 +#: includes/admin/class-mp-shortcode-builder.php:1422 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:526 +#: includes/admin/widgets/ms-global-categories.php:78 +#: includes/admin/widgets/ms-global-product-list.php:127 +#: includes/admin/widgets/product-list.php:221 +msgid "Ascending" +msgstr "Naik" + +#: includes/admin/class-mp-product-attributes-admin.php:109 +#: includes/admin/class-mp-shortcode-builder.php:636 +#: includes/admin/class-mp-shortcode-builder.php:709 +#: includes/admin/class-mp-shortcode-builder.php:876 +#: includes/admin/class-mp-shortcode-builder.php:1320 +#: includes/admin/class-mp-shortcode-builder.php:1423 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:525 +#: includes/admin/widgets/ms-global-categories.php:75 +#: includes/admin/widgets/ms-global-product-list.php:124 +#: includes/admin/widgets/product-list.php:220 +msgid "Descending" +msgstr "Menurun" + +#: includes/admin/class-mp-shortcode-builder.php:637 +#: includes/admin/class-mp-shortcode-builder.php:695 +#: includes/admin/class-mp-shortcode-builder.php:862 +#: includes/admin/class-mp-shortcode-builder.php:1306 +#: includes/admin/class-mp-shortcode-builder.php:1424 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:518 +#: includes/admin/widgets/ms-global-product-list.php:121 +#: includes/admin/widgets/product-list.php:218 +msgid "Random" +msgstr "Acak" + +#: includes/admin/class-mp-shortcode-builder.php:694 +#: includes/admin/class-mp-shortcode-builder.php:861 +#: includes/admin/class-mp-shortcode-builder.php:1305 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:517 +#: includes/admin/widgets/ms-global-product-list.php:119 +#: includes/admin/widgets/product-list.php:216 +msgid "Product Price" +msgstr "Harga Produk" + +#: includes/admin/class-mp-shortcode-builder.php:693 +#: includes/admin/class-mp-shortcode-builder.php:860 +#: includes/admin/class-mp-shortcode-builder.php:1304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:516 +#: includes/admin/widgets/ms-global-product-list.php:117 +#: includes/admin/widgets/product-list.php:215 +msgid "Number of Sales" +msgstr "Jumlah Penjualan" + +#: includes/admin/class-mp-shortcode-builder.php:692 +#: includes/admin/class-mp-shortcode-builder.php:859 +#: includes/admin/class-mp-shortcode-builder.php:1303 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:515 +#: includes/admin/widgets/product-list.php:214 +msgid "Product Author" +msgstr "Pengarang Produk" + +#: includes/admin/class-mp-shortcode-builder.php:691 +#: includes/admin/class-mp-shortcode-builder.php:858 +#: includes/admin/class-mp-shortcode-builder.php:1302 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:514 +#: includes/admin/widgets/product-list.php:213 +msgid "Product ID" +msgstr "ID Produk" + +#: includes/admin/class-mp-shortcode-builder.php:690 +#: includes/admin/class-mp-shortcode-builder.php:857 +#: includes/admin/class-mp-shortcode-builder.php:1301 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:513 +#: includes/admin/widgets/ms-global-product-list.php:113 +#: includes/admin/widgets/product-list.php:212 +msgid "Publish Date" +msgstr "Tanggal Terbit" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:430 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:726 +msgid "Width" +msgstr "Lebar" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:439 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:735 +msgid "Height" +msgstr "Tinggi" + +#: includes/admin/class-mp-product-attributes-admin.php:88 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:402 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:698 +msgid "Custom" +msgstr "Biasa" + +#: includes/common/class-mp-product.php:179 +#: includes/common/class-mp-product.php:992 +#: includes/common/class-mp-product.php:1000 +#: includes/multisite/template-functions.php:579 +msgid "Buy Now" +msgstr "Beli Sekarang" + +#: includes/common/class-mp-product.php:175 +#: includes/common/class-mp-product.php:990 +#: includes/common/class-mp-product.php:998 +msgid "Add To Cart" +msgstr "Tambah ke Keranjang" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:807 +msgid "Store Style" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1021 +msgid "Edit Coupon" +msgstr "Perbaiki Kupon" + +#: includes/addons/mp-coupons/class-mp-coupon.php:580 +#: includes/admin/class-mp-ajax.php:238 +#: includes/admin/class-mp-products-admin.php:1532 +msgid "Unlimited" +msgstr "Tak Terbatas" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1198 +msgid "Remaining Uses" +msgstr "Sisa Penggunaan" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1197 +msgid "Used" +msgstr "Bekas" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:752 +#: includes/admin/class-mp-products-admin.php:2343 +msgid "Start Date" +msgstr "Tanggal Mulai" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:598 +msgid "Coupon Code" +msgstr "Kode Kupon" + +#: includes/admin/class-mp-orders-admin.php:444 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:284 +msgid "Save Changes" +msgstr "Simpan Perubahan" + +#: includes/admin/class-mp-pages-admin.php:57 +#: includes/admin/class-mp-shortcode-builder.php:716 +#: includes/admin/class-mp-shortcode-builder.php:727 +#: includes/admin/class-mp-shortcode-builder.php:883 +#: includes/admin/class-mp-shortcode-builder.php:894 +#: includes/admin/class-mp-shortcode-builder.php:946 +#: includes/admin/class-mp-shortcode-builder.php:956 +#: includes/admin/class-mp-shortcode-builder.php:1006 +#: includes/admin/class-mp-shortcode-builder.php:1327 +#: includes/admin/class-mp-shortcode-builder.php:1338 +#: includes/admin/store-settings/class-mp-store-settings-general.php:357 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:270 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:108 +#: includes/admin/widgets/ms-global-product-list.php:172 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:94 +msgid "None" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:352 +msgid "Google Analytics Ecommerce Tracking" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:310 +msgid "This option turns MarketPress into more of a product listing plugin, disabling shopping carts, checkout, and order management. This is useful if you simply want to list items you can buy in a store somewhere else, optionally linking the \"Buy Now\" buttons to an external site. Some examples are a car dealership, or linking to songs/albums in itunes, or linking to products on another site with your own affiliate links." +msgstr "Pilihan ini mengembalikan MarketPress berubah menjadi plugin daftar produk lebih banyak, menonaktifkan keranjang belanja, periksa pembelian, dan pengaturan pesanan. Ini berguna jika anda ingin menampilkan daftar barang yang dapat beli muncul di halaman mana saja di toko, terlepas apakah pilihan tautan tombol \"Beli Sekarang\" milik situs luar. Beberapa contoh diantaranya dipakai pada dealer mobil, atau tautan pada lagu/album di itunes, atau tautan produk dari situ lain dengan tautan afiliasi anda sendiri." + +#: includes/admin/store-settings/class-mp-store-settings-general.php:304 +msgid "Whether or not customers must be registered and logged in to checkout. (Not recommended: Enabling this can lower conversions)" +msgstr "Apakah pelanggan harus mendaftar dan masuk untuk memeriksa pembelian atau tidak. (Tidak disarankan: mengaktifkan ini dapat menurunkan konversi)" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:258 +msgid "How many times may a customer download a file they have purchased? (It's best to set this higher than one in case they have any problems downloading)" +msgstr "Berapa kali pelanggan mengunduh file yang mereka beli? (Sangat bagus apabila diatur lebih dari 1 kali untuk mengantisipasi gagal sewaktu mengunduh)" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:257 +msgid "Maximum Downloads" +msgstr "Maksimal Unduh" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:298 +msgid "This will set the product to draft if inventory of all variations is gone." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:288 +msgid "At what low stock count do you want to be warned for products you have enabled inventory tracking for?" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:208 +#: includes/admin/store-settings/class-mp-store-settings-general.php:287 +msgid "Inventory Warning Threshold" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:282 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:542 +msgid "Miscellaneous Settings" +msgstr "Jenis Pengaturan" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:429 +#: includes/multisite/class-mp-admin-multisite.php:247 +msgid "Show Decimal in Prices" +msgstr "Munculkan Desimal pada Harga" + +#: includes/admin/class-mp-setup-wizard.php:451 +#: includes/admin/store-settings/class-mp-store-settings-general.php:403 +#: includes/multisite/class-mp-admin-multisite.php:221 +msgid "Currency Symbol Position" +msgstr "Letak Simbol Mata Uang" + +#: includes/admin/class-mp-setup-wizard.php:444 +#: includes/admin/store-settings/class-mp-store-settings-general.php:396 +msgid "Store Currency" +msgstr "Mata Uang Toko" + +#: includes/admin/class-mp-setup-wizard.php:429 +#: includes/admin/store-settings/class-mp-store-settings-general.php:381 +msgid "Currency Settings" +msgstr "Pengaturan Mata Uang" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:516 +msgid "Please see your local tax laws. Note if this is enabled and a downloadable only cart, rates will be the default for your base location." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:529 +msgid "Apply Tax to Downloadable Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:498 +msgid "Enabling this option allows you to enter and show all prices inclusive of tax, while still listing the tax total as a line item in shopping carts. Please see your local tax laws." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:497 +msgid "Enter Prices Inclusive of Tax?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:492 +msgid "Please see your local tax laws. Most areas charge tax on shipping fees." +msgstr "Silahkan lihat tata aturan pajak daerah anda. Kebnyakan daerah membebani pajak pada biaya pengiriman." + +#: includes/admin/class-mp-setup-wizard.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:491 +msgid "Apply Tax To Shipping Fees?" +msgstr "Pakai Pajak untuk Biaya Pengiriman?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:674 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:565 +#: includes/common/payment-gateways/authorizenet-aim.php:291 +#: includes/common/payment-gateways/authorizenet-aim.php:326 +#: includes/common/payment-gateways/payfast.php:347 +msgid "No" +msgstr "Tidak" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:675 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:759 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:512 +#: includes/admin/class-mp-setup-wizard.php:518 +#: includes/admin/class-mp-setup-wizard.php:524 +#: includes/admin/class-mp-setup-wizard.php:530 +#: includes/admin/class-mp-setup-wizard.php:564 +#: includes/admin/store-settings/class-mp-store-settings-general.php:232 +#: includes/admin/store-settings/class-mp-store-settings-general.php:299 +#: includes/admin/store-settings/class-mp-store-settings-general.php:305 +#: includes/admin/store-settings/class-mp-store-settings-general.php:311 +#: includes/admin/store-settings/class-mp-store-settings-general.php:317 +#: includes/admin/store-settings/class-mp-store-settings-general.php:328 +#: includes/admin/store-settings/class-mp-store-settings-general.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:341 +#: includes/admin/store-settings/class-mp-store-settings-general.php:348 +#: includes/admin/store-settings/class-mp-store-settings-general.php:367 +#: includes/admin/store-settings/class-mp-store-settings-general.php:493 +#: includes/admin/store-settings/class-mp-store-settings-general.php:499 +#: includes/admin/store-settings/class-mp-store-settings-general.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:556 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:375 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:381 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:387 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:474 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:493 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:532 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:574 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:606 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:664 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:670 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:677 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:683 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:689 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:763 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:774 +#: includes/common/payment-gateways/_bitpay.php:250 +#: includes/common/payment-gateways/_bitpay.php:257 +#: includes/common/payment-gateways/_bitpay.php:264 +#: includes/common/payment-gateways/authorizenet-aim.php:290 +#: includes/common/payment-gateways/authorizenet-aim.php:325 +#: includes/common/payment-gateways/free_orders.php:160 +#: includes/common/payment-gateways/payfast.php:346 +#: includes/common/payment-gateways/paymill.php:162 +#: includes/common/payment-gateways/paypal-payflow.php:441 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-checkbox.php:22 +msgid "Yes" +msgstr "Ya" + +#: includes/admin/class-mp-setup-wizard.php:492 +#: includes/admin/store-settings/class-mp-store-settings-general.php:472 +msgid "%s Tax Rate" +msgstr "%s Rata-rata Pajak" + +#: includes/admin/class-mp-setup-wizard.php:467 +#: includes/admin/store-settings/class-mp-store-settings-general.php:449 +msgid "Tax Settings" +msgstr "Pengaturan Pajak" + +#: includes/admin/class-mp-setup-wizard.php:370 +#: includes/admin/store-settings/class-mp-store-settings-general.php:624 +msgid "Base Zip/Postal Code" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:354 +#: includes/admin/store-settings/class-mp-store-settings-general.php:608 +msgid "Base State/Province/Region" +msgstr "Asal Negarabagian/Propinsi/Wilayah" + +#: includes/admin/class-mp-setup-wizard.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:589 +msgid "Base Country" +msgstr "Asal Negara" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:582 +msgid "Location Settings" +msgstr "Pengaturan Lokasi" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:195 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:800 +#: includes/multisite/class-mp-admin-multisite.php:172 +msgid "General Settings" +msgstr "Pengaturan Umum" + +#: includes/admin/class-mp-products-admin.php:1945 +#: includes/admin/class-mp-products-admin.php:2185 +#: includes/admin/class-mp-store-settings-admin.php:111 +#: includes/admin/class-mp-store-settings-admin.php:266 +msgid "General" +msgstr "Umum" + +#: includes/admin/class-mp-store-settings-admin.php:242 +msgid "Importers" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +#: includes/admin/class-mp-store-settings-admin.php:234 +msgid "Payments" +msgstr "Pembayaran" + +#: includes/admin/class-mp-dashboard-widgets.php:313 +#: includes/admin/class-mp-store-settings-admin.php:112 +#: includes/admin/class-mp-store-settings-admin.php:222 +msgid "Presentation" +msgstr "Penyajian" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:916 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1015 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1018 +#: includes/admin/class-mp-dashboard-widgets.php:305 marketpress.php:702 +msgid "Coupons" +msgstr "Kupon" + +#: includes/admin/class-mp-admin.php:251 +msgid "Download »" +msgstr "" + +#: includes/admin/class-mp-admin.php:245 +#: includes/admin/class-mp-exporter-orders.php:170 +msgid "All Statuses" +msgstr "" + +#: includes/admin/class-mp-admin.php:209 +#: includes/admin/class-mp-exporter-orders.php:150 +#: includes/admin/class-mp-exporter-orders.php:178 +msgid "Export Orders" +msgstr "" + +#: includes/admin/class-mp-admin.php:228 +msgid "Show all dates" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:947 +msgid "Change Status" +msgstr "Perubahan Status" + +#: includes/admin/class-mp-orders-admin.php:287 +msgid "Order Notes" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:478 +msgid "Other" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:205 +msgid "Subtotal" +msgstr "Subtotal" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:84 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:87 +#: includes/admin/class-mp-products-admin.php:1737 +#: includes/common/class-mp-cart.php:1409 +#: includes/common/class-mp-product.php:559 +msgid "Quantity" +msgstr "Kuantitas" + +#: includes/common/helpers.php:93 +msgid "Item" +msgstr "Barang" + +#: includes/common/class-mp-order.php:1050 +msgid "Current Status" +msgstr "Status Sekarang" + +#: includes/admin/class-mp-orders-admin.php:297 +msgid "Order Actions" +msgstr "Tindakan Pesanan" + +#: includes/common/class-mp-product.php:1084 +msgid "More Info »" +msgstr "Info Selanjutnya »" + +#: includes/common/class-mp-product.php:2313 +msgid "Low Product Inventory Notification" +msgstr "Notifikasi Inventaris Produk Rendah" + +#: includes/common/class-mp-order.php:338 includes/common/data.php:154 +msgid "New Order Notification: ORDERID" +msgstr "Notifikasi Pesanan Baru: IDPESANAN" + +#: includes/common/helpers.php:259 +msgid "Your payment for this order is complete." +msgstr "Pembayaran anda untuk pesanan ini telah selesai." + +#: includes/common/helpers.php:261 +msgid "Your payment for this order is not yet complete. Here is the latest status:" +msgstr "Pembayaran anda untuk pesanan ini belum selesai. Berikut status terakhir:" + +#: includes/common/helpers.php:256 +msgid "Payment Total:" +msgstr "Total Pembayaran:" + +#: includes/common/helpers.php:253 +msgid "Transaction ID:" +msgstr "ID Transaksi:" + +#: includes/common/helpers.php:249 +msgid "Payment Type:" +msgstr "Jenis Pembayaran:" + +#: includes/common/helpers.php:246 +msgid "Payment Method:" +msgstr "Cara Pembayaran:" + +#: includes/common/helpers.php:242 +msgid "Order Notes:" +msgstr "" + +#: includes/common/helpers.php:237 +msgid "Special Instructions:" +msgstr "" + +#: includes/common/helpers.php:232 +msgid "Tracking Number:" +msgstr "" + +#: includes/common/helpers.php:223 includes/common/helpers.php:226 +#: includes/common/helpers.php:228 +#: includes/common/shipping-modules/class-mp-shipping-api.php:406 +#: includes/common/shipping-modules/class-mp-shipping-api.php:428 +msgid "Shipping Method:" +msgstr "" + +#: includes/common/helpers.php:168 +msgid "No shipping required for this order." +msgstr "" + +#: includes/common/helpers.php:155 +msgid "Order Total:" +msgstr "Total Pesanan:" + +#: includes/common/class-mp-order.php:1025 +msgid "Taxes:" +msgstr "Pajak:" + +#: includes/common/class-mp-order.php:1032 includes/common/helpers.php:144 +msgid "Shipping:" +msgstr "Pengiriman:" + +#: includes/public/class-mp-checkout.php:367 +msgid "Street address, P.O. box, company name, c/o" +msgstr "Alamat jalan, P.O. box, nama perusahaan, c/o" + +#: includes/admin/class-mp-orders-admin.php:314 +msgid "Shipping Info" +msgstr "Info Pengiriman" + +#: includes/public/class-mp-public.php:740 +msgid "Whoops, there was a problem loading up this file for your download. Please contact us for help." +msgstr "" + +#: includes/public/class-mp-public.php:683 +msgid "Sorry, our records show you've downloaded this file %d out of %d times allowed. Please contact us if you still need help." +msgstr "" + +#: includes/public/class-mp-public.php:634 +msgid "Sorry, your order has been marked as unpaid." +msgstr "" + +#: includes/public/class-mp-public.php:629 +msgid "Sorry, the link is invalid for this download." +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:15 +#: includes/admin/class-mp-products-admin.php:1172 +msgid "Cheatin’ uh?" +msgstr "" + +#: includes/public/class-mp-public.php:407 +#: includes/public/class-mp-short-codes.php:128 +msgid "Please enter a valid email address." +msgstr "" + +#: includes/admin/class-mp-ajax.php:191 +#: includes/admin/class-mp-products-admin.php:1821 +#: includes/admin/class-mp-products-admin.php:2010 +#: includes/admin/class-mp-products-admin.php:2267 +msgid "File URL" +msgstr "URL File" + +#: includes/admin/class-mp-products-admin.php:1842 +msgid "External Link" +msgstr "Tautan Eksternal" + +#: includes/admin/class-mp-products-admin.php:2177 +msgid "Add Variation" +msgstr "Tambah Variasi" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:126 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:289 +msgid "Inventory" +msgstr "Inventarisasi" + +#: includes/admin/class-mp-products-admin.php:438 +#: includes/admin/class-mp-products-admin.php:578 +#: includes/admin/class-mp-products-admin.php:1552 +#: includes/admin/class-mp-products-admin.php:2053 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:134 +msgid "Sale Price" +msgstr "Harga Jual" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "Variation Name" +msgstr "Variasi Nama" + +#: includes/admin/class-mp-products-admin.php:1931 +msgid "Product Details" +msgstr "Produk Detil" + +#: includes/admin/class-mp-product-attributes-list-table.php:33 +msgid "Delete" +msgstr "Hapus" + +#: includes/admin/class-mp-orders-admin.php:1057 +msgid "Trashed" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:231 +#: includes/admin/class-mp-orders-admin.php:1015 +#: includes/common/class-mp-order.php:1052 includes/common/helpers.php:97 +msgid "Total" +msgstr "Total" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1196 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:210 +#: includes/admin/class-mp-orders-admin.php:1014 +msgid "Discount" +msgstr "Diskon" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:221 +#: includes/admin/class-mp-orders-admin.php:1013 +#: includes/common/payment-gateways/_ideal.php:148 +#: includes/common/payment-gateways/_payway.php:134 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:108 +msgid "Tax" +msgstr "Pajak" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:216 +#: includes/admin/class-mp-orders-admin.php:1012 +#: includes/admin/class-mp-products-admin.php:1958 +#: includes/admin/class-mp-products-admin.php:2198 +#: includes/admin/class-mp-store-settings-admin.php:114 +#: includes/admin/class-mp-store-settings-admin.php:230 +#: includes/common/class-mp-cart.php:717 includes/common/helpers.php:168 +#: includes/common/payment-gateways/_ideal.php:137 +#: includes/common/payment-gateways/_payway.php:116 +#: includes/public/class-mp-checkout.php:1304 +msgid "Shipping" +msgstr "Pengiriman" + +#: includes/admin/class-mp-orders-admin.php:1011 +msgid "Items" +msgstr "Barang" + +#: includes/admin/class-mp-orders-admin.php:1010 +msgid "From" +msgstr "Dari" + +#: includes/admin/class-mp-exporter-orders.php:154 +#: includes/admin/class-mp-orders-admin.php:1009 +#: includes/common/class-mp-gdpr.php:370 +msgid "Order Date" +msgstr "Tanggal Pesan" + +#: includes/admin/class-mp-orders-admin.php:1008 +#: includes/common/class-mp-gdpr.php:366 +#: includes/common/template-functions.php:2134 +msgid "Order ID" +msgstr "ID Pesanan" + +#: includes/addons/class-mp-addons-list-table.php:22 +#: includes/admin/class-mp-orders-admin.php:1007 +msgid "Status" +msgstr "Status" + +#: includes/admin/class-mp-orders-admin.php:1155 +msgid "N/A" +msgstr "N/A" + +#: includes/admin/class-mp-dashboard-widgets.php:243 +#: includes/admin/class-mp-products-admin.php:464 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:142 +msgid "Sales" +msgstr "Penjualan" + +#: includes/admin/class-mp-products-admin.php:463 +msgid "Stock" +msgstr "Stok" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:85 +#: includes/admin/class-mp-ajax.php:176 includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:434 +#: includes/admin/class-mp-products-admin.php:462 +#: includes/admin/class-mp-products-admin.php:576 +#: includes/admin/class-mp-products-admin.php:1519 +#: includes/admin/class-mp-products-admin.php:1569 +#: includes/admin/class-mp-products-admin.php:1950 +#: includes/admin/class-mp-products-admin.php:2059 +#: includes/admin/class-mp-products-admin.php:2190 +#: includes/admin/class-mp-products-admin.php:2330 +#: includes/common/class-mp-cart.php:1415 includes/common/helpers.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:130 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:276 +msgid "Price" +msgstr "Harga" + +#: includes/admin/class-mp-ajax.php:173 +#: includes/admin/class-mp-products-admin.php:461 +#: includes/admin/class-mp-products-admin.php:1972 +#: includes/admin/class-mp-products-admin.php:2224 +msgid "SKU" +msgstr "SKU" + +#: includes/admin/class-mp-products-admin.php:459 +#: includes/admin/class-mp-products-admin.php:1793 +#: includes/admin/class-mp-products-admin.php:1805 +#: includes/admin/class-mp-products-admin.php:2163 +msgid "Variations" +msgstr "Variasi" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:83 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:86 +#: includes/admin/class-mp-dashboard-widgets.php:134 +#: includes/admin/class-mp-products-admin.php:458 +#: includes/admin/class-mp-products-admin.php:837 +#: includes/admin/class-mp-shortcode-builder.php:689 +#: includes/admin/class-mp-shortcode-builder.php:856 +#: includes/admin/class-mp-shortcode-builder.php:1300 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:512 +#: includes/admin/widgets/ms-global-product-list.php:115 +#: includes/admin/widgets/product-list.php:211 +msgid "Product Name" +msgstr "Nama Produk" + +#: includes/common/template-functions.php:2575 +msgid "Categorized in " +msgstr "Kategori di" + +#: includes/admin/class-mp-orders-admin.php:305 +#: includes/common/payment-gateways/free_orders.php:176 +msgid "Payment Information" +msgstr "Informasi Pembayaran" + +#: includes/admin/class-mp-exporter-orders.php:167 +#: includes/admin/class-mp-orders-admin.php:432 +#: includes/admin/class-mp-pages-admin.php:62 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:227 +#: includes/common/class-mp-gdpr.php:374 +#: includes/common/template-functions.php:175 +#: includes/common/template-functions.php:926 +msgid "Order Status" +msgstr "Status Pesanan" + +#. translators: %s: orders closed +#: marketpress.php:327 +msgid "Closed (%s)" +msgid_plural "Closed (%s)" +msgstr[0] "Ditutup (%s)" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:249 +#: includes/admin/class-mp-orders-admin.php:375 +#: includes/admin/class-mp-orders-admin.php:951 +#: includes/admin/class-mp-orders-admin.php:1053 +#: includes/admin/class-mp-orders-admin.php:1065 +#: includes/common/class-mp-gdpr.php:330 +#: includes/common/class-mp-order.php:1019 marketpress.php:325 +msgid "Closed" +msgstr "Ditutup" + +#. translators: %s: shipped orders +#: marketpress.php:320 +msgid "Shipped (%s)" +msgid_plural "Shipped (%s)" +msgstr[0] "Terkirim (%s)" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:248 +#: includes/admin/class-mp-orders-admin.php:376 +#: includes/admin/class-mp-orders-admin.php:950 +#: includes/admin/class-mp-orders-admin.php:1049 +#: includes/admin/class-mp-orders-admin.php:1064 +#: includes/common/class-mp-gdpr.php:329 +#: includes/common/class-mp-order.php:1002 marketpress.php:318 +msgid "Shipped" +msgstr "Terkirim" + +#. translators: %s: paid orders +#: marketpress.php:313 +msgid "Paid (%s)" +msgid_plural "Paid (%s)" +msgstr[0] "Telah Dibayar (%s)" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:247 +#: includes/admin/class-mp-orders-admin.php:377 +#: includes/admin/class-mp-orders-admin.php:949 +#: includes/admin/class-mp-orders-admin.php:1045 +#: includes/admin/class-mp-orders-admin.php:1063 +#: includes/common/class-mp-gdpr.php:328 +#: includes/common/payment-gateways/2checkout.php:294 +#: includes/common/payment-gateways/_cubepoints.php:130 +#: includes/common/payment-gateways/authorizenet-aim.php:193 +#: includes/common/payment-gateways/free_orders.php:91 +#: includes/common/payment-gateways/mijireh.php:248 +#: includes/common/payment-gateways/paymill.php:273 +#: includes/common/payment-gateways/paypal-express.php:933 +#: includes/common/payment-gateways/paypal-express.php:967 +#: includes/common/payment-gateways/pin.php:258 +#: includes/common/payment-gateways/simplify.php:181 +#: includes/common/payment-gateways/stripe.php:368 +#: includes/common/payment-gateways/wepay.php:269 marketpress.php:311 +msgid "Paid" +msgstr "Telah Dibayar" + +#. translators: %s: orders received +#: marketpress.php:306 +msgid "Received (%s)" +msgid_plural "Received (%s)" +msgstr[0] "Diterima (%s)" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:246 +#: includes/admin/class-mp-orders-admin.php:378 +#: includes/admin/class-mp-orders-admin.php:1041 +#: includes/admin/class-mp-orders-admin.php:1062 +#: includes/common/class-mp-gdpr.php:327 includes/common/class-mp-order.php:995 +#: includes/common/payment-gateways/payfast.php:244 marketpress.php:304 +msgid "Received" +msgstr "Diterima" + +#: marketpress.php:268 +msgid "Search Orders" +msgstr "Cari Pesanan" + +#: marketpress.php:267 +msgid "View Order" +msgstr "Lihat Pesanan" + +#: marketpress.php:262 +msgid "Order" +msgstr "Pesanan" + +#: includes/admin/class-mp-dashboard-widgets.php:301 +#: includes/admin/class-mp-orders-admin.php:989 marketpress.php:261 +msgid "Orders" +msgstr "Pesanan" + +#: marketpress.php:228 +msgid "No Products found in Trash" +msgstr "Produk di tong sampah tidak ditemukan" + +#: marketpress.php:227 +msgid "No Products Found" +msgstr "Produk tidak ditemukan" + +#: marketpress.php:226 +msgid "Search Products" +msgstr "Cari Produk" + +#: marketpress.php:225 marketpress.php:229 +msgid "View Product" +msgstr "Lihat Produk" + +#: marketpress.php:224 +msgid "New Product" +msgstr "Produk Baru" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1022 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:258 +#: marketpress.php:223 +msgid "Edit" +msgstr "Perbaiki" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1019 +msgid "Create New" +msgstr "Buat Baru" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:687 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:698 +#: marketpress.php:217 +msgid "Product" +msgstr "Produk" + +#: includes/admin/class-mp-dashboard-widgets.php:307 +#: includes/common/template-functions.php:173 +#: includes/common/template-functions.php:179 +#: includes/common/template-functions.php:902 +#: includes/multisite/template-functions.php:82 marketpress.php:216 +#: marketpress.php:219 +msgid "Products" +msgstr "Produk" + +#: includes/admin/class-mp-store-settings-admin.php:118 +#: includes/admin/widgets/product-tag-cloud.php:46 +#: includes/multisite/class-mp-admin-multisite.php:548 +msgid "Product Tags" +msgstr "Label-label Produk" + +#: includes/common/template-functions.php:2906 +#: includes/multisite/template-functions.php:449 +msgid "Product Category" +msgstr "Kategori Produk" + +#: includes/admin/class-mp-store-settings-admin.php:117 +#: includes/admin/widgets/categories.php:8 +#: includes/admin/widgets/categories.php:18 +#: includes/multisite/class-mp-admin-multisite.php:539 +msgid "Product Categories" +msgstr "Kategori-kategori Produk" + +#: includes/common/payment-gateways/stripe.php:332 +#: includes/common/template-functions.php:872 marketpress.php:218 +msgid "Store" +msgstr "Toko" + +#: includes/admin/class-mp-pages-admin.php:60 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:209 +#: includes/admin/widgets/cart.php:8 includes/admin/widgets/cart.php:56 +#: includes/common/template-functions.php:174 +#: includes/common/template-functions.php:811 +msgid "Shopping Cart" +msgstr "Keranjang Belanja" + +#: includes/admin/class-mp-store-settings-admin.php:110 +#: includes/admin/class-mp-store-settings-admin.php:218 +msgid "Store Settings" +msgstr "Pengaturan Toko" + +#: includes/addons/class-mp-addons-list-table.php:128 marketpress.php:607 +msgid "Settings" +msgstr "" + +#: includes/common/data.php:178 includes/common/data.php:190 +msgid "Your Order Has Been Shipped! (ORDERID)" +msgstr "Pesanan Anda Telah Dikirim! (IDPESANAN)" + +#: includes/common/data.php:159 includes/common/data.php:166 +#: includes/common/data.php:172 +msgid "Your Order Confirmation (ORDERID)" +msgstr "Konfirmasi Pembayaran Anda (IDPESANAN)" + +#: includes/common/data.php:148 +msgid "

    Thank you for your order! We appreciate your business, and please come back often to check out our new products.

    " +msgstr "

    Terima kasih atas pesanan anda! Kami sangat bangsa berbisnis dengan anda, dan silahkan kembali untuk mengecek produk-produk terbaru kami.

    " + +#: includes/common/data.php:147 +msgid "

    You are almost done! Please do a final review of your order to make sure everything is correct then click the \"Confirm Payment\" button.

    " +msgstr "

    Hampir selesai! Silahkan cek akhir pesanan anda untuk memastkan semuanya benar lalu klik tombol \"Konfirmasi Pembayaran\".

    " + +#: includes/common/data.php:145 +msgid "

    Please enter your shipping information in the form below to proceed with your order.

    " +msgstr "

    Silahkan masukan informasi alamat pengiriman anda pada formulir dibawah untuk diproses dengan pesanan anda.

    " + +#: includes/common/data.php:143 +msgid "

    If you have any questions about your order please do not hesitate to contact us.

    " +msgstr "

    Jika anda punya pertanyaan tentang pesanan anda silahkan jangan ragu menghubungi kami.

    " + +#: includes/common/data.php:106 +msgid "tag" +msgstr "label" + +#: includes/common/data.php:105 +msgid "category" +msgstr "kategori" + +#: includes/common/data.php:104 +msgid "order-status" +msgstr "status-pesanan" + +#: includes/common/data.php:103 +msgid "shopping-cart" +msgstr "keranjang belanja" + +#: includes/common/data.php:102 +msgid "products" +msgstr "produk" + +#. Translators: change default slugs here +#: includes/common/data.php:101 +msgid "store" +msgstr "toko" \ No newline at end of file diff --git a/languages/mp-it.mo b/languages/mp-it.mo new file mode 100644 index 0000000000000000000000000000000000000000..8f9d9c36faff2229885ac3053092b6f6290c802d GIT binary patch literal 42766 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 'DOMPDF_ENABLE_HTML5PARSER', true ); to the wp-config.php file." +msgstr "" + +#: includes/public/class-mp-checkout.php:723 +msgid "Invalid Email" +msgstr "" + +#: includes/public/class-mp-checkout.php:721 +#: includes/public/class-mp-checkout.php:729 +msgid "This field is required" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:804 +msgid "This option changes the built-in css styles for store pages. For a custom css style, save your css file with the /* MarketPress Style: Your CSS Theme Name Here */ header line in the \"%s\" folder and it will appear in this list so you may select it. You should select \"None\" if you don't wish to use custom CSS styles or if you are using default theme templates or custom theme templates and css to make your own completely unique store design. For more information on custom theme templates click here »." +msgstr "" + +#: includes/public/class-mp-public.php:421 +#: includes/public/class-mp-short-codes.php:142 +msgid "Please enter a value greater than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:420 +#: includes/public/class-mp-short-codes.php:141 +msgid "Please enter a value less than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:419 +#: includes/public/class-mp-short-codes.php:140 +msgid "Please enter a value between {0} and {1}." +msgstr "" + +#: includes/public/class-mp-public.php:418 +#: includes/public/class-mp-short-codes.php:139 +msgid "Please enter a value between {0} and {1} characters long." +msgstr "" + +#: includes/public/class-mp-public.php:417 +#: includes/public/class-mp-short-codes.php:138 +msgid "Please enter at least {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:416 +#: includes/public/class-mp-short-codes.php:137 +msgid "Please enter no more than {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:415 +#: includes/public/class-mp-short-codes.php:136 +msgid "Please enter a value with a valid extension." +msgstr "" + +#: includes/public/class-mp-public.php:414 +#: includes/public/class-mp-short-codes.php:135 +msgid "Please enter the same value again." +msgstr "" + +#: includes/public/class-mp-public.php:413 +#: includes/public/class-mp-short-codes.php:134 +msgid "Please enter a valid credit card number." +msgstr "" + +#: includes/public/class-mp-public.php:412 +#: includes/public/class-mp-short-codes.php:133 +msgid "Please enter only digits." +msgstr "" + +#: includes/public/class-mp-public.php:411 +#: includes/public/class-mp-short-codes.php:132 +msgid "Please enter a valid number." +msgstr "" + +#: includes/public/class-mp-public.php:410 +#: includes/public/class-mp-short-codes.php:131 +msgid "Please enter a valid date (ISO)." +msgstr "" + +#: includes/public/class-mp-public.php:409 +#: includes/public/class-mp-short-codes.php:130 +msgid "Please enter a valid date." +msgstr "" + +#: includes/public/class-mp-public.php:408 +#: includes/public/class-mp-short-codes.php:129 +msgid "Please enter a valid URL." +msgstr "" + +#: includes/public/class-mp-public.php:406 +#: includes/public/class-mp-short-codes.php:127 +msgid "Please fix this field." +msgstr "" + +#: includes/public/class-mp-checkout.php:1287 +#: includes/public/class-mp-public.php:405 +#: includes/public/class-mp-short-codes.php:126 +msgid "This field is required." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:810 +msgid "None - Without Special CSS-styles" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:809 +msgid "Default - Using Default CSS-styles" +msgstr "" + +#: marketpress.php:739 +msgid "Enable multiple downloads per product" +msgstr "" + +#: marketpress.php:738 +msgid "Multiple Downloads" +msgstr "" + +#: includes/public/class-mp-checkout.php:715 +msgid "Invalid Zip Code" +msgstr "" + +#: includes/common/template-functions.php:2126 +msgid "Guest Email" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:195 +msgid "There was a problem finalizing your purchase. Please re-enter your credit card information and try again" +msgstr "" + +#: includes/common/class-mp-cart.php:565 includes/common/class-mp-order.php:600 +#: includes/common/helpers.php:111 +msgid "Download %1$s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:331 +msgid "Export products to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:328 +msgid "The import process uses the WordPress importer plugin." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:326 +msgid "Import / Export Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:325 +msgid "Export settings to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:324 +msgid "Import configuration" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:320 +msgid "Use the text below to export to a new installation. Or paste in the new configuration to import." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:318 +msgid "Import / Export Settings" +msgstr "" + +#. translators: URL to wp-admin/import.php +#: includes/admin/store-settings/class-mp-store-settings-import.php:266 +msgid "This importer is not installed. Please install importers from the main site." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:261 +msgid "Install Now" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:260 +msgid "Install %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:240 +msgid "Run Importer" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:239 +msgid "Run %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:258 +msgid "Import/Export" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1199 +msgid "Requires Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:737 +msgid "Optionally limit the user to some categories" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:671 +msgid "Should this coupon only be available to logged in users?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:670 +msgid "Require Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:655 +msgid "Mimimum number of products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:653 +msgid "Enter the minimum number of products in the cart that this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:648 +msgid "Can this coupon be limited to a number of products in the cart?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:334 +msgid "Add all values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:265 +msgid "Set as default variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:154 +msgid "Set Default" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:150 +msgid "More Info" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:40 +msgid "MarketPress - Quick Setup" +msgstr "" + +#: includes/public/class-mp-checkout.php:1399 +msgid "Proceed to checkout and create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1241 +#: includes/public/class-mp-checkout.php:1245 +msgid "Register account" +msgstr "" + +#: includes/public/class-mp-checkout.php:1233 +msgid "Register as customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:765 +msgid "

    Oops!

    Looks like you haven't added anything your cart. Let's go shopping!

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:763 +msgid "

    Oops!

    The cart is disabled.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing Information" +msgstr "Informazioni di Fatturazione" + +#: includes/multisite/class-mp-admin-multisite.php:214 +msgid "Global Currency" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:198 +msgid "Global Store Currency" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:507 +msgid "There are no shipping services available for this type of package in your location." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:168 +msgid "Using this USPS Shipping calculator requires requesting an Ecommerce API Username and Password. Get your free set of credentials here ». The password is no longer used for the API, just the username which you should enter below. The USPS test site has not yet been updated and currently doesn't work - you should just request activating your credentials with USPS and go live." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:339 +msgid "ZIP Code" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:334 +msgid "Last name" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:333 +msgid "First name" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:150 +msgid "These are the manual payment instructions to display on the order confirmation screen. TOTAL will be replaced with the order total and ORDERID will be replaced with Order ID." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:240 +msgid "You must login to Authorize.net merchant dashboard to obtain the API login ID and API transaction key. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:327 +msgid "
    1. Set the \"Return Method\" within Site Management to Header Redirect and set the \"Return URL\" to %s
    2. Set your notifications url to %s
    " +msgstr "" + +#: includes/common/data.php:191 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Also, digital downloads included in your order are now ready to be downloaded. Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:185 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order is now available to download! Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:184 +msgid "Your Order Is Ready To Be Downloaded! (ORDERID)" +msgstr "" + +#: includes/common/data.php:179 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:173 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received, your digital goods are ready to be downloaded and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:167 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received and your digital goods are ready to be downloaded. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:160 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +" Your order has been received, and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information: \n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/class-mp-product.php:638 +msgid "You can not add more items to cart." +msgstr "Non puoi aggiungere altri articoli al carrello." + +#: includes/common/class-mp-product.php:635 +msgid "You can only add {0} to cart." +msgstr "" + +#: includes/common/class-mp-product.php:625 +msgid "This product has an order limit of %d." +msgstr "" + +#: includes/common/class-mp-order.php:1454 +msgid "Shipped: tracking code: %s" +msgstr "" + +#: includes/common/class-mp-order.php:1000 +#: includes/common/class-mp-order.php:1012 +msgid "Finished" +msgstr "" + +#: includes/common/class-mp-order.php:858 +msgid "Contact Details" +msgstr "" + +#: includes/common/class-mp-order.php:339 includes/common/data.php:155 +msgid "" +"A new order (ORDERID) was created in your store:\n" +"\n" +" ORDERINFOSKU\n" +"\n" +" SHIPPINGINFO\n" +"\n" +" PAYMENTINFO\n" +"\n" +msgstr "\n" + +#: includes/common/class-mp-cart.php:1858 +msgid "Add again" +msgstr "Aggiungi di nuovo" + +#: includes/common/class-mp-cart.php:1852 +msgid "was removed from Shopping Cart" +msgstr " - questo articolo è stato rimosso dal tuo carrello." + +#: includes/common/class-mp-cart.php:1242 +#: includes/public/class-mp-short-codes.php:160 +msgid "Cart update notice: this item has a limit per order or you have reached the stock limit." +msgstr "" + +#: includes/admin/widgets/product-list.php:235 +msgid "Show Only Featured Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:533 +msgid "If enabled, users won't be able to filter products per category and/or to order by release date/name/price." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:531 +msgid "Hide Products Filter?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:353 +msgid "Notification to registration email instead of billing email?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:322 +msgid "Order Shipped - Mixed orders (with both digital and physical products)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:289 +msgid "Order Shipped - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:224 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:194 +msgid "New Order - Mixed" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:161 +msgid "New Order - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:115 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:243 +msgid "Mixed orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:110 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:238 +msgid "Digital downloads orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:105 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:233 +msgid "Physical orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:96 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed.
    For orders placed with manual payment, emails set here will be overriden by the one configured in manual payments settings, under payments settings page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:89 +msgid "Customer Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:47 +msgid "Admin Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:566 +msgid "Only contact details" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:565 +msgid "Full billing info" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:561 +msgid "Details Collection" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:548 +msgid "Digital Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:515 +msgid "Apply Tax to Digital Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:236 +msgid "product (default)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:231 +msgid "If you are experiencing conflicts with other e-commerce plugins change this setting. This will change the internal post type of all your products. Please note that changing this option may break 3rd party themes or plugins." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1203 +msgid "Hide details" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1202 +msgid "Show all changes" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1184 +msgid "Version %s" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1161 +msgid "Current" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1131 +msgid "%s changelog" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:952 +msgid "We did not find any data for this plugin or theme..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:285 +msgid "Activate WPMU DEV Dashboard" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:279 +msgid "Just one more step - activate the WPMU DEV Dashboard plugin and you're all done!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:277 +msgid "Important updates are available for your WPMU DEV plugins/themes. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:273 +msgid "Just one more step to enable updates and support for %s!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:271 +msgid "Important updates are available for %s. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:264 +msgid "activate" +msgstr "" + +#: includes/admin/class-mp-admin.php:398 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:248 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:289 +msgid "Dismiss" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:247 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:288 +msgid "Saving..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:244 +msgid "Install Plugin" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:238 +msgid "Almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:236 +msgid "Important updates are available for your WPMU DEV plugins/themes. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:232 +msgid "%s is almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:230 +msgid "Important updates are available for %s. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:223 +msgid "install" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1428 +msgid "Sets the number of Tags to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1289 +msgid "How many products to display in the product list if \"paginate\" is set to false." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:739 +#: includes/admin/class-mp-shortcode-builder.php:906 +#: includes/admin/class-mp-shortcode-builder.php:1350 +msgid "Grid" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:735 +#: includes/admin/class-mp-shortcode-builder.php:902 +#: includes/admin/class-mp-shortcode-builder.php:1346 +msgid "Products will be displayed as list or grid." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:206 +msgid "Display a cloud or list of your global product tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:205 +msgid "Display a list of your global categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:204 +msgid "Display a list or grid of your global products." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:181 +msgid "Display a list of featured products." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1451 +msgid "Is Featured?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1444 +msgid "Featured Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:581 +#: includes/admin/class-mp-products-admin.php:1580 +msgid "% discount" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:579 +msgid "OR" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:460 +#: includes/admin/class-mp-products-admin.php:586 +#: includes/admin/widgets/product-list.php:217 +msgid "Featured" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:536 +#: includes/admin/class-mp-orders-admin.php:538 +msgid "Tracking Link" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:508 +msgid "Shipping Tax" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:356 +msgid "Shipping Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:352 +msgid "Taxes Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:349 +msgid "Products Total" +msgstr "Totale Prodotti" + +#: includes/admin/class-mp-ajax.php:366 +msgid "Oops! You entered an invalid username/email and or password." +msgstr "" + +#: includes/admin/class-mp-ajax.php:254 +msgid "Percentage Discount" +msgstr "" + +#: includes/admin/class-mp-ajax.php:234 +msgid "Limit the Amount of Items per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:214 +msgid "Unused Attributes" +msgstr "" + +#: includes/admin/class-mp-admin.php:82 +msgid "Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-admin.php:79 +msgid "MarketPress setup is not complete! Once you've completed this quick setup wizard you'll have a fully working online store - exciting! " +msgstr "" + +#: marketpress.php:263 +msgctxt "mp_order" +msgid "Add New" +msgstr "Aggiungi nuovo" + +#: marketpress.php:184 +msgctxt "product_tag" +msgid "Product Tag" +msgstr "" + +#: marketpress.php:183 +msgctxt "product_tag" +msgid "Product Tags" +msgstr "" + +#: marketpress.php:150 +msgctxt "product_category" +msgid "Product Category" +msgstr "Categoria Prodotto" + +#: marketpress.php:149 +msgctxt "product_category" +msgid "Product Categories" +msgstr "" + +#. Author URI of the plugin/theme +msgid "http://premium.wpmudev.org" +msgstr "" + +#: marketpress.php:729 +msgid "Invoice PDF" +msgstr "Ricevuta in PDF" + +#: marketpress.php:712 +msgid "Grant access to themes and gateways depending on the user's Pro Site level" +msgstr "" + +#: marketpress.php:711 +msgid "Pro Sites" +msgstr "" + +#: marketpress.php:703 +msgid "Offer and accept coupon codes" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:687 +msgid "Install %s Pages" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:682 +msgid "Welcome to %s – Install pages required by the plugin automatically." +msgstr "" + +#: marketpress.php:668 +msgid "Your pages were created successfully." +msgstr "" + +#: marketpress.php:436 +msgid "Add a Product" +msgstr "Aggiungi il tuo prodotto" + +#: marketpress.php:271 +msgid "Parent Order" +msgstr "" + +#: marketpress.php:270 +msgid "No orders found in trash" +msgstr "Nessun Ordine trovato nel Cestino" + +#: marketpress.php:269 +msgid "No orders found" +msgstr "Nessun Ordine trovato" + +#: marketpress.php:265 +msgid "Edit Order" +msgstr "Modifica l’Ordine" + +#: marketpress.php:264 +msgid "Add New Order" +msgstr "Aggiungi un Nuovo Ordine" + +#: marketpress.php:220 marketpress.php:221 +msgid "Add New Product" +msgstr "Aggiungi nuovo ordine" + +#: marketpress.php:197 +msgid "No product tags found" +msgstr "" + +#: marketpress.php:196 +msgid "Choose from the most used product tags" +msgstr "" + +#: marketpress.php:195 +msgid "Add or remove product tags" +msgstr "" + +#: marketpress.php:194 +msgid "Separate product tags with commas" +msgstr "" + +#: marketpress.php:193 +msgid "Search Product Tags" +msgstr "" + +#: marketpress.php:192 +msgid "Parent Product Tag:" +msgstr "" + +#: marketpress.php:191 +msgid "Parent Product Tag" +msgstr "" + +#: marketpress.php:190 +msgid "New Product Tag Name" +msgstr "" + +#: marketpress.php:189 +msgid "Add New Product Tag" +msgstr "" + +#: marketpress.php:188 +msgid "Update Product Tag" +msgstr "" + +#: marketpress.php:187 +msgid "View Product Tag" +msgstr "" + +#: marketpress.php:186 +msgid "Edit Product Tag" +msgstr "" + +#: marketpress.php:185 +msgid "All Product Tags" +msgstr "" + +#: marketpress.php:163 +msgid "No product categories found" +msgstr "" + +#: marketpress.php:162 +msgid "Choose from the most used product categories" +msgstr "" + +#: marketpress.php:161 +msgid "Add or remove product categories" +msgstr "" + +#: marketpress.php:160 +msgid "Separate product categories with commas" +msgstr "" + +#: marketpress.php:159 +msgid "Search Product Categories" +msgstr "" + +#: marketpress.php:158 +msgid "Parent Product Category:" +msgstr "" + +#: marketpress.php:157 +msgid "Parent Product Category" +msgstr "" + +#: marketpress.php:156 +msgid "New Product Category Name" +msgstr "Nome della Nuova Categoria Prodotti" + +#: marketpress.php:155 +msgid "Add New Product Category" +msgstr "Aggiungi Nuova Categoria Prodotti" + +#: marketpress.php:154 +msgid "Update Product Category" +msgstr "Aggiorna Categoria Prodotti" + +#: marketpress.php:153 +msgid "View Product Category" +msgstr "Visualizza Categoria Prodotti" + +#: marketpress.php:152 +msgid "Edit Product Category" +msgstr "Modifica Categoria Prodotti" + +#: marketpress.php:151 +msgid "All Product Categories" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Please fix the %s1 and then try submitting the form again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Oops! The form contains %s1 which %s2 been highlighted below." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:660 +msgid "have" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:659 +msgid "has" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:651 +msgid "Value must be less than {0}" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:650 +msgid "Please enter only letters and numbers" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:539 +msgid "Due to prolonged inactivity on this page, one or more settings were not saved. Please try again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:535 +msgid "Settings Saved" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-user-select.php:22 +msgid "Select Some Users" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-section.php:18 +msgid "Section Title" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:425 +msgid "Are you sure you want to delete this?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:30 +msgid "Add Row" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-post-select.php:24 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-taxonomy-select.php:22 +msgid "Select Posts" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:210 +msgid "Add Images" +msgstr "Aggiungi immagini" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:129 +msgid "Select the image that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:93 +msgid "Select image(s) that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:79 +msgid "Select the image that you would like to use for this variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:48 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:82 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:68 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:132 +msgid "Select Image" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:31 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:160 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:168 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:19 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:115 +msgid "Select File" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:30 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:18 +msgid "Select the file that you would like to use." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:357 +msgid "Create Variations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:356 +msgid "Add Another Variant" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Insert a value and press ENTER" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "(e.g. White, Grey, Red etc.)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Variation Values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:333 +msgid "Or create new variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "(e.g. Color)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:303 +msgid "You are about to delete selected variants.
    If you want to continue please confirm." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:302 +msgid "Confirmation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:290 +msgid "Insert quantity available. Empty for unlimited." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:281 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:294 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:307 +msgid "Cancel" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:280 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:293 +msgid "Update" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:277 +msgid "Insert the price i.e. 25 or 25.50" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:115 +msgid "Img." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:85 +msgid "Add New Variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:79 +msgid "Delete Variants" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:78 +msgid "Update Prices" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:77 +msgid "Update Inventory" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:76 +msgid "Update Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:75 +msgid "Bulk Actions" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:73 +msgid "Select bulk action" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:196 +msgid "Configure Store" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:195 +msgid "Configure shipping rates, emails and your store's appearance. " +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:190 +msgid "Add Product" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:189 +msgid "Add your first product for sale and get familiar with adding products." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:184 +msgid "Your store is almost ready for its first customers, but first it needs some products. Get started by adding products below, or jump straight into further configuring your store’s settings." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:183 +msgid "Woohoo! Your online store is up and running." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:160 +msgid "Finish Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:124 +msgid "And what metric system do you want to use?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:113 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:142 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:159 +msgid "Back" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:109 +msgid "Do you want to apply tax for your products? You can customize this for each product and variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:105 +msgid "What currency do you want to sell with?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:93 +msgid "And, which countries do you want to sell to?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:89 +msgid "Where is your online store based?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:80 +msgid "Payment Gateway" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:79 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:123 +msgid "Metric System" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:78 +msgid "Currency & Tax" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:77 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:88 +msgid "Locations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:70 +msgid "Choose where you want to sell your stuff and what currency. Easy!" +msgstr "" + +#: includes/public/class-mp-checkout.php:1400 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:58 +msgid "Continue" +msgstr "PROCEDI CON L'ACQUISTO" + +#: includes/admin/class-mp-admin.php:83 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:53 +msgid "Skip this step, I'll do this manually" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:49 +msgid "Install store pages" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:44 +msgid "Once you've completed this quick setup wizard you'll have a fully working online store - exciting! Start
    by creating the default store pages for the online store such as the cart, checkout and store pages." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:42 +msgid "MarketPress adds a full online store to your website, with heaps of configuration options and addons
    to suit your needs. It's really easy to get going, and only takes a few minutes to setup!" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:41 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:69 +msgid "Welcome to MarketPress - Quick Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-advanced-select.php:23 +msgid "Select Some Options" +msgstr "" + +#: includes/wpmudev-metaboxes/class-wpmudev-field.php:694 +msgid "You must the WPMUDEV_Field::display() method in your form field class" +msgstr "" + +#: includes/public/class-mp-short-codes.php:636 +msgid "Only %s left in stock..." +msgstr "" + +#: includes/public/class-mp-short-codes.php:633 +msgid "Unlimited stock" +msgstr "" + +#: includes/public/class-mp-short-codes.php:430 +msgid "product_id must be defined" +msgstr "" + +#: includes/public/class-mp-checkout.php:1250 +msgid "An account with this username already exists" +msgstr "" + +#: includes/public/class-mp-checkout.php:1394 +msgid "Continue as Guest" +msgstr "" + +#: includes/public/class-mp-checkout.php:1393 +msgid "Proceed to checkout and you'll have an opportunity to create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1392 +#: includes/public/class-mp-checkout.php:1398 +msgid "First-time customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1386 +msgid "Login" +msgstr "" + +#: includes/public/class-mp-checkout.php:1379 +msgid "E-Mail Address/Username" +msgstr "" + +#: includes/public/class-mp-checkout.php:1377 +msgid "Sign in to speed up the checkout process." +msgstr "" + +#: includes/public/class-mp-checkout.php:1376 +msgid "Have an account?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1297 +msgid "Shipping address different than billing?" +msgstr "Indirizzo di spedizione diverso da quello nella ricevuta ?" + +#: includes/public/class-mp-checkout.php:1184 +msgid "There are no available gateways to process this payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1160 +msgid "Payment" +msgstr "Pagamento" + +#: includes/public/class-mp-checkout.php:1123 +msgid "Oops! An error occurred while processing your payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1051 +msgid "Next Step »" +msgstr "Prosegui »" + +#: includes/public/class-mp-checkout.php:1045 +msgid "« Previous Step" +msgstr "" + +#: includes/public/class-mp-checkout.php:873 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:657 +msgid "error" +msgstr "" + +#: includes/public/class-mp-checkout.php:872 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:658 +msgid "errors" +msgstr "" + +#: includes/public/class-mp-checkout.php:871 +msgid "

    Oops! We found %d %s in the form below.

    Fields that have errors are highlighted in red below. Entering into a field will reveal the actual error that occurred.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:870 +msgid "Please enter a valid first and last name" +msgstr "" + +#: includes/public/class-mp-checkout.php:869 +msgid " Please enter a valid card security code" +msgstr "" + +#: includes/public/class-mp-checkout.php:868 +msgid "Please enter a valid card expiration" +msgstr "" + +#: includes/public/class-mp-checkout.php:773 +msgid "Javascript is required in order to checkout. Please enable Javascript in your browser and then refresh this page." +msgstr "" + +#: includes/public/class-mp-checkout.php:588 +msgid "An unknown error occurred. Please try again." +msgstr "" + +#: includes/public/class-mp-checkout.php:386 +msgid "Town/City" +msgstr "Città" + +#: includes/public/class-mp-checkout.php:380 +msgid "Apartment, suite, unit, building, floor, etc" +msgstr "Appartamento numero, piano, ecc" + +#: includes/public/class-mp-checkout.php:376 +msgid "Address Line 2" +msgstr "Indirizzo (linea 2)" + +#: includes/public/class-mp-checkout.php:363 +msgid "Address Line 1" +msgstr "Indirizzo (linea 1)" + +#: includes/common/class-mp-order.php:770 +#: includes/public/class-mp-checkout.php:354 +msgid "Company" +msgstr "Società" + +#: includes/public/class-mp-checkout.php:330 +msgid "Last" +msgstr "Cognome" + +#: includes/public/class-mp-checkout.php:321 +msgid "First" +msgstr "Nome" + +#: includes/public/class-mp-checkout.php:284 +msgid "State/Province" +msgstr "Provincia" + +#: includes/public/class-mp-checkout.php:83 +msgid "Review Order/Payment" +msgstr "Rivedi l’Ordine/Pagamento" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing/Shipping Address" +msgstr "Ricevuta/Indirizzo di spedizione" + +#: includes/public/class-mp-checkout.php:80 +msgid "Login/Register" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:530 +msgid "Marketplace" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:523 +msgid "Global Marketplace Pages" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +msgid "Store Network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +#: includes/multisite/class-mp-admin-multisite.php:494 +msgid "Store Network Settings" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:440 +msgid "Set theme access permissions for network stores. For a custom css theme, save your css file with the MarketPress Theme: NAME header in the /marketpress/ui/themes/ folder and it will appear in this list so you may select it." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:361 +msgid "Choose a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:336 +msgid "%d products get indexed" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:285 +msgid "Product Indexer" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:281 +msgid "Please hold on..." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:280 +msgid "Index Products" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:279 +msgid "%d products have been indexed in whole network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:182 +msgid "Enable Global Shopping Cart?" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:178 +msgid "Limit Global Widgets/Shortcodes To Main Blog?" +msgstr "" + +#: includes/common/template-functions.php:2802 +#: includes/multisite/template-functions.php:355 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:97 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:114 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:143 +msgid "Next" +msgstr "" + +#: includes/common/template-functions.php:2801 +#: includes/multisite/template-functions.php:354 +msgid "Prev" +msgstr "" + +#: includes/common/template-functions.php:2597 +msgid "Tagged in " +msgstr "" + +#: includes/common/template-functions.php:2196 +#: includes/common/template-functions.php:2202 +#: includes/common/template-functions.php:2214 +#: includes/common/template-functions.php:2217 +msgid "Oops! We couldn't locate any orders matching that order number. Please verify the order number and try again." +msgstr "" + +#: includes/common/template-functions.php:2138 +msgid "Look Up" +msgstr "" + +#: includes/common/template-functions.php:1423 +msgid "Please choose a shipping method" +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "If you have your order ID you can look it up using the form below." +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "Order Search" +msgstr "" + +#: includes/common/template-functions.php:910 +#: includes/public/class-mp-checkout.php:1440 +msgid "Cart" +msgstr "Carrello" + +#: includes/common/template-functions.php:895 +msgid "[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:887 +msgid "[mp_global_categories_list]" +msgstr "" + +#: includes/common/template-functions.php:880 +msgid "" +"Welcome to our market place!\n" +"\n" +"Check out our network of products:\n" +"\n" +"[mp_list_global_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_global_categories_list]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:879 +msgid "Global Store" +msgstr "" + +#: includes/common/template-functions.php:873 +msgid "" +"Welcome to our online store! Feel free to browse around:\n" +"\n" +"[mp_store_navigation]\n" +"\n" +"Check out our most popular products:\n" +"\n" +"[mp_popular_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_list_categories]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_tag_cloud]" +msgstr "" +"Benvenuto nel nostro online store! Sentiti libero di dare un occhiata:\n" +"\n" +"[mp_store_navigation]\n" +"\n" +"Dai un occhiata ai nostri prodotti più popolari:\n" +"\n" +"[mp_popular_products]\n" +"\n" +"Sfoglia per categoria:\n" +"\n" +"[mp_list_categories]\n" +"\n" +"Sfoglia per tag:\n" +"\n" +"[mp_tag_cloud]" + +#: includes/common/shipping-modules/mp-weight-rate.php:127 +msgid "If cart weight is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "Se il peso del carrello è uguale p superiore a questo valore allora il costo di spedizione indicato verrà mostrato durante l'acquisto." + +#: includes/common/shipping-modules/mp-weight-rate.php:126 +msgid "Cart Weight" +msgstr "Peso Carrello" + +#: includes/common/shipping-modules/mp-usps.php:222 +msgid "Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:206 +msgid "Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:196 +msgid "Retail Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:195 +msgid "Online Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:193 +msgid "Rates Request Type" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:189 +msgid "Maximum Weight Per Package" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:195 +#: includes/common/shipping-modules/mp-usps.php:236 +msgid "Enter your standard box sizes as LengthxWidthxHeight (e.g. 12x8x6) For each box defined enter the maximum weight it can contain. Note: the shipping prices this plugin calculates are estimates. If they are consistently too low or too high, please check that the list of boxes above and the product weights are accurate and complete." +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:187 +msgid "Handling Charge Per Box Shipped" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:176 +#: includes/common/shipping-modules/mp-ups.php:181 +msgid "Offered Services" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:165 +msgid "Shipper Number" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:151 +msgid "User ID" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:144 +msgid "Developer Kit Access Key" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:140 +msgid "Use Sandbox Mode?" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:123 +msgid "In order to use UPS, you will need a UPS Developer Kit access key and the UPS user ID and password associated with the access key. Set these up for free here. If this information is missing or incorrect, an error will appear during the checkout process and the buyer will not be able to complete the transaction." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:112 +msgid "If cart total is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:111 +msgid "Cart Total" +msgstr "Totale Carrello" + +#: includes/common/shipping-modules/mp-table-rate.php:95 +#: includes/common/shipping-modules/mp-weight-rate.php:111 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Don't worry about sorting as this will be done automatically upon saving." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:170 +msgid "Method Title (visible for clients)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:409 +#: includes/common/shipping-modules/mp-ups.php:216 +#: includes/common/shipping-modules/mp-usps.php:251 +msgid "Max Weight (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:402 +#: includes/common/shipping-modules/mp-ups.php:209 +#: includes/common/shipping-modules/mp-usps.php:247 +msgid "Size (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:387 +msgid "Enter your standard box sizes as LengthxWidthxHeight ( 12x8x6 ) For each box defined enter the maximum weight it can contain. Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:361 +#: includes/common/shipping-modules/mp-usps.php:229 +msgid "Handling Charge per International Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:353 +msgid "International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:339 +#: includes/common/shipping-modules/mp-usps.php:213 +msgid "Handling Charge per Domestic Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:331 +msgid "Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:321 +msgid "When checked the customer can chose Residential or Commercial delivery with Residential the default. Unchecked it's only Residential rates." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:320 +msgid "Allow Commercial Delivery?" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:315 +msgid "Fedex 10kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:314 +msgid "Fedex 25kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:313 +msgid "Fedex Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:312 +msgid "Fedex Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:311 +msgid "Fedex Pak" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:310 +msgid "Fedex Tube" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:306 +msgid "Default Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:294 +msgid "Dropoff Type" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:290 +msgid "Meter ID" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:134 +msgid "This is a residential address" +msgstr "Questo è un indirizzo privato" + +#: includes/common/payment-gateways/wepay.php:283 +msgid "There was an error processing your card: \"%s\". Please check your credit card info and try again." +msgstr "C'è stato un problema nel processare la vs. carta: : \"%s\". Controlla le informazioni della carta e riprova." + +#: includes/common/payment-gateways/wepay.php:121 +msgid "Wepay makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept cards directly on your site. You don't need a merchant account or gateway. WePay handles everything including storing cards. Credit cards go directly to WePay's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:385 +msgid "There was an error processing your card - \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:356 +msgid "%s Store Purchase - Order ID - %s, Email - %s" +msgstr "%s Acquisto negozio - Ordine numero - %s, Email - %s" + +#: includes/common/payment-gateways/stripe.php:251 +msgid "Stripe makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept Visa, MasterCard, American Express, Discover, JCB, and Diners Club cards directly on your site. You don't need a merchant account or gateway. Stripe handles everything, including storing cards, subscriptions, and direct payouts to your bank account. Credit cards go directly to Stripe's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:192 +msgid "ZMW - Zambian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:191 +msgid "ZAR - South African Rand" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:190 +msgid "YER - Yemeni Rial" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:189 +msgid "XPF - Cfp Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:188 +msgid "XOF - West African Cfa Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:187 +msgid "XCD - East Caribbean Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:186 +msgid "XAF - Central African Cfa Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:185 +msgid "WST - Samoan Tala" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:184 +msgid "VUV - Vanuatu Vatu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:183 +msgid "VND - Vietnamese Đồng" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:182 +msgid "VEF - Venezuelan Bolívar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:181 +msgid "UZS - Uzbekistani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:180 +msgid "UYI - Uruguayan Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:178 +msgid "UGX - Ugandan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:177 +msgid "UAH - Ukrainian Hryvnia" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:176 +msgid "TZS - Tanzanian Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:175 +msgid "TWD - New Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:174 +msgid "TTD - Trinidad and Tobago Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:172 +msgid "TOP - Tongan Paʻanga" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:171 +msgid "TJS - Tajikistani Somoni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:169 +msgid "SZL - Swazi Lilangeni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:168 +msgid "SVC - Salvadoran Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:167 +msgid "STD - São Tomé and Príncipe Dobra" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:166 +msgid "SRD - Surinamese Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:165 +msgid "SOS - Somali Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:164 +msgid "SLL - Sierra Leonean Leone" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:163 +msgid "SHP - Saint Helenian Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:160 +msgid "SCR - Seychellois Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:159 +msgid "SBD - Solomon Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:157 +msgid "RWF - Rwandan Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:156 +msgid "RUB - Russian Ruble" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:155 +msgid "RSD - Serbian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:154 +msgid "RON - Romanian Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:153 +msgid "QAR - Qatari Riyal" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:152 +msgid "PYG - Paraguayan Guaraní*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:151 +msgid "PLN - Polish Złoty" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:150 +msgid "PKR - Pakistani Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:149 +msgid "PHP - Philippine Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:148 +msgid "PGK - Papua New Guinean Kina" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:147 +msgid "PEN - Peruvian Nuevo Sol*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:146 +msgid "PAB - Panamanian Balboa*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:144 +msgid "NPR - Nepalese Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:142 +msgid "NIO - Nicaraguan Córdoba*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:141 +msgid "NGN - Nigerian Naira" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:140 +msgid "NAD - Namibian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:139 +msgid "MZN - Mozambican Metical" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:137 +msgid "MXN - Mexican Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:136 +msgid "MWK - Malawian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:135 +msgid "MVR - Maldivian Rufiyaa" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:134 +msgid "MUR - Mauritian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:133 +msgid "MRO - Mauritanian Ouguiya" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:132 +msgid "MOP - Macanese Pataca" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:131 +msgid "MNT - Mongolian Tögrög" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:130 +msgid "MKD - Macedonian Denar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:129 +msgid "MGA - Malagasy Ariary" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:128 +msgid "MDL - Moldovan Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:126 +msgid "LVL - Latvian Lats" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:124 +msgid "LSL - Lesotho Loti" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:123 +msgid "LRD - Liberian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:122 +msgid "LKR - Sri Lankan Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:121 +msgid "LBP - Lebanese Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:120 +msgid "LAK - Lao Kip*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:119 +msgid "KZT - Kazakhstani Tenge" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:118 +msgid "KYD - Cayman Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:117 +msgid "KRW - South Korean Won" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:116 +msgid "KMF - Comorian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:115 +msgid "KHR - Cambodian Riel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:114 +msgid "KGS - Kyrgyzstani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:113 +msgid "KES - Kenyan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:111 +msgid "JMD - Jamaican Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:110 +msgid "ISK - Icelandic Króna" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:109 +msgid "INR - Indian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:108 +msgid "ILS - Israeli New Sheqel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:107 +msgid "IDR - Indonesian Rupiah" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:105 +msgid "HTG - Haitian Gourde" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:103 +msgid "HNL - Honduran Lempira*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:101 +msgid "GYD - Guyanese Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:100 +msgid "GTQ - Guatemalan Quetzal*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:99 +msgid "GNF - Guinean Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:98 +msgid "GMD - Gambian Dalasi" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:97 +msgid "GIP - Gibraltar Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:96 +msgid "GEL - Georgian Lari" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:94 +msgid "FKP - Falkland Islands Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:93 +msgid "FJD - Fijian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:91 +msgid "ETB - Ethiopian Birr" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:90 +msgid "EGP - Egyptian Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:89 +msgid "EEK - Estonian Kroon*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:88 +msgid "DZD - Algerian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:87 +msgid "DOP - Dominican Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:85 +msgid "DJF - Djiboutian Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:84 +msgid "CZK - Czech Koruna*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:83 +msgid "CVE - Cape Verdean Escudo*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:82 +msgid "CRC - Costa Rican Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:81 +msgid "COP - Colombian Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:80 +msgid "CNY - Chinese Renminbi Yuan" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:79 +msgid "CLP - Chilean Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:77 +msgid "CDF - Congolese Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:76 +msgid "CAD - Canadian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:75 +msgid "BZD - Belize Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:74 +msgid "BWP - Botswana Pula" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:73 +msgid "BSD - Bahamian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:72 +msgid "BRL - Brazilian Real*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:71 +msgid "BOB - Bolivian Boliviano*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:70 +msgid "BND - Brunei Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:69 +msgid "BMD - Bermudian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:68 +msgid "BIF - Burundian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:67 +msgid "BGN - Bulgarian Lev" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:66 +msgid "BDT - Bangladeshi Taka" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:65 +msgid "BBD - Barbadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:64 +msgid "BAM - Bosnia & Herzegovina Convertible Mark" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:63 +msgid "AZN - Azerbaijani Manat" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:62 +msgid "AWG - Aruban Florin" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:61 +msgid "AUD - Australian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:60 +msgid "ARS - Argentine Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:59 +msgid "AOA - Angolan Kwanza*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:58 +msgid "ANG - Netherlands Antillean Gulden" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:57 +msgid "AMD - Armenian Dram" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:56 +msgid "ALL - Albanian Lek" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:55 +msgid "AFN - Afghan Afghani*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:54 +msgid "AED - United Arab Emirates Dirham" +msgstr "AED - Dirham Dollaro Emirato Arabo " + +#: includes/common/payment-gateways/skrill.php:345 +msgid "Skrill balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:327 +msgid "Skrill IPN message received." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:283 +msgid "Skrill" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:278 +msgid "Pending payment" +msgstr "In attesa di pagamento" + +#: includes/common/payment-gateways/skrill.php:144 +msgid "The secret word must match the word submitted in the \"Merchant Tools\" section of your Skrill account." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:134 +msgid "You must use your valid Skrill merchant email. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:133 +msgid "Skrill Email" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:123 +msgid "Resell your inventory via Skrill.com (Moneybookers)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:95 +msgid "ZAR - South-African Rand" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:93 +msgid "TWD - Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:92 +msgid "TRY - New Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:91 +msgid "TND - Tunisian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:90 +msgid "THB - Thailand Baht" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:89 +msgid "SKK - Slovakian Koruna" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:86 +#: includes/common/payment-gateways/stripe.php:158 +msgid "SAR - Saudi Riyal" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:85 +msgid "RSD - Serbian dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:83 +msgid "QAR - Qatari Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:81 +msgid "OMR - Omani Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:80 +msgid "NOK - Norwegian Krone " +msgstr "" + +#: includes/common/payment-gateways/skrill.php:78 +#: includes/common/payment-gateways/stripe.php:138 +msgid "MYR - Malaysian Ringgit" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:77 +#: includes/common/payment-gateways/stripe.php:127 +msgid "MAD - Moroccan Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:74 +msgid "KRW - South-Korean Won" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:72 +msgid "JOD - Jordanian Dinar" +msgstr "JOD - Dinaro Giordano" + +#: includes/common/payment-gateways/skrill.php:70 +msgid "INR - Indian Rupee" +msgstr "INR - Rupia Indiana" + +#: includes/common/payment-gateways/skrill.php:63 +msgid "EEK - Estonian Kroon" +msgstr "EEK - Corona Estone" + +#: includes/common/payment-gateways/skrill.php:56 +msgid "AED - Utd. Arab Emir. Dirham" +msgstr "AED - Utd. Arab Emir. Dirham" + +#: includes/common/payment-gateways/skrill.php:52 +msgid "Turkish" +msgstr "Turco" + +#: includes/common/payment-gateways/skrill.php:51 +msgid "Swedish" +msgstr "Svedese" + +#: includes/common/payment-gateways/skrill.php:50 +msgid "Spanish" +msgstr "Spagnolo" + +#: includes/common/payment-gateways/skrill.php:49 +msgid "Russian" +msgstr "Russo" + +#: includes/common/payment-gateways/skrill.php:48 +msgid "Romainian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:47 +msgid "Polish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:46 +msgid "Italian" +msgstr "Italiano" + +#: includes/common/payment-gateways/skrill.php:45 +msgid "Greek" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:44 +msgid "German" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:43 +msgid "French" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:42 +msgid "Finnish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:41 +msgid "English" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:40 +msgid "Dutch" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:39 +msgid "Danish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:38 +msgid "Czech" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:37 +msgid "Chinese" +msgstr "Cinese" + +#: includes/common/payment-gateways/simplify.php:201 +msgid "There was an error processing your card: %s. Please re-enter your credit card info and try again." +msgstr "C'è stato un problema nel processare la vs. carta: %s. Per favore inserisci nuovamente le informazioni della carta e riprova." + +#: includes/common/payment-gateways/pin.php:278 +msgid "
  • There was an error processing your card: \"%s\". Please verify your credit card information and try again.
  • " +msgstr "
  • Si è verificato un errore nel processare la vostra carta: \"%s\". Siete pregati di controllare le informazioni e riprovare.
  • " + +#: includes/common/payment-gateways/pin.php:274 +msgid "
  • There was an error processing your card. Please verify your credit card information and try again.
  • " +msgstr "
  • Si è verificato un errore nel processare la vostra carta. Siete pregati di controllare le informazioni e riprovare.
  • " + +#: includes/common/payment-gateways/pin.php:177 +#: includes/common/payment-gateways/stripe.php:279 +msgid "Publishable Key" +msgstr "Chiave pubblicabile" + +#: includes/common/payment-gateways/pin.php:163 +msgid "API Credentials?" +msgstr "Credenziali API?" + +#: includes/common/payment-gateways/pin.php:147 +msgid "PIN makes it easy to start accepting credit card payments with Australia’s first all-in-one online payment system. Accept all major credit cards directly on your site. Your sales proceeds are deposited to any Australian bank account, no merchant account required." +msgstr "" + +#: includes/common/payment-gateways/pin.php:57 +#: includes/common/payment-gateways/stripe.php:179 +msgid "USD - United States Dollar" +msgstr "USD - Dollaro Americano" + +#: includes/common/payment-gateways/paypal-payflow.php:455 +msgid "Email Footer" +msgstr "Footer Email" + +#: includes/common/payment-gateways/paypal-payflow.php:445 +msgid "Email Header" +msgstr "Intestazione Email" + +#: includes/common/payment-gateways/paypal-payflow.php:416 +msgid "Partner" +msgstr "Partner" + +#: includes/common/payment-gateways/paypal-payflow.php:409 +msgid "Vendor" +msgstr "Venditore" + +#: includes/common/payment-gateways/paypal-express.php:852 +#: includes/common/payment-gateways/paypal-express.php:1126 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences\t section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:749 +msgid "Page Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:744 +msgid "Header Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:739 +msgid "Header Border Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:734 +msgid "Header Image" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:680 +msgid "Locale" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:624 +#: includes/common/payment-gateways/paypal-express.php:658 +msgid "Merchant Email" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:645 +msgid "Paypal Express Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:603 +msgid "Paypal Express Network Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:861 +msgid "Application ID (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:854 +msgid "Signature (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:847 +msgid "API Password (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:839 +msgid "API Username (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:832 +msgid "Signature (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:825 +msgid "API Password (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:817 +msgid "API Username (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:799 +msgid "This message is displayed at the top of the gateway settings page to store admins. It's a good place to inform them of your fees or put any sales messages." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:787 +msgid "Please enter your PayPal email address or business ID you want to recieve fees at." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:786 +msgid "PayPal E-mail" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:772 +msgid "Fees to Collect (%)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:375 +#: includes/public/class-mp-checkout.php:341 +msgid "Email Address" +msgstr "Indirizzo mail" + +#: includes/common/payment-gateways/paypal-chained-payments.php:299 +msgid "Sorry, your order was not completed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:126 +#: includes/common/payment-gateways/paypal-express.php:780 +msgid "You will be redirected to the PayPal site to finalize your payment." +msgstr "Sarai reindirizzata alla pagina di PayPal per completare il pagamento." + +#: includes/common/payment-gateways/paypal-chained-payments.php:90 +#: includes/common/payment-gateways/skrill.php:94 +msgid "USD - U.S. Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:89 +msgid "TRY - Turkish lira" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:88 +#: includes/common/payment-gateways/stripe.php:170 +msgid "THB - Thai Baht" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:87 +msgid "TWD - Taiwan New Dollars" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:86 +#: includes/common/payment-gateways/pin.php:59 +#: includes/common/payment-gateways/skrill.php:88 +#: includes/common/payment-gateways/stripe.php:162 +msgid "SGD - Singapore Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:84 +msgid "RUB - Russian Rubles" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:82 +msgid "PHP - Philippine Pesos" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:81 +#: includes/common/payment-gateways/pin.php:58 +#: includes/common/payment-gateways/skrill.php:79 +#: includes/common/payment-gateways/stripe.php:145 +msgid "NZD - New Zealand Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:79 +msgid "MXN - Mexican Peso" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:78 +msgid "MYR - Malaysian Ringgits" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:77 +#: includes/common/payment-gateways/pin.php:64 +#: includes/common/payment-gateways/skrill.php:73 +#: includes/common/payment-gateways/stripe.php:112 +msgid "JPY - Japanese Yen" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:75 +#: includes/common/payment-gateways/pin.php:63 +#: includes/common/payment-gateways/skrill.php:66 +#: includes/common/payment-gateways/stripe.php:102 +msgid "HKD - Hong Kong Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:73 +msgid "GBP - Pound Sterling" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:68 +#: includes/common/payment-gateways/pin.php:62 +#: includes/common/payment-gateways/skrill.php:59 +msgid "CAD - Canadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:67 +msgid "BRL - Brazilian Real" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:66 +#: includes/common/payment-gateways/pin.php:56 +#: includes/common/payment-gateways/skrill.php:57 +msgid "AUD - Australian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:288 +msgid "There was an error processing your card: \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:163 +msgid "When running on a live site, Paymill recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:161 +#: includes/common/payment-gateways/pin.php:157 +#: includes/common/payment-gateways/simplify.php:103 +#: includes/common/payment-gateways/stripe.php:260 +#: includes/common/payment-gateways/wepay.php:153 +msgid "Force SSL?" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:151 +msgid "Accept Visa, Mastercard, Maestro UK, Discover and Solo cards directly on your site. You don't need a merchant account or gateway. Credit cards go directly to Paymill's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:131 +msgid "CVV2" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:72 +#: includes/common/payment-gateways/pin.php:61 +#: includes/common/payment-gateways/skrill.php:65 +#: includes/common/payment-gateways/stripe.php:95 +msgid "GBP - British Pound" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:71 +#: includes/common/payment-gateways/stripe.php:173 +msgid "TRY - Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:70 +#: includes/common/payment-gateways/paypal-chained-payments.php:85 +#: includes/common/payment-gateways/skrill.php:87 +#: includes/common/payment-gateways/stripe.php:161 +msgid "SEK - Swedish Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:69 +#: includes/common/payment-gateways/skrill.php:84 +msgid "RON - Romanian Leu New" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:68 +#: includes/common/payment-gateways/paypal-chained-payments.php:83 +#: includes/common/payment-gateways/skrill.php:82 +msgid "PLN - Polish Zloty" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:67 +#: includes/common/payment-gateways/paypal-chained-payments.php:80 +#: includes/common/payment-gateways/stripe.php:143 +msgid "NOK - Norwegian Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:66 +#: includes/common/payment-gateways/skrill.php:75 +#: includes/common/payment-gateways/stripe.php:125 +msgid "LTL - Lithuanian Litas" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:65 +#: includes/common/payment-gateways/paypal-chained-payments.php:69 +#: includes/common/payment-gateways/skrill.php:60 +#: includes/common/payment-gateways/stripe.php:78 +msgid "CHF - Swiss Franc" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:64 +#: includes/common/payment-gateways/skrill.php:76 +msgid "LVL - Latvian Lat" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:63 +#: includes/common/payment-gateways/paypal-chained-payments.php:74 +#: includes/common/payment-gateways/skrill.php:69 +msgid "ILS - Israeli Shekel" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:62 +#: includes/common/payment-gateways/skrill.php:71 +msgid "ISK - Iceland Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:61 +#: includes/common/payment-gateways/paypal-chained-payments.php:76 +#: includes/common/payment-gateways/skrill.php:68 +#: includes/common/payment-gateways/stripe.php:106 +msgid "HUF - Hungarian Forint" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:60 +#: includes/common/payment-gateways/paypal-chained-payments.php:71 +#: includes/common/payment-gateways/skrill.php:62 +#: includes/common/payment-gateways/stripe.php:86 +msgid "DKK - Danish Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:59 +#: includes/common/payment-gateways/skrill.php:67 +#: includes/common/payment-gateways/stripe.php:104 +msgid "HRK - Croatian Kuna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:58 +#: includes/common/payment-gateways/paypal-chained-payments.php:70 +#: includes/common/payment-gateways/skrill.php:61 +msgid "CZK - Czech Koruna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:57 +#: includes/common/payment-gateways/skrill.php:58 +msgid "BGN - Bulgarian Leva" +msgstr "" + +#: includes/common/payment-gateways/payflow/class-mp-gateway-worker-payflow.php:123 +msgid "There was an error connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:344 +msgid "This setting will log all PayFast communication to the \"payfast.log\" file." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:342 +msgid "Log Debugging Info?" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:335 +msgid "DO NOT INPUT A VALUE UNLESS YOU HAVE SET ONE IN THE SETTINGS SECTION OF YOUR PAYFAST SETTINGS." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:333 +msgid "PayFast Passphrase" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:323 +msgid "You can find your credentials on your integration page." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:321 +msgid "PayFast Merchant Credentials" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:311 +msgid "PayFast Mode" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:308 +msgid "PayFast is a payments processing service for South Africa. We make it safe for buyers to send money and easy for sellers to receive money. More Info »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:306 +msgid "PayFast Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:285 +msgid "Your payment via PayFast for this order totaling %s is complete. The transaction number is %s." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:278 +msgid "Your payment via PayFast for this order totaling %s is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:124 +msgid "Your PayFast transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:82 +#: includes/common/payment-gateways/payfast.php:83 +msgid "PayFast" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:157 +msgid "API error: - \"%s\"" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:198 +msgid "The payment request is under process" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:140 +msgid "Order: #" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:116 +msgid "You will be redirected to the Mollie site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:73 +msgid "%sMollie%s provides a fully PCI Compliant and secure way to collect payments via iDeal, Credit Card, Bancontact / Mister Cash, SOFORT Banking, Overbooking, Bitcoin, PayPal, paysafecard and AcceptEmail." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:53 +#: includes/common/payment-gateways/mollie.php:54 +#: includes/common/payment-gateways/mollie.php:195 +#: includes/common/payment-gateways/mollie.php:245 +msgid "Mollie" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:50 +#: includes/common/payment-gateways/paymill.php:56 +#: includes/common/payment-gateways/paypal-chained-payments.php:72 +#: includes/common/payment-gateways/pin.php:60 +#: includes/common/payment-gateways/skrill.php:64 +#: includes/common/payment-gateways/stripe.php:92 +msgid "EUR - Euro" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:306 +msgid "Access Key" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:300 +msgid "You must login to the Mijireh.com dashboard to obtain the Access Key." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:299 +msgid "Credentials" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:289 +msgid "Mijireh Checkout provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:269 +msgid "Mijireh Error: " +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:89 +msgid "You will be redirected to the Mijireh.com site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:87 +msgid "Your Mijireh transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:42 +#: includes/common/payment-gateways/mijireh.php:43 +#: includes/common/payment-gateways/mijireh.php:324 +msgid "Mijireh" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:145 +msgid "These are the manual payment instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:189 +msgid "This is the email text to send to those who have made free order checkouts. You should include your free order instructions / information here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:183 +msgid "This is the free order information to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:182 +msgid "Confirmation User Information" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:177 +msgid "This is the information to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:163 +msgid "If enabled, all free orders will be automatically marked as paid." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:159 +msgid "Payment Status" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:149 +msgid "This gateway is automatically activated if order totalling 0 and it can't be disabled" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:35 +#: includes/common/payment-gateways/free_orders.php:36 +#: includes/common/payment-gateways/free_orders.php:89 +msgid "Free Order" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:34 +#: includes/common/payment-gateways/free_orders.php:197 +msgid "Free Orders" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:515 +msgid "Sandbox API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:266 +#: includes/common/payment-gateways/eway31.php:542 +msgid "eWay Rapid 3.1 Payments (beta)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:403 +msgid "Hosted Payment Page Language" +msgstr "" + +#: includes/common/payment-gateways/eway.php:373 +msgid "Note when testing in sandbox mode it will use the default eWay test API credentials. Also, please note that cart total needs to be a whole number (e.g. 10.00) in order to generate a successful transaction, otherwise the transaction will fail." +msgstr "" + +#: includes/common/payment-gateways/eway.php:267 +msgid "You will be redirected to https://www.eway.com.au to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:380 +msgid "You have chosen to checkout using %s. Please confirm your order details and click \"Submit Order\" when finished." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:272 +#: includes/common/payment-gateways/paymill.php:131 +#: includes/common/payment-gateways/stripe.php:231 +msgid "Security Code " +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Enter in MM/YYYY or MM/YY format" +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Expiration" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:321 +msgid "Delim Data" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:307 +#: includes/common/payment-gateways/paypal-payflow.php:456 +msgid "This text will appear as the footer of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:287 +#: includes/common/payment-gateways/paypal-payflow.php:440 +msgid "Email Customer (on success)" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:278 +msgid "Authorize.net default is \",\". Otherwise, get this from your credit card processor. If the transactions are not going through, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:277 +msgid "Delimeter Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:193 +msgid "Held For Review" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:310 +#: includes/common/payment-gateways/payfast.php:314 +msgid "Test" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:300 +#: includes/common/payment-gateways/pin.php:170 +#: includes/common/payment-gateways/stripe.php:272 +msgid "Secret Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:283 +msgid "Select Your Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:97 +msgid "Your payment will be processed by the iDEAL network" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:208 +msgid "These are the CubePoints to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:203 +msgid "These are the CubePoints instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:266 +msgid "If enabled, all API calls will be made to https://test.bitpay.com." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:263 +msgid "Use Test Mode?" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:259 +msgid "If checked, response fron bitpay will be stored in log file, keep it disabled unless required." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:256 +msgid "Enable Debug Log" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:249 +msgid "Full Notifications" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:231 +#: includes/common/payment-gateways/eway31.php:499 +#: includes/common/payment-gateways/eway31.php:526 +#: includes/common/payment-gateways/mollie.php:83 +#: includes/common/shipping-modules/mp-fedex.php:269 +msgid "API Key" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:222 +msgid "You can now accept a payment from any country on Earth, with no risk of fraud. To use Bitpay, you need to signup on Bitpay. \\n After completing the signup process, you can get api keys at Bitpay API key. You can read more about Bitpay at Bitpay API. \\n Bitpay requires SSL(https) for payment notifications to work." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:61 +msgid "You will be redirected to bitpay.com, for bitcoin payment. It is completely safe." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:346 +msgid "You must login to the 2Checkout vendor dashboard to obtain the seller ID and secret word. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:345 +#: includes/common/payment-gateways/authorizenet-aim.php:239 +#: includes/common/payment-gateways/paymill.php:168 +#: includes/common/payment-gateways/paypal-express.php:704 +#: includes/common/payment-gateways/simplify.php:80 +#: includes/common/payment-gateways/stripe.php:265 +#: includes/common/payment-gateways/wepay.php:158 +msgid "API Credentials" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:325 +#: includes/common/payment-gateways/_bitpay.php:220 +#: includes/common/payment-gateways/_cubepoints.php:185 +#: includes/common/payment-gateways/_ideal.php:268 +#: includes/common/payment-gateways/_payway.php:255 +#: includes/common/payment-gateways/authorizenet-aim.php:219 +#: includes/common/payment-gateways/eway.php:352 +#: includes/common/payment-gateways/eway31.php:460 +#: includes/common/payment-gateways/free_orders.php:147 +#: includes/common/payment-gateways/manual-payments.php:126 +#: includes/common/payment-gateways/mijireh.php:287 +#: includes/common/payment-gateways/mollie.php:71 +#: includes/common/payment-gateways/paymill.php:149 +#: includes/common/payment-gateways/paypal-chained-payments.php:344 +#: includes/common/payment-gateways/paypal-payflow.php:376 +#: includes/common/payment-gateways/pin.php:145 +#: includes/common/payment-gateways/simplify.php:69 +#: includes/common/payment-gateways/skrill.php:121 +#: includes/common/payment-gateways/stripe.php:249 +#: includes/common/payment-gateways/wepay.php:119 +#: includes/common/shipping-modules/mp-fedex.php:243 +#: includes/common/shipping-modules/mp-flat-rate.php:63 +#: includes/common/shipping-modules/mp-pickup.php:140 +#: includes/common/shipping-modules/mp-table-rate.php:94 +#: includes/common/shipping-modules/mp-ups.php:122 +#: includes/common/shipping-modules/mp-usps.php:167 +#: includes/common/shipping-modules/mp-weight-rate.php:110 +msgid "%s Settings" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:136 +msgid "You will be redirected to the 2Checkout site to finalize your payment." +msgstr "" + +#: includes/common/helpers.php:169 includes/public/class-mp-checkout.php:1277 +msgid "Billing" +msgstr "Ricevuta" + +#: includes/common/helpers.php:144 +msgid "FREE" +msgstr "" + +#: includes/common/helpers.php:134 +msgid "Coupons:" +msgstr "" + +#: includes/common/helpers.php:95 +msgid "Qty" +msgstr "" + +#: includes/common/helpers.php:94 +msgid "Sku" +msgstr "" + +#: includes/common/data.php:59 +msgid "Zip Code" +msgstr "CAP" + +#: includes/common/class-mp-taxes.php:336 +msgid "Standard Table" +msgstr "" + +#: includes/common/class-mp-product.php:2698 +msgid "Tweet" +msgstr "" + +#: includes/common/class-mp-product.php:2321 +msgid "Notification Preferences: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2320 +msgid "Edit Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2318 +msgid "Link: %s

    " +msgstr "" + +#: includes/common/class-mp-product.php:2317 +msgid "Current Inventory: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2316 +msgid "Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2314 +msgid "This message is being sent to notify you of low stock of a product in your online store according to your preferences.

    " +msgstr "" + +#: includes/common/class-mp-product.php:1817 +msgid "" +msgstr "" + +#: includes/common/class-mp-product.php:1427 +#: includes/common/class-mp-product.php:1430 +msgid "(tax incl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1422 +#: includes/common/class-mp-product.php:1425 +msgid "(tax excl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1300 +#: includes/common/class-mp-product.php:1315 +msgid "%s each" +msgstr "" + +#: includes/common/class-mp-product.php:988 +msgid "Choose Options" +msgstr "" + +#: includes/common/class-mp-product.php:526 +msgid "Choose a %s" +msgstr "" + +#: includes/common/class-mp-product.php:284 +#: includes/common/class-mp-product.php:292 +#: includes/common/class-mp-product.php:615 +msgid "We're sorry, we only have %d of this item in stock right now." +msgstr "" + +#: includes/common/class-mp-order.php:1456 +msgid "Shipped: Track Shipment" +msgstr "" + +#: includes/common/class-mp-order.php:1049 +msgid "Order Received" +msgstr "" + +#: includes/common/class-mp-order.php:1014 +msgid "In Process" +msgstr "" + +#: includes/common/class-mp-order.php:969 +msgid "Order #" +msgstr "" + +#: includes/common/class-mp-order.php:866 +msgid "Copy billing address to shipping address" +msgstr "" + +#: includes/common/class-mp-order.php:822 +#: includes/public/class-mp-checkout.php:1314 +msgid "Special Instructions" +msgstr "Informazioni aggiuntive" + +#: includes/common/class-mp-order.php:817 +#: includes/common/payment-gateways/stripe.php:335 +msgid "Email" +msgstr "" + +#: includes/common/class-mp-order.php:813 +#: includes/common/payment-gateways/stripe.php:341 +#: includes/public/class-mp-checkout.php:416 +msgid "Phone" +msgstr "Telefono o Cellulare" + +#: includes/common/class-mp-order.php:791 +#: includes/common/payment-gateways/stripe.php:337 +msgid "State" +msgstr "Nazione" + +#: includes/common/class-mp-order.php:776 +msgid "Address 1" +msgstr "" + +#: includes/common/class-mp-order.php:766 +msgid "Last Name" +msgstr "" + +#: includes/common/class-mp-order.php:762 +msgid "First Name" +msgstr "" + +#: includes/common/class-mp-installer.php:677 +msgid "MarketPress requires a database update to continue working correctly. Go to update page" +msgstr "" + +#: includes/common/class-mp-installer.php:657 +msgid "MarketPress performed a quick automatic update successfully!" +msgstr "" + +#: includes/common/class-mp-installer.php:653 +msgid "Perform Update" +msgstr "" + +#: includes/common/class-mp-installer.php:647 +msgid "Please update each subsite in your WordPress network where you have older version of the MarketPress plugin." +msgstr "" + +#: includes/common/class-mp-installer.php:641 +msgid "Depending on the amount of products you have, this update could take quite some time. Please keep this window open while the update completes. If you have products with multiple variations, the progress bar may move slower, please don't exit the window." +msgstr "" + +#: includes/common/class-mp-installer.php:632 +msgid "Product Metadata" +msgstr "" + +#: includes/common/class-mp-installer.php:601 +msgid "MarketPress requires a database update to continue working correctly.
    Below you will find a list of items that require your attention." +msgstr "" + +#: includes/common/class-mp-installer.php:600 +msgid "Update MarketPress Data" +msgstr "" + +#: includes/common/class-mp-installer.php:530 +msgid "Update Data" +msgstr "" + +#: includes/common/class-mp-installer.php:67 +msgid "Complete!" +msgstr "" + +#: includes/common/class-mp-installer.php:66 +msgid "Upgrading Database...Please Wait..." +msgstr "" + +#: includes/common/class-mp-installer.php:64 +msgid "An error occurred while updating. Please refresh this page and try again." +msgstr "" + +#: includes/common/class-mp-cart.php:2447 +msgid "Some items in your cart have fallen below the quantity you currently have in your cart. We have adjusted the quantity in your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:2443 +msgid "Some items in your cart are no longer available. We have removed these items from your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:1566 +msgid "item" +msgstr "corso" + +#: includes/common/class-mp-cart.php:1563 +#: includes/common/class-mp-cart.php:1568 +msgid "items" +msgstr "corsi" + +#: includes/common/class-mp-cart.php:1363 +msgid "Items/Products added to Cart will show here." +msgstr "I Menù aggiunti al carrello saranno mostrati qui." + +#: includes/common/class-mp-cart.php:1362 +msgid "Your shopping cart is empty." +msgstr "Il tuo carrello è vuoto." + +#: includes/common/class-mp-cart.php:1357 +msgid "View Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1241 +#: includes/common/class-mp-cart.php:1298 +#: includes/public/class-mp-short-codes.php:159 +msgid "Adding..." +msgstr "" + +#: includes/common/class-mp-cart.php:1033 +msgid "Continue Shopping?" +msgstr "Prosegui con gli acquisti" + +#: includes/common/class-mp-cart.php:961 +msgid "Secure Checkout
    Shopping is always safe and secure." +msgstr "Carrello sicuro
    Gli acquisti sono sempre sicuri." + +#: includes/common/class-mp-cart.php:959 +msgid "You are about to submit your order!
    Please review your order details before continuing. You will be charged immediately upon clicking \"Submit Order\"." +msgstr "" + +#: includes/common/class-mp-cart.php:956 +msgid "Continue »" +msgstr "" + +#: includes/common/class-mp-cart.php:955 +msgid "Submit Order" +msgstr "" + +#: includes/common/class-mp-cart.php:818 +msgid "There are no items in your cart - go add some !" +msgstr "" + +#: includes/common/class-mp-cart.php:816 +msgid "The cart is disabled." +msgstr "" + +#: includes/common/class-mp-cart.php:735 +msgid "Estimated %s" +msgstr "" + +#: includes/common/class-mp-cart.php:717 +msgid "Estimated Shipping" +msgstr "Costi di spedizione" + +#: includes/common/class-mp-cart.php:697 +msgid "Product Total" +msgstr "Totale prodotti" + +#: includes/common/class-mp-cart.php:670 includes/common/class-mp-cart.php:672 +msgid "Estimated Total (%s, %s)" +msgstr "" + +#: includes/common/class-mp-cart.php:668 +msgid "Estimated Total (%s)" +msgstr "Totale (%s)" + +#: includes/common/class-mp-cart.php:666 includes/common/class-mp-cart.php:752 +msgid "Estimated Total" +msgstr "TOTALE" + +#: includes/admin/widgets/product-list.php:247 +msgid "Show Thumbnail Placeholder image (if image is not set)" +msgstr "" + +#: includes/admin/widgets/cart.php:73 +msgid "Display product price" +msgstr "" + +#: includes/admin/widgets/cart.php:71 +msgid "Display product quantity" +msgstr "" + +#: includes/admin/widgets/cart.php:69 +msgid "Display product image" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:93 +msgid "General Shipping Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:773 +msgid "If you are having conflicts with the lightbox library from your theme or another plugin you should uncheck this." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:772 +msgid "Use Built-In Lightbox for Images?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:762 +msgid "Disable Large Image Display?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:688 +msgid "Show Product Image?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:682 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:684 +msgid "Show Tags List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:676 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:678 +msgid "Show Categories List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:671 +msgid "If enabled, description excerpt will be added above Add to cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:669 +msgid "Show Excerpt?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:665 +msgid "If enabled, users will be able to choose how many of the product they want to purchase before adding to their cart. If not checked, quantity could be change later on the cart page." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:663 +msgid "Show Quantity Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:649 +msgid "Settings related to the display of individual product pages." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:648 +msgid "Product Page Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:605 +msgid "Related Products Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:573 +msgid "Show Related Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:568 +msgid "Related Product Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:549 +msgid "Order Status Entries Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:510 +msgid "Sort Products By" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:497 +msgid "Products Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:492 +msgid "Paginate Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:478 +msgid "Excerpts Length" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:473 +msgid "Show Excerpts?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:450 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:746 +msgid "Image Alignment" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:412 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:708 +msgid "Custom Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:401 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:697 +msgid "Large - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:400 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:696 +msgid "Medium - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:399 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:695 +msgid "Thumbnail - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:397 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:693 +msgid "Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:386 +msgid "Select default placeholder image thumbnail when product image is not available (if empty, plugin's built-in image will be used)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:380 +msgid "Show default product placeholder thumbnail when product image is not available?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:374 +msgid "Show Product Thumbnail?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:369 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:658 +msgid "Redirect to cart page for immediate checkout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:368 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:657 +msgid "Stay on current product page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:366 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:655 +msgid "MarketPress supports two \"flows\" for adding products to the shopping cart. After adding a product to their cart, two things can happen:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:365 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:654 +msgid "Add To Cart Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:355 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:628 +msgid "Four" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:354 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:627 +msgid "Three" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:353 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:626 +msgid "Two" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:625 +msgid "One" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:349 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:622 +msgid "Set the number of products that show up in a grid row to best fit your theme" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:348 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:621 +msgid "How many products per row?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:342 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:609 +msgid "Display as grid" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:341 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:608 +msgid "Display as list" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:339 +msgid "Product Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:334 +msgid "Settings related to the display of product lists/grids." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:333 +msgid "Product List/Grid Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:314 +msgid "Show Twitter Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:309 +msgid "Twitter" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:303 +msgid "Show Share Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:297 +msgid "Recommend" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:296 +msgid "Like" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:294 +msgid "Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:283 +msgid "Show Facebook Like Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:278 +msgid "Facebook" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:257 +msgid "Show \"Pin It\" Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:252 +msgid "Pinterest" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:246 +msgid "Social Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:193 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:202 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:211 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:220 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:229 +#: includes/multisite/class-mp-admin-multisite.php:532 +#: includes/multisite/class-mp-admin-multisite.php:541 +#: includes/multisite/class-mp-admin-multisite.php:550 +msgid "Choose a Page" +msgstr "Scegli una Pagina" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:191 +msgid "This page will be used as the root for your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:168 +#: includes/multisite/class-mp-admin-multisite.php:586 +msgid "Create Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "uncropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "cropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:87 +#: includes/multisite/class-mp-admin-multisite.php:121 +#: includes/multisite/class-mp-admin-multisite.php:620 +msgid "An error occurred while creating the store page. Please try again." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:66 +msgid "Choose the gateway(s) that you would like to be available for checkout." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:65 +msgid "Enabled Gateways" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:78 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:146 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:179 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:213 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:274 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:307 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:341 +msgid "Text" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:71 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:139 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:172 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:206 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:267 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:300 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:334 +msgid "Subject" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:52 +msgid "Notification Email" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:510 +msgid "Enabling this option will display label `excl. tax` or `incl. tax` after price" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:509 +msgid "Display tax label?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:504 +msgid "Enabling this option will show Price + Tax, eg. if your price is 100 and your tax 20, your price will be 120" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:416 +#: includes/multisite/class-mp-admin-multisite.php:234 +msgid "Price Format" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:366 +msgid "Enabling this field will display a textbox on the shipping checkout page for users to enter special instructions for their order. Useful for product personalization, etc." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:365 +msgid "Show Special Instructions Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:360 +msgid "Universal" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:359 +msgid "Old" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1167 +#: includes/admin/store-settings/class-mp-store-settings-general.php:358 +msgid "New" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:353 +msgid "If you already use Google Analytics for your website, you can track detailed ecommerce information by enabling this setting. Choose whether you are using the new asynchronous or old tracking code. Before Google Analytics can report ecommerce activity for your website, you must enable ecommerce tracking on the profile settings page for your website. Also keep in mind that some gateways do not reliably show the receipt page, so tracking may not be accurate in those cases. It is recommended to use the PayPal gateway for the most accurate data. More information »" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:347 +msgid "Do you want to display the product price on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:346 +msgid "Show product price on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:340 +msgid "Do you want to display the product quantity on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:339 +msgid "Show product quantity on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:333 +msgid "Do you want to display the product image on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:332 +msgid "Show product image on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:327 +msgid "This option hide floating Mini Cart in top right corner." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:326 +msgid "Disable Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:316 +msgid "If unchecked your Orders admin page will be hidden" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:315 +msgid "Show admin Orders page?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:309 +msgid "Disable Cart?" +msgstr "Disabilita il Carrello" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:303 +msgid "Force Login?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:297 +msgid "Hide Out of Stock Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:555 +msgid "This will prevent multiples of the same downloadable product form being added to the cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:554 +msgid "Limit Digital Products Per-order?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:268 +msgid "If you're having issues downloading large files and have worked with your hosting provider to increase your memory limits, try enabling this - just keep in mind, it's not as secure!" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:267 +msgid "Use Alternative Download Method?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:252 +msgid "Download Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:230 +msgid "Change product post type" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:51 +msgid "%s Capabilities" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-addons.php:47 +msgid "Store Settings: Add Ons: %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:254 +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:56 +msgid "Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Edit Product Attribute %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:246 +msgid "Exporters" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:238 +msgid "Short Codes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:207 +msgid "An appropriate message for key \"%s\" could not be found." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:204 +msgid "Product attribute updated successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:203 +msgid "Product attribute added successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +msgid "Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +#: includes/admin/store-settings/class-mp-store-settings-addons.php:121 +msgid "Store Settings: Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "Store Settings: Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:118 +msgid "Store Settings: Product Tags" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:117 +msgid "Store Settings: Product Categories" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Store Settings: Product Attributes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +msgid "Store Settings: Payments" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:114 +msgid "Store Settings: Shipping" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +#: includes/admin/class-mp-store-settings-admin.php:226 +msgid "Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +msgid "Store Settings: Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:112 +msgid "Store Settings: Presentation" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:111 +msgid "Store Settings: General" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1489 +msgid "Select a Product" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1447 +msgid "Reset to Defaults" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1446 +msgid "Insert Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1202 +#: includes/admin/class-mp-shortcode-builder.php:1227 +#: includes/admin/class-mp-shortcode-builder.php:1252 +msgid "The text to show in the link." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1196 +#: includes/admin/class-mp-shortcode-builder.php:1221 +#: includes/admin/class-mp-shortcode-builder.php:1246 +msgid "Whether to return a clickable link or url." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1177 +msgid "Whether to display the cart only on store pages or not." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1171 +msgid "Whether to show or hide the product price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1165 +msgid "Whether to show or hide the product quantity." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1159 +msgid "Whether to show or hide the product image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1153 +msgid "The text displayed before the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1147 +msgid "The title of the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1058 +#: includes/admin/class-mp-shortcode-builder.php:1121 +msgid "A label to prepend to the price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1032 +#: includes/admin/class-mp-shortcode-builder.php:1127 +msgid "What context for display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1004 +msgid "Set the alignment of the image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:998 +msgid "Set a custom pixel width/height. If omitted defaults to the size set by \"context\"." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:993 +msgid "Widget" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:988 +msgid "What context for preset size options." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:982 +#: includes/admin/class-mp-shortcode-builder.php:1026 +#: includes/admin/class-mp-shortcode-builder.php:1052 +#: includes/admin/class-mp-shortcode-builder.php:1077 +#: includes/admin/class-mp-shortcode-builder.php:1096 +#: includes/admin/class-mp-shortcode-builder.php:1115 +msgid "The ID of the product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:963 +msgid "Whether to display the product meta (e.g. price, buy button)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:738 +#: includes/admin/class-mp-shortcode-builder.php:905 +#: includes/admin/class-mp-shortcode-builder.php:958 +#: includes/admin/class-mp-shortcode-builder.php:992 +#: includes/admin/class-mp-shortcode-builder.php:1035 +#: includes/admin/class-mp-shortcode-builder.php:1130 +#: includes/admin/class-mp-shortcode-builder.php:1349 +msgid "List" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:957 +#: includes/admin/class-mp-shortcode-builder.php:991 +#: includes/admin/class-mp-shortcode-builder.php:1034 +#: includes/admin/class-mp-shortcode-builder.php:1129 +msgid "Single" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:953 +msgid "Whether and what context of image size to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:948 +msgid "Full" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:943 +msgid "Whether and what type of content to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:937 +msgid "Whether to display the product title." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:931 +msgid "The ID of the product to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:747 +#: includes/admin/class-mp-shortcode-builder.php:914 +msgid "Hide" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:746 +#: includes/admin/class-mp-shortcode-builder.php:913 +msgid "Show" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:744 +#: includes/admin/class-mp-shortcode-builder.php:911 +msgid "Whether or not to show the product filters." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:724 +#: includes/admin/class-mp-shortcode-builder.php:891 +#: includes/admin/class-mp-shortcode-builder.php:1335 +msgid "Limits list to a specific product tag." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:713 +#: includes/admin/class-mp-shortcode-builder.php:880 +#: includes/admin/class-mp-shortcode-builder.php:1324 +msgid "Limits list to a specific product category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:706 +#: includes/admin/class-mp-shortcode-builder.php:873 +#: includes/admin/class-mp-shortcode-builder.php:1317 +msgid "Direction to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:684 +#: includes/admin/class-mp-shortcode-builder.php:851 +#: includes/admin/class-mp-shortcode-builder.php:1295 +msgid "What field to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:678 +#: includes/admin/class-mp-shortcode-builder.php:845 +#: includes/admin/class-mp-shortcode-builder.php:1283 +msgid "How many products to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:672 +#: includes/admin/class-mp-shortcode-builder.php:839 +#: includes/admin/class-mp-shortcode-builder.php:1277 +msgid "The page number to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:666 +#: includes/admin/class-mp-shortcode-builder.php:833 +#: includes/admin/class-mp-shortcode-builder.php:1271 +msgid "Whether to paginate the product list. This is useful to only show a subset." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:808 +msgid "How many related items to show." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:790 +msgid "How to relate the products" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:784 +msgid "The product to show related items for." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:765 +msgid "The maximum number of products to display" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:647 +msgid "Comma separated list of tags (term_id) to include. For example, include=5,27 means tags that have the term_id 5 or 27 will be the only tags displayed. Defaults to include everything." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:641 +msgid "Comma separated list of tags (term_id) to exclude. For example, exclude=5,27 means tags that have the term_id 5 or 27 will NOT be displayed. Defaults to exclude nothing." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:633 +#: includes/admin/class-mp-shortcode-builder.php:1420 +msgid "Sort order." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:629 +#: includes/admin/class-mp-shortcode-builder.php:1416 +msgid "Count" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:626 +#: includes/admin/class-mp-shortcode-builder.php:1413 +msgid "Order of the tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:620 +msgid "The text/space between tags)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:616 +msgid "UL with a class of \"wp-tag-cloud\"" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:615 +msgid "separated by whitespace defined by \"separator\" parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:613 +msgid "Format of the cloud display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:607 +msgid "The number of actual tags to display in the cloud. (Use \"0\" to display all tags.)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:601 +msgid "Unit of measure as pertains to the smallest and largest values. This can be any CSS length value, e.g. pt, px, em, %." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:595 +msgid "The text size of the tag with the largest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:589 +msgid "The text size of the tag with the smallest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:570 +msgid "The \"tabindex\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:564 +msgid "The \"name\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:558 +msgid "The \"id\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:552 +msgid "Which category ID is selected." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:540 +msgid "The max depth. This is ignored unless hierarchical is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:536 +#: includes/multisite/template-functions.php:816 +msgid "No Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:414 +#: includes/admin/class-mp-shortcode-builder.php:546 +msgid "Calculates link or post counts by including items from child categories. If show_counts and hierarchical are true this is automatically set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:409 +msgid "Value of n (some number) specifies the depth (or level) to descend in displaying Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:408 +msgid "Show only top level Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:407 +msgid "All Categories displayed in flat (no indent) form (overrides hierarchical)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:406 +msgid "All Categories and child Categories (Default)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:402 +msgid "This parameter controls how many levels in the hierarchy of Categories are to be included in the list of Categories. NOTE: The \"hierarchical\" argument, which is disabled by default, will override the depth argument, unless it is true. When the argument is false, it will display all of the categories. When it is enabled it will use the value in the \"depth\" argument." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:396 +#: includes/admin/class-mp-shortcode-builder.php:1394 +msgid "Sets the number of Categories to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:390 +#: includes/admin/class-mp-shortcode-builder.php:534 +msgid "Set the text to show when no categories are listed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:384 +msgid "Set the title and style of the outer list item. If present but empty, the outer list item will not be displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:378 +#: includes/admin/class-mp-shortcode-builder.php:528 +msgid "Display sub-categories as inner list items (below the parent list item) or inline." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:368 +#: includes/admin/class-mp-shortcode-builder.php:511 +msgid "Exclude category-tree from the results. The parameter include must be empty. If the hierarchical parameter is true, then use exclude instead of exclude_tree." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:354 +msgid "Only include these categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:340 +#: includes/admin/class-mp-shortcode-builder.php:356 +#: includes/admin/class-mp-shortcode-builder.php:370 +#: includes/admin/class-mp-shortcode-builder.php:496 +#: includes/admin/class-mp-shortcode-builder.php:513 +msgid "Select Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:338 +#: includes/admin/class-mp-shortcode-builder.php:494 +msgid "Exclude one or more categories from the results. The parameter include must be empty." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:332 +msgid "Set a URI for an image (usually an rss feed icon) to act as a link to each categories' rss-2 feed. This parameter overrides the feed parameter. There is no default for this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:320 +msgid "Display a link to each category's rss-2 feed and set the link text to display. The default is no text and no feed displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:313 +#: includes/admin/class-mp-shortcode-builder.php:487 +msgid "Any" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:307 +#: includes/admin/class-mp-shortcode-builder.php:481 +msgid "Only display categories that are children of the category identified by this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:301 +msgid "Sets whether a category's description is inserted into the title attribute of the links created (i.e. <a title=\"<em>Category Description</em>\" href=\"...)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:295 +#: includes/admin/class-mp-shortcode-builder.php:475 +msgid "Toggles the display of categories with no posts." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:289 +#: includes/admin/class-mp-shortcode-builder.php:469 +#: includes/admin/class-mp-shortcode-builder.php:1388 +msgid "Toggles the display of the current count of posts in each category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:279 +msgid "Style to display the categories list in. A value of list displays the categories as list items while none generates no special display method (the list items are separated by
    tags)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:269 +#: includes/admin/class-mp-shortcode-builder.php:449 +#: includes/admin/class-mp-shortcode-builder.php:1378 +msgid "Sort order for categories (either ascending or descending)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:259 +#: includes/admin/class-mp-shortcode-builder.php:439 +#: includes/admin/class-mp-shortcode-builder.php:1368 +msgid "Sort categories alphabetically, by unique Category ID, or by the count of posts in that Category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:253 +#: includes/admin/class-mp-shortcode-builder.php:433 +msgid "If a value is entered, causes the display of a link to all categories if the style is set to list." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:219 +msgid "Select an Action" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:217 +msgid "What would you like to do?" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:216 +#: includes/admin/class-mp-shortcode-builder.php:1522 +msgid "Add E-Commerce Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:197 +msgid "Display a list of links to your store pages." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:196 +msgid "Display a link or url to the order status page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:195 +msgid "Display a link or url to the current products list page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:194 +msgid "Display a link or url to the current store page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:193 +msgid "Display a link or url to the current shopping cart page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:192 +msgid "Display the cart widget." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:191 +msgid "Display the full product meta box with price and buy now/add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:190 +msgid "Display the product stock." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:189 +msgid "Display the product SKU number(s)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:188 +msgid "Display the product price (and sale price)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:187 +msgid "Display the buy or add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:186 +msgid "Display the featured image of a given product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:185 +msgid "Display a single product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:184 +msgid "Display a list of products according to preference." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:183 +msgid "Display products related to the one being viewed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:182 +msgid "Display a list of popular products ordered by sales." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:180 +msgid "Display an HTML dropdown of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:179 +msgid "Display an HTML list of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:178 +msgid "Display a cloud or list of your product tags." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:655 +msgid "Setup your payment gateway" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:643 +#: includes/admin/class-mp-setup-wizard.php:649 +msgid "Other Gateways" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:617 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:150 +msgid "Select which calculated shipping methods the customer will be able to choose from." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:601 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:134 +#: includes/public/class-mp-checkout.php:82 +msgid "Shipping Method" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:568 +msgid "I want to charge shipping" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:523 +#: includes/admin/store-settings/class-mp-store-settings-general.php:503 +msgid "Show Price + Tax?" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:507 +msgid "I.e. Taxes, VAT, GST, etc" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:491 +#: includes/admin/store-settings/class-mp-store-settings-general.php:471 +msgid "Current Rates" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:473 +msgid "Default Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:434 +#: includes/admin/class-mp-setup-wizard.php:442 +#: includes/admin/store-settings/class-mp-store-settings-general.php:386 +#: includes/admin/store-settings/class-mp-store-settings-general.php:394 +#: includes/multisite/class-mp-admin-multisite.php:204 +#: includes/multisite/class-mp-admin-multisite.php:212 +msgid "Select a Currency" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:414 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:105 +msgid "Choose Countries" +msgstr "Seleziona i Paesi" + +#: includes/admin/class-mp-setup-wizard.php:411 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:103 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:104 +msgid "All Countries" +msgstr "Tutti i Paesi" + +#: includes/admin/class-mp-setup-wizard.php:410 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:102 +msgid "These are the countries that you will ship to." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:409 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:101 +msgid "Target Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:401 +msgid "Countries" +msgstr "Paesi" + +#: includes/admin/class-mp-setup-wizard.php:387 +#: includes/admin/store-settings/class-mp-store-settings-general.php:640 +msgid "Zip/Postal Code Label" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:352 +#: includes/admin/store-settings/class-mp-store-settings-general.php:606 +msgid "Select a State/Province/Region" +msgstr "Seleziona uno Stato/Provincia/Regione" + +#: includes/admin/class-mp-setup-wizard.php:335 +#: includes/admin/store-settings/class-mp-store-settings-general.php:590 +msgid "Select A Country" +msgstr "Seleziona un paese" + +#: includes/admin/class-mp-setup-wizard.php:332 +#: includes/admin/store-settings/class-mp-store-settings-general.php:587 +msgid "Select a Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:324 +msgid "Location" +msgstr "Setup Veloce" + +#: includes/admin/class-mp-setup-wizard.php:304 +#: includes/admin/class-mp-setup-wizard.php:312 +#: includes/admin/class-mp-store-settings-admin.php:129 +#: includes/admin/class-mp-store-settings-admin.php:262 +msgid "Quick Setup" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:289 +msgid "MarketPress setup is not complete! Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2479 +msgid "Enter your product name here" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2440 +msgid "Select a %s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2426 +msgid "Each product variation needs to have product attributes assigned to it so the system knows how to differentiate one product variation from the other. It is important that you assign a category to this product before choosing any attributes." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2409 +msgid "If you would like this variation to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2320 +msgid "Sale Price (if applicable)" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2281 +msgid "If you would like the description to be different than the main product enter it here." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2229 +msgid "Image" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2202 +#: includes/admin/class-mp-shortcode-builder.php:226 +msgid "Attributes" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2166 +msgid "Create your product variations here. You can reorder variations by using the number to left of each variation, or delete one by clicking the \"x\" to the right of each variation. NOTE: The variation that shows up first in this list will be considered the \"main variation\". The details from this variation will be used in product listings." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2061 +#: includes/admin/class-mp-products-admin.php:2332 +msgid "Value must be less than regular price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2043 +#: includes/admin/class-mp-products-admin.php:2306 +msgid "Regular Price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2023 +#: includes/admin/class-mp-products-admin.php:2286 +msgid "External URL" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1988 +#: includes/admin/class-mp-products-admin.php:2245 +msgid "Enter the quantity that you have available to sell." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1987 +#: includes/admin/class-mp-products-admin.php:2244 +msgid "Inventory Count" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1977 +#: includes/admin/class-mp-products-admin.php:2234 +msgid "Track Inventory?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1871 +msgid "%1$sProduct Images%2$s %3$sAdd images of the product. The first image on the list is the featured image for this product (you can reorder images on the list)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1806 +msgid "Add variations for this product. e.g. If you are selling t-shirts, you can create Color & Size variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1804 +msgid "%3$sAdd variations for%2$s %1$sProduct%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1776 +msgid "This product has a multiple variations %1$s(e.g. Multiple colors, sizes)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1775 +msgid "This is a unique product without variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1700 +msgid "Extra Shipping Cost %1$s(if applicable)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1659 +#: includes/admin/class-mp-products-admin.php:2112 +#: includes/admin/class-mp-products-admin.php:2359 +msgid "Weight" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1636 +#: includes/admin/class-mp-products-admin.php:2098 +#: includes/admin/class-mp-products-admin.php:2416 +msgid "Please enter a valid tax rate" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1531 +msgid "Limit Per Order %1$s(limit the number of the item a shopper can buy per order)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1513 +msgid "SKU %1$s(Stock Keeping Unit)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "%1$sPrice, Inventory & Variants%2$s %3$sSet price, manage inventory and create Product Variants (if appropriate for your product).%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "Product Variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1480 +msgid "External / Affiliate Link" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1471 +msgid "Digital Download" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1470 +msgid "Physical / Tangible Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1464 +msgid "Product Kind %1$s(Physical Product, Digital, etc)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1426 +msgid "Choose Products" +msgstr "Seleziona Prodotti" + +#: includes/admin/class-mp-products-admin.php:1420 +msgid "If you would like, you can choose specific related products instead of using the ones generated by MarketPress" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1019 +msgid "Changes saved successfully" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:826 +msgid "Option cannot be saved. Try again." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:821 +msgid "Option saved successfully." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:467 +msgid "Img" +msgstr "" + +#: includes/admin/class-mp-product-attributes-list-table.php:57 +msgid "Product attribute(s) deleted successfully." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:162 +msgid "- Create New Variation -" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:144 +msgid "Only lowercase letters and dashes (-) are allowed." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:139 +msgid "If a slug is not entered, it will be generated automatically. Max 32 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:138 +#: includes/admin/class-mp-product-attributes-list-table.php:23 +msgid "Slug" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:130 +msgid "Max 45 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:123 +msgid "Use the numbers on the left to sort. To delete - click the \"X\" to the right of each row." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:122 +msgid "Attribute Options" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:121 +msgid "Add Option" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:105 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:523 +msgid "Sort Order" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:87 +msgid "Alphabetical" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:86 +msgid "ID" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:84 +msgid "Select how the options will be sorted." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:82 +msgid "Sort By" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:75 +msgid "The name of the attribute (e.g. color, size, etc)" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:74 +msgid "Attribute Name" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:69 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Product Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Product Attributes" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:71 +msgid "You can choose to make this page one of the following core store pages." +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:66 +msgid "Network Store Base" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:61 +msgid "Checkout Page" +msgstr "Pagina del Carrello" + +#: includes/admin/class-mp-pages-admin.php:52 +msgid "Store Page Settings" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1108 +msgid "Display billing/shipping info for this customer" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1097 +msgid "View order “%s”" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1072 +msgid "Flag as:" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:952 +msgid "Move To Trash" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:948 +msgid " Received" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:927 +msgid "Enter coupon code here" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:812 +msgid "The order status could not be updated due to unexpected error. Please try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:740 +msgid "An invalid bulk action was requested. Please go back and try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:692 +msgid "The order status for order ID %1$s was updated successfully." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:688 +msgid "Order statuses successfully updated." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:530 +msgid "Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:518 +msgid "Actual Shipping Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:513 +msgid "Method Paid For" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:504 +msgid "Amount Collected" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:477 +msgid "DHL" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:408 +msgid "There is no IPN history to show at this time" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:345 +msgid "Type" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:343 +msgid "Gateway" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:301 +#: includes/common/template-functions.php:528 +msgid "Order History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:291 +msgid "IPN History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:283 +msgid "Customer Info" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:279 +msgid "Order Details" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:157 +msgid "All Dates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:320 +msgid "Add Pages to Menu" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:318 +msgid "Add-ons" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:317 +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "User Capabilities" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:316 +#: includes/admin/class-mp-setup-wizard.php:631 +#: includes/admin/store-settings/class-mp-store-settings-payments.php:50 +msgid "Payment Gateways" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:315 +msgid "Shipping Rates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:312 +msgid "Configure" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:309 +#: includes/admin/class-mp-products-admin.php:466 +#: includes/admin/class-mp-shortcode-builder.php:797 +msgid "Tags" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:308 +#: includes/admin/class-mp-products-admin.php:465 +msgid "Categories" +msgstr "Categorie" + +#: includes/admin/class-mp-dashboard-widgets.php:300 +msgid "Manage" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:297 +msgid "Here's some quick links to manage your store and products." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:288 +msgid "low in stock" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:287 +msgid "%s product" +msgid_plural "%s products" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-dashboard-widgets.php:280 +msgid "received" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:279 +#: includes/admin/class-mp-dashboard-widgets.php:283 +msgid "%s order" +msgid_plural "%s orders" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-dashboard-widgets.php:276 +msgid "Stock & Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:261 +msgid "Last 30 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:256 +msgid "Last 7 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:251 +msgid "Yesterday" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:248 +#: includes/admin/class-mp-dashboard-widgets.php:253 +#: includes/admin/class-mp-dashboard-widgets.php:258 +#: includes/admin/class-mp-dashboard-widgets.php:263 +msgid " Orders" +msgstr "Ordini" + +#: includes/admin/class-mp-dashboard-widgets.php:246 +msgid "Today" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:241 +msgid "Welcome back! Here's a quick summary of your store's performance." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:196 +#: includes/admin/class-mp-products-admin.php:895 +msgid "No products out of stock." +msgstr "Non ci sono prodotti in Stock." + +#: includes/admin/class-mp-dashboard-widgets.php:136 +#: includes/admin/class-mp-products-admin.php:839 +msgid "Stock Level" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:135 +#: includes/admin/class-mp-products-admin.php:838 +msgid "Variation" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:121 +msgid "Low Stock (%s)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:116 +msgid "Store Management" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:115 +msgid "Store Reports" +msgstr "" + +#: includes/admin/class-mp-ajax.php:579 +#: includes/admin/class-mp-orders-admin.php:520 +#: includes/common/payment-gateways/2checkout.php:370 +#: includes/common/payment-gateways/authorizenet-aim.php:264 +#: includes/common/payment-gateways/mollie.php:93 +#: includes/common/payment-gateways/paymill.php:196 +#: includes/common/payment-gateways/pin.php:190 +#: includes/common/payment-gateways/skrill.php:157 +#: includes/common/payment-gateways/skrill.php:168 +#: includes/common/payment-gateways/wepay.php:143 +#: includes/public/class-mp-checkout.php:404 +msgid "Select One" +msgstr "Seleziona il tuo" + +#: includes/admin/class-mp-ajax.php:511 +msgid "Oops... we could not locate any orders by that ID. Please double check your order ID and try again." +msgstr "" + +#: includes/admin/class-mp-ajax.php:482 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:166 +#: includes/multisite/class-mp-admin-multisite.php:584 +msgid "Edit Page" +msgstr "" + +#: includes/admin/class-mp-ajax.php:346 +msgid "Cancel " +msgstr "" + +#: includes/admin/class-mp-ajax.php:345 +msgid "Save " +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "Edit Description" +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "HTML Markup" +msgstr "" + +#: includes/admin/class-mp-ajax.php:333 +msgid "Plain Text Only" +msgstr "" + +#: includes/admin/class-mp-ajax.php:329 +msgid "Additional Content / Information for this Variation" +msgstr "" + +#: includes/admin/class-mp-ajax.php:317 +#: includes/admin/class-mp-products-admin.php:1762 +msgid "Allow this product to be purchased even if it's out of stock" +msgstr "" + +#: includes/admin/class-mp-ajax.php:313 +#: includes/admin/class-mp-products-admin.php:1711 +msgid "Track Product Inventory" +msgstr "" + +#: includes/admin/class-mp-ajax.php:300 +msgid "Extra Shipping Cost (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:295 +msgid "Ounces:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:294 +msgid "Pounds:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:292 +msgid "Kilograms:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:287 +#: includes/admin/class-mp-products-admin.php:1649 +msgid "Charge Shipping" +msgstr "" + +#: includes/admin/class-mp-ajax.php:273 +#: includes/admin/class-mp-products-admin.php:1623 +#: includes/admin/store-settings/class-mp-store-settings-general.php:454 +msgid "Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:272 +#: includes/admin/class-mp-products-admin.php:1622 +#: includes/admin/class-mp-products-admin.php:2090 +#: includes/admin/class-mp-products-admin.php:2408 +msgid "Special Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:271 +#: includes/admin/class-mp-products-admin.php:1625 +#: includes/admin/class-mp-products-admin.php:2092 +msgid "If you would like this product to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-ajax.php:268 +#: includes/admin/class-mp-products-admin.php:1599 +msgid "Charge Taxes (Special Rate)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:256 +#: includes/admin/class-mp-products-admin.php:1593 +#: includes/admin/class-mp-products-admin.php:2077 +#: includes/admin/class-mp-products-admin.php:2348 +msgid "End Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:255 +#: includes/admin/class-mp-products-admin.php:1589 +#: includes/admin/class-mp-products-admin.php:2072 +msgid "Start Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:1568 +msgid "Enter Sale Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:250 +#: includes/admin/class-mp-products-admin.php:1547 +msgid "Set up a Sale for this Product" +msgstr "" + +#: includes/admin/class-mp-ajax.php:206 includes/admin/class-mp-ajax.php:223 +msgid "Enter " +msgstr "" + +#: includes/admin/class-mp-ajax.php:193 +msgid "Browse" +msgstr "Naviga" + +#: includes/admin/class-mp-ajax.php:184 includes/admin/class-mp-ajax.php:192 +msgid "http://" +msgstr "" + +#: includes/admin/class-mp-ajax.php:183 +msgid "External Product URL" +msgstr "" + +#: includes/admin/class-mp-ajax.php:237 +msgid "Limit Per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:177 +#: includes/admin/class-mp-products-admin.php:1520 +msgid "Enter Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:174 +#: includes/admin/class-mp-products-admin.php:1512 +msgid "Enter SKU" +msgstr "" + +#: includes/admin/class-mp-ajax.php:173 +msgid "(Stock Keeping Unit)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:158 +msgid "Remove Image" +msgstr "" + +#: includes/admin/class-mp-ajax.php:74 +msgid "Variation Draft" +msgstr "" + +#: includes/admin/class-mp-admin.php:296 +#: includes/admin/class-mp-dashboard-widgets.php:70 +msgid "Please wait...saving in progress..." +msgstr "" + +#: includes/admin/class-mp-admin.php:295 +#: includes/admin/class-mp-dashboard-widgets.php:69 +msgid "Input is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:294 +#: includes/admin/class-mp-dashboard-widgets.php:68 +msgid "Valid number is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:292 +#: includes/admin/class-mp-dashboard-widgets.php:66 +msgid "Delete %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:291 +#: includes/admin/class-mp-dashboard-widgets.php:65 +msgid "Delete %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:290 +#: includes/admin/class-mp-dashboard-widgets.php:64 +msgid "Update inventory for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:289 +#: includes/admin/class-mp-dashboard-widgets.php:63 +msgid "Update inventory for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:288 +#: includes/admin/class-mp-dashboard-widgets.php:62 +msgid "Update price for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:287 +#: includes/admin/class-mp-dashboard-widgets.php:61 +msgid "Update prices for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:285 +#: includes/admin/class-mp-dashboard-widgets.php:59 +msgid "Creating variations, please wait..." +msgstr "" + +#: includes/admin/class-mp-admin.php:96 +msgid "The following payment gateways have been deprecated, Cubepoints, Bitpay, iDEAL, Skrill, Google Checkout. If you were using one of these gateways, please setup a new payment gateway here." +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:61 +msgid "Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:71 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:71 +#: includes/common/class-mp-gdpr.php:399 includes/common/class-mp-order.php:872 +#: includes/common/helpers.php:164 includes/public/class-mp-checkout.php:1434 +msgid "Shipping Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:66 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:66 +#: includes/common/class-mp-gdpr.php:392 includes/common/class-mp-order.php:864 +#: includes/common/helpers.php:163 includes/public/class-mp-checkout.php:1427 +msgid "Billing Address" +msgstr "Indirizzo di Fatturazione" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:61 +msgid "Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:258 +msgid "Shipping Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:256 +msgid "Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:235 +msgid "Payment Method: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:79 +msgid "The dir %s not exist or not writeable" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:239 +msgid "Shop header/logo" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:233 +msgid "Choose a template" +msgstr "Scegli un template" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:226 +msgid "Template Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:221 +msgid "Disable automatic creation/attachment of invoices when only free products are ordered" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:220 +msgid "Disable for free products" +msgstr "Disabilita per i prodotti gratuiti" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:216 +msgid "Attach invoice to" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:214 +msgid "Customer Order Shipped email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:212 +msgid "Customer New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:211 +msgid "Admin New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:206 +msgid "download" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:205 +msgid "How do you want to view the PDF?" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:203 +msgid "Open the PDF in a new browser tab/window" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:202 +msgid "Download the PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:158 +msgid "Export PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:103 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:106 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:109 +msgid "You can't download this order invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:76 +msgid "Invalid Request" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:72 +msgid "Order not exist!" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:67 +msgid "Invalid ID" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1293 +msgid "Coupon added successfully" +msgstr "Il coupon è stato applicato con successo" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1292 +msgid "Please enter a code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1247 +msgid "No end" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1200 +msgid "Valid Dates" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1195 +msgid "Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1027 +msgid "No Coupons found in Trash" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1026 +msgid "No Coupons Found" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1025 +msgid "Search Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1024 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1028 +msgid "View Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1023 +msgid "New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1020 +msgid "Create New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1017 +msgid "Manage Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1002 +msgid "An error occurred while removing your coupon. Please try again." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:964 +msgid "Coupon can't be applied to this cart" +msgstr "Il coupon non può essere utilizzato in questo Carrello" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:951 +msgid "Invalid coupon code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:794 +msgid "Help Text" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:789 +msgid "Form Title" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:783 +msgid "Coupons Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:764 +msgid "End Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:758 +msgid "Does coupon have an end date?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:696 +msgid "Select Products" +msgstr "Seleziona Prodotti" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:688 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:723 +#: includes/common/payment-gateways/paypal-payflow.php:402 +msgid "User" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:638 +msgid "Max Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:636 +msgid "Enter the maximum number of times this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:623 +msgid "Leave blank to allow all other coupons." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:622 +msgid "Select combinable coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:618 +msgid "Can this coupon be combined with other coupons?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:613 +msgid "Apply to each applicable item once per cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:612 +msgid "Apply to each applicable item and quantity ordered" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:609 +msgid "How should the discount amount be applied?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:605 +msgid "Discount Amount" +msgstr "Totale Sconto" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:604 +msgid "Value must either be a decimal number or a percentage" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:602 +msgid "If you would like to give a percentage-based discount make sure to include the percent (%) symbol. Otherwise, the discount will be applied as a fixed amount off." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:595 +msgid "Letters and Numbers only." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:589 +msgid "Coupon Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:447 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:795 +msgid "More than one code? That's OK! Just be sure to enter one at a time." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:444 +msgid "Apply Code" +msgstr "Conferma il tuo coupon" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:314 +msgid "Coupon Discounts" +msgstr "Sconto" + +#: includes/addons/class-mp-addons-list-table.php:89 +msgid "1 add-on disabled" +msgid_plural "%s add-ons disabled" +msgstr[0] "" +msgstr[1] "" + +#: includes/addons/class-mp-addons-list-table.php:84 +msgid "1 add-on enabled" +msgid_plural "%s add-ons enabled" +msgstr[0] "" +msgstr[1] "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Disabled" +msgstr "Disabilitato" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Enable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:129 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:67 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:135 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:168 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:202 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:263 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:296 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:330 +msgid "Enabled" +msgstr "Abilitato" + +#: includes/addons/class-mp-addons-list-table.php:45 +msgid "Disable add-on" +msgstr "Disabilita add-on" + +#: includes/addons/class-mp-addons-list-table.php:34 +msgid "Disable" +msgstr "Disabilita" + +#: includes/addons/class-mp-addons-list-table.php:33 +msgid "Enable" +msgstr "Abilita" + +#: includes/addons/class-mp-addons-list-table.php:21 +#: includes/admin/class-mp-products-admin.php:2280 +#: includes/common/class-mp-product.php:2916 +msgid "Description" +msgstr "Descrizione" + +#: includes/common/template-functions.php:2889 +#: includes/multisite/template-functions.php:407 +msgid "Popularity (Least Popular - Most Popular)" +msgstr "Popolarità (Meno popolare - più popolare)" + +#: includes/common/template-functions.php:2888 +#: includes/multisite/template-functions.php:406 +msgid "Popularity (Most Popular - Least Popular)" +msgstr "Popolarità (Più popolare - meno popolare)" + +#: includes/common/template-functions.php:2885 +#: includes/multisite/template-functions.php:403 +msgid "Name (Z-A)" +msgstr "Nome (Z-A)" + +#: includes/common/template-functions.php:2884 +#: includes/multisite/template-functions.php:402 +msgid "Name (A-Z)" +msgstr "Nome (A-Z)" + +#: includes/common/template-functions.php:2883 +#: includes/multisite/template-functions.php:401 +msgid "Release Date (Oldest to Latest)" +msgstr "Data di rilascio (dalla più vecchia alla più recente)" + +#: includes/common/template-functions.php:2882 +#: includes/multisite/template-functions.php:400 +msgid "Release Date (Latest to Oldest)" +msgstr "Data di rilascio (dalla più recente alla più vecchia)" + +#: includes/admin/class-mp-dashboard-widgets.php:284 +msgid "paid" +msgstr "pagato" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "One Time Pickup" +msgstr "Ritiro singolo" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Customer Counter" +msgstr "Contatore clienti" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Daily Pickup" +msgstr "Ritiro giornaliera" + +#: includes/common/shipping-modules/mp-ups.php:182 +msgid "For the most accurate rates, please select the appropriate pick up type for your business." +msgstr "Per avere tariffe più accurate, per favore seleziona la tipologia di ritiro preferita." + +#: includes/admin/class-mp-admin.php:374 +msgid "Page saved." +msgstr "Pagina salvata." + +#: includes/admin/class-mp-admin.php:370 +msgid "Custom field deleted." +msgstr "Campo personalizzato eliminato." + +#: includes/admin/class-mp-admin.php:369 +msgid "Custom field updated." +msgstr "Campo personalizzato aggiornato." + +#: includes/common/payment-gateways/_bitpay.php:541 +msgid "%s - The payment request expired, - %s" +msgstr "%s - Il pagamento richiesto è scaduto, - %s" + +#: includes/common/payment-gateways/_bitpay.php:536 +msgid "%s - The payment not credited in merchants bitpay account, action required. Bitpay invoice status - %s" +msgstr "%s - Il pagamento non è accreditato nell'account venditore Bitpay, azione richiesta. Status fattura Bitpay - %s" + +#: includes/common/payment-gateways/_bitpay.php:252 +msgid "If enabled, you will recieve an email for each status update on payment." +msgstr "Se abilitata, riceverai una email per ogni cambio di stato di pagamento." + +#: includes/common/payment-gateways/_bitpay.php:240 +msgid "Speed at which the bitcoin transaction registers as \"confirmed\" to the store. This overrides your merchant settings on the Bitpay website." +msgstr "Velocità con cui la transazione bitcoin viene registrata come \"confirmata\" nello store. Questa impostazione sovrascrive le impostazioni di Venditore nel sito Bitpay." + +#: includes/common/payment-gateways/_bitpay.php:238 +msgid "Transaction Speed" +msgstr "Velocità di transazione" + +#: includes/common/payment-gateways/_bitpay.php:244 +msgid "Low" +msgstr "Basso" + +#: includes/common/payment-gateways/_bitpay.php:243 +msgid "Medium" +msgstr "Medio" + +#: includes/common/payment-gateways/_bitpay.php:242 +msgid "High" +msgstr "Alto" + +#: includes/common/payment-gateways/_bitpay.php:177 +#: includes/common/payment-gateways/_bitpay.php:517 +#: includes/common/payment-gateways/_bitpay.php:522 +msgid "%s - The payment request is under process. Bitpay invoice status - %s" +msgstr "%s - Stiamo elaborando il pagamento richiesto. Stato della fattura Bitpay - %s" + +#: includes/common/payment-gateways/_bitpay.php:175 +#: includes/common/payment-gateways/_bitpay.php:527 +msgid "%s - The payment request has been processed - %s" +msgstr "%s - Il pagamento richiesto è stato elaborato - %s" + +#: includes/common/payment-gateways/_bitpay.php:150 +#: includes/common/payment-gateways/_bitpay.php:294 +msgid "Incorrect order invoice, please contact site administrator" +msgstr "La fattura dell'ordine è errata, per favore contatta l'amministratore del sito" + +#: includes/common/payment-gateways/_bitpay.php:141 +msgid "We could not verify order invoice details, please try again or contact site administrator for help" +msgstr "Non possiamo verificare i dettagli della fattura dell'ordine, per favore prova di nuovo oppure contatta l'amministratore per ricevere aiuto" + +#: includes/common/payment-gateways/simplify.php:81 +msgid "Login to Simplify to get your API credentials. Enter your test credentials, then live ones when ready." +msgstr "Autenticati in Simplify to per ottenere le tue credenziali API. Inserisci le tue credenziali test, successivamente quelle in produzione quando sei pronto." + +#: includes/common/payment-gateways/paypal-express.php:605 +#: includes/common/payment-gateways/paypal-express.php:647 +msgid "Express Checkout is PayPal's premier checkout solution, which streamlines the checkout process for buyers and keeps them on your site after making a purchase. Unlike PayPal Pro, there are no additional fees to use Express Checkout, though you may need to do a free upgrade to a business account. More Info »" +msgstr "Express Checkout è una soluzione premier di PayPal, che snellisce il processo per il compratore, mantenendolo sul tuo sito web dopo l'acquisto. Diversamente da PayPal Pro, non ci sono costi addizionali per usare Express Checkout, anche se hai bisogno di fare un upgrade free ad un account businness. Più informazioni »" + +#. Plugin URI of the plugin/theme +msgid "https://premium.wpmudev.org/project/e-commerce/" +msgstr "https://premium.wpmudev.org/project/e-commerce/" + +#. Author of the plugin/theme +msgid "WPMU DEV" +msgstr "WPMU DEV" + +#: includes/admin/class-mp-orders-admin.php:541 +#: includes/admin/class-mp-orders-admin.php:543 +msgid "Tracking Number" +msgstr "Numero di tracking" + +#: includes/common/class-mp-order.php:805 +#: includes/common/payment-gateways/stripe.php:336 +#: includes/public/class-mp-checkout.php:402 +msgid "Country" +msgstr "Nazione" + +#: includes/common/class-mp-order.php:784 +#: includes/common/payment-gateways/stripe.php:338 +msgid "City" +msgstr "Città" + +#: includes/common/class-mp-order.php:780 +msgid "Address 2" +msgstr "Indirizzo 2" + +#: includes/common/payment-gateways/stripe.php:340 +msgid "Address" +msgstr "Indirizzo" + +#: includes/common/class-mp-cart.php:752 includes/common/class-mp-gdpr.php:378 +msgid "Order Total" +msgstr "Totale Ordine" + +#: includes/admin/class-mp-orders-admin.php:360 +msgid "Payment Total" +msgstr "Pagamento totale" + +#: includes/admin/class-mp-orders-admin.php:347 +msgid "Transaction ID" +msgstr "ID transazione" + +#: includes/common/payment-gateways/wepay.php:207 +msgid "The WePay Card Token was not generated correctly. Please go back and try again." +msgstr "Il Token WePay Card non è stato generato in modo corretto. Per favore torna indietro e riprova." + +#: includes/common/payment-gateways/wepay.php:186 +#: includes/common/shipping-modules/mp-fedex.php:283 +msgid "Account ID" +msgstr "Account ID" + +#: includes/common/payment-gateways/wepay.php:179 +msgid "Access Token" +msgstr "Access Token" + +#: includes/common/payment-gateways/wepay.php:172 +msgid "Client Secret" +msgstr "Client Secret" + +#: includes/common/payment-gateways/wepay.php:165 +msgid "Client ID" +msgstr "Client ID" + +#: includes/common/payment-gateways/wepay.php:159 +msgid "You must login to WePay to get your API credentials. Make sure to check \"Tokenize credit cards\" option under \"API Keys\" section of your WePay app." +msgstr "Devi fare il login in WePay per ottenere le tue API credentials. Presta attenzione di selezionare l'opzione \"Tokenize credit cards\" nella sezione \"API Keys\" della tua WePay app." + +#: includes/common/payment-gateways/wepay.php:154 +msgid "When in live mode it is recommended to use SSL certificate setup for the site where the checkout form will be displayed." +msgstr "Quando sei in modalità live è raccomandato impostare un certificato SSL peri l sito quando il form di pagamento viene mostrato." + +#: includes/common/payment-gateways/wepay.php:148 +msgid "Donation" +msgstr "Donazione" + +#: includes/common/payment-gateways/wepay.php:147 +msgid "Event" +msgstr "Evento" + +#: includes/common/payment-gateways/wepay.php:146 +msgid "Personal" +msgstr "Personale" + +#: includes/common/payment-gateways/wepay.php:145 +msgid "Service" +msgstr "Servizio" + +#: includes/common/payment-gateways/wepay.php:144 +msgid "Goods" +msgstr "Beni" + +#: includes/common/payment-gateways/wepay.php:141 +msgid "Choose type of payments" +msgstr "Scegli tipogie di pagamenti" + +#: includes/common/payment-gateways/wepay.php:140 +msgid "Checkout Type" +msgstr "Tipologia di pagamento" + +#: includes/common/payment-gateways/wepay.php:134 +msgid "Staging" +msgstr "Staging" + +#: includes/common/payment-gateways/wepay.php:131 +msgid "Choose STAGING if you have registered the app on stage.wepay.com, or PRODUCTION if you registered on www.wepay.com" +msgstr "Scegli STAGING se hai registrato l'app su stage.wepay.com, o PRODUCTION se hai registrato l'app su www.wepay.com" + +#: includes/common/payment-gateways/wepay.php:36 +#: includes/common/payment-gateways/wepay.php:299 +msgid "WePay" +msgstr "WePay" + +#: includes/common/payment-gateways/_payway.php:366 +msgid "Rejected - A payment was rejected." +msgstr "Respinto - Il pagamento è stato respinto." + +#: includes/common/payment-gateways/_payway.php:360 +msgid "Failed - A payment was rejected due to an error." +msgstr "Fallita - Il pagamento è stato respinto a causa di un errore." + +#: includes/common/payment-gateways/_payway.php:342 +msgid "PayWay balance, Credit Card, or Instant Transfer" +msgstr "Saldo PayWay, Carta di credito o trasferimenti instantanei" + +#: includes/common/payment-gateways/_payway.php:298 +msgid "Full path of the cacerts.crt file" +msgstr "Percorso completo verso il file cacerts.crt" + +#: includes/common/payment-gateways/_payway.php:284 +msgid "User Name" +msgstr "User Name" + +#: includes/common/payment-gateways/_payway.php:277 +msgid "Biller Code" +msgstr "Codice fatturazione" + +#: includes/common/payment-gateways/_payway.php:273 +msgid "Log Directory" +msgstr "Cartella Log" + +#: includes/common/payment-gateways/_payway.php:266 +msgid "Encryption Key" +msgstr "Encryption Key" + +#: includes/common/payment-gateways/_payway.php:60 +msgid "Your PayWay transaction has been canceled." +msgstr "La tua transazione PayWay è stata cancellata." + +#: includes/common/payment-gateways/_payway.php:40 +#: includes/common/payment-gateways/_payway.php:41 +msgid "PayWay" +msgstr "PayWay" + +#: includes/common/payment-gateways/paypal-chained-payments.php:862 +msgid "You must register this application with PayPal using your business account login to get an Application ID that will work with your API credentials. A bit of a hassle, but worth it! In the near future we will be looking for ways to simplify this process. Register then submit your application while logged in to the developer portal. Note that you do not need an Application ID for testing in sandbox mode. More Information »" +msgstr "Devi registrare questa applicazione con PayPal usando il tuo account bisiness in modo da ottenere il tuo Application ID che si userà con le tue credenziali API. Un po fastidioso ma ne vale la pena! Prossimamente cercheremo di semplificare questo processo. Registrati e invia la tua applicazione mentre sei autenticato nel portale sviluppatori. Nota che non hai bisogno di un Application ID per testare in modalità sandbox. Più informazioni »" + +#: includes/common/payment-gateways/paypal-chained-payments.php:818 +#: includes/common/payment-gateways/paypal-chained-payments.php:840 +#: includes/common/payment-gateways/paypal-express.php:705 +msgid "You must login to PayPal and create an API signature to get your credentials. Instructions »" +msgstr "Devi fare il login al tuo account PayPal e creare una firma API signature in modo da otterene le tue credenziali. Istruzioni »" + +#: includes/common/payment-gateways/paypal-payflow.php:378 +msgid "Use Payflow payment gateway to accept online payments using your Internet merchant account and processing network. PayPal Payflow Pro is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway." +msgstr "Usa il gateway di pagamento Payflow per accettare pagamenti on line usando il tuo account da venditore. PayPal Payflow Pro è un processo di pagamento personalizzabile che permette al venditore di avere il controllo in tutti gli step relativi alla transazione. Richiede un certificato SSL." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:595 +msgid "Tags Only" +msgstr "Solo tags" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:594 +msgid "Category Only" +msgstr "Solo Categoria" + +#: includes/admin/class-mp-shortcode-builder.php:795 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:593 +msgid "Category & Tags" +msgstr "Categoria & Tags" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:591 +msgid "Relate Products By" +msgstr "Relazionare i prodotti per" + +#: includes/admin/class-mp-shortcode-builder.php:1008 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:455 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:751 +msgid "Right" +msgstr "A Destra" + +#: includes/admin/class-mp-shortcode-builder.php:1007 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:454 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:749 +msgid "Left" +msgstr "A Sinistra" + +#: includes/admin/class-mp-shortcode-builder.php:1009 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:750 +msgid "Center" +msgstr "Al Centro" + +#: marketpress.php:273 +msgid "Orders from your e-commerce store." +msgstr "Ordini dal vostro e-commerce." + +#: marketpress.php:231 +msgid "Products for your e-commerce store." +msgstr "Prodotti per il tuo negozio e-commerce." + +#: marketpress.php:222 +msgid "Edit Product" +msgstr "Modifica il prodotto" + +#. Description of the plugin/theme +msgid "The complete WordPress ecommerce plugin - works perfectly with BuddyPress and Multisite too to create a social marketplace, where you can take a percentage! Activate the plugin, adjust your settings then add some products to your store." +msgstr "Il plugin ecommerce Wordpress completo - funziona perfettamente con BuddyPress e Multisite in modo da creare una rete di vendita social dove tu puoi ottenere una percentuale! Attiva il plugin, perfeziona le impostazioni e aggiunti qualche prodotto al tuo negozio." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:272 +msgid "Beside" +msgstr "Accanto" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:271 +msgid "Above" +msgstr "Sopra" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:268 +msgid "Pin Count" +msgstr "Contatore Pin" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:261 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:287 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:318 +msgid "All View" +msgstr "Vedi Tutti" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:260 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:286 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:317 +msgid "Single View" +msgstr "Vista Singola" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:259 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:285 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:316 +msgid "Off" +msgstr "Disattivato" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:578 +msgid "Related Product Limit" +msgstr "Limite prodotti correlati" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:681 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1201 +msgid "Applies To" +msgstr "Applica a" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:685 +msgid "All Products" +msgstr "Tutti i prodotti" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:487 +msgid "The label shown for the tax line item in the cart. Taxes, VAT, GST, etc." +msgstr "L'etichetta mostrata nella linea imposte nel carrello. Imposte, IVA GST etc..." + +#: includes/admin/class-mp-setup-wizard.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:485 +msgid "Tax Label" +msgstr "Etichetta Tassa" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:81 +msgid "Apply" +msgstr "Applica" + +#: includes/admin/class-mp-admin.php:192 +msgid "MarketPress Instructions" +msgstr "Istruzioni di MarketPress" + +#: includes/admin/class-mp-products-admin.php:1954 +#: includes/admin/class-mp-products-admin.php:2194 includes/common/data.php:62 +#: includes/common/helpers.php:150 +msgid "Taxes" +msgstr "IVA e tasse" + +#: includes/admin/class-mp-products-admin.php:1417 +#: includes/common/class-mp-product.php:2900 +msgid "Related Products" +msgstr "Prodotti collegati" + +#: includes/common/shipping-modules/mp-usps.php:282 +#: includes/common/shipping-modules/mp-usps.php:316 +msgid "@ Max" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "(3-5 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "Priority Mail Express International Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:92 +msgid "Priority Mail Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:171 +#: includes/common/shipping-modules/mp-pickup.php:247 +msgid "In Store" +msgstr "In negozio" + +#: includes/common/shipping-modules/mp-pickup.php:159 +msgid "Pickup Fee" +msgstr "Tariffa di ritiro" + +#: includes/common/shipping-modules/mp-pickup.php:141 +msgid "This option allows your customers to indicate that they will pick-up their order at your place of business." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:60 +#: includes/common/shipping-modules/mp-pickup.php:76 +#: includes/common/shipping-modules/mp-pickup.php:176 +msgid "Pickup Instructions" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:24 +#: includes/common/shipping-modules/mp-pickup.php:254 +msgid "Pickup" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping - 0.00" +msgstr "Spedizione Gratuita - 0.00" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:256 +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:440 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping" +msgstr "Spedizione Gratuita" + +#: includes/common/shipping-modules/mp-fedex.php:309 +msgid "Your Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:301 +msgid "Station" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:300 +msgid "Request Courier" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:299 +msgid "Drop Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:298 +msgid "Business Service Center" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:297 +msgid "Regular Pickup" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:135 +#: includes/common/shipping-modules/mp-fedex.php:264 +msgid "Production" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:207 +msgid "Simplify Commerce by MasterCard" +msgstr "Simplify Commerce by MasterCard" + +#: includes/common/payment-gateways/simplify.php:104 +msgid "When in live mode, although it is not required, Simplify recommends you have an SSL certificate." +msgstr "Quando in produzione, anche se non richiesto, Simplify raccomenda di avere un certificato SSL." + +#: includes/common/payment-gateways/paymill.php:183 +#: includes/common/payment-gateways/simplify.php:87 +msgid "Public Key" +msgstr "Public Key" + +#: includes/common/payment-gateways/paymill.php:175 +#: includes/common/payment-gateways/simplify.php:94 +msgid "Private Key" +msgstr "Private Key" + +#: includes/common/payment-gateways/simplify.php:71 +msgid "Simplify helps merchants to accept online payments from Mastercard, Visa, American Express, Discover, JCB, and Diners Club cards. It's that simple. We offer a merchant account and payment gateway in a single, secure package so you can concentrate on what really matters to your business. Only supports USD currently." +msgstr "Simplify aiuta i commercianti ad accettare pagamenti on line da Mastercard, Visa, American Express, Discover, JCB, and Diners Club cards. E' semplice. Offriamo un account di venditore e un gateway di pagamento in un pacchetto sicuro in modo che puoi concentrarti su cosa davvero serve al tuo business. Supporto solo valuta USD in questo momento." + +#: includes/common/payment-gateways/wepay.php:267 +msgid "%1$s" +msgstr "%1$s" + +#: includes/common/payment-gateways/simplify.php:151 +msgid "The Simplify Token was not generated correctly. Please go back and try again." +msgstr "Il token Simplify non è stato generato in modo corretto. Riprova per favore." + +#: includes/common/payment-gateways/simplify.php:18 +msgid "Simplify" +msgstr "Simplify" + +#: includes/common/payment-gateways/pin.php:255 +msgid "%1$s Card %2$s" +msgstr "%1$s carta %2$s" + +#: includes/common/payment-gateways/pin.php:211 +msgid "The PIN Token was not generated correctly. Please go back and try again." +msgstr "Il PIN token non è stato generato in modo corretto. Torna indietro e riprova per favore." + +#: includes/common/payment-gateways/pin.php:187 +msgid "Selecting a currency other than currency supported by PIN may cause problems at checkout." +msgstr "Selezionando una valuta diversa rispetto a quella supportata da PIN potrebbe causare problemi nel momento di pagamento." + +#: includes/common/payment-gateways/pin.php:164 +msgid "You must login to PIN to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "Devi fare il login per PIN e ottenere le tue credenziali API. Puoi inserire le tue chiavi test, e poi aggiornarle con quelle in produzione quando sei pronto." + +#: includes/common/payment-gateways/pin.php:158 +msgid "When in live mode PIN recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "Quando sei in produzione PIN raccomanda di avere un certificato SSL impostato nel sito quando il form di pagamento viene mostrato." + +#: includes/common/payment-gateways/pin.php:45 +#: includes/common/payment-gateways/pin.php:286 +msgid "PIN" +msgstr "PIN" + +#: includes/common/payment-gateways/paypal-express.php:830 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:534 +#: includes/common/payment-gateways/paypal-express.php:865 +msgid "The payment is pending" +msgstr "Il pagamento è in attesa" + +#: includes/common/payment-gateways/paymill.php:235 +msgid "The Paymill Token was not generated correctly. Please go back and try again." +msgstr "Il token Paymill non è stato generato in modo corretto. Torna indietro e riprova." + +#: includes/common/payment-gateways/paymill.php:169 +msgid "You must login to Paymill to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "Devi fare il login su Paymill per ottenere le tue API credentials. Puoi inserire le tue chiavi test, o quelle in produzione quando sei pronto." + +#: includes/common/payment-gateways/paymill.php:45 +#: includes/common/payment-gateways/paymill.php:308 +msgid "Paymill" +msgstr "Paymill" + +#: includes/common/payment-gateways/paymill.php:90 +msgid "Invalid cardholder" +msgstr "Titolare della carta non valido" + +#: includes/common/payment-gateways/paymill.php:89 +msgid "Card is no longer valid or has expired" +msgstr "La carta non è più valida o è scaduta" + +#: includes/common/payment-gateways/paymill.php:88 +msgid "Please enter a valid Card CVC" +msgstr "Per favore inserisci un codice CVC valido" + +#: includes/common/payment-gateways/paymill.php:87 +msgid "Please choose a valid Expiration Date." +msgstr "Per favore inserisci una data di scadenza valida." + +#: includes/common/payment-gateways/skrill.php:99 +#: includes/common/payment-gateways/skrill.php:100 +msgid "Skrill (Moneybookers)" +msgstr "Skrill (Moneybookers)" + +#: includes/common/shipping-modules/mp-weight-rate.php:24 +#: includes/common/shipping-modules/mp-weight-rate.php:292 +msgid "Weight Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:303 +msgid "USPS Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:270 +msgid "USPS Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:264 +msgid "USPS Settings" +msgstr "Impostazioni USPS" + +#: includes/common/shipping-modules/mp-usps.php:145 +msgid "Flat Rate Large" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:140 +msgid "Flat Rate Medium 2" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:135 +msgid "Flat Rate Medium 1" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:130 +msgid "Flat Rate Small" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:118 +msgid "First Class International Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:114 +msgid "Priority Mail International Small Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:112 +msgid "Priority Mail International Medium Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:110 +msgid "Priority Mail International Large Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:108 +msgid "Priority Mail International" +msgstr "Posta Prioritaria Internazionale" + +#: includes/common/shipping-modules/mp-usps.php:106 +msgid "Express Mail International Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:104 +msgid "Express Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:98 +msgid "Library Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:96 +msgid "Media Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "First-Class Mail Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:90 +msgid "Priority Mail Small Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:88 +msgid "Priority Mail Medium Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +#: includes/common/shipping-modules/mp-usps.php:88 +#: includes/common/shipping-modules/mp-usps.php:90 +#: includes/common/shipping-modules/mp-usps.php:92 +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "(2-4 days)" +msgstr "(2-4 giorni)" + +#: includes/common/shipping-modules/mp-usps.php:86 +msgid "Priority Mail Large Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "(2-4) days" +msgstr "(2-4) giorni" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "Priority Mail" +msgstr "Posta Prioritaria" + +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "Express Mail Sunday/Holiday Delivery Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:80 +msgid "Express Mail Flat Rate Boxes Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:78 +msgid "Express Mail Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:76 +msgid "Express Mail Sunday/Holiday Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:74 +msgid "Express Mail Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:72 +#: includes/common/shipping-modules/mp-usps.php:74 +#: includes/common/shipping-modules/mp-usps.php:76 +#: includes/common/shipping-modules/mp-usps.php:78 +#: includes/common/shipping-modules/mp-usps.php:80 +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "(1-2 days)" +msgstr "(1-2 giorni)" + +#: includes/common/shipping-modules/mp-usps.php:72 +msgid "Express Mail" +msgstr "Posta Espresso" + +#: includes/common/shipping-modules/mp-usps.php:67 +#: includes/common/shipping-modules/mp-usps.php:902 +msgid "USPS" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:534 +msgid "UPS (beta)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:166 +msgid "Required if using negotiated rates" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "Saver" +msgstr "Saver" + +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "Worldwide Express Plus" +msgstr "Tutto il mondo Espresso Plus" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "(Scheduled)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "Standard" +msgstr "Standard" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "(2-5 Days)" +msgstr "(2-5 giorni)" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "Worldwide Expedited" +msgstr "Spedito in tutto il mondo" + +#: includes/common/shipping-modules/mp-ups.php:54 +msgid "Worldwide Express" +msgstr "Espresso in tutto il mondo" + +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "2nd Day Air AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "(1 Days)" +msgstr "(1 giorno)" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "Next Day Air Early AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "Next Day Air Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "3 Day Select" +msgstr "3 Day Select" + +#: includes/common/shipping-modules/mp-ups.php:49 +msgid "Ground" +msgstr "Ground" + +#: includes/common/shipping-modules/mp-ups.php:48 +msgid "2nd Day Air" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "Next Day Air" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:475 +#: includes/common/shipping-modules/mp-ups.php:43 +msgid "UPS" +msgstr "UPS" + +#: includes/common/shipping-modules/mp-table-rate.php:27 +#: includes/common/shipping-modules/mp-table-rate.php:318 +msgid "Table Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:71 +#: includes/common/shipping-modules/mp-table-quantity.php:77 +msgid "Shipping Cost: " +msgstr "Costo di spedizione:" + +#: includes/common/shipping-modules/mp-table-quantity.php:70 +#: includes/common/shipping-modules/mp-table-quantity.php:76 +msgid "If quantity is greater than:" +msgstr "Se la quantità è maggiore di:" + +#: includes/common/shipping-modules/mp-table-quantity.php:66 +msgid "Each band must be a higher price than the one above it." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:56 +msgid "Number of Bands:" +msgstr "Numero di Livelli:" + +#: includes/common/shipping-modules/mp-table-quantity.php:53 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Each layer must be a higher quantity than the previous." +msgstr "Controlla di aver inserito un costo di spedizione per ogni opzione oppure questi clienti potrebbero ottenere una spedizione gratuita." + +#: includes/common/shipping-modules/mp-table-quantity.php:51 +msgid "Table Quantity Settings" +msgstr "Impostazioni Table Rate" + +#: includes/common/shipping-modules/mp-table-quantity.php:31 +msgid "Table Quantity" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:135 +#: includes/common/shipping-modules/mp-table-rate.php:174 +#: includes/common/shipping-modules/mp-weight-rate.php:189 +msgid "European Union" +msgstr "Unione Europea" + +#: includes/common/shipping-modules/mp-flat-rate.php:123 +#: includes/common/shipping-modules/mp-table-rate.php:162 +#: includes/common/shipping-modules/mp-weight-rate.php:177 +msgid "United States" +msgstr "Stati Uniti" + +#: includes/common/shipping-modules/mp-flat-rate.php:111 +#: includes/common/shipping-modules/mp-table-rate.php:151 +#: includes/common/shipping-modules/mp-weight-rate.php:166 +msgid "In Country" +msgstr "Domestica" + +#: includes/common/shipping-modules/mp-flat-rate.php:146 +#: includes/common/shipping-modules/mp-table-rate.php:186 +#: includes/common/shipping-modules/mp-weight-rate.php:201 +msgid "International" +msgstr "Internazionale" + +#: includes/common/shipping-modules/mp-flat-rate.php:101 +#: includes/common/shipping-modules/mp-table-rate.php:141 +#: includes/common/shipping-modules/mp-weight-rate.php:156 +msgid "Canada" +msgstr "Canada" + +#: includes/common/shipping-modules/mp-flat-rate.php:92 +#: includes/common/shipping-modules/mp-table-rate.php:132 +#: includes/common/shipping-modules/mp-weight-rate.php:147 +msgid "Hawaii and Alaska" +msgstr "Hawaii e Alaska" + +#: includes/common/shipping-modules/mp-flat-rate.php:83 +#: includes/common/shipping-modules/mp-table-rate.php:123 +#: includes/common/shipping-modules/mp-weight-rate.php:138 +msgid "Lower 48 States" +msgstr "Lower 48 States" + +#: includes/common/shipping-modules/mp-flat-rate.php:64 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping." +msgstr "Controlla di aver inserito un costo di spedizione per ogni opzione oppure questi clienti potrebbero ottenere una spedizione gratuita." + +#: includes/common/shipping-modules/mp-flat-rate.php:25 +#: includes/common/shipping-modules/mp-flat-rate.php:223 +msgid "Flat Rate" +msgstr "Tariffa Fissa" + +#: includes/common/shipping-modules/mp-fedex.php:761 +msgid "FedEx (beta)" +msgstr "FedEx (beta)" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Centimeters" +msgstr "Centimetri" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Inches" +msgstr "Pollici" + +#: includes/admin/class-mp-products-admin.php:1676 +#: includes/admin/class-mp-setup-wizard.php:547 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:166 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +msgid "Kilograms" +msgstr "Kilogrammi" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:103 +msgid " %1$s - %2$s" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:358 +msgid "Max Weight per Box" +msgstr "Peso Massimo per Scatola" + +#: includes/common/shipping-modules/mp-usps.php:356 +msgid "Box Dimensions" +msgstr "Dimensioni della Scatola" + +#: includes/common/shipping-modules/mp-usps.php:354 +msgid "Box Name" +msgstr "Nome della Scatola" + +#: includes/common/shipping-modules/mp-usps.php:344 +msgid "Total weight selects the box size used for calculating Shipping costs." +msgstr "Il peso totale seleziona la misura della scatola utilizzata per calcolare le spese di spedizione." + +#: includes/common/shipping-modules/mp-usps.php:343 +msgid "For each box defined enter the maximum weight it can contain." +msgstr "Per ogni scatola definita inserisci il massimo peso che può contenere" + +#: includes/common/shipping-modules/mp-usps.php:341 +msgid "Enter your standard box sizes as LengthxWidthxHeight" +msgstr "Inserisci la misura della tua scatola standard come LunghezzaxLarghezzaxAltezza" + +#: includes/common/shipping-modules/mp-fedex.php:386 +#: includes/common/shipping-modules/mp-ups.php:193 +#: includes/common/shipping-modules/mp-usps.php:234 +#: includes/common/shipping-modules/mp-usps.php:338 +msgid "Standard Boxes and Weight Limits" +msgstr "Scatole Standard e Limiti di Peso" + +#: includes/common/shipping-modules/mp-usps.php:328 +msgid "Handling Charge per Interntional Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:294 +msgid "Handling Charge per Domestic Shipment " +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:388 +#: includes/common/shipping-modules/mp-ups.php:196 +#: includes/common/shipping-modules/mp-usps.php:237 +msgid "Add Box" +msgstr "Aggiungi una Scatola" + +#: includes/common/shipping-modules/mp-fedex.php:63 +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "(Next Day)" +msgstr "(Giorno Successivo)" + +#: includes/common/shipping-modules/mp-fedex.php:63 +msgid "Europe First International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:62 +msgid "International Priority" +msgstr "International Priority" + +#: includes/common/shipping-modules/mp-fedex.php:61 +#: includes/common/shipping-modules/mp-fedex.php:62 +#: includes/common/shipping-modules/mp-ups.php:54 +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "(1-3 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:61 +msgid "International First" +msgstr "International First" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "(5 Days)" +msgstr "(5 giorni)" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "International Economy" +msgstr "International Economy" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "(2-7 Days)" +msgstr "(2-7 giorni)" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "Smart Post" +msgstr "Smart Post" + +#: includes/common/shipping-modules/mp-fedex.php:55 +#: includes/common/shipping-modules/mp-ups.php:49 +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "(1-5 Days)" +msgstr "(1-5 giorni)" + +#: includes/common/shipping-modules/mp-fedex.php:55 +msgid "Ground Home Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "(1-7 Days)" +msgstr "(1-7 giorni)" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "Fedex Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:53 +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "(3 Days)" +msgstr "(3 giorni)" + +#: includes/common/shipping-modules/mp-fedex.php:53 +msgid "Fedex Express Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +#: includes/common/shipping-modules/mp-ups.php:48 +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "(2 Days)" +msgstr "(2 giorni)" + +#: includes/common/shipping-modules/mp-fedex.php:52 +msgid "Fedex 2 Day" +msgstr "Fedex 2 giorni" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "(2 Days am)" +msgstr "(2 giorni in mattinata)" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "Fedex 2 Day AM" +msgstr "Fedex 2 Giorni in mattinata" + +#: includes/common/shipping-modules/mp-fedex.php:50 +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "(1 Day)" +msgstr "(1 giorno)" + +#: includes/common/shipping-modules/mp-fedex.php:50 +msgid "Standard Overnight" +msgstr "Standard Overnight" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "(1 Day am )" +msgstr "(1 giorno in mattinata )" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "Priority Overnight" +msgstr "Priority Overnight" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "(1 Day am)" +msgstr "(1 giorno in mattinata )" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "First Overnight" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:476 +#: includes/common/shipping-modules/mp-fedex.php:31 +msgid "FedEx" +msgstr "FedEx" + +#: includes/common/payment-gateways/paymill.php:270 +#: includes/common/payment-gateways/simplify.php:179 +#: includes/common/payment-gateways/stripe.php:365 +msgid "%1$s Card ending in %2$s - Expires %3$s" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:259 +#: includes/common/payment-gateways/pin.php:238 +#: includes/common/payment-gateways/simplify.php:171 +msgid "%s Store Purchase - Order ID: %s, Email: %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:266 +msgid "You must login to Stripe to get your API credentials. You can enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:261 +msgid "When in live mode Stripe recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:311 +msgid "The Stripe Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:263 +#: includes/common/payment-gateways/paymill.php:122 +#: includes/common/payment-gateways/stripe.php:222 +msgid "Card Number" +msgstr "Carta numero" + +#: includes/common/payment-gateways/paymill.php:86 +msgid "Please enter a valid Credit Card Number." +msgstr "Inserire un numero valido di Carta di Credito" + +#: includes/common/payment-gateways/stripe.php:45 +#: includes/common/payment-gateways/stripe.php:433 +msgid "Stripe" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:750 +msgid "Sets the background color for the payment page. By default, the color is white." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:745 +msgid "Sets the background color for the header of the payment page. By default, the color is white." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:740 +msgid "Sets the border color around the header of the payment page. The border is a 2-pixel perimeter around the header space, which is 750 pixels wide by 90 pixels high. By default, the color is black." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:735 +msgid "URL for an image you want to appear at the top left of the payment page. The image has a maximum size of 750 pixels wide by 90 pixels high. PayPal recommends that you provide an image that is stored on a secure (https) server. If you do not specify an image, the business name is displayed." +msgstr "URL dell'immagine che desideri che appaia in alto a sinistra della pagina di pagamento. L'immagine deve avere una misura massima di 750 pixels larghezza per 90 pixels di altezza. PayPal raccomanda che l'immagine provveduta sia memorizzata su un server sicuro (https). Se non è specificata un'immagine, sarà visualizzato il nome dell'attività." + +#: includes/common/payment-gateways/paypal-express.php:857 +#: includes/common/payment-gateways/paypal-express.php:1131 +msgid "The payment is pending because it is part of an order that has been authorized but not settled." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:853 +#: includes/common/payment-gateways/paypal-express.php:1127 +msgid "The payment is pending because it has been authorized but not settled. You must capture the funds first." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:847 +#: includes/common/payment-gateways/paypal-express.php:1120 +msgid "You denied the payment when it was marked as pending." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:837 +#: includes/common/payment-gateways/paypal-express.php:1108 +msgid "A reversal has occurred on this transaction due to an unknown reason." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:836 +#: includes/common/payment-gateways/paypal-express.php:1107 +msgid "A reversal has occurred on this transaction because you have given the customer a refund." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:835 +#: includes/common/payment-gateways/paypal-express.php:1106 +msgid "A reversal has occurred on this transaction due to a complaint about the transaction from your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:834 +#: includes/common/payment-gateways/paypal-express.php:1105 +msgid "A reversal has occurred on this transaction due to your customer triggering a money-back guarantee." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:833 +#: includes/common/payment-gateways/paypal-express.php:1104 +msgid "A reversal has occurred on this transaction due to a chargeback by your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:1101 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer:" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:826 +#: includes/common/payment-gateways/paypal-express.php:1097 +msgid "A payment has been accepted." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:818 +#: includes/common/payment-gateways/paypal-express.php:1087 +msgid "The transaction has not terminated, e.g. an authorization may be awaiting completion." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:531 +#: includes/common/payment-gateways/paypal-express.php:810 +#: includes/common/payment-gateways/paypal-express.php:1077 +msgid "The payment has failed. This happens only if the payment was made from your customer's bank account." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:806 +#: includes/common/payment-gateways/paypal-express.php:1072 +msgid "An authorization for this transaction has been voided." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:802 +#: includes/common/payment-gateways/paypal-express.php:1067 +msgid "The authorization period for this payment has been reached." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:798 +#: includes/common/payment-gateways/paypal-express.php:1062 +msgid "A reversal has been canceled; for example, when you win a dispute and the funds for the reversal have been returned to you." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:499 +#: includes/common/payment-gateways/paypal-express.php:1163 +msgid "PayPal Express Checkout" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:798 +msgid "Gateway Settings Page Message" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:725 +msgid "Signature" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:506 +#: includes/common/payment-gateways/eway31.php:533 +#: includes/common/shipping-modules/mp-fedex.php:276 +msgid "API Password" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:773 +msgid "Enter a percentage of all store sales to collect as a fee. Decimals allowed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:757 +msgid "Using PayPal Chained Payments allows you as the multisite network owner to collect a predefined fee or percentage of all sales on network MarketPress stores! This is invisible to the customers who purchase items in a store, and all PayPal fees will be charged to the store owner. To use this option you must create API credentials, and you should make all other gateways unavailable or limited above." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:338 +msgid "Please be aware that we will deduct a ?% fee from the total of each transaction in addition to any fees PayPal may charge you. If for any reason you need to refund a customer for an order, please contact us with a screenshot of the refund receipt in your PayPal history as well as the Transaction ID of our fee deduction so we can issue you a refund. Thank you!" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:698 +#: includes/common/payment-gateways/paypal-express.php:149 +msgid "There was a problem connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:470 +#: includes/common/payment-gateways/paypal-express.php:1053 +msgid "There was a problem verifying the IPN string with PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:310 +msgid "There was a problem connecting to PayPal to check the status of your purchase. Please check the status of your order here »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:539 +#: includes/common/payment-gateways/paypal-chained-payments.php:254 +#: includes/common/payment-gateways/paypal-express.php:1139 +msgid "The payment is pending." +msgstr "Il Pagamento è pendente." + +#: includes/common/payment-gateways/paypal-chained-payments.php:251 +#: includes/common/payment-gateways/paypal-chained-payments.php:531 +#: includes/common/payment-gateways/paypal-express.php:862 +#: includes/common/payment-gateways/paypal-express.php:1136 +msgid "The payment is pending for an unknown reason. For more information, contact PayPal customer service." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:250 +#: includes/common/payment-gateways/paypal-chained-payments.php:530 +#: includes/common/payment-gateways/paypal-express.php:861 +#: includes/common/payment-gateways/paypal-express.php:1135 +msgid "The payment is pending because you are not yet verified. You must verify your account before you can accept this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:249 +#: includes/common/payment-gateways/paypal-chained-payments.php:529 +#: includes/common/payment-gateways/paypal-express.php:860 +#: includes/common/payment-gateways/paypal-express.php:1134 +msgid "The payment is pending because it was made via credit card and you must upgrade your account to Business or Premier status in order to receive the funds. It can also mean that you have reached the monthly limit for transactions on your account." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:248 +#: includes/common/payment-gateways/paypal-chained-payments.php:528 +#: includes/common/payment-gateways/paypal-express.php:859 +#: includes/common/payment-gateways/paypal-express.php:1133 +msgid "The payment is pending because it was made to an email address that is not yet registered or confirmed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:247 +#: includes/common/payment-gateways/paypal-chained-payments.php:527 +#: includes/common/payment-gateways/paypal-express.php:858 +#: includes/common/payment-gateways/paypal-express.php:1132 +msgid "The payment is pending while it is being reviewed by PayPal for risk." +msgstr "Il pagamento è in sospeso perché sotto revisione da PayPal." + +#: includes/common/payment-gateways/paypal-chained-payments.php:246 +#: includes/common/payment-gateways/paypal-chained-payments.php:526 +#: includes/common/payment-gateways/paypal-express.php:856 +#: includes/common/payment-gateways/paypal-express.php:1130 +msgid "You do not have a balance in the currency sent, and you do not have your Payment Receiving Preferences set to automatically convert and accept this payment. You must manually accept or deny this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:245 +#: includes/common/payment-gateways/paypal-chained-payments.php:525 +#: includes/common/payment-gateways/paypal-express.php:855 +#: includes/common/payment-gateways/paypal-express.php:1129 +msgid "The payment is pending because you hold a non-U.S. account and do not have a withdrawal mechanism. You must manually accept or deny this payment from your Account Overview." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:244 +#: includes/common/payment-gateways/paypal-chained-payments.php:524 +#: includes/common/payment-gateways/paypal-express.php:854 +#: includes/common/payment-gateways/paypal-express.php:1128 +msgid "The payment is pending because it was made by an eCheck that has not yet cleared." +msgstr "Il pagamento è sospeso perchè è stato fatto con un eCheck che non è stato ancora incassato." + +#: includes/common/payment-gateways/paypal-chained-payments.php:243 +#: includes/common/payment-gateways/paypal-chained-payments.php:523 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:236 +#: includes/common/payment-gateways/paypal-chained-payments.php:516 +msgid "The transaction was rejected by the receiver (you)." +msgstr "La transazione è stata rifiutata dal ricevente (tu)." + +#: includes/common/payment-gateways/paypal-chained-payments.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:510 +#: includes/common/payment-gateways/paypal-express.php:843 +#: includes/common/payment-gateways/paypal-express.php:1115 +msgid "You refunded the payment." +msgstr "Hai rimborsato il pagamento." + +#: includes/common/payment-gateways/paypal-chained-payments.php:224 +#: includes/common/payment-gateways/paypal-chained-payments.php:504 +msgid "The transaction is in progress." +msgstr "La transazione è in avanzamento." + +#: includes/common/payment-gateways/paypal-chained-payments.php:212 +#: includes/common/payment-gateways/paypal-chained-payments.php:491 +#: includes/common/payment-gateways/paypal-express.php:814 +#: includes/common/payment-gateways/paypal-express.php:1082 +msgid "The payment has been partially refunded." +msgstr "Il Pagamento è stato parzialmente rimborsato." + +#: includes/common/payment-gateways/paypal-chained-payments.php:202 +#: includes/common/payment-gateways/paypal-chained-payments.php:481 +msgid "PayPal balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:177 +msgid "There was a problem connecting to PayPal to setup your purchase. Please try again." +msgstr "C'è stato un problema di collegamento di PayPal. Per favore riprova." + +#: includes/common/payment-gateways/paypal-chained-payments.php:122 +msgid "Your PayPal transaction has been canceled." +msgstr "La tua transazione PayPal è stata cancellata." + +#: includes/common/payment-gateways/paypal-chained-payments.php:50 +#: includes/common/payment-gateways/paypal-chained-payments.php:53 +#: includes/common/payment-gateways/paypal-chained-payments.php:732 +#: includes/common/payment-gateways/paypal-express.php:500 +#: includes/common/payment-gateways/paypal-express.php:938 +msgid "PayPal" +msgstr "PayPal" + +#: includes/common/payment-gateways/paypal-chained-payments.php:48 +#: includes/common/payment-gateways/paypal-chained-payments.php:730 +#: includes/common/payment-gateways/paypal-chained-payments.php:756 +#: includes/common/payment-gateways/paypal-chained-payments.php:873 +msgid "PayPal Chained Payments" +msgstr "PayPal Pagamenti Concatenati " + +#: includes/common/payment-gateways/paypal-payflow.php:59 +#: includes/common/payment-gateways/paypal-payflow.php:467 +msgid "PayPal Payflow Pro" +msgstr "PayPal Payflow Pro" + +#: includes/common/payment-gateways/skrill.php:378 +msgid "Chargeback - A payment was reversed due to a chargeback. The funds have been removed from your account balance and returned to the buyer." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:372 +msgid "Failed - The Credit Card or Direct Debit transaction was declined." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:354 +#: includes/common/payment-gateways/skrill.php:366 +msgid "Cancelled - The payment was cancelled manually by the sender in their online account history or was auto-cancelled after 14 days pending." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:360 +msgid "Pending - The payment is pending. It can take 2-3 days for bank transfers to complete." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:349 +#: includes/common/payment-gateways/skrill.php:354 +msgid "Processed - The payment has been completed, and the funds have been added successfully to your Moneybookers account balance." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:189 +msgid "Shown to the customer on the confirmation screen - the end step of the process - a note, confirmation number, or any other message. Line breaks <br> may be used for longer messages." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:188 +msgid "Confirmation Note (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:183 +msgid "The URL of the logo which you would like to appear at the top of the payment form. The logo must be accessible via HTTPS otherwise it will not be shown. For best integration results we recommend that you use a logo with dimensions up to 200px in width and 50px in height." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:182 +msgid "Logo Image (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:177 +msgid "The name of this store, which will be shown on the gateway. If no value is submitted, the account email will be shown as the recipient of the payment." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:176 +msgid "Merchant Name (optional)" +msgstr "Nome Venditore (opzionale)" + +#: includes/common/payment-gateways/skrill.php:165 +msgid "Language" +msgstr "Lingua" + +#: includes/common/payment-gateways/2checkout.php:368 +#: includes/common/payment-gateways/authorizenet-aim.php:262 +#: includes/common/payment-gateways/eway.php:363 +#: includes/common/payment-gateways/eway31.php:471 +#: includes/common/payment-gateways/mollie.php:91 +#: includes/common/payment-gateways/paymill.php:193 +#: includes/common/payment-gateways/paypal-chained-payments.php:356 +#: includes/common/payment-gateways/paypal-express.php:688 +#: includes/common/payment-gateways/paypal-payflow.php:432 +#: includes/common/payment-gateways/pin.php:186 +#: includes/common/payment-gateways/skrill.php:152 +#: includes/common/payment-gateways/stripe.php:288 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:104 +msgid "Currency" +msgstr "Valuta" + +#: includes/common/payment-gateways/2checkout.php:359 +#: includes/common/payment-gateways/skrill.php:143 +msgid "Secret Word" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:261 +msgid "Order ID:" +msgstr "ID Ordine:" + +#: includes/common/payment-gateways/skrill.php:234 +msgid "Complete Checkout" +msgstr "Completa il Checkout" + +#: includes/common/payment-gateways/skrill.php:204 +msgid "Your Moneybookers transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:155 +msgid "This is the email text to send to those who have made manual payment checkouts. You should include your manual payment instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:257 +#: includes/common/payment-gateways/manual-payments.php:128 +msgid "Record payments manually, such as by Cash, Check, or EFT." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:71 +msgid "Manual/Invoice" +msgstr "Manuale/Fattura" + +#: includes/admin/class-mp-setup-wizard.php:648 +#: includes/common/payment-gateways/manual-payments.php:35 +#: includes/common/payment-gateways/manual-payments.php:36 +msgid "Manual Payment" +msgstr "Pagamento Manuale" + +#: includes/common/payment-gateways/manual-payments.php:34 +#: includes/common/payment-gateways/manual-payments.php:163 +msgid "Manual Payments" +msgstr "Pagamenti Manuali" + +#: includes/common/payment-gateways/_ideal.php:288 +msgid "iDEAL Simulator (for testing)" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:287 +msgid "ABN Amro Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:286 +msgid "Friesland Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:285 +msgid "Rabobank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:284 +msgid "ING Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:279 +msgid "Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:270 +msgid "To make it easier to pay for online products and services, the Dutch banking community has developed the iDEAL online payment method. iDEAL allows online payments to be made using online banking in EUR only." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:247 +#: includes/common/payment-gateways/_payway.php:199 +#: includes/common/payment-gateways/manual-payments.php:68 +msgid "Invoiced" +msgstr "Fatturato" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1016 +msgid "Coupon" +msgstr "Coupon" + +#: includes/common/payment-gateways/_ideal.php:77 +#: includes/common/payment-gateways/_ideal.php:250 +#: includes/common/payment-gateways/_payway.php:202 +msgid "iDEAL" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:76 +msgid "iDEAL (beta)" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:327 +msgid "Merchant Key" +msgstr "Chiave Venditore" + +#: includes/common/payment-gateways/_ideal.php:293 +#: includes/common/payment-gateways/_payway.php:302 +#: includes/common/payment-gateways/payfast.php:324 +msgid "Merchant ID" +msgstr "ID Venditore" + +#: includes/common/payment-gateways/eway31.php:462 +msgid "eWay Rapid 3.0 Payments lets merchants recieve credit card payments through eWay without need for users to leave the shop. Note this gateway requires a valid SSL certificate configured for this site." +msgstr "" + +#: includes/common/payment-gateways/eway.php:452 +msgid "There was a problem connecting to eWay. Please try again." +msgstr "C'è stato un problema di collegamento di eWay. Per favore riprova." + +#: includes/common/payment-gateways/eway.php:432 +#: includes/common/payment-gateways/eway.php:437 +msgid "The url of the image can be hosted on your website and pass the secure https:// path of the image to be displayed at the top of the website. This is the second image block on the webpage and is restricted to 960px X 65px. A default secure image is used if none is supplied." +msgstr "" + +#: includes/common/payment-gateways/eway.php:431 +#: includes/common/payment-gateways/eway.php:436 +msgid "Company Logo (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:427 +msgid "The page footer text can be customised and populated below the customer's order details. Useful for contact information." +msgstr "" + +#: includes/common/payment-gateways/eway.php:426 +msgid "Page Footer (optional)" +msgstr "Footer della Pagina (opzionale)" + +#: includes/common/payment-gateways/eway.php:421 +msgid "Page Description (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:417 +#: includes/common/payment-gateways/eway.php:422 +msgid "This value is used to populate the browsers title bar at the top of the screen." +msgstr "" + +#: includes/common/payment-gateways/eway.php:416 +msgid "Page Title (optional)" +msgstr "Titolo della Oagina (opzionale)" + +#: includes/common/payment-gateways/eway.php:412 +msgid "This will be displayed as the company the customer is purchasing from, including this is highly recommended." +msgstr "" + +#: includes/common/payment-gateways/eway.php:411 +msgid "Company Name" +msgstr "" + +#: includes/common/payment-gateways/eway.php:394 +msgid "Customer ID" +msgstr "ID Customer" + +#: includes/common/payment-gateways/eway.php:381 +#: includes/common/payment-gateways/eway31.php:488 +msgid "Live API Credentials" +msgstr "Credenziali API Live" + +#: includes/common/payment-gateways/eway.php:371 +#: includes/common/payment-gateways/eway31.php:479 +msgid "Gateway Mode" +msgstr "Modalità Gateway" + +#: includes/common/payment-gateways/eway.php:354 +msgid "The Hosted Page is a webpage hosted on eWAY's side eliminating the need for merchants to capture, transmit or store credit card numbers. At the checkout time the merchant automatically redirects the customer to the Hosted Page where they would enter their details and have the transaction processed. Upon completion of the transaction the customer is redirected back to the MarketPress checkout confirmation page." +msgstr "" + +#: includes/common/payment-gateways/eway.php:314 +msgid "There was a problem with your credit card information: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:300 +msgid "Paid - The card has been processed - %s" +msgstr "Pagato - la carta è stata processata - %s" + +#: includes/common/payment-gateways/eway.php:253 +msgid "There was a problem setting up the transaction with eWay: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:245 +#: includes/common/payment-gateways/eway.php:289 +msgid "There was a problem parsing the response from eWay. Please try again." +msgstr "C'è stato un problema nel ricevere la risposta di eWay. Per favore riprova." + +#: includes/common/payment-gateways/_ideal.php:159 +#: includes/common/payment-gateways/eway.php:189 +#: includes/common/payment-gateways/paypal-chained-payments.php:634 +#: includes/common/payment-gateways/paypal-express.php:322 +#: includes/common/payment-gateways/paypal-express.php:473 +msgid "%s Store Purchase - Order ID: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:147 +#: includes/common/payment-gateways/eway.php:462 +msgid "eWay Shared Payments" +msgstr "eWay Pagamenti Condivisi " + +#: includes/common/payment-gateways/_cubepoints.php:214 +msgid "This is the email text to send to those who have made CubePoints checkouts. You should include your CubePoints instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:212 +#: includes/common/payment-gateways/free_orders.php:188 +#: includes/common/payment-gateways/manual-payments.php:154 +msgid "Order Confirmation Email" +msgstr "Email Conferma Ordine" + +#: includes/common/payment-gateways/_cubepoints.php:207 +#: includes/common/payment-gateways/manual-payments.php:149 +msgid "Confirmation User Instructions" +msgstr "Istruzioni per la Conferma" + +#: includes/common/payment-gateways/_cubepoints.php:202 +#: includes/common/payment-gateways/manual-payments.php:144 +msgid "User Instructions" +msgstr "Istruzioni per l'Utente" + +#: includes/common/payment-gateways/_cubepoints.php:198 +#: includes/common/payment-gateways/free_orders.php:170 +#: includes/common/payment-gateways/manual-payments.php:139 +msgid "Enter a public name for this payment method that is displayed to users - No HTML" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:532 +#: includes/common/payment-gateways/_cubepoints.php:196 +#: includes/common/payment-gateways/free_orders.php:169 +#: includes/common/payment-gateways/manual-payments.php:138 +msgid "Method Name" +msgstr "Nome Metodo" + +#: includes/common/payment-gateways/_cubepoints.php:187 +msgid "Accept CubePoints as payment(requires the CubePoints plugin)." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:140 +msgid "Sorry, but you do not appear to have enough points to complete this purchase!" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:124 +msgid "%s Store Purchase" +msgstr "%s Acquisti Negozio" + +#: includes/common/payment-gateways/_cubepoints.php:79 +#: includes/common/payment-gateways/_cubepoints.php:171 +msgid "Your current points: " +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:133 +#: includes/common/payment-gateways/_cubepoints.php:197 +msgid "CubePoints" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:344 +msgid "Authorize.net AIM Checkout" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:331 +msgid "Custom API URL" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:332 +msgid "Many other gateways have Authorize.net API emulators. To use one of these gateways input their API post url here." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:322 +msgid "Request a delimited response from the payment gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:316 +msgid "Security: MD5 Hash" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:317 +msgid "The payment gateway generated MD5 hash value that can be used to authenticate the transaction response. Not needed because responses are returned using an SSL connection." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:306 +msgid "Customer Receipt Email Footer" +msgstr "Footer Email" + +#: includes/common/payment-gateways/authorizenet-aim.php:296 +msgid "Customer Receipt Email Header" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:297 +#: includes/common/payment-gateways/paypal-payflow.php:446 +msgid "This text will appear as the header of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:282 +msgid "Encapsulation Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:283 +msgid "Authorize.net default is blank. Otherwise, get this from your credit card processor. If the transactions are going through, but getting strange responses, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:273 +msgid "Optional settings to control advanced options" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:224 +#: includes/common/payment-gateways/authorizenet-aim.php:272 +msgid "Advanced Settings" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:253 +msgid "Transaction Key" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:246 +msgid "Login ID" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:396 +msgid "Gateway Credentials" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:221 +msgid "Authorize.net AIM is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway. USD is the only currency supported by this gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:205 +msgid "There was a problem finalizing your purchase. %s Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:519 +#: includes/common/payment-gateways/paypal-chained-payments.php:218 +#: includes/common/payment-gateways/paypal-chained-payments.php:498 +#: includes/common/payment-gateways/paypal-express.php:822 +#: includes/common/payment-gateways/paypal-express.php:1092 +msgid "The payment has been completed, and the funds have been added successfully to your account balance." +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:233 +msgid "Please enter a valid credit card security code" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:224 +#: includes/public/class-mp-checkout.php:867 +msgid "Please enter a valid credit card number" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:221 +msgid "Please enter your credit card number" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:217 +msgid "Please enter your credit card security code" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:213 +msgid "Please select your credit card expiration date." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:299 +#: includes/common/payment-gateways/authorizenet-aim.php:50 +#: includes/common/payment-gateways/eway.php:148 +#: includes/common/payment-gateways/eway.php:298 +#: includes/common/payment-gateways/eway31.php:267 +#: includes/common/payment-gateways/paymill.php:46 +#: includes/common/payment-gateways/paypal-express.php:972 +#: includes/common/payment-gateways/paypal-payflow.php:60 +#: includes/common/payment-gateways/pin.php:46 +#: includes/common/payment-gateways/simplify.php:19 +#: includes/common/payment-gateways/stripe.php:46 +#: includes/common/payment-gateways/wepay.php:37 +msgid "Credit Card" +msgstr "Carta di Credito" + +#: includes/common/payment-gateways/authorizenet-aim.php:49 +msgid "Authorize.net Checkout" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:156 +#: includes/common/payment-gateways/stripe.php:293 +msgid "Selecting a currency other than that used for your store may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:352 +msgid "Seller ID" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:340 +#: includes/common/payment-gateways/_ideal.php:311 +#: includes/common/payment-gateways/authorizenet-aim.php:234 +#: includes/common/payment-gateways/eway.php:376 +#: includes/common/payment-gateways/payfast.php:315 +#: includes/common/payment-gateways/paypal-chained-payments.php:368 +#: includes/common/payment-gateways/paypal-express.php:699 +#: includes/common/payment-gateways/paypal-payflow.php:391 +msgid "Live" +msgstr "Live" + +#: includes/common/payment-gateways/2checkout.php:339 +#: includes/common/payment-gateways/authorizenet-aim.php:233 +#: includes/common/payment-gateways/eway.php:375 +#: includes/common/payment-gateways/paypal-chained-payments.php:367 +#: includes/common/payment-gateways/paypal-express.php:698 +#: includes/common/payment-gateways/paypal-payflow.php:390 +#: includes/common/shipping-modules/mp-fedex.php:263 +msgid "Sandbox" +msgstr "Sandbox" + +#: includes/common/payment-gateways/2checkout.php:336 +#: includes/common/payment-gateways/_ideal.php:307 +#: includes/common/payment-gateways/authorizenet-aim.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:365 +#: includes/common/payment-gateways/paypal-express.php:695 +#: includes/common/payment-gateways/paypal-payflow.php:387 +#: includes/common/payment-gateways/wepay.php:130 +#: includes/common/shipping-modules/mp-fedex.php:260 +msgid "Mode" +msgstr "Modalità" + +#: includes/common/payment-gateways/2checkout.php:288 +#: includes/common/payment-gateways/mijireh.php:242 +#: includes/common/payment-gateways/mollie.php:212 +msgid "The order has been received" +msgstr "L'ordine è stato ricevuto" + +#: includes/common/payment-gateways/2checkout.php:74 +#: includes/common/payment-gateways/2checkout.php:75 +#: includes/common/payment-gateways/2checkout.php:435 +msgid "2Checkout" +msgstr "VAI ALLA CASSA" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:306 +msgid "Confirm" +msgstr "Conferma" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:218 +#: includes/common/class-mp-cart.php:974 includes/common/class-mp-cart.php:1354 +#: includes/common/template-functions.php:918 +msgid "Checkout" +msgstr "Vai alla Cassa" + +#: includes/common/template-functions.php:207 +msgid "Check Order Status" +msgstr "Controlla lo Stato dell'Ordine" + +#: includes/common/template-functions.php:235 +msgid "View Products" +msgstr "Visualizza Prodotti" + +#: includes/common/template-functions.php:263 +msgid "Visit Store" +msgstr "Visita Negozio" + +#: includes/common/template-functions.php:2912 +#: includes/multisite/template-functions.php:448 +msgid "Order By" +msgstr "Ordina" + +#: includes/common/template-functions.php:2887 +#: includes/multisite/template-functions.php:405 +msgid "Price (High to Low)" +msgstr "" + +#: includes/common/template-functions.php:2886 +#: includes/multisite/template-functions.php:404 +msgid "Price (Low to High)" +msgstr "" + +#: includes/common/template-functions.php:2881 +#: includes/multisite/template-functions.php:399 +msgid "Default" +msgstr "Predefinito" + +#: includes/common/template-functions.php:2858 +msgid "Show All" +msgstr "Mostra tutto" + +#: includes/common/class-mp-product.php:2048 +msgid "View Larger Image »" +msgstr "Vedi immagine più grande »" + +#: includes/common/class-mp-product.php:979 +msgid "Out of Stock" +msgstr "Esaurito" + +#: includes/common/template-functions.php:148 +msgid "Price: " +msgstr "Prezzo:" + +#: includes/multisite/template-functions.php:833 +msgid "No Tags" +msgstr "Nessuna Tag" + +#: includes/common/template-functions.php:3162 +msgid "Uncategorized" +msgstr "Non categorizzato" + +#: includes/common/class-mp-cart.php:569 includes/common/class-mp-order.php:604 +#: includes/common/helpers.php:115 +msgid "Download" +msgstr "Download" + +#: includes/common/class-mp-cart.php:1353 +msgid "Empty Cart" +msgstr "Svuota il carrello" + +#: includes/common/payment-gateways/_payway.php:291 +#: includes/common/payment-gateways/paypal-express.php:718 +#: includes/common/payment-gateways/paypal-payflow.php:423 +#: includes/common/shipping-modules/mp-ups.php:158 +#: includes/public/class-mp-checkout.php:1254 +#: includes/public/class-mp-checkout.php:1383 +msgid "Password" +msgstr "Password" + +#: includes/common/payment-gateways/eway.php:387 +#: includes/common/payment-gateways/paypal-express.php:711 +#: includes/common/shipping-modules/mp-usps.php:185 +#: includes/public/class-mp-checkout.php:1249 +msgid "Username" +msgstr "Nome Utente" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:437 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:790 +msgid "Have a coupon code?" +msgstr "Hai un coupon ?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:321 +#: includes/admin/class-mp-orders-admin.php:526 +#: includes/common/class-mp-cart.php:592 +msgid "Remove" +msgstr "Rimuovi" + +#: includes/admin/class-mp-ajax.php:316 +msgid "Quantity:" +msgstr "Quantità:" + +#: includes/admin/class-mp-products-admin.php:2140 +#: includes/admin/class-mp-products-admin.php:2387 +#: includes/common/shipping-modules/class-mp-shipping-api.php:507 +msgid "Extra Shipping Cost" +msgstr "Costo di spedizione extra" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:403 +msgid "Choose a Shipping Method:" +msgstr "Scegli un Metodo di Spedizione:" + +#: includes/admin/class-mp-products-admin.php:1691 +#: includes/admin/class-mp-products-admin.php:2131 +#: includes/admin/class-mp-products-admin.php:2378 +#: includes/common/shipping-modules/class-mp-shipping-api.php:228 +msgid "Ounces" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1684 +#: includes/admin/class-mp-products-admin.php:2123 +#: includes/admin/class-mp-products-admin.php:2369 +#: includes/admin/class-mp-setup-wizard.php:546 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:165 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +#: includes/common/shipping-modules/class-mp-shipping-api.php:227 +msgid "Pounds" +msgstr "Pounds" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:226 +msgid "Product Weight:" +msgstr "Peso Prodotto:" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:214 +msgid "Weight (Kilograms)" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:82 +msgid "Number of Categories:" +msgstr "Numero di Categorie:" + +#: includes/admin/widgets/ms-global-categories.php:72 +msgid "Product Count" +msgstr "Conta Prodotti" + +#: includes/addons/class-mp-addons-list-table.php:20 +#: includes/admin/class-mp-product-attributes-admin.php:129 +#: includes/admin/class-mp-product-attributes-list-table.php:22 +#: includes/admin/class-mp-products-admin.php:2216 +#: includes/admin/class-mp-shortcode-builder.php:628 +#: includes/admin/class-mp-shortcode-builder.php:1415 +#: includes/admin/widgets/ms-global-categories.php:70 +#: includes/common/shipping-modules/mp-fedex.php:395 +#: includes/common/shipping-modules/mp-ups.php:202 +#: includes/common/shipping-modules/mp-usps.php:243 +#: includes/public/class-mp-checkout.php:314 +msgid "Name" +msgstr "Nome" + +#: includes/admin/widgets/ms-global-categories.php:67 +msgid "Order Categories By:" +msgstr "Ordina Categorie per:" + +#: includes/admin/widgets/ms-global-categories.php:24 +#: includes/admin/widgets/ms-global-categories.php:50 +msgid "Global Product Categories" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:15 +msgid "Global Product Category List" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:13 +msgid "Displays a network-wide HTML list of product categories from network MarketPress stores." +msgstr "Mostra una lista di Categorie Prodotto globale." + +#: includes/admin/widgets/ms-global-tag-cloud.php:24 +#: includes/admin/widgets/ms-global-tag-cloud.php:45 +msgid "Global Product Tags" +msgstr "Tag Prodotti Globale" + +#: includes/admin/widgets/ms-global-tag-cloud.php:15 +msgid "Global Product Tag Cloud" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:947 +#: includes/admin/widgets/ms-global-product-list.php:173 +msgid "Excerpt" +msgstr "Riassunto" + +#: includes/admin/widgets/ms-global-product-list.php:169 +msgid "Content To Show:" +msgstr "Contenuto da mostrare:" + +#: includes/admin/widgets/ms-global-product-list.php:140 +msgid "Limit To Product Tag:" +msgstr "Limita alla Tag:" + +#: includes/admin/widgets/ms-global-product-list.php:132 +msgid "Limit To Product Category:" +msgstr "Limita alla categoria Prodotto:" + +#: includes/admin/widgets/ms-global-product-list.php:72 +msgid "Global Products" +msgstr "Prodotti Globali" + +#: includes/admin/widgets/ms-global-product-list.php:16 +msgid "Global Product List" +msgstr "Lista Prodotti Globale" + +#: includes/admin/widgets/ms-global-product-list.php:14 +msgid "Shows a customizable global list of products from network MarketPress stores." +msgstr "" + +#: includes/common/class-mp-product.php:974 +#: includes/multisite/template-functions.php:731 +msgid "Buy Now »" +msgstr "Compra Adesso »" + +#: includes/admin/widgets/ms-global-tag-cloud.php:13 +msgid "Displays global most used product tags in cloud format from network MarketPress stores." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:438 +msgid "Theme Permissions" +msgstr "Permessi Tema" + +#: includes/multisite/class-mp-admin-multisite.php:402 +#: includes/multisite/class-mp-admin-multisite.php:448 +msgid "No Access" +msgstr "Nessun accesso" + +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:120 +msgid "Pro Site Level" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:401 +#: includes/multisite/class-mp-admin-multisite.php:447 +msgid "All Can Use" +msgstr "Tutti possono usarlo" + +#: includes/multisite/class-mp-admin-multisite.php:390 +msgid "Gateway Permissions" +msgstr "Permessi Gateway" + +#: includes/multisite/class-mp-admin-multisite.php:375 +msgid "Select a Gateway" +msgstr "Seleziona un Gateway" + +#: includes/multisite/class-mp-admin-multisite.php:350 +msgid "Global Gateway" +msgstr "Gateway Globale" + +#. Plugin Name of the plugin/theme +msgid "MarketPress" +msgstr "" + +#: includes/admin/widgets/product-tag-cloud.php:7 +msgid "Your most used product tags in cloud format from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/categories.php:79 +msgid "Show hierarchy" +msgstr "Mostra Gerarchia" + +#: includes/admin/widgets/categories.php:76 +#: includes/admin/widgets/ms-global-categories.php:92 +msgid "Show product counts" +msgstr "Mostra conta prodotti" + +#: includes/admin/widgets/categories.php:73 +msgid "Show as dropdown" +msgstr "Mostra come Tendina" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:710 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:736 +#: includes/admin/widgets/categories.php:30 +msgid "Select Category" +msgstr "Seleziona Categoria" + +#: includes/admin/widgets/categories.php:7 +msgid "A list or dropdown of product categories from your MarketPress store." +msgstr "Una lista o tendina di categorie prodotto dal tuo negozio." + +#: includes/admin/widgets/product-list.php:250 +msgid "Show Buy Button" +msgstr "Mostra tasto Comrpa" + +#: includes/admin/widgets/ms-global-product-list.php:183 +#: includes/admin/widgets/product-list.php:244 +msgid "Show Price" +msgstr "Mostra Prezzo" + +#: includes/admin/widgets/product-list.php:241 +msgid "Show Excerpt" +msgstr "Mostra Riassunto" + +#: includes/admin/widgets/ms-global-product-list.php:155 +#: includes/admin/widgets/product-list.php:238 +msgid "Thumbnail Size:" +msgstr "Dimensione Miniatura:" + +#: includes/admin/widgets/ms-global-product-list.php:153 +#: includes/admin/widgets/product-list.php:237 +msgid "Show Thumbnail" +msgstr "Mostra Miniatura" + +#: includes/admin/widgets/ms-global-product-list.php:147 +#: includes/admin/widgets/product-list.php:233 +msgid "Display Settings" +msgstr "Impostazioni Visualizzazione" + +#: includes/admin/widgets/ms-global-product-list.php:136 +#: includes/admin/widgets/ms-global-product-list.php:144 +#: includes/admin/widgets/product-list.php:230 +msgid "Enter the Slug" +msgstr "Inserisci lo slug" + +#: includes/admin/widgets/product-list.php:228 +#: includes/common/template-functions.php:894 +msgid "Tag" +msgstr "Tag" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:686 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:712 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:739 +#: includes/admin/class-mp-shortcode-builder.php:796 +#: includes/admin/widgets/product-list.php:227 +#: includes/common/template-functions.php:886 +#: includes/common/template-functions.php:2907 +msgid "Category" +msgstr "Categoria" + +#: includes/admin/widgets/product-list.php:226 +msgid "No Filter" +msgstr "Nessun Filtro" + +#: includes/admin/widgets/product-list.php:224 +msgid "Taxonomy Filter:" +msgstr "Filtro tassonomia:" + +#: includes/admin/widgets/ms-global-product-list.php:108 +#: includes/admin/widgets/product-list.php:209 +msgid "Order Products By:" +msgstr "Ordina i prodotti per:" + +#: includes/admin/widgets/ms-global-product-list.php:101 +#: includes/admin/widgets/product-list.php:206 +msgid "Number of Products:" +msgstr "Numero di prodotti:" + +#: includes/admin/widgets/ms-global-product-list.php:98 +#: includes/admin/widgets/product-list.php:204 +msgid "List Settings" +msgstr "Impostazioni Lista" + +#: includes/admin/widgets/product-list.php:177 +msgid "Our Products" +msgstr "I Nostri Prodotti" + +#: includes/admin/widgets/product-list.php:144 +#: includes/common/template-functions.php:2070 +#: includes/common/template-functions.php:2347 +#: includes/multisite/template-functions.php:303 +#: includes/multisite/template-functions.php:623 +msgid "No Products" +msgstr "Nessun Prodotto" + +#: includes/admin/widgets/product-list.php:8 +msgid "Product List" +msgstr "Lista Prodotti" + +#: includes/admin/widgets/product-list.php:7 +msgid "Shows a customizable list of products from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/cart.php:75 includes/admin/widgets/categories.php:82 +#: includes/admin/widgets/product-list.php:253 +#: includes/admin/widgets/product-tag-cloud.php:57 +msgid "Only show on store pages" +msgstr "" + +#: includes/admin/widgets/cart.php:65 +#: includes/admin/widgets/ms-global-product-list.php:92 +#: includes/admin/widgets/product-list.php:200 +msgid "Custom Text:" +msgstr "Testo Personalizzato:" + +#: includes/admin/widgets/cart.php:64 includes/admin/widgets/categories.php:69 +#: includes/admin/widgets/ms-global-categories.php:59 +#: includes/admin/widgets/ms-global-product-list.php:87 +#: includes/admin/widgets/ms-global-tag-cloud.php:49 +#: includes/admin/widgets/product-list.php:199 +#: includes/admin/widgets/product-tag-cloud.php:49 +msgid "Title:" +msgstr "Titolo:" + +#: includes/admin/widgets/cart.php:7 +msgid "Shows dynamic shopping cart contents along with a checkout button for your MarketPress store." +msgstr "" + +#: includes/admin/widgets/product-tag-cloud.php:8 +msgid "Product Tag Cloud" +msgstr "Tag Cloud Prodotti" + +#: includes/admin/class-mp-setup-wizard.php:539 +#: includes/admin/class-mp-setup-wizard.php:575 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:163 +msgid "Measurement System" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:616 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:149 +msgid "Select Shipping Options" +msgstr "Seleziona Opzioni Spedizione" + +#: includes/admin/class-mp-setup-wizard.php:596 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:129 +msgid "Calculated Options" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:582 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:115 +msgid "No Shipping" +msgstr "Nessuna Spedizione" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:110 +msgid "EU" +msgstr "Unione Europea" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:109 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:93 +msgid "All" +msgstr "Tutti" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:92 +msgid "Select:" +msgstr "Seleziona:" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:185 +msgid "Store Pages" +msgstr "Pagine Negozio" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:223 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:256 +msgid "Order Shipped" +msgstr "Ordine Spedito" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:60 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:95 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:128 +#: marketpress.php:266 +msgid "New Order" +msgstr "Nuovo Ordine" + +#: includes/admin/class-mp-dashboard-widgets.php:314 +msgid "Email Notifications" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:59 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:200 +msgid "Products List" +msgstr "Lista Prodotti" + +#: includes/admin/class-mp-pages-admin.php:58 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:190 +msgid "Store Base" +msgstr "Base Negozio" + +#: includes/admin/class-mp-product-attributes-admin.php:108 +#: includes/admin/class-mp-shortcode-builder.php:635 +#: includes/admin/class-mp-shortcode-builder.php:708 +#: includes/admin/class-mp-shortcode-builder.php:875 +#: includes/admin/class-mp-shortcode-builder.php:1319 +#: includes/admin/class-mp-shortcode-builder.php:1422 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:526 +#: includes/admin/widgets/ms-global-categories.php:78 +#: includes/admin/widgets/ms-global-product-list.php:127 +#: includes/admin/widgets/product-list.php:221 +msgid "Ascending" +msgstr "Ascendente" + +#: includes/admin/class-mp-product-attributes-admin.php:109 +#: includes/admin/class-mp-shortcode-builder.php:636 +#: includes/admin/class-mp-shortcode-builder.php:709 +#: includes/admin/class-mp-shortcode-builder.php:876 +#: includes/admin/class-mp-shortcode-builder.php:1320 +#: includes/admin/class-mp-shortcode-builder.php:1423 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:525 +#: includes/admin/widgets/ms-global-categories.php:75 +#: includes/admin/widgets/ms-global-product-list.php:124 +#: includes/admin/widgets/product-list.php:220 +msgid "Descending" +msgstr "Discendente" + +#: includes/admin/class-mp-shortcode-builder.php:637 +#: includes/admin/class-mp-shortcode-builder.php:695 +#: includes/admin/class-mp-shortcode-builder.php:862 +#: includes/admin/class-mp-shortcode-builder.php:1306 +#: includes/admin/class-mp-shortcode-builder.php:1424 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:518 +#: includes/admin/widgets/ms-global-product-list.php:121 +#: includes/admin/widgets/product-list.php:218 +msgid "Random" +msgstr "Casuale" + +#: includes/admin/class-mp-shortcode-builder.php:694 +#: includes/admin/class-mp-shortcode-builder.php:861 +#: includes/admin/class-mp-shortcode-builder.php:1305 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:517 +#: includes/admin/widgets/ms-global-product-list.php:119 +#: includes/admin/widgets/product-list.php:216 +msgid "Product Price" +msgstr "Prezzo Prodotto" + +#: includes/admin/class-mp-shortcode-builder.php:693 +#: includes/admin/class-mp-shortcode-builder.php:860 +#: includes/admin/class-mp-shortcode-builder.php:1304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:516 +#: includes/admin/widgets/ms-global-product-list.php:117 +#: includes/admin/widgets/product-list.php:215 +msgid "Number of Sales" +msgstr "Numero di Vendite" + +#: includes/admin/class-mp-shortcode-builder.php:692 +#: includes/admin/class-mp-shortcode-builder.php:859 +#: includes/admin/class-mp-shortcode-builder.php:1303 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:515 +#: includes/admin/widgets/product-list.php:214 +msgid "Product Author" +msgstr "Autore Prodotto" + +#: includes/admin/class-mp-shortcode-builder.php:691 +#: includes/admin/class-mp-shortcode-builder.php:858 +#: includes/admin/class-mp-shortcode-builder.php:1302 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:514 +#: includes/admin/widgets/product-list.php:213 +msgid "Product ID" +msgstr "ID Prodotto" + +#: includes/admin/class-mp-shortcode-builder.php:690 +#: includes/admin/class-mp-shortcode-builder.php:857 +#: includes/admin/class-mp-shortcode-builder.php:1301 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:513 +#: includes/admin/widgets/ms-global-product-list.php:113 +#: includes/admin/widgets/product-list.php:212 +msgid "Publish Date" +msgstr "Data di Pubblicazione" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:430 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:726 +msgid "Width" +msgstr "Larghezza" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:439 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:735 +msgid "Height" +msgstr "Altezza" + +#: includes/admin/class-mp-product-attributes-admin.php:88 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:402 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:698 +msgid "Custom" +msgstr "Personalizzata" + +#: includes/common/class-mp-product.php:179 +#: includes/common/class-mp-product.php:992 +#: includes/common/class-mp-product.php:1000 +#: includes/multisite/template-functions.php:579 +msgid "Buy Now" +msgstr "Compra Adesso" + +#: includes/common/class-mp-product.php:175 +#: includes/common/class-mp-product.php:990 +#: includes/common/class-mp-product.php:998 +msgid "Add To Cart" +msgstr "Aggiungi al Carrello" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:807 +msgid "Store Style" +msgstr "Stile Negozio" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1021 +msgid "Edit Coupon" +msgstr "Modifica Coupon" + +#: includes/addons/mp-coupons/class-mp-coupon.php:580 +#: includes/admin/class-mp-ajax.php:238 +#: includes/admin/class-mp-products-admin.php:1532 +msgid "Unlimited" +msgstr "Illimitato" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1198 +msgid "Remaining Uses" +msgstr "Usi rimanenti" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1197 +msgid "Used" +msgstr "Usato" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:752 +#: includes/admin/class-mp-products-admin.php:2343 +msgid "Start Date" +msgstr "Data Inizio" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:598 +msgid "Coupon Code" +msgstr "Codice coupon" + +#: includes/admin/class-mp-orders-admin.php:444 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:284 +msgid "Save Changes" +msgstr "Salva Modifiche" + +#: includes/admin/class-mp-pages-admin.php:57 +#: includes/admin/class-mp-shortcode-builder.php:716 +#: includes/admin/class-mp-shortcode-builder.php:727 +#: includes/admin/class-mp-shortcode-builder.php:883 +#: includes/admin/class-mp-shortcode-builder.php:894 +#: includes/admin/class-mp-shortcode-builder.php:946 +#: includes/admin/class-mp-shortcode-builder.php:956 +#: includes/admin/class-mp-shortcode-builder.php:1006 +#: includes/admin/class-mp-shortcode-builder.php:1327 +#: includes/admin/class-mp-shortcode-builder.php:1338 +#: includes/admin/store-settings/class-mp-store-settings-general.php:357 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:270 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:108 +#: includes/admin/widgets/ms-global-product-list.php:172 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:94 +msgid "None" +msgstr "Nessuno" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:352 +msgid "Google Analytics Ecommerce Tracking" +msgstr "Tracciamento Ecommerce Google Analytics" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:310 +msgid "This option turns MarketPress into more of a product listing plugin, disabling shopping carts, checkout, and order management. This is useful if you simply want to list items you can buy in a store somewhere else, optionally linking the \"Buy Now\" buttons to an external site. Some examples are a car dealership, or linking to songs/albums in itunes, or linking to products on another site with your own affiliate links." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:304 +msgid "Whether or not customers must be registered and logged in to checkout. (Not recommended: Enabling this can lower conversions)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:258 +msgid "How many times may a customer download a file they have purchased? (It's best to set this higher than one in case they have any problems downloading)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:257 +msgid "Maximum Downloads" +msgstr "Download Massimi" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:298 +msgid "This will set the product to draft if inventory of all variations is gone." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:288 +msgid "At what low stock count do you want to be warned for products you have enabled inventory tracking for?" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:208 +#: includes/admin/store-settings/class-mp-store-settings-general.php:287 +msgid "Inventory Warning Threshold" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:282 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:542 +msgid "Miscellaneous Settings" +msgstr "Impostazioni Varie" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:429 +#: includes/multisite/class-mp-admin-multisite.php:247 +msgid "Show Decimal in Prices" +msgstr "Mostra i decimali nei prezzi" + +#: includes/admin/class-mp-setup-wizard.php:451 +#: includes/admin/store-settings/class-mp-store-settings-general.php:403 +#: includes/multisite/class-mp-admin-multisite.php:221 +msgid "Currency Symbol Position" +msgstr "Posizione del Simbolo di Valuta" + +#: includes/admin/class-mp-setup-wizard.php:444 +#: includes/admin/store-settings/class-mp-store-settings-general.php:396 +msgid "Store Currency" +msgstr "Valuta Negozio" + +#: includes/admin/class-mp-setup-wizard.php:429 +#: includes/admin/store-settings/class-mp-store-settings-general.php:381 +msgid "Currency Settings" +msgstr "Impostazioni Valuta" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:516 +msgid "Please see your local tax laws. Note if this is enabled and a downloadable only cart, rates will be the default for your base location." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:529 +msgid "Apply Tax to Downloadable Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:498 +msgid "Enabling this option allows you to enter and show all prices inclusive of tax, while still listing the tax total as a line item in shopping carts. Please see your local tax laws." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:497 +msgid "Enter Prices Inclusive of Tax?" +msgstr "Inserire i prezzi tasse incluse?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:492 +msgid "Please see your local tax laws. Most areas charge tax on shipping fees." +msgstr "Per favore controlla le tue leggi locale relative alle imposta. Molti stati applicano imposte sulle spese di spedizione. " + +#: includes/admin/class-mp-setup-wizard.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:491 +msgid "Apply Tax To Shipping Fees?" +msgstr "Applicare le tasse alle spese di spedizione?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:674 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:565 +#: includes/common/payment-gateways/authorizenet-aim.php:291 +#: includes/common/payment-gateways/authorizenet-aim.php:326 +#: includes/common/payment-gateways/payfast.php:347 +msgid "No" +msgstr "No" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:675 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:759 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:512 +#: includes/admin/class-mp-setup-wizard.php:518 +#: includes/admin/class-mp-setup-wizard.php:524 +#: includes/admin/class-mp-setup-wizard.php:530 +#: includes/admin/class-mp-setup-wizard.php:564 +#: includes/admin/store-settings/class-mp-store-settings-general.php:232 +#: includes/admin/store-settings/class-mp-store-settings-general.php:299 +#: includes/admin/store-settings/class-mp-store-settings-general.php:305 +#: includes/admin/store-settings/class-mp-store-settings-general.php:311 +#: includes/admin/store-settings/class-mp-store-settings-general.php:317 +#: includes/admin/store-settings/class-mp-store-settings-general.php:328 +#: includes/admin/store-settings/class-mp-store-settings-general.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:341 +#: includes/admin/store-settings/class-mp-store-settings-general.php:348 +#: includes/admin/store-settings/class-mp-store-settings-general.php:367 +#: includes/admin/store-settings/class-mp-store-settings-general.php:493 +#: includes/admin/store-settings/class-mp-store-settings-general.php:499 +#: includes/admin/store-settings/class-mp-store-settings-general.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:556 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:375 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:381 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:387 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:474 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:493 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:532 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:574 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:606 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:664 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:670 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:677 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:683 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:689 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:763 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:774 +#: includes/common/payment-gateways/_bitpay.php:250 +#: includes/common/payment-gateways/_bitpay.php:257 +#: includes/common/payment-gateways/_bitpay.php:264 +#: includes/common/payment-gateways/authorizenet-aim.php:290 +#: includes/common/payment-gateways/authorizenet-aim.php:325 +#: includes/common/payment-gateways/free_orders.php:160 +#: includes/common/payment-gateways/payfast.php:346 +#: includes/common/payment-gateways/paymill.php:162 +#: includes/common/payment-gateways/paypal-payflow.php:441 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-checkbox.php:22 +msgid "Yes" +msgstr "Si" + +#: includes/admin/class-mp-setup-wizard.php:492 +#: includes/admin/store-settings/class-mp-store-settings-general.php:472 +msgid "%s Tax Rate" +msgstr "%s aliquota imposta" + +#: includes/admin/class-mp-setup-wizard.php:467 +#: includes/admin/store-settings/class-mp-store-settings-general.php:449 +msgid "Tax Settings" +msgstr "Impostazioni Tasse" + +#: includes/admin/class-mp-setup-wizard.php:370 +#: includes/admin/store-settings/class-mp-store-settings-general.php:624 +msgid "Base Zip/Postal Code" +msgstr "CAP di Base" + +#: includes/admin/class-mp-setup-wizard.php:354 +#: includes/admin/store-settings/class-mp-store-settings-general.php:608 +msgid "Base State/Province/Region" +msgstr "Stato/Provincia/Regione di Base" + +#: includes/admin/class-mp-setup-wizard.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:589 +msgid "Base Country" +msgstr "Nazione Base" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:582 +msgid "Location Settings" +msgstr "Impostazioni Locazione" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:195 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:800 +#: includes/multisite/class-mp-admin-multisite.php:172 +msgid "General Settings" +msgstr "Impostazioni Generali" + +#: includes/admin/class-mp-products-admin.php:1945 +#: includes/admin/class-mp-products-admin.php:2185 +#: includes/admin/class-mp-store-settings-admin.php:111 +#: includes/admin/class-mp-store-settings-admin.php:266 +msgid "General" +msgstr "Generale" + +#: includes/admin/class-mp-store-settings-admin.php:242 +msgid "Importers" +msgstr "Importatori" + +#: includes/admin/class-mp-store-settings-admin.php:115 +#: includes/admin/class-mp-store-settings-admin.php:234 +msgid "Payments" +msgstr "Pagamenti" + +#: includes/admin/class-mp-dashboard-widgets.php:313 +#: includes/admin/class-mp-store-settings-admin.php:112 +#: includes/admin/class-mp-store-settings-admin.php:222 +msgid "Presentation" +msgstr "Presentazione" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:916 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1015 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1018 +#: includes/admin/class-mp-dashboard-widgets.php:305 marketpress.php:702 +msgid "Coupons" +msgstr "Coupon" + +#: includes/admin/class-mp-admin.php:251 +msgid "Download »" +msgstr "Download »" + +#: includes/admin/class-mp-admin.php:245 +#: includes/admin/class-mp-exporter-orders.php:170 +msgid "All Statuses" +msgstr "Tutti gli stati" + +#: includes/admin/class-mp-admin.php:209 +#: includes/admin/class-mp-exporter-orders.php:150 +#: includes/admin/class-mp-exporter-orders.php:178 +msgid "Export Orders" +msgstr "Esporta Ordini" + +#: includes/admin/class-mp-admin.php:228 +msgid "Show all dates" +msgstr "Mostra tutti i dati" + +#: includes/admin/class-mp-orders-admin.php:947 +msgid "Change Status" +msgstr "Cambia Stato" + +#: includes/admin/class-mp-orders-admin.php:287 +msgid "Order Notes" +msgstr "Note Ordine" + +#: includes/admin/class-mp-orders-admin.php:478 +msgid "Other" +msgstr "Altro" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:205 +msgid "Subtotal" +msgstr "Subtotale" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:84 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:87 +#: includes/admin/class-mp-products-admin.php:1737 +#: includes/common/class-mp-cart.php:1409 +#: includes/common/class-mp-product.php:559 +msgid "Quantity" +msgstr "Quantità" + +#: includes/common/helpers.php:93 +msgid "Item" +msgstr "Corso" + +#: includes/common/class-mp-order.php:1050 +msgid "Current Status" +msgstr "Stato Corrente" + +#: includes/admin/class-mp-orders-admin.php:297 +msgid "Order Actions" +msgstr "Azioni Ordine" + +#: includes/common/class-mp-product.php:1084 +msgid "More Info »" +msgstr "Più Informazioni »" + +#: includes/common/class-mp-product.php:2313 +msgid "Low Product Inventory Notification" +msgstr "" + +#: includes/common/class-mp-order.php:338 includes/common/data.php:154 +msgid "New Order Notification: ORDERID" +msgstr "Nuova Notifica Ordine: ORDERID" + +#: includes/common/helpers.php:259 +msgid "Your payment for this order is complete." +msgstr "Il pagamento per questo ordine è completato." + +#: includes/common/helpers.php:261 +msgid "Your payment for this order is not yet complete. Here is the latest status:" +msgstr "Il pagamento per questo ordine non è ancora completo. Il suo ultimo stato è:" + +#: includes/common/helpers.php:256 +msgid "Payment Total:" +msgstr "Totale Pagamento:" + +#: includes/common/helpers.php:253 +msgid "Transaction ID:" +msgstr "ID Transazione:" + +#: includes/common/helpers.php:249 +msgid "Payment Type:" +msgstr "Tipo di Pagamento:" + +#: includes/common/helpers.php:246 +msgid "Payment Method:" +msgstr "Metodo di pagamento:" + +#: includes/common/helpers.php:242 +msgid "Order Notes:" +msgstr "Note Ordine:" + +#: includes/common/helpers.php:237 +msgid "Special Instructions:" +msgstr "Istruzioni Speciali:" + +#: includes/common/helpers.php:232 +msgid "Tracking Number:" +msgstr "Numero Tracciamento:" + +#: includes/common/helpers.php:223 includes/common/helpers.php:226 +#: includes/common/helpers.php:228 +#: includes/common/shipping-modules/class-mp-shipping-api.php:406 +#: includes/common/shipping-modules/class-mp-shipping-api.php:428 +msgid "Shipping Method:" +msgstr "Metodo di Spedizione:" + +#: includes/common/helpers.php:168 +msgid "No shipping required for this order." +msgstr "Nessuna spedizione richiesta per questo ordine." + +#: includes/common/helpers.php:155 +msgid "Order Total:" +msgstr "Totale Ordine:" + +#: includes/common/class-mp-order.php:1025 +msgid "Taxes:" +msgstr "Tasse:" + +#: includes/common/class-mp-order.php:1032 includes/common/helpers.php:144 +msgid "Shipping:" +msgstr "Spedizone:" + +#: includes/public/class-mp-checkout.php:367 +msgid "Street address, P.O. box, company name, c/o" +msgstr "Via, Casella Postale, Compagnia, c/o" + +#: includes/admin/class-mp-orders-admin.php:314 +msgid "Shipping Info" +msgstr "Informazioni di Spedizione" + +#: includes/public/class-mp-public.php:740 +msgid "Whoops, there was a problem loading up this file for your download. Please contact us for help." +msgstr "Ops, c'è statu un problema nel caricare il file per il tuo download. Per favore contatta il servizio di supporto." + +#: includes/public/class-mp-public.php:683 +msgid "Sorry, our records show you've downloaded this file %d out of %d times allowed. Please contact us if you still need help." +msgstr "Mi dispiace, dai nostri log risulta che hai scaricato questo file %d %d volte. Per favore contatta il servizio di supporto." + +#: includes/public/class-mp-public.php:634 +msgid "Sorry, your order has been marked as unpaid." +msgstr "Spiacenti, il tuo ordine è stato marcato come Non Pagato." + +#: includes/public/class-mp-public.php:629 +msgid "Sorry, the link is invalid for this download." +msgstr "Mi dispiace, il link non è valido per questo download." + +#: includes/admin/class-mp-exporter-orders.php:15 +#: includes/admin/class-mp-products-admin.php:1172 +msgid "Cheatin’ uh?" +msgstr "Cheatin’ uh?" + +#: includes/public/class-mp-public.php:407 +#: includes/public/class-mp-short-codes.php:128 +msgid "Please enter a valid email address." +msgstr "" + +#: includes/admin/class-mp-ajax.php:191 +#: includes/admin/class-mp-products-admin.php:1821 +#: includes/admin/class-mp-products-admin.php:2010 +#: includes/admin/class-mp-products-admin.php:2267 +msgid "File URL" +msgstr "URL File" + +#: includes/admin/class-mp-products-admin.php:1842 +msgid "External Link" +msgstr "Link Esterno" + +#: includes/admin/class-mp-products-admin.php:2177 +msgid "Add Variation" +msgstr "Aggiungi Variazione" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:126 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:289 +msgid "Inventory" +msgstr "Inventario" + +#: includes/admin/class-mp-products-admin.php:438 +#: includes/admin/class-mp-products-admin.php:578 +#: includes/admin/class-mp-products-admin.php:1552 +#: includes/admin/class-mp-products-admin.php:2053 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:134 +msgid "Sale Price" +msgstr "Prezzo Svendita" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "Variation Name" +msgstr "Nome Variazione" + +#: includes/admin/class-mp-products-admin.php:1931 +msgid "Product Details" +msgstr "Dettagli Prodotto" + +#: includes/admin/class-mp-product-attributes-list-table.php:33 +msgid "Delete" +msgstr "Cancella" + +#: includes/admin/class-mp-orders-admin.php:1057 +msgid "Trashed" +msgstr "Cestinato" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:231 +#: includes/admin/class-mp-orders-admin.php:1015 +#: includes/common/class-mp-order.php:1052 includes/common/helpers.php:97 +msgid "Total" +msgstr "Totale" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1196 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:210 +#: includes/admin/class-mp-orders-admin.php:1014 +msgid "Discount" +msgstr "Sconto" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:221 +#: includes/admin/class-mp-orders-admin.php:1013 +#: includes/common/payment-gateways/_ideal.php:148 +#: includes/common/payment-gateways/_payway.php:134 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:108 +msgid "Tax" +msgstr "Tasse" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:216 +#: includes/admin/class-mp-orders-admin.php:1012 +#: includes/admin/class-mp-products-admin.php:1958 +#: includes/admin/class-mp-products-admin.php:2198 +#: includes/admin/class-mp-store-settings-admin.php:114 +#: includes/admin/class-mp-store-settings-admin.php:230 +#: includes/common/class-mp-cart.php:717 includes/common/helpers.php:168 +#: includes/common/payment-gateways/_ideal.php:137 +#: includes/common/payment-gateways/_payway.php:116 +#: includes/public/class-mp-checkout.php:1304 +msgid "Shipping" +msgstr "Spedizione" + +#: includes/admin/class-mp-orders-admin.php:1011 +msgid "Items" +msgstr "Corsi" + +#: includes/admin/class-mp-orders-admin.php:1010 +msgid "From" +msgstr "Da" + +#: includes/admin/class-mp-exporter-orders.php:154 +#: includes/admin/class-mp-orders-admin.php:1009 +#: includes/common/class-mp-gdpr.php:370 +msgid "Order Date" +msgstr "Data Ordine" + +#: includes/admin/class-mp-orders-admin.php:1008 +#: includes/common/class-mp-gdpr.php:366 +#: includes/common/template-functions.php:2134 +msgid "Order ID" +msgstr "ID Ordine" + +#: includes/addons/class-mp-addons-list-table.php:22 +#: includes/admin/class-mp-orders-admin.php:1007 +msgid "Status" +msgstr "Stato" + +#: includes/admin/class-mp-orders-admin.php:1155 +msgid "N/A" +msgstr "N/A" + +#: includes/admin/class-mp-dashboard-widgets.php:243 +#: includes/admin/class-mp-products-admin.php:464 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:142 +msgid "Sales" +msgstr "Sconti" + +#: includes/admin/class-mp-products-admin.php:463 +msgid "Stock" +msgstr "Inventario" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:85 +#: includes/admin/class-mp-ajax.php:176 includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:434 +#: includes/admin/class-mp-products-admin.php:462 +#: includes/admin/class-mp-products-admin.php:576 +#: includes/admin/class-mp-products-admin.php:1519 +#: includes/admin/class-mp-products-admin.php:1569 +#: includes/admin/class-mp-products-admin.php:1950 +#: includes/admin/class-mp-products-admin.php:2059 +#: includes/admin/class-mp-products-admin.php:2190 +#: includes/admin/class-mp-products-admin.php:2330 +#: includes/common/class-mp-cart.php:1415 includes/common/helpers.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:130 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:276 +msgid "Price" +msgstr "Prezzo" + +#: includes/admin/class-mp-ajax.php:173 +#: includes/admin/class-mp-products-admin.php:461 +#: includes/admin/class-mp-products-admin.php:1972 +#: includes/admin/class-mp-products-admin.php:2224 +msgid "SKU" +msgstr "COD" + +#: includes/admin/class-mp-products-admin.php:459 +#: includes/admin/class-mp-products-admin.php:1793 +#: includes/admin/class-mp-products-admin.php:1805 +#: includes/admin/class-mp-products-admin.php:2163 +msgid "Variations" +msgstr "Variazioni" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:83 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:86 +#: includes/admin/class-mp-dashboard-widgets.php:134 +#: includes/admin/class-mp-products-admin.php:458 +#: includes/admin/class-mp-products-admin.php:837 +#: includes/admin/class-mp-shortcode-builder.php:689 +#: includes/admin/class-mp-shortcode-builder.php:856 +#: includes/admin/class-mp-shortcode-builder.php:1300 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:512 +#: includes/admin/widgets/ms-global-product-list.php:115 +#: includes/admin/widgets/product-list.php:211 +msgid "Product Name" +msgstr "Nome Prodotto" + +#: includes/common/template-functions.php:2575 +msgid "Categorized in " +msgstr "Categorizzato In:" + +#: includes/admin/class-mp-orders-admin.php:305 +#: includes/common/payment-gateways/free_orders.php:176 +msgid "Payment Information" +msgstr "Informazioni pagamento" + +#: includes/admin/class-mp-exporter-orders.php:167 +#: includes/admin/class-mp-orders-admin.php:432 +#: includes/admin/class-mp-pages-admin.php:62 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:227 +#: includes/common/class-mp-gdpr.php:374 +#: includes/common/template-functions.php:175 +#: includes/common/template-functions.php:926 +msgid "Order Status" +msgstr "Stato Ordine" + +#. translators: %s: orders closed +#: marketpress.php:327 +msgid "Closed (%s)" +msgid_plural "Closed (%s)" +msgstr[0] "Chiuso (%s)" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:249 +#: includes/admin/class-mp-orders-admin.php:375 +#: includes/admin/class-mp-orders-admin.php:951 +#: includes/admin/class-mp-orders-admin.php:1053 +#: includes/admin/class-mp-orders-admin.php:1065 +#: includes/common/class-mp-gdpr.php:330 +#: includes/common/class-mp-order.php:1019 marketpress.php:325 +msgid "Closed" +msgstr "Chiuso" + +#. translators: %s: shipped orders +#: marketpress.php:320 +msgid "Shipped (%s)" +msgid_plural "Shipped (%s)" +msgstr[0] "Spedito (%s)" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:248 +#: includes/admin/class-mp-orders-admin.php:376 +#: includes/admin/class-mp-orders-admin.php:950 +#: includes/admin/class-mp-orders-admin.php:1049 +#: includes/admin/class-mp-orders-admin.php:1064 +#: includes/common/class-mp-gdpr.php:329 +#: includes/common/class-mp-order.php:1002 marketpress.php:318 +msgid "Shipped" +msgstr "Spedito" + +#. translators: %s: paid orders +#: marketpress.php:313 +msgid "Paid (%s)" +msgid_plural "Paid (%s)" +msgstr[0] "Pagato (%s)" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:247 +#: includes/admin/class-mp-orders-admin.php:377 +#: includes/admin/class-mp-orders-admin.php:949 +#: includes/admin/class-mp-orders-admin.php:1045 +#: includes/admin/class-mp-orders-admin.php:1063 +#: includes/common/class-mp-gdpr.php:328 +#: includes/common/payment-gateways/2checkout.php:294 +#: includes/common/payment-gateways/_cubepoints.php:130 +#: includes/common/payment-gateways/authorizenet-aim.php:193 +#: includes/common/payment-gateways/free_orders.php:91 +#: includes/common/payment-gateways/mijireh.php:248 +#: includes/common/payment-gateways/paymill.php:273 +#: includes/common/payment-gateways/paypal-express.php:933 +#: includes/common/payment-gateways/paypal-express.php:967 +#: includes/common/payment-gateways/pin.php:258 +#: includes/common/payment-gateways/simplify.php:181 +#: includes/common/payment-gateways/stripe.php:368 +#: includes/common/payment-gateways/wepay.php:269 marketpress.php:311 +msgid "Paid" +msgstr "Pagato" + +#. translators: %s: orders received +#: marketpress.php:306 +msgid "Received (%s)" +msgid_plural "Received (%s)" +msgstr[0] "Ricevuti (%s)" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:246 +#: includes/admin/class-mp-orders-admin.php:378 +#: includes/admin/class-mp-orders-admin.php:1041 +#: includes/admin/class-mp-orders-admin.php:1062 +#: includes/common/class-mp-gdpr.php:327 includes/common/class-mp-order.php:995 +#: includes/common/payment-gateways/payfast.php:244 marketpress.php:304 +msgid "Received" +msgstr "Ricevuto" + +#: marketpress.php:268 +msgid "Search Orders" +msgstr "Cerca gli Ordini" + +#: marketpress.php:267 +msgid "View Order" +msgstr "Visualizza l’Ordine" + +#: marketpress.php:262 +msgid "Order" +msgstr "Ordine" + +#: includes/admin/class-mp-dashboard-widgets.php:301 +#: includes/admin/class-mp-orders-admin.php:989 marketpress.php:261 +msgid "Orders" +msgstr "Ordini" + +#: marketpress.php:228 +msgid "No Products found in Trash" +msgstr "Nessun Prodotto nel Cestino" + +#: marketpress.php:227 +msgid "No Products Found" +msgstr "Nessun prodotto trovato" + +#: marketpress.php:226 +msgid "Search Products" +msgstr "Ricerca prodotti" + +#: marketpress.php:225 marketpress.php:229 +msgid "View Product" +msgstr "Vedi Prodotto" + +#: marketpress.php:224 +msgid "New Product" +msgstr "Nuovo Prodotto" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1022 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:258 +#: marketpress.php:223 +msgid "Edit" +msgstr "Modifica" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1019 +msgid "Create New" +msgstr "Crea Nuovo" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:687 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:698 +#: marketpress.php:217 +msgid "Product" +msgstr "Prodotto" + +#: includes/admin/class-mp-dashboard-widgets.php:307 +#: includes/common/template-functions.php:173 +#: includes/common/template-functions.php:179 +#: includes/common/template-functions.php:902 +#: includes/multisite/template-functions.php:82 marketpress.php:216 +#: marketpress.php:219 +msgid "Products" +msgstr "Prodotti" + +#: includes/admin/class-mp-store-settings-admin.php:118 +#: includes/admin/widgets/product-tag-cloud.php:46 +#: includes/multisite/class-mp-admin-multisite.php:548 +msgid "Product Tags" +msgstr "Tag Prodotto" + +#: includes/common/template-functions.php:2906 +#: includes/multisite/template-functions.php:449 +msgid "Product Category" +msgstr "Categoria Prodotti" + +#: includes/admin/class-mp-store-settings-admin.php:117 +#: includes/admin/widgets/categories.php:8 +#: includes/admin/widgets/categories.php:18 +#: includes/multisite/class-mp-admin-multisite.php:539 +msgid "Product Categories" +msgstr "Categorie Prodotto" + +#: includes/common/payment-gateways/stripe.php:332 +#: includes/common/template-functions.php:872 marketpress.php:218 +msgid "Store" +msgstr "Negozio" + +#: includes/admin/class-mp-pages-admin.php:60 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:209 +#: includes/admin/widgets/cart.php:8 includes/admin/widgets/cart.php:56 +#: includes/common/template-functions.php:174 +#: includes/common/template-functions.php:811 +msgid "Shopping Cart" +msgstr "Carrello della spesa" + +#: includes/admin/class-mp-store-settings-admin.php:110 +#: includes/admin/class-mp-store-settings-admin.php:218 +msgid "Store Settings" +msgstr "Impostazioni Negozo" + +#: includes/addons/class-mp-addons-list-table.php:128 marketpress.php:607 +msgid "Settings" +msgstr "Impostazioni" + +#: includes/common/data.php:178 includes/common/data.php:190 +msgid "Your Order Has Been Shipped! (ORDERID)" +msgstr "Il tuo Ordine è stato spedito! (ORDERID)" + +#: includes/common/data.php:159 includes/common/data.php:166 +#: includes/common/data.php:172 +msgid "Your Order Confirmation (ORDERID)" +msgstr "Conferma del tuo Ordine (ORDERID)" + +#: includes/common/data.php:148 +msgid "

    Thank you for your order! We appreciate your business, and please come back often to check out our new products.

    " +msgstr "

    Grazie per il tuo ordine! Apprezziamo molto la preferenza accordata ai nostri prodotti. Ricordati di ritornare ogni tanto a dare un'occhiata alle nuove offerte.

    " + +#: includes/common/data.php:147 +msgid "

    You are almost done! Please do a final review of your order to make sure everything is correct then click the \"Confirm Payment\" button.

    " +msgstr "

    Hai quasi finito! Fai una revisione finale del tuo ordine e controlla che tutto sia corretto, poi cicca sul bottone \"Conferma Pagamento\".

    " + +#: includes/common/data.php:145 +msgid "

    Please enter your shipping information in the form below to proceed with your order.

    " +msgstr "

    Per favore annota le informazioni per la spedizione nel form qui sotto, in modo da procedere con il tuo ordine.

    " + +#: includes/common/data.php:143 +msgid "

    If you have any questions about your order please do not hesitate to contact us.

    " +msgstr "

    Se hai qualsiasi domanda a proposito del tuo ordine, non esitare a contattarci.

    " + +#: includes/common/data.php:106 +msgid "tag" +msgstr "tag" + +#: includes/common/data.php:105 +msgid "category" +msgstr "categoria" + +#: includes/common/data.php:104 +msgid "order-status" +msgstr "stato-ordine" + +#: includes/common/data.php:103 +msgid "shopping-cart" +msgstr "carrello" + +#: includes/common/data.php:102 +msgid "products" +msgstr "prodotti" + +#. Translators: change default slugs here +#: includes/common/data.php:101 +msgid "store" +msgstr "Negozio" \ No newline at end of file diff --git a/languages/mp-ja.mo b/languages/mp-ja.mo new file mode 100644 index 0000000000000000000000000000000000000000..a8a9ca4dfa7ebebb52189cdbb63e49deae6b8d82 GIT binary patch literal 11518 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 A@c;k- literal 0 HcmV?d00001 diff --git a/languages/mp-ja.po b/languages/mp-ja.po new file mode 100644 index 00000000..215d3873 --- /dev/null +++ b/languages/mp-ja.po @@ -0,0 +1,8946 @@ +# Translation of MarketPress in Japanese +# This file is distributed under the same license as the MarketPress package. +msgid "" +msgstr "" +"PO-Revision-Date: 2016-03-03 02:27:35+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: GlotPress/2.3.1\n" +"Language: ja_JP\n" +"Project-Id-Version: MarketPress\n" + +#: includes/public/class-mp-checkout.php:1285 +msgid "By clicking this checkbox you allow the website to process your personal data." +msgstr "" + +#: includes/common/class-mp-gdpr.php:382 +msgid "Order Info" +msgstr "" + +#: includes/common/class-mp-gdpr.php:268 +msgid "Shipping Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:267 +msgid "Shipping Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:266 +msgid "Shipping ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:265 +msgid "Shipping State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:264 +msgid "Shipping City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:263 +msgid "Shipping Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:262 +msgid "Shipping Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:261 +msgid "Shipping Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:260 +msgid "Shipping Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:259 +msgid "Shipping Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:258 +msgid "Shipping First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:254 +msgid "Billing Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:253 +msgid "Billing Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:252 +msgid "Billing ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:251 +msgid "Billing State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:250 +msgid "Billing City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:249 +msgid "Billing Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:248 +msgid "Billing Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:247 +msgid "Billing Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:246 +msgid "Billing Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:245 +msgid "Billing Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:244 +msgid "Billing First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:151 +msgid "Orders Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:139 +msgid "Customer Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:100 includes/common/class-mp-gdpr.php:116 +msgid "MarketPress User Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:81 +msgid "" +"In addition to standard WordPress session cookies, this site might be setting an\n" +"\t\t additional cookie to remember your cart settings. This cookie will last for one year." +msgstr "" + +#: includes/common/class-mp-gdpr.php:80 +msgid "Cookies" +msgstr "" + +#: includes/common/class-mp-gdpr.php:77 +msgid "" +"The following information will be collected in order to process orders: your name,\n" +"\t\t username, email address, avatar and profile URLs, address and phone number. This data can be\n" +"\t\t exported and removed." +msgstr "" + +#: includes/common/class-mp-gdpr.php:76 +msgid "Additional data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:71 +msgid "" +"This site might be using third party services and tools to process payments or/and\n" +"\t\t process shipping data when creating orders on the MarketPress store. These services include payment\n" +"\t\t gateways: 2Checkout, Authorize.net AIM, eWay shared payments, eWay Rapid 3.1 Payments, Mijireh,\n" +"\t\t Mollie, Paymill, PayPal, PIN, Simplify Commerce by MasterCard, Stripe and WePay; shipping gateways:\n" +"\t\t Fedex, UPS, USPS." +msgstr "" + +#: includes/common/class-mp-gdpr.php:70 +msgid "Third parties" +msgstr "" + +#: includes/admin/class-mp-admin.php:403 +msgid "Start creating store pages and products for your online shop here." +msgstr "" + +#: includes/admin/class-mp-admin.php:402 +msgid "Create Online Shop" +msgstr "" + +#: includes/admin/class-mp-admin.php:394 +msgid "Run Setup Wizard" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:234 +msgid "If having problems during invoice generation, add define( 'DOMPDF_ENABLE_HTML5PARSER', true ); to the wp-config.php file." +msgstr "" + +#: includes/public/class-mp-checkout.php:723 +msgid "Invalid Email" +msgstr "" + +#: includes/public/class-mp-checkout.php:721 +#: includes/public/class-mp-checkout.php:729 +msgid "This field is required" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:804 +msgid "This option changes the built-in css styles for store pages. For a custom css style, save your css file with the /* MarketPress Style: Your CSS Theme Name Here */ header line in the \"%s\" folder and it will appear in this list so you may select it. You should select \"None\" if you don't wish to use custom CSS styles or if you are using default theme templates or custom theme templates and css to make your own completely unique store design. For more information on custom theme templates click here »." +msgstr "" + +#: includes/public/class-mp-public.php:421 +#: includes/public/class-mp-short-codes.php:142 +msgid "Please enter a value greater than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:420 +#: includes/public/class-mp-short-codes.php:141 +msgid "Please enter a value less than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:419 +#: includes/public/class-mp-short-codes.php:140 +msgid "Please enter a value between {0} and {1}." +msgstr "" + +#: includes/public/class-mp-public.php:418 +#: includes/public/class-mp-short-codes.php:139 +msgid "Please enter a value between {0} and {1} characters long." +msgstr "" + +#: includes/public/class-mp-public.php:417 +#: includes/public/class-mp-short-codes.php:138 +msgid "Please enter at least {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:416 +#: includes/public/class-mp-short-codes.php:137 +msgid "Please enter no more than {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:415 +#: includes/public/class-mp-short-codes.php:136 +msgid "Please enter a value with a valid extension." +msgstr "" + +#: includes/public/class-mp-public.php:414 +#: includes/public/class-mp-short-codes.php:135 +msgid "Please enter the same value again." +msgstr "" + +#: includes/public/class-mp-public.php:413 +#: includes/public/class-mp-short-codes.php:134 +msgid "Please enter a valid credit card number." +msgstr "" + +#: includes/public/class-mp-public.php:412 +#: includes/public/class-mp-short-codes.php:133 +msgid "Please enter only digits." +msgstr "" + +#: includes/public/class-mp-public.php:411 +#: includes/public/class-mp-short-codes.php:132 +msgid "Please enter a valid number." +msgstr "" + +#: includes/public/class-mp-public.php:410 +#: includes/public/class-mp-short-codes.php:131 +msgid "Please enter a valid date (ISO)." +msgstr "" + +#: includes/public/class-mp-public.php:409 +#: includes/public/class-mp-short-codes.php:130 +msgid "Please enter a valid date." +msgstr "" + +#: includes/public/class-mp-public.php:408 +#: includes/public/class-mp-short-codes.php:129 +msgid "Please enter a valid URL." +msgstr "" + +#: includes/public/class-mp-public.php:406 +#: includes/public/class-mp-short-codes.php:127 +msgid "Please fix this field." +msgstr "" + +#: includes/public/class-mp-checkout.php:1287 +#: includes/public/class-mp-public.php:405 +#: includes/public/class-mp-short-codes.php:126 +msgid "This field is required." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:810 +msgid "None - Without Special CSS-styles" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:809 +msgid "Default - Using Default CSS-styles" +msgstr "" + +#: marketpress.php:739 +msgid "Enable multiple downloads per product" +msgstr "" + +#: marketpress.php:738 +msgid "Multiple Downloads" +msgstr "" + +#: includes/public/class-mp-checkout.php:715 +msgid "Invalid Zip Code" +msgstr "" + +#: includes/common/template-functions.php:2126 +msgid "Guest Email" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:195 +msgid "There was a problem finalizing your purchase. Please re-enter your credit card information and try again" +msgstr "" + +#: includes/common/class-mp-cart.php:565 includes/common/class-mp-order.php:600 +#: includes/common/helpers.php:111 +msgid "Download %1$s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:331 +msgid "Export products to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:328 +msgid "The import process uses the WordPress importer plugin." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:326 +msgid "Import / Export Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:325 +msgid "Export settings to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:324 +msgid "Import configuration" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:320 +msgid "Use the text below to export to a new installation. Or paste in the new configuration to import." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:318 +msgid "Import / Export Settings" +msgstr "" + +#. translators: URL to wp-admin/import.php +#: includes/admin/store-settings/class-mp-store-settings-import.php:266 +msgid "This importer is not installed. Please install importers from the main site." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:261 +msgid "Install Now" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:260 +msgid "Install %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:240 +msgid "Run Importer" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:239 +msgid "Run %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:258 +msgid "Import/Export" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1199 +msgid "Requires Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:737 +msgid "Optionally limit the user to some categories" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:671 +msgid "Should this coupon only be available to logged in users?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:670 +msgid "Require Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:655 +msgid "Mimimum number of products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:653 +msgid "Enter the minimum number of products in the cart that this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:648 +msgid "Can this coupon be limited to a number of products in the cart?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:334 +msgid "Add all values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:265 +msgid "Set as default variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:154 +msgid "Set Default" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:150 +msgid "More Info" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:40 +msgid "MarketPress - Quick Setup" +msgstr "" + +#: includes/public/class-mp-checkout.php:1399 +msgid "Proceed to checkout and create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1241 +#: includes/public/class-mp-checkout.php:1245 +msgid "Register account" +msgstr "" + +#: includes/public/class-mp-checkout.php:1233 +msgid "Register as customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:765 +msgid "

    Oops!

    Looks like you haven't added anything your cart. Let's go shopping!

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:763 +msgid "

    Oops!

    The cart is disabled.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing Information" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:214 +msgid "Global Currency" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:198 +msgid "Global Store Currency" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:507 +msgid "There are no shipping services available for this type of package in your location." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:168 +msgid "Using this USPS Shipping calculator requires requesting an Ecommerce API Username and Password. Get your free set of credentials here ». The password is no longer used for the API, just the username which you should enter below. The USPS test site has not yet been updated and currently doesn't work - you should just request activating your credentials with USPS and go live." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:339 +msgid "ZIP Code" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:334 +msgid "Last name" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:333 +msgid "First name" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:150 +msgid "These are the manual payment instructions to display on the order confirmation screen. TOTAL will be replaced with the order total and ORDERID will be replaced with Order ID." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:240 +msgid "You must login to Authorize.net merchant dashboard to obtain the API login ID and API transaction key. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:327 +msgid "
    1. Set the \"Return Method\" within Site Management to Header Redirect and set the \"Return URL\" to %s
    2. Set your notifications url to %s
    " +msgstr "" + +#: includes/common/data.php:191 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Also, digital downloads included in your order are now ready to be downloaded. Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:185 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order is now available to download! Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:184 +msgid "Your Order Is Ready To Be Downloaded! (ORDERID)" +msgstr "" + +#: includes/common/data.php:179 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:173 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received, your digital goods are ready to be downloaded and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:167 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received and your digital goods are ready to be downloaded. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:160 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +" Your order has been received, and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information: \n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/class-mp-product.php:638 +msgid "You can not add more items to cart." +msgstr "" + +#: includes/common/class-mp-product.php:635 +msgid "You can only add {0} to cart." +msgstr "" + +#: includes/common/class-mp-product.php:625 +msgid "This product has an order limit of %d." +msgstr "" + +#: includes/common/class-mp-order.php:1454 +msgid "Shipped: tracking code: %s" +msgstr "" + +#: includes/common/class-mp-order.php:1000 +#: includes/common/class-mp-order.php:1012 +msgid "Finished" +msgstr "" + +#: includes/common/class-mp-order.php:858 +msgid "Contact Details" +msgstr "" + +#: includes/common/class-mp-order.php:339 includes/common/data.php:155 +msgid "" +"A new order (ORDERID) was created in your store:\n" +"\n" +" ORDERINFOSKU\n" +"\n" +" SHIPPINGINFO\n" +"\n" +" PAYMENTINFO\n" +"\n" +msgstr "\n" + +#: includes/common/class-mp-cart.php:1858 +msgid "Add again" +msgstr "" + +#: includes/common/class-mp-cart.php:1852 +msgid "was removed from Shopping Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1242 +#: includes/public/class-mp-short-codes.php:160 +msgid "Cart update notice: this item has a limit per order or you have reached the stock limit." +msgstr "" + +#: includes/admin/widgets/product-list.php:235 +msgid "Show Only Featured Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:533 +msgid "If enabled, users won't be able to filter products per category and/or to order by release date/name/price." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:531 +msgid "Hide Products Filter?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:353 +msgid "Notification to registration email instead of billing email?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:322 +msgid "Order Shipped - Mixed orders (with both digital and physical products)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:289 +msgid "Order Shipped - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:224 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:194 +msgid "New Order - Mixed" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:161 +msgid "New Order - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:115 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:243 +msgid "Mixed orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:110 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:238 +msgid "Digital downloads orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:105 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:233 +msgid "Physical orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:96 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed.
    For orders placed with manual payment, emails set here will be overriden by the one configured in manual payments settings, under payments settings page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:89 +msgid "Customer Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:47 +msgid "Admin Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:566 +msgid "Only contact details" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:565 +msgid "Full billing info" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:561 +msgid "Details Collection" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:548 +msgid "Digital Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:515 +msgid "Apply Tax to Digital Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:236 +msgid "product (default)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:231 +msgid "If you are experiencing conflicts with other e-commerce plugins change this setting. This will change the internal post type of all your products. Please note that changing this option may break 3rd party themes or plugins." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1203 +msgid "Hide details" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1202 +msgid "Show all changes" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1184 +msgid "Version %s" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1161 +msgid "Current" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1131 +msgid "%s changelog" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:952 +msgid "We did not find any data for this plugin or theme..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:285 +msgid "Activate WPMU DEV Dashboard" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:279 +msgid "Just one more step - activate the WPMU DEV Dashboard plugin and you're all done!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:277 +msgid "Important updates are available for your WPMU DEV plugins/themes. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:273 +msgid "Just one more step to enable updates and support for %s!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:271 +msgid "Important updates are available for %s. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:264 +msgid "activate" +msgstr "" + +#: includes/admin/class-mp-admin.php:398 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:248 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:289 +msgid "Dismiss" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:247 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:288 +msgid "Saving..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:244 +msgid "Install Plugin" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:238 +msgid "Almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:236 +msgid "Important updates are available for your WPMU DEV plugins/themes. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:232 +msgid "%s is almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:230 +msgid "Important updates are available for %s. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:223 +msgid "install" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1428 +msgid "Sets the number of Tags to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1289 +msgid "How many products to display in the product list if \"paginate\" is set to false." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:739 +#: includes/admin/class-mp-shortcode-builder.php:906 +#: includes/admin/class-mp-shortcode-builder.php:1350 +msgid "Grid" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:735 +#: includes/admin/class-mp-shortcode-builder.php:902 +#: includes/admin/class-mp-shortcode-builder.php:1346 +msgid "Products will be displayed as list or grid." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:206 +msgid "Display a cloud or list of your global product tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:205 +msgid "Display a list of your global categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:204 +msgid "Display a list or grid of your global products." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:181 +msgid "Display a list of featured products." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1451 +msgid "Is Featured?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1444 +msgid "Featured Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:581 +#: includes/admin/class-mp-products-admin.php:1580 +msgid "% discount" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:579 +msgid "OR" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:460 +#: includes/admin/class-mp-products-admin.php:586 +#: includes/admin/widgets/product-list.php:217 +msgid "Featured" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:536 +#: includes/admin/class-mp-orders-admin.php:538 +msgid "Tracking Link" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:508 +msgid "Shipping Tax" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:356 +msgid "Shipping Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:352 +msgid "Taxes Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:349 +msgid "Products Total" +msgstr "" + +#: includes/admin/class-mp-ajax.php:366 +msgid "Oops! You entered an invalid username/email and or password." +msgstr "" + +#: includes/admin/class-mp-ajax.php:254 +msgid "Percentage Discount" +msgstr "" + +#: includes/admin/class-mp-ajax.php:234 +msgid "Limit the Amount of Items per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:214 +msgid "Unused Attributes" +msgstr "" + +#: includes/admin/class-mp-admin.php:82 +msgid "Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-admin.php:79 +msgid "MarketPress setup is not complete! Once you've completed this quick setup wizard you'll have a fully working online store - exciting! " +msgstr "" + +#: marketpress.php:263 +msgctxt "mp_order" +msgid "Add New" +msgstr "" + +#: marketpress.php:184 +msgctxt "product_tag" +msgid "Product Tag" +msgstr "" + +#: marketpress.php:183 +msgctxt "product_tag" +msgid "Product Tags" +msgstr "" + +#: marketpress.php:150 +msgctxt "product_category" +msgid "Product Category" +msgstr "" + +#: marketpress.php:149 +msgctxt "product_category" +msgid "Product Categories" +msgstr "" + +#. Author URI of the plugin/theme +msgid "http://premium.wpmudev.org" +msgstr "" + +#: marketpress.php:729 +msgid "Invoice PDF" +msgstr "" + +#: marketpress.php:712 +msgid "Grant access to themes and gateways depending on the user's Pro Site level" +msgstr "" + +#: marketpress.php:711 +msgid "Pro Sites" +msgstr "" + +#: marketpress.php:703 +msgid "Offer and accept coupon codes" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:687 +msgid "Install %s Pages" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:682 +msgid "Welcome to %s – Install pages required by the plugin automatically." +msgstr "" + +#: marketpress.php:668 +msgid "Your pages were created successfully." +msgstr "" + +#: marketpress.php:436 +msgid "Add a Product" +msgstr "" + +#: marketpress.php:271 +msgid "Parent Order" +msgstr "" + +#: marketpress.php:270 +msgid "No orders found in trash" +msgstr "" + +#: marketpress.php:269 +msgid "No orders found" +msgstr "注文がありません。" + +#: marketpress.php:265 +msgid "Edit Order" +msgstr "" + +#: marketpress.php:264 +msgid "Add New Order" +msgstr "" + +#: marketpress.php:220 marketpress.php:221 +msgid "Add New Product" +msgstr "" + +#: marketpress.php:197 +msgid "No product tags found" +msgstr "" + +#: marketpress.php:196 +msgid "Choose from the most used product tags" +msgstr "" + +#: marketpress.php:195 +msgid "Add or remove product tags" +msgstr "" + +#: marketpress.php:194 +msgid "Separate product tags with commas" +msgstr "" + +#: marketpress.php:193 +msgid "Search Product Tags" +msgstr "" + +#: marketpress.php:192 +msgid "Parent Product Tag:" +msgstr "" + +#: marketpress.php:191 +msgid "Parent Product Tag" +msgstr "" + +#: marketpress.php:190 +msgid "New Product Tag Name" +msgstr "" + +#: marketpress.php:189 +msgid "Add New Product Tag" +msgstr "" + +#: marketpress.php:188 +msgid "Update Product Tag" +msgstr "" + +#: marketpress.php:187 +msgid "View Product Tag" +msgstr "" + +#: marketpress.php:186 +msgid "Edit Product Tag" +msgstr "" + +#: marketpress.php:185 +msgid "All Product Tags" +msgstr "" + +#: marketpress.php:163 +msgid "No product categories found" +msgstr "" + +#: marketpress.php:162 +msgid "Choose from the most used product categories" +msgstr "" + +#: marketpress.php:161 +msgid "Add or remove product categories" +msgstr "" + +#: marketpress.php:160 +msgid "Separate product categories with commas" +msgstr "" + +#: marketpress.php:159 +msgid "Search Product Categories" +msgstr "" + +#: marketpress.php:158 +msgid "Parent Product Category:" +msgstr "" + +#: marketpress.php:157 +msgid "Parent Product Category" +msgstr "" + +#: marketpress.php:156 +msgid "New Product Category Name" +msgstr "" + +#: marketpress.php:155 +msgid "Add New Product Category" +msgstr "" + +#: marketpress.php:154 +msgid "Update Product Category" +msgstr "" + +#: marketpress.php:153 +msgid "View Product Category" +msgstr "" + +#: marketpress.php:152 +msgid "Edit Product Category" +msgstr "" + +#: marketpress.php:151 +msgid "All Product Categories" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Please fix the %s1 and then try submitting the form again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Oops! The form contains %s1 which %s2 been highlighted below." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:660 +msgid "have" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:659 +msgid "has" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:651 +msgid "Value must be less than {0}" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:650 +msgid "Please enter only letters and numbers" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:539 +msgid "Due to prolonged inactivity on this page, one or more settings were not saved. Please try again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:535 +msgid "Settings Saved" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-user-select.php:22 +msgid "Select Some Users" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-section.php:18 +msgid "Section Title" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:425 +msgid "Are you sure you want to delete this?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:30 +msgid "Add Row" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-post-select.php:24 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-taxonomy-select.php:22 +msgid "Select Posts" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:210 +msgid "Add Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:129 +msgid "Select the image that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:93 +msgid "Select image(s) that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:79 +msgid "Select the image that you would like to use for this variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:48 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:82 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:68 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:132 +msgid "Select Image" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:31 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:160 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:168 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:19 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:115 +msgid "Select File" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:30 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:18 +msgid "Select the file that you would like to use." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:357 +msgid "Create Variations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:356 +msgid "Add Another Variant" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Insert a value and press ENTER" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "(e.g. White, Grey, Red etc.)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Variation Values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:333 +msgid "Or create new variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "(e.g. Color)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:303 +msgid "You are about to delete selected variants.
    If you want to continue please confirm." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:302 +msgid "Confirmation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:290 +msgid "Insert quantity available. Empty for unlimited." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:281 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:294 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:307 +msgid "Cancel" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:280 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:293 +msgid "Update" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:277 +msgid "Insert the price i.e. 25 or 25.50" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:115 +msgid "Img." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:85 +msgid "Add New Variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:79 +msgid "Delete Variants" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:78 +msgid "Update Prices" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:77 +msgid "Update Inventory" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:76 +msgid "Update Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:75 +msgid "Bulk Actions" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:73 +msgid "Select bulk action" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:196 +msgid "Configure Store" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:195 +msgid "Configure shipping rates, emails and your store's appearance. " +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:190 +msgid "Add Product" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:189 +msgid "Add your first product for sale and get familiar with adding products." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:184 +msgid "Your store is almost ready for its first customers, but first it needs some products. Get started by adding products below, or jump straight into further configuring your store’s settings." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:183 +msgid "Woohoo! Your online store is up and running." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:160 +msgid "Finish Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:124 +msgid "And what metric system do you want to use?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:113 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:142 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:159 +msgid "Back" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:109 +msgid "Do you want to apply tax for your products? You can customize this for each product and variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:105 +msgid "What currency do you want to sell with?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:93 +msgid "And, which countries do you want to sell to?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:89 +msgid "Where is your online store based?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:80 +msgid "Payment Gateway" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:79 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:123 +msgid "Metric System" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:78 +msgid "Currency & Tax" +msgstr "貨幣&税" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:77 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:88 +msgid "Locations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:70 +msgid "Choose where you want to sell your stuff and what currency. Easy!" +msgstr "" + +#: includes/public/class-mp-checkout.php:1400 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:58 +msgid "Continue" +msgstr "続ける" + +#: includes/admin/class-mp-admin.php:83 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:53 +msgid "Skip this step, I'll do this manually" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:49 +msgid "Install store pages" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:44 +msgid "Once you've completed this quick setup wizard you'll have a fully working online store - exciting! Start
    by creating the default store pages for the online store such as the cart, checkout and store pages." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:42 +msgid "MarketPress adds a full online store to your website, with heaps of configuration options and addons
    to suit your needs. It's really easy to get going, and only takes a few minutes to setup!" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:41 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:69 +msgid "Welcome to MarketPress - Quick Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-advanced-select.php:23 +msgid "Select Some Options" +msgstr "" + +#: includes/wpmudev-metaboxes/class-wpmudev-field.php:694 +msgid "You must the WPMUDEV_Field::display() method in your form field class" +msgstr "" + +#: includes/public/class-mp-short-codes.php:636 +msgid "Only %s left in stock..." +msgstr "在庫残り%s です。" + +#: includes/public/class-mp-short-codes.php:633 +msgid "Unlimited stock" +msgstr "在庫無制限" + +#: includes/public/class-mp-short-codes.php:430 +msgid "product_id must be defined" +msgstr "product_id must be defined" + +#: includes/public/class-mp-checkout.php:1250 +msgid "An account with this username already exists" +msgstr "このユーザーネームはすでに存在します。" + +#: includes/public/class-mp-checkout.php:1394 +msgid "Continue as Guest" +msgstr "ゲストとして続ける" + +#: includes/public/class-mp-checkout.php:1393 +msgid "Proceed to checkout and you'll have an opportunity to create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1392 +#: includes/public/class-mp-checkout.php:1398 +msgid "First-time customer?" +msgstr "ご利用は初めてですか?" + +#: includes/public/class-mp-checkout.php:1386 +msgid "Login" +msgstr "ログイン" + +#: includes/public/class-mp-checkout.php:1379 +msgid "E-Mail Address/Username" +msgstr "メールアドレス / ユーザーネーム" + +#: includes/public/class-mp-checkout.php:1377 +msgid "Sign in to speed up the checkout process." +msgstr "チェックアウトを素早く行うためにサインインしてください。" + +#: includes/public/class-mp-checkout.php:1376 +msgid "Have an account?" +msgstr "アカウントをお持ちですか?" + +#: includes/public/class-mp-checkout.php:1297 +msgid "Shipping address different than billing?" +msgstr "請求先住所と配送先の住所が異なりますか?" + +#: includes/public/class-mp-checkout.php:1184 +msgid "There are no available gateways to process this payment." +msgstr "お支払いを処理するための有効なお支払いゲートがありません。" + +#: includes/public/class-mp-checkout.php:1160 +msgid "Payment" +msgstr "お支払い" + +#: includes/public/class-mp-checkout.php:1123 +msgid "Oops! An error occurred while processing your payment." +msgstr "エラー!お支払い処理中にエラーが発生しました。" + +#: includes/public/class-mp-checkout.php:1051 +msgid "Next Step »" +msgstr "次のステップ »" + +#: includes/public/class-mp-checkout.php:1045 +msgid "« Previous Step" +msgstr "« 前のステップ" + +#: includes/public/class-mp-checkout.php:873 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:657 +msgid "error" +msgstr "エラー" + +#: includes/public/class-mp-checkout.php:872 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:658 +msgid "errors" +msgstr "エラー" + +#: includes/public/class-mp-checkout.php:871 +msgid "

    Oops! We found %d %s in the form below.

    Fields that have errors are highlighted in red below. Entering into a field will reveal the actual error that occurred.

    " +msgstr "

    エラー!下記のフォームで %d %s が見つかりました。

    エラーが発生したフィールドがで強調表示されています。エラーが発生しているフィールドを埋めてください。

    " + +#: includes/public/class-mp-checkout.php:870 +msgid "Please enter a valid first and last name" +msgstr "有効な姓名を記入してください。" + +#: includes/public/class-mp-checkout.php:869 +msgid " Please enter a valid card security code" +msgstr "有効なセキュリティーコードを記入してください。" + +#: includes/public/class-mp-checkout.php:868 +msgid "Please enter a valid card expiration" +msgstr "有効なカード期限を記入してください。" + +#: includes/public/class-mp-checkout.php:773 +msgid "Javascript is required in order to checkout. Please enable Javascript in your browser and then refresh this page." +msgstr "チェックアウトするためにはJavascriptが必要です。お客様のブラウザでJavascriptを有効にし、ページをリフレッシュしてください。" + +#: includes/public/class-mp-checkout.php:588 +msgid "An unknown error occurred. Please try again." +msgstr "エラーが発生しました。もう一度お試しください。" + +#: includes/public/class-mp-checkout.php:386 +msgid "Town/City" +msgstr "市 / 街" + +#: includes/public/class-mp-checkout.php:380 +msgid "Apartment, suite, unit, building, floor, etc" +msgstr "建物、アパート名、部屋番号" + +#: includes/public/class-mp-checkout.php:376 +msgid "Address Line 2" +msgstr "住所2" + +#: includes/public/class-mp-checkout.php:363 +msgid "Address Line 1" +msgstr "住所1" + +#: includes/common/class-mp-order.php:770 +#: includes/public/class-mp-checkout.php:354 +msgid "Company" +msgstr "会社" + +#: includes/public/class-mp-checkout.php:330 +msgid "Last" +msgstr "姓" + +#: includes/public/class-mp-checkout.php:321 +msgid "First" +msgstr "名" + +#: includes/public/class-mp-checkout.php:284 +msgid "State/Province" +msgstr "県" + +#: includes/public/class-mp-checkout.php:83 +msgid "Review Order/Payment" +msgstr "注文を確認 / お支払い" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing/Shipping Address" +msgstr "請求先 / 配送先住所" + +#: includes/public/class-mp-checkout.php:80 +msgid "Login/Register" +msgstr "ログイン / 登録" + +#: includes/multisite/class-mp-admin-multisite.php:530 +msgid "Marketplace" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:523 +msgid "Global Marketplace Pages" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +msgid "Store Network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +#: includes/multisite/class-mp-admin-multisite.php:494 +msgid "Store Network Settings" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:440 +msgid "Set theme access permissions for network stores. For a custom css theme, save your css file with the MarketPress Theme: NAME header in the /marketpress/ui/themes/ folder and it will appear in this list so you may select it." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:361 +msgid "Choose a Gateway" +msgstr "お支払いゲートを選択" + +#: includes/multisite/class-mp-admin-multisite.php:336 +msgid "%d products get indexed" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:285 +msgid "Product Indexer" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:281 +msgid "Please hold on..." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:280 +msgid "Index Products" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:279 +msgid "%d products have been indexed in whole network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:182 +msgid "Enable Global Shopping Cart?" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:178 +msgid "Limit Global Widgets/Shortcodes To Main Blog?" +msgstr "" + +#: includes/common/template-functions.php:2802 +#: includes/multisite/template-functions.php:355 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:97 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:114 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:143 +msgid "Next" +msgstr "次" + +#: includes/common/template-functions.php:2801 +#: includes/multisite/template-functions.php:354 +msgid "Prev" +msgstr "プレビュー" + +#: includes/common/template-functions.php:2597 +msgid "Tagged in " +msgstr "タグイン" + +#: includes/common/template-functions.php:2196 +#: includes/common/template-functions.php:2202 +#: includes/common/template-functions.php:2214 +#: includes/common/template-functions.php:2217 +msgid "Oops! We couldn't locate any orders matching that order number. Please verify the order number and try again." +msgstr "エラー! ご記入のオーダー番号に一致する番号が見つかりませんでした。オーダー番号を確認し、もう一度お試しください。" + +#: includes/common/template-functions.php:2138 +msgid "Look Up" +msgstr "検索" + +#: includes/common/template-functions.php:1423 +msgid "Please choose a shipping method" +msgstr "配送方法をご選択ください。" + +#: includes/common/template-functions.php:927 +msgid "If you have your order ID you can look it up using the form below." +msgstr "オーダーIDをお持ちのお客様は、下記フォームからお探しいただけます。" + +#: includes/common/template-functions.php:927 +msgid "Order Search" +msgstr "ご注文検索" + +#: includes/common/template-functions.php:910 +#: includes/public/class-mp-checkout.php:1440 +msgid "Cart" +msgstr "カート" + +#: includes/common/template-functions.php:895 +msgid "[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:887 +msgid "[mp_global_categories_list]" +msgstr "" + +#: includes/common/template-functions.php:880 +msgid "" +"Welcome to our market place!\n" +"\n" +"Check out our network of products:\n" +"\n" +"[mp_list_global_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_global_categories_list]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:879 +msgid "Global Store" +msgstr "" + +#: includes/common/template-functions.php:873 +msgid "" +"Welcome to our online store! Feel free to browse around:\n" +"\n" +"[mp_store_navigation]\n" +"\n" +"Check out our most popular products:\n" +"\n" +"[mp_popular_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_list_categories]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_tag_cloud]" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:127 +msgid "If cart weight is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:126 +msgid "Cart Weight" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:222 +msgid "Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:206 +msgid "Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:196 +msgid "Retail Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:195 +msgid "Online Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:193 +msgid "Rates Request Type" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:189 +msgid "Maximum Weight Per Package" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:195 +#: includes/common/shipping-modules/mp-usps.php:236 +msgid "Enter your standard box sizes as LengthxWidthxHeight (e.g. 12x8x6) For each box defined enter the maximum weight it can contain. Note: the shipping prices this plugin calculates are estimates. If they are consistently too low or too high, please check that the list of boxes above and the product weights are accurate and complete." +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:187 +msgid "Handling Charge Per Box Shipped" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:176 +#: includes/common/shipping-modules/mp-ups.php:181 +msgid "Offered Services" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:165 +msgid "Shipper Number" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:151 +msgid "User ID" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:144 +msgid "Developer Kit Access Key" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:140 +msgid "Use Sandbox Mode?" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:123 +msgid "In order to use UPS, you will need a UPS Developer Kit access key and the UPS user ID and password associated with the access key. Set these up for free here. If this information is missing or incorrect, an error will appear during the checkout process and the buyer will not be able to complete the transaction." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:112 +msgid "If cart total is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:111 +msgid "Cart Total" +msgstr "カート合計" + +#: includes/common/shipping-modules/mp-table-rate.php:95 +#: includes/common/shipping-modules/mp-weight-rate.php:111 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Don't worry about sorting as this will be done automatically upon saving." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:170 +msgid "Method Title (visible for clients)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:409 +#: includes/common/shipping-modules/mp-ups.php:216 +#: includes/common/shipping-modules/mp-usps.php:251 +msgid "Max Weight (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:402 +#: includes/common/shipping-modules/mp-ups.php:209 +#: includes/common/shipping-modules/mp-usps.php:247 +msgid "Size (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:387 +msgid "Enter your standard box sizes as LengthxWidthxHeight ( 12x8x6 ) For each box defined enter the maximum weight it can contain. Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:361 +#: includes/common/shipping-modules/mp-usps.php:229 +msgid "Handling Charge per International Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:353 +msgid "International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:339 +#: includes/common/shipping-modules/mp-usps.php:213 +msgid "Handling Charge per Domestic Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:331 +msgid "Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:321 +msgid "When checked the customer can chose Residential or Commercial delivery with Residential the default. Unchecked it's only Residential rates." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:320 +msgid "Allow Commercial Delivery?" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:315 +msgid "Fedex 10kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:314 +msgid "Fedex 25kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:313 +msgid "Fedex Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:312 +msgid "Fedex Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:311 +msgid "Fedex Pak" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:310 +msgid "Fedex Tube" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:306 +msgid "Default Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:294 +msgid "Dropoff Type" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:290 +msgid "Meter ID" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:134 +msgid "This is a residential address" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:283 +msgid "There was an error processing your card: \"%s\". Please check your credit card info and try again." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:121 +msgid "Wepay makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept cards directly on your site. You don't need a merchant account or gateway. WePay handles everything including storing cards. Credit cards go directly to WePay's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:385 +msgid "There was an error processing your card - \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:356 +msgid "%s Store Purchase - Order ID - %s, Email - %s" +msgstr "%s Store Purchase - Order ID - %s, Email - %s" + +#: includes/common/payment-gateways/stripe.php:251 +msgid "Stripe makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept Visa, MasterCard, American Express, Discover, JCB, and Diners Club cards directly on your site. You don't need a merchant account or gateway. Stripe handles everything, including storing cards, subscriptions, and direct payouts to your bank account. Credit cards go directly to Stripe's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:192 +msgid "ZMW - Zambian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:191 +msgid "ZAR - South African Rand" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:190 +msgid "YER - Yemeni Rial" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:189 +msgid "XPF - Cfp Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:188 +msgid "XOF - West African Cfa Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:187 +msgid "XCD - East Caribbean Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:186 +msgid "XAF - Central African Cfa Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:185 +msgid "WST - Samoan Tala" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:184 +msgid "VUV - Vanuatu Vatu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:183 +msgid "VND - Vietnamese Đồng" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:182 +msgid "VEF - Venezuelan Bolívar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:181 +msgid "UZS - Uzbekistani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:180 +msgid "UYI - Uruguayan Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:178 +msgid "UGX - Ugandan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:177 +msgid "UAH - Ukrainian Hryvnia" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:176 +msgid "TZS - Tanzanian Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:175 +msgid "TWD - New Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:174 +msgid "TTD - Trinidad and Tobago Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:172 +msgid "TOP - Tongan Paʻanga" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:171 +msgid "TJS - Tajikistani Somoni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:169 +msgid "SZL - Swazi Lilangeni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:168 +msgid "SVC - Salvadoran Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:167 +msgid "STD - São Tomé and Príncipe Dobra" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:166 +msgid "SRD - Surinamese Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:165 +msgid "SOS - Somali Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:164 +msgid "SLL - Sierra Leonean Leone" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:163 +msgid "SHP - Saint Helenian Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:160 +msgid "SCR - Seychellois Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:159 +msgid "SBD - Solomon Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:157 +msgid "RWF - Rwandan Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:156 +msgid "RUB - Russian Ruble" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:155 +msgid "RSD - Serbian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:154 +msgid "RON - Romanian Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:153 +msgid "QAR - Qatari Riyal" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:152 +msgid "PYG - Paraguayan Guaraní*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:151 +msgid "PLN - Polish Złoty" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:150 +msgid "PKR - Pakistani Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:149 +msgid "PHP - Philippine Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:148 +msgid "PGK - Papua New Guinean Kina" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:147 +msgid "PEN - Peruvian Nuevo Sol*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:146 +msgid "PAB - Panamanian Balboa*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:144 +msgid "NPR - Nepalese Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:142 +msgid "NIO - Nicaraguan Córdoba*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:141 +msgid "NGN - Nigerian Naira" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:140 +msgid "NAD - Namibian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:139 +msgid "MZN - Mozambican Metical" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:137 +msgid "MXN - Mexican Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:136 +msgid "MWK - Malawian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:135 +msgid "MVR - Maldivian Rufiyaa" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:134 +msgid "MUR - Mauritian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:133 +msgid "MRO - Mauritanian Ouguiya" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:132 +msgid "MOP - Macanese Pataca" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:131 +msgid "MNT - Mongolian Tögrög" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:130 +msgid "MKD - Macedonian Denar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:129 +msgid "MGA - Malagasy Ariary" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:128 +msgid "MDL - Moldovan Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:126 +msgid "LVL - Latvian Lats" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:124 +msgid "LSL - Lesotho Loti" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:123 +msgid "LRD - Liberian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:122 +msgid "LKR - Sri Lankan Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:121 +msgid "LBP - Lebanese Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:120 +msgid "LAK - Lao Kip*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:119 +msgid "KZT - Kazakhstani Tenge" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:118 +msgid "KYD - Cayman Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:117 +msgid "KRW - South Korean Won" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:116 +msgid "KMF - Comorian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:115 +msgid "KHR - Cambodian Riel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:114 +msgid "KGS - Kyrgyzstani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:113 +msgid "KES - Kenyan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:111 +msgid "JMD - Jamaican Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:110 +msgid "ISK - Icelandic Króna" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:109 +msgid "INR - Indian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:108 +msgid "ILS - Israeli New Sheqel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:107 +msgid "IDR - Indonesian Rupiah" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:105 +msgid "HTG - Haitian Gourde" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:103 +msgid "HNL - Honduran Lempira*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:101 +msgid "GYD - Guyanese Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:100 +msgid "GTQ - Guatemalan Quetzal*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:99 +msgid "GNF - Guinean Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:98 +msgid "GMD - Gambian Dalasi" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:97 +msgid "GIP - Gibraltar Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:96 +msgid "GEL - Georgian Lari" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:94 +msgid "FKP - Falkland Islands Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:93 +msgid "FJD - Fijian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:91 +msgid "ETB - Ethiopian Birr" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:90 +msgid "EGP - Egyptian Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:89 +msgid "EEK - Estonian Kroon*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:88 +msgid "DZD - Algerian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:87 +msgid "DOP - Dominican Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:85 +msgid "DJF - Djiboutian Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:84 +msgid "CZK - Czech Koruna*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:83 +msgid "CVE - Cape Verdean Escudo*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:82 +msgid "CRC - Costa Rican Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:81 +msgid "COP - Colombian Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:80 +msgid "CNY - Chinese Renminbi Yuan" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:79 +msgid "CLP - Chilean Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:77 +msgid "CDF - Congolese Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:76 +msgid "CAD - Canadian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:75 +msgid "BZD - Belize Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:74 +msgid "BWP - Botswana Pula" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:73 +msgid "BSD - Bahamian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:72 +msgid "BRL - Brazilian Real*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:71 +msgid "BOB - Bolivian Boliviano*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:70 +msgid "BND - Brunei Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:69 +msgid "BMD - Bermudian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:68 +msgid "BIF - Burundian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:67 +msgid "BGN - Bulgarian Lev" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:66 +msgid "BDT - Bangladeshi Taka" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:65 +msgid "BBD - Barbadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:64 +msgid "BAM - Bosnia & Herzegovina Convertible Mark" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:63 +msgid "AZN - Azerbaijani Manat" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:62 +msgid "AWG - Aruban Florin" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:61 +msgid "AUD - Australian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:60 +msgid "ARS - Argentine Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:59 +msgid "AOA - Angolan Kwanza*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:58 +msgid "ANG - Netherlands Antillean Gulden" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:57 +msgid "AMD - Armenian Dram" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:56 +msgid "ALL - Albanian Lek" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:55 +msgid "AFN - Afghan Afghani*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:54 +msgid "AED - United Arab Emirates Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:345 +msgid "Skrill balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:327 +msgid "Skrill IPN message received." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:283 +msgid "Skrill" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:278 +msgid "Pending payment" +msgstr "お支払い待ち" + +#: includes/common/payment-gateways/skrill.php:144 +msgid "The secret word must match the word submitted in the \"Merchant Tools\" section of your Skrill account." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:134 +msgid "You must use your valid Skrill merchant email. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:133 +msgid "Skrill Email" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:123 +msgid "Resell your inventory via Skrill.com (Moneybookers)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:95 +msgid "ZAR - South-African Rand" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:93 +msgid "TWD - Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:92 +msgid "TRY - New Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:91 +msgid "TND - Tunisian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:90 +msgid "THB - Thailand Baht" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:89 +msgid "SKK - Slovakian Koruna" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:86 +#: includes/common/payment-gateways/stripe.php:158 +msgid "SAR - Saudi Riyal" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:85 +msgid "RSD - Serbian dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:83 +msgid "QAR - Qatari Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:81 +msgid "OMR - Omani Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:80 +msgid "NOK - Norwegian Krone " +msgstr "" + +#: includes/common/payment-gateways/skrill.php:78 +#: includes/common/payment-gateways/stripe.php:138 +msgid "MYR - Malaysian Ringgit" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:77 +#: includes/common/payment-gateways/stripe.php:127 +msgid "MAD - Moroccan Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:74 +msgid "KRW - South-Korean Won" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:72 +msgid "JOD - Jordanian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:70 +msgid "INR - Indian Rupee" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:63 +msgid "EEK - Estonian Kroon" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:56 +msgid "AED - Utd. Arab Emir. Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:52 +msgid "Turkish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:51 +msgid "Swedish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:50 +msgid "Spanish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:49 +msgid "Russian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:48 +msgid "Romainian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:47 +msgid "Polish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:46 +msgid "Italian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:45 +msgid "Greek" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:44 +msgid "German" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:43 +msgid "French" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:42 +msgid "Finnish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:41 +msgid "English" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:40 +msgid "Dutch" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:39 +msgid "Danish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:38 +msgid "Czech" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:37 +msgid "Chinese" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:201 +msgid "There was an error processing your card: %s. Please re-enter your credit card info and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:278 +msgid "
  • There was an error processing your card: \"%s\". Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:274 +msgid "
  • There was an error processing your card. Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:177 +#: includes/common/payment-gateways/stripe.php:279 +msgid "Publishable Key" +msgstr "" + +#: includes/common/payment-gateways/pin.php:163 +msgid "API Credentials?" +msgstr "" + +#: includes/common/payment-gateways/pin.php:147 +msgid "PIN makes it easy to start accepting credit card payments with Australia’s first all-in-one online payment system. Accept all major credit cards directly on your site. Your sales proceeds are deposited to any Australian bank account, no merchant account required." +msgstr "" + +#: includes/common/payment-gateways/pin.php:57 +#: includes/common/payment-gateways/stripe.php:179 +msgid "USD - United States Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:455 +msgid "Email Footer" +msgstr "メールのフッター" + +#: includes/common/payment-gateways/paypal-payflow.php:445 +msgid "Email Header" +msgstr "メールのヘッダー" + +#: includes/common/payment-gateways/paypal-payflow.php:416 +msgid "Partner" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:409 +msgid "Vendor" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:852 +#: includes/common/payment-gateways/paypal-express.php:1126 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences\t section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:749 +msgid "Page Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:744 +msgid "Header Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:739 +msgid "Header Border Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:734 +msgid "Header Image" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:680 +msgid "Locale" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:624 +#: includes/common/payment-gateways/paypal-express.php:658 +msgid "Merchant Email" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:645 +msgid "Paypal Express Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:603 +msgid "Paypal Express Network Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:861 +msgid "Application ID (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:854 +msgid "Signature (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:847 +msgid "API Password (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:839 +msgid "API Username (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:832 +msgid "Signature (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:825 +msgid "API Password (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:817 +msgid "API Username (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:799 +msgid "This message is displayed at the top of the gateway settings page to store admins. It's a good place to inform them of your fees or put any sales messages." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:787 +msgid "Please enter your PayPal email address or business ID you want to recieve fees at." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:786 +msgid "PayPal E-mail" +msgstr "Paypalメールアドレス" + +#: includes/common/payment-gateways/paypal-chained-payments.php:772 +msgid "Fees to Collect (%)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:375 +#: includes/public/class-mp-checkout.php:341 +msgid "Email Address" +msgstr "メールアドレス" + +#: includes/common/payment-gateways/paypal-chained-payments.php:299 +msgid "Sorry, your order was not completed." +msgstr "申し訳ございません。ご注文が完了しませんでした。" + +#: includes/common/payment-gateways/paypal-chained-payments.php:126 +#: includes/common/payment-gateways/paypal-express.php:780 +msgid "You will be redirected to the PayPal site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:90 +#: includes/common/payment-gateways/skrill.php:94 +msgid "USD - U.S. Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:89 +msgid "TRY - Turkish lira" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:88 +#: includes/common/payment-gateways/stripe.php:170 +msgid "THB - Thai Baht" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:87 +msgid "TWD - Taiwan New Dollars" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:86 +#: includes/common/payment-gateways/pin.php:59 +#: includes/common/payment-gateways/skrill.php:88 +#: includes/common/payment-gateways/stripe.php:162 +msgid "SGD - Singapore Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:84 +msgid "RUB - Russian Rubles" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:82 +msgid "PHP - Philippine Pesos" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:81 +#: includes/common/payment-gateways/pin.php:58 +#: includes/common/payment-gateways/skrill.php:79 +#: includes/common/payment-gateways/stripe.php:145 +msgid "NZD - New Zealand Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:79 +msgid "MXN - Mexican Peso" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:78 +msgid "MYR - Malaysian Ringgits" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:77 +#: includes/common/payment-gateways/pin.php:64 +#: includes/common/payment-gateways/skrill.php:73 +#: includes/common/payment-gateways/stripe.php:112 +msgid "JPY - Japanese Yen" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:75 +#: includes/common/payment-gateways/pin.php:63 +#: includes/common/payment-gateways/skrill.php:66 +#: includes/common/payment-gateways/stripe.php:102 +msgid "HKD - Hong Kong Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:73 +msgid "GBP - Pound Sterling" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:68 +#: includes/common/payment-gateways/pin.php:62 +#: includes/common/payment-gateways/skrill.php:59 +msgid "CAD - Canadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:67 +msgid "BRL - Brazilian Real" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:66 +#: includes/common/payment-gateways/pin.php:56 +#: includes/common/payment-gateways/skrill.php:57 +msgid "AUD - Australian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:288 +msgid "There was an error processing your card: \"%s\". Please try again." +msgstr "お客様のカード: “%s”にエラーが発生しました。もう一度お試しください。" + +#: includes/common/payment-gateways/paymill.php:163 +msgid "When running on a live site, Paymill recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:161 +#: includes/common/payment-gateways/pin.php:157 +#: includes/common/payment-gateways/simplify.php:103 +#: includes/common/payment-gateways/stripe.php:260 +#: includes/common/payment-gateways/wepay.php:153 +msgid "Force SSL?" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:151 +msgid "Accept Visa, Mastercard, Maestro UK, Discover and Solo cards directly on your site. You don't need a merchant account or gateway. Credit cards go directly to Paymill's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:131 +msgid "CVV2" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:72 +#: includes/common/payment-gateways/pin.php:61 +#: includes/common/payment-gateways/skrill.php:65 +#: includes/common/payment-gateways/stripe.php:95 +msgid "GBP - British Pound" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:71 +#: includes/common/payment-gateways/stripe.php:173 +msgid "TRY - Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:70 +#: includes/common/payment-gateways/paypal-chained-payments.php:85 +#: includes/common/payment-gateways/skrill.php:87 +#: includes/common/payment-gateways/stripe.php:161 +msgid "SEK - Swedish Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:69 +#: includes/common/payment-gateways/skrill.php:84 +msgid "RON - Romanian Leu New" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:68 +#: includes/common/payment-gateways/paypal-chained-payments.php:83 +#: includes/common/payment-gateways/skrill.php:82 +msgid "PLN - Polish Zloty" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:67 +#: includes/common/payment-gateways/paypal-chained-payments.php:80 +#: includes/common/payment-gateways/stripe.php:143 +msgid "NOK - Norwegian Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:66 +#: includes/common/payment-gateways/skrill.php:75 +#: includes/common/payment-gateways/stripe.php:125 +msgid "LTL - Lithuanian Litas" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:65 +#: includes/common/payment-gateways/paypal-chained-payments.php:69 +#: includes/common/payment-gateways/skrill.php:60 +#: includes/common/payment-gateways/stripe.php:78 +msgid "CHF - Swiss Franc" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:64 +#: includes/common/payment-gateways/skrill.php:76 +msgid "LVL - Latvian Lat" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:63 +#: includes/common/payment-gateways/paypal-chained-payments.php:74 +#: includes/common/payment-gateways/skrill.php:69 +msgid "ILS - Israeli Shekel" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:62 +#: includes/common/payment-gateways/skrill.php:71 +msgid "ISK - Iceland Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:61 +#: includes/common/payment-gateways/paypal-chained-payments.php:76 +#: includes/common/payment-gateways/skrill.php:68 +#: includes/common/payment-gateways/stripe.php:106 +msgid "HUF - Hungarian Forint" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:60 +#: includes/common/payment-gateways/paypal-chained-payments.php:71 +#: includes/common/payment-gateways/skrill.php:62 +#: includes/common/payment-gateways/stripe.php:86 +msgid "DKK - Danish Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:59 +#: includes/common/payment-gateways/skrill.php:67 +#: includes/common/payment-gateways/stripe.php:104 +msgid "HRK - Croatian Kuna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:58 +#: includes/common/payment-gateways/paypal-chained-payments.php:70 +#: includes/common/payment-gateways/skrill.php:61 +msgid "CZK - Czech Koruna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:57 +#: includes/common/payment-gateways/skrill.php:58 +msgid "BGN - Bulgarian Leva" +msgstr "" + +#: includes/common/payment-gateways/payflow/class-mp-gateway-worker-payflow.php:123 +msgid "There was an error connecting to PayPal. Please try again." +msgstr "Paypalに接続中にエラーが発生しました。もう一度お試しください。" + +#: includes/common/payment-gateways/payfast.php:344 +msgid "This setting will log all PayFast communication to the \"payfast.log\" file." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:342 +msgid "Log Debugging Info?" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:335 +msgid "DO NOT INPUT A VALUE UNLESS YOU HAVE SET ONE IN THE SETTINGS SECTION OF YOUR PAYFAST SETTINGS." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:333 +msgid "PayFast Passphrase" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:323 +msgid "You can find your credentials on your integration page." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:321 +msgid "PayFast Merchant Credentials" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:311 +msgid "PayFast Mode" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:308 +msgid "PayFast is a payments processing service for South Africa. We make it safe for buyers to send money and easy for sellers to receive money. More Info »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:306 +msgid "PayFast Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:285 +msgid "Your payment via PayFast for this order totaling %s is complete. The transaction number is %s." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:278 +msgid "Your payment via PayFast for this order totaling %s is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:124 +msgid "Your PayFast transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:82 +#: includes/common/payment-gateways/payfast.php:83 +msgid "PayFast" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:157 +msgid "API error: - \"%s\"" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:198 +msgid "The payment request is under process" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:140 +msgid "Order: #" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:116 +msgid "You will be redirected to the Mollie site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:73 +msgid "%sMollie%s provides a fully PCI Compliant and secure way to collect payments via iDeal, Credit Card, Bancontact / Mister Cash, SOFORT Banking, Overbooking, Bitcoin, PayPal, paysafecard and AcceptEmail." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:53 +#: includes/common/payment-gateways/mollie.php:54 +#: includes/common/payment-gateways/mollie.php:195 +#: includes/common/payment-gateways/mollie.php:245 +msgid "Mollie" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:50 +#: includes/common/payment-gateways/paymill.php:56 +#: includes/common/payment-gateways/paypal-chained-payments.php:72 +#: includes/common/payment-gateways/pin.php:60 +#: includes/common/payment-gateways/skrill.php:64 +#: includes/common/payment-gateways/stripe.php:92 +msgid "EUR - Euro" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:306 +msgid "Access Key" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:300 +msgid "You must login to the Mijireh.com dashboard to obtain the Access Key." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:299 +msgid "Credentials" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:289 +msgid "Mijireh Checkout provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:269 +msgid "Mijireh Error: " +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:89 +msgid "You will be redirected to the Mijireh.com site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:87 +msgid "Your Mijireh transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:42 +#: includes/common/payment-gateways/mijireh.php:43 +#: includes/common/payment-gateways/mijireh.php:324 +msgid "Mijireh" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:145 +msgid "These are the manual payment instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:189 +msgid "This is the email text to send to those who have made free order checkouts. You should include your free order instructions / information here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:183 +msgid "This is the free order information to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:182 +msgid "Confirmation User Information" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:177 +msgid "This is the information to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:163 +msgid "If enabled, all free orders will be automatically marked as paid." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:159 +msgid "Payment Status" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:149 +msgid "This gateway is automatically activated if order totalling 0 and it can't be disabled" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:35 +#: includes/common/payment-gateways/free_orders.php:36 +#: includes/common/payment-gateways/free_orders.php:89 +msgid "Free Order" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:34 +#: includes/common/payment-gateways/free_orders.php:197 +msgid "Free Orders" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:515 +msgid "Sandbox API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:266 +#: includes/common/payment-gateways/eway31.php:542 +msgid "eWay Rapid 3.1 Payments (beta)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:403 +msgid "Hosted Payment Page Language" +msgstr "" + +#: includes/common/payment-gateways/eway.php:373 +msgid "Note when testing in sandbox mode it will use the default eWay test API credentials. Also, please note that cart total needs to be a whole number (e.g. 10.00) in order to generate a successful transaction, otherwise the transaction will fail." +msgstr "" + +#: includes/common/payment-gateways/eway.php:267 +msgid "You will be redirected to https://www.eway.com.au to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:380 +msgid "You have chosen to checkout using %s. Please confirm your order details and click \"Submit Order\" when finished." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:272 +#: includes/common/payment-gateways/paymill.php:131 +#: includes/common/payment-gateways/stripe.php:231 +msgid "Security Code " +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Enter in MM/YYYY or MM/YY format" +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Expiration" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:321 +msgid "Delim Data" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:307 +#: includes/common/payment-gateways/paypal-payflow.php:456 +msgid "This text will appear as the footer of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:287 +#: includes/common/payment-gateways/paypal-payflow.php:440 +msgid "Email Customer (on success)" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:278 +msgid "Authorize.net default is \",\". Otherwise, get this from your credit card processor. If the transactions are not going through, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:277 +msgid "Delimeter Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:193 +msgid "Held For Review" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:310 +#: includes/common/payment-gateways/payfast.php:314 +msgid "Test" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:300 +#: includes/common/payment-gateways/pin.php:170 +#: includes/common/payment-gateways/stripe.php:272 +msgid "Secret Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:283 +msgid "Select Your Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:97 +msgid "Your payment will be processed by the iDEAL network" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:208 +msgid "These are the CubePoints to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:203 +msgid "These are the CubePoints instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:266 +msgid "If enabled, all API calls will be made to https://test.bitpay.com." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:263 +msgid "Use Test Mode?" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:259 +msgid "If checked, response fron bitpay will be stored in log file, keep it disabled unless required." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:256 +msgid "Enable Debug Log" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:249 +msgid "Full Notifications" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:231 +#: includes/common/payment-gateways/eway31.php:499 +#: includes/common/payment-gateways/eway31.php:526 +#: includes/common/payment-gateways/mollie.php:83 +#: includes/common/shipping-modules/mp-fedex.php:269 +msgid "API Key" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:222 +msgid "You can now accept a payment from any country on Earth, with no risk of fraud. To use Bitpay, you need to signup on Bitpay. \\n After completing the signup process, you can get api keys at Bitpay API key. You can read more about Bitpay at Bitpay API. \\n Bitpay requires SSL(https) for payment notifications to work." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:61 +msgid "You will be redirected to bitpay.com, for bitcoin payment. It is completely safe." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:346 +msgid "You must login to the 2Checkout vendor dashboard to obtain the seller ID and secret word. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:345 +#: includes/common/payment-gateways/authorizenet-aim.php:239 +#: includes/common/payment-gateways/paymill.php:168 +#: includes/common/payment-gateways/paypal-express.php:704 +#: includes/common/payment-gateways/simplify.php:80 +#: includes/common/payment-gateways/stripe.php:265 +#: includes/common/payment-gateways/wepay.php:158 +msgid "API Credentials" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:325 +#: includes/common/payment-gateways/_bitpay.php:220 +#: includes/common/payment-gateways/_cubepoints.php:185 +#: includes/common/payment-gateways/_ideal.php:268 +#: includes/common/payment-gateways/_payway.php:255 +#: includes/common/payment-gateways/authorizenet-aim.php:219 +#: includes/common/payment-gateways/eway.php:352 +#: includes/common/payment-gateways/eway31.php:460 +#: includes/common/payment-gateways/free_orders.php:147 +#: includes/common/payment-gateways/manual-payments.php:126 +#: includes/common/payment-gateways/mijireh.php:287 +#: includes/common/payment-gateways/mollie.php:71 +#: includes/common/payment-gateways/paymill.php:149 +#: includes/common/payment-gateways/paypal-chained-payments.php:344 +#: includes/common/payment-gateways/paypal-payflow.php:376 +#: includes/common/payment-gateways/pin.php:145 +#: includes/common/payment-gateways/simplify.php:69 +#: includes/common/payment-gateways/skrill.php:121 +#: includes/common/payment-gateways/stripe.php:249 +#: includes/common/payment-gateways/wepay.php:119 +#: includes/common/shipping-modules/mp-fedex.php:243 +#: includes/common/shipping-modules/mp-flat-rate.php:63 +#: includes/common/shipping-modules/mp-pickup.php:140 +#: includes/common/shipping-modules/mp-table-rate.php:94 +#: includes/common/shipping-modules/mp-ups.php:122 +#: includes/common/shipping-modules/mp-usps.php:167 +#: includes/common/shipping-modules/mp-weight-rate.php:110 +msgid "%s Settings" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:136 +msgid "You will be redirected to the 2Checkout site to finalize your payment." +msgstr "" + +#: includes/common/helpers.php:169 includes/public/class-mp-checkout.php:1277 +msgid "Billing" +msgstr "" + +#: includes/common/helpers.php:144 +msgid "FREE" +msgstr "" + +#: includes/common/helpers.php:134 +msgid "Coupons:" +msgstr "" + +#: includes/common/helpers.php:95 +msgid "Qty" +msgstr "" + +#: includes/common/helpers.php:94 +msgid "Sku" +msgstr "" + +#: includes/common/data.php:59 +msgid "Zip Code" +msgstr "" + +#: includes/common/class-mp-taxes.php:336 +msgid "Standard Table" +msgstr "" + +#: includes/common/class-mp-product.php:2698 +msgid "Tweet" +msgstr "" + +#: includes/common/class-mp-product.php:2321 +msgid "Notification Preferences: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2320 +msgid "Edit Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2318 +msgid "Link: %s

    " +msgstr "" + +#: includes/common/class-mp-product.php:2317 +msgid "Current Inventory: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2316 +msgid "Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2314 +msgid "This message is being sent to notify you of low stock of a product in your online store according to your preferences.

    " +msgstr "" + +#: includes/common/class-mp-product.php:1817 +msgid "" +msgstr "" + +#: includes/common/class-mp-product.php:1427 +#: includes/common/class-mp-product.php:1430 +msgid "(tax incl.)" +msgstr "(税込)" + +#: includes/common/class-mp-product.php:1422 +#: includes/common/class-mp-product.php:1425 +msgid "(tax excl.)" +msgstr "(税抜)" + +#: includes/common/class-mp-product.php:1300 +#: includes/common/class-mp-product.php:1315 +msgid "%s each" +msgstr "%s 各" + +#: includes/common/class-mp-product.php:988 +msgid "Choose Options" +msgstr "" + +#: includes/common/class-mp-product.php:526 +msgid "Choose a %s" +msgstr "" + +#: includes/common/class-mp-product.php:284 +#: includes/common/class-mp-product.php:292 +#: includes/common/class-mp-product.php:615 +msgid "We're sorry, we only have %d of this item in stock right now." +msgstr "" + +#: includes/common/class-mp-order.php:1456 +msgid "Shipped: Track Shipment" +msgstr "" + +#: includes/common/class-mp-order.php:1049 +msgid "Order Received" +msgstr "受注日" + +#: includes/common/class-mp-order.php:1014 +msgid "In Process" +msgstr "" + +#: includes/common/class-mp-order.php:969 +msgid "Order #" +msgstr "" + +#: includes/common/class-mp-order.php:866 +msgid "Copy billing address to shipping address" +msgstr "請求先住所を配送先住所にコピーする" + +#: includes/common/class-mp-order.php:822 +#: includes/public/class-mp-checkout.php:1314 +msgid "Special Instructions" +msgstr "" + +#: includes/common/class-mp-order.php:817 +#: includes/common/payment-gateways/stripe.php:335 +msgid "Email" +msgstr "" + +#: includes/common/class-mp-order.php:813 +#: includes/common/payment-gateways/stripe.php:341 +#: includes/public/class-mp-checkout.php:416 +msgid "Phone" +msgstr "" + +#: includes/common/class-mp-order.php:791 +#: includes/common/payment-gateways/stripe.php:337 +msgid "State" +msgstr "" + +#: includes/common/class-mp-order.php:776 +msgid "Address 1" +msgstr "" + +#: includes/common/class-mp-order.php:766 +msgid "Last Name" +msgstr "" + +#: includes/common/class-mp-order.php:762 +msgid "First Name" +msgstr "" + +#: includes/common/class-mp-installer.php:677 +msgid "MarketPress requires a database update to continue working correctly. Go to update page" +msgstr "" + +#: includes/common/class-mp-installer.php:657 +msgid "MarketPress performed a quick automatic update successfully!" +msgstr "" + +#: includes/common/class-mp-installer.php:653 +msgid "Perform Update" +msgstr "" + +#: includes/common/class-mp-installer.php:647 +msgid "Please update each subsite in your WordPress network where you have older version of the MarketPress plugin." +msgstr "" + +#: includes/common/class-mp-installer.php:641 +msgid "Depending on the amount of products you have, this update could take quite some time. Please keep this window open while the update completes. If you have products with multiple variations, the progress bar may move slower, please don't exit the window." +msgstr "" + +#: includes/common/class-mp-installer.php:632 +msgid "Product Metadata" +msgstr "" + +#: includes/common/class-mp-installer.php:601 +msgid "MarketPress requires a database update to continue working correctly.
    Below you will find a list of items that require your attention." +msgstr "" + +#: includes/common/class-mp-installer.php:600 +msgid "Update MarketPress Data" +msgstr "" + +#: includes/common/class-mp-installer.php:530 +msgid "Update Data" +msgstr "" + +#: includes/common/class-mp-installer.php:67 +msgid "Complete!" +msgstr "" + +#: includes/common/class-mp-installer.php:66 +msgid "Upgrading Database...Please Wait..." +msgstr "" + +#: includes/common/class-mp-installer.php:64 +msgid "An error occurred while updating. Please refresh this page and try again." +msgstr "" + +#: includes/common/class-mp-cart.php:2447 +msgid "Some items in your cart have fallen below the quantity you currently have in your cart. We have adjusted the quantity in your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:2443 +msgid "Some items in your cart are no longer available. We have removed these items from your cart automatically." +msgstr "お客様のカートの中に、ご利用できない商品がございます。カートから自動で削除いたしました。" + +#: includes/common/class-mp-cart.php:1566 +msgid "item" +msgstr "商品" + +#: includes/common/class-mp-cart.php:1563 +#: includes/common/class-mp-cart.php:1568 +msgid "items" +msgstr "商品" + +#: includes/common/class-mp-cart.php:1363 +msgid "Items/Products added to Cart will show here." +msgstr "" + +#: includes/common/class-mp-cart.php:1362 +msgid "Your shopping cart is empty." +msgstr "お買い物カートが空です。" + +#: includes/common/class-mp-cart.php:1357 +msgid "View Cart" +msgstr "カートを見る" + +#: includes/common/class-mp-cart.php:1241 +#: includes/common/class-mp-cart.php:1298 +#: includes/public/class-mp-short-codes.php:159 +msgid "Adding..." +msgstr "追加しています・・・" + +#: includes/common/class-mp-cart.php:1033 +msgid "Continue Shopping?" +msgstr "買い物を続けますか?" + +#: includes/common/class-mp-cart.php:961 +msgid "Secure Checkout
    Shopping is always safe and secure." +msgstr "安全なお支払い
    いつでも安心・安全にお買い物いただけます。" + +#: includes/common/class-mp-cart.php:959 +msgid "You are about to submit your order!
    Please review your order details before continuing. You will be charged immediately upon clicking \"Submit Order\"." +msgstr "注文を送信しようとしています。
    続ける前に、ご注文詳細を確認してください。”注文を送信”をクリックすると、すぐに料金が請求されます。" + +#: includes/common/class-mp-cart.php:956 +msgid "Continue »" +msgstr "続ける »" + +#: includes/common/class-mp-cart.php:955 +msgid "Submit Order" +msgstr "注文を送信" + +#: includes/common/class-mp-cart.php:818 +msgid "There are no items in your cart - go add some !" +msgstr "商品がカートにありません。商品を追加 !" + +#: includes/common/class-mp-cart.php:816 +msgid "The cart is disabled." +msgstr "" + +#: includes/common/class-mp-cart.php:735 +msgid "Estimated %s" +msgstr "お見積もり %s" + +#: includes/common/class-mp-cart.php:717 +msgid "Estimated Shipping" +msgstr "お見積もり配送料" + +#: includes/common/class-mp-cart.php:697 +msgid "Product Total" +msgstr "商品合計" + +#: includes/common/class-mp-cart.php:670 includes/common/class-mp-cart.php:672 +msgid "Estimated Total (%s, %s)" +msgstr "お見積もり合計料金(%s, %s)" + +#: includes/common/class-mp-cart.php:668 +msgid "Estimated Total (%s)" +msgstr "お見積もり合計料金(%s)" + +#: includes/common/class-mp-cart.php:666 includes/common/class-mp-cart.php:752 +msgid "Estimated Total" +msgstr "お見積もり合計料金" + +#: includes/admin/widgets/product-list.php:247 +msgid "Show Thumbnail Placeholder image (if image is not set)" +msgstr "" + +#: includes/admin/widgets/cart.php:73 +msgid "Display product price" +msgstr "" + +#: includes/admin/widgets/cart.php:71 +msgid "Display product quantity" +msgstr "" + +#: includes/admin/widgets/cart.php:69 +msgid "Display product image" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:93 +msgid "General Shipping Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:773 +msgid "If you are having conflicts with the lightbox library from your theme or another plugin you should uncheck this." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:772 +msgid "Use Built-In Lightbox for Images?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:762 +msgid "Disable Large Image Display?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:688 +msgid "Show Product Image?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:682 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:684 +msgid "Show Tags List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:676 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:678 +msgid "Show Categories List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:671 +msgid "If enabled, description excerpt will be added above Add to cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:669 +msgid "Show Excerpt?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:665 +msgid "If enabled, users will be able to choose how many of the product they want to purchase before adding to their cart. If not checked, quantity could be change later on the cart page." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:663 +msgid "Show Quantity Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:649 +msgid "Settings related to the display of individual product pages." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:648 +msgid "Product Page Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:605 +msgid "Related Products Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:573 +msgid "Show Related Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:568 +msgid "Related Product Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:549 +msgid "Order Status Entries Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:510 +msgid "Sort Products By" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:497 +msgid "Products Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:492 +msgid "Paginate Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:478 +msgid "Excerpts Length" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:473 +msgid "Show Excerpts?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:450 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:746 +msgid "Image Alignment" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:412 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:708 +msgid "Custom Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:401 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:697 +msgid "Large - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:400 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:696 +msgid "Medium - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:399 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:695 +msgid "Thumbnail - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:397 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:693 +msgid "Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:386 +msgid "Select default placeholder image thumbnail when product image is not available (if empty, plugin's built-in image will be used)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:380 +msgid "Show default product placeholder thumbnail when product image is not available?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:374 +msgid "Show Product Thumbnail?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:369 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:658 +msgid "Redirect to cart page for immediate checkout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:368 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:657 +msgid "Stay on current product page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:366 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:655 +msgid "MarketPress supports two \"flows\" for adding products to the shopping cart. After adding a product to their cart, two things can happen:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:365 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:654 +msgid "Add To Cart Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:355 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:628 +msgid "Four" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:354 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:627 +msgid "Three" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:353 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:626 +msgid "Two" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:625 +msgid "One" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:349 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:622 +msgid "Set the number of products that show up in a grid row to best fit your theme" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:348 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:621 +msgid "How many products per row?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:342 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:609 +msgid "Display as grid" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:341 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:608 +msgid "Display as list" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:339 +msgid "Product Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:334 +msgid "Settings related to the display of product lists/grids." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:333 +msgid "Product List/Grid Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:314 +msgid "Show Twitter Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:309 +msgid "Twitter" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:303 +msgid "Show Share Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:297 +msgid "Recommend" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:296 +msgid "Like" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:294 +msgid "Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:283 +msgid "Show Facebook Like Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:278 +msgid "Facebook" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:257 +msgid "Show \"Pin It\" Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:252 +msgid "Pinterest" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:246 +msgid "Social Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:193 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:202 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:211 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:220 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:229 +#: includes/multisite/class-mp-admin-multisite.php:532 +#: includes/multisite/class-mp-admin-multisite.php:541 +#: includes/multisite/class-mp-admin-multisite.php:550 +msgid "Choose a Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:191 +msgid "This page will be used as the root for your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:168 +#: includes/multisite/class-mp-admin-multisite.php:586 +msgid "Create Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "uncropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "cropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:87 +#: includes/multisite/class-mp-admin-multisite.php:121 +#: includes/multisite/class-mp-admin-multisite.php:620 +msgid "An error occurred while creating the store page. Please try again." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:66 +msgid "Choose the gateway(s) that you would like to be available for checkout." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:65 +msgid "Enabled Gateways" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:78 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:146 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:179 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:213 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:274 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:307 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:341 +msgid "Text" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:71 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:139 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:172 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:206 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:267 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:300 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:334 +msgid "Subject" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:52 +msgid "Notification Email" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:510 +msgid "Enabling this option will display label `excl. tax` or `incl. tax` after price" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:509 +msgid "Display tax label?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:504 +msgid "Enabling this option will show Price + Tax, eg. if your price is 100 and your tax 20, your price will be 120" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:416 +#: includes/multisite/class-mp-admin-multisite.php:234 +msgid "Price Format" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:366 +msgid "Enabling this field will display a textbox on the shipping checkout page for users to enter special instructions for their order. Useful for product personalization, etc." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:365 +msgid "Show Special Instructions Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:360 +msgid "Universal" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:359 +msgid "Old" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1167 +#: includes/admin/store-settings/class-mp-store-settings-general.php:358 +msgid "New" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:353 +msgid "If you already use Google Analytics for your website, you can track detailed ecommerce information by enabling this setting. Choose whether you are using the new asynchronous or old tracking code. Before Google Analytics can report ecommerce activity for your website, you must enable ecommerce tracking on the profile settings page for your website. Also keep in mind that some gateways do not reliably show the receipt page, so tracking may not be accurate in those cases. It is recommended to use the PayPal gateway for the most accurate data. More information »" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:347 +msgid "Do you want to display the product price on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:346 +msgid "Show product price on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:340 +msgid "Do you want to display the product quantity on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:339 +msgid "Show product quantity on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:333 +msgid "Do you want to display the product image on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:332 +msgid "Show product image on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:327 +msgid "This option hide floating Mini Cart in top right corner." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:326 +msgid "Disable Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:316 +msgid "If unchecked your Orders admin page will be hidden" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:315 +msgid "Show admin Orders page?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:309 +msgid "Disable Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:303 +msgid "Force Login?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:297 +msgid "Hide Out of Stock Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:555 +msgid "This will prevent multiples of the same downloadable product form being added to the cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:554 +msgid "Limit Digital Products Per-order?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:268 +msgid "If you're having issues downloading large files and have worked with your hosting provider to increase your memory limits, try enabling this - just keep in mind, it's not as secure!" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:267 +msgid "Use Alternative Download Method?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:252 +msgid "Download Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:230 +msgid "Change product post type" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:51 +msgid "%s Capabilities" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-addons.php:47 +msgid "Store Settings: Add Ons: %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:254 +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:56 +msgid "Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Edit Product Attribute %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:246 +msgid "Exporters" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:238 +msgid "Short Codes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:207 +msgid "An appropriate message for key \"%s\" could not be found." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:204 +msgid "Product attribute updated successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:203 +msgid "Product attribute added successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +msgid "Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +#: includes/admin/store-settings/class-mp-store-settings-addons.php:121 +msgid "Store Settings: Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "Store Settings: Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:118 +msgid "Store Settings: Product Tags" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:117 +msgid "Store Settings: Product Categories" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Store Settings: Product Attributes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +msgid "Store Settings: Payments" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:114 +msgid "Store Settings: Shipping" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +#: includes/admin/class-mp-store-settings-admin.php:226 +msgid "Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +msgid "Store Settings: Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:112 +msgid "Store Settings: Presentation" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:111 +msgid "Store Settings: General" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1489 +msgid "Select a Product" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1447 +msgid "Reset to Defaults" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1446 +msgid "Insert Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1202 +#: includes/admin/class-mp-shortcode-builder.php:1227 +#: includes/admin/class-mp-shortcode-builder.php:1252 +msgid "The text to show in the link." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1196 +#: includes/admin/class-mp-shortcode-builder.php:1221 +#: includes/admin/class-mp-shortcode-builder.php:1246 +msgid "Whether to return a clickable link or url." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1177 +msgid "Whether to display the cart only on store pages or not." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1171 +msgid "Whether to show or hide the product price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1165 +msgid "Whether to show or hide the product quantity." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1159 +msgid "Whether to show or hide the product image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1153 +msgid "The text displayed before the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1147 +msgid "The title of the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1058 +#: includes/admin/class-mp-shortcode-builder.php:1121 +msgid "A label to prepend to the price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1032 +#: includes/admin/class-mp-shortcode-builder.php:1127 +msgid "What context for display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1004 +msgid "Set the alignment of the image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:998 +msgid "Set a custom pixel width/height. If omitted defaults to the size set by \"context\"." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:993 +msgid "Widget" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:988 +msgid "What context for preset size options." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:982 +#: includes/admin/class-mp-shortcode-builder.php:1026 +#: includes/admin/class-mp-shortcode-builder.php:1052 +#: includes/admin/class-mp-shortcode-builder.php:1077 +#: includes/admin/class-mp-shortcode-builder.php:1096 +#: includes/admin/class-mp-shortcode-builder.php:1115 +msgid "The ID of the product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:963 +msgid "Whether to display the product meta (e.g. price, buy button)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:738 +#: includes/admin/class-mp-shortcode-builder.php:905 +#: includes/admin/class-mp-shortcode-builder.php:958 +#: includes/admin/class-mp-shortcode-builder.php:992 +#: includes/admin/class-mp-shortcode-builder.php:1035 +#: includes/admin/class-mp-shortcode-builder.php:1130 +#: includes/admin/class-mp-shortcode-builder.php:1349 +msgid "List" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:957 +#: includes/admin/class-mp-shortcode-builder.php:991 +#: includes/admin/class-mp-shortcode-builder.php:1034 +#: includes/admin/class-mp-shortcode-builder.php:1129 +msgid "Single" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:953 +msgid "Whether and what context of image size to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:948 +msgid "Full" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:943 +msgid "Whether and what type of content to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:937 +msgid "Whether to display the product title." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:931 +msgid "The ID of the product to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:747 +#: includes/admin/class-mp-shortcode-builder.php:914 +msgid "Hide" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:746 +#: includes/admin/class-mp-shortcode-builder.php:913 +msgid "Show" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:744 +#: includes/admin/class-mp-shortcode-builder.php:911 +msgid "Whether or not to show the product filters." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:724 +#: includes/admin/class-mp-shortcode-builder.php:891 +#: includes/admin/class-mp-shortcode-builder.php:1335 +msgid "Limits list to a specific product tag." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:713 +#: includes/admin/class-mp-shortcode-builder.php:880 +#: includes/admin/class-mp-shortcode-builder.php:1324 +msgid "Limits list to a specific product category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:706 +#: includes/admin/class-mp-shortcode-builder.php:873 +#: includes/admin/class-mp-shortcode-builder.php:1317 +msgid "Direction to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:684 +#: includes/admin/class-mp-shortcode-builder.php:851 +#: includes/admin/class-mp-shortcode-builder.php:1295 +msgid "What field to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:678 +#: includes/admin/class-mp-shortcode-builder.php:845 +#: includes/admin/class-mp-shortcode-builder.php:1283 +msgid "How many products to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:672 +#: includes/admin/class-mp-shortcode-builder.php:839 +#: includes/admin/class-mp-shortcode-builder.php:1277 +msgid "The page number to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:666 +#: includes/admin/class-mp-shortcode-builder.php:833 +#: includes/admin/class-mp-shortcode-builder.php:1271 +msgid "Whether to paginate the product list. This is useful to only show a subset." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:808 +msgid "How many related items to show." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:790 +msgid "How to relate the products" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:784 +msgid "The product to show related items for." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:765 +msgid "The maximum number of products to display" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:647 +msgid "Comma separated list of tags (term_id) to include. For example, include=5,27 means tags that have the term_id 5 or 27 will be the only tags displayed. Defaults to include everything." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:641 +msgid "Comma separated list of tags (term_id) to exclude. For example, exclude=5,27 means tags that have the term_id 5 or 27 will NOT be displayed. Defaults to exclude nothing." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:633 +#: includes/admin/class-mp-shortcode-builder.php:1420 +msgid "Sort order." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:629 +#: includes/admin/class-mp-shortcode-builder.php:1416 +msgid "Count" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:626 +#: includes/admin/class-mp-shortcode-builder.php:1413 +msgid "Order of the tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:620 +msgid "The text/space between tags)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:616 +msgid "UL with a class of \"wp-tag-cloud\"" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:615 +msgid "separated by whitespace defined by \"separator\" parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:613 +msgid "Format of the cloud display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:607 +msgid "The number of actual tags to display in the cloud. (Use \"0\" to display all tags.)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:601 +msgid "Unit of measure as pertains to the smallest and largest values. This can be any CSS length value, e.g. pt, px, em, %." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:595 +msgid "The text size of the tag with the largest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:589 +msgid "The text size of the tag with the smallest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:570 +msgid "The \"tabindex\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:564 +msgid "The \"name\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:558 +msgid "The \"id\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:552 +msgid "Which category ID is selected." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:540 +msgid "The max depth. This is ignored unless hierarchical is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:536 +#: includes/multisite/template-functions.php:816 +msgid "No Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:414 +#: includes/admin/class-mp-shortcode-builder.php:546 +msgid "Calculates link or post counts by including items from child categories. If show_counts and hierarchical are true this is automatically set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:409 +msgid "Value of n (some number) specifies the depth (or level) to descend in displaying Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:408 +msgid "Show only top level Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:407 +msgid "All Categories displayed in flat (no indent) form (overrides hierarchical)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:406 +msgid "All Categories and child Categories (Default)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:402 +msgid "This parameter controls how many levels in the hierarchy of Categories are to be included in the list of Categories. NOTE: The \"hierarchical\" argument, which is disabled by default, will override the depth argument, unless it is true. When the argument is false, it will display all of the categories. When it is enabled it will use the value in the \"depth\" argument." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:396 +#: includes/admin/class-mp-shortcode-builder.php:1394 +msgid "Sets the number of Categories to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:390 +#: includes/admin/class-mp-shortcode-builder.php:534 +msgid "Set the text to show when no categories are listed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:384 +msgid "Set the title and style of the outer list item. If present but empty, the outer list item will not be displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:378 +#: includes/admin/class-mp-shortcode-builder.php:528 +msgid "Display sub-categories as inner list items (below the parent list item) or inline." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:368 +#: includes/admin/class-mp-shortcode-builder.php:511 +msgid "Exclude category-tree from the results. The parameter include must be empty. If the hierarchical parameter is true, then use exclude instead of exclude_tree." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:354 +msgid "Only include these categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:340 +#: includes/admin/class-mp-shortcode-builder.php:356 +#: includes/admin/class-mp-shortcode-builder.php:370 +#: includes/admin/class-mp-shortcode-builder.php:496 +#: includes/admin/class-mp-shortcode-builder.php:513 +msgid "Select Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:338 +#: includes/admin/class-mp-shortcode-builder.php:494 +msgid "Exclude one or more categories from the results. The parameter include must be empty." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:332 +msgid "Set a URI for an image (usually an rss feed icon) to act as a link to each categories' rss-2 feed. This parameter overrides the feed parameter. There is no default for this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:320 +msgid "Display a link to each category's rss-2 feed and set the link text to display. The default is no text and no feed displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:313 +#: includes/admin/class-mp-shortcode-builder.php:487 +msgid "Any" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:307 +#: includes/admin/class-mp-shortcode-builder.php:481 +msgid "Only display categories that are children of the category identified by this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:301 +msgid "Sets whether a category's description is inserted into the title attribute of the links created (i.e. <a title=\"<em>Category Description</em>\" href=\"...)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:295 +#: includes/admin/class-mp-shortcode-builder.php:475 +msgid "Toggles the display of categories with no posts." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:289 +#: includes/admin/class-mp-shortcode-builder.php:469 +#: includes/admin/class-mp-shortcode-builder.php:1388 +msgid "Toggles the display of the current count of posts in each category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:279 +msgid "Style to display the categories list in. A value of list displays the categories as list items while none generates no special display method (the list items are separated by
    tags)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:269 +#: includes/admin/class-mp-shortcode-builder.php:449 +#: includes/admin/class-mp-shortcode-builder.php:1378 +msgid "Sort order for categories (either ascending or descending)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:259 +#: includes/admin/class-mp-shortcode-builder.php:439 +#: includes/admin/class-mp-shortcode-builder.php:1368 +msgid "Sort categories alphabetically, by unique Category ID, or by the count of posts in that Category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:253 +#: includes/admin/class-mp-shortcode-builder.php:433 +msgid "If a value is entered, causes the display of a link to all categories if the style is set to list." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:219 +msgid "Select an Action" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:217 +msgid "What would you like to do?" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:216 +#: includes/admin/class-mp-shortcode-builder.php:1522 +msgid "Add E-Commerce Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:197 +msgid "Display a list of links to your store pages." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:196 +msgid "Display a link or url to the order status page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:195 +msgid "Display a link or url to the current products list page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:194 +msgid "Display a link or url to the current store page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:193 +msgid "Display a link or url to the current shopping cart page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:192 +msgid "Display the cart widget." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:191 +msgid "Display the full product meta box with price and buy now/add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:190 +msgid "Display the product stock." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:189 +msgid "Display the product SKU number(s)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:188 +msgid "Display the product price (and sale price)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:187 +msgid "Display the buy or add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:186 +msgid "Display the featured image of a given product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:185 +msgid "Display a single product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:184 +msgid "Display a list of products according to preference." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:183 +msgid "Display products related to the one being viewed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:182 +msgid "Display a list of popular products ordered by sales." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:180 +msgid "Display an HTML dropdown of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:179 +msgid "Display an HTML list of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:178 +msgid "Display a cloud or list of your product tags." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:655 +msgid "Setup your payment gateway" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:643 +#: includes/admin/class-mp-setup-wizard.php:649 +msgid "Other Gateways" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:617 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:150 +msgid "Select which calculated shipping methods the customer will be able to choose from." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:601 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:134 +#: includes/public/class-mp-checkout.php:82 +msgid "Shipping Method" +msgstr "配送方法" + +#: includes/admin/class-mp-setup-wizard.php:568 +msgid "I want to charge shipping" +msgstr "配送先を変更する" + +#: includes/admin/class-mp-setup-wizard.php:523 +#: includes/admin/store-settings/class-mp-store-settings-general.php:503 +msgid "Show Price + Tax?" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:507 +msgid "I.e. Taxes, VAT, GST, etc" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:491 +#: includes/admin/store-settings/class-mp-store-settings-general.php:471 +msgid "Current Rates" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:473 +msgid "Default Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:434 +#: includes/admin/class-mp-setup-wizard.php:442 +#: includes/admin/store-settings/class-mp-store-settings-general.php:386 +#: includes/admin/store-settings/class-mp-store-settings-general.php:394 +#: includes/multisite/class-mp-admin-multisite.php:204 +#: includes/multisite/class-mp-admin-multisite.php:212 +msgid "Select a Currency" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:414 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:105 +msgid "Choose Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:411 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:103 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:104 +msgid "All Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:410 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:102 +msgid "These are the countries that you will ship to." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:409 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:101 +msgid "Target Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:401 +msgid "Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:387 +#: includes/admin/store-settings/class-mp-store-settings-general.php:640 +msgid "Zip/Postal Code Label" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:352 +#: includes/admin/store-settings/class-mp-store-settings-general.php:606 +msgid "Select a State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:335 +#: includes/admin/store-settings/class-mp-store-settings-general.php:590 +msgid "Select A Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:332 +#: includes/admin/store-settings/class-mp-store-settings-general.php:587 +msgid "Select a Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:324 +msgid "Location" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:304 +#: includes/admin/class-mp-setup-wizard.php:312 +#: includes/admin/class-mp-store-settings-admin.php:129 +#: includes/admin/class-mp-store-settings-admin.php:262 +msgid "Quick Setup" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:289 +msgid "MarketPress setup is not complete! Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2479 +msgid "Enter your product name here" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2440 +msgid "Select a %s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2426 +msgid "Each product variation needs to have product attributes assigned to it so the system knows how to differentiate one product variation from the other. It is important that you assign a category to this product before choosing any attributes." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2409 +msgid "If you would like this variation to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2320 +msgid "Sale Price (if applicable)" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2281 +msgid "If you would like the description to be different than the main product enter it here." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2229 +msgid "Image" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2202 +#: includes/admin/class-mp-shortcode-builder.php:226 +msgid "Attributes" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2166 +msgid "Create your product variations here. You can reorder variations by using the number to left of each variation, or delete one by clicking the \"x\" to the right of each variation. NOTE: The variation that shows up first in this list will be considered the \"main variation\". The details from this variation will be used in product listings." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2061 +#: includes/admin/class-mp-products-admin.php:2332 +msgid "Value must be less than regular price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2043 +#: includes/admin/class-mp-products-admin.php:2306 +msgid "Regular Price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2023 +#: includes/admin/class-mp-products-admin.php:2286 +msgid "External URL" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1988 +#: includes/admin/class-mp-products-admin.php:2245 +msgid "Enter the quantity that you have available to sell." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1987 +#: includes/admin/class-mp-products-admin.php:2244 +msgid "Inventory Count" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1977 +#: includes/admin/class-mp-products-admin.php:2234 +msgid "Track Inventory?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1871 +msgid "%1$sProduct Images%2$s %3$sAdd images of the product. The first image on the list is the featured image for this product (you can reorder images on the list)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1806 +msgid "Add variations for this product. e.g. If you are selling t-shirts, you can create Color & Size variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1804 +msgid "%3$sAdd variations for%2$s %1$sProduct%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1776 +msgid "This product has a multiple variations %1$s(e.g. Multiple colors, sizes)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1775 +msgid "This is a unique product without variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1700 +msgid "Extra Shipping Cost %1$s(if applicable)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1659 +#: includes/admin/class-mp-products-admin.php:2112 +#: includes/admin/class-mp-products-admin.php:2359 +msgid "Weight" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1636 +#: includes/admin/class-mp-products-admin.php:2098 +#: includes/admin/class-mp-products-admin.php:2416 +msgid "Please enter a valid tax rate" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1531 +msgid "Limit Per Order %1$s(limit the number of the item a shopper can buy per order)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1513 +msgid "SKU %1$s(Stock Keeping Unit)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "%1$sPrice, Inventory & Variants%2$s %3$sSet price, manage inventory and create Product Variants (if appropriate for your product).%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "Product Variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1480 +msgid "External / Affiliate Link" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1471 +msgid "Digital Download" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1470 +msgid "Physical / Tangible Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1464 +msgid "Product Kind %1$s(Physical Product, Digital, etc)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1426 +msgid "Choose Products" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1420 +msgid "If you would like, you can choose specific related products instead of using the ones generated by MarketPress" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1019 +msgid "Changes saved successfully" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:826 +msgid "Option cannot be saved. Try again." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:821 +msgid "Option saved successfully." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:467 +msgid "Img" +msgstr "" + +#: includes/admin/class-mp-product-attributes-list-table.php:57 +msgid "Product attribute(s) deleted successfully." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:162 +msgid "- Create New Variation -" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:144 +msgid "Only lowercase letters and dashes (-) are allowed." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:139 +msgid "If a slug is not entered, it will be generated automatically. Max 32 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:138 +#: includes/admin/class-mp-product-attributes-list-table.php:23 +msgid "Slug" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:130 +msgid "Max 45 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:123 +msgid "Use the numbers on the left to sort. To delete - click the \"X\" to the right of each row." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:122 +msgid "Attribute Options" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:121 +msgid "Add Option" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:105 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:523 +msgid "Sort Order" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:87 +msgid "Alphabetical" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:86 +msgid "ID" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:84 +msgid "Select how the options will be sorted." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:82 +msgid "Sort By" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:75 +msgid "The name of the attribute (e.g. color, size, etc)" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:74 +msgid "Attribute Name" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:69 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Product Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Product Attributes" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:71 +msgid "You can choose to make this page one of the following core store pages." +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:66 +msgid "Network Store Base" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:61 +msgid "Checkout Page" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:52 +msgid "Store Page Settings" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1108 +msgid "Display billing/shipping info for this customer" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1097 +msgid "View order “%s”" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1072 +msgid "Flag as:" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:952 +msgid "Move To Trash" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:948 +msgid " Received" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:927 +msgid "Enter coupon code here" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:812 +msgid "The order status could not be updated due to unexpected error. Please try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:740 +msgid "An invalid bulk action was requested. Please go back and try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:692 +msgid "The order status for order ID %1$s was updated successfully." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:688 +msgid "Order statuses successfully updated." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:530 +msgid "Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:518 +msgid "Actual Shipping Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:513 +msgid "Method Paid For" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:504 +msgid "Amount Collected" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:477 +msgid "DHL" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:408 +msgid "There is no IPN history to show at this time" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:345 +msgid "Type" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:343 +msgid "Gateway" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:301 +#: includes/common/template-functions.php:528 +msgid "Order History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:291 +msgid "IPN History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:283 +msgid "Customer Info" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:279 +msgid "Order Details" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:157 +msgid "All Dates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:320 +msgid "Add Pages to Menu" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:318 +msgid "Add-ons" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:317 +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "User Capabilities" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:316 +#: includes/admin/class-mp-setup-wizard.php:631 +#: includes/admin/store-settings/class-mp-store-settings-payments.php:50 +msgid "Payment Gateways" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:315 +msgid "Shipping Rates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:312 +msgid "Configure" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:309 +#: includes/admin/class-mp-products-admin.php:466 +#: includes/admin/class-mp-shortcode-builder.php:797 +msgid "Tags" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:308 +#: includes/admin/class-mp-products-admin.php:465 +msgid "Categories" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:300 +msgid "Manage" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:297 +msgid "Here's some quick links to manage your store and products." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:288 +msgid "low in stock" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:287 +msgid "%s product" +msgid_plural "%s products" +msgstr[0] "" + +#: includes/admin/class-mp-dashboard-widgets.php:280 +msgid "received" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:279 +#: includes/admin/class-mp-dashboard-widgets.php:283 +msgid "%s order" +msgid_plural "%s orders" +msgstr[0] "" + +#: includes/admin/class-mp-dashboard-widgets.php:276 +msgid "Stock & Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:261 +msgid "Last 30 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:256 +msgid "Last 7 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:251 +msgid "Yesterday" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:248 +#: includes/admin/class-mp-dashboard-widgets.php:253 +#: includes/admin/class-mp-dashboard-widgets.php:258 +#: includes/admin/class-mp-dashboard-widgets.php:263 +msgid " Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:246 +msgid "Today" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:241 +msgid "Welcome back! Here's a quick summary of your store's performance." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:196 +#: includes/admin/class-mp-products-admin.php:895 +msgid "No products out of stock." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:136 +#: includes/admin/class-mp-products-admin.php:839 +msgid "Stock Level" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:135 +#: includes/admin/class-mp-products-admin.php:838 +msgid "Variation" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:121 +msgid "Low Stock (%s)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:116 +msgid "Store Management" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:115 +msgid "Store Reports" +msgstr "" + +#: includes/admin/class-mp-ajax.php:579 +#: includes/admin/class-mp-orders-admin.php:520 +#: includes/common/payment-gateways/2checkout.php:370 +#: includes/common/payment-gateways/authorizenet-aim.php:264 +#: includes/common/payment-gateways/mollie.php:93 +#: includes/common/payment-gateways/paymill.php:196 +#: includes/common/payment-gateways/pin.php:190 +#: includes/common/payment-gateways/skrill.php:157 +#: includes/common/payment-gateways/skrill.php:168 +#: includes/common/payment-gateways/wepay.php:143 +#: includes/public/class-mp-checkout.php:404 +msgid "Select One" +msgstr "一つ選択" + +#: includes/admin/class-mp-ajax.php:511 +msgid "Oops... we could not locate any orders by that ID. Please double check your order ID and try again." +msgstr "エラー。ご記入のIDに一致するものが見つかりませんでした。オーダーIDを再確認し、もう一度お試しください。" + +#: includes/admin/class-mp-ajax.php:482 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:166 +#: includes/multisite/class-mp-admin-multisite.php:584 +msgid "Edit Page" +msgstr "" + +#: includes/admin/class-mp-ajax.php:346 +msgid "Cancel " +msgstr "" + +#: includes/admin/class-mp-ajax.php:345 +msgid "Save " +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "Edit Description" +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "HTML Markup" +msgstr "" + +#: includes/admin/class-mp-ajax.php:333 +msgid "Plain Text Only" +msgstr "" + +#: includes/admin/class-mp-ajax.php:329 +msgid "Additional Content / Information for this Variation" +msgstr "" + +#: includes/admin/class-mp-ajax.php:317 +#: includes/admin/class-mp-products-admin.php:1762 +msgid "Allow this product to be purchased even if it's out of stock" +msgstr "" + +#: includes/admin/class-mp-ajax.php:313 +#: includes/admin/class-mp-products-admin.php:1711 +msgid "Track Product Inventory" +msgstr "" + +#: includes/admin/class-mp-ajax.php:300 +msgid "Extra Shipping Cost (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:295 +msgid "Ounces:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:294 +msgid "Pounds:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:292 +msgid "Kilograms:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:287 +#: includes/admin/class-mp-products-admin.php:1649 +msgid "Charge Shipping" +msgstr "配送方法を変更" + +#: includes/admin/class-mp-ajax.php:273 +#: includes/admin/class-mp-products-admin.php:1623 +#: includes/admin/store-settings/class-mp-store-settings-general.php:454 +msgid "Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:272 +#: includes/admin/class-mp-products-admin.php:1622 +#: includes/admin/class-mp-products-admin.php:2090 +#: includes/admin/class-mp-products-admin.php:2408 +msgid "Special Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:271 +#: includes/admin/class-mp-products-admin.php:1625 +#: includes/admin/class-mp-products-admin.php:2092 +msgid "If you would like this product to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-ajax.php:268 +#: includes/admin/class-mp-products-admin.php:1599 +msgid "Charge Taxes (Special Rate)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:256 +#: includes/admin/class-mp-products-admin.php:1593 +#: includes/admin/class-mp-products-admin.php:2077 +#: includes/admin/class-mp-products-admin.php:2348 +msgid "End Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:255 +#: includes/admin/class-mp-products-admin.php:1589 +#: includes/admin/class-mp-products-admin.php:2072 +msgid "Start Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:1568 +msgid "Enter Sale Price" +msgstr "セール価格を記入" + +#: includes/admin/class-mp-ajax.php:250 +#: includes/admin/class-mp-products-admin.php:1547 +msgid "Set up a Sale for this Product" +msgstr "" + +#: includes/admin/class-mp-ajax.php:206 includes/admin/class-mp-ajax.php:223 +msgid "Enter " +msgstr "" + +#: includes/admin/class-mp-ajax.php:193 +msgid "Browse" +msgstr "" + +#: includes/admin/class-mp-ajax.php:184 includes/admin/class-mp-ajax.php:192 +msgid "http://" +msgstr "" + +#: includes/admin/class-mp-ajax.php:183 +msgid "External Product URL" +msgstr "" + +#: includes/admin/class-mp-ajax.php:237 +msgid "Limit Per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:177 +#: includes/admin/class-mp-products-admin.php:1520 +msgid "Enter Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:174 +#: includes/admin/class-mp-products-admin.php:1512 +msgid "Enter SKU" +msgstr "" + +#: includes/admin/class-mp-ajax.php:173 +msgid "(Stock Keeping Unit)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:158 +msgid "Remove Image" +msgstr "" + +#: includes/admin/class-mp-ajax.php:74 +msgid "Variation Draft" +msgstr "" + +#: includes/admin/class-mp-admin.php:296 +#: includes/admin/class-mp-dashboard-widgets.php:70 +msgid "Please wait...saving in progress..." +msgstr "" + +#: includes/admin/class-mp-admin.php:295 +#: includes/admin/class-mp-dashboard-widgets.php:69 +msgid "Input is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:294 +#: includes/admin/class-mp-dashboard-widgets.php:68 +msgid "Valid number is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:292 +#: includes/admin/class-mp-dashboard-widgets.php:66 +msgid "Delete %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:291 +#: includes/admin/class-mp-dashboard-widgets.php:65 +msgid "Delete %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:290 +#: includes/admin/class-mp-dashboard-widgets.php:64 +msgid "Update inventory for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:289 +#: includes/admin/class-mp-dashboard-widgets.php:63 +msgid "Update inventory for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:288 +#: includes/admin/class-mp-dashboard-widgets.php:62 +msgid "Update price for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:287 +#: includes/admin/class-mp-dashboard-widgets.php:61 +msgid "Update prices for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:285 +#: includes/admin/class-mp-dashboard-widgets.php:59 +msgid "Creating variations, please wait..." +msgstr "" + +#: includes/admin/class-mp-admin.php:96 +msgid "The following payment gateways have been deprecated, Cubepoints, Bitpay, iDEAL, Skrill, Google Checkout. If you were using one of these gateways, please setup a new payment gateway here." +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:61 +msgid "Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:71 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:71 +#: includes/common/class-mp-gdpr.php:399 includes/common/class-mp-order.php:872 +#: includes/common/helpers.php:164 includes/public/class-mp-checkout.php:1434 +msgid "Shipping Address" +msgstr "配送先の住所" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:66 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:66 +#: includes/common/class-mp-gdpr.php:392 includes/common/class-mp-order.php:864 +#: includes/common/helpers.php:163 includes/public/class-mp-checkout.php:1427 +msgid "Billing Address" +msgstr "ご請求先住所" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:61 +msgid "Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:258 +msgid "Shipping Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:256 +msgid "Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:235 +msgid "Payment Method: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:79 +msgid "The dir %s not exist or not writeable" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:239 +msgid "Shop header/logo" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:233 +msgid "Choose a template" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:226 +msgid "Template Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:221 +msgid "Disable automatic creation/attachment of invoices when only free products are ordered" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:220 +msgid "Disable for free products" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:216 +msgid "Attach invoice to" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:214 +msgid "Customer Order Shipped email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:212 +msgid "Customer New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:211 +msgid "Admin New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:206 +msgid "download" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:205 +msgid "How do you want to view the PDF?" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:203 +msgid "Open the PDF in a new browser tab/window" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:202 +msgid "Download the PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:158 +msgid "Export PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:103 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:106 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:109 +msgid "You can't download this order invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:76 +msgid "Invalid Request" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:72 +msgid "Order not exist!" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:67 +msgid "Invalid ID" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1293 +msgid "Coupon added successfully" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1292 +msgid "Please enter a code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1247 +msgid "No end" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1200 +msgid "Valid Dates" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1195 +msgid "Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1027 +msgid "No Coupons found in Trash" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1026 +msgid "No Coupons Found" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1025 +msgid "Search Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1024 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1028 +msgid "View Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1023 +msgid "New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1020 +msgid "Create New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1017 +msgid "Manage Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1002 +msgid "An error occurred while removing your coupon. Please try again." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:964 +msgid "Coupon can't be applied to this cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:951 +msgid "Invalid coupon code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:794 +msgid "Help Text" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:789 +msgid "Form Title" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:783 +msgid "Coupons Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:764 +msgid "End Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:758 +msgid "Does coupon have an end date?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:696 +msgid "Select Products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:688 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:723 +#: includes/common/payment-gateways/paypal-payflow.php:402 +msgid "User" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:638 +msgid "Max Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:636 +msgid "Enter the maximum number of times this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:623 +msgid "Leave blank to allow all other coupons." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:622 +msgid "Select combinable coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:618 +msgid "Can this coupon be combined with other coupons?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:613 +msgid "Apply to each applicable item once per cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:612 +msgid "Apply to each applicable item and quantity ordered" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:609 +msgid "How should the discount amount be applied?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:605 +msgid "Discount Amount" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:604 +msgid "Value must either be a decimal number or a percentage" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:602 +msgid "If you would like to give a percentage-based discount make sure to include the percent (%) symbol. Otherwise, the discount will be applied as a fixed amount off." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:595 +msgid "Letters and Numbers only." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:589 +msgid "Coupon Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:447 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:795 +msgid "More than one code? That's OK! Just be sure to enter one at a time." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:444 +msgid "Apply Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:314 +msgid "Coupon Discounts" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:89 +msgid "1 add-on disabled" +msgid_plural "%s add-ons disabled" +msgstr[0] "" + +#: includes/addons/class-mp-addons-list-table.php:84 +msgid "1 add-on enabled" +msgid_plural "%s add-ons enabled" +msgstr[0] "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Disabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Enable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:129 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:67 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:135 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:168 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:202 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:263 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:296 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:330 +msgid "Enabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +msgid "Disable add-on" +msgstr "無効なアドオン" + +#: includes/addons/class-mp-addons-list-table.php:34 +msgid "Disable" +msgstr "無効" + +#: includes/addons/class-mp-addons-list-table.php:33 +msgid "Enable" +msgstr "有効" + +#: includes/addons/class-mp-addons-list-table.php:21 +#: includes/admin/class-mp-products-admin.php:2280 +#: includes/common/class-mp-product.php:2916 +msgid "Description" +msgstr "商品説明" + +#: includes/common/template-functions.php:2889 +#: includes/multisite/template-functions.php:407 +msgid "Popularity (Least Popular - Most Popular)" +msgstr "" + +#: includes/common/template-functions.php:2888 +#: includes/multisite/template-functions.php:406 +msgid "Popularity (Most Popular - Least Popular)" +msgstr "" + +#: includes/common/template-functions.php:2885 +#: includes/multisite/template-functions.php:403 +msgid "Name (Z-A)" +msgstr "" + +#: includes/common/template-functions.php:2884 +#: includes/multisite/template-functions.php:402 +msgid "Name (A-Z)" +msgstr "" + +#: includes/common/template-functions.php:2883 +#: includes/multisite/template-functions.php:401 +msgid "Release Date (Oldest to Latest)" +msgstr "" + +#: includes/common/template-functions.php:2882 +#: includes/multisite/template-functions.php:400 +msgid "Release Date (Latest to Oldest)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:284 +msgid "paid" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "One Time Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Customer Counter" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Daily Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:182 +msgid "For the most accurate rates, please select the appropriate pick up type for your business." +msgstr "" + +#: includes/admin/class-mp-admin.php:374 +msgid "Page saved." +msgstr "" + +#: includes/admin/class-mp-admin.php:370 +msgid "Custom field deleted." +msgstr "" + +#: includes/admin/class-mp-admin.php:369 +msgid "Custom field updated." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:541 +msgid "%s - The payment request expired, - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:536 +msgid "%s - The payment not credited in merchants bitpay account, action required. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:252 +msgid "If enabled, you will recieve an email for each status update on payment." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:240 +msgid "Speed at which the bitcoin transaction registers as \"confirmed\" to the store. This overrides your merchant settings on the Bitpay website." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:238 +msgid "Transaction Speed" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:244 +msgid "Low" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:243 +msgid "Medium" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:242 +msgid "High" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:177 +#: includes/common/payment-gateways/_bitpay.php:517 +#: includes/common/payment-gateways/_bitpay.php:522 +msgid "%s - The payment request is under process. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:175 +#: includes/common/payment-gateways/_bitpay.php:527 +msgid "%s - The payment request has been processed - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:150 +#: includes/common/payment-gateways/_bitpay.php:294 +msgid "Incorrect order invoice, please contact site administrator" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:141 +msgid "We could not verify order invoice details, please try again or contact site administrator for help" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:81 +msgid "Login to Simplify to get your API credentials. Enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:605 +#: includes/common/payment-gateways/paypal-express.php:647 +msgid "Express Checkout is PayPal's premier checkout solution, which streamlines the checkout process for buyers and keeps them on your site after making a purchase. Unlike PayPal Pro, there are no additional fees to use Express Checkout, though you may need to do a free upgrade to a business account. More Info »" +msgstr "" + +#. Plugin URI of the plugin/theme +msgid "https://premium.wpmudev.org/project/e-commerce/" +msgstr "" + +#. Author of the plugin/theme +msgid "WPMU DEV" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:541 +#: includes/admin/class-mp-orders-admin.php:543 +msgid "Tracking Number" +msgstr "" + +#: includes/common/class-mp-order.php:805 +#: includes/common/payment-gateways/stripe.php:336 +#: includes/public/class-mp-checkout.php:402 +msgid "Country" +msgstr "" + +#: includes/common/class-mp-order.php:784 +#: includes/common/payment-gateways/stripe.php:338 +msgid "City" +msgstr "" + +#: includes/common/class-mp-order.php:780 +msgid "Address 2" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:340 +msgid "Address" +msgstr "" + +#: includes/common/class-mp-cart.php:752 includes/common/class-mp-gdpr.php:378 +msgid "Order Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:360 +msgid "Payment Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:347 +msgid "Transaction ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:207 +msgid "The WePay Card Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:186 +#: includes/common/shipping-modules/mp-fedex.php:283 +msgid "Account ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:179 +msgid "Access Token" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:172 +msgid "Client Secret" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:165 +msgid "Client ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:159 +msgid "You must login to WePay to get your API credentials. Make sure to check \"Tokenize credit cards\" option under \"API Keys\" section of your WePay app." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:154 +msgid "When in live mode it is recommended to use SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:148 +msgid "Donation" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:147 +msgid "Event" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:146 +msgid "Personal" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:145 +msgid "Service" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:144 +msgid "Goods" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:141 +msgid "Choose type of payments" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:140 +msgid "Checkout Type" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:134 +msgid "Staging" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:131 +msgid "Choose STAGING if you have registered the app on stage.wepay.com, or PRODUCTION if you registered on www.wepay.com" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:36 +#: includes/common/payment-gateways/wepay.php:299 +msgid "WePay" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:366 +msgid "Rejected - A payment was rejected." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:360 +msgid "Failed - A payment was rejected due to an error." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:342 +msgid "PayWay balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:298 +msgid "Full path of the cacerts.crt file" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:284 +msgid "User Name" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:277 +msgid "Biller Code" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:273 +msgid "Log Directory" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:266 +msgid "Encryption Key" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:60 +msgid "Your PayWay transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:40 +#: includes/common/payment-gateways/_payway.php:41 +msgid "PayWay" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:862 +msgid "You must register this application with PayPal using your business account login to get an Application ID that will work with your API credentials. A bit of a hassle, but worth it! In the near future we will be looking for ways to simplify this process. Register then submit your application while logged in to the developer portal. Note that you do not need an Application ID for testing in sandbox mode. More Information »" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:818 +#: includes/common/payment-gateways/paypal-chained-payments.php:840 +#: includes/common/payment-gateways/paypal-express.php:705 +msgid "You must login to PayPal and create an API signature to get your credentials. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:378 +msgid "Use Payflow payment gateway to accept online payments using your Internet merchant account and processing network. PayPal Payflow Pro is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:595 +msgid "Tags Only" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:594 +msgid "Category Only" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:795 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:593 +msgid "Category & Tags" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:591 +msgid "Relate Products By" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1008 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:455 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:751 +msgid "Right" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1007 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:454 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:749 +msgid "Left" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1009 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:750 +msgid "Center" +msgstr "" + +#: marketpress.php:273 +msgid "Orders from your e-commerce store." +msgstr "" + +#: marketpress.php:231 +msgid "Products for your e-commerce store." +msgstr "" + +#: marketpress.php:222 +msgid "Edit Product" +msgstr "" + +#. Description of the plugin/theme +msgid "The complete WordPress ecommerce plugin - works perfectly with BuddyPress and Multisite too to create a social marketplace, where you can take a percentage! Activate the plugin, adjust your settings then add some products to your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:272 +msgid "Beside" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:271 +msgid "Above" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:268 +msgid "Pin Count" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:261 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:287 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:318 +msgid "All View" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:260 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:286 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:317 +msgid "Single View" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:259 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:285 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:316 +msgid "Off" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:578 +msgid "Related Product Limit" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:681 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1201 +msgid "Applies To" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:685 +msgid "All Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:487 +msgid "The label shown for the tax line item in the cart. Taxes, VAT, GST, etc." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:485 +msgid "Tax Label" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:81 +msgid "Apply" +msgstr "" + +#: includes/admin/class-mp-admin.php:192 +msgid "MarketPress Instructions" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1954 +#: includes/admin/class-mp-products-admin.php:2194 includes/common/data.php:62 +#: includes/common/helpers.php:150 +msgid "Taxes" +msgstr "税金" + +#: includes/admin/class-mp-products-admin.php:1417 +#: includes/common/class-mp-product.php:2900 +msgid "Related Products" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:282 +#: includes/common/shipping-modules/mp-usps.php:316 +msgid "@ Max" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "(3-5 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "Priority Mail Express International Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:92 +msgid "Priority Mail Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:171 +#: includes/common/shipping-modules/mp-pickup.php:247 +msgid "In Store" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:159 +msgid "Pickup Fee" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:141 +msgid "This option allows your customers to indicate that they will pick-up their order at your place of business." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:60 +#: includes/common/shipping-modules/mp-pickup.php:76 +#: includes/common/shipping-modules/mp-pickup.php:176 +msgid "Pickup Instructions" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:24 +#: includes/common/shipping-modules/mp-pickup.php:254 +msgid "Pickup" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping - 0.00" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:256 +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:440 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:309 +msgid "Your Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:301 +msgid "Station" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:300 +msgid "Request Courier" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:299 +msgid "Drop Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:298 +msgid "Business Service Center" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:297 +msgid "Regular Pickup" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:135 +#: includes/common/shipping-modules/mp-fedex.php:264 +msgid "Production" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:207 +msgid "Simplify Commerce by MasterCard" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:104 +msgid "When in live mode, although it is not required, Simplify recommends you have an SSL certificate." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:183 +#: includes/common/payment-gateways/simplify.php:87 +msgid "Public Key" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:175 +#: includes/common/payment-gateways/simplify.php:94 +msgid "Private Key" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:71 +msgid "Simplify helps merchants to accept online payments from Mastercard, Visa, American Express, Discover, JCB, and Diners Club cards. It's that simple. We offer a merchant account and payment gateway in a single, secure package so you can concentrate on what really matters to your business. Only supports USD currently." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:267 +msgid "%1$s" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:151 +msgid "The Simplify Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/simplify.php:18 +msgid "Simplify" +msgstr "" + +#: includes/common/payment-gateways/pin.php:255 +msgid "%1$s Card %2$s" +msgstr "" + +#: includes/common/payment-gateways/pin.php:211 +msgid "The PIN Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:187 +msgid "Selecting a currency other than currency supported by PIN may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/pin.php:164 +msgid "You must login to PIN to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/pin.php:158 +msgid "When in live mode PIN recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/pin.php:45 +#: includes/common/payment-gateways/pin.php:286 +msgid "PIN" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:830 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:534 +#: includes/common/payment-gateways/paypal-express.php:865 +msgid "The payment is pending" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:235 +msgid "The Paymill Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:169 +msgid "You must login to Paymill to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:45 +#: includes/common/payment-gateways/paymill.php:308 +msgid "Paymill" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:90 +msgid "Invalid cardholder" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:89 +msgid "Card is no longer valid or has expired" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:88 +msgid "Please enter a valid Card CVC" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:87 +msgid "Please choose a valid Expiration Date." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:99 +#: includes/common/payment-gateways/skrill.php:100 +msgid "Skrill (Moneybookers)" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:24 +#: includes/common/shipping-modules/mp-weight-rate.php:292 +msgid "Weight Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:303 +msgid "USPS Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:270 +msgid "USPS Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:264 +msgid "USPS Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:145 +msgid "Flat Rate Large" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:140 +msgid "Flat Rate Medium 2" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:135 +msgid "Flat Rate Medium 1" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:130 +msgid "Flat Rate Small" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:118 +msgid "First Class International Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:114 +msgid "Priority Mail International Small Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:112 +msgid "Priority Mail International Medium Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:110 +msgid "Priority Mail International Large Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:108 +msgid "Priority Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:106 +msgid "Express Mail International Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:104 +msgid "Express Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:98 +msgid "Library Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:96 +msgid "Media Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "First-Class Mail Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:90 +msgid "Priority Mail Small Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:88 +msgid "Priority Mail Medium Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +#: includes/common/shipping-modules/mp-usps.php:88 +#: includes/common/shipping-modules/mp-usps.php:90 +#: includes/common/shipping-modules/mp-usps.php:92 +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "(2-4 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +msgid "Priority Mail Large Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "(2-4) days" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "Priority Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "Express Mail Sunday/Holiday Delivery Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:80 +msgid "Express Mail Flat Rate Boxes Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:78 +msgid "Express Mail Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:76 +msgid "Express Mail Sunday/Holiday Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:74 +msgid "Express Mail Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:72 +#: includes/common/shipping-modules/mp-usps.php:74 +#: includes/common/shipping-modules/mp-usps.php:76 +#: includes/common/shipping-modules/mp-usps.php:78 +#: includes/common/shipping-modules/mp-usps.php:80 +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "(1-2 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:72 +msgid "Express Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:67 +#: includes/common/shipping-modules/mp-usps.php:902 +msgid "USPS" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:534 +msgid "UPS (beta)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:166 +msgid "Required if using negotiated rates" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "Worldwide Express Plus" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "(Scheduled)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "Standard" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "(2-5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "Worldwide Expedited" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:54 +msgid "Worldwide Express" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "2nd Day Air AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "(1 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "Next Day Air Early AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "Next Day Air Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "3 Day Select" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:49 +msgid "Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:48 +msgid "2nd Day Air" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "Next Day Air" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:475 +#: includes/common/shipping-modules/mp-ups.php:43 +msgid "UPS" +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:27 +#: includes/common/shipping-modules/mp-table-rate.php:318 +msgid "Table Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:71 +#: includes/common/shipping-modules/mp-table-quantity.php:77 +msgid "Shipping Cost: " +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:70 +#: includes/common/shipping-modules/mp-table-quantity.php:76 +msgid "If quantity is greater than:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:66 +msgid "Each band must be a higher price than the one above it." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:56 +msgid "Number of Bands:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:53 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Each layer must be a higher quantity than the previous." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:51 +msgid "Table Quantity Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:31 +msgid "Table Quantity" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:135 +#: includes/common/shipping-modules/mp-table-rate.php:174 +#: includes/common/shipping-modules/mp-weight-rate.php:189 +msgid "European Union" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:123 +#: includes/common/shipping-modules/mp-table-rate.php:162 +#: includes/common/shipping-modules/mp-weight-rate.php:177 +msgid "United States" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:111 +#: includes/common/shipping-modules/mp-table-rate.php:151 +#: includes/common/shipping-modules/mp-weight-rate.php:166 +msgid "In Country" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:146 +#: includes/common/shipping-modules/mp-table-rate.php:186 +#: includes/common/shipping-modules/mp-weight-rate.php:201 +msgid "International" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:101 +#: includes/common/shipping-modules/mp-table-rate.php:141 +#: includes/common/shipping-modules/mp-weight-rate.php:156 +msgid "Canada" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:92 +#: includes/common/shipping-modules/mp-table-rate.php:132 +#: includes/common/shipping-modules/mp-weight-rate.php:147 +msgid "Hawaii and Alaska" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:83 +#: includes/common/shipping-modules/mp-table-rate.php:123 +#: includes/common/shipping-modules/mp-weight-rate.php:138 +msgid "Lower 48 States" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:64 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping." +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:25 +#: includes/common/shipping-modules/mp-flat-rate.php:223 +msgid "Flat Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:761 +msgid "FedEx (beta)" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Centimeters" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Inches" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1676 +#: includes/admin/class-mp-setup-wizard.php:547 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:166 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +msgid "Kilograms" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:103 +msgid " %1$s - %2$s" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:358 +msgid "Max Weight per Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:356 +msgid "Box Dimensions" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:354 +msgid "Box Name" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:344 +msgid "Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:343 +msgid "For each box defined enter the maximum weight it can contain." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:341 +msgid "Enter your standard box sizes as LengthxWidthxHeight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:386 +#: includes/common/shipping-modules/mp-ups.php:193 +#: includes/common/shipping-modules/mp-usps.php:234 +#: includes/common/shipping-modules/mp-usps.php:338 +msgid "Standard Boxes and Weight Limits" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:328 +msgid "Handling Charge per Interntional Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:294 +msgid "Handling Charge per Domestic Shipment " +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:388 +#: includes/common/shipping-modules/mp-ups.php:196 +#: includes/common/shipping-modules/mp-usps.php:237 +msgid "Add Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "(Next Day)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +msgid "Europe First International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:62 +msgid "International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:61 +#: includes/common/shipping-modules/mp-fedex.php:62 +#: includes/common/shipping-modules/mp-ups.php:54 +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "(1-3 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:61 +msgid "International First" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "(5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "International Economy" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "(2-7 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "Smart Post" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:55 +#: includes/common/shipping-modules/mp-ups.php:49 +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "(1-5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:55 +msgid "Ground Home Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "(1-7 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "Fedex Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:53 +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "(3 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:53 +msgid "Fedex Express Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +#: includes/common/shipping-modules/mp-ups.php:48 +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "(2 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +msgid "Fedex 2 Day" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "(2 Days am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "Fedex 2 Day AM" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "(1 Day)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +msgid "Standard Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "(1 Day am )" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "Priority Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "(1 Day am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "First Overnight" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:476 +#: includes/common/shipping-modules/mp-fedex.php:31 +msgid "FedEx" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:270 +#: includes/common/payment-gateways/simplify.php:179 +#: includes/common/payment-gateways/stripe.php:365 +msgid "%1$s Card ending in %2$s - Expires %3$s" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:259 +#: includes/common/payment-gateways/pin.php:238 +#: includes/common/payment-gateways/simplify.php:171 +msgid "%s Store Purchase - Order ID: %s, Email: %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:266 +msgid "You must login to Stripe to get your API credentials. You can enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:261 +msgid "When in live mode Stripe recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:311 +msgid "The Stripe Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:263 +#: includes/common/payment-gateways/paymill.php:122 +#: includes/common/payment-gateways/stripe.php:222 +msgid "Card Number" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:86 +msgid "Please enter a valid Credit Card Number." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:45 +#: includes/common/payment-gateways/stripe.php:433 +msgid "Stripe" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:750 +msgid "Sets the background color for the payment page. By default, the color is white." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:745 +msgid "Sets the background color for the header of the payment page. By default, the color is white." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:740 +msgid "Sets the border color around the header of the payment page. The border is a 2-pixel perimeter around the header space, which is 750 pixels wide by 90 pixels high. By default, the color is black." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:735 +msgid "URL for an image you want to appear at the top left of the payment page. The image has a maximum size of 750 pixels wide by 90 pixels high. PayPal recommends that you provide an image that is stored on a secure (https) server. If you do not specify an image, the business name is displayed." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:857 +#: includes/common/payment-gateways/paypal-express.php:1131 +msgid "The payment is pending because it is part of an order that has been authorized but not settled." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:853 +#: includes/common/payment-gateways/paypal-express.php:1127 +msgid "The payment is pending because it has been authorized but not settled. You must capture the funds first." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:847 +#: includes/common/payment-gateways/paypal-express.php:1120 +msgid "You denied the payment when it was marked as pending." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:837 +#: includes/common/payment-gateways/paypal-express.php:1108 +msgid "A reversal has occurred on this transaction due to an unknown reason." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:836 +#: includes/common/payment-gateways/paypal-express.php:1107 +msgid "A reversal has occurred on this transaction because you have given the customer a refund." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:835 +#: includes/common/payment-gateways/paypal-express.php:1106 +msgid "A reversal has occurred on this transaction due to a complaint about the transaction from your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:834 +#: includes/common/payment-gateways/paypal-express.php:1105 +msgid "A reversal has occurred on this transaction due to your customer triggering a money-back guarantee." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:833 +#: includes/common/payment-gateways/paypal-express.php:1104 +msgid "A reversal has occurred on this transaction due to a chargeback by your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:1101 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer:" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:826 +#: includes/common/payment-gateways/paypal-express.php:1097 +msgid "A payment has been accepted." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:818 +#: includes/common/payment-gateways/paypal-express.php:1087 +msgid "The transaction has not terminated, e.g. an authorization may be awaiting completion." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:531 +#: includes/common/payment-gateways/paypal-express.php:810 +#: includes/common/payment-gateways/paypal-express.php:1077 +msgid "The payment has failed. This happens only if the payment was made from your customer's bank account." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:806 +#: includes/common/payment-gateways/paypal-express.php:1072 +msgid "An authorization for this transaction has been voided." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:802 +#: includes/common/payment-gateways/paypal-express.php:1067 +msgid "The authorization period for this payment has been reached." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:798 +#: includes/common/payment-gateways/paypal-express.php:1062 +msgid "A reversal has been canceled; for example, when you win a dispute and the funds for the reversal have been returned to you." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:499 +#: includes/common/payment-gateways/paypal-express.php:1163 +msgid "PayPal Express Checkout" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:798 +msgid "Gateway Settings Page Message" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:725 +msgid "Signature" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:506 +#: includes/common/payment-gateways/eway31.php:533 +#: includes/common/shipping-modules/mp-fedex.php:276 +msgid "API Password" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:773 +msgid "Enter a percentage of all store sales to collect as a fee. Decimals allowed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:757 +msgid "Using PayPal Chained Payments allows you as the multisite network owner to collect a predefined fee or percentage of all sales on network MarketPress stores! This is invisible to the customers who purchase items in a store, and all PayPal fees will be charged to the store owner. To use this option you must create API credentials, and you should make all other gateways unavailable or limited above." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:338 +msgid "Please be aware that we will deduct a ?% fee from the total of each transaction in addition to any fees PayPal may charge you. If for any reason you need to refund a customer for an order, please contact us with a screenshot of the refund receipt in your PayPal history as well as the Transaction ID of our fee deduction so we can issue you a refund. Thank you!" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:698 +#: includes/common/payment-gateways/paypal-express.php:149 +msgid "There was a problem connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:470 +#: includes/common/payment-gateways/paypal-express.php:1053 +msgid "There was a problem verifying the IPN string with PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:310 +msgid "There was a problem connecting to PayPal to check the status of your purchase. Please check the status of your order here »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:539 +#: includes/common/payment-gateways/paypal-chained-payments.php:254 +#: includes/common/payment-gateways/paypal-express.php:1139 +msgid "The payment is pending." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:251 +#: includes/common/payment-gateways/paypal-chained-payments.php:531 +#: includes/common/payment-gateways/paypal-express.php:862 +#: includes/common/payment-gateways/paypal-express.php:1136 +msgid "The payment is pending for an unknown reason. For more information, contact PayPal customer service." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:250 +#: includes/common/payment-gateways/paypal-chained-payments.php:530 +#: includes/common/payment-gateways/paypal-express.php:861 +#: includes/common/payment-gateways/paypal-express.php:1135 +msgid "The payment is pending because you are not yet verified. You must verify your account before you can accept this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:249 +#: includes/common/payment-gateways/paypal-chained-payments.php:529 +#: includes/common/payment-gateways/paypal-express.php:860 +#: includes/common/payment-gateways/paypal-express.php:1134 +msgid "The payment is pending because it was made via credit card and you must upgrade your account to Business or Premier status in order to receive the funds. It can also mean that you have reached the monthly limit for transactions on your account." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:248 +#: includes/common/payment-gateways/paypal-chained-payments.php:528 +#: includes/common/payment-gateways/paypal-express.php:859 +#: includes/common/payment-gateways/paypal-express.php:1133 +msgid "The payment is pending because it was made to an email address that is not yet registered or confirmed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:247 +#: includes/common/payment-gateways/paypal-chained-payments.php:527 +#: includes/common/payment-gateways/paypal-express.php:858 +#: includes/common/payment-gateways/paypal-express.php:1132 +msgid "The payment is pending while it is being reviewed by PayPal for risk." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:246 +#: includes/common/payment-gateways/paypal-chained-payments.php:526 +#: includes/common/payment-gateways/paypal-express.php:856 +#: includes/common/payment-gateways/paypal-express.php:1130 +msgid "You do not have a balance in the currency sent, and you do not have your Payment Receiving Preferences set to automatically convert and accept this payment. You must manually accept or deny this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:245 +#: includes/common/payment-gateways/paypal-chained-payments.php:525 +#: includes/common/payment-gateways/paypal-express.php:855 +#: includes/common/payment-gateways/paypal-express.php:1129 +msgid "The payment is pending because you hold a non-U.S. account and do not have a withdrawal mechanism. You must manually accept or deny this payment from your Account Overview." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:244 +#: includes/common/payment-gateways/paypal-chained-payments.php:524 +#: includes/common/payment-gateways/paypal-express.php:854 +#: includes/common/payment-gateways/paypal-express.php:1128 +msgid "The payment is pending because it was made by an eCheck that has not yet cleared." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:243 +#: includes/common/payment-gateways/paypal-chained-payments.php:523 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:236 +#: includes/common/payment-gateways/paypal-chained-payments.php:516 +msgid "The transaction was rejected by the receiver (you)." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:510 +#: includes/common/payment-gateways/paypal-express.php:843 +#: includes/common/payment-gateways/paypal-express.php:1115 +msgid "You refunded the payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:224 +#: includes/common/payment-gateways/paypal-chained-payments.php:504 +msgid "The transaction is in progress." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:212 +#: includes/common/payment-gateways/paypal-chained-payments.php:491 +#: includes/common/payment-gateways/paypal-express.php:814 +#: includes/common/payment-gateways/paypal-express.php:1082 +msgid "The payment has been partially refunded." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:202 +#: includes/common/payment-gateways/paypal-chained-payments.php:481 +msgid "PayPal balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:177 +msgid "There was a problem connecting to PayPal to setup your purchase. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:122 +msgid "Your PayPal transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:50 +#: includes/common/payment-gateways/paypal-chained-payments.php:53 +#: includes/common/payment-gateways/paypal-chained-payments.php:732 +#: includes/common/payment-gateways/paypal-express.php:500 +#: includes/common/payment-gateways/paypal-express.php:938 +msgid "PayPal" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:48 +#: includes/common/payment-gateways/paypal-chained-payments.php:730 +#: includes/common/payment-gateways/paypal-chained-payments.php:756 +#: includes/common/payment-gateways/paypal-chained-payments.php:873 +msgid "PayPal Chained Payments" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:59 +#: includes/common/payment-gateways/paypal-payflow.php:467 +msgid "PayPal Payflow Pro" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:378 +msgid "Chargeback - A payment was reversed due to a chargeback. The funds have been removed from your account balance and returned to the buyer." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:372 +msgid "Failed - The Credit Card or Direct Debit transaction was declined." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:354 +#: includes/common/payment-gateways/skrill.php:366 +msgid "Cancelled - The payment was cancelled manually by the sender in their online account history or was auto-cancelled after 14 days pending." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:360 +msgid "Pending - The payment is pending. It can take 2-3 days for bank transfers to complete." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:349 +#: includes/common/payment-gateways/skrill.php:354 +msgid "Processed - The payment has been completed, and the funds have been added successfully to your Moneybookers account balance." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:189 +msgid "Shown to the customer on the confirmation screen - the end step of the process - a note, confirmation number, or any other message. Line breaks <br> may be used for longer messages." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:188 +msgid "Confirmation Note (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:183 +msgid "The URL of the logo which you would like to appear at the top of the payment form. The logo must be accessible via HTTPS otherwise it will not be shown. For best integration results we recommend that you use a logo with dimensions up to 200px in width and 50px in height." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:182 +msgid "Logo Image (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:177 +msgid "The name of this store, which will be shown on the gateway. If no value is submitted, the account email will be shown as the recipient of the payment." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:176 +msgid "Merchant Name (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:165 +msgid "Language" +msgstr "言語" + +#: includes/common/payment-gateways/2checkout.php:368 +#: includes/common/payment-gateways/authorizenet-aim.php:262 +#: includes/common/payment-gateways/eway.php:363 +#: includes/common/payment-gateways/eway31.php:471 +#: includes/common/payment-gateways/mollie.php:91 +#: includes/common/payment-gateways/paymill.php:193 +#: includes/common/payment-gateways/paypal-chained-payments.php:356 +#: includes/common/payment-gateways/paypal-express.php:688 +#: includes/common/payment-gateways/paypal-payflow.php:432 +#: includes/common/payment-gateways/pin.php:186 +#: includes/common/payment-gateways/skrill.php:152 +#: includes/common/payment-gateways/stripe.php:288 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:104 +msgid "Currency" +msgstr "貨幣" + +#: includes/common/payment-gateways/2checkout.php:359 +#: includes/common/payment-gateways/skrill.php:143 +msgid "Secret Word" +msgstr "秘密の単語" + +#: includes/common/payment-gateways/skrill.php:261 +msgid "Order ID:" +msgstr "オーダー ID:" + +#: includes/common/payment-gateways/skrill.php:234 +msgid "Complete Checkout" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:204 +msgid "Your Moneybookers transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:155 +msgid "This is the email text to send to those who have made manual payment checkouts. You should include your manual payment instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:257 +#: includes/common/payment-gateways/manual-payments.php:128 +msgid "Record payments manually, such as by Cash, Check, or EFT." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:71 +msgid "Manual/Invoice" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:648 +#: includes/common/payment-gateways/manual-payments.php:35 +#: includes/common/payment-gateways/manual-payments.php:36 +msgid "Manual Payment" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:34 +#: includes/common/payment-gateways/manual-payments.php:163 +msgid "Manual Payments" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:288 +msgid "iDEAL Simulator (for testing)" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:287 +msgid "ABN Amro Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:286 +msgid "Friesland Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:285 +msgid "Rabobank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:284 +msgid "ING Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:279 +msgid "Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:270 +msgid "To make it easier to pay for online products and services, the Dutch banking community has developed the iDEAL online payment method. iDEAL allows online payments to be made using online banking in EUR only." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:247 +#: includes/common/payment-gateways/_payway.php:199 +#: includes/common/payment-gateways/manual-payments.php:68 +msgid "Invoiced" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1016 +msgid "Coupon" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:77 +#: includes/common/payment-gateways/_ideal.php:250 +#: includes/common/payment-gateways/_payway.php:202 +msgid "iDEAL" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:76 +msgid "iDEAL (beta)" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:327 +msgid "Merchant Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:293 +#: includes/common/payment-gateways/_payway.php:302 +#: includes/common/payment-gateways/payfast.php:324 +msgid "Merchant ID" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:462 +msgid "eWay Rapid 3.0 Payments lets merchants recieve credit card payments through eWay without need for users to leave the shop. Note this gateway requires a valid SSL certificate configured for this site." +msgstr "" + +#: includes/common/payment-gateways/eway.php:452 +msgid "There was a problem connecting to eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/eway.php:432 +#: includes/common/payment-gateways/eway.php:437 +msgid "The url of the image can be hosted on your website and pass the secure https:// path of the image to be displayed at the top of the website. This is the second image block on the webpage and is restricted to 960px X 65px. A default secure image is used if none is supplied." +msgstr "" + +#: includes/common/payment-gateways/eway.php:431 +#: includes/common/payment-gateways/eway.php:436 +msgid "Company Logo (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:427 +msgid "The page footer text can be customised and populated below the customer's order details. Useful for contact information." +msgstr "" + +#: includes/common/payment-gateways/eway.php:426 +msgid "Page Footer (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:421 +msgid "Page Description (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:417 +#: includes/common/payment-gateways/eway.php:422 +msgid "This value is used to populate the browsers title bar at the top of the screen." +msgstr "" + +#: includes/common/payment-gateways/eway.php:416 +msgid "Page Title (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:412 +msgid "This will be displayed as the company the customer is purchasing from, including this is highly recommended." +msgstr "" + +#: includes/common/payment-gateways/eway.php:411 +msgid "Company Name" +msgstr "" + +#: includes/common/payment-gateways/eway.php:394 +msgid "Customer ID" +msgstr "" + +#: includes/common/payment-gateways/eway.php:381 +#: includes/common/payment-gateways/eway31.php:488 +msgid "Live API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway.php:371 +#: includes/common/payment-gateways/eway31.php:479 +msgid "Gateway Mode" +msgstr "" + +#: includes/common/payment-gateways/eway.php:354 +msgid "The Hosted Page is a webpage hosted on eWAY's side eliminating the need for merchants to capture, transmit or store credit card numbers. At the checkout time the merchant automatically redirects the customer to the Hosted Page where they would enter their details and have the transaction processed. Upon completion of the transaction the customer is redirected back to the MarketPress checkout confirmation page." +msgstr "" + +#: includes/common/payment-gateways/eway.php:314 +msgid "There was a problem with your credit card information: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:300 +msgid "Paid - The card has been processed - %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:253 +msgid "There was a problem setting up the transaction with eWay: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:245 +#: includes/common/payment-gateways/eway.php:289 +msgid "There was a problem parsing the response from eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:159 +#: includes/common/payment-gateways/eway.php:189 +#: includes/common/payment-gateways/paypal-chained-payments.php:634 +#: includes/common/payment-gateways/paypal-express.php:322 +#: includes/common/payment-gateways/paypal-express.php:473 +msgid "%s Store Purchase - Order ID: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:147 +#: includes/common/payment-gateways/eway.php:462 +msgid "eWay Shared Payments" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:214 +msgid "This is the email text to send to those who have made CubePoints checkouts. You should include your CubePoints instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:212 +#: includes/common/payment-gateways/free_orders.php:188 +#: includes/common/payment-gateways/manual-payments.php:154 +msgid "Order Confirmation Email" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:207 +#: includes/common/payment-gateways/manual-payments.php:149 +msgid "Confirmation User Instructions" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:202 +#: includes/common/payment-gateways/manual-payments.php:144 +msgid "User Instructions" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:198 +#: includes/common/payment-gateways/free_orders.php:170 +#: includes/common/payment-gateways/manual-payments.php:139 +msgid "Enter a public name for this payment method that is displayed to users - No HTML" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:532 +#: includes/common/payment-gateways/_cubepoints.php:196 +#: includes/common/payment-gateways/free_orders.php:169 +#: includes/common/payment-gateways/manual-payments.php:138 +msgid "Method Name" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:187 +msgid "Accept CubePoints as payment(requires the CubePoints plugin)." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:140 +msgid "Sorry, but you do not appear to have enough points to complete this purchase!" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:124 +msgid "%s Store Purchase" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:79 +#: includes/common/payment-gateways/_cubepoints.php:171 +msgid "Your current points: " +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:133 +#: includes/common/payment-gateways/_cubepoints.php:197 +msgid "CubePoints" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:344 +msgid "Authorize.net AIM Checkout" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:331 +msgid "Custom API URL" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:332 +msgid "Many other gateways have Authorize.net API emulators. To use one of these gateways input their API post url here." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:322 +msgid "Request a delimited response from the payment gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:316 +msgid "Security: MD5 Hash" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:317 +msgid "The payment gateway generated MD5 hash value that can be used to authenticate the transaction response. Not needed because responses are returned using an SSL connection." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:306 +msgid "Customer Receipt Email Footer" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:296 +msgid "Customer Receipt Email Header" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:297 +#: includes/common/payment-gateways/paypal-payflow.php:446 +msgid "This text will appear as the header of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:282 +msgid "Encapsulation Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:283 +msgid "Authorize.net default is blank. Otherwise, get this from your credit card processor. If the transactions are going through, but getting strange responses, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:273 +msgid "Optional settings to control advanced options" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:224 +#: includes/common/payment-gateways/authorizenet-aim.php:272 +msgid "Advanced Settings" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:253 +msgid "Transaction Key" +msgstr "取引キー" + +#: includes/common/payment-gateways/authorizenet-aim.php:246 +msgid "Login ID" +msgstr "ログインキー" + +#: includes/common/payment-gateways/paypal-payflow.php:396 +msgid "Gateway Credentials" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:221 +msgid "Authorize.net AIM is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway. USD is the only currency supported by this gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:205 +msgid "There was a problem finalizing your purchase. %s Please go back and try again." +msgstr "お客様のThere was a problem finalizing your purchase. %s Please go back and try again." + +#: includes/common/payment-gateways/payfast.php:519 +#: includes/common/payment-gateways/paypal-chained-payments.php:218 +#: includes/common/payment-gateways/paypal-chained-payments.php:498 +#: includes/common/payment-gateways/paypal-express.php:822 +#: includes/common/payment-gateways/paypal-express.php:1092 +msgid "The payment has been completed, and the funds have been added successfully to your account balance." +msgstr "お支払いが完了しました。お客様の残高に料金が追加されました。" + +#: includes/common/payment-gateways/paypal-payflow.php:233 +msgid "Please enter a valid credit card security code" +msgstr "有効なセキュリティーコードを記入してください。" + +#: includes/common/payment-gateways/paypal-payflow.php:224 +#: includes/public/class-mp-checkout.php:867 +msgid "Please enter a valid credit card number" +msgstr "有効なクレジットカードナンバーをお入れください。" + +#: includes/common/payment-gateways/paypal-payflow.php:221 +msgid "Please enter your credit card number" +msgstr "クレジットカード番号をお入れください。" + +#: includes/common/payment-gateways/paypal-payflow.php:217 +msgid "Please enter your credit card security code" +msgstr "クレジットカードのセキュリティーコードを記入してください。" + +#: includes/common/payment-gateways/paypal-payflow.php:213 +msgid "Please select your credit card expiration date." +msgstr "クレジットカードの有効期限を記入してください。" + +#: includes/common/payment-gateways/2checkout.php:299 +#: includes/common/payment-gateways/authorizenet-aim.php:50 +#: includes/common/payment-gateways/eway.php:148 +#: includes/common/payment-gateways/eway.php:298 +#: includes/common/payment-gateways/eway31.php:267 +#: includes/common/payment-gateways/paymill.php:46 +#: includes/common/payment-gateways/paypal-express.php:972 +#: includes/common/payment-gateways/paypal-payflow.php:60 +#: includes/common/payment-gateways/pin.php:46 +#: includes/common/payment-gateways/simplify.php:19 +#: includes/common/payment-gateways/stripe.php:46 +#: includes/common/payment-gateways/wepay.php:37 +msgid "Credit Card" +msgstr "クレジットカード" + +#: includes/common/payment-gateways/authorizenet-aim.php:49 +msgid "Authorize.net Checkout" +msgstr "Authorize.net チェックアウト" + +#: includes/common/payment-gateways/skrill.php:156 +#: includes/common/payment-gateways/stripe.php:293 +msgid "Selecting a currency other than that used for your store may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:352 +msgid "Seller ID" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:340 +#: includes/common/payment-gateways/_ideal.php:311 +#: includes/common/payment-gateways/authorizenet-aim.php:234 +#: includes/common/payment-gateways/eway.php:376 +#: includes/common/payment-gateways/payfast.php:315 +#: includes/common/payment-gateways/paypal-chained-payments.php:368 +#: includes/common/payment-gateways/paypal-express.php:699 +#: includes/common/payment-gateways/paypal-payflow.php:391 +msgid "Live" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:339 +#: includes/common/payment-gateways/authorizenet-aim.php:233 +#: includes/common/payment-gateways/eway.php:375 +#: includes/common/payment-gateways/paypal-chained-payments.php:367 +#: includes/common/payment-gateways/paypal-express.php:698 +#: includes/common/payment-gateways/paypal-payflow.php:390 +#: includes/common/shipping-modules/mp-fedex.php:263 +msgid "Sandbox" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:336 +#: includes/common/payment-gateways/_ideal.php:307 +#: includes/common/payment-gateways/authorizenet-aim.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:365 +#: includes/common/payment-gateways/paypal-express.php:695 +#: includes/common/payment-gateways/paypal-payflow.php:387 +#: includes/common/payment-gateways/wepay.php:130 +#: includes/common/shipping-modules/mp-fedex.php:260 +msgid "Mode" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:288 +#: includes/common/payment-gateways/mijireh.php:242 +#: includes/common/payment-gateways/mollie.php:212 +msgid "The order has been received" +msgstr "ご注文をお受けしました。" + +#: includes/common/payment-gateways/2checkout.php:74 +#: includes/common/payment-gateways/2checkout.php:75 +#: includes/common/payment-gateways/2checkout.php:435 +msgid "2Checkout" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:306 +msgid "Confirm" +msgstr "確認" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:218 +#: includes/common/class-mp-cart.php:974 includes/common/class-mp-cart.php:1354 +#: includes/common/template-functions.php:918 +msgid "Checkout" +msgstr "チェックアウト" + +#: includes/common/template-functions.php:207 +msgid "Check Order Status" +msgstr "ご注文状況を確認" + +#: includes/common/template-functions.php:235 +msgid "View Products" +msgstr "商品を見る" + +#: includes/common/template-functions.php:263 +msgid "Visit Store" +msgstr "サイトに訪問" + +#: includes/common/template-functions.php:2912 +#: includes/multisite/template-functions.php:448 +msgid "Order By" +msgstr "" + +#: includes/common/template-functions.php:2887 +#: includes/multisite/template-functions.php:405 +msgid "Price (High to Low)" +msgstr "料金(高→低)" + +#: includes/common/template-functions.php:2886 +#: includes/multisite/template-functions.php:404 +msgid "Price (Low to High)" +msgstr "料金(低→高)" + +#: includes/common/template-functions.php:2881 +#: includes/multisite/template-functions.php:399 +msgid "Default" +msgstr "デフォルト" + +#: includes/common/template-functions.php:2858 +msgid "Show All" +msgstr "全て表示" + +#: includes/common/class-mp-product.php:2048 +msgid "View Larger Image »" +msgstr "大きな画像を見る »" + +#: includes/common/class-mp-product.php:979 +msgid "Out of Stock" +msgstr "在庫切れ" + +#: includes/common/template-functions.php:148 +msgid "Price: " +msgstr "料金:" + +#: includes/multisite/template-functions.php:833 +msgid "No Tags" +msgstr "" + +#: includes/common/template-functions.php:3162 +msgid "Uncategorized" +msgstr "未分類" + +#: includes/common/class-mp-cart.php:569 includes/common/class-mp-order.php:604 +#: includes/common/helpers.php:115 +msgid "Download" +msgstr "ダウンロード »" + +#: includes/common/class-mp-cart.php:1353 +msgid "Empty Cart" +msgstr "お買い物カートが空です。" + +#: includes/common/payment-gateways/_payway.php:291 +#: includes/common/payment-gateways/paypal-express.php:718 +#: includes/common/payment-gateways/paypal-payflow.php:423 +#: includes/common/shipping-modules/mp-ups.php:158 +#: includes/public/class-mp-checkout.php:1254 +#: includes/public/class-mp-checkout.php:1383 +msgid "Password" +msgstr "パスワード" + +#: includes/common/payment-gateways/eway.php:387 +#: includes/common/payment-gateways/paypal-express.php:711 +#: includes/common/shipping-modules/mp-usps.php:185 +#: includes/public/class-mp-checkout.php:1249 +msgid "Username" +msgstr "ユーザーネーム" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:437 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:790 +msgid "Have a coupon code?" +msgstr "クーポンコードをお持ちですか?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:321 +#: includes/admin/class-mp-orders-admin.php:526 +#: includes/common/class-mp-cart.php:592 +msgid "Remove" +msgstr "削除" + +#: includes/admin/class-mp-ajax.php:316 +msgid "Quantity:" +msgstr "個数:" + +#: includes/admin/class-mp-products-admin.php:2140 +#: includes/admin/class-mp-products-admin.php:2387 +#: includes/common/shipping-modules/class-mp-shipping-api.php:507 +msgid "Extra Shipping Cost" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:403 +msgid "Choose a Shipping Method:" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1691 +#: includes/admin/class-mp-products-admin.php:2131 +#: includes/admin/class-mp-products-admin.php:2378 +#: includes/common/shipping-modules/class-mp-shipping-api.php:228 +msgid "Ounces" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1684 +#: includes/admin/class-mp-products-admin.php:2123 +#: includes/admin/class-mp-products-admin.php:2369 +#: includes/admin/class-mp-setup-wizard.php:546 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:165 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +#: includes/common/shipping-modules/class-mp-shipping-api.php:227 +msgid "Pounds" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:226 +msgid "Product Weight:" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:214 +msgid "Weight (Kilograms)" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:82 +msgid "Number of Categories:" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:72 +msgid "Product Count" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:20 +#: includes/admin/class-mp-product-attributes-admin.php:129 +#: includes/admin/class-mp-product-attributes-list-table.php:22 +#: includes/admin/class-mp-products-admin.php:2216 +#: includes/admin/class-mp-shortcode-builder.php:628 +#: includes/admin/class-mp-shortcode-builder.php:1415 +#: includes/admin/widgets/ms-global-categories.php:70 +#: includes/common/shipping-modules/mp-fedex.php:395 +#: includes/common/shipping-modules/mp-ups.php:202 +#: includes/common/shipping-modules/mp-usps.php:243 +#: includes/public/class-mp-checkout.php:314 +msgid "Name" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:67 +msgid "Order Categories By:" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:24 +#: includes/admin/widgets/ms-global-categories.php:50 +msgid "Global Product Categories" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:15 +msgid "Global Product Category List" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:13 +msgid "Displays a network-wide HTML list of product categories from network MarketPress stores." +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:24 +#: includes/admin/widgets/ms-global-tag-cloud.php:45 +msgid "Global Product Tags" +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:15 +msgid "Global Product Tag Cloud" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:947 +#: includes/admin/widgets/ms-global-product-list.php:173 +msgid "Excerpt" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:169 +msgid "Content To Show:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:140 +msgid "Limit To Product Tag:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:132 +msgid "Limit To Product Category:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:72 +msgid "Global Products" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:16 +msgid "Global Product List" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:14 +msgid "Shows a customizable global list of products from network MarketPress stores." +msgstr "" + +#: includes/common/class-mp-product.php:974 +#: includes/multisite/template-functions.php:731 +msgid "Buy Now »" +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:13 +msgid "Displays global most used product tags in cloud format from network MarketPress stores." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:438 +msgid "Theme Permissions" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:402 +#: includes/multisite/class-mp-admin-multisite.php:448 +msgid "No Access" +msgstr "" + +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:120 +msgid "Pro Site Level" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:401 +#: includes/multisite/class-mp-admin-multisite.php:447 +msgid "All Can Use" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:390 +msgid "Gateway Permissions" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:375 +msgid "Select a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:350 +msgid "Global Gateway" +msgstr "" + +#. Plugin Name of the plugin/theme +msgid "MarketPress" +msgstr "" + +#: includes/admin/widgets/product-tag-cloud.php:7 +msgid "Your most used product tags in cloud format from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/categories.php:79 +msgid "Show hierarchy" +msgstr "" + +#: includes/admin/widgets/categories.php:76 +#: includes/admin/widgets/ms-global-categories.php:92 +msgid "Show product counts" +msgstr "" + +#: includes/admin/widgets/categories.php:73 +msgid "Show as dropdown" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:710 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:736 +#: includes/admin/widgets/categories.php:30 +msgid "Select Category" +msgstr "" + +#: includes/admin/widgets/categories.php:7 +msgid "A list or dropdown of product categories from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/product-list.php:250 +msgid "Show Buy Button" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:183 +#: includes/admin/widgets/product-list.php:244 +msgid "Show Price" +msgstr "" + +#: includes/admin/widgets/product-list.php:241 +msgid "Show Excerpt" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:155 +#: includes/admin/widgets/product-list.php:238 +msgid "Thumbnail Size:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:153 +#: includes/admin/widgets/product-list.php:237 +msgid "Show Thumbnail" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:147 +#: includes/admin/widgets/product-list.php:233 +msgid "Display Settings" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:136 +#: includes/admin/widgets/ms-global-product-list.php:144 +#: includes/admin/widgets/product-list.php:230 +msgid "Enter the Slug" +msgstr "" + +#: includes/admin/widgets/product-list.php:228 +#: includes/common/template-functions.php:894 +msgid "Tag" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:686 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:712 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:739 +#: includes/admin/class-mp-shortcode-builder.php:796 +#: includes/admin/widgets/product-list.php:227 +#: includes/common/template-functions.php:886 +#: includes/common/template-functions.php:2907 +msgid "Category" +msgstr "" + +#: includes/admin/widgets/product-list.php:226 +msgid "No Filter" +msgstr "" + +#: includes/admin/widgets/product-list.php:224 +msgid "Taxonomy Filter:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:108 +#: includes/admin/widgets/product-list.php:209 +msgid "Order Products By:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:101 +#: includes/admin/widgets/product-list.php:206 +msgid "Number of Products:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:98 +#: includes/admin/widgets/product-list.php:204 +msgid "List Settings" +msgstr "" + +#: includes/admin/widgets/product-list.php:177 +msgid "Our Products" +msgstr "" + +#: includes/admin/widgets/product-list.php:144 +#: includes/common/template-functions.php:2070 +#: includes/common/template-functions.php:2347 +#: includes/multisite/template-functions.php:303 +#: includes/multisite/template-functions.php:623 +msgid "No Products" +msgstr "" + +#: includes/admin/widgets/product-list.php:8 +msgid "Product List" +msgstr "" + +#: includes/admin/widgets/product-list.php:7 +msgid "Shows a customizable list of products from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/cart.php:75 includes/admin/widgets/categories.php:82 +#: includes/admin/widgets/product-list.php:253 +#: includes/admin/widgets/product-tag-cloud.php:57 +msgid "Only show on store pages" +msgstr "" + +#: includes/admin/widgets/cart.php:65 +#: includes/admin/widgets/ms-global-product-list.php:92 +#: includes/admin/widgets/product-list.php:200 +msgid "Custom Text:" +msgstr "" + +#: includes/admin/widgets/cart.php:64 includes/admin/widgets/categories.php:69 +#: includes/admin/widgets/ms-global-categories.php:59 +#: includes/admin/widgets/ms-global-product-list.php:87 +#: includes/admin/widgets/ms-global-tag-cloud.php:49 +#: includes/admin/widgets/product-list.php:199 +#: includes/admin/widgets/product-tag-cloud.php:49 +msgid "Title:" +msgstr "" + +#: includes/admin/widgets/cart.php:7 +msgid "Shows dynamic shopping cart contents along with a checkout button for your MarketPress store." +msgstr "" + +#: includes/admin/widgets/product-tag-cloud.php:8 +msgid "Product Tag Cloud" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:539 +#: includes/admin/class-mp-setup-wizard.php:575 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:163 +msgid "Measurement System" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:616 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:149 +msgid "Select Shipping Options" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:596 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:129 +msgid "Calculated Options" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:582 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:115 +msgid "No Shipping" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:110 +msgid "EU" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:109 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:93 +msgid "All" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:92 +msgid "Select:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:185 +msgid "Store Pages" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:223 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:256 +msgid "Order Shipped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:60 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:95 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:128 +#: marketpress.php:266 +msgid "New Order" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:314 +msgid "Email Notifications" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:59 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:200 +msgid "Products List" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:58 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:190 +msgid "Store Base" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:108 +#: includes/admin/class-mp-shortcode-builder.php:635 +#: includes/admin/class-mp-shortcode-builder.php:708 +#: includes/admin/class-mp-shortcode-builder.php:875 +#: includes/admin/class-mp-shortcode-builder.php:1319 +#: includes/admin/class-mp-shortcode-builder.php:1422 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:526 +#: includes/admin/widgets/ms-global-categories.php:78 +#: includes/admin/widgets/ms-global-product-list.php:127 +#: includes/admin/widgets/product-list.php:221 +msgid "Ascending" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:109 +#: includes/admin/class-mp-shortcode-builder.php:636 +#: includes/admin/class-mp-shortcode-builder.php:709 +#: includes/admin/class-mp-shortcode-builder.php:876 +#: includes/admin/class-mp-shortcode-builder.php:1320 +#: includes/admin/class-mp-shortcode-builder.php:1423 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:525 +#: includes/admin/widgets/ms-global-categories.php:75 +#: includes/admin/widgets/ms-global-product-list.php:124 +#: includes/admin/widgets/product-list.php:220 +msgid "Descending" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:637 +#: includes/admin/class-mp-shortcode-builder.php:695 +#: includes/admin/class-mp-shortcode-builder.php:862 +#: includes/admin/class-mp-shortcode-builder.php:1306 +#: includes/admin/class-mp-shortcode-builder.php:1424 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:518 +#: includes/admin/widgets/ms-global-product-list.php:121 +#: includes/admin/widgets/product-list.php:218 +msgid "Random" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:694 +#: includes/admin/class-mp-shortcode-builder.php:861 +#: includes/admin/class-mp-shortcode-builder.php:1305 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:517 +#: includes/admin/widgets/ms-global-product-list.php:119 +#: includes/admin/widgets/product-list.php:216 +msgid "Product Price" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:693 +#: includes/admin/class-mp-shortcode-builder.php:860 +#: includes/admin/class-mp-shortcode-builder.php:1304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:516 +#: includes/admin/widgets/ms-global-product-list.php:117 +#: includes/admin/widgets/product-list.php:215 +msgid "Number of Sales" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:692 +#: includes/admin/class-mp-shortcode-builder.php:859 +#: includes/admin/class-mp-shortcode-builder.php:1303 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:515 +#: includes/admin/widgets/product-list.php:214 +msgid "Product Author" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:691 +#: includes/admin/class-mp-shortcode-builder.php:858 +#: includes/admin/class-mp-shortcode-builder.php:1302 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:514 +#: includes/admin/widgets/product-list.php:213 +msgid "Product ID" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:690 +#: includes/admin/class-mp-shortcode-builder.php:857 +#: includes/admin/class-mp-shortcode-builder.php:1301 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:513 +#: includes/admin/widgets/ms-global-product-list.php:113 +#: includes/admin/widgets/product-list.php:212 +msgid "Publish Date" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:430 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:726 +msgid "Width" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:439 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:735 +msgid "Height" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:88 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:402 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:698 +msgid "Custom" +msgstr "" + +#: includes/common/class-mp-product.php:179 +#: includes/common/class-mp-product.php:992 +#: includes/common/class-mp-product.php:1000 +#: includes/multisite/template-functions.php:579 +msgid "Buy Now" +msgstr "" + +#: includes/common/class-mp-product.php:175 +#: includes/common/class-mp-product.php:990 +#: includes/common/class-mp-product.php:998 +msgid "Add To Cart" +msgstr "カートに追加" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:807 +msgid "Store Style" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1021 +msgid "Edit Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupon.php:580 +#: includes/admin/class-mp-ajax.php:238 +#: includes/admin/class-mp-products-admin.php:1532 +msgid "Unlimited" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1198 +msgid "Remaining Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1197 +msgid "Used" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:752 +#: includes/admin/class-mp-products-admin.php:2343 +msgid "Start Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:598 +msgid "Coupon Code" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:444 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:284 +msgid "Save Changes" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:57 +#: includes/admin/class-mp-shortcode-builder.php:716 +#: includes/admin/class-mp-shortcode-builder.php:727 +#: includes/admin/class-mp-shortcode-builder.php:883 +#: includes/admin/class-mp-shortcode-builder.php:894 +#: includes/admin/class-mp-shortcode-builder.php:946 +#: includes/admin/class-mp-shortcode-builder.php:956 +#: includes/admin/class-mp-shortcode-builder.php:1006 +#: includes/admin/class-mp-shortcode-builder.php:1327 +#: includes/admin/class-mp-shortcode-builder.php:1338 +#: includes/admin/store-settings/class-mp-store-settings-general.php:357 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:270 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:108 +#: includes/admin/widgets/ms-global-product-list.php:172 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:94 +msgid "None" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:352 +msgid "Google Analytics Ecommerce Tracking" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:310 +msgid "This option turns MarketPress into more of a product listing plugin, disabling shopping carts, checkout, and order management. This is useful if you simply want to list items you can buy in a store somewhere else, optionally linking the \"Buy Now\" buttons to an external site. Some examples are a car dealership, or linking to songs/albums in itunes, or linking to products on another site with your own affiliate links." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:304 +msgid "Whether or not customers must be registered and logged in to checkout. (Not recommended: Enabling this can lower conversions)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:258 +msgid "How many times may a customer download a file they have purchased? (It's best to set this higher than one in case they have any problems downloading)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:257 +msgid "Maximum Downloads" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:298 +msgid "This will set the product to draft if inventory of all variations is gone." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:288 +msgid "At what low stock count do you want to be warned for products you have enabled inventory tracking for?" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:208 +#: includes/admin/store-settings/class-mp-store-settings-general.php:287 +msgid "Inventory Warning Threshold" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:282 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:542 +msgid "Miscellaneous Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:429 +#: includes/multisite/class-mp-admin-multisite.php:247 +msgid "Show Decimal in Prices" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:451 +#: includes/admin/store-settings/class-mp-store-settings-general.php:403 +#: includes/multisite/class-mp-admin-multisite.php:221 +msgid "Currency Symbol Position" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:444 +#: includes/admin/store-settings/class-mp-store-settings-general.php:396 +msgid "Store Currency" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:429 +#: includes/admin/store-settings/class-mp-store-settings-general.php:381 +msgid "Currency Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:516 +msgid "Please see your local tax laws. Note if this is enabled and a downloadable only cart, rates will be the default for your base location." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:529 +msgid "Apply Tax to Downloadable Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:498 +msgid "Enabling this option allows you to enter and show all prices inclusive of tax, while still listing the tax total as a line item in shopping carts. Please see your local tax laws." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:497 +msgid "Enter Prices Inclusive of Tax?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:492 +msgid "Please see your local tax laws. Most areas charge tax on shipping fees." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:491 +msgid "Apply Tax To Shipping Fees?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:674 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:565 +#: includes/common/payment-gateways/authorizenet-aim.php:291 +#: includes/common/payment-gateways/authorizenet-aim.php:326 +#: includes/common/payment-gateways/payfast.php:347 +msgid "No" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:675 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:759 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:512 +#: includes/admin/class-mp-setup-wizard.php:518 +#: includes/admin/class-mp-setup-wizard.php:524 +#: includes/admin/class-mp-setup-wizard.php:530 +#: includes/admin/class-mp-setup-wizard.php:564 +#: includes/admin/store-settings/class-mp-store-settings-general.php:232 +#: includes/admin/store-settings/class-mp-store-settings-general.php:299 +#: includes/admin/store-settings/class-mp-store-settings-general.php:305 +#: includes/admin/store-settings/class-mp-store-settings-general.php:311 +#: includes/admin/store-settings/class-mp-store-settings-general.php:317 +#: includes/admin/store-settings/class-mp-store-settings-general.php:328 +#: includes/admin/store-settings/class-mp-store-settings-general.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:341 +#: includes/admin/store-settings/class-mp-store-settings-general.php:348 +#: includes/admin/store-settings/class-mp-store-settings-general.php:367 +#: includes/admin/store-settings/class-mp-store-settings-general.php:493 +#: includes/admin/store-settings/class-mp-store-settings-general.php:499 +#: includes/admin/store-settings/class-mp-store-settings-general.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:556 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:375 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:381 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:387 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:474 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:493 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:532 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:574 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:606 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:664 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:670 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:677 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:683 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:689 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:763 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:774 +#: includes/common/payment-gateways/_bitpay.php:250 +#: includes/common/payment-gateways/_bitpay.php:257 +#: includes/common/payment-gateways/_bitpay.php:264 +#: includes/common/payment-gateways/authorizenet-aim.php:290 +#: includes/common/payment-gateways/authorizenet-aim.php:325 +#: includes/common/payment-gateways/free_orders.php:160 +#: includes/common/payment-gateways/payfast.php:346 +#: includes/common/payment-gateways/paymill.php:162 +#: includes/common/payment-gateways/paypal-payflow.php:441 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-checkbox.php:22 +msgid "Yes" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:492 +#: includes/admin/store-settings/class-mp-store-settings-general.php:472 +msgid "%s Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:467 +#: includes/admin/store-settings/class-mp-store-settings-general.php:449 +msgid "Tax Settings" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:370 +#: includes/admin/store-settings/class-mp-store-settings-general.php:624 +msgid "Base Zip/Postal Code" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:354 +#: includes/admin/store-settings/class-mp-store-settings-general.php:608 +msgid "Base State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:589 +msgid "Base Country" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:582 +msgid "Location Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:195 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:800 +#: includes/multisite/class-mp-admin-multisite.php:172 +msgid "General Settings" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1945 +#: includes/admin/class-mp-products-admin.php:2185 +#: includes/admin/class-mp-store-settings-admin.php:111 +#: includes/admin/class-mp-store-settings-admin.php:266 +msgid "General" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:242 +msgid "Importers" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +#: includes/admin/class-mp-store-settings-admin.php:234 +msgid "Payments" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:313 +#: includes/admin/class-mp-store-settings-admin.php:112 +#: includes/admin/class-mp-store-settings-admin.php:222 +msgid "Presentation" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:916 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1015 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1018 +#: includes/admin/class-mp-dashboard-widgets.php:305 marketpress.php:702 +msgid "Coupons" +msgstr "クーポン" + +#: includes/admin/class-mp-admin.php:251 +msgid "Download »" +msgstr "ダウンロード »" + +#: includes/admin/class-mp-admin.php:245 +#: includes/admin/class-mp-exporter-orders.php:170 +msgid "All Statuses" +msgstr "全てのステータス" + +#: includes/admin/class-mp-admin.php:209 +#: includes/admin/class-mp-exporter-orders.php:150 +#: includes/admin/class-mp-exporter-orders.php:178 +msgid "Export Orders" +msgstr "輸出注文" + +#: includes/admin/class-mp-admin.php:228 +msgid "Show all dates" +msgstr "全ての日付を表示" + +#: includes/admin/class-mp-orders-admin.php:947 +msgid "Change Status" +msgstr "ステータスを変更" + +#: includes/admin/class-mp-orders-admin.php:287 +msgid "Order Notes" +msgstr "ご注文ノート" + +#: includes/admin/class-mp-orders-admin.php:478 +msgid "Other" +msgstr "その他" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:205 +msgid "Subtotal" +msgstr "小計" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:84 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:87 +#: includes/admin/class-mp-products-admin.php:1737 +#: includes/common/class-mp-cart.php:1409 +#: includes/common/class-mp-product.php:559 +msgid "Quantity" +msgstr "個数" + +#: includes/common/helpers.php:93 +msgid "Item" +msgstr "商品" + +#: includes/common/class-mp-order.php:1050 +msgid "Current Status" +msgstr "ご注文状況" + +#: includes/admin/class-mp-orders-admin.php:297 +msgid "Order Actions" +msgstr "" + +#: includes/common/class-mp-product.php:1084 +msgid "More Info »" +msgstr "詳細はこちら" + +#: includes/common/class-mp-product.php:2313 +msgid "Low Product Inventory Notification" +msgstr "" + +#: includes/common/class-mp-order.php:338 includes/common/data.php:154 +msgid "New Order Notification: ORDERID" +msgstr "" + +#: includes/common/helpers.php:259 +msgid "Your payment for this order is complete." +msgstr "" + +#: includes/common/helpers.php:261 +msgid "Your payment for this order is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/helpers.php:256 +msgid "Payment Total:" +msgstr "" + +#: includes/common/helpers.php:253 +msgid "Transaction ID:" +msgstr "" + +#: includes/common/helpers.php:249 +msgid "Payment Type:" +msgstr "" + +#: includes/common/helpers.php:246 +msgid "Payment Method:" +msgstr "" + +#: includes/common/helpers.php:242 +msgid "Order Notes:" +msgstr "" + +#: includes/common/helpers.php:237 +msgid "Special Instructions:" +msgstr "" + +#: includes/common/helpers.php:232 +msgid "Tracking Number:" +msgstr "" + +#: includes/common/helpers.php:223 includes/common/helpers.php:226 +#: includes/common/helpers.php:228 +#: includes/common/shipping-modules/class-mp-shipping-api.php:406 +#: includes/common/shipping-modules/class-mp-shipping-api.php:428 +msgid "Shipping Method:" +msgstr "" + +#: includes/common/helpers.php:168 +msgid "No shipping required for this order." +msgstr "" + +#: includes/common/helpers.php:155 +msgid "Order Total:" +msgstr "" + +#: includes/common/class-mp-order.php:1025 +msgid "Taxes:" +msgstr "税金" + +#: includes/common/class-mp-order.php:1032 includes/common/helpers.php:144 +msgid "Shipping:" +msgstr "" + +#: includes/public/class-mp-checkout.php:367 +msgid "Street address, P.O. box, company name, c/o" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:314 +msgid "Shipping Info" +msgstr "" + +#: includes/public/class-mp-public.php:740 +msgid "Whoops, there was a problem loading up this file for your download. Please contact us for help." +msgstr "" + +#: includes/public/class-mp-public.php:683 +msgid "Sorry, our records show you've downloaded this file %d out of %d times allowed. Please contact us if you still need help." +msgstr "" + +#: includes/public/class-mp-public.php:634 +msgid "Sorry, your order has been marked as unpaid." +msgstr "申し訳ありません、ご注文が未払いとなっています。" + +#: includes/public/class-mp-public.php:629 +msgid "Sorry, the link is invalid for this download." +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:15 +#: includes/admin/class-mp-products-admin.php:1172 +msgid "Cheatin’ uh?" +msgstr "" + +#: includes/public/class-mp-public.php:407 +#: includes/public/class-mp-short-codes.php:128 +msgid "Please enter a valid email address." +msgstr "" + +#: includes/admin/class-mp-ajax.php:191 +#: includes/admin/class-mp-products-admin.php:1821 +#: includes/admin/class-mp-products-admin.php:2010 +#: includes/admin/class-mp-products-admin.php:2267 +msgid "File URL" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1842 +msgid "External Link" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2177 +msgid "Add Variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:126 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:289 +msgid "Inventory" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:438 +#: includes/admin/class-mp-products-admin.php:578 +#: includes/admin/class-mp-products-admin.php:1552 +#: includes/admin/class-mp-products-admin.php:2053 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:134 +msgid "Sale Price" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "Variation Name" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1931 +msgid "Product Details" +msgstr "" + +#: includes/admin/class-mp-product-attributes-list-table.php:33 +msgid "Delete" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1057 +msgid "Trashed" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:231 +#: includes/admin/class-mp-orders-admin.php:1015 +#: includes/common/class-mp-order.php:1052 includes/common/helpers.php:97 +msgid "Total" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1196 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:210 +#: includes/admin/class-mp-orders-admin.php:1014 +msgid "Discount" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:221 +#: includes/admin/class-mp-orders-admin.php:1013 +#: includes/common/payment-gateways/_ideal.php:148 +#: includes/common/payment-gateways/_payway.php:134 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:108 +msgid "Tax" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:216 +#: includes/admin/class-mp-orders-admin.php:1012 +#: includes/admin/class-mp-products-admin.php:1958 +#: includes/admin/class-mp-products-admin.php:2198 +#: includes/admin/class-mp-store-settings-admin.php:114 +#: includes/admin/class-mp-store-settings-admin.php:230 +#: includes/common/class-mp-cart.php:717 includes/common/helpers.php:168 +#: includes/common/payment-gateways/_ideal.php:137 +#: includes/common/payment-gateways/_payway.php:116 +#: includes/public/class-mp-checkout.php:1304 +msgid "Shipping" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1011 +msgid "Items" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1010 +msgid "From" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:154 +#: includes/admin/class-mp-orders-admin.php:1009 +#: includes/common/class-mp-gdpr.php:370 +msgid "Order Date" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1008 +#: includes/common/class-mp-gdpr.php:366 +#: includes/common/template-functions.php:2134 +msgid "Order ID" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:22 +#: includes/admin/class-mp-orders-admin.php:1007 +msgid "Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1155 +msgid "N/A" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:243 +#: includes/admin/class-mp-products-admin.php:464 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:142 +msgid "Sales" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:463 +msgid "Stock" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:85 +#: includes/admin/class-mp-ajax.php:176 includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:434 +#: includes/admin/class-mp-products-admin.php:462 +#: includes/admin/class-mp-products-admin.php:576 +#: includes/admin/class-mp-products-admin.php:1519 +#: includes/admin/class-mp-products-admin.php:1569 +#: includes/admin/class-mp-products-admin.php:1950 +#: includes/admin/class-mp-products-admin.php:2059 +#: includes/admin/class-mp-products-admin.php:2190 +#: includes/admin/class-mp-products-admin.php:2330 +#: includes/common/class-mp-cart.php:1415 includes/common/helpers.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:130 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:276 +msgid "Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:173 +#: includes/admin/class-mp-products-admin.php:461 +#: includes/admin/class-mp-products-admin.php:1972 +#: includes/admin/class-mp-products-admin.php:2224 +msgid "SKU" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:459 +#: includes/admin/class-mp-products-admin.php:1793 +#: includes/admin/class-mp-products-admin.php:1805 +#: includes/admin/class-mp-products-admin.php:2163 +msgid "Variations" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:83 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:86 +#: includes/admin/class-mp-dashboard-widgets.php:134 +#: includes/admin/class-mp-products-admin.php:458 +#: includes/admin/class-mp-products-admin.php:837 +#: includes/admin/class-mp-shortcode-builder.php:689 +#: includes/admin/class-mp-shortcode-builder.php:856 +#: includes/admin/class-mp-shortcode-builder.php:1300 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:512 +#: includes/admin/widgets/ms-global-product-list.php:115 +#: includes/admin/widgets/product-list.php:211 +msgid "Product Name" +msgstr "" + +#: includes/common/template-functions.php:2575 +msgid "Categorized in " +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:305 +#: includes/common/payment-gateways/free_orders.php:176 +msgid "Payment Information" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:167 +#: includes/admin/class-mp-orders-admin.php:432 +#: includes/admin/class-mp-pages-admin.php:62 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:227 +#: includes/common/class-mp-gdpr.php:374 +#: includes/common/template-functions.php:175 +#: includes/common/template-functions.php:926 +msgid "Order Status" +msgstr "" + +#. translators: %s: orders closed +#: marketpress.php:327 +msgid "Closed (%s)" +msgid_plural "Closed (%s)" +msgstr[0] "" + +#: includes/admin/class-mp-admin.php:249 +#: includes/admin/class-mp-orders-admin.php:375 +#: includes/admin/class-mp-orders-admin.php:951 +#: includes/admin/class-mp-orders-admin.php:1053 +#: includes/admin/class-mp-orders-admin.php:1065 +#: includes/common/class-mp-gdpr.php:330 +#: includes/common/class-mp-order.php:1019 marketpress.php:325 +msgid "Closed" +msgstr "" + +#. translators: %s: shipped orders +#: marketpress.php:320 +msgid "Shipped (%s)" +msgid_plural "Shipped (%s)" +msgstr[0] "" + +#: includes/admin/class-mp-admin.php:248 +#: includes/admin/class-mp-orders-admin.php:376 +#: includes/admin/class-mp-orders-admin.php:950 +#: includes/admin/class-mp-orders-admin.php:1049 +#: includes/admin/class-mp-orders-admin.php:1064 +#: includes/common/class-mp-gdpr.php:329 +#: includes/common/class-mp-order.php:1002 marketpress.php:318 +msgid "Shipped" +msgstr "" + +#. translators: %s: paid orders +#: marketpress.php:313 +msgid "Paid (%s)" +msgid_plural "Paid (%s)" +msgstr[0] "" + +#: includes/admin/class-mp-admin.php:247 +#: includes/admin/class-mp-orders-admin.php:377 +#: includes/admin/class-mp-orders-admin.php:949 +#: includes/admin/class-mp-orders-admin.php:1045 +#: includes/admin/class-mp-orders-admin.php:1063 +#: includes/common/class-mp-gdpr.php:328 +#: includes/common/payment-gateways/2checkout.php:294 +#: includes/common/payment-gateways/_cubepoints.php:130 +#: includes/common/payment-gateways/authorizenet-aim.php:193 +#: includes/common/payment-gateways/free_orders.php:91 +#: includes/common/payment-gateways/mijireh.php:248 +#: includes/common/payment-gateways/paymill.php:273 +#: includes/common/payment-gateways/paypal-express.php:933 +#: includes/common/payment-gateways/paypal-express.php:967 +#: includes/common/payment-gateways/pin.php:258 +#: includes/common/payment-gateways/simplify.php:181 +#: includes/common/payment-gateways/stripe.php:368 +#: includes/common/payment-gateways/wepay.php:269 marketpress.php:311 +msgid "Paid" +msgstr "" + +#. translators: %s: orders received +#: marketpress.php:306 +msgid "Received (%s)" +msgid_plural "Received (%s)" +msgstr[0] "" + +#: includes/admin/class-mp-admin.php:246 +#: includes/admin/class-mp-orders-admin.php:378 +#: includes/admin/class-mp-orders-admin.php:1041 +#: includes/admin/class-mp-orders-admin.php:1062 +#: includes/common/class-mp-gdpr.php:327 includes/common/class-mp-order.php:995 +#: includes/common/payment-gateways/payfast.php:244 marketpress.php:304 +msgid "Received" +msgstr "" + +#: marketpress.php:268 +msgid "Search Orders" +msgstr "" + +#: marketpress.php:267 +msgid "View Order" +msgstr "" + +#: marketpress.php:262 +msgid "Order" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:301 +#: includes/admin/class-mp-orders-admin.php:989 marketpress.php:261 +msgid "Orders" +msgstr "" + +#: marketpress.php:228 +msgid "No Products found in Trash" +msgstr "" + +#: marketpress.php:227 +msgid "No Products Found" +msgstr "" + +#: marketpress.php:226 +msgid "Search Products" +msgstr "" + +#: marketpress.php:225 marketpress.php:229 +msgid "View Product" +msgstr "" + +#: marketpress.php:224 +msgid "New Product" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1022 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:258 +#: marketpress.php:223 +msgid "Edit" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1019 +msgid "Create New" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:687 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:698 +#: marketpress.php:217 +msgid "Product" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:307 +#: includes/common/template-functions.php:173 +#: includes/common/template-functions.php:179 +#: includes/common/template-functions.php:902 +#: includes/multisite/template-functions.php:82 marketpress.php:216 +#: marketpress.php:219 +msgid "Products" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:118 +#: includes/admin/widgets/product-tag-cloud.php:46 +#: includes/multisite/class-mp-admin-multisite.php:548 +msgid "Product Tags" +msgstr "" + +#: includes/common/template-functions.php:2906 +#: includes/multisite/template-functions.php:449 +msgid "Product Category" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:117 +#: includes/admin/widgets/categories.php:8 +#: includes/admin/widgets/categories.php:18 +#: includes/multisite/class-mp-admin-multisite.php:539 +msgid "Product Categories" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:332 +#: includes/common/template-functions.php:872 marketpress.php:218 +msgid "Store" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:60 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:209 +#: includes/admin/widgets/cart.php:8 includes/admin/widgets/cart.php:56 +#: includes/common/template-functions.php:174 +#: includes/common/template-functions.php:811 +msgid "Shopping Cart" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:110 +#: includes/admin/class-mp-store-settings-admin.php:218 +msgid "Store Settings" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:128 marketpress.php:607 +msgid "Settings" +msgstr "" + +#: includes/common/data.php:178 includes/common/data.php:190 +msgid "Your Order Has Been Shipped! (ORDERID)" +msgstr "" + +#: includes/common/data.php:159 includes/common/data.php:166 +#: includes/common/data.php:172 +msgid "Your Order Confirmation (ORDERID)" +msgstr "" + +#: includes/common/data.php:148 +msgid "

    Thank you for your order! We appreciate your business, and please come back often to check out our new products.

    " +msgstr "" + +#: includes/common/data.php:147 +msgid "

    You are almost done! Please do a final review of your order to make sure everything is correct then click the \"Confirm Payment\" button.

    " +msgstr "" + +#: includes/common/data.php:145 +msgid "

    Please enter your shipping information in the form below to proceed with your order.

    " +msgstr "" + +#: includes/common/data.php:143 +msgid "

    If you have any questions about your order please do not hesitate to contact us.

    " +msgstr "" + +#: includes/common/data.php:106 +msgid "tag" +msgstr "" + +#: includes/common/data.php:105 +msgid "category" +msgstr "" + +#: includes/common/data.php:104 +msgid "order-status" +msgstr "" + +#: includes/common/data.php:103 +msgid "shopping-cart" +msgstr "" + +#: includes/common/data.php:102 +msgid "products" +msgstr "" + +#. Translators: change default slugs here +#: includes/common/data.php:101 +msgid "store" +msgstr "" \ No newline at end of file diff --git a/languages/mp-ko.mo b/languages/mp-ko.mo new file mode 100644 index 0000000000000000000000000000000000000000..f7339680450f577c94b17d0ccdd7fab089df307d GIT binary patch literal 420 zcmY+8!Ak-`6vj93G<2$KhdH{$=&qZvta*@9k+MWALW-Dl(#>^dnH|H9p+bl75JYt8 z(k(hve^3{1Y1huZbpz?akMH{)--GwL61&%6V!#@(83vf+Nal*bp8%n@fv_6@KR_Q? z1;kRM1JGs251`r}?J^wCk-Gk8>m;XZK6RT~WuH{pr5m_{lWnS)gHwi?CWb{)7B+0h zN;@0&x&edArE;DeG8uLqY$gn}CAeZ-k=m6Hhl=%8()Xy#Gq};FGGHouP%997(UX)1 z=S-43Z-}PLTMo9*T!kuLPg0K*gzN?m=KeeeSu=wpn>8}%h!h!Tk}4q`T=ayhNEQUi zRKiM_XqWOhdUHkfYn?1eG9*5KCTkRKOxO{a0 literal 0 HcmV?d00001 diff --git a/languages/mp-ko.po b/languages/mp-ko.po new file mode 100644 index 00000000..c77cd476 --- /dev/null +++ b/languages/mp-ko.po @@ -0,0 +1,8946 @@ +# Translation of MarketPress in Korean +# This file is distributed under the same license as the MarketPress package. +msgid "" +msgstr "" +"PO-Revision-Date: 2015-03-23 08:35:48+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: GlotPress/2.3.1\n" +"Language: ko_KR\n" +"Project-Id-Version: MarketPress\n" + +#: includes/public/class-mp-checkout.php:1285 +msgid "By clicking this checkbox you allow the website to process your personal data." +msgstr "" + +#: includes/common/class-mp-gdpr.php:382 +msgid "Order Info" +msgstr "" + +#: includes/common/class-mp-gdpr.php:268 +msgid "Shipping Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:267 +msgid "Shipping Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:266 +msgid "Shipping ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:265 +msgid "Shipping State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:264 +msgid "Shipping City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:263 +msgid "Shipping Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:262 +msgid "Shipping Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:261 +msgid "Shipping Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:260 +msgid "Shipping Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:259 +msgid "Shipping Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:258 +msgid "Shipping First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:254 +msgid "Billing Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:253 +msgid "Billing Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:252 +msgid "Billing ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:251 +msgid "Billing State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:250 +msgid "Billing City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:249 +msgid "Billing Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:248 +msgid "Billing Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:247 +msgid "Billing Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:246 +msgid "Billing Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:245 +msgid "Billing Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:244 +msgid "Billing First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:151 +msgid "Orders Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:139 +msgid "Customer Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:100 includes/common/class-mp-gdpr.php:116 +msgid "MarketPress User Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:81 +msgid "" +"In addition to standard WordPress session cookies, this site might be setting an\n" +"\t\t additional cookie to remember your cart settings. This cookie will last for one year." +msgstr "" + +#: includes/common/class-mp-gdpr.php:80 +msgid "Cookies" +msgstr "" + +#: includes/common/class-mp-gdpr.php:77 +msgid "" +"The following information will be collected in order to process orders: your name,\n" +"\t\t username, email address, avatar and profile URLs, address and phone number. This data can be\n" +"\t\t exported and removed." +msgstr "" + +#: includes/common/class-mp-gdpr.php:76 +msgid "Additional data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:71 +msgid "" +"This site might be using third party services and tools to process payments or/and\n" +"\t\t process shipping data when creating orders on the MarketPress store. These services include payment\n" +"\t\t gateways: 2Checkout, Authorize.net AIM, eWay shared payments, eWay Rapid 3.1 Payments, Mijireh,\n" +"\t\t Mollie, Paymill, PayPal, PIN, Simplify Commerce by MasterCard, Stripe and WePay; shipping gateways:\n" +"\t\t Fedex, UPS, USPS." +msgstr "" + +#: includes/common/class-mp-gdpr.php:70 +msgid "Third parties" +msgstr "" + +#: includes/admin/class-mp-admin.php:403 +msgid "Start creating store pages and products for your online shop here." +msgstr "" + +#: includes/admin/class-mp-admin.php:402 +msgid "Create Online Shop" +msgstr "" + +#: includes/admin/class-mp-admin.php:394 +msgid "Run Setup Wizard" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:234 +msgid "If having problems during invoice generation, add define( 'DOMPDF_ENABLE_HTML5PARSER', true ); to the wp-config.php file." +msgstr "" + +#: includes/public/class-mp-checkout.php:723 +msgid "Invalid Email" +msgstr "" + +#: includes/public/class-mp-checkout.php:721 +#: includes/public/class-mp-checkout.php:729 +msgid "This field is required" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:804 +msgid "This option changes the built-in css styles for store pages. For a custom css style, save your css file with the /* MarketPress Style: Your CSS Theme Name Here */ header line in the \"%s\" folder and it will appear in this list so you may select it. You should select \"None\" if you don't wish to use custom CSS styles or if you are using default theme templates or custom theme templates and css to make your own completely unique store design. For more information on custom theme templates click here »." +msgstr "" + +#: includes/public/class-mp-public.php:421 +#: includes/public/class-mp-short-codes.php:142 +msgid "Please enter a value greater than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:420 +#: includes/public/class-mp-short-codes.php:141 +msgid "Please enter a value less than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:419 +#: includes/public/class-mp-short-codes.php:140 +msgid "Please enter a value between {0} and {1}." +msgstr "" + +#: includes/public/class-mp-public.php:418 +#: includes/public/class-mp-short-codes.php:139 +msgid "Please enter a value between {0} and {1} characters long." +msgstr "" + +#: includes/public/class-mp-public.php:417 +#: includes/public/class-mp-short-codes.php:138 +msgid "Please enter at least {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:416 +#: includes/public/class-mp-short-codes.php:137 +msgid "Please enter no more than {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:415 +#: includes/public/class-mp-short-codes.php:136 +msgid "Please enter a value with a valid extension." +msgstr "" + +#: includes/public/class-mp-public.php:414 +#: includes/public/class-mp-short-codes.php:135 +msgid "Please enter the same value again." +msgstr "" + +#: includes/public/class-mp-public.php:413 +#: includes/public/class-mp-short-codes.php:134 +msgid "Please enter a valid credit card number." +msgstr "" + +#: includes/public/class-mp-public.php:412 +#: includes/public/class-mp-short-codes.php:133 +msgid "Please enter only digits." +msgstr "" + +#: includes/public/class-mp-public.php:411 +#: includes/public/class-mp-short-codes.php:132 +msgid "Please enter a valid number." +msgstr "" + +#: includes/public/class-mp-public.php:410 +#: includes/public/class-mp-short-codes.php:131 +msgid "Please enter a valid date (ISO)." +msgstr "" + +#: includes/public/class-mp-public.php:409 +#: includes/public/class-mp-short-codes.php:130 +msgid "Please enter a valid date." +msgstr "" + +#: includes/public/class-mp-public.php:408 +#: includes/public/class-mp-short-codes.php:129 +msgid "Please enter a valid URL." +msgstr "" + +#: includes/public/class-mp-public.php:406 +#: includes/public/class-mp-short-codes.php:127 +msgid "Please fix this field." +msgstr "" + +#: includes/public/class-mp-checkout.php:1287 +#: includes/public/class-mp-public.php:405 +#: includes/public/class-mp-short-codes.php:126 +msgid "This field is required." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:810 +msgid "None - Without Special CSS-styles" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:809 +msgid "Default - Using Default CSS-styles" +msgstr "" + +#: marketpress.php:739 +msgid "Enable multiple downloads per product" +msgstr "" + +#: marketpress.php:738 +msgid "Multiple Downloads" +msgstr "" + +#: includes/public/class-mp-checkout.php:715 +msgid "Invalid Zip Code" +msgstr "" + +#: includes/common/template-functions.php:2126 +msgid "Guest Email" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:195 +msgid "There was a problem finalizing your purchase. Please re-enter your credit card information and try again" +msgstr "" + +#: includes/common/class-mp-cart.php:565 includes/common/class-mp-order.php:600 +#: includes/common/helpers.php:111 +msgid "Download %1$s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:331 +msgid "Export products to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:328 +msgid "The import process uses the WordPress importer plugin." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:326 +msgid "Import / Export Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:325 +msgid "Export settings to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:324 +msgid "Import configuration" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:320 +msgid "Use the text below to export to a new installation. Or paste in the new configuration to import." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:318 +msgid "Import / Export Settings" +msgstr "" + +#. translators: URL to wp-admin/import.php +#: includes/admin/store-settings/class-mp-store-settings-import.php:266 +msgid "This importer is not installed. Please install importers from the main site." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:261 +msgid "Install Now" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:260 +msgid "Install %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:240 +msgid "Run Importer" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:239 +msgid "Run %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:258 +msgid "Import/Export" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1199 +msgid "Requires Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:737 +msgid "Optionally limit the user to some categories" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:671 +msgid "Should this coupon only be available to logged in users?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:670 +msgid "Require Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:655 +msgid "Mimimum number of products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:653 +msgid "Enter the minimum number of products in the cart that this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:648 +msgid "Can this coupon be limited to a number of products in the cart?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:334 +msgid "Add all values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:265 +msgid "Set as default variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:154 +msgid "Set Default" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:150 +msgid "More Info" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:40 +msgid "MarketPress - Quick Setup" +msgstr "" + +#: includes/public/class-mp-checkout.php:1399 +msgid "Proceed to checkout and create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1241 +#: includes/public/class-mp-checkout.php:1245 +msgid "Register account" +msgstr "" + +#: includes/public/class-mp-checkout.php:1233 +msgid "Register as customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:765 +msgid "

    Oops!

    Looks like you haven't added anything your cart. Let's go shopping!

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:763 +msgid "

    Oops!

    The cart is disabled.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing Information" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:214 +msgid "Global Currency" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:198 +msgid "Global Store Currency" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:507 +msgid "There are no shipping services available for this type of package in your location." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:168 +msgid "Using this USPS Shipping calculator requires requesting an Ecommerce API Username and Password. Get your free set of credentials here ». The password is no longer used for the API, just the username which you should enter below. The USPS test site has not yet been updated and currently doesn't work - you should just request activating your credentials with USPS and go live." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:339 +msgid "ZIP Code" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:334 +msgid "Last name" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:333 +msgid "First name" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:150 +msgid "These are the manual payment instructions to display on the order confirmation screen. TOTAL will be replaced with the order total and ORDERID will be replaced with Order ID." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:240 +msgid "You must login to Authorize.net merchant dashboard to obtain the API login ID and API transaction key. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:327 +msgid "
    1. Set the \"Return Method\" within Site Management to Header Redirect and set the \"Return URL\" to %s
    2. Set your notifications url to %s
    " +msgstr "" + +#: includes/common/data.php:191 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Also, digital downloads included in your order are now ready to be downloaded. Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:185 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order is now available to download! Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:184 +msgid "Your Order Is Ready To Be Downloaded! (ORDERID)" +msgstr "" + +#: includes/common/data.php:179 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:173 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received, your digital goods are ready to be downloaded and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:167 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received and your digital goods are ready to be downloaded. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:160 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +" Your order has been received, and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information: \n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/class-mp-product.php:638 +msgid "You can not add more items to cart." +msgstr "" + +#: includes/common/class-mp-product.php:635 +msgid "You can only add {0} to cart." +msgstr "" + +#: includes/common/class-mp-product.php:625 +msgid "This product has an order limit of %d." +msgstr "" + +#: includes/common/class-mp-order.php:1454 +msgid "Shipped: tracking code: %s" +msgstr "" + +#: includes/common/class-mp-order.php:1000 +#: includes/common/class-mp-order.php:1012 +msgid "Finished" +msgstr "" + +#: includes/common/class-mp-order.php:858 +msgid "Contact Details" +msgstr "" + +#: includes/common/class-mp-order.php:339 includes/common/data.php:155 +msgid "" +"A new order (ORDERID) was created in your store:\n" +"\n" +" ORDERINFOSKU\n" +"\n" +" SHIPPINGINFO\n" +"\n" +" PAYMENTINFO\n" +"\n" +msgstr "\n" + +#: includes/common/class-mp-cart.php:1858 +msgid "Add again" +msgstr "" + +#: includes/common/class-mp-cart.php:1852 +msgid "was removed from Shopping Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1242 +#: includes/public/class-mp-short-codes.php:160 +msgid "Cart update notice: this item has a limit per order or you have reached the stock limit." +msgstr "" + +#: includes/admin/widgets/product-list.php:235 +msgid "Show Only Featured Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:533 +msgid "If enabled, users won't be able to filter products per category and/or to order by release date/name/price." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:531 +msgid "Hide Products Filter?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:353 +msgid "Notification to registration email instead of billing email?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:322 +msgid "Order Shipped - Mixed orders (with both digital and physical products)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:289 +msgid "Order Shipped - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:224 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:194 +msgid "New Order - Mixed" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:161 +msgid "New Order - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:115 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:243 +msgid "Mixed orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:110 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:238 +msgid "Digital downloads orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:105 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:233 +msgid "Physical orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:96 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed.
    For orders placed with manual payment, emails set here will be overriden by the one configured in manual payments settings, under payments settings page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:89 +msgid "Customer Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:47 +msgid "Admin Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:566 +msgid "Only contact details" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:565 +msgid "Full billing info" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:561 +msgid "Details Collection" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:548 +msgid "Digital Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:515 +msgid "Apply Tax to Digital Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:236 +msgid "product (default)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:231 +msgid "If you are experiencing conflicts with other e-commerce plugins change this setting. This will change the internal post type of all your products. Please note that changing this option may break 3rd party themes or plugins." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1203 +msgid "Hide details" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1202 +msgid "Show all changes" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1184 +msgid "Version %s" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1161 +msgid "Current" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1131 +msgid "%s changelog" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:952 +msgid "We did not find any data for this plugin or theme..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:285 +msgid "Activate WPMU DEV Dashboard" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:279 +msgid "Just one more step - activate the WPMU DEV Dashboard plugin and you're all done!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:277 +msgid "Important updates are available for your WPMU DEV plugins/themes. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:273 +msgid "Just one more step to enable updates and support for %s!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:271 +msgid "Important updates are available for %s. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:264 +msgid "activate" +msgstr "" + +#: includes/admin/class-mp-admin.php:398 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:248 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:289 +msgid "Dismiss" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:247 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:288 +msgid "Saving..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:244 +msgid "Install Plugin" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:238 +msgid "Almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:236 +msgid "Important updates are available for your WPMU DEV plugins/themes. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:232 +msgid "%s is almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:230 +msgid "Important updates are available for %s. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:223 +msgid "install" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1428 +msgid "Sets the number of Tags to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1289 +msgid "How many products to display in the product list if \"paginate\" is set to false." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:739 +#: includes/admin/class-mp-shortcode-builder.php:906 +#: includes/admin/class-mp-shortcode-builder.php:1350 +msgid "Grid" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:735 +#: includes/admin/class-mp-shortcode-builder.php:902 +#: includes/admin/class-mp-shortcode-builder.php:1346 +msgid "Products will be displayed as list or grid." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:206 +msgid "Display a cloud or list of your global product tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:205 +msgid "Display a list of your global categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:204 +msgid "Display a list or grid of your global products." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:181 +msgid "Display a list of featured products." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1451 +msgid "Is Featured?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1444 +msgid "Featured Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:581 +#: includes/admin/class-mp-products-admin.php:1580 +msgid "% discount" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:579 +msgid "OR" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:460 +#: includes/admin/class-mp-products-admin.php:586 +#: includes/admin/widgets/product-list.php:217 +msgid "Featured" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:536 +#: includes/admin/class-mp-orders-admin.php:538 +msgid "Tracking Link" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:508 +msgid "Shipping Tax" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:356 +msgid "Shipping Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:352 +msgid "Taxes Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:349 +msgid "Products Total" +msgstr "" + +#: includes/admin/class-mp-ajax.php:366 +msgid "Oops! You entered an invalid username/email and or password." +msgstr "" + +#: includes/admin/class-mp-ajax.php:254 +msgid "Percentage Discount" +msgstr "" + +#: includes/admin/class-mp-ajax.php:234 +msgid "Limit the Amount of Items per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:214 +msgid "Unused Attributes" +msgstr "" + +#: includes/admin/class-mp-admin.php:82 +msgid "Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-admin.php:79 +msgid "MarketPress setup is not complete! Once you've completed this quick setup wizard you'll have a fully working online store - exciting! " +msgstr "" + +#: marketpress.php:263 +msgctxt "mp_order" +msgid "Add New" +msgstr "" + +#: marketpress.php:184 +msgctxt "product_tag" +msgid "Product Tag" +msgstr "" + +#: marketpress.php:183 +msgctxt "product_tag" +msgid "Product Tags" +msgstr "" + +#: marketpress.php:150 +msgctxt "product_category" +msgid "Product Category" +msgstr "" + +#: marketpress.php:149 +msgctxt "product_category" +msgid "Product Categories" +msgstr "" + +#. Author URI of the plugin/theme +msgid "http://premium.wpmudev.org" +msgstr "" + +#: marketpress.php:729 +msgid "Invoice PDF" +msgstr "" + +#: marketpress.php:712 +msgid "Grant access to themes and gateways depending on the user's Pro Site level" +msgstr "" + +#: marketpress.php:711 +msgid "Pro Sites" +msgstr "" + +#: marketpress.php:703 +msgid "Offer and accept coupon codes" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:687 +msgid "Install %s Pages" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:682 +msgid "Welcome to %s – Install pages required by the plugin automatically." +msgstr "" + +#: marketpress.php:668 +msgid "Your pages were created successfully." +msgstr "" + +#: marketpress.php:436 +msgid "Add a Product" +msgstr "" + +#: marketpress.php:271 +msgid "Parent Order" +msgstr "" + +#: marketpress.php:270 +msgid "No orders found in trash" +msgstr "" + +#: marketpress.php:269 +msgid "No orders found" +msgstr "" + +#: marketpress.php:265 +msgid "Edit Order" +msgstr "" + +#: marketpress.php:264 +msgid "Add New Order" +msgstr "" + +#: marketpress.php:220 marketpress.php:221 +msgid "Add New Product" +msgstr "" + +#: marketpress.php:197 +msgid "No product tags found" +msgstr "" + +#: marketpress.php:196 +msgid "Choose from the most used product tags" +msgstr "" + +#: marketpress.php:195 +msgid "Add or remove product tags" +msgstr "" + +#: marketpress.php:194 +msgid "Separate product tags with commas" +msgstr "" + +#: marketpress.php:193 +msgid "Search Product Tags" +msgstr "" + +#: marketpress.php:192 +msgid "Parent Product Tag:" +msgstr "" + +#: marketpress.php:191 +msgid "Parent Product Tag" +msgstr "" + +#: marketpress.php:190 +msgid "New Product Tag Name" +msgstr "" + +#: marketpress.php:189 +msgid "Add New Product Tag" +msgstr "" + +#: marketpress.php:188 +msgid "Update Product Tag" +msgstr "" + +#: marketpress.php:187 +msgid "View Product Tag" +msgstr "" + +#: marketpress.php:186 +msgid "Edit Product Tag" +msgstr "" + +#: marketpress.php:185 +msgid "All Product Tags" +msgstr "" + +#: marketpress.php:163 +msgid "No product categories found" +msgstr "" + +#: marketpress.php:162 +msgid "Choose from the most used product categories" +msgstr "" + +#: marketpress.php:161 +msgid "Add or remove product categories" +msgstr "" + +#: marketpress.php:160 +msgid "Separate product categories with commas" +msgstr "" + +#: marketpress.php:159 +msgid "Search Product Categories" +msgstr "" + +#: marketpress.php:158 +msgid "Parent Product Category:" +msgstr "" + +#: marketpress.php:157 +msgid "Parent Product Category" +msgstr "" + +#: marketpress.php:156 +msgid "New Product Category Name" +msgstr "" + +#: marketpress.php:155 +msgid "Add New Product Category" +msgstr "" + +#: marketpress.php:154 +msgid "Update Product Category" +msgstr "" + +#: marketpress.php:153 +msgid "View Product Category" +msgstr "" + +#: marketpress.php:152 +msgid "Edit Product Category" +msgstr "" + +#: marketpress.php:151 +msgid "All Product Categories" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Please fix the %s1 and then try submitting the form again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Oops! The form contains %s1 which %s2 been highlighted below." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:660 +msgid "have" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:659 +msgid "has" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:651 +msgid "Value must be less than {0}" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:650 +msgid "Please enter only letters and numbers" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:539 +msgid "Due to prolonged inactivity on this page, one or more settings were not saved. Please try again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:535 +msgid "Settings Saved" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-user-select.php:22 +msgid "Select Some Users" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-section.php:18 +msgid "Section Title" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:425 +msgid "Are you sure you want to delete this?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:30 +msgid "Add Row" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-post-select.php:24 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-taxonomy-select.php:22 +msgid "Select Posts" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:210 +msgid "Add Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:129 +msgid "Select the image that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:93 +msgid "Select image(s) that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:79 +msgid "Select the image that you would like to use for this variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:48 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:82 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:68 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:132 +msgid "Select Image" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:31 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:160 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:168 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:19 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:115 +msgid "Select File" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:30 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:18 +msgid "Select the file that you would like to use." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:357 +msgid "Create Variations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:356 +msgid "Add Another Variant" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Insert a value and press ENTER" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "(e.g. White, Grey, Red etc.)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Variation Values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:333 +msgid "Or create new variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "(e.g. Color)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:303 +msgid "You are about to delete selected variants.
    If you want to continue please confirm." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:302 +msgid "Confirmation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:290 +msgid "Insert quantity available. Empty for unlimited." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:281 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:294 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:307 +msgid "Cancel" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:280 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:293 +msgid "Update" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:277 +msgid "Insert the price i.e. 25 or 25.50" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:115 +msgid "Img." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:85 +msgid "Add New Variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:79 +msgid "Delete Variants" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:78 +msgid "Update Prices" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:77 +msgid "Update Inventory" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:76 +msgid "Update Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:75 +msgid "Bulk Actions" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:73 +msgid "Select bulk action" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:196 +msgid "Configure Store" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:195 +msgid "Configure shipping rates, emails and your store's appearance. " +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:190 +msgid "Add Product" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:189 +msgid "Add your first product for sale and get familiar with adding products." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:184 +msgid "Your store is almost ready for its first customers, but first it needs some products. Get started by adding products below, or jump straight into further configuring your store’s settings." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:183 +msgid "Woohoo! Your online store is up and running." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:160 +msgid "Finish Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:124 +msgid "And what metric system do you want to use?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:113 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:142 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:159 +msgid "Back" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:109 +msgid "Do you want to apply tax for your products? You can customize this for each product and variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:105 +msgid "What currency do you want to sell with?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:93 +msgid "And, which countries do you want to sell to?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:89 +msgid "Where is your online store based?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:80 +msgid "Payment Gateway" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:79 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:123 +msgid "Metric System" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:78 +msgid "Currency & Tax" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:77 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:88 +msgid "Locations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:70 +msgid "Choose where you want to sell your stuff and what currency. Easy!" +msgstr "" + +#: includes/public/class-mp-checkout.php:1400 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:58 +msgid "Continue" +msgstr "" + +#: includes/admin/class-mp-admin.php:83 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:53 +msgid "Skip this step, I'll do this manually" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:49 +msgid "Install store pages" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:44 +msgid "Once you've completed this quick setup wizard you'll have a fully working online store - exciting! Start
    by creating the default store pages for the online store such as the cart, checkout and store pages." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:42 +msgid "MarketPress adds a full online store to your website, with heaps of configuration options and addons
    to suit your needs. It's really easy to get going, and only takes a few minutes to setup!" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:41 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:69 +msgid "Welcome to MarketPress - Quick Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-advanced-select.php:23 +msgid "Select Some Options" +msgstr "" + +#: includes/wpmudev-metaboxes/class-wpmudev-field.php:694 +msgid "You must the WPMUDEV_Field::display() method in your form field class" +msgstr "" + +#: includes/public/class-mp-short-codes.php:636 +msgid "Only %s left in stock..." +msgstr "" + +#: includes/public/class-mp-short-codes.php:633 +msgid "Unlimited stock" +msgstr "" + +#: includes/public/class-mp-short-codes.php:430 +msgid "product_id must be defined" +msgstr "" + +#: includes/public/class-mp-checkout.php:1250 +msgid "An account with this username already exists" +msgstr "" + +#: includes/public/class-mp-checkout.php:1394 +msgid "Continue as Guest" +msgstr "" + +#: includes/public/class-mp-checkout.php:1393 +msgid "Proceed to checkout and you'll have an opportunity to create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1392 +#: includes/public/class-mp-checkout.php:1398 +msgid "First-time customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1386 +msgid "Login" +msgstr "" + +#: includes/public/class-mp-checkout.php:1379 +msgid "E-Mail Address/Username" +msgstr "" + +#: includes/public/class-mp-checkout.php:1377 +msgid "Sign in to speed up the checkout process." +msgstr "" + +#: includes/public/class-mp-checkout.php:1376 +msgid "Have an account?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1297 +msgid "Shipping address different than billing?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1184 +msgid "There are no available gateways to process this payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1160 +msgid "Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:1123 +msgid "Oops! An error occurred while processing your payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1051 +msgid "Next Step »" +msgstr "" + +#: includes/public/class-mp-checkout.php:1045 +msgid "« Previous Step" +msgstr "" + +#: includes/public/class-mp-checkout.php:873 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:657 +msgid "error" +msgstr "" + +#: includes/public/class-mp-checkout.php:872 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:658 +msgid "errors" +msgstr "" + +#: includes/public/class-mp-checkout.php:871 +msgid "

    Oops! We found %d %s in the form below.

    Fields that have errors are highlighted in red below. Entering into a field will reveal the actual error that occurred.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:870 +msgid "Please enter a valid first and last name" +msgstr "" + +#: includes/public/class-mp-checkout.php:869 +msgid " Please enter a valid card security code" +msgstr "" + +#: includes/public/class-mp-checkout.php:868 +msgid "Please enter a valid card expiration" +msgstr "" + +#: includes/public/class-mp-checkout.php:773 +msgid "Javascript is required in order to checkout. Please enable Javascript in your browser and then refresh this page." +msgstr "" + +#: includes/public/class-mp-checkout.php:588 +msgid "An unknown error occurred. Please try again." +msgstr "" + +#: includes/public/class-mp-checkout.php:386 +msgid "Town/City" +msgstr "" + +#: includes/public/class-mp-checkout.php:380 +msgid "Apartment, suite, unit, building, floor, etc" +msgstr "" + +#: includes/public/class-mp-checkout.php:376 +msgid "Address Line 2" +msgstr "" + +#: includes/public/class-mp-checkout.php:363 +msgid "Address Line 1" +msgstr "" + +#: includes/common/class-mp-order.php:770 +#: includes/public/class-mp-checkout.php:354 +msgid "Company" +msgstr "" + +#: includes/public/class-mp-checkout.php:330 +msgid "Last" +msgstr "" + +#: includes/public/class-mp-checkout.php:321 +msgid "First" +msgstr "" + +#: includes/public/class-mp-checkout.php:284 +msgid "State/Province" +msgstr "" + +#: includes/public/class-mp-checkout.php:83 +msgid "Review Order/Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing/Shipping Address" +msgstr "" + +#: includes/public/class-mp-checkout.php:80 +msgid "Login/Register" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:530 +msgid "Marketplace" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:523 +msgid "Global Marketplace Pages" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +msgid "Store Network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +#: includes/multisite/class-mp-admin-multisite.php:494 +msgid "Store Network Settings" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:440 +msgid "Set theme access permissions for network stores. For a custom css theme, save your css file with the MarketPress Theme: NAME header in the /marketpress/ui/themes/ folder and it will appear in this list so you may select it." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:361 +msgid "Choose a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:336 +msgid "%d products get indexed" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:285 +msgid "Product Indexer" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:281 +msgid "Please hold on..." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:280 +msgid "Index Products" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:279 +msgid "%d products have been indexed in whole network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:182 +msgid "Enable Global Shopping Cart?" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:178 +msgid "Limit Global Widgets/Shortcodes To Main Blog?" +msgstr "" + +#: includes/common/template-functions.php:2802 +#: includes/multisite/template-functions.php:355 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:97 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:114 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:143 +msgid "Next" +msgstr "" + +#: includes/common/template-functions.php:2801 +#: includes/multisite/template-functions.php:354 +msgid "Prev" +msgstr "" + +#: includes/common/template-functions.php:2597 +msgid "Tagged in " +msgstr "" + +#: includes/common/template-functions.php:2196 +#: includes/common/template-functions.php:2202 +#: includes/common/template-functions.php:2214 +#: includes/common/template-functions.php:2217 +msgid "Oops! We couldn't locate any orders matching that order number. Please verify the order number and try again." +msgstr "" + +#: includes/common/template-functions.php:2138 +msgid "Look Up" +msgstr "" + +#: includes/common/template-functions.php:1423 +msgid "Please choose a shipping method" +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "If you have your order ID you can look it up using the form below." +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "Order Search" +msgstr "" + +#: includes/common/template-functions.php:910 +#: includes/public/class-mp-checkout.php:1440 +msgid "Cart" +msgstr "" + +#: includes/common/template-functions.php:895 +msgid "[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:887 +msgid "[mp_global_categories_list]" +msgstr "" + +#: includes/common/template-functions.php:880 +msgid "" +"Welcome to our market place!\n" +"\n" +"Check out our network of products:\n" +"\n" +"[mp_list_global_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_global_categories_list]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:879 +msgid "Global Store" +msgstr "" + +#: includes/common/template-functions.php:873 +msgid "" +"Welcome to our online store! Feel free to browse around:\n" +"\n" +"[mp_store_navigation]\n" +"\n" +"Check out our most popular products:\n" +"\n" +"[mp_popular_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_list_categories]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_tag_cloud]" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:127 +msgid "If cart weight is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:126 +msgid "Cart Weight" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:222 +msgid "Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:206 +msgid "Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:196 +msgid "Retail Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:195 +msgid "Online Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:193 +msgid "Rates Request Type" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:189 +msgid "Maximum Weight Per Package" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:195 +#: includes/common/shipping-modules/mp-usps.php:236 +msgid "Enter your standard box sizes as LengthxWidthxHeight (e.g. 12x8x6) For each box defined enter the maximum weight it can contain. Note: the shipping prices this plugin calculates are estimates. If they are consistently too low or too high, please check that the list of boxes above and the product weights are accurate and complete." +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:187 +msgid "Handling Charge Per Box Shipped" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:176 +#: includes/common/shipping-modules/mp-ups.php:181 +msgid "Offered Services" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:165 +msgid "Shipper Number" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:151 +msgid "User ID" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:144 +msgid "Developer Kit Access Key" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:140 +msgid "Use Sandbox Mode?" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:123 +msgid "In order to use UPS, you will need a UPS Developer Kit access key and the UPS user ID and password associated with the access key. Set these up for free here. If this information is missing or incorrect, an error will appear during the checkout process and the buyer will not be able to complete the transaction." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:112 +msgid "If cart total is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:111 +msgid "Cart Total" +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:95 +#: includes/common/shipping-modules/mp-weight-rate.php:111 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Don't worry about sorting as this will be done automatically upon saving." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:170 +msgid "Method Title (visible for clients)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:409 +#: includes/common/shipping-modules/mp-ups.php:216 +#: includes/common/shipping-modules/mp-usps.php:251 +msgid "Max Weight (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:402 +#: includes/common/shipping-modules/mp-ups.php:209 +#: includes/common/shipping-modules/mp-usps.php:247 +msgid "Size (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:387 +msgid "Enter your standard box sizes as LengthxWidthxHeight ( 12x8x6 ) For each box defined enter the maximum weight it can contain. Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:361 +#: includes/common/shipping-modules/mp-usps.php:229 +msgid "Handling Charge per International Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:353 +msgid "International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:339 +#: includes/common/shipping-modules/mp-usps.php:213 +msgid "Handling Charge per Domestic Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:331 +msgid "Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:321 +msgid "When checked the customer can chose Residential or Commercial delivery with Residential the default. Unchecked it's only Residential rates." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:320 +msgid "Allow Commercial Delivery?" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:315 +msgid "Fedex 10kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:314 +msgid "Fedex 25kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:313 +msgid "Fedex Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:312 +msgid "Fedex Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:311 +msgid "Fedex Pak" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:310 +msgid "Fedex Tube" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:306 +msgid "Default Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:294 +msgid "Dropoff Type" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:290 +msgid "Meter ID" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:134 +msgid "This is a residential address" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:283 +msgid "There was an error processing your card: \"%s\". Please check your credit card info and try again." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:121 +msgid "Wepay makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept cards directly on your site. You don't need a merchant account or gateway. WePay handles everything including storing cards. Credit cards go directly to WePay's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:385 +msgid "There was an error processing your card - \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:356 +msgid "%s Store Purchase - Order ID - %s, Email - %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:251 +msgid "Stripe makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept Visa, MasterCard, American Express, Discover, JCB, and Diners Club cards directly on your site. You don't need a merchant account or gateway. Stripe handles everything, including storing cards, subscriptions, and direct payouts to your bank account. Credit cards go directly to Stripe's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:192 +msgid "ZMW - Zambian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:191 +msgid "ZAR - South African Rand" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:190 +msgid "YER - Yemeni Rial" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:189 +msgid "XPF - Cfp Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:188 +msgid "XOF - West African Cfa Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:187 +msgid "XCD - East Caribbean Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:186 +msgid "XAF - Central African Cfa Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:185 +msgid "WST - Samoan Tala" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:184 +msgid "VUV - Vanuatu Vatu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:183 +msgid "VND - Vietnamese Đồng" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:182 +msgid "VEF - Venezuelan Bolívar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:181 +msgid "UZS - Uzbekistani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:180 +msgid "UYI - Uruguayan Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:178 +msgid "UGX - Ugandan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:177 +msgid "UAH - Ukrainian Hryvnia" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:176 +msgid "TZS - Tanzanian Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:175 +msgid "TWD - New Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:174 +msgid "TTD - Trinidad and Tobago Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:172 +msgid "TOP - Tongan Paʻanga" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:171 +msgid "TJS - Tajikistani Somoni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:169 +msgid "SZL - Swazi Lilangeni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:168 +msgid "SVC - Salvadoran Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:167 +msgid "STD - São Tomé and Príncipe Dobra" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:166 +msgid "SRD - Surinamese Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:165 +msgid "SOS - Somali Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:164 +msgid "SLL - Sierra Leonean Leone" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:163 +msgid "SHP - Saint Helenian Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:160 +msgid "SCR - Seychellois Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:159 +msgid "SBD - Solomon Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:157 +msgid "RWF - Rwandan Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:156 +msgid "RUB - Russian Ruble" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:155 +msgid "RSD - Serbian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:154 +msgid "RON - Romanian Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:153 +msgid "QAR - Qatari Riyal" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:152 +msgid "PYG - Paraguayan Guaraní*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:151 +msgid "PLN - Polish Złoty" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:150 +msgid "PKR - Pakistani Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:149 +msgid "PHP - Philippine Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:148 +msgid "PGK - Papua New Guinean Kina" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:147 +msgid "PEN - Peruvian Nuevo Sol*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:146 +msgid "PAB - Panamanian Balboa*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:144 +msgid "NPR - Nepalese Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:142 +msgid "NIO - Nicaraguan Córdoba*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:141 +msgid "NGN - Nigerian Naira" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:140 +msgid "NAD - Namibian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:139 +msgid "MZN - Mozambican Metical" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:137 +msgid "MXN - Mexican Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:136 +msgid "MWK - Malawian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:135 +msgid "MVR - Maldivian Rufiyaa" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:134 +msgid "MUR - Mauritian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:133 +msgid "MRO - Mauritanian Ouguiya" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:132 +msgid "MOP - Macanese Pataca" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:131 +msgid "MNT - Mongolian Tögrög" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:130 +msgid "MKD - Macedonian Denar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:129 +msgid "MGA - Malagasy Ariary" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:128 +msgid "MDL - Moldovan Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:126 +msgid "LVL - Latvian Lats" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:124 +msgid "LSL - Lesotho Loti" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:123 +msgid "LRD - Liberian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:122 +msgid "LKR - Sri Lankan Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:121 +msgid "LBP - Lebanese Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:120 +msgid "LAK - Lao Kip*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:119 +msgid "KZT - Kazakhstani Tenge" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:118 +msgid "KYD - Cayman Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:117 +msgid "KRW - South Korean Won" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:116 +msgid "KMF - Comorian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:115 +msgid "KHR - Cambodian Riel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:114 +msgid "KGS - Kyrgyzstani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:113 +msgid "KES - Kenyan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:111 +msgid "JMD - Jamaican Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:110 +msgid "ISK - Icelandic Króna" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:109 +msgid "INR - Indian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:108 +msgid "ILS - Israeli New Sheqel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:107 +msgid "IDR - Indonesian Rupiah" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:105 +msgid "HTG - Haitian Gourde" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:103 +msgid "HNL - Honduran Lempira*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:101 +msgid "GYD - Guyanese Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:100 +msgid "GTQ - Guatemalan Quetzal*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:99 +msgid "GNF - Guinean Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:98 +msgid "GMD - Gambian Dalasi" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:97 +msgid "GIP - Gibraltar Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:96 +msgid "GEL - Georgian Lari" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:94 +msgid "FKP - Falkland Islands Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:93 +msgid "FJD - Fijian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:91 +msgid "ETB - Ethiopian Birr" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:90 +msgid "EGP - Egyptian Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:89 +msgid "EEK - Estonian Kroon*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:88 +msgid "DZD - Algerian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:87 +msgid "DOP - Dominican Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:85 +msgid "DJF - Djiboutian Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:84 +msgid "CZK - Czech Koruna*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:83 +msgid "CVE - Cape Verdean Escudo*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:82 +msgid "CRC - Costa Rican Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:81 +msgid "COP - Colombian Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:80 +msgid "CNY - Chinese Renminbi Yuan" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:79 +msgid "CLP - Chilean Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:77 +msgid "CDF - Congolese Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:76 +msgid "CAD - Canadian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:75 +msgid "BZD - Belize Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:74 +msgid "BWP - Botswana Pula" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:73 +msgid "BSD - Bahamian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:72 +msgid "BRL - Brazilian Real*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:71 +msgid "BOB - Bolivian Boliviano*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:70 +msgid "BND - Brunei Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:69 +msgid "BMD - Bermudian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:68 +msgid "BIF - Burundian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:67 +msgid "BGN - Bulgarian Lev" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:66 +msgid "BDT - Bangladeshi Taka" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:65 +msgid "BBD - Barbadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:64 +msgid "BAM - Bosnia & Herzegovina Convertible Mark" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:63 +msgid "AZN - Azerbaijani Manat" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:62 +msgid "AWG - Aruban Florin" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:61 +msgid "AUD - Australian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:60 +msgid "ARS - Argentine Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:59 +msgid "AOA - Angolan Kwanza*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:58 +msgid "ANG - Netherlands Antillean Gulden" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:57 +msgid "AMD - Armenian Dram" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:56 +msgid "ALL - Albanian Lek" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:55 +msgid "AFN - Afghan Afghani*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:54 +msgid "AED - United Arab Emirates Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:345 +msgid "Skrill balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:327 +msgid "Skrill IPN message received." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:283 +msgid "Skrill" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:278 +msgid "Pending payment" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:144 +msgid "The secret word must match the word submitted in the \"Merchant Tools\" section of your Skrill account." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:134 +msgid "You must use your valid Skrill merchant email. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:133 +msgid "Skrill Email" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:123 +msgid "Resell your inventory via Skrill.com (Moneybookers)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:95 +msgid "ZAR - South-African Rand" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:93 +msgid "TWD - Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:92 +msgid "TRY - New Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:91 +msgid "TND - Tunisian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:90 +msgid "THB - Thailand Baht" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:89 +msgid "SKK - Slovakian Koruna" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:86 +#: includes/common/payment-gateways/stripe.php:158 +msgid "SAR - Saudi Riyal" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:85 +msgid "RSD - Serbian dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:83 +msgid "QAR - Qatari Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:81 +msgid "OMR - Omani Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:80 +msgid "NOK - Norwegian Krone " +msgstr "" + +#: includes/common/payment-gateways/skrill.php:78 +#: includes/common/payment-gateways/stripe.php:138 +msgid "MYR - Malaysian Ringgit" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:77 +#: includes/common/payment-gateways/stripe.php:127 +msgid "MAD - Moroccan Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:74 +msgid "KRW - South-Korean Won" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:72 +msgid "JOD - Jordanian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:70 +msgid "INR - Indian Rupee" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:63 +msgid "EEK - Estonian Kroon" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:56 +msgid "AED - Utd. Arab Emir. Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:52 +msgid "Turkish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:51 +msgid "Swedish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:50 +msgid "Spanish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:49 +msgid "Russian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:48 +msgid "Romainian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:47 +msgid "Polish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:46 +msgid "Italian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:45 +msgid "Greek" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:44 +msgid "German" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:43 +msgid "French" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:42 +msgid "Finnish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:41 +msgid "English" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:40 +msgid "Dutch" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:39 +msgid "Danish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:38 +msgid "Czech" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:37 +msgid "Chinese" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:201 +msgid "There was an error processing your card: %s. Please re-enter your credit card info and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:278 +msgid "
  • There was an error processing your card: \"%s\". Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:274 +msgid "
  • There was an error processing your card. Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:177 +#: includes/common/payment-gateways/stripe.php:279 +msgid "Publishable Key" +msgstr "" + +#: includes/common/payment-gateways/pin.php:163 +msgid "API Credentials?" +msgstr "" + +#: includes/common/payment-gateways/pin.php:147 +msgid "PIN makes it easy to start accepting credit card payments with Australia’s first all-in-one online payment system. Accept all major credit cards directly on your site. Your sales proceeds are deposited to any Australian bank account, no merchant account required." +msgstr "" + +#: includes/common/payment-gateways/pin.php:57 +#: includes/common/payment-gateways/stripe.php:179 +msgid "USD - United States Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:455 +msgid "Email Footer" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:445 +msgid "Email Header" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:416 +msgid "Partner" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:409 +msgid "Vendor" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:852 +#: includes/common/payment-gateways/paypal-express.php:1126 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences\t section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:749 +msgid "Page Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:744 +msgid "Header Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:739 +msgid "Header Border Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:734 +msgid "Header Image" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:680 +msgid "Locale" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:624 +#: includes/common/payment-gateways/paypal-express.php:658 +msgid "Merchant Email" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:645 +msgid "Paypal Express Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:603 +msgid "Paypal Express Network Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:861 +msgid "Application ID (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:854 +msgid "Signature (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:847 +msgid "API Password (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:839 +msgid "API Username (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:832 +msgid "Signature (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:825 +msgid "API Password (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:817 +msgid "API Username (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:799 +msgid "This message is displayed at the top of the gateway settings page to store admins. It's a good place to inform them of your fees or put any sales messages." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:787 +msgid "Please enter your PayPal email address or business ID you want to recieve fees at." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:786 +msgid "PayPal E-mail" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:772 +msgid "Fees to Collect (%)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:375 +#: includes/public/class-mp-checkout.php:341 +msgid "Email Address" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:299 +msgid "Sorry, your order was not completed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:126 +#: includes/common/payment-gateways/paypal-express.php:780 +msgid "You will be redirected to the PayPal site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:90 +#: includes/common/payment-gateways/skrill.php:94 +msgid "USD - U.S. Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:89 +msgid "TRY - Turkish lira" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:88 +#: includes/common/payment-gateways/stripe.php:170 +msgid "THB - Thai Baht" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:87 +msgid "TWD - Taiwan New Dollars" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:86 +#: includes/common/payment-gateways/pin.php:59 +#: includes/common/payment-gateways/skrill.php:88 +#: includes/common/payment-gateways/stripe.php:162 +msgid "SGD - Singapore Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:84 +msgid "RUB - Russian Rubles" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:82 +msgid "PHP - Philippine Pesos" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:81 +#: includes/common/payment-gateways/pin.php:58 +#: includes/common/payment-gateways/skrill.php:79 +#: includes/common/payment-gateways/stripe.php:145 +msgid "NZD - New Zealand Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:79 +msgid "MXN - Mexican Peso" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:78 +msgid "MYR - Malaysian Ringgits" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:77 +#: includes/common/payment-gateways/pin.php:64 +#: includes/common/payment-gateways/skrill.php:73 +#: includes/common/payment-gateways/stripe.php:112 +msgid "JPY - Japanese Yen" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:75 +#: includes/common/payment-gateways/pin.php:63 +#: includes/common/payment-gateways/skrill.php:66 +#: includes/common/payment-gateways/stripe.php:102 +msgid "HKD - Hong Kong Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:73 +msgid "GBP - Pound Sterling" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:68 +#: includes/common/payment-gateways/pin.php:62 +#: includes/common/payment-gateways/skrill.php:59 +msgid "CAD - Canadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:67 +msgid "BRL - Brazilian Real" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:66 +#: includes/common/payment-gateways/pin.php:56 +#: includes/common/payment-gateways/skrill.php:57 +msgid "AUD - Australian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:288 +msgid "There was an error processing your card: \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:163 +msgid "When running on a live site, Paymill recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:161 +#: includes/common/payment-gateways/pin.php:157 +#: includes/common/payment-gateways/simplify.php:103 +#: includes/common/payment-gateways/stripe.php:260 +#: includes/common/payment-gateways/wepay.php:153 +msgid "Force SSL?" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:151 +msgid "Accept Visa, Mastercard, Maestro UK, Discover and Solo cards directly on your site. You don't need a merchant account or gateway. Credit cards go directly to Paymill's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:131 +msgid "CVV2" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:72 +#: includes/common/payment-gateways/pin.php:61 +#: includes/common/payment-gateways/skrill.php:65 +#: includes/common/payment-gateways/stripe.php:95 +msgid "GBP - British Pound" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:71 +#: includes/common/payment-gateways/stripe.php:173 +msgid "TRY - Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:70 +#: includes/common/payment-gateways/paypal-chained-payments.php:85 +#: includes/common/payment-gateways/skrill.php:87 +#: includes/common/payment-gateways/stripe.php:161 +msgid "SEK - Swedish Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:69 +#: includes/common/payment-gateways/skrill.php:84 +msgid "RON - Romanian Leu New" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:68 +#: includes/common/payment-gateways/paypal-chained-payments.php:83 +#: includes/common/payment-gateways/skrill.php:82 +msgid "PLN - Polish Zloty" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:67 +#: includes/common/payment-gateways/paypal-chained-payments.php:80 +#: includes/common/payment-gateways/stripe.php:143 +msgid "NOK - Norwegian Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:66 +#: includes/common/payment-gateways/skrill.php:75 +#: includes/common/payment-gateways/stripe.php:125 +msgid "LTL - Lithuanian Litas" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:65 +#: includes/common/payment-gateways/paypal-chained-payments.php:69 +#: includes/common/payment-gateways/skrill.php:60 +#: includes/common/payment-gateways/stripe.php:78 +msgid "CHF - Swiss Franc" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:64 +#: includes/common/payment-gateways/skrill.php:76 +msgid "LVL - Latvian Lat" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:63 +#: includes/common/payment-gateways/paypal-chained-payments.php:74 +#: includes/common/payment-gateways/skrill.php:69 +msgid "ILS - Israeli Shekel" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:62 +#: includes/common/payment-gateways/skrill.php:71 +msgid "ISK - Iceland Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:61 +#: includes/common/payment-gateways/paypal-chained-payments.php:76 +#: includes/common/payment-gateways/skrill.php:68 +#: includes/common/payment-gateways/stripe.php:106 +msgid "HUF - Hungarian Forint" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:60 +#: includes/common/payment-gateways/paypal-chained-payments.php:71 +#: includes/common/payment-gateways/skrill.php:62 +#: includes/common/payment-gateways/stripe.php:86 +msgid "DKK - Danish Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:59 +#: includes/common/payment-gateways/skrill.php:67 +#: includes/common/payment-gateways/stripe.php:104 +msgid "HRK - Croatian Kuna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:58 +#: includes/common/payment-gateways/paypal-chained-payments.php:70 +#: includes/common/payment-gateways/skrill.php:61 +msgid "CZK - Czech Koruna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:57 +#: includes/common/payment-gateways/skrill.php:58 +msgid "BGN - Bulgarian Leva" +msgstr "" + +#: includes/common/payment-gateways/payflow/class-mp-gateway-worker-payflow.php:123 +msgid "There was an error connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:344 +msgid "This setting will log all PayFast communication to the \"payfast.log\" file." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:342 +msgid "Log Debugging Info?" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:335 +msgid "DO NOT INPUT A VALUE UNLESS YOU HAVE SET ONE IN THE SETTINGS SECTION OF YOUR PAYFAST SETTINGS." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:333 +msgid "PayFast Passphrase" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:323 +msgid "You can find your credentials on your integration page." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:321 +msgid "PayFast Merchant Credentials" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:311 +msgid "PayFast Mode" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:308 +msgid "PayFast is a payments processing service for South Africa. We make it safe for buyers to send money and easy for sellers to receive money. More Info »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:306 +msgid "PayFast Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:285 +msgid "Your payment via PayFast for this order totaling %s is complete. The transaction number is %s." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:278 +msgid "Your payment via PayFast for this order totaling %s is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:124 +msgid "Your PayFast transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:82 +#: includes/common/payment-gateways/payfast.php:83 +msgid "PayFast" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:157 +msgid "API error: - \"%s\"" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:198 +msgid "The payment request is under process" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:140 +msgid "Order: #" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:116 +msgid "You will be redirected to the Mollie site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:73 +msgid "%sMollie%s provides a fully PCI Compliant and secure way to collect payments via iDeal, Credit Card, Bancontact / Mister Cash, SOFORT Banking, Overbooking, Bitcoin, PayPal, paysafecard and AcceptEmail." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:53 +#: includes/common/payment-gateways/mollie.php:54 +#: includes/common/payment-gateways/mollie.php:195 +#: includes/common/payment-gateways/mollie.php:245 +msgid "Mollie" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:50 +#: includes/common/payment-gateways/paymill.php:56 +#: includes/common/payment-gateways/paypal-chained-payments.php:72 +#: includes/common/payment-gateways/pin.php:60 +#: includes/common/payment-gateways/skrill.php:64 +#: includes/common/payment-gateways/stripe.php:92 +msgid "EUR - Euro" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:306 +msgid "Access Key" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:300 +msgid "You must login to the Mijireh.com dashboard to obtain the Access Key." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:299 +msgid "Credentials" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:289 +msgid "Mijireh Checkout provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:269 +msgid "Mijireh Error: " +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:89 +msgid "You will be redirected to the Mijireh.com site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:87 +msgid "Your Mijireh transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:42 +#: includes/common/payment-gateways/mijireh.php:43 +#: includes/common/payment-gateways/mijireh.php:324 +msgid "Mijireh" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:145 +msgid "These are the manual payment instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:189 +msgid "This is the email text to send to those who have made free order checkouts. You should include your free order instructions / information here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:183 +msgid "This is the free order information to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:182 +msgid "Confirmation User Information" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:177 +msgid "This is the information to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:163 +msgid "If enabled, all free orders will be automatically marked as paid." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:159 +msgid "Payment Status" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:149 +msgid "This gateway is automatically activated if order totalling 0 and it can't be disabled" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:35 +#: includes/common/payment-gateways/free_orders.php:36 +#: includes/common/payment-gateways/free_orders.php:89 +msgid "Free Order" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:34 +#: includes/common/payment-gateways/free_orders.php:197 +msgid "Free Orders" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:515 +msgid "Sandbox API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:266 +#: includes/common/payment-gateways/eway31.php:542 +msgid "eWay Rapid 3.1 Payments (beta)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:403 +msgid "Hosted Payment Page Language" +msgstr "" + +#: includes/common/payment-gateways/eway.php:373 +msgid "Note when testing in sandbox mode it will use the default eWay test API credentials. Also, please note that cart total needs to be a whole number (e.g. 10.00) in order to generate a successful transaction, otherwise the transaction will fail." +msgstr "" + +#: includes/common/payment-gateways/eway.php:267 +msgid "You will be redirected to https://www.eway.com.au to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:380 +msgid "You have chosen to checkout using %s. Please confirm your order details and click \"Submit Order\" when finished." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:272 +#: includes/common/payment-gateways/paymill.php:131 +#: includes/common/payment-gateways/stripe.php:231 +msgid "Security Code " +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Enter in MM/YYYY or MM/YY format" +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Expiration" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:321 +msgid "Delim Data" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:307 +#: includes/common/payment-gateways/paypal-payflow.php:456 +msgid "This text will appear as the footer of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:287 +#: includes/common/payment-gateways/paypal-payflow.php:440 +msgid "Email Customer (on success)" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:278 +msgid "Authorize.net default is \",\". Otherwise, get this from your credit card processor. If the transactions are not going through, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:277 +msgid "Delimeter Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:193 +msgid "Held For Review" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:310 +#: includes/common/payment-gateways/payfast.php:314 +msgid "Test" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:300 +#: includes/common/payment-gateways/pin.php:170 +#: includes/common/payment-gateways/stripe.php:272 +msgid "Secret Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:283 +msgid "Select Your Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:97 +msgid "Your payment will be processed by the iDEAL network" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:208 +msgid "These are the CubePoints to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:203 +msgid "These are the CubePoints instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:266 +msgid "If enabled, all API calls will be made to https://test.bitpay.com." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:263 +msgid "Use Test Mode?" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:259 +msgid "If checked, response fron bitpay will be stored in log file, keep it disabled unless required." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:256 +msgid "Enable Debug Log" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:249 +msgid "Full Notifications" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:231 +#: includes/common/payment-gateways/eway31.php:499 +#: includes/common/payment-gateways/eway31.php:526 +#: includes/common/payment-gateways/mollie.php:83 +#: includes/common/shipping-modules/mp-fedex.php:269 +msgid "API Key" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:222 +msgid "You can now accept a payment from any country on Earth, with no risk of fraud. To use Bitpay, you need to signup on Bitpay. \\n After completing the signup process, you can get api keys at Bitpay API key. You can read more about Bitpay at Bitpay API. \\n Bitpay requires SSL(https) for payment notifications to work." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:61 +msgid "You will be redirected to bitpay.com, for bitcoin payment. It is completely safe." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:346 +msgid "You must login to the 2Checkout vendor dashboard to obtain the seller ID and secret word. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:345 +#: includes/common/payment-gateways/authorizenet-aim.php:239 +#: includes/common/payment-gateways/paymill.php:168 +#: includes/common/payment-gateways/paypal-express.php:704 +#: includes/common/payment-gateways/simplify.php:80 +#: includes/common/payment-gateways/stripe.php:265 +#: includes/common/payment-gateways/wepay.php:158 +msgid "API Credentials" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:325 +#: includes/common/payment-gateways/_bitpay.php:220 +#: includes/common/payment-gateways/_cubepoints.php:185 +#: includes/common/payment-gateways/_ideal.php:268 +#: includes/common/payment-gateways/_payway.php:255 +#: includes/common/payment-gateways/authorizenet-aim.php:219 +#: includes/common/payment-gateways/eway.php:352 +#: includes/common/payment-gateways/eway31.php:460 +#: includes/common/payment-gateways/free_orders.php:147 +#: includes/common/payment-gateways/manual-payments.php:126 +#: includes/common/payment-gateways/mijireh.php:287 +#: includes/common/payment-gateways/mollie.php:71 +#: includes/common/payment-gateways/paymill.php:149 +#: includes/common/payment-gateways/paypal-chained-payments.php:344 +#: includes/common/payment-gateways/paypal-payflow.php:376 +#: includes/common/payment-gateways/pin.php:145 +#: includes/common/payment-gateways/simplify.php:69 +#: includes/common/payment-gateways/skrill.php:121 +#: includes/common/payment-gateways/stripe.php:249 +#: includes/common/payment-gateways/wepay.php:119 +#: includes/common/shipping-modules/mp-fedex.php:243 +#: includes/common/shipping-modules/mp-flat-rate.php:63 +#: includes/common/shipping-modules/mp-pickup.php:140 +#: includes/common/shipping-modules/mp-table-rate.php:94 +#: includes/common/shipping-modules/mp-ups.php:122 +#: includes/common/shipping-modules/mp-usps.php:167 +#: includes/common/shipping-modules/mp-weight-rate.php:110 +msgid "%s Settings" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:136 +msgid "You will be redirected to the 2Checkout site to finalize your payment." +msgstr "" + +#: includes/common/helpers.php:169 includes/public/class-mp-checkout.php:1277 +msgid "Billing" +msgstr "" + +#: includes/common/helpers.php:144 +msgid "FREE" +msgstr "" + +#: includes/common/helpers.php:134 +msgid "Coupons:" +msgstr "" + +#: includes/common/helpers.php:95 +msgid "Qty" +msgstr "" + +#: includes/common/helpers.php:94 +msgid "Sku" +msgstr "" + +#: includes/common/data.php:59 +msgid "Zip Code" +msgstr "" + +#: includes/common/class-mp-taxes.php:336 +msgid "Standard Table" +msgstr "" + +#: includes/common/class-mp-product.php:2698 +msgid "Tweet" +msgstr "" + +#: includes/common/class-mp-product.php:2321 +msgid "Notification Preferences: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2320 +msgid "Edit Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2318 +msgid "Link: %s

    " +msgstr "" + +#: includes/common/class-mp-product.php:2317 +msgid "Current Inventory: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2316 +msgid "Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2314 +msgid "This message is being sent to notify you of low stock of a product in your online store according to your preferences.

    " +msgstr "" + +#: includes/common/class-mp-product.php:1817 +msgid "" +msgstr "" + +#: includes/common/class-mp-product.php:1427 +#: includes/common/class-mp-product.php:1430 +msgid "(tax incl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1422 +#: includes/common/class-mp-product.php:1425 +msgid "(tax excl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1300 +#: includes/common/class-mp-product.php:1315 +msgid "%s each" +msgstr "" + +#: includes/common/class-mp-product.php:988 +msgid "Choose Options" +msgstr "" + +#: includes/common/class-mp-product.php:526 +msgid "Choose a %s" +msgstr "" + +#: includes/common/class-mp-product.php:284 +#: includes/common/class-mp-product.php:292 +#: includes/common/class-mp-product.php:615 +msgid "We're sorry, we only have %d of this item in stock right now." +msgstr "" + +#: includes/common/class-mp-order.php:1456 +msgid "Shipped: Track Shipment" +msgstr "" + +#: includes/common/class-mp-order.php:1049 +msgid "Order Received" +msgstr "" + +#: includes/common/class-mp-order.php:1014 +msgid "In Process" +msgstr "" + +#: includes/common/class-mp-order.php:969 +msgid "Order #" +msgstr "" + +#: includes/common/class-mp-order.php:866 +msgid "Copy billing address to shipping address" +msgstr "" + +#: includes/common/class-mp-order.php:822 +#: includes/public/class-mp-checkout.php:1314 +msgid "Special Instructions" +msgstr "" + +#: includes/common/class-mp-order.php:817 +#: includes/common/payment-gateways/stripe.php:335 +msgid "Email" +msgstr "" + +#: includes/common/class-mp-order.php:813 +#: includes/common/payment-gateways/stripe.php:341 +#: includes/public/class-mp-checkout.php:416 +msgid "Phone" +msgstr "" + +#: includes/common/class-mp-order.php:791 +#: includes/common/payment-gateways/stripe.php:337 +msgid "State" +msgstr "" + +#: includes/common/class-mp-order.php:776 +msgid "Address 1" +msgstr "" + +#: includes/common/class-mp-order.php:766 +msgid "Last Name" +msgstr "" + +#: includes/common/class-mp-order.php:762 +msgid "First Name" +msgstr "" + +#: includes/common/class-mp-installer.php:677 +msgid "MarketPress requires a database update to continue working correctly. Go to update page" +msgstr "" + +#: includes/common/class-mp-installer.php:657 +msgid "MarketPress performed a quick automatic update successfully!" +msgstr "" + +#: includes/common/class-mp-installer.php:653 +msgid "Perform Update" +msgstr "" + +#: includes/common/class-mp-installer.php:647 +msgid "Please update each subsite in your WordPress network where you have older version of the MarketPress plugin." +msgstr "" + +#: includes/common/class-mp-installer.php:641 +msgid "Depending on the amount of products you have, this update could take quite some time. Please keep this window open while the update completes. If you have products with multiple variations, the progress bar may move slower, please don't exit the window." +msgstr "" + +#: includes/common/class-mp-installer.php:632 +msgid "Product Metadata" +msgstr "" + +#: includes/common/class-mp-installer.php:601 +msgid "MarketPress requires a database update to continue working correctly.
    Below you will find a list of items that require your attention." +msgstr "" + +#: includes/common/class-mp-installer.php:600 +msgid "Update MarketPress Data" +msgstr "" + +#: includes/common/class-mp-installer.php:530 +msgid "Update Data" +msgstr "" + +#: includes/common/class-mp-installer.php:67 +msgid "Complete!" +msgstr "" + +#: includes/common/class-mp-installer.php:66 +msgid "Upgrading Database...Please Wait..." +msgstr "" + +#: includes/common/class-mp-installer.php:64 +msgid "An error occurred while updating. Please refresh this page and try again." +msgstr "" + +#: includes/common/class-mp-cart.php:2447 +msgid "Some items in your cart have fallen below the quantity you currently have in your cart. We have adjusted the quantity in your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:2443 +msgid "Some items in your cart are no longer available. We have removed these items from your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:1566 +msgid "item" +msgstr "" + +#: includes/common/class-mp-cart.php:1563 +#: includes/common/class-mp-cart.php:1568 +msgid "items" +msgstr "" + +#: includes/common/class-mp-cart.php:1363 +msgid "Items/Products added to Cart will show here." +msgstr "" + +#: includes/common/class-mp-cart.php:1362 +msgid "Your shopping cart is empty." +msgstr "" + +#: includes/common/class-mp-cart.php:1357 +msgid "View Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1241 +#: includes/common/class-mp-cart.php:1298 +#: includes/public/class-mp-short-codes.php:159 +msgid "Adding..." +msgstr "" + +#: includes/common/class-mp-cart.php:1033 +msgid "Continue Shopping?" +msgstr "" + +#: includes/common/class-mp-cart.php:961 +msgid "Secure Checkout
    Shopping is always safe and secure." +msgstr "" + +#: includes/common/class-mp-cart.php:959 +msgid "You are about to submit your order!
    Please review your order details before continuing. You will be charged immediately upon clicking \"Submit Order\"." +msgstr "" + +#: includes/common/class-mp-cart.php:956 +msgid "Continue »" +msgstr "" + +#: includes/common/class-mp-cart.php:955 +msgid "Submit Order" +msgstr "" + +#: includes/common/class-mp-cart.php:818 +msgid "There are no items in your cart - go add some !" +msgstr "" + +#: includes/common/class-mp-cart.php:816 +msgid "The cart is disabled." +msgstr "" + +#: includes/common/class-mp-cart.php:735 +msgid "Estimated %s" +msgstr "" + +#: includes/common/class-mp-cart.php:717 +msgid "Estimated Shipping" +msgstr "" + +#: includes/common/class-mp-cart.php:697 +msgid "Product Total" +msgstr "" + +#: includes/common/class-mp-cart.php:670 includes/common/class-mp-cart.php:672 +msgid "Estimated Total (%s, %s)" +msgstr "" + +#: includes/common/class-mp-cart.php:668 +msgid "Estimated Total (%s)" +msgstr "" + +#: includes/common/class-mp-cart.php:666 includes/common/class-mp-cart.php:752 +msgid "Estimated Total" +msgstr "" + +#: includes/admin/widgets/product-list.php:247 +msgid "Show Thumbnail Placeholder image (if image is not set)" +msgstr "" + +#: includes/admin/widgets/cart.php:73 +msgid "Display product price" +msgstr "" + +#: includes/admin/widgets/cart.php:71 +msgid "Display product quantity" +msgstr "" + +#: includes/admin/widgets/cart.php:69 +msgid "Display product image" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:93 +msgid "General Shipping Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:773 +msgid "If you are having conflicts with the lightbox library from your theme or another plugin you should uncheck this." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:772 +msgid "Use Built-In Lightbox for Images?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:762 +msgid "Disable Large Image Display?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:688 +msgid "Show Product Image?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:682 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:684 +msgid "Show Tags List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:676 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:678 +msgid "Show Categories List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:671 +msgid "If enabled, description excerpt will be added above Add to cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:669 +msgid "Show Excerpt?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:665 +msgid "If enabled, users will be able to choose how many of the product they want to purchase before adding to their cart. If not checked, quantity could be change later on the cart page." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:663 +msgid "Show Quantity Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:649 +msgid "Settings related to the display of individual product pages." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:648 +msgid "Product Page Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:605 +msgid "Related Products Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:573 +msgid "Show Related Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:568 +msgid "Related Product Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:549 +msgid "Order Status Entries Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:510 +msgid "Sort Products By" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:497 +msgid "Products Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:492 +msgid "Paginate Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:478 +msgid "Excerpts Length" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:473 +msgid "Show Excerpts?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:450 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:746 +msgid "Image Alignment" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:412 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:708 +msgid "Custom Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:401 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:697 +msgid "Large - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:400 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:696 +msgid "Medium - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:399 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:695 +msgid "Thumbnail - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:397 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:693 +msgid "Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:386 +msgid "Select default placeholder image thumbnail when product image is not available (if empty, plugin's built-in image will be used)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:380 +msgid "Show default product placeholder thumbnail when product image is not available?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:374 +msgid "Show Product Thumbnail?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:369 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:658 +msgid "Redirect to cart page for immediate checkout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:368 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:657 +msgid "Stay on current product page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:366 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:655 +msgid "MarketPress supports two \"flows\" for adding products to the shopping cart. After adding a product to their cart, two things can happen:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:365 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:654 +msgid "Add To Cart Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:355 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:628 +msgid "Four" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:354 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:627 +msgid "Three" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:353 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:626 +msgid "Two" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:625 +msgid "One" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:349 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:622 +msgid "Set the number of products that show up in a grid row to best fit your theme" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:348 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:621 +msgid "How many products per row?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:342 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:609 +msgid "Display as grid" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:341 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:608 +msgid "Display as list" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:339 +msgid "Product Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:334 +msgid "Settings related to the display of product lists/grids." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:333 +msgid "Product List/Grid Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:314 +msgid "Show Twitter Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:309 +msgid "Twitter" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:303 +msgid "Show Share Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:297 +msgid "Recommend" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:296 +msgid "Like" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:294 +msgid "Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:283 +msgid "Show Facebook Like Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:278 +msgid "Facebook" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:257 +msgid "Show \"Pin It\" Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:252 +msgid "Pinterest" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:246 +msgid "Social Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:193 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:202 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:211 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:220 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:229 +#: includes/multisite/class-mp-admin-multisite.php:532 +#: includes/multisite/class-mp-admin-multisite.php:541 +#: includes/multisite/class-mp-admin-multisite.php:550 +msgid "Choose a Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:191 +msgid "This page will be used as the root for your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:168 +#: includes/multisite/class-mp-admin-multisite.php:586 +msgid "Create Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "uncropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "cropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:87 +#: includes/multisite/class-mp-admin-multisite.php:121 +#: includes/multisite/class-mp-admin-multisite.php:620 +msgid "An error occurred while creating the store page. Please try again." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:66 +msgid "Choose the gateway(s) that you would like to be available for checkout." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:65 +msgid "Enabled Gateways" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:78 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:146 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:179 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:213 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:274 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:307 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:341 +msgid "Text" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:71 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:139 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:172 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:206 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:267 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:300 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:334 +msgid "Subject" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:52 +msgid "Notification Email" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:510 +msgid "Enabling this option will display label `excl. tax` or `incl. tax` after price" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:509 +msgid "Display tax label?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:504 +msgid "Enabling this option will show Price + Tax, eg. if your price is 100 and your tax 20, your price will be 120" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:416 +#: includes/multisite/class-mp-admin-multisite.php:234 +msgid "Price Format" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:366 +msgid "Enabling this field will display a textbox on the shipping checkout page for users to enter special instructions for their order. Useful for product personalization, etc." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:365 +msgid "Show Special Instructions Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:360 +msgid "Universal" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:359 +msgid "Old" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1167 +#: includes/admin/store-settings/class-mp-store-settings-general.php:358 +msgid "New" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:353 +msgid "If you already use Google Analytics for your website, you can track detailed ecommerce information by enabling this setting. Choose whether you are using the new asynchronous or old tracking code. Before Google Analytics can report ecommerce activity for your website, you must enable ecommerce tracking on the profile settings page for your website. Also keep in mind that some gateways do not reliably show the receipt page, so tracking may not be accurate in those cases. It is recommended to use the PayPal gateway for the most accurate data. More information »" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:347 +msgid "Do you want to display the product price on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:346 +msgid "Show product price on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:340 +msgid "Do you want to display the product quantity on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:339 +msgid "Show product quantity on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:333 +msgid "Do you want to display the product image on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:332 +msgid "Show product image on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:327 +msgid "This option hide floating Mini Cart in top right corner." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:326 +msgid "Disable Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:316 +msgid "If unchecked your Orders admin page will be hidden" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:315 +msgid "Show admin Orders page?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:309 +msgid "Disable Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:303 +msgid "Force Login?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:297 +msgid "Hide Out of Stock Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:555 +msgid "This will prevent multiples of the same downloadable product form being added to the cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:554 +msgid "Limit Digital Products Per-order?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:268 +msgid "If you're having issues downloading large files and have worked with your hosting provider to increase your memory limits, try enabling this - just keep in mind, it's not as secure!" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:267 +msgid "Use Alternative Download Method?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:252 +msgid "Download Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:230 +msgid "Change product post type" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:51 +msgid "%s Capabilities" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-addons.php:47 +msgid "Store Settings: Add Ons: %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:254 +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:56 +msgid "Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Edit Product Attribute %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:246 +msgid "Exporters" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:238 +msgid "Short Codes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:207 +msgid "An appropriate message for key \"%s\" could not be found." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:204 +msgid "Product attribute updated successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:203 +msgid "Product attribute added successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +msgid "Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +#: includes/admin/store-settings/class-mp-store-settings-addons.php:121 +msgid "Store Settings: Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "Store Settings: Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:118 +msgid "Store Settings: Product Tags" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:117 +msgid "Store Settings: Product Categories" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Store Settings: Product Attributes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +msgid "Store Settings: Payments" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:114 +msgid "Store Settings: Shipping" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +#: includes/admin/class-mp-store-settings-admin.php:226 +msgid "Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +msgid "Store Settings: Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:112 +msgid "Store Settings: Presentation" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:111 +msgid "Store Settings: General" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1489 +msgid "Select a Product" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1447 +msgid "Reset to Defaults" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1446 +msgid "Insert Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1202 +#: includes/admin/class-mp-shortcode-builder.php:1227 +#: includes/admin/class-mp-shortcode-builder.php:1252 +msgid "The text to show in the link." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1196 +#: includes/admin/class-mp-shortcode-builder.php:1221 +#: includes/admin/class-mp-shortcode-builder.php:1246 +msgid "Whether to return a clickable link or url." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1177 +msgid "Whether to display the cart only on store pages or not." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1171 +msgid "Whether to show or hide the product price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1165 +msgid "Whether to show or hide the product quantity." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1159 +msgid "Whether to show or hide the product image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1153 +msgid "The text displayed before the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1147 +msgid "The title of the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1058 +#: includes/admin/class-mp-shortcode-builder.php:1121 +msgid "A label to prepend to the price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1032 +#: includes/admin/class-mp-shortcode-builder.php:1127 +msgid "What context for display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1004 +msgid "Set the alignment of the image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:998 +msgid "Set a custom pixel width/height. If omitted defaults to the size set by \"context\"." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:993 +msgid "Widget" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:988 +msgid "What context for preset size options." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:982 +#: includes/admin/class-mp-shortcode-builder.php:1026 +#: includes/admin/class-mp-shortcode-builder.php:1052 +#: includes/admin/class-mp-shortcode-builder.php:1077 +#: includes/admin/class-mp-shortcode-builder.php:1096 +#: includes/admin/class-mp-shortcode-builder.php:1115 +msgid "The ID of the product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:963 +msgid "Whether to display the product meta (e.g. price, buy button)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:738 +#: includes/admin/class-mp-shortcode-builder.php:905 +#: includes/admin/class-mp-shortcode-builder.php:958 +#: includes/admin/class-mp-shortcode-builder.php:992 +#: includes/admin/class-mp-shortcode-builder.php:1035 +#: includes/admin/class-mp-shortcode-builder.php:1130 +#: includes/admin/class-mp-shortcode-builder.php:1349 +msgid "List" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:957 +#: includes/admin/class-mp-shortcode-builder.php:991 +#: includes/admin/class-mp-shortcode-builder.php:1034 +#: includes/admin/class-mp-shortcode-builder.php:1129 +msgid "Single" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:953 +msgid "Whether and what context of image size to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:948 +msgid "Full" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:943 +msgid "Whether and what type of content to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:937 +msgid "Whether to display the product title." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:931 +msgid "The ID of the product to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:747 +#: includes/admin/class-mp-shortcode-builder.php:914 +msgid "Hide" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:746 +#: includes/admin/class-mp-shortcode-builder.php:913 +msgid "Show" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:744 +#: includes/admin/class-mp-shortcode-builder.php:911 +msgid "Whether or not to show the product filters." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:724 +#: includes/admin/class-mp-shortcode-builder.php:891 +#: includes/admin/class-mp-shortcode-builder.php:1335 +msgid "Limits list to a specific product tag." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:713 +#: includes/admin/class-mp-shortcode-builder.php:880 +#: includes/admin/class-mp-shortcode-builder.php:1324 +msgid "Limits list to a specific product category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:706 +#: includes/admin/class-mp-shortcode-builder.php:873 +#: includes/admin/class-mp-shortcode-builder.php:1317 +msgid "Direction to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:684 +#: includes/admin/class-mp-shortcode-builder.php:851 +#: includes/admin/class-mp-shortcode-builder.php:1295 +msgid "What field to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:678 +#: includes/admin/class-mp-shortcode-builder.php:845 +#: includes/admin/class-mp-shortcode-builder.php:1283 +msgid "How many products to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:672 +#: includes/admin/class-mp-shortcode-builder.php:839 +#: includes/admin/class-mp-shortcode-builder.php:1277 +msgid "The page number to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:666 +#: includes/admin/class-mp-shortcode-builder.php:833 +#: includes/admin/class-mp-shortcode-builder.php:1271 +msgid "Whether to paginate the product list. This is useful to only show a subset." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:808 +msgid "How many related items to show." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:790 +msgid "How to relate the products" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:784 +msgid "The product to show related items for." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:765 +msgid "The maximum number of products to display" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:647 +msgid "Comma separated list of tags (term_id) to include. For example, include=5,27 means tags that have the term_id 5 or 27 will be the only tags displayed. Defaults to include everything." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:641 +msgid "Comma separated list of tags (term_id) to exclude. For example, exclude=5,27 means tags that have the term_id 5 or 27 will NOT be displayed. Defaults to exclude nothing." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:633 +#: includes/admin/class-mp-shortcode-builder.php:1420 +msgid "Sort order." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:629 +#: includes/admin/class-mp-shortcode-builder.php:1416 +msgid "Count" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:626 +#: includes/admin/class-mp-shortcode-builder.php:1413 +msgid "Order of the tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:620 +msgid "The text/space between tags)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:616 +msgid "UL with a class of \"wp-tag-cloud\"" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:615 +msgid "separated by whitespace defined by \"separator\" parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:613 +msgid "Format of the cloud display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:607 +msgid "The number of actual tags to display in the cloud. (Use \"0\" to display all tags.)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:601 +msgid "Unit of measure as pertains to the smallest and largest values. This can be any CSS length value, e.g. pt, px, em, %." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:595 +msgid "The text size of the tag with the largest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:589 +msgid "The text size of the tag with the smallest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:570 +msgid "The \"tabindex\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:564 +msgid "The \"name\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:558 +msgid "The \"id\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:552 +msgid "Which category ID is selected." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:540 +msgid "The max depth. This is ignored unless hierarchical is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:536 +#: includes/multisite/template-functions.php:816 +msgid "No Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:414 +#: includes/admin/class-mp-shortcode-builder.php:546 +msgid "Calculates link or post counts by including items from child categories. If show_counts and hierarchical are true this is automatically set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:409 +msgid "Value of n (some number) specifies the depth (or level) to descend in displaying Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:408 +msgid "Show only top level Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:407 +msgid "All Categories displayed in flat (no indent) form (overrides hierarchical)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:406 +msgid "All Categories and child Categories (Default)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:402 +msgid "This parameter controls how many levels in the hierarchy of Categories are to be included in the list of Categories. NOTE: The \"hierarchical\" argument, which is disabled by default, will override the depth argument, unless it is true. When the argument is false, it will display all of the categories. When it is enabled it will use the value in the \"depth\" argument." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:396 +#: includes/admin/class-mp-shortcode-builder.php:1394 +msgid "Sets the number of Categories to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:390 +#: includes/admin/class-mp-shortcode-builder.php:534 +msgid "Set the text to show when no categories are listed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:384 +msgid "Set the title and style of the outer list item. If present but empty, the outer list item will not be displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:378 +#: includes/admin/class-mp-shortcode-builder.php:528 +msgid "Display sub-categories as inner list items (below the parent list item) or inline." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:368 +#: includes/admin/class-mp-shortcode-builder.php:511 +msgid "Exclude category-tree from the results. The parameter include must be empty. If the hierarchical parameter is true, then use exclude instead of exclude_tree." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:354 +msgid "Only include these categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:340 +#: includes/admin/class-mp-shortcode-builder.php:356 +#: includes/admin/class-mp-shortcode-builder.php:370 +#: includes/admin/class-mp-shortcode-builder.php:496 +#: includes/admin/class-mp-shortcode-builder.php:513 +msgid "Select Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:338 +#: includes/admin/class-mp-shortcode-builder.php:494 +msgid "Exclude one or more categories from the results. The parameter include must be empty." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:332 +msgid "Set a URI for an image (usually an rss feed icon) to act as a link to each categories' rss-2 feed. This parameter overrides the feed parameter. There is no default for this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:320 +msgid "Display a link to each category's rss-2 feed and set the link text to display. The default is no text and no feed displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:313 +#: includes/admin/class-mp-shortcode-builder.php:487 +msgid "Any" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:307 +#: includes/admin/class-mp-shortcode-builder.php:481 +msgid "Only display categories that are children of the category identified by this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:301 +msgid "Sets whether a category's description is inserted into the title attribute of the links created (i.e. <a title=\"<em>Category Description</em>\" href=\"...)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:295 +#: includes/admin/class-mp-shortcode-builder.php:475 +msgid "Toggles the display of categories with no posts." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:289 +#: includes/admin/class-mp-shortcode-builder.php:469 +#: includes/admin/class-mp-shortcode-builder.php:1388 +msgid "Toggles the display of the current count of posts in each category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:279 +msgid "Style to display the categories list in. A value of list displays the categories as list items while none generates no special display method (the list items are separated by
    tags)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:269 +#: includes/admin/class-mp-shortcode-builder.php:449 +#: includes/admin/class-mp-shortcode-builder.php:1378 +msgid "Sort order for categories (either ascending or descending)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:259 +#: includes/admin/class-mp-shortcode-builder.php:439 +#: includes/admin/class-mp-shortcode-builder.php:1368 +msgid "Sort categories alphabetically, by unique Category ID, or by the count of posts in that Category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:253 +#: includes/admin/class-mp-shortcode-builder.php:433 +msgid "If a value is entered, causes the display of a link to all categories if the style is set to list." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:219 +msgid "Select an Action" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:217 +msgid "What would you like to do?" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:216 +#: includes/admin/class-mp-shortcode-builder.php:1522 +msgid "Add E-Commerce Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:197 +msgid "Display a list of links to your store pages." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:196 +msgid "Display a link or url to the order status page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:195 +msgid "Display a link or url to the current products list page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:194 +msgid "Display a link or url to the current store page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:193 +msgid "Display a link or url to the current shopping cart page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:192 +msgid "Display the cart widget." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:191 +msgid "Display the full product meta box with price and buy now/add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:190 +msgid "Display the product stock." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:189 +msgid "Display the product SKU number(s)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:188 +msgid "Display the product price (and sale price)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:187 +msgid "Display the buy or add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:186 +msgid "Display the featured image of a given product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:185 +msgid "Display a single product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:184 +msgid "Display a list of products according to preference." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:183 +msgid "Display products related to the one being viewed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:182 +msgid "Display a list of popular products ordered by sales." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:180 +msgid "Display an HTML dropdown of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:179 +msgid "Display an HTML list of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:178 +msgid "Display a cloud or list of your product tags." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:655 +msgid "Setup your payment gateway" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:643 +#: includes/admin/class-mp-setup-wizard.php:649 +msgid "Other Gateways" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:617 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:150 +msgid "Select which calculated shipping methods the customer will be able to choose from." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:601 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:134 +#: includes/public/class-mp-checkout.php:82 +msgid "Shipping Method" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:568 +msgid "I want to charge shipping" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:523 +#: includes/admin/store-settings/class-mp-store-settings-general.php:503 +msgid "Show Price + Tax?" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:507 +msgid "I.e. Taxes, VAT, GST, etc" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:491 +#: includes/admin/store-settings/class-mp-store-settings-general.php:471 +msgid "Current Rates" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:473 +msgid "Default Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:434 +#: includes/admin/class-mp-setup-wizard.php:442 +#: includes/admin/store-settings/class-mp-store-settings-general.php:386 +#: includes/admin/store-settings/class-mp-store-settings-general.php:394 +#: includes/multisite/class-mp-admin-multisite.php:204 +#: includes/multisite/class-mp-admin-multisite.php:212 +msgid "Select a Currency" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:414 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:105 +msgid "Choose Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:411 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:103 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:104 +msgid "All Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:410 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:102 +msgid "These are the countries that you will ship to." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:409 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:101 +msgid "Target Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:401 +msgid "Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:387 +#: includes/admin/store-settings/class-mp-store-settings-general.php:640 +msgid "Zip/Postal Code Label" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:352 +#: includes/admin/store-settings/class-mp-store-settings-general.php:606 +msgid "Select a State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:335 +#: includes/admin/store-settings/class-mp-store-settings-general.php:590 +msgid "Select A Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:332 +#: includes/admin/store-settings/class-mp-store-settings-general.php:587 +msgid "Select a Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:324 +msgid "Location" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:304 +#: includes/admin/class-mp-setup-wizard.php:312 +#: includes/admin/class-mp-store-settings-admin.php:129 +#: includes/admin/class-mp-store-settings-admin.php:262 +msgid "Quick Setup" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:289 +msgid "MarketPress setup is not complete! Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2479 +msgid "Enter your product name here" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2440 +msgid "Select a %s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2426 +msgid "Each product variation needs to have product attributes assigned to it so the system knows how to differentiate one product variation from the other. It is important that you assign a category to this product before choosing any attributes." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2409 +msgid "If you would like this variation to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2320 +msgid "Sale Price (if applicable)" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2281 +msgid "If you would like the description to be different than the main product enter it here." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2229 +msgid "Image" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2202 +#: includes/admin/class-mp-shortcode-builder.php:226 +msgid "Attributes" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2166 +msgid "Create your product variations here. You can reorder variations by using the number to left of each variation, or delete one by clicking the \"x\" to the right of each variation. NOTE: The variation that shows up first in this list will be considered the \"main variation\". The details from this variation will be used in product listings." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2061 +#: includes/admin/class-mp-products-admin.php:2332 +msgid "Value must be less than regular price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2043 +#: includes/admin/class-mp-products-admin.php:2306 +msgid "Regular Price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2023 +#: includes/admin/class-mp-products-admin.php:2286 +msgid "External URL" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1988 +#: includes/admin/class-mp-products-admin.php:2245 +msgid "Enter the quantity that you have available to sell." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1987 +#: includes/admin/class-mp-products-admin.php:2244 +msgid "Inventory Count" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1977 +#: includes/admin/class-mp-products-admin.php:2234 +msgid "Track Inventory?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1871 +msgid "%1$sProduct Images%2$s %3$sAdd images of the product. The first image on the list is the featured image for this product (you can reorder images on the list)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1806 +msgid "Add variations for this product. e.g. If you are selling t-shirts, you can create Color & Size variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1804 +msgid "%3$sAdd variations for%2$s %1$sProduct%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1776 +msgid "This product has a multiple variations %1$s(e.g. Multiple colors, sizes)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1775 +msgid "This is a unique product without variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1700 +msgid "Extra Shipping Cost %1$s(if applicable)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1659 +#: includes/admin/class-mp-products-admin.php:2112 +#: includes/admin/class-mp-products-admin.php:2359 +msgid "Weight" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1636 +#: includes/admin/class-mp-products-admin.php:2098 +#: includes/admin/class-mp-products-admin.php:2416 +msgid "Please enter a valid tax rate" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1531 +msgid "Limit Per Order %1$s(limit the number of the item a shopper can buy per order)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1513 +msgid "SKU %1$s(Stock Keeping Unit)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "%1$sPrice, Inventory & Variants%2$s %3$sSet price, manage inventory and create Product Variants (if appropriate for your product).%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "Product Variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1480 +msgid "External / Affiliate Link" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1471 +msgid "Digital Download" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1470 +msgid "Physical / Tangible Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1464 +msgid "Product Kind %1$s(Physical Product, Digital, etc)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1426 +msgid "Choose Products" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1420 +msgid "If you would like, you can choose specific related products instead of using the ones generated by MarketPress" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1019 +msgid "Changes saved successfully" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:826 +msgid "Option cannot be saved. Try again." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:821 +msgid "Option saved successfully." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:467 +msgid "Img" +msgstr "" + +#: includes/admin/class-mp-product-attributes-list-table.php:57 +msgid "Product attribute(s) deleted successfully." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:162 +msgid "- Create New Variation -" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:144 +msgid "Only lowercase letters and dashes (-) are allowed." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:139 +msgid "If a slug is not entered, it will be generated automatically. Max 32 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:138 +#: includes/admin/class-mp-product-attributes-list-table.php:23 +msgid "Slug" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:130 +msgid "Max 45 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:123 +msgid "Use the numbers on the left to sort. To delete - click the \"X\" to the right of each row." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:122 +msgid "Attribute Options" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:121 +msgid "Add Option" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:105 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:523 +msgid "Sort Order" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:87 +msgid "Alphabetical" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:86 +msgid "ID" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:84 +msgid "Select how the options will be sorted." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:82 +msgid "Sort By" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:75 +msgid "The name of the attribute (e.g. color, size, etc)" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:74 +msgid "Attribute Name" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:69 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Product Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Product Attributes" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:71 +msgid "You can choose to make this page one of the following core store pages." +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:66 +msgid "Network Store Base" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:61 +msgid "Checkout Page" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:52 +msgid "Store Page Settings" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1108 +msgid "Display billing/shipping info for this customer" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1097 +msgid "View order “%s”" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1072 +msgid "Flag as:" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:952 +msgid "Move To Trash" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:948 +msgid " Received" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:927 +msgid "Enter coupon code here" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:812 +msgid "The order status could not be updated due to unexpected error. Please try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:740 +msgid "An invalid bulk action was requested. Please go back and try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:692 +msgid "The order status for order ID %1$s was updated successfully." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:688 +msgid "Order statuses successfully updated." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:530 +msgid "Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:518 +msgid "Actual Shipping Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:513 +msgid "Method Paid For" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:504 +msgid "Amount Collected" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:477 +msgid "DHL" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:408 +msgid "There is no IPN history to show at this time" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:345 +msgid "Type" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:343 +msgid "Gateway" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:301 +#: includes/common/template-functions.php:528 +msgid "Order History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:291 +msgid "IPN History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:283 +msgid "Customer Info" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:279 +msgid "Order Details" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:157 +msgid "All Dates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:320 +msgid "Add Pages to Menu" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:318 +msgid "Add-ons" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:317 +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "User Capabilities" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:316 +#: includes/admin/class-mp-setup-wizard.php:631 +#: includes/admin/store-settings/class-mp-store-settings-payments.php:50 +msgid "Payment Gateways" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:315 +msgid "Shipping Rates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:312 +msgid "Configure" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:309 +#: includes/admin/class-mp-products-admin.php:466 +#: includes/admin/class-mp-shortcode-builder.php:797 +msgid "Tags" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:308 +#: includes/admin/class-mp-products-admin.php:465 +msgid "Categories" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:300 +msgid "Manage" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:297 +msgid "Here's some quick links to manage your store and products." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:288 +msgid "low in stock" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:287 +msgid "%s product" +msgid_plural "%s products" +msgstr[0] "" + +#: includes/admin/class-mp-dashboard-widgets.php:280 +msgid "received" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:279 +#: includes/admin/class-mp-dashboard-widgets.php:283 +msgid "%s order" +msgid_plural "%s orders" +msgstr[0] "" + +#: includes/admin/class-mp-dashboard-widgets.php:276 +msgid "Stock & Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:261 +msgid "Last 30 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:256 +msgid "Last 7 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:251 +msgid "Yesterday" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:248 +#: includes/admin/class-mp-dashboard-widgets.php:253 +#: includes/admin/class-mp-dashboard-widgets.php:258 +#: includes/admin/class-mp-dashboard-widgets.php:263 +msgid " Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:246 +msgid "Today" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:241 +msgid "Welcome back! Here's a quick summary of your store's performance." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:196 +#: includes/admin/class-mp-products-admin.php:895 +msgid "No products out of stock." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:136 +#: includes/admin/class-mp-products-admin.php:839 +msgid "Stock Level" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:135 +#: includes/admin/class-mp-products-admin.php:838 +msgid "Variation" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:121 +msgid "Low Stock (%s)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:116 +msgid "Store Management" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:115 +msgid "Store Reports" +msgstr "" + +#: includes/admin/class-mp-ajax.php:579 +#: includes/admin/class-mp-orders-admin.php:520 +#: includes/common/payment-gateways/2checkout.php:370 +#: includes/common/payment-gateways/authorizenet-aim.php:264 +#: includes/common/payment-gateways/mollie.php:93 +#: includes/common/payment-gateways/paymill.php:196 +#: includes/common/payment-gateways/pin.php:190 +#: includes/common/payment-gateways/skrill.php:157 +#: includes/common/payment-gateways/skrill.php:168 +#: includes/common/payment-gateways/wepay.php:143 +#: includes/public/class-mp-checkout.php:404 +msgid "Select One" +msgstr "" + +#: includes/admin/class-mp-ajax.php:511 +msgid "Oops... we could not locate any orders by that ID. Please double check your order ID and try again." +msgstr "" + +#: includes/admin/class-mp-ajax.php:482 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:166 +#: includes/multisite/class-mp-admin-multisite.php:584 +msgid "Edit Page" +msgstr "" + +#: includes/admin/class-mp-ajax.php:346 +msgid "Cancel " +msgstr "" + +#: includes/admin/class-mp-ajax.php:345 +msgid "Save " +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "Edit Description" +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "HTML Markup" +msgstr "" + +#: includes/admin/class-mp-ajax.php:333 +msgid "Plain Text Only" +msgstr "" + +#: includes/admin/class-mp-ajax.php:329 +msgid "Additional Content / Information for this Variation" +msgstr "" + +#: includes/admin/class-mp-ajax.php:317 +#: includes/admin/class-mp-products-admin.php:1762 +msgid "Allow this product to be purchased even if it's out of stock" +msgstr "" + +#: includes/admin/class-mp-ajax.php:313 +#: includes/admin/class-mp-products-admin.php:1711 +msgid "Track Product Inventory" +msgstr "" + +#: includes/admin/class-mp-ajax.php:300 +msgid "Extra Shipping Cost (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:295 +msgid "Ounces:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:294 +msgid "Pounds:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:292 +msgid "Kilograms:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:287 +#: includes/admin/class-mp-products-admin.php:1649 +msgid "Charge Shipping" +msgstr "" + +#: includes/admin/class-mp-ajax.php:273 +#: includes/admin/class-mp-products-admin.php:1623 +#: includes/admin/store-settings/class-mp-store-settings-general.php:454 +msgid "Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:272 +#: includes/admin/class-mp-products-admin.php:1622 +#: includes/admin/class-mp-products-admin.php:2090 +#: includes/admin/class-mp-products-admin.php:2408 +msgid "Special Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:271 +#: includes/admin/class-mp-products-admin.php:1625 +#: includes/admin/class-mp-products-admin.php:2092 +msgid "If you would like this product to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-ajax.php:268 +#: includes/admin/class-mp-products-admin.php:1599 +msgid "Charge Taxes (Special Rate)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:256 +#: includes/admin/class-mp-products-admin.php:1593 +#: includes/admin/class-mp-products-admin.php:2077 +#: includes/admin/class-mp-products-admin.php:2348 +msgid "End Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:255 +#: includes/admin/class-mp-products-admin.php:1589 +#: includes/admin/class-mp-products-admin.php:2072 +msgid "Start Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:1568 +msgid "Enter Sale Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:250 +#: includes/admin/class-mp-products-admin.php:1547 +msgid "Set up a Sale for this Product" +msgstr "" + +#: includes/admin/class-mp-ajax.php:206 includes/admin/class-mp-ajax.php:223 +msgid "Enter " +msgstr "" + +#: includes/admin/class-mp-ajax.php:193 +msgid "Browse" +msgstr "" + +#: includes/admin/class-mp-ajax.php:184 includes/admin/class-mp-ajax.php:192 +msgid "http://" +msgstr "" + +#: includes/admin/class-mp-ajax.php:183 +msgid "External Product URL" +msgstr "" + +#: includes/admin/class-mp-ajax.php:237 +msgid "Limit Per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:177 +#: includes/admin/class-mp-products-admin.php:1520 +msgid "Enter Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:174 +#: includes/admin/class-mp-products-admin.php:1512 +msgid "Enter SKU" +msgstr "" + +#: includes/admin/class-mp-ajax.php:173 +msgid "(Stock Keeping Unit)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:158 +msgid "Remove Image" +msgstr "" + +#: includes/admin/class-mp-ajax.php:74 +msgid "Variation Draft" +msgstr "" + +#: includes/admin/class-mp-admin.php:296 +#: includes/admin/class-mp-dashboard-widgets.php:70 +msgid "Please wait...saving in progress..." +msgstr "" + +#: includes/admin/class-mp-admin.php:295 +#: includes/admin/class-mp-dashboard-widgets.php:69 +msgid "Input is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:294 +#: includes/admin/class-mp-dashboard-widgets.php:68 +msgid "Valid number is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:292 +#: includes/admin/class-mp-dashboard-widgets.php:66 +msgid "Delete %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:291 +#: includes/admin/class-mp-dashboard-widgets.php:65 +msgid "Delete %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:290 +#: includes/admin/class-mp-dashboard-widgets.php:64 +msgid "Update inventory for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:289 +#: includes/admin/class-mp-dashboard-widgets.php:63 +msgid "Update inventory for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:288 +#: includes/admin/class-mp-dashboard-widgets.php:62 +msgid "Update price for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:287 +#: includes/admin/class-mp-dashboard-widgets.php:61 +msgid "Update prices for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:285 +#: includes/admin/class-mp-dashboard-widgets.php:59 +msgid "Creating variations, please wait..." +msgstr "" + +#: includes/admin/class-mp-admin.php:96 +msgid "The following payment gateways have been deprecated, Cubepoints, Bitpay, iDEAL, Skrill, Google Checkout. If you were using one of these gateways, please setup a new payment gateway here." +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:61 +msgid "Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:71 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:71 +#: includes/common/class-mp-gdpr.php:399 includes/common/class-mp-order.php:872 +#: includes/common/helpers.php:164 includes/public/class-mp-checkout.php:1434 +msgid "Shipping Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:66 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:66 +#: includes/common/class-mp-gdpr.php:392 includes/common/class-mp-order.php:864 +#: includes/common/helpers.php:163 includes/public/class-mp-checkout.php:1427 +msgid "Billing Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:61 +msgid "Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:258 +msgid "Shipping Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:256 +msgid "Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:235 +msgid "Payment Method: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:79 +msgid "The dir %s not exist or not writeable" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:239 +msgid "Shop header/logo" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:233 +msgid "Choose a template" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:226 +msgid "Template Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:221 +msgid "Disable automatic creation/attachment of invoices when only free products are ordered" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:220 +msgid "Disable for free products" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:216 +msgid "Attach invoice to" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:214 +msgid "Customer Order Shipped email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:212 +msgid "Customer New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:211 +msgid "Admin New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:206 +msgid "download" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:205 +msgid "How do you want to view the PDF?" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:203 +msgid "Open the PDF in a new browser tab/window" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:202 +msgid "Download the PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:158 +msgid "Export PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:103 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:106 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:109 +msgid "You can't download this order invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:76 +msgid "Invalid Request" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:72 +msgid "Order not exist!" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:67 +msgid "Invalid ID" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1293 +msgid "Coupon added successfully" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1292 +msgid "Please enter a code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1247 +msgid "No end" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1200 +msgid "Valid Dates" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1195 +msgid "Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1027 +msgid "No Coupons found in Trash" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1026 +msgid "No Coupons Found" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1025 +msgid "Search Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1024 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1028 +msgid "View Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1023 +msgid "New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1020 +msgid "Create New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1017 +msgid "Manage Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1002 +msgid "An error occurred while removing your coupon. Please try again." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:964 +msgid "Coupon can't be applied to this cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:951 +msgid "Invalid coupon code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:794 +msgid "Help Text" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:789 +msgid "Form Title" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:783 +msgid "Coupons Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:764 +msgid "End Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:758 +msgid "Does coupon have an end date?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:696 +msgid "Select Products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:688 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:723 +#: includes/common/payment-gateways/paypal-payflow.php:402 +msgid "User" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:638 +msgid "Max Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:636 +msgid "Enter the maximum number of times this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:623 +msgid "Leave blank to allow all other coupons." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:622 +msgid "Select combinable coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:618 +msgid "Can this coupon be combined with other coupons?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:613 +msgid "Apply to each applicable item once per cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:612 +msgid "Apply to each applicable item and quantity ordered" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:609 +msgid "How should the discount amount be applied?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:605 +msgid "Discount Amount" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:604 +msgid "Value must either be a decimal number or a percentage" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:602 +msgid "If you would like to give a percentage-based discount make sure to include the percent (%) symbol. Otherwise, the discount will be applied as a fixed amount off." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:595 +msgid "Letters and Numbers only." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:589 +msgid "Coupon Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:447 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:795 +msgid "More than one code? That's OK! Just be sure to enter one at a time." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:444 +msgid "Apply Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:314 +msgid "Coupon Discounts" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:89 +msgid "1 add-on disabled" +msgid_plural "%s add-ons disabled" +msgstr[0] "" + +#: includes/addons/class-mp-addons-list-table.php:84 +msgid "1 add-on enabled" +msgid_plural "%s add-ons enabled" +msgstr[0] "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Disabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Enable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:129 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:67 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:135 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:168 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:202 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:263 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:296 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:330 +msgid "Enabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +msgid "Disable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:34 +msgid "Disable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:33 +msgid "Enable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:21 +#: includes/admin/class-mp-products-admin.php:2280 +#: includes/common/class-mp-product.php:2916 +msgid "Description" +msgstr "" + +#: includes/common/template-functions.php:2889 +#: includes/multisite/template-functions.php:407 +msgid "Popularity (Least Popular - Most Popular)" +msgstr "" + +#: includes/common/template-functions.php:2888 +#: includes/multisite/template-functions.php:406 +msgid "Popularity (Most Popular - Least Popular)" +msgstr "" + +#: includes/common/template-functions.php:2885 +#: includes/multisite/template-functions.php:403 +msgid "Name (Z-A)" +msgstr "상품명 (ㅎ-ㄱ)" + +#: includes/common/template-functions.php:2884 +#: includes/multisite/template-functions.php:402 +msgid "Name (A-Z)" +msgstr "상품명 (ㄱ-ㅎ)" + +#: includes/common/template-functions.php:2883 +#: includes/multisite/template-functions.php:401 +msgid "Release Date (Oldest to Latest)" +msgstr "" + +#: includes/common/template-functions.php:2882 +#: includes/multisite/template-functions.php:400 +msgid "Release Date (Latest to Oldest)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:284 +msgid "paid" +msgstr "결재완료" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "One Time Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Customer Counter" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Daily Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:182 +msgid "For the most accurate rates, please select the appropriate pick up type for your business." +msgstr "" + +#: includes/admin/class-mp-admin.php:374 +msgid "Page saved." +msgstr "" + +#: includes/admin/class-mp-admin.php:370 +msgid "Custom field deleted." +msgstr "" + +#: includes/admin/class-mp-admin.php:369 +msgid "Custom field updated." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:541 +msgid "%s - The payment request expired, - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:536 +msgid "%s - The payment not credited in merchants bitpay account, action required. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:252 +msgid "If enabled, you will recieve an email for each status update on payment." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:240 +msgid "Speed at which the bitcoin transaction registers as \"confirmed\" to the store. This overrides your merchant settings on the Bitpay website." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:238 +msgid "Transaction Speed" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:244 +msgid "Low" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:243 +msgid "Medium" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:242 +msgid "High" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:177 +#: includes/common/payment-gateways/_bitpay.php:517 +#: includes/common/payment-gateways/_bitpay.php:522 +msgid "%s - The payment request is under process. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:175 +#: includes/common/payment-gateways/_bitpay.php:527 +msgid "%s - The payment request has been processed - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:150 +#: includes/common/payment-gateways/_bitpay.php:294 +msgid "Incorrect order invoice, please contact site administrator" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:141 +msgid "We could not verify order invoice details, please try again or contact site administrator for help" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:81 +msgid "Login to Simplify to get your API credentials. Enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:605 +#: includes/common/payment-gateways/paypal-express.php:647 +msgid "Express Checkout is PayPal's premier checkout solution, which streamlines the checkout process for buyers and keeps them on your site after making a purchase. Unlike PayPal Pro, there are no additional fees to use Express Checkout, though you may need to do a free upgrade to a business account. More Info »" +msgstr "" + +#. Plugin URI of the plugin/theme +msgid "https://premium.wpmudev.org/project/e-commerce/" +msgstr "" + +#. Author of the plugin/theme +msgid "WPMU DEV" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:541 +#: includes/admin/class-mp-orders-admin.php:543 +msgid "Tracking Number" +msgstr "" + +#: includes/common/class-mp-order.php:805 +#: includes/common/payment-gateways/stripe.php:336 +#: includes/public/class-mp-checkout.php:402 +msgid "Country" +msgstr "" + +#: includes/common/class-mp-order.php:784 +#: includes/common/payment-gateways/stripe.php:338 +msgid "City" +msgstr "" + +#: includes/common/class-mp-order.php:780 +msgid "Address 2" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:340 +msgid "Address" +msgstr "" + +#: includes/common/class-mp-cart.php:752 includes/common/class-mp-gdpr.php:378 +msgid "Order Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:360 +msgid "Payment Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:347 +msgid "Transaction ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:207 +msgid "The WePay Card Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:186 +#: includes/common/shipping-modules/mp-fedex.php:283 +msgid "Account ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:179 +msgid "Access Token" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:172 +msgid "Client Secret" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:165 +msgid "Client ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:159 +msgid "You must login to WePay to get your API credentials. Make sure to check \"Tokenize credit cards\" option under \"API Keys\" section of your WePay app." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:154 +msgid "When in live mode it is recommended to use SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:148 +msgid "Donation" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:147 +msgid "Event" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:146 +msgid "Personal" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:145 +msgid "Service" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:144 +msgid "Goods" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:141 +msgid "Choose type of payments" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:140 +msgid "Checkout Type" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:134 +msgid "Staging" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:131 +msgid "Choose STAGING if you have registered the app on stage.wepay.com, or PRODUCTION if you registered on www.wepay.com" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:36 +#: includes/common/payment-gateways/wepay.php:299 +msgid "WePay" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:366 +msgid "Rejected - A payment was rejected." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:360 +msgid "Failed - A payment was rejected due to an error." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:342 +msgid "PayWay balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:298 +msgid "Full path of the cacerts.crt file" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:284 +msgid "User Name" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:277 +msgid "Biller Code" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:273 +msgid "Log Directory" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:266 +msgid "Encryption Key" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:60 +msgid "Your PayWay transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:40 +#: includes/common/payment-gateways/_payway.php:41 +msgid "PayWay" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:862 +msgid "You must register this application with PayPal using your business account login to get an Application ID that will work with your API credentials. A bit of a hassle, but worth it! In the near future we will be looking for ways to simplify this process. Register then submit your application while logged in to the developer portal. Note that you do not need an Application ID for testing in sandbox mode. More Information »" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:818 +#: includes/common/payment-gateways/paypal-chained-payments.php:840 +#: includes/common/payment-gateways/paypal-express.php:705 +msgid "You must login to PayPal and create an API signature to get your credentials. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:378 +msgid "Use Payflow payment gateway to accept online payments using your Internet merchant account and processing network. PayPal Payflow Pro is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:595 +msgid "Tags Only" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:594 +msgid "Category Only" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:795 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:593 +msgid "Category & Tags" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:591 +msgid "Relate Products By" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1008 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:455 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:751 +msgid "Right" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1007 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:454 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:749 +msgid "Left" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1009 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:750 +msgid "Center" +msgstr "" + +#: marketpress.php:273 +msgid "Orders from your e-commerce store." +msgstr "" + +#: marketpress.php:231 +msgid "Products for your e-commerce store." +msgstr "" + +#: marketpress.php:222 +msgid "Edit Product" +msgstr "" + +#. Description of the plugin/theme +msgid "The complete WordPress ecommerce plugin - works perfectly with BuddyPress and Multisite too to create a social marketplace, where you can take a percentage! Activate the plugin, adjust your settings then add some products to your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:272 +msgid "Beside" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:271 +msgid "Above" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:268 +msgid "Pin Count" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:261 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:287 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:318 +msgid "All View" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:260 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:286 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:317 +msgid "Single View" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:259 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:285 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:316 +msgid "Off" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:578 +msgid "Related Product Limit" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:681 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1201 +msgid "Applies To" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:685 +msgid "All Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:487 +msgid "The label shown for the tax line item in the cart. Taxes, VAT, GST, etc." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:485 +msgid "Tax Label" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:81 +msgid "Apply" +msgstr "" + +#: includes/admin/class-mp-admin.php:192 +msgid "MarketPress Instructions" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1954 +#: includes/admin/class-mp-products-admin.php:2194 includes/common/data.php:62 +#: includes/common/helpers.php:150 +msgid "Taxes" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1417 +#: includes/common/class-mp-product.php:2900 +msgid "Related Products" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:282 +#: includes/common/shipping-modules/mp-usps.php:316 +msgid "@ Max" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "(3-5 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "Priority Mail Express International Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:92 +msgid "Priority Mail Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:171 +#: includes/common/shipping-modules/mp-pickup.php:247 +msgid "In Store" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:159 +msgid "Pickup Fee" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:141 +msgid "This option allows your customers to indicate that they will pick-up their order at your place of business." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:60 +#: includes/common/shipping-modules/mp-pickup.php:76 +#: includes/common/shipping-modules/mp-pickup.php:176 +msgid "Pickup Instructions" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:24 +#: includes/common/shipping-modules/mp-pickup.php:254 +msgid "Pickup" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping - 0.00" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:256 +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:440 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:309 +msgid "Your Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:301 +msgid "Station" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:300 +msgid "Request Courier" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:299 +msgid "Drop Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:298 +msgid "Business Service Center" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:297 +msgid "Regular Pickup" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:135 +#: includes/common/shipping-modules/mp-fedex.php:264 +msgid "Production" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:207 +msgid "Simplify Commerce by MasterCard" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:104 +msgid "When in live mode, although it is not required, Simplify recommends you have an SSL certificate." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:183 +#: includes/common/payment-gateways/simplify.php:87 +msgid "Public Key" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:175 +#: includes/common/payment-gateways/simplify.php:94 +msgid "Private Key" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:71 +msgid "Simplify helps merchants to accept online payments from Mastercard, Visa, American Express, Discover, JCB, and Diners Club cards. It's that simple. We offer a merchant account and payment gateway in a single, secure package so you can concentrate on what really matters to your business. Only supports USD currently." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:267 +msgid "%1$s" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:151 +msgid "The Simplify Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/simplify.php:18 +msgid "Simplify" +msgstr "" + +#: includes/common/payment-gateways/pin.php:255 +msgid "%1$s Card %2$s" +msgstr "" + +#: includes/common/payment-gateways/pin.php:211 +msgid "The PIN Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:187 +msgid "Selecting a currency other than currency supported by PIN may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/pin.php:164 +msgid "You must login to PIN to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/pin.php:158 +msgid "When in live mode PIN recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/pin.php:45 +#: includes/common/payment-gateways/pin.php:286 +msgid "PIN" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:830 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:534 +#: includes/common/payment-gateways/paypal-express.php:865 +msgid "The payment is pending" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:235 +msgid "The Paymill Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:169 +msgid "You must login to Paymill to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:45 +#: includes/common/payment-gateways/paymill.php:308 +msgid "Paymill" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:90 +msgid "Invalid cardholder" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:89 +msgid "Card is no longer valid or has expired" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:88 +msgid "Please enter a valid Card CVC" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:87 +msgid "Please choose a valid Expiration Date." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:99 +#: includes/common/payment-gateways/skrill.php:100 +msgid "Skrill (Moneybookers)" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:24 +#: includes/common/shipping-modules/mp-weight-rate.php:292 +msgid "Weight Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:303 +msgid "USPS Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:270 +msgid "USPS Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:264 +msgid "USPS Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:145 +msgid "Flat Rate Large" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:140 +msgid "Flat Rate Medium 2" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:135 +msgid "Flat Rate Medium 1" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:130 +msgid "Flat Rate Small" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:118 +msgid "First Class International Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:114 +msgid "Priority Mail International Small Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:112 +msgid "Priority Mail International Medium Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:110 +msgid "Priority Mail International Large Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:108 +msgid "Priority Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:106 +msgid "Express Mail International Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:104 +msgid "Express Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:98 +msgid "Library Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:96 +msgid "Media Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "First-Class Mail Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:90 +msgid "Priority Mail Small Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:88 +msgid "Priority Mail Medium Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +#: includes/common/shipping-modules/mp-usps.php:88 +#: includes/common/shipping-modules/mp-usps.php:90 +#: includes/common/shipping-modules/mp-usps.php:92 +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "(2-4 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +msgid "Priority Mail Large Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "(2-4) days" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "Priority Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "Express Mail Sunday/Holiday Delivery Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:80 +msgid "Express Mail Flat Rate Boxes Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:78 +msgid "Express Mail Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:76 +msgid "Express Mail Sunday/Holiday Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:74 +msgid "Express Mail Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:72 +#: includes/common/shipping-modules/mp-usps.php:74 +#: includes/common/shipping-modules/mp-usps.php:76 +#: includes/common/shipping-modules/mp-usps.php:78 +#: includes/common/shipping-modules/mp-usps.php:80 +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "(1-2 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:72 +msgid "Express Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:67 +#: includes/common/shipping-modules/mp-usps.php:902 +msgid "USPS" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:534 +msgid "UPS (beta)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:166 +msgid "Required if using negotiated rates" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "Worldwide Express Plus" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "(Scheduled)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "Standard" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "(2-5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "Worldwide Expedited" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:54 +msgid "Worldwide Express" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "2nd Day Air AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "(1 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "Next Day Air Early AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "Next Day Air Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "3 Day Select" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:49 +msgid "Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:48 +msgid "2nd Day Air" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "Next Day Air" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:475 +#: includes/common/shipping-modules/mp-ups.php:43 +msgid "UPS" +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:27 +#: includes/common/shipping-modules/mp-table-rate.php:318 +msgid "Table Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:71 +#: includes/common/shipping-modules/mp-table-quantity.php:77 +msgid "Shipping Cost: " +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:70 +#: includes/common/shipping-modules/mp-table-quantity.php:76 +msgid "If quantity is greater than:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:66 +msgid "Each band must be a higher price than the one above it." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:56 +msgid "Number of Bands:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:53 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Each layer must be a higher quantity than the previous." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:51 +msgid "Table Quantity Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:31 +msgid "Table Quantity" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:135 +#: includes/common/shipping-modules/mp-table-rate.php:174 +#: includes/common/shipping-modules/mp-weight-rate.php:189 +msgid "European Union" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:123 +#: includes/common/shipping-modules/mp-table-rate.php:162 +#: includes/common/shipping-modules/mp-weight-rate.php:177 +msgid "United States" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:111 +#: includes/common/shipping-modules/mp-table-rate.php:151 +#: includes/common/shipping-modules/mp-weight-rate.php:166 +msgid "In Country" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:146 +#: includes/common/shipping-modules/mp-table-rate.php:186 +#: includes/common/shipping-modules/mp-weight-rate.php:201 +msgid "International" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:101 +#: includes/common/shipping-modules/mp-table-rate.php:141 +#: includes/common/shipping-modules/mp-weight-rate.php:156 +msgid "Canada" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:92 +#: includes/common/shipping-modules/mp-table-rate.php:132 +#: includes/common/shipping-modules/mp-weight-rate.php:147 +msgid "Hawaii and Alaska" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:83 +#: includes/common/shipping-modules/mp-table-rate.php:123 +#: includes/common/shipping-modules/mp-weight-rate.php:138 +msgid "Lower 48 States" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:64 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping." +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:25 +#: includes/common/shipping-modules/mp-flat-rate.php:223 +msgid "Flat Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:761 +msgid "FedEx (beta)" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Centimeters" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Inches" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1676 +#: includes/admin/class-mp-setup-wizard.php:547 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:166 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +msgid "Kilograms" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:103 +msgid " %1$s - %2$s" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:358 +msgid "Max Weight per Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:356 +msgid "Box Dimensions" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:354 +msgid "Box Name" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:344 +msgid "Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:343 +msgid "For each box defined enter the maximum weight it can contain." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:341 +msgid "Enter your standard box sizes as LengthxWidthxHeight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:386 +#: includes/common/shipping-modules/mp-ups.php:193 +#: includes/common/shipping-modules/mp-usps.php:234 +#: includes/common/shipping-modules/mp-usps.php:338 +msgid "Standard Boxes and Weight Limits" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:328 +msgid "Handling Charge per Interntional Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:294 +msgid "Handling Charge per Domestic Shipment " +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:388 +#: includes/common/shipping-modules/mp-ups.php:196 +#: includes/common/shipping-modules/mp-usps.php:237 +msgid "Add Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "(Next Day)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +msgid "Europe First International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:62 +msgid "International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:61 +#: includes/common/shipping-modules/mp-fedex.php:62 +#: includes/common/shipping-modules/mp-ups.php:54 +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "(1-3 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:61 +msgid "International First" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "(5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "International Economy" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "(2-7 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "Smart Post" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:55 +#: includes/common/shipping-modules/mp-ups.php:49 +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "(1-5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:55 +msgid "Ground Home Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "(1-7 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "Fedex Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:53 +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "(3 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:53 +msgid "Fedex Express Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +#: includes/common/shipping-modules/mp-ups.php:48 +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "(2 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +msgid "Fedex 2 Day" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "(2 Days am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "Fedex 2 Day AM" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "(1 Day)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +msgid "Standard Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "(1 Day am )" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "Priority Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "(1 Day am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "First Overnight" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:476 +#: includes/common/shipping-modules/mp-fedex.php:31 +msgid "FedEx" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:270 +#: includes/common/payment-gateways/simplify.php:179 +#: includes/common/payment-gateways/stripe.php:365 +msgid "%1$s Card ending in %2$s - Expires %3$s" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:259 +#: includes/common/payment-gateways/pin.php:238 +#: includes/common/payment-gateways/simplify.php:171 +msgid "%s Store Purchase - Order ID: %s, Email: %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:266 +msgid "You must login to Stripe to get your API credentials. You can enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:261 +msgid "When in live mode Stripe recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:311 +msgid "The Stripe Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:263 +#: includes/common/payment-gateways/paymill.php:122 +#: includes/common/payment-gateways/stripe.php:222 +msgid "Card Number" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:86 +msgid "Please enter a valid Credit Card Number." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:45 +#: includes/common/payment-gateways/stripe.php:433 +msgid "Stripe" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:750 +msgid "Sets the background color for the payment page. By default, the color is white." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:745 +msgid "Sets the background color for the header of the payment page. By default, the color is white." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:740 +msgid "Sets the border color around the header of the payment page. The border is a 2-pixel perimeter around the header space, which is 750 pixels wide by 90 pixels high. By default, the color is black." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:735 +msgid "URL for an image you want to appear at the top left of the payment page. The image has a maximum size of 750 pixels wide by 90 pixels high. PayPal recommends that you provide an image that is stored on a secure (https) server. If you do not specify an image, the business name is displayed." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:857 +#: includes/common/payment-gateways/paypal-express.php:1131 +msgid "The payment is pending because it is part of an order that has been authorized but not settled." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:853 +#: includes/common/payment-gateways/paypal-express.php:1127 +msgid "The payment is pending because it has been authorized but not settled. You must capture the funds first." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:847 +#: includes/common/payment-gateways/paypal-express.php:1120 +msgid "You denied the payment when it was marked as pending." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:837 +#: includes/common/payment-gateways/paypal-express.php:1108 +msgid "A reversal has occurred on this transaction due to an unknown reason." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:836 +#: includes/common/payment-gateways/paypal-express.php:1107 +msgid "A reversal has occurred on this transaction because you have given the customer a refund." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:835 +#: includes/common/payment-gateways/paypal-express.php:1106 +msgid "A reversal has occurred on this transaction due to a complaint about the transaction from your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:834 +#: includes/common/payment-gateways/paypal-express.php:1105 +msgid "A reversal has occurred on this transaction due to your customer triggering a money-back guarantee." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:833 +#: includes/common/payment-gateways/paypal-express.php:1104 +msgid "A reversal has occurred on this transaction due to a chargeback by your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:1101 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer:" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:826 +#: includes/common/payment-gateways/paypal-express.php:1097 +msgid "A payment has been accepted." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:818 +#: includes/common/payment-gateways/paypal-express.php:1087 +msgid "The transaction has not terminated, e.g. an authorization may be awaiting completion." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:531 +#: includes/common/payment-gateways/paypal-express.php:810 +#: includes/common/payment-gateways/paypal-express.php:1077 +msgid "The payment has failed. This happens only if the payment was made from your customer's bank account." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:806 +#: includes/common/payment-gateways/paypal-express.php:1072 +msgid "An authorization for this transaction has been voided." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:802 +#: includes/common/payment-gateways/paypal-express.php:1067 +msgid "The authorization period for this payment has been reached." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:798 +#: includes/common/payment-gateways/paypal-express.php:1062 +msgid "A reversal has been canceled; for example, when you win a dispute and the funds for the reversal have been returned to you." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:499 +#: includes/common/payment-gateways/paypal-express.php:1163 +msgid "PayPal Express Checkout" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:798 +msgid "Gateway Settings Page Message" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:725 +msgid "Signature" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:506 +#: includes/common/payment-gateways/eway31.php:533 +#: includes/common/shipping-modules/mp-fedex.php:276 +msgid "API Password" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:773 +msgid "Enter a percentage of all store sales to collect as a fee. Decimals allowed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:757 +msgid "Using PayPal Chained Payments allows you as the multisite network owner to collect a predefined fee or percentage of all sales on network MarketPress stores! This is invisible to the customers who purchase items in a store, and all PayPal fees will be charged to the store owner. To use this option you must create API credentials, and you should make all other gateways unavailable or limited above." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:338 +msgid "Please be aware that we will deduct a ?% fee from the total of each transaction in addition to any fees PayPal may charge you. If for any reason you need to refund a customer for an order, please contact us with a screenshot of the refund receipt in your PayPal history as well as the Transaction ID of our fee deduction so we can issue you a refund. Thank you!" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:698 +#: includes/common/payment-gateways/paypal-express.php:149 +msgid "There was a problem connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:470 +#: includes/common/payment-gateways/paypal-express.php:1053 +msgid "There was a problem verifying the IPN string with PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:310 +msgid "There was a problem connecting to PayPal to check the status of your purchase. Please check the status of your order here »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:539 +#: includes/common/payment-gateways/paypal-chained-payments.php:254 +#: includes/common/payment-gateways/paypal-express.php:1139 +msgid "The payment is pending." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:251 +#: includes/common/payment-gateways/paypal-chained-payments.php:531 +#: includes/common/payment-gateways/paypal-express.php:862 +#: includes/common/payment-gateways/paypal-express.php:1136 +msgid "The payment is pending for an unknown reason. For more information, contact PayPal customer service." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:250 +#: includes/common/payment-gateways/paypal-chained-payments.php:530 +#: includes/common/payment-gateways/paypal-express.php:861 +#: includes/common/payment-gateways/paypal-express.php:1135 +msgid "The payment is pending because you are not yet verified. You must verify your account before you can accept this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:249 +#: includes/common/payment-gateways/paypal-chained-payments.php:529 +#: includes/common/payment-gateways/paypal-express.php:860 +#: includes/common/payment-gateways/paypal-express.php:1134 +msgid "The payment is pending because it was made via credit card and you must upgrade your account to Business or Premier status in order to receive the funds. It can also mean that you have reached the monthly limit for transactions on your account." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:248 +#: includes/common/payment-gateways/paypal-chained-payments.php:528 +#: includes/common/payment-gateways/paypal-express.php:859 +#: includes/common/payment-gateways/paypal-express.php:1133 +msgid "The payment is pending because it was made to an email address that is not yet registered or confirmed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:247 +#: includes/common/payment-gateways/paypal-chained-payments.php:527 +#: includes/common/payment-gateways/paypal-express.php:858 +#: includes/common/payment-gateways/paypal-express.php:1132 +msgid "The payment is pending while it is being reviewed by PayPal for risk." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:246 +#: includes/common/payment-gateways/paypal-chained-payments.php:526 +#: includes/common/payment-gateways/paypal-express.php:856 +#: includes/common/payment-gateways/paypal-express.php:1130 +msgid "You do not have a balance in the currency sent, and you do not have your Payment Receiving Preferences set to automatically convert and accept this payment. You must manually accept or deny this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:245 +#: includes/common/payment-gateways/paypal-chained-payments.php:525 +#: includes/common/payment-gateways/paypal-express.php:855 +#: includes/common/payment-gateways/paypal-express.php:1129 +msgid "The payment is pending because you hold a non-U.S. account and do not have a withdrawal mechanism. You must manually accept or deny this payment from your Account Overview." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:244 +#: includes/common/payment-gateways/paypal-chained-payments.php:524 +#: includes/common/payment-gateways/paypal-express.php:854 +#: includes/common/payment-gateways/paypal-express.php:1128 +msgid "The payment is pending because it was made by an eCheck that has not yet cleared." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:243 +#: includes/common/payment-gateways/paypal-chained-payments.php:523 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:236 +#: includes/common/payment-gateways/paypal-chained-payments.php:516 +msgid "The transaction was rejected by the receiver (you)." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:510 +#: includes/common/payment-gateways/paypal-express.php:843 +#: includes/common/payment-gateways/paypal-express.php:1115 +msgid "You refunded the payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:224 +#: includes/common/payment-gateways/paypal-chained-payments.php:504 +msgid "The transaction is in progress." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:212 +#: includes/common/payment-gateways/paypal-chained-payments.php:491 +#: includes/common/payment-gateways/paypal-express.php:814 +#: includes/common/payment-gateways/paypal-express.php:1082 +msgid "The payment has been partially refunded." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:202 +#: includes/common/payment-gateways/paypal-chained-payments.php:481 +msgid "PayPal balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:177 +msgid "There was a problem connecting to PayPal to setup your purchase. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:122 +msgid "Your PayPal transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:50 +#: includes/common/payment-gateways/paypal-chained-payments.php:53 +#: includes/common/payment-gateways/paypal-chained-payments.php:732 +#: includes/common/payment-gateways/paypal-express.php:500 +#: includes/common/payment-gateways/paypal-express.php:938 +msgid "PayPal" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:48 +#: includes/common/payment-gateways/paypal-chained-payments.php:730 +#: includes/common/payment-gateways/paypal-chained-payments.php:756 +#: includes/common/payment-gateways/paypal-chained-payments.php:873 +msgid "PayPal Chained Payments" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:59 +#: includes/common/payment-gateways/paypal-payflow.php:467 +msgid "PayPal Payflow Pro" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:378 +msgid "Chargeback - A payment was reversed due to a chargeback. The funds have been removed from your account balance and returned to the buyer." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:372 +msgid "Failed - The Credit Card or Direct Debit transaction was declined." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:354 +#: includes/common/payment-gateways/skrill.php:366 +msgid "Cancelled - The payment was cancelled manually by the sender in their online account history or was auto-cancelled after 14 days pending." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:360 +msgid "Pending - The payment is pending. It can take 2-3 days for bank transfers to complete." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:349 +#: includes/common/payment-gateways/skrill.php:354 +msgid "Processed - The payment has been completed, and the funds have been added successfully to your Moneybookers account balance." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:189 +msgid "Shown to the customer on the confirmation screen - the end step of the process - a note, confirmation number, or any other message. Line breaks <br> may be used for longer messages." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:188 +msgid "Confirmation Note (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:183 +msgid "The URL of the logo which you would like to appear at the top of the payment form. The logo must be accessible via HTTPS otherwise it will not be shown. For best integration results we recommend that you use a logo with dimensions up to 200px in width and 50px in height." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:182 +msgid "Logo Image (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:177 +msgid "The name of this store, which will be shown on the gateway. If no value is submitted, the account email will be shown as the recipient of the payment." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:176 +msgid "Merchant Name (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:165 +msgid "Language" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:368 +#: includes/common/payment-gateways/authorizenet-aim.php:262 +#: includes/common/payment-gateways/eway.php:363 +#: includes/common/payment-gateways/eway31.php:471 +#: includes/common/payment-gateways/mollie.php:91 +#: includes/common/payment-gateways/paymill.php:193 +#: includes/common/payment-gateways/paypal-chained-payments.php:356 +#: includes/common/payment-gateways/paypal-express.php:688 +#: includes/common/payment-gateways/paypal-payflow.php:432 +#: includes/common/payment-gateways/pin.php:186 +#: includes/common/payment-gateways/skrill.php:152 +#: includes/common/payment-gateways/stripe.php:288 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:104 +msgid "Currency" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:359 +#: includes/common/payment-gateways/skrill.php:143 +msgid "Secret Word" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:261 +msgid "Order ID:" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:234 +msgid "Complete Checkout" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:204 +msgid "Your Moneybookers transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:155 +msgid "This is the email text to send to those who have made manual payment checkouts. You should include your manual payment instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:257 +#: includes/common/payment-gateways/manual-payments.php:128 +msgid "Record payments manually, such as by Cash, Check, or EFT." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:71 +msgid "Manual/Invoice" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:648 +#: includes/common/payment-gateways/manual-payments.php:35 +#: includes/common/payment-gateways/manual-payments.php:36 +msgid "Manual Payment" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:34 +#: includes/common/payment-gateways/manual-payments.php:163 +msgid "Manual Payments" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:288 +msgid "iDEAL Simulator (for testing)" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:287 +msgid "ABN Amro Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:286 +msgid "Friesland Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:285 +msgid "Rabobank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:284 +msgid "ING Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:279 +msgid "Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:270 +msgid "To make it easier to pay for online products and services, the Dutch banking community has developed the iDEAL online payment method. iDEAL allows online payments to be made using online banking in EUR only." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:247 +#: includes/common/payment-gateways/_payway.php:199 +#: includes/common/payment-gateways/manual-payments.php:68 +msgid "Invoiced" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1016 +msgid "Coupon" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:77 +#: includes/common/payment-gateways/_ideal.php:250 +#: includes/common/payment-gateways/_payway.php:202 +msgid "iDEAL" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:76 +msgid "iDEAL (beta)" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:327 +msgid "Merchant Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:293 +#: includes/common/payment-gateways/_payway.php:302 +#: includes/common/payment-gateways/payfast.php:324 +msgid "Merchant ID" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:462 +msgid "eWay Rapid 3.0 Payments lets merchants recieve credit card payments through eWay without need for users to leave the shop. Note this gateway requires a valid SSL certificate configured for this site." +msgstr "" + +#: includes/common/payment-gateways/eway.php:452 +msgid "There was a problem connecting to eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/eway.php:432 +#: includes/common/payment-gateways/eway.php:437 +msgid "The url of the image can be hosted on your website and pass the secure https:// path of the image to be displayed at the top of the website. This is the second image block on the webpage and is restricted to 960px X 65px. A default secure image is used if none is supplied." +msgstr "" + +#: includes/common/payment-gateways/eway.php:431 +#: includes/common/payment-gateways/eway.php:436 +msgid "Company Logo (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:427 +msgid "The page footer text can be customised and populated below the customer's order details. Useful for contact information." +msgstr "" + +#: includes/common/payment-gateways/eway.php:426 +msgid "Page Footer (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:421 +msgid "Page Description (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:417 +#: includes/common/payment-gateways/eway.php:422 +msgid "This value is used to populate the browsers title bar at the top of the screen." +msgstr "" + +#: includes/common/payment-gateways/eway.php:416 +msgid "Page Title (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:412 +msgid "This will be displayed as the company the customer is purchasing from, including this is highly recommended." +msgstr "" + +#: includes/common/payment-gateways/eway.php:411 +msgid "Company Name" +msgstr "" + +#: includes/common/payment-gateways/eway.php:394 +msgid "Customer ID" +msgstr "" + +#: includes/common/payment-gateways/eway.php:381 +#: includes/common/payment-gateways/eway31.php:488 +msgid "Live API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway.php:371 +#: includes/common/payment-gateways/eway31.php:479 +msgid "Gateway Mode" +msgstr "" + +#: includes/common/payment-gateways/eway.php:354 +msgid "The Hosted Page is a webpage hosted on eWAY's side eliminating the need for merchants to capture, transmit or store credit card numbers. At the checkout time the merchant automatically redirects the customer to the Hosted Page where they would enter their details and have the transaction processed. Upon completion of the transaction the customer is redirected back to the MarketPress checkout confirmation page." +msgstr "" + +#: includes/common/payment-gateways/eway.php:314 +msgid "There was a problem with your credit card information: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:300 +msgid "Paid - The card has been processed - %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:253 +msgid "There was a problem setting up the transaction with eWay: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:245 +#: includes/common/payment-gateways/eway.php:289 +msgid "There was a problem parsing the response from eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:159 +#: includes/common/payment-gateways/eway.php:189 +#: includes/common/payment-gateways/paypal-chained-payments.php:634 +#: includes/common/payment-gateways/paypal-express.php:322 +#: includes/common/payment-gateways/paypal-express.php:473 +msgid "%s Store Purchase - Order ID: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:147 +#: includes/common/payment-gateways/eway.php:462 +msgid "eWay Shared Payments" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:214 +msgid "This is the email text to send to those who have made CubePoints checkouts. You should include your CubePoints instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:212 +#: includes/common/payment-gateways/free_orders.php:188 +#: includes/common/payment-gateways/manual-payments.php:154 +msgid "Order Confirmation Email" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:207 +#: includes/common/payment-gateways/manual-payments.php:149 +msgid "Confirmation User Instructions" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:202 +#: includes/common/payment-gateways/manual-payments.php:144 +msgid "User Instructions" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:198 +#: includes/common/payment-gateways/free_orders.php:170 +#: includes/common/payment-gateways/manual-payments.php:139 +msgid "Enter a public name for this payment method that is displayed to users - No HTML" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:532 +#: includes/common/payment-gateways/_cubepoints.php:196 +#: includes/common/payment-gateways/free_orders.php:169 +#: includes/common/payment-gateways/manual-payments.php:138 +msgid "Method Name" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:187 +msgid "Accept CubePoints as payment(requires the CubePoints plugin)." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:140 +msgid "Sorry, but you do not appear to have enough points to complete this purchase!" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:124 +msgid "%s Store Purchase" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:79 +#: includes/common/payment-gateways/_cubepoints.php:171 +msgid "Your current points: " +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:133 +#: includes/common/payment-gateways/_cubepoints.php:197 +msgid "CubePoints" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:344 +msgid "Authorize.net AIM Checkout" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:331 +msgid "Custom API URL" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:332 +msgid "Many other gateways have Authorize.net API emulators. To use one of these gateways input their API post url here." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:322 +msgid "Request a delimited response from the payment gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:316 +msgid "Security: MD5 Hash" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:317 +msgid "The payment gateway generated MD5 hash value that can be used to authenticate the transaction response. Not needed because responses are returned using an SSL connection." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:306 +msgid "Customer Receipt Email Footer" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:296 +msgid "Customer Receipt Email Header" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:297 +#: includes/common/payment-gateways/paypal-payflow.php:446 +msgid "This text will appear as the header of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:282 +msgid "Encapsulation Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:283 +msgid "Authorize.net default is blank. Otherwise, get this from your credit card processor. If the transactions are going through, but getting strange responses, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:273 +msgid "Optional settings to control advanced options" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:224 +#: includes/common/payment-gateways/authorizenet-aim.php:272 +msgid "Advanced Settings" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:253 +msgid "Transaction Key" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:246 +msgid "Login ID" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:396 +msgid "Gateway Credentials" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:221 +msgid "Authorize.net AIM is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway. USD is the only currency supported by this gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:205 +msgid "There was a problem finalizing your purchase. %s Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:519 +#: includes/common/payment-gateways/paypal-chained-payments.php:218 +#: includes/common/payment-gateways/paypal-chained-payments.php:498 +#: includes/common/payment-gateways/paypal-express.php:822 +#: includes/common/payment-gateways/paypal-express.php:1092 +msgid "The payment has been completed, and the funds have been added successfully to your account balance." +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:233 +msgid "Please enter a valid credit card security code" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:224 +#: includes/public/class-mp-checkout.php:867 +msgid "Please enter a valid credit card number" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:221 +msgid "Please enter your credit card number" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:217 +msgid "Please enter your credit card security code" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:213 +msgid "Please select your credit card expiration date." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:299 +#: includes/common/payment-gateways/authorizenet-aim.php:50 +#: includes/common/payment-gateways/eway.php:148 +#: includes/common/payment-gateways/eway.php:298 +#: includes/common/payment-gateways/eway31.php:267 +#: includes/common/payment-gateways/paymill.php:46 +#: includes/common/payment-gateways/paypal-express.php:972 +#: includes/common/payment-gateways/paypal-payflow.php:60 +#: includes/common/payment-gateways/pin.php:46 +#: includes/common/payment-gateways/simplify.php:19 +#: includes/common/payment-gateways/stripe.php:46 +#: includes/common/payment-gateways/wepay.php:37 +msgid "Credit Card" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:49 +msgid "Authorize.net Checkout" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:156 +#: includes/common/payment-gateways/stripe.php:293 +msgid "Selecting a currency other than that used for your store may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:352 +msgid "Seller ID" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:340 +#: includes/common/payment-gateways/_ideal.php:311 +#: includes/common/payment-gateways/authorizenet-aim.php:234 +#: includes/common/payment-gateways/eway.php:376 +#: includes/common/payment-gateways/payfast.php:315 +#: includes/common/payment-gateways/paypal-chained-payments.php:368 +#: includes/common/payment-gateways/paypal-express.php:699 +#: includes/common/payment-gateways/paypal-payflow.php:391 +msgid "Live" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:339 +#: includes/common/payment-gateways/authorizenet-aim.php:233 +#: includes/common/payment-gateways/eway.php:375 +#: includes/common/payment-gateways/paypal-chained-payments.php:367 +#: includes/common/payment-gateways/paypal-express.php:698 +#: includes/common/payment-gateways/paypal-payflow.php:390 +#: includes/common/shipping-modules/mp-fedex.php:263 +msgid "Sandbox" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:336 +#: includes/common/payment-gateways/_ideal.php:307 +#: includes/common/payment-gateways/authorizenet-aim.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:365 +#: includes/common/payment-gateways/paypal-express.php:695 +#: includes/common/payment-gateways/paypal-payflow.php:387 +#: includes/common/payment-gateways/wepay.php:130 +#: includes/common/shipping-modules/mp-fedex.php:260 +msgid "Mode" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:288 +#: includes/common/payment-gateways/mijireh.php:242 +#: includes/common/payment-gateways/mollie.php:212 +msgid "The order has been received" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:74 +#: includes/common/payment-gateways/2checkout.php:75 +#: includes/common/payment-gateways/2checkout.php:435 +msgid "2Checkout" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:306 +msgid "Confirm" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:218 +#: includes/common/class-mp-cart.php:974 includes/common/class-mp-cart.php:1354 +#: includes/common/template-functions.php:918 +msgid "Checkout" +msgstr "" + +#: includes/common/template-functions.php:207 +msgid "Check Order Status" +msgstr "" + +#: includes/common/template-functions.php:235 +msgid "View Products" +msgstr "" + +#: includes/common/template-functions.php:263 +msgid "Visit Store" +msgstr "" + +#: includes/common/template-functions.php:2912 +#: includes/multisite/template-functions.php:448 +msgid "Order By" +msgstr "" + +#: includes/common/template-functions.php:2887 +#: includes/multisite/template-functions.php:405 +msgid "Price (High to Low)" +msgstr "" + +#: includes/common/template-functions.php:2886 +#: includes/multisite/template-functions.php:404 +msgid "Price (Low to High)" +msgstr "" + +#: includes/common/template-functions.php:2881 +#: includes/multisite/template-functions.php:399 +msgid "Default" +msgstr "" + +#: includes/common/template-functions.php:2858 +msgid "Show All" +msgstr "" + +#: includes/common/class-mp-product.php:2048 +msgid "View Larger Image »" +msgstr "" + +#: includes/common/class-mp-product.php:979 +msgid "Out of Stock" +msgstr "" + +#: includes/common/template-functions.php:148 +msgid "Price: " +msgstr "" + +#: includes/multisite/template-functions.php:833 +msgid "No Tags" +msgstr "" + +#: includes/common/template-functions.php:3162 +msgid "Uncategorized" +msgstr "" + +#: includes/common/class-mp-cart.php:569 includes/common/class-mp-order.php:604 +#: includes/common/helpers.php:115 +msgid "Download" +msgstr "" + +#: includes/common/class-mp-cart.php:1353 +msgid "Empty Cart" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:291 +#: includes/common/payment-gateways/paypal-express.php:718 +#: includes/common/payment-gateways/paypal-payflow.php:423 +#: includes/common/shipping-modules/mp-ups.php:158 +#: includes/public/class-mp-checkout.php:1254 +#: includes/public/class-mp-checkout.php:1383 +msgid "Password" +msgstr "" + +#: includes/common/payment-gateways/eway.php:387 +#: includes/common/payment-gateways/paypal-express.php:711 +#: includes/common/shipping-modules/mp-usps.php:185 +#: includes/public/class-mp-checkout.php:1249 +msgid "Username" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:437 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:790 +msgid "Have a coupon code?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:321 +#: includes/admin/class-mp-orders-admin.php:526 +#: includes/common/class-mp-cart.php:592 +msgid "Remove" +msgstr "" + +#: includes/admin/class-mp-ajax.php:316 +msgid "Quantity:" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2140 +#: includes/admin/class-mp-products-admin.php:2387 +#: includes/common/shipping-modules/class-mp-shipping-api.php:507 +msgid "Extra Shipping Cost" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:403 +msgid "Choose a Shipping Method:" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1691 +#: includes/admin/class-mp-products-admin.php:2131 +#: includes/admin/class-mp-products-admin.php:2378 +#: includes/common/shipping-modules/class-mp-shipping-api.php:228 +msgid "Ounces" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1684 +#: includes/admin/class-mp-products-admin.php:2123 +#: includes/admin/class-mp-products-admin.php:2369 +#: includes/admin/class-mp-setup-wizard.php:546 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:165 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +#: includes/common/shipping-modules/class-mp-shipping-api.php:227 +msgid "Pounds" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:226 +msgid "Product Weight:" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:214 +msgid "Weight (Kilograms)" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:82 +msgid "Number of Categories:" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:72 +msgid "Product Count" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:20 +#: includes/admin/class-mp-product-attributes-admin.php:129 +#: includes/admin/class-mp-product-attributes-list-table.php:22 +#: includes/admin/class-mp-products-admin.php:2216 +#: includes/admin/class-mp-shortcode-builder.php:628 +#: includes/admin/class-mp-shortcode-builder.php:1415 +#: includes/admin/widgets/ms-global-categories.php:70 +#: includes/common/shipping-modules/mp-fedex.php:395 +#: includes/common/shipping-modules/mp-ups.php:202 +#: includes/common/shipping-modules/mp-usps.php:243 +#: includes/public/class-mp-checkout.php:314 +msgid "Name" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:67 +msgid "Order Categories By:" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:24 +#: includes/admin/widgets/ms-global-categories.php:50 +msgid "Global Product Categories" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:15 +msgid "Global Product Category List" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:13 +msgid "Displays a network-wide HTML list of product categories from network MarketPress stores." +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:24 +#: includes/admin/widgets/ms-global-tag-cloud.php:45 +msgid "Global Product Tags" +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:15 +msgid "Global Product Tag Cloud" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:947 +#: includes/admin/widgets/ms-global-product-list.php:173 +msgid "Excerpt" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:169 +msgid "Content To Show:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:140 +msgid "Limit To Product Tag:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:132 +msgid "Limit To Product Category:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:72 +msgid "Global Products" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:16 +msgid "Global Product List" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:14 +msgid "Shows a customizable global list of products from network MarketPress stores." +msgstr "" + +#: includes/common/class-mp-product.php:974 +#: includes/multisite/template-functions.php:731 +msgid "Buy Now »" +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:13 +msgid "Displays global most used product tags in cloud format from network MarketPress stores." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:438 +msgid "Theme Permissions" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:402 +#: includes/multisite/class-mp-admin-multisite.php:448 +msgid "No Access" +msgstr "" + +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:120 +msgid "Pro Site Level" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:401 +#: includes/multisite/class-mp-admin-multisite.php:447 +msgid "All Can Use" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:390 +msgid "Gateway Permissions" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:375 +msgid "Select a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:350 +msgid "Global Gateway" +msgstr "" + +#. Plugin Name of the plugin/theme +msgid "MarketPress" +msgstr "" + +#: includes/admin/widgets/product-tag-cloud.php:7 +msgid "Your most used product tags in cloud format from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/categories.php:79 +msgid "Show hierarchy" +msgstr "" + +#: includes/admin/widgets/categories.php:76 +#: includes/admin/widgets/ms-global-categories.php:92 +msgid "Show product counts" +msgstr "" + +#: includes/admin/widgets/categories.php:73 +msgid "Show as dropdown" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:710 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:736 +#: includes/admin/widgets/categories.php:30 +msgid "Select Category" +msgstr "" + +#: includes/admin/widgets/categories.php:7 +msgid "A list or dropdown of product categories from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/product-list.php:250 +msgid "Show Buy Button" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:183 +#: includes/admin/widgets/product-list.php:244 +msgid "Show Price" +msgstr "" + +#: includes/admin/widgets/product-list.php:241 +msgid "Show Excerpt" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:155 +#: includes/admin/widgets/product-list.php:238 +msgid "Thumbnail Size:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:153 +#: includes/admin/widgets/product-list.php:237 +msgid "Show Thumbnail" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:147 +#: includes/admin/widgets/product-list.php:233 +msgid "Display Settings" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:136 +#: includes/admin/widgets/ms-global-product-list.php:144 +#: includes/admin/widgets/product-list.php:230 +msgid "Enter the Slug" +msgstr "" + +#: includes/admin/widgets/product-list.php:228 +#: includes/common/template-functions.php:894 +msgid "Tag" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:686 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:712 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:739 +#: includes/admin/class-mp-shortcode-builder.php:796 +#: includes/admin/widgets/product-list.php:227 +#: includes/common/template-functions.php:886 +#: includes/common/template-functions.php:2907 +msgid "Category" +msgstr "" + +#: includes/admin/widgets/product-list.php:226 +msgid "No Filter" +msgstr "" + +#: includes/admin/widgets/product-list.php:224 +msgid "Taxonomy Filter:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:108 +#: includes/admin/widgets/product-list.php:209 +msgid "Order Products By:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:101 +#: includes/admin/widgets/product-list.php:206 +msgid "Number of Products:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:98 +#: includes/admin/widgets/product-list.php:204 +msgid "List Settings" +msgstr "" + +#: includes/admin/widgets/product-list.php:177 +msgid "Our Products" +msgstr "" + +#: includes/admin/widgets/product-list.php:144 +#: includes/common/template-functions.php:2070 +#: includes/common/template-functions.php:2347 +#: includes/multisite/template-functions.php:303 +#: includes/multisite/template-functions.php:623 +msgid "No Products" +msgstr "" + +#: includes/admin/widgets/product-list.php:8 +msgid "Product List" +msgstr "" + +#: includes/admin/widgets/product-list.php:7 +msgid "Shows a customizable list of products from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/cart.php:75 includes/admin/widgets/categories.php:82 +#: includes/admin/widgets/product-list.php:253 +#: includes/admin/widgets/product-tag-cloud.php:57 +msgid "Only show on store pages" +msgstr "" + +#: includes/admin/widgets/cart.php:65 +#: includes/admin/widgets/ms-global-product-list.php:92 +#: includes/admin/widgets/product-list.php:200 +msgid "Custom Text:" +msgstr "" + +#: includes/admin/widgets/cart.php:64 includes/admin/widgets/categories.php:69 +#: includes/admin/widgets/ms-global-categories.php:59 +#: includes/admin/widgets/ms-global-product-list.php:87 +#: includes/admin/widgets/ms-global-tag-cloud.php:49 +#: includes/admin/widgets/product-list.php:199 +#: includes/admin/widgets/product-tag-cloud.php:49 +msgid "Title:" +msgstr "" + +#: includes/admin/widgets/cart.php:7 +msgid "Shows dynamic shopping cart contents along with a checkout button for your MarketPress store." +msgstr "" + +#: includes/admin/widgets/product-tag-cloud.php:8 +msgid "Product Tag Cloud" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:539 +#: includes/admin/class-mp-setup-wizard.php:575 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:163 +msgid "Measurement System" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:616 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:149 +msgid "Select Shipping Options" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:596 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:129 +msgid "Calculated Options" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:582 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:115 +msgid "No Shipping" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:110 +msgid "EU" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:109 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:93 +msgid "All" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:92 +msgid "Select:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:185 +msgid "Store Pages" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:223 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:256 +msgid "Order Shipped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:60 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:95 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:128 +#: marketpress.php:266 +msgid "New Order" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:314 +msgid "Email Notifications" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:59 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:200 +msgid "Products List" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:58 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:190 +msgid "Store Base" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:108 +#: includes/admin/class-mp-shortcode-builder.php:635 +#: includes/admin/class-mp-shortcode-builder.php:708 +#: includes/admin/class-mp-shortcode-builder.php:875 +#: includes/admin/class-mp-shortcode-builder.php:1319 +#: includes/admin/class-mp-shortcode-builder.php:1422 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:526 +#: includes/admin/widgets/ms-global-categories.php:78 +#: includes/admin/widgets/ms-global-product-list.php:127 +#: includes/admin/widgets/product-list.php:221 +msgid "Ascending" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:109 +#: includes/admin/class-mp-shortcode-builder.php:636 +#: includes/admin/class-mp-shortcode-builder.php:709 +#: includes/admin/class-mp-shortcode-builder.php:876 +#: includes/admin/class-mp-shortcode-builder.php:1320 +#: includes/admin/class-mp-shortcode-builder.php:1423 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:525 +#: includes/admin/widgets/ms-global-categories.php:75 +#: includes/admin/widgets/ms-global-product-list.php:124 +#: includes/admin/widgets/product-list.php:220 +msgid "Descending" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:637 +#: includes/admin/class-mp-shortcode-builder.php:695 +#: includes/admin/class-mp-shortcode-builder.php:862 +#: includes/admin/class-mp-shortcode-builder.php:1306 +#: includes/admin/class-mp-shortcode-builder.php:1424 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:518 +#: includes/admin/widgets/ms-global-product-list.php:121 +#: includes/admin/widgets/product-list.php:218 +msgid "Random" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:694 +#: includes/admin/class-mp-shortcode-builder.php:861 +#: includes/admin/class-mp-shortcode-builder.php:1305 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:517 +#: includes/admin/widgets/ms-global-product-list.php:119 +#: includes/admin/widgets/product-list.php:216 +msgid "Product Price" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:693 +#: includes/admin/class-mp-shortcode-builder.php:860 +#: includes/admin/class-mp-shortcode-builder.php:1304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:516 +#: includes/admin/widgets/ms-global-product-list.php:117 +#: includes/admin/widgets/product-list.php:215 +msgid "Number of Sales" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:692 +#: includes/admin/class-mp-shortcode-builder.php:859 +#: includes/admin/class-mp-shortcode-builder.php:1303 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:515 +#: includes/admin/widgets/product-list.php:214 +msgid "Product Author" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:691 +#: includes/admin/class-mp-shortcode-builder.php:858 +#: includes/admin/class-mp-shortcode-builder.php:1302 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:514 +#: includes/admin/widgets/product-list.php:213 +msgid "Product ID" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:690 +#: includes/admin/class-mp-shortcode-builder.php:857 +#: includes/admin/class-mp-shortcode-builder.php:1301 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:513 +#: includes/admin/widgets/ms-global-product-list.php:113 +#: includes/admin/widgets/product-list.php:212 +msgid "Publish Date" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:430 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:726 +msgid "Width" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:439 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:735 +msgid "Height" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:88 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:402 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:698 +msgid "Custom" +msgstr "" + +#: includes/common/class-mp-product.php:179 +#: includes/common/class-mp-product.php:992 +#: includes/common/class-mp-product.php:1000 +#: includes/multisite/template-functions.php:579 +msgid "Buy Now" +msgstr "" + +#: includes/common/class-mp-product.php:175 +#: includes/common/class-mp-product.php:990 +#: includes/common/class-mp-product.php:998 +msgid "Add To Cart" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:807 +msgid "Store Style" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1021 +msgid "Edit Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupon.php:580 +#: includes/admin/class-mp-ajax.php:238 +#: includes/admin/class-mp-products-admin.php:1532 +msgid "Unlimited" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1198 +msgid "Remaining Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1197 +msgid "Used" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:752 +#: includes/admin/class-mp-products-admin.php:2343 +msgid "Start Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:598 +msgid "Coupon Code" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:444 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:284 +msgid "Save Changes" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:57 +#: includes/admin/class-mp-shortcode-builder.php:716 +#: includes/admin/class-mp-shortcode-builder.php:727 +#: includes/admin/class-mp-shortcode-builder.php:883 +#: includes/admin/class-mp-shortcode-builder.php:894 +#: includes/admin/class-mp-shortcode-builder.php:946 +#: includes/admin/class-mp-shortcode-builder.php:956 +#: includes/admin/class-mp-shortcode-builder.php:1006 +#: includes/admin/class-mp-shortcode-builder.php:1327 +#: includes/admin/class-mp-shortcode-builder.php:1338 +#: includes/admin/store-settings/class-mp-store-settings-general.php:357 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:270 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:108 +#: includes/admin/widgets/ms-global-product-list.php:172 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:94 +msgid "None" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:352 +msgid "Google Analytics Ecommerce Tracking" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:310 +msgid "This option turns MarketPress into more of a product listing plugin, disabling shopping carts, checkout, and order management. This is useful if you simply want to list items you can buy in a store somewhere else, optionally linking the \"Buy Now\" buttons to an external site. Some examples are a car dealership, or linking to songs/albums in itunes, or linking to products on another site with your own affiliate links." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:304 +msgid "Whether or not customers must be registered and logged in to checkout. (Not recommended: Enabling this can lower conversions)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:258 +msgid "How many times may a customer download a file they have purchased? (It's best to set this higher than one in case they have any problems downloading)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:257 +msgid "Maximum Downloads" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:298 +msgid "This will set the product to draft if inventory of all variations is gone." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:288 +msgid "At what low stock count do you want to be warned for products you have enabled inventory tracking for?" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:208 +#: includes/admin/store-settings/class-mp-store-settings-general.php:287 +msgid "Inventory Warning Threshold" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:282 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:542 +msgid "Miscellaneous Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:429 +#: includes/multisite/class-mp-admin-multisite.php:247 +msgid "Show Decimal in Prices" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:451 +#: includes/admin/store-settings/class-mp-store-settings-general.php:403 +#: includes/multisite/class-mp-admin-multisite.php:221 +msgid "Currency Symbol Position" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:444 +#: includes/admin/store-settings/class-mp-store-settings-general.php:396 +msgid "Store Currency" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:429 +#: includes/admin/store-settings/class-mp-store-settings-general.php:381 +msgid "Currency Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:516 +msgid "Please see your local tax laws. Note if this is enabled and a downloadable only cart, rates will be the default for your base location." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:529 +msgid "Apply Tax to Downloadable Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:498 +msgid "Enabling this option allows you to enter and show all prices inclusive of tax, while still listing the tax total as a line item in shopping carts. Please see your local tax laws." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:497 +msgid "Enter Prices Inclusive of Tax?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:492 +msgid "Please see your local tax laws. Most areas charge tax on shipping fees." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:491 +msgid "Apply Tax To Shipping Fees?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:674 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:565 +#: includes/common/payment-gateways/authorizenet-aim.php:291 +#: includes/common/payment-gateways/authorizenet-aim.php:326 +#: includes/common/payment-gateways/payfast.php:347 +msgid "No" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:675 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:759 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:512 +#: includes/admin/class-mp-setup-wizard.php:518 +#: includes/admin/class-mp-setup-wizard.php:524 +#: includes/admin/class-mp-setup-wizard.php:530 +#: includes/admin/class-mp-setup-wizard.php:564 +#: includes/admin/store-settings/class-mp-store-settings-general.php:232 +#: includes/admin/store-settings/class-mp-store-settings-general.php:299 +#: includes/admin/store-settings/class-mp-store-settings-general.php:305 +#: includes/admin/store-settings/class-mp-store-settings-general.php:311 +#: includes/admin/store-settings/class-mp-store-settings-general.php:317 +#: includes/admin/store-settings/class-mp-store-settings-general.php:328 +#: includes/admin/store-settings/class-mp-store-settings-general.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:341 +#: includes/admin/store-settings/class-mp-store-settings-general.php:348 +#: includes/admin/store-settings/class-mp-store-settings-general.php:367 +#: includes/admin/store-settings/class-mp-store-settings-general.php:493 +#: includes/admin/store-settings/class-mp-store-settings-general.php:499 +#: includes/admin/store-settings/class-mp-store-settings-general.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:556 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:375 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:381 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:387 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:474 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:493 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:532 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:574 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:606 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:664 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:670 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:677 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:683 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:689 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:763 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:774 +#: includes/common/payment-gateways/_bitpay.php:250 +#: includes/common/payment-gateways/_bitpay.php:257 +#: includes/common/payment-gateways/_bitpay.php:264 +#: includes/common/payment-gateways/authorizenet-aim.php:290 +#: includes/common/payment-gateways/authorizenet-aim.php:325 +#: includes/common/payment-gateways/free_orders.php:160 +#: includes/common/payment-gateways/payfast.php:346 +#: includes/common/payment-gateways/paymill.php:162 +#: includes/common/payment-gateways/paypal-payflow.php:441 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-checkbox.php:22 +msgid "Yes" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:492 +#: includes/admin/store-settings/class-mp-store-settings-general.php:472 +msgid "%s Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:467 +#: includes/admin/store-settings/class-mp-store-settings-general.php:449 +msgid "Tax Settings" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:370 +#: includes/admin/store-settings/class-mp-store-settings-general.php:624 +msgid "Base Zip/Postal Code" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:354 +#: includes/admin/store-settings/class-mp-store-settings-general.php:608 +msgid "Base State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:589 +msgid "Base Country" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:582 +msgid "Location Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:195 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:800 +#: includes/multisite/class-mp-admin-multisite.php:172 +msgid "General Settings" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1945 +#: includes/admin/class-mp-products-admin.php:2185 +#: includes/admin/class-mp-store-settings-admin.php:111 +#: includes/admin/class-mp-store-settings-admin.php:266 +msgid "General" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:242 +msgid "Importers" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +#: includes/admin/class-mp-store-settings-admin.php:234 +msgid "Payments" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:313 +#: includes/admin/class-mp-store-settings-admin.php:112 +#: includes/admin/class-mp-store-settings-admin.php:222 +msgid "Presentation" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:916 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1015 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1018 +#: includes/admin/class-mp-dashboard-widgets.php:305 marketpress.php:702 +msgid "Coupons" +msgstr "" + +#: includes/admin/class-mp-admin.php:251 +msgid "Download »" +msgstr "" + +#: includes/admin/class-mp-admin.php:245 +#: includes/admin/class-mp-exporter-orders.php:170 +msgid "All Statuses" +msgstr "" + +#: includes/admin/class-mp-admin.php:209 +#: includes/admin/class-mp-exporter-orders.php:150 +#: includes/admin/class-mp-exporter-orders.php:178 +msgid "Export Orders" +msgstr "" + +#: includes/admin/class-mp-admin.php:228 +msgid "Show all dates" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:947 +msgid "Change Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:287 +msgid "Order Notes" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:478 +msgid "Other" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:205 +msgid "Subtotal" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:84 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:87 +#: includes/admin/class-mp-products-admin.php:1737 +#: includes/common/class-mp-cart.php:1409 +#: includes/common/class-mp-product.php:559 +msgid "Quantity" +msgstr "" + +#: includes/common/helpers.php:93 +msgid "Item" +msgstr "" + +#: includes/common/class-mp-order.php:1050 +msgid "Current Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:297 +msgid "Order Actions" +msgstr "" + +#: includes/common/class-mp-product.php:1084 +msgid "More Info »" +msgstr "" + +#: includes/common/class-mp-product.php:2313 +msgid "Low Product Inventory Notification" +msgstr "" + +#: includes/common/class-mp-order.php:338 includes/common/data.php:154 +msgid "New Order Notification: ORDERID" +msgstr "" + +#: includes/common/helpers.php:259 +msgid "Your payment for this order is complete." +msgstr "" + +#: includes/common/helpers.php:261 +msgid "Your payment for this order is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/helpers.php:256 +msgid "Payment Total:" +msgstr "" + +#: includes/common/helpers.php:253 +msgid "Transaction ID:" +msgstr "" + +#: includes/common/helpers.php:249 +msgid "Payment Type:" +msgstr "" + +#: includes/common/helpers.php:246 +msgid "Payment Method:" +msgstr "" + +#: includes/common/helpers.php:242 +msgid "Order Notes:" +msgstr "" + +#: includes/common/helpers.php:237 +msgid "Special Instructions:" +msgstr "" + +#: includes/common/helpers.php:232 +msgid "Tracking Number:" +msgstr "" + +#: includes/common/helpers.php:223 includes/common/helpers.php:226 +#: includes/common/helpers.php:228 +#: includes/common/shipping-modules/class-mp-shipping-api.php:406 +#: includes/common/shipping-modules/class-mp-shipping-api.php:428 +msgid "Shipping Method:" +msgstr "" + +#: includes/common/helpers.php:168 +msgid "No shipping required for this order." +msgstr "" + +#: includes/common/helpers.php:155 +msgid "Order Total:" +msgstr "" + +#: includes/common/class-mp-order.php:1025 +msgid "Taxes:" +msgstr "" + +#: includes/common/class-mp-order.php:1032 includes/common/helpers.php:144 +msgid "Shipping:" +msgstr "" + +#: includes/public/class-mp-checkout.php:367 +msgid "Street address, P.O. box, company name, c/o" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:314 +msgid "Shipping Info" +msgstr "" + +#: includes/public/class-mp-public.php:740 +msgid "Whoops, there was a problem loading up this file for your download. Please contact us for help." +msgstr "" + +#: includes/public/class-mp-public.php:683 +msgid "Sorry, our records show you've downloaded this file %d out of %d times allowed. Please contact us if you still need help." +msgstr "" + +#: includes/public/class-mp-public.php:634 +msgid "Sorry, your order has been marked as unpaid." +msgstr "" + +#: includes/public/class-mp-public.php:629 +msgid "Sorry, the link is invalid for this download." +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:15 +#: includes/admin/class-mp-products-admin.php:1172 +msgid "Cheatin’ uh?" +msgstr "" + +#: includes/public/class-mp-public.php:407 +#: includes/public/class-mp-short-codes.php:128 +msgid "Please enter a valid email address." +msgstr "" + +#: includes/admin/class-mp-ajax.php:191 +#: includes/admin/class-mp-products-admin.php:1821 +#: includes/admin/class-mp-products-admin.php:2010 +#: includes/admin/class-mp-products-admin.php:2267 +msgid "File URL" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1842 +msgid "External Link" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2177 +msgid "Add Variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:126 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:289 +msgid "Inventory" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:438 +#: includes/admin/class-mp-products-admin.php:578 +#: includes/admin/class-mp-products-admin.php:1552 +#: includes/admin/class-mp-products-admin.php:2053 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:134 +msgid "Sale Price" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "Variation Name" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1931 +msgid "Product Details" +msgstr "" + +#: includes/admin/class-mp-product-attributes-list-table.php:33 +msgid "Delete" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1057 +msgid "Trashed" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:231 +#: includes/admin/class-mp-orders-admin.php:1015 +#: includes/common/class-mp-order.php:1052 includes/common/helpers.php:97 +msgid "Total" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1196 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:210 +#: includes/admin/class-mp-orders-admin.php:1014 +msgid "Discount" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:221 +#: includes/admin/class-mp-orders-admin.php:1013 +#: includes/common/payment-gateways/_ideal.php:148 +#: includes/common/payment-gateways/_payway.php:134 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:108 +msgid "Tax" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:216 +#: includes/admin/class-mp-orders-admin.php:1012 +#: includes/admin/class-mp-products-admin.php:1958 +#: includes/admin/class-mp-products-admin.php:2198 +#: includes/admin/class-mp-store-settings-admin.php:114 +#: includes/admin/class-mp-store-settings-admin.php:230 +#: includes/common/class-mp-cart.php:717 includes/common/helpers.php:168 +#: includes/common/payment-gateways/_ideal.php:137 +#: includes/common/payment-gateways/_payway.php:116 +#: includes/public/class-mp-checkout.php:1304 +msgid "Shipping" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1011 +msgid "Items" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1010 +msgid "From" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:154 +#: includes/admin/class-mp-orders-admin.php:1009 +#: includes/common/class-mp-gdpr.php:370 +msgid "Order Date" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1008 +#: includes/common/class-mp-gdpr.php:366 +#: includes/common/template-functions.php:2134 +msgid "Order ID" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:22 +#: includes/admin/class-mp-orders-admin.php:1007 +msgid "Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1155 +msgid "N/A" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:243 +#: includes/admin/class-mp-products-admin.php:464 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:142 +msgid "Sales" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:463 +msgid "Stock" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:85 +#: includes/admin/class-mp-ajax.php:176 includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:434 +#: includes/admin/class-mp-products-admin.php:462 +#: includes/admin/class-mp-products-admin.php:576 +#: includes/admin/class-mp-products-admin.php:1519 +#: includes/admin/class-mp-products-admin.php:1569 +#: includes/admin/class-mp-products-admin.php:1950 +#: includes/admin/class-mp-products-admin.php:2059 +#: includes/admin/class-mp-products-admin.php:2190 +#: includes/admin/class-mp-products-admin.php:2330 +#: includes/common/class-mp-cart.php:1415 includes/common/helpers.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:130 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:276 +msgid "Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:173 +#: includes/admin/class-mp-products-admin.php:461 +#: includes/admin/class-mp-products-admin.php:1972 +#: includes/admin/class-mp-products-admin.php:2224 +msgid "SKU" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:459 +#: includes/admin/class-mp-products-admin.php:1793 +#: includes/admin/class-mp-products-admin.php:1805 +#: includes/admin/class-mp-products-admin.php:2163 +msgid "Variations" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:83 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:86 +#: includes/admin/class-mp-dashboard-widgets.php:134 +#: includes/admin/class-mp-products-admin.php:458 +#: includes/admin/class-mp-products-admin.php:837 +#: includes/admin/class-mp-shortcode-builder.php:689 +#: includes/admin/class-mp-shortcode-builder.php:856 +#: includes/admin/class-mp-shortcode-builder.php:1300 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:512 +#: includes/admin/widgets/ms-global-product-list.php:115 +#: includes/admin/widgets/product-list.php:211 +msgid "Product Name" +msgstr "" + +#: includes/common/template-functions.php:2575 +msgid "Categorized in " +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:305 +#: includes/common/payment-gateways/free_orders.php:176 +msgid "Payment Information" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:167 +#: includes/admin/class-mp-orders-admin.php:432 +#: includes/admin/class-mp-pages-admin.php:62 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:227 +#: includes/common/class-mp-gdpr.php:374 +#: includes/common/template-functions.php:175 +#: includes/common/template-functions.php:926 +msgid "Order Status" +msgstr "" + +#. translators: %s: orders closed +#: marketpress.php:327 +msgid "Closed (%s)" +msgid_plural "Closed (%s)" +msgstr[0] "" + +#: includes/admin/class-mp-admin.php:249 +#: includes/admin/class-mp-orders-admin.php:375 +#: includes/admin/class-mp-orders-admin.php:951 +#: includes/admin/class-mp-orders-admin.php:1053 +#: includes/admin/class-mp-orders-admin.php:1065 +#: includes/common/class-mp-gdpr.php:330 +#: includes/common/class-mp-order.php:1019 marketpress.php:325 +msgid "Closed" +msgstr "" + +#. translators: %s: shipped orders +#: marketpress.php:320 +msgid "Shipped (%s)" +msgid_plural "Shipped (%s)" +msgstr[0] "" + +#: includes/admin/class-mp-admin.php:248 +#: includes/admin/class-mp-orders-admin.php:376 +#: includes/admin/class-mp-orders-admin.php:950 +#: includes/admin/class-mp-orders-admin.php:1049 +#: includes/admin/class-mp-orders-admin.php:1064 +#: includes/common/class-mp-gdpr.php:329 +#: includes/common/class-mp-order.php:1002 marketpress.php:318 +msgid "Shipped" +msgstr "" + +#. translators: %s: paid orders +#: marketpress.php:313 +msgid "Paid (%s)" +msgid_plural "Paid (%s)" +msgstr[0] "" + +#: includes/admin/class-mp-admin.php:247 +#: includes/admin/class-mp-orders-admin.php:377 +#: includes/admin/class-mp-orders-admin.php:949 +#: includes/admin/class-mp-orders-admin.php:1045 +#: includes/admin/class-mp-orders-admin.php:1063 +#: includes/common/class-mp-gdpr.php:328 +#: includes/common/payment-gateways/2checkout.php:294 +#: includes/common/payment-gateways/_cubepoints.php:130 +#: includes/common/payment-gateways/authorizenet-aim.php:193 +#: includes/common/payment-gateways/free_orders.php:91 +#: includes/common/payment-gateways/mijireh.php:248 +#: includes/common/payment-gateways/paymill.php:273 +#: includes/common/payment-gateways/paypal-express.php:933 +#: includes/common/payment-gateways/paypal-express.php:967 +#: includes/common/payment-gateways/pin.php:258 +#: includes/common/payment-gateways/simplify.php:181 +#: includes/common/payment-gateways/stripe.php:368 +#: includes/common/payment-gateways/wepay.php:269 marketpress.php:311 +msgid "Paid" +msgstr "" + +#. translators: %s: orders received +#: marketpress.php:306 +msgid "Received (%s)" +msgid_plural "Received (%s)" +msgstr[0] "" + +#: includes/admin/class-mp-admin.php:246 +#: includes/admin/class-mp-orders-admin.php:378 +#: includes/admin/class-mp-orders-admin.php:1041 +#: includes/admin/class-mp-orders-admin.php:1062 +#: includes/common/class-mp-gdpr.php:327 includes/common/class-mp-order.php:995 +#: includes/common/payment-gateways/payfast.php:244 marketpress.php:304 +msgid "Received" +msgstr "" + +#: marketpress.php:268 +msgid "Search Orders" +msgstr "" + +#: marketpress.php:267 +msgid "View Order" +msgstr "" + +#: marketpress.php:262 +msgid "Order" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:301 +#: includes/admin/class-mp-orders-admin.php:989 marketpress.php:261 +msgid "Orders" +msgstr "" + +#: marketpress.php:228 +msgid "No Products found in Trash" +msgstr "" + +#: marketpress.php:227 +msgid "No Products Found" +msgstr "" + +#: marketpress.php:226 +msgid "Search Products" +msgstr "" + +#: marketpress.php:225 marketpress.php:229 +msgid "View Product" +msgstr "" + +#: marketpress.php:224 +msgid "New Product" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1022 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:258 +#: marketpress.php:223 +msgid "Edit" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1019 +msgid "Create New" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:687 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:698 +#: marketpress.php:217 +msgid "Product" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:307 +#: includes/common/template-functions.php:173 +#: includes/common/template-functions.php:179 +#: includes/common/template-functions.php:902 +#: includes/multisite/template-functions.php:82 marketpress.php:216 +#: marketpress.php:219 +msgid "Products" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:118 +#: includes/admin/widgets/product-tag-cloud.php:46 +#: includes/multisite/class-mp-admin-multisite.php:548 +msgid "Product Tags" +msgstr "" + +#: includes/common/template-functions.php:2906 +#: includes/multisite/template-functions.php:449 +msgid "Product Category" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:117 +#: includes/admin/widgets/categories.php:8 +#: includes/admin/widgets/categories.php:18 +#: includes/multisite/class-mp-admin-multisite.php:539 +msgid "Product Categories" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:332 +#: includes/common/template-functions.php:872 marketpress.php:218 +msgid "Store" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:60 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:209 +#: includes/admin/widgets/cart.php:8 includes/admin/widgets/cart.php:56 +#: includes/common/template-functions.php:174 +#: includes/common/template-functions.php:811 +msgid "Shopping Cart" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:110 +#: includes/admin/class-mp-store-settings-admin.php:218 +msgid "Store Settings" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:128 marketpress.php:607 +msgid "Settings" +msgstr "" + +#: includes/common/data.php:178 includes/common/data.php:190 +msgid "Your Order Has Been Shipped! (ORDERID)" +msgstr "" + +#: includes/common/data.php:159 includes/common/data.php:166 +#: includes/common/data.php:172 +msgid "Your Order Confirmation (ORDERID)" +msgstr "" + +#: includes/common/data.php:148 +msgid "

    Thank you for your order! We appreciate your business, and please come back often to check out our new products.

    " +msgstr "" + +#: includes/common/data.php:147 +msgid "

    You are almost done! Please do a final review of your order to make sure everything is correct then click the \"Confirm Payment\" button.

    " +msgstr "" + +#: includes/common/data.php:145 +msgid "

    Please enter your shipping information in the form below to proceed with your order.

    " +msgstr "" + +#: includes/common/data.php:143 +msgid "

    If you have any questions about your order please do not hesitate to contact us.

    " +msgstr "" + +#: includes/common/data.php:106 +msgid "tag" +msgstr "" + +#: includes/common/data.php:105 +msgid "category" +msgstr "" + +#: includes/common/data.php:104 +msgid "order-status" +msgstr "" + +#: includes/common/data.php:103 +msgid "shopping-cart" +msgstr "" + +#: includes/common/data.php:102 +msgid "products" +msgstr "" + +#. Translators: change default slugs here +#: includes/common/data.php:101 +msgid "store" +msgstr "" \ No newline at end of file diff --git a/languages/mp-ms.mo b/languages/mp-ms.mo new file mode 100644 index 0000000000000000000000000000000000000000..358ed768edfa699c8a4f82df7294acd88fd8dcc0 GIT binary patch literal 21709 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 CUqO5T literal 0 HcmV?d00001 diff --git a/languages/mp-ms.po b/languages/mp-ms.po new file mode 100644 index 00000000..5bbe7c0a --- /dev/null +++ b/languages/mp-ms.po @@ -0,0 +1,8946 @@ +# Translation of MarketPress in Malay +# This file is distributed under the same license as the MarketPress package. +msgid "" +msgstr "" +"PO-Revision-Date: 2016-10-09 07:58:52+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: GlotPress/2.3.1\n" +"Language: ms\n" +"Project-Id-Version: MarketPress\n" + +#: includes/public/class-mp-checkout.php:1285 +msgid "By clicking this checkbox you allow the website to process your personal data." +msgstr "" + +#: includes/common/class-mp-gdpr.php:382 +msgid "Order Info" +msgstr "" + +#: includes/common/class-mp-gdpr.php:268 +msgid "Shipping Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:267 +msgid "Shipping Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:266 +msgid "Shipping ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:265 +msgid "Shipping State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:264 +msgid "Shipping City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:263 +msgid "Shipping Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:262 +msgid "Shipping Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:261 +msgid "Shipping Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:260 +msgid "Shipping Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:259 +msgid "Shipping Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:258 +msgid "Shipping First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:254 +msgid "Billing Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:253 +msgid "Billing Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:252 +msgid "Billing ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:251 +msgid "Billing State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:250 +msgid "Billing City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:249 +msgid "Billing Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:248 +msgid "Billing Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:247 +msgid "Billing Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:246 +msgid "Billing Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:245 +msgid "Billing Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:244 +msgid "Billing First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:151 +msgid "Orders Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:139 +msgid "Customer Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:100 includes/common/class-mp-gdpr.php:116 +msgid "MarketPress User Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:81 +msgid "" +"In addition to standard WordPress session cookies, this site might be setting an\n" +"\t\t additional cookie to remember your cart settings. This cookie will last for one year." +msgstr "" + +#: includes/common/class-mp-gdpr.php:80 +msgid "Cookies" +msgstr "" + +#: includes/common/class-mp-gdpr.php:77 +msgid "" +"The following information will be collected in order to process orders: your name,\n" +"\t\t username, email address, avatar and profile URLs, address and phone number. This data can be\n" +"\t\t exported and removed." +msgstr "" + +#: includes/common/class-mp-gdpr.php:76 +msgid "Additional data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:71 +msgid "" +"This site might be using third party services and tools to process payments or/and\n" +"\t\t process shipping data when creating orders on the MarketPress store. These services include payment\n" +"\t\t gateways: 2Checkout, Authorize.net AIM, eWay shared payments, eWay Rapid 3.1 Payments, Mijireh,\n" +"\t\t Mollie, Paymill, PayPal, PIN, Simplify Commerce by MasterCard, Stripe and WePay; shipping gateways:\n" +"\t\t Fedex, UPS, USPS." +msgstr "" + +#: includes/common/class-mp-gdpr.php:70 +msgid "Third parties" +msgstr "" + +#: includes/admin/class-mp-admin.php:403 +msgid "Start creating store pages and products for your online shop here." +msgstr "" + +#: includes/admin/class-mp-admin.php:402 +msgid "Create Online Shop" +msgstr "" + +#: includes/admin/class-mp-admin.php:394 +msgid "Run Setup Wizard" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:234 +msgid "If having problems during invoice generation, add define( 'DOMPDF_ENABLE_HTML5PARSER', true ); to the wp-config.php file." +msgstr "" + +#: includes/public/class-mp-checkout.php:723 +msgid "Invalid Email" +msgstr "" + +#: includes/public/class-mp-checkout.php:721 +#: includes/public/class-mp-checkout.php:729 +msgid "This field is required" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:804 +msgid "This option changes the built-in css styles for store pages. For a custom css style, save your css file with the /* MarketPress Style: Your CSS Theme Name Here */ header line in the \"%s\" folder and it will appear in this list so you may select it. You should select \"None\" if you don't wish to use custom CSS styles or if you are using default theme templates or custom theme templates and css to make your own completely unique store design. For more information on custom theme templates click here »." +msgstr "" + +#: includes/public/class-mp-public.php:421 +#: includes/public/class-mp-short-codes.php:142 +msgid "Please enter a value greater than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:420 +#: includes/public/class-mp-short-codes.php:141 +msgid "Please enter a value less than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:419 +#: includes/public/class-mp-short-codes.php:140 +msgid "Please enter a value between {0} and {1}." +msgstr "" + +#: includes/public/class-mp-public.php:418 +#: includes/public/class-mp-short-codes.php:139 +msgid "Please enter a value between {0} and {1} characters long." +msgstr "" + +#: includes/public/class-mp-public.php:417 +#: includes/public/class-mp-short-codes.php:138 +msgid "Please enter at least {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:416 +#: includes/public/class-mp-short-codes.php:137 +msgid "Please enter no more than {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:415 +#: includes/public/class-mp-short-codes.php:136 +msgid "Please enter a value with a valid extension." +msgstr "" + +#: includes/public/class-mp-public.php:414 +#: includes/public/class-mp-short-codes.php:135 +msgid "Please enter the same value again." +msgstr "" + +#: includes/public/class-mp-public.php:413 +#: includes/public/class-mp-short-codes.php:134 +msgid "Please enter a valid credit card number." +msgstr "" + +#: includes/public/class-mp-public.php:412 +#: includes/public/class-mp-short-codes.php:133 +msgid "Please enter only digits." +msgstr "" + +#: includes/public/class-mp-public.php:411 +#: includes/public/class-mp-short-codes.php:132 +msgid "Please enter a valid number." +msgstr "" + +#: includes/public/class-mp-public.php:410 +#: includes/public/class-mp-short-codes.php:131 +msgid "Please enter a valid date (ISO)." +msgstr "" + +#: includes/public/class-mp-public.php:409 +#: includes/public/class-mp-short-codes.php:130 +msgid "Please enter a valid date." +msgstr "" + +#: includes/public/class-mp-public.php:408 +#: includes/public/class-mp-short-codes.php:129 +msgid "Please enter a valid URL." +msgstr "" + +#: includes/public/class-mp-public.php:406 +#: includes/public/class-mp-short-codes.php:127 +msgid "Please fix this field." +msgstr "" + +#: includes/public/class-mp-checkout.php:1287 +#: includes/public/class-mp-public.php:405 +#: includes/public/class-mp-short-codes.php:126 +msgid "This field is required." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:810 +msgid "None - Without Special CSS-styles" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:809 +msgid "Default - Using Default CSS-styles" +msgstr "" + +#: marketpress.php:739 +msgid "Enable multiple downloads per product" +msgstr "" + +#: marketpress.php:738 +msgid "Multiple Downloads" +msgstr "" + +#: includes/public/class-mp-checkout.php:715 +msgid "Invalid Zip Code" +msgstr "" + +#: includes/common/template-functions.php:2126 +msgid "Guest Email" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:195 +msgid "There was a problem finalizing your purchase. Please re-enter your credit card information and try again" +msgstr "" + +#: includes/common/class-mp-cart.php:565 includes/common/class-mp-order.php:600 +#: includes/common/helpers.php:111 +msgid "Download %1$s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:331 +msgid "Export products to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:328 +msgid "The import process uses the WordPress importer plugin." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:326 +msgid "Import / Export Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:325 +msgid "Export settings to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:324 +msgid "Import configuration" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:320 +msgid "Use the text below to export to a new installation. Or paste in the new configuration to import." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:318 +msgid "Import / Export Settings" +msgstr "" + +#. translators: URL to wp-admin/import.php +#: includes/admin/store-settings/class-mp-store-settings-import.php:266 +msgid "This importer is not installed. Please install importers from the main site." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:261 +msgid "Install Now" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:260 +msgid "Install %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:240 +msgid "Run Importer" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:239 +msgid "Run %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:258 +msgid "Import/Export" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1199 +msgid "Requires Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:737 +msgid "Optionally limit the user to some categories" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:671 +msgid "Should this coupon only be available to logged in users?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:670 +msgid "Require Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:655 +msgid "Mimimum number of products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:653 +msgid "Enter the minimum number of products in the cart that this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:648 +msgid "Can this coupon be limited to a number of products in the cart?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:334 +msgid "Add all values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:265 +msgid "Set as default variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:154 +msgid "Set Default" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:150 +msgid "More Info" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:40 +msgid "MarketPress - Quick Setup" +msgstr "" + +#: includes/public/class-mp-checkout.php:1399 +msgid "Proceed to checkout and create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1241 +#: includes/public/class-mp-checkout.php:1245 +msgid "Register account" +msgstr "" + +#: includes/public/class-mp-checkout.php:1233 +msgid "Register as customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:765 +msgid "

    Oops!

    Looks like you haven't added anything your cart. Let's go shopping!

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:763 +msgid "

    Oops!

    The cart is disabled.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing Information" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:214 +msgid "Global Currency" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:198 +msgid "Global Store Currency" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:507 +msgid "There are no shipping services available for this type of package in your location." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:168 +msgid "Using this USPS Shipping calculator requires requesting an Ecommerce API Username and Password. Get your free set of credentials here ». The password is no longer used for the API, just the username which you should enter below. The USPS test site has not yet been updated and currently doesn't work - you should just request activating your credentials with USPS and go live." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:339 +msgid "ZIP Code" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:334 +msgid "Last name" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:333 +msgid "First name" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:150 +msgid "These are the manual payment instructions to display on the order confirmation screen. TOTAL will be replaced with the order total and ORDERID will be replaced with Order ID." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:240 +msgid "You must login to Authorize.net merchant dashboard to obtain the API login ID and API transaction key. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:327 +msgid "
    1. Set the \"Return Method\" within Site Management to Header Redirect and set the \"Return URL\" to %s
    2. Set your notifications url to %s
    " +msgstr "" + +#: includes/common/data.php:191 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Also, digital downloads included in your order are now ready to be downloaded. Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:185 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order is now available to download! Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:184 +msgid "Your Order Is Ready To Be Downloaded! (ORDERID)" +msgstr "" + +#: includes/common/data.php:179 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:173 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received, your digital goods are ready to be downloaded and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:167 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received and your digital goods are ready to be downloaded. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:160 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +" Your order has been received, and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information: \n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/class-mp-product.php:638 +msgid "You can not add more items to cart." +msgstr "" + +#: includes/common/class-mp-product.php:635 +msgid "You can only add {0} to cart." +msgstr "" + +#: includes/common/class-mp-product.php:625 +msgid "This product has an order limit of %d." +msgstr "" + +#: includes/common/class-mp-order.php:1454 +msgid "Shipped: tracking code: %s" +msgstr "" + +#: includes/common/class-mp-order.php:1000 +#: includes/common/class-mp-order.php:1012 +msgid "Finished" +msgstr "" + +#: includes/common/class-mp-order.php:858 +msgid "Contact Details" +msgstr "" + +#: includes/common/class-mp-order.php:339 includes/common/data.php:155 +msgid "" +"A new order (ORDERID) was created in your store:\n" +"\n" +" ORDERINFOSKU\n" +"\n" +" SHIPPINGINFO\n" +"\n" +" PAYMENTINFO\n" +"\n" +msgstr "\n" + +#: includes/common/class-mp-cart.php:1858 +msgid "Add again" +msgstr "" + +#: includes/common/class-mp-cart.php:1852 +msgid "was removed from Shopping Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1242 +#: includes/public/class-mp-short-codes.php:160 +msgid "Cart update notice: this item has a limit per order or you have reached the stock limit." +msgstr "" + +#: includes/admin/widgets/product-list.php:235 +msgid "Show Only Featured Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:533 +msgid "If enabled, users won't be able to filter products per category and/or to order by release date/name/price." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:531 +msgid "Hide Products Filter?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:353 +msgid "Notification to registration email instead of billing email?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:322 +msgid "Order Shipped - Mixed orders (with both digital and physical products)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:289 +msgid "Order Shipped - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:224 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:194 +msgid "New Order - Mixed" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:161 +msgid "New Order - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:115 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:243 +msgid "Mixed orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:110 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:238 +msgid "Digital downloads orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:105 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:233 +msgid "Physical orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:96 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed.
    For orders placed with manual payment, emails set here will be overriden by the one configured in manual payments settings, under payments settings page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:89 +msgid "Customer Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:47 +msgid "Admin Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:566 +msgid "Only contact details" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:565 +msgid "Full billing info" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:561 +msgid "Details Collection" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:548 +msgid "Digital Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:515 +msgid "Apply Tax to Digital Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:236 +msgid "product (default)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:231 +msgid "If you are experiencing conflicts with other e-commerce plugins change this setting. This will change the internal post type of all your products. Please note that changing this option may break 3rd party themes or plugins." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1203 +msgid "Hide details" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1202 +msgid "Show all changes" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1184 +msgid "Version %s" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1161 +msgid "Current" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1131 +msgid "%s changelog" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:952 +msgid "We did not find any data for this plugin or theme..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:285 +msgid "Activate WPMU DEV Dashboard" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:279 +msgid "Just one more step - activate the WPMU DEV Dashboard plugin and you're all done!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:277 +msgid "Important updates are available for your WPMU DEV plugins/themes. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:273 +msgid "Just one more step to enable updates and support for %s!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:271 +msgid "Important updates are available for %s. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:264 +msgid "activate" +msgstr "" + +#: includes/admin/class-mp-admin.php:398 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:248 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:289 +msgid "Dismiss" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:247 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:288 +msgid "Saving..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:244 +msgid "Install Plugin" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:238 +msgid "Almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:236 +msgid "Important updates are available for your WPMU DEV plugins/themes. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:232 +msgid "%s is almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:230 +msgid "Important updates are available for %s. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:223 +msgid "install" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1428 +msgid "Sets the number of Tags to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1289 +msgid "How many products to display in the product list if \"paginate\" is set to false." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:739 +#: includes/admin/class-mp-shortcode-builder.php:906 +#: includes/admin/class-mp-shortcode-builder.php:1350 +msgid "Grid" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:735 +#: includes/admin/class-mp-shortcode-builder.php:902 +#: includes/admin/class-mp-shortcode-builder.php:1346 +msgid "Products will be displayed as list or grid." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:206 +msgid "Display a cloud or list of your global product tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:205 +msgid "Display a list of your global categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:204 +msgid "Display a list or grid of your global products." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:181 +msgid "Display a list of featured products." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1451 +msgid "Is Featured?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1444 +msgid "Featured Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:581 +#: includes/admin/class-mp-products-admin.php:1580 +msgid "% discount" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:579 +msgid "OR" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:460 +#: includes/admin/class-mp-products-admin.php:586 +#: includes/admin/widgets/product-list.php:217 +msgid "Featured" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:536 +#: includes/admin/class-mp-orders-admin.php:538 +msgid "Tracking Link" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:508 +msgid "Shipping Tax" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:356 +msgid "Shipping Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:352 +msgid "Taxes Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:349 +msgid "Products Total" +msgstr "" + +#: includes/admin/class-mp-ajax.php:366 +msgid "Oops! You entered an invalid username/email and or password." +msgstr "" + +#: includes/admin/class-mp-ajax.php:254 +msgid "Percentage Discount" +msgstr "" + +#: includes/admin/class-mp-ajax.php:234 +msgid "Limit the Amount of Items per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:214 +msgid "Unused Attributes" +msgstr "" + +#: includes/admin/class-mp-admin.php:82 +msgid "Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-admin.php:79 +msgid "MarketPress setup is not complete! Once you've completed this quick setup wizard you'll have a fully working online store - exciting! " +msgstr "" + +#: marketpress.php:263 +msgctxt "mp_order" +msgid "Add New" +msgstr "" + +#: marketpress.php:184 +msgctxt "product_tag" +msgid "Product Tag" +msgstr "" + +#: marketpress.php:183 +msgctxt "product_tag" +msgid "Product Tags" +msgstr "" + +#: marketpress.php:150 +msgctxt "product_category" +msgid "Product Category" +msgstr "" + +#: marketpress.php:149 +msgctxt "product_category" +msgid "Product Categories" +msgstr "" + +#. Author URI of the plugin/theme +msgid "http://premium.wpmudev.org" +msgstr "" + +#: marketpress.php:729 +msgid "Invoice PDF" +msgstr "" + +#: marketpress.php:712 +msgid "Grant access to themes and gateways depending on the user's Pro Site level" +msgstr "" + +#: marketpress.php:711 +msgid "Pro Sites" +msgstr "" + +#: marketpress.php:703 +msgid "Offer and accept coupon codes" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:687 +msgid "Install %s Pages" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:682 +msgid "Welcome to %s – Install pages required by the plugin automatically." +msgstr "" + +#: marketpress.php:668 +msgid "Your pages were created successfully." +msgstr "" + +#: marketpress.php:436 +msgid "Add a Product" +msgstr "" + +#: marketpress.php:271 +msgid "Parent Order" +msgstr "" + +#: marketpress.php:270 +msgid "No orders found in trash" +msgstr "" + +#: marketpress.php:269 +msgid "No orders found" +msgstr "Tiada pesanan dijumpai" + +#: marketpress.php:265 +msgid "Edit Order" +msgstr "" + +#: marketpress.php:264 +msgid "Add New Order" +msgstr "" + +#: marketpress.php:220 marketpress.php:221 +msgid "Add New Product" +msgstr "" + +#: marketpress.php:197 +msgid "No product tags found" +msgstr "" + +#: marketpress.php:196 +msgid "Choose from the most used product tags" +msgstr "" + +#: marketpress.php:195 +msgid "Add or remove product tags" +msgstr "" + +#: marketpress.php:194 +msgid "Separate product tags with commas" +msgstr "" + +#: marketpress.php:193 +msgid "Search Product Tags" +msgstr "" + +#: marketpress.php:192 +msgid "Parent Product Tag:" +msgstr "" + +#: marketpress.php:191 +msgid "Parent Product Tag" +msgstr "" + +#: marketpress.php:190 +msgid "New Product Tag Name" +msgstr "" + +#: marketpress.php:189 +msgid "Add New Product Tag" +msgstr "" + +#: marketpress.php:188 +msgid "Update Product Tag" +msgstr "" + +#: marketpress.php:187 +msgid "View Product Tag" +msgstr "" + +#: marketpress.php:186 +msgid "Edit Product Tag" +msgstr "" + +#: marketpress.php:185 +msgid "All Product Tags" +msgstr "" + +#: marketpress.php:163 +msgid "No product categories found" +msgstr "" + +#: marketpress.php:162 +msgid "Choose from the most used product categories" +msgstr "" + +#: marketpress.php:161 +msgid "Add or remove product categories" +msgstr "" + +#: marketpress.php:160 +msgid "Separate product categories with commas" +msgstr "" + +#: marketpress.php:159 +msgid "Search Product Categories" +msgstr "" + +#: marketpress.php:158 +msgid "Parent Product Category:" +msgstr "" + +#: marketpress.php:157 +msgid "Parent Product Category" +msgstr "" + +#: marketpress.php:156 +msgid "New Product Category Name" +msgstr "" + +#: marketpress.php:155 +msgid "Add New Product Category" +msgstr "" + +#: marketpress.php:154 +msgid "Update Product Category" +msgstr "" + +#: marketpress.php:153 +msgid "View Product Category" +msgstr "" + +#: marketpress.php:152 +msgid "Edit Product Category" +msgstr "" + +#: marketpress.php:151 +msgid "All Product Categories" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Please fix the %s1 and then try submitting the form again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Oops! The form contains %s1 which %s2 been highlighted below." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:660 +msgid "have" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:659 +msgid "has" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:651 +msgid "Value must be less than {0}" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:650 +msgid "Please enter only letters and numbers" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:539 +msgid "Due to prolonged inactivity on this page, one or more settings were not saved. Please try again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:535 +msgid "Settings Saved" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-user-select.php:22 +msgid "Select Some Users" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-section.php:18 +msgid "Section Title" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:425 +msgid "Are you sure you want to delete this?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:30 +msgid "Add Row" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-post-select.php:24 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-taxonomy-select.php:22 +msgid "Select Posts" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:210 +msgid "Add Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:129 +msgid "Select the image that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:93 +msgid "Select image(s) that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:79 +msgid "Select the image that you would like to use for this variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:48 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:82 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:68 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:132 +msgid "Select Image" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:31 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:160 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:168 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:19 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:115 +msgid "Select File" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:30 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:18 +msgid "Select the file that you would like to use." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:357 +msgid "Create Variations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:356 +msgid "Add Another Variant" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Insert a value and press ENTER" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "(e.g. White, Grey, Red etc.)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Variation Values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:333 +msgid "Or create new variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "(e.g. Color)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:303 +msgid "You are about to delete selected variants.
    If you want to continue please confirm." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:302 +msgid "Confirmation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:290 +msgid "Insert quantity available. Empty for unlimited." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:281 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:294 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:307 +msgid "Cancel" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:280 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:293 +msgid "Update" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:277 +msgid "Insert the price i.e. 25 or 25.50" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:115 +msgid "Img." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:85 +msgid "Add New Variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:79 +msgid "Delete Variants" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:78 +msgid "Update Prices" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:77 +msgid "Update Inventory" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:76 +msgid "Update Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:75 +msgid "Bulk Actions" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:73 +msgid "Select bulk action" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:196 +msgid "Configure Store" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:195 +msgid "Configure shipping rates, emails and your store's appearance. " +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:190 +msgid "Add Product" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:189 +msgid "Add your first product for sale and get familiar with adding products." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:184 +msgid "Your store is almost ready for its first customers, but first it needs some products. Get started by adding products below, or jump straight into further configuring your store’s settings." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:183 +msgid "Woohoo! Your online store is up and running." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:160 +msgid "Finish Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:124 +msgid "And what metric system do you want to use?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:113 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:142 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:159 +msgid "Back" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:109 +msgid "Do you want to apply tax for your products? You can customize this for each product and variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:105 +msgid "What currency do you want to sell with?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:93 +msgid "And, which countries do you want to sell to?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:89 +msgid "Where is your online store based?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:80 +msgid "Payment Gateway" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:79 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:123 +msgid "Metric System" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:78 +msgid "Currency & Tax" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:77 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:88 +msgid "Locations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:70 +msgid "Choose where you want to sell your stuff and what currency. Easy!" +msgstr "" + +#: includes/public/class-mp-checkout.php:1400 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:58 +msgid "Continue" +msgstr "" + +#: includes/admin/class-mp-admin.php:83 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:53 +msgid "Skip this step, I'll do this manually" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:49 +msgid "Install store pages" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:44 +msgid "Once you've completed this quick setup wizard you'll have a fully working online store - exciting! Start
    by creating the default store pages for the online store such as the cart, checkout and store pages." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:42 +msgid "MarketPress adds a full online store to your website, with heaps of configuration options and addons
    to suit your needs. It's really easy to get going, and only takes a few minutes to setup!" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:41 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:69 +msgid "Welcome to MarketPress - Quick Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-advanced-select.php:23 +msgid "Select Some Options" +msgstr "" + +#: includes/wpmudev-metaboxes/class-wpmudev-field.php:694 +msgid "You must the WPMUDEV_Field::display() method in your form field class" +msgstr "" + +#: includes/public/class-mp-short-codes.php:636 +msgid "Only %s left in stock..." +msgstr "" + +#: includes/public/class-mp-short-codes.php:633 +msgid "Unlimited stock" +msgstr "" + +#: includes/public/class-mp-short-codes.php:430 +msgid "product_id must be defined" +msgstr "" + +#: includes/public/class-mp-checkout.php:1250 +msgid "An account with this username already exists" +msgstr "" + +#: includes/public/class-mp-checkout.php:1394 +msgid "Continue as Guest" +msgstr "" + +#: includes/public/class-mp-checkout.php:1393 +msgid "Proceed to checkout and you'll have an opportunity to create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1392 +#: includes/public/class-mp-checkout.php:1398 +msgid "First-time customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1386 +msgid "Login" +msgstr "" + +#: includes/public/class-mp-checkout.php:1379 +msgid "E-Mail Address/Username" +msgstr "" + +#: includes/public/class-mp-checkout.php:1377 +msgid "Sign in to speed up the checkout process." +msgstr "" + +#: includes/public/class-mp-checkout.php:1376 +msgid "Have an account?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1297 +msgid "Shipping address different than billing?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1184 +msgid "There are no available gateways to process this payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1160 +msgid "Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:1123 +msgid "Oops! An error occurred while processing your payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1051 +msgid "Next Step »" +msgstr "" + +#: includes/public/class-mp-checkout.php:1045 +msgid "« Previous Step" +msgstr "" + +#: includes/public/class-mp-checkout.php:873 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:657 +msgid "error" +msgstr "" + +#: includes/public/class-mp-checkout.php:872 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:658 +msgid "errors" +msgstr "" + +#: includes/public/class-mp-checkout.php:871 +msgid "

    Oops! We found %d %s in the form below.

    Fields that have errors are highlighted in red below. Entering into a field will reveal the actual error that occurred.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:870 +msgid "Please enter a valid first and last name" +msgstr "" + +#: includes/public/class-mp-checkout.php:869 +msgid " Please enter a valid card security code" +msgstr "" + +#: includes/public/class-mp-checkout.php:868 +msgid "Please enter a valid card expiration" +msgstr "" + +#: includes/public/class-mp-checkout.php:773 +msgid "Javascript is required in order to checkout. Please enable Javascript in your browser and then refresh this page." +msgstr "" + +#: includes/public/class-mp-checkout.php:588 +msgid "An unknown error occurred. Please try again." +msgstr "" + +#: includes/public/class-mp-checkout.php:386 +msgid "Town/City" +msgstr "" + +#: includes/public/class-mp-checkout.php:380 +msgid "Apartment, suite, unit, building, floor, etc" +msgstr "" + +#: includes/public/class-mp-checkout.php:376 +msgid "Address Line 2" +msgstr "Alamat barisan 2" + +#: includes/public/class-mp-checkout.php:363 +msgid "Address Line 1" +msgstr "" + +#: includes/common/class-mp-order.php:770 +#: includes/public/class-mp-checkout.php:354 +msgid "Company" +msgstr "" + +#: includes/public/class-mp-checkout.php:330 +msgid "Last" +msgstr "" + +#: includes/public/class-mp-checkout.php:321 +msgid "First" +msgstr "" + +#: includes/public/class-mp-checkout.php:284 +msgid "State/Province" +msgstr "" + +#: includes/public/class-mp-checkout.php:83 +msgid "Review Order/Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing/Shipping Address" +msgstr "" + +#: includes/public/class-mp-checkout.php:80 +msgid "Login/Register" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:530 +msgid "Marketplace" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:523 +msgid "Global Marketplace Pages" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +msgid "Store Network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +#: includes/multisite/class-mp-admin-multisite.php:494 +msgid "Store Network Settings" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:440 +msgid "Set theme access permissions for network stores. For a custom css theme, save your css file with the MarketPress Theme: NAME header in the /marketpress/ui/themes/ folder and it will appear in this list so you may select it." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:361 +msgid "Choose a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:336 +msgid "%d products get indexed" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:285 +msgid "Product Indexer" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:281 +msgid "Please hold on..." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:280 +msgid "Index Products" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:279 +msgid "%d products have been indexed in whole network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:182 +msgid "Enable Global Shopping Cart?" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:178 +msgid "Limit Global Widgets/Shortcodes To Main Blog?" +msgstr "" + +#: includes/common/template-functions.php:2802 +#: includes/multisite/template-functions.php:355 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:97 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:114 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:143 +msgid "Next" +msgstr "" + +#: includes/common/template-functions.php:2801 +#: includes/multisite/template-functions.php:354 +msgid "Prev" +msgstr "" + +#: includes/common/template-functions.php:2597 +msgid "Tagged in " +msgstr "" + +#: includes/common/template-functions.php:2196 +#: includes/common/template-functions.php:2202 +#: includes/common/template-functions.php:2214 +#: includes/common/template-functions.php:2217 +msgid "Oops! We couldn't locate any orders matching that order number. Please verify the order number and try again." +msgstr "" + +#: includes/common/template-functions.php:2138 +msgid "Look Up" +msgstr "" + +#: includes/common/template-functions.php:1423 +msgid "Please choose a shipping method" +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "If you have your order ID you can look it up using the form below." +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "Order Search" +msgstr "" + +#: includes/common/template-functions.php:910 +#: includes/public/class-mp-checkout.php:1440 +msgid "Cart" +msgstr "" + +#: includes/common/template-functions.php:895 +msgid "[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:887 +msgid "[mp_global_categories_list]" +msgstr "" + +#: includes/common/template-functions.php:880 +msgid "" +"Welcome to our market place!\n" +"\n" +"Check out our network of products:\n" +"\n" +"[mp_list_global_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_global_categories_list]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:879 +msgid "Global Store" +msgstr "" + +#: includes/common/template-functions.php:873 +msgid "" +"Welcome to our online store! Feel free to browse around:\n" +"\n" +"[mp_store_navigation]\n" +"\n" +"Check out our most popular products:\n" +"\n" +"[mp_popular_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_list_categories]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_tag_cloud]" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:127 +msgid "If cart weight is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:126 +msgid "Cart Weight" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:222 +msgid "Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:206 +msgid "Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:196 +msgid "Retail Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:195 +msgid "Online Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:193 +msgid "Rates Request Type" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:189 +msgid "Maximum Weight Per Package" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:195 +#: includes/common/shipping-modules/mp-usps.php:236 +msgid "Enter your standard box sizes as LengthxWidthxHeight (e.g. 12x8x6) For each box defined enter the maximum weight it can contain. Note: the shipping prices this plugin calculates are estimates. If they are consistently too low or too high, please check that the list of boxes above and the product weights are accurate and complete." +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:187 +msgid "Handling Charge Per Box Shipped" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:176 +#: includes/common/shipping-modules/mp-ups.php:181 +msgid "Offered Services" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:165 +msgid "Shipper Number" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:151 +msgid "User ID" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:144 +msgid "Developer Kit Access Key" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:140 +msgid "Use Sandbox Mode?" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:123 +msgid "In order to use UPS, you will need a UPS Developer Kit access key and the UPS user ID and password associated with the access key. Set these up for free here. If this information is missing or incorrect, an error will appear during the checkout process and the buyer will not be able to complete the transaction." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:112 +msgid "If cart total is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:111 +msgid "Cart Total" +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:95 +#: includes/common/shipping-modules/mp-weight-rate.php:111 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Don't worry about sorting as this will be done automatically upon saving." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:170 +msgid "Method Title (visible for clients)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:409 +#: includes/common/shipping-modules/mp-ups.php:216 +#: includes/common/shipping-modules/mp-usps.php:251 +msgid "Max Weight (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:402 +#: includes/common/shipping-modules/mp-ups.php:209 +#: includes/common/shipping-modules/mp-usps.php:247 +msgid "Size (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:387 +msgid "Enter your standard box sizes as LengthxWidthxHeight ( 12x8x6 ) For each box defined enter the maximum weight it can contain. Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:361 +#: includes/common/shipping-modules/mp-usps.php:229 +msgid "Handling Charge per International Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:353 +msgid "International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:339 +#: includes/common/shipping-modules/mp-usps.php:213 +msgid "Handling Charge per Domestic Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:331 +msgid "Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:321 +msgid "When checked the customer can chose Residential or Commercial delivery with Residential the default. Unchecked it's only Residential rates." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:320 +msgid "Allow Commercial Delivery?" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:315 +msgid "Fedex 10kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:314 +msgid "Fedex 25kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:313 +msgid "Fedex Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:312 +msgid "Fedex Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:311 +msgid "Fedex Pak" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:310 +msgid "Fedex Tube" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:306 +msgid "Default Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:294 +msgid "Dropoff Type" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:290 +msgid "Meter ID" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:134 +msgid "This is a residential address" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:283 +msgid "There was an error processing your card: \"%s\". Please check your credit card info and try again." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:121 +msgid "Wepay makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept cards directly on your site. You don't need a merchant account or gateway. WePay handles everything including storing cards. Credit cards go directly to WePay's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:385 +msgid "There was an error processing your card - \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:356 +msgid "%s Store Purchase - Order ID - %s, Email - %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:251 +msgid "Stripe makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept Visa, MasterCard, American Express, Discover, JCB, and Diners Club cards directly on your site. You don't need a merchant account or gateway. Stripe handles everything, including storing cards, subscriptions, and direct payouts to your bank account. Credit cards go directly to Stripe's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:192 +msgid "ZMW - Zambian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:191 +msgid "ZAR - South African Rand" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:190 +msgid "YER - Yemeni Rial" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:189 +msgid "XPF - Cfp Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:188 +msgid "XOF - West African Cfa Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:187 +msgid "XCD - East Caribbean Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:186 +msgid "XAF - Central African Cfa Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:185 +msgid "WST - Samoan Tala" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:184 +msgid "VUV - Vanuatu Vatu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:183 +msgid "VND - Vietnamese Đồng" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:182 +msgid "VEF - Venezuelan Bolívar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:181 +msgid "UZS - Uzbekistani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:180 +msgid "UYI - Uruguayan Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:178 +msgid "UGX - Ugandan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:177 +msgid "UAH - Ukrainian Hryvnia" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:176 +msgid "TZS - Tanzanian Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:175 +msgid "TWD - New Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:174 +msgid "TTD - Trinidad and Tobago Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:172 +msgid "TOP - Tongan Paʻanga" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:171 +msgid "TJS - Tajikistani Somoni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:169 +msgid "SZL - Swazi Lilangeni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:168 +msgid "SVC - Salvadoran Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:167 +msgid "STD - São Tomé and Príncipe Dobra" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:166 +msgid "SRD - Surinamese Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:165 +msgid "SOS - Somali Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:164 +msgid "SLL - Sierra Leonean Leone" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:163 +msgid "SHP - Saint Helenian Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:160 +msgid "SCR - Seychellois Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:159 +msgid "SBD - Solomon Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:157 +msgid "RWF - Rwandan Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:156 +msgid "RUB - Russian Ruble" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:155 +msgid "RSD - Serbian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:154 +msgid "RON - Romanian Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:153 +msgid "QAR - Qatari Riyal" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:152 +msgid "PYG - Paraguayan Guaraní*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:151 +msgid "PLN - Polish Złoty" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:150 +msgid "PKR - Pakistani Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:149 +msgid "PHP - Philippine Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:148 +msgid "PGK - Papua New Guinean Kina" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:147 +msgid "PEN - Peruvian Nuevo Sol*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:146 +msgid "PAB - Panamanian Balboa*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:144 +msgid "NPR - Nepalese Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:142 +msgid "NIO - Nicaraguan Córdoba*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:141 +msgid "NGN - Nigerian Naira" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:140 +msgid "NAD - Namibian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:139 +msgid "MZN - Mozambican Metical" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:137 +msgid "MXN - Mexican Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:136 +msgid "MWK - Malawian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:135 +msgid "MVR - Maldivian Rufiyaa" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:134 +msgid "MUR - Mauritian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:133 +msgid "MRO - Mauritanian Ouguiya" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:132 +msgid "MOP - Macanese Pataca" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:131 +msgid "MNT - Mongolian Tögrög" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:130 +msgid "MKD - Macedonian Denar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:129 +msgid "MGA - Malagasy Ariary" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:128 +msgid "MDL - Moldovan Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:126 +msgid "LVL - Latvian Lats" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:124 +msgid "LSL - Lesotho Loti" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:123 +msgid "LRD - Liberian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:122 +msgid "LKR - Sri Lankan Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:121 +msgid "LBP - Lebanese Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:120 +msgid "LAK - Lao Kip*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:119 +msgid "KZT - Kazakhstani Tenge" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:118 +msgid "KYD - Cayman Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:117 +msgid "KRW - South Korean Won" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:116 +msgid "KMF - Comorian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:115 +msgid "KHR - Cambodian Riel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:114 +msgid "KGS - Kyrgyzstani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:113 +msgid "KES - Kenyan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:111 +msgid "JMD - Jamaican Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:110 +msgid "ISK - Icelandic Króna" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:109 +msgid "INR - Indian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:108 +msgid "ILS - Israeli New Sheqel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:107 +msgid "IDR - Indonesian Rupiah" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:105 +msgid "HTG - Haitian Gourde" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:103 +msgid "HNL - Honduran Lempira*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:101 +msgid "GYD - Guyanese Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:100 +msgid "GTQ - Guatemalan Quetzal*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:99 +msgid "GNF - Guinean Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:98 +msgid "GMD - Gambian Dalasi" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:97 +msgid "GIP - Gibraltar Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:96 +msgid "GEL - Georgian Lari" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:94 +msgid "FKP - Falkland Islands Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:93 +msgid "FJD - Fijian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:91 +msgid "ETB - Ethiopian Birr" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:90 +msgid "EGP - Egyptian Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:89 +msgid "EEK - Estonian Kroon*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:88 +msgid "DZD - Algerian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:87 +msgid "DOP - Dominican Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:85 +msgid "DJF - Djiboutian Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:84 +msgid "CZK - Czech Koruna*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:83 +msgid "CVE - Cape Verdean Escudo*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:82 +msgid "CRC - Costa Rican Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:81 +msgid "COP - Colombian Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:80 +msgid "CNY - Chinese Renminbi Yuan" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:79 +msgid "CLP - Chilean Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:77 +msgid "CDF - Congolese Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:76 +msgid "CAD - Canadian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:75 +msgid "BZD - Belize Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:74 +msgid "BWP - Botswana Pula" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:73 +msgid "BSD - Bahamian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:72 +msgid "BRL - Brazilian Real*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:71 +msgid "BOB - Bolivian Boliviano*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:70 +msgid "BND - Brunei Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:69 +msgid "BMD - Bermudian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:68 +msgid "BIF - Burundian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:67 +msgid "BGN - Bulgarian Lev" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:66 +msgid "BDT - Bangladeshi Taka" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:65 +msgid "BBD - Barbadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:64 +msgid "BAM - Bosnia & Herzegovina Convertible Mark" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:63 +msgid "AZN - Azerbaijani Manat" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:62 +msgid "AWG - Aruban Florin" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:61 +msgid "AUD - Australian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:60 +msgid "ARS - Argentine Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:59 +msgid "AOA - Angolan Kwanza*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:58 +msgid "ANG - Netherlands Antillean Gulden" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:57 +msgid "AMD - Armenian Dram" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:56 +msgid "ALL - Albanian Lek" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:55 +msgid "AFN - Afghan Afghani*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:54 +msgid "AED - United Arab Emirates Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:345 +msgid "Skrill balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:327 +msgid "Skrill IPN message received." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:283 +msgid "Skrill" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:278 +msgid "Pending payment" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:144 +msgid "The secret word must match the word submitted in the \"Merchant Tools\" section of your Skrill account." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:134 +msgid "You must use your valid Skrill merchant email. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:133 +msgid "Skrill Email" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:123 +msgid "Resell your inventory via Skrill.com (Moneybookers)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:95 +msgid "ZAR - South-African Rand" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:93 +msgid "TWD - Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:92 +msgid "TRY - New Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:91 +msgid "TND - Tunisian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:90 +msgid "THB - Thailand Baht" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:89 +msgid "SKK - Slovakian Koruna" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:86 +#: includes/common/payment-gateways/stripe.php:158 +msgid "SAR - Saudi Riyal" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:85 +msgid "RSD - Serbian dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:83 +msgid "QAR - Qatari Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:81 +msgid "OMR - Omani Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:80 +msgid "NOK - Norwegian Krone " +msgstr "" + +#: includes/common/payment-gateways/skrill.php:78 +#: includes/common/payment-gateways/stripe.php:138 +msgid "MYR - Malaysian Ringgit" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:77 +#: includes/common/payment-gateways/stripe.php:127 +msgid "MAD - Moroccan Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:74 +msgid "KRW - South-Korean Won" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:72 +msgid "JOD - Jordanian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:70 +msgid "INR - Indian Rupee" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:63 +msgid "EEK - Estonian Kroon" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:56 +msgid "AED - Utd. Arab Emir. Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:52 +msgid "Turkish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:51 +msgid "Swedish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:50 +msgid "Spanish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:49 +msgid "Russian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:48 +msgid "Romainian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:47 +msgid "Polish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:46 +msgid "Italian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:45 +msgid "Greek" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:44 +msgid "German" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:43 +msgid "French" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:42 +msgid "Finnish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:41 +msgid "English" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:40 +msgid "Dutch" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:39 +msgid "Danish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:38 +msgid "Czech" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:37 +msgid "Chinese" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:201 +msgid "There was an error processing your card: %s. Please re-enter your credit card info and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:278 +msgid "
  • There was an error processing your card: \"%s\". Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:274 +msgid "
  • There was an error processing your card. Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:177 +#: includes/common/payment-gateways/stripe.php:279 +msgid "Publishable Key" +msgstr "" + +#: includes/common/payment-gateways/pin.php:163 +msgid "API Credentials?" +msgstr "" + +#: includes/common/payment-gateways/pin.php:147 +msgid "PIN makes it easy to start accepting credit card payments with Australia’s first all-in-one online payment system. Accept all major credit cards directly on your site. Your sales proceeds are deposited to any Australian bank account, no merchant account required." +msgstr "" + +#: includes/common/payment-gateways/pin.php:57 +#: includes/common/payment-gateways/stripe.php:179 +msgid "USD - United States Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:455 +msgid "Email Footer" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:445 +msgid "Email Header" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:416 +msgid "Partner" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:409 +msgid "Vendor" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:852 +#: includes/common/payment-gateways/paypal-express.php:1126 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences\t section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:749 +msgid "Page Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:744 +msgid "Header Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:739 +msgid "Header Border Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:734 +msgid "Header Image" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:680 +msgid "Locale" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:624 +#: includes/common/payment-gateways/paypal-express.php:658 +msgid "Merchant Email" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:645 +msgid "Paypal Express Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:603 +msgid "Paypal Express Network Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:861 +msgid "Application ID (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:854 +msgid "Signature (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:847 +msgid "API Password (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:839 +msgid "API Username (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:832 +msgid "Signature (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:825 +msgid "API Password (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:817 +msgid "API Username (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:799 +msgid "This message is displayed at the top of the gateway settings page to store admins. It's a good place to inform them of your fees or put any sales messages." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:787 +msgid "Please enter your PayPal email address or business ID you want to recieve fees at." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:786 +msgid "PayPal E-mail" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:772 +msgid "Fees to Collect (%)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:375 +#: includes/public/class-mp-checkout.php:341 +msgid "Email Address" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:299 +msgid "Sorry, your order was not completed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:126 +#: includes/common/payment-gateways/paypal-express.php:780 +msgid "You will be redirected to the PayPal site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:90 +#: includes/common/payment-gateways/skrill.php:94 +msgid "USD - U.S. Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:89 +msgid "TRY - Turkish lira" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:88 +#: includes/common/payment-gateways/stripe.php:170 +msgid "THB - Thai Baht" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:87 +msgid "TWD - Taiwan New Dollars" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:86 +#: includes/common/payment-gateways/pin.php:59 +#: includes/common/payment-gateways/skrill.php:88 +#: includes/common/payment-gateways/stripe.php:162 +msgid "SGD - Singapore Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:84 +msgid "RUB - Russian Rubles" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:82 +msgid "PHP - Philippine Pesos" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:81 +#: includes/common/payment-gateways/pin.php:58 +#: includes/common/payment-gateways/skrill.php:79 +#: includes/common/payment-gateways/stripe.php:145 +msgid "NZD - New Zealand Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:79 +msgid "MXN - Mexican Peso" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:78 +msgid "MYR - Malaysian Ringgits" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:77 +#: includes/common/payment-gateways/pin.php:64 +#: includes/common/payment-gateways/skrill.php:73 +#: includes/common/payment-gateways/stripe.php:112 +msgid "JPY - Japanese Yen" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:75 +#: includes/common/payment-gateways/pin.php:63 +#: includes/common/payment-gateways/skrill.php:66 +#: includes/common/payment-gateways/stripe.php:102 +msgid "HKD - Hong Kong Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:73 +msgid "GBP - Pound Sterling" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:68 +#: includes/common/payment-gateways/pin.php:62 +#: includes/common/payment-gateways/skrill.php:59 +msgid "CAD - Canadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:67 +msgid "BRL - Brazilian Real" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:66 +#: includes/common/payment-gateways/pin.php:56 +#: includes/common/payment-gateways/skrill.php:57 +msgid "AUD - Australian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:288 +msgid "There was an error processing your card: \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:163 +msgid "When running on a live site, Paymill recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:161 +#: includes/common/payment-gateways/pin.php:157 +#: includes/common/payment-gateways/simplify.php:103 +#: includes/common/payment-gateways/stripe.php:260 +#: includes/common/payment-gateways/wepay.php:153 +msgid "Force SSL?" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:151 +msgid "Accept Visa, Mastercard, Maestro UK, Discover and Solo cards directly on your site. You don't need a merchant account or gateway. Credit cards go directly to Paymill's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:131 +msgid "CVV2" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:72 +#: includes/common/payment-gateways/pin.php:61 +#: includes/common/payment-gateways/skrill.php:65 +#: includes/common/payment-gateways/stripe.php:95 +msgid "GBP - British Pound" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:71 +#: includes/common/payment-gateways/stripe.php:173 +msgid "TRY - Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:70 +#: includes/common/payment-gateways/paypal-chained-payments.php:85 +#: includes/common/payment-gateways/skrill.php:87 +#: includes/common/payment-gateways/stripe.php:161 +msgid "SEK - Swedish Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:69 +#: includes/common/payment-gateways/skrill.php:84 +msgid "RON - Romanian Leu New" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:68 +#: includes/common/payment-gateways/paypal-chained-payments.php:83 +#: includes/common/payment-gateways/skrill.php:82 +msgid "PLN - Polish Zloty" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:67 +#: includes/common/payment-gateways/paypal-chained-payments.php:80 +#: includes/common/payment-gateways/stripe.php:143 +msgid "NOK - Norwegian Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:66 +#: includes/common/payment-gateways/skrill.php:75 +#: includes/common/payment-gateways/stripe.php:125 +msgid "LTL - Lithuanian Litas" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:65 +#: includes/common/payment-gateways/paypal-chained-payments.php:69 +#: includes/common/payment-gateways/skrill.php:60 +#: includes/common/payment-gateways/stripe.php:78 +msgid "CHF - Swiss Franc" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:64 +#: includes/common/payment-gateways/skrill.php:76 +msgid "LVL - Latvian Lat" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:63 +#: includes/common/payment-gateways/paypal-chained-payments.php:74 +#: includes/common/payment-gateways/skrill.php:69 +msgid "ILS - Israeli Shekel" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:62 +#: includes/common/payment-gateways/skrill.php:71 +msgid "ISK - Iceland Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:61 +#: includes/common/payment-gateways/paypal-chained-payments.php:76 +#: includes/common/payment-gateways/skrill.php:68 +#: includes/common/payment-gateways/stripe.php:106 +msgid "HUF - Hungarian Forint" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:60 +#: includes/common/payment-gateways/paypal-chained-payments.php:71 +#: includes/common/payment-gateways/skrill.php:62 +#: includes/common/payment-gateways/stripe.php:86 +msgid "DKK - Danish Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:59 +#: includes/common/payment-gateways/skrill.php:67 +#: includes/common/payment-gateways/stripe.php:104 +msgid "HRK - Croatian Kuna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:58 +#: includes/common/payment-gateways/paypal-chained-payments.php:70 +#: includes/common/payment-gateways/skrill.php:61 +msgid "CZK - Czech Koruna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:57 +#: includes/common/payment-gateways/skrill.php:58 +msgid "BGN - Bulgarian Leva" +msgstr "" + +#: includes/common/payment-gateways/payflow/class-mp-gateway-worker-payflow.php:123 +msgid "There was an error connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:344 +msgid "This setting will log all PayFast communication to the \"payfast.log\" file." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:342 +msgid "Log Debugging Info?" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:335 +msgid "DO NOT INPUT A VALUE UNLESS YOU HAVE SET ONE IN THE SETTINGS SECTION OF YOUR PAYFAST SETTINGS." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:333 +msgid "PayFast Passphrase" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:323 +msgid "You can find your credentials on your integration page." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:321 +msgid "PayFast Merchant Credentials" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:311 +msgid "PayFast Mode" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:308 +msgid "PayFast is a payments processing service for South Africa. We make it safe for buyers to send money and easy for sellers to receive money. More Info »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:306 +msgid "PayFast Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:285 +msgid "Your payment via PayFast for this order totaling %s is complete. The transaction number is %s." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:278 +msgid "Your payment via PayFast for this order totaling %s is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:124 +msgid "Your PayFast transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:82 +#: includes/common/payment-gateways/payfast.php:83 +msgid "PayFast" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:157 +msgid "API error: - \"%s\"" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:198 +msgid "The payment request is under process" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:140 +msgid "Order: #" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:116 +msgid "You will be redirected to the Mollie site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:73 +msgid "%sMollie%s provides a fully PCI Compliant and secure way to collect payments via iDeal, Credit Card, Bancontact / Mister Cash, SOFORT Banking, Overbooking, Bitcoin, PayPal, paysafecard and AcceptEmail." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:53 +#: includes/common/payment-gateways/mollie.php:54 +#: includes/common/payment-gateways/mollie.php:195 +#: includes/common/payment-gateways/mollie.php:245 +msgid "Mollie" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:50 +#: includes/common/payment-gateways/paymill.php:56 +#: includes/common/payment-gateways/paypal-chained-payments.php:72 +#: includes/common/payment-gateways/pin.php:60 +#: includes/common/payment-gateways/skrill.php:64 +#: includes/common/payment-gateways/stripe.php:92 +msgid "EUR - Euro" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:306 +msgid "Access Key" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:300 +msgid "You must login to the Mijireh.com dashboard to obtain the Access Key." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:299 +msgid "Credentials" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:289 +msgid "Mijireh Checkout provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:269 +msgid "Mijireh Error: " +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:89 +msgid "You will be redirected to the Mijireh.com site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:87 +msgid "Your Mijireh transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:42 +#: includes/common/payment-gateways/mijireh.php:43 +#: includes/common/payment-gateways/mijireh.php:324 +msgid "Mijireh" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:145 +msgid "These are the manual payment instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:189 +msgid "This is the email text to send to those who have made free order checkouts. You should include your free order instructions / information here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:183 +msgid "This is the free order information to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:182 +msgid "Confirmation User Information" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:177 +msgid "This is the information to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:163 +msgid "If enabled, all free orders will be automatically marked as paid." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:159 +msgid "Payment Status" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:149 +msgid "This gateway is automatically activated if order totalling 0 and it can't be disabled" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:35 +#: includes/common/payment-gateways/free_orders.php:36 +#: includes/common/payment-gateways/free_orders.php:89 +msgid "Free Order" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:34 +#: includes/common/payment-gateways/free_orders.php:197 +msgid "Free Orders" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:515 +msgid "Sandbox API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:266 +#: includes/common/payment-gateways/eway31.php:542 +msgid "eWay Rapid 3.1 Payments (beta)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:403 +msgid "Hosted Payment Page Language" +msgstr "" + +#: includes/common/payment-gateways/eway.php:373 +msgid "Note when testing in sandbox mode it will use the default eWay test API credentials. Also, please note that cart total needs to be a whole number (e.g. 10.00) in order to generate a successful transaction, otherwise the transaction will fail." +msgstr "" + +#: includes/common/payment-gateways/eway.php:267 +msgid "You will be redirected to https://www.eway.com.au to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:380 +msgid "You have chosen to checkout using %s. Please confirm your order details and click \"Submit Order\" when finished." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:272 +#: includes/common/payment-gateways/paymill.php:131 +#: includes/common/payment-gateways/stripe.php:231 +msgid "Security Code " +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Enter in MM/YYYY or MM/YY format" +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Expiration" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:321 +msgid "Delim Data" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:307 +#: includes/common/payment-gateways/paypal-payflow.php:456 +msgid "This text will appear as the footer of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:287 +#: includes/common/payment-gateways/paypal-payflow.php:440 +msgid "Email Customer (on success)" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:278 +msgid "Authorize.net default is \",\". Otherwise, get this from your credit card processor. If the transactions are not going through, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:277 +msgid "Delimeter Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:193 +msgid "Held For Review" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:310 +#: includes/common/payment-gateways/payfast.php:314 +msgid "Test" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:300 +#: includes/common/payment-gateways/pin.php:170 +#: includes/common/payment-gateways/stripe.php:272 +msgid "Secret Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:283 +msgid "Select Your Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:97 +msgid "Your payment will be processed by the iDEAL network" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:208 +msgid "These are the CubePoints to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:203 +msgid "These are the CubePoints instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:266 +msgid "If enabled, all API calls will be made to https://test.bitpay.com." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:263 +msgid "Use Test Mode?" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:259 +msgid "If checked, response fron bitpay will be stored in log file, keep it disabled unless required." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:256 +msgid "Enable Debug Log" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:249 +msgid "Full Notifications" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:231 +#: includes/common/payment-gateways/eway31.php:499 +#: includes/common/payment-gateways/eway31.php:526 +#: includes/common/payment-gateways/mollie.php:83 +#: includes/common/shipping-modules/mp-fedex.php:269 +msgid "API Key" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:222 +msgid "You can now accept a payment from any country on Earth, with no risk of fraud. To use Bitpay, you need to signup on Bitpay. \\n After completing the signup process, you can get api keys at Bitpay API key. You can read more about Bitpay at Bitpay API. \\n Bitpay requires SSL(https) for payment notifications to work." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:61 +msgid "You will be redirected to bitpay.com, for bitcoin payment. It is completely safe." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:346 +msgid "You must login to the 2Checkout vendor dashboard to obtain the seller ID and secret word. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:345 +#: includes/common/payment-gateways/authorizenet-aim.php:239 +#: includes/common/payment-gateways/paymill.php:168 +#: includes/common/payment-gateways/paypal-express.php:704 +#: includes/common/payment-gateways/simplify.php:80 +#: includes/common/payment-gateways/stripe.php:265 +#: includes/common/payment-gateways/wepay.php:158 +msgid "API Credentials" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:325 +#: includes/common/payment-gateways/_bitpay.php:220 +#: includes/common/payment-gateways/_cubepoints.php:185 +#: includes/common/payment-gateways/_ideal.php:268 +#: includes/common/payment-gateways/_payway.php:255 +#: includes/common/payment-gateways/authorizenet-aim.php:219 +#: includes/common/payment-gateways/eway.php:352 +#: includes/common/payment-gateways/eway31.php:460 +#: includes/common/payment-gateways/free_orders.php:147 +#: includes/common/payment-gateways/manual-payments.php:126 +#: includes/common/payment-gateways/mijireh.php:287 +#: includes/common/payment-gateways/mollie.php:71 +#: includes/common/payment-gateways/paymill.php:149 +#: includes/common/payment-gateways/paypal-chained-payments.php:344 +#: includes/common/payment-gateways/paypal-payflow.php:376 +#: includes/common/payment-gateways/pin.php:145 +#: includes/common/payment-gateways/simplify.php:69 +#: includes/common/payment-gateways/skrill.php:121 +#: includes/common/payment-gateways/stripe.php:249 +#: includes/common/payment-gateways/wepay.php:119 +#: includes/common/shipping-modules/mp-fedex.php:243 +#: includes/common/shipping-modules/mp-flat-rate.php:63 +#: includes/common/shipping-modules/mp-pickup.php:140 +#: includes/common/shipping-modules/mp-table-rate.php:94 +#: includes/common/shipping-modules/mp-ups.php:122 +#: includes/common/shipping-modules/mp-usps.php:167 +#: includes/common/shipping-modules/mp-weight-rate.php:110 +msgid "%s Settings" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:136 +msgid "You will be redirected to the 2Checkout site to finalize your payment." +msgstr "" + +#: includes/common/helpers.php:169 includes/public/class-mp-checkout.php:1277 +msgid "Billing" +msgstr "" + +#: includes/common/helpers.php:144 +msgid "FREE" +msgstr "" + +#: includes/common/helpers.php:134 +msgid "Coupons:" +msgstr "" + +#: includes/common/helpers.php:95 +msgid "Qty" +msgstr "" + +#: includes/common/helpers.php:94 +msgid "Sku" +msgstr "" + +#: includes/common/data.php:59 +msgid "Zip Code" +msgstr "" + +#: includes/common/class-mp-taxes.php:336 +msgid "Standard Table" +msgstr "" + +#: includes/common/class-mp-product.php:2698 +msgid "Tweet" +msgstr "" + +#: includes/common/class-mp-product.php:2321 +msgid "Notification Preferences: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2320 +msgid "Edit Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2318 +msgid "Link: %s

    " +msgstr "" + +#: includes/common/class-mp-product.php:2317 +msgid "Current Inventory: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2316 +msgid "Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2314 +msgid "This message is being sent to notify you of low stock of a product in your online store according to your preferences.

    " +msgstr "" + +#: includes/common/class-mp-product.php:1817 +msgid "" +msgstr "" + +#: includes/common/class-mp-product.php:1427 +#: includes/common/class-mp-product.php:1430 +msgid "(tax incl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1422 +#: includes/common/class-mp-product.php:1425 +msgid "(tax excl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1300 +#: includes/common/class-mp-product.php:1315 +msgid "%s each" +msgstr "" + +#: includes/common/class-mp-product.php:988 +msgid "Choose Options" +msgstr "" + +#: includes/common/class-mp-product.php:526 +msgid "Choose a %s" +msgstr "" + +#: includes/common/class-mp-product.php:284 +#: includes/common/class-mp-product.php:292 +#: includes/common/class-mp-product.php:615 +msgid "We're sorry, we only have %d of this item in stock right now." +msgstr "" + +#: includes/common/class-mp-order.php:1456 +msgid "Shipped: Track Shipment" +msgstr "" + +#: includes/common/class-mp-order.php:1049 +msgid "Order Received" +msgstr "Pesanan Diterima" + +#: includes/common/class-mp-order.php:1014 +msgid "In Process" +msgstr "" + +#: includes/common/class-mp-order.php:969 +msgid "Order #" +msgstr "" + +#: includes/common/class-mp-order.php:866 +msgid "Copy billing address to shipping address" +msgstr "" + +#: includes/common/class-mp-order.php:822 +#: includes/public/class-mp-checkout.php:1314 +msgid "Special Instructions" +msgstr "" + +#: includes/common/class-mp-order.php:817 +#: includes/common/payment-gateways/stripe.php:335 +msgid "Email" +msgstr "" + +#: includes/common/class-mp-order.php:813 +#: includes/common/payment-gateways/stripe.php:341 +#: includes/public/class-mp-checkout.php:416 +msgid "Phone" +msgstr "" + +#: includes/common/class-mp-order.php:791 +#: includes/common/payment-gateways/stripe.php:337 +msgid "State" +msgstr "" + +#: includes/common/class-mp-order.php:776 +msgid "Address 1" +msgstr "" + +#: includes/common/class-mp-order.php:766 +msgid "Last Name" +msgstr "" + +#: includes/common/class-mp-order.php:762 +msgid "First Name" +msgstr "" + +#: includes/common/class-mp-installer.php:677 +msgid "MarketPress requires a database update to continue working correctly. Go to update page" +msgstr "" + +#: includes/common/class-mp-installer.php:657 +msgid "MarketPress performed a quick automatic update successfully!" +msgstr "" + +#: includes/common/class-mp-installer.php:653 +msgid "Perform Update" +msgstr "" + +#: includes/common/class-mp-installer.php:647 +msgid "Please update each subsite in your WordPress network where you have older version of the MarketPress plugin." +msgstr "" + +#: includes/common/class-mp-installer.php:641 +msgid "Depending on the amount of products you have, this update could take quite some time. Please keep this window open while the update completes. If you have products with multiple variations, the progress bar may move slower, please don't exit the window." +msgstr "" + +#: includes/common/class-mp-installer.php:632 +msgid "Product Metadata" +msgstr "" + +#: includes/common/class-mp-installer.php:601 +msgid "MarketPress requires a database update to continue working correctly.
    Below you will find a list of items that require your attention." +msgstr "" + +#: includes/common/class-mp-installer.php:600 +msgid "Update MarketPress Data" +msgstr "" + +#: includes/common/class-mp-installer.php:530 +msgid "Update Data" +msgstr "" + +#: includes/common/class-mp-installer.php:67 +msgid "Complete!" +msgstr "" + +#: includes/common/class-mp-installer.php:66 +msgid "Upgrading Database...Please Wait..." +msgstr "" + +#: includes/common/class-mp-installer.php:64 +msgid "An error occurred while updating. Please refresh this page and try again." +msgstr "" + +#: includes/common/class-mp-cart.php:2447 +msgid "Some items in your cart have fallen below the quantity you currently have in your cart. We have adjusted the quantity in your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:2443 +msgid "Some items in your cart are no longer available. We have removed these items from your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:1566 +msgid "item" +msgstr "" + +#: includes/common/class-mp-cart.php:1563 +#: includes/common/class-mp-cart.php:1568 +msgid "items" +msgstr "" + +#: includes/common/class-mp-cart.php:1363 +msgid "Items/Products added to Cart will show here." +msgstr "" + +#: includes/common/class-mp-cart.php:1362 +msgid "Your shopping cart is empty." +msgstr "" + +#: includes/common/class-mp-cart.php:1357 +msgid "View Cart" +msgstr "Lihat Borang" + +#: includes/common/class-mp-cart.php:1241 +#: includes/common/class-mp-cart.php:1298 +#: includes/public/class-mp-short-codes.php:159 +msgid "Adding..." +msgstr "" + +#: includes/common/class-mp-cart.php:1033 +msgid "Continue Shopping?" +msgstr "" + +#: includes/common/class-mp-cart.php:961 +msgid "Secure Checkout
    Shopping is always safe and secure." +msgstr "" + +#: includes/common/class-mp-cart.php:959 +msgid "You are about to submit your order!
    Please review your order details before continuing. You will be charged immediately upon clicking \"Submit Order\"." +msgstr "" + +#: includes/common/class-mp-cart.php:956 +msgid "Continue »" +msgstr "" + +#: includes/common/class-mp-cart.php:955 +msgid "Submit Order" +msgstr "" + +#: includes/common/class-mp-cart.php:818 +msgid "There are no items in your cart - go add some !" +msgstr "" + +#: includes/common/class-mp-cart.php:816 +msgid "The cart is disabled." +msgstr "" + +#: includes/common/class-mp-cart.php:735 +msgid "Estimated %s" +msgstr "" + +#: includes/common/class-mp-cart.php:717 +msgid "Estimated Shipping" +msgstr "" + +#: includes/common/class-mp-cart.php:697 +msgid "Product Total" +msgstr "" + +#: includes/common/class-mp-cart.php:670 includes/common/class-mp-cart.php:672 +msgid "Estimated Total (%s, %s)" +msgstr "" + +#: includes/common/class-mp-cart.php:668 +msgid "Estimated Total (%s)" +msgstr "" + +#: includes/common/class-mp-cart.php:666 includes/common/class-mp-cart.php:752 +msgid "Estimated Total" +msgstr "" + +#: includes/admin/widgets/product-list.php:247 +msgid "Show Thumbnail Placeholder image (if image is not set)" +msgstr "" + +#: includes/admin/widgets/cart.php:73 +msgid "Display product price" +msgstr "" + +#: includes/admin/widgets/cart.php:71 +msgid "Display product quantity" +msgstr "" + +#: includes/admin/widgets/cart.php:69 +msgid "Display product image" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:93 +msgid "General Shipping Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:773 +msgid "If you are having conflicts with the lightbox library from your theme or another plugin you should uncheck this." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:772 +msgid "Use Built-In Lightbox for Images?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:762 +msgid "Disable Large Image Display?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:688 +msgid "Show Product Image?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:682 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:684 +msgid "Show Tags List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:676 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:678 +msgid "Show Categories List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:671 +msgid "If enabled, description excerpt will be added above Add to cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:669 +msgid "Show Excerpt?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:665 +msgid "If enabled, users will be able to choose how many of the product they want to purchase before adding to their cart. If not checked, quantity could be change later on the cart page." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:663 +msgid "Show Quantity Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:649 +msgid "Settings related to the display of individual product pages." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:648 +msgid "Product Page Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:605 +msgid "Related Products Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:573 +msgid "Show Related Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:568 +msgid "Related Product Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:549 +msgid "Order Status Entries Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:510 +msgid "Sort Products By" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:497 +msgid "Products Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:492 +msgid "Paginate Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:478 +msgid "Excerpts Length" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:473 +msgid "Show Excerpts?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:450 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:746 +msgid "Image Alignment" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:412 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:708 +msgid "Custom Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:401 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:697 +msgid "Large - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:400 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:696 +msgid "Medium - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:399 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:695 +msgid "Thumbnail - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:397 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:693 +msgid "Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:386 +msgid "Select default placeholder image thumbnail when product image is not available (if empty, plugin's built-in image will be used)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:380 +msgid "Show default product placeholder thumbnail when product image is not available?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:374 +msgid "Show Product Thumbnail?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:369 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:658 +msgid "Redirect to cart page for immediate checkout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:368 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:657 +msgid "Stay on current product page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:366 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:655 +msgid "MarketPress supports two \"flows\" for adding products to the shopping cart. After adding a product to their cart, two things can happen:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:365 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:654 +msgid "Add To Cart Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:355 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:628 +msgid "Four" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:354 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:627 +msgid "Three" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:353 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:626 +msgid "Two" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:625 +msgid "One" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:349 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:622 +msgid "Set the number of products that show up in a grid row to best fit your theme" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:348 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:621 +msgid "How many products per row?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:342 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:609 +msgid "Display as grid" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:341 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:608 +msgid "Display as list" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:339 +msgid "Product Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:334 +msgid "Settings related to the display of product lists/grids." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:333 +msgid "Product List/Grid Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:314 +msgid "Show Twitter Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:309 +msgid "Twitter" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:303 +msgid "Show Share Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:297 +msgid "Recommend" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:296 +msgid "Like" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:294 +msgid "Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:283 +msgid "Show Facebook Like Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:278 +msgid "Facebook" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:257 +msgid "Show \"Pin It\" Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:252 +msgid "Pinterest" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:246 +msgid "Social Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:193 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:202 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:211 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:220 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:229 +#: includes/multisite/class-mp-admin-multisite.php:532 +#: includes/multisite/class-mp-admin-multisite.php:541 +#: includes/multisite/class-mp-admin-multisite.php:550 +msgid "Choose a Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:191 +msgid "This page will be used as the root for your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:168 +#: includes/multisite/class-mp-admin-multisite.php:586 +msgid "Create Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "uncropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "cropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:87 +#: includes/multisite/class-mp-admin-multisite.php:121 +#: includes/multisite/class-mp-admin-multisite.php:620 +msgid "An error occurred while creating the store page. Please try again." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:66 +msgid "Choose the gateway(s) that you would like to be available for checkout." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:65 +msgid "Enabled Gateways" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:78 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:146 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:179 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:213 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:274 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:307 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:341 +msgid "Text" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:71 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:139 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:172 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:206 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:267 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:300 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:334 +msgid "Subject" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:52 +msgid "Notification Email" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:510 +msgid "Enabling this option will display label `excl. tax` or `incl. tax` after price" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:509 +msgid "Display tax label?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:504 +msgid "Enabling this option will show Price + Tax, eg. if your price is 100 and your tax 20, your price will be 120" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:416 +#: includes/multisite/class-mp-admin-multisite.php:234 +msgid "Price Format" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:366 +msgid "Enabling this field will display a textbox on the shipping checkout page for users to enter special instructions for their order. Useful for product personalization, etc." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:365 +msgid "Show Special Instructions Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:360 +msgid "Universal" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:359 +msgid "Old" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1167 +#: includes/admin/store-settings/class-mp-store-settings-general.php:358 +msgid "New" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:353 +msgid "If you already use Google Analytics for your website, you can track detailed ecommerce information by enabling this setting. Choose whether you are using the new asynchronous or old tracking code. Before Google Analytics can report ecommerce activity for your website, you must enable ecommerce tracking on the profile settings page for your website. Also keep in mind that some gateways do not reliably show the receipt page, so tracking may not be accurate in those cases. It is recommended to use the PayPal gateway for the most accurate data. More information »" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:347 +msgid "Do you want to display the product price on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:346 +msgid "Show product price on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:340 +msgid "Do you want to display the product quantity on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:339 +msgid "Show product quantity on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:333 +msgid "Do you want to display the product image on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:332 +msgid "Show product image on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:327 +msgid "This option hide floating Mini Cart in top right corner." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:326 +msgid "Disable Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:316 +msgid "If unchecked your Orders admin page will be hidden" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:315 +msgid "Show admin Orders page?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:309 +msgid "Disable Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:303 +msgid "Force Login?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:297 +msgid "Hide Out of Stock Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:555 +msgid "This will prevent multiples of the same downloadable product form being added to the cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:554 +msgid "Limit Digital Products Per-order?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:268 +msgid "If you're having issues downloading large files and have worked with your hosting provider to increase your memory limits, try enabling this - just keep in mind, it's not as secure!" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:267 +msgid "Use Alternative Download Method?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:252 +msgid "Download Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:230 +msgid "Change product post type" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:51 +msgid "%s Capabilities" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-addons.php:47 +msgid "Store Settings: Add Ons: %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:254 +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:56 +msgid "Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Edit Product Attribute %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:246 +msgid "Exporters" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:238 +msgid "Short Codes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:207 +msgid "An appropriate message for key \"%s\" could not be found." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:204 +msgid "Product attribute updated successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:203 +msgid "Product attribute added successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +msgid "Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +#: includes/admin/store-settings/class-mp-store-settings-addons.php:121 +msgid "Store Settings: Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "Store Settings: Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:118 +msgid "Store Settings: Product Tags" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:117 +msgid "Store Settings: Product Categories" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Store Settings: Product Attributes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +msgid "Store Settings: Payments" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:114 +msgid "Store Settings: Shipping" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +#: includes/admin/class-mp-store-settings-admin.php:226 +msgid "Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +msgid "Store Settings: Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:112 +msgid "Store Settings: Presentation" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:111 +msgid "Store Settings: General" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1489 +msgid "Select a Product" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1447 +msgid "Reset to Defaults" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1446 +msgid "Insert Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1202 +#: includes/admin/class-mp-shortcode-builder.php:1227 +#: includes/admin/class-mp-shortcode-builder.php:1252 +msgid "The text to show in the link." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1196 +#: includes/admin/class-mp-shortcode-builder.php:1221 +#: includes/admin/class-mp-shortcode-builder.php:1246 +msgid "Whether to return a clickable link or url." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1177 +msgid "Whether to display the cart only on store pages or not." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1171 +msgid "Whether to show or hide the product price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1165 +msgid "Whether to show or hide the product quantity." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1159 +msgid "Whether to show or hide the product image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1153 +msgid "The text displayed before the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1147 +msgid "The title of the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1058 +#: includes/admin/class-mp-shortcode-builder.php:1121 +msgid "A label to prepend to the price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1032 +#: includes/admin/class-mp-shortcode-builder.php:1127 +msgid "What context for display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1004 +msgid "Set the alignment of the image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:998 +msgid "Set a custom pixel width/height. If omitted defaults to the size set by \"context\"." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:993 +msgid "Widget" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:988 +msgid "What context for preset size options." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:982 +#: includes/admin/class-mp-shortcode-builder.php:1026 +#: includes/admin/class-mp-shortcode-builder.php:1052 +#: includes/admin/class-mp-shortcode-builder.php:1077 +#: includes/admin/class-mp-shortcode-builder.php:1096 +#: includes/admin/class-mp-shortcode-builder.php:1115 +msgid "The ID of the product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:963 +msgid "Whether to display the product meta (e.g. price, buy button)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:738 +#: includes/admin/class-mp-shortcode-builder.php:905 +#: includes/admin/class-mp-shortcode-builder.php:958 +#: includes/admin/class-mp-shortcode-builder.php:992 +#: includes/admin/class-mp-shortcode-builder.php:1035 +#: includes/admin/class-mp-shortcode-builder.php:1130 +#: includes/admin/class-mp-shortcode-builder.php:1349 +msgid "List" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:957 +#: includes/admin/class-mp-shortcode-builder.php:991 +#: includes/admin/class-mp-shortcode-builder.php:1034 +#: includes/admin/class-mp-shortcode-builder.php:1129 +msgid "Single" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:953 +msgid "Whether and what context of image size to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:948 +msgid "Full" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:943 +msgid "Whether and what type of content to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:937 +msgid "Whether to display the product title." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:931 +msgid "The ID of the product to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:747 +#: includes/admin/class-mp-shortcode-builder.php:914 +msgid "Hide" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:746 +#: includes/admin/class-mp-shortcode-builder.php:913 +msgid "Show" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:744 +#: includes/admin/class-mp-shortcode-builder.php:911 +msgid "Whether or not to show the product filters." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:724 +#: includes/admin/class-mp-shortcode-builder.php:891 +#: includes/admin/class-mp-shortcode-builder.php:1335 +msgid "Limits list to a specific product tag." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:713 +#: includes/admin/class-mp-shortcode-builder.php:880 +#: includes/admin/class-mp-shortcode-builder.php:1324 +msgid "Limits list to a specific product category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:706 +#: includes/admin/class-mp-shortcode-builder.php:873 +#: includes/admin/class-mp-shortcode-builder.php:1317 +msgid "Direction to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:684 +#: includes/admin/class-mp-shortcode-builder.php:851 +#: includes/admin/class-mp-shortcode-builder.php:1295 +msgid "What field to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:678 +#: includes/admin/class-mp-shortcode-builder.php:845 +#: includes/admin/class-mp-shortcode-builder.php:1283 +msgid "How many products to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:672 +#: includes/admin/class-mp-shortcode-builder.php:839 +#: includes/admin/class-mp-shortcode-builder.php:1277 +msgid "The page number to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:666 +#: includes/admin/class-mp-shortcode-builder.php:833 +#: includes/admin/class-mp-shortcode-builder.php:1271 +msgid "Whether to paginate the product list. This is useful to only show a subset." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:808 +msgid "How many related items to show." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:790 +msgid "How to relate the products" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:784 +msgid "The product to show related items for." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:765 +msgid "The maximum number of products to display" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:647 +msgid "Comma separated list of tags (term_id) to include. For example, include=5,27 means tags that have the term_id 5 or 27 will be the only tags displayed. Defaults to include everything." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:641 +msgid "Comma separated list of tags (term_id) to exclude. For example, exclude=5,27 means tags that have the term_id 5 or 27 will NOT be displayed. Defaults to exclude nothing." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:633 +#: includes/admin/class-mp-shortcode-builder.php:1420 +msgid "Sort order." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:629 +#: includes/admin/class-mp-shortcode-builder.php:1416 +msgid "Count" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:626 +#: includes/admin/class-mp-shortcode-builder.php:1413 +msgid "Order of the tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:620 +msgid "The text/space between tags)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:616 +msgid "UL with a class of \"wp-tag-cloud\"" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:615 +msgid "separated by whitespace defined by \"separator\" parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:613 +msgid "Format of the cloud display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:607 +msgid "The number of actual tags to display in the cloud. (Use \"0\" to display all tags.)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:601 +msgid "Unit of measure as pertains to the smallest and largest values. This can be any CSS length value, e.g. pt, px, em, %." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:595 +msgid "The text size of the tag with the largest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:589 +msgid "The text size of the tag with the smallest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:570 +msgid "The \"tabindex\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:564 +msgid "The \"name\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:558 +msgid "The \"id\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:552 +msgid "Which category ID is selected." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:540 +msgid "The max depth. This is ignored unless hierarchical is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:536 +#: includes/multisite/template-functions.php:816 +msgid "No Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:414 +#: includes/admin/class-mp-shortcode-builder.php:546 +msgid "Calculates link or post counts by including items from child categories. If show_counts and hierarchical are true this is automatically set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:409 +msgid "Value of n (some number) specifies the depth (or level) to descend in displaying Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:408 +msgid "Show only top level Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:407 +msgid "All Categories displayed in flat (no indent) form (overrides hierarchical)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:406 +msgid "All Categories and child Categories (Default)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:402 +msgid "This parameter controls how many levels in the hierarchy of Categories are to be included in the list of Categories. NOTE: The \"hierarchical\" argument, which is disabled by default, will override the depth argument, unless it is true. When the argument is false, it will display all of the categories. When it is enabled it will use the value in the \"depth\" argument." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:396 +#: includes/admin/class-mp-shortcode-builder.php:1394 +msgid "Sets the number of Categories to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:390 +#: includes/admin/class-mp-shortcode-builder.php:534 +msgid "Set the text to show when no categories are listed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:384 +msgid "Set the title and style of the outer list item. If present but empty, the outer list item will not be displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:378 +#: includes/admin/class-mp-shortcode-builder.php:528 +msgid "Display sub-categories as inner list items (below the parent list item) or inline." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:368 +#: includes/admin/class-mp-shortcode-builder.php:511 +msgid "Exclude category-tree from the results. The parameter include must be empty. If the hierarchical parameter is true, then use exclude instead of exclude_tree." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:354 +msgid "Only include these categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:340 +#: includes/admin/class-mp-shortcode-builder.php:356 +#: includes/admin/class-mp-shortcode-builder.php:370 +#: includes/admin/class-mp-shortcode-builder.php:496 +#: includes/admin/class-mp-shortcode-builder.php:513 +msgid "Select Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:338 +#: includes/admin/class-mp-shortcode-builder.php:494 +msgid "Exclude one or more categories from the results. The parameter include must be empty." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:332 +msgid "Set a URI for an image (usually an rss feed icon) to act as a link to each categories' rss-2 feed. This parameter overrides the feed parameter. There is no default for this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:320 +msgid "Display a link to each category's rss-2 feed and set the link text to display. The default is no text and no feed displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:313 +#: includes/admin/class-mp-shortcode-builder.php:487 +msgid "Any" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:307 +#: includes/admin/class-mp-shortcode-builder.php:481 +msgid "Only display categories that are children of the category identified by this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:301 +msgid "Sets whether a category's description is inserted into the title attribute of the links created (i.e. <a title=\"<em>Category Description</em>\" href=\"...)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:295 +#: includes/admin/class-mp-shortcode-builder.php:475 +msgid "Toggles the display of categories with no posts." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:289 +#: includes/admin/class-mp-shortcode-builder.php:469 +#: includes/admin/class-mp-shortcode-builder.php:1388 +msgid "Toggles the display of the current count of posts in each category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:279 +msgid "Style to display the categories list in. A value of list displays the categories as list items while none generates no special display method (the list items are separated by
    tags)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:269 +#: includes/admin/class-mp-shortcode-builder.php:449 +#: includes/admin/class-mp-shortcode-builder.php:1378 +msgid "Sort order for categories (either ascending or descending)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:259 +#: includes/admin/class-mp-shortcode-builder.php:439 +#: includes/admin/class-mp-shortcode-builder.php:1368 +msgid "Sort categories alphabetically, by unique Category ID, or by the count of posts in that Category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:253 +#: includes/admin/class-mp-shortcode-builder.php:433 +msgid "If a value is entered, causes the display of a link to all categories if the style is set to list." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:219 +msgid "Select an Action" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:217 +msgid "What would you like to do?" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:216 +#: includes/admin/class-mp-shortcode-builder.php:1522 +msgid "Add E-Commerce Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:197 +msgid "Display a list of links to your store pages." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:196 +msgid "Display a link or url to the order status page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:195 +msgid "Display a link or url to the current products list page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:194 +msgid "Display a link or url to the current store page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:193 +msgid "Display a link or url to the current shopping cart page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:192 +msgid "Display the cart widget." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:191 +msgid "Display the full product meta box with price and buy now/add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:190 +msgid "Display the product stock." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:189 +msgid "Display the product SKU number(s)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:188 +msgid "Display the product price (and sale price)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:187 +msgid "Display the buy or add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:186 +msgid "Display the featured image of a given product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:185 +msgid "Display a single product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:184 +msgid "Display a list of products according to preference." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:183 +msgid "Display products related to the one being viewed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:182 +msgid "Display a list of popular products ordered by sales." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:180 +msgid "Display an HTML dropdown of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:179 +msgid "Display an HTML list of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:178 +msgid "Display a cloud or list of your product tags." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:655 +msgid "Setup your payment gateway" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:643 +#: includes/admin/class-mp-setup-wizard.php:649 +msgid "Other Gateways" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:617 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:150 +msgid "Select which calculated shipping methods the customer will be able to choose from." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:601 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:134 +#: includes/public/class-mp-checkout.php:82 +msgid "Shipping Method" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:568 +msgid "I want to charge shipping" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:523 +#: includes/admin/store-settings/class-mp-store-settings-general.php:503 +msgid "Show Price + Tax?" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:507 +msgid "I.e. Taxes, VAT, GST, etc" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:491 +#: includes/admin/store-settings/class-mp-store-settings-general.php:471 +msgid "Current Rates" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:473 +msgid "Default Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:434 +#: includes/admin/class-mp-setup-wizard.php:442 +#: includes/admin/store-settings/class-mp-store-settings-general.php:386 +#: includes/admin/store-settings/class-mp-store-settings-general.php:394 +#: includes/multisite/class-mp-admin-multisite.php:204 +#: includes/multisite/class-mp-admin-multisite.php:212 +msgid "Select a Currency" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:414 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:105 +msgid "Choose Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:411 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:103 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:104 +msgid "All Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:410 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:102 +msgid "These are the countries that you will ship to." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:409 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:101 +msgid "Target Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:401 +msgid "Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:387 +#: includes/admin/store-settings/class-mp-store-settings-general.php:640 +msgid "Zip/Postal Code Label" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:352 +#: includes/admin/store-settings/class-mp-store-settings-general.php:606 +msgid "Select a State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:335 +#: includes/admin/store-settings/class-mp-store-settings-general.php:590 +msgid "Select A Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:332 +#: includes/admin/store-settings/class-mp-store-settings-general.php:587 +msgid "Select a Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:324 +msgid "Location" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:304 +#: includes/admin/class-mp-setup-wizard.php:312 +#: includes/admin/class-mp-store-settings-admin.php:129 +#: includes/admin/class-mp-store-settings-admin.php:262 +msgid "Quick Setup" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:289 +msgid "MarketPress setup is not complete! Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2479 +msgid "Enter your product name here" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2440 +msgid "Select a %s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2426 +msgid "Each product variation needs to have product attributes assigned to it so the system knows how to differentiate one product variation from the other. It is important that you assign a category to this product before choosing any attributes." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2409 +msgid "If you would like this variation to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2320 +msgid "Sale Price (if applicable)" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2281 +msgid "If you would like the description to be different than the main product enter it here." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2229 +msgid "Image" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2202 +#: includes/admin/class-mp-shortcode-builder.php:226 +msgid "Attributes" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2166 +msgid "Create your product variations here. You can reorder variations by using the number to left of each variation, or delete one by clicking the \"x\" to the right of each variation. NOTE: The variation that shows up first in this list will be considered the \"main variation\". The details from this variation will be used in product listings." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2061 +#: includes/admin/class-mp-products-admin.php:2332 +msgid "Value must be less than regular price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2043 +#: includes/admin/class-mp-products-admin.php:2306 +msgid "Regular Price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2023 +#: includes/admin/class-mp-products-admin.php:2286 +msgid "External URL" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1988 +#: includes/admin/class-mp-products-admin.php:2245 +msgid "Enter the quantity that you have available to sell." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1987 +#: includes/admin/class-mp-products-admin.php:2244 +msgid "Inventory Count" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1977 +#: includes/admin/class-mp-products-admin.php:2234 +msgid "Track Inventory?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1871 +msgid "%1$sProduct Images%2$s %3$sAdd images of the product. The first image on the list is the featured image for this product (you can reorder images on the list)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1806 +msgid "Add variations for this product. e.g. If you are selling t-shirts, you can create Color & Size variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1804 +msgid "%3$sAdd variations for%2$s %1$sProduct%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1776 +msgid "This product has a multiple variations %1$s(e.g. Multiple colors, sizes)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1775 +msgid "This is a unique product without variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1700 +msgid "Extra Shipping Cost %1$s(if applicable)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1659 +#: includes/admin/class-mp-products-admin.php:2112 +#: includes/admin/class-mp-products-admin.php:2359 +msgid "Weight" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1636 +#: includes/admin/class-mp-products-admin.php:2098 +#: includes/admin/class-mp-products-admin.php:2416 +msgid "Please enter a valid tax rate" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1531 +msgid "Limit Per Order %1$s(limit the number of the item a shopper can buy per order)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1513 +msgid "SKU %1$s(Stock Keeping Unit)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "%1$sPrice, Inventory & Variants%2$s %3$sSet price, manage inventory and create Product Variants (if appropriate for your product).%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "Product Variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1480 +msgid "External / Affiliate Link" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1471 +msgid "Digital Download" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1470 +msgid "Physical / Tangible Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1464 +msgid "Product Kind %1$s(Physical Product, Digital, etc)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1426 +msgid "Choose Products" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1420 +msgid "If you would like, you can choose specific related products instead of using the ones generated by MarketPress" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1019 +msgid "Changes saved successfully" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:826 +msgid "Option cannot be saved. Try again." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:821 +msgid "Option saved successfully." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:467 +msgid "Img" +msgstr "" + +#: includes/admin/class-mp-product-attributes-list-table.php:57 +msgid "Product attribute(s) deleted successfully." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:162 +msgid "- Create New Variation -" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:144 +msgid "Only lowercase letters and dashes (-) are allowed." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:139 +msgid "If a slug is not entered, it will be generated automatically. Max 32 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:138 +#: includes/admin/class-mp-product-attributes-list-table.php:23 +msgid "Slug" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:130 +msgid "Max 45 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:123 +msgid "Use the numbers on the left to sort. To delete - click the \"X\" to the right of each row." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:122 +msgid "Attribute Options" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:121 +msgid "Add Option" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:105 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:523 +msgid "Sort Order" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:87 +msgid "Alphabetical" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:86 +msgid "ID" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:84 +msgid "Select how the options will be sorted." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:82 +msgid "Sort By" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:75 +msgid "The name of the attribute (e.g. color, size, etc)" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:74 +msgid "Attribute Name" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:69 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Product Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Product Attributes" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:71 +msgid "You can choose to make this page one of the following core store pages." +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:66 +msgid "Network Store Base" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:61 +msgid "Checkout Page" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:52 +msgid "Store Page Settings" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1108 +msgid "Display billing/shipping info for this customer" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1097 +msgid "View order “%s”" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1072 +msgid "Flag as:" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:952 +msgid "Move To Trash" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:948 +msgid " Received" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:927 +msgid "Enter coupon code here" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:812 +msgid "The order status could not be updated due to unexpected error. Please try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:740 +msgid "An invalid bulk action was requested. Please go back and try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:692 +msgid "The order status for order ID %1$s was updated successfully." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:688 +msgid "Order statuses successfully updated." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:530 +msgid "Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:518 +msgid "Actual Shipping Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:513 +msgid "Method Paid For" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:504 +msgid "Amount Collected" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:477 +msgid "DHL" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:408 +msgid "There is no IPN history to show at this time" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:345 +msgid "Type" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:343 +msgid "Gateway" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:301 +#: includes/common/template-functions.php:528 +msgid "Order History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:291 +msgid "IPN History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:283 +msgid "Customer Info" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:279 +msgid "Order Details" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:157 +msgid "All Dates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:320 +msgid "Add Pages to Menu" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:318 +msgid "Add-ons" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:317 +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "User Capabilities" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:316 +#: includes/admin/class-mp-setup-wizard.php:631 +#: includes/admin/store-settings/class-mp-store-settings-payments.php:50 +msgid "Payment Gateways" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:315 +msgid "Shipping Rates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:312 +msgid "Configure" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:309 +#: includes/admin/class-mp-products-admin.php:466 +#: includes/admin/class-mp-shortcode-builder.php:797 +msgid "Tags" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:308 +#: includes/admin/class-mp-products-admin.php:465 +msgid "Categories" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:300 +msgid "Manage" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:297 +msgid "Here's some quick links to manage your store and products." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:288 +msgid "low in stock" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:287 +msgid "%s product" +msgid_plural "%s products" +msgstr[0] "" + +#: includes/admin/class-mp-dashboard-widgets.php:280 +msgid "received" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:279 +#: includes/admin/class-mp-dashboard-widgets.php:283 +msgid "%s order" +msgid_plural "%s orders" +msgstr[0] "" + +#: includes/admin/class-mp-dashboard-widgets.php:276 +msgid "Stock & Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:261 +msgid "Last 30 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:256 +msgid "Last 7 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:251 +msgid "Yesterday" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:248 +#: includes/admin/class-mp-dashboard-widgets.php:253 +#: includes/admin/class-mp-dashboard-widgets.php:258 +#: includes/admin/class-mp-dashboard-widgets.php:263 +msgid " Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:246 +msgid "Today" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:241 +msgid "Welcome back! Here's a quick summary of your store's performance." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:196 +#: includes/admin/class-mp-products-admin.php:895 +msgid "No products out of stock." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:136 +#: includes/admin/class-mp-products-admin.php:839 +msgid "Stock Level" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:135 +#: includes/admin/class-mp-products-admin.php:838 +msgid "Variation" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:121 +msgid "Low Stock (%s)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:116 +msgid "Store Management" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:115 +msgid "Store Reports" +msgstr "" + +#: includes/admin/class-mp-ajax.php:579 +#: includes/admin/class-mp-orders-admin.php:520 +#: includes/common/payment-gateways/2checkout.php:370 +#: includes/common/payment-gateways/authorizenet-aim.php:264 +#: includes/common/payment-gateways/mollie.php:93 +#: includes/common/payment-gateways/paymill.php:196 +#: includes/common/payment-gateways/pin.php:190 +#: includes/common/payment-gateways/skrill.php:157 +#: includes/common/payment-gateways/skrill.php:168 +#: includes/common/payment-gateways/wepay.php:143 +#: includes/public/class-mp-checkout.php:404 +msgid "Select One" +msgstr "" + +#: includes/admin/class-mp-ajax.php:511 +msgid "Oops... we could not locate any orders by that ID. Please double check your order ID and try again." +msgstr "" + +#: includes/admin/class-mp-ajax.php:482 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:166 +#: includes/multisite/class-mp-admin-multisite.php:584 +msgid "Edit Page" +msgstr "" + +#: includes/admin/class-mp-ajax.php:346 +msgid "Cancel " +msgstr "" + +#: includes/admin/class-mp-ajax.php:345 +msgid "Save " +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "Edit Description" +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "HTML Markup" +msgstr "" + +#: includes/admin/class-mp-ajax.php:333 +msgid "Plain Text Only" +msgstr "" + +#: includes/admin/class-mp-ajax.php:329 +msgid "Additional Content / Information for this Variation" +msgstr "" + +#: includes/admin/class-mp-ajax.php:317 +#: includes/admin/class-mp-products-admin.php:1762 +msgid "Allow this product to be purchased even if it's out of stock" +msgstr "Pembelian dibenarkan walaupun tiada stok" + +#: includes/admin/class-mp-ajax.php:313 +#: includes/admin/class-mp-products-admin.php:1711 +msgid "Track Product Inventory" +msgstr "" + +#: includes/admin/class-mp-ajax.php:300 +msgid "Extra Shipping Cost (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:295 +msgid "Ounces:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:294 +msgid "Pounds:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:292 +msgid "Kilograms:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:287 +#: includes/admin/class-mp-products-admin.php:1649 +msgid "Charge Shipping" +msgstr "" + +#: includes/admin/class-mp-ajax.php:273 +#: includes/admin/class-mp-products-admin.php:1623 +#: includes/admin/store-settings/class-mp-store-settings-general.php:454 +msgid "Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:272 +#: includes/admin/class-mp-products-admin.php:1622 +#: includes/admin/class-mp-products-admin.php:2090 +#: includes/admin/class-mp-products-admin.php:2408 +msgid "Special Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:271 +#: includes/admin/class-mp-products-admin.php:1625 +#: includes/admin/class-mp-products-admin.php:2092 +msgid "If you would like this product to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-ajax.php:268 +#: includes/admin/class-mp-products-admin.php:1599 +msgid "Charge Taxes (Special Rate)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:256 +#: includes/admin/class-mp-products-admin.php:1593 +#: includes/admin/class-mp-products-admin.php:2077 +#: includes/admin/class-mp-products-admin.php:2348 +msgid "End Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:255 +#: includes/admin/class-mp-products-admin.php:1589 +#: includes/admin/class-mp-products-admin.php:2072 +msgid "Start Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:1568 +msgid "Enter Sale Price" +msgstr "Masukkan Harga Jualan" + +#: includes/admin/class-mp-ajax.php:250 +#: includes/admin/class-mp-products-admin.php:1547 +msgid "Set up a Sale for this Product" +msgstr "" + +#: includes/admin/class-mp-ajax.php:206 includes/admin/class-mp-ajax.php:223 +msgid "Enter " +msgstr "" + +#: includes/admin/class-mp-ajax.php:193 +msgid "Browse" +msgstr "" + +#: includes/admin/class-mp-ajax.php:184 includes/admin/class-mp-ajax.php:192 +msgid "http://" +msgstr "" + +#: includes/admin/class-mp-ajax.php:183 +msgid "External Product URL" +msgstr "" + +#: includes/admin/class-mp-ajax.php:237 +msgid "Limit Per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:177 +#: includes/admin/class-mp-products-admin.php:1520 +msgid "Enter Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:174 +#: includes/admin/class-mp-products-admin.php:1512 +msgid "Enter SKU" +msgstr "" + +#: includes/admin/class-mp-ajax.php:173 +msgid "(Stock Keeping Unit)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:158 +msgid "Remove Image" +msgstr "" + +#: includes/admin/class-mp-ajax.php:74 +msgid "Variation Draft" +msgstr "" + +#: includes/admin/class-mp-admin.php:296 +#: includes/admin/class-mp-dashboard-widgets.php:70 +msgid "Please wait...saving in progress..." +msgstr "" + +#: includes/admin/class-mp-admin.php:295 +#: includes/admin/class-mp-dashboard-widgets.php:69 +msgid "Input is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:294 +#: includes/admin/class-mp-dashboard-widgets.php:68 +msgid "Valid number is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:292 +#: includes/admin/class-mp-dashboard-widgets.php:66 +msgid "Delete %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:291 +#: includes/admin/class-mp-dashboard-widgets.php:65 +msgid "Delete %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:290 +#: includes/admin/class-mp-dashboard-widgets.php:64 +msgid "Update inventory for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:289 +#: includes/admin/class-mp-dashboard-widgets.php:63 +msgid "Update inventory for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:288 +#: includes/admin/class-mp-dashboard-widgets.php:62 +msgid "Update price for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:287 +#: includes/admin/class-mp-dashboard-widgets.php:61 +msgid "Update prices for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:285 +#: includes/admin/class-mp-dashboard-widgets.php:59 +msgid "Creating variations, please wait..." +msgstr "" + +#: includes/admin/class-mp-admin.php:96 +msgid "The following payment gateways have been deprecated, Cubepoints, Bitpay, iDEAL, Skrill, Google Checkout. If you were using one of these gateways, please setup a new payment gateway here." +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:61 +msgid "Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:71 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:71 +#: includes/common/class-mp-gdpr.php:399 includes/common/class-mp-order.php:872 +#: includes/common/helpers.php:164 includes/public/class-mp-checkout.php:1434 +msgid "Shipping Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:66 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:66 +#: includes/common/class-mp-gdpr.php:392 includes/common/class-mp-order.php:864 +#: includes/common/helpers.php:163 includes/public/class-mp-checkout.php:1427 +msgid "Billing Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:61 +msgid "Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:258 +msgid "Shipping Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:256 +msgid "Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:235 +msgid "Payment Method: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:79 +msgid "The dir %s not exist or not writeable" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:239 +msgid "Shop header/logo" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:233 +msgid "Choose a template" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:226 +msgid "Template Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:221 +msgid "Disable automatic creation/attachment of invoices when only free products are ordered" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:220 +msgid "Disable for free products" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:216 +msgid "Attach invoice to" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:214 +msgid "Customer Order Shipped email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:212 +msgid "Customer New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:211 +msgid "Admin New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:206 +msgid "download" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:205 +msgid "How do you want to view the PDF?" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:203 +msgid "Open the PDF in a new browser tab/window" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:202 +msgid "Download the PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:158 +msgid "Export PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:103 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:106 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:109 +msgid "You can't download this order invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:76 +msgid "Invalid Request" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:72 +msgid "Order not exist!" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:67 +msgid "Invalid ID" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1293 +msgid "Coupon added successfully" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1292 +msgid "Please enter a code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1247 +msgid "No end" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1200 +msgid "Valid Dates" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1195 +msgid "Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1027 +msgid "No Coupons found in Trash" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1026 +msgid "No Coupons Found" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1025 +msgid "Search Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1024 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1028 +msgid "View Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1023 +msgid "New Coupon" +msgstr "Kupon Baru" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1020 +msgid "Create New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1017 +msgid "Manage Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1002 +msgid "An error occurred while removing your coupon. Please try again." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:964 +msgid "Coupon can't be applied to this cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:951 +msgid "Invalid coupon code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:794 +msgid "Help Text" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:789 +msgid "Form Title" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:783 +msgid "Coupons Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:764 +msgid "End Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:758 +msgid "Does coupon have an end date?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:696 +msgid "Select Products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:688 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:723 +#: includes/common/payment-gateways/paypal-payflow.php:402 +msgid "User" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:638 +msgid "Max Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:636 +msgid "Enter the maximum number of times this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:623 +msgid "Leave blank to allow all other coupons." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:622 +msgid "Select combinable coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:618 +msgid "Can this coupon be combined with other coupons?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:613 +msgid "Apply to each applicable item once per cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:612 +msgid "Apply to each applicable item and quantity ordered" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:609 +msgid "How should the discount amount be applied?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:605 +msgid "Discount Amount" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:604 +msgid "Value must either be a decimal number or a percentage" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:602 +msgid "If you would like to give a percentage-based discount make sure to include the percent (%) symbol. Otherwise, the discount will be applied as a fixed amount off." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:595 +msgid "Letters and Numbers only." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:589 +msgid "Coupon Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:447 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:795 +msgid "More than one code? That's OK! Just be sure to enter one at a time." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:444 +msgid "Apply Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:314 +msgid "Coupon Discounts" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:89 +msgid "1 add-on disabled" +msgid_plural "%s add-ons disabled" +msgstr[0] "" + +#: includes/addons/class-mp-addons-list-table.php:84 +msgid "1 add-on enabled" +msgid_plural "%s add-ons enabled" +msgstr[0] "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Disabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Enable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:129 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:67 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:135 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:168 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:202 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:263 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:296 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:330 +msgid "Enabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +msgid "Disable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:34 +msgid "Disable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:33 +msgid "Enable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:21 +#: includes/admin/class-mp-products-admin.php:2280 +#: includes/common/class-mp-product.php:2916 +msgid "Description" +msgstr "" + +#: includes/common/template-functions.php:2889 +#: includes/multisite/template-functions.php:407 +msgid "Popularity (Least Popular - Most Popular)" +msgstr "Populariti (Kurang Popular - Paling Popular)" + +#: includes/common/template-functions.php:2888 +#: includes/multisite/template-functions.php:406 +msgid "Popularity (Most Popular - Least Popular)" +msgstr "Populariti (Paling Popular - Kurang Popular)" + +#: includes/common/template-functions.php:2885 +#: includes/multisite/template-functions.php:403 +msgid "Name (Z-A)" +msgstr "Nama (Z-A)" + +#: includes/common/template-functions.php:2884 +#: includes/multisite/template-functions.php:402 +msgid "Name (A-Z)" +msgstr "Nama (A-Z)" + +#: includes/common/template-functions.php:2883 +#: includes/multisite/template-functions.php:401 +msgid "Release Date (Oldest to Latest)" +msgstr "Tarikh Keluaran (Paling Lama Dahulu)" + +#: includes/common/template-functions.php:2882 +#: includes/multisite/template-functions.php:400 +msgid "Release Date (Latest to Oldest)" +msgstr "Tarikh Keluaran (Terkini Dahulu)" + +#: includes/admin/class-mp-dashboard-widgets.php:284 +msgid "paid" +msgstr "dibayar" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "One Time Pickup" +msgstr "Pengambilan Sekaligus" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Customer Counter" +msgstr "Kaunter Pelanggan" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Daily Pickup" +msgstr "Pengambilan Harian" + +#: includes/common/shipping-modules/mp-ups.php:182 +msgid "For the most accurate rates, please select the appropriate pick up type for your business." +msgstr "Untuk kadar paling tepat, sila pilih jenis pengambilan yang paling sesuai untuk perniagaan anda." + +#: includes/admin/class-mp-admin.php:374 +msgid "Page saved." +msgstr "Halaman dikemaskini." + +#: includes/admin/class-mp-admin.php:370 +msgid "Custom field deleted." +msgstr "Bidang ubahsuai dipadam." + +#: includes/admin/class-mp-admin.php:369 +msgid "Custom field updated." +msgstr "Bidang ubahsuai dikemaskini." + +#: includes/common/payment-gateways/_bitpay.php:541 +msgid "%s - The payment request expired, - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:536 +msgid "%s - The payment not credited in merchants bitpay account, action required. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:252 +msgid "If enabled, you will recieve an email for each status update on payment." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:240 +msgid "Speed at which the bitcoin transaction registers as \"confirmed\" to the store. This overrides your merchant settings on the Bitpay website." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:238 +msgid "Transaction Speed" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:244 +msgid "Low" +msgstr "Rendah" + +#: includes/common/payment-gateways/_bitpay.php:243 +msgid "Medium" +msgstr "Sederhana" + +#: includes/common/payment-gateways/_bitpay.php:242 +msgid "High" +msgstr "Tinggi" + +#: includes/common/payment-gateways/_bitpay.php:177 +#: includes/common/payment-gateways/_bitpay.php:517 +#: includes/common/payment-gateways/_bitpay.php:522 +msgid "%s - The payment request is under process. Bitpay invoice status - %s" +msgstr "%s - Permintaan pembayaran sedang diuruskan. Status invois Bitpay - %s" + +#: includes/common/payment-gateways/_bitpay.php:175 +#: includes/common/payment-gateways/_bitpay.php:527 +msgid "%s - The payment request has been processed - %s" +msgstr "%s - Permintaan pembayaran telah diproses - %s" + +#: includes/common/payment-gateways/_bitpay.php:150 +#: includes/common/payment-gateways/_bitpay.php:294 +msgid "Incorrect order invoice, please contact site administrator" +msgstr "Pesanan invois tidak betul, sila hubungi pentadbir laman web" + +#: includes/common/payment-gateways/_bitpay.php:141 +msgid "We could not verify order invoice details, please try again or contact site administrator for help" +msgstr "Kami tidak dapat mengesahkan butir-butir pesanan invois, sila cuba lagi atau hubungi pentadbir laman web ini untuk bantuan" + +#: includes/common/payment-gateways/simplify.php:81 +msgid "Login to Simplify to get your API credentials. Enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:605 +#: includes/common/payment-gateways/paypal-express.php:647 +msgid "Express Checkout is PayPal's premier checkout solution, which streamlines the checkout process for buyers and keeps them on your site after making a purchase. Unlike PayPal Pro, there are no additional fees to use Express Checkout, though you may need to do a free upgrade to a business account. More Info »" +msgstr "Express Checkout adalah penyelesaian checkout utama PayPal, yang menyelaraskan proses checkout untuk pembeli dan membiarkan mereka di laman anda selepas membuat pembelian. Tidak seperti PayPal Pro, tidak ada kos tambahan untuk menggunakan Express Checkout, walaupun anda mungkin perlu melakukan upgrade percuma ke akaun perniagaan. More Info »" + +#. Plugin URI of the plugin/theme +msgid "https://premium.wpmudev.org/project/e-commerce/" +msgstr "https://premium.wpmudev.org/project/e-commerce/" + +#. Author of the plugin/theme +msgid "WPMU DEV" +msgstr "WPMU DEV" + +#: includes/admin/class-mp-orders-admin.php:541 +#: includes/admin/class-mp-orders-admin.php:543 +msgid "Tracking Number" +msgstr "Nombor Tracking" + +#: includes/common/class-mp-order.php:805 +#: includes/common/payment-gateways/stripe.php:336 +#: includes/public/class-mp-checkout.php:402 +msgid "Country" +msgstr "Negara" + +#: includes/common/class-mp-order.php:784 +#: includes/common/payment-gateways/stripe.php:338 +msgid "City" +msgstr "Bandar" + +#: includes/common/class-mp-order.php:780 +msgid "Address 2" +msgstr "Alamat 2" + +#: includes/common/payment-gateways/stripe.php:340 +msgid "Address" +msgstr "Alamat" + +#: includes/common/class-mp-cart.php:752 includes/common/class-mp-gdpr.php:378 +msgid "Order Total" +msgstr "Jumlah Pesanan" + +#: includes/admin/class-mp-orders-admin.php:360 +msgid "Payment Total" +msgstr "Jumlah Bayaran" + +#: includes/admin/class-mp-orders-admin.php:347 +msgid "Transaction ID" +msgstr "ID Transaksi" + +#: includes/common/payment-gateways/wepay.php:207 +msgid "The WePay Card Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:186 +#: includes/common/shipping-modules/mp-fedex.php:283 +msgid "Account ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:179 +msgid "Access Token" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:172 +msgid "Client Secret" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:165 +msgid "Client ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:159 +msgid "You must login to WePay to get your API credentials. Make sure to check \"Tokenize credit cards\" option under \"API Keys\" section of your WePay app." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:154 +msgid "When in live mode it is recommended to use SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:148 +msgid "Donation" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:147 +msgid "Event" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:146 +msgid "Personal" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:145 +msgid "Service" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:144 +msgid "Goods" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:141 +msgid "Choose type of payments" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:140 +msgid "Checkout Type" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:134 +msgid "Staging" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:131 +msgid "Choose STAGING if you have registered the app on stage.wepay.com, or PRODUCTION if you registered on www.wepay.com" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:36 +#: includes/common/payment-gateways/wepay.php:299 +msgid "WePay" +msgstr "WePay" + +#: includes/common/payment-gateways/_payway.php:366 +msgid "Rejected - A payment was rejected." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:360 +msgid "Failed - A payment was rejected due to an error." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:342 +msgid "PayWay balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:298 +msgid "Full path of the cacerts.crt file" +msgstr "Laluan penuh fail cacerts.crt" + +#: includes/common/payment-gateways/_payway.php:284 +msgid "User Name" +msgstr "Nama Pengguna" + +#: includes/common/payment-gateways/_payway.php:277 +msgid "Biller Code" +msgstr "Kod Pengebil" + +#: includes/common/payment-gateways/_payway.php:273 +msgid "Log Directory" +msgstr "Log Direktori" + +#: includes/common/payment-gateways/_payway.php:266 +msgid "Encryption Key" +msgstr "Kunci Enkripsi" + +#: includes/common/payment-gateways/_payway.php:60 +msgid "Your PayWay transaction has been canceled." +msgstr "Transaksi PayWay anda telah dibatalkan." + +#: includes/common/payment-gateways/_payway.php:40 +#: includes/common/payment-gateways/_payway.php:41 +msgid "PayWay" +msgstr "PayWay" + +#: includes/common/payment-gateways/paypal-chained-payments.php:862 +msgid "You must register this application with PayPal using your business account login to get an Application ID that will work with your API credentials. A bit of a hassle, but worth it! In the near future we will be looking for ways to simplify this process. Register then submit your application while logged in to the developer portal. Note that you do not need an Application ID for testing in sandbox mode. More Information »" +msgstr "Anda mesti mendaftar permohonan ini dengan menggunakan login akaun perniagaan PayPal anda untuk mendapatkan ID Aplikasi yang akan bekerja dengan butiran API anda. Sedikit menyusahkan, tetapi sangat berbaloi! Dalam masa terdekat kami akan mencari cara-cara untuk memudahkan proses iniDaftar kemudian kemukakan permohononsemasa sedang log masuk ke portal pemaju.. Ambil perhatian bahawa anda tidak perlu ID Permohonan untuk ujian dalam mod sandbox. Maklumat Lanjut »" + +#: includes/common/payment-gateways/paypal-chained-payments.php:818 +#: includes/common/payment-gateways/paypal-chained-payments.php:840 +#: includes/common/payment-gateways/paypal-express.php:705 +msgid "You must login to PayPal and create an API signature to get your credentials. Instructions »" +msgstr "Anda mesti log masuk ke PayPal dan mewujudkan satu tandatangan API untuk mendapatkan butiran anda. Arahan »" + +#: includes/common/payment-gateways/paypal-payflow.php:378 +msgid "Use Payflow payment gateway to accept online payments using your Internet merchant account and processing network. PayPal Payflow Pro is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway." +msgstr "Gunakan gerbang pembayaran Payflow untuk menerima pembayaran dalam talian menggunakan akaun Internet merchant anda dan rangkaian pemprosesan. PayPal Payflow Pro adalah penyelesaian pemprosesan pembayaran mudah-ubah yang memberikan peniaga kawalan ke atas semua langkah-langkah dalam pemprosesan transaksi. Sijil SSL diperlukan untuk menggunakan laluan ini." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:595 +msgid "Tags Only" +msgstr "Tag Sahaja" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:594 +msgid "Category Only" +msgstr "Kategori Sahaja" + +#: includes/admin/class-mp-shortcode-builder.php:795 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:593 +msgid "Category & Tags" +msgstr "Kategori & Tag" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:591 +msgid "Relate Products By" +msgstr "Kaitkan Produk Menurut" + +#: includes/admin/class-mp-shortcode-builder.php:1008 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:455 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:751 +msgid "Right" +msgstr "Kanan" + +#: includes/admin/class-mp-shortcode-builder.php:1007 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:454 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:749 +msgid "Left" +msgstr "Kiri" + +#: includes/admin/class-mp-shortcode-builder.php:1009 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:750 +msgid "Center" +msgstr "Tengah" + +#: marketpress.php:273 +msgid "Orders from your e-commerce store." +msgstr "Pesanan dari kedai e-commerce anda." + +#: marketpress.php:231 +msgid "Products for your e-commerce store." +msgstr "Produk untuk kedai e-commerce anda." + +#: marketpress.php:222 +msgid "Edit Product" +msgstr "Sunting Produk" + +#. Description of the plugin/theme +msgid "The complete WordPress ecommerce plugin - works perfectly with BuddyPress and Multisite too to create a social marketplace, where you can take a percentage! Activate the plugin, adjust your settings then add some products to your store." +msgstr "Pemalam e-dagang yang lengap - berfungsi dengan sempurna dengan BuddyPress dan juga Multisite untuk mewujudkan satu pasaran sosial, di mana anda boleh mengambil komisyen! Aktifkan pemalam, laraskan tetapan anda kemudian tambah beberapa produk untuk kedai anda." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:272 +msgid "Beside" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:271 +msgid "Above" +msgstr "Atas" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:268 +msgid "Pin Count" +msgstr "Kiraan Pin" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:261 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:287 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:318 +msgid "All View" +msgstr "Paparan Semua" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:260 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:286 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:317 +msgid "Single View" +msgstr "Paparan Tunggal" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:259 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:285 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:316 +msgid "Off" +msgstr "Off" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:578 +msgid "Related Product Limit" +msgstr "Had Produk Berkaitan" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:681 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1201 +msgid "Applies To" +msgstr "Untuk Kegunaan" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:685 +msgid "All Products" +msgstr "Semua Produk" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:487 +msgid "The label shown for the tax line item in the cart. Taxes, VAT, GST, etc." +msgstr "Label yang diaparkan bagi butiran cukai dalam troli. Cukai, VAT, GST, etc." + +#: includes/admin/class-mp-setup-wizard.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:485 +msgid "Tax Label" +msgstr "Label Cukai" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:81 +msgid "Apply" +msgstr "Guna" + +#: includes/admin/class-mp-admin.php:192 +msgid "MarketPress Instructions" +msgstr "Arahan MarketPress" + +#: includes/admin/class-mp-products-admin.php:1954 +#: includes/admin/class-mp-products-admin.php:2194 includes/common/data.php:62 +#: includes/common/helpers.php:150 +msgid "Taxes" +msgstr "Cukai" + +#: includes/admin/class-mp-products-admin.php:1417 +#: includes/common/class-mp-product.php:2900 +msgid "Related Products" +msgstr "Produk Berkaitan" + +#: includes/common/shipping-modules/mp-usps.php:282 +#: includes/common/shipping-modules/mp-usps.php:316 +msgid "@ Max" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "(3-5 days)" +msgstr "(3-5 hari)" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "Priority Mail Express International Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:92 +msgid "Priority Mail Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:171 +#: includes/common/shipping-modules/mp-pickup.php:247 +msgid "In Store" +msgstr "Dalam Kedai" + +#: includes/common/shipping-modules/mp-pickup.php:159 +msgid "Pickup Fee" +msgstr "Kos Pengambilan" + +#: includes/common/shipping-modules/mp-pickup.php:141 +msgid "This option allows your customers to indicate that they will pick-up their order at your place of business." +msgstr "Pilihan ini membolehkan pelanggan and menyatakan bahawa mereka akan mengambil sendiri pesanan mereka di lokasi perniagaan anda." + +#: includes/common/shipping-modules/mp-pickup.php:60 +#: includes/common/shipping-modules/mp-pickup.php:76 +#: includes/common/shipping-modules/mp-pickup.php:176 +msgid "Pickup Instructions" +msgstr "Arahan Pengambilan" + +#: includes/common/shipping-modules/mp-pickup.php:24 +#: includes/common/shipping-modules/mp-pickup.php:254 +msgid "Pickup" +msgstr "Pengambilan" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping - 0.00" +msgstr "Penghantaran Percuma - 0.00" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:256 +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:440 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping" +msgstr "Penghantaran Percuma" + +#: includes/common/shipping-modules/mp-fedex.php:309 +msgid "Your Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:301 +msgid "Station" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:300 +msgid "Request Courier" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:299 +msgid "Drop Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:298 +msgid "Business Service Center" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:297 +msgid "Regular Pickup" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:135 +#: includes/common/shipping-modules/mp-fedex.php:264 +msgid "Production" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:207 +msgid "Simplify Commerce by MasterCard" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:104 +msgid "When in live mode, although it is not required, Simplify recommends you have an SSL certificate." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:183 +#: includes/common/payment-gateways/simplify.php:87 +msgid "Public Key" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:175 +#: includes/common/payment-gateways/simplify.php:94 +msgid "Private Key" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:71 +msgid "Simplify helps merchants to accept online payments from Mastercard, Visa, American Express, Discover, JCB, and Diners Club cards. It's that simple. We offer a merchant account and payment gateway in a single, secure package so you can concentrate on what really matters to your business. Only supports USD currently." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:267 +msgid "%1$s" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:151 +msgid "The Simplify Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/simplify.php:18 +msgid "Simplify" +msgstr "" + +#: includes/common/payment-gateways/pin.php:255 +msgid "%1$s Card %2$s" +msgstr "" + +#: includes/common/payment-gateways/pin.php:211 +msgid "The PIN Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:187 +msgid "Selecting a currency other than currency supported by PIN may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/pin.php:164 +msgid "You must login to PIN to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/pin.php:158 +msgid "When in live mode PIN recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/pin.php:45 +#: includes/common/payment-gateways/pin.php:286 +msgid "PIN" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:830 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:534 +#: includes/common/payment-gateways/paypal-express.php:865 +msgid "The payment is pending" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:235 +msgid "The Paymill Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:169 +msgid "You must login to Paymill to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:45 +#: includes/common/payment-gateways/paymill.php:308 +msgid "Paymill" +msgstr "Paymill" + +#: includes/common/payment-gateways/paymill.php:90 +msgid "Invalid cardholder" +msgstr "Pemegang kad tidak sah" + +#: includes/common/payment-gateways/paymill.php:89 +msgid "Card is no longer valid or has expired" +msgstr "Kad tidak lagi sah atau telah tamat tempoh" + +#: includes/common/payment-gateways/paymill.php:88 +msgid "Please enter a valid Card CVC" +msgstr "Sila masukkan nilai CVC Kad yang sah" + +#: includes/common/payment-gateways/paymill.php:87 +msgid "Please choose a valid Expiration Date." +msgstr "Sila pilih Tarikh Tamat yang sah." + +#: includes/common/payment-gateways/skrill.php:99 +#: includes/common/payment-gateways/skrill.php:100 +msgid "Skrill (Moneybookers)" +msgstr "Skrill (Moneybookers)" + +#: includes/common/shipping-modules/mp-weight-rate.php:24 +#: includes/common/shipping-modules/mp-weight-rate.php:292 +msgid "Weight Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:303 +msgid "USPS Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:270 +msgid "USPS Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:264 +msgid "USPS Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:145 +msgid "Flat Rate Large" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:140 +msgid "Flat Rate Medium 2" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:135 +msgid "Flat Rate Medium 1" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:130 +msgid "Flat Rate Small" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:118 +msgid "First Class International Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:114 +msgid "Priority Mail International Small Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:112 +msgid "Priority Mail International Medium Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:110 +msgid "Priority Mail International Large Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:108 +msgid "Priority Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:106 +msgid "Express Mail International Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:104 +msgid "Express Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:98 +msgid "Library Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:96 +msgid "Media Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "First-Class Mail Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:90 +msgid "Priority Mail Small Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:88 +msgid "Priority Mail Medium Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +#: includes/common/shipping-modules/mp-usps.php:88 +#: includes/common/shipping-modules/mp-usps.php:90 +#: includes/common/shipping-modules/mp-usps.php:92 +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "(2-4 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +msgid "Priority Mail Large Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "(2-4) days" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "Priority Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "Express Mail Sunday/Holiday Delivery Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:80 +msgid "Express Mail Flat Rate Boxes Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:78 +msgid "Express Mail Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:76 +msgid "Express Mail Sunday/Holiday Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:74 +msgid "Express Mail Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:72 +#: includes/common/shipping-modules/mp-usps.php:74 +#: includes/common/shipping-modules/mp-usps.php:76 +#: includes/common/shipping-modules/mp-usps.php:78 +#: includes/common/shipping-modules/mp-usps.php:80 +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "(1-2 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:72 +msgid "Express Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:67 +#: includes/common/shipping-modules/mp-usps.php:902 +msgid "USPS" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:534 +msgid "UPS (beta)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:166 +msgid "Required if using negotiated rates" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "Worldwide Express Plus" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "(Scheduled)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "Standard" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "(2-5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "Worldwide Expedited" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:54 +msgid "Worldwide Express" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "2nd Day Air AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "(1 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "Next Day Air Early AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "Next Day Air Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "3 Day Select" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:49 +msgid "Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:48 +msgid "2nd Day Air" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "Next Day Air" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:475 +#: includes/common/shipping-modules/mp-ups.php:43 +msgid "UPS" +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:27 +#: includes/common/shipping-modules/mp-table-rate.php:318 +msgid "Table Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:71 +#: includes/common/shipping-modules/mp-table-quantity.php:77 +msgid "Shipping Cost: " +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:70 +#: includes/common/shipping-modules/mp-table-quantity.php:76 +msgid "If quantity is greater than:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:66 +msgid "Each band must be a higher price than the one above it." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:56 +msgid "Number of Bands:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:53 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Each layer must be a higher quantity than the previous." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:51 +msgid "Table Quantity Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:31 +msgid "Table Quantity" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:135 +#: includes/common/shipping-modules/mp-table-rate.php:174 +#: includes/common/shipping-modules/mp-weight-rate.php:189 +msgid "European Union" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:123 +#: includes/common/shipping-modules/mp-table-rate.php:162 +#: includes/common/shipping-modules/mp-weight-rate.php:177 +msgid "United States" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:111 +#: includes/common/shipping-modules/mp-table-rate.php:151 +#: includes/common/shipping-modules/mp-weight-rate.php:166 +msgid "In Country" +msgstr "Dalam Negara" + +#: includes/common/shipping-modules/mp-flat-rate.php:146 +#: includes/common/shipping-modules/mp-table-rate.php:186 +#: includes/common/shipping-modules/mp-weight-rate.php:201 +msgid "International" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:101 +#: includes/common/shipping-modules/mp-table-rate.php:141 +#: includes/common/shipping-modules/mp-weight-rate.php:156 +msgid "Canada" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:92 +#: includes/common/shipping-modules/mp-table-rate.php:132 +#: includes/common/shipping-modules/mp-weight-rate.php:147 +msgid "Hawaii and Alaska" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:83 +#: includes/common/shipping-modules/mp-table-rate.php:123 +#: includes/common/shipping-modules/mp-weight-rate.php:138 +msgid "Lower 48 States" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:64 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping." +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:25 +#: includes/common/shipping-modules/mp-flat-rate.php:223 +msgid "Flat Rate" +msgstr "Kadar Piawai" + +#: includes/common/shipping-modules/mp-fedex.php:761 +msgid "FedEx (beta)" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Centimeters" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Inches" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1676 +#: includes/admin/class-mp-setup-wizard.php:547 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:166 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +msgid "Kilograms" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:103 +msgid " %1$s - %2$s" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:358 +msgid "Max Weight per Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:356 +msgid "Box Dimensions" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:354 +msgid "Box Name" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:344 +msgid "Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:343 +msgid "For each box defined enter the maximum weight it can contain." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:341 +msgid "Enter your standard box sizes as LengthxWidthxHeight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:386 +#: includes/common/shipping-modules/mp-ups.php:193 +#: includes/common/shipping-modules/mp-usps.php:234 +#: includes/common/shipping-modules/mp-usps.php:338 +msgid "Standard Boxes and Weight Limits" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:328 +msgid "Handling Charge per Interntional Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:294 +msgid "Handling Charge per Domestic Shipment " +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:388 +#: includes/common/shipping-modules/mp-ups.php:196 +#: includes/common/shipping-modules/mp-usps.php:237 +msgid "Add Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "(Next Day)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +msgid "Europe First International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:62 +msgid "International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:61 +#: includes/common/shipping-modules/mp-fedex.php:62 +#: includes/common/shipping-modules/mp-ups.php:54 +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "(1-3 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:61 +msgid "International First" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "(5 Days)" +msgstr "(5 Hari)" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "International Economy" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "(2-7 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "Smart Post" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:55 +#: includes/common/shipping-modules/mp-ups.php:49 +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "(1-5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:55 +msgid "Ground Home Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "(1-7 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "Fedex Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:53 +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "(3 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:53 +msgid "Fedex Express Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +#: includes/common/shipping-modules/mp-ups.php:48 +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "(2 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +msgid "Fedex 2 Day" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "(2 Days am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "Fedex 2 Day AM" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "(1 Day)" +msgstr "(1 Hari)" + +#: includes/common/shipping-modules/mp-fedex.php:50 +msgid "Standard Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "(1 Day am )" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "Priority Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "(1 Day am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "First Overnight" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:476 +#: includes/common/shipping-modules/mp-fedex.php:31 +msgid "FedEx" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:270 +#: includes/common/payment-gateways/simplify.php:179 +#: includes/common/payment-gateways/stripe.php:365 +msgid "%1$s Card ending in %2$s - Expires %3$s" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:259 +#: includes/common/payment-gateways/pin.php:238 +#: includes/common/payment-gateways/simplify.php:171 +msgid "%s Store Purchase - Order ID: %s, Email: %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:266 +msgid "You must login to Stripe to get your API credentials. You can enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:261 +msgid "When in live mode Stripe recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:311 +msgid "The Stripe Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:263 +#: includes/common/payment-gateways/paymill.php:122 +#: includes/common/payment-gateways/stripe.php:222 +msgid "Card Number" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:86 +msgid "Please enter a valid Credit Card Number." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:45 +#: includes/common/payment-gateways/stripe.php:433 +msgid "Stripe" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:750 +msgid "Sets the background color for the payment page. By default, the color is white." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:745 +msgid "Sets the background color for the header of the payment page. By default, the color is white." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:740 +msgid "Sets the border color around the header of the payment page. The border is a 2-pixel perimeter around the header space, which is 750 pixels wide by 90 pixels high. By default, the color is black." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:735 +msgid "URL for an image you want to appear at the top left of the payment page. The image has a maximum size of 750 pixels wide by 90 pixels high. PayPal recommends that you provide an image that is stored on a secure (https) server. If you do not specify an image, the business name is displayed." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:857 +#: includes/common/payment-gateways/paypal-express.php:1131 +msgid "The payment is pending because it is part of an order that has been authorized but not settled." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:853 +#: includes/common/payment-gateways/paypal-express.php:1127 +msgid "The payment is pending because it has been authorized but not settled. You must capture the funds first." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:847 +#: includes/common/payment-gateways/paypal-express.php:1120 +msgid "You denied the payment when it was marked as pending." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:837 +#: includes/common/payment-gateways/paypal-express.php:1108 +msgid "A reversal has occurred on this transaction due to an unknown reason." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:836 +#: includes/common/payment-gateways/paypal-express.php:1107 +msgid "A reversal has occurred on this transaction because you have given the customer a refund." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:835 +#: includes/common/payment-gateways/paypal-express.php:1106 +msgid "A reversal has occurred on this transaction due to a complaint about the transaction from your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:834 +#: includes/common/payment-gateways/paypal-express.php:1105 +msgid "A reversal has occurred on this transaction due to your customer triggering a money-back guarantee." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:833 +#: includes/common/payment-gateways/paypal-express.php:1104 +msgid "A reversal has occurred on this transaction due to a chargeback by your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:1101 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer:" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:826 +#: includes/common/payment-gateways/paypal-express.php:1097 +msgid "A payment has been accepted." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:818 +#: includes/common/payment-gateways/paypal-express.php:1087 +msgid "The transaction has not terminated, e.g. an authorization may be awaiting completion." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:531 +#: includes/common/payment-gateways/paypal-express.php:810 +#: includes/common/payment-gateways/paypal-express.php:1077 +msgid "The payment has failed. This happens only if the payment was made from your customer's bank account." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:806 +#: includes/common/payment-gateways/paypal-express.php:1072 +msgid "An authorization for this transaction has been voided." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:802 +#: includes/common/payment-gateways/paypal-express.php:1067 +msgid "The authorization period for this payment has been reached." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:798 +#: includes/common/payment-gateways/paypal-express.php:1062 +msgid "A reversal has been canceled; for example, when you win a dispute and the funds for the reversal have been returned to you." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:499 +#: includes/common/payment-gateways/paypal-express.php:1163 +msgid "PayPal Express Checkout" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:798 +msgid "Gateway Settings Page Message" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:725 +msgid "Signature" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:506 +#: includes/common/payment-gateways/eway31.php:533 +#: includes/common/shipping-modules/mp-fedex.php:276 +msgid "API Password" +msgstr "Kata Laluan API" + +#: includes/common/payment-gateways/paypal-chained-payments.php:773 +msgid "Enter a percentage of all store sales to collect as a fee. Decimals allowed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:757 +msgid "Using PayPal Chained Payments allows you as the multisite network owner to collect a predefined fee or percentage of all sales on network MarketPress stores! This is invisible to the customers who purchase items in a store, and all PayPal fees will be charged to the store owner. To use this option you must create API credentials, and you should make all other gateways unavailable or limited above." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:338 +msgid "Please be aware that we will deduct a ?% fee from the total of each transaction in addition to any fees PayPal may charge you. If for any reason you need to refund a customer for an order, please contact us with a screenshot of the refund receipt in your PayPal history as well as the Transaction ID of our fee deduction so we can issue you a refund. Thank you!" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:698 +#: includes/common/payment-gateways/paypal-express.php:149 +msgid "There was a problem connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:470 +#: includes/common/payment-gateways/paypal-express.php:1053 +msgid "There was a problem verifying the IPN string with PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:310 +msgid "There was a problem connecting to PayPal to check the status of your purchase. Please check the status of your order here »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:539 +#: includes/common/payment-gateways/paypal-chained-payments.php:254 +#: includes/common/payment-gateways/paypal-express.php:1139 +msgid "The payment is pending." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:251 +#: includes/common/payment-gateways/paypal-chained-payments.php:531 +#: includes/common/payment-gateways/paypal-express.php:862 +#: includes/common/payment-gateways/paypal-express.php:1136 +msgid "The payment is pending for an unknown reason. For more information, contact PayPal customer service." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:250 +#: includes/common/payment-gateways/paypal-chained-payments.php:530 +#: includes/common/payment-gateways/paypal-express.php:861 +#: includes/common/payment-gateways/paypal-express.php:1135 +msgid "The payment is pending because you are not yet verified. You must verify your account before you can accept this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:249 +#: includes/common/payment-gateways/paypal-chained-payments.php:529 +#: includes/common/payment-gateways/paypal-express.php:860 +#: includes/common/payment-gateways/paypal-express.php:1134 +msgid "The payment is pending because it was made via credit card and you must upgrade your account to Business or Premier status in order to receive the funds. It can also mean that you have reached the monthly limit for transactions on your account." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:248 +#: includes/common/payment-gateways/paypal-chained-payments.php:528 +#: includes/common/payment-gateways/paypal-express.php:859 +#: includes/common/payment-gateways/paypal-express.php:1133 +msgid "The payment is pending because it was made to an email address that is not yet registered or confirmed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:247 +#: includes/common/payment-gateways/paypal-chained-payments.php:527 +#: includes/common/payment-gateways/paypal-express.php:858 +#: includes/common/payment-gateways/paypal-express.php:1132 +msgid "The payment is pending while it is being reviewed by PayPal for risk." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:246 +#: includes/common/payment-gateways/paypal-chained-payments.php:526 +#: includes/common/payment-gateways/paypal-express.php:856 +#: includes/common/payment-gateways/paypal-express.php:1130 +msgid "You do not have a balance in the currency sent, and you do not have your Payment Receiving Preferences set to automatically convert and accept this payment. You must manually accept or deny this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:245 +#: includes/common/payment-gateways/paypal-chained-payments.php:525 +#: includes/common/payment-gateways/paypal-express.php:855 +#: includes/common/payment-gateways/paypal-express.php:1129 +msgid "The payment is pending because you hold a non-U.S. account and do not have a withdrawal mechanism. You must manually accept or deny this payment from your Account Overview." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:244 +#: includes/common/payment-gateways/paypal-chained-payments.php:524 +#: includes/common/payment-gateways/paypal-express.php:854 +#: includes/common/payment-gateways/paypal-express.php:1128 +msgid "The payment is pending because it was made by an eCheck that has not yet cleared." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:243 +#: includes/common/payment-gateways/paypal-chained-payments.php:523 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:236 +#: includes/common/payment-gateways/paypal-chained-payments.php:516 +msgid "The transaction was rejected by the receiver (you)." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:510 +#: includes/common/payment-gateways/paypal-express.php:843 +#: includes/common/payment-gateways/paypal-express.php:1115 +msgid "You refunded the payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:224 +#: includes/common/payment-gateways/paypal-chained-payments.php:504 +msgid "The transaction is in progress." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:212 +#: includes/common/payment-gateways/paypal-chained-payments.php:491 +#: includes/common/payment-gateways/paypal-express.php:814 +#: includes/common/payment-gateways/paypal-express.php:1082 +msgid "The payment has been partially refunded." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:202 +#: includes/common/payment-gateways/paypal-chained-payments.php:481 +msgid "PayPal balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:177 +msgid "There was a problem connecting to PayPal to setup your purchase. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:122 +msgid "Your PayPal transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:50 +#: includes/common/payment-gateways/paypal-chained-payments.php:53 +#: includes/common/payment-gateways/paypal-chained-payments.php:732 +#: includes/common/payment-gateways/paypal-express.php:500 +#: includes/common/payment-gateways/paypal-express.php:938 +msgid "PayPal" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:48 +#: includes/common/payment-gateways/paypal-chained-payments.php:730 +#: includes/common/payment-gateways/paypal-chained-payments.php:756 +#: includes/common/payment-gateways/paypal-chained-payments.php:873 +msgid "PayPal Chained Payments" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:59 +#: includes/common/payment-gateways/paypal-payflow.php:467 +msgid "PayPal Payflow Pro" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:378 +msgid "Chargeback - A payment was reversed due to a chargeback. The funds have been removed from your account balance and returned to the buyer." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:372 +msgid "Failed - The Credit Card or Direct Debit transaction was declined." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:354 +#: includes/common/payment-gateways/skrill.php:366 +msgid "Cancelled - The payment was cancelled manually by the sender in their online account history or was auto-cancelled after 14 days pending." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:360 +msgid "Pending - The payment is pending. It can take 2-3 days for bank transfers to complete." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:349 +#: includes/common/payment-gateways/skrill.php:354 +msgid "Processed - The payment has been completed, and the funds have been added successfully to your Moneybookers account balance." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:189 +msgid "Shown to the customer on the confirmation screen - the end step of the process - a note, confirmation number, or any other message. Line breaks <br> may be used for longer messages." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:188 +msgid "Confirmation Note (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:183 +msgid "The URL of the logo which you would like to appear at the top of the payment form. The logo must be accessible via HTTPS otherwise it will not be shown. For best integration results we recommend that you use a logo with dimensions up to 200px in width and 50px in height." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:182 +msgid "Logo Image (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:177 +msgid "The name of this store, which will be shown on the gateway. If no value is submitted, the account email will be shown as the recipient of the payment." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:176 +msgid "Merchant Name (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:165 +msgid "Language" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:368 +#: includes/common/payment-gateways/authorizenet-aim.php:262 +#: includes/common/payment-gateways/eway.php:363 +#: includes/common/payment-gateways/eway31.php:471 +#: includes/common/payment-gateways/mollie.php:91 +#: includes/common/payment-gateways/paymill.php:193 +#: includes/common/payment-gateways/paypal-chained-payments.php:356 +#: includes/common/payment-gateways/paypal-express.php:688 +#: includes/common/payment-gateways/paypal-payflow.php:432 +#: includes/common/payment-gateways/pin.php:186 +#: includes/common/payment-gateways/skrill.php:152 +#: includes/common/payment-gateways/stripe.php:288 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:104 +msgid "Currency" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:359 +#: includes/common/payment-gateways/skrill.php:143 +msgid "Secret Word" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:261 +msgid "Order ID:" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:234 +msgid "Complete Checkout" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:204 +msgid "Your Moneybookers transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:155 +msgid "This is the email text to send to those who have made manual payment checkouts. You should include your manual payment instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:257 +#: includes/common/payment-gateways/manual-payments.php:128 +msgid "Record payments manually, such as by Cash, Check, or EFT." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:71 +msgid "Manual/Invoice" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:648 +#: includes/common/payment-gateways/manual-payments.php:35 +#: includes/common/payment-gateways/manual-payments.php:36 +msgid "Manual Payment" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:34 +#: includes/common/payment-gateways/manual-payments.php:163 +msgid "Manual Payments" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:288 +msgid "iDEAL Simulator (for testing)" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:287 +msgid "ABN Amro Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:286 +msgid "Friesland Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:285 +msgid "Rabobank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:284 +msgid "ING Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:279 +msgid "Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:270 +msgid "To make it easier to pay for online products and services, the Dutch banking community has developed the iDEAL online payment method. iDEAL allows online payments to be made using online banking in EUR only." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:247 +#: includes/common/payment-gateways/_payway.php:199 +#: includes/common/payment-gateways/manual-payments.php:68 +msgid "Invoiced" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1016 +msgid "Coupon" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:77 +#: includes/common/payment-gateways/_ideal.php:250 +#: includes/common/payment-gateways/_payway.php:202 +msgid "iDEAL" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:76 +msgid "iDEAL (beta)" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:327 +msgid "Merchant Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:293 +#: includes/common/payment-gateways/_payway.php:302 +#: includes/common/payment-gateways/payfast.php:324 +msgid "Merchant ID" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:462 +msgid "eWay Rapid 3.0 Payments lets merchants recieve credit card payments through eWay without need for users to leave the shop. Note this gateway requires a valid SSL certificate configured for this site." +msgstr "" + +#: includes/common/payment-gateways/eway.php:452 +msgid "There was a problem connecting to eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/eway.php:432 +#: includes/common/payment-gateways/eway.php:437 +msgid "The url of the image can be hosted on your website and pass the secure https:// path of the image to be displayed at the top of the website. This is the second image block on the webpage and is restricted to 960px X 65px. A default secure image is used if none is supplied." +msgstr "" + +#: includes/common/payment-gateways/eway.php:431 +#: includes/common/payment-gateways/eway.php:436 +msgid "Company Logo (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:427 +msgid "The page footer text can be customised and populated below the customer's order details. Useful for contact information." +msgstr "" + +#: includes/common/payment-gateways/eway.php:426 +msgid "Page Footer (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:421 +msgid "Page Description (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:417 +#: includes/common/payment-gateways/eway.php:422 +msgid "This value is used to populate the browsers title bar at the top of the screen." +msgstr "" + +#: includes/common/payment-gateways/eway.php:416 +msgid "Page Title (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:412 +msgid "This will be displayed as the company the customer is purchasing from, including this is highly recommended." +msgstr "" + +#: includes/common/payment-gateways/eway.php:411 +msgid "Company Name" +msgstr "" + +#: includes/common/payment-gateways/eway.php:394 +msgid "Customer ID" +msgstr "" + +#: includes/common/payment-gateways/eway.php:381 +#: includes/common/payment-gateways/eway31.php:488 +msgid "Live API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway.php:371 +#: includes/common/payment-gateways/eway31.php:479 +msgid "Gateway Mode" +msgstr "" + +#: includes/common/payment-gateways/eway.php:354 +msgid "The Hosted Page is a webpage hosted on eWAY's side eliminating the need for merchants to capture, transmit or store credit card numbers. At the checkout time the merchant automatically redirects the customer to the Hosted Page where they would enter their details and have the transaction processed. Upon completion of the transaction the customer is redirected back to the MarketPress checkout confirmation page." +msgstr "" + +#: includes/common/payment-gateways/eway.php:314 +msgid "There was a problem with your credit card information: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:300 +msgid "Paid - The card has been processed - %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:253 +msgid "There was a problem setting up the transaction with eWay: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:245 +#: includes/common/payment-gateways/eway.php:289 +msgid "There was a problem parsing the response from eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:159 +#: includes/common/payment-gateways/eway.php:189 +#: includes/common/payment-gateways/paypal-chained-payments.php:634 +#: includes/common/payment-gateways/paypal-express.php:322 +#: includes/common/payment-gateways/paypal-express.php:473 +msgid "%s Store Purchase - Order ID: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:147 +#: includes/common/payment-gateways/eway.php:462 +msgid "eWay Shared Payments" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:214 +msgid "This is the email text to send to those who have made CubePoints checkouts. You should include your CubePoints instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:212 +#: includes/common/payment-gateways/free_orders.php:188 +#: includes/common/payment-gateways/manual-payments.php:154 +msgid "Order Confirmation Email" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:207 +#: includes/common/payment-gateways/manual-payments.php:149 +msgid "Confirmation User Instructions" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:202 +#: includes/common/payment-gateways/manual-payments.php:144 +msgid "User Instructions" +msgstr "Arahan Pengguna" + +#: includes/common/payment-gateways/_cubepoints.php:198 +#: includes/common/payment-gateways/free_orders.php:170 +#: includes/common/payment-gateways/manual-payments.php:139 +msgid "Enter a public name for this payment method that is displayed to users - No HTML" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:532 +#: includes/common/payment-gateways/_cubepoints.php:196 +#: includes/common/payment-gateways/free_orders.php:169 +#: includes/common/payment-gateways/manual-payments.php:138 +msgid "Method Name" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:187 +msgid "Accept CubePoints as payment(requires the CubePoints plugin)." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:140 +msgid "Sorry, but you do not appear to have enough points to complete this purchase!" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:124 +msgid "%s Store Purchase" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:79 +#: includes/common/payment-gateways/_cubepoints.php:171 +msgid "Your current points: " +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:133 +#: includes/common/payment-gateways/_cubepoints.php:197 +msgid "CubePoints" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:344 +msgid "Authorize.net AIM Checkout" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:331 +msgid "Custom API URL" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:332 +msgid "Many other gateways have Authorize.net API emulators. To use one of these gateways input their API post url here." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:322 +msgid "Request a delimited response from the payment gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:316 +msgid "Security: MD5 Hash" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:317 +msgid "The payment gateway generated MD5 hash value that can be used to authenticate the transaction response. Not needed because responses are returned using an SSL connection." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:306 +msgid "Customer Receipt Email Footer" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:296 +msgid "Customer Receipt Email Header" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:297 +#: includes/common/payment-gateways/paypal-payflow.php:446 +msgid "This text will appear as the header of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:282 +msgid "Encapsulation Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:283 +msgid "Authorize.net default is blank. Otherwise, get this from your credit card processor. If the transactions are going through, but getting strange responses, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:273 +msgid "Optional settings to control advanced options" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:224 +#: includes/common/payment-gateways/authorizenet-aim.php:272 +msgid "Advanced Settings" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:253 +msgid "Transaction Key" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:246 +msgid "Login ID" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:396 +msgid "Gateway Credentials" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:221 +msgid "Authorize.net AIM is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway. USD is the only currency supported by this gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:205 +msgid "There was a problem finalizing your purchase. %s Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:519 +#: includes/common/payment-gateways/paypal-chained-payments.php:218 +#: includes/common/payment-gateways/paypal-chained-payments.php:498 +#: includes/common/payment-gateways/paypal-express.php:822 +#: includes/common/payment-gateways/paypal-express.php:1092 +msgid "The payment has been completed, and the funds have been added successfully to your account balance." +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:233 +msgid "Please enter a valid credit card security code" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:224 +#: includes/public/class-mp-checkout.php:867 +msgid "Please enter a valid credit card number" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:221 +msgid "Please enter your credit card number" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:217 +msgid "Please enter your credit card security code" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:213 +msgid "Please select your credit card expiration date." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:299 +#: includes/common/payment-gateways/authorizenet-aim.php:50 +#: includes/common/payment-gateways/eway.php:148 +#: includes/common/payment-gateways/eway.php:298 +#: includes/common/payment-gateways/eway31.php:267 +#: includes/common/payment-gateways/paymill.php:46 +#: includes/common/payment-gateways/paypal-express.php:972 +#: includes/common/payment-gateways/paypal-payflow.php:60 +#: includes/common/payment-gateways/pin.php:46 +#: includes/common/payment-gateways/simplify.php:19 +#: includes/common/payment-gateways/stripe.php:46 +#: includes/common/payment-gateways/wepay.php:37 +msgid "Credit Card" +msgstr "Kat Kredit" + +#: includes/common/payment-gateways/authorizenet-aim.php:49 +msgid "Authorize.net Checkout" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:156 +#: includes/common/payment-gateways/stripe.php:293 +msgid "Selecting a currency other than that used for your store may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:352 +msgid "Seller ID" +msgstr "ID Penjual" + +#: includes/common/payment-gateways/2checkout.php:340 +#: includes/common/payment-gateways/_ideal.php:311 +#: includes/common/payment-gateways/authorizenet-aim.php:234 +#: includes/common/payment-gateways/eway.php:376 +#: includes/common/payment-gateways/payfast.php:315 +#: includes/common/payment-gateways/paypal-chained-payments.php:368 +#: includes/common/payment-gateways/paypal-express.php:699 +#: includes/common/payment-gateways/paypal-payflow.php:391 +msgid "Live" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:339 +#: includes/common/payment-gateways/authorizenet-aim.php:233 +#: includes/common/payment-gateways/eway.php:375 +#: includes/common/payment-gateways/paypal-chained-payments.php:367 +#: includes/common/payment-gateways/paypal-express.php:698 +#: includes/common/payment-gateways/paypal-payflow.php:390 +#: includes/common/shipping-modules/mp-fedex.php:263 +msgid "Sandbox" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:336 +#: includes/common/payment-gateways/_ideal.php:307 +#: includes/common/payment-gateways/authorizenet-aim.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:365 +#: includes/common/payment-gateways/paypal-express.php:695 +#: includes/common/payment-gateways/paypal-payflow.php:387 +#: includes/common/payment-gateways/wepay.php:130 +#: includes/common/shipping-modules/mp-fedex.php:260 +msgid "Mode" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:288 +#: includes/common/payment-gateways/mijireh.php:242 +#: includes/common/payment-gateways/mollie.php:212 +msgid "The order has been received" +msgstr "Pesanan diterima" + +#: includes/common/payment-gateways/2checkout.php:74 +#: includes/common/payment-gateways/2checkout.php:75 +#: includes/common/payment-gateways/2checkout.php:435 +msgid "2Checkout" +msgstr "2Checkout" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:306 +msgid "Confirm" +msgstr "Sahkan" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:218 +#: includes/common/class-mp-cart.php:974 includes/common/class-mp-cart.php:1354 +#: includes/common/template-functions.php:918 +msgid "Checkout" +msgstr "" + +#: includes/common/template-functions.php:207 +msgid "Check Order Status" +msgstr "Periksa Status Pesanan" + +#: includes/common/template-functions.php:235 +msgid "View Products" +msgstr "Lihat Produk" + +#: includes/common/template-functions.php:263 +msgid "Visit Store" +msgstr "" + +#: includes/common/template-functions.php:2912 +#: includes/multisite/template-functions.php:448 +msgid "Order By" +msgstr "Pesanan dari" + +#: includes/common/template-functions.php:2887 +#: includes/multisite/template-functions.php:405 +msgid "Price (High to Low)" +msgstr "" + +#: includes/common/template-functions.php:2886 +#: includes/multisite/template-functions.php:404 +msgid "Price (Low to High)" +msgstr "" + +#: includes/common/template-functions.php:2881 +#: includes/multisite/template-functions.php:399 +msgid "Default" +msgstr "" + +#: includes/common/template-functions.php:2858 +msgid "Show All" +msgstr "" + +#: includes/common/class-mp-product.php:2048 +msgid "View Larger Image »" +msgstr "" + +#: includes/common/class-mp-product.php:979 +msgid "Out of Stock" +msgstr "Tiada dalam stok" + +#: includes/common/template-functions.php:148 +msgid "Price: " +msgstr "Harga" + +#: includes/multisite/template-functions.php:833 +msgid "No Tags" +msgstr "" + +#: includes/common/template-functions.php:3162 +msgid "Uncategorized" +msgstr "" + +#: includes/common/class-mp-cart.php:569 includes/common/class-mp-order.php:604 +#: includes/common/helpers.php:115 +msgid "Download" +msgstr "Muat turun" + +#: includes/common/class-mp-cart.php:1353 +msgid "Empty Cart" +msgstr "Borang kosong" + +#: includes/common/payment-gateways/_payway.php:291 +#: includes/common/payment-gateways/paypal-express.php:718 +#: includes/common/payment-gateways/paypal-payflow.php:423 +#: includes/common/shipping-modules/mp-ups.php:158 +#: includes/public/class-mp-checkout.php:1254 +#: includes/public/class-mp-checkout.php:1383 +msgid "Password" +msgstr "Katalaluan" + +#: includes/common/payment-gateways/eway.php:387 +#: includes/common/payment-gateways/paypal-express.php:711 +#: includes/common/shipping-modules/mp-usps.php:185 +#: includes/public/class-mp-checkout.php:1249 +msgid "Username" +msgstr "Kata nama" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:437 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:790 +msgid "Have a coupon code?" +msgstr "Ada kod kupon ?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:321 +#: includes/admin/class-mp-orders-admin.php:526 +#: includes/common/class-mp-cart.php:592 +msgid "Remove" +msgstr "Dikeluarkan" + +#: includes/admin/class-mp-ajax.php:316 +msgid "Quantity:" +msgstr "Bilangan" + +#: includes/admin/class-mp-products-admin.php:2140 +#: includes/admin/class-mp-products-admin.php:2387 +#: includes/common/shipping-modules/class-mp-shipping-api.php:507 +msgid "Extra Shipping Cost" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:403 +msgid "Choose a Shipping Method:" +msgstr "Pilih Kaedah Penghantaran:" + +#: includes/admin/class-mp-products-admin.php:1691 +#: includes/admin/class-mp-products-admin.php:2131 +#: includes/admin/class-mp-products-admin.php:2378 +#: includes/common/shipping-modules/class-mp-shipping-api.php:228 +msgid "Ounces" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1684 +#: includes/admin/class-mp-products-admin.php:2123 +#: includes/admin/class-mp-products-admin.php:2369 +#: includes/admin/class-mp-setup-wizard.php:546 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:165 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +#: includes/common/shipping-modules/class-mp-shipping-api.php:227 +msgid "Pounds" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:226 +msgid "Product Weight:" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:214 +msgid "Weight (Kilograms)" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:82 +msgid "Number of Categories:" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:72 +msgid "Product Count" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:20 +#: includes/admin/class-mp-product-attributes-admin.php:129 +#: includes/admin/class-mp-product-attributes-list-table.php:22 +#: includes/admin/class-mp-products-admin.php:2216 +#: includes/admin/class-mp-shortcode-builder.php:628 +#: includes/admin/class-mp-shortcode-builder.php:1415 +#: includes/admin/widgets/ms-global-categories.php:70 +#: includes/common/shipping-modules/mp-fedex.php:395 +#: includes/common/shipping-modules/mp-ups.php:202 +#: includes/common/shipping-modules/mp-usps.php:243 +#: includes/public/class-mp-checkout.php:314 +msgid "Name" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:67 +msgid "Order Categories By:" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:24 +#: includes/admin/widgets/ms-global-categories.php:50 +msgid "Global Product Categories" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:15 +msgid "Global Product Category List" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:13 +msgid "Displays a network-wide HTML list of product categories from network MarketPress stores." +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:24 +#: includes/admin/widgets/ms-global-tag-cloud.php:45 +msgid "Global Product Tags" +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:15 +msgid "Global Product Tag Cloud" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:947 +#: includes/admin/widgets/ms-global-product-list.php:173 +msgid "Excerpt" +msgstr "Petikan" + +#: includes/admin/widgets/ms-global-product-list.php:169 +msgid "Content To Show:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:140 +msgid "Limit To Product Tag:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:132 +msgid "Limit To Product Category:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:72 +msgid "Global Products" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:16 +msgid "Global Product List" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:14 +msgid "Shows a customizable global list of products from network MarketPress stores." +msgstr "" + +#: includes/common/class-mp-product.php:974 +#: includes/multisite/template-functions.php:731 +msgid "Buy Now »" +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:13 +msgid "Displays global most used product tags in cloud format from network MarketPress stores." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:438 +msgid "Theme Permissions" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:402 +#: includes/multisite/class-mp-admin-multisite.php:448 +msgid "No Access" +msgstr "" + +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:120 +msgid "Pro Site Level" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:401 +#: includes/multisite/class-mp-admin-multisite.php:447 +msgid "All Can Use" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:390 +msgid "Gateway Permissions" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:375 +msgid "Select a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:350 +msgid "Global Gateway" +msgstr "" + +#. Plugin Name of the plugin/theme +msgid "MarketPress" +msgstr "MarketPress" + +#: includes/admin/widgets/product-tag-cloud.php:7 +msgid "Your most used product tags in cloud format from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/categories.php:79 +msgid "Show hierarchy" +msgstr "" + +#: includes/admin/widgets/categories.php:76 +#: includes/admin/widgets/ms-global-categories.php:92 +msgid "Show product counts" +msgstr "Paparkan bilangan produk" + +#: includes/admin/widgets/categories.php:73 +msgid "Show as dropdown" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:710 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:736 +#: includes/admin/widgets/categories.php:30 +msgid "Select Category" +msgstr "" + +#: includes/admin/widgets/categories.php:7 +msgid "A list or dropdown of product categories from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/product-list.php:250 +msgid "Show Buy Button" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:183 +#: includes/admin/widgets/product-list.php:244 +msgid "Show Price" +msgstr "" + +#: includes/admin/widgets/product-list.php:241 +msgid "Show Excerpt" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:155 +#: includes/admin/widgets/product-list.php:238 +msgid "Thumbnail Size:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:153 +#: includes/admin/widgets/product-list.php:237 +msgid "Show Thumbnail" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:147 +#: includes/admin/widgets/product-list.php:233 +msgid "Display Settings" +msgstr "Tunjukkan Tetapan" + +#: includes/admin/widgets/ms-global-product-list.php:136 +#: includes/admin/widgets/ms-global-product-list.php:144 +#: includes/admin/widgets/product-list.php:230 +msgid "Enter the Slug" +msgstr "Masukkan Slug" + +#: includes/admin/widgets/product-list.php:228 +#: includes/common/template-functions.php:894 +msgid "Tag" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:686 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:712 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:739 +#: includes/admin/class-mp-shortcode-builder.php:796 +#: includes/admin/widgets/product-list.php:227 +#: includes/common/template-functions.php:886 +#: includes/common/template-functions.php:2907 +msgid "Category" +msgstr "Kategori" + +#: includes/admin/widgets/product-list.php:226 +msgid "No Filter" +msgstr "" + +#: includes/admin/widgets/product-list.php:224 +msgid "Taxonomy Filter:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:108 +#: includes/admin/widgets/product-list.php:209 +msgid "Order Products By:" +msgstr "Pesanan Produk Mengikut:" + +#: includes/admin/widgets/ms-global-product-list.php:101 +#: includes/admin/widgets/product-list.php:206 +msgid "Number of Products:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:98 +#: includes/admin/widgets/product-list.php:204 +msgid "List Settings" +msgstr "Tetapan senarai" + +#: includes/admin/widgets/product-list.php:177 +msgid "Our Products" +msgstr "Produk Kami" + +#: includes/admin/widgets/product-list.php:144 +#: includes/common/template-functions.php:2070 +#: includes/common/template-functions.php:2347 +#: includes/multisite/template-functions.php:303 +#: includes/multisite/template-functions.php:623 +msgid "No Products" +msgstr "Tiada Produk" + +#: includes/admin/widgets/product-list.php:8 +msgid "Product List" +msgstr "Senarai Produk" + +#: includes/admin/widgets/product-list.php:7 +msgid "Shows a customizable list of products from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/cart.php:75 includes/admin/widgets/categories.php:82 +#: includes/admin/widgets/product-list.php:253 +#: includes/admin/widgets/product-tag-cloud.php:57 +msgid "Only show on store pages" +msgstr "" + +#: includes/admin/widgets/cart.php:65 +#: includes/admin/widgets/ms-global-product-list.php:92 +#: includes/admin/widgets/product-list.php:200 +msgid "Custom Text:" +msgstr "" + +#: includes/admin/widgets/cart.php:64 includes/admin/widgets/categories.php:69 +#: includes/admin/widgets/ms-global-categories.php:59 +#: includes/admin/widgets/ms-global-product-list.php:87 +#: includes/admin/widgets/ms-global-tag-cloud.php:49 +#: includes/admin/widgets/product-list.php:199 +#: includes/admin/widgets/product-tag-cloud.php:49 +msgid "Title:" +msgstr "Tajuk:" + +#: includes/admin/widgets/cart.php:7 +msgid "Shows dynamic shopping cart contents along with a checkout button for your MarketPress store." +msgstr "" + +#: includes/admin/widgets/product-tag-cloud.php:8 +msgid "Product Tag Cloud" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:539 +#: includes/admin/class-mp-setup-wizard.php:575 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:163 +msgid "Measurement System" +msgstr "Sistem Pengukuran" + +#: includes/admin/class-mp-setup-wizard.php:616 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:149 +msgid "Select Shipping Options" +msgstr "Pilih Pilihan Penghantaran" + +#: includes/admin/class-mp-setup-wizard.php:596 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:129 +msgid "Calculated Options" +msgstr "Pilihan Dikira" + +#: includes/admin/class-mp-setup-wizard.php:582 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:115 +msgid "No Shipping" +msgstr "Tiada Penghantaran" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:110 +msgid "EU" +msgstr "EU" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:109 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:93 +msgid "All" +msgstr "Semua" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:92 +msgid "Select:" +msgstr "Pilih:" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:185 +msgid "Store Pages" +msgstr "Laman Kedai" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:223 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:256 +msgid "Order Shipped" +msgstr "Pesanan Dihantar" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:60 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:95 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:128 +#: marketpress.php:266 +msgid "New Order" +msgstr "Pesanan Baru" + +#: includes/admin/class-mp-dashboard-widgets.php:314 +msgid "Email Notifications" +msgstr "Makluman E-Mel" + +#: includes/admin/class-mp-pages-admin.php:59 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:200 +msgid "Products List" +msgstr "Senarai Produk" + +#: includes/admin/class-mp-pages-admin.php:58 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:190 +msgid "Store Base" +msgstr "Dasar Kedai" + +#: includes/admin/class-mp-product-attributes-admin.php:108 +#: includes/admin/class-mp-shortcode-builder.php:635 +#: includes/admin/class-mp-shortcode-builder.php:708 +#: includes/admin/class-mp-shortcode-builder.php:875 +#: includes/admin/class-mp-shortcode-builder.php:1319 +#: includes/admin/class-mp-shortcode-builder.php:1422 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:526 +#: includes/admin/widgets/ms-global-categories.php:78 +#: includes/admin/widgets/ms-global-product-list.php:127 +#: includes/admin/widgets/product-list.php:221 +msgid "Ascending" +msgstr "Menaik" + +#: includes/admin/class-mp-product-attributes-admin.php:109 +#: includes/admin/class-mp-shortcode-builder.php:636 +#: includes/admin/class-mp-shortcode-builder.php:709 +#: includes/admin/class-mp-shortcode-builder.php:876 +#: includes/admin/class-mp-shortcode-builder.php:1320 +#: includes/admin/class-mp-shortcode-builder.php:1423 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:525 +#: includes/admin/widgets/ms-global-categories.php:75 +#: includes/admin/widgets/ms-global-product-list.php:124 +#: includes/admin/widgets/product-list.php:220 +msgid "Descending" +msgstr "Menurun" + +#: includes/admin/class-mp-shortcode-builder.php:637 +#: includes/admin/class-mp-shortcode-builder.php:695 +#: includes/admin/class-mp-shortcode-builder.php:862 +#: includes/admin/class-mp-shortcode-builder.php:1306 +#: includes/admin/class-mp-shortcode-builder.php:1424 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:518 +#: includes/admin/widgets/ms-global-product-list.php:121 +#: includes/admin/widgets/product-list.php:218 +msgid "Random" +msgstr "Rawak" + +#: includes/admin/class-mp-shortcode-builder.php:694 +#: includes/admin/class-mp-shortcode-builder.php:861 +#: includes/admin/class-mp-shortcode-builder.php:1305 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:517 +#: includes/admin/widgets/ms-global-product-list.php:119 +#: includes/admin/widgets/product-list.php:216 +msgid "Product Price" +msgstr "Harga Produk" + +#: includes/admin/class-mp-shortcode-builder.php:693 +#: includes/admin/class-mp-shortcode-builder.php:860 +#: includes/admin/class-mp-shortcode-builder.php:1304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:516 +#: includes/admin/widgets/ms-global-product-list.php:117 +#: includes/admin/widgets/product-list.php:215 +msgid "Number of Sales" +msgstr "Bilangan Jualan" + +#: includes/admin/class-mp-shortcode-builder.php:692 +#: includes/admin/class-mp-shortcode-builder.php:859 +#: includes/admin/class-mp-shortcode-builder.php:1303 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:515 +#: includes/admin/widgets/product-list.php:214 +msgid "Product Author" +msgstr "Pengarang Produk" + +#: includes/admin/class-mp-shortcode-builder.php:691 +#: includes/admin/class-mp-shortcode-builder.php:858 +#: includes/admin/class-mp-shortcode-builder.php:1302 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:514 +#: includes/admin/widgets/product-list.php:213 +msgid "Product ID" +msgstr "ID Produk" + +#: includes/admin/class-mp-shortcode-builder.php:690 +#: includes/admin/class-mp-shortcode-builder.php:857 +#: includes/admin/class-mp-shortcode-builder.php:1301 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:513 +#: includes/admin/widgets/ms-global-product-list.php:113 +#: includes/admin/widgets/product-list.php:212 +msgid "Publish Date" +msgstr "Tarikh Diterbitkan" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:430 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:726 +msgid "Width" +msgstr "Lebar" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:439 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:735 +msgid "Height" +msgstr "Tinggi" + +#: includes/admin/class-mp-product-attributes-admin.php:88 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:402 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:698 +msgid "Custom" +msgstr "Sendiri" + +#: includes/common/class-mp-product.php:179 +#: includes/common/class-mp-product.php:992 +#: includes/common/class-mp-product.php:1000 +#: includes/multisite/template-functions.php:579 +msgid "Buy Now" +msgstr "Beli" + +#: includes/common/class-mp-product.php:175 +#: includes/common/class-mp-product.php:990 +#: includes/common/class-mp-product.php:998 +msgid "Add To Cart" +msgstr "Tambah ke Troli" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:807 +msgid "Store Style" +msgstr "Penggayaan Kedai" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1021 +msgid "Edit Coupon" +msgstr "Sunting Kupon" + +#: includes/addons/mp-coupons/class-mp-coupon.php:580 +#: includes/admin/class-mp-ajax.php:238 +#: includes/admin/class-mp-products-admin.php:1532 +msgid "Unlimited" +msgstr "Tidak terhad" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1198 +msgid "Remaining Uses" +msgstr "Baki Kegunaan" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1197 +msgid "Used" +msgstr "Digunakan" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:752 +#: includes/admin/class-mp-products-admin.php:2343 +msgid "Start Date" +msgstr "Tarikh Mula" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:598 +msgid "Coupon Code" +msgstr "Kod Kupon" + +#: includes/admin/class-mp-orders-admin.php:444 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:284 +msgid "Save Changes" +msgstr "Perubahan disahkan" + +#: includes/admin/class-mp-pages-admin.php:57 +#: includes/admin/class-mp-shortcode-builder.php:716 +#: includes/admin/class-mp-shortcode-builder.php:727 +#: includes/admin/class-mp-shortcode-builder.php:883 +#: includes/admin/class-mp-shortcode-builder.php:894 +#: includes/admin/class-mp-shortcode-builder.php:946 +#: includes/admin/class-mp-shortcode-builder.php:956 +#: includes/admin/class-mp-shortcode-builder.php:1006 +#: includes/admin/class-mp-shortcode-builder.php:1327 +#: includes/admin/class-mp-shortcode-builder.php:1338 +#: includes/admin/store-settings/class-mp-store-settings-general.php:357 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:270 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:108 +#: includes/admin/widgets/ms-global-product-list.php:172 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:94 +msgid "None" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:352 +msgid "Google Analytics Ecommerce Tracking" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:310 +msgid "This option turns MarketPress into more of a product listing plugin, disabling shopping carts, checkout, and order management. This is useful if you simply want to list items you can buy in a store somewhere else, optionally linking the \"Buy Now\" buttons to an external site. Some examples are a car dealership, or linking to songs/albums in itunes, or linking to products on another site with your own affiliate links." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:304 +msgid "Whether or not customers must be registered and logged in to checkout. (Not recommended: Enabling this can lower conversions)" +msgstr "Sama ada atau tidak pelanggan mesti mendaftar dan log masuk untuk checkout. (Tidak disyorkan: Mengaktifkan pilihan ini boleh menurunkan kadar pembelian)" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:258 +msgid "How many times may a customer download a file they have purchased? (It's best to set this higher than one in case they have any problems downloading)" +msgstr "Berapa kali pelanggan boleh memuat turun fail yang telah dibeli? (Yang terbaik adalah untuk menetapkan ini kepada lebih tinggi dari satu jika terdapat kes pelanggan mempunyai masalah memuat turun)" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:257 +msgid "Maximum Downloads" +msgstr "Muat Turun Maksima" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:298 +msgid "This will set the product to draft if inventory of all variations is gone." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:288 +msgid "At what low stock count do you want to be warned for products you have enabled inventory tracking for?" +msgstr "Bagi produk yang dijejaki sistem inventori, pada kiraan stok berapakah anda ingin diberitahu mengenai kekurangan stok?" + +#: includes/admin/class-mp-dashboard-widgets.php:208 +#: includes/admin/store-settings/class-mp-store-settings-general.php:287 +msgid "Inventory Warning Threshold" +msgstr "Had Amaran Inventori" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:282 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:542 +msgid "Miscellaneous Settings" +msgstr "Tetapan Pelbagai" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:429 +#: includes/multisite/class-mp-admin-multisite.php:247 +msgid "Show Decimal in Prices" +msgstr "Tunjukkan Titik Perpuluhan dalam Harga" + +#: includes/admin/class-mp-setup-wizard.php:451 +#: includes/admin/store-settings/class-mp-store-settings-general.php:403 +#: includes/multisite/class-mp-admin-multisite.php:221 +msgid "Currency Symbol Position" +msgstr "Posisi Simbol Matawang" + +#: includes/admin/class-mp-setup-wizard.php:444 +#: includes/admin/store-settings/class-mp-store-settings-general.php:396 +msgid "Store Currency" +msgstr "Matawang Kedai" + +#: includes/admin/class-mp-setup-wizard.php:429 +#: includes/admin/store-settings/class-mp-store-settings-general.php:381 +msgid "Currency Settings" +msgstr "Tetapan Matawang" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:516 +msgid "Please see your local tax laws. Note if this is enabled and a downloadable only cart, rates will be the default for your base location." +msgstr "Sila rujuk undang-undang cukai tempatan anda. Ambil perhatian bahawa jika pilihan ini diaktifkan dalam troli Muat Turun sahaja, kadar cukai akan dipiawaikan kepada lokasi dasar anda." + +#: includes/admin/class-mp-setup-wizard.php:529 +msgid "Apply Tax to Downloadable Products?" +msgstr "Kenakan Cukai ke atas Produk Muat Turun?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:498 +msgid "Enabling this option allows you to enter and show all prices inclusive of tax, while still listing the tax total as a line item in shopping carts. Please see your local tax laws." +msgstr "Menghidupkan pilihan ini membenarkan anda untuk memasukkan dan menunjukkan semua harga termasuk cukai, sementara masih menyenaraikan jumlah cukai dalam satu barisan dalam troli membeli-belah anda. Sila rujuk undang-undang cukai tempatan anda." + +#: includes/admin/class-mp-setup-wizard.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:497 +msgid "Enter Prices Inclusive of Tax?" +msgstr "Masukkan Harga Termasuk Cukai?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:492 +msgid "Please see your local tax laws. Most areas charge tax on shipping fees." +msgstr "Sila rujuk undang-undang cukai tempatan anda. Kebanyakan kawasan mengenakan cukai ke atas kos penghantaran." + +#: includes/admin/class-mp-setup-wizard.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:491 +msgid "Apply Tax To Shipping Fees?" +msgstr "Kenakan Cukai ke atas Kos Penghantaran?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:674 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:565 +#: includes/common/payment-gateways/authorizenet-aim.php:291 +#: includes/common/payment-gateways/authorizenet-aim.php:326 +#: includes/common/payment-gateways/payfast.php:347 +msgid "No" +msgstr "Tidak" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:675 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:759 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:512 +#: includes/admin/class-mp-setup-wizard.php:518 +#: includes/admin/class-mp-setup-wizard.php:524 +#: includes/admin/class-mp-setup-wizard.php:530 +#: includes/admin/class-mp-setup-wizard.php:564 +#: includes/admin/store-settings/class-mp-store-settings-general.php:232 +#: includes/admin/store-settings/class-mp-store-settings-general.php:299 +#: includes/admin/store-settings/class-mp-store-settings-general.php:305 +#: includes/admin/store-settings/class-mp-store-settings-general.php:311 +#: includes/admin/store-settings/class-mp-store-settings-general.php:317 +#: includes/admin/store-settings/class-mp-store-settings-general.php:328 +#: includes/admin/store-settings/class-mp-store-settings-general.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:341 +#: includes/admin/store-settings/class-mp-store-settings-general.php:348 +#: includes/admin/store-settings/class-mp-store-settings-general.php:367 +#: includes/admin/store-settings/class-mp-store-settings-general.php:493 +#: includes/admin/store-settings/class-mp-store-settings-general.php:499 +#: includes/admin/store-settings/class-mp-store-settings-general.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:556 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:375 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:381 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:387 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:474 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:493 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:532 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:574 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:606 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:664 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:670 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:677 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:683 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:689 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:763 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:774 +#: includes/common/payment-gateways/_bitpay.php:250 +#: includes/common/payment-gateways/_bitpay.php:257 +#: includes/common/payment-gateways/_bitpay.php:264 +#: includes/common/payment-gateways/authorizenet-aim.php:290 +#: includes/common/payment-gateways/authorizenet-aim.php:325 +#: includes/common/payment-gateways/free_orders.php:160 +#: includes/common/payment-gateways/payfast.php:346 +#: includes/common/payment-gateways/paymill.php:162 +#: includes/common/payment-gateways/paypal-payflow.php:441 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-checkbox.php:22 +msgid "Yes" +msgstr "Ya" + +#: includes/admin/class-mp-setup-wizard.php:492 +#: includes/admin/store-settings/class-mp-store-settings-general.php:472 +msgid "%s Tax Rate" +msgstr "%s Kadar Cukai" + +#: includes/admin/class-mp-setup-wizard.php:467 +#: includes/admin/store-settings/class-mp-store-settings-general.php:449 +msgid "Tax Settings" +msgstr "Tetapan Cukai" + +#: includes/admin/class-mp-setup-wizard.php:370 +#: includes/admin/store-settings/class-mp-store-settings-general.php:624 +msgid "Base Zip/Postal Code" +msgstr "Poskod Dasar" + +#: includes/admin/class-mp-setup-wizard.php:354 +#: includes/admin/store-settings/class-mp-store-settings-general.php:608 +msgid "Base State/Province/Region" +msgstr "Negeri Dasar" + +#: includes/admin/class-mp-setup-wizard.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:589 +msgid "Base Country" +msgstr "Negara Dasar" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:582 +msgid "Location Settings" +msgstr "Tetapan Lokasi." + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:195 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:800 +#: includes/multisite/class-mp-admin-multisite.php:172 +msgid "General Settings" +msgstr "Tetapan Am." + +#: includes/admin/class-mp-products-admin.php:1945 +#: includes/admin/class-mp-products-admin.php:2185 +#: includes/admin/class-mp-store-settings-admin.php:111 +#: includes/admin/class-mp-store-settings-admin.php:266 +msgid "General" +msgstr "Am" + +#: includes/admin/class-mp-store-settings-admin.php:242 +msgid "Importers" +msgstr "Pengimport" + +#: includes/admin/class-mp-store-settings-admin.php:115 +#: includes/admin/class-mp-store-settings-admin.php:234 +msgid "Payments" +msgstr "Pembayaran" + +#: includes/admin/class-mp-dashboard-widgets.php:313 +#: includes/admin/class-mp-store-settings-admin.php:112 +#: includes/admin/class-mp-store-settings-admin.php:222 +msgid "Presentation" +msgstr "Pembentangan" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:916 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1015 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1018 +#: includes/admin/class-mp-dashboard-widgets.php:305 marketpress.php:702 +msgid "Coupons" +msgstr "Kupon" + +#: includes/admin/class-mp-admin.php:251 +msgid "Download »" +msgstr "Muat Turun »" + +#: includes/admin/class-mp-admin.php:245 +#: includes/admin/class-mp-exporter-orders.php:170 +msgid "All Statuses" +msgstr "Semua Status" + +#: includes/admin/class-mp-admin.php:209 +#: includes/admin/class-mp-exporter-orders.php:150 +#: includes/admin/class-mp-exporter-orders.php:178 +msgid "Export Orders" +msgstr "Eksport Pesanan" + +#: includes/admin/class-mp-admin.php:228 +msgid "Show all dates" +msgstr "Paparkan semua tarikh" + +#: includes/admin/class-mp-orders-admin.php:947 +msgid "Change Status" +msgstr "Tukar Status" + +#: includes/admin/class-mp-orders-admin.php:287 +msgid "Order Notes" +msgstr "Nota Pesanan" + +#: includes/admin/class-mp-orders-admin.php:478 +msgid "Other" +msgstr "Lain" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:205 +msgid "Subtotal" +msgstr "Jumlah Kecil" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:84 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:87 +#: includes/admin/class-mp-products-admin.php:1737 +#: includes/common/class-mp-cart.php:1409 +#: includes/common/class-mp-product.php:559 +msgid "Quantity" +msgstr "Kuantiti" + +#: includes/common/helpers.php:93 +msgid "Item" +msgstr "Barangan" + +#: includes/common/class-mp-order.php:1050 +msgid "Current Status" +msgstr "Status Terkini" + +#: includes/admin/class-mp-orders-admin.php:297 +msgid "Order Actions" +msgstr "Tindakan Pesanan" + +#: includes/common/class-mp-product.php:1084 +msgid "More Info »" +msgstr "Lebih Maklumat »" + +#: includes/common/class-mp-product.php:2313 +msgid "Low Product Inventory Notification" +msgstr "Notis Inventori Produk Rendah" + +#: includes/common/class-mp-order.php:338 includes/common/data.php:154 +msgid "New Order Notification: ORDERID" +msgstr "Notis Pesanan Baru: ORDERID" + +#: includes/common/helpers.php:259 +msgid "Your payment for this order is complete." +msgstr "Bayaran anda untuk pesanan ini selesai." + +#: includes/common/helpers.php:261 +msgid "Your payment for this order is not yet complete. Here is the latest status:" +msgstr "Bayaran anda untuk pesanan ini belum selesai. Berikut adalah status terkini:" + +#: includes/common/helpers.php:256 +msgid "Payment Total:" +msgstr "Jumlah Bayaran:" + +#: includes/common/helpers.php:253 +msgid "Transaction ID:" +msgstr "ID Transaksi:" + +#: includes/common/helpers.php:249 +msgid "Payment Type:" +msgstr "Jenis Pembayaran:" + +#: includes/common/helpers.php:246 +msgid "Payment Method:" +msgstr "Kaedah Pembayaran:" + +#: includes/common/helpers.php:242 +msgid "Order Notes:" +msgstr "Nota Penghantaran:" + +#: includes/common/helpers.php:237 +msgid "Special Instructions:" +msgstr "Arahan Khas:" + +#: includes/common/helpers.php:232 +msgid "Tracking Number:" +msgstr "Nombor Tracking:" + +#: includes/common/helpers.php:223 includes/common/helpers.php:226 +#: includes/common/helpers.php:228 +#: includes/common/shipping-modules/class-mp-shipping-api.php:406 +#: includes/common/shipping-modules/class-mp-shipping-api.php:428 +msgid "Shipping Method:" +msgstr "Kaedah Penghantaran:" + +#: includes/common/helpers.php:168 +msgid "No shipping required for this order." +msgstr "Penghantaran tidak diperlukan untuk pesanan ini." + +#: includes/common/helpers.php:155 +msgid "Order Total:" +msgstr "Jumah Pesanan:" + +#: includes/common/class-mp-order.php:1025 +msgid "Taxes:" +msgstr "Cukai:" + +#: includes/common/class-mp-order.php:1032 includes/common/helpers.php:144 +msgid "Shipping:" +msgstr "Penghantaran:" + +#: includes/public/class-mp-checkout.php:367 +msgid "Street address, P.O. box, company name, c/o" +msgstr "Alamat, P.O Box, Nama Syarikat, c/o" + +#: includes/admin/class-mp-orders-admin.php:314 +msgid "Shipping Info" +msgstr "Maklumat Penghantaran" + +#: includes/public/class-mp-public.php:740 +msgid "Whoops, there was a problem loading up this file for your download. Please contact us for help." +msgstr "Alamak, terdapat masalah menyediakan fail ini untuk muat turun anda. Sila hubungi kami untuk bantuan." + +#: includes/public/class-mp-public.php:683 +msgid "Sorry, our records show you've downloaded this file %d out of %d times allowed. Please contact us if you still need help." +msgstr "Maaf, rekod kami menunjukkan anda telah memuat turun fail ini %d dari had %d yang dibenarkan. Sila hubungi kami jika anda memerlukan bantuan." + +#: includes/public/class-mp-public.php:634 +msgid "Sorry, your order has been marked as unpaid." +msgstr "Maaf, pesanan anda telah ditandakan sebagai belum dibayar." + +#: includes/public/class-mp-public.php:629 +msgid "Sorry, the link is invalid for this download." +msgstr "Maaf, pautan ini tidak sah untuk muat turun ini." + +#: includes/admin/class-mp-exporter-orders.php:15 +#: includes/admin/class-mp-products-admin.php:1172 +msgid "Cheatin’ uh?" +msgstr "Menipu’ ya?" + +#: includes/public/class-mp-public.php:407 +#: includes/public/class-mp-short-codes.php:128 +msgid "Please enter a valid email address." +msgstr "" + +#: includes/admin/class-mp-ajax.php:191 +#: includes/admin/class-mp-products-admin.php:1821 +#: includes/admin/class-mp-products-admin.php:2010 +#: includes/admin/class-mp-products-admin.php:2267 +msgid "File URL" +msgstr "URL Fail" + +#: includes/admin/class-mp-products-admin.php:1842 +msgid "External Link" +msgstr "Pautan Luar" + +#: includes/admin/class-mp-products-admin.php:2177 +msgid "Add Variation" +msgstr "Tambah Variasi" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:126 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:289 +msgid "Inventory" +msgstr "Inventori" + +#: includes/admin/class-mp-products-admin.php:438 +#: includes/admin/class-mp-products-admin.php:578 +#: includes/admin/class-mp-products-admin.php:1552 +#: includes/admin/class-mp-products-admin.php:2053 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:134 +msgid "Sale Price" +msgstr "Harga Jualan" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "Variation Name" +msgstr "Nama Variasi" + +#: includes/admin/class-mp-products-admin.php:1931 +msgid "Product Details" +msgstr "Butiran Produk" + +#: includes/admin/class-mp-product-attributes-list-table.php:33 +msgid "Delete" +msgstr "Padam" + +#: includes/admin/class-mp-orders-admin.php:1057 +msgid "Trashed" +msgstr "Dibuang" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:231 +#: includes/admin/class-mp-orders-admin.php:1015 +#: includes/common/class-mp-order.php:1052 includes/common/helpers.php:97 +msgid "Total" +msgstr "Jumlah" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1196 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:210 +#: includes/admin/class-mp-orders-admin.php:1014 +msgid "Discount" +msgstr "Diskaun" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:221 +#: includes/admin/class-mp-orders-admin.php:1013 +#: includes/common/payment-gateways/_ideal.php:148 +#: includes/common/payment-gateways/_payway.php:134 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:108 +msgid "Tax" +msgstr "Cukai" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:216 +#: includes/admin/class-mp-orders-admin.php:1012 +#: includes/admin/class-mp-products-admin.php:1958 +#: includes/admin/class-mp-products-admin.php:2198 +#: includes/admin/class-mp-store-settings-admin.php:114 +#: includes/admin/class-mp-store-settings-admin.php:230 +#: includes/common/class-mp-cart.php:717 includes/common/helpers.php:168 +#: includes/common/payment-gateways/_ideal.php:137 +#: includes/common/payment-gateways/_payway.php:116 +#: includes/public/class-mp-checkout.php:1304 +msgid "Shipping" +msgstr "Penghantaran" + +#: includes/admin/class-mp-orders-admin.php:1011 +msgid "Items" +msgstr "Butiran" + +#: includes/admin/class-mp-orders-admin.php:1010 +msgid "From" +msgstr "Dari" + +#: includes/admin/class-mp-exporter-orders.php:154 +#: includes/admin/class-mp-orders-admin.php:1009 +#: includes/common/class-mp-gdpr.php:370 +msgid "Order Date" +msgstr "Tarikh Pesanan" + +#: includes/admin/class-mp-orders-admin.php:1008 +#: includes/common/class-mp-gdpr.php:366 +#: includes/common/template-functions.php:2134 +msgid "Order ID" +msgstr "ID Pesanan" + +#: includes/addons/class-mp-addons-list-table.php:22 +#: includes/admin/class-mp-orders-admin.php:1007 +msgid "Status" +msgstr "Status" + +#: includes/admin/class-mp-orders-admin.php:1155 +msgid "N/A" +msgstr "N/A" + +#: includes/admin/class-mp-dashboard-widgets.php:243 +#: includes/admin/class-mp-products-admin.php:464 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:142 +msgid "Sales" +msgstr "Jualan" + +#: includes/admin/class-mp-products-admin.php:463 +msgid "Stock" +msgstr "Stok" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:85 +#: includes/admin/class-mp-ajax.php:176 includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:434 +#: includes/admin/class-mp-products-admin.php:462 +#: includes/admin/class-mp-products-admin.php:576 +#: includes/admin/class-mp-products-admin.php:1519 +#: includes/admin/class-mp-products-admin.php:1569 +#: includes/admin/class-mp-products-admin.php:1950 +#: includes/admin/class-mp-products-admin.php:2059 +#: includes/admin/class-mp-products-admin.php:2190 +#: includes/admin/class-mp-products-admin.php:2330 +#: includes/common/class-mp-cart.php:1415 includes/common/helpers.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:130 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:276 +msgid "Price" +msgstr "Harga" + +#: includes/admin/class-mp-ajax.php:173 +#: includes/admin/class-mp-products-admin.php:461 +#: includes/admin/class-mp-products-admin.php:1972 +#: includes/admin/class-mp-products-admin.php:2224 +msgid "SKU" +msgstr "SKU" + +#: includes/admin/class-mp-products-admin.php:459 +#: includes/admin/class-mp-products-admin.php:1793 +#: includes/admin/class-mp-products-admin.php:1805 +#: includes/admin/class-mp-products-admin.php:2163 +msgid "Variations" +msgstr "Variasi" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:83 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:86 +#: includes/admin/class-mp-dashboard-widgets.php:134 +#: includes/admin/class-mp-products-admin.php:458 +#: includes/admin/class-mp-products-admin.php:837 +#: includes/admin/class-mp-shortcode-builder.php:689 +#: includes/admin/class-mp-shortcode-builder.php:856 +#: includes/admin/class-mp-shortcode-builder.php:1300 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:512 +#: includes/admin/widgets/ms-global-product-list.php:115 +#: includes/admin/widgets/product-list.php:211 +msgid "Product Name" +msgstr "Nama Produk" + +#: includes/common/template-functions.php:2575 +msgid "Categorized in " +msgstr "Dikategorikan dalam" + +#: includes/admin/class-mp-orders-admin.php:305 +#: includes/common/payment-gateways/free_orders.php:176 +msgid "Payment Information" +msgstr "Maklumat Pembayaran" + +#: includes/admin/class-mp-exporter-orders.php:167 +#: includes/admin/class-mp-orders-admin.php:432 +#: includes/admin/class-mp-pages-admin.php:62 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:227 +#: includes/common/class-mp-gdpr.php:374 +#: includes/common/template-functions.php:175 +#: includes/common/template-functions.php:926 +msgid "Order Status" +msgstr "Status Pesanan" + +#. translators: %s: orders closed +#: marketpress.php:327 +msgid "Closed (%s)" +msgid_plural "Closed (%s)" +msgstr[0] "Ditutup (%s)" + +#: includes/admin/class-mp-admin.php:249 +#: includes/admin/class-mp-orders-admin.php:375 +#: includes/admin/class-mp-orders-admin.php:951 +#: includes/admin/class-mp-orders-admin.php:1053 +#: includes/admin/class-mp-orders-admin.php:1065 +#: includes/common/class-mp-gdpr.php:330 +#: includes/common/class-mp-order.php:1019 marketpress.php:325 +msgid "Closed" +msgstr "Ditutup" + +#. translators: %s: shipped orders +#: marketpress.php:320 +msgid "Shipped (%s)" +msgid_plural "Shipped (%s)" +msgstr[0] "Dihantar (%s)" + +#: includes/admin/class-mp-admin.php:248 +#: includes/admin/class-mp-orders-admin.php:376 +#: includes/admin/class-mp-orders-admin.php:950 +#: includes/admin/class-mp-orders-admin.php:1049 +#: includes/admin/class-mp-orders-admin.php:1064 +#: includes/common/class-mp-gdpr.php:329 +#: includes/common/class-mp-order.php:1002 marketpress.php:318 +msgid "Shipped" +msgstr "Dihantar" + +#. translators: %s: paid orders +#: marketpress.php:313 +msgid "Paid (%s)" +msgid_plural "Paid (%s)" +msgstr[0] "Dibayar (%s)" + +#: includes/admin/class-mp-admin.php:247 +#: includes/admin/class-mp-orders-admin.php:377 +#: includes/admin/class-mp-orders-admin.php:949 +#: includes/admin/class-mp-orders-admin.php:1045 +#: includes/admin/class-mp-orders-admin.php:1063 +#: includes/common/class-mp-gdpr.php:328 +#: includes/common/payment-gateways/2checkout.php:294 +#: includes/common/payment-gateways/_cubepoints.php:130 +#: includes/common/payment-gateways/authorizenet-aim.php:193 +#: includes/common/payment-gateways/free_orders.php:91 +#: includes/common/payment-gateways/mijireh.php:248 +#: includes/common/payment-gateways/paymill.php:273 +#: includes/common/payment-gateways/paypal-express.php:933 +#: includes/common/payment-gateways/paypal-express.php:967 +#: includes/common/payment-gateways/pin.php:258 +#: includes/common/payment-gateways/simplify.php:181 +#: includes/common/payment-gateways/stripe.php:368 +#: includes/common/payment-gateways/wepay.php:269 marketpress.php:311 +msgid "Paid" +msgstr "Dibayar" + +#. translators: %s: orders received +#: marketpress.php:306 +msgid "Received (%s)" +msgid_plural "Received (%s)" +msgstr[0] "Diterima (%s)" + +#: includes/admin/class-mp-admin.php:246 +#: includes/admin/class-mp-orders-admin.php:378 +#: includes/admin/class-mp-orders-admin.php:1041 +#: includes/admin/class-mp-orders-admin.php:1062 +#: includes/common/class-mp-gdpr.php:327 includes/common/class-mp-order.php:995 +#: includes/common/payment-gateways/payfast.php:244 marketpress.php:304 +msgid "Received" +msgstr "Diterima" + +#: marketpress.php:268 +msgid "Search Orders" +msgstr "Cari Pesanan" + +#: marketpress.php:267 +msgid "View Order" +msgstr "Lihat Pesanan" + +#: marketpress.php:262 +msgid "Order" +msgstr "Pesanan" + +#: includes/admin/class-mp-dashboard-widgets.php:301 +#: includes/admin/class-mp-orders-admin.php:989 marketpress.php:261 +msgid "Orders" +msgstr "Pesanan-pesanan" + +#: marketpress.php:228 +msgid "No Products found in Trash" +msgstr "Tiada Produk dijumpai didalam Sampah" + +#: marketpress.php:227 +msgid "No Products Found" +msgstr "Tiada Produk Dijumpai" + +#: marketpress.php:226 +msgid "Search Products" +msgstr "Cari Produk" + +#: marketpress.php:225 marketpress.php:229 +msgid "View Product" +msgstr "Lihat Produk" + +#: marketpress.php:224 +msgid "New Product" +msgstr "Produk Baru" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1022 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:258 +#: marketpress.php:223 +msgid "Edit" +msgstr "Ubah" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1019 +msgid "Create New" +msgstr "Buat Baru" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:687 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:698 +#: marketpress.php:217 +msgid "Product" +msgstr "Produk" + +#: includes/admin/class-mp-dashboard-widgets.php:307 +#: includes/common/template-functions.php:173 +#: includes/common/template-functions.php:179 +#: includes/common/template-functions.php:902 +#: includes/multisite/template-functions.php:82 marketpress.php:216 +#: marketpress.php:219 +msgid "Products" +msgstr "Produk-produk" + +#: includes/admin/class-mp-store-settings-admin.php:118 +#: includes/admin/widgets/product-tag-cloud.php:46 +#: includes/multisite/class-mp-admin-multisite.php:548 +msgid "Product Tags" +msgstr "Tag-tag Produk" + +#: includes/common/template-functions.php:2906 +#: includes/multisite/template-functions.php:449 +msgid "Product Category" +msgstr "Kategori Produk" + +#: includes/admin/class-mp-store-settings-admin.php:117 +#: includes/admin/widgets/categories.php:8 +#: includes/admin/widgets/categories.php:18 +#: includes/multisite/class-mp-admin-multisite.php:539 +msgid "Product Categories" +msgstr "Kategori Produk" + +#: includes/common/payment-gateways/stripe.php:332 +#: includes/common/template-functions.php:872 marketpress.php:218 +msgid "Store" +msgstr "Kedai" + +#: includes/admin/class-mp-pages-admin.php:60 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:209 +#: includes/admin/widgets/cart.php:8 includes/admin/widgets/cart.php:56 +#: includes/common/template-functions.php:174 +#: includes/common/template-functions.php:811 +msgid "Shopping Cart" +msgstr "Kad Belian" + +#: includes/admin/class-mp-store-settings-admin.php:110 +#: includes/admin/class-mp-store-settings-admin.php:218 +msgid "Store Settings" +msgstr "Tetapan Kedai" + +#: includes/addons/class-mp-addons-list-table.php:128 marketpress.php:607 +msgid "Settings" +msgstr "Tetapan" + +#: includes/common/data.php:178 includes/common/data.php:190 +msgid "Your Order Has Been Shipped! (ORDERID)" +msgstr "Pesanan Anda Telah Dihantar! (ORDERID)" + +#: includes/common/data.php:159 includes/common/data.php:166 +#: includes/common/data.php:172 +msgid "Your Order Confirmation (ORDERID)" +msgstr "Pengesahan Pesanan Anda (ORDERID)" + +#: includes/common/data.php:148 +msgid "

    Thank you for your order! We appreciate your business, and please come back often to check out our new products.

    " +msgstr "

    Terima kasih kerana pesanan anda! Kami menghargai perniagaan anda, dan sila datang kembali untuk menyemak produk baru kami.

    " + +#: includes/common/data.php:147 +msgid "

    You are almost done! Please do a final review of your order to make sure everything is correct then click the \"Confirm Payment\" button.

    " +msgstr "

    Anda hampir selesai! Sila lakukan semakan akhir pesanan anda untuk memastikan segala-galanya adalah betul kemudian klik butang \"Sahkan Bayaran\".

    " + +#: includes/common/data.php:145 +msgid "

    Please enter your shipping information in the form below to proceed with your order.

    " +msgstr "

    Sila masukkan maklumat penghantaran anda dalam borang dibawah untuk meneruskan pesanan anda.

    " + +#: includes/common/data.php:143 +msgid "

    If you have any questions about your order please do not hesitate to contact us.

    " +msgstr "

    Jika anda mempunyai sebarang pertanyaan tentang pembelian anda, sila jangan teragak-agak untuk menghubungi kami.

    " + +#: includes/common/data.php:106 +msgid "tag" +msgstr "tag" + +#: includes/common/data.php:105 +msgid "category" +msgstr "kategori" + +#: includes/common/data.php:104 +msgid "order-status" +msgstr "status-pesanan" + +#: includes/common/data.php:103 +msgid "shopping-cart" +msgstr "kad-belian" + +#: includes/common/data.php:102 +msgid "products" +msgstr "produk-produk" + +#. Translators: change default slugs here +#: includes/common/data.php:101 +msgid "store" +msgstr "kedai" \ No newline at end of file diff --git a/languages/mp-nb.mo b/languages/mp-nb.mo new file mode 100644 index 0000000000000000000000000000000000000000..25ef699cf314a824c311a62c38d8155edf7b9fce GIT binary patch literal 29270 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 'DOMPDF_ENABLE_HTML5PARSER', true ); to the wp-config.php file." +msgstr "" + +#: includes/public/class-mp-checkout.php:723 +msgid "Invalid Email" +msgstr "" + +#: includes/public/class-mp-checkout.php:721 +#: includes/public/class-mp-checkout.php:729 +msgid "This field is required" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:804 +msgid "This option changes the built-in css styles for store pages. For a custom css style, save your css file with the /* MarketPress Style: Your CSS Theme Name Here */ header line in the \"%s\" folder and it will appear in this list so you may select it. You should select \"None\" if you don't wish to use custom CSS styles or if you are using default theme templates or custom theme templates and css to make your own completely unique store design. For more information on custom theme templates click here »." +msgstr "" + +#: includes/public/class-mp-public.php:421 +#: includes/public/class-mp-short-codes.php:142 +msgid "Please enter a value greater than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:420 +#: includes/public/class-mp-short-codes.php:141 +msgid "Please enter a value less than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:419 +#: includes/public/class-mp-short-codes.php:140 +msgid "Please enter a value between {0} and {1}." +msgstr "" + +#: includes/public/class-mp-public.php:418 +#: includes/public/class-mp-short-codes.php:139 +msgid "Please enter a value between {0} and {1} characters long." +msgstr "" + +#: includes/public/class-mp-public.php:417 +#: includes/public/class-mp-short-codes.php:138 +msgid "Please enter at least {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:416 +#: includes/public/class-mp-short-codes.php:137 +msgid "Please enter no more than {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:415 +#: includes/public/class-mp-short-codes.php:136 +msgid "Please enter a value with a valid extension." +msgstr "" + +#: includes/public/class-mp-public.php:414 +#: includes/public/class-mp-short-codes.php:135 +msgid "Please enter the same value again." +msgstr "" + +#: includes/public/class-mp-public.php:413 +#: includes/public/class-mp-short-codes.php:134 +msgid "Please enter a valid credit card number." +msgstr "" + +#: includes/public/class-mp-public.php:412 +#: includes/public/class-mp-short-codes.php:133 +msgid "Please enter only digits." +msgstr "" + +#: includes/public/class-mp-public.php:411 +#: includes/public/class-mp-short-codes.php:132 +msgid "Please enter a valid number." +msgstr "" + +#: includes/public/class-mp-public.php:410 +#: includes/public/class-mp-short-codes.php:131 +msgid "Please enter a valid date (ISO)." +msgstr "" + +#: includes/public/class-mp-public.php:409 +#: includes/public/class-mp-short-codes.php:130 +msgid "Please enter a valid date." +msgstr "" + +#: includes/public/class-mp-public.php:408 +#: includes/public/class-mp-short-codes.php:129 +msgid "Please enter a valid URL." +msgstr "" + +#: includes/public/class-mp-public.php:406 +#: includes/public/class-mp-short-codes.php:127 +msgid "Please fix this field." +msgstr "" + +#: includes/public/class-mp-checkout.php:1287 +#: includes/public/class-mp-public.php:405 +#: includes/public/class-mp-short-codes.php:126 +msgid "This field is required." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:810 +msgid "None - Without Special CSS-styles" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:809 +msgid "Default - Using Default CSS-styles" +msgstr "" + +#: marketpress.php:739 +msgid "Enable multiple downloads per product" +msgstr "" + +#: marketpress.php:738 +msgid "Multiple Downloads" +msgstr "" + +#: includes/public/class-mp-checkout.php:715 +msgid "Invalid Zip Code" +msgstr "" + +#: includes/common/template-functions.php:2126 +msgid "Guest Email" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:195 +msgid "There was a problem finalizing your purchase. Please re-enter your credit card information and try again" +msgstr "" + +#: includes/common/class-mp-cart.php:565 includes/common/class-mp-order.php:600 +#: includes/common/helpers.php:111 +msgid "Download %1$s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:331 +msgid "Export products to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:328 +msgid "The import process uses the WordPress importer plugin." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:326 +msgid "Import / Export Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:325 +msgid "Export settings to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:324 +msgid "Import configuration" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:320 +msgid "Use the text below to export to a new installation. Or paste in the new configuration to import." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:318 +msgid "Import / Export Settings" +msgstr "" + +#. translators: URL to wp-admin/import.php +#: includes/admin/store-settings/class-mp-store-settings-import.php:266 +msgid "This importer is not installed. Please install importers from the main site." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:261 +msgid "Install Now" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:260 +msgid "Install %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:240 +msgid "Run Importer" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:239 +msgid "Run %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:258 +msgid "Import/Export" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1199 +msgid "Requires Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:737 +msgid "Optionally limit the user to some categories" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:671 +msgid "Should this coupon only be available to logged in users?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:670 +msgid "Require Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:655 +msgid "Mimimum number of products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:653 +msgid "Enter the minimum number of products in the cart that this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:648 +msgid "Can this coupon be limited to a number of products in the cart?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:334 +msgid "Add all values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:265 +msgid "Set as default variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:154 +msgid "Set Default" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:150 +msgid "More Info" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:40 +msgid "MarketPress - Quick Setup" +msgstr "" + +#: includes/public/class-mp-checkout.php:1399 +msgid "Proceed to checkout and create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1241 +#: includes/public/class-mp-checkout.php:1245 +msgid "Register account" +msgstr "" + +#: includes/public/class-mp-checkout.php:1233 +msgid "Register as customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:765 +msgid "

    Oops!

    Looks like you haven't added anything your cart. Let's go shopping!

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:763 +msgid "

    Oops!

    The cart is disabled.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing Information" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:214 +msgid "Global Currency" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:198 +msgid "Global Store Currency" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:507 +msgid "There are no shipping services available for this type of package in your location." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:168 +msgid "Using this USPS Shipping calculator requires requesting an Ecommerce API Username and Password. Get your free set of credentials here ». The password is no longer used for the API, just the username which you should enter below. The USPS test site has not yet been updated and currently doesn't work - you should just request activating your credentials with USPS and go live." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:339 +msgid "ZIP Code" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:334 +msgid "Last name" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:333 +msgid "First name" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:150 +msgid "These are the manual payment instructions to display on the order confirmation screen. TOTAL will be replaced with the order total and ORDERID will be replaced with Order ID." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:240 +msgid "You must login to Authorize.net merchant dashboard to obtain the API login ID and API transaction key. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:327 +msgid "
    1. Set the \"Return Method\" within Site Management to Header Redirect and set the \"Return URL\" to %s
    2. Set your notifications url to %s
    " +msgstr "" + +#: includes/common/data.php:191 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Also, digital downloads included in your order are now ready to be downloaded. Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:185 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order is now available to download! Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:184 +msgid "Your Order Is Ready To Be Downloaded! (ORDERID)" +msgstr "" + +#: includes/common/data.php:179 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:173 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received, your digital goods are ready to be downloaded and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:167 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received and your digital goods are ready to be downloaded. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:160 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +" Your order has been received, and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information: \n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/class-mp-product.php:638 +msgid "You can not add more items to cart." +msgstr "" + +#: includes/common/class-mp-product.php:635 +msgid "You can only add {0} to cart." +msgstr "" + +#: includes/common/class-mp-product.php:625 +msgid "This product has an order limit of %d." +msgstr "" + +#: includes/common/class-mp-order.php:1454 +msgid "Shipped: tracking code: %s" +msgstr "" + +#: includes/common/class-mp-order.php:1000 +#: includes/common/class-mp-order.php:1012 +msgid "Finished" +msgstr "" + +#: includes/common/class-mp-order.php:858 +msgid "Contact Details" +msgstr "" + +#: includes/common/class-mp-order.php:339 includes/common/data.php:155 +msgid "" +"A new order (ORDERID) was created in your store:\n" +"\n" +" ORDERINFOSKU\n" +"\n" +" SHIPPINGINFO\n" +"\n" +" PAYMENTINFO\n" +"\n" +msgstr "\n" + +#: includes/common/class-mp-cart.php:1858 +msgid "Add again" +msgstr "" + +#: includes/common/class-mp-cart.php:1852 +msgid "was removed from Shopping Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1242 +#: includes/public/class-mp-short-codes.php:160 +msgid "Cart update notice: this item has a limit per order or you have reached the stock limit." +msgstr "" + +#: includes/admin/widgets/product-list.php:235 +msgid "Show Only Featured Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:533 +msgid "If enabled, users won't be able to filter products per category and/or to order by release date/name/price." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:531 +msgid "Hide Products Filter?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:353 +msgid "Notification to registration email instead of billing email?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:322 +msgid "Order Shipped - Mixed orders (with both digital and physical products)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:289 +msgid "Order Shipped - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:224 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:194 +msgid "New Order - Mixed" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:161 +msgid "New Order - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:115 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:243 +msgid "Mixed orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:110 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:238 +msgid "Digital downloads orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:105 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:233 +msgid "Physical orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:96 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed.
    For orders placed with manual payment, emails set here will be overriden by the one configured in manual payments settings, under payments settings page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:89 +msgid "Customer Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:47 +msgid "Admin Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:566 +msgid "Only contact details" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:565 +msgid "Full billing info" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:561 +msgid "Details Collection" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:548 +msgid "Digital Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:515 +msgid "Apply Tax to Digital Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:236 +msgid "product (default)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:231 +msgid "If you are experiencing conflicts with other e-commerce plugins change this setting. This will change the internal post type of all your products. Please note that changing this option may break 3rd party themes or plugins." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1203 +msgid "Hide details" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1202 +msgid "Show all changes" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1184 +msgid "Version %s" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1161 +msgid "Current" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1131 +msgid "%s changelog" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:952 +msgid "We did not find any data for this plugin or theme..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:285 +msgid "Activate WPMU DEV Dashboard" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:279 +msgid "Just one more step - activate the WPMU DEV Dashboard plugin and you're all done!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:277 +msgid "Important updates are available for your WPMU DEV plugins/themes. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:273 +msgid "Just one more step to enable updates and support for %s!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:271 +msgid "Important updates are available for %s. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:264 +msgid "activate" +msgstr "" + +#: includes/admin/class-mp-admin.php:398 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:248 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:289 +msgid "Dismiss" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:247 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:288 +msgid "Saving..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:244 +msgid "Install Plugin" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:238 +msgid "Almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:236 +msgid "Important updates are available for your WPMU DEV plugins/themes. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:232 +msgid "%s is almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:230 +msgid "Important updates are available for %s. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:223 +msgid "install" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1428 +msgid "Sets the number of Tags to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1289 +msgid "How many products to display in the product list if \"paginate\" is set to false." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:739 +#: includes/admin/class-mp-shortcode-builder.php:906 +#: includes/admin/class-mp-shortcode-builder.php:1350 +msgid "Grid" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:735 +#: includes/admin/class-mp-shortcode-builder.php:902 +#: includes/admin/class-mp-shortcode-builder.php:1346 +msgid "Products will be displayed as list or grid." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:206 +msgid "Display a cloud or list of your global product tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:205 +msgid "Display a list of your global categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:204 +msgid "Display a list or grid of your global products." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:181 +msgid "Display a list of featured products." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1451 +msgid "Is Featured?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1444 +msgid "Featured Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:581 +#: includes/admin/class-mp-products-admin.php:1580 +msgid "% discount" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:579 +msgid "OR" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:460 +#: includes/admin/class-mp-products-admin.php:586 +#: includes/admin/widgets/product-list.php:217 +msgid "Featured" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:536 +#: includes/admin/class-mp-orders-admin.php:538 +msgid "Tracking Link" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:508 +msgid "Shipping Tax" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:356 +msgid "Shipping Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:352 +msgid "Taxes Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:349 +msgid "Products Total" +msgstr "" + +#: includes/admin/class-mp-ajax.php:366 +msgid "Oops! You entered an invalid username/email and or password." +msgstr "" + +#: includes/admin/class-mp-ajax.php:254 +msgid "Percentage Discount" +msgstr "" + +#: includes/admin/class-mp-ajax.php:234 +msgid "Limit the Amount of Items per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:214 +msgid "Unused Attributes" +msgstr "" + +#: includes/admin/class-mp-admin.php:82 +msgid "Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-admin.php:79 +msgid "MarketPress setup is not complete! Once you've completed this quick setup wizard you'll have a fully working online store - exciting! " +msgstr "" + +#: marketpress.php:263 +msgctxt "mp_order" +msgid "Add New" +msgstr "" + +#: marketpress.php:184 +msgctxt "product_tag" +msgid "Product Tag" +msgstr "" + +#: marketpress.php:183 +msgctxt "product_tag" +msgid "Product Tags" +msgstr "" + +#: marketpress.php:150 +msgctxt "product_category" +msgid "Product Category" +msgstr "" + +#: marketpress.php:149 +msgctxt "product_category" +msgid "Product Categories" +msgstr "" + +#. Author URI of the plugin/theme +msgid "http://premium.wpmudev.org" +msgstr "" + +#: marketpress.php:729 +msgid "Invoice PDF" +msgstr "" + +#: marketpress.php:712 +msgid "Grant access to themes and gateways depending on the user's Pro Site level" +msgstr "" + +#: marketpress.php:711 +msgid "Pro Sites" +msgstr "" + +#: marketpress.php:703 +msgid "Offer and accept coupon codes" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:687 +msgid "Install %s Pages" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:682 +msgid "Welcome to %s – Install pages required by the plugin automatically." +msgstr "" + +#: marketpress.php:668 +msgid "Your pages were created successfully." +msgstr "" + +#: marketpress.php:436 +msgid "Add a Product" +msgstr "" + +#: marketpress.php:271 +msgid "Parent Order" +msgstr "" + +#: marketpress.php:270 +msgid "No orders found in trash" +msgstr "" + +#: marketpress.php:269 +msgid "No orders found" +msgstr "Ingen ordre funnet" + +#: marketpress.php:265 +msgid "Edit Order" +msgstr "" + +#: marketpress.php:264 +msgid "Add New Order" +msgstr "Legg til Ny Ordre" + +#: marketpress.php:220 marketpress.php:221 +msgid "Add New Product" +msgstr "" + +#: marketpress.php:197 +msgid "No product tags found" +msgstr "" + +#: marketpress.php:196 +msgid "Choose from the most used product tags" +msgstr "" + +#: marketpress.php:195 +msgid "Add or remove product tags" +msgstr "" + +#: marketpress.php:194 +msgid "Separate product tags with commas" +msgstr "" + +#: marketpress.php:193 +msgid "Search Product Tags" +msgstr "" + +#: marketpress.php:192 +msgid "Parent Product Tag:" +msgstr "" + +#: marketpress.php:191 +msgid "Parent Product Tag" +msgstr "" + +#: marketpress.php:190 +msgid "New Product Tag Name" +msgstr "" + +#: marketpress.php:189 +msgid "Add New Product Tag" +msgstr "" + +#: marketpress.php:188 +msgid "Update Product Tag" +msgstr "" + +#: marketpress.php:187 +msgid "View Product Tag" +msgstr "" + +#: marketpress.php:186 +msgid "Edit Product Tag" +msgstr "" + +#: marketpress.php:185 +msgid "All Product Tags" +msgstr "" + +#: marketpress.php:163 +msgid "No product categories found" +msgstr "" + +#: marketpress.php:162 +msgid "Choose from the most used product categories" +msgstr "" + +#: marketpress.php:161 +msgid "Add or remove product categories" +msgstr "" + +#: marketpress.php:160 +msgid "Separate product categories with commas" +msgstr "" + +#: marketpress.php:159 +msgid "Search Product Categories" +msgstr "" + +#: marketpress.php:158 +msgid "Parent Product Category:" +msgstr "" + +#: marketpress.php:157 +msgid "Parent Product Category" +msgstr "" + +#: marketpress.php:156 +msgid "New Product Category Name" +msgstr "" + +#: marketpress.php:155 +msgid "Add New Product Category" +msgstr "" + +#: marketpress.php:154 +msgid "Update Product Category" +msgstr "" + +#: marketpress.php:153 +msgid "View Product Category" +msgstr "" + +#: marketpress.php:152 +msgid "Edit Product Category" +msgstr "" + +#: marketpress.php:151 +msgid "All Product Categories" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Please fix the %s1 and then try submitting the form again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Oops! The form contains %s1 which %s2 been highlighted below." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:660 +msgid "have" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:659 +msgid "has" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:651 +msgid "Value must be less than {0}" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:650 +msgid "Please enter only letters and numbers" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:539 +msgid "Due to prolonged inactivity on this page, one or more settings were not saved. Please try again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:535 +msgid "Settings Saved" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-user-select.php:22 +msgid "Select Some Users" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-section.php:18 +msgid "Section Title" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:425 +msgid "Are you sure you want to delete this?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:30 +msgid "Add Row" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-post-select.php:24 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-taxonomy-select.php:22 +msgid "Select Posts" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:210 +msgid "Add Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:129 +msgid "Select the image that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:93 +msgid "Select image(s) that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:79 +msgid "Select the image that you would like to use for this variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:48 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:82 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:68 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:132 +msgid "Select Image" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:31 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:160 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:168 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:19 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:115 +msgid "Select File" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:30 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:18 +msgid "Select the file that you would like to use." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:357 +msgid "Create Variations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:356 +msgid "Add Another Variant" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Insert a value and press ENTER" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "(e.g. White, Grey, Red etc.)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Variation Values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:333 +msgid "Or create new variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "(e.g. Color)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:303 +msgid "You are about to delete selected variants.
    If you want to continue please confirm." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:302 +msgid "Confirmation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:290 +msgid "Insert quantity available. Empty for unlimited." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:281 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:294 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:307 +msgid "Cancel" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:280 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:293 +msgid "Update" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:277 +msgid "Insert the price i.e. 25 or 25.50" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:115 +msgid "Img." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:85 +msgid "Add New Variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:79 +msgid "Delete Variants" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:78 +msgid "Update Prices" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:77 +msgid "Update Inventory" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:76 +msgid "Update Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:75 +msgid "Bulk Actions" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:73 +msgid "Select bulk action" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:196 +msgid "Configure Store" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:195 +msgid "Configure shipping rates, emails and your store's appearance. " +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:190 +msgid "Add Product" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:189 +msgid "Add your first product for sale and get familiar with adding products." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:184 +msgid "Your store is almost ready for its first customers, but first it needs some products. Get started by adding products below, or jump straight into further configuring your store’s settings." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:183 +msgid "Woohoo! Your online store is up and running." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:160 +msgid "Finish Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:124 +msgid "And what metric system do you want to use?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:113 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:142 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:159 +msgid "Back" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:109 +msgid "Do you want to apply tax for your products? You can customize this for each product and variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:105 +msgid "What currency do you want to sell with?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:93 +msgid "And, which countries do you want to sell to?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:89 +msgid "Where is your online store based?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:80 +msgid "Payment Gateway" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:79 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:123 +msgid "Metric System" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:78 +msgid "Currency & Tax" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:77 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:88 +msgid "Locations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:70 +msgid "Choose where you want to sell your stuff and what currency. Easy!" +msgstr "" + +#: includes/public/class-mp-checkout.php:1400 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:58 +msgid "Continue" +msgstr "" + +#: includes/admin/class-mp-admin.php:83 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:53 +msgid "Skip this step, I'll do this manually" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:49 +msgid "Install store pages" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:44 +msgid "Once you've completed this quick setup wizard you'll have a fully working online store - exciting! Start
    by creating the default store pages for the online store such as the cart, checkout and store pages." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:42 +msgid "MarketPress adds a full online store to your website, with heaps of configuration options and addons
    to suit your needs. It's really easy to get going, and only takes a few minutes to setup!" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:41 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:69 +msgid "Welcome to MarketPress - Quick Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-advanced-select.php:23 +msgid "Select Some Options" +msgstr "" + +#: includes/wpmudev-metaboxes/class-wpmudev-field.php:694 +msgid "You must the WPMUDEV_Field::display() method in your form field class" +msgstr "" + +#: includes/public/class-mp-short-codes.php:636 +msgid "Only %s left in stock..." +msgstr "" + +#: includes/public/class-mp-short-codes.php:633 +msgid "Unlimited stock" +msgstr "" + +#: includes/public/class-mp-short-codes.php:430 +msgid "product_id must be defined" +msgstr "" + +#: includes/public/class-mp-checkout.php:1250 +msgid "An account with this username already exists" +msgstr "" + +#: includes/public/class-mp-checkout.php:1394 +msgid "Continue as Guest" +msgstr "" + +#: includes/public/class-mp-checkout.php:1393 +msgid "Proceed to checkout and you'll have an opportunity to create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1392 +#: includes/public/class-mp-checkout.php:1398 +msgid "First-time customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1386 +msgid "Login" +msgstr "" + +#: includes/public/class-mp-checkout.php:1379 +msgid "E-Mail Address/Username" +msgstr "" + +#: includes/public/class-mp-checkout.php:1377 +msgid "Sign in to speed up the checkout process." +msgstr "" + +#: includes/public/class-mp-checkout.php:1376 +msgid "Have an account?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1297 +msgid "Shipping address different than billing?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1184 +msgid "There are no available gateways to process this payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1160 +msgid "Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:1123 +msgid "Oops! An error occurred while processing your payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1051 +msgid "Next Step »" +msgstr "" + +#: includes/public/class-mp-checkout.php:1045 +msgid "« Previous Step" +msgstr "" + +#: includes/public/class-mp-checkout.php:873 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:657 +msgid "error" +msgstr "" + +#: includes/public/class-mp-checkout.php:872 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:658 +msgid "errors" +msgstr "" + +#: includes/public/class-mp-checkout.php:871 +msgid "

    Oops! We found %d %s in the form below.

    Fields that have errors are highlighted in red below. Entering into a field will reveal the actual error that occurred.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:870 +msgid "Please enter a valid first and last name" +msgstr "" + +#: includes/public/class-mp-checkout.php:869 +msgid " Please enter a valid card security code" +msgstr "" + +#: includes/public/class-mp-checkout.php:868 +msgid "Please enter a valid card expiration" +msgstr "" + +#: includes/public/class-mp-checkout.php:773 +msgid "Javascript is required in order to checkout. Please enable Javascript in your browser and then refresh this page." +msgstr "" + +#: includes/public/class-mp-checkout.php:588 +msgid "An unknown error occurred. Please try again." +msgstr "" + +#: includes/public/class-mp-checkout.php:386 +msgid "Town/City" +msgstr "" + +#: includes/public/class-mp-checkout.php:380 +msgid "Apartment, suite, unit, building, floor, etc" +msgstr "Leilighet, etasje, enhet, etc." + +#: includes/public/class-mp-checkout.php:376 +msgid "Address Line 2" +msgstr "Adresse linje 2" + +#: includes/public/class-mp-checkout.php:363 +msgid "Address Line 1" +msgstr "" + +#: includes/common/class-mp-order.php:770 +#: includes/public/class-mp-checkout.php:354 +msgid "Company" +msgstr "" + +#: includes/public/class-mp-checkout.php:330 +msgid "Last" +msgstr "" + +#: includes/public/class-mp-checkout.php:321 +msgid "First" +msgstr "" + +#: includes/public/class-mp-checkout.php:284 +msgid "State/Province" +msgstr "" + +#: includes/public/class-mp-checkout.php:83 +msgid "Review Order/Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing/Shipping Address" +msgstr "" + +#: includes/public/class-mp-checkout.php:80 +msgid "Login/Register" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:530 +msgid "Marketplace" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:523 +msgid "Global Marketplace Pages" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +msgid "Store Network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +#: includes/multisite/class-mp-admin-multisite.php:494 +msgid "Store Network Settings" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:440 +msgid "Set theme access permissions for network stores. For a custom css theme, save your css file with the MarketPress Theme: NAME header in the /marketpress/ui/themes/ folder and it will appear in this list so you may select it." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:361 +msgid "Choose a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:336 +msgid "%d products get indexed" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:285 +msgid "Product Indexer" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:281 +msgid "Please hold on..." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:280 +msgid "Index Products" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:279 +msgid "%d products have been indexed in whole network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:182 +msgid "Enable Global Shopping Cart?" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:178 +msgid "Limit Global Widgets/Shortcodes To Main Blog?" +msgstr "" + +#: includes/common/template-functions.php:2802 +#: includes/multisite/template-functions.php:355 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:97 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:114 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:143 +msgid "Next" +msgstr "" + +#: includes/common/template-functions.php:2801 +#: includes/multisite/template-functions.php:354 +msgid "Prev" +msgstr "" + +#: includes/common/template-functions.php:2597 +msgid "Tagged in " +msgstr "" + +#: includes/common/template-functions.php:2196 +#: includes/common/template-functions.php:2202 +#: includes/common/template-functions.php:2214 +#: includes/common/template-functions.php:2217 +msgid "Oops! We couldn't locate any orders matching that order number. Please verify the order number and try again." +msgstr "" + +#: includes/common/template-functions.php:2138 +msgid "Look Up" +msgstr "" + +#: includes/common/template-functions.php:1423 +msgid "Please choose a shipping method" +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "If you have your order ID you can look it up using the form below." +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "Order Search" +msgstr "" + +#: includes/common/template-functions.php:910 +#: includes/public/class-mp-checkout.php:1440 +msgid "Cart" +msgstr "" + +#: includes/common/template-functions.php:895 +msgid "[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:887 +msgid "[mp_global_categories_list]" +msgstr "" + +#: includes/common/template-functions.php:880 +msgid "" +"Welcome to our market place!\n" +"\n" +"Check out our network of products:\n" +"\n" +"[mp_list_global_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_global_categories_list]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:879 +msgid "Global Store" +msgstr "" + +#: includes/common/template-functions.php:873 +msgid "" +"Welcome to our online store! Feel free to browse around:\n" +"\n" +"[mp_store_navigation]\n" +"\n" +"Check out our most popular products:\n" +"\n" +"[mp_popular_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_list_categories]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_tag_cloud]" +msgstr "" +"Velkommen til vår nettbutikk! Sjekk gjerne ut våre produkter:\n" +"\n" +"[mp_store_navigation]\n" +"\n" +"Sjekk ut våre mest populære produkter:\n" +"\n" +"[mp_popular_products]\n" +"\n" +"Bla i gjennom kategori:\n" +"\n" +"[mp_list_categories]\n" +"\n" +"Bla i gjennom ved nøkkelord:\n" +"\n" +"[mp_tag_cloud]" + +#: includes/common/shipping-modules/mp-weight-rate.php:127 +msgid "If cart weight is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:126 +msgid "Cart Weight" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:222 +msgid "Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:206 +msgid "Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:196 +msgid "Retail Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:195 +msgid "Online Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:193 +msgid "Rates Request Type" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:189 +msgid "Maximum Weight Per Package" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:195 +#: includes/common/shipping-modules/mp-usps.php:236 +msgid "Enter your standard box sizes as LengthxWidthxHeight (e.g. 12x8x6) For each box defined enter the maximum weight it can contain. Note: the shipping prices this plugin calculates are estimates. If they are consistently too low or too high, please check that the list of boxes above and the product weights are accurate and complete." +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:187 +msgid "Handling Charge Per Box Shipped" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:176 +#: includes/common/shipping-modules/mp-ups.php:181 +msgid "Offered Services" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:165 +msgid "Shipper Number" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:151 +msgid "User ID" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:144 +msgid "Developer Kit Access Key" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:140 +msgid "Use Sandbox Mode?" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:123 +msgid "In order to use UPS, you will need a UPS Developer Kit access key and the UPS user ID and password associated with the access key. Set these up for free here. If this information is missing or incorrect, an error will appear during the checkout process and the buyer will not be able to complete the transaction." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:112 +msgid "If cart total is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:111 +msgid "Cart Total" +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:95 +#: includes/common/shipping-modules/mp-weight-rate.php:111 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Don't worry about sorting as this will be done automatically upon saving." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:170 +msgid "Method Title (visible for clients)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:409 +#: includes/common/shipping-modules/mp-ups.php:216 +#: includes/common/shipping-modules/mp-usps.php:251 +msgid "Max Weight (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:402 +#: includes/common/shipping-modules/mp-ups.php:209 +#: includes/common/shipping-modules/mp-usps.php:247 +msgid "Size (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:387 +msgid "Enter your standard box sizes as LengthxWidthxHeight ( 12x8x6 ) For each box defined enter the maximum weight it can contain. Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:361 +#: includes/common/shipping-modules/mp-usps.php:229 +msgid "Handling Charge per International Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:353 +msgid "International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:339 +#: includes/common/shipping-modules/mp-usps.php:213 +msgid "Handling Charge per Domestic Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:331 +msgid "Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:321 +msgid "When checked the customer can chose Residential or Commercial delivery with Residential the default. Unchecked it's only Residential rates." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:320 +msgid "Allow Commercial Delivery?" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:315 +msgid "Fedex 10kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:314 +msgid "Fedex 25kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:313 +msgid "Fedex Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:312 +msgid "Fedex Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:311 +msgid "Fedex Pak" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:310 +msgid "Fedex Tube" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:306 +msgid "Default Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:294 +msgid "Dropoff Type" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:290 +msgid "Meter ID" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:134 +msgid "This is a residential address" +msgstr "Dette er en boligadresse" + +#: includes/common/payment-gateways/wepay.php:283 +msgid "There was an error processing your card: \"%s\". Please check your credit card info and try again." +msgstr "Det oppstod en feil ved prosesseringen av ditt kort: \"%s\". Vennligst sjekk kort informasjonen og prøv igjen." + +#: includes/common/payment-gateways/wepay.php:121 +msgid "Wepay makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept cards directly on your site. You don't need a merchant account or gateway. WePay handles everything including storing cards. Credit cards go directly to WePay's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:385 +msgid "There was an error processing your card - \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:356 +msgid "%s Store Purchase - Order ID - %s, Email - %s" +msgstr "%s Kjøp - Ordre ID - %s, Email - %s" + +#: includes/common/payment-gateways/stripe.php:251 +msgid "Stripe makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept Visa, MasterCard, American Express, Discover, JCB, and Diners Club cards directly on your site. You don't need a merchant account or gateway. Stripe handles everything, including storing cards, subscriptions, and direct payouts to your bank account. Credit cards go directly to Stripe's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:192 +msgid "ZMW - Zambian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:191 +msgid "ZAR - South African Rand" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:190 +msgid "YER - Yemeni Rial" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:189 +msgid "XPF - Cfp Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:188 +msgid "XOF - West African Cfa Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:187 +msgid "XCD - East Caribbean Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:186 +msgid "XAF - Central African Cfa Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:185 +msgid "WST - Samoan Tala" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:184 +msgid "VUV - Vanuatu Vatu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:183 +msgid "VND - Vietnamese Đồng" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:182 +msgid "VEF - Venezuelan Bolívar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:181 +msgid "UZS - Uzbekistani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:180 +msgid "UYI - Uruguayan Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:178 +msgid "UGX - Ugandan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:177 +msgid "UAH - Ukrainian Hryvnia" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:176 +msgid "TZS - Tanzanian Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:175 +msgid "TWD - New Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:174 +msgid "TTD - Trinidad and Tobago Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:172 +msgid "TOP - Tongan Paʻanga" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:171 +msgid "TJS - Tajikistani Somoni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:169 +msgid "SZL - Swazi Lilangeni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:168 +msgid "SVC - Salvadoran Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:167 +msgid "STD - São Tomé and Príncipe Dobra" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:166 +msgid "SRD - Surinamese Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:165 +msgid "SOS - Somali Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:164 +msgid "SLL - Sierra Leonean Leone" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:163 +msgid "SHP - Saint Helenian Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:160 +msgid "SCR - Seychellois Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:159 +msgid "SBD - Solomon Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:157 +msgid "RWF - Rwandan Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:156 +msgid "RUB - Russian Ruble" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:155 +msgid "RSD - Serbian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:154 +msgid "RON - Romanian Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:153 +msgid "QAR - Qatari Riyal" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:152 +msgid "PYG - Paraguayan Guaraní*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:151 +msgid "PLN - Polish Złoty" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:150 +msgid "PKR - Pakistani Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:149 +msgid "PHP - Philippine Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:148 +msgid "PGK - Papua New Guinean Kina" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:147 +msgid "PEN - Peruvian Nuevo Sol*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:146 +msgid "PAB - Panamanian Balboa*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:144 +msgid "NPR - Nepalese Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:142 +msgid "NIO - Nicaraguan Córdoba*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:141 +msgid "NGN - Nigerian Naira" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:140 +msgid "NAD - Namibian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:139 +msgid "MZN - Mozambican Metical" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:137 +msgid "MXN - Mexican Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:136 +msgid "MWK - Malawian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:135 +msgid "MVR - Maldivian Rufiyaa" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:134 +msgid "MUR - Mauritian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:133 +msgid "MRO - Mauritanian Ouguiya" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:132 +msgid "MOP - Macanese Pataca" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:131 +msgid "MNT - Mongolian Tögrög" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:130 +msgid "MKD - Macedonian Denar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:129 +msgid "MGA - Malagasy Ariary" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:128 +msgid "MDL - Moldovan Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:126 +msgid "LVL - Latvian Lats" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:124 +msgid "LSL - Lesotho Loti" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:123 +msgid "LRD - Liberian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:122 +msgid "LKR - Sri Lankan Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:121 +msgid "LBP - Lebanese Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:120 +msgid "LAK - Lao Kip*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:119 +msgid "KZT - Kazakhstani Tenge" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:118 +msgid "KYD - Cayman Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:117 +msgid "KRW - South Korean Won" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:116 +msgid "KMF - Comorian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:115 +msgid "KHR - Cambodian Riel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:114 +msgid "KGS - Kyrgyzstani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:113 +msgid "KES - Kenyan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:111 +msgid "JMD - Jamaican Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:110 +msgid "ISK - Icelandic Króna" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:109 +msgid "INR - Indian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:108 +msgid "ILS - Israeli New Sheqel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:107 +msgid "IDR - Indonesian Rupiah" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:105 +msgid "HTG - Haitian Gourde" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:103 +msgid "HNL - Honduran Lempira*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:101 +msgid "GYD - Guyanese Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:100 +msgid "GTQ - Guatemalan Quetzal*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:99 +msgid "GNF - Guinean Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:98 +msgid "GMD - Gambian Dalasi" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:97 +msgid "GIP - Gibraltar Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:96 +msgid "GEL - Georgian Lari" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:94 +msgid "FKP - Falkland Islands Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:93 +msgid "FJD - Fijian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:91 +msgid "ETB - Ethiopian Birr" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:90 +msgid "EGP - Egyptian Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:89 +msgid "EEK - Estonian Kroon*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:88 +msgid "DZD - Algerian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:87 +msgid "DOP - Dominican Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:85 +msgid "DJF - Djiboutian Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:84 +msgid "CZK - Czech Koruna*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:83 +msgid "CVE - Cape Verdean Escudo*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:82 +msgid "CRC - Costa Rican Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:81 +msgid "COP - Colombian Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:80 +msgid "CNY - Chinese Renminbi Yuan" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:79 +msgid "CLP - Chilean Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:77 +msgid "CDF - Congolese Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:76 +msgid "CAD - Canadian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:75 +msgid "BZD - Belize Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:74 +msgid "BWP - Botswana Pula" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:73 +msgid "BSD - Bahamian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:72 +msgid "BRL - Brazilian Real*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:71 +msgid "BOB - Bolivian Boliviano*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:70 +msgid "BND - Brunei Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:69 +msgid "BMD - Bermudian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:68 +msgid "BIF - Burundian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:67 +msgid "BGN - Bulgarian Lev" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:66 +msgid "BDT - Bangladeshi Taka" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:65 +msgid "BBD - Barbadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:64 +msgid "BAM - Bosnia & Herzegovina Convertible Mark" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:63 +msgid "AZN - Azerbaijani Manat" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:62 +msgid "AWG - Aruban Florin" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:61 +msgid "AUD - Australian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:60 +msgid "ARS - Argentine Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:59 +msgid "AOA - Angolan Kwanza*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:58 +msgid "ANG - Netherlands Antillean Gulden" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:57 +msgid "AMD - Armenian Dram" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:56 +msgid "ALL - Albanian Lek" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:55 +msgid "AFN - Afghan Afghani*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:54 +msgid "AED - United Arab Emirates Dirham" +msgstr "AED - United Arab Emirates Dirham" + +#: includes/common/payment-gateways/skrill.php:345 +msgid "Skrill balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:327 +msgid "Skrill IPN message received." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:283 +msgid "Skrill" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:278 +msgid "Pending payment" +msgstr "Påventende betaling" + +#: includes/common/payment-gateways/skrill.php:144 +msgid "The secret word must match the word submitted in the \"Merchant Tools\" section of your Skrill account." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:134 +msgid "You must use your valid Skrill merchant email. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:133 +msgid "Skrill Email" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:123 +msgid "Resell your inventory via Skrill.com (Moneybookers)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:95 +msgid "ZAR - South-African Rand" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:93 +msgid "TWD - Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:92 +msgid "TRY - New Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:91 +msgid "TND - Tunisian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:90 +msgid "THB - Thailand Baht" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:89 +msgid "SKK - Slovakian Koruna" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:86 +#: includes/common/payment-gateways/stripe.php:158 +msgid "SAR - Saudi Riyal" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:85 +msgid "RSD - Serbian dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:83 +msgid "QAR - Qatari Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:81 +msgid "OMR - Omani Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:80 +msgid "NOK - Norwegian Krone " +msgstr "" + +#: includes/common/payment-gateways/skrill.php:78 +#: includes/common/payment-gateways/stripe.php:138 +msgid "MYR - Malaysian Ringgit" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:77 +#: includes/common/payment-gateways/stripe.php:127 +msgid "MAD - Moroccan Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:74 +msgid "KRW - South-Korean Won" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:72 +msgid "JOD - Jordanian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:70 +msgid "INR - Indian Rupee" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:63 +msgid "EEK - Estonian Kroon" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:56 +msgid "AED - Utd. Arab Emir. Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:52 +msgid "Turkish" +msgstr "Tyrkisk" + +#: includes/common/payment-gateways/skrill.php:51 +msgid "Swedish" +msgstr "Svensk" + +#: includes/common/payment-gateways/skrill.php:50 +msgid "Spanish" +msgstr "Spansk" + +#: includes/common/payment-gateways/skrill.php:49 +msgid "Russian" +msgstr "Russisk" + +#: includes/common/payment-gateways/skrill.php:48 +msgid "Romainian" +msgstr "Rumensk" + +#: includes/common/payment-gateways/skrill.php:47 +msgid "Polish" +msgstr "Polsk" + +#: includes/common/payment-gateways/skrill.php:46 +msgid "Italian" +msgstr "Italiensk" + +#: includes/common/payment-gateways/skrill.php:45 +msgid "Greek" +msgstr "Gresk" + +#: includes/common/payment-gateways/skrill.php:44 +msgid "German" +msgstr "Tysk" + +#: includes/common/payment-gateways/skrill.php:43 +msgid "French" +msgstr "Fransk" + +#: includes/common/payment-gateways/skrill.php:42 +msgid "Finnish" +msgstr "Finsk" + +#: includes/common/payment-gateways/skrill.php:41 +msgid "English" +msgstr "Engelsk" + +#: includes/common/payment-gateways/skrill.php:40 +msgid "Dutch" +msgstr "Nederlandsk" + +#: includes/common/payment-gateways/skrill.php:39 +msgid "Danish" +msgstr "Dansk" + +#: includes/common/payment-gateways/skrill.php:38 +msgid "Czech" +msgstr "Tsjekkisk" + +#: includes/common/payment-gateways/skrill.php:37 +msgid "Chinese" +msgstr "Kinesisk" + +#: includes/common/payment-gateways/simplify.php:201 +msgid "There was an error processing your card: %s. Please re-enter your credit card info and try again." +msgstr "En feil oppstod under prosesseringen av ditt kort: %s. Vennligst skriv inn kort informasjonen på nytt og prøv igjen." + +#: includes/common/payment-gateways/pin.php:278 +msgid "
  • There was an error processing your card: \"%s\". Please verify your credit card information and try again.
  • " +msgstr "
  • Det oppstod en feil under behandlingen av ditt kort: \"%s\". Vennligst sjekk kort detaljene dine og prøv igjen.
  • " + +#: includes/common/payment-gateways/pin.php:274 +msgid "
  • There was an error processing your card. Please verify your credit card information and try again.
  • " +msgstr "
  • Det oppstod en feil under behandlingen av ditt kort. Vennligst sjekk kort detaljene dine og prøv igjen.
  • " + +#: includes/common/payment-gateways/pin.php:177 +#: includes/common/payment-gateways/stripe.php:279 +msgid "Publishable Key" +msgstr "Publiserbar Nøkkel" + +#: includes/common/payment-gateways/pin.php:163 +msgid "API Credentials?" +msgstr "API Innlogging" + +#: includes/common/payment-gateways/pin.php:147 +msgid "PIN makes it easy to start accepting credit card payments with Australia’s first all-in-one online payment system. Accept all major credit cards directly on your site. Your sales proceeds are deposited to any Australian bank account, no merchant account required." +msgstr "" + +#: includes/common/payment-gateways/pin.php:57 +#: includes/common/payment-gateways/stripe.php:179 +msgid "USD - United States Dollar" +msgstr "USD - United States Dollar" + +#: includes/common/payment-gateways/paypal-payflow.php:455 +msgid "Email Footer" +msgstr "Epost bunntekst" + +#: includes/common/payment-gateways/paypal-payflow.php:445 +msgid "Email Header" +msgstr "Epost Header" + +#: includes/common/payment-gateways/paypal-payflow.php:416 +msgid "Partner" +msgstr "Partner" + +#: includes/common/payment-gateways/paypal-payflow.php:409 +msgid "Vendor" +msgstr "Leverandør" + +#: includes/common/payment-gateways/paypal-express.php:852 +#: includes/common/payment-gateways/paypal-express.php:1126 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences\t section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:749 +msgid "Page Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:744 +msgid "Header Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:739 +msgid "Header Border Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:734 +msgid "Header Image" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:680 +msgid "Locale" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:624 +#: includes/common/payment-gateways/paypal-express.php:658 +msgid "Merchant Email" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:645 +msgid "Paypal Express Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:603 +msgid "Paypal Express Network Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:861 +msgid "Application ID (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:854 +msgid "Signature (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:847 +msgid "API Password (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:839 +msgid "API Username (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:832 +msgid "Signature (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:825 +msgid "API Password (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:817 +msgid "API Username (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:799 +msgid "This message is displayed at the top of the gateway settings page to store admins. It's a good place to inform them of your fees or put any sales messages." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:787 +msgid "Please enter your PayPal email address or business ID you want to recieve fees at." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:786 +msgid "PayPal E-mail" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:772 +msgid "Fees to Collect (%)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:375 +#: includes/public/class-mp-checkout.php:341 +msgid "Email Address" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:299 +msgid "Sorry, your order was not completed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:126 +#: includes/common/payment-gateways/paypal-express.php:780 +msgid "You will be redirected to the PayPal site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:90 +#: includes/common/payment-gateways/skrill.php:94 +msgid "USD - U.S. Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:89 +msgid "TRY - Turkish lira" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:88 +#: includes/common/payment-gateways/stripe.php:170 +msgid "THB - Thai Baht" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:87 +msgid "TWD - Taiwan New Dollars" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:86 +#: includes/common/payment-gateways/pin.php:59 +#: includes/common/payment-gateways/skrill.php:88 +#: includes/common/payment-gateways/stripe.php:162 +msgid "SGD - Singapore Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:84 +msgid "RUB - Russian Rubles" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:82 +msgid "PHP - Philippine Pesos" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:81 +#: includes/common/payment-gateways/pin.php:58 +#: includes/common/payment-gateways/skrill.php:79 +#: includes/common/payment-gateways/stripe.php:145 +msgid "NZD - New Zealand Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:79 +msgid "MXN - Mexican Peso" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:78 +msgid "MYR - Malaysian Ringgits" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:77 +#: includes/common/payment-gateways/pin.php:64 +#: includes/common/payment-gateways/skrill.php:73 +#: includes/common/payment-gateways/stripe.php:112 +msgid "JPY - Japanese Yen" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:75 +#: includes/common/payment-gateways/pin.php:63 +#: includes/common/payment-gateways/skrill.php:66 +#: includes/common/payment-gateways/stripe.php:102 +msgid "HKD - Hong Kong Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:73 +msgid "GBP - Pound Sterling" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:68 +#: includes/common/payment-gateways/pin.php:62 +#: includes/common/payment-gateways/skrill.php:59 +msgid "CAD - Canadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:67 +msgid "BRL - Brazilian Real" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:66 +#: includes/common/payment-gateways/pin.php:56 +#: includes/common/payment-gateways/skrill.php:57 +msgid "AUD - Australian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:288 +msgid "There was an error processing your card: \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:163 +msgid "When running on a live site, Paymill recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:161 +#: includes/common/payment-gateways/pin.php:157 +#: includes/common/payment-gateways/simplify.php:103 +#: includes/common/payment-gateways/stripe.php:260 +#: includes/common/payment-gateways/wepay.php:153 +msgid "Force SSL?" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:151 +msgid "Accept Visa, Mastercard, Maestro UK, Discover and Solo cards directly on your site. You don't need a merchant account or gateway. Credit cards go directly to Paymill's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:131 +msgid "CVV2" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:72 +#: includes/common/payment-gateways/pin.php:61 +#: includes/common/payment-gateways/skrill.php:65 +#: includes/common/payment-gateways/stripe.php:95 +msgid "GBP - British Pound" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:71 +#: includes/common/payment-gateways/stripe.php:173 +msgid "TRY - Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:70 +#: includes/common/payment-gateways/paypal-chained-payments.php:85 +#: includes/common/payment-gateways/skrill.php:87 +#: includes/common/payment-gateways/stripe.php:161 +msgid "SEK - Swedish Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:69 +#: includes/common/payment-gateways/skrill.php:84 +msgid "RON - Romanian Leu New" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:68 +#: includes/common/payment-gateways/paypal-chained-payments.php:83 +#: includes/common/payment-gateways/skrill.php:82 +msgid "PLN - Polish Zloty" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:67 +#: includes/common/payment-gateways/paypal-chained-payments.php:80 +#: includes/common/payment-gateways/stripe.php:143 +msgid "NOK - Norwegian Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:66 +#: includes/common/payment-gateways/skrill.php:75 +#: includes/common/payment-gateways/stripe.php:125 +msgid "LTL - Lithuanian Litas" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:65 +#: includes/common/payment-gateways/paypal-chained-payments.php:69 +#: includes/common/payment-gateways/skrill.php:60 +#: includes/common/payment-gateways/stripe.php:78 +msgid "CHF - Swiss Franc" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:64 +#: includes/common/payment-gateways/skrill.php:76 +msgid "LVL - Latvian Lat" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:63 +#: includes/common/payment-gateways/paypal-chained-payments.php:74 +#: includes/common/payment-gateways/skrill.php:69 +msgid "ILS - Israeli Shekel" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:62 +#: includes/common/payment-gateways/skrill.php:71 +msgid "ISK - Iceland Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:61 +#: includes/common/payment-gateways/paypal-chained-payments.php:76 +#: includes/common/payment-gateways/skrill.php:68 +#: includes/common/payment-gateways/stripe.php:106 +msgid "HUF - Hungarian Forint" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:60 +#: includes/common/payment-gateways/paypal-chained-payments.php:71 +#: includes/common/payment-gateways/skrill.php:62 +#: includes/common/payment-gateways/stripe.php:86 +msgid "DKK - Danish Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:59 +#: includes/common/payment-gateways/skrill.php:67 +#: includes/common/payment-gateways/stripe.php:104 +msgid "HRK - Croatian Kuna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:58 +#: includes/common/payment-gateways/paypal-chained-payments.php:70 +#: includes/common/payment-gateways/skrill.php:61 +msgid "CZK - Czech Koruna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:57 +#: includes/common/payment-gateways/skrill.php:58 +msgid "BGN - Bulgarian Leva" +msgstr "" + +#: includes/common/payment-gateways/payflow/class-mp-gateway-worker-payflow.php:123 +msgid "There was an error connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:344 +msgid "This setting will log all PayFast communication to the \"payfast.log\" file." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:342 +msgid "Log Debugging Info?" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:335 +msgid "DO NOT INPUT A VALUE UNLESS YOU HAVE SET ONE IN THE SETTINGS SECTION OF YOUR PAYFAST SETTINGS." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:333 +msgid "PayFast Passphrase" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:323 +msgid "You can find your credentials on your integration page." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:321 +msgid "PayFast Merchant Credentials" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:311 +msgid "PayFast Mode" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:308 +msgid "PayFast is a payments processing service for South Africa. We make it safe for buyers to send money and easy for sellers to receive money. More Info »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:306 +msgid "PayFast Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:285 +msgid "Your payment via PayFast for this order totaling %s is complete. The transaction number is %s." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:278 +msgid "Your payment via PayFast for this order totaling %s is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:124 +msgid "Your PayFast transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:82 +#: includes/common/payment-gateways/payfast.php:83 +msgid "PayFast" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:157 +msgid "API error: - \"%s\"" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:198 +msgid "The payment request is under process" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:140 +msgid "Order: #" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:116 +msgid "You will be redirected to the Mollie site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:73 +msgid "%sMollie%s provides a fully PCI Compliant and secure way to collect payments via iDeal, Credit Card, Bancontact / Mister Cash, SOFORT Banking, Overbooking, Bitcoin, PayPal, paysafecard and AcceptEmail." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:53 +#: includes/common/payment-gateways/mollie.php:54 +#: includes/common/payment-gateways/mollie.php:195 +#: includes/common/payment-gateways/mollie.php:245 +msgid "Mollie" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:50 +#: includes/common/payment-gateways/paymill.php:56 +#: includes/common/payment-gateways/paypal-chained-payments.php:72 +#: includes/common/payment-gateways/pin.php:60 +#: includes/common/payment-gateways/skrill.php:64 +#: includes/common/payment-gateways/stripe.php:92 +msgid "EUR - Euro" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:306 +msgid "Access Key" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:300 +msgid "You must login to the Mijireh.com dashboard to obtain the Access Key." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:299 +msgid "Credentials" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:289 +msgid "Mijireh Checkout provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:269 +msgid "Mijireh Error: " +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:89 +msgid "You will be redirected to the Mijireh.com site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:87 +msgid "Your Mijireh transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:42 +#: includes/common/payment-gateways/mijireh.php:43 +#: includes/common/payment-gateways/mijireh.php:324 +msgid "Mijireh" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:145 +msgid "These are the manual payment instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:189 +msgid "This is the email text to send to those who have made free order checkouts. You should include your free order instructions / information here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:183 +msgid "This is the free order information to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:182 +msgid "Confirmation User Information" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:177 +msgid "This is the information to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:163 +msgid "If enabled, all free orders will be automatically marked as paid." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:159 +msgid "Payment Status" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:149 +msgid "This gateway is automatically activated if order totalling 0 and it can't be disabled" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:35 +#: includes/common/payment-gateways/free_orders.php:36 +#: includes/common/payment-gateways/free_orders.php:89 +msgid "Free Order" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:34 +#: includes/common/payment-gateways/free_orders.php:197 +msgid "Free Orders" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:515 +msgid "Sandbox API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:266 +#: includes/common/payment-gateways/eway31.php:542 +msgid "eWay Rapid 3.1 Payments (beta)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:403 +msgid "Hosted Payment Page Language" +msgstr "" + +#: includes/common/payment-gateways/eway.php:373 +msgid "Note when testing in sandbox mode it will use the default eWay test API credentials. Also, please note that cart total needs to be a whole number (e.g. 10.00) in order to generate a successful transaction, otherwise the transaction will fail." +msgstr "" + +#: includes/common/payment-gateways/eway.php:267 +msgid "You will be redirected to https://www.eway.com.au to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:380 +msgid "You have chosen to checkout using %s. Please confirm your order details and click \"Submit Order\" when finished." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:272 +#: includes/common/payment-gateways/paymill.php:131 +#: includes/common/payment-gateways/stripe.php:231 +msgid "Security Code " +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Enter in MM/YYYY or MM/YY format" +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Expiration" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:321 +msgid "Delim Data" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:307 +#: includes/common/payment-gateways/paypal-payflow.php:456 +msgid "This text will appear as the footer of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:287 +#: includes/common/payment-gateways/paypal-payflow.php:440 +msgid "Email Customer (on success)" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:278 +msgid "Authorize.net default is \",\". Otherwise, get this from your credit card processor. If the transactions are not going through, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:277 +msgid "Delimeter Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:193 +msgid "Held For Review" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:310 +#: includes/common/payment-gateways/payfast.php:314 +msgid "Test" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:300 +#: includes/common/payment-gateways/pin.php:170 +#: includes/common/payment-gateways/stripe.php:272 +msgid "Secret Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:283 +msgid "Select Your Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:97 +msgid "Your payment will be processed by the iDEAL network" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:208 +msgid "These are the CubePoints to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:203 +msgid "These are the CubePoints instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:266 +msgid "If enabled, all API calls will be made to https://test.bitpay.com." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:263 +msgid "Use Test Mode?" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:259 +msgid "If checked, response fron bitpay will be stored in log file, keep it disabled unless required." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:256 +msgid "Enable Debug Log" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:249 +msgid "Full Notifications" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:231 +#: includes/common/payment-gateways/eway31.php:499 +#: includes/common/payment-gateways/eway31.php:526 +#: includes/common/payment-gateways/mollie.php:83 +#: includes/common/shipping-modules/mp-fedex.php:269 +msgid "API Key" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:222 +msgid "You can now accept a payment from any country on Earth, with no risk of fraud. To use Bitpay, you need to signup on Bitpay. \\n After completing the signup process, you can get api keys at Bitpay API key. You can read more about Bitpay at Bitpay API. \\n Bitpay requires SSL(https) for payment notifications to work." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:61 +msgid "You will be redirected to bitpay.com, for bitcoin payment. It is completely safe." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:346 +msgid "You must login to the 2Checkout vendor dashboard to obtain the seller ID and secret word. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:345 +#: includes/common/payment-gateways/authorizenet-aim.php:239 +#: includes/common/payment-gateways/paymill.php:168 +#: includes/common/payment-gateways/paypal-express.php:704 +#: includes/common/payment-gateways/simplify.php:80 +#: includes/common/payment-gateways/stripe.php:265 +#: includes/common/payment-gateways/wepay.php:158 +msgid "API Credentials" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:325 +#: includes/common/payment-gateways/_bitpay.php:220 +#: includes/common/payment-gateways/_cubepoints.php:185 +#: includes/common/payment-gateways/_ideal.php:268 +#: includes/common/payment-gateways/_payway.php:255 +#: includes/common/payment-gateways/authorizenet-aim.php:219 +#: includes/common/payment-gateways/eway.php:352 +#: includes/common/payment-gateways/eway31.php:460 +#: includes/common/payment-gateways/free_orders.php:147 +#: includes/common/payment-gateways/manual-payments.php:126 +#: includes/common/payment-gateways/mijireh.php:287 +#: includes/common/payment-gateways/mollie.php:71 +#: includes/common/payment-gateways/paymill.php:149 +#: includes/common/payment-gateways/paypal-chained-payments.php:344 +#: includes/common/payment-gateways/paypal-payflow.php:376 +#: includes/common/payment-gateways/pin.php:145 +#: includes/common/payment-gateways/simplify.php:69 +#: includes/common/payment-gateways/skrill.php:121 +#: includes/common/payment-gateways/stripe.php:249 +#: includes/common/payment-gateways/wepay.php:119 +#: includes/common/shipping-modules/mp-fedex.php:243 +#: includes/common/shipping-modules/mp-flat-rate.php:63 +#: includes/common/shipping-modules/mp-pickup.php:140 +#: includes/common/shipping-modules/mp-table-rate.php:94 +#: includes/common/shipping-modules/mp-ups.php:122 +#: includes/common/shipping-modules/mp-usps.php:167 +#: includes/common/shipping-modules/mp-weight-rate.php:110 +msgid "%s Settings" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:136 +msgid "You will be redirected to the 2Checkout site to finalize your payment." +msgstr "" + +#: includes/common/helpers.php:169 includes/public/class-mp-checkout.php:1277 +msgid "Billing" +msgstr "" + +#: includes/common/helpers.php:144 +msgid "FREE" +msgstr "" + +#: includes/common/helpers.php:134 +msgid "Coupons:" +msgstr "" + +#: includes/common/helpers.php:95 +msgid "Qty" +msgstr "" + +#: includes/common/helpers.php:94 +msgid "Sku" +msgstr "" + +#: includes/common/data.php:59 +msgid "Zip Code" +msgstr "" + +#: includes/common/class-mp-taxes.php:336 +msgid "Standard Table" +msgstr "" + +#: includes/common/class-mp-product.php:2698 +msgid "Tweet" +msgstr "" + +#: includes/common/class-mp-product.php:2321 +msgid "Notification Preferences: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2320 +msgid "Edit Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2318 +msgid "Link: %s

    " +msgstr "" + +#: includes/common/class-mp-product.php:2317 +msgid "Current Inventory: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2316 +msgid "Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2314 +msgid "This message is being sent to notify you of low stock of a product in your online store according to your preferences.

    " +msgstr "" + +#: includes/common/class-mp-product.php:1817 +msgid "" +msgstr "" + +#: includes/common/class-mp-product.php:1427 +#: includes/common/class-mp-product.php:1430 +msgid "(tax incl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1422 +#: includes/common/class-mp-product.php:1425 +msgid "(tax excl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1300 +#: includes/common/class-mp-product.php:1315 +msgid "%s each" +msgstr "" + +#: includes/common/class-mp-product.php:988 +msgid "Choose Options" +msgstr "" + +#: includes/common/class-mp-product.php:526 +msgid "Choose a %s" +msgstr "" + +#: includes/common/class-mp-product.php:284 +#: includes/common/class-mp-product.php:292 +#: includes/common/class-mp-product.php:615 +msgid "We're sorry, we only have %d of this item in stock right now." +msgstr "" + +#: includes/common/class-mp-order.php:1456 +msgid "Shipped: Track Shipment" +msgstr "" + +#: includes/common/class-mp-order.php:1049 +msgid "Order Received" +msgstr "" + +#: includes/common/class-mp-order.php:1014 +msgid "In Process" +msgstr "" + +#: includes/common/class-mp-order.php:969 +msgid "Order #" +msgstr "" + +#: includes/common/class-mp-order.php:866 +msgid "Copy billing address to shipping address" +msgstr "" + +#: includes/common/class-mp-order.php:822 +#: includes/public/class-mp-checkout.php:1314 +msgid "Special Instructions" +msgstr "" + +#: includes/common/class-mp-order.php:817 +#: includes/common/payment-gateways/stripe.php:335 +msgid "Email" +msgstr "" + +#: includes/common/class-mp-order.php:813 +#: includes/common/payment-gateways/stripe.php:341 +#: includes/public/class-mp-checkout.php:416 +msgid "Phone" +msgstr "" + +#: includes/common/class-mp-order.php:791 +#: includes/common/payment-gateways/stripe.php:337 +msgid "State" +msgstr "" + +#: includes/common/class-mp-order.php:776 +msgid "Address 1" +msgstr "" + +#: includes/common/class-mp-order.php:766 +msgid "Last Name" +msgstr "" + +#: includes/common/class-mp-order.php:762 +msgid "First Name" +msgstr "" + +#: includes/common/class-mp-installer.php:677 +msgid "MarketPress requires a database update to continue working correctly. Go to update page" +msgstr "" + +#: includes/common/class-mp-installer.php:657 +msgid "MarketPress performed a quick automatic update successfully!" +msgstr "" + +#: includes/common/class-mp-installer.php:653 +msgid "Perform Update" +msgstr "" + +#: includes/common/class-mp-installer.php:647 +msgid "Please update each subsite in your WordPress network where you have older version of the MarketPress plugin." +msgstr "" + +#: includes/common/class-mp-installer.php:641 +msgid "Depending on the amount of products you have, this update could take quite some time. Please keep this window open while the update completes. If you have products with multiple variations, the progress bar may move slower, please don't exit the window." +msgstr "" + +#: includes/common/class-mp-installer.php:632 +msgid "Product Metadata" +msgstr "" + +#: includes/common/class-mp-installer.php:601 +msgid "MarketPress requires a database update to continue working correctly.
    Below you will find a list of items that require your attention." +msgstr "" + +#: includes/common/class-mp-installer.php:600 +msgid "Update MarketPress Data" +msgstr "" + +#: includes/common/class-mp-installer.php:530 +msgid "Update Data" +msgstr "" + +#: includes/common/class-mp-installer.php:67 +msgid "Complete!" +msgstr "" + +#: includes/common/class-mp-installer.php:66 +msgid "Upgrading Database...Please Wait..." +msgstr "" + +#: includes/common/class-mp-installer.php:64 +msgid "An error occurred while updating. Please refresh this page and try again." +msgstr "" + +#: includes/common/class-mp-cart.php:2447 +msgid "Some items in your cart have fallen below the quantity you currently have in your cart. We have adjusted the quantity in your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:2443 +msgid "Some items in your cart are no longer available. We have removed these items from your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:1566 +msgid "item" +msgstr "" + +#: includes/common/class-mp-cart.php:1563 +#: includes/common/class-mp-cart.php:1568 +msgid "items" +msgstr "" + +#: includes/common/class-mp-cart.php:1363 +msgid "Items/Products added to Cart will show here." +msgstr "" + +#: includes/common/class-mp-cart.php:1362 +msgid "Your shopping cart is empty." +msgstr "" + +#: includes/common/class-mp-cart.php:1357 +msgid "View Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1241 +#: includes/common/class-mp-cart.php:1298 +#: includes/public/class-mp-short-codes.php:159 +msgid "Adding..." +msgstr "" + +#: includes/common/class-mp-cart.php:1033 +msgid "Continue Shopping?" +msgstr "" + +#: includes/common/class-mp-cart.php:961 +msgid "Secure Checkout
    Shopping is always safe and secure." +msgstr "" + +#: includes/common/class-mp-cart.php:959 +msgid "You are about to submit your order!
    Please review your order details before continuing. You will be charged immediately upon clicking \"Submit Order\"." +msgstr "" + +#: includes/common/class-mp-cart.php:956 +msgid "Continue »" +msgstr "" + +#: includes/common/class-mp-cart.php:955 +msgid "Submit Order" +msgstr "" + +#: includes/common/class-mp-cart.php:818 +msgid "There are no items in your cart - go add some !" +msgstr "" + +#: includes/common/class-mp-cart.php:816 +msgid "The cart is disabled." +msgstr "" + +#: includes/common/class-mp-cart.php:735 +msgid "Estimated %s" +msgstr "" + +#: includes/common/class-mp-cart.php:717 +msgid "Estimated Shipping" +msgstr "" + +#: includes/common/class-mp-cart.php:697 +msgid "Product Total" +msgstr "" + +#: includes/common/class-mp-cart.php:670 includes/common/class-mp-cart.php:672 +msgid "Estimated Total (%s, %s)" +msgstr "" + +#: includes/common/class-mp-cart.php:668 +msgid "Estimated Total (%s)" +msgstr "" + +#: includes/common/class-mp-cart.php:666 includes/common/class-mp-cart.php:752 +msgid "Estimated Total" +msgstr "" + +#: includes/admin/widgets/product-list.php:247 +msgid "Show Thumbnail Placeholder image (if image is not set)" +msgstr "" + +#: includes/admin/widgets/cart.php:73 +msgid "Display product price" +msgstr "" + +#: includes/admin/widgets/cart.php:71 +msgid "Display product quantity" +msgstr "" + +#: includes/admin/widgets/cart.php:69 +msgid "Display product image" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:93 +msgid "General Shipping Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:773 +msgid "If you are having conflicts with the lightbox library from your theme or another plugin you should uncheck this." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:772 +msgid "Use Built-In Lightbox for Images?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:762 +msgid "Disable Large Image Display?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:688 +msgid "Show Product Image?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:682 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:684 +msgid "Show Tags List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:676 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:678 +msgid "Show Categories List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:671 +msgid "If enabled, description excerpt will be added above Add to cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:669 +msgid "Show Excerpt?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:665 +msgid "If enabled, users will be able to choose how many of the product they want to purchase before adding to their cart. If not checked, quantity could be change later on the cart page." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:663 +msgid "Show Quantity Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:649 +msgid "Settings related to the display of individual product pages." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:648 +msgid "Product Page Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:605 +msgid "Related Products Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:573 +msgid "Show Related Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:568 +msgid "Related Product Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:549 +msgid "Order Status Entries Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:510 +msgid "Sort Products By" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:497 +msgid "Products Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:492 +msgid "Paginate Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:478 +msgid "Excerpts Length" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:473 +msgid "Show Excerpts?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:450 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:746 +msgid "Image Alignment" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:412 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:708 +msgid "Custom Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:401 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:697 +msgid "Large - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:400 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:696 +msgid "Medium - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:399 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:695 +msgid "Thumbnail - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:397 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:693 +msgid "Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:386 +msgid "Select default placeholder image thumbnail when product image is not available (if empty, plugin's built-in image will be used)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:380 +msgid "Show default product placeholder thumbnail when product image is not available?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:374 +msgid "Show Product Thumbnail?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:369 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:658 +msgid "Redirect to cart page for immediate checkout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:368 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:657 +msgid "Stay on current product page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:366 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:655 +msgid "MarketPress supports two \"flows\" for adding products to the shopping cart. After adding a product to their cart, two things can happen:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:365 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:654 +msgid "Add To Cart Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:355 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:628 +msgid "Four" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:354 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:627 +msgid "Three" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:353 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:626 +msgid "Two" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:625 +msgid "One" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:349 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:622 +msgid "Set the number of products that show up in a grid row to best fit your theme" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:348 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:621 +msgid "How many products per row?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:342 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:609 +msgid "Display as grid" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:341 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:608 +msgid "Display as list" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:339 +msgid "Product Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:334 +msgid "Settings related to the display of product lists/grids." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:333 +msgid "Product List/Grid Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:314 +msgid "Show Twitter Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:309 +msgid "Twitter" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:303 +msgid "Show Share Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:297 +msgid "Recommend" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:296 +msgid "Like" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:294 +msgid "Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:283 +msgid "Show Facebook Like Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:278 +msgid "Facebook" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:257 +msgid "Show \"Pin It\" Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:252 +msgid "Pinterest" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:246 +msgid "Social Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:193 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:202 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:211 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:220 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:229 +#: includes/multisite/class-mp-admin-multisite.php:532 +#: includes/multisite/class-mp-admin-multisite.php:541 +#: includes/multisite/class-mp-admin-multisite.php:550 +msgid "Choose a Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:191 +msgid "This page will be used as the root for your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:168 +#: includes/multisite/class-mp-admin-multisite.php:586 +msgid "Create Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "uncropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "cropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:87 +#: includes/multisite/class-mp-admin-multisite.php:121 +#: includes/multisite/class-mp-admin-multisite.php:620 +msgid "An error occurred while creating the store page. Please try again." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:66 +msgid "Choose the gateway(s) that you would like to be available for checkout." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:65 +msgid "Enabled Gateways" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:78 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:146 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:179 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:213 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:274 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:307 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:341 +msgid "Text" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:71 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:139 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:172 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:206 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:267 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:300 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:334 +msgid "Subject" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:52 +msgid "Notification Email" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:510 +msgid "Enabling this option will display label `excl. tax` or `incl. tax` after price" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:509 +msgid "Display tax label?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:504 +msgid "Enabling this option will show Price + Tax, eg. if your price is 100 and your tax 20, your price will be 120" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:416 +#: includes/multisite/class-mp-admin-multisite.php:234 +msgid "Price Format" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:366 +msgid "Enabling this field will display a textbox on the shipping checkout page for users to enter special instructions for their order. Useful for product personalization, etc." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:365 +msgid "Show Special Instructions Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:360 +msgid "Universal" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:359 +msgid "Old" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1167 +#: includes/admin/store-settings/class-mp-store-settings-general.php:358 +msgid "New" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:353 +msgid "If you already use Google Analytics for your website, you can track detailed ecommerce information by enabling this setting. Choose whether you are using the new asynchronous or old tracking code. Before Google Analytics can report ecommerce activity for your website, you must enable ecommerce tracking on the profile settings page for your website. Also keep in mind that some gateways do not reliably show the receipt page, so tracking may not be accurate in those cases. It is recommended to use the PayPal gateway for the most accurate data. More information »" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:347 +msgid "Do you want to display the product price on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:346 +msgid "Show product price on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:340 +msgid "Do you want to display the product quantity on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:339 +msgid "Show product quantity on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:333 +msgid "Do you want to display the product image on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:332 +msgid "Show product image on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:327 +msgid "This option hide floating Mini Cart in top right corner." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:326 +msgid "Disable Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:316 +msgid "If unchecked your Orders admin page will be hidden" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:315 +msgid "Show admin Orders page?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:309 +msgid "Disable Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:303 +msgid "Force Login?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:297 +msgid "Hide Out of Stock Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:555 +msgid "This will prevent multiples of the same downloadable product form being added to the cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:554 +msgid "Limit Digital Products Per-order?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:268 +msgid "If you're having issues downloading large files and have worked with your hosting provider to increase your memory limits, try enabling this - just keep in mind, it's not as secure!" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:267 +msgid "Use Alternative Download Method?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:252 +msgid "Download Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:230 +msgid "Change product post type" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:51 +msgid "%s Capabilities" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-addons.php:47 +msgid "Store Settings: Add Ons: %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:254 +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:56 +msgid "Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Edit Product Attribute %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:246 +msgid "Exporters" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:238 +msgid "Short Codes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:207 +msgid "An appropriate message for key \"%s\" could not be found." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:204 +msgid "Product attribute updated successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:203 +msgid "Product attribute added successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +msgid "Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +#: includes/admin/store-settings/class-mp-store-settings-addons.php:121 +msgid "Store Settings: Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "Store Settings: Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:118 +msgid "Store Settings: Product Tags" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:117 +msgid "Store Settings: Product Categories" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Store Settings: Product Attributes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +msgid "Store Settings: Payments" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:114 +msgid "Store Settings: Shipping" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +#: includes/admin/class-mp-store-settings-admin.php:226 +msgid "Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +msgid "Store Settings: Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:112 +msgid "Store Settings: Presentation" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:111 +msgid "Store Settings: General" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1489 +msgid "Select a Product" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1447 +msgid "Reset to Defaults" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1446 +msgid "Insert Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1202 +#: includes/admin/class-mp-shortcode-builder.php:1227 +#: includes/admin/class-mp-shortcode-builder.php:1252 +msgid "The text to show in the link." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1196 +#: includes/admin/class-mp-shortcode-builder.php:1221 +#: includes/admin/class-mp-shortcode-builder.php:1246 +msgid "Whether to return a clickable link or url." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1177 +msgid "Whether to display the cart only on store pages or not." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1171 +msgid "Whether to show or hide the product price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1165 +msgid "Whether to show or hide the product quantity." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1159 +msgid "Whether to show or hide the product image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1153 +msgid "The text displayed before the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1147 +msgid "The title of the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1058 +#: includes/admin/class-mp-shortcode-builder.php:1121 +msgid "A label to prepend to the price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1032 +#: includes/admin/class-mp-shortcode-builder.php:1127 +msgid "What context for display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1004 +msgid "Set the alignment of the image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:998 +msgid "Set a custom pixel width/height. If omitted defaults to the size set by \"context\"." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:993 +msgid "Widget" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:988 +msgid "What context for preset size options." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:982 +#: includes/admin/class-mp-shortcode-builder.php:1026 +#: includes/admin/class-mp-shortcode-builder.php:1052 +#: includes/admin/class-mp-shortcode-builder.php:1077 +#: includes/admin/class-mp-shortcode-builder.php:1096 +#: includes/admin/class-mp-shortcode-builder.php:1115 +msgid "The ID of the product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:963 +msgid "Whether to display the product meta (e.g. price, buy button)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:738 +#: includes/admin/class-mp-shortcode-builder.php:905 +#: includes/admin/class-mp-shortcode-builder.php:958 +#: includes/admin/class-mp-shortcode-builder.php:992 +#: includes/admin/class-mp-shortcode-builder.php:1035 +#: includes/admin/class-mp-shortcode-builder.php:1130 +#: includes/admin/class-mp-shortcode-builder.php:1349 +msgid "List" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:957 +#: includes/admin/class-mp-shortcode-builder.php:991 +#: includes/admin/class-mp-shortcode-builder.php:1034 +#: includes/admin/class-mp-shortcode-builder.php:1129 +msgid "Single" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:953 +msgid "Whether and what context of image size to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:948 +msgid "Full" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:943 +msgid "Whether and what type of content to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:937 +msgid "Whether to display the product title." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:931 +msgid "The ID of the product to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:747 +#: includes/admin/class-mp-shortcode-builder.php:914 +msgid "Hide" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:746 +#: includes/admin/class-mp-shortcode-builder.php:913 +msgid "Show" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:744 +#: includes/admin/class-mp-shortcode-builder.php:911 +msgid "Whether or not to show the product filters." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:724 +#: includes/admin/class-mp-shortcode-builder.php:891 +#: includes/admin/class-mp-shortcode-builder.php:1335 +msgid "Limits list to a specific product tag." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:713 +#: includes/admin/class-mp-shortcode-builder.php:880 +#: includes/admin/class-mp-shortcode-builder.php:1324 +msgid "Limits list to a specific product category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:706 +#: includes/admin/class-mp-shortcode-builder.php:873 +#: includes/admin/class-mp-shortcode-builder.php:1317 +msgid "Direction to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:684 +#: includes/admin/class-mp-shortcode-builder.php:851 +#: includes/admin/class-mp-shortcode-builder.php:1295 +msgid "What field to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:678 +#: includes/admin/class-mp-shortcode-builder.php:845 +#: includes/admin/class-mp-shortcode-builder.php:1283 +msgid "How many products to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:672 +#: includes/admin/class-mp-shortcode-builder.php:839 +#: includes/admin/class-mp-shortcode-builder.php:1277 +msgid "The page number to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:666 +#: includes/admin/class-mp-shortcode-builder.php:833 +#: includes/admin/class-mp-shortcode-builder.php:1271 +msgid "Whether to paginate the product list. This is useful to only show a subset." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:808 +msgid "How many related items to show." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:790 +msgid "How to relate the products" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:784 +msgid "The product to show related items for." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:765 +msgid "The maximum number of products to display" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:647 +msgid "Comma separated list of tags (term_id) to include. For example, include=5,27 means tags that have the term_id 5 or 27 will be the only tags displayed. Defaults to include everything." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:641 +msgid "Comma separated list of tags (term_id) to exclude. For example, exclude=5,27 means tags that have the term_id 5 or 27 will NOT be displayed. Defaults to exclude nothing." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:633 +#: includes/admin/class-mp-shortcode-builder.php:1420 +msgid "Sort order." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:629 +#: includes/admin/class-mp-shortcode-builder.php:1416 +msgid "Count" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:626 +#: includes/admin/class-mp-shortcode-builder.php:1413 +msgid "Order of the tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:620 +msgid "The text/space between tags)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:616 +msgid "UL with a class of \"wp-tag-cloud\"" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:615 +msgid "separated by whitespace defined by \"separator\" parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:613 +msgid "Format of the cloud display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:607 +msgid "The number of actual tags to display in the cloud. (Use \"0\" to display all tags.)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:601 +msgid "Unit of measure as pertains to the smallest and largest values. This can be any CSS length value, e.g. pt, px, em, %." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:595 +msgid "The text size of the tag with the largest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:589 +msgid "The text size of the tag with the smallest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:570 +msgid "The \"tabindex\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:564 +msgid "The \"name\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:558 +msgid "The \"id\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:552 +msgid "Which category ID is selected." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:540 +msgid "The max depth. This is ignored unless hierarchical is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:536 +#: includes/multisite/template-functions.php:816 +msgid "No Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:414 +#: includes/admin/class-mp-shortcode-builder.php:546 +msgid "Calculates link or post counts by including items from child categories. If show_counts and hierarchical are true this is automatically set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:409 +msgid "Value of n (some number) specifies the depth (or level) to descend in displaying Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:408 +msgid "Show only top level Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:407 +msgid "All Categories displayed in flat (no indent) form (overrides hierarchical)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:406 +msgid "All Categories and child Categories (Default)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:402 +msgid "This parameter controls how many levels in the hierarchy of Categories are to be included in the list of Categories. NOTE: The \"hierarchical\" argument, which is disabled by default, will override the depth argument, unless it is true. When the argument is false, it will display all of the categories. When it is enabled it will use the value in the \"depth\" argument." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:396 +#: includes/admin/class-mp-shortcode-builder.php:1394 +msgid "Sets the number of Categories to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:390 +#: includes/admin/class-mp-shortcode-builder.php:534 +msgid "Set the text to show when no categories are listed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:384 +msgid "Set the title and style of the outer list item. If present but empty, the outer list item will not be displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:378 +#: includes/admin/class-mp-shortcode-builder.php:528 +msgid "Display sub-categories as inner list items (below the parent list item) or inline." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:368 +#: includes/admin/class-mp-shortcode-builder.php:511 +msgid "Exclude category-tree from the results. The parameter include must be empty. If the hierarchical parameter is true, then use exclude instead of exclude_tree." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:354 +msgid "Only include these categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:340 +#: includes/admin/class-mp-shortcode-builder.php:356 +#: includes/admin/class-mp-shortcode-builder.php:370 +#: includes/admin/class-mp-shortcode-builder.php:496 +#: includes/admin/class-mp-shortcode-builder.php:513 +msgid "Select Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:338 +#: includes/admin/class-mp-shortcode-builder.php:494 +msgid "Exclude one or more categories from the results. The parameter include must be empty." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:332 +msgid "Set a URI for an image (usually an rss feed icon) to act as a link to each categories' rss-2 feed. This parameter overrides the feed parameter. There is no default for this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:320 +msgid "Display a link to each category's rss-2 feed and set the link text to display. The default is no text and no feed displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:313 +#: includes/admin/class-mp-shortcode-builder.php:487 +msgid "Any" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:307 +#: includes/admin/class-mp-shortcode-builder.php:481 +msgid "Only display categories that are children of the category identified by this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:301 +msgid "Sets whether a category's description is inserted into the title attribute of the links created (i.e. <a title=\"<em>Category Description</em>\" href=\"...)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:295 +#: includes/admin/class-mp-shortcode-builder.php:475 +msgid "Toggles the display of categories with no posts." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:289 +#: includes/admin/class-mp-shortcode-builder.php:469 +#: includes/admin/class-mp-shortcode-builder.php:1388 +msgid "Toggles the display of the current count of posts in each category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:279 +msgid "Style to display the categories list in. A value of list displays the categories as list items while none generates no special display method (the list items are separated by
    tags)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:269 +#: includes/admin/class-mp-shortcode-builder.php:449 +#: includes/admin/class-mp-shortcode-builder.php:1378 +msgid "Sort order for categories (either ascending or descending)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:259 +#: includes/admin/class-mp-shortcode-builder.php:439 +#: includes/admin/class-mp-shortcode-builder.php:1368 +msgid "Sort categories alphabetically, by unique Category ID, or by the count of posts in that Category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:253 +#: includes/admin/class-mp-shortcode-builder.php:433 +msgid "If a value is entered, causes the display of a link to all categories if the style is set to list." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:219 +msgid "Select an Action" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:217 +msgid "What would you like to do?" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:216 +#: includes/admin/class-mp-shortcode-builder.php:1522 +msgid "Add E-Commerce Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:197 +msgid "Display a list of links to your store pages." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:196 +msgid "Display a link or url to the order status page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:195 +msgid "Display a link or url to the current products list page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:194 +msgid "Display a link or url to the current store page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:193 +msgid "Display a link or url to the current shopping cart page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:192 +msgid "Display the cart widget." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:191 +msgid "Display the full product meta box with price and buy now/add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:190 +msgid "Display the product stock." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:189 +msgid "Display the product SKU number(s)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:188 +msgid "Display the product price (and sale price)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:187 +msgid "Display the buy or add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:186 +msgid "Display the featured image of a given product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:185 +msgid "Display a single product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:184 +msgid "Display a list of products according to preference." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:183 +msgid "Display products related to the one being viewed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:182 +msgid "Display a list of popular products ordered by sales." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:180 +msgid "Display an HTML dropdown of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:179 +msgid "Display an HTML list of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:178 +msgid "Display a cloud or list of your product tags." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:655 +msgid "Setup your payment gateway" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:643 +#: includes/admin/class-mp-setup-wizard.php:649 +msgid "Other Gateways" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:617 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:150 +msgid "Select which calculated shipping methods the customer will be able to choose from." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:601 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:134 +#: includes/public/class-mp-checkout.php:82 +msgid "Shipping Method" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:568 +msgid "I want to charge shipping" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:523 +#: includes/admin/store-settings/class-mp-store-settings-general.php:503 +msgid "Show Price + Tax?" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:507 +msgid "I.e. Taxes, VAT, GST, etc" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:491 +#: includes/admin/store-settings/class-mp-store-settings-general.php:471 +msgid "Current Rates" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:473 +msgid "Default Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:434 +#: includes/admin/class-mp-setup-wizard.php:442 +#: includes/admin/store-settings/class-mp-store-settings-general.php:386 +#: includes/admin/store-settings/class-mp-store-settings-general.php:394 +#: includes/multisite/class-mp-admin-multisite.php:204 +#: includes/multisite/class-mp-admin-multisite.php:212 +msgid "Select a Currency" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:414 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:105 +msgid "Choose Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:411 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:103 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:104 +msgid "All Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:410 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:102 +msgid "These are the countries that you will ship to." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:409 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:101 +msgid "Target Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:401 +msgid "Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:387 +#: includes/admin/store-settings/class-mp-store-settings-general.php:640 +msgid "Zip/Postal Code Label" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:352 +#: includes/admin/store-settings/class-mp-store-settings-general.php:606 +msgid "Select a State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:335 +#: includes/admin/store-settings/class-mp-store-settings-general.php:590 +msgid "Select A Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:332 +#: includes/admin/store-settings/class-mp-store-settings-general.php:587 +msgid "Select a Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:324 +msgid "Location" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:304 +#: includes/admin/class-mp-setup-wizard.php:312 +#: includes/admin/class-mp-store-settings-admin.php:129 +#: includes/admin/class-mp-store-settings-admin.php:262 +msgid "Quick Setup" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:289 +msgid "MarketPress setup is not complete! Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2479 +msgid "Enter your product name here" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2440 +msgid "Select a %s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2426 +msgid "Each product variation needs to have product attributes assigned to it so the system knows how to differentiate one product variation from the other. It is important that you assign a category to this product before choosing any attributes." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2409 +msgid "If you would like this variation to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2320 +msgid "Sale Price (if applicable)" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2281 +msgid "If you would like the description to be different than the main product enter it here." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2229 +msgid "Image" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2202 +#: includes/admin/class-mp-shortcode-builder.php:226 +msgid "Attributes" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2166 +msgid "Create your product variations here. You can reorder variations by using the number to left of each variation, or delete one by clicking the \"x\" to the right of each variation. NOTE: The variation that shows up first in this list will be considered the \"main variation\". The details from this variation will be used in product listings." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2061 +#: includes/admin/class-mp-products-admin.php:2332 +msgid "Value must be less than regular price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2043 +#: includes/admin/class-mp-products-admin.php:2306 +msgid "Regular Price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2023 +#: includes/admin/class-mp-products-admin.php:2286 +msgid "External URL" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1988 +#: includes/admin/class-mp-products-admin.php:2245 +msgid "Enter the quantity that you have available to sell." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1987 +#: includes/admin/class-mp-products-admin.php:2244 +msgid "Inventory Count" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1977 +#: includes/admin/class-mp-products-admin.php:2234 +msgid "Track Inventory?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1871 +msgid "%1$sProduct Images%2$s %3$sAdd images of the product. The first image on the list is the featured image for this product (you can reorder images on the list)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1806 +msgid "Add variations for this product. e.g. If you are selling t-shirts, you can create Color & Size variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1804 +msgid "%3$sAdd variations for%2$s %1$sProduct%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1776 +msgid "This product has a multiple variations %1$s(e.g. Multiple colors, sizes)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1775 +msgid "This is a unique product without variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1700 +msgid "Extra Shipping Cost %1$s(if applicable)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1659 +#: includes/admin/class-mp-products-admin.php:2112 +#: includes/admin/class-mp-products-admin.php:2359 +msgid "Weight" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1636 +#: includes/admin/class-mp-products-admin.php:2098 +#: includes/admin/class-mp-products-admin.php:2416 +msgid "Please enter a valid tax rate" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1531 +msgid "Limit Per Order %1$s(limit the number of the item a shopper can buy per order)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1513 +msgid "SKU %1$s(Stock Keeping Unit)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "%1$sPrice, Inventory & Variants%2$s %3$sSet price, manage inventory and create Product Variants (if appropriate for your product).%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "Product Variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1480 +msgid "External / Affiliate Link" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1471 +msgid "Digital Download" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1470 +msgid "Physical / Tangible Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1464 +msgid "Product Kind %1$s(Physical Product, Digital, etc)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1426 +msgid "Choose Products" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1420 +msgid "If you would like, you can choose specific related products instead of using the ones generated by MarketPress" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1019 +msgid "Changes saved successfully" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:826 +msgid "Option cannot be saved. Try again." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:821 +msgid "Option saved successfully." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:467 +msgid "Img" +msgstr "" + +#: includes/admin/class-mp-product-attributes-list-table.php:57 +msgid "Product attribute(s) deleted successfully." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:162 +msgid "- Create New Variation -" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:144 +msgid "Only lowercase letters and dashes (-) are allowed." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:139 +msgid "If a slug is not entered, it will be generated automatically. Max 32 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:138 +#: includes/admin/class-mp-product-attributes-list-table.php:23 +msgid "Slug" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:130 +msgid "Max 45 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:123 +msgid "Use the numbers on the left to sort. To delete - click the \"X\" to the right of each row." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:122 +msgid "Attribute Options" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:121 +msgid "Add Option" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:105 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:523 +msgid "Sort Order" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:87 +msgid "Alphabetical" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:86 +msgid "ID" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:84 +msgid "Select how the options will be sorted." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:82 +msgid "Sort By" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:75 +msgid "The name of the attribute (e.g. color, size, etc)" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:74 +msgid "Attribute Name" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:69 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Product Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Product Attributes" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:71 +msgid "You can choose to make this page one of the following core store pages." +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:66 +msgid "Network Store Base" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:61 +msgid "Checkout Page" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:52 +msgid "Store Page Settings" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1108 +msgid "Display billing/shipping info for this customer" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1097 +msgid "View order “%s”" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1072 +msgid "Flag as:" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:952 +msgid "Move To Trash" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:948 +msgid " Received" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:927 +msgid "Enter coupon code here" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:812 +msgid "The order status could not be updated due to unexpected error. Please try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:740 +msgid "An invalid bulk action was requested. Please go back and try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:692 +msgid "The order status for order ID %1$s was updated successfully." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:688 +msgid "Order statuses successfully updated." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:530 +msgid "Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:518 +msgid "Actual Shipping Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:513 +msgid "Method Paid For" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:504 +msgid "Amount Collected" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:477 +msgid "DHL" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:408 +msgid "There is no IPN history to show at this time" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:345 +msgid "Type" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:343 +msgid "Gateway" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:301 +#: includes/common/template-functions.php:528 +msgid "Order History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:291 +msgid "IPN History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:283 +msgid "Customer Info" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:279 +msgid "Order Details" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:157 +msgid "All Dates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:320 +msgid "Add Pages to Menu" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:318 +msgid "Add-ons" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:317 +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "User Capabilities" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:316 +#: includes/admin/class-mp-setup-wizard.php:631 +#: includes/admin/store-settings/class-mp-store-settings-payments.php:50 +msgid "Payment Gateways" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:315 +msgid "Shipping Rates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:312 +msgid "Configure" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:309 +#: includes/admin/class-mp-products-admin.php:466 +#: includes/admin/class-mp-shortcode-builder.php:797 +msgid "Tags" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:308 +#: includes/admin/class-mp-products-admin.php:465 +msgid "Categories" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:300 +msgid "Manage" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:297 +msgid "Here's some quick links to manage your store and products." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:288 +msgid "low in stock" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:287 +msgid "%s product" +msgid_plural "%s products" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-dashboard-widgets.php:280 +msgid "received" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:279 +#: includes/admin/class-mp-dashboard-widgets.php:283 +msgid "%s order" +msgid_plural "%s orders" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-dashboard-widgets.php:276 +msgid "Stock & Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:261 +msgid "Last 30 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:256 +msgid "Last 7 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:251 +msgid "Yesterday" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:248 +#: includes/admin/class-mp-dashboard-widgets.php:253 +#: includes/admin/class-mp-dashboard-widgets.php:258 +#: includes/admin/class-mp-dashboard-widgets.php:263 +msgid " Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:246 +msgid "Today" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:241 +msgid "Welcome back! Here's a quick summary of your store's performance." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:196 +#: includes/admin/class-mp-products-admin.php:895 +msgid "No products out of stock." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:136 +#: includes/admin/class-mp-products-admin.php:839 +msgid "Stock Level" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:135 +#: includes/admin/class-mp-products-admin.php:838 +msgid "Variation" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:121 +msgid "Low Stock (%s)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:116 +msgid "Store Management" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:115 +msgid "Store Reports" +msgstr "" + +#: includes/admin/class-mp-ajax.php:579 +#: includes/admin/class-mp-orders-admin.php:520 +#: includes/common/payment-gateways/2checkout.php:370 +#: includes/common/payment-gateways/authorizenet-aim.php:264 +#: includes/common/payment-gateways/mollie.php:93 +#: includes/common/payment-gateways/paymill.php:196 +#: includes/common/payment-gateways/pin.php:190 +#: includes/common/payment-gateways/skrill.php:157 +#: includes/common/payment-gateways/skrill.php:168 +#: includes/common/payment-gateways/wepay.php:143 +#: includes/public/class-mp-checkout.php:404 +msgid "Select One" +msgstr "" + +#: includes/admin/class-mp-ajax.php:511 +msgid "Oops... we could not locate any orders by that ID. Please double check your order ID and try again." +msgstr "" + +#: includes/admin/class-mp-ajax.php:482 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:166 +#: includes/multisite/class-mp-admin-multisite.php:584 +msgid "Edit Page" +msgstr "" + +#: includes/admin/class-mp-ajax.php:346 +msgid "Cancel " +msgstr "" + +#: includes/admin/class-mp-ajax.php:345 +msgid "Save " +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "Edit Description" +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "HTML Markup" +msgstr "" + +#: includes/admin/class-mp-ajax.php:333 +msgid "Plain Text Only" +msgstr "" + +#: includes/admin/class-mp-ajax.php:329 +msgid "Additional Content / Information for this Variation" +msgstr "" + +#: includes/admin/class-mp-ajax.php:317 +#: includes/admin/class-mp-products-admin.php:1762 +msgid "Allow this product to be purchased even if it's out of stock" +msgstr "" + +#: includes/admin/class-mp-ajax.php:313 +#: includes/admin/class-mp-products-admin.php:1711 +msgid "Track Product Inventory" +msgstr "" + +#: includes/admin/class-mp-ajax.php:300 +msgid "Extra Shipping Cost (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:295 +msgid "Ounces:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:294 +msgid "Pounds:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:292 +msgid "Kilograms:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:287 +#: includes/admin/class-mp-products-admin.php:1649 +msgid "Charge Shipping" +msgstr "" + +#: includes/admin/class-mp-ajax.php:273 +#: includes/admin/class-mp-products-admin.php:1623 +#: includes/admin/store-settings/class-mp-store-settings-general.php:454 +msgid "Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:272 +#: includes/admin/class-mp-products-admin.php:1622 +#: includes/admin/class-mp-products-admin.php:2090 +#: includes/admin/class-mp-products-admin.php:2408 +msgid "Special Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:271 +#: includes/admin/class-mp-products-admin.php:1625 +#: includes/admin/class-mp-products-admin.php:2092 +msgid "If you would like this product to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-ajax.php:268 +#: includes/admin/class-mp-products-admin.php:1599 +msgid "Charge Taxes (Special Rate)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:256 +#: includes/admin/class-mp-products-admin.php:1593 +#: includes/admin/class-mp-products-admin.php:2077 +#: includes/admin/class-mp-products-admin.php:2348 +msgid "End Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:255 +#: includes/admin/class-mp-products-admin.php:1589 +#: includes/admin/class-mp-products-admin.php:2072 +msgid "Start Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:1568 +msgid "Enter Sale Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:250 +#: includes/admin/class-mp-products-admin.php:1547 +msgid "Set up a Sale for this Product" +msgstr "" + +#: includes/admin/class-mp-ajax.php:206 includes/admin/class-mp-ajax.php:223 +msgid "Enter " +msgstr "" + +#: includes/admin/class-mp-ajax.php:193 +msgid "Browse" +msgstr "" + +#: includes/admin/class-mp-ajax.php:184 includes/admin/class-mp-ajax.php:192 +msgid "http://" +msgstr "" + +#: includes/admin/class-mp-ajax.php:183 +msgid "External Product URL" +msgstr "" + +#: includes/admin/class-mp-ajax.php:237 +msgid "Limit Per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:177 +#: includes/admin/class-mp-products-admin.php:1520 +msgid "Enter Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:174 +#: includes/admin/class-mp-products-admin.php:1512 +msgid "Enter SKU" +msgstr "" + +#: includes/admin/class-mp-ajax.php:173 +msgid "(Stock Keeping Unit)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:158 +msgid "Remove Image" +msgstr "" + +#: includes/admin/class-mp-ajax.php:74 +msgid "Variation Draft" +msgstr "" + +#: includes/admin/class-mp-admin.php:296 +#: includes/admin/class-mp-dashboard-widgets.php:70 +msgid "Please wait...saving in progress..." +msgstr "" + +#: includes/admin/class-mp-admin.php:295 +#: includes/admin/class-mp-dashboard-widgets.php:69 +msgid "Input is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:294 +#: includes/admin/class-mp-dashboard-widgets.php:68 +msgid "Valid number is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:292 +#: includes/admin/class-mp-dashboard-widgets.php:66 +msgid "Delete %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:291 +#: includes/admin/class-mp-dashboard-widgets.php:65 +msgid "Delete %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:290 +#: includes/admin/class-mp-dashboard-widgets.php:64 +msgid "Update inventory for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:289 +#: includes/admin/class-mp-dashboard-widgets.php:63 +msgid "Update inventory for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:288 +#: includes/admin/class-mp-dashboard-widgets.php:62 +msgid "Update price for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:287 +#: includes/admin/class-mp-dashboard-widgets.php:61 +msgid "Update prices for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:285 +#: includes/admin/class-mp-dashboard-widgets.php:59 +msgid "Creating variations, please wait..." +msgstr "" + +#: includes/admin/class-mp-admin.php:96 +msgid "The following payment gateways have been deprecated, Cubepoints, Bitpay, iDEAL, Skrill, Google Checkout. If you were using one of these gateways, please setup a new payment gateway here." +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:61 +msgid "Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:71 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:71 +#: includes/common/class-mp-gdpr.php:399 includes/common/class-mp-order.php:872 +#: includes/common/helpers.php:164 includes/public/class-mp-checkout.php:1434 +msgid "Shipping Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:66 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:66 +#: includes/common/class-mp-gdpr.php:392 includes/common/class-mp-order.php:864 +#: includes/common/helpers.php:163 includes/public/class-mp-checkout.php:1427 +msgid "Billing Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:61 +msgid "Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:258 +msgid "Shipping Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:256 +msgid "Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:235 +msgid "Payment Method: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:79 +msgid "The dir %s not exist or not writeable" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:239 +msgid "Shop header/logo" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:233 +msgid "Choose a template" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:226 +msgid "Template Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:221 +msgid "Disable automatic creation/attachment of invoices when only free products are ordered" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:220 +msgid "Disable for free products" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:216 +msgid "Attach invoice to" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:214 +msgid "Customer Order Shipped email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:212 +msgid "Customer New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:211 +msgid "Admin New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:206 +msgid "download" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:205 +msgid "How do you want to view the PDF?" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:203 +msgid "Open the PDF in a new browser tab/window" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:202 +msgid "Download the PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:158 +msgid "Export PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:103 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:106 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:109 +msgid "You can't download this order invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:76 +msgid "Invalid Request" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:72 +msgid "Order not exist!" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:67 +msgid "Invalid ID" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1293 +msgid "Coupon added successfully" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1292 +msgid "Please enter a code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1247 +msgid "No end" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1200 +msgid "Valid Dates" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1195 +msgid "Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1027 +msgid "No Coupons found in Trash" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1026 +msgid "No Coupons Found" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1025 +msgid "Search Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1024 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1028 +msgid "View Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1023 +msgid "New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1020 +msgid "Create New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1017 +msgid "Manage Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1002 +msgid "An error occurred while removing your coupon. Please try again." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:964 +msgid "Coupon can't be applied to this cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:951 +msgid "Invalid coupon code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:794 +msgid "Help Text" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:789 +msgid "Form Title" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:783 +msgid "Coupons Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:764 +msgid "End Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:758 +msgid "Does coupon have an end date?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:696 +msgid "Select Products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:688 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:723 +#: includes/common/payment-gateways/paypal-payflow.php:402 +msgid "User" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:638 +msgid "Max Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:636 +msgid "Enter the maximum number of times this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:623 +msgid "Leave blank to allow all other coupons." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:622 +msgid "Select combinable coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:618 +msgid "Can this coupon be combined with other coupons?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:613 +msgid "Apply to each applicable item once per cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:612 +msgid "Apply to each applicable item and quantity ordered" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:609 +msgid "How should the discount amount be applied?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:605 +msgid "Discount Amount" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:604 +msgid "Value must either be a decimal number or a percentage" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:602 +msgid "If you would like to give a percentage-based discount make sure to include the percent (%) symbol. Otherwise, the discount will be applied as a fixed amount off." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:595 +msgid "Letters and Numbers only." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:589 +msgid "Coupon Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:447 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:795 +msgid "More than one code? That's OK! Just be sure to enter one at a time." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:444 +msgid "Apply Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:314 +msgid "Coupon Discounts" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:89 +msgid "1 add-on disabled" +msgid_plural "%s add-ons disabled" +msgstr[0] "" +msgstr[1] "" + +#: includes/addons/class-mp-addons-list-table.php:84 +msgid "1 add-on enabled" +msgid_plural "%s add-ons enabled" +msgstr[0] "" +msgstr[1] "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Disabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Enable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:129 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:67 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:135 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:168 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:202 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:263 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:296 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:330 +msgid "Enabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +msgid "Disable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:34 +msgid "Disable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:33 +msgid "Enable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:21 +#: includes/admin/class-mp-products-admin.php:2280 +#: includes/common/class-mp-product.php:2916 +msgid "Description" +msgstr "" + +#: includes/common/template-functions.php:2889 +#: includes/multisite/template-functions.php:407 +msgid "Popularity (Least Popular - Most Popular)" +msgstr "" + +#: includes/common/template-functions.php:2888 +#: includes/multisite/template-functions.php:406 +msgid "Popularity (Most Popular - Least Popular)" +msgstr "" + +#: includes/common/template-functions.php:2885 +#: includes/multisite/template-functions.php:403 +msgid "Name (Z-A)" +msgstr "" + +#: includes/common/template-functions.php:2884 +#: includes/multisite/template-functions.php:402 +msgid "Name (A-Z)" +msgstr "" + +#: includes/common/template-functions.php:2883 +#: includes/multisite/template-functions.php:401 +msgid "Release Date (Oldest to Latest)" +msgstr "" + +#: includes/common/template-functions.php:2882 +#: includes/multisite/template-functions.php:400 +msgid "Release Date (Latest to Oldest)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:284 +msgid "paid" +msgstr "betalt" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "One Time Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Customer Counter" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Daily Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:182 +msgid "For the most accurate rates, please select the appropriate pick up type for your business." +msgstr "" + +#: includes/admin/class-mp-admin.php:374 +msgid "Page saved." +msgstr "" + +#: includes/admin/class-mp-admin.php:370 +msgid "Custom field deleted." +msgstr "" + +#: includes/admin/class-mp-admin.php:369 +msgid "Custom field updated." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:541 +msgid "%s - The payment request expired, - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:536 +msgid "%s - The payment not credited in merchants bitpay account, action required. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:252 +msgid "If enabled, you will recieve an email for each status update on payment." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:240 +msgid "Speed at which the bitcoin transaction registers as \"confirmed\" to the store. This overrides your merchant settings on the Bitpay website." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:238 +msgid "Transaction Speed" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:244 +msgid "Low" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:243 +msgid "Medium" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:242 +msgid "High" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:177 +#: includes/common/payment-gateways/_bitpay.php:517 +#: includes/common/payment-gateways/_bitpay.php:522 +msgid "%s - The payment request is under process. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:175 +#: includes/common/payment-gateways/_bitpay.php:527 +msgid "%s - The payment request has been processed - %s" +msgstr "%s - Betalingforespørsel er prosessert - %s" + +#: includes/common/payment-gateways/_bitpay.php:150 +#: includes/common/payment-gateways/_bitpay.php:294 +msgid "Incorrect order invoice, please contact site administrator" +msgstr "Feil ved faktura, vennligst kontakt administrator" + +#: includes/common/payment-gateways/_bitpay.php:141 +msgid "We could not verify order invoice details, please try again or contact site administrator for help" +msgstr "Vi kunne ikke verifisere faktura detaljer, vennligst prøv igjen eller kontakt oss for hjelp." + +#: includes/common/payment-gateways/simplify.php:81 +msgid "Login to Simplify to get your API credentials. Enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:605 +#: includes/common/payment-gateways/paypal-express.php:647 +msgid "Express Checkout is PayPal's premier checkout solution, which streamlines the checkout process for buyers and keeps them on your site after making a purchase. Unlike PayPal Pro, there are no additional fees to use Express Checkout, though you may need to do a free upgrade to a business account. More Info »" +msgstr "" + +#. Plugin URI of the plugin/theme +msgid "https://premium.wpmudev.org/project/e-commerce/" +msgstr "" + +#. Author of the plugin/theme +msgid "WPMU DEV" +msgstr "WPMU DEV" + +#: includes/admin/class-mp-orders-admin.php:541 +#: includes/admin/class-mp-orders-admin.php:543 +msgid "Tracking Number" +msgstr "Sporingsnummer" + +#: includes/common/class-mp-order.php:805 +#: includes/common/payment-gateways/stripe.php:336 +#: includes/public/class-mp-checkout.php:402 +msgid "Country" +msgstr "Land" + +#: includes/common/class-mp-order.php:784 +#: includes/common/payment-gateways/stripe.php:338 +msgid "City" +msgstr "By" + +#: includes/common/class-mp-order.php:780 +msgid "Address 2" +msgstr "Adresse 2" + +#: includes/common/payment-gateways/stripe.php:340 +msgid "Address" +msgstr "Adresse" + +#: includes/common/class-mp-cart.php:752 includes/common/class-mp-gdpr.php:378 +msgid "Order Total" +msgstr "Ordre sammenlagt" + +#: includes/admin/class-mp-orders-admin.php:360 +msgid "Payment Total" +msgstr "Total Beløp" + +#: includes/admin/class-mp-orders-admin.php:347 +msgid "Transaction ID" +msgstr "Transaksjons ID" + +#: includes/common/payment-gateways/wepay.php:207 +msgid "The WePay Card Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:186 +#: includes/common/shipping-modules/mp-fedex.php:283 +msgid "Account ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:179 +msgid "Access Token" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:172 +msgid "Client Secret" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:165 +msgid "Client ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:159 +msgid "You must login to WePay to get your API credentials. Make sure to check \"Tokenize credit cards\" option under \"API Keys\" section of your WePay app." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:154 +msgid "When in live mode it is recommended to use SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:148 +msgid "Donation" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:147 +msgid "Event" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:146 +msgid "Personal" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:145 +msgid "Service" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:144 +msgid "Goods" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:141 +msgid "Choose type of payments" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:140 +msgid "Checkout Type" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:134 +msgid "Staging" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:131 +msgid "Choose STAGING if you have registered the app on stage.wepay.com, or PRODUCTION if you registered on www.wepay.com" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:36 +#: includes/common/payment-gateways/wepay.php:299 +msgid "WePay" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:366 +msgid "Rejected - A payment was rejected." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:360 +msgid "Failed - A payment was rejected due to an error." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:342 +msgid "PayWay balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:298 +msgid "Full path of the cacerts.crt file" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:284 +msgid "User Name" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:277 +msgid "Biller Code" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:273 +msgid "Log Directory" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:266 +msgid "Encryption Key" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:60 +msgid "Your PayWay transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:40 +#: includes/common/payment-gateways/_payway.php:41 +msgid "PayWay" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:862 +msgid "You must register this application with PayPal using your business account login to get an Application ID that will work with your API credentials. A bit of a hassle, but worth it! In the near future we will be looking for ways to simplify this process. Register then submit your application while logged in to the developer portal. Note that you do not need an Application ID for testing in sandbox mode. More Information »" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:818 +#: includes/common/payment-gateways/paypal-chained-payments.php:840 +#: includes/common/payment-gateways/paypal-express.php:705 +msgid "You must login to PayPal and create an API signature to get your credentials. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:378 +msgid "Use Payflow payment gateway to accept online payments using your Internet merchant account and processing network. PayPal Payflow Pro is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:595 +msgid "Tags Only" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:594 +msgid "Category Only" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:795 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:593 +msgid "Category & Tags" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:591 +msgid "Relate Products By" +msgstr "Ordne produkter ved" + +#: includes/admin/class-mp-shortcode-builder.php:1008 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:455 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:751 +msgid "Right" +msgstr "Høyre" + +#: includes/admin/class-mp-shortcode-builder.php:1007 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:454 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:749 +msgid "Left" +msgstr "Venstre" + +#: includes/admin/class-mp-shortcode-builder.php:1009 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:750 +msgid "Center" +msgstr "Midstilt" + +#: marketpress.php:273 +msgid "Orders from your e-commerce store." +msgstr "" + +#: marketpress.php:231 +msgid "Products for your e-commerce store." +msgstr "" + +#: marketpress.php:222 +msgid "Edit Product" +msgstr "" + +#. Description of the plugin/theme +msgid "The complete WordPress ecommerce plugin - works perfectly with BuddyPress and Multisite too to create a social marketplace, where you can take a percentage! Activate the plugin, adjust your settings then add some products to your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:272 +msgid "Beside" +msgstr "Ved siden" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:271 +msgid "Above" +msgstr "Over" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:268 +msgid "Pin Count" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:261 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:287 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:318 +msgid "All View" +msgstr "Listevisning" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:260 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:286 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:317 +msgid "Single View" +msgstr "Enkeltvare" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:259 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:285 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:316 +msgid "Off" +msgstr "Av" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:578 +msgid "Related Product Limit" +msgstr "Antallsgrense for relaterte varer" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:681 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1201 +msgid "Applies To" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:685 +msgid "All Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:487 +msgid "The label shown for the tax line item in the cart. Taxes, VAT, GST, etc." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:485 +msgid "Tax Label" +msgstr "MVA ledetekst" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:81 +msgid "Apply" +msgstr "Bruk" + +#: includes/admin/class-mp-admin.php:192 +msgid "MarketPress Instructions" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1954 +#: includes/admin/class-mp-products-admin.php:2194 includes/common/data.php:62 +#: includes/common/helpers.php:150 +msgid "Taxes" +msgstr "Moms" + +#: includes/admin/class-mp-products-admin.php:1417 +#: includes/common/class-mp-product.php:2900 +msgid "Related Products" +msgstr "Relaterte varer" + +#: includes/common/shipping-modules/mp-usps.php:282 +#: includes/common/shipping-modules/mp-usps.php:316 +msgid "@ Max" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "(3-5 days)" +msgstr "(3-5 dager)" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "Priority Mail Express International Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:92 +msgid "Priority Mail Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:171 +#: includes/common/shipping-modules/mp-pickup.php:247 +msgid "In Store" +msgstr "I butikken" + +#: includes/common/shipping-modules/mp-pickup.php:159 +msgid "Pickup Fee" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:141 +msgid "This option allows your customers to indicate that they will pick-up their order at your place of business." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:60 +#: includes/common/shipping-modules/mp-pickup.php:76 +#: includes/common/shipping-modules/mp-pickup.php:176 +msgid "Pickup Instructions" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:24 +#: includes/common/shipping-modules/mp-pickup.php:254 +msgid "Pickup" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping - 0.00" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:256 +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:440 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:309 +msgid "Your Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:301 +msgid "Station" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:300 +msgid "Request Courier" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:299 +msgid "Drop Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:298 +msgid "Business Service Center" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:297 +msgid "Regular Pickup" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:135 +#: includes/common/shipping-modules/mp-fedex.php:264 +msgid "Production" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:207 +msgid "Simplify Commerce by MasterCard" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:104 +msgid "When in live mode, although it is not required, Simplify recommends you have an SSL certificate." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:183 +#: includes/common/payment-gateways/simplify.php:87 +msgid "Public Key" +msgstr "Offentlig nøkkel" + +#: includes/common/payment-gateways/paymill.php:175 +#: includes/common/payment-gateways/simplify.php:94 +msgid "Private Key" +msgstr "Privat nøkkel" + +#: includes/common/payment-gateways/simplify.php:71 +msgid "Simplify helps merchants to accept online payments from Mastercard, Visa, American Express, Discover, JCB, and Diners Club cards. It's that simple. We offer a merchant account and payment gateway in a single, secure package so you can concentrate on what really matters to your business. Only supports USD currently." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:267 +msgid "%1$s" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:151 +msgid "The Simplify Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/simplify.php:18 +msgid "Simplify" +msgstr "" + +#: includes/common/payment-gateways/pin.php:255 +msgid "%1$s Card %2$s" +msgstr "" + +#: includes/common/payment-gateways/pin.php:211 +msgid "The PIN Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:187 +msgid "Selecting a currency other than currency supported by PIN may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/pin.php:164 +msgid "You must login to PIN to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/pin.php:158 +msgid "When in live mode PIN recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/pin.php:45 +#: includes/common/payment-gateways/pin.php:286 +msgid "PIN" +msgstr "PIN" + +#: includes/common/payment-gateways/paypal-express.php:830 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:534 +#: includes/common/payment-gateways/paypal-express.php:865 +msgid "The payment is pending" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:235 +msgid "The Paymill Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:169 +msgid "You must login to Paymill to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:45 +#: includes/common/payment-gateways/paymill.php:308 +msgid "Paymill" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:90 +msgid "Invalid cardholder" +msgstr "Ugyldig korteier" + +#: includes/common/payment-gateways/paymill.php:89 +msgid "Card is no longer valid or has expired" +msgstr "Kortet er ikke lenger gyldig eller er utgått" + +#: includes/common/payment-gateways/paymill.php:88 +msgid "Please enter a valid Card CVC" +msgstr "Vennligst skiv inn en gyldig CVC kode" + +#: includes/common/payment-gateways/paymill.php:87 +msgid "Please choose a valid Expiration Date." +msgstr "Vennligs velg Utløpsdato" + +#: includes/common/payment-gateways/skrill.php:99 +#: includes/common/payment-gateways/skrill.php:100 +msgid "Skrill (Moneybookers)" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:24 +#: includes/common/shipping-modules/mp-weight-rate.php:292 +msgid "Weight Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:303 +msgid "USPS Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:270 +msgid "USPS Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:264 +msgid "USPS Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:145 +msgid "Flat Rate Large" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:140 +msgid "Flat Rate Medium 2" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:135 +msgid "Flat Rate Medium 1" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:130 +msgid "Flat Rate Small" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:118 +msgid "First Class International Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:114 +msgid "Priority Mail International Small Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:112 +msgid "Priority Mail International Medium Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:110 +msgid "Priority Mail International Large Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:108 +msgid "Priority Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:106 +msgid "Express Mail International Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:104 +msgid "Express Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:98 +msgid "Library Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:96 +msgid "Media Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "First-Class Mail Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:90 +msgid "Priority Mail Small Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:88 +msgid "Priority Mail Medium Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +#: includes/common/shipping-modules/mp-usps.php:88 +#: includes/common/shipping-modules/mp-usps.php:90 +#: includes/common/shipping-modules/mp-usps.php:92 +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "(2-4 days)" +msgstr "(2-4 dager)" + +#: includes/common/shipping-modules/mp-usps.php:86 +msgid "Priority Mail Large Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "(2-4) days" +msgstr "(2-4) dager" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "Priority Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "Express Mail Sunday/Holiday Delivery Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:80 +msgid "Express Mail Flat Rate Boxes Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:78 +msgid "Express Mail Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:76 +msgid "Express Mail Sunday/Holiday Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:74 +msgid "Express Mail Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:72 +#: includes/common/shipping-modules/mp-usps.php:74 +#: includes/common/shipping-modules/mp-usps.php:76 +#: includes/common/shipping-modules/mp-usps.php:78 +#: includes/common/shipping-modules/mp-usps.php:80 +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "(1-2 days)" +msgstr "(1-2 dager)" + +#: includes/common/shipping-modules/mp-usps.php:72 +msgid "Express Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:67 +#: includes/common/shipping-modules/mp-usps.php:902 +msgid "USPS" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:534 +msgid "UPS (beta)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:166 +msgid "Required if using negotiated rates" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "Worldwide Express Plus" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "(Scheduled)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "Standard" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "(2-5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "Worldwide Expedited" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:54 +msgid "Worldwide Express" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "2nd Day Air AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "(1 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "Next Day Air Early AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "Next Day Air Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "3 Day Select" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:49 +msgid "Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:48 +msgid "2nd Day Air" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "Next Day Air" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:475 +#: includes/common/shipping-modules/mp-ups.php:43 +msgid "UPS" +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:27 +#: includes/common/shipping-modules/mp-table-rate.php:318 +msgid "Table Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:71 +#: includes/common/shipping-modules/mp-table-quantity.php:77 +msgid "Shipping Cost: " +msgstr "Forsendelskostnad: " + +#: includes/common/shipping-modules/mp-table-quantity.php:70 +#: includes/common/shipping-modules/mp-table-quantity.php:76 +msgid "If quantity is greater than:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:66 +msgid "Each band must be a higher price than the one above it." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:56 +msgid "Number of Bands:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:53 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Each layer must be a higher quantity than the previous." +msgstr "Forsikre deg om at du angir leveringskostnad for hvert alternativ, ellers vil noen kunder kunne få gratis levering. Hvert nivå må ha et høyere leveringsantall enn den foregående." + +#: includes/common/shipping-modules/mp-table-quantity.php:51 +msgid "Table Quantity Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:31 +msgid "Table Quantity" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:135 +#: includes/common/shipping-modules/mp-table-rate.php:174 +#: includes/common/shipping-modules/mp-weight-rate.php:189 +msgid "European Union" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:123 +#: includes/common/shipping-modules/mp-table-rate.php:162 +#: includes/common/shipping-modules/mp-weight-rate.php:177 +msgid "United States" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:111 +#: includes/common/shipping-modules/mp-table-rate.php:151 +#: includes/common/shipping-modules/mp-weight-rate.php:166 +msgid "In Country" +msgstr "Innenlands" + +#: includes/common/shipping-modules/mp-flat-rate.php:146 +#: includes/common/shipping-modules/mp-table-rate.php:186 +#: includes/common/shipping-modules/mp-weight-rate.php:201 +msgid "International" +msgstr "Internasjonal" + +#: includes/common/shipping-modules/mp-flat-rate.php:101 +#: includes/common/shipping-modules/mp-table-rate.php:141 +#: includes/common/shipping-modules/mp-weight-rate.php:156 +msgid "Canada" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:92 +#: includes/common/shipping-modules/mp-table-rate.php:132 +#: includes/common/shipping-modules/mp-weight-rate.php:147 +msgid "Hawaii and Alaska" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:83 +#: includes/common/shipping-modules/mp-table-rate.php:123 +#: includes/common/shipping-modules/mp-weight-rate.php:138 +msgid "Lower 48 States" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:64 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping." +msgstr "Forsikre deg om at du angir leveringskostnad for hvert alternativ, ellers vil noen kunder kunne få gratis levering." + +#: includes/common/shipping-modules/mp-flat-rate.php:25 +#: includes/common/shipping-modules/mp-flat-rate.php:223 +msgid "Flat Rate" +msgstr "Fast rate" + +#: includes/common/shipping-modules/mp-fedex.php:761 +msgid "FedEx (beta)" +msgstr "FedEx (beta)" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Centimeters" +msgstr "Centimeter" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Inches" +msgstr "Tommer" + +#: includes/admin/class-mp-products-admin.php:1676 +#: includes/admin/class-mp-setup-wizard.php:547 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:166 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +msgid "Kilograms" +msgstr "Kilo" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:103 +msgid " %1$s - %2$s" +msgstr " %1$s - %2$s" + +#: includes/common/shipping-modules/mp-usps.php:358 +msgid "Max Weight per Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:356 +msgid "Box Dimensions" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:354 +msgid "Box Name" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:344 +msgid "Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:343 +msgid "For each box defined enter the maximum weight it can contain." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:341 +msgid "Enter your standard box sizes as LengthxWidthxHeight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:386 +#: includes/common/shipping-modules/mp-ups.php:193 +#: includes/common/shipping-modules/mp-usps.php:234 +#: includes/common/shipping-modules/mp-usps.php:338 +msgid "Standard Boxes and Weight Limits" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:328 +msgid "Handling Charge per Interntional Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:294 +msgid "Handling Charge per Domestic Shipment " +msgstr "Administrasjonsgebyr per innlandssending " + +#: includes/common/shipping-modules/mp-fedex.php:388 +#: includes/common/shipping-modules/mp-ups.php:196 +#: includes/common/shipping-modules/mp-usps.php:237 +msgid "Add Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "(Next Day)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +msgid "Europe First International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:62 +msgid "International Priority" +msgstr "Internasjonal Prioritet" + +#: includes/common/shipping-modules/mp-fedex.php:61 +#: includes/common/shipping-modules/mp-fedex.php:62 +#: includes/common/shipping-modules/mp-ups.php:54 +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "(1-3 Days)" +msgstr "(1-3 dager)" + +#: includes/common/shipping-modules/mp-fedex.php:61 +msgid "International First" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "(5 Days)" +msgstr "(5 dager)" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "International Economy" +msgstr "Internasjonal Økonomi" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "(2-7 Days)" +msgstr "(2-7 dager)" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "Smart Post" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:55 +#: includes/common/shipping-modules/mp-ups.php:49 +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "(1-5 Days)" +msgstr "(1-5 dager)" + +#: includes/common/shipping-modules/mp-fedex.php:55 +msgid "Ground Home Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "(1-7 Days)" +msgstr "(1-7 dager)" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "Fedex Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:53 +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "(3 Days)" +msgstr "(3 dager)" + +#: includes/common/shipping-modules/mp-fedex.php:53 +msgid "Fedex Express Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +#: includes/common/shipping-modules/mp-ups.php:48 +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "(2 Days)" +msgstr "(2 dager)" + +#: includes/common/shipping-modules/mp-fedex.php:52 +msgid "Fedex 2 Day" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "(2 Days am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "Fedex 2 Day AM" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "(1 Day)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +msgid "Standard Overnight" +msgstr "Standard 'over natten'" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "(1 Day am )" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "Priority Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "(1 Day am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "First Overnight" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:476 +#: includes/common/shipping-modules/mp-fedex.php:31 +msgid "FedEx" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:270 +#: includes/common/payment-gateways/simplify.php:179 +#: includes/common/payment-gateways/stripe.php:365 +msgid "%1$s Card ending in %2$s - Expires %3$s" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:259 +#: includes/common/payment-gateways/pin.php:238 +#: includes/common/payment-gateways/simplify.php:171 +msgid "%s Store Purchase - Order ID: %s, Email: %s" +msgstr "%s butikk kjøp - ordrenummer: %s, epost: %s" + +#: includes/common/payment-gateways/stripe.php:266 +msgid "You must login to Stripe to get your API credentials. You can enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:261 +msgid "When in live mode Stripe recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:311 +msgid "The Stripe Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:263 +#: includes/common/payment-gateways/paymill.php:122 +#: includes/common/payment-gateways/stripe.php:222 +msgid "Card Number" +msgstr "Kortnummer" + +#: includes/common/payment-gateways/paymill.php:86 +msgid "Please enter a valid Credit Card Number." +msgstr "Vennligst angi et gyldig kredittkortnummer." + +#: includes/common/payment-gateways/stripe.php:45 +#: includes/common/payment-gateways/stripe.php:433 +msgid "Stripe" +msgstr "Stripe" + +#: includes/common/payment-gateways/paypal-express.php:750 +msgid "Sets the background color for the payment page. By default, the color is white." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:745 +msgid "Sets the background color for the header of the payment page. By default, the color is white." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:740 +msgid "Sets the border color around the header of the payment page. The border is a 2-pixel perimeter around the header space, which is 750 pixels wide by 90 pixels high. By default, the color is black." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:735 +msgid "URL for an image you want to appear at the top left of the payment page. The image has a maximum size of 750 pixels wide by 90 pixels high. PayPal recommends that you provide an image that is stored on a secure (https) server. If you do not specify an image, the business name is displayed." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:857 +#: includes/common/payment-gateways/paypal-express.php:1131 +msgid "The payment is pending because it is part of an order that has been authorized but not settled." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:853 +#: includes/common/payment-gateways/paypal-express.php:1127 +msgid "The payment is pending because it has been authorized but not settled. You must capture the funds first." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:847 +#: includes/common/payment-gateways/paypal-express.php:1120 +msgid "You denied the payment when it was marked as pending." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:837 +#: includes/common/payment-gateways/paypal-express.php:1108 +msgid "A reversal has occurred on this transaction due to an unknown reason." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:836 +#: includes/common/payment-gateways/paypal-express.php:1107 +msgid "A reversal has occurred on this transaction because you have given the customer a refund." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:835 +#: includes/common/payment-gateways/paypal-express.php:1106 +msgid "A reversal has occurred on this transaction due to a complaint about the transaction from your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:834 +#: includes/common/payment-gateways/paypal-express.php:1105 +msgid "A reversal has occurred on this transaction due to your customer triggering a money-back guarantee." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:833 +#: includes/common/payment-gateways/paypal-express.php:1104 +msgid "A reversal has occurred on this transaction due to a chargeback by your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:1101 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer:" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:826 +#: includes/common/payment-gateways/paypal-express.php:1097 +msgid "A payment has been accepted." +msgstr "Betalingen er godkjent" + +#: includes/common/payment-gateways/paypal-express.php:818 +#: includes/common/payment-gateways/paypal-express.php:1087 +msgid "The transaction has not terminated, e.g. an authorization may be awaiting completion." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:531 +#: includes/common/payment-gateways/paypal-express.php:810 +#: includes/common/payment-gateways/paypal-express.php:1077 +msgid "The payment has failed. This happens only if the payment was made from your customer's bank account." +msgstr "Betalingen har feilet. Dette hender bare hvis betalingen skjer fra kunden sin bank konto." + +#: includes/common/payment-gateways/paypal-express.php:806 +#: includes/common/payment-gateways/paypal-express.php:1072 +msgid "An authorization for this transaction has been voided." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:802 +#: includes/common/payment-gateways/paypal-express.php:1067 +msgid "The authorization period for this payment has been reached." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:798 +#: includes/common/payment-gateways/paypal-express.php:1062 +msgid "A reversal has been canceled; for example, when you win a dispute and the funds for the reversal have been returned to you." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:499 +#: includes/common/payment-gateways/paypal-express.php:1163 +msgid "PayPal Express Checkout" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:798 +msgid "Gateway Settings Page Message" +msgstr "Melding på betalingsoppsettssiden" + +#: includes/common/payment-gateways/paypal-express.php:725 +msgid "Signature" +msgstr "Signatur" + +#: includes/common/payment-gateways/eway31.php:506 +#: includes/common/payment-gateways/eway31.php:533 +#: includes/common/shipping-modules/mp-fedex.php:276 +msgid "API Password" +msgstr "API passord" + +#: includes/common/payment-gateways/paypal-chained-payments.php:773 +msgid "Enter a percentage of all store sales to collect as a fee. Decimals allowed." +msgstr "Angi en prosentandel av alt butikksalg som skal trekkes som gebyr. Desimal er tillatt." + +#: includes/common/payment-gateways/paypal-chained-payments.php:757 +msgid "Using PayPal Chained Payments allows you as the multisite network owner to collect a predefined fee or percentage of all sales on network MarketPress stores! This is invisible to the customers who purchase items in a store, and all PayPal fees will be charged to the store owner. To use this option you must create API credentials, and you should make all other gateways unavailable or limited above." +msgstr "Ved å bruke PayPal linkede betalinger kan du som nettverkseier ta et bestemt gebyr eller en andel av alt salg i nettverket. Dette er usynlig for kundene som handler i butikkene, og alle slike gebyr vil ble trukket fra butikkeieren. For å bruke dette alternativet må du opprette API tilganger, og du må sette alle andre betalingsmåter utilgjengelige eller begrenset." + +#: includes/common/payment-gateways/paypal-chained-payments.php:338 +msgid "Please be aware that we will deduct a ?% fee from the total of each transaction in addition to any fees PayPal may charge you. If for any reason you need to refund a customer for an order, please contact us with a screenshot of the refund receipt in your PayPal history as well as the Transaction ID of our fee deduction so we can issue you a refund. Thank you!" +msgstr "Vær oppmerksom på at vi vil trekke ?% gebyr fra totalbeløpet på hver overføring i tillegg til eventuelle gebyr PayPay vil trekke. Dersom du av uansett grunn har behov for å tilbakebetale til en kunde, vennligst kontakt oss med et skjermbilde av tilbakebetalingskvitteringen fra din PayPal historikk sammen med transkaksjonsnummeret på det gebyr, så kan vi gi deg tilbakebetaling på dette. På forhånd takk." + +#: includes/common/payment-gateways/paypal-chained-payments.php:698 +#: includes/common/payment-gateways/paypal-express.php:149 +msgid "There was a problem connecting to PayPal. Please try again." +msgstr "Det var problemer med å kontakte PayPal. Vennligst prøv igjen." + +#: includes/common/payment-gateways/paypal-chained-payments.php:470 +#: includes/common/payment-gateways/paypal-express.php:1053 +msgid "There was a problem verifying the IPN string with PayPal. Please try again." +msgstr "Det var et problem med å verifisere IPN strengen med PayPal. Vennligst prøv igjen." + +#: includes/common/payment-gateways/paypal-chained-payments.php:310 +msgid "There was a problem connecting to PayPal to check the status of your purchase. Please check the status of your order here »" +msgstr "Det var et problem å koble til PayPal for å sjekke status på kjøpet. Vennligst sjekk status på din bestilling her »" + +#: includes/common/payment-gateways/payfast.php:539 +#: includes/common/payment-gateways/paypal-chained-payments.php:254 +#: includes/common/payment-gateways/paypal-express.php:1139 +msgid "The payment is pending." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:251 +#: includes/common/payment-gateways/paypal-chained-payments.php:531 +#: includes/common/payment-gateways/paypal-express.php:862 +#: includes/common/payment-gateways/paypal-express.php:1136 +msgid "The payment is pending for an unknown reason. For more information, contact PayPal customer service." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:250 +#: includes/common/payment-gateways/paypal-chained-payments.php:530 +#: includes/common/payment-gateways/paypal-express.php:861 +#: includes/common/payment-gateways/paypal-express.php:1135 +msgid "The payment is pending because you are not yet verified. You must verify your account before you can accept this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:249 +#: includes/common/payment-gateways/paypal-chained-payments.php:529 +#: includes/common/payment-gateways/paypal-express.php:860 +#: includes/common/payment-gateways/paypal-express.php:1134 +msgid "The payment is pending because it was made via credit card and you must upgrade your account to Business or Premier status in order to receive the funds. It can also mean that you have reached the monthly limit for transactions on your account." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:248 +#: includes/common/payment-gateways/paypal-chained-payments.php:528 +#: includes/common/payment-gateways/paypal-express.php:859 +#: includes/common/payment-gateways/paypal-express.php:1133 +msgid "The payment is pending because it was made to an email address that is not yet registered or confirmed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:247 +#: includes/common/payment-gateways/paypal-chained-payments.php:527 +#: includes/common/payment-gateways/paypal-express.php:858 +#: includes/common/payment-gateways/paypal-express.php:1132 +msgid "The payment is pending while it is being reviewed by PayPal for risk." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:246 +#: includes/common/payment-gateways/paypal-chained-payments.php:526 +#: includes/common/payment-gateways/paypal-express.php:856 +#: includes/common/payment-gateways/paypal-express.php:1130 +msgid "You do not have a balance in the currency sent, and you do not have your Payment Receiving Preferences set to automatically convert and accept this payment. You must manually accept or deny this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:245 +#: includes/common/payment-gateways/paypal-chained-payments.php:525 +#: includes/common/payment-gateways/paypal-express.php:855 +#: includes/common/payment-gateways/paypal-express.php:1129 +msgid "The payment is pending because you hold a non-U.S. account and do not have a withdrawal mechanism. You must manually accept or deny this payment from your Account Overview." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:244 +#: includes/common/payment-gateways/paypal-chained-payments.php:524 +#: includes/common/payment-gateways/paypal-express.php:854 +#: includes/common/payment-gateways/paypal-express.php:1128 +msgid "The payment is pending because it was made by an eCheck that has not yet cleared." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:243 +#: includes/common/payment-gateways/paypal-chained-payments.php:523 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences section of your Profile." +msgstr "Betalingen er på vent på grunn av at din kunde ikke registrerte en bekreftet leveringsadresse, og ditt oppsett er satt slik at du da ønsker å manuelt akseptere eller nekte disse betalingene. For å endre ditt oppsett, gå til din profil." + +#: includes/common/payment-gateways/paypal-chained-payments.php:236 +#: includes/common/payment-gateways/paypal-chained-payments.php:516 +msgid "The transaction was rejected by the receiver (you)." +msgstr "Overføringen ble avvist av mottaker (deg)." + +#: includes/common/payment-gateways/paypal-chained-payments.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:510 +#: includes/common/payment-gateways/paypal-express.php:843 +#: includes/common/payment-gateways/paypal-express.php:1115 +msgid "You refunded the payment." +msgstr "Du tilbakebetalte betalingen." + +#: includes/common/payment-gateways/paypal-chained-payments.php:224 +#: includes/common/payment-gateways/paypal-chained-payments.php:504 +msgid "The transaction is in progress." +msgstr "Betalingen blir behandlet." + +#: includes/common/payment-gateways/paypal-chained-payments.php:212 +#: includes/common/payment-gateways/paypal-chained-payments.php:491 +#: includes/common/payment-gateways/paypal-express.php:814 +#: includes/common/payment-gateways/paypal-express.php:1082 +msgid "The payment has been partially refunded." +msgstr "Betalingen har blitt delvis tilbakeført" + +#: includes/common/payment-gateways/paypal-chained-payments.php:202 +#: includes/common/payment-gateways/paypal-chained-payments.php:481 +msgid "PayPal balance, Credit Card, or Instant Transfer" +msgstr "PayPal saldo, Kredittkort eller overføring" + +#: includes/common/payment-gateways/paypal-chained-payments.php:177 +msgid "There was a problem connecting to PayPal to setup your purchase. Please try again." +msgstr "Det var et problem ved kommunikasjon mot PayPal med ditt kjøp. Vennligs prøv igjen." + +#: includes/common/payment-gateways/paypal-chained-payments.php:122 +msgid "Your PayPal transaction has been canceled." +msgstr "Din PayPal betaling har blitt annulert." + +#: includes/common/payment-gateways/paypal-chained-payments.php:50 +#: includes/common/payment-gateways/paypal-chained-payments.php:53 +#: includes/common/payment-gateways/paypal-chained-payments.php:732 +#: includes/common/payment-gateways/paypal-express.php:500 +#: includes/common/payment-gateways/paypal-express.php:938 +msgid "PayPal" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:48 +#: includes/common/payment-gateways/paypal-chained-payments.php:730 +#: includes/common/payment-gateways/paypal-chained-payments.php:756 +#: includes/common/payment-gateways/paypal-chained-payments.php:873 +msgid "PayPal Chained Payments" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:59 +#: includes/common/payment-gateways/paypal-payflow.php:467 +msgid "PayPal Payflow Pro" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:378 +msgid "Chargeback - A payment was reversed due to a chargeback. The funds have been removed from your account balance and returned to the buyer." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:372 +msgid "Failed - The Credit Card or Direct Debit transaction was declined." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:354 +#: includes/common/payment-gateways/skrill.php:366 +msgid "Cancelled - The payment was cancelled manually by the sender in their online account history or was auto-cancelled after 14 days pending." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:360 +msgid "Pending - The payment is pending. It can take 2-3 days for bank transfers to complete." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:349 +#: includes/common/payment-gateways/skrill.php:354 +msgid "Processed - The payment has been completed, and the funds have been added successfully to your Moneybookers account balance." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:189 +msgid "Shown to the customer on the confirmation screen - the end step of the process - a note, confirmation number, or any other message. Line breaks <br> may be used for longer messages." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:188 +msgid "Confirmation Note (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:183 +msgid "The URL of the logo which you would like to appear at the top of the payment form. The logo must be accessible via HTTPS otherwise it will not be shown. For best integration results we recommend that you use a logo with dimensions up to 200px in width and 50px in height." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:182 +msgid "Logo Image (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:177 +msgid "The name of this store, which will be shown on the gateway. If no value is submitted, the account email will be shown as the recipient of the payment." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:176 +msgid "Merchant Name (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:165 +msgid "Language" +msgstr "Språk" + +#: includes/common/payment-gateways/2checkout.php:368 +#: includes/common/payment-gateways/authorizenet-aim.php:262 +#: includes/common/payment-gateways/eway.php:363 +#: includes/common/payment-gateways/eway31.php:471 +#: includes/common/payment-gateways/mollie.php:91 +#: includes/common/payment-gateways/paymill.php:193 +#: includes/common/payment-gateways/paypal-chained-payments.php:356 +#: includes/common/payment-gateways/paypal-express.php:688 +#: includes/common/payment-gateways/paypal-payflow.php:432 +#: includes/common/payment-gateways/pin.php:186 +#: includes/common/payment-gateways/skrill.php:152 +#: includes/common/payment-gateways/stripe.php:288 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:104 +msgid "Currency" +msgstr "Valuta" + +#: includes/common/payment-gateways/2checkout.php:359 +#: includes/common/payment-gateways/skrill.php:143 +msgid "Secret Word" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:261 +msgid "Order ID:" +msgstr "Ordre nummer:" + +#: includes/common/payment-gateways/skrill.php:234 +msgid "Complete Checkout" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:204 +msgid "Your Moneybookers transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:155 +msgid "This is the email text to send to those who have made manual payment checkouts. You should include your manual payment instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:257 +#: includes/common/payment-gateways/manual-payments.php:128 +msgid "Record payments manually, such as by Cash, Check, or EFT." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:71 +msgid "Manual/Invoice" +msgstr "Manuell/faktura" + +#: includes/admin/class-mp-setup-wizard.php:648 +#: includes/common/payment-gateways/manual-payments.php:35 +#: includes/common/payment-gateways/manual-payments.php:36 +msgid "Manual Payment" +msgstr "Manuell betaling" + +#: includes/common/payment-gateways/manual-payments.php:34 +#: includes/common/payment-gateways/manual-payments.php:163 +msgid "Manual Payments" +msgstr "Manuell betaling" + +#: includes/common/payment-gateways/_ideal.php:288 +msgid "iDEAL Simulator (for testing)" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:287 +msgid "ABN Amro Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:286 +msgid "Friesland Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:285 +msgid "Rabobank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:284 +msgid "ING Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:279 +msgid "Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:270 +msgid "To make it easier to pay for online products and services, the Dutch banking community has developed the iDEAL online payment method. iDEAL allows online payments to be made using online banking in EUR only." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:247 +#: includes/common/payment-gateways/_payway.php:199 +#: includes/common/payment-gateways/manual-payments.php:68 +msgid "Invoiced" +msgstr "Fakturert" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1016 +msgid "Coupon" +msgstr "Rabattkode" + +#: includes/common/payment-gateways/_ideal.php:77 +#: includes/common/payment-gateways/_ideal.php:250 +#: includes/common/payment-gateways/_payway.php:202 +msgid "iDEAL" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:76 +msgid "iDEAL (beta)" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:327 +msgid "Merchant Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:293 +#: includes/common/payment-gateways/_payway.php:302 +#: includes/common/payment-gateways/payfast.php:324 +msgid "Merchant ID" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:462 +msgid "eWay Rapid 3.0 Payments lets merchants recieve credit card payments through eWay without need for users to leave the shop. Note this gateway requires a valid SSL certificate configured for this site." +msgstr "" + +#: includes/common/payment-gateways/eway.php:452 +msgid "There was a problem connecting to eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/eway.php:432 +#: includes/common/payment-gateways/eway.php:437 +msgid "The url of the image can be hosted on your website and pass the secure https:// path of the image to be displayed at the top of the website. This is the second image block on the webpage and is restricted to 960px X 65px. A default secure image is used if none is supplied." +msgstr "" + +#: includes/common/payment-gateways/eway.php:431 +#: includes/common/payment-gateways/eway.php:436 +msgid "Company Logo (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:427 +msgid "The page footer text can be customised and populated below the customer's order details. Useful for contact information." +msgstr "" + +#: includes/common/payment-gateways/eway.php:426 +msgid "Page Footer (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:421 +msgid "Page Description (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:417 +#: includes/common/payment-gateways/eway.php:422 +msgid "This value is used to populate the browsers title bar at the top of the screen." +msgstr "" + +#: includes/common/payment-gateways/eway.php:416 +msgid "Page Title (optional)" +msgstr "Sidetittel (valgfri)" + +#: includes/common/payment-gateways/eway.php:412 +msgid "This will be displayed as the company the customer is purchasing from, including this is highly recommended." +msgstr "" + +#: includes/common/payment-gateways/eway.php:411 +msgid "Company Name" +msgstr "Firmanavn" + +#: includes/common/payment-gateways/eway.php:394 +msgid "Customer ID" +msgstr "Kundenummer" + +#: includes/common/payment-gateways/eway.php:381 +#: includes/common/payment-gateways/eway31.php:488 +msgid "Live API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway.php:371 +#: includes/common/payment-gateways/eway31.php:479 +msgid "Gateway Mode" +msgstr "" + +#: includes/common/payment-gateways/eway.php:354 +msgid "The Hosted Page is a webpage hosted on eWAY's side eliminating the need for merchants to capture, transmit or store credit card numbers. At the checkout time the merchant automatically redirects the customer to the Hosted Page where they would enter their details and have the transaction processed. Upon completion of the transaction the customer is redirected back to the MarketPress checkout confirmation page." +msgstr "" + +#: includes/common/payment-gateways/eway.php:314 +msgid "There was a problem with your credit card information: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:300 +msgid "Paid - The card has been processed - %s" +msgstr "Betalt - Kortet har blitt behandlet - %s" + +#: includes/common/payment-gateways/eway.php:253 +msgid "There was a problem setting up the transaction with eWay: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:245 +#: includes/common/payment-gateways/eway.php:289 +msgid "There was a problem parsing the response from eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:159 +#: includes/common/payment-gateways/eway.php:189 +#: includes/common/payment-gateways/paypal-chained-payments.php:634 +#: includes/common/payment-gateways/paypal-express.php:322 +#: includes/common/payment-gateways/paypal-express.php:473 +msgid "%s Store Purchase - Order ID: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:147 +#: includes/common/payment-gateways/eway.php:462 +msgid "eWay Shared Payments" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:214 +msgid "This is the email text to send to those who have made CubePoints checkouts. You should include your CubePoints instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:212 +#: includes/common/payment-gateways/free_orders.php:188 +#: includes/common/payment-gateways/manual-payments.php:154 +msgid "Order Confirmation Email" +msgstr "Ordrebekreftelse på epost" + +#: includes/common/payment-gateways/_cubepoints.php:207 +#: includes/common/payment-gateways/manual-payments.php:149 +msgid "Confirmation User Instructions" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:202 +#: includes/common/payment-gateways/manual-payments.php:144 +msgid "User Instructions" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:198 +#: includes/common/payment-gateways/free_orders.php:170 +#: includes/common/payment-gateways/manual-payments.php:139 +msgid "Enter a public name for this payment method that is displayed to users - No HTML" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:532 +#: includes/common/payment-gateways/_cubepoints.php:196 +#: includes/common/payment-gateways/free_orders.php:169 +#: includes/common/payment-gateways/manual-payments.php:138 +msgid "Method Name" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:187 +msgid "Accept CubePoints as payment(requires the CubePoints plugin)." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:140 +msgid "Sorry, but you do not appear to have enough points to complete this purchase!" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:124 +msgid "%s Store Purchase" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:79 +#: includes/common/payment-gateways/_cubepoints.php:171 +msgid "Your current points: " +msgstr "Din poengsaldo: " + +#: includes/common/payment-gateways/_cubepoints.php:133 +#: includes/common/payment-gateways/_cubepoints.php:197 +msgid "CubePoints" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:344 +msgid "Authorize.net AIM Checkout" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:331 +msgid "Custom API URL" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:332 +msgid "Many other gateways have Authorize.net API emulators. To use one of these gateways input their API post url here." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:322 +msgid "Request a delimited response from the payment gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:316 +msgid "Security: MD5 Hash" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:317 +msgid "The payment gateway generated MD5 hash value that can be used to authenticate the transaction response. Not needed because responses are returned using an SSL connection." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:306 +msgid "Customer Receipt Email Footer" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:296 +msgid "Customer Receipt Email Header" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:297 +#: includes/common/payment-gateways/paypal-payflow.php:446 +msgid "This text will appear as the header of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:282 +msgid "Encapsulation Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:283 +msgid "Authorize.net default is blank. Otherwise, get this from your credit card processor. If the transactions are going through, but getting strange responses, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:273 +msgid "Optional settings to control advanced options" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:224 +#: includes/common/payment-gateways/authorizenet-aim.php:272 +msgid "Advanced Settings" +msgstr "Avansert oppsett" + +#: includes/common/payment-gateways/authorizenet-aim.php:253 +msgid "Transaction Key" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:246 +msgid "Login ID" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:396 +msgid "Gateway Credentials" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:221 +msgid "Authorize.net AIM is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway. USD is the only currency supported by this gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:205 +msgid "There was a problem finalizing your purchase. %s Please go back and try again." +msgstr "Det var et problem med sluttføringen av ditt kjøp. %s Vennligst gå tilbake og prøv igjen." + +#: includes/common/payment-gateways/payfast.php:519 +#: includes/common/payment-gateways/paypal-chained-payments.php:218 +#: includes/common/payment-gateways/paypal-chained-payments.php:498 +#: includes/common/payment-gateways/paypal-express.php:822 +#: includes/common/payment-gateways/paypal-express.php:1092 +msgid "The payment has been completed, and the funds have been added successfully to your account balance." +msgstr "Betalingen er fullført, og beløpet er registrert på ditt kontoutdrag." + +#: includes/common/payment-gateways/paypal-payflow.php:233 +msgid "Please enter a valid credit card security code" +msgstr "Vennligst angi en gyldig kredittkort sikkerhetskode" + +#: includes/common/payment-gateways/paypal-payflow.php:224 +#: includes/public/class-mp-checkout.php:867 +msgid "Please enter a valid credit card number" +msgstr "Vennligst angi et gyldig kredittkortnummer" + +#: includes/common/payment-gateways/paypal-payflow.php:221 +msgid "Please enter your credit card number" +msgstr "Vennligst angi ditt kredittkortnummer" + +#: includes/common/payment-gateways/paypal-payflow.php:217 +msgid "Please enter your credit card security code" +msgstr "Vennligst angi ditt kredittskort sikkerhetskode" + +#: includes/common/payment-gateways/paypal-payflow.php:213 +msgid "Please select your credit card expiration date." +msgstr "Vennligst angi ditt kredittkorts utløpsdato." + +#: includes/common/payment-gateways/2checkout.php:299 +#: includes/common/payment-gateways/authorizenet-aim.php:50 +#: includes/common/payment-gateways/eway.php:148 +#: includes/common/payment-gateways/eway.php:298 +#: includes/common/payment-gateways/eway31.php:267 +#: includes/common/payment-gateways/paymill.php:46 +#: includes/common/payment-gateways/paypal-express.php:972 +#: includes/common/payment-gateways/paypal-payflow.php:60 +#: includes/common/payment-gateways/pin.php:46 +#: includes/common/payment-gateways/simplify.php:19 +#: includes/common/payment-gateways/stripe.php:46 +#: includes/common/payment-gateways/wepay.php:37 +msgid "Credit Card" +msgstr "Kredittkort" + +#: includes/common/payment-gateways/authorizenet-aim.php:49 +msgid "Authorize.net Checkout" +msgstr "Authorize.net Checkout" + +#: includes/common/payment-gateways/skrill.php:156 +#: includes/common/payment-gateways/stripe.php:293 +msgid "Selecting a currency other than that used for your store may cause problems at checkout." +msgstr "Valg av valutakode annet enn den som er valgt i butikkoppsettet kan skape problemer ved kassen." + +#: includes/common/payment-gateways/2checkout.php:352 +msgid "Seller ID" +msgstr "Selger ID" + +#: includes/common/payment-gateways/2checkout.php:340 +#: includes/common/payment-gateways/_ideal.php:311 +#: includes/common/payment-gateways/authorizenet-aim.php:234 +#: includes/common/payment-gateways/eway.php:376 +#: includes/common/payment-gateways/payfast.php:315 +#: includes/common/payment-gateways/paypal-chained-payments.php:368 +#: includes/common/payment-gateways/paypal-express.php:699 +#: includes/common/payment-gateways/paypal-payflow.php:391 +msgid "Live" +msgstr "Drift" + +#: includes/common/payment-gateways/2checkout.php:339 +#: includes/common/payment-gateways/authorizenet-aim.php:233 +#: includes/common/payment-gateways/eway.php:375 +#: includes/common/payment-gateways/paypal-chained-payments.php:367 +#: includes/common/payment-gateways/paypal-express.php:698 +#: includes/common/payment-gateways/paypal-payflow.php:390 +#: includes/common/shipping-modules/mp-fedex.php:263 +msgid "Sandbox" +msgstr "Sandkasse" + +#: includes/common/payment-gateways/2checkout.php:336 +#: includes/common/payment-gateways/_ideal.php:307 +#: includes/common/payment-gateways/authorizenet-aim.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:365 +#: includes/common/payment-gateways/paypal-express.php:695 +#: includes/common/payment-gateways/paypal-payflow.php:387 +#: includes/common/payment-gateways/wepay.php:130 +#: includes/common/shipping-modules/mp-fedex.php:260 +msgid "Mode" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:288 +#: includes/common/payment-gateways/mijireh.php:242 +#: includes/common/payment-gateways/mollie.php:212 +msgid "The order has been received" +msgstr "Ordren er registrert" + +#: includes/common/payment-gateways/2checkout.php:74 +#: includes/common/payment-gateways/2checkout.php:75 +#: includes/common/payment-gateways/2checkout.php:435 +msgid "2Checkout" +msgstr "2Checkout" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:306 +msgid "Confirm" +msgstr "Bekreft" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:218 +#: includes/common/class-mp-cart.php:974 includes/common/class-mp-cart.php:1354 +#: includes/common/template-functions.php:918 +msgid "Checkout" +msgstr "Til kasse" + +#: includes/common/template-functions.php:207 +msgid "Check Order Status" +msgstr "Sjekk ordrestatus" + +#: includes/common/template-functions.php:235 +msgid "View Products" +msgstr "Vis varer" + +#: includes/common/template-functions.php:263 +msgid "Visit Store" +msgstr "Besøk butikken" + +#: includes/common/template-functions.php:2912 +#: includes/multisite/template-functions.php:448 +msgid "Order By" +msgstr "Sortering" + +#: includes/common/template-functions.php:2887 +#: includes/multisite/template-functions.php:405 +msgid "Price (High to Low)" +msgstr "Pris (høy til lav)" + +#: includes/common/template-functions.php:2886 +#: includes/multisite/template-functions.php:404 +msgid "Price (Low to High)" +msgstr "Pris (lav til høy)" + +#: includes/common/template-functions.php:2881 +#: includes/multisite/template-functions.php:399 +msgid "Default" +msgstr "Standard" + +#: includes/common/template-functions.php:2858 +msgid "Show All" +msgstr "Vis alle" + +#: includes/common/class-mp-product.php:2048 +msgid "View Larger Image »" +msgstr "Vis større bilde »" + +#: includes/common/class-mp-product.php:979 +msgid "Out of Stock" +msgstr "Utsolgt" + +#: includes/common/template-functions.php:148 +msgid "Price: " +msgstr "Pris: " + +#: includes/multisite/template-functions.php:833 +msgid "No Tags" +msgstr "Ingen tagger" + +#: includes/common/template-functions.php:3162 +msgid "Uncategorized" +msgstr "Ikke kategorisert" + +#: includes/common/class-mp-cart.php:569 includes/common/class-mp-order.php:604 +#: includes/common/helpers.php:115 +msgid "Download" +msgstr "Last ned" + +#: includes/common/class-mp-cart.php:1353 +msgid "Empty Cart" +msgstr "Tøm handlekurv" + +#: includes/common/payment-gateways/_payway.php:291 +#: includes/common/payment-gateways/paypal-express.php:718 +#: includes/common/payment-gateways/paypal-payflow.php:423 +#: includes/common/shipping-modules/mp-ups.php:158 +#: includes/public/class-mp-checkout.php:1254 +#: includes/public/class-mp-checkout.php:1383 +msgid "Password" +msgstr "Passord" + +#: includes/common/payment-gateways/eway.php:387 +#: includes/common/payment-gateways/paypal-express.php:711 +#: includes/common/shipping-modules/mp-usps.php:185 +#: includes/public/class-mp-checkout.php:1249 +msgid "Username" +msgstr "Brukernavn" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:437 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:790 +msgid "Have a coupon code?" +msgstr "Bruk din kupongkode her" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:321 +#: includes/admin/class-mp-orders-admin.php:526 +#: includes/common/class-mp-cart.php:592 +msgid "Remove" +msgstr "Fjern" + +#: includes/admin/class-mp-ajax.php:316 +msgid "Quantity:" +msgstr "Antall" + +#: includes/admin/class-mp-products-admin.php:2140 +#: includes/admin/class-mp-products-admin.php:2387 +#: includes/common/shipping-modules/class-mp-shipping-api.php:507 +msgid "Extra Shipping Cost" +msgstr "Ekstra leveringskostnader" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:403 +msgid "Choose a Shipping Method:" +msgstr "Velg en leveringsmåte:" + +#: includes/admin/class-mp-products-admin.php:1691 +#: includes/admin/class-mp-products-admin.php:2131 +#: includes/admin/class-mp-products-admin.php:2378 +#: includes/common/shipping-modules/class-mp-shipping-api.php:228 +msgid "Ounces" +msgstr "Ounces" + +#: includes/admin/class-mp-products-admin.php:1684 +#: includes/admin/class-mp-products-admin.php:2123 +#: includes/admin/class-mp-products-admin.php:2369 +#: includes/admin/class-mp-setup-wizard.php:546 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:165 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +#: includes/common/shipping-modules/class-mp-shipping-api.php:227 +msgid "Pounds" +msgstr "Pounds" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:226 +msgid "Product Weight:" +msgstr "Varens vekt:" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:214 +msgid "Weight (Kilograms)" +msgstr "Vekt (kg)" + +#: includes/admin/widgets/ms-global-categories.php:82 +msgid "Number of Categories:" +msgstr "Antall kategorier:" + +#: includes/admin/widgets/ms-global-categories.php:72 +msgid "Product Count" +msgstr "Vareantall" + +#: includes/addons/class-mp-addons-list-table.php:20 +#: includes/admin/class-mp-product-attributes-admin.php:129 +#: includes/admin/class-mp-product-attributes-list-table.php:22 +#: includes/admin/class-mp-products-admin.php:2216 +#: includes/admin/class-mp-shortcode-builder.php:628 +#: includes/admin/class-mp-shortcode-builder.php:1415 +#: includes/admin/widgets/ms-global-categories.php:70 +#: includes/common/shipping-modules/mp-fedex.php:395 +#: includes/common/shipping-modules/mp-ups.php:202 +#: includes/common/shipping-modules/mp-usps.php:243 +#: includes/public/class-mp-checkout.php:314 +msgid "Name" +msgstr "Navn" + +#: includes/admin/widgets/ms-global-categories.php:67 +msgid "Order Categories By:" +msgstr "Sorter kategorier med:" + +#: includes/admin/widgets/ms-global-categories.php:24 +#: includes/admin/widgets/ms-global-categories.php:50 +msgid "Global Product Categories" +msgstr "Globale varekategorier" + +#: includes/admin/widgets/ms-global-categories.php:15 +msgid "Global Product Category List" +msgstr "Global varekategoriliste" + +#: includes/admin/widgets/ms-global-categories.php:13 +msgid "Displays a network-wide HTML list of product categories from network MarketPress stores." +msgstr "Viser en global HTML liste med produktkategorier fra hele MarketPress butikknettverket." + +#: includes/admin/widgets/ms-global-tag-cloud.php:24 +#: includes/admin/widgets/ms-global-tag-cloud.php:45 +msgid "Global Product Tags" +msgstr "Global varetag" + +#: includes/admin/widgets/ms-global-tag-cloud.php:15 +msgid "Global Product Tag Cloud" +msgstr "Global varetag sky" + +#: includes/admin/class-mp-shortcode-builder.php:947 +#: includes/admin/widgets/ms-global-product-list.php:173 +msgid "Excerpt" +msgstr "Unntak" + +#: includes/admin/widgets/ms-global-product-list.php:169 +msgid "Content To Show:" +msgstr "Innhold som skal vises:" + +#: includes/admin/widgets/ms-global-product-list.php:140 +msgid "Limit To Product Tag:" +msgstr "Begrens til vare Tag:" + +#: includes/admin/widgets/ms-global-product-list.php:132 +msgid "Limit To Product Category:" +msgstr "Begrens til varegruppe:" + +#: includes/admin/widgets/ms-global-product-list.php:72 +msgid "Global Products" +msgstr "Globale varer" + +#: includes/admin/widgets/ms-global-product-list.php:16 +msgid "Global Product List" +msgstr "Global varekatalog" + +#: includes/admin/widgets/ms-global-product-list.php:14 +msgid "Shows a customizable global list of products from network MarketPress stores." +msgstr "Viser en tilpasset global varekatalog fra nettverksbutikker." + +#: includes/common/class-mp-product.php:974 +#: includes/multisite/template-functions.php:731 +msgid "Buy Now »" +msgstr "Kjøp nå »" + +#: includes/admin/widgets/ms-global-tag-cloud.php:13 +msgid "Displays global most used product tags in cloud format from network MarketPress stores." +msgstr "Viser de mest brukte produktetiketter fra den globale MarketPress butikken i skyformat." + +#: includes/multisite/class-mp-admin-multisite.php:438 +msgid "Theme Permissions" +msgstr "Tematillatelser" + +#: includes/multisite/class-mp-admin-multisite.php:402 +#: includes/multisite/class-mp-admin-multisite.php:448 +msgid "No Access" +msgstr "Ingen tilgang" + +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:120 +msgid "Pro Site Level" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:401 +#: includes/multisite/class-mp-admin-multisite.php:447 +msgid "All Can Use" +msgstr "Kan brukes av alle" + +#: includes/multisite/class-mp-admin-multisite.php:390 +msgid "Gateway Permissions" +msgstr "Gateway tillatelser" + +#: includes/multisite/class-mp-admin-multisite.php:375 +msgid "Select a Gateway" +msgstr "Velg måte" + +#: includes/multisite/class-mp-admin-multisite.php:350 +msgid "Global Gateway" +msgstr "Global måte" + +#. Plugin Name of the plugin/theme +msgid "MarketPress" +msgstr "MarketPress" + +#: includes/admin/widgets/product-tag-cloud.php:7 +msgid "Your most used product tags in cloud format from your MarketPress store." +msgstr "Dine mest brukte produktetiketter i skyformat fra din MarketPress butikk." + +#: includes/admin/widgets/categories.php:79 +msgid "Show hierarchy" +msgstr "" + +#: includes/admin/widgets/categories.php:76 +#: includes/admin/widgets/ms-global-categories.php:92 +msgid "Show product counts" +msgstr "Vis vareantall" + +#: includes/admin/widgets/categories.php:73 +msgid "Show as dropdown" +msgstr "Vis som nedtrekksboks" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:710 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:736 +#: includes/admin/widgets/categories.php:30 +msgid "Select Category" +msgstr "Velg kategori" + +#: includes/admin/widgets/categories.php:7 +msgid "A list or dropdown of product categories from your MarketPress store." +msgstr "En liste eller en nedtrekksliste med varekategorier fra din MarketPress butikk." + +#: includes/admin/widgets/product-list.php:250 +msgid "Show Buy Button" +msgstr "Vis knapp for \"Kjøp nå\"" + +#: includes/admin/widgets/ms-global-product-list.php:183 +#: includes/admin/widgets/product-list.php:244 +msgid "Show Price" +msgstr "Vis pris" + +#: includes/admin/widgets/product-list.php:241 +msgid "Show Excerpt" +msgstr "Vis utdrag" + +#: includes/admin/widgets/ms-global-product-list.php:155 +#: includes/admin/widgets/product-list.php:238 +msgid "Thumbnail Size:" +msgstr "Miniatyrbildets størrelse" + +#: includes/admin/widgets/ms-global-product-list.php:153 +#: includes/admin/widgets/product-list.php:237 +msgid "Show Thumbnail" +msgstr "Vis miniatyrbilde" + +#: includes/admin/widgets/ms-global-product-list.php:147 +#: includes/admin/widgets/product-list.php:233 +msgid "Display Settings" +msgstr "Visningsoppsett" + +#: includes/admin/widgets/ms-global-product-list.php:136 +#: includes/admin/widgets/ms-global-product-list.php:144 +#: includes/admin/widgets/product-list.php:230 +msgid "Enter the Slug" +msgstr "Angi Slug" + +#: includes/admin/widgets/product-list.php:228 +#: includes/common/template-functions.php:894 +msgid "Tag" +msgstr "Etikett" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:686 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:712 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:739 +#: includes/admin/class-mp-shortcode-builder.php:796 +#: includes/admin/widgets/product-list.php:227 +#: includes/common/template-functions.php:886 +#: includes/common/template-functions.php:2907 +msgid "Category" +msgstr "Kategori" + +#: includes/admin/widgets/product-list.php:226 +msgid "No Filter" +msgstr "Ingen filter" + +#: includes/admin/widgets/product-list.php:224 +msgid "Taxonomy Filter:" +msgstr "Taksanomifilter:" + +#: includes/admin/widgets/ms-global-product-list.php:108 +#: includes/admin/widgets/product-list.php:209 +msgid "Order Products By:" +msgstr "Sorter varer etter:" + +#: includes/admin/widgets/ms-global-product-list.php:101 +#: includes/admin/widgets/product-list.php:206 +msgid "Number of Products:" +msgstr "Antall varer:" + +#: includes/admin/widgets/ms-global-product-list.php:98 +#: includes/admin/widgets/product-list.php:204 +msgid "List Settings" +msgstr "Listeoppsett" + +#: includes/admin/widgets/product-list.php:177 +msgid "Our Products" +msgstr "Våre varer" + +#: includes/admin/widgets/product-list.php:144 +#: includes/common/template-functions.php:2070 +#: includes/common/template-functions.php:2347 +#: includes/multisite/template-functions.php:303 +#: includes/multisite/template-functions.php:623 +msgid "No Products" +msgstr "Beklager, men denne varegruppen inneholder ingen varer!" + +#: includes/admin/widgets/product-list.php:8 +msgid "Product List" +msgstr "Varekatalog" + +#: includes/admin/widgets/product-list.php:7 +msgid "Shows a customizable list of products from your MarketPress store." +msgstr "Viser en tilpasset produktliste fra din MarketPress butikk." + +#: includes/admin/widgets/cart.php:75 includes/admin/widgets/categories.php:82 +#: includes/admin/widgets/product-list.php:253 +#: includes/admin/widgets/product-tag-cloud.php:57 +msgid "Only show on store pages" +msgstr "Vis kun på butikksider" + +#: includes/admin/widgets/cart.php:65 +#: includes/admin/widgets/ms-global-product-list.php:92 +#: includes/admin/widgets/product-list.php:200 +msgid "Custom Text:" +msgstr "Tilpasset text:" + +#: includes/admin/widgets/cart.php:64 includes/admin/widgets/categories.php:69 +#: includes/admin/widgets/ms-global-categories.php:59 +#: includes/admin/widgets/ms-global-product-list.php:87 +#: includes/admin/widgets/ms-global-tag-cloud.php:49 +#: includes/admin/widgets/product-list.php:199 +#: includes/admin/widgets/product-tag-cloud.php:49 +msgid "Title:" +msgstr "Tittel:" + +#: includes/admin/widgets/cart.php:7 +msgid "Shows dynamic shopping cart contents along with a checkout button for your MarketPress store." +msgstr "Viser innholdet i handlekurven dynamisk sammen med en knapp for utsjekking fra din MarketPress butikk." + +#: includes/admin/widgets/product-tag-cloud.php:8 +msgid "Product Tag Cloud" +msgstr "Vis etikettsky" + +#: includes/admin/class-mp-setup-wizard.php:539 +#: includes/admin/class-mp-setup-wizard.php:575 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:163 +msgid "Measurement System" +msgstr "Måleenheter" + +#: includes/admin/class-mp-setup-wizard.php:616 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:149 +msgid "Select Shipping Options" +msgstr "Velg leveringsalternativer" + +#: includes/admin/class-mp-setup-wizard.php:596 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:129 +msgid "Calculated Options" +msgstr "Kalkulerte alternativer" + +#: includes/admin/class-mp-setup-wizard.php:582 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:115 +msgid "No Shipping" +msgstr "Ingen levering" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:110 +msgid "EU" +msgstr "EU" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:109 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:93 +msgid "All" +msgstr "Alle" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:92 +msgid "Select:" +msgstr "Velg:" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:185 +msgid "Store Pages" +msgstr "Butikksider" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:223 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:256 +msgid "Order Shipped" +msgstr "Ordre sendt" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:60 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:95 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:128 +#: marketpress.php:266 +msgid "New Order" +msgstr "Ny bestilling" + +#: includes/admin/class-mp-dashboard-widgets.php:314 +msgid "Email Notifications" +msgstr "Varsler på epost" + +#: includes/admin/class-mp-pages-admin.php:59 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:200 +msgid "Products List" +msgstr "Varekatalog" + +#: includes/admin/class-mp-pages-admin.php:58 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:190 +msgid "Store Base" +msgstr "Hovedside" + +#: includes/admin/class-mp-product-attributes-admin.php:108 +#: includes/admin/class-mp-shortcode-builder.php:635 +#: includes/admin/class-mp-shortcode-builder.php:708 +#: includes/admin/class-mp-shortcode-builder.php:875 +#: includes/admin/class-mp-shortcode-builder.php:1319 +#: includes/admin/class-mp-shortcode-builder.php:1422 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:526 +#: includes/admin/widgets/ms-global-categories.php:78 +#: includes/admin/widgets/ms-global-product-list.php:127 +#: includes/admin/widgets/product-list.php:221 +msgid "Ascending" +msgstr "Stigende" + +#: includes/admin/class-mp-product-attributes-admin.php:109 +#: includes/admin/class-mp-shortcode-builder.php:636 +#: includes/admin/class-mp-shortcode-builder.php:709 +#: includes/admin/class-mp-shortcode-builder.php:876 +#: includes/admin/class-mp-shortcode-builder.php:1320 +#: includes/admin/class-mp-shortcode-builder.php:1423 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:525 +#: includes/admin/widgets/ms-global-categories.php:75 +#: includes/admin/widgets/ms-global-product-list.php:124 +#: includes/admin/widgets/product-list.php:220 +msgid "Descending" +msgstr "Synkende" + +#: includes/admin/class-mp-shortcode-builder.php:637 +#: includes/admin/class-mp-shortcode-builder.php:695 +#: includes/admin/class-mp-shortcode-builder.php:862 +#: includes/admin/class-mp-shortcode-builder.php:1306 +#: includes/admin/class-mp-shortcode-builder.php:1424 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:518 +#: includes/admin/widgets/ms-global-product-list.php:121 +#: includes/admin/widgets/product-list.php:218 +msgid "Random" +msgstr "Tilfeldig" + +#: includes/admin/class-mp-shortcode-builder.php:694 +#: includes/admin/class-mp-shortcode-builder.php:861 +#: includes/admin/class-mp-shortcode-builder.php:1305 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:517 +#: includes/admin/widgets/ms-global-product-list.php:119 +#: includes/admin/widgets/product-list.php:216 +msgid "Product Price" +msgstr "Varepris" + +#: includes/admin/class-mp-shortcode-builder.php:693 +#: includes/admin/class-mp-shortcode-builder.php:860 +#: includes/admin/class-mp-shortcode-builder.php:1304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:516 +#: includes/admin/widgets/ms-global-product-list.php:117 +#: includes/admin/widgets/product-list.php:215 +msgid "Number of Sales" +msgstr "Antall solgt" + +#: includes/admin/class-mp-shortcode-builder.php:692 +#: includes/admin/class-mp-shortcode-builder.php:859 +#: includes/admin/class-mp-shortcode-builder.php:1303 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:515 +#: includes/admin/widgets/product-list.php:214 +msgid "Product Author" +msgstr "Varens publiserer" + +#: includes/admin/class-mp-shortcode-builder.php:691 +#: includes/admin/class-mp-shortcode-builder.php:858 +#: includes/admin/class-mp-shortcode-builder.php:1302 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:514 +#: includes/admin/widgets/product-list.php:213 +msgid "Product ID" +msgstr "Varenummer (SKU)" + +#: includes/admin/class-mp-shortcode-builder.php:690 +#: includes/admin/class-mp-shortcode-builder.php:857 +#: includes/admin/class-mp-shortcode-builder.php:1301 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:513 +#: includes/admin/widgets/ms-global-product-list.php:113 +#: includes/admin/widgets/product-list.php:212 +msgid "Publish Date" +msgstr "Publiseringsdato" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:430 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:726 +msgid "Width" +msgstr "Bredde" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:439 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:735 +msgid "Height" +msgstr "Høyde" + +#: includes/admin/class-mp-product-attributes-admin.php:88 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:402 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:698 +msgid "Custom" +msgstr "Tilpasset" + +#: includes/common/class-mp-product.php:179 +#: includes/common/class-mp-product.php:992 +#: includes/common/class-mp-product.php:1000 +#: includes/multisite/template-functions.php:579 +msgid "Buy Now" +msgstr "Kjøp nå" + +#: includes/common/class-mp-product.php:175 +#: includes/common/class-mp-product.php:990 +#: includes/common/class-mp-product.php:998 +msgid "Add To Cart" +msgstr "Legg i handlekurv" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:807 +msgid "Store Style" +msgstr "Butikkens stil" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1021 +msgid "Edit Coupon" +msgstr "Rediger kupong" + +#: includes/addons/mp-coupons/class-mp-coupon.php:580 +#: includes/admin/class-mp-ajax.php:238 +#: includes/admin/class-mp-products-admin.php:1532 +msgid "Unlimited" +msgstr "Ubegrenset" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1198 +msgid "Remaining Uses" +msgstr "Gjennstående bruk" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1197 +msgid "Used" +msgstr "Brukt" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:752 +#: includes/admin/class-mp-products-admin.php:2343 +msgid "Start Date" +msgstr "Startdato" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:598 +msgid "Coupon Code" +msgstr "Kupongkode" + +#: includes/admin/class-mp-orders-admin.php:444 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:284 +msgid "Save Changes" +msgstr "Lagre endringer" + +#: includes/admin/class-mp-pages-admin.php:57 +#: includes/admin/class-mp-shortcode-builder.php:716 +#: includes/admin/class-mp-shortcode-builder.php:727 +#: includes/admin/class-mp-shortcode-builder.php:883 +#: includes/admin/class-mp-shortcode-builder.php:894 +#: includes/admin/class-mp-shortcode-builder.php:946 +#: includes/admin/class-mp-shortcode-builder.php:956 +#: includes/admin/class-mp-shortcode-builder.php:1006 +#: includes/admin/class-mp-shortcode-builder.php:1327 +#: includes/admin/class-mp-shortcode-builder.php:1338 +#: includes/admin/store-settings/class-mp-store-settings-general.php:357 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:270 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:108 +#: includes/admin/widgets/ms-global-product-list.php:172 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:94 +msgid "None" +msgstr "Ingen" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:352 +msgid "Google Analytics Ecommerce Tracking" +msgstr "Google Analytics e-handelsporing" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:310 +msgid "This option turns MarketPress into more of a product listing plugin, disabling shopping carts, checkout, and order management. This is useful if you simply want to list items you can buy in a store somewhere else, optionally linking the \"Buy Now\" buttons to an external site. Some examples are a car dealership, or linking to songs/albums in itunes, or linking to products on another site with your own affiliate links." +msgstr "Dette valget gjør MarketPress til en produktkatalog, uten handlemulighet og ordrebehandling. Dette er nyttig dersom du kun ønsker å vise varer som kan handles et annet sted, f.eks ved å linke \"Kjøp nå\" knappent til en ekstern nettside. Et eksempel kan være en bilbutikk, eller linke til en sang eller album i iTunes, eller linke til produkter på et annet nettsted med din annonsørkode." + +#: includes/admin/store-settings/class-mp-store-settings-general.php:304 +msgid "Whether or not customers must be registered and logged in to checkout. (Not recommended: Enabling this can lower conversions)" +msgstr "Velg om kunder må være registrert og innlogget for å gå til kassen. (Ikke anbefalt: Aktivere dette kan senke konverteringen)" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:258 +msgid "How many times may a customer download a file they have purchased? (It's best to set this higher than one in case they have any problems downloading)" +msgstr "Hvor mange ganger skal en kunde kunne laste ned en fil de har kjøpt? (Det anbefales å sette dette høyere enn en, i tilfellet det skulle oppstå problemer med nedlastingen)" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:257 +msgid "Maximum Downloads" +msgstr "Maksimalt tillatte nedlastinger" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:298 +msgid "This will set the product to draft if inventory of all variations is gone." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:288 +msgid "At what low stock count do you want to be warned for products you have enabled inventory tracking for?" +msgstr "På hvilket minimum lagernivå ønsker du å bli varslet på varer du har aktivert lagerhold på?" + +#: includes/admin/class-mp-dashboard-widgets.php:208 +#: includes/admin/store-settings/class-mp-store-settings-general.php:287 +msgid "Inventory Warning Threshold" +msgstr "Varslingsnivå varebeholdning" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:282 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:542 +msgid "Miscellaneous Settings" +msgstr "Forskjellig oppsett" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:429 +#: includes/multisite/class-mp-admin-multisite.php:247 +msgid "Show Decimal in Prices" +msgstr "Vis desimaler i priser" + +#: includes/admin/class-mp-setup-wizard.php:451 +#: includes/admin/store-settings/class-mp-store-settings-general.php:403 +#: includes/multisite/class-mp-admin-multisite.php:221 +msgid "Currency Symbol Position" +msgstr "Plassering av valutasymbol" + +#: includes/admin/class-mp-setup-wizard.php:444 +#: includes/admin/store-settings/class-mp-store-settings-general.php:396 +msgid "Store Currency" +msgstr "Butikkens valuta" + +#: includes/admin/class-mp-setup-wizard.php:429 +#: includes/admin/store-settings/class-mp-store-settings-general.php:381 +msgid "Currency Settings" +msgstr "Valutaoppsett" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:516 +msgid "Please see your local tax laws. Note if this is enabled and a downloadable only cart, rates will be the default for your base location." +msgstr "Vennligst sjekk dine lokale mva-regler. Merk at hvis dette er aktivert og du kun har nedlastbare varer, vil standard satser for ditt land bli brukt." + +#: includes/admin/class-mp-setup-wizard.php:529 +msgid "Apply Tax to Downloadable Products?" +msgstr "Legge mva på nedlastbare produkter?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:498 +msgid "Enabling this option allows you to enter and show all prices inclusive of tax, while still listing the tax total as a line item in shopping carts. Please see your local tax laws." +msgstr "Ved å aktivere dette valget kan du angi og vise alle priser inklusiv mva, men fortsatt vise mva totaler som egen linje i handlevognen. Vennligst sjekk dine lokale mva-regler." + +#: includes/admin/class-mp-setup-wizard.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:497 +msgid "Enter Prices Inclusive of Tax?" +msgstr "Angi priser inklusive mva?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:492 +msgid "Please see your local tax laws. Most areas charge tax on shipping fees." +msgstr "Vennligst sjekk dine lokale mva-regler. De fleste steder skal det belastes mva på leveringskostnader." + +#: includes/admin/class-mp-setup-wizard.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:491 +msgid "Apply Tax To Shipping Fees?" +msgstr "Mva på leveringskostnader?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:674 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:565 +#: includes/common/payment-gateways/authorizenet-aim.php:291 +#: includes/common/payment-gateways/authorizenet-aim.php:326 +#: includes/common/payment-gateways/payfast.php:347 +msgid "No" +msgstr "Nei" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:675 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:759 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:512 +#: includes/admin/class-mp-setup-wizard.php:518 +#: includes/admin/class-mp-setup-wizard.php:524 +#: includes/admin/class-mp-setup-wizard.php:530 +#: includes/admin/class-mp-setup-wizard.php:564 +#: includes/admin/store-settings/class-mp-store-settings-general.php:232 +#: includes/admin/store-settings/class-mp-store-settings-general.php:299 +#: includes/admin/store-settings/class-mp-store-settings-general.php:305 +#: includes/admin/store-settings/class-mp-store-settings-general.php:311 +#: includes/admin/store-settings/class-mp-store-settings-general.php:317 +#: includes/admin/store-settings/class-mp-store-settings-general.php:328 +#: includes/admin/store-settings/class-mp-store-settings-general.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:341 +#: includes/admin/store-settings/class-mp-store-settings-general.php:348 +#: includes/admin/store-settings/class-mp-store-settings-general.php:367 +#: includes/admin/store-settings/class-mp-store-settings-general.php:493 +#: includes/admin/store-settings/class-mp-store-settings-general.php:499 +#: includes/admin/store-settings/class-mp-store-settings-general.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:556 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:375 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:381 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:387 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:474 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:493 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:532 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:574 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:606 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:664 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:670 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:677 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:683 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:689 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:763 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:774 +#: includes/common/payment-gateways/_bitpay.php:250 +#: includes/common/payment-gateways/_bitpay.php:257 +#: includes/common/payment-gateways/_bitpay.php:264 +#: includes/common/payment-gateways/authorizenet-aim.php:290 +#: includes/common/payment-gateways/authorizenet-aim.php:325 +#: includes/common/payment-gateways/free_orders.php:160 +#: includes/common/payment-gateways/payfast.php:346 +#: includes/common/payment-gateways/paymill.php:162 +#: includes/common/payment-gateways/paypal-payflow.php:441 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-checkbox.php:22 +msgid "Yes" +msgstr "Ja" + +#: includes/admin/class-mp-setup-wizard.php:492 +#: includes/admin/store-settings/class-mp-store-settings-general.php:472 +msgid "%s Tax Rate" +msgstr "%s mva-sats" + +#: includes/admin/class-mp-setup-wizard.php:467 +#: includes/admin/store-settings/class-mp-store-settings-general.php:449 +msgid "Tax Settings" +msgstr "Mva oppsett" + +#: includes/admin/class-mp-setup-wizard.php:370 +#: includes/admin/store-settings/class-mp-store-settings-general.php:624 +msgid "Base Zip/Postal Code" +msgstr "Postnummer" + +#: includes/admin/class-mp-setup-wizard.php:354 +#: includes/admin/store-settings/class-mp-store-settings-general.php:608 +msgid "Base State/Province/Region" +msgstr "Fylke/Provins/Region" + +#: includes/admin/class-mp-setup-wizard.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:589 +msgid "Base Country" +msgstr "Hovedlokasjon (land)" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:582 +msgid "Location Settings" +msgstr "Lokale oppsett" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:195 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:800 +#: includes/multisite/class-mp-admin-multisite.php:172 +msgid "General Settings" +msgstr "Generelt oppsett" + +#: includes/admin/class-mp-products-admin.php:1945 +#: includes/admin/class-mp-products-admin.php:2185 +#: includes/admin/class-mp-store-settings-admin.php:111 +#: includes/admin/class-mp-store-settings-admin.php:266 +msgid "General" +msgstr "Generelt" + +#: includes/admin/class-mp-store-settings-admin.php:242 +msgid "Importers" +msgstr "Importer" + +#: includes/admin/class-mp-store-settings-admin.php:115 +#: includes/admin/class-mp-store-settings-admin.php:234 +msgid "Payments" +msgstr "Betaling" + +#: includes/admin/class-mp-dashboard-widgets.php:313 +#: includes/admin/class-mp-store-settings-admin.php:112 +#: includes/admin/class-mp-store-settings-admin.php:222 +msgid "Presentation" +msgstr "Presentasjon" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:916 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1015 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1018 +#: includes/admin/class-mp-dashboard-widgets.php:305 marketpress.php:702 +msgid "Coupons" +msgstr "Kuponger" + +#: includes/admin/class-mp-admin.php:251 +msgid "Download »" +msgstr "Last ned »" + +#: includes/admin/class-mp-admin.php:245 +#: includes/admin/class-mp-exporter-orders.php:170 +msgid "All Statuses" +msgstr "Alle statuser" + +#: includes/admin/class-mp-admin.php:209 +#: includes/admin/class-mp-exporter-orders.php:150 +#: includes/admin/class-mp-exporter-orders.php:178 +msgid "Export Orders" +msgstr "Eksporter ordrer" + +#: includes/admin/class-mp-admin.php:228 +msgid "Show all dates" +msgstr "Vis alle datoer" + +#: includes/admin/class-mp-orders-admin.php:947 +msgid "Change Status" +msgstr "Endre status" + +#: includes/admin/class-mp-orders-admin.php:287 +msgid "Order Notes" +msgstr "Ordrenotat" + +#: includes/admin/class-mp-orders-admin.php:478 +msgid "Other" +msgstr "Annet" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:205 +msgid "Subtotal" +msgstr "Total" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:84 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:87 +#: includes/admin/class-mp-products-admin.php:1737 +#: includes/common/class-mp-cart.php:1409 +#: includes/common/class-mp-product.php:559 +msgid "Quantity" +msgstr "Antall" + +#: includes/common/helpers.php:93 +msgid "Item" +msgstr "Vare" + +#: includes/common/class-mp-order.php:1050 +msgid "Current Status" +msgstr "Nåværende status" + +#: includes/admin/class-mp-orders-admin.php:297 +msgid "Order Actions" +msgstr "Ordrehendelser" + +#: includes/common/class-mp-product.php:1084 +msgid "More Info »" +msgstr "Mer informasjon »" + +#: includes/common/class-mp-product.php:2313 +msgid "Low Product Inventory Notification" +msgstr "Varsel om lavt lagernivå" + +#: includes/common/class-mp-order.php:338 includes/common/data.php:154 +msgid "New Order Notification: ORDERID" +msgstr "Ny ordrebekreftelse: ORDERID" + +#: includes/common/helpers.php:259 +msgid "Your payment for this order is complete." +msgstr "Din betaling er fullført." + +#: includes/common/helpers.php:261 +msgid "Your payment for this order is not yet complete. Here is the latest status:" +msgstr "Din betaling for denne bestillingen er ikke fullført. Her er siste status:" + +#: includes/common/helpers.php:256 +msgid "Payment Total:" +msgstr "Totalt til betaling:" + +#: includes/common/helpers.php:253 +msgid "Transaction ID:" +msgstr "Transaksjonsnummer:" + +#: includes/common/helpers.php:249 +msgid "Payment Type:" +msgstr "Betalingstype:" + +#: includes/common/helpers.php:246 +msgid "Payment Method:" +msgstr "Betalingsmåte:" + +#: includes/common/helpers.php:242 +msgid "Order Notes:" +msgstr "Ordrenotat:" + +#: includes/common/helpers.php:237 +msgid "Special Instructions:" +msgstr "Spesielle instruksjoner:" + +#: includes/common/helpers.php:232 +msgid "Tracking Number:" +msgstr "Sporingsnummer:" + +#: includes/common/helpers.php:223 includes/common/helpers.php:226 +#: includes/common/helpers.php:228 +#: includes/common/shipping-modules/class-mp-shipping-api.php:406 +#: includes/common/shipping-modules/class-mp-shipping-api.php:428 +msgid "Shipping Method:" +msgstr "Leveringsmåte:" + +#: includes/common/helpers.php:168 +msgid "No shipping required for this order." +msgstr "Levering er ikke nødvendig for denne ordren." + +#: includes/common/helpers.php:155 +msgid "Order Total:" +msgstr "Ordretotal:" + +#: includes/common/class-mp-order.php:1025 +msgid "Taxes:" +msgstr "Beregnet mva :" + +#: includes/common/class-mp-order.php:1032 includes/common/helpers.php:144 +msgid "Shipping:" +msgstr "Levering:" + +#: includes/public/class-mp-checkout.php:367 +msgid "Street address, P.O. box, company name, c/o" +msgstr "Gateadresse, postboks, firmanavn, c/o" + +#: includes/admin/class-mp-orders-admin.php:314 +msgid "Shipping Info" +msgstr "Leveringsadresse" + +#: includes/public/class-mp-public.php:740 +msgid "Whoops, there was a problem loading up this file for your download. Please contact us for help." +msgstr "Opps, det oppstod et problem ved opplasting av denne filen. Vennligst kontakt oss for hjelp." + +#: includes/public/class-mp-public.php:683 +msgid "Sorry, our records show you've downloaded this file %d out of %d times allowed. Please contact us if you still need help." +msgstr "Beklager, våre kartoteker viser at du har lastet ned denne filen %d av %d tillatte ganger. Vennligst kontakt oss dersom du fortsatt trenger hjelp." + +#: includes/public/class-mp-public.php:634 +msgid "Sorry, your order has been marked as unpaid." +msgstr "Beklager, din bestilling er merket som ubetalt." + +#: includes/public/class-mp-public.php:629 +msgid "Sorry, the link is invalid for this download." +msgstr "Beklager, nedlastingslinken er ikke gyldig." + +#: includes/admin/class-mp-exporter-orders.php:15 +#: includes/admin/class-mp-products-admin.php:1172 +msgid "Cheatin’ uh?" +msgstr "Jukser litt’ uh?" + +#: includes/public/class-mp-public.php:407 +#: includes/public/class-mp-short-codes.php:128 +msgid "Please enter a valid email address." +msgstr "" + +#: includes/admin/class-mp-ajax.php:191 +#: includes/admin/class-mp-products-admin.php:1821 +#: includes/admin/class-mp-products-admin.php:2010 +#: includes/admin/class-mp-products-admin.php:2267 +msgid "File URL" +msgstr "Filadresse (URL)" + +#: includes/admin/class-mp-products-admin.php:1842 +msgid "External Link" +msgstr "Ekstern kobling" + +#: includes/admin/class-mp-products-admin.php:2177 +msgid "Add Variation" +msgstr "Ny variant" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:126 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:289 +msgid "Inventory" +msgstr "Lagerstatus" + +#: includes/admin/class-mp-products-admin.php:438 +#: includes/admin/class-mp-products-admin.php:578 +#: includes/admin/class-mp-products-admin.php:1552 +#: includes/admin/class-mp-products-admin.php:2053 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:134 +msgid "Sale Price" +msgstr "Tilbudspris" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "Variation Name" +msgstr "Variasjonsnavn" + +#: includes/admin/class-mp-products-admin.php:1931 +msgid "Product Details" +msgstr "Varedetaljer" + +#: includes/admin/class-mp-product-attributes-list-table.php:33 +msgid "Delete" +msgstr "Slett" + +#: includes/admin/class-mp-orders-admin.php:1057 +msgid "Trashed" +msgstr "Kastet" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:231 +#: includes/admin/class-mp-orders-admin.php:1015 +#: includes/common/class-mp-order.php:1052 includes/common/helpers.php:97 +msgid "Total" +msgstr "Total" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1196 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:210 +#: includes/admin/class-mp-orders-admin.php:1014 +msgid "Discount" +msgstr "Rabatt" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:221 +#: includes/admin/class-mp-orders-admin.php:1013 +#: includes/common/payment-gateways/_ideal.php:148 +#: includes/common/payment-gateways/_payway.php:134 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:108 +msgid "Tax" +msgstr "Mva" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:216 +#: includes/admin/class-mp-orders-admin.php:1012 +#: includes/admin/class-mp-products-admin.php:1958 +#: includes/admin/class-mp-products-admin.php:2198 +#: includes/admin/class-mp-store-settings-admin.php:114 +#: includes/admin/class-mp-store-settings-admin.php:230 +#: includes/common/class-mp-cart.php:717 includes/common/helpers.php:168 +#: includes/common/payment-gateways/_ideal.php:137 +#: includes/common/payment-gateways/_payway.php:116 +#: includes/public/class-mp-checkout.php:1304 +msgid "Shipping" +msgstr "Levering" + +#: includes/admin/class-mp-orders-admin.php:1011 +msgid "Items" +msgstr "Varer" + +#: includes/admin/class-mp-orders-admin.php:1010 +msgid "From" +msgstr "Fra" + +#: includes/admin/class-mp-exporter-orders.php:154 +#: includes/admin/class-mp-orders-admin.php:1009 +#: includes/common/class-mp-gdpr.php:370 +msgid "Order Date" +msgstr "Ordredato" + +#: includes/admin/class-mp-orders-admin.php:1008 +#: includes/common/class-mp-gdpr.php:366 +#: includes/common/template-functions.php:2134 +msgid "Order ID" +msgstr "Ordrenummer" + +#: includes/addons/class-mp-addons-list-table.php:22 +#: includes/admin/class-mp-orders-admin.php:1007 +msgid "Status" +msgstr "Status" + +#: includes/admin/class-mp-orders-admin.php:1155 +msgid "N/A" +msgstr "Ikke tilgjengelig" + +#: includes/admin/class-mp-dashboard-widgets.php:243 +#: includes/admin/class-mp-products-admin.php:464 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:142 +msgid "Sales" +msgstr "Salg" + +#: includes/admin/class-mp-products-admin.php:463 +msgid "Stock" +msgstr "Lager" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:85 +#: includes/admin/class-mp-ajax.php:176 includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:434 +#: includes/admin/class-mp-products-admin.php:462 +#: includes/admin/class-mp-products-admin.php:576 +#: includes/admin/class-mp-products-admin.php:1519 +#: includes/admin/class-mp-products-admin.php:1569 +#: includes/admin/class-mp-products-admin.php:1950 +#: includes/admin/class-mp-products-admin.php:2059 +#: includes/admin/class-mp-products-admin.php:2190 +#: includes/admin/class-mp-products-admin.php:2330 +#: includes/common/class-mp-cart.php:1415 includes/common/helpers.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:130 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:276 +msgid "Price" +msgstr "Pris" + +#: includes/admin/class-mp-ajax.php:173 +#: includes/admin/class-mp-products-admin.php:461 +#: includes/admin/class-mp-products-admin.php:1972 +#: includes/admin/class-mp-products-admin.php:2224 +msgid "SKU" +msgstr "VareID" + +#: includes/admin/class-mp-products-admin.php:459 +#: includes/admin/class-mp-products-admin.php:1793 +#: includes/admin/class-mp-products-admin.php:1805 +#: includes/admin/class-mp-products-admin.php:2163 +msgid "Variations" +msgstr "Varianter" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:83 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:86 +#: includes/admin/class-mp-dashboard-widgets.php:134 +#: includes/admin/class-mp-products-admin.php:458 +#: includes/admin/class-mp-products-admin.php:837 +#: includes/admin/class-mp-shortcode-builder.php:689 +#: includes/admin/class-mp-shortcode-builder.php:856 +#: includes/admin/class-mp-shortcode-builder.php:1300 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:512 +#: includes/admin/widgets/ms-global-product-list.php:115 +#: includes/admin/widgets/product-list.php:211 +msgid "Product Name" +msgstr "Varenavn" + +#: includes/common/template-functions.php:2575 +msgid "Categorized in " +msgstr "I varegruppe " + +#: includes/admin/class-mp-orders-admin.php:305 +#: includes/common/payment-gateways/free_orders.php:176 +msgid "Payment Information" +msgstr "Betalingsinformasjon" + +#: includes/admin/class-mp-exporter-orders.php:167 +#: includes/admin/class-mp-orders-admin.php:432 +#: includes/admin/class-mp-pages-admin.php:62 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:227 +#: includes/common/class-mp-gdpr.php:374 +#: includes/common/template-functions.php:175 +#: includes/common/template-functions.php:926 +msgid "Order Status" +msgstr "Ordrestatus" + +#. translators: %s: orders closed +#: marketpress.php:327 +msgid "Closed (%s)" +msgid_plural "Closed (%s)" +msgstr[0] "Lukket (%s)" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:249 +#: includes/admin/class-mp-orders-admin.php:375 +#: includes/admin/class-mp-orders-admin.php:951 +#: includes/admin/class-mp-orders-admin.php:1053 +#: includes/admin/class-mp-orders-admin.php:1065 +#: includes/common/class-mp-gdpr.php:330 +#: includes/common/class-mp-order.php:1019 marketpress.php:325 +msgid "Closed" +msgstr "Lukket" + +#. translators: %s: shipped orders +#: marketpress.php:320 +msgid "Shipped (%s)" +msgid_plural "Shipped (%s)" +msgstr[0] "Sendt (%s)" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:248 +#: includes/admin/class-mp-orders-admin.php:376 +#: includes/admin/class-mp-orders-admin.php:950 +#: includes/admin/class-mp-orders-admin.php:1049 +#: includes/admin/class-mp-orders-admin.php:1064 +#: includes/common/class-mp-gdpr.php:329 +#: includes/common/class-mp-order.php:1002 marketpress.php:318 +msgid "Shipped" +msgstr "Sendt" + +#. translators: %s: paid orders +#: marketpress.php:313 +msgid "Paid (%s)" +msgid_plural "Paid (%s)" +msgstr[0] "Betalt (%s)" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:247 +#: includes/admin/class-mp-orders-admin.php:377 +#: includes/admin/class-mp-orders-admin.php:949 +#: includes/admin/class-mp-orders-admin.php:1045 +#: includes/admin/class-mp-orders-admin.php:1063 +#: includes/common/class-mp-gdpr.php:328 +#: includes/common/payment-gateways/2checkout.php:294 +#: includes/common/payment-gateways/_cubepoints.php:130 +#: includes/common/payment-gateways/authorizenet-aim.php:193 +#: includes/common/payment-gateways/free_orders.php:91 +#: includes/common/payment-gateways/mijireh.php:248 +#: includes/common/payment-gateways/paymill.php:273 +#: includes/common/payment-gateways/paypal-express.php:933 +#: includes/common/payment-gateways/paypal-express.php:967 +#: includes/common/payment-gateways/pin.php:258 +#: includes/common/payment-gateways/simplify.php:181 +#: includes/common/payment-gateways/stripe.php:368 +#: includes/common/payment-gateways/wepay.php:269 marketpress.php:311 +msgid "Paid" +msgstr "Betalt" + +#. translators: %s: orders received +#: marketpress.php:306 +msgid "Received (%s)" +msgid_plural "Received (%s)" +msgstr[0] "Mottatt (%s)" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:246 +#: includes/admin/class-mp-orders-admin.php:378 +#: includes/admin/class-mp-orders-admin.php:1041 +#: includes/admin/class-mp-orders-admin.php:1062 +#: includes/common/class-mp-gdpr.php:327 includes/common/class-mp-order.php:995 +#: includes/common/payment-gateways/payfast.php:244 marketpress.php:304 +msgid "Received" +msgstr "Mottatt" + +#: marketpress.php:268 +msgid "Search Orders" +msgstr "Søk bestillinger" + +#: marketpress.php:267 +msgid "View Order" +msgstr "Vis bestilling" + +#: marketpress.php:262 +msgid "Order" +msgstr "Bestill" + +#: includes/admin/class-mp-dashboard-widgets.php:301 +#: includes/admin/class-mp-orders-admin.php:989 marketpress.php:261 +msgid "Orders" +msgstr "Ordrer" + +#: marketpress.php:228 +msgid "No Products found in Trash" +msgstr "Ingen varer funnet i søppelkurven" + +#: marketpress.php:227 +msgid "No Products Found" +msgstr "Ingen varer funnet" + +#: marketpress.php:226 +msgid "Search Products" +msgstr "Søk varer" + +#: marketpress.php:225 marketpress.php:229 +msgid "View Product" +msgstr "Vis vare" + +#: marketpress.php:224 +msgid "New Product" +msgstr "Ny vare" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1022 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:258 +#: marketpress.php:223 +msgid "Edit" +msgstr "Rediger" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1019 +msgid "Create New" +msgstr "Opprett ny" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:687 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:698 +#: marketpress.php:217 +msgid "Product" +msgstr "Produkt" + +#: includes/admin/class-mp-dashboard-widgets.php:307 +#: includes/common/template-functions.php:173 +#: includes/common/template-functions.php:179 +#: includes/common/template-functions.php:902 +#: includes/multisite/template-functions.php:82 marketpress.php:216 +#: marketpress.php:219 +msgid "Products" +msgstr "Varer" + +#: includes/admin/class-mp-store-settings-admin.php:118 +#: includes/admin/widgets/product-tag-cloud.php:46 +#: includes/multisite/class-mp-admin-multisite.php:548 +msgid "Product Tags" +msgstr "Etiketter" + +#: includes/common/template-functions.php:2906 +#: includes/multisite/template-functions.php:449 +msgid "Product Category" +msgstr "Produktkategori" + +#: includes/admin/class-mp-store-settings-admin.php:117 +#: includes/admin/widgets/categories.php:8 +#: includes/admin/widgets/categories.php:18 +#: includes/multisite/class-mp-admin-multisite.php:539 +msgid "Product Categories" +msgstr "Varekategorier" + +#: includes/common/payment-gateways/stripe.php:332 +#: includes/common/template-functions.php:872 marketpress.php:218 +msgid "Store" +msgstr "Butikk" + +#: includes/admin/class-mp-pages-admin.php:60 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:209 +#: includes/admin/widgets/cart.php:8 includes/admin/widgets/cart.php:56 +#: includes/common/template-functions.php:174 +#: includes/common/template-functions.php:811 +msgid "Shopping Cart" +msgstr "Handlekurv" + +#: includes/admin/class-mp-store-settings-admin.php:110 +#: includes/admin/class-mp-store-settings-admin.php:218 +msgid "Store Settings" +msgstr "Butikkoppsett" + +#: includes/addons/class-mp-addons-list-table.php:128 marketpress.php:607 +msgid "Settings" +msgstr "Oppsett" + +#: includes/common/data.php:178 includes/common/data.php:190 +msgid "Your Order Has Been Shipped! (ORDERID)" +msgstr "Din ordre har blitt sendt! (ORDERID)" + +#: includes/common/data.php:159 includes/common/data.php:166 +#: includes/common/data.php:172 +msgid "Your Order Confirmation (ORDERID)" +msgstr "Din ordrebekreftelse (ORDERID)" + +#: includes/common/data.php:148 +msgid "

    Thank you for your order! We appreciate your business, and please come back often to check out our new products.

    " +msgstr "

    Takk for din bestilling! Vi setter pris på at du handler hos oss, og ønsker deg velkommen tilbake for å se våre nye produkter.

    " + +#: includes/common/data.php:147 +msgid "

    You are almost done! Please do a final review of your order to make sure everything is correct then click the \"Confirm Payment\" button.

    " +msgstr "

    Du er nesten ferdig! Vennligst ta en siste gjennomgang av din ordre for å forsikre deg om at alt er riktig, før du klikker \"Bekreft betaling\" knappen.

    " + +#: includes/common/data.php:145 +msgid "

    Please enter your shipping information in the form below to proceed with your order.

    " +msgstr "

    Vennligst angi din adresseinformasjon (leveringsadresse).

    " + +#: includes/common/data.php:143 +msgid "

    If you have any questions about your order please do not hesitate to contact us.

    " +msgstr "

    Dersom du har spørsmål rundt din ordre må du ikke nøle på å ta kontakt med oss.

    " + +#: includes/common/data.php:106 +msgid "tag" +msgstr "etikett" + +#: includes/common/data.php:105 +msgid "category" +msgstr "varegruppe" + +#: includes/common/data.php:104 +msgid "order-status" +msgstr "ordrestatus" + +#: includes/common/data.php:103 +msgid "shopping-cart" +msgstr "handlekurv" + +#: includes/common/data.php:102 +msgid "products" +msgstr "varer" + +#. Translators: change default slugs here +#: includes/common/data.php:101 +msgid "store" +msgstr "butikk" \ No newline at end of file diff --git a/languages/mp-nl.mo b/languages/mp-nl.mo new file mode 100644 index 0000000000000000000000000000000000000000..59ded272ae16f41ed110449fe11130f2668dbe11 GIT binary patch literal 144472 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 literal 0 HcmV?d00001 diff --git a/languages/mp-nl.po b/languages/mp-nl.po new file mode 100644 index 00000000..80ad20a9 --- /dev/null +++ b/languages/mp-nl.po @@ -0,0 +1,9107 @@ +# Translation of MarketPress in Dutch +# This file is distributed under the same license as the MarketPress package. +msgid "" +msgstr "" +"PO-Revision-Date: 2019-03-08 12:19:26+0000\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-Generator: GlotPress/2.3.1\n" +"Language: nl\n" +"Project-Id-Version: MarketPress\n" + +#: includes/public/class-mp-checkout.php:1285 +msgid "By clicking this checkbox you allow the website to process your personal data." +msgstr "" + +#: includes/common/class-mp-gdpr.php:382 +msgid "Order Info" +msgstr "" + +#: includes/common/class-mp-gdpr.php:268 +msgid "Shipping Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:267 +msgid "Shipping Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:266 +msgid "Shipping ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:265 +msgid "Shipping State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:264 +msgid "Shipping City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:263 +msgid "Shipping Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:262 +msgid "Shipping Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:261 +msgid "Shipping Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:260 +msgid "Shipping Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:259 +msgid "Shipping Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:258 +msgid "Shipping First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:254 +msgid "Billing Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:253 +msgid "Billing Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:252 +msgid "Billing ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:251 +msgid "Billing State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:250 +msgid "Billing City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:249 +msgid "Billing Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:248 +msgid "Billing Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:247 +msgid "Billing Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:246 +msgid "Billing Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:245 +msgid "Billing Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:244 +msgid "Billing First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:151 +msgid "Orders Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:139 +msgid "Customer Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:100 includes/common/class-mp-gdpr.php:116 +msgid "MarketPress User Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:81 +msgid "" +"In addition to standard WordPress session cookies, this site might be setting an\n" +"\t\t additional cookie to remember your cart settings. This cookie will last for one year." +msgstr "" + +#: includes/common/class-mp-gdpr.php:80 +msgid "Cookies" +msgstr "" + +#: includes/common/class-mp-gdpr.php:77 +msgid "" +"The following information will be collected in order to process orders: your name,\n" +"\t\t username, email address, avatar and profile URLs, address and phone number. This data can be\n" +"\t\t exported and removed." +msgstr "" + +#: includes/common/class-mp-gdpr.php:76 +msgid "Additional data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:71 +msgid "" +"This site might be using third party services and tools to process payments or/and\n" +"\t\t process shipping data when creating orders on the MarketPress store. These services include payment\n" +"\t\t gateways: 2Checkout, Authorize.net AIM, eWay shared payments, eWay Rapid 3.1 Payments, Mijireh,\n" +"\t\t Mollie, Paymill, PayPal, PIN, Simplify Commerce by MasterCard, Stripe and WePay; shipping gateways:\n" +"\t\t Fedex, UPS, USPS." +msgstr "" + +#: includes/common/class-mp-gdpr.php:70 +msgid "Third parties" +msgstr "" + +#: includes/admin/class-mp-admin.php:403 +msgid "Start creating store pages and products for your online shop here." +msgstr "" + +#: includes/admin/class-mp-admin.php:402 +msgid "Create Online Shop" +msgstr "" + +#: includes/admin/class-mp-admin.php:394 +msgid "Run Setup Wizard" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:234 +msgid "If having problems during invoice generation, add define( 'DOMPDF_ENABLE_HTML5PARSER', true ); to the wp-config.php file." +msgstr "" + +#: includes/public/class-mp-checkout.php:723 +msgid "Invalid Email" +msgstr "Ongeldig e-mailadres" + +#: includes/public/class-mp-checkout.php:721 +#: includes/public/class-mp-checkout.php:729 +msgid "This field is required" +msgstr "Dit veld is verplicht" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:804 +msgid "This option changes the built-in css styles for store pages. For a custom css style, save your css file with the /* MarketPress Style: Your CSS Theme Name Here */ header line in the \"%s\" folder and it will appear in this list so you may select it. You should select \"None\" if you don't wish to use custom CSS styles or if you are using default theme templates or custom theme templates and css to make your own completely unique store design. For more information on custom theme templates click here »." +msgstr "Deze optie veranderd de ingebouwde CSS stijlen voor winkelpagina's. Voor een aangepaste CSS stijl, sla je CSS bestand op met de /* MarketPress Stijl: Jou CSS Thema Naam Hier */ header lijn in de \"%s\" map en het zal verschijnen in deze lijst zodat je het kan selecteren. Je moet \"None\" selecteren als je geen aangepaste CSS stijlen wilt gebruiken of als je de standaard thema sjabloon of je aangepaste thema sjabloon en CSS gebruikt voor je compleet eigen winkel uiterlijk. Voor meer informatie over aangepaste thema sjablonen klik hier »." + +#: includes/public/class-mp-public.php:421 +#: includes/public/class-mp-short-codes.php:142 +msgid "Please enter a value greater than or equal to {0}." +msgstr "Voer alsjeblieft een waarde in die groter of gelijk is aan {0}." + +#: includes/public/class-mp-public.php:420 +#: includes/public/class-mp-short-codes.php:141 +msgid "Please enter a value less than or equal to {0}." +msgstr "Voer alsjeblieft een waarde in die kleiner of gelijk is aan {0}." + +#: includes/public/class-mp-public.php:419 +#: includes/public/class-mp-short-codes.php:140 +msgid "Please enter a value between {0} and {1}." +msgstr "Voer alsjeblieft een waarde in die tussen {0} en {1} is." + +#: includes/public/class-mp-public.php:418 +#: includes/public/class-mp-short-codes.php:139 +msgid "Please enter a value between {0} and {1} characters long." +msgstr "Voer alsjeblieft een waarde in die tussen {0} en {1} karakters is." + +#: includes/public/class-mp-public.php:417 +#: includes/public/class-mp-short-codes.php:138 +msgid "Please enter at least {0} characters." +msgstr "Voer alsjeblieft minimaal {0} karakters in." + +#: includes/public/class-mp-public.php:416 +#: includes/public/class-mp-short-codes.php:137 +msgid "Please enter no more than {0} characters." +msgstr "Voer alsjeblieft niet meer dan {0} karakters in." + +#: includes/public/class-mp-public.php:415 +#: includes/public/class-mp-short-codes.php:136 +msgid "Please enter a value with a valid extension." +msgstr "Voer alsjeblieft een waarde in met een geldige extensie." + +#: includes/public/class-mp-public.php:414 +#: includes/public/class-mp-short-codes.php:135 +msgid "Please enter the same value again." +msgstr "Voer alsjeblieft dezelfde waarde in." + +#: includes/public/class-mp-public.php:413 +#: includes/public/class-mp-short-codes.php:134 +msgid "Please enter a valid credit card number." +msgstr "Voer alsjeblieft een geldig creditcard nummer in." + +#: includes/public/class-mp-public.php:412 +#: includes/public/class-mp-short-codes.php:133 +msgid "Please enter only digits." +msgstr "Voer alsjeblieft alleen nummers in." + +#: includes/public/class-mp-public.php:411 +#: includes/public/class-mp-short-codes.php:132 +msgid "Please enter a valid number." +msgstr "Voer alsjeblieft een geldig nummer in." + +#: includes/public/class-mp-public.php:410 +#: includes/public/class-mp-short-codes.php:131 +msgid "Please enter a valid date (ISO)." +msgstr "Voer alsjeblieft een geldige datum(ISO) in." + +#: includes/public/class-mp-public.php:409 +#: includes/public/class-mp-short-codes.php:130 +msgid "Please enter a valid date." +msgstr "Voer alsjeblieft een geldige datum in." + +#: includes/public/class-mp-public.php:408 +#: includes/public/class-mp-short-codes.php:129 +msgid "Please enter a valid URL." +msgstr "Voer alsjeblieft een geldige URL in." + +#: includes/public/class-mp-public.php:406 +#: includes/public/class-mp-short-codes.php:127 +msgid "Please fix this field." +msgstr "Herstel dit veld alsjeblieft." + +#: includes/public/class-mp-checkout.php:1287 +#: includes/public/class-mp-public.php:405 +#: includes/public/class-mp-short-codes.php:126 +msgid "This field is required." +msgstr "Dit veld is benodigd." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:810 +msgid "None - Without Special CSS-styles" +msgstr "Geen - Zonder speciale CSS-stijlen" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:809 +msgid "Default - Using Default CSS-styles" +msgstr "Standaard - Gebruikt de standaard CSS-stijlen" + +#: marketpress.php:739 +msgid "Enable multiple downloads per product" +msgstr "Zet meerdere downloads per product aan" + +#: marketpress.php:738 +msgid "Multiple Downloads" +msgstr "Meerdere downloads" + +#: includes/public/class-mp-checkout.php:715 +msgid "Invalid Zip Code" +msgstr "Onjuiste postcode" + +#: includes/common/template-functions.php:2126 +msgid "Guest Email" +msgstr "Gast e-mail" + +#: includes/common/payment-gateways/simplify.php:195 +msgid "There was a problem finalizing your purchase. Please re-enter your credit card information and try again" +msgstr "Er was een probleem opgetreden tijdens het afronden van jou bestelling. Voer alsjeblieft je creditcard gegevens opnieuw in" + +#: includes/common/class-mp-cart.php:565 includes/common/class-mp-order.php:600 +#: includes/common/helpers.php:111 +msgid "Download %1$s" +msgstr "Download %1$s" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:331 +msgid "Export products to file" +msgstr "Exporteer producten naar bestand" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:328 +msgid "The import process uses the WordPress importer plugin." +msgstr "Het importeerproces gebruikt de WordPress importeer plugin." + +#: includes/admin/store-settings/class-mp-store-settings-import.php:326 +msgid "Import / Export Products" +msgstr "Importeer / Exporteer Producten" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:325 +msgid "Export settings to file" +msgstr "Exporteer instellingen naar bestand" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:324 +msgid "Import configuration" +msgstr "Importeer configuratie" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:320 +msgid "Use the text below to export to a new installation. Or paste in the new configuration to import." +msgstr "Gebruik de tekst hieronder voor het exporteren naar een nieuwe installatie. Of plak hier de nieuwe configuratie om te importeren." + +#: includes/admin/store-settings/class-mp-store-settings-import.php:318 +msgid "Import / Export Settings" +msgstr "Importeer / Exporteer Instellingen" + +#. translators: URL to wp-admin/import.php +#: includes/admin/store-settings/class-mp-store-settings-import.php:266 +msgid "This importer is not installed. Please install importers from the main site." +msgstr "Deze importeur is niet geïnstalleerd. Installeer alsjeblieft importeurs via de hoofdsite." + +#: includes/admin/store-settings/class-mp-store-settings-import.php:261 +msgid "Install Now" +msgstr "Installeer Nu" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:260 +msgid "Install %s" +msgstr "Installeer %s" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:240 +msgid "Run Importer" +msgstr "Voer de importeur uit" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:239 +msgid "Run %s" +msgstr "Voer %s uit" + +#: includes/admin/class-mp-store-settings-admin.php:258 +msgid "Import/Export" +msgstr "Importeer / Exporteer" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1199 +msgid "Requires Login" +msgstr "Inlog gegevens vereist" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:737 +msgid "Optionally limit the user to some categories" +msgstr "Limiteer de gebruiker optioneel tot sommige categorieën" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:671 +msgid "Should this coupon only be available to logged in users?" +msgstr "Zou deze kortingsbon alleen beschikbaar moeten zijn voor ingelogde gebruikers?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:670 +msgid "Require Login" +msgstr "Inloggen vereisen" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:655 +msgid "Mimimum number of products" +msgstr "Minimaal aantal van producten" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:653 +msgid "Enter the minimum number of products in the cart that this coupon can be used." +msgstr "Voer het minimale aantal producten in waarvoor deze kortingsbon kan worden gebruikt in de winkelwagen." + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:648 +msgid "Can this coupon be limited to a number of products in the cart?" +msgstr "Kan deze kortingsbon worden gelimiteerd aan hoeveelheid producten in de winkelwagen?" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:334 +msgid "Add all values" +msgstr "Voeg alle waarden toe" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:265 +msgid "Set as default variation." +msgstr "Als standaard type instellen." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:154 +msgid "Set Default" +msgstr "Als standaard instellen" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:150 +msgid "More Info" +msgstr "Meer informatie" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:40 +msgid "MarketPress - Quick Setup" +msgstr "MarketPress - Snelle Installatie" + +#: includes/public/class-mp-checkout.php:1399 +msgid "Proceed to checkout and create an account at the end." +msgstr "Verder naar afronding en creëer een account aan het einde." + +#: includes/public/class-mp-checkout.php:1241 +#: includes/public/class-mp-checkout.php:1245 +msgid "Register account" +msgstr "Account registreren" + +#: includes/public/class-mp-checkout.php:1233 +msgid "Register as customer?" +msgstr "Registreren als klant?" + +#: includes/public/class-mp-checkout.php:765 +msgid "

    Oops!

    Looks like you haven't added anything your cart. Let's go shopping!

    " +msgstr "

    Oeps!

    Het lijkt er op dat je nog niets in je winkelwagen hebLaten we gaan winkelen!

    " + +#: includes/public/class-mp-checkout.php:763 +msgid "

    Oops!

    The cart is disabled.

    " +msgstr "

    Oeps!

    De winkelwagen is uitgeschakeld

    " + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing Information" +msgstr "Betaal informatie" + +#: includes/multisite/class-mp-admin-multisite.php:214 +msgid "Global Currency" +msgstr "Globale munteenheid" + +#: includes/multisite/class-mp-admin-multisite.php:198 +msgid "Global Store Currency" +msgstr "Algemene winkel munteenheid" + +#: includes/common/shipping-modules/mp-usps.php:507 +msgid "There are no shipping services available for this type of package in your location." +msgstr "Er zijn geen verzend mogelijkheden beschikbaar voor dit type pakket op jou locatie." + +#: includes/common/shipping-modules/mp-usps.php:168 +msgid "Using this USPS Shipping calculator requires requesting an Ecommerce API Username and Password. Get your free set of credentials here ». The password is no longer used for the API, just the username which you should enter below. The USPS test site has not yet been updated and currently doesn't work - you should just request activating your credentials with USPS and go live." +msgstr "Voor het gebruik van deze USPS Shipping calculator is een Ecommerce API Gebruikersnaam en Wachtwoord benodigd. Verkrijg je gratis inlog gegevens hier ». Het wachtwoord is niet langer meer in gebruik voor deze API, alleen de gebruikersnaam die je hier beneden zou moeten invoeren. De USPS test omgeving is nog niet geüpdatet en werkt op het moment niet - je moet aanvragen om je inlog gegevens te activeren bij USPS en live gaan. " + +#: includes/common/payment-gateways/stripe.php:339 +msgid "ZIP Code" +msgstr "Postcode" + +#: includes/common/payment-gateways/stripe.php:334 +msgid "Last name" +msgstr "Achternaam" + +#: includes/common/payment-gateways/stripe.php:333 +msgid "First name" +msgstr "Voornaam" + +#: includes/common/payment-gateways/manual-payments.php:150 +msgid "These are the manual payment instructions to display on the order confirmation screen. TOTAL will be replaced with the order total and ORDERID will be replaced with Order ID." +msgstr "Dit zijn de handmatige betalingsinstructies die worden weergegeven op het bevestiging's scherm. TOTAL zal worden vervangen met het bestelling's totaal en ORDERID zal worden vervangen met het bestellings ID." + +#: includes/common/payment-gateways/authorizenet-aim.php:240 +msgid "You must login to Authorize.net merchant dashboard to obtain the API login ID and API transaction key. Instructions »" +msgstr "Je moet inloggen op Authorize.net merchant dashboard om de API login ID en API transactie sleutel te verkrijgen. Instructies »" + +#: includes/common/payment-gateways/2checkout.php:327 +msgid "
    1. Set the \"Return Method\" within Site Management to Header Redirect and set the \"Return URL\" to %s
    2. Set your notifications url to %s
    " +msgstr "
    1. Stel de \"Return Method\" in op Site Management naar Header Redirect en stel de \"Return URL\" in naar %s
    2. Stel je notificatie URL in naar %s
    " + +#: includes/common/data.php:191 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Also, digital downloads included in your order are now ready to be downloaded. Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" +"Beste CUSTOMERNAME,\n" +"Je bestelling is verzonden! En... digitale downloads die in je bestelling zitten zijn nu klaar om te downloaden. Afhankelijk van de verzend methode en je locatie zou je bestelling snel moeten aankomen. Verwijs ons alsjeblieft naar je bestelling ID (ORDERID) wanneer je contact met ons opneemt.\n" +"\n" +"Dit is de bevestiging van je bestelling details:\n" +"\n" +"Bestelling informatie:\n" +"ORDERINFO\n" +"\n" +"Verzending informatie:\n" +"SCHIPPINGINFO\n" +"\n" +"Betaal informatie:\n" +"PAYMENTINFO\n" +"\n" +"ORDERNOTES\n" +"\n" +"Je kan de laatste status van je bestelling hier zien: TRACKINGURL\n" +"\n" +"Nogmaals bedankt!" + +#: includes/common/data.php:185 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order is now available to download! Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" +"Beste CUSTOMERNAME,\n" +"Je bestelling is nu klaar om te downloaden! Verwijs ons alsjeblieft naar je bestelling ID (ORDERID) wanneer je contact met ons opneemt.\n" +"\n" +"Dit is de bevestiging van je bestelling details:\n" +"\n" +"Bestelling informatie:\n" +"ORDERINFO\n" +"\n" +"Betaal informatie:\n" +"PAYMENTINFO\n" +"\n" +"ORDERNOTES\n" +"\n" +"Je kan de laatste status van je bestelling hier zien: TRACKINGURL\n" +"\n" +"Nogmaals bedankt!" + +#: includes/common/data.php:184 +msgid "Your Order Is Ready To Be Downloaded! (ORDERID)" +msgstr "Je bestelling is nu klaar om te downloaden! (ORDERID)" + +#: includes/common/data.php:179 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" +"Beste CUSTOMERNAME,\n" +"Je bestelling is verzonden! Afhankelijk van de verzend methode en je locatie zou je bestelling snel moeten aankomen. Verwijs ons alsjeblieft naar je bestelling ID (ORDERID) wanneer je contact met ons opneemt.\n" +"\n" +"Dit is de bevestiging van je bestelling details:\n" +"\n" +"Bestelling informatie:\n" +"ORDERINFO\n" +"\n" +"Verzending informatie:\n" +"SCHIPPINGINFO\n" +"\n" +"Betaal informatie:\n" +"PAYMENTINFO\n" +"\n" +"ORDERNOTES\n" +"\n" +"Je kan de laatste status van je bestelling hier zien: TRACKINGURL\n" +"\n" +"Nogmaals bedankt!" + +#: includes/common/data.php:173 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received, your digital goods are ready to be downloaded and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" +"Bedankt voor je bestelling CUSTOMERNAME!\n" +"\n" +"Je bestelling is geplaatst, je digitale artikelen zijn nu klaar om te downloaden en andere artikelen die worden verzonden worden zo snel mogelijk afgehandeld. Afhankelijk van de verzend methode en je locatie zou je bestelling snel moeten aankomen. Verwijs ons alsjeblieft naar je bestelling ID (ORDERID) wanneer je contact met ons opneemt.\n" +"\n" +"Dit is de bevestiging van je bestelling details:\n" +"\n" +"Bestelling informatie:\n" +"ORDERINFO\n" +"\n" +"Verzending informatie:\n" +"SCHIPPINGINFO\n" +"\n" +"Betaal informatie:\n" +"PAYMENTINFO\n" +"\n" +"ORDERNOTES\n" +"\n" +"Je kan de laatste status van je bestelling hier zien: TRACKINGURL\n" +"\n" +"Nogmaals bedankt!" + +#: includes/common/data.php:167 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received and your digital goods are ready to be downloaded. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" +"Bedankt voor je bestelling CUSTOMERNAME!\n" +"\n" +"Je bestelling is geplaatst, je digitale artikelen zijn nu klaar om te downloaden. Verwijs ons alsjeblieft naar je bestelling ID (ORDERID) wanneer je contact met ons opneemt.\n" +"\n" +"Dit is de bevestiging van je bestelling details:\n" +"\n" +"Bestelling informatie:\n" +"ORDERINFO\n" +"\n" +"Verzending informatie:\n" +"SCHIPPINGINFO\n" +"\n" +"Betaal informatie:\n" +"PAYMENTINFO\n" +"\n" +"ORDERNOTES\n" +"\n" +"Je kan de laatste status van je bestelling hier zien: TRACKINGURL\n" +"\n" +"Nogmaals bedankt!" + +#: includes/common/data.php:160 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +" Your order has been received, and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information: \n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" +"Bedankt voor je bestelling CUSTOMERNAME!\n" +"\n" +"Je bestelling is geplaatst, artikelen die worden verzonden worden zo snel mogelijk verwerkt. Verwijs ons alsjeblieft naar je bestelling ID (ORDERID) wanneer je contact met ons opneemt.\n" +"\n" +"Dit is de bevestiging van je bestelling details:\n" +"\n" +"Bestelling informatie:\n" +"ORDERINFO\n" +"\n" +"Verzending informatie:\n" +"SCHIPPINGINFO\n" +"\n" +"Betaal informatie:\n" +"PAYMENTINFO\n" +"\n" +"ORDERNOTES\n" +"\n" +"Je kan de laatste status van je bestelling hier zien: TRACKINGURL\n" +"\n" +"Nogmaals bedankt!" + +#: includes/common/class-mp-product.php:638 +msgid "You can not add more items to cart." +msgstr "Je kan geen goederen meer toevoegen aan je winkelwagen." + +#: includes/common/class-mp-product.php:635 +msgid "You can only add {0} to cart." +msgstr "Je kan maar {0} goederen in je winkelwagen toevoegen." + +#: includes/common/class-mp-product.php:625 +msgid "This product has an order limit of %d." +msgstr "Dit product heeft een bestel limiet van %d stuks." + +#: includes/common/class-mp-order.php:1454 +msgid "Shipped: tracking code: %s" +msgstr "Verzonden: tracking code: %s" + +#: includes/common/class-mp-order.php:1000 +#: includes/common/class-mp-order.php:1012 +msgid "Finished" +msgstr "Afgehandeld" + +#: includes/common/class-mp-order.php:858 +msgid "Contact Details" +msgstr "Contact Details" + +#: includes/common/class-mp-order.php:339 includes/common/data.php:155 +msgid "" +"A new order (ORDERID) was created in your store:\n" +"\n" +" ORDERINFOSKU\n" +"\n" +" SHIPPINGINFO\n" +"\n" +" PAYMENTINFO\n" +"\n" +msgstr "" +"Een nieuwe order (ORDERID) was geplaatst in je winkel:\n" +"\n" +" ORDERINFOSKU\n" +"\n" +" SHIPPINGINFO\n" +"\n" +" PAYMENTINFO\n" +"\n" +"\n" + +#: includes/common/class-mp-cart.php:1858 +msgid "Add again" +msgstr "Opnieuw toevoegen" + +#: includes/common/class-mp-cart.php:1852 +msgid "was removed from Shopping Cart" +msgstr "is verwijderd uit winkelwagen" + +#: includes/common/class-mp-cart.php:1242 +#: includes/public/class-mp-short-codes.php:160 +msgid "Cart update notice: this item has a limit per order or you have reached the stock limit." +msgstr "Winkelwagen update bericht: dit artikel heeft een per bestelling limiet of heeft zijn voorraad limiet bereikt." + +#: includes/admin/widgets/product-list.php:235 +msgid "Show Only Featured Products" +msgstr "Laat alleen uitgelichte Producten zien" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:533 +msgid "If enabled, users won't be able to filter products per category and/or to order by release date/name/price." +msgstr "Als aangezet, gebruikers kunnen niet filteren op producten per categorie en/of sorteren op publicatie datum/naam/prijs." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:531 +msgid "Hide Products Filter?" +msgstr "Verberg Product Filter?" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:353 +msgid "Notification to registration email instead of billing email?" +msgstr "Notificaties naar registratie e-mail in plaats van betaal e-mail?" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:322 +msgid "Order Shipped - Mixed orders (with both digital and physical products)" +msgstr "Bestelling verzonden - Gemixte artikelen (met digitale en fysieke producten)" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:289 +msgid "Order Shipped - Digital downloads only orders" +msgstr "Bestelling verzonden - Alleen digitaal downloadbare producten" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:224 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "Deze codes worden vervangen met bestelling details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. Geen HTML toegestaan." + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:194 +msgid "New Order - Mixed" +msgstr "Nieuwe Bestelling - Gemixt" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:161 +msgid "New Order - Digital downloads only orders" +msgstr "Nieuwe Bestelling - Alleen digitaal downloadbare Producten" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:115 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:243 +msgid "Mixed orders" +msgstr "Gemixte Bestellingen" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:110 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:238 +msgid "Digital downloads orders" +msgstr "Digitaal Downloadbare Bestellingen" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:105 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:233 +msgid "Physical orders" +msgstr "fysieke Bestellingen" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:96 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed.
    For orders placed with manual payment, emails set here will be overriden by the one configured in manual payments settings, under payments settings page" +msgstr "Deze codes worden vervangen met bestelling details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. Geen HTML toegestaan.
    Voor bestellingen die geplaatst zijn met handmatige betaling, e-mail adressen hier gedefinieerd zullen overschreven worden door de e-mail die is geconfigureerd in handmatige betaling instellingen, onder betalingsinstellingen pagina" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:89 +msgid "Customer Notification Settings" +msgstr "Klant Notificatie Instellingen" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:47 +msgid "Admin Notification Settings" +msgstr "Administrator Notificatie Instellingen" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:566 +msgid "Only contact details" +msgstr "Alleen contact details" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:565 +msgid "Full billing info" +msgstr "Volledige betaal informatie" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:561 +msgid "Details Collection" +msgstr "Details Overzicht" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:548 +msgid "Digital Settings" +msgstr "Digitale Instellingen" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:515 +msgid "Apply Tax to Digital Products?" +msgstr "BTW aan Digitale Producten toevoegen?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:236 +msgid "product (default)" +msgstr "product (standaard)" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:231 +msgid "If you are experiencing conflicts with other e-commerce plugins change this setting. This will change the internal post type of all your products. Please note that changing this option may break 3rd party themes or plugins." +msgstr "Als je conflicten met andere E-commerce plug-ins ondervind verander dan deze instelling. Dit zal de interne post type veranderen voor al je producten. Houd alsjeblieft in gedachten dat met het veranderen van deze instelling thema's van een 3e partij kapot kunnen gaan." + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1203 +msgid "Hide details" +msgstr "Details verbergen" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1202 +msgid "Show all changes" +msgstr "Laat alle veranderingen zien" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1184 +msgid "Version %s" +msgstr "Versie %s" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1161 +msgid "Current" +msgstr "Huidig" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1131 +msgid "%s changelog" +msgstr "%s logboek" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:952 +msgid "We did not find any data for this plugin or theme..." +msgstr "We hebben geen data gevonden voor deze plugin of dit thema..." + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:285 +msgid "Activate WPMU DEV Dashboard" +msgstr "Activeer WPMU DEV Dashboard" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:279 +msgid "Just one more step - activate the WPMU DEV Dashboard plugin and you're all done!" +msgstr "Nog maar één stap - activeer de WPMU DEV Dashboard plug-in en je bent helemaal klaar!" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:277 +msgid "Important updates are available for your WPMU DEV plugins/themes. Activate the WPMU DEV Dashboard to update now!" +msgstr "Er zijn belangrijke updates beschikbaar voor jou WPMU DEV plug-ins/thema's. Activeer de WPMU DEV Dashboard om nu te updaten!" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:273 +msgid "Just one more step to enable updates and support for %s!" +msgstr "Nog maar één stap om updates en ondersteuning te ontvangen voor %s!" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:271 +msgid "Important updates are available for %s. Activate the WPMU DEV Dashboard to update now!" +msgstr "Er zijn belangrijke updates beschikbaar voor %s. Activeer de WPMU DEV Dashboard om nu te updaten!" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:264 +msgid "activate" +msgstr "Activeren" + +#: includes/admin/class-mp-admin.php:398 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:248 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:289 +msgid "Dismiss" +msgstr "Afwijzen" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:247 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:288 +msgid "Saving..." +msgstr "Opslaan..." + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:244 +msgid "Install Plugin" +msgstr "Plugin installeren" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:238 +msgid "Almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "Bijna klaar - installeer de gratis WPMU DEV Dashboard plug-in voor updates en ondersteuning!" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:236 +msgid "Important updates are available for your WPMU DEV plugins/themes. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "Er zijn belangrijke updates beschikbaar voor jou WPMU DEV plug-ins/thema's. Installeer de WPMU DEV Dashboard nu om updates en ondersteuning te ontvangen!" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:232 +msgid "%s is almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "%s is bijna klaar - installeer de gratis WPMU DEV Dashboard plug-in om updates en ondersteuning te ontvangen!" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:230 +msgid "Important updates are available for %s. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "Er zijn belangrijke updates beschikbaar voor %s. Installeer de gratis WPMU DEV Dashboard plug-in nu om updates en ondersteuning te ontvangen!" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:223 +msgid "install" +msgstr "Installeren" + +#: includes/admin/class-mp-shortcode-builder.php:1428 +msgid "Sets the number of Tags to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1289 +msgid "How many products to display in the product list if \"paginate\" is set to false." +msgstr "Hoe veel producten moeten er worden weergegeven als \"paginate\" is uitgeschakeld." + +#: includes/admin/class-mp-shortcode-builder.php:739 +#: includes/admin/class-mp-shortcode-builder.php:906 +#: includes/admin/class-mp-shortcode-builder.php:1350 +msgid "Grid" +msgstr "Rooster" + +#: includes/admin/class-mp-shortcode-builder.php:735 +#: includes/admin/class-mp-shortcode-builder.php:902 +#: includes/admin/class-mp-shortcode-builder.php:1346 +msgid "Products will be displayed as list or grid." +msgstr "Producten zullen als lijst of raster worden weergegeven." + +#: includes/admin/class-mp-shortcode-builder.php:206 +msgid "Display a cloud or list of your global product tags." +msgstr "Laat een wolk of lijst zien met je globale productlabels." + +#: includes/admin/class-mp-shortcode-builder.php:205 +msgid "Display a list of your global categories." +msgstr "Laat een lijst zien van je algemene categorieën." + +#: includes/admin/class-mp-shortcode-builder.php:204 +msgid "Display a list or grid of your global products." +msgstr "Laat een lijst of rooster zien van je algemene producten." + +#: includes/admin/class-mp-shortcode-builder.php:181 +msgid "Display a list of featured products." +msgstr "Laat een lijst van uitgelichte producten zien." + +#: includes/admin/class-mp-products-admin.php:1451 +msgid "Is Featured?" +msgstr "Uitgelicht?" + +#: includes/admin/class-mp-products-admin.php:1444 +msgid "Featured Product" +msgstr "Uitgelicht Product" + +#: includes/admin/class-mp-products-admin.php:581 +#: includes/admin/class-mp-products-admin.php:1580 +msgid "% discount" +msgstr "% korting" + +#: includes/admin/class-mp-products-admin.php:579 +msgid "OR" +msgstr "OF" + +#: includes/admin/class-mp-products-admin.php:460 +#: includes/admin/class-mp-products-admin.php:586 +#: includes/admin/widgets/product-list.php:217 +msgid "Featured" +msgstr "Uitgelicht" + +#: includes/admin/class-mp-orders-admin.php:536 +#: includes/admin/class-mp-orders-admin.php:538 +msgid "Tracking Link" +msgstr "Link bestelling volgen" + +#: includes/admin/class-mp-orders-admin.php:508 +msgid "Shipping Tax" +msgstr "Verzending belasting" + +#: includes/admin/class-mp-orders-admin.php:356 +msgid "Shipping Total" +msgstr "Totaal Verzending" + +#: includes/admin/class-mp-orders-admin.php:352 +msgid "Taxes Total" +msgstr "Totaal Belasting" + +#: includes/admin/class-mp-orders-admin.php:349 +msgid "Products Total" +msgstr "Totaal Producten" + +#: includes/admin/class-mp-ajax.php:366 +msgid "Oops! You entered an invalid username/email and or password." +msgstr "Oeps! Je hebt een ongeldige gebruikersnaam/email en/of wachtwoord ingevoerd." + +#: includes/admin/class-mp-ajax.php:254 +msgid "Percentage Discount" +msgstr "Kortingspercentage" + +#: includes/admin/class-mp-ajax.php:234 +msgid "Limit the Amount of Items per Order" +msgstr "Limiteer het aantal producten per bestelling" + +#: includes/admin/class-mp-ajax.php:214 +msgid "Unused Attributes" +msgstr "Ongebruikte attributen" + +#: includes/admin/class-mp-admin.php:82 +msgid "Run setup wizard" +msgstr "Installatie wizard uitvoeren" + +#: includes/admin/class-mp-admin.php:79 +msgid "MarketPress setup is not complete! Once you've completed this quick setup wizard you'll have a fully working online store - exciting! " +msgstr "MarketPress setup is niet compleet! Wanneer je deze snelle setup helper heb afgerond heb je een volledig werkende online winkel - spannend! " + +#: marketpress.php:263 +msgctxt "mp_order" +msgid "Add New" +msgstr "Nieuwe Toevoegen" + +#: marketpress.php:184 +msgctxt "product_tag" +msgid "Product Tag" +msgstr "Productlabel" + +#: marketpress.php:183 +msgctxt "product_tag" +msgid "Product Tags" +msgstr "Productlabels" + +#: marketpress.php:150 +msgctxt "product_category" +msgid "Product Category" +msgstr "Product categorie" + +#: marketpress.php:149 +msgctxt "product_category" +msgid "Product Categories" +msgstr "Product categorieën" + +#. Author URI of the plugin/theme +msgid "http://premium.wpmudev.org" +msgstr "http://premium.wpmudev.org" + +#: marketpress.php:729 +msgid "Invoice PDF" +msgstr "Factuur PDF" + +#: marketpress.php:712 +msgid "Grant access to themes and gateways depending on the user's Pro Site level" +msgstr "Verleen toegang tot thema's en gateways afhankelijk van het Pro Site niveau van de gebruiker" + +#: marketpress.php:711 +msgid "Pro Sites" +msgstr "Pro Sites" + +#: marketpress.php:703 +msgid "Offer and accept coupon codes" +msgstr "Levert en accepteert kortingscodes" + +#. translators: %s: plugin title +#: marketpress.php:687 +msgid "Install %s Pages" +msgstr "Installeert %s Pagina's" + +#. translators: %s: plugin title +#: marketpress.php:682 +msgid "Welcome to %s – Install pages required by the plugin automatically." +msgstr "Welkom bij %s – Pagina's die nodig zijn voor de plug-in worden automatisch geïnstalleerd." + +#: marketpress.php:668 +msgid "Your pages were created successfully." +msgstr "Je pagina's zijn succesvol aangemaakt." + +#: marketpress.php:436 +msgid "Add a Product" +msgstr "Een product toevoegen" + +#: marketpress.php:271 +msgid "Parent Order" +msgstr "Bovenliggende Bestelling" + +#: marketpress.php:270 +msgid "No orders found in trash" +msgstr "Geen bestellingen gevonden in de prullenbak" + +#: marketpress.php:269 +msgid "No orders found" +msgstr "Geen bestellingen gevonden" + +#: marketpress.php:265 +msgid "Edit Order" +msgstr "Bestelling Bewerken" + +#: marketpress.php:264 +msgid "Add New Order" +msgstr "Plaats nieuwe bestelling" + +#: marketpress.php:220 marketpress.php:221 +msgid "Add New Product" +msgstr "Een Nieuw Product Toevoegen" + +#: marketpress.php:197 +msgid "No product tags found" +msgstr "Geen productlabels gevonden" + +#: marketpress.php:196 +msgid "Choose from the most used product tags" +msgstr "Kies uit de meest gebruikte productlabels" + +#: marketpress.php:195 +msgid "Add or remove product tags" +msgstr "Productlabels toevoegen of verwijderen" + +#: marketpress.php:194 +msgid "Separate product tags with commas" +msgstr "Productlabels met comma's scheiden" + +#: marketpress.php:193 +msgid "Search Product Tags" +msgstr "Zoek Productlabels" + +#: marketpress.php:192 +msgid "Parent Product Tag:" +msgstr "Huidig Productlabel:" + +#: marketpress.php:191 +msgid "Parent Product Tag" +msgstr "Huidig Productlabel" + +#: marketpress.php:190 +msgid "New Product Tag Name" +msgstr "Label-naam Nieuw Product" + +#: marketpress.php:189 +msgid "Add New Product Tag" +msgstr "Nieuwe Product Label Toevoegen" + +#: marketpress.php:188 +msgid "Update Product Tag" +msgstr "Product Label bijwerken" + +#: marketpress.php:187 +msgid "View Product Tag" +msgstr "Bekijk Product Label" + +#: marketpress.php:186 +msgid "Edit Product Tag" +msgstr "Wijzig Product label" + +#: marketpress.php:185 +msgid "All Product Tags" +msgstr "Alle Product labels" + +#: marketpress.php:163 +msgid "No product categories found" +msgstr "Geen Productcategorieën gevonden" + +#: marketpress.php:162 +msgid "Choose from the most used product categories" +msgstr "Kies van de meest gebruikte Productcategorieën" + +#: marketpress.php:161 +msgid "Add or remove product categories" +msgstr "Productcategorieën toevoegen of verwijderen" + +#: marketpress.php:160 +msgid "Separate product categories with commas" +msgstr "Productcategorieën met komma's scheiden" + +#: marketpress.php:159 +msgid "Search Product Categories" +msgstr "Zoek Product Categorieen" + +#: marketpress.php:158 +msgid "Parent Product Category:" +msgstr "Bovenliggende Product Categorie:" + +#: marketpress.php:157 +msgid "Parent Product Category" +msgstr "Bovenliggende Product Categorie" + +#: marketpress.php:156 +msgid "New Product Category Name" +msgstr "Nieuwe Product Categorie Naam" + +#: marketpress.php:155 +msgid "Add New Product Category" +msgstr "Nieuwe productcategorie toevoegen" + +#: marketpress.php:154 +msgid "Update Product Category" +msgstr "Productcategorie updaten" + +#: marketpress.php:153 +msgid "View Product Category" +msgstr "Product Categorie Bekijken" + +#: marketpress.php:152 +msgid "Edit Product Category" +msgstr "Product Categorie Bewerken" + +#: marketpress.php:151 +msgid "All Product Categories" +msgstr "Alle Product Categorieën" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Please fix the %s1 and then try submitting the form again." +msgstr "Herstel alsjeblieft de %s1 en probeer vervolgens het formulier opnieuw te versturen." + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Oops! The form contains %s1 which %s2 been highlighted below." +msgstr "Oeps! Het formulier bevat %s1 welke %s2 zijn gemarkeerd hier beneden." + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:660 +msgid "have" +msgstr "hebben" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:659 +msgid "has" +msgstr "heeft" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:651 +msgid "Value must be less than {0}" +msgstr "Waarde moet lager zijn dan {0}" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:650 +msgid "Please enter only letters and numbers" +msgstr "Alleen cijfers en lekkers invoeren" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:539 +msgid "Due to prolonged inactivity on this page, one or more settings were not saved. Please try again." +msgstr "U bent te lang inactief geweest op deze pagina, een of meer instellingen werden niet opgeslagen. Probeer het opnieuw." + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:535 +msgid "Settings Saved" +msgstr "Instellingen opgeslagen" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-user-select.php:22 +msgid "Select Some Users" +msgstr "Selecteer enige gebruikers" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-section.php:18 +msgid "Section Title" +msgstr "Paragraaf Titel" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:425 +msgid "Are you sure you want to delete this?" +msgstr "Weet u zeker dat u dit wil verwijderen?" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:30 +msgid "Add Row" +msgstr "Rij toevoegen" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-post-select.php:24 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-taxonomy-select.php:22 +msgid "Select Posts" +msgstr "Berichten selecteren" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:210 +msgid "Add Images" +msgstr "Afbeeldingen toevoegen" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:129 +msgid "Select the image that you would like to use for this product." +msgstr "Selecteer de afbeelding die u voor dit product wil gebruiken." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:93 +msgid "Select image(s) that you would like to use for this product." +msgstr "Selecteer de afbeelding(en) die u voor dit product wil gebruiken." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:79 +msgid "Select the image that you would like to use for this variation." +msgstr "Selecteer de afbeelding die u voor deze variatie wil gebruiken." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:48 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:82 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:68 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:132 +msgid "Select Image" +msgstr "Selecteer Afbeelding" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:31 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:160 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:168 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:19 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:115 +msgid "Select File" +msgstr "Selecteer Bestand" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:30 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:18 +msgid "Select the file that you would like to use." +msgstr "Selecteer het bestand dat u wil gebruiken." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:357 +msgid "Create Variations" +msgstr "Maak varianten" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:356 +msgid "Add Another Variant" +msgstr "Voeg nog een variant toe" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Insert a value and press ENTER" +msgstr "Voeg een waarde in en druk op ENTER" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "(e.g. White, Grey, Red etc.)" +msgstr "(vb. wit, grijs, rood, enz.)" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Variation Values" +msgstr "Variatie Waarden" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:333 +msgid "Or create new variation" +msgstr "Of maak een nieuwe variatie aan" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "(e.g. Color)" +msgstr "(vb. kleur)" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:303 +msgid "You are about to delete selected variants.
    If you want to continue please confirm." +msgstr "U staat op het punt om de geselecteerde variaties te verwijderen.
    Bevestig als u door wil gaan." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:302 +msgid "Confirmation" +msgstr "Bevestiging" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:290 +msgid "Insert quantity available. Empty for unlimited." +msgstr "Voer beschikbare aantallen in. Leeg laten voor ongelimiteerd." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:281 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:294 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:307 +msgid "Cancel" +msgstr "Annuleer" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:280 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:293 +msgid "Update" +msgstr "Update" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:277 +msgid "Insert the price i.e. 25 or 25.50" +msgstr "Voer de prijs in (bijv. 25 of 25.50)" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:115 +msgid "Img." +msgstr "Foto." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:85 +msgid "Add New Variation" +msgstr "Nieuwe variatie toevoegen" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:79 +msgid "Delete Variants" +msgstr "Verwijder Variaties" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:78 +msgid "Update Prices" +msgstr "Update Prijzen" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:77 +msgid "Update Inventory" +msgstr "Update voorraad" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:76 +msgid "Update Images" +msgstr "Update Afbeeldingen" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:75 +msgid "Bulk Actions" +msgstr "Bulkacties" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:73 +msgid "Select bulk action" +msgstr "Massaselectie actie" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:196 +msgid "Configure Store" +msgstr "Configureer Shop" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:195 +msgid "Configure shipping rates, emails and your store's appearance. " +msgstr "Configureer verzendtarieven, e-mails en het uitzicht van uw shop." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:190 +msgid "Add Product" +msgstr "Product Aanmaken" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:189 +msgid "Add your first product for sale and get familiar with adding products." +msgstr "Maak uw eerste product aan en maak je het producten aanmaken eigen." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:184 +msgid "Your store is almost ready for its first customers, but first it needs some products. Get started by adding products below, or jump straight into further configuring your store’s settings." +msgstr "Uw winkel is bijna klaar om uw eerste klanten te ontvangen, maar eerst heeft u producten nodig. Start hieronder met het aanmaken van producten, of ga meteen verder met het configureren van de instellingen." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:183 +msgid "Woohoo! Your online store is up and running." +msgstr "Woehoe! Uw online shop is klaar voor gebruik!" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:160 +msgid "Finish Setup" +msgstr "Setup Voltooien" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:124 +msgid "And what metric system do you want to use?" +msgstr "Welke meeteenheden wil u gebruiken?" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:113 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:142 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:159 +msgid "Back" +msgstr "Terug" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:109 +msgid "Do you want to apply tax for your products? You can customize this for each product and variation." +msgstr "Wil u belasting toepassen op uw producten? U kan dit aanpassen per product en variatie." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:105 +msgid "What currency do you want to sell with?" +msgstr "In welke munteenheid wil u verkopen?" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:93 +msgid "And, which countries do you want to sell to?" +msgstr "En, aan welke landen wenst u te verkopen?" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:89 +msgid "Where is your online store based?" +msgstr "Waar is uw online store gevestigd?" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:80 +msgid "Payment Gateway" +msgstr "Betaalplatform" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:79 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:123 +msgid "Metric System" +msgstr "Metrisch Stelsel" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:78 +msgid "Currency & Tax" +msgstr "Valuta & BTW" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:77 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:88 +msgid "Locations" +msgstr "Locaties" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:70 +msgid "Choose where you want to sell your stuff and what currency. Easy!" +msgstr "" +"Kies waar u uw spullen wilt verkopen en welke valuta u gebruikt.\n" +"Eenvoudig!" + +#: includes/public/class-mp-checkout.php:1400 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:58 +msgid "Continue" +msgstr "Doorgaan" + +#: includes/admin/class-mp-admin.php:83 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:53 +msgid "Skip this step, I'll do this manually" +msgstr "Sla deze stap over, ik voer het handmatig uit." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:49 +msgid "Install store pages" +msgstr "Installeer winkel pagina's" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:44 +msgid "Once you've completed this quick setup wizard you'll have a fully working online store - exciting! Start
    by creating the default store pages for the online store such as the cart, checkout and store pages." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:42 +msgid "MarketPress adds a full online store to your website, with heaps of configuration options and addons
    to suit your needs. It's really easy to get going, and only takes a few minutes to setup!" +msgstr "MarketPress voegt een volledige online winkel toe aan je website, met een hoop aan instellingen en toevoegingen
    om aan je wensen te voldoen. Het is erg gemakkelijk om te beginnen, en het duurt maar een paar minuten om te installeren." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:41 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:69 +msgid "Welcome to MarketPress - Quick Setup" +msgstr "Welkom bij MarketPress - Snelle Setup" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-advanced-select.php:23 +msgid "Select Some Options" +msgstr "Selecteer een aantal Opties" + +#: includes/wpmudev-metaboxes/class-wpmudev-field.php:694 +msgid "You must the WPMUDEV_Field::display() method in your form field class" +msgstr "" + +#: includes/public/class-mp-short-codes.php:636 +msgid "Only %s left in stock..." +msgstr "Nog maar %s op voorraad..." + +#: includes/public/class-mp-short-codes.php:633 +msgid "Unlimited stock" +msgstr "Oneindige voorraad" + +#: includes/public/class-mp-short-codes.php:430 +msgid "product_id must be defined" +msgstr "product_id moet gedefinieerd zijn" + +#: includes/public/class-mp-checkout.php:1250 +msgid "An account with this username already exists" +msgstr "Een account met deze gebruikersnaam bestaat al" + +#: includes/public/class-mp-checkout.php:1394 +msgid "Continue as Guest" +msgstr "Ga verder als gast" + +#: includes/public/class-mp-checkout.php:1393 +msgid "Proceed to checkout and you'll have an opportunity to create an account at the end." +msgstr "Ga verder naar de bestelpagina, u krijgt aan het einde de mogelijkheid om een account aan te maken. (geen verplichting)" + +#: includes/public/class-mp-checkout.php:1392 +#: includes/public/class-mp-checkout.php:1398 +msgid "First-time customer?" +msgstr "Bent u een nieuwe klant?" + +#: includes/public/class-mp-checkout.php:1386 +msgid "Login" +msgstr "Aanmelden" + +#: includes/public/class-mp-checkout.php:1379 +msgid "E-Mail Address/Username" +msgstr "E-Mail adres/Gebruikersnaam" + +#: includes/public/class-mp-checkout.php:1377 +msgid "Sign in to speed up the checkout process." +msgstr "Log in om het bestelproces sneller af te ronden." + +#: includes/public/class-mp-checkout.php:1376 +msgid "Have an account?" +msgstr "Heeft u een account?" + +#: includes/public/class-mp-checkout.php:1297 +msgid "Shipping address different than billing?" +msgstr "Verzendadres anders dan factuuradres?" + +#: includes/public/class-mp-checkout.php:1184 +msgid "There are no available gateways to process this payment." +msgstr "Er zijn geen beschikbare betaalplatformen om deze betaling te verwerken." + +#: includes/public/class-mp-checkout.php:1160 +msgid "Payment" +msgstr "Betaling" + +#: includes/public/class-mp-checkout.php:1123 +msgid "Oops! An error occurred while processing your payment." +msgstr "Oeps! Er heeft zich een fout voorgedaan bij de verwerking van uw betaling." + +#: includes/public/class-mp-checkout.php:1051 +msgid "Next Step »" +msgstr "Volgende stap »" + +#: includes/public/class-mp-checkout.php:1045 +msgid "« Previous Step" +msgstr "« Vorige stap" + +#: includes/public/class-mp-checkout.php:873 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:657 +msgid "error" +msgstr "fout" + +#: includes/public/class-mp-checkout.php:872 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:658 +msgid "errors" +msgstr "fouten" + +#: includes/public/class-mp-checkout.php:871 +msgid "

    Oops! We found %d %s in the form below.

    Fields that have errors are highlighted in red below. Entering into a field will reveal the actual error that occurred.

    " +msgstr "

    Oeps! We hebben %d %s gevonden in het formulier hieronder.

    Velden met foutmeldingen zijn aangedaan in rood. Wanneer u naar het betrokken veld gaat, kan u de fout bekijken.

    " + +#: includes/public/class-mp-checkout.php:870 +msgid "Please enter a valid first and last name" +msgstr "Vul een geldige voor- en achternaam in" + +#: includes/public/class-mp-checkout.php:869 +msgid " Please enter a valid card security code" +msgstr " Vul een geldige creditcard veiligheidscode in" + +#: includes/public/class-mp-checkout.php:868 +msgid "Please enter a valid card expiration" +msgstr "Vul een geldige creditcard verloop datum in" + +#: includes/public/class-mp-checkout.php:773 +msgid "Javascript is required in order to checkout. Please enable Javascript in your browser and then refresh this page." +msgstr "Javascript is vereist om de bestelling af te ronden . Zet, Javascript aan in uw browser en vernieuw deze pagina." + +#: includes/public/class-mp-checkout.php:588 +msgid "An unknown error occurred. Please try again." +msgstr "Een onbekende fout heeft zich voorgedaan. Probeer opnieuw aub." + +#: includes/public/class-mp-checkout.php:386 +msgid "Town/City" +msgstr "Woonplaats" + +#: includes/public/class-mp-checkout.php:380 +msgid "Apartment, suite, unit, building, floor, etc" +msgstr "Appartement, gebouw, verdieping, enz." + +#: includes/public/class-mp-checkout.php:376 +msgid "Address Line 2" +msgstr "Adreslijn 2" + +#: includes/public/class-mp-checkout.php:363 +msgid "Address Line 1" +msgstr "Adres" + +#: includes/common/class-mp-order.php:770 +#: includes/public/class-mp-checkout.php:354 +msgid "Company" +msgstr "Bedrijf" + +#: includes/public/class-mp-checkout.php:330 +msgid "Last" +msgstr "Achternaam" + +#: includes/public/class-mp-checkout.php:321 +msgid "First" +msgstr "Voornaam" + +#: includes/public/class-mp-checkout.php:284 +msgid "State/Province" +msgstr "Provincie" + +#: includes/public/class-mp-checkout.php:83 +msgid "Review Order/Payment" +msgstr "Controleer uw bestelling/betaling" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing/Shipping Address" +msgstr "Factuur-/Verzendadres" + +#: includes/public/class-mp-checkout.php:80 +msgid "Login/Register" +msgstr "Login/Registreer" + +#: includes/multisite/class-mp-admin-multisite.php:530 +msgid "Marketplace" +msgstr "Marktplaats" + +#: includes/multisite/class-mp-admin-multisite.php:523 +msgid "Global Marketplace Pages" +msgstr "Globale Marktplaats Pagina's" + +#: includes/multisite/class-mp-admin-multisite.php:478 +msgid "Store Network" +msgstr "Winkelnetwerk" + +#: includes/multisite/class-mp-admin-multisite.php:478 +#: includes/multisite/class-mp-admin-multisite.php:494 +msgid "Store Network Settings" +msgstr "Winkelnetwerk Instellingen" + +#: includes/multisite/class-mp-admin-multisite.php:440 +msgid "Set theme access permissions for network stores. For a custom css theme, save your css file with the MarketPress Theme: NAME header in the /marketpress/ui/themes/ folder and it will appear in this list so you may select it." +msgstr "Stel de thema toegang permissies in voor netwerk winkels. Voor aangepaste CSS thema's, sla je CSS bestand op met de MarketPress Thema: NAAM header in de /marketpress/ui/themes/ map en die zal dan in deze lijst verschijnen zodat je deze kan selecteren." + +#: includes/multisite/class-mp-admin-multisite.php:361 +msgid "Choose a Gateway" +msgstr "Kies een betaalplatform" + +#: includes/multisite/class-mp-admin-multisite.php:336 +msgid "%d products get indexed" +msgstr "%d producten worden geïndexeerd" + +#: includes/multisite/class-mp-admin-multisite.php:285 +msgid "Product Indexer" +msgstr "Product Indexeerder" + +#: includes/multisite/class-mp-admin-multisite.php:281 +msgid "Please hold on..." +msgstr "Even wachten, Alstublieft..." + +#: includes/multisite/class-mp-admin-multisite.php:280 +msgid "Index Products" +msgstr "Indexeer Producten" + +#: includes/multisite/class-mp-admin-multisite.php:279 +msgid "%d products have been indexed in whole network" +msgstr "%d producten zijn geindexeerd in het gehele netwerk" + +#: includes/multisite/class-mp-admin-multisite.php:182 +msgid "Enable Global Shopping Cart?" +msgstr "Inschakelen Globale Winkelwagen?" + +#: includes/multisite/class-mp-admin-multisite.php:178 +msgid "Limit Global Widgets/Shortcodes To Main Blog?" +msgstr "" + +#: includes/common/template-functions.php:2802 +#: includes/multisite/template-functions.php:355 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:97 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:114 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:143 +msgid "Next" +msgstr "Volgende" + +#: includes/common/template-functions.php:2801 +#: includes/multisite/template-functions.php:354 +msgid "Prev" +msgstr "Vorige" + +#: includes/common/template-functions.php:2597 +msgid "Tagged in " +msgstr "Getagd in " + +#: includes/common/template-functions.php:2196 +#: includes/common/template-functions.php:2202 +#: includes/common/template-functions.php:2214 +#: includes/common/template-functions.php:2217 +msgid "Oops! We couldn't locate any orders matching that order number. Please verify the order number and try again." +msgstr "Oeps! We kunnen geen bestelling vinden met dit bestelnummer. Controleer het ordernummer en probeer het opnieuw." + +#: includes/common/template-functions.php:2138 +msgid "Look Up" +msgstr "Opzoeken" + +#: includes/common/template-functions.php:1423 +msgid "Please choose a shipping method" +msgstr "Kies een verzend methode" + +#: includes/common/template-functions.php:927 +msgid "If you have your order ID you can look it up using the form below." +msgstr "U kunt uw order terugvinden door het bestelnummer hier in te vullen." + +#: includes/common/template-functions.php:927 +msgid "Order Search" +msgstr "Zoek bestellingen" + +#: includes/common/template-functions.php:910 +#: includes/public/class-mp-checkout.php:1440 +msgid "Cart" +msgstr "Winkelwagen" + +#: includes/common/template-functions.php:895 +msgid "[mp_global_tag_cloud]" +msgstr "[mp_global_tag_cloud]" + +#: includes/common/template-functions.php:887 +msgid "[mp_global_categories_list]" +msgstr "[mp_global_categories_list]" + +#: includes/common/template-functions.php:880 +msgid "" +"Welcome to our market place!\n" +"\n" +"Check out our network of products:\n" +"\n" +"[mp_list_global_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_global_categories_list]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_global_tag_cloud]" +msgstr "" +"Welkom bij onze winkel!\n" +"\n" +"Bekijk al onze producten:\n" +"\n" +"[mp_list_global_products]\n" +"\n" +"Zoek per categorie:\n" +"\n" +"[mp_global_categories_list]\n" +"\n" +"Zoek per label:\n" +"\n" +"[mp_global_tag_cloud]" + +#: includes/common/template-functions.php:879 +msgid "Global Store" +msgstr "Algemene Winkel" + +#: includes/common/template-functions.php:873 +msgid "" +"Welcome to our online store! Feel free to browse around:\n" +"\n" +"[mp_store_navigation]\n" +"\n" +"Check out our most popular products:\n" +"\n" +"[mp_popular_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_list_categories]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_tag_cloud]" +msgstr "" +"Welkom in onze webshop. Kijk gerust even rond:\n" +"\n" +"[mp_store_navigation]\n" +"\n" +"Bekijk onze meest populaire producten:\n" +"\n" +"[mp_popular_products]\n" +"\n" +"Bekijk per categorie:\n" +"\n" +"[mp_list_categories]\n" +"\n" +"Bekijk per tag:\n" +"\n" +"[mp_tag_cloud]" + +#: includes/common/shipping-modules/mp-weight-rate.php:127 +msgid "If cart weight is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "Indien het gewicht van de winkelwagen groter of gelijk is aan deze waarde dan zullen de tarieven van die rij gebruikt worden tijdens het afrekenen." + +#: includes/common/shipping-modules/mp-weight-rate.php:126 +msgid "Cart Weight" +msgstr "Gewicht van de winkelwagen" + +#: includes/common/shipping-modules/mp-usps.php:222 +msgid "Offered International Services" +msgstr "Aangeboden Internationale Diensten" + +#: includes/common/shipping-modules/mp-usps.php:206 +msgid "Offered Domestic Services" +msgstr "Aangeboden Binnenlandse Diensten" + +#: includes/common/shipping-modules/mp-usps.php:196 +msgid "Retail Rates" +msgstr "Handelsprijzen" + +#: includes/common/shipping-modules/mp-usps.php:195 +msgid "Online Rates" +msgstr "Online Tarieven" + +#: includes/common/shipping-modules/mp-usps.php:193 +msgid "Rates Request Type" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:189 +msgid "Maximum Weight Per Package" +msgstr "Maximaal gewicht per pakket" + +#: includes/common/shipping-modules/mp-ups.php:195 +#: includes/common/shipping-modules/mp-usps.php:236 +msgid "Enter your standard box sizes as LengthxWidthxHeight (e.g. 12x8x6) For each box defined enter the maximum weight it can contain. Note: the shipping prices this plugin calculates are estimates. If they are consistently too low or too high, please check that the list of boxes above and the product weights are accurate and complete." +msgstr "Voer je standaard pakketgrootte in als Lengte x Breedte x Hoogte (Bijv. 12x8x6) Voor elk pakketmaat voer het maximale gewicht in wat het kan houden. Notitie: de verzendkosten van deze plug-in zijn schattingen. Zijn deze consistent te hoog of te laag, controleer dan alsjeblieft de lijst met pakketmaten hierboven en de product gewichten of deze correct zijn." + +#: includes/common/shipping-modules/mp-ups.php:187 +msgid "Handling Charge Per Box Shipped" +msgstr "Verzendkosten per doos" + +#: includes/common/shipping-modules/mp-ups.php:176 +#: includes/common/shipping-modules/mp-ups.php:181 +msgid "Offered Services" +msgstr "Aangeboden Diensten" + +#: includes/common/shipping-modules/mp-ups.php:165 +msgid "Shipper Number" +msgstr "Nummer Verzender" + +#: includes/common/shipping-modules/mp-ups.php:151 +msgid "User ID" +msgstr "Gebruiker ID" + +#: includes/common/shipping-modules/mp-ups.php:144 +msgid "Developer Kit Access Key" +msgstr "Ontwikkelaars Pakket Toegang Sleutel" + +#: includes/common/shipping-modules/mp-ups.php:140 +msgid "Use Sandbox Mode?" +msgstr "Wilt u de testomgeving (Sandbox) gebruiken?" + +#: includes/common/shipping-modules/mp-ups.php:123 +msgid "In order to use UPS, you will need a UPS Developer Kit access key and the UPS user ID and password associated with the access key. Set these up for free here. If this information is missing or incorrect, an error will appear during the checkout process and the buyer will not be able to complete the transaction." +msgstr "Om UPS te kunnen gebruiken, heb je een UPS Developer Kit toegangssleutel en een UPS gebruikers_ID en wachtwoord nodig die aan elkaar zijn gekoppeld. Meld deze hier gratis aan. Als deze informatie ontbreekt of incorrect is, zal er een error ontstaan tijdens het betaalproces en zal de koper niet zijn betaling kunnen afronden. " + +#: includes/common/shipping-modules/mp-table-rate.php:112 +msgid "If cart total is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "Als het totaal van de winkelwagen, groter of gelijk is aan deze waarde, dan worden de tarieven van die rij gebruikt bij de bestelling." + +#: includes/common/shipping-modules/mp-table-rate.php:111 +msgid "Cart Total" +msgstr "Winkelwagen Totaal" + +#: includes/common/shipping-modules/mp-table-rate.php:95 +#: includes/common/shipping-modules/mp-weight-rate.php:111 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Don't worry about sorting as this will be done automatically upon saving." +msgstr "Zorg ervoor dat u een verzendprijs invoert voor elke optie, anders bestaat de mogelijkheid dat uw klanten gratis verzending krijgen. Maakt u geen zorgen over het sorteren, bij het opslaan gebeurt dit automatich." + +#: includes/common/shipping-modules/mp-pickup.php:170 +msgid "Method Title (visible for clients)" +msgstr "Titel van de methode (zichtbaar voor klanten)" + +#: includes/common/shipping-modules/mp-fedex.php:409 +#: includes/common/shipping-modules/mp-ups.php:216 +#: includes/common/shipping-modules/mp-usps.php:251 +msgid "Max Weight (%s)" +msgstr "Max Gewicht (%s)" + +#: includes/common/shipping-modules/mp-fedex.php:402 +#: includes/common/shipping-modules/mp-ups.php:209 +#: includes/common/shipping-modules/mp-usps.php:247 +msgid "Size (%s)" +msgstr "Maat (%s)" + +#: includes/common/shipping-modules/mp-fedex.php:387 +msgid "Enter your standard box sizes as LengthxWidthxHeight ( 12x8x6 ) For each box defined enter the maximum weight it can contain. Total weight selects the box size used for calculating Shipping costs." +msgstr "Voer de maten van de standaard doos in, Lengte x breedte x hoogte (12x8x6) Voer, voor elke doos, het maximum gewicht in wat het kan bevatten . Het totaal gewicht bepaalt de maat van de doos, die wordt gebruikt voor het berekenen van verzendkosten." + +#: includes/common/shipping-modules/mp-fedex.php:361 +#: includes/common/shipping-modules/mp-usps.php:229 +msgid "Handling Charge per International Shipment" +msgstr "Afhandelings-kosten voor internationale verzending" + +#: includes/common/shipping-modules/mp-fedex.php:353 +msgid "International Services" +msgstr "Internationale Diensten" + +#: includes/common/shipping-modules/mp-fedex.php:339 +#: includes/common/shipping-modules/mp-usps.php:213 +msgid "Handling Charge per Domestic Shipment" +msgstr "Afhandelings-kosten voor Nationale Verzending" + +#: includes/common/shipping-modules/mp-fedex.php:331 +msgid "Domestic Services" +msgstr "Nationale Diensten" + +#: includes/common/shipping-modules/mp-fedex.php:321 +msgid "When checked the customer can chose Residential or Commercial delivery with Residential the default. Unchecked it's only Residential rates." +msgstr "Indien aangevinkt kan de klant kiezen voor huisadres of commerciële levering met huisadres als standaard . Voor, niet aangevinkt, gelden de huisadres tarieven." + +#: includes/common/shipping-modules/mp-fedex.php:320 +msgid "Allow Commercial Delivery?" +msgstr "Commerciële verzending toestaan?" + +#: includes/common/shipping-modules/mp-fedex.php:315 +msgid "Fedex 10kg Box" +msgstr "Fedex Doos 10kg" + +#: includes/common/shipping-modules/mp-fedex.php:314 +msgid "Fedex 25kg Box" +msgstr "Fedex Doos 25kg" + +#: includes/common/shipping-modules/mp-fedex.php:313 +msgid "Fedex Box" +msgstr "Fedex Doos" + +#: includes/common/shipping-modules/mp-fedex.php:312 +msgid "Fedex Envelope" +msgstr "Fedex Enveloppe" + +#: includes/common/shipping-modules/mp-fedex.php:311 +msgid "Fedex Pak" +msgstr "Fedex Pak" + +#: includes/common/shipping-modules/mp-fedex.php:310 +msgid "Fedex Tube" +msgstr "Fedex Rol" + +#: includes/common/shipping-modules/mp-fedex.php:306 +msgid "Default Packaging" +msgstr "Standaard Verpakking" + +#: includes/common/shipping-modules/mp-fedex.php:294 +msgid "Dropoff Type" +msgstr "Dropoff Type" + +#: includes/common/shipping-modules/mp-fedex.php:290 +msgid "Meter ID" +msgstr "Meter ID" + +#: includes/common/shipping-modules/mp-fedex.php:134 +msgid "This is a residential address" +msgstr "Dit is een huisadres" + +#: includes/common/payment-gateways/wepay.php:283 +msgid "There was an error processing your card: \"%s\". Please check your credit card info and try again." +msgstr "Er is een fout opgetreden bij het verwerken van uw creditcard: \"%s\" . Check uw creditcard gegevens en probeert het opnieuw." + +#: includes/common/payment-gateways/wepay.php:121 +msgid "Wepay makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept cards directly on your site. You don't need a merchant account or gateway. WePay handles everything including storing cards. Credit cards go directly to WePay's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "Wepay maakt het makkelijk om betalingen met kredietkaarten te aanvaarden op uw website geheel volgens PCI richtlijnen. Aanvaard betalingen met kaarten rechtstreeks op uw website. U heeft geen account of gateway nodig. Betalingen via kredietkaarten lopen direct naar WePay's veilige betaalomgeving en komen nooit op uw servers terecht, zodat u de meeste PCI vereisten kan omzeilen." + +#: includes/common/payment-gateways/stripe.php:385 +msgid "There was an error processing your card - \"%s\". Please try again." +msgstr "Er heeft zich een fout voorgedaan bij het verwerken van uw kaart - \"%s\". Probeer aub opnieuw." + +#: includes/common/payment-gateways/stripe.php:356 +msgid "%s Store Purchase - Order ID - %s, Email - %s" +msgstr "%s Aankoop - Bestelling ID - %s, E-mail - %s" + +#: includes/common/payment-gateways/stripe.php:251 +msgid "Stripe makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept Visa, MasterCard, American Express, Discover, JCB, and Diners Club cards directly on your site. You don't need a merchant account or gateway. Stripe handles everything, including storing cards, subscriptions, and direct payouts to your bank account. Credit cards go directly to Stripe's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "Stripe maakt het makkelijk om te beginnen met het accepteren van creditcards met volledige PCI compliance, direct op uw site. . Accepteer Visa, MasterCard , American Express , Discover, JCB en Diners Club kaarten direct op uw site. U heeft geen merchant account of gateway nodig . Stripe verwerkt alles, inclusief de opslag van kaarten , abonnementen en directe betalingen naar uw bankrekening. Creditcards gaan direct naar de veilige omgeving van Stripe, en nooit naar uw eigen server(s), zodat u niet hoeft te voldoen aan de meeste PCI -eisen." + +#: includes/common/payment-gateways/stripe.php:192 +msgid "ZMW - Zambian Kwacha" +msgstr "ZMW - Zambiaanse Kwacha" + +#: includes/common/payment-gateways/stripe.php:191 +msgid "ZAR - South African Rand" +msgstr "ZAR - Zuid Afrikaanse Rand" + +#: includes/common/payment-gateways/stripe.php:190 +msgid "YER - Yemeni Rial" +msgstr "YER - JemenitischeRial" + +#: includes/common/payment-gateways/stripe.php:189 +msgid "XPF - Cfp Franc*" +msgstr "XPF - Franse Vreedzame Frank*" + +#: includes/common/payment-gateways/stripe.php:188 +msgid "XOF - West African Cfa Franc*" +msgstr "XOF - West Afrikaanse CFA Franc*" + +#: includes/common/payment-gateways/stripe.php:187 +msgid "XCD - East Caribbean Dollar" +msgstr "XCD - Oost-Caribische Dollar" + +#: includes/common/payment-gateways/stripe.php:186 +msgid "XAF - Central African Cfa Franc" +msgstr "XAF - Centraal-Afrikaanse CFA Franc" + +#: includes/common/payment-gateways/stripe.php:185 +msgid "WST - Samoan Tala" +msgstr "WST - Samoaanse Tala" + +#: includes/common/payment-gateways/stripe.php:184 +msgid "VUV - Vanuatu Vatu" +msgstr "VUV - Vanuatuaanse Vatu" + +#: includes/common/payment-gateways/stripe.php:183 +msgid "VND - Vietnamese Đồng" +msgstr "VND - Vietnamese Dong" + +#: includes/common/payment-gateways/stripe.php:182 +msgid "VEF - Venezuelan Bolívar*" +msgstr "VEF - Venezolaanse Bolivar*" + +#: includes/common/payment-gateways/stripe.php:181 +msgid "UZS - Uzbekistani Som" +msgstr "UZS - Oezbeekse Sum" + +#: includes/common/payment-gateways/stripe.php:180 +msgid "UYI - Uruguayan Peso*" +msgstr "UYI - Uruguayaanse Peso*" + +#: includes/common/payment-gateways/stripe.php:178 +msgid "UGX - Ugandan Shilling" +msgstr "UGX - Oegandese Shilling" + +#: includes/common/payment-gateways/stripe.php:177 +msgid "UAH - Ukrainian Hryvnia" +msgstr "UAH - Oekraïense Grivna" + +#: includes/common/payment-gateways/stripe.php:176 +msgid "TZS - Tanzanian Shilling" +msgstr "TZS - Tanzaniaanse Shilling" + +#: includes/common/payment-gateways/stripe.php:175 +msgid "TWD - New Taiwan Dollar" +msgstr "TWD - Taiwanese Dollar" + +#: includes/common/payment-gateways/stripe.php:174 +msgid "TTD - Trinidad and Tobago Dollar" +msgstr "TTD - Trinidad en Tobagodollar" + +#: includes/common/payment-gateways/stripe.php:172 +msgid "TOP - Tongan Paʻanga" +msgstr "TOP - Tongaanse Paʻanga" + +#: includes/common/payment-gateways/stripe.php:171 +msgid "TJS - Tajikistani Somoni" +msgstr "TJS - Tajikistaanse Somoni" + +#: includes/common/payment-gateways/stripe.php:169 +msgid "SZL - Swazi Lilangeni" +msgstr "SZL - Swazilandse Lilangeni" + +#: includes/common/payment-gateways/stripe.php:168 +msgid "SVC - Salvadoran Colón*" +msgstr "USD - Amerikaanse Dollar*" + +#: includes/common/payment-gateways/stripe.php:167 +msgid "STD - São Tomé and Príncipe Dobra" +msgstr "STD - Santomese Dobra" + +#: includes/common/payment-gateways/stripe.php:166 +msgid "SRD - Surinamese Dollar*" +msgstr "SRD - Surinaamse Dollar*" + +#: includes/common/payment-gateways/stripe.php:165 +msgid "SOS - Somali Shilling" +msgstr "SOS - Somalische Shilling" + +#: includes/common/payment-gateways/stripe.php:164 +msgid "SLL - Sierra Leonean Leone" +msgstr "SLL - Sierra Leoonse Leone" + +#: includes/common/payment-gateways/stripe.php:163 +msgid "SHP - Saint Helenian Pound*" +msgstr "SHP - Sint-Heleens Pond*" + +#: includes/common/payment-gateways/stripe.php:160 +msgid "SCR - Seychellois Rupee" +msgstr "SCR - Seychellen Roepie" + +#: includes/common/payment-gateways/stripe.php:159 +msgid "SBD - Solomon Islands Dollar" +msgstr "SBD - Salomon Dollar" + +#: includes/common/payment-gateways/stripe.php:157 +msgid "RWF - Rwandan Franc" +msgstr "RWF - Rwandese Frank" + +#: includes/common/payment-gateways/stripe.php:156 +msgid "RUB - Russian Ruble" +msgstr "RUB - Russische Roebel" + +#: includes/common/payment-gateways/stripe.php:155 +msgid "RSD - Serbian Dinar" +msgstr "RSD - Servische Dinar" + +#: includes/common/payment-gateways/stripe.php:154 +msgid "RON - Romanian Leu" +msgstr "RON - Roemeense Leu" + +#: includes/common/payment-gateways/stripe.php:153 +msgid "QAR - Qatari Riyal" +msgstr "QAR - Qatarese Rial" + +#: includes/common/payment-gateways/stripe.php:152 +msgid "PYG - Paraguayan Guaraní*" +msgstr "PYG - Paraguayaanse Guarani*" + +#: includes/common/payment-gateways/stripe.php:151 +msgid "PLN - Polish Złoty" +msgstr "PLN - Poolse Zloty" + +#: includes/common/payment-gateways/stripe.php:150 +msgid "PKR - Pakistani Rupee" +msgstr "PKR - Pakistaanse Rupee" + +#: includes/common/payment-gateways/stripe.php:149 +msgid "PHP - Philippine Peso" +msgstr "PHP - Filipijnse Peso" + +#: includes/common/payment-gateways/stripe.php:148 +msgid "PGK - Papua New Guinean Kina" +msgstr "PGK - Papua Nieuw Guinea Kina" + +#: includes/common/payment-gateways/stripe.php:147 +msgid "PEN - Peruvian Nuevo Sol*" +msgstr "PEN - Peruaanse Sol*" + +#: includes/common/payment-gateways/stripe.php:146 +msgid "PAB - Panamanian Balboa*" +msgstr "PAB - Panamese Balboa*" + +#: includes/common/payment-gateways/stripe.php:144 +msgid "NPR - Nepalese Rupee" +msgstr "NPR - Nepalese Rupee" + +#: includes/common/payment-gateways/stripe.php:142 +msgid "NIO - Nicaraguan Córdoba*" +msgstr "NIO - Nicaraguaanse Córdoba*" + +#: includes/common/payment-gateways/stripe.php:141 +msgid "NGN - Nigerian Naira" +msgstr "NGN - Nigeriaanse Naira" + +#: includes/common/payment-gateways/stripe.php:140 +msgid "NAD - Namibian Dollar" +msgstr "NAD - Namibische Dollar" + +#: includes/common/payment-gateways/stripe.php:139 +msgid "MZN - Mozambican Metical" +msgstr "MZN - Mozambique Metical" + +#: includes/common/payment-gateways/stripe.php:137 +msgid "MXN - Mexican Peso*" +msgstr "MXN - Mexicaanse Peso*" + +#: includes/common/payment-gateways/stripe.php:136 +msgid "MWK - Malawian Kwacha" +msgstr "MWK - Malawische Kwacha" + +#: includes/common/payment-gateways/stripe.php:135 +msgid "MVR - Maldivian Rufiyaa" +msgstr "MVR - Maldivische Rufiyaa" + +#: includes/common/payment-gateways/stripe.php:134 +msgid "MUR - Mauritian Rupee*" +msgstr "MUR -Mauritiaanse Roepie*" + +#: includes/common/payment-gateways/stripe.php:133 +msgid "MRO - Mauritanian Ouguiya" +msgstr "MRO - Mauritaanse ouguiya" + +#: includes/common/payment-gateways/stripe.php:132 +msgid "MOP - Macanese Pataca" +msgstr "MOP - Macau Pataca" + +#: includes/common/payment-gateways/stripe.php:131 +msgid "MNT - Mongolian Tögrög" +msgstr "MNT - Mongoolse tugrik" + +#: includes/common/payment-gateways/stripe.php:130 +msgid "MKD - Macedonian Denar" +msgstr "MKD - Macedonische Denar" + +#: includes/common/payment-gateways/stripe.php:129 +msgid "MGA - Malagasy Ariary" +msgstr "MGA - Malagassische Ariary" + +#: includes/common/payment-gateways/stripe.php:128 +msgid "MDL - Moldovan Leu" +msgstr "MDL - Moldavische Leu" + +#: includes/common/payment-gateways/stripe.php:126 +msgid "LVL - Latvian Lats" +msgstr "EUR - Euro" + +#: includes/common/payment-gateways/stripe.php:124 +msgid "LSL - Lesotho Loti" +msgstr "LSL - Lesothaanse loti" + +#: includes/common/payment-gateways/stripe.php:123 +msgid "LRD - Liberian Dollar" +msgstr "LRD - Liberiaanse Dollar" + +#: includes/common/payment-gateways/stripe.php:122 +msgid "LKR - Sri Lankan Rupee" +msgstr "LKR - Sri Lankaanse roepie" + +#: includes/common/payment-gateways/stripe.php:121 +msgid "LBP - Lebanese Pound" +msgstr "LBP - Libanese Pond" + +#: includes/common/payment-gateways/stripe.php:120 +msgid "LAK - Lao Kip*" +msgstr "LAK - Laotiaanse Kip*" + +#: includes/common/payment-gateways/stripe.php:119 +msgid "KZT - Kazakhstani Tenge" +msgstr "KZT - Kazachse Tenge" + +#: includes/common/payment-gateways/stripe.php:118 +msgid "KYD - Cayman Islands Dollar" +msgstr "KYD - Kaaimaneilandse Dollar" + +#: includes/common/payment-gateways/stripe.php:117 +msgid "KRW - South Korean Won" +msgstr "KRW - Zuid-Koreaanse Won" + +#: includes/common/payment-gateways/stripe.php:116 +msgid "KMF - Comorian Franc" +msgstr "KMF - Comoros Franc" + +#: includes/common/payment-gateways/stripe.php:115 +msgid "KHR - Cambodian Riel" +msgstr "KHR - Cambodjaanse Riel" + +#: includes/common/payment-gateways/stripe.php:114 +msgid "KGS - Kyrgyzstani Som" +msgstr "KGS - Kirgizische Som" + +#: includes/common/payment-gateways/stripe.php:113 +msgid "KES - Kenyan Shilling" +msgstr "KES - Keniaanse shilling" + +#: includes/common/payment-gateways/stripe.php:111 +msgid "JMD - Jamaican Dollar" +msgstr "JMD - Jamaicaanse dollar" + +#: includes/common/payment-gateways/stripe.php:110 +msgid "ISK - Icelandic Króna" +msgstr "ISK - IJslandse kroon" + +#: includes/common/payment-gateways/stripe.php:109 +msgid "INR - Indian Rupee*" +msgstr "INR - India Rupees*" + +#: includes/common/payment-gateways/stripe.php:108 +msgid "ILS - Israeli New Sheqel" +msgstr "ILS - Israel Shekel" + +#: includes/common/payment-gateways/stripe.php:107 +msgid "IDR - Indonesian Rupiah" +msgstr "IDR - Indonesische Roepia" + +#: includes/common/payment-gateways/stripe.php:105 +msgid "HTG - Haitian Gourde" +msgstr "HTG - Haïtiaanse gourde" + +#: includes/common/payment-gateways/stripe.php:103 +msgid "HNL - Honduran Lempira*" +msgstr "HNL - Hondurese lempira*" + +#: includes/common/payment-gateways/stripe.php:101 +msgid "GYD - Guyanese Dollar" +msgstr "GYD - Guyaanse Dollar" + +#: includes/common/payment-gateways/stripe.php:100 +msgid "GTQ - Guatemalan Quetzal*" +msgstr "GTQ - Guatemalan Quetzal*" + +#: includes/common/payment-gateways/stripe.php:99 +msgid "GNF - Guinean Franc*" +msgstr "GNF - Guinean Franc*" + +#: includes/common/payment-gateways/stripe.php:98 +msgid "GMD - Gambian Dalasi" +msgstr "GMD - Gambian Dalasi" + +#: includes/common/payment-gateways/stripe.php:97 +msgid "GIP - Gibraltar Pound" +msgstr "GIP - Gibraltar Pound" + +#: includes/common/payment-gateways/stripe.php:96 +msgid "GEL - Georgian Lari" +msgstr "GEL - Georgian Lari" + +#: includes/common/payment-gateways/stripe.php:94 +msgid "FKP - Falkland Islands Pound*" +msgstr "FKP - Falkland Islands Pound*" + +#: includes/common/payment-gateways/stripe.php:93 +msgid "FJD - Fijian Dollar" +msgstr "FJD - Fijian Dollar" + +#: includes/common/payment-gateways/stripe.php:91 +msgid "ETB - Ethiopian Birr" +msgstr "ETB - Ethiopian Birr" + +#: includes/common/payment-gateways/stripe.php:90 +msgid "EGP - Egyptian Pound" +msgstr "EGP - Egyptian Pound" + +#: includes/common/payment-gateways/stripe.php:89 +msgid "EEK - Estonian Kroon*" +msgstr "EEK - Estonian Kroon*" + +#: includes/common/payment-gateways/stripe.php:88 +msgid "DZD - Algerian Dinar" +msgstr "DZD - Algerian Dinar" + +#: includes/common/payment-gateways/stripe.php:87 +msgid "DOP - Dominican Peso" +msgstr "DOP - Dominican Peso" + +#: includes/common/payment-gateways/stripe.php:85 +msgid "DJF - Djiboutian Franc*" +msgstr "DJF - Djiboutian Franc*" + +#: includes/common/payment-gateways/stripe.php:84 +msgid "CZK - Czech Koruna*" +msgstr "CZK - Czech Koruna*" + +#: includes/common/payment-gateways/stripe.php:83 +msgid "CVE - Cape Verdean Escudo*" +msgstr "CVE - Cape Verdean Escudo*" + +#: includes/common/payment-gateways/stripe.php:82 +msgid "CRC - Costa Rican Colón*" +msgstr "CRC - Costa Ricaanse Colon*" + +#: includes/common/payment-gateways/stripe.php:81 +msgid "COP - Colombian Peso*" +msgstr "COP - Colombiaanse Peso*" + +#: includes/common/payment-gateways/stripe.php:80 +msgid "CNY - Chinese Renminbi Yuan" +msgstr "CNY - Chinese Yuan" + +#: includes/common/payment-gateways/stripe.php:79 +msgid "CLP - Chilean Peso*" +msgstr "CLP - Chileense Peso*" + +#: includes/common/payment-gateways/stripe.php:77 +msgid "CDF - Congolese Franc" +msgstr "CDF - Congolese Franc" + +#: includes/common/payment-gateways/stripe.php:76 +msgid "CAD - Canadian Dollar*" +msgstr "CAD - Canadese Dollar*" + +#: includes/common/payment-gateways/stripe.php:75 +msgid "BZD - Belize Dollar" +msgstr "BZD - Belizaanse dollar" + +#: includes/common/payment-gateways/stripe.php:74 +msgid "BWP - Botswana Pula" +msgstr "BWP - Botswaanse Pula" + +#: includes/common/payment-gateways/stripe.php:73 +msgid "BSD - Bahamian Dollar" +msgstr "BSD - Bahamaanse Dollar" + +#: includes/common/payment-gateways/stripe.php:72 +msgid "BRL - Brazilian Real*" +msgstr "BRL - Braziliaanse Reaal*" + +#: includes/common/payment-gateways/stripe.php:71 +msgid "BOB - Bolivian Boliviano*" +msgstr "BOB - Boliviaanse Boliviano*" + +#: includes/common/payment-gateways/stripe.php:70 +msgid "BND - Brunei Dollar" +msgstr "BND - Brunei Dollar" + +#: includes/common/payment-gateways/stripe.php:69 +msgid "BMD - Bermudian Dollar" +msgstr "BMD - Bermuda Dollar" + +#: includes/common/payment-gateways/stripe.php:68 +msgid "BIF - Burundian Franc" +msgstr "BIF - Burundese Frank" + +#: includes/common/payment-gateways/stripe.php:67 +msgid "BGN - Bulgarian Lev" +msgstr "BGN - Bulgaarse Lev" + +#: includes/common/payment-gateways/stripe.php:66 +msgid "BDT - Bangladeshi Taka" +msgstr "BDT - Bangladeshi Taka" + +#: includes/common/payment-gateways/stripe.php:65 +msgid "BBD - Barbadian Dollar" +msgstr "BBD - Barbadian Dollar" + +#: includes/common/payment-gateways/stripe.php:64 +msgid "BAM - Bosnia & Herzegovina Convertible Mark" +msgstr "BAM - Bosnia & Herzegovina Convertible Mark" + +#: includes/common/payment-gateways/stripe.php:63 +msgid "AZN - Azerbaijani Manat" +msgstr "AZN - Azerbaijani Manat" + +#: includes/common/payment-gateways/stripe.php:62 +msgid "AWG - Aruban Florin" +msgstr "AWG - Aruban Florin" + +#: includes/common/payment-gateways/stripe.php:61 +msgid "AUD - Australian Dollar*" +msgstr "AUD - Australian Dollar*" + +#: includes/common/payment-gateways/stripe.php:60 +msgid "ARS - Argentine Peso*" +msgstr "ARS - Argentine Peso*" + +#: includes/common/payment-gateways/stripe.php:59 +msgid "AOA - Angolan Kwanza*" +msgstr "AOA - Angolan Kwanza*" + +#: includes/common/payment-gateways/stripe.php:58 +msgid "ANG - Netherlands Antillean Gulden" +msgstr "ANG - Netherlands Antillean Gulden" + +#: includes/common/payment-gateways/stripe.php:57 +msgid "AMD - Armenian Dram" +msgstr "AMD - Armenian Dram" + +#: includes/common/payment-gateways/stripe.php:56 +msgid "ALL - Albanian Lek" +msgstr "ALL - Albanian Lek" + +#: includes/common/payment-gateways/stripe.php:55 +msgid "AFN - Afghan Afghani*" +msgstr "AFN - Afghan Afghani*" + +#: includes/common/payment-gateways/stripe.php:54 +msgid "AED - United Arab Emirates Dirham" +msgstr "AED - United Arab Emirates Dirham" + +#: includes/common/payment-gateways/skrill.php:345 +msgid "Skrill balance, Credit Card, or Instant Transfer" +msgstr "Skrill, Kredietkaart of Overschrijving" + +#: includes/common/payment-gateways/skrill.php:327 +msgid "Skrill IPN message received." +msgstr "Skrill IPN boodschap ontvangen." + +#: includes/common/payment-gateways/skrill.php:283 +msgid "Skrill" +msgstr "Skrill" + +#: includes/common/payment-gateways/skrill.php:278 +msgid "Pending payment" +msgstr "Wachtend op betaling" + +#: includes/common/payment-gateways/skrill.php:144 +msgid "The secret word must match the word submitted in the \"Merchant Tools\" section of your Skrill account." +msgstr "Het geheime woord moet overeenkomen met het woord in het onderdeel \"Merchant Tools\" van uw Skrill account." + +#: includes/common/payment-gateways/skrill.php:134 +msgid "You must use your valid Skrill merchant email. Instructions »" +msgstr "U moet een geldige Skrill e-mail gebruiken. Instructies »" + +#: includes/common/payment-gateways/skrill.php:133 +msgid "Skrill Email" +msgstr "Skrill Email" + +#: includes/common/payment-gateways/skrill.php:123 +msgid "Resell your inventory via Skrill.com (Moneybookers)" +msgstr "Verkoop uw voorraad via Skrill.com (Moneybookers)" + +#: includes/common/payment-gateways/skrill.php:95 +msgid "ZAR - South-African Rand" +msgstr "ZAR - South-African Rand" + +#: includes/common/payment-gateways/skrill.php:93 +msgid "TWD - Taiwan Dollar" +msgstr "TWD - Taiwan Dollar" + +#: includes/common/payment-gateways/skrill.php:92 +msgid "TRY - New Turkish Lira" +msgstr "TRY - New Turkish Lira" + +#: includes/common/payment-gateways/skrill.php:91 +msgid "TND - Tunisian Dinar" +msgstr "TND - Tunisian Dinar" + +#: includes/common/payment-gateways/skrill.php:90 +msgid "THB - Thailand Baht" +msgstr "THB - Thailand Baht" + +#: includes/common/payment-gateways/skrill.php:89 +msgid "SKK - Slovakian Koruna" +msgstr "SKK - Slovakian Koruna" + +#: includes/common/payment-gateways/skrill.php:86 +#: includes/common/payment-gateways/stripe.php:158 +msgid "SAR - Saudi Riyal" +msgstr "SAR - Saudi Riyal" + +#: includes/common/payment-gateways/skrill.php:85 +msgid "RSD - Serbian dinar" +msgstr "RSD - Serbian dinar" + +#: includes/common/payment-gateways/skrill.php:83 +msgid "QAR - Qatari Rial" +msgstr "QAR - Qatari Rial" + +#: includes/common/payment-gateways/skrill.php:81 +msgid "OMR - Omani Rial" +msgstr "OMR - Omani Rial" + +#: includes/common/payment-gateways/skrill.php:80 +msgid "NOK - Norwegian Krone " +msgstr "NOK - Norwegian Krone " + +#: includes/common/payment-gateways/skrill.php:78 +#: includes/common/payment-gateways/stripe.php:138 +msgid "MYR - Malaysian Ringgit" +msgstr "MYR - Malaysian Ringgit" + +#: includes/common/payment-gateways/skrill.php:77 +#: includes/common/payment-gateways/stripe.php:127 +msgid "MAD - Moroccan Dirham" +msgstr "MAD - Moroccan Dirham" + +#: includes/common/payment-gateways/skrill.php:74 +msgid "KRW - South-Korean Won" +msgstr "KRW - South-Korean Won" + +#: includes/common/payment-gateways/skrill.php:72 +msgid "JOD - Jordanian Dinar" +msgstr "JOD - Jordanian Dinar" + +#: includes/common/payment-gateways/skrill.php:70 +msgid "INR - Indian Rupee" +msgstr "INR - Indian Rupee" + +#: includes/common/payment-gateways/skrill.php:63 +msgid "EEK - Estonian Kroon" +msgstr "EEK - Estonian Kroon" + +#: includes/common/payment-gateways/skrill.php:56 +msgid "AED - Utd. Arab Emir. Dirham" +msgstr "AED - Utd. Arab Emir. Dirham" + +#: includes/common/payment-gateways/skrill.php:52 +msgid "Turkish" +msgstr "Turks" + +#: includes/common/payment-gateways/skrill.php:51 +msgid "Swedish" +msgstr "Zweeds" + +#: includes/common/payment-gateways/skrill.php:50 +msgid "Spanish" +msgstr "Spaans" + +#: includes/common/payment-gateways/skrill.php:49 +msgid "Russian" +msgstr "Russisch" + +#: includes/common/payment-gateways/skrill.php:48 +msgid "Romainian" +msgstr "Roemeens" + +#: includes/common/payment-gateways/skrill.php:47 +msgid "Polish" +msgstr "Pools" + +#: includes/common/payment-gateways/skrill.php:46 +msgid "Italian" +msgstr "Italiaans" + +#: includes/common/payment-gateways/skrill.php:45 +msgid "Greek" +msgstr "Grieks" + +#: includes/common/payment-gateways/skrill.php:44 +msgid "German" +msgstr "Duits" + +#: includes/common/payment-gateways/skrill.php:43 +msgid "French" +msgstr "Frans" + +#: includes/common/payment-gateways/skrill.php:42 +msgid "Finnish" +msgstr "Fins" + +#: includes/common/payment-gateways/skrill.php:41 +msgid "English" +msgstr "Engels" + +#: includes/common/payment-gateways/skrill.php:40 +msgid "Dutch" +msgstr "Nederlands" + +#: includes/common/payment-gateways/skrill.php:39 +msgid "Danish" +msgstr "Deens" + +#: includes/common/payment-gateways/skrill.php:38 +msgid "Czech" +msgstr "Tsjechisch" + +#: includes/common/payment-gateways/skrill.php:37 +msgid "Chinese" +msgstr "Chinees" + +#: includes/common/payment-gateways/simplify.php:201 +msgid "There was an error processing your card: %s. Please re-enter your credit card info and try again." +msgstr "Er is een fout opgetreden bij de verwerking van uw kaart: %s. Gelieve uw gegevens opnieuw in te geven en terug te proberen." + +#: includes/common/payment-gateways/pin.php:278 +msgid "
  • There was an error processing your card: \"%s\". Please verify your credit card information and try again.
  • " +msgstr "
  • Er is een fout opgetreden bij het verwerken van uw kaart: \"%s\". Gelieve uw kaartgegevens na te kijken op nieuw te proberen.
  • " + +#: includes/common/payment-gateways/pin.php:274 +msgid "
  • There was an error processing your card. Please verify your credit card information and try again.
  • " +msgstr "
  • Er is een fout opgetreden bij het verwerken van uw kaart. Gelieve uw kaartgegevens te controleren en opnieuw proberen.
  • " + +#: includes/common/payment-gateways/pin.php:177 +#: includes/common/payment-gateways/stripe.php:279 +msgid "Publishable Key" +msgstr "Publiceerbare sleutel" + +#: includes/common/payment-gateways/pin.php:163 +msgid "API Credentials?" +msgstr "API gegevens?" + +#: includes/common/payment-gateways/pin.php:147 +msgid "PIN makes it easy to start accepting credit card payments with Australia’s first all-in-one online payment system. Accept all major credit cards directly on your site. Your sales proceeds are deposited to any Australian bank account, no merchant account required." +msgstr "PIN maakt het eenvoudig om betalingen met kredietkaarten makkelijk te aanvaarden met het eerste alles-in-één online betaalsysteem in Australië. Aanvaard alle bekende kredietkaarten direct via uw website. Uw verkopen worden direct overgemaakt op een Australische bankrekening, zonder dat u een speciale account nodig heeft." + +#: includes/common/payment-gateways/pin.php:57 +#: includes/common/payment-gateways/stripe.php:179 +msgid "USD - United States Dollar" +msgstr "USD - US Dollar" + +#: includes/common/payment-gateways/paypal-payflow.php:455 +msgid "Email Footer" +msgstr "E-mail voettekst" + +#: includes/common/payment-gateways/paypal-payflow.php:445 +msgid "Email Header" +msgstr "E-mail hoofding" + +#: includes/common/payment-gateways/paypal-payflow.php:416 +msgid "Partner" +msgstr "Partner" + +#: includes/common/payment-gateways/paypal-payflow.php:409 +msgid "Vendor" +msgstr "Leverancier" + +#: includes/common/payment-gateways/paypal-express.php:852 +#: includes/common/payment-gateways/paypal-express.php:1126 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences\t section of your Profile." +msgstr "De betaling is in behandeling omdat de klant niet een verzendadres heeft bevestigd en jou betalingsontvangst voorkeuren zo zijn ingesteld dat je handmatig deze betalingen wilt accepteren of weigeren. Om dit te veranderen, ga naar het Voorkeuren\t onderdeel van jou Profiel." + +#: includes/common/payment-gateways/paypal-express.php:749 +msgid "Page Background Color" +msgstr "Achtergrondkleur Pagina" + +#: includes/common/payment-gateways/paypal-express.php:744 +msgid "Header Background Color" +msgstr "Header Achtergrondkleur" + +#: includes/common/payment-gateways/paypal-express.php:739 +msgid "Header Border Color" +msgstr "Header Randkleur" + +#: includes/common/payment-gateways/paypal-express.php:734 +msgid "Header Image" +msgstr "Header Foto" + +#: includes/common/payment-gateways/paypal-express.php:680 +msgid "Locale" +msgstr "Lokale" + +#: includes/common/payment-gateways/paypal-express.php:624 +#: includes/common/payment-gateways/paypal-express.php:658 +msgid "Merchant Email" +msgstr "Winkel-eigenaar Email" + +#: includes/common/payment-gateways/paypal-express.php:645 +msgid "Paypal Express Checkout Settings" +msgstr "Paypal Express Checkout Instellingen" + +#: includes/common/payment-gateways/paypal-express.php:603 +msgid "Paypal Express Network Settings" +msgstr "Paypal Express Netwerk Instellingen" + +#: includes/common/payment-gateways/paypal-chained-payments.php:861 +msgid "Application ID (Live)" +msgstr "Applicatie ID (Live)" + +#: includes/common/payment-gateways/paypal-chained-payments.php:854 +msgid "Signature (Live)" +msgstr "Handtekening (Live)" + +#: includes/common/payment-gateways/paypal-chained-payments.php:847 +msgid "API Password (Live)" +msgstr "API Wachtwoord (Live)" + +#: includes/common/payment-gateways/paypal-chained-payments.php:839 +msgid "API Username (Live)" +msgstr "API Gebruikersnaam (Live)" + +#: includes/common/payment-gateways/paypal-chained-payments.php:832 +msgid "Signature (Sandbox)" +msgstr "Handtekening (Sandbox)" + +#: includes/common/payment-gateways/paypal-chained-payments.php:825 +msgid "API Password (Sandbox)" +msgstr "API Wachtwoord (Sandbox)" + +#: includes/common/payment-gateways/paypal-chained-payments.php:817 +msgid "API Username (Sandbox)" +msgstr "API Gebruikersnaam (Sandbox)" + +#: includes/common/payment-gateways/paypal-chained-payments.php:799 +msgid "This message is displayed at the top of the gateway settings page to store admins. It's a good place to inform them of your fees or put any sales messages." +msgstr "Dit bericht word weergegeven bovenaan de pagina gateway instellingen bij winkel administrators. Het is een goede plek om hun te informeren voor je toeslagen of plaats hier verkoop berichten." + +#: includes/common/payment-gateways/paypal-chained-payments.php:787 +msgid "Please enter your PayPal email address or business ID you want to recieve fees at." +msgstr "Voer hier alsjeblieft je PayPal email adres of bedrijf ID in waar je heffingen wilt ontvangen." + +#: includes/common/payment-gateways/paypal-chained-payments.php:786 +msgid "PayPal E-mail" +msgstr "PayPal email" + +#: includes/common/payment-gateways/paypal-chained-payments.php:772 +msgid "Fees to Collect (%)" +msgstr "Te innen Heffingen (%)" + +#: includes/common/payment-gateways/paypal-chained-payments.php:375 +#: includes/public/class-mp-checkout.php:341 +msgid "Email Address" +msgstr "Email adres" + +#: includes/common/payment-gateways/paypal-chained-payments.php:299 +msgid "Sorry, your order was not completed." +msgstr "Excuses, uw order is niet voltooid." + +#: includes/common/payment-gateways/paypal-chained-payments.php:126 +#: includes/common/payment-gateways/paypal-express.php:780 +msgid "You will be redirected to the PayPal site to finalize your payment." +msgstr "U wordt doorgestuurd naar PayPal om uw betaling af te handelen." + +#: includes/common/payment-gateways/paypal-chained-payments.php:90 +#: includes/common/payment-gateways/skrill.php:94 +msgid "USD - U.S. Dollar" +msgstr "USD - Amerikaanse Dollar" + +#: includes/common/payment-gateways/paypal-chained-payments.php:89 +msgid "TRY - Turkish lira" +msgstr "TRY - Turkse lira" + +#: includes/common/payment-gateways/paypal-chained-payments.php:88 +#: includes/common/payment-gateways/stripe.php:170 +msgid "THB - Thai Baht" +msgstr "THB - Thai Baht" + +#: includes/common/payment-gateways/paypal-chained-payments.php:87 +msgid "TWD - Taiwan New Dollars" +msgstr "TWD - Taiwanese Dollars" + +#: includes/common/payment-gateways/paypal-chained-payments.php:86 +#: includes/common/payment-gateways/pin.php:59 +#: includes/common/payment-gateways/skrill.php:88 +#: includes/common/payment-gateways/stripe.php:162 +msgid "SGD - Singapore Dollar" +msgstr "SGD - Singapore Dollar" + +#: includes/common/payment-gateways/paypal-chained-payments.php:84 +msgid "RUB - Russian Rubles" +msgstr "RUB - Russische Roebels" + +#: includes/common/payment-gateways/paypal-chained-payments.php:82 +msgid "PHP - Philippine Pesos" +msgstr "PHP - Filipijnse Peso" + +#: includes/common/payment-gateways/paypal-chained-payments.php:81 +#: includes/common/payment-gateways/pin.php:58 +#: includes/common/payment-gateways/skrill.php:79 +#: includes/common/payment-gateways/stripe.php:145 +msgid "NZD - New Zealand Dollar" +msgstr "NZD - Nieuw Zeelandse Dollar" + +#: includes/common/payment-gateways/paypal-chained-payments.php:79 +msgid "MXN - Mexican Peso" +msgstr "MXN - Mexicaanse Peso" + +#: includes/common/payment-gateways/paypal-chained-payments.php:78 +msgid "MYR - Malaysian Ringgits" +msgstr "MYR - Maleisische ringgit" + +#: includes/common/payment-gateways/paypal-chained-payments.php:77 +#: includes/common/payment-gateways/pin.php:64 +#: includes/common/payment-gateways/skrill.php:73 +#: includes/common/payment-gateways/stripe.php:112 +msgid "JPY - Japanese Yen" +msgstr "JPY - Japans Yen" + +#: includes/common/payment-gateways/paypal-chained-payments.php:75 +#: includes/common/payment-gateways/pin.php:63 +#: includes/common/payment-gateways/skrill.php:66 +#: includes/common/payment-gateways/stripe.php:102 +msgid "HKD - Hong Kong Dollar" +msgstr "HKD - Hong Kong Dollar" + +#: includes/common/payment-gateways/paypal-chained-payments.php:73 +msgid "GBP - Pound Sterling" +msgstr "GBP - Britse Pond" + +#: includes/common/payment-gateways/paypal-chained-payments.php:68 +#: includes/common/payment-gateways/pin.php:62 +#: includes/common/payment-gateways/skrill.php:59 +msgid "CAD - Canadian Dollar" +msgstr "CAD - Canadese Dollar" + +#: includes/common/payment-gateways/paypal-chained-payments.php:67 +msgid "BRL - Brazilian Real" +msgstr "BRL - Braziliaanse Real" + +#: includes/common/payment-gateways/paypal-chained-payments.php:66 +#: includes/common/payment-gateways/pin.php:56 +#: includes/common/payment-gateways/skrill.php:57 +msgid "AUD - Australian Dollar" +msgstr "AUD - Australische Dollar" + +#: includes/common/payment-gateways/paymill.php:288 +msgid "There was an error processing your card: \"%s\". Please try again." +msgstr "Er was een error opgetreden tijdens het verwerken van jou kaart: \"%s\". Probeer het alsjeblieft opnieuw." + +#: includes/common/payment-gateways/paymill.php:163 +msgid "When running on a live site, Paymill recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "Wanneer je een Live omgeving heb, raad Paymill het aan om een HTTPS verbinding te hebben op de betaal pagina van je website." + +#: includes/common/payment-gateways/paymill.php:161 +#: includes/common/payment-gateways/pin.php:157 +#: includes/common/payment-gateways/simplify.php:103 +#: includes/common/payment-gateways/stripe.php:260 +#: includes/common/payment-gateways/wepay.php:153 +msgid "Force SSL?" +msgstr "HTTPS afdwingen?" + +#: includes/common/payment-gateways/paymill.php:151 +msgid "Accept Visa, Mastercard, Maestro UK, Discover and Solo cards directly on your site. You don't need a merchant account or gateway. Credit cards go directly to Paymill's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "Accepteer Visa, Mastercard, Maestro UK, Discover en Solo kaarten direct op je website. Je heb geen merchant account or gateway nodig. Credit cards worden direct doorgestuurd naar Paymill's beveiligde omgeving, zou worden jou servers nooit gebruikt dus hoef je niet aan specifieke certificaten te voldoen." + +#: includes/common/payment-gateways/paymill.php:131 +msgid "CVV2" +msgstr "CVV2" + +#: includes/common/payment-gateways/paymill.php:72 +#: includes/common/payment-gateways/pin.php:61 +#: includes/common/payment-gateways/skrill.php:65 +#: includes/common/payment-gateways/stripe.php:95 +msgid "GBP - British Pound" +msgstr "GBP - British Pound" + +#: includes/common/payment-gateways/paymill.php:71 +#: includes/common/payment-gateways/stripe.php:173 +msgid "TRY - Turkish Lira" +msgstr "TRY - Turkse Lira" + +#: includes/common/payment-gateways/paymill.php:70 +#: includes/common/payment-gateways/paypal-chained-payments.php:85 +#: includes/common/payment-gateways/skrill.php:87 +#: includes/common/payment-gateways/stripe.php:161 +msgid "SEK - Swedish Krona" +msgstr "SEK - Zweedse Kroon" + +#: includes/common/payment-gateways/paymill.php:69 +#: includes/common/payment-gateways/skrill.php:84 +msgid "RON - Romanian Leu New" +msgstr "RON - Roemeense Leu" + +#: includes/common/payment-gateways/paymill.php:68 +#: includes/common/payment-gateways/paypal-chained-payments.php:83 +#: includes/common/payment-gateways/skrill.php:82 +msgid "PLN - Polish Zloty" +msgstr "PLN - Poolse Zloty" + +#: includes/common/payment-gateways/paymill.php:67 +#: includes/common/payment-gateways/paypal-chained-payments.php:80 +#: includes/common/payment-gateways/stripe.php:143 +msgid "NOK - Norwegian Krone" +msgstr "NOK - Noorse Kroon" + +#: includes/common/payment-gateways/paymill.php:66 +#: includes/common/payment-gateways/skrill.php:75 +#: includes/common/payment-gateways/stripe.php:125 +msgid "LTL - Lithuanian Litas" +msgstr "LTL - Litouwse litas" + +#: includes/common/payment-gateways/paymill.php:65 +#: includes/common/payment-gateways/paypal-chained-payments.php:69 +#: includes/common/payment-gateways/skrill.php:60 +#: includes/common/payment-gateways/stripe.php:78 +msgid "CHF - Swiss Franc" +msgstr "CHF - Zwitserse Frank" + +#: includes/common/payment-gateways/paymill.php:64 +#: includes/common/payment-gateways/skrill.php:76 +msgid "LVL - Latvian Lat" +msgstr "LVL - Letse Llat" + +#: includes/common/payment-gateways/paymill.php:63 +#: includes/common/payment-gateways/paypal-chained-payments.php:74 +#: includes/common/payment-gateways/skrill.php:69 +msgid "ILS - Israeli Shekel" +msgstr "Israel Shekel" + +#: includes/common/payment-gateways/paymill.php:62 +#: includes/common/payment-gateways/skrill.php:71 +msgid "ISK - Iceland Krona" +msgstr "ISK - IJslandse Kroon" + +#: includes/common/payment-gateways/paymill.php:61 +#: includes/common/payment-gateways/paypal-chained-payments.php:76 +#: includes/common/payment-gateways/skrill.php:68 +#: includes/common/payment-gateways/stripe.php:106 +msgid "HUF - Hungarian Forint" +msgstr "HUF - Hongaarse Forint" + +#: includes/common/payment-gateways/paymill.php:60 +#: includes/common/payment-gateways/paypal-chained-payments.php:71 +#: includes/common/payment-gateways/skrill.php:62 +#: includes/common/payment-gateways/stripe.php:86 +msgid "DKK - Danish Krone" +msgstr "DKK - Deense Kroon" + +#: includes/common/payment-gateways/paymill.php:59 +#: includes/common/payment-gateways/skrill.php:67 +#: includes/common/payment-gateways/stripe.php:104 +msgid "HRK - Croatian Kuna" +msgstr "HRK - Kroatische Kuna" + +#: includes/common/payment-gateways/paymill.php:58 +#: includes/common/payment-gateways/paypal-chained-payments.php:70 +#: includes/common/payment-gateways/skrill.php:61 +msgid "CZK - Czech Koruna" +msgstr "CZK - Tsjechische kroon" + +#: includes/common/payment-gateways/paymill.php:57 +#: includes/common/payment-gateways/skrill.php:58 +msgid "BGN - Bulgarian Leva" +msgstr "BGN - Bulgaarse Leva" + +#: includes/common/payment-gateways/payflow/class-mp-gateway-worker-payflow.php:123 +msgid "There was an error connecting to PayPal. Please try again." +msgstr "Er was een fout tijdens het verbinding maken naar PayPal. Probeer het opnieuw." + +#: includes/common/payment-gateways/payfast.php:344 +msgid "This setting will log all PayFast communication to the \"payfast.log\" file." +msgstr "Deze instelling zorgt er voor dat alle communicatie van PayFast word gelogd in het bestand \"payfast.log\"." + +#: includes/common/payment-gateways/payfast.php:342 +msgid "Log Debugging Info?" +msgstr "Debugging informatie loggen?" + +#: includes/common/payment-gateways/payfast.php:335 +msgid "DO NOT INPUT A VALUE UNLESS YOU HAVE SET ONE IN THE SETTINGS SECTION OF YOUR PAYFAST SETTINGS." +msgstr "VOER GEEN WAARDE IN TENZIJ JE ER ÉÉN HEB INGEVULD IN DE IINSTELLINGEN VAN PAYFAST." + +#: includes/common/payment-gateways/payfast.php:333 +msgid "PayFast Passphrase" +msgstr "PayFast Wachtwoord" + +#: includes/common/payment-gateways/payfast.php:323 +msgid "You can find your credentials on your integration page." +msgstr "Je kan je inlog gegevens vinden op de integratie pagina." + +#: includes/common/payment-gateways/payfast.php:321 +msgid "PayFast Merchant Credentials" +msgstr "PayFast Merchant Inlog Gegevens" + +#: includes/common/payment-gateways/payfast.php:311 +msgid "PayFast Mode" +msgstr "PayFast Modus" + +#: includes/common/payment-gateways/payfast.php:308 +msgid "PayFast is a payments processing service for South Africa. We make it safe for buyers to send money and easy for sellers to receive money. More Info »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:306 +msgid "PayFast Checkout Settings" +msgstr "PayFast Checkout Instellingen" + +#: includes/common/payment-gateways/payfast.php:285 +msgid "Your payment via PayFast for this order totaling %s is complete. The transaction number is %s." +msgstr "Uw betaling via PayFast voor deze bestelling totaal %s is compleet. Het transactie-nummer is %s." + +#: includes/common/payment-gateways/payfast.php:278 +msgid "Your payment via PayFast for this order totaling %s is not yet complete. Here is the latest status:" +msgstr "Uw betaling via PayFast voor deze bestelling totaal %s is nog niet compleet. Hier is de laatste status:" + +#: includes/common/payment-gateways/payfast.php:124 +msgid "Your PayFast transaction has been canceled." +msgstr "Uw PayFast transactie is geannuleerd." + +#: includes/common/payment-gateways/payfast.php:82 +#: includes/common/payment-gateways/payfast.php:83 +msgid "PayFast" +msgstr "PayFast" + +#: includes/common/payment-gateways/mollie.php:157 +msgid "API error: - \"%s\"" +msgstr "API fout:: - \"%s\"" + +#: includes/common/payment-gateways/mollie.php:198 +msgid "The payment request is under process" +msgstr "Het betalingsverzoek is in behandeling" + +#: includes/common/payment-gateways/mollie.php:140 +msgid "Order: #" +msgstr "Bestelling: #" + +#: includes/common/payment-gateways/mollie.php:116 +msgid "You will be redirected to the Mollie site to finalize your payment." +msgstr "U wordt doorgestuurd naar de website van Mollie om uw betaling af te ronden." + +#: includes/common/payment-gateways/mollie.php:73 +msgid "%sMollie%s provides a fully PCI Compliant and secure way to collect payments via iDeal, Credit Card, Bancontact / Mister Cash, SOFORT Banking, Overbooking, Bitcoin, PayPal, paysafecard and AcceptEmail." +msgstr "%sMollie%s biedt een volledig PCI Compliant en veilige manier om betalingen te ontvangen via iDeal, Credit Card, Bancontact / Mister Cash, SOFORT Banking, overboeking, Bitcoin, PayPal, paysafecard en AcceptEmail." + +#: includes/common/payment-gateways/mollie.php:53 +#: includes/common/payment-gateways/mollie.php:54 +#: includes/common/payment-gateways/mollie.php:195 +#: includes/common/payment-gateways/mollie.php:245 +msgid "Mollie" +msgstr "Mollie" + +#: includes/common/payment-gateways/mollie.php:50 +#: includes/common/payment-gateways/paymill.php:56 +#: includes/common/payment-gateways/paypal-chained-payments.php:72 +#: includes/common/payment-gateways/pin.php:60 +#: includes/common/payment-gateways/skrill.php:64 +#: includes/common/payment-gateways/stripe.php:92 +msgid "EUR - Euro" +msgstr "EUR - Euro" + +#: includes/common/payment-gateways/mijireh.php:306 +msgid "Access Key" +msgstr "Toegangssleutel" + +#: includes/common/payment-gateways/mijireh.php:300 +msgid "You must login to the Mijireh.com dashboard to obtain the Access Key." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:299 +msgid "Credentials" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:289 +msgid "Mijireh Checkout provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:269 +msgid "Mijireh Error: " +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:89 +msgid "You will be redirected to the Mijireh.com site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:87 +msgid "Your Mijireh transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:42 +#: includes/common/payment-gateways/mijireh.php:43 +#: includes/common/payment-gateways/mijireh.php:324 +msgid "Mijireh" +msgstr "Mijireh" + +#: includes/common/payment-gateways/manual-payments.php:145 +msgid "These are the manual payment instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:189 +msgid "This is the email text to send to those who have made free order checkouts. You should include your free order instructions / information here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:183 +msgid "This is the free order information to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:182 +msgid "Confirmation User Information" +msgstr "Bevestig gebruikers informatie" + +#: includes/common/payment-gateways/free_orders.php:177 +msgid "This is the information to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:163 +msgid "If enabled, all free orders will be automatically marked as paid." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:159 +msgid "Payment Status" +msgstr "Betaling Status" + +#: includes/common/payment-gateways/free_orders.php:149 +msgid "This gateway is automatically activated if order totalling 0 and it can't be disabled" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:35 +#: includes/common/payment-gateways/free_orders.php:36 +#: includes/common/payment-gateways/free_orders.php:89 +msgid "Free Order" +msgstr "Gratis bestelling" + +#: includes/common/payment-gateways/free_orders.php:34 +#: includes/common/payment-gateways/free_orders.php:197 +msgid "Free Orders" +msgstr "Gratis bestellingen" + +#: includes/common/payment-gateways/eway31.php:515 +msgid "Sandbox API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:266 +#: includes/common/payment-gateways/eway31.php:542 +msgid "eWay Rapid 3.1 Payments (beta)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:403 +msgid "Hosted Payment Page Language" +msgstr "" + +#: includes/common/payment-gateways/eway.php:373 +msgid "Note when testing in sandbox mode it will use the default eWay test API credentials. Also, please note that cart total needs to be a whole number (e.g. 10.00) in order to generate a successful transaction, otherwise the transaction will fail." +msgstr "" + +#: includes/common/payment-gateways/eway.php:267 +msgid "You will be redirected to https://www.eway.com.au to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:380 +msgid "You have chosen to checkout using %s. Please confirm your order details and click \"Submit Order\" when finished." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:272 +#: includes/common/payment-gateways/paymill.php:131 +#: includes/common/payment-gateways/stripe.php:231 +msgid "Security Code " +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Enter in MM/YYYY or MM/YY format" +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Expiration" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:321 +msgid "Delim Data" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:307 +#: includes/common/payment-gateways/paypal-payflow.php:456 +msgid "This text will appear as the footer of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:287 +#: includes/common/payment-gateways/paypal-payflow.php:440 +msgid "Email Customer (on success)" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:278 +msgid "Authorize.net default is \",\". Otherwise, get this from your credit card processor. If the transactions are not going through, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:277 +msgid "Delimeter Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:193 +msgid "Held For Review" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:310 +#: includes/common/payment-gateways/payfast.php:314 +msgid "Test" +msgstr "Test" + +#: includes/common/payment-gateways/_ideal.php:300 +#: includes/common/payment-gateways/pin.php:170 +#: includes/common/payment-gateways/stripe.php:272 +msgid "Secret Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:283 +msgid "Select Your Bank" +msgstr "Kies uw Bank" + +#: includes/common/payment-gateways/_ideal.php:97 +msgid "Your payment will be processed by the iDEAL network" +msgstr "Uw betaling zal worden gedaan via iDEAL" + +#: includes/common/payment-gateways/_cubepoints.php:208 +msgid "These are the CubePoints to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:203 +msgid "These are the CubePoints instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:266 +msgid "If enabled, all API calls will be made to https://test.bitpay.com." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:263 +msgid "Use Test Mode?" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:259 +msgid "If checked, response fron bitpay will be stored in log file, keep it disabled unless required." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:256 +msgid "Enable Debug Log" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:249 +msgid "Full Notifications" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:231 +#: includes/common/payment-gateways/eway31.php:499 +#: includes/common/payment-gateways/eway31.php:526 +#: includes/common/payment-gateways/mollie.php:83 +#: includes/common/shipping-modules/mp-fedex.php:269 +msgid "API Key" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:222 +msgid "You can now accept a payment from any country on Earth, with no risk of fraud. To use Bitpay, you need to signup on Bitpay. \\n After completing the signup process, you can get api keys at Bitpay API key. You can read more about Bitpay at Bitpay API. \\n Bitpay requires SSL(https) for payment notifications to work." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:61 +msgid "You will be redirected to bitpay.com, for bitcoin payment. It is completely safe." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:346 +msgid "You must login to the 2Checkout vendor dashboard to obtain the seller ID and secret word. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:345 +#: includes/common/payment-gateways/authorizenet-aim.php:239 +#: includes/common/payment-gateways/paymill.php:168 +#: includes/common/payment-gateways/paypal-express.php:704 +#: includes/common/payment-gateways/simplify.php:80 +#: includes/common/payment-gateways/stripe.php:265 +#: includes/common/payment-gateways/wepay.php:158 +msgid "API Credentials" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:325 +#: includes/common/payment-gateways/_bitpay.php:220 +#: includes/common/payment-gateways/_cubepoints.php:185 +#: includes/common/payment-gateways/_ideal.php:268 +#: includes/common/payment-gateways/_payway.php:255 +#: includes/common/payment-gateways/authorizenet-aim.php:219 +#: includes/common/payment-gateways/eway.php:352 +#: includes/common/payment-gateways/eway31.php:460 +#: includes/common/payment-gateways/free_orders.php:147 +#: includes/common/payment-gateways/manual-payments.php:126 +#: includes/common/payment-gateways/mijireh.php:287 +#: includes/common/payment-gateways/mollie.php:71 +#: includes/common/payment-gateways/paymill.php:149 +#: includes/common/payment-gateways/paypal-chained-payments.php:344 +#: includes/common/payment-gateways/paypal-payflow.php:376 +#: includes/common/payment-gateways/pin.php:145 +#: includes/common/payment-gateways/simplify.php:69 +#: includes/common/payment-gateways/skrill.php:121 +#: includes/common/payment-gateways/stripe.php:249 +#: includes/common/payment-gateways/wepay.php:119 +#: includes/common/shipping-modules/mp-fedex.php:243 +#: includes/common/shipping-modules/mp-flat-rate.php:63 +#: includes/common/shipping-modules/mp-pickup.php:140 +#: includes/common/shipping-modules/mp-table-rate.php:94 +#: includes/common/shipping-modules/mp-ups.php:122 +#: includes/common/shipping-modules/mp-usps.php:167 +#: includes/common/shipping-modules/mp-weight-rate.php:110 +msgid "%s Settings" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:136 +msgid "You will be redirected to the 2Checkout site to finalize your payment." +msgstr "" + +#: includes/common/helpers.php:169 includes/public/class-mp-checkout.php:1277 +msgid "Billing" +msgstr "Facturering" + +#: includes/common/helpers.php:144 +msgid "FREE" +msgstr "GRATIS" + +#: includes/common/helpers.php:134 +msgid "Coupons:" +msgstr "Kortingsbonen:" + +#: includes/common/helpers.php:95 +msgid "Qty" +msgstr "" + +#: includes/common/helpers.php:94 +msgid "Sku" +msgstr "" + +#: includes/common/data.php:59 +msgid "Zip Code" +msgstr "Postcode" + +#: includes/common/class-mp-taxes.php:336 +msgid "Standard Table" +msgstr "" + +#: includes/common/class-mp-product.php:2698 +msgid "Tweet" +msgstr "Tweet" + +#: includes/common/class-mp-product.php:2321 +msgid "Notification Preferences: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2320 +msgid "Edit Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2318 +msgid "Link: %s

    " +msgstr "" + +#: includes/common/class-mp-product.php:2317 +msgid "Current Inventory: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2316 +msgid "Product: %s" +msgstr "Product: %s" + +#: includes/common/class-mp-product.php:2314 +msgid "This message is being sent to notify you of low stock of a product in your online store according to your preferences.

    " +msgstr "" + +#: includes/common/class-mp-product.php:1817 +msgid "" +msgstr "" + +#: includes/common/class-mp-product.php:1427 +#: includes/common/class-mp-product.php:1430 +msgid "(tax incl.)" +msgstr "(incl. btw)" + +#: includes/common/class-mp-product.php:1422 +#: includes/common/class-mp-product.php:1425 +msgid "(tax excl.)" +msgstr "(btw excl.)" + +#: includes/common/class-mp-product.php:1300 +#: includes/common/class-mp-product.php:1315 +msgid "%s each" +msgstr "" + +#: includes/common/class-mp-product.php:988 +msgid "Choose Options" +msgstr "" + +#: includes/common/class-mp-product.php:526 +msgid "Choose a %s" +msgstr "Kies een %s" + +#: includes/common/class-mp-product.php:284 +#: includes/common/class-mp-product.php:292 +#: includes/common/class-mp-product.php:615 +msgid "We're sorry, we only have %d of this item in stock right now." +msgstr "" + +#: includes/common/class-mp-order.php:1456 +msgid "Shipped: Track Shipment" +msgstr "Volg Bestelling" + +#: includes/common/class-mp-order.php:1049 +msgid "Order Received" +msgstr "Bestelling ontvangen" + +#: includes/common/class-mp-order.php:1014 +msgid "In Process" +msgstr "In Behandeling" + +#: includes/common/class-mp-order.php:969 +msgid "Order #" +msgstr "Bestelling #" + +#: includes/common/class-mp-order.php:866 +msgid "Copy billing address to shipping address" +msgstr "Kopieer factuuradres naar bezorgadres" + +#: includes/common/class-mp-order.php:822 +#: includes/public/class-mp-checkout.php:1314 +msgid "Special Instructions" +msgstr "Speciale instructies" + +#: includes/common/class-mp-order.php:817 +#: includes/common/payment-gateways/stripe.php:335 +msgid "Email" +msgstr "Email" + +#: includes/common/class-mp-order.php:813 +#: includes/common/payment-gateways/stripe.php:341 +#: includes/public/class-mp-checkout.php:416 +msgid "Phone" +msgstr "Telefoon" + +#: includes/common/class-mp-order.php:791 +#: includes/common/payment-gateways/stripe.php:337 +msgid "State" +msgstr "Provincie" + +#: includes/common/class-mp-order.php:776 +msgid "Address 1" +msgstr "Adres" + +#: includes/common/class-mp-order.php:766 +msgid "Last Name" +msgstr "Achternaam" + +#: includes/common/class-mp-order.php:762 +msgid "First Name" +msgstr "Voornaam" + +#: includes/common/class-mp-installer.php:677 +msgid "MarketPress requires a database update to continue working correctly. Go to update page" +msgstr "" + +#: includes/common/class-mp-installer.php:657 +msgid "MarketPress performed a quick automatic update successfully!" +msgstr "" + +#: includes/common/class-mp-installer.php:653 +msgid "Perform Update" +msgstr "" + +#: includes/common/class-mp-installer.php:647 +msgid "Please update each subsite in your WordPress network where you have older version of the MarketPress plugin." +msgstr "" + +#: includes/common/class-mp-installer.php:641 +msgid "Depending on the amount of products you have, this update could take quite some time. Please keep this window open while the update completes. If you have products with multiple variations, the progress bar may move slower, please don't exit the window." +msgstr "" + +#: includes/common/class-mp-installer.php:632 +msgid "Product Metadata" +msgstr "Product Metadata" + +#: includes/common/class-mp-installer.php:601 +msgid "MarketPress requires a database update to continue working correctly.
    Below you will find a list of items that require your attention." +msgstr "" + +#: includes/common/class-mp-installer.php:600 +msgid "Update MarketPress Data" +msgstr "MarketPress Data bijwerken" + +#: includes/common/class-mp-installer.php:530 +msgid "Update Data" +msgstr "Data Bijwerken" + +#: includes/common/class-mp-installer.php:67 +msgid "Complete!" +msgstr "Compleet!" + +#: includes/common/class-mp-installer.php:66 +msgid "Upgrading Database...Please Wait..." +msgstr "Database bijwerken... even geduld a.u.b..." + +#: includes/common/class-mp-installer.php:64 +msgid "An error occurred while updating. Please refresh this page and try again." +msgstr "Er trad een fout op tijdens het bijwerken. Vernieuw deze pagina in uw browser en probeer het opnieuw." + +#: includes/common/class-mp-cart.php:2447 +msgid "Some items in your cart have fallen below the quantity you currently have in your cart. We have adjusted the quantity in your cart automatically." +msgstr "Sommige producten in uw winkelwagentje zijn niet meer volledig op voorraad. Deze zijn automatisch aangepast met de beschikbare aantallen." + +#: includes/common/class-mp-cart.php:2443 +msgid "Some items in your cart are no longer available. We have removed these items from your cart automatically." +msgstr "Sommige producten in uw winkelwagentje zijn niet langer beschikbaar. Deze zijn automatisch uit uw winkelwagentje gehaald." + +#: includes/common/class-mp-cart.php:1566 +msgid "item" +msgstr "product" + +#: includes/common/class-mp-cart.php:1563 +#: includes/common/class-mp-cart.php:1568 +msgid "items" +msgstr "producten" + +#: includes/common/class-mp-cart.php:1363 +msgid "Items/Products added to Cart will show here." +msgstr "Aan de winkelwagen toegevoegde producten worden hier weergegeven." + +#: includes/common/class-mp-cart.php:1362 +msgid "Your shopping cart is empty." +msgstr "Uw winkelwagen is leeg." + +#: includes/common/class-mp-cart.php:1357 +msgid "View Cart" +msgstr "Bekijk winkelwagen" + +#: includes/common/class-mp-cart.php:1241 +#: includes/common/class-mp-cart.php:1298 +#: includes/public/class-mp-short-codes.php:159 +msgid "Adding..." +msgstr "Toevoegen...." + +#: includes/common/class-mp-cart.php:1033 +msgid "Continue Shopping?" +msgstr "Verder Winkelen?" + +#: includes/common/class-mp-cart.php:961 +msgid "Secure Checkout
    Shopping is always safe and secure." +msgstr "Veilig bestellen
    Winkelen is hier veilig en beveiligd." + +#: includes/common/class-mp-cart.php:959 +msgid "You are about to submit your order!
    Please review your order details before continuing. You will be charged immediately upon clicking \"Submit Order\"." +msgstr "U staat op het punt een bestelling te plaatsen.!
    Bekijk de details van uw bestelling voordat u verder gaat.. U moet uw order direct betalen na het indrukken van de \"Bevestig uw bestelling\"." + +#: includes/common/class-mp-cart.php:956 +msgid "Continue »" +msgstr "Verdergaan »" + +#: includes/common/class-mp-cart.php:955 +msgid "Submit Order" +msgstr "Bestelling verzenden" + +#: includes/common/class-mp-cart.php:818 +msgid "There are no items in your cart - go add some !" +msgstr "Er zijn geen producten in uw winkelmandje - Kijk of u iets interessants kan vinden !" + +#: includes/common/class-mp-cart.php:816 +msgid "The cart is disabled." +msgstr "Deze winkelwagen is uitgeschakeld." + +#: includes/common/class-mp-cart.php:735 +msgid "Estimated %s" +msgstr "Geschatte %s" + +#: includes/common/class-mp-cart.php:717 +msgid "Estimated Shipping" +msgstr "Verzendkosten" + +#: includes/common/class-mp-cart.php:697 +msgid "Product Total" +msgstr "Product Totaal" + +#: includes/common/class-mp-cart.php:670 includes/common/class-mp-cart.php:672 +msgid "Estimated Total (%s, %s)" +msgstr "Geschatte Totaal (%s, %s)" + +#: includes/common/class-mp-cart.php:668 +msgid "Estimated Total (%s)" +msgstr "Geschatte Totaal (%s)" + +#: includes/common/class-mp-cart.php:666 includes/common/class-mp-cart.php:752 +msgid "Estimated Total" +msgstr "Totaal" + +#: includes/admin/widgets/product-list.php:247 +msgid "Show Thumbnail Placeholder image (if image is not set)" +msgstr "" + +#: includes/admin/widgets/cart.php:73 +msgid "Display product price" +msgstr "Product-prijs weergeven" + +#: includes/admin/widgets/cart.php:71 +msgid "Display product quantity" +msgstr "Product hoeveelheid weergeven" + +#: includes/admin/widgets/cart.php:69 +msgid "Display product image" +msgstr "Product afbeelding weergeven" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:93 +msgid "General Shipping Settings" +msgstr "Algemene Verzend Instellingen" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:773 +msgid "If you are having conflicts with the lightbox library from your theme or another plugin you should uncheck this." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:772 +msgid "Use Built-In Lightbox for Images?" +msgstr "Ingebouwde Lightbox voor afbeelding gebruiken?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:762 +msgid "Disable Large Image Display?" +msgstr "Grotere afbeelding weergave uitschakelen?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:688 +msgid "Show Product Image?" +msgstr "Product-afbeelding weergeven?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:682 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:684 +msgid "Show Tags List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:676 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:678 +msgid "Show Categories List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:671 +msgid "If enabled, description excerpt will be added above Add to cart." +msgstr "Indien ingeschakeld, zal een beschrijving fragment hierboven worden toegevoegd aan de winkelwagen." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:669 +msgid "Show Excerpt?" +msgstr "Samenvatiing weergeven?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:665 +msgid "If enabled, users will be able to choose how many of the product they want to purchase before adding to their cart. If not checked, quantity could be change later on the cart page." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:663 +msgid "Show Quantity Field?" +msgstr "Hoeveelheid-veld weergeven?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:649 +msgid "Settings related to the display of individual product pages." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:648 +msgid "Product Page Settings" +msgstr "Product Pagina Instellingen" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:605 +msgid "Related Products Layout" +msgstr "Gerelateerde producten weergave" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:573 +msgid "Show Related Products?" +msgstr "Gerelateerde producten weergeven?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:568 +msgid "Related Product Settings" +msgstr "Gerelateerd product instellingen" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:549 +msgid "Order Status Entries Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:510 +msgid "Sort Products By" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:497 +msgid "Products Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:492 +msgid "Paginate Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:478 +msgid "Excerpts Length" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:473 +msgid "Show Excerpts?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:450 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:746 +msgid "Image Alignment" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:412 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:708 +msgid "Custom Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:401 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:697 +msgid "Large - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:400 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:696 +msgid "Medium - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:399 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:695 +msgid "Thumbnail - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:397 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:693 +msgid "Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:386 +msgid "Select default placeholder image thumbnail when product image is not available (if empty, plugin's built-in image will be used)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:380 +msgid "Show default product placeholder thumbnail when product image is not available?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:374 +msgid "Show Product Thumbnail?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:369 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:658 +msgid "Redirect to cart page for immediate checkout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:368 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:657 +msgid "Stay on current product page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:366 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:655 +msgid "MarketPress supports two \"flows\" for adding products to the shopping cart. After adding a product to their cart, two things can happen:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:365 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:654 +msgid "Add To Cart Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:355 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:628 +msgid "Four" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:354 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:627 +msgid "Three" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:353 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:626 +msgid "Two" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:625 +msgid "One" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:349 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:622 +msgid "Set the number of products that show up in a grid row to best fit your theme" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:348 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:621 +msgid "How many products per row?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:342 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:609 +msgid "Display as grid" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:341 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:608 +msgid "Display as list" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:339 +msgid "Product Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:334 +msgid "Settings related to the display of product lists/grids." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:333 +msgid "Product List/Grid Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:314 +msgid "Show Twitter Button" +msgstr "Toon Twitter Knop" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:309 +msgid "Twitter" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:303 +msgid "Show Share Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:297 +msgid "Recommend" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:296 +msgid "Like" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:294 +msgid "Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:283 +msgid "Show Facebook Like Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:278 +msgid "Facebook" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:257 +msgid "Show \"Pin It\" Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:252 +msgid "Pinterest" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:246 +msgid "Social Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:193 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:202 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:211 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:220 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:229 +#: includes/multisite/class-mp-admin-multisite.php:532 +#: includes/multisite/class-mp-admin-multisite.php:541 +#: includes/multisite/class-mp-admin-multisite.php:550 +msgid "Choose a Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:191 +msgid "This page will be used as the root for your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:168 +#: includes/multisite/class-mp-admin-multisite.php:586 +msgid "Create Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "uncropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "cropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:87 +#: includes/multisite/class-mp-admin-multisite.php:121 +#: includes/multisite/class-mp-admin-multisite.php:620 +msgid "An error occurred while creating the store page. Please try again." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:66 +msgid "Choose the gateway(s) that you would like to be available for checkout." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:65 +msgid "Enabled Gateways" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:78 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:146 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:179 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:213 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:274 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:307 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:341 +msgid "Text" +msgstr "Tekst" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:71 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:139 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:172 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:206 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:267 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:300 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:334 +msgid "Subject" +msgstr "Onderwerp" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:52 +msgid "Notification Email" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:510 +msgid "Enabling this option will display label `excl. tax` or `incl. tax` after price" +msgstr "Het aanzetten van deze optie toont het label `excl. btw` or `incl. btw` na de prijs" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:509 +msgid "Display tax label?" +msgstr "Toon btw label?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:504 +msgid "Enabling this option will show Price + Tax, eg. if your price is 100 and your tax 20, your price will be 120" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:416 +#: includes/multisite/class-mp-admin-multisite.php:234 +msgid "Price Format" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:366 +msgid "Enabling this field will display a textbox on the shipping checkout page for users to enter special instructions for their order. Useful for product personalization, etc." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:365 +msgid "Show Special Instructions Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:360 +msgid "Universal" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:359 +msgid "Old" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1167 +#: includes/admin/store-settings/class-mp-store-settings-general.php:358 +msgid "New" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:353 +msgid "If you already use Google Analytics for your website, you can track detailed ecommerce information by enabling this setting. Choose whether you are using the new asynchronous or old tracking code. Before Google Analytics can report ecommerce activity for your website, you must enable ecommerce tracking on the profile settings page for your website. Also keep in mind that some gateways do not reliably show the receipt page, so tracking may not be accurate in those cases. It is recommended to use the PayPal gateway for the most accurate data. More information »" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:347 +msgid "Do you want to display the product price on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:346 +msgid "Show product price on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:340 +msgid "Do you want to display the product quantity on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:339 +msgid "Show product quantity on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:333 +msgid "Do you want to display the product image on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:332 +msgid "Show product image on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:327 +msgid "This option hide floating Mini Cart in top right corner." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:326 +msgid "Disable Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:316 +msgid "If unchecked your Orders admin page will be hidden" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:315 +msgid "Show admin Orders page?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:309 +msgid "Disable Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:303 +msgid "Force Login?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:297 +msgid "Hide Out of Stock Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:555 +msgid "This will prevent multiples of the same downloadable product form being added to the cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:554 +msgid "Limit Digital Products Per-order?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:268 +msgid "If you're having issues downloading large files and have worked with your hosting provider to increase your memory limits, try enabling this - just keep in mind, it's not as secure!" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:267 +msgid "Use Alternative Download Method?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:252 +msgid "Download Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:230 +msgid "Change product post type" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:51 +msgid "%s Capabilities" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-addons.php:47 +msgid "Store Settings: Add Ons: %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:254 +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:56 +msgid "Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Edit Product Attribute %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:246 +msgid "Exporters" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:238 +msgid "Short Codes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:207 +msgid "An appropriate message for key \"%s\" could not be found." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:204 +msgid "Product attribute updated successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:203 +msgid "Product attribute added successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +msgid "Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +#: includes/admin/store-settings/class-mp-store-settings-addons.php:121 +msgid "Store Settings: Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "Store Settings: Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:118 +msgid "Store Settings: Product Tags" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:117 +msgid "Store Settings: Product Categories" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Store Settings: Product Attributes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +msgid "Store Settings: Payments" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:114 +msgid "Store Settings: Shipping" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +#: includes/admin/class-mp-store-settings-admin.php:226 +msgid "Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +msgid "Store Settings: Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:112 +msgid "Store Settings: Presentation" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:111 +msgid "Store Settings: General" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1489 +msgid "Select a Product" +msgstr "Kies een Artikel" + +#: includes/admin/class-mp-shortcode-builder.php:1447 +msgid "Reset to Defaults" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1446 +msgid "Insert Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1202 +#: includes/admin/class-mp-shortcode-builder.php:1227 +#: includes/admin/class-mp-shortcode-builder.php:1252 +msgid "The text to show in the link." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1196 +#: includes/admin/class-mp-shortcode-builder.php:1221 +#: includes/admin/class-mp-shortcode-builder.php:1246 +msgid "Whether to return a clickable link or url." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1177 +msgid "Whether to display the cart only on store pages or not." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1171 +msgid "Whether to show or hide the product price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1165 +msgid "Whether to show or hide the product quantity." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1159 +msgid "Whether to show or hide the product image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1153 +msgid "The text displayed before the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1147 +msgid "The title of the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1058 +#: includes/admin/class-mp-shortcode-builder.php:1121 +msgid "A label to prepend to the price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1032 +#: includes/admin/class-mp-shortcode-builder.php:1127 +msgid "What context for display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1004 +msgid "Set the alignment of the image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:998 +msgid "Set a custom pixel width/height. If omitted defaults to the size set by \"context\"." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:993 +msgid "Widget" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:988 +msgid "What context for preset size options." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:982 +#: includes/admin/class-mp-shortcode-builder.php:1026 +#: includes/admin/class-mp-shortcode-builder.php:1052 +#: includes/admin/class-mp-shortcode-builder.php:1077 +#: includes/admin/class-mp-shortcode-builder.php:1096 +#: includes/admin/class-mp-shortcode-builder.php:1115 +msgid "The ID of the product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:963 +msgid "Whether to display the product meta (e.g. price, buy button)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:738 +#: includes/admin/class-mp-shortcode-builder.php:905 +#: includes/admin/class-mp-shortcode-builder.php:958 +#: includes/admin/class-mp-shortcode-builder.php:992 +#: includes/admin/class-mp-shortcode-builder.php:1035 +#: includes/admin/class-mp-shortcode-builder.php:1130 +#: includes/admin/class-mp-shortcode-builder.php:1349 +msgid "List" +msgstr "Lijst" + +#: includes/admin/class-mp-shortcode-builder.php:957 +#: includes/admin/class-mp-shortcode-builder.php:991 +#: includes/admin/class-mp-shortcode-builder.php:1034 +#: includes/admin/class-mp-shortcode-builder.php:1129 +msgid "Single" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:953 +msgid "Whether and what context of image size to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:948 +msgid "Full" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:943 +msgid "Whether and what type of content to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:937 +msgid "Whether to display the product title." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:931 +msgid "The ID of the product to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:747 +#: includes/admin/class-mp-shortcode-builder.php:914 +msgid "Hide" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:746 +#: includes/admin/class-mp-shortcode-builder.php:913 +msgid "Show" +msgstr "Toon" + +#: includes/admin/class-mp-shortcode-builder.php:744 +#: includes/admin/class-mp-shortcode-builder.php:911 +msgid "Whether or not to show the product filters." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:724 +#: includes/admin/class-mp-shortcode-builder.php:891 +#: includes/admin/class-mp-shortcode-builder.php:1335 +msgid "Limits list to a specific product tag." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:713 +#: includes/admin/class-mp-shortcode-builder.php:880 +#: includes/admin/class-mp-shortcode-builder.php:1324 +msgid "Limits list to a specific product category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:706 +#: includes/admin/class-mp-shortcode-builder.php:873 +#: includes/admin/class-mp-shortcode-builder.php:1317 +msgid "Direction to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:684 +#: includes/admin/class-mp-shortcode-builder.php:851 +#: includes/admin/class-mp-shortcode-builder.php:1295 +msgid "What field to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:678 +#: includes/admin/class-mp-shortcode-builder.php:845 +#: includes/admin/class-mp-shortcode-builder.php:1283 +msgid "How many products to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:672 +#: includes/admin/class-mp-shortcode-builder.php:839 +#: includes/admin/class-mp-shortcode-builder.php:1277 +msgid "The page number to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:666 +#: includes/admin/class-mp-shortcode-builder.php:833 +#: includes/admin/class-mp-shortcode-builder.php:1271 +msgid "Whether to paginate the product list. This is useful to only show a subset." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:808 +msgid "How many related items to show." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:790 +msgid "How to relate the products" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:784 +msgid "The product to show related items for." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:765 +msgid "The maximum number of products to display" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:647 +msgid "Comma separated list of tags (term_id) to include. For example, include=5,27 means tags that have the term_id 5 or 27 will be the only tags displayed. Defaults to include everything." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:641 +msgid "Comma separated list of tags (term_id) to exclude. For example, exclude=5,27 means tags that have the term_id 5 or 27 will NOT be displayed. Defaults to exclude nothing." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:633 +#: includes/admin/class-mp-shortcode-builder.php:1420 +msgid "Sort order." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:629 +#: includes/admin/class-mp-shortcode-builder.php:1416 +msgid "Count" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:626 +#: includes/admin/class-mp-shortcode-builder.php:1413 +msgid "Order of the tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:620 +msgid "The text/space between tags)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:616 +msgid "UL with a class of \"wp-tag-cloud\"" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:615 +msgid "separated by whitespace defined by \"separator\" parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:613 +msgid "Format of the cloud display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:607 +msgid "The number of actual tags to display in the cloud. (Use \"0\" to display all tags.)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:601 +msgid "Unit of measure as pertains to the smallest and largest values. This can be any CSS length value, e.g. pt, px, em, %." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:595 +msgid "The text size of the tag with the largest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:589 +msgid "The text size of the tag with the smallest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:570 +msgid "The \"tabindex\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:564 +msgid "The \"name\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:558 +msgid "The \"id\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:552 +msgid "Which category ID is selected." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:540 +msgid "The max depth. This is ignored unless hierarchical is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:536 +#: includes/multisite/template-functions.php:816 +msgid "No Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:414 +#: includes/admin/class-mp-shortcode-builder.php:546 +msgid "Calculates link or post counts by including items from child categories. If show_counts and hierarchical are true this is automatically set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:409 +msgid "Value of n (some number) specifies the depth (or level) to descend in displaying Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:408 +msgid "Show only top level Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:407 +msgid "All Categories displayed in flat (no indent) form (overrides hierarchical)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:406 +msgid "All Categories and child Categories (Default)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:402 +msgid "This parameter controls how many levels in the hierarchy of Categories are to be included in the list of Categories. NOTE: The \"hierarchical\" argument, which is disabled by default, will override the depth argument, unless it is true. When the argument is false, it will display all of the categories. When it is enabled it will use the value in the \"depth\" argument." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:396 +#: includes/admin/class-mp-shortcode-builder.php:1394 +msgid "Sets the number of Categories to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:390 +#: includes/admin/class-mp-shortcode-builder.php:534 +msgid "Set the text to show when no categories are listed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:384 +msgid "Set the title and style of the outer list item. If present but empty, the outer list item will not be displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:378 +#: includes/admin/class-mp-shortcode-builder.php:528 +msgid "Display sub-categories as inner list items (below the parent list item) or inline." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:368 +#: includes/admin/class-mp-shortcode-builder.php:511 +msgid "Exclude category-tree from the results. The parameter include must be empty. If the hierarchical parameter is true, then use exclude instead of exclude_tree." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:354 +msgid "Only include these categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:340 +#: includes/admin/class-mp-shortcode-builder.php:356 +#: includes/admin/class-mp-shortcode-builder.php:370 +#: includes/admin/class-mp-shortcode-builder.php:496 +#: includes/admin/class-mp-shortcode-builder.php:513 +msgid "Select Categories" +msgstr "Kies Categorie" + +#: includes/admin/class-mp-shortcode-builder.php:338 +#: includes/admin/class-mp-shortcode-builder.php:494 +msgid "Exclude one or more categories from the results. The parameter include must be empty." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:332 +msgid "Set a URI for an image (usually an rss feed icon) to act as a link to each categories' rss-2 feed. This parameter overrides the feed parameter. There is no default for this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:320 +msgid "Display a link to each category's rss-2 feed and set the link text to display. The default is no text and no feed displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:313 +#: includes/admin/class-mp-shortcode-builder.php:487 +msgid "Any" +msgstr "Elke" + +#: includes/admin/class-mp-shortcode-builder.php:307 +#: includes/admin/class-mp-shortcode-builder.php:481 +msgid "Only display categories that are children of the category identified by this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:301 +msgid "Sets whether a category's description is inserted into the title attribute of the links created (i.e. <a title=\"<em>Category Description</em>\" href=\"...)." +msgstr "Dit maakt dat een categorie omschrijving is toegevoegd in de titel eigenschappen van de gecreëerde link (i.e. <a title=\"<em>Category Description</em>\" href=\"...)." + +#: includes/admin/class-mp-shortcode-builder.php:295 +#: includes/admin/class-mp-shortcode-builder.php:475 +msgid "Toggles the display of categories with no posts." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:289 +#: includes/admin/class-mp-shortcode-builder.php:469 +#: includes/admin/class-mp-shortcode-builder.php:1388 +msgid "Toggles the display of the current count of posts in each category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:279 +msgid "Style to display the categories list in. A value of list displays the categories as list items while none generates no special display method (the list items are separated by
    tags)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:269 +#: includes/admin/class-mp-shortcode-builder.php:449 +#: includes/admin/class-mp-shortcode-builder.php:1378 +msgid "Sort order for categories (either ascending or descending)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:259 +#: includes/admin/class-mp-shortcode-builder.php:439 +#: includes/admin/class-mp-shortcode-builder.php:1368 +msgid "Sort categories alphabetically, by unique Category ID, or by the count of posts in that Category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:253 +#: includes/admin/class-mp-shortcode-builder.php:433 +msgid "If a value is entered, causes the display of a link to all categories if the style is set to list." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:219 +msgid "Select an Action" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:217 +msgid "What would you like to do?" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:216 +#: includes/admin/class-mp-shortcode-builder.php:1522 +msgid "Add E-Commerce Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:197 +msgid "Display a list of links to your store pages." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:196 +msgid "Display a link or url to the order status page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:195 +msgid "Display a link or url to the current products list page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:194 +msgid "Display a link or url to the current store page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:193 +msgid "Display a link or url to the current shopping cart page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:192 +msgid "Display the cart widget." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:191 +msgid "Display the full product meta box with price and buy now/add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:190 +msgid "Display the product stock." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:189 +msgid "Display the product SKU number(s)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:188 +msgid "Display the product price (and sale price)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:187 +msgid "Display the buy or add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:186 +msgid "Display the featured image of a given product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:185 +msgid "Display a single product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:184 +msgid "Display a list of products according to preference." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:183 +msgid "Display products related to the one being viewed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:182 +msgid "Display a list of popular products ordered by sales." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:180 +msgid "Display an HTML dropdown of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:179 +msgid "Display an HTML list of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:178 +msgid "Display a cloud or list of your product tags." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:655 +msgid "Setup your payment gateway" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:643 +#: includes/admin/class-mp-setup-wizard.php:649 +msgid "Other Gateways" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:617 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:150 +msgid "Select which calculated shipping methods the customer will be able to choose from." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:601 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:134 +#: includes/public/class-mp-checkout.php:82 +msgid "Shipping Method" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:568 +msgid "I want to charge shipping" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:523 +#: includes/admin/store-settings/class-mp-store-settings-general.php:503 +msgid "Show Price + Tax?" +msgstr "Laat Prijs + BTW zien?" + +#: includes/admin/class-mp-setup-wizard.php:507 +msgid "I.e. Taxes, VAT, GST, etc" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:491 +#: includes/admin/store-settings/class-mp-store-settings-general.php:471 +msgid "Current Rates" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:473 +msgid "Default Tax Rate" +msgstr "Standaard BTW tarief" + +#: includes/admin/class-mp-setup-wizard.php:434 +#: includes/admin/class-mp-setup-wizard.php:442 +#: includes/admin/store-settings/class-mp-store-settings-general.php:386 +#: includes/admin/store-settings/class-mp-store-settings-general.php:394 +#: includes/multisite/class-mp-admin-multisite.php:204 +#: includes/multisite/class-mp-admin-multisite.php:212 +msgid "Select a Currency" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:414 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:105 +msgid "Choose Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:411 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:103 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:104 +msgid "All Countries" +msgstr "Alle Landen" + +#: includes/admin/class-mp-setup-wizard.php:410 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:102 +msgid "These are the countries that you will ship to." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:409 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:101 +msgid "Target Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:401 +msgid "Countries" +msgstr "Landen" + +#: includes/admin/class-mp-setup-wizard.php:387 +#: includes/admin/store-settings/class-mp-store-settings-general.php:640 +msgid "Zip/Postal Code Label" +msgstr "Zip/Postcode Label" + +#: includes/admin/class-mp-setup-wizard.php:352 +#: includes/admin/store-settings/class-mp-store-settings-general.php:606 +msgid "Select a State/Province/Region" +msgstr "Kies een Staat/Provincie/Regio" + +#: includes/admin/class-mp-setup-wizard.php:335 +#: includes/admin/store-settings/class-mp-store-settings-general.php:590 +msgid "Select A Country" +msgstr "Kies Een Land" + +#: includes/admin/class-mp-setup-wizard.php:332 +#: includes/admin/store-settings/class-mp-store-settings-general.php:587 +msgid "Select a Country" +msgstr "Kies een Land" + +#: includes/admin/class-mp-setup-wizard.php:324 +msgid "Location" +msgstr "Locatie" + +#: includes/admin/class-mp-setup-wizard.php:304 +#: includes/admin/class-mp-setup-wizard.php:312 +#: includes/admin/class-mp-store-settings-admin.php:129 +#: includes/admin/class-mp-store-settings-admin.php:262 +msgid "Quick Setup" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:289 +msgid "MarketPress setup is not complete! Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2479 +msgid "Enter your product name here" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2440 +msgid "Select a %s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2426 +msgid "Each product variation needs to have product attributes assigned to it so the system knows how to differentiate one product variation from the other. It is important that you assign a category to this product before choosing any attributes." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2409 +msgid "If you would like this variation to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2320 +msgid "Sale Price (if applicable)" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2281 +msgid "If you would like the description to be different than the main product enter it here." +msgstr "Als de je wilt dat de omschrijving anders is dan het hoofd product doe dat dan hier." + +#: includes/admin/class-mp-products-admin.php:2229 +msgid "Image" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2202 +#: includes/admin/class-mp-shortcode-builder.php:226 +msgid "Attributes" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2166 +msgid "Create your product variations here. You can reorder variations by using the number to left of each variation, or delete one by clicking the \"x\" to the right of each variation. NOTE: The variation that shows up first in this list will be considered the \"main variation\". The details from this variation will be used in product listings." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2061 +#: includes/admin/class-mp-products-admin.php:2332 +msgid "Value must be less than regular price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2043 +#: includes/admin/class-mp-products-admin.php:2306 +msgid "Regular Price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2023 +#: includes/admin/class-mp-products-admin.php:2286 +msgid "External URL" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1988 +#: includes/admin/class-mp-products-admin.php:2245 +msgid "Enter the quantity that you have available to sell." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1987 +#: includes/admin/class-mp-products-admin.php:2244 +msgid "Inventory Count" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1977 +#: includes/admin/class-mp-products-admin.php:2234 +msgid "Track Inventory?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1871 +msgid "%1$sProduct Images%2$s %3$sAdd images of the product. The first image on the list is the featured image for this product (you can reorder images on the list)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1806 +msgid "Add variations for this product. e.g. If you are selling t-shirts, you can create Color & Size variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1804 +msgid "%3$sAdd variations for%2$s %1$sProduct%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1776 +msgid "This product has a multiple variations %1$s(e.g. Multiple colors, sizes)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1775 +msgid "This is a unique product without variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1700 +msgid "Extra Shipping Cost %1$s(if applicable)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1659 +#: includes/admin/class-mp-products-admin.php:2112 +#: includes/admin/class-mp-products-admin.php:2359 +msgid "Weight" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1636 +#: includes/admin/class-mp-products-admin.php:2098 +#: includes/admin/class-mp-products-admin.php:2416 +msgid "Please enter a valid tax rate" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1531 +msgid "Limit Per Order %1$s(limit the number of the item a shopper can buy per order)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1513 +msgid "SKU %1$s(Stock Keeping Unit)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "%1$sPrice, Inventory & Variants%2$s %3$sSet price, manage inventory and create Product Variants (if appropriate for your product).%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "Product Variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1480 +msgid "External / Affiliate Link" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1471 +msgid "Digital Download" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1470 +msgid "Physical / Tangible Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1464 +msgid "Product Kind %1$s(Physical Product, Digital, etc)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1426 +msgid "Choose Products" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1420 +msgid "If you would like, you can choose specific related products instead of using the ones generated by MarketPress" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1019 +msgid "Changes saved successfully" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:826 +msgid "Option cannot be saved. Try again." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:821 +msgid "Option saved successfully." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:467 +msgid "Img" +msgstr "" + +#: includes/admin/class-mp-product-attributes-list-table.php:57 +msgid "Product attribute(s) deleted successfully." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:162 +msgid "- Create New Variation -" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:144 +msgid "Only lowercase letters and dashes (-) are allowed." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:139 +msgid "If a slug is not entered, it will be generated automatically. Max 32 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:138 +#: includes/admin/class-mp-product-attributes-list-table.php:23 +msgid "Slug" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:130 +msgid "Max 45 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:123 +msgid "Use the numbers on the left to sort. To delete - click the \"X\" to the right of each row." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:122 +msgid "Attribute Options" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:121 +msgid "Add Option" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:105 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:523 +msgid "Sort Order" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:87 +msgid "Alphabetical" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:86 +msgid "ID" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:84 +msgid "Select how the options will be sorted." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:82 +msgid "Sort By" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:75 +msgid "The name of the attribute (e.g. color, size, etc)" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:74 +msgid "Attribute Name" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:69 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Product Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Product Attributes" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:71 +msgid "You can choose to make this page one of the following core store pages." +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:66 +msgid "Network Store Base" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:61 +msgid "Checkout Page" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:52 +msgid "Store Page Settings" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1108 +msgid "Display billing/shipping info for this customer" +msgstr "Weergave factuur-/verzendadres informatie voor deze klant" + +#: includes/admin/class-mp-orders-admin.php:1097 +msgid "View order “%s”" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1072 +msgid "Flag as:" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:952 +msgid "Move To Trash" +msgstr "Verplaats naar Prullenbak" + +#: includes/admin/class-mp-orders-admin.php:948 +msgid " Received" +msgstr " Ontvangen" + +#: includes/admin/class-mp-orders-admin.php:927 +msgid "Enter coupon code here" +msgstr "Vul de kortingscode hier in" + +#: includes/admin/class-mp-orders-admin.php:812 +msgid "The order status could not be updated due to unexpected error. Please try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:740 +msgid "An invalid bulk action was requested. Please go back and try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:692 +msgid "The order status for order ID %1$s was updated successfully." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:688 +msgid "Order statuses successfully updated." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:530 +msgid "Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:518 +msgid "Actual Shipping Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:513 +msgid "Method Paid For" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:504 +msgid "Amount Collected" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:477 +msgid "DHL" +msgstr "DHL" + +#: includes/admin/class-mp-orders-admin.php:408 +msgid "There is no IPN history to show at this time" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:345 +msgid "Type" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:343 +msgid "Gateway" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:301 +#: includes/common/template-functions.php:528 +msgid "Order History" +msgstr "Bestel Geschiedenis" + +#: includes/admin/class-mp-orders-admin.php:291 +msgid "IPN History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:283 +msgid "Customer Info" +msgstr "Klanten Info" + +#: includes/admin/class-mp-orders-admin.php:279 +msgid "Order Details" +msgstr "Bestel details" + +#: includes/admin/class-mp-exporter-orders.php:157 +msgid "All Dates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:320 +msgid "Add Pages to Menu" +msgstr "Voeg Pagina's toe aan Menu" + +#: includes/admin/class-mp-dashboard-widgets.php:318 +msgid "Add-ons" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:317 +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "User Capabilities" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:316 +#: includes/admin/class-mp-setup-wizard.php:631 +#: includes/admin/store-settings/class-mp-store-settings-payments.php:50 +msgid "Payment Gateways" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:315 +msgid "Shipping Rates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:312 +msgid "Configure" +msgstr "Instelling" + +#: includes/admin/class-mp-dashboard-widgets.php:309 +#: includes/admin/class-mp-products-admin.php:466 +#: includes/admin/class-mp-shortcode-builder.php:797 +msgid "Tags" +msgstr "Tags" + +#: includes/admin/class-mp-dashboard-widgets.php:308 +#: includes/admin/class-mp-products-admin.php:465 +msgid "Categories" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:300 +msgid "Manage" +msgstr "Beheer" + +#: includes/admin/class-mp-dashboard-widgets.php:297 +msgid "Here's some quick links to manage your store and products." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:288 +msgid "low in stock" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:287 +msgid "%s product" +msgid_plural "%s products" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-dashboard-widgets.php:280 +msgid "received" +msgstr "ontvangen" + +#: includes/admin/class-mp-dashboard-widgets.php:279 +#: includes/admin/class-mp-dashboard-widgets.php:283 +msgid "%s order" +msgid_plural "%s orders" +msgstr[0] "%s bestelling" +msgstr[1] "%s bestellingen" + +#: includes/admin/class-mp-dashboard-widgets.php:276 +msgid "Stock & Orders" +msgstr "Voorraad & bestellingen" + +#: includes/admin/class-mp-dashboard-widgets.php:261 +msgid "Last 30 Days" +msgstr "Laatste 30 dagen" + +#: includes/admin/class-mp-dashboard-widgets.php:256 +msgid "Last 7 Days" +msgstr "Laatste 7 dagen" + +#: includes/admin/class-mp-dashboard-widgets.php:251 +msgid "Yesterday" +msgstr "Gisteren" + +#: includes/admin/class-mp-dashboard-widgets.php:248 +#: includes/admin/class-mp-dashboard-widgets.php:253 +#: includes/admin/class-mp-dashboard-widgets.php:258 +#: includes/admin/class-mp-dashboard-widgets.php:263 +msgid " Orders" +msgstr " Bestellingen" + +#: includes/admin/class-mp-dashboard-widgets.php:246 +msgid "Today" +msgstr "Vandaag" + +#: includes/admin/class-mp-dashboard-widgets.php:241 +msgid "Welcome back! Here's a quick summary of your store's performance." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:196 +#: includes/admin/class-mp-products-admin.php:895 +msgid "No products out of stock." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:136 +#: includes/admin/class-mp-products-admin.php:839 +msgid "Stock Level" +msgstr "Voorraad niveau" + +#: includes/admin/class-mp-dashboard-widgets.php:135 +#: includes/admin/class-mp-products-admin.php:838 +msgid "Variation" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:121 +msgid "Low Stock (%s)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:116 +msgid "Store Management" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:115 +msgid "Store Reports" +msgstr "" + +#: includes/admin/class-mp-ajax.php:579 +#: includes/admin/class-mp-orders-admin.php:520 +#: includes/common/payment-gateways/2checkout.php:370 +#: includes/common/payment-gateways/authorizenet-aim.php:264 +#: includes/common/payment-gateways/mollie.php:93 +#: includes/common/payment-gateways/paymill.php:196 +#: includes/common/payment-gateways/pin.php:190 +#: includes/common/payment-gateways/skrill.php:157 +#: includes/common/payment-gateways/skrill.php:168 +#: includes/common/payment-gateways/wepay.php:143 +#: includes/public/class-mp-checkout.php:404 +msgid "Select One" +msgstr "" + +#: includes/admin/class-mp-ajax.php:511 +msgid "Oops... we could not locate any orders by that ID. Please double check your order ID and try again." +msgstr "" + +#: includes/admin/class-mp-ajax.php:482 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:166 +#: includes/multisite/class-mp-admin-multisite.php:584 +msgid "Edit Page" +msgstr "Bewerk Pagina" + +#: includes/admin/class-mp-ajax.php:346 +msgid "Cancel " +msgstr "Annuleer " + +#: includes/admin/class-mp-ajax.php:345 +msgid "Save " +msgstr "Bewaar " + +#: includes/admin/class-mp-ajax.php:336 +msgid "Edit Description" +msgstr "Bewerk Omschrijving" + +#: includes/admin/class-mp-ajax.php:336 +msgid "HTML Markup" +msgstr "" + +#: includes/admin/class-mp-ajax.php:333 +msgid "Plain Text Only" +msgstr "" + +#: includes/admin/class-mp-ajax.php:329 +msgid "Additional Content / Information for this Variation" +msgstr "" + +#: includes/admin/class-mp-ajax.php:317 +#: includes/admin/class-mp-products-admin.php:1762 +msgid "Allow this product to be purchased even if it's out of stock" +msgstr "" + +#: includes/admin/class-mp-ajax.php:313 +#: includes/admin/class-mp-products-admin.php:1711 +msgid "Track Product Inventory" +msgstr "" + +#: includes/admin/class-mp-ajax.php:300 +msgid "Extra Shipping Cost (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:295 +msgid "Ounces:" +msgstr "Onsen:" + +#: includes/admin/class-mp-ajax.php:294 +msgid "Pounds:" +msgstr "Ponden:" + +#: includes/admin/class-mp-ajax.php:292 +msgid "Kilograms:" +msgstr "Kilogram:" + +#: includes/admin/class-mp-ajax.php:287 +#: includes/admin/class-mp-products-admin.php:1649 +msgid "Charge Shipping" +msgstr "Bereken Verzendkosten" + +#: includes/admin/class-mp-ajax.php:273 +#: includes/admin/class-mp-products-admin.php:1623 +#: includes/admin/store-settings/class-mp-store-settings-general.php:454 +msgid "Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:272 +#: includes/admin/class-mp-products-admin.php:1622 +#: includes/admin/class-mp-products-admin.php:2090 +#: includes/admin/class-mp-products-admin.php:2408 +msgid "Special Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:271 +#: includes/admin/class-mp-products-admin.php:1625 +#: includes/admin/class-mp-products-admin.php:2092 +msgid "If you would like this product to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-ajax.php:268 +#: includes/admin/class-mp-products-admin.php:1599 +msgid "Charge Taxes (Special Rate)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:256 +#: includes/admin/class-mp-products-admin.php:1593 +#: includes/admin/class-mp-products-admin.php:2077 +#: includes/admin/class-mp-products-admin.php:2348 +msgid "End Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:255 +#: includes/admin/class-mp-products-admin.php:1589 +#: includes/admin/class-mp-products-admin.php:2072 +msgid "Start Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:1568 +msgid "Enter Sale Price" +msgstr "Voeg verkoop prijs in" + +#: includes/admin/class-mp-ajax.php:250 +#: includes/admin/class-mp-products-admin.php:1547 +msgid "Set up a Sale for this Product" +msgstr "" + +#: includes/admin/class-mp-ajax.php:206 includes/admin/class-mp-ajax.php:223 +msgid "Enter " +msgstr "Invoeren " + +#: includes/admin/class-mp-ajax.php:193 +msgid "Browse" +msgstr "Browse" + +#: includes/admin/class-mp-ajax.php:184 includes/admin/class-mp-ajax.php:192 +msgid "http://" +msgstr "http://" + +#: includes/admin/class-mp-ajax.php:183 +msgid "External Product URL" +msgstr "" + +#: includes/admin/class-mp-ajax.php:237 +msgid "Limit Per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:177 +#: includes/admin/class-mp-products-admin.php:1520 +msgid "Enter Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:174 +#: includes/admin/class-mp-products-admin.php:1512 +msgid "Enter SKU" +msgstr "" + +#: includes/admin/class-mp-ajax.php:173 +msgid "(Stock Keeping Unit)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:158 +msgid "Remove Image" +msgstr "" + +#: includes/admin/class-mp-ajax.php:74 +msgid "Variation Draft" +msgstr "" + +#: includes/admin/class-mp-admin.php:296 +#: includes/admin/class-mp-dashboard-widgets.php:70 +msgid "Please wait...saving in progress..." +msgstr "" + +#: includes/admin/class-mp-admin.php:295 +#: includes/admin/class-mp-dashboard-widgets.php:69 +msgid "Input is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:294 +#: includes/admin/class-mp-dashboard-widgets.php:68 +msgid "Valid number is required" +msgstr "Geldig nummer is noodzakelijk" + +#: includes/admin/class-mp-admin.php:292 +#: includes/admin/class-mp-dashboard-widgets.php:66 +msgid "Delete %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:291 +#: includes/admin/class-mp-dashboard-widgets.php:65 +msgid "Delete %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:290 +#: includes/admin/class-mp-dashboard-widgets.php:64 +msgid "Update inventory for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:289 +#: includes/admin/class-mp-dashboard-widgets.php:63 +msgid "Update inventory for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:288 +#: includes/admin/class-mp-dashboard-widgets.php:62 +msgid "Update price for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:287 +#: includes/admin/class-mp-dashboard-widgets.php:61 +msgid "Update prices for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:285 +#: includes/admin/class-mp-dashboard-widgets.php:59 +msgid "Creating variations, please wait..." +msgstr "" + +#: includes/admin/class-mp-admin.php:96 +msgid "The following payment gateways have been deprecated, Cubepoints, Bitpay, iDEAL, Skrill, Google Checkout. If you were using one of these gateways, please setup a new payment gateway here." +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:61 +msgid "Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:71 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:71 +#: includes/common/class-mp-gdpr.php:399 includes/common/class-mp-order.php:872 +#: includes/common/helpers.php:164 includes/public/class-mp-checkout.php:1434 +msgid "Shipping Address" +msgstr "Ontvangst Adres" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:66 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:66 +#: includes/common/class-mp-gdpr.php:392 includes/common/class-mp-order.php:864 +#: includes/common/helpers.php:163 includes/public/class-mp-checkout.php:1427 +msgid "Billing Address" +msgstr "Factuuradres" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:61 +msgid "Invoice" +msgstr "Factuur" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:258 +msgid "Shipping Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:256 +msgid "Email: %s" +msgstr "Email: %s" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:235 +msgid "Payment Method: %s" +msgstr "Betalings Methode: %s" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:79 +msgid "The dir %s not exist or not writeable" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Invoice" +msgstr "PDF Factuur" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:239 +msgid "Shop header/logo" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:233 +msgid "Choose a template" +msgstr "Kies een sjabloon" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:226 +msgid "Template Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:221 +msgid "Disable automatic creation/attachment of invoices when only free products are ordered" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:220 +msgid "Disable for free products" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:216 +msgid "Attach invoice to" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:214 +msgid "Customer Order Shipped email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:212 +msgid "Customer New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:211 +msgid "Admin New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:206 +msgid "download" +msgstr "download" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:205 +msgid "How do you want to view the PDF?" +msgstr "Hoe wilt u de PDF bekijken?" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:203 +msgid "Open the PDF in a new browser tab/window" +msgstr "Open de PDF in een nieuwe tab/venster" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:202 +msgid "Download the PDF" +msgstr "Download de PDF" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:158 +msgid "Export PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:103 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:106 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:109 +msgid "You can't download this order invoice" +msgstr "U kunt deze bestelfactuur niet downloaden" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:76 +msgid "Invalid Request" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:72 +msgid "Order not exist!" +msgstr "Order bestaat niet!" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:67 +msgid "Invalid ID" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1293 +msgid "Coupon added successfully" +msgstr "Uw kortingscode is succesvol toegepast" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1292 +msgid "Please enter a code" +msgstr "Voer uw code in" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1247 +msgid "No end" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1200 +msgid "Valid Dates" +msgstr "Geldige Datum" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1195 +msgid "Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1027 +msgid "No Coupons found in Trash" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1026 +msgid "No Coupons Found" +msgstr "Geen kortingscodes gevonden" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1025 +msgid "Search Coupons" +msgstr "Zoek kortingsbonnen" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1024 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1028 +msgid "View Coupon" +msgstr "Bekijk kortingsbon" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1023 +msgid "New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1020 +msgid "Create New Coupon" +msgstr "Maak een nieuwe kortingscode" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1017 +msgid "Manage Coupons" +msgstr "Beheer kortingscodes" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1002 +msgid "An error occurred while removing your coupon. Please try again." +msgstr "Een fout is ontstaan tijdens het verwijderen van de kortingsbon. Probeer het opnieuw." + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:964 +msgid "Coupon can't be applied to this cart" +msgstr "Kortingscode kan niet worden toegepast aan deze winkelwagen" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:951 +msgid "Invalid coupon code" +msgstr "Ongeldige kortingscode" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:794 +msgid "Help Text" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:789 +msgid "Form Title" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:783 +msgid "Coupons Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:764 +msgid "End Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:758 +msgid "Does coupon have an end date?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:696 +msgid "Select Products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:688 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:723 +#: includes/common/payment-gateways/paypal-payflow.php:402 +msgid "User" +msgstr "Gebruiker" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:638 +msgid "Max Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:636 +msgid "Enter the maximum number of times this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:623 +msgid "Leave blank to allow all other coupons." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:622 +msgid "Select combinable coupons" +msgstr "Selecteer combineerbare kortingscodes" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:618 +msgid "Can this coupon be combined with other coupons?" +msgstr "Kan deze kortingscode worden gecombineerd met andere kortingscodes?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:613 +msgid "Apply to each applicable item once per cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:612 +msgid "Apply to each applicable item and quantity ordered" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:609 +msgid "How should the discount amount be applied?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:605 +msgid "Discount Amount" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:604 +msgid "Value must either be a decimal number or a percentage" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:602 +msgid "If you would like to give a percentage-based discount make sure to include the percent (%) symbol. Otherwise, the discount will be applied as a fixed amount off." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:595 +msgid "Letters and Numbers only." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:589 +msgid "Coupon Settings" +msgstr "Kortingscode instellingen" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:447 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:795 +msgid "More than one code? That's OK! Just be sure to enter one at a time." +msgstr "Meer dan één Kortingscode? Geen Probleem! Alleen, u kunt er maar één tegelijk invoeren." + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:444 +msgid "Apply Code" +msgstr "Gebruik code" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:314 +msgid "Coupon Discounts" +msgstr "Kortingscodes" + +#: includes/addons/class-mp-addons-list-table.php:89 +msgid "1 add-on disabled" +msgid_plural "%s add-ons disabled" +msgstr[0] "" +msgstr[1] "" + +#: includes/addons/class-mp-addons-list-table.php:84 +msgid "1 add-on enabled" +msgid_plural "%s add-ons enabled" +msgstr[0] "1 addon ingeschakeld" +msgstr[1] "%s addons ingeschakeld" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Disabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Enable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:129 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:67 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:135 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:168 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:202 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:263 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:296 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:330 +msgid "Enabled" +msgstr "Aanzetten" + +#: includes/addons/class-mp-addons-list-table.php:45 +msgid "Disable add-on" +msgstr "Add-on uitschakelen" + +#: includes/addons/class-mp-addons-list-table.php:34 +msgid "Disable" +msgstr "Uitschakelen" + +#: includes/addons/class-mp-addons-list-table.php:33 +msgid "Enable" +msgstr "Aanzetten" + +#: includes/addons/class-mp-addons-list-table.php:21 +#: includes/admin/class-mp-products-admin.php:2280 +#: includes/common/class-mp-product.php:2916 +msgid "Description" +msgstr "Beschrijving" + +#: includes/common/template-functions.php:2889 +#: includes/multisite/template-functions.php:407 +msgid "Popularity (Least Popular - Most Popular)" +msgstr "Populariteit (Minst Populair - Meest Populair)" + +#: includes/common/template-functions.php:2888 +#: includes/multisite/template-functions.php:406 +msgid "Popularity (Most Popular - Least Popular)" +msgstr "Populariteit (Meest Populair - Minst Populair)" + +#: includes/common/template-functions.php:2885 +#: includes/multisite/template-functions.php:403 +msgid "Name (Z-A)" +msgstr "Naam (Z-A)" + +#: includes/common/template-functions.php:2884 +#: includes/multisite/template-functions.php:402 +msgid "Name (A-Z)" +msgstr "Naam (A-Z)" + +#: includes/common/template-functions.php:2883 +#: includes/multisite/template-functions.php:401 +msgid "Release Date (Oldest to Latest)" +msgstr "Datum van uitgave (van oud naar nieuw)" + +#: includes/common/template-functions.php:2882 +#: includes/multisite/template-functions.php:400 +msgid "Release Date (Latest to Oldest)" +msgstr "Datum van uitgave (van nieuw naar oud)" + +#: includes/admin/class-mp-dashboard-widgets.php:284 +msgid "paid" +msgstr "betaald" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "One Time Pickup" +msgstr "One Time Pickup" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Customer Counter" +msgstr "Klanten hoek" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Daily Pickup" +msgstr "Daily Pickup" + +#: includes/common/shipping-modules/mp-ups.php:182 +msgid "For the most accurate rates, please select the appropriate pick up type for your business." +msgstr "Voor de meest actuele tarieven selecteer a.j.b. het juiste pick-up type voor span3bedrijf." + +#: includes/admin/class-mp-admin.php:374 +msgid "Page saved." +msgstr "Pagina opgeslagen." + +#: includes/admin/class-mp-admin.php:370 +msgid "Custom field deleted." +msgstr "Aangepast veld verwijderd." + +#: includes/admin/class-mp-admin.php:369 +msgid "Custom field updated." +msgstr "Aangepast veld bijgewerkt." + +#: includes/common/payment-gateways/_bitpay.php:541 +msgid "%s - The payment request expired, - %s" +msgstr "%s - Het betalingsverzoek is verlopen, - %s" + +#: includes/common/payment-gateways/_bitpay.php:536 +msgid "%s - The payment not credited in merchants bitpay account, action required. Bitpay invoice status - %s" +msgstr "%s - De betaling is niet op de bitpay rekening bijgeschreven, actie vereist. Bitpay factuurstatus - %s" + +#: includes/common/payment-gateways/_bitpay.php:252 +msgid "If enabled, you will recieve an email for each status update on payment." +msgstr "Indien geactiveerd, ontvangt jij een e-mail voor elke status update met betrekking tot betalingen." + +#: includes/common/payment-gateways/_bitpay.php:240 +msgid "Speed at which the bitcoin transaction registers as \"confirmed\" to the store. This overrides your merchant settings on the Bitpay website." +msgstr "Snelheid waarmee de Bitcoin transactie als \"bevestigd\" wordt geregistreerd naar de winkel. Dit overschrijft uw merchant instellingen op de Bitpay website." + +#: includes/common/payment-gateways/_bitpay.php:238 +msgid "Transaction Speed" +msgstr "Transactie Snelheid" + +#: includes/common/payment-gateways/_bitpay.php:244 +msgid "Low" +msgstr "Laag" + +#: includes/common/payment-gateways/_bitpay.php:243 +msgid "Medium" +msgstr "Gemiddeld" + +#: includes/common/payment-gateways/_bitpay.php:242 +msgid "High" +msgstr "Hoog" + +#: includes/common/payment-gateways/_bitpay.php:177 +#: includes/common/payment-gateways/_bitpay.php:517 +#: includes/common/payment-gateways/_bitpay.php:522 +msgid "%s - The payment request is under process. Bitpay invoice status - %s" +msgstr "%s - Het betalingsverzoek is in verwerking. Bitpay factuurstatus - %s" + +#: includes/common/payment-gateways/_bitpay.php:175 +#: includes/common/payment-gateways/_bitpay.php:527 +msgid "%s - The payment request has been processed - %s" +msgstr "%s - Het verzoek tot betaling is verwerkt - %s" + +#: includes/common/payment-gateways/_bitpay.php:150 +#: includes/common/payment-gateways/_bitpay.php:294 +msgid "Incorrect order invoice, please contact site administrator" +msgstr "Onjuist factuurnummer, neem contact op met de site-beheerder" + +#: includes/common/payment-gateways/_bitpay.php:141 +msgid "We could not verify order invoice details, please try again or contact site administrator for help" +msgstr "We konden de factuurgegevens niet controleren, probeer het opnieuw of neem contact op met de site-beheerder voor hulp" + +#: includes/common/payment-gateways/simplify.php:81 +msgid "Login to Simplify to get your API credentials. Enter your test credentials, then live ones when ready." +msgstr "Login op Simplify op om jouw API-referenties te krijgen. Voer uw test credentials in, en daarna die voor het live gaan wanneer u klaar bent." + +#: includes/common/payment-gateways/paypal-express.php:605 +#: includes/common/payment-gateways/paypal-express.php:647 +msgid "Express Checkout is PayPal's premier checkout solution, which streamlines the checkout process for buyers and keeps them on your site after making a purchase. Unlike PayPal Pro, there are no additional fees to use Express Checkout, though you may need to do a free upgrade to a business account. More Info »" +msgstr "Express Checkout is PayPals beste kassa-oplossing. Het stroomlijnt het betalingsproces voor kopers en houdt ze op uw site na een aankoop. In tegenstelling tot PayPal Pro, zijn er geen extra kosten aan Express Checkout, hoewel het nodig kan zijn om een gratis upgrade te doen voor een zakelijke rekening. Meer informatie » " + +#. Plugin URI of the plugin/theme +msgid "https://premium.wpmudev.org/project/e-commerce/" +msgstr "https://premium.wpmudev.org/project/e-commerce/" + +#. Author of the plugin/theme +msgid "WPMU DEV" +msgstr "WPMU DEV" + +#: includes/admin/class-mp-orders-admin.php:541 +#: includes/admin/class-mp-orders-admin.php:543 +msgid "Tracking Number" +msgstr "Tracking-nummer" + +#: includes/common/class-mp-order.php:805 +#: includes/common/payment-gateways/stripe.php:336 +#: includes/public/class-mp-checkout.php:402 +msgid "Country" +msgstr "Land" + +#: includes/common/class-mp-order.php:784 +#: includes/common/payment-gateways/stripe.php:338 +msgid "City" +msgstr "Stad" + +#: includes/common/class-mp-order.php:780 +msgid "Address 2" +msgstr "Adres 2" + +#: includes/common/payment-gateways/stripe.php:340 +msgid "Address" +msgstr "Adres" + +#: includes/common/class-mp-cart.php:752 includes/common/class-mp-gdpr.php:378 +msgid "Order Total" +msgstr "Bestelling Totaal" + +#: includes/admin/class-mp-orders-admin.php:360 +msgid "Payment Total" +msgstr "Betaling Totaal" + +#: includes/admin/class-mp-orders-admin.php:347 +msgid "Transaction ID" +msgstr "Transactie ID" + +#: includes/common/payment-gateways/wepay.php:207 +msgid "The WePay Card Token was not generated correctly. Please go back and try again." +msgstr "De WePay Card Token is niet correct gegenereerd. Ga terug en probeer het opnieuw." + +#: includes/common/payment-gateways/wepay.php:186 +#: includes/common/shipping-modules/mp-fedex.php:283 +msgid "Account ID" +msgstr "Account ID" + +#: includes/common/payment-gateways/wepay.php:179 +msgid "Access Token" +msgstr "Toegangstoken" + +#: includes/common/payment-gateways/wepay.php:172 +msgid "Client Secret" +msgstr "Klant geheim" + +#: includes/common/payment-gateways/wepay.php:165 +msgid "Client ID" +msgstr "Klant ID" + +#: includes/common/payment-gateways/wepay.php:159 +msgid "You must login to WePay to get your API credentials. Make sure to check \"Tokenize credit cards\" option under \"API Keys\" section of your WePay app." +msgstr "U moet inloggen op WePay om jouw API credentials te krijgen. Vergeet niet om \"Tokenize credit cards\" aan te vinken onder de \"API Keys\" sectie van uw WePay app." + +#: includes/common/payment-gateways/wepay.php:154 +msgid "When in live mode it is recommended to use SSL certificate setup for the site where the checkout form will be displayed." +msgstr "Als jij draait in live mode is het aanbevolen om een SSL certificaat te gebruiken op de site waar het checkout formulier wordt getoond." + +#: includes/common/payment-gateways/wepay.php:148 +msgid "Donation" +msgstr "Donatie" + +#: includes/common/payment-gateways/wepay.php:147 +msgid "Event" +msgstr "Evenement" + +#: includes/common/payment-gateways/wepay.php:146 +msgid "Personal" +msgstr "Persoonlijk" + +#: includes/common/payment-gateways/wepay.php:145 +msgid "Service" +msgstr "Service" + +#: includes/common/payment-gateways/wepay.php:144 +msgid "Goods" +msgstr "Goederen" + +#: includes/common/payment-gateways/wepay.php:141 +msgid "Choose type of payments" +msgstr "Kies het type betalingen" + +#: includes/common/payment-gateways/wepay.php:140 +msgid "Checkout Type" +msgstr "Checkout Type" + +#: includes/common/payment-gateways/wepay.php:134 +msgid "Staging" +msgstr "Staging" + +#: includes/common/payment-gateways/wepay.php:131 +msgid "Choose STAGING if you have registered the app on stage.wepay.com, or PRODUCTION if you registered on www.wepay.com" +msgstr "Kies STAGING als u de applicatie heeft geregistreerd op stage.wepay.com, of PRODUCTION als u de applicatie heeft geregistreerd op www.wepay.com" + +#: includes/common/payment-gateways/wepay.php:36 +#: includes/common/payment-gateways/wepay.php:299 +msgid "WePay" +msgstr "WePay" + +#: includes/common/payment-gateways/_payway.php:366 +msgid "Rejected - A payment was rejected." +msgstr "Afgekeurd - Een betaling is afgekeurd." + +#: includes/common/payment-gateways/_payway.php:360 +msgid "Failed - A payment was rejected due to an error." +msgstr "Mislukt - Een betaling is afgekeurd als gevolg van een storing." + +#: includes/common/payment-gateways/_payway.php:342 +msgid "PayWay balance, Credit Card, or Instant Transfer" +msgstr "PayWay balance, Credit Card, of Instant Transfer" + +#: includes/common/payment-gateways/_payway.php:298 +msgid "Full path of the cacerts.crt file" +msgstr "Volledig pad naar het cacerts.crt bestand" + +#: includes/common/payment-gateways/_payway.php:284 +msgid "User Name" +msgstr "Gebruikersnaam" + +#: includes/common/payment-gateways/_payway.php:277 +msgid "Biller Code" +msgstr "Biller Code" + +#: includes/common/payment-gateways/_payway.php:273 +msgid "Log Directory" +msgstr "Log Directory" + +#: includes/common/payment-gateways/_payway.php:266 +msgid "Encryption Key" +msgstr "Encryptie sleutel" + +#: includes/common/payment-gateways/_payway.php:60 +msgid "Your PayWay transaction has been canceled." +msgstr "Uw PayWay transactie is geannuleerd." + +#: includes/common/payment-gateways/_payway.php:40 +#: includes/common/payment-gateways/_payway.php:41 +msgid "PayWay" +msgstr "PayWay" + +#: includes/common/payment-gateways/paypal-chained-payments.php:862 +msgid "You must register this application with PayPal using your business account login to get an Application ID that will work with your API credentials. A bit of a hassle, but worth it! In the near future we will be looking for ways to simplify this process. Register then submit your application while logged in to the developer portal. Note that you do not need an Application ID for testing in sandbox mode. More Information »" +msgstr "U dient deze applicatie te registreren bij PayPal m.b.v. uw business account inloggegevens om vervolgens een Application ID te verkrijgen die met uw API-credentials zal werken. Het kost wat moeite, maar dat is het waard! Binnenkort zullen we kijken naar mogelijkheden om dit proces te versimpelen. Registreer en accordeer uw applicatie terwijl u bent ingelogd in het developer portal. U hebt geen Application ID nodig voor het testen in de sandbox modus. Meer informatie »" + +#: includes/common/payment-gateways/paypal-chained-payments.php:818 +#: includes/common/payment-gateways/paypal-chained-payments.php:840 +#: includes/common/payment-gateways/paypal-express.php:705 +msgid "You must login to PayPal and create an API signature to get your credentials. Instructions »" +msgstr "U dient in te loggen in PayPal en een API signature aan te maken om uw inloggegevens te krijgen. Instructies »" + +#: includes/common/payment-gateways/paypal-payflow.php:378 +msgid "Use Payflow payment gateway to accept online payments using your Internet merchant account and processing network. PayPal Payflow Pro is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway." +msgstr "Gebruik Payflow payment gateway om online betalingen te accepteren gebruik makend van uw Internet merchant account en netwerk. PayPal Payflow Pro is een aanpasbare payment processing oplossing die de verkoper controle geeft over alle stappen in het transactie proces. Een SSL-certificaat is vereist om deze gateway te kunnen gebruiken." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:595 +msgid "Tags Only" +msgstr "Alleen Tags" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:594 +msgid "Category Only" +msgstr "Alleen Categorieën" + +#: includes/admin/class-mp-shortcode-builder.php:795 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:593 +msgid "Category & Tags" +msgstr "Categorieën & Tags" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:591 +msgid "Relate Products By" +msgstr "Gerelateerde producten" + +#: includes/admin/class-mp-shortcode-builder.php:1008 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:455 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:751 +msgid "Right" +msgstr "Rechts" + +#: includes/admin/class-mp-shortcode-builder.php:1007 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:454 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:749 +msgid "Left" +msgstr "Links" + +#: includes/admin/class-mp-shortcode-builder.php:1009 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:750 +msgid "Center" +msgstr "Midden" + +#: marketpress.php:273 +msgid "Orders from your e-commerce store." +msgstr "Bestellingen van uw webshop." + +#: marketpress.php:231 +msgid "Products for your e-commerce store." +msgstr "Producten voor uw webshop." + +#: marketpress.php:222 +msgid "Edit Product" +msgstr "Product bewerken" + +#. Description of the plugin/theme +msgid "The complete WordPress ecommerce plugin - works perfectly with BuddyPress and Multisite too to create a social marketplace, where you can take a percentage! Activate the plugin, adjust your settings then add some products to your store." +msgstr "De complete WordPress ecommerce plugin - werkt perfect met BuddyPress en Multisite om een sociale marktplaats te maken, waar u een percentage van kunt nemen! Activeer de plugin, pas uw instellingen aan en voeg producten toe aan uw winkel." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:272 +msgid "Beside" +msgstr "Naast" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:271 +msgid "Above" +msgstr "Hierboven" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:268 +msgid "Pin Count" +msgstr "Pin Count" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:261 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:287 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:318 +msgid "All View" +msgstr "Bekijk Alle" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:260 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:286 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:317 +msgid "Single View" +msgstr "Bekijk Enkel" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:259 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:285 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:316 +msgid "Off" +msgstr "Uit" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:578 +msgid "Related Product Limit" +msgstr "Gerelateerde producten limiet" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:681 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1201 +msgid "Applies To" +msgstr "Van toepassing op" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:685 +msgid "All Products" +msgstr "Alle Producten" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:487 +msgid "The label shown for the tax line item in the cart. Taxes, VAT, GST, etc." +msgstr "Het label dat getoond wordt voor de lijn die betrekking heeft op de belasting. Taxes, VAT, GST, etc." + +#: includes/admin/class-mp-setup-wizard.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:485 +msgid "Tax Label" +msgstr "Belasting Label" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:81 +msgid "Apply" +msgstr "Toepassen" + +#: includes/admin/class-mp-admin.php:192 +msgid "MarketPress Instructions" +msgstr "MarketPress Instructies" + +#: includes/admin/class-mp-products-admin.php:1954 +#: includes/admin/class-mp-products-admin.php:2194 includes/common/data.php:62 +#: includes/common/helpers.php:150 +msgid "Taxes" +msgstr "Belasting(en)" + +#: includes/admin/class-mp-products-admin.php:1417 +#: includes/common/class-mp-product.php:2900 +msgid "Related Products" +msgstr "Soortgelijke producten" + +#: includes/common/shipping-modules/mp-usps.php:282 +#: includes/common/shipping-modules/mp-usps.php:316 +msgid "@ Max" +msgstr "@ Max" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "(3-5 days)" +msgstr "(3-5 dagen)" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "Priority Mail Express International Padded Flat Rate Envelope" +msgstr "Priority Mail Express International Padded Flat Rate Envelope" + +#: includes/common/shipping-modules/mp-usps.php:92 +msgid "Priority Mail Padded Flat Rate Envelope" +msgstr "Priority Mail Padded Flat Rate Envelope" + +#: includes/common/shipping-modules/mp-pickup.php:171 +#: includes/common/shipping-modules/mp-pickup.php:247 +msgid "In Store" +msgstr "In voorraad" + +#: includes/common/shipping-modules/mp-pickup.php:159 +msgid "Pickup Fee" +msgstr "Afhaal toeslag" + +#: includes/common/shipping-modules/mp-pickup.php:141 +msgid "This option allows your customers to indicate that they will pick-up their order at your place of business." +msgstr "Deze optie staat jouw klanten toe om aan te geven dat ze hun bestelling bij jouw bedrijf op komen halen." + +#: includes/common/shipping-modules/mp-pickup.php:60 +#: includes/common/shipping-modules/mp-pickup.php:76 +#: includes/common/shipping-modules/mp-pickup.php:176 +msgid "Pickup Instructions" +msgstr "Instructies voor afhalen" + +#: includes/common/shipping-modules/mp-pickup.php:24 +#: includes/common/shipping-modules/mp-pickup.php:254 +msgid "Pickup" +msgstr "Afhalen" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping - 0.00" +msgstr "Gratis verzending - 0.00" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:256 +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:440 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping" +msgstr "Gratis verzending" + +#: includes/common/shipping-modules/mp-fedex.php:309 +msgid "Your Packaging" +msgstr "Your Packaging" + +#: includes/common/shipping-modules/mp-fedex.php:301 +msgid "Station" +msgstr "Station" + +#: includes/common/shipping-modules/mp-fedex.php:300 +msgid "Request Courier" +msgstr "Request Courier" + +#: includes/common/shipping-modules/mp-fedex.php:299 +msgid "Drop Box" +msgstr "Drop Box" + +#: includes/common/shipping-modules/mp-fedex.php:298 +msgid "Business Service Center" +msgstr "Business Service Center" + +#: includes/common/shipping-modules/mp-fedex.php:297 +msgid "Regular Pickup" +msgstr "Regular Pickup" + +#: includes/common/payment-gateways/wepay.php:135 +#: includes/common/shipping-modules/mp-fedex.php:264 +msgid "Production" +msgstr "Productie" + +#: includes/common/payment-gateways/simplify.php:207 +msgid "Simplify Commerce by MasterCard" +msgstr "Simplify Commerce by MasterCard" + +#: includes/common/payment-gateways/simplify.php:104 +msgid "When in live mode, although it is not required, Simplify recommends you have an SSL certificate." +msgstr "Hoewel het niet vereist is, beveelt Simplify het gebruiken van een SSL certificaat aan wanneer jij live gaat." + +#: includes/common/payment-gateways/paymill.php:183 +#: includes/common/payment-gateways/simplify.php:87 +msgid "Public Key" +msgstr "Public Key" + +#: includes/common/payment-gateways/paymill.php:175 +#: includes/common/payment-gateways/simplify.php:94 +msgid "Private Key" +msgstr "Private Key" + +#: includes/common/payment-gateways/simplify.php:71 +msgid "Simplify helps merchants to accept online payments from Mastercard, Visa, American Express, Discover, JCB, and Diners Club cards. It's that simple. We offer a merchant account and payment gateway in a single, secure package so you can concentrate on what really matters to your business. Only supports USD currently." +msgstr "Simplify helpt winkel-eigenaren om online betalingen te accepteren via Mastercard, Visa, American Express, Discover, JCB en Diners Club creditcards. Zo eenvoudig is dat. Wij bieden u een winkeleigenaars-account en betaalpoort in één, veilige verpakking, Zodat u zich kunt concentreren op wat echt belangrijk is voor Uw bedrijf. Momenteel ondersteunt Simplify alleen USD." + +#: includes/common/payment-gateways/wepay.php:267 +msgid "%1$s" +msgstr "%1$s" + +#: includes/common/payment-gateways/simplify.php:151 +msgid "The Simplify Token was not generated correctly. Please go back and try again." +msgstr "De Simplify Token was niet juist gegenereerd. Ga a.j.b. terug en probeer nogmaals." + +#: includes/common/payment-gateways/simplify.php:18 +msgid "Simplify" +msgstr "Simplify" + +#: includes/common/payment-gateways/pin.php:255 +msgid "%1$s Card %2$s" +msgstr "%1$s Card %2$s" + +#: includes/common/payment-gateways/pin.php:211 +msgid "The PIN Token was not generated correctly. Please go back and try again." +msgstr "De PIN Token is niet correct gegenereerd. Ga a.j.b. terug en probeer nogmaals." + +#: includes/common/payment-gateways/pin.php:187 +msgid "Selecting a currency other than currency supported by PIN may cause problems at checkout." +msgstr "Het selecteren van een valuta anders dan de valuta die ondersteund worden door PIN kan problemen veroorzaken bij de kassa." + +#: includes/common/payment-gateways/pin.php:164 +msgid "You must login to PIN to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "Je moet inloggen om PIN voor uw API-referenties krijgen . U kunt uw test sleutels in te voeren, dan live-sleutels die als u klaar bent." + +#: includes/common/payment-gateways/pin.php:158 +msgid "When in live mode PIN recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "When in live mode PIN recommends you have an SSL certificate setup for the site where the checkout form will be displayed." + +#: includes/common/payment-gateways/pin.php:45 +#: includes/common/payment-gateways/pin.php:286 +msgid "PIN" +msgstr "PIN" + +#: includes/common/payment-gateways/paypal-express.php:830 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer" +msgstr "Een betaling werd teruggeboekt of op een andere wijze ingetrokken. Het bedrag is verwijderd uit jouw saldo en teruggestuurd naar de koper" + +#: includes/common/payment-gateways/paypal-chained-payments.php:534 +#: includes/common/payment-gateways/paypal-express.php:865 +msgid "The payment is pending" +msgstr "De betaling is in afwachting" + +#: includes/common/payment-gateways/paymill.php:235 +msgid "The Paymill Token was not generated correctly. Please go back and try again." +msgstr "De Paymill Token was niet correct gegenereerd. Ga a.j.b. terug en probeer nogmaals." + +#: includes/common/payment-gateways/paymill.php:169 +msgid "You must login to Paymill to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "Jij moet inloggen bij Paymill om jouw API credentials te krijgen. Jij kunt jouw test keys invoeren, en daarna die voor de live versie wanneer jij klaar bent." + +#: includes/common/payment-gateways/paymill.php:45 +#: includes/common/payment-gateways/paymill.php:308 +msgid "Paymill" +msgstr "Paymill" + +#: includes/common/payment-gateways/paymill.php:90 +msgid "Invalid cardholder" +msgstr "Ongeldige kaarthouder" + +#: includes/common/payment-gateways/paymill.php:89 +msgid "Card is no longer valid or has expired" +msgstr "Kaart is niet meer geldig of is verlopen" + +#: includes/common/payment-gateways/paymill.php:88 +msgid "Please enter a valid Card CVC" +msgstr "Gebruik a.j.b. een geldig CVC nummer" + +#: includes/common/payment-gateways/paymill.php:87 +msgid "Please choose a valid Expiration Date." +msgstr "Gebruik alsjeblieft een geldige geldigheidsdatum." + +#: includes/common/payment-gateways/skrill.php:99 +#: includes/common/payment-gateways/skrill.php:100 +msgid "Skrill (Moneybookers)" +msgstr "Skrill (Moneybookers)" + +#: includes/common/shipping-modules/mp-weight-rate.php:24 +#: includes/common/shipping-modules/mp-weight-rate.php:292 +msgid "Weight Rate" +msgstr "Gewicht Tarief" + +#: includes/common/shipping-modules/mp-usps.php:303 +msgid "USPS Offered International Services" +msgstr "USPS Offered International Services" + +#: includes/common/shipping-modules/mp-usps.php:270 +msgid "USPS Offered Domestic Services" +msgstr "USPS Offered Domestic Services" + +#: includes/common/shipping-modules/mp-usps.php:264 +msgid "USPS Settings" +msgstr "USPS Instellingen" + +#: includes/common/shipping-modules/mp-usps.php:145 +msgid "Flat Rate Large" +msgstr "Flat Rate Large" + +#: includes/common/shipping-modules/mp-usps.php:140 +msgid "Flat Rate Medium 2" +msgstr "Flat Rate Medium 2" + +#: includes/common/shipping-modules/mp-usps.php:135 +msgid "Flat Rate Medium 1" +msgstr "Flat Rate Medium 1" + +#: includes/common/shipping-modules/mp-usps.php:130 +msgid "Flat Rate Small" +msgstr "Flat Rate Small" + +#: includes/common/shipping-modules/mp-usps.php:118 +msgid "First Class International Parcel" +msgstr "Eerste Klasse Internationaal Pakket" + +#: includes/common/shipping-modules/mp-usps.php:114 +msgid "Priority Mail International Small Flat Rate Boxes" +msgstr "Priority Mail International Small Flat Rate Boxes" + +#: includes/common/shipping-modules/mp-usps.php:112 +msgid "Priority Mail International Medium Flat Rate Boxes" +msgstr "Priority Mail International Medium Flat Rate Boxes" + +#: includes/common/shipping-modules/mp-usps.php:110 +msgid "Priority Mail International Large Flat Rate Boxes" +msgstr "Priority Mail International Large Flat Rate Boxes" + +#: includes/common/shipping-modules/mp-usps.php:108 +msgid "Priority Mail International" +msgstr "Priority Mail International" + +#: includes/common/shipping-modules/mp-usps.php:106 +msgid "Express Mail International Flat Rate Boxes" +msgstr "Express Mail International Flat Rate Boxes" + +#: includes/common/shipping-modules/mp-usps.php:104 +msgid "Express Mail International" +msgstr "Express Mail International" + +#: includes/common/shipping-modules/mp-usps.php:98 +msgid "Library Mail" +msgstr "Library Mail" + +#: includes/common/shipping-modules/mp-usps.php:96 +msgid "Media Mail" +msgstr "Media Mail" + +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "First-Class Mail Parcel" +msgstr "First-Class Mail Parcel" + +#: includes/common/shipping-modules/mp-usps.php:90 +msgid "Priority Mail Small Flat Rate Box" +msgstr "Priority Mail Small Flat Rate Box" + +#: includes/common/shipping-modules/mp-usps.php:88 +msgid "Priority Mail Medium Flat Rate Box" +msgstr "Priority Mail Medium Flat Rate Box" + +#: includes/common/shipping-modules/mp-usps.php:86 +#: includes/common/shipping-modules/mp-usps.php:88 +#: includes/common/shipping-modules/mp-usps.php:90 +#: includes/common/shipping-modules/mp-usps.php:92 +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "(2-4 days)" +msgstr "(2-4 dagen)" + +#: includes/common/shipping-modules/mp-usps.php:86 +msgid "Priority Mail Large Flat Rate Box" +msgstr "Priority Mail Large Flat Rate Box" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "(2-4) days" +msgstr "(2-4) dagen" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "Priority Mail" +msgstr "Priority Mail" + +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "Express Mail Sunday/Holiday Delivery Flat Rate Boxes" +msgstr "Express Mail Sunday/Holiday Delivery Flat Rate Boxes" + +#: includes/common/shipping-modules/mp-usps.php:80 +msgid "Express Mail Flat Rate Boxes Hold For Pickup" +msgstr "Express Mail Flat Rate Boxes Hold For Pickup" + +#: includes/common/shipping-modules/mp-usps.php:78 +msgid "Express Mail Flat Rate Boxes" +msgstr "Express Mail Flat Rate Boxes" + +#: includes/common/shipping-modules/mp-usps.php:76 +msgid "Express Mail Sunday/Holiday Delivery" +msgstr "Express Mail Sunday/Holiday Delivery" + +#: includes/common/shipping-modules/mp-usps.php:74 +msgid "Express Mail Hold For Pickup" +msgstr "Express Mail Hold For Pickup" + +#: includes/common/shipping-modules/mp-usps.php:72 +#: includes/common/shipping-modules/mp-usps.php:74 +#: includes/common/shipping-modules/mp-usps.php:76 +#: includes/common/shipping-modules/mp-usps.php:78 +#: includes/common/shipping-modules/mp-usps.php:80 +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "(1-2 days)" +msgstr "(1-2 dagen)" + +#: includes/common/shipping-modules/mp-usps.php:72 +msgid "Express Mail" +msgstr "Express Mail" + +#: includes/common/shipping-modules/mp-usps.php:67 +#: includes/common/shipping-modules/mp-usps.php:902 +msgid "USPS" +msgstr "USPS" + +#: includes/common/shipping-modules/mp-ups.php:534 +msgid "UPS (beta)" +msgstr "UPS (beta)" + +#: includes/common/shipping-modules/mp-ups.php:166 +msgid "Required if using negotiated rates" +msgstr "Required if using negotiated rates" + +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "Saver" +msgstr "Besparing" + +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "Worldwide Express Plus" +msgstr "Worldwide Express Plus" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "(Scheduled)" +msgstr "(Gepland)" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "Standard" +msgstr "Standaard" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "(2-5 Days)" +msgstr "(2-5 Dagen)" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "Worldwide Expedited" +msgstr "Wereldwijd verzonden" + +#: includes/common/shipping-modules/mp-ups.php:54 +msgid "Worldwide Express" +msgstr "Worldwide Express" + +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "2nd Day Air AM" +msgstr "2e dag luchtpost 's ochtends" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "(1 Days)" +msgstr "(1 dag)" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "Next Day Air Early AM" +msgstr "Volgende dag luchtpost vroeg in de ochtend" + +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "Next Day Air Saver" +msgstr "Volgende dag luchtpost besparing" + +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "3 Day Select" +msgstr "3 Dagen keuze" + +#: includes/common/shipping-modules/mp-ups.php:49 +msgid "Ground" +msgstr "Over land" + +#: includes/common/shipping-modules/mp-ups.php:48 +msgid "2nd Day Air" +msgstr "2e dag luchtpost" + +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "Next Day Air" +msgstr "Volgende dag luchtpost" + +#: includes/admin/class-mp-orders-admin.php:475 +#: includes/common/shipping-modules/mp-ups.php:43 +msgid "UPS" +msgstr "UPS" + +#: includes/common/shipping-modules/mp-table-rate.php:27 +#: includes/common/shipping-modules/mp-table-rate.php:318 +msgid "Table Rate" +msgstr "Table Rate" + +#: includes/common/shipping-modules/mp-table-quantity.php:71 +#: includes/common/shipping-modules/mp-table-quantity.php:77 +msgid "Shipping Cost: " +msgstr "Verzendkosten " + +#: includes/common/shipping-modules/mp-table-quantity.php:70 +#: includes/common/shipping-modules/mp-table-quantity.php:76 +msgid "If quantity is greater than:" +msgstr "Als de hoeveelheid groter is dan:" + +#: includes/common/shipping-modules/mp-table-quantity.php:66 +msgid "Each band must be a higher price than the one above it." +msgstr "Elke band moet een hogere prijs dan die erboven hebben." + +#: includes/common/shipping-modules/mp-table-quantity.php:56 +msgid "Number of Bands:" +msgstr "Aantal banden:" + +#: includes/common/shipping-modules/mp-table-quantity.php:53 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Each layer must be a higher quantity than the previous." +msgstr "Wees er zeker van een verzendkostenprijs voor elke optie in te vullen. Anders krijgen die klanten mogelijk gratis verzendkosten. Elke laag moet een hogere hoeveelheid hebben dan de voorgaande." + +#: includes/common/shipping-modules/mp-table-quantity.php:51 +msgid "Table Quantity Settings" +msgstr "Tabel Hoeveelheid Instellingen" + +#: includes/common/shipping-modules/mp-table-quantity.php:31 +msgid "Table Quantity" +msgstr "Tabel Hoeveelheid" + +#: includes/common/shipping-modules/mp-flat-rate.php:135 +#: includes/common/shipping-modules/mp-table-rate.php:174 +#: includes/common/shipping-modules/mp-weight-rate.php:189 +msgid "European Union" +msgstr "Europese Unie" + +#: includes/common/shipping-modules/mp-flat-rate.php:123 +#: includes/common/shipping-modules/mp-table-rate.php:162 +#: includes/common/shipping-modules/mp-weight-rate.php:177 +msgid "United States" +msgstr "Verenigde Staten" + +#: includes/common/shipping-modules/mp-flat-rate.php:111 +#: includes/common/shipping-modules/mp-table-rate.php:151 +#: includes/common/shipping-modules/mp-weight-rate.php:166 +msgid "In Country" +msgstr "Binnenland" + +#: includes/common/shipping-modules/mp-flat-rate.php:146 +#: includes/common/shipping-modules/mp-table-rate.php:186 +#: includes/common/shipping-modules/mp-weight-rate.php:201 +msgid "International" +msgstr "Internationaal" + +#: includes/common/shipping-modules/mp-flat-rate.php:101 +#: includes/common/shipping-modules/mp-table-rate.php:141 +#: includes/common/shipping-modules/mp-weight-rate.php:156 +msgid "Canada" +msgstr "Canada" + +#: includes/common/shipping-modules/mp-flat-rate.php:92 +#: includes/common/shipping-modules/mp-table-rate.php:132 +#: includes/common/shipping-modules/mp-weight-rate.php:147 +msgid "Hawaii and Alaska" +msgstr "Hawaii en Alaska" + +#: includes/common/shipping-modules/mp-flat-rate.php:83 +#: includes/common/shipping-modules/mp-table-rate.php:123 +#: includes/common/shipping-modules/mp-weight-rate.php:138 +msgid "Lower 48 States" +msgstr "Lower 48 States" + +#: includes/common/shipping-modules/mp-flat-rate.php:64 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping." +msgstr "Wees er zeker van een verzendkostenprijs voor elke optie in te vullen. Anders krijgen die klanten mogelijk gratis verzendkosten." + +#: includes/common/shipping-modules/mp-flat-rate.php:25 +#: includes/common/shipping-modules/mp-flat-rate.php:223 +msgid "Flat Rate" +msgstr "Flat Rate" + +#: includes/common/shipping-modules/mp-fedex.php:761 +msgid "FedEx (beta)" +msgstr "FedEx (beta)" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Centimeters" +msgstr "Centimeters" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Inches" +msgstr "Inches" + +#: includes/admin/class-mp-products-admin.php:1676 +#: includes/admin/class-mp-setup-wizard.php:547 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:166 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +msgid "Kilograms" +msgstr "Kilogram" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:103 +msgid " %1$s - %2$s" +msgstr " %1$s - %2$s" + +#: includes/common/shipping-modules/mp-usps.php:358 +msgid "Max Weight per Box" +msgstr "Max. Gewicht per doos" + +#: includes/common/shipping-modules/mp-usps.php:356 +msgid "Box Dimensions" +msgstr "Box Dimensions" + +#: includes/common/shipping-modules/mp-usps.php:354 +msgid "Box Name" +msgstr "Box Name" + +#: includes/common/shipping-modules/mp-usps.php:344 +msgid "Total weight selects the box size used for calculating Shipping costs." +msgstr "Total weight selects the box size used for calculating Shipping costs." + +#: includes/common/shipping-modules/mp-usps.php:343 +msgid "For each box defined enter the maximum weight it can contain." +msgstr "Voor elke gedefinieerde doos vul het maximum gewicht in dat het kan bevatten." + +#: includes/common/shipping-modules/mp-usps.php:341 +msgid "Enter your standard box sizes as LengthxWidthxHeight" +msgstr "Vul jouw standaard doosmaten in als lengtexbreedtexhoogte" + +#: includes/common/shipping-modules/mp-fedex.php:386 +#: includes/common/shipping-modules/mp-ups.php:193 +#: includes/common/shipping-modules/mp-usps.php:234 +#: includes/common/shipping-modules/mp-usps.php:338 +msgid "Standard Boxes and Weight Limits" +msgstr "Standaard Dozen en Gewichtslimieten" + +#: includes/common/shipping-modules/mp-usps.php:328 +msgid "Handling Charge per Interntional Shipment" +msgstr "Handling Charge per Interntional Shipment" + +#: includes/common/shipping-modules/mp-usps.php:294 +msgid "Handling Charge per Domestic Shipment " +msgstr "Handling Charge per Domestic Shipment " + +#: includes/common/shipping-modules/mp-fedex.php:388 +#: includes/common/shipping-modules/mp-ups.php:196 +#: includes/common/shipping-modules/mp-usps.php:237 +msgid "Add Box" +msgstr "Voeg doos toe" + +#: includes/common/shipping-modules/mp-fedex.php:63 +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "(Next Day)" +msgstr "(Volgende Dag)" + +#: includes/common/shipping-modules/mp-fedex.php:63 +msgid "Europe First International Priority" +msgstr "Europe First International Priority" + +#: includes/common/shipping-modules/mp-fedex.php:62 +msgid "International Priority" +msgstr "International Priority" + +#: includes/common/shipping-modules/mp-fedex.php:61 +#: includes/common/shipping-modules/mp-fedex.php:62 +#: includes/common/shipping-modules/mp-ups.php:54 +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "(1-3 Days)" +msgstr "(1-3 Dagen)" + +#: includes/common/shipping-modules/mp-fedex.php:61 +msgid "International First" +msgstr "International First" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "(5 Days)" +msgstr "(5 Dagen)" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "International Economy" +msgstr "International Economy" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "(2-7 Days)" +msgstr "(2-7 Dagen)" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "Smart Post" +msgstr "Smart Post" + +#: includes/common/shipping-modules/mp-fedex.php:55 +#: includes/common/shipping-modules/mp-ups.php:49 +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "(1-5 Days)" +msgstr "(1-5 Dagen)" + +#: includes/common/shipping-modules/mp-fedex.php:55 +msgid "Ground Home Delivery" +msgstr "Ground Home Delivery" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "(1-7 Days)" +msgstr "(1-7 Dagen)" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "Fedex Ground" +msgstr "Fedex Ground" + +#: includes/common/shipping-modules/mp-fedex.php:53 +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "(3 Days)" +msgstr "(3 Dagen)" + +#: includes/common/shipping-modules/mp-fedex.php:53 +msgid "Fedex Express Saver" +msgstr "Fedex Express Saver" + +#: includes/common/shipping-modules/mp-fedex.php:52 +#: includes/common/shipping-modules/mp-ups.php:48 +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "(2 Days)" +msgstr "(2 Dagen)" + +#: includes/common/shipping-modules/mp-fedex.php:52 +msgid "Fedex 2 Day" +msgstr "Fedex 2 Dagen" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "(2 Days am)" +msgstr "(2 Days am)" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "Fedex 2 Day AM" +msgstr "Fedex 2 Day AM" + +#: includes/common/shipping-modules/mp-fedex.php:50 +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "(1 Day)" +msgstr "(1 Dag)" + +#: includes/common/shipping-modules/mp-fedex.php:50 +msgid "Standard Overnight" +msgstr "Standard Overnight" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "(1 Day am )" +msgstr "(1 Day am )" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "Priority Overnight" +msgstr "Priority Overnight" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "(1 Day am)" +msgstr "(1 Day am)" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "First Overnight" +msgstr "First Overnight" + +#: includes/admin/class-mp-orders-admin.php:476 +#: includes/common/shipping-modules/mp-fedex.php:31 +msgid "FedEx" +msgstr "FedEx" + +#: includes/common/payment-gateways/paymill.php:270 +#: includes/common/payment-gateways/simplify.php:179 +#: includes/common/payment-gateways/stripe.php:365 +msgid "%1$s Card ending in %2$s - Expires %3$s" +msgstr "%1$s Card ending in %2$s - Expires %3$s" + +#: includes/common/payment-gateways/paymill.php:259 +#: includes/common/payment-gateways/pin.php:238 +#: includes/common/payment-gateways/simplify.php:171 +msgid "%s Store Purchase - Order ID: %s, Email: %s" +msgstr "%s Aankoop - Order ID: %s, E-mail: %s" + +#: includes/common/payment-gateways/stripe.php:266 +msgid "You must login to Stripe to get your API credentials. You can enter your test credentials, then live ones when ready." +msgstr "Je moet inloggen bij Stripe om jouw API gegevens te krijgen. Je kunt jouw testgegevens gebruiken en daarna die voor het live gaan wanneer jij daar klaar voor bent." + +#: includes/common/payment-gateways/stripe.php:261 +msgid "When in live mode Stripe recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "In Live-modus beveelt Stripe aan dat jij een SSL certificaat hebt geïnstalleerd voor dat deel van de site waar jouw betalingsformulier te zien is." + +#: includes/common/payment-gateways/stripe.php:311 +msgid "The Stripe Token was not generated correctly. Please go back and try again." +msgstr "De Stripe Token is niet correct gegenereerd. Ga jij alsjeblieft terug en probeer het nogmaals." + +#: includes/common/payment-gateways/class-mp-gateway-api.php:263 +#: includes/common/payment-gateways/paymill.php:122 +#: includes/common/payment-gateways/stripe.php:222 +msgid "Card Number" +msgstr "Card nummer" + +#: includes/common/payment-gateways/paymill.php:86 +msgid "Please enter a valid Credit Card Number." +msgstr "Vul alsjeblieft een geldig Creditcardnummer in." + +#: includes/common/payment-gateways/stripe.php:45 +#: includes/common/payment-gateways/stripe.php:433 +msgid "Stripe" +msgstr "Stripe" + +#: includes/common/payment-gateways/paypal-express.php:750 +msgid "Sets the background color for the payment page. By default, the color is white." +msgstr "Stelt de achtergrondkleur voor de betalingspagina in. Standaard is deze wit." + +#: includes/common/payment-gateways/paypal-express.php:745 +msgid "Sets the background color for the header of the payment page. By default, the color is white." +msgstr "Stelt de achtergrondkleur voor de header van de betalingspagina in. Standaard is deze wit." + +#: includes/common/payment-gateways/paypal-express.php:740 +msgid "Sets the border color around the header of the payment page. The border is a 2-pixel perimeter around the header space, which is 750 pixels wide by 90 pixels high. By default, the color is black." +msgstr "Stelt de randkleur in rond de header van de betalingspagina. De rand is een 2-pixel perimeter rond de header ruimte, welke 750 pixels breed bij 90 pixels hoog is. Standaard is deze kleur zwart." + +#: includes/common/payment-gateways/paypal-express.php:735 +msgid "URL for an image you want to appear at the top left of the payment page. The image has a maximum size of 750 pixels wide by 90 pixels high. PayPal recommends that you provide an image that is stored on a secure (https) server. If you do not specify an image, the business name is displayed." +msgstr "URL voor een afbeelding waarvan jij wilt dat deze verschijnt bovenaan de betalingspagina. De afbeelding heeft een maximum grootte van 750 pixels breed bij 90 pixels hoog. PayPal beveelt aan dat jij een afbeelding gebruikt die is opgeslagen op een beveiligde (https) server. Als jij geen afbeelding specificeert dan zal de bedrijfsnaam worden getoond." + +#: includes/common/payment-gateways/paypal-express.php:857 +#: includes/common/payment-gateways/paypal-express.php:1131 +msgid "The payment is pending because it is part of an order that has been authorized but not settled." +msgstr "De betaling is in verwerking omdat deze deel uitmaakt van een order die wel is geautoriseerd maar nog niet geregeld." + +#: includes/common/payment-gateways/paypal-express.php:853 +#: includes/common/payment-gateways/paypal-express.php:1127 +msgid "The payment is pending because it has been authorized but not settled. You must capture the funds first." +msgstr "De betaling is in behandeling omdat deze wel is geautoriseerd maar niet geregeld. Jij moet het geld eerst vastleggen." + +#: includes/common/payment-gateways/paypal-express.php:847 +#: includes/common/payment-gateways/paypal-express.php:1120 +msgid "You denied the payment when it was marked as pending." +msgstr "Jij hebt de betaling geweigerd terwijl deze in behandeling was." + +#: includes/common/payment-gateways/paypal-express.php:837 +#: includes/common/payment-gateways/paypal-express.php:1108 +msgid "A reversal has occurred on this transaction due to an unknown reason." +msgstr "Er heeft een herroeping op deze transactie plaatsgevonden vanwege een onbekende reden." + +#: includes/common/payment-gateways/paypal-express.php:836 +#: includes/common/payment-gateways/paypal-express.php:1107 +msgid "A reversal has occurred on this transaction because you have given the customer a refund." +msgstr "Een herroeping heeft plaatsgevonden op deze transactie, omdat jij de klant een terugbetaling hebt gegeven." + +#: includes/common/payment-gateways/paypal-express.php:835 +#: includes/common/payment-gateways/paypal-express.php:1106 +msgid "A reversal has occurred on this transaction due to a complaint about the transaction from your customer." +msgstr "Een herroeping heeft plaatsgevonden bij deze transactie omdat jouw klant een klacht heeft ingediend over de transactie." + +#: includes/common/payment-gateways/paypal-express.php:834 +#: includes/common/payment-gateways/paypal-express.php:1105 +msgid "A reversal has occurred on this transaction due to your customer triggering a money-back guarantee." +msgstr "Een herroeping heeft plaatsgevonden bij deze transactie omdat jouw klant aanspraak heeft gemaakt op een geld-terug-garantie." + +#: includes/common/payment-gateways/paypal-express.php:833 +#: includes/common/payment-gateways/paypal-express.php:1104 +msgid "A reversal has occurred on this transaction due to a chargeback by your customer." +msgstr "Een herroeping heeft plaatsgevonden bij deze transactie vanwege een terugvordering van jouw klant." + +#: includes/common/payment-gateways/paypal-express.php:1101 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer:" +msgstr "Een betaling werd teruggedraaid vanwege een terugvordering of een ander type van herroeping. De fondsen zijn verwijderd uit jouw saldo en teruggestuurd naar de koper:" + +#: includes/common/payment-gateways/paypal-express.php:826 +#: includes/common/payment-gateways/paypal-express.php:1097 +msgid "A payment has been accepted." +msgstr "Een betaling is geaccepteerd." + +#: includes/common/payment-gateways/paypal-express.php:818 +#: includes/common/payment-gateways/paypal-express.php:1087 +msgid "The transaction has not terminated, e.g. an authorization may be awaiting completion." +msgstr "De transactie is niet beëindigd, bijvoorbeeld een autorisatie die nog in afwachting van de voltooiing is." + +#: includes/common/payment-gateways/payfast.php:531 +#: includes/common/payment-gateways/paypal-express.php:810 +#: includes/common/payment-gateways/paypal-express.php:1077 +msgid "The payment has failed. This happens only if the payment was made from your customer's bank account." +msgstr "De betaling is mislukt. Dit gebeurt alleen wanneer de betaling was gedaan via de bankrekening van uw klant." + +#: includes/common/payment-gateways/paypal-express.php:806 +#: includes/common/payment-gateways/paypal-express.php:1072 +msgid "An authorization for this transaction has been voided." +msgstr "Een autorisatie voor deze transactie is vernietigd." + +#: includes/common/payment-gateways/paypal-express.php:802 +#: includes/common/payment-gateways/paypal-express.php:1067 +msgid "The authorization period for this payment has been reached." +msgstr "De autorisatieperiode voor deze betaling is bereikt." + +#: includes/common/payment-gateways/paypal-express.php:798 +#: includes/common/payment-gateways/paypal-express.php:1062 +msgid "A reversal has been canceled; for example, when you win a dispute and the funds for the reversal have been returned to you." +msgstr "Een herroeping is geannuleerd; bijvoorbeeld als je een geschil wint en de bedragen van de herroeping naar je zijn terugbetaald." + +#: includes/common/payment-gateways/paypal-express.php:499 +#: includes/common/payment-gateways/paypal-express.php:1163 +msgid "PayPal Express Checkout" +msgstr "PayPal Express Checkout" + +#: includes/common/payment-gateways/paypal-chained-payments.php:798 +msgid "Gateway Settings Page Message" +msgstr "Betaalpoort Instellingenpagina Bericht" + +#: includes/common/payment-gateways/paypal-express.php:725 +msgid "Signature" +msgstr "Handtekening" + +#: includes/common/payment-gateways/eway31.php:506 +#: includes/common/payment-gateways/eway31.php:533 +#: includes/common/shipping-modules/mp-fedex.php:276 +msgid "API Password" +msgstr "API Wachtwoord" + +#: includes/common/payment-gateways/paypal-chained-payments.php:773 +msgid "Enter a percentage of all store sales to collect as a fee. Decimals allowed." +msgstr "Vul een percentage in dat voor alle winkelverkopen geldt als vergoeding. Decimalen toegestaan." + +#: includes/common/payment-gateways/paypal-chained-payments.php:757 +msgid "Using PayPal Chained Payments allows you as the multisite network owner to collect a predefined fee or percentage of all sales on network MarketPress stores! This is invisible to the customers who purchase items in a store, and all PayPal fees will be charged to the store owner. To use this option you must create API credentials, and you should make all other gateways unavailable or limited above." +msgstr "Het gebruik van Paypal Chained Payments stelt je als multisite netwerk eigenaar in staat om afgesproken kosten of een percentage voor alle verkopen in rekening te brengen bij de winkels die zich in jouw MarketPress netwerk bevinden! Dit is zichtbaar voor de klanten die items kopen in een winkel en alle PayPal kosten zullen in rekening worden gebracht bij de winkeleigenaar. Om deze optie te gebruiken moet je API credentials aanmaken en moeten alle andere hierboven genoemde betaalpoorten niet beschikbaar of beperkt toegankelijk worden gemaakt." + +#: includes/common/payment-gateways/paypal-chained-payments.php:338 +msgid "Please be aware that we will deduct a ?% fee from the total of each transaction in addition to any fees PayPal may charge you. If for any reason you need to refund a customer for an order, please contact us with a screenshot of the refund receipt in your PayPal history as well as the Transaction ID of our fee deduction so we can issue you a refund. Thank you!" +msgstr "Wees u ervan bewust dat wij ?% vergoeding krijgen voor elke transactie, naast de kosten die Paypal bij u in rekening brengt. Als het om welke reden dan ook nodig is om een klant voor een bestelling terug te betalen, neem dan contact met ons op met een screenshot van de restitutie ontvangen op uw PayPal-geschiedenis en de transactie-ID van de door ons in rekening gebrachte kosten, zodat wij die terug kunnen betalen. Dank u wel!" + +#: includes/common/payment-gateways/paypal-chained-payments.php:698 +#: includes/common/payment-gateways/paypal-express.php:149 +msgid "There was a problem connecting to PayPal. Please try again." +msgstr "Er was een probleem bij het contact leggen met Paypal. Probeer het nogmaals." + +#: includes/common/payment-gateways/paypal-chained-payments.php:470 +#: includes/common/payment-gateways/paypal-express.php:1053 +msgid "There was a problem verifying the IPN string with PayPal. Please try again." +msgstr "Er was een probleem met het verifiëren van de IPN string met PayPal. Probeer het nogmaals." + +#: includes/common/payment-gateways/paypal-chained-payments.php:310 +msgid "There was a problem connecting to PayPal to check the status of your purchase. Please check the status of your order here »" +msgstr "Er was een probleem met het contact leggen met PayPal om de status van jouw aankoop te checken. Check de status van jouw bestelling hier »" + +#: includes/common/payment-gateways/payfast.php:539 +#: includes/common/payment-gateways/paypal-chained-payments.php:254 +#: includes/common/payment-gateways/paypal-express.php:1139 +msgid "The payment is pending." +msgstr "De betaling is in behandeling." + +#: includes/common/payment-gateways/paypal-chained-payments.php:251 +#: includes/common/payment-gateways/paypal-chained-payments.php:531 +#: includes/common/payment-gateways/paypal-express.php:862 +#: includes/common/payment-gateways/paypal-express.php:1136 +msgid "The payment is pending for an unknown reason. For more information, contact PayPal customer service." +msgstr "De betaling is in behandeling vanwege een onbekende reden. Voor meer informatie dien jij contact op te nemen met de PayPal klantenservice." + +#: includes/common/payment-gateways/paypal-chained-payments.php:250 +#: includes/common/payment-gateways/paypal-chained-payments.php:530 +#: includes/common/payment-gateways/paypal-express.php:861 +#: includes/common/payment-gateways/paypal-express.php:1135 +msgid "The payment is pending because you are not yet verified. You must verify your account before you can accept this payment." +msgstr "De betaling is in behandeling omdat uw account nog niet is geverifiëerd. Uw account moet worden geverifiëerd voordat deze betaling kan worden geaccepteerd." + +#: includes/common/payment-gateways/paypal-chained-payments.php:249 +#: includes/common/payment-gateways/paypal-chained-payments.php:529 +#: includes/common/payment-gateways/paypal-express.php:860 +#: includes/common/payment-gateways/paypal-express.php:1134 +msgid "The payment is pending because it was made via credit card and you must upgrade your account to Business or Premier status in order to receive the funds. It can also mean that you have reached the monthly limit for transactions on your account." +msgstr "De betaling is in behandeling omdat deze werd gedaan met een credit card. Om het bedrag te kunnen ontvangen moet uw account worden aangepast naar Business of de Premier-status Het kan ook betekenen dat u de maandelijkse limiet voor transacties op uw rekening heeft bereikt." + +#: includes/common/payment-gateways/paypal-chained-payments.php:248 +#: includes/common/payment-gateways/paypal-chained-payments.php:528 +#: includes/common/payment-gateways/paypal-express.php:859 +#: includes/common/payment-gateways/paypal-express.php:1133 +msgid "The payment is pending because it was made to an email address that is not yet registered or confirmed." +msgstr "De betaling is nog in behandeling, omdat deze is gedaan vanaf een e-mailadres dat nog niet geregistreerd of bevestigd is." + +#: includes/common/payment-gateways/paypal-chained-payments.php:247 +#: includes/common/payment-gateways/paypal-chained-payments.php:527 +#: includes/common/payment-gateways/paypal-express.php:858 +#: includes/common/payment-gateways/paypal-express.php:1132 +msgid "The payment is pending while it is being reviewed by PayPal for risk." +msgstr "De betaling is in behandeling, terwijl deze wordt beoordeeld door PayPal voor risico." + +#: includes/common/payment-gateways/paypal-chained-payments.php:246 +#: includes/common/payment-gateways/paypal-chained-payments.php:526 +#: includes/common/payment-gateways/paypal-express.php:856 +#: includes/common/payment-gateways/paypal-express.php:1130 +msgid "You do not have a balance in the currency sent, and you do not have your Payment Receiving Preferences set to automatically convert and accept this payment. You must manually accept or deny this payment." +msgstr "You do not have a balance in the currency sent, and you do not have your Payment Receiving Preferences set to automatically convert and accept this payment. You must manually accept or deny this payment." + +#: includes/common/payment-gateways/paypal-chained-payments.php:245 +#: includes/common/payment-gateways/paypal-chained-payments.php:525 +#: includes/common/payment-gateways/paypal-express.php:855 +#: includes/common/payment-gateways/paypal-express.php:1129 +msgid "The payment is pending because you hold a non-U.S. account and do not have a withdrawal mechanism. You must manually accept or deny this payment from your Account Overview." +msgstr "The payment is pending because you hold a non-U.S. account and do not have a withdrawal mechanism. You must manually accept or deny this payment from your Account Overview." + +#: includes/common/payment-gateways/paypal-chained-payments.php:244 +#: includes/common/payment-gateways/paypal-chained-payments.php:524 +#: includes/common/payment-gateways/paypal-express.php:854 +#: includes/common/payment-gateways/paypal-express.php:1128 +msgid "The payment is pending because it was made by an eCheck that has not yet cleared." +msgstr "De betaling is nog in behandeling omdat deze is gedaan door middel van een Check die nog niet is geklaard." + +#: includes/common/payment-gateways/paypal-chained-payments.php:243 +#: includes/common/payment-gateways/paypal-chained-payments.php:523 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences section of your Profile." +msgstr "De betaling is nog in behandeling omdat de klant geen geldig verzendadres heeft ingevuld en uw Betaalontvangstvoorkeuren zo zijn ingesteld dat u dit soort betalingen handmatig wilt accepteren of weigeren. Om de voorkeuren te wijzigen ga naar de voorkeuren sectie in uw profiel." + +#: includes/common/payment-gateways/paypal-chained-payments.php:236 +#: includes/common/payment-gateways/paypal-chained-payments.php:516 +msgid "The transaction was rejected by the receiver (you)." +msgstr "De transactie is geweigerd door de ontvanger (jij)." + +#: includes/common/payment-gateways/paypal-chained-payments.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:510 +#: includes/common/payment-gateways/paypal-express.php:843 +#: includes/common/payment-gateways/paypal-express.php:1115 +msgid "You refunded the payment." +msgstr "Jij hebt de betaling terugbetaald." + +#: includes/common/payment-gateways/paypal-chained-payments.php:224 +#: includes/common/payment-gateways/paypal-chained-payments.php:504 +msgid "The transaction is in progress." +msgstr "De transactie is in volle gang." + +#: includes/common/payment-gateways/paypal-chained-payments.php:212 +#: includes/common/payment-gateways/paypal-chained-payments.php:491 +#: includes/common/payment-gateways/paypal-express.php:814 +#: includes/common/payment-gateways/paypal-express.php:1082 +msgid "The payment has been partially refunded." +msgstr "De betaling is gedeeltelijk terugbetaald." + +#: includes/common/payment-gateways/paypal-chained-payments.php:202 +#: includes/common/payment-gateways/paypal-chained-payments.php:481 +msgid "PayPal balance, Credit Card, or Instant Transfer" +msgstr "PayPal balance, Credit Card, or Instant Transfer" + +#: includes/common/payment-gateways/paypal-chained-payments.php:177 +msgid "There was a problem connecting to PayPal to setup your purchase. Please try again." +msgstr "Er was een probleem met de verbinding naar PayPal om uw aankoop te verwerken. Probeer het nogmaals." + +#: includes/common/payment-gateways/paypal-chained-payments.php:122 +msgid "Your PayPal transaction has been canceled." +msgstr "Uw PayPal-transactie is geannuleerd." + +#: includes/common/payment-gateways/paypal-chained-payments.php:50 +#: includes/common/payment-gateways/paypal-chained-payments.php:53 +#: includes/common/payment-gateways/paypal-chained-payments.php:732 +#: includes/common/payment-gateways/paypal-express.php:500 +#: includes/common/payment-gateways/paypal-express.php:938 +msgid "PayPal" +msgstr "PayPal" + +#: includes/common/payment-gateways/paypal-chained-payments.php:48 +#: includes/common/payment-gateways/paypal-chained-payments.php:730 +#: includes/common/payment-gateways/paypal-chained-payments.php:756 +#: includes/common/payment-gateways/paypal-chained-payments.php:873 +msgid "PayPal Chained Payments" +msgstr "PayPal Chained Payments" + +#: includes/common/payment-gateways/paypal-payflow.php:59 +#: includes/common/payment-gateways/paypal-payflow.php:467 +msgid "PayPal Payflow Pro" +msgstr "PayPal Payflow Pro" + +#: includes/common/payment-gateways/skrill.php:378 +msgid "Chargeback - A payment was reversed due to a chargeback. The funds have been removed from your account balance and returned to the buyer." +msgstr "Terugboeking - Een betaling werd teruggedraaid als gevolg van een terugboeking. Het bedrag is verwijderd uit uw saldo en teruggestuurd naar de koper." + +#: includes/common/payment-gateways/skrill.php:372 +msgid "Failed - The Credit Card or Direct Debit transaction was declined." +msgstr "Mislukt - De creditcard of automatische incasso transactie is geweigerd." + +#: includes/common/payment-gateways/_payway.php:354 +#: includes/common/payment-gateways/skrill.php:366 +msgid "Cancelled - The payment was cancelled manually by the sender in their online account history or was auto-cancelled after 14 days pending." +msgstr "Geannuleerd - De betaling werd handmatig geannuleerd door de afzender in hun online account geschiedenis of is automatisch geannuleerd na 14 dagen behandeling." + +#: includes/common/payment-gateways/skrill.php:360 +msgid "Pending - The payment is pending. It can take 2-3 days for bank transfers to complete." +msgstr "In afwachting - De betaling is in behandeling. Het kan 2-3 dagen duren voor bankoverschrijvingen voltooid zijn." + +#: includes/common/payment-gateways/_payway.php:349 +#: includes/common/payment-gateways/skrill.php:354 +msgid "Processed - The payment has been completed, and the funds have been added successfully to your Moneybookers account balance." +msgstr "Verwerkt - De betaling is voltooid, en het bedrag is succesvol toegevoegd aan uw Moneybookers account." + +#: includes/common/payment-gateways/skrill.php:189 +msgid "Shown to the customer on the confirmation screen - the end step of the process - a note, confirmation number, or any other message. Line breaks <br> may be used for longer messages." +msgstr "Wordt op het scherm getoond aan de klant als bevestiging - de laatste stap van het proces - een notitie, bevestigingsnummer, of een ander bericht. Regel einden <br> kunnen gebruikt worden voor langere berichten." + +#: includes/common/payment-gateways/skrill.php:188 +msgid "Confirmation Note (optional)" +msgstr "Opmerking bij Bevestiging (optioneel)" + +#: includes/common/payment-gateways/skrill.php:183 +msgid "The URL of the logo which you would like to appear at the top of the payment form. The logo must be accessible via HTTPS otherwise it will not be shown. For best integration results we recommend that you use a logo with dimensions up to 200px in width and 50px in height." +msgstr "De URL van het logo dat je wilt gebruikten bovenaan het betalingsformulier. Het logo moet te benaderen zijn via HTTPS, anders zal het niet getoond worden. Voor de beste resultaten raden wij aan dat je een logo gebruikt met een breedte tot 200 px en een hoogte tot 50px." + +#: includes/common/payment-gateways/skrill.php:182 +msgid "Logo Image (optional)" +msgstr "Logo Afbeelding (optioneel)" + +#: includes/common/payment-gateways/skrill.php:177 +msgid "The name of this store, which will be shown on the gateway. If no value is submitted, the account email will be shown as the recipient of the payment." +msgstr "De naam van de winkel, die bij de betaling wordt weergegeven. Als er geen waarde wordt ingediend, zal uw e-mail worden weergegeven als de ontvanger van de betaling." + +#: includes/common/payment-gateways/skrill.php:176 +msgid "Merchant Name (optional)" +msgstr "Naam verkoper (optioneel)" + +#: includes/common/payment-gateways/skrill.php:165 +msgid "Language" +msgstr "Taal" + +#: includes/common/payment-gateways/2checkout.php:368 +#: includes/common/payment-gateways/authorizenet-aim.php:262 +#: includes/common/payment-gateways/eway.php:363 +#: includes/common/payment-gateways/eway31.php:471 +#: includes/common/payment-gateways/mollie.php:91 +#: includes/common/payment-gateways/paymill.php:193 +#: includes/common/payment-gateways/paypal-chained-payments.php:356 +#: includes/common/payment-gateways/paypal-express.php:688 +#: includes/common/payment-gateways/paypal-payflow.php:432 +#: includes/common/payment-gateways/pin.php:186 +#: includes/common/payment-gateways/skrill.php:152 +#: includes/common/payment-gateways/stripe.php:288 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:104 +msgid "Currency" +msgstr "Valuta" + +#: includes/common/payment-gateways/2checkout.php:359 +#: includes/common/payment-gateways/skrill.php:143 +msgid "Secret Word" +msgstr "Geheim Woord" + +#: includes/common/payment-gateways/skrill.php:261 +msgid "Order ID:" +msgstr "Order ID:" + +#: includes/common/payment-gateways/skrill.php:234 +msgid "Complete Checkout" +msgstr "Rond bestelling af" + +#: includes/common/payment-gateways/skrill.php:204 +msgid "Your Moneybookers transaction has been canceled." +msgstr "Your Moneybookers transaction has been canceled." + +#: includes/common/payment-gateways/manual-payments.php:155 +msgid "This is the email text to send to those who have made manual payment checkouts. You should include your manual payment instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "Dit is de tekst van het e-mailbericht dat gestuurd wordt naar degenen die handmatig betalen. U moet hier ook jouw uw handmatige betalingsinstructies ingeven. Het overschrijft de standaard e-mail die verzonden wordt na een bestelling. Deze codes worden vervangen met de ordergegevens: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. Geen HTML toegestaan​​." + +#: includes/common/payment-gateways/_payway.php:257 +#: includes/common/payment-gateways/manual-payments.php:128 +msgid "Record payments manually, such as by Cash, Check, or EFT." +msgstr "Record betalingen handmatig, zoals contant, check, of EFT." + +#: includes/common/payment-gateways/manual-payments.php:71 +msgid "Manual/Invoice" +msgstr "Handmatig/factuur" + +#: includes/admin/class-mp-setup-wizard.php:648 +#: includes/common/payment-gateways/manual-payments.php:35 +#: includes/common/payment-gateways/manual-payments.php:36 +msgid "Manual Payment" +msgstr "Handmatige betaling" + +#: includes/common/payment-gateways/manual-payments.php:34 +#: includes/common/payment-gateways/manual-payments.php:163 +msgid "Manual Payments" +msgstr "Handmatige betalingen" + +#: includes/common/payment-gateways/_ideal.php:288 +msgid "iDEAL Simulator (for testing)" +msgstr "iDEAL Simulator (voor testen)" + +#: includes/common/payment-gateways/_ideal.php:287 +msgid "ABN Amro Bank" +msgstr "ABN Amro Bank" + +#: includes/common/payment-gateways/_ideal.php:286 +msgid "Friesland Bank" +msgstr "Friesland Bank" + +#: includes/common/payment-gateways/_ideal.php:285 +msgid "Rabobank" +msgstr "Rabobank" + +#: includes/common/payment-gateways/_ideal.php:284 +msgid "ING Bank" +msgstr "ING Bank" + +#: includes/common/payment-gateways/_ideal.php:279 +msgid "Bank" +msgstr "Bank" + +#: includes/common/payment-gateways/_ideal.php:270 +msgid "To make it easier to pay for online products and services, the Dutch banking community has developed the iDEAL online payment method. iDEAL allows online payments to be made using online banking in EUR only." +msgstr "Om het betalen voor online producten en services te vergemakkelijken hebben de Nederlandse banken iDEAL ontworpen. iDEAL staat alleen online betalingen toe in EUR." + +#: includes/common/payment-gateways/_ideal.php:247 +#: includes/common/payment-gateways/_payway.php:199 +#: includes/common/payment-gateways/manual-payments.php:68 +msgid "Invoiced" +msgstr "Gefactureerd" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1016 +msgid "Coupon" +msgstr "Kortingscode" + +#: includes/common/payment-gateways/_ideal.php:77 +#: includes/common/payment-gateways/_ideal.php:250 +#: includes/common/payment-gateways/_payway.php:202 +msgid "iDEAL" +msgstr "iDEAL" + +#: includes/common/payment-gateways/_ideal.php:76 +msgid "iDEAL (beta)" +msgstr "iDEAL (beta)" + +#: includes/common/payment-gateways/payfast.php:327 +msgid "Merchant Key" +msgstr "Verkoper Sleutel" + +#: includes/common/payment-gateways/_ideal.php:293 +#: includes/common/payment-gateways/_payway.php:302 +#: includes/common/payment-gateways/payfast.php:324 +msgid "Merchant ID" +msgstr "Verkoper ID" + +#: includes/common/payment-gateways/eway31.php:462 +msgid "eWay Rapid 3.0 Payments lets merchants recieve credit card payments through eWay without need for users to leave the shop. Note this gateway requires a valid SSL certificate configured for this site." +msgstr "eWay Rapid 3.0 Payments maken het verkopers mogelijk credit card betalingen te ontvangen, zonder dat gebruikers de winkel hoeven te verlaten. Let op, deze optie heeft een geldig SSL certifaat nodig die voor deze site is geconfigureerd." + +#: includes/common/payment-gateways/eway.php:452 +msgid "There was a problem connecting to eWay. Please try again." +msgstr "Er trad een probleem op bij het verbinden met eWay. Probeer het alsjeblieft nogmaals." + +#: includes/common/payment-gateways/eway.php:432 +#: includes/common/payment-gateways/eway.php:437 +msgid "The url of the image can be hosted on your website and pass the secure https:// path of the image to be displayed at the top of the website. This is the second image block on the webpage and is restricted to 960px X 65px. A default secure image is used if none is supplied." +msgstr "De url van de afbeelding kan op uw website worden gehost en het beveiligde https:// pad van de afbeelding passeren dat aan de bovenkant van de website wordt getoond. Dit is het tweede beeld blok op de webpagina en is beperkt tot 960px X 65px. Een standaard beveiligingsafbeelding wordt gebruikt als er geen wordt geleverd." + +#: includes/common/payment-gateways/eway.php:431 +#: includes/common/payment-gateways/eway.php:436 +msgid "Company Logo (optional)" +msgstr "Bedrijfslogo (optioneel)" + +#: includes/common/payment-gateways/eway.php:427 +msgid "The page footer text can be customised and populated below the customer's order details. Useful for contact information." +msgstr "De pagina \"voettekst\" kan worden aangepast en zal onder de bestellingsdetails van de klant worden weergegeven. Handig voor contactinformatie." + +#: includes/common/payment-gateways/eway.php:426 +msgid "Page Footer (optional)" +msgstr "Pagina Footer (optioneel)" + +#: includes/common/payment-gateways/eway.php:421 +msgid "Page Description (optional)" +msgstr "Pagina Beschrijving (optioneel)" + +#: includes/common/payment-gateways/eway.php:417 +#: includes/common/payment-gateways/eway.php:422 +msgid "This value is used to populate the browsers title bar at the top of the screen." +msgstr "Deze waarde wordt gebruikt in de titelbar van de browser bovenaan het scherm." + +#: includes/common/payment-gateways/eway.php:416 +msgid "Page Title (optional)" +msgstr "Pagina Titel (optioneel)" + +#: includes/common/payment-gateways/eway.php:412 +msgid "This will be displayed as the company the customer is purchasing from, including this is highly recommended." +msgstr "Dit zal worden getoond als het bedrijf waar de klant van koopt. Het is ten zeerste aanbevolen dit toe te voegen." + +#: includes/common/payment-gateways/eway.php:411 +msgid "Company Name" +msgstr "Bedrijfsnaam" + +#: includes/common/payment-gateways/eway.php:394 +msgid "Customer ID" +msgstr "Klant ID" + +#: includes/common/payment-gateways/eway.php:381 +#: includes/common/payment-gateways/eway31.php:488 +msgid "Live API Credentials" +msgstr "Live API Credentials" + +#: includes/common/payment-gateways/eway.php:371 +#: includes/common/payment-gateways/eway31.php:479 +msgid "Gateway Mode" +msgstr "Gateway Mode" + +#: includes/common/payment-gateways/eway.php:354 +msgid "The Hosted Page is a webpage hosted on eWAY's side eliminating the need for merchants to capture, transmit or store credit card numbers. At the checkout time the merchant automatically redirects the customer to the Hosted Page where they would enter their details and have the transaction processed. Upon completion of the transaction the customer is redirected back to the MarketPress checkout confirmation page." +msgstr "The Hosted Page is a webpage hosted on eWAY's side eliminating the need for merchants to capture, transmit or store credit card numbers. At the checkout time the merchant automatically redirects the customer to the Hosted Page where they would enter their details and have the transaction processed. Upon completion of the transaction the customer is redirected back to the MarketPress checkout confirmation page." + +#: includes/common/payment-gateways/eway.php:314 +msgid "There was a problem with your credit card information: %s" +msgstr "There was a problem with your credit card information: %s" + +#: includes/common/payment-gateways/eway.php:300 +msgid "Paid - The card has been processed - %s" +msgstr "Paid - The card has been processed - %s" + +#: includes/common/payment-gateways/eway.php:253 +msgid "There was a problem setting up the transaction with eWay: %s" +msgstr "There was a problem setting up the transaction with eWay: %s" + +#: includes/common/payment-gateways/eway.php:245 +#: includes/common/payment-gateways/eway.php:289 +msgid "There was a problem parsing the response from eWay. Please try again." +msgstr "There was a problem parsing the response from eWay. Please try again." + +#: includes/common/payment-gateways/_ideal.php:159 +#: includes/common/payment-gateways/eway.php:189 +#: includes/common/payment-gateways/paypal-chained-payments.php:634 +#: includes/common/payment-gateways/paypal-express.php:322 +#: includes/common/payment-gateways/paypal-express.php:473 +msgid "%s Store Purchase - Order ID: %s" +msgstr "%s Store Purchase - Order ID: %s" + +#: includes/common/payment-gateways/eway.php:147 +#: includes/common/payment-gateways/eway.php:462 +msgid "eWay Shared Payments" +msgstr "eWay Shared Payments" + +#: includes/common/payment-gateways/_cubepoints.php:214 +msgid "This is the email text to send to those who have made CubePoints checkouts. You should include your CubePoints instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "This is the email text to send to those who have made CubePoints checkouts. You should include your CubePoints instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." + +#: includes/common/payment-gateways/_cubepoints.php:212 +#: includes/common/payment-gateways/free_orders.php:188 +#: includes/common/payment-gateways/manual-payments.php:154 +msgid "Order Confirmation Email" +msgstr "Order Confirmation Email" + +#: includes/common/payment-gateways/_cubepoints.php:207 +#: includes/common/payment-gateways/manual-payments.php:149 +msgid "Confirmation User Instructions" +msgstr "Confirmation User Instructions" + +#: includes/common/payment-gateways/_cubepoints.php:202 +#: includes/common/payment-gateways/manual-payments.php:144 +msgid "User Instructions" +msgstr "User Instructions" + +#: includes/common/payment-gateways/_cubepoints.php:198 +#: includes/common/payment-gateways/free_orders.php:170 +#: includes/common/payment-gateways/manual-payments.php:139 +msgid "Enter a public name for this payment method that is displayed to users - No HTML" +msgstr "Enter a public name for this payment method that is displayed to users - No HTML" + +#: includes/admin/class-mp-orders-admin.php:532 +#: includes/common/payment-gateways/_cubepoints.php:196 +#: includes/common/payment-gateways/free_orders.php:169 +#: includes/common/payment-gateways/manual-payments.php:138 +msgid "Method Name" +msgstr "Method Name" + +#: includes/common/payment-gateways/_cubepoints.php:187 +msgid "Accept CubePoints as payment(requires the CubePoints plugin)." +msgstr "Accept CubePoints as payment(requires the CubePoints plugin)." + +#: includes/common/payment-gateways/_cubepoints.php:140 +msgid "Sorry, but you do not appear to have enough points to complete this purchase!" +msgstr "Sorry, maar jij hebt onvoldoende punten om deze aankoop te doen!" + +#: includes/common/payment-gateways/_cubepoints.php:124 +msgid "%s Store Purchase" +msgstr "%s Winkel Aankoop" + +#: includes/common/payment-gateways/_cubepoints.php:79 +#: includes/common/payment-gateways/_cubepoints.php:171 +msgid "Your current points: " +msgstr "Uw huidige aantal punten: " + +#: includes/common/payment-gateways/_cubepoints.php:133 +#: includes/common/payment-gateways/_cubepoints.php:197 +msgid "CubePoints" +msgstr "CubePoints" + +#: includes/common/payment-gateways/authorizenet-aim.php:344 +msgid "Authorize.net AIM Checkout" +msgstr "Authorize.net AIM Checkout" + +#: includes/common/payment-gateways/authorizenet-aim.php:331 +msgid "Custom API URL" +msgstr "Aangepaste API url" + +#: includes/common/payment-gateways/authorizenet-aim.php:332 +msgid "Many other gateways have Authorize.net API emulators. To use one of these gateways input their API post url here." +msgstr "Many other gateways have Authorize.net API emulators. To use one of these gateways input their API post url here." + +#: includes/common/payment-gateways/authorizenet-aim.php:322 +msgid "Request a delimited response from the payment gateway." +msgstr "Vraag een afgebakende reactie van de betaalpoort." + +#: includes/common/payment-gateways/authorizenet-aim.php:316 +msgid "Security: MD5 Hash" +msgstr "Security: MD5 Hash" + +#: includes/common/payment-gateways/authorizenet-aim.php:317 +msgid "The payment gateway generated MD5 hash value that can be used to authenticate the transaction response. Not needed because responses are returned using an SSL connection." +msgstr "De betalingspoortaal gegenereerde MD5 hash waarde die gebruikt kan worden om de transactie respons te authenticeren. Niet nodig omdat antwoorden worden teruggestuurd door het gebruik van een SSL connectie." + +#: includes/common/payment-gateways/authorizenet-aim.php:306 +msgid "Customer Receipt Email Footer" +msgstr "Customer Receipt Email Footer" + +#: includes/common/payment-gateways/authorizenet-aim.php:296 +msgid "Customer Receipt Email Header" +msgstr "Klant Bon Email Header" + +#: includes/common/payment-gateways/authorizenet-aim.php:297 +#: includes/common/payment-gateways/paypal-payflow.php:446 +msgid "This text will appear as the header of the email receipt sent to the customer." +msgstr "This text will appear as the header of the email receipt sent to the customer." + +#: includes/common/payment-gateways/authorizenet-aim.php:282 +msgid "Encapsulation Character" +msgstr "Encapsulation Character" + +#: includes/common/payment-gateways/authorizenet-aim.php:283 +msgid "Authorize.net default is blank. Otherwise, get this from your credit card processor. If the transactions are going through, but getting strange responses, this character is most likely wrong." +msgstr "Authorize.net default is blank. Otherwise, get this from your credit card processor. If the transactions are going through, but getting strange responses, this character is most likely wrong." + +#: includes/common/payment-gateways/authorizenet-aim.php:273 +msgid "Optional settings to control advanced options" +msgstr "Optionele instellingen om de geavanceerde opties te beheren" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:224 +#: includes/common/payment-gateways/authorizenet-aim.php:272 +msgid "Advanced Settings" +msgstr "Geavanceerde instellingen" + +#: includes/common/payment-gateways/authorizenet-aim.php:253 +msgid "Transaction Key" +msgstr "Transactie sleutel" + +#: includes/common/payment-gateways/authorizenet-aim.php:246 +msgid "Login ID" +msgstr "Login ID" + +#: includes/common/payment-gateways/paypal-payflow.php:396 +msgid "Gateway Credentials" +msgstr "Gateway Credentials" + +#: includes/common/payment-gateways/authorizenet-aim.php:221 +msgid "Authorize.net AIM is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway. USD is the only currency supported by this gateway." +msgstr "Authorize.net AIM is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway. USD is the only currency supported by this gateway." + +#: includes/common/payment-gateways/authorizenet-aim.php:205 +msgid "There was a problem finalizing your purchase. %s Please go back and try again." +msgstr "Er was een probleem waardoor uw aankoop niet kon worden afgerond. %s Ga alstublieft terug en probeer het nogmaals." + +#: includes/common/payment-gateways/payfast.php:519 +#: includes/common/payment-gateways/paypal-chained-payments.php:218 +#: includes/common/payment-gateways/paypal-chained-payments.php:498 +#: includes/common/payment-gateways/paypal-express.php:822 +#: includes/common/payment-gateways/paypal-express.php:1092 +msgid "The payment has been completed, and the funds have been added successfully to your account balance." +msgstr "The payment has been completed, and the funds have been added successfully to your account balance." + +#: includes/common/payment-gateways/paypal-payflow.php:233 +msgid "Please enter a valid credit card security code" +msgstr "Gelieve een geldige beveiligingscode van uw creditcard in te geven" + +#: includes/common/payment-gateways/paypal-payflow.php:224 +#: includes/public/class-mp-checkout.php:867 +msgid "Please enter a valid credit card number" +msgstr "Gelieve een geldig kredietkaartnummer in te geven" + +#: includes/common/payment-gateways/paypal-payflow.php:221 +msgid "Please enter your credit card number" +msgstr "Vul uw creditkaartnummer in" + +#: includes/common/payment-gateways/paypal-payflow.php:217 +msgid "Please enter your credit card security code" +msgstr "Vul de beveiligingscode van uw creditcard in" + +#: includes/common/payment-gateways/paypal-payflow.php:213 +msgid "Please select your credit card expiration date." +msgstr "Vul de vervaldatum van je creditcard in." + +#: includes/common/payment-gateways/2checkout.php:299 +#: includes/common/payment-gateways/authorizenet-aim.php:50 +#: includes/common/payment-gateways/eway.php:148 +#: includes/common/payment-gateways/eway.php:298 +#: includes/common/payment-gateways/eway31.php:267 +#: includes/common/payment-gateways/paymill.php:46 +#: includes/common/payment-gateways/paypal-express.php:972 +#: includes/common/payment-gateways/paypal-payflow.php:60 +#: includes/common/payment-gateways/pin.php:46 +#: includes/common/payment-gateways/simplify.php:19 +#: includes/common/payment-gateways/stripe.php:46 +#: includes/common/payment-gateways/wepay.php:37 +msgid "Credit Card" +msgstr "Credit card" + +#: includes/common/payment-gateways/authorizenet-aim.php:49 +msgid "Authorize.net Checkout" +msgstr "Authorize.net Checkout" + +#: includes/common/payment-gateways/skrill.php:156 +#: includes/common/payment-gateways/stripe.php:293 +msgid "Selecting a currency other than that used for your store may cause problems at checkout." +msgstr "Selecting a currency other than that used for your store may cause problems at checkout." + +#: includes/common/payment-gateways/2checkout.php:352 +msgid "Seller ID" +msgstr "Seller ID" + +#: includes/common/payment-gateways/2checkout.php:340 +#: includes/common/payment-gateways/_ideal.php:311 +#: includes/common/payment-gateways/authorizenet-aim.php:234 +#: includes/common/payment-gateways/eway.php:376 +#: includes/common/payment-gateways/payfast.php:315 +#: includes/common/payment-gateways/paypal-chained-payments.php:368 +#: includes/common/payment-gateways/paypal-express.php:699 +#: includes/common/payment-gateways/paypal-payflow.php:391 +msgid "Live" +msgstr "Live" + +#: includes/common/payment-gateways/2checkout.php:339 +#: includes/common/payment-gateways/authorizenet-aim.php:233 +#: includes/common/payment-gateways/eway.php:375 +#: includes/common/payment-gateways/paypal-chained-payments.php:367 +#: includes/common/payment-gateways/paypal-express.php:698 +#: includes/common/payment-gateways/paypal-payflow.php:390 +#: includes/common/shipping-modules/mp-fedex.php:263 +msgid "Sandbox" +msgstr "Sandbox" + +#: includes/common/payment-gateways/2checkout.php:336 +#: includes/common/payment-gateways/_ideal.php:307 +#: includes/common/payment-gateways/authorizenet-aim.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:365 +#: includes/common/payment-gateways/paypal-express.php:695 +#: includes/common/payment-gateways/paypal-payflow.php:387 +#: includes/common/payment-gateways/wepay.php:130 +#: includes/common/shipping-modules/mp-fedex.php:260 +msgid "Mode" +msgstr "Modus" + +#: includes/common/payment-gateways/2checkout.php:288 +#: includes/common/payment-gateways/mijireh.php:242 +#: includes/common/payment-gateways/mollie.php:212 +msgid "The order has been received" +msgstr "De besteling is ontvangen" + +#: includes/common/payment-gateways/2checkout.php:74 +#: includes/common/payment-gateways/2checkout.php:75 +#: includes/common/payment-gateways/2checkout.php:435 +msgid "2Checkout" +msgstr "2Checkout" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:306 +msgid "Confirm" +msgstr "Bevestig" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:218 +#: includes/common/class-mp-cart.php:974 includes/common/class-mp-cart.php:1354 +#: includes/common/template-functions.php:918 +msgid "Checkout" +msgstr "Bestellen" + +#: includes/common/template-functions.php:207 +msgid "Check Order Status" +msgstr "Bekijk de status van uw bestelling" + +#: includes/common/template-functions.php:235 +msgid "View Products" +msgstr "Bekijk de producten" + +#: includes/common/template-functions.php:263 +msgid "Visit Store" +msgstr "Bezoek de winkel" + +#: includes/common/template-functions.php:2912 +#: includes/multisite/template-functions.php:448 +msgid "Order By" +msgstr "Sorteer op" + +#: includes/common/template-functions.php:2887 +#: includes/multisite/template-functions.php:405 +msgid "Price (High to Low)" +msgstr "Priis (Hoog naar Laag)" + +#: includes/common/template-functions.php:2886 +#: includes/multisite/template-functions.php:404 +msgid "Price (Low to High)" +msgstr "Prijs (Laag naar Hoog)" + +#: includes/common/template-functions.php:2881 +#: includes/multisite/template-functions.php:399 +msgid "Default" +msgstr "Standaard" + +#: includes/common/template-functions.php:2858 +msgid "Show All" +msgstr "Laat alles zien" + +#: includes/common/class-mp-product.php:2048 +msgid "View Larger Image »" +msgstr "Bekijk een grotere afbeelding »" + +#: includes/common/class-mp-product.php:979 +msgid "Out of Stock" +msgstr "Niet op voorraad" + +#: includes/common/template-functions.php:148 +msgid "Price: " +msgstr "Prijs: " + +#: includes/multisite/template-functions.php:833 +msgid "No Tags" +msgstr "Geen tags" + +#: includes/common/template-functions.php:3162 +msgid "Uncategorized" +msgstr "Geen categorie" + +#: includes/common/class-mp-cart.php:569 includes/common/class-mp-order.php:604 +#: includes/common/helpers.php:115 +msgid "Download" +msgstr "Download" + +#: includes/common/class-mp-cart.php:1353 +msgid "Empty Cart" +msgstr "Leeg winkelwagen" + +#: includes/common/payment-gateways/_payway.php:291 +#: includes/common/payment-gateways/paypal-express.php:718 +#: includes/common/payment-gateways/paypal-payflow.php:423 +#: includes/common/shipping-modules/mp-ups.php:158 +#: includes/public/class-mp-checkout.php:1254 +#: includes/public/class-mp-checkout.php:1383 +msgid "Password" +msgstr "Wachtwoord" + +#: includes/common/payment-gateways/eway.php:387 +#: includes/common/payment-gateways/paypal-express.php:711 +#: includes/common/shipping-modules/mp-usps.php:185 +#: includes/public/class-mp-checkout.php:1249 +msgid "Username" +msgstr "Gebruikersnaam" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:437 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:790 +msgid "Have a coupon code?" +msgstr "Heeft u een kortingscode?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:321 +#: includes/admin/class-mp-orders-admin.php:526 +#: includes/common/class-mp-cart.php:592 +msgid "Remove" +msgstr "Verwijder" + +#: includes/admin/class-mp-ajax.php:316 +msgid "Quantity:" +msgstr "Aantal:" + +#: includes/admin/class-mp-products-admin.php:2140 +#: includes/admin/class-mp-products-admin.php:2387 +#: includes/common/shipping-modules/class-mp-shipping-api.php:507 +msgid "Extra Shipping Cost" +msgstr "Extra Verzendkosten" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:403 +msgid "Choose a Shipping Method:" +msgstr "Kies een verzendmethode:" + +#: includes/admin/class-mp-products-admin.php:1691 +#: includes/admin/class-mp-products-admin.php:2131 +#: includes/admin/class-mp-products-admin.php:2378 +#: includes/common/shipping-modules/class-mp-shipping-api.php:228 +msgid "Ounces" +msgstr "Ounces" + +#: includes/admin/class-mp-products-admin.php:1684 +#: includes/admin/class-mp-products-admin.php:2123 +#: includes/admin/class-mp-products-admin.php:2369 +#: includes/admin/class-mp-setup-wizard.php:546 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:165 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +#: includes/common/shipping-modules/class-mp-shipping-api.php:227 +msgid "Pounds" +msgstr "Ponden" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:226 +msgid "Product Weight:" +msgstr "Product Gewicht:" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:214 +msgid "Weight (Kilograms)" +msgstr "Gewicht (in kilogrammen)" + +#: includes/admin/widgets/ms-global-categories.php:82 +msgid "Number of Categories:" +msgstr "Aantal categorieeen:" + +#: includes/admin/widgets/ms-global-categories.php:72 +msgid "Product Count" +msgstr "Product aantal" + +#: includes/addons/class-mp-addons-list-table.php:20 +#: includes/admin/class-mp-product-attributes-admin.php:129 +#: includes/admin/class-mp-product-attributes-list-table.php:22 +#: includes/admin/class-mp-products-admin.php:2216 +#: includes/admin/class-mp-shortcode-builder.php:628 +#: includes/admin/class-mp-shortcode-builder.php:1415 +#: includes/admin/widgets/ms-global-categories.php:70 +#: includes/common/shipping-modules/mp-fedex.php:395 +#: includes/common/shipping-modules/mp-ups.php:202 +#: includes/common/shipping-modules/mp-usps.php:243 +#: includes/public/class-mp-checkout.php:314 +msgid "Name" +msgstr "Naam" + +#: includes/admin/widgets/ms-global-categories.php:67 +msgid "Order Categories By:" +msgstr "Sorteer categoriën op:" + +#: includes/admin/widgets/ms-global-categories.php:24 +#: includes/admin/widgets/ms-global-categories.php:50 +msgid "Global Product Categories" +msgstr "Global Product Categories" + +#: includes/admin/widgets/ms-global-categories.php:15 +msgid "Global Product Category List" +msgstr "Global Product Category List" + +#: includes/admin/widgets/ms-global-categories.php:13 +msgid "Displays a network-wide HTML list of product categories from network MarketPress stores." +msgstr "Geeft een gehele netwerk HTML lijst van productcategorieën uit het netwerk van MarketPress winkels." + +#: includes/admin/widgets/ms-global-tag-cloud.php:24 +#: includes/admin/widgets/ms-global-tag-cloud.php:45 +msgid "Global Product Tags" +msgstr "Global Product Tags" + +#: includes/admin/widgets/ms-global-tag-cloud.php:15 +msgid "Global Product Tag Cloud" +msgstr "Global Product Tag Cloud" + +#: includes/admin/class-mp-shortcode-builder.php:947 +#: includes/admin/widgets/ms-global-product-list.php:173 +msgid "Excerpt" +msgstr "Uittreksel" + +#: includes/admin/widgets/ms-global-product-list.php:169 +msgid "Content To Show:" +msgstr "Inhoud om te laten zien:" + +#: includes/admin/widgets/ms-global-product-list.php:140 +msgid "Limit To Product Tag:" +msgstr "Limit To Product Tag:" + +#: includes/admin/widgets/ms-global-product-list.php:132 +msgid "Limit To Product Category:" +msgstr "Limit To Product Category:" + +#: includes/admin/widgets/ms-global-product-list.php:72 +msgid "Global Products" +msgstr "Globale Producten" + +#: includes/admin/widgets/ms-global-product-list.php:16 +msgid "Global Product List" +msgstr "Globale Product Lijst" + +#: includes/admin/widgets/ms-global-product-list.php:14 +msgid "Shows a customizable global list of products from network MarketPress stores." +msgstr "Laat een aan te passen globale lijst van producten zien uit het MarketPress winkelnetwerk." + +#: includes/common/class-mp-product.php:974 +#: includes/multisite/template-functions.php:731 +msgid "Buy Now »" +msgstr "Koop nu »" + +#: includes/admin/widgets/ms-global-tag-cloud.php:13 +msgid "Displays global most used product tags in cloud format from network MarketPress stores." +msgstr "Geeft globaal de meest gebruikte product-tags in een cloud-indeling weer van alle zich in het MarketPress-netwerk bevindende winkels." + +#: includes/multisite/class-mp-admin-multisite.php:438 +msgid "Theme Permissions" +msgstr "Thema Permissies" + +#: includes/multisite/class-mp-admin-multisite.php:402 +#: includes/multisite/class-mp-admin-multisite.php:448 +msgid "No Access" +msgstr "Geen Toegang" + +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:120 +msgid "Pro Site Level" +msgstr "Pro Site Level" + +#: includes/multisite/class-mp-admin-multisite.php:401 +#: includes/multisite/class-mp-admin-multisite.php:447 +msgid "All Can Use" +msgstr "Iedereen mag gebruiken" + +#: includes/multisite/class-mp-admin-multisite.php:390 +msgid "Gateway Permissions" +msgstr "Betaalpoort Permissies" + +#: includes/multisite/class-mp-admin-multisite.php:375 +msgid "Select a Gateway" +msgstr "Selecteer een Gateway" + +#: includes/multisite/class-mp-admin-multisite.php:350 +msgid "Global Gateway" +msgstr "Globale betalingspoort" + +#. Plugin Name of the plugin/theme +msgid "MarketPress" +msgstr "MarketPress" + +#: includes/admin/widgets/product-tag-cloud.php:7 +msgid "Your most used product tags in cloud format from your MarketPress store." +msgstr "De door jou meest gebruikte product tags in cloud formaat uit jouw MarketPress winkel." + +#: includes/admin/widgets/categories.php:79 +msgid "Show hierarchy" +msgstr "Geef hierarchie weer" + +#: includes/admin/widgets/categories.php:76 +#: includes/admin/widgets/ms-global-categories.php:92 +msgid "Show product counts" +msgstr "Geef product aantallen weer" + +#: includes/admin/widgets/categories.php:73 +msgid "Show as dropdown" +msgstr "Geef weer als drowpdown" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:710 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:736 +#: includes/admin/widgets/categories.php:30 +msgid "Select Category" +msgstr "Selecteer categorie" + +#: includes/admin/widgets/categories.php:7 +msgid "A list or dropdown of product categories from your MarketPress store." +msgstr "Een lijst of dropdown van je product categorieen uit je winkel." + +#: includes/admin/widgets/product-list.php:250 +msgid "Show Buy Button" +msgstr "Geef koop knop weer" + +#: includes/admin/widgets/ms-global-product-list.php:183 +#: includes/admin/widgets/product-list.php:244 +msgid "Show Price" +msgstr "Geef prijs weer" + +#: includes/admin/widgets/product-list.php:241 +msgid "Show Excerpt" +msgstr "Geef samenvatting weer" + +#: includes/admin/widgets/ms-global-product-list.php:155 +#: includes/admin/widgets/product-list.php:238 +msgid "Thumbnail Size:" +msgstr "Thumbnail formaat:" + +#: includes/admin/widgets/ms-global-product-list.php:153 +#: includes/admin/widgets/product-list.php:237 +msgid "Show Thumbnail" +msgstr "Geer thumbnail weer" + +#: includes/admin/widgets/ms-global-product-list.php:147 +#: includes/admin/widgets/product-list.php:233 +msgid "Display Settings" +msgstr "Weergave instellingen" + +#: includes/admin/widgets/ms-global-product-list.php:136 +#: includes/admin/widgets/ms-global-product-list.php:144 +#: includes/admin/widgets/product-list.php:230 +msgid "Enter the Slug" +msgstr "Voer de slug in" + +#: includes/admin/widgets/product-list.php:228 +#: includes/common/template-functions.php:894 +msgid "Tag" +msgstr "Tag" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:686 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:712 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:739 +#: includes/admin/class-mp-shortcode-builder.php:796 +#: includes/admin/widgets/product-list.php:227 +#: includes/common/template-functions.php:886 +#: includes/common/template-functions.php:2907 +msgid "Category" +msgstr "Categorie" + +#: includes/admin/widgets/product-list.php:226 +msgid "No Filter" +msgstr "Geen filter" + +#: includes/admin/widgets/product-list.php:224 +msgid "Taxonomy Filter:" +msgstr "Taxonomie filter:" + +#: includes/admin/widgets/ms-global-product-list.php:108 +#: includes/admin/widgets/product-list.php:209 +msgid "Order Products By:" +msgstr "Sorteer producten op:" + +#: includes/admin/widgets/ms-global-product-list.php:101 +#: includes/admin/widgets/product-list.php:206 +msgid "Number of Products:" +msgstr "Aantal producten:" + +#: includes/admin/widgets/ms-global-product-list.php:98 +#: includes/admin/widgets/product-list.php:204 +msgid "List Settings" +msgstr "Lijst instellingen" + +#: includes/admin/widgets/product-list.php:177 +msgid "Our Products" +msgstr "Onze producten" + +#: includes/admin/widgets/product-list.php:144 +#: includes/common/template-functions.php:2070 +#: includes/common/template-functions.php:2347 +#: includes/multisite/template-functions.php:303 +#: includes/multisite/template-functions.php:623 +msgid "No Products" +msgstr "Geen producten" + +#: includes/admin/widgets/product-list.php:8 +msgid "Product List" +msgstr "Producten lijst" + +#: includes/admin/widgets/product-list.php:7 +msgid "Shows a customizable list of products from your MarketPress store." +msgstr "Geeft een aanpasbare lijst met producten uit je winkel weer." + +#: includes/admin/widgets/cart.php:75 includes/admin/widgets/categories.php:82 +#: includes/admin/widgets/product-list.php:253 +#: includes/admin/widgets/product-tag-cloud.php:57 +msgid "Only show on store pages" +msgstr "Alleen tonen op winkel pagina's" + +#: includes/admin/widgets/cart.php:65 +#: includes/admin/widgets/ms-global-product-list.php:92 +#: includes/admin/widgets/product-list.php:200 +msgid "Custom Text:" +msgstr "Aangepaste tekst:" + +#: includes/admin/widgets/cart.php:64 includes/admin/widgets/categories.php:69 +#: includes/admin/widgets/ms-global-categories.php:59 +#: includes/admin/widgets/ms-global-product-list.php:87 +#: includes/admin/widgets/ms-global-tag-cloud.php:49 +#: includes/admin/widgets/product-list.php:199 +#: includes/admin/widgets/product-tag-cloud.php:49 +msgid "Title:" +msgstr "Titel:" + +#: includes/admin/widgets/cart.php:7 +msgid "Shows dynamic shopping cart contents along with a checkout button for your MarketPress store." +msgstr "Geef een dynamische winkelwagen inhoud weer met een afrekenknop." + +#: includes/admin/widgets/product-tag-cloud.php:8 +msgid "Product Tag Cloud" +msgstr "Product tag cloud" + +#: includes/admin/class-mp-setup-wizard.php:539 +#: includes/admin/class-mp-setup-wizard.php:575 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:163 +msgid "Measurement System" +msgstr "Maateenheden" + +#: includes/admin/class-mp-setup-wizard.php:616 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:149 +msgid "Select Shipping Options" +msgstr "Selecteer verzendopties" + +#: includes/admin/class-mp-setup-wizard.php:596 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:129 +msgid "Calculated Options" +msgstr "Gecalculeerde opties" + +#: includes/admin/class-mp-setup-wizard.php:582 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:115 +msgid "No Shipping" +msgstr "Geen verzending" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:110 +msgid "EU" +msgstr "EU" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:109 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:93 +msgid "All" +msgstr "Alles" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:92 +msgid "Select:" +msgstr "Selecteer:" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:185 +msgid "Store Pages" +msgstr "Winkel pagina's" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:223 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:256 +msgid "Order Shipped" +msgstr "Bestelling verzonden" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:60 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:95 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:128 +#: marketpress.php:266 +msgid "New Order" +msgstr "Nieuwe bestelling" + +#: includes/admin/class-mp-dashboard-widgets.php:314 +msgid "Email Notifications" +msgstr "Email notificaties" + +#: includes/admin/class-mp-pages-admin.php:59 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:200 +msgid "Products List" +msgstr "Producten lijst" + +#: includes/admin/class-mp-pages-admin.php:58 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:190 +msgid "Store Base" +msgstr "Winkel basis" + +#: includes/admin/class-mp-product-attributes-admin.php:108 +#: includes/admin/class-mp-shortcode-builder.php:635 +#: includes/admin/class-mp-shortcode-builder.php:708 +#: includes/admin/class-mp-shortcode-builder.php:875 +#: includes/admin/class-mp-shortcode-builder.php:1319 +#: includes/admin/class-mp-shortcode-builder.php:1422 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:526 +#: includes/admin/widgets/ms-global-categories.php:78 +#: includes/admin/widgets/ms-global-product-list.php:127 +#: includes/admin/widgets/product-list.php:221 +msgid "Ascending" +msgstr "Oplopend" + +#: includes/admin/class-mp-product-attributes-admin.php:109 +#: includes/admin/class-mp-shortcode-builder.php:636 +#: includes/admin/class-mp-shortcode-builder.php:709 +#: includes/admin/class-mp-shortcode-builder.php:876 +#: includes/admin/class-mp-shortcode-builder.php:1320 +#: includes/admin/class-mp-shortcode-builder.php:1423 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:525 +#: includes/admin/widgets/ms-global-categories.php:75 +#: includes/admin/widgets/ms-global-product-list.php:124 +#: includes/admin/widgets/product-list.php:220 +msgid "Descending" +msgstr "Aflopend" + +#: includes/admin/class-mp-shortcode-builder.php:637 +#: includes/admin/class-mp-shortcode-builder.php:695 +#: includes/admin/class-mp-shortcode-builder.php:862 +#: includes/admin/class-mp-shortcode-builder.php:1306 +#: includes/admin/class-mp-shortcode-builder.php:1424 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:518 +#: includes/admin/widgets/ms-global-product-list.php:121 +#: includes/admin/widgets/product-list.php:218 +msgid "Random" +msgstr "Willekeurig" + +#: includes/admin/class-mp-shortcode-builder.php:694 +#: includes/admin/class-mp-shortcode-builder.php:861 +#: includes/admin/class-mp-shortcode-builder.php:1305 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:517 +#: includes/admin/widgets/ms-global-product-list.php:119 +#: includes/admin/widgets/product-list.php:216 +msgid "Product Price" +msgstr "Product prijs" + +#: includes/admin/class-mp-shortcode-builder.php:693 +#: includes/admin/class-mp-shortcode-builder.php:860 +#: includes/admin/class-mp-shortcode-builder.php:1304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:516 +#: includes/admin/widgets/ms-global-product-list.php:117 +#: includes/admin/widgets/product-list.php:215 +msgid "Number of Sales" +msgstr "Aantal verkopen" + +#: includes/admin/class-mp-shortcode-builder.php:692 +#: includes/admin/class-mp-shortcode-builder.php:859 +#: includes/admin/class-mp-shortcode-builder.php:1303 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:515 +#: includes/admin/widgets/product-list.php:214 +msgid "Product Author" +msgstr "Product schrijver" + +#: includes/admin/class-mp-shortcode-builder.php:691 +#: includes/admin/class-mp-shortcode-builder.php:858 +#: includes/admin/class-mp-shortcode-builder.php:1302 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:514 +#: includes/admin/widgets/product-list.php:213 +msgid "Product ID" +msgstr "Product ID" + +#: includes/admin/class-mp-shortcode-builder.php:690 +#: includes/admin/class-mp-shortcode-builder.php:857 +#: includes/admin/class-mp-shortcode-builder.php:1301 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:513 +#: includes/admin/widgets/ms-global-product-list.php:113 +#: includes/admin/widgets/product-list.php:212 +msgid "Publish Date" +msgstr "Publiceer datum" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:430 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:726 +msgid "Width" +msgstr "Breedte" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:439 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:735 +msgid "Height" +msgstr "Hoogte" + +#: includes/admin/class-mp-product-attributes-admin.php:88 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:402 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:698 +msgid "Custom" +msgstr "Aangepast" + +#: includes/common/class-mp-product.php:179 +#: includes/common/class-mp-product.php:992 +#: includes/common/class-mp-product.php:1000 +#: includes/multisite/template-functions.php:579 +msgid "Buy Now" +msgstr "Koop nu" + +#: includes/common/class-mp-product.php:175 +#: includes/common/class-mp-product.php:990 +#: includes/common/class-mp-product.php:998 +msgid "Add To Cart" +msgstr "In winkelwagen" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:807 +msgid "Store Style" +msgstr "Winkelstijl" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1021 +msgid "Edit Coupon" +msgstr "Bewerk kortingscode" + +#: includes/addons/mp-coupons/class-mp-coupon.php:580 +#: includes/admin/class-mp-ajax.php:238 +#: includes/admin/class-mp-products-admin.php:1532 +msgid "Unlimited" +msgstr "Ongelimiteerd" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1198 +msgid "Remaining Uses" +msgstr "Overgebleven gebruik" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1197 +msgid "Used" +msgstr "Gebruikt" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:752 +#: includes/admin/class-mp-products-admin.php:2343 +msgid "Start Date" +msgstr "Start datum" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:598 +msgid "Coupon Code" +msgstr "Kortingscode" + +#: includes/admin/class-mp-orders-admin.php:444 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:284 +msgid "Save Changes" +msgstr "Bewaar bewerkingen" + +#: includes/admin/class-mp-pages-admin.php:57 +#: includes/admin/class-mp-shortcode-builder.php:716 +#: includes/admin/class-mp-shortcode-builder.php:727 +#: includes/admin/class-mp-shortcode-builder.php:883 +#: includes/admin/class-mp-shortcode-builder.php:894 +#: includes/admin/class-mp-shortcode-builder.php:946 +#: includes/admin/class-mp-shortcode-builder.php:956 +#: includes/admin/class-mp-shortcode-builder.php:1006 +#: includes/admin/class-mp-shortcode-builder.php:1327 +#: includes/admin/class-mp-shortcode-builder.php:1338 +#: includes/admin/store-settings/class-mp-store-settings-general.php:357 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:270 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:108 +#: includes/admin/widgets/ms-global-product-list.php:172 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:94 +msgid "None" +msgstr "Geen" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:352 +msgid "Google Analytics Ecommerce Tracking" +msgstr "Google Analytics Ecommerce Tracking" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:310 +msgid "This option turns MarketPress into more of a product listing plugin, disabling shopping carts, checkout, and order management. This is useful if you simply want to list items you can buy in a store somewhere else, optionally linking the \"Buy Now\" buttons to an external site. Some examples are a car dealership, or linking to songs/albums in itunes, or linking to products on another site with your own affiliate links." +msgstr "This option turns MarketPress into more of a product listing plugin, disabling shopping carts, checkout, and order management. This is useful if you simply want to list items you can buy in a store somewhere else, optionally linking the \"Buy Now\" buttons to an external site. Some examples are a car dealership, or linking to songs/albums in itunes, or linking to products on another site with your own affiliate links." + +#: includes/admin/store-settings/class-mp-store-settings-general.php:304 +msgid "Whether or not customers must be registered and logged in to checkout. (Not recommended: Enabling this can lower conversions)" +msgstr "Moeten klanten wel of niet geregistreerd en ingelogd zijn om af te rekenen. ( Niet aanbevolen, dit kan de conversie verlagen)" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:258 +msgid "How many times may a customer download a file they have purchased? (It's best to set this higher than one in case they have any problems downloading)" +msgstr "Hoe vaak mag een klant een file downloaden als deze gekocht is? ( het is beter om dit meer dan 1 keer te maken ivm download problemen)" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:257 +msgid "Maximum Downloads" +msgstr "Maximum downloads" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:298 +msgid "This will set the product to draft if inventory of all variations is gone." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:288 +msgid "At what low stock count do you want to be warned for products you have enabled inventory tracking for?" +msgstr "Bij welk aantal producten, waarvoor de voorraad waarschuwing aanstaat, wil je gewaarschuwd worden?" + +#: includes/admin/class-mp-dashboard-widgets.php:208 +#: includes/admin/store-settings/class-mp-store-settings-general.php:287 +msgid "Inventory Warning Threshold" +msgstr "Voorraad waarschuwing vanaf" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:282 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:542 +msgid "Miscellaneous Settings" +msgstr "Verschillende instellingen" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:429 +#: includes/multisite/class-mp-admin-multisite.php:247 +msgid "Show Decimal in Prices" +msgstr "Toon de prijs in decimaal" + +#: includes/admin/class-mp-setup-wizard.php:451 +#: includes/admin/store-settings/class-mp-store-settings-general.php:403 +#: includes/multisite/class-mp-admin-multisite.php:221 +msgid "Currency Symbol Position" +msgstr "Positie valuta symbool" + +#: includes/admin/class-mp-setup-wizard.php:444 +#: includes/admin/store-settings/class-mp-store-settings-general.php:396 +msgid "Store Currency" +msgstr "Winkel valuta" + +#: includes/admin/class-mp-setup-wizard.php:429 +#: includes/admin/store-settings/class-mp-store-settings-general.php:381 +msgid "Currency Settings" +msgstr "Valuta instellingen" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:516 +msgid "Please see your local tax laws. Note if this is enabled and a downloadable only cart, rates will be the default for your base location." +msgstr "Raadpleeg uw lokale belastingwetgeving. Let op als deze is ingeschakeld bij een winkelwagen met alleen downloadbare producten, zullen de tarieven worden overgenomen van u basis locatie." + +#: includes/admin/class-mp-setup-wizard.php:529 +msgid "Apply Tax to Downloadable Products?" +msgstr "Pas BTW toe op downloadbare producten?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:498 +msgid "Enabling this option allows you to enter and show all prices inclusive of tax, while still listing the tax total as a line item in shopping carts. Please see your local tax laws." +msgstr "Door deze optie te activeren worden alle prijzen inclusief BTW weergegeven. In de winkelwagen zie je wel het totaal aan BTW voor de order." + +#: includes/admin/class-mp-setup-wizard.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:497 +msgid "Enter Prices Inclusive of Tax?" +msgstr "Voer je de prijs in met BTW?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:492 +msgid "Please see your local tax laws. Most areas charge tax on shipping fees." +msgstr "Bekijk de lokale BTW regels. De meeste gebieden rekenen BTW op de verzendkosten." + +#: includes/admin/class-mp-setup-wizard.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:491 +msgid "Apply Tax To Shipping Fees?" +msgstr "Pas BTW toe op verzendkosten?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:674 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:565 +#: includes/common/payment-gateways/authorizenet-aim.php:291 +#: includes/common/payment-gateways/authorizenet-aim.php:326 +#: includes/common/payment-gateways/payfast.php:347 +msgid "No" +msgstr "Nee" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:675 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:759 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:512 +#: includes/admin/class-mp-setup-wizard.php:518 +#: includes/admin/class-mp-setup-wizard.php:524 +#: includes/admin/class-mp-setup-wizard.php:530 +#: includes/admin/class-mp-setup-wizard.php:564 +#: includes/admin/store-settings/class-mp-store-settings-general.php:232 +#: includes/admin/store-settings/class-mp-store-settings-general.php:299 +#: includes/admin/store-settings/class-mp-store-settings-general.php:305 +#: includes/admin/store-settings/class-mp-store-settings-general.php:311 +#: includes/admin/store-settings/class-mp-store-settings-general.php:317 +#: includes/admin/store-settings/class-mp-store-settings-general.php:328 +#: includes/admin/store-settings/class-mp-store-settings-general.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:341 +#: includes/admin/store-settings/class-mp-store-settings-general.php:348 +#: includes/admin/store-settings/class-mp-store-settings-general.php:367 +#: includes/admin/store-settings/class-mp-store-settings-general.php:493 +#: includes/admin/store-settings/class-mp-store-settings-general.php:499 +#: includes/admin/store-settings/class-mp-store-settings-general.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:556 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:375 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:381 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:387 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:474 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:493 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:532 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:574 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:606 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:664 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:670 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:677 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:683 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:689 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:763 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:774 +#: includes/common/payment-gateways/_bitpay.php:250 +#: includes/common/payment-gateways/_bitpay.php:257 +#: includes/common/payment-gateways/_bitpay.php:264 +#: includes/common/payment-gateways/authorizenet-aim.php:290 +#: includes/common/payment-gateways/authorizenet-aim.php:325 +#: includes/common/payment-gateways/free_orders.php:160 +#: includes/common/payment-gateways/payfast.php:346 +#: includes/common/payment-gateways/paymill.php:162 +#: includes/common/payment-gateways/paypal-payflow.php:441 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-checkbox.php:22 +msgid "Yes" +msgstr "Ja" + +#: includes/admin/class-mp-setup-wizard.php:492 +#: includes/admin/store-settings/class-mp-store-settings-general.php:472 +msgid "%s Tax Rate" +msgstr "%s BTW percentage" + +#: includes/admin/class-mp-setup-wizard.php:467 +#: includes/admin/store-settings/class-mp-store-settings-general.php:449 +msgid "Tax Settings" +msgstr "BTW instellingen" + +#: includes/admin/class-mp-setup-wizard.php:370 +#: includes/admin/store-settings/class-mp-store-settings-general.php:624 +msgid "Base Zip/Postal Code" +msgstr "Base Zip/Postal Code" + +#: includes/admin/class-mp-setup-wizard.php:354 +#: includes/admin/store-settings/class-mp-store-settings-general.php:608 +msgid "Base State/Province/Region" +msgstr "Base State/Province/Region" + +#: includes/admin/class-mp-setup-wizard.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:589 +msgid "Base Country" +msgstr "Thuisland" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:582 +msgid "Location Settings" +msgstr "Locatie instellingen" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:195 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:800 +#: includes/multisite/class-mp-admin-multisite.php:172 +msgid "General Settings" +msgstr "Algemene instellingen" + +#: includes/admin/class-mp-products-admin.php:1945 +#: includes/admin/class-mp-products-admin.php:2185 +#: includes/admin/class-mp-store-settings-admin.php:111 +#: includes/admin/class-mp-store-settings-admin.php:266 +msgid "General" +msgstr "Algemeen" + +#: includes/admin/class-mp-store-settings-admin.php:242 +msgid "Importers" +msgstr "Importeren" + +#: includes/admin/class-mp-store-settings-admin.php:115 +#: includes/admin/class-mp-store-settings-admin.php:234 +msgid "Payments" +msgstr "Betalingen" + +#: includes/admin/class-mp-dashboard-widgets.php:313 +#: includes/admin/class-mp-store-settings-admin.php:112 +#: includes/admin/class-mp-store-settings-admin.php:222 +msgid "Presentation" +msgstr "Presentatie" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:916 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1015 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1018 +#: includes/admin/class-mp-dashboard-widgets.php:305 marketpress.php:702 +msgid "Coupons" +msgstr "Kortingscodes" + +#: includes/admin/class-mp-admin.php:251 +msgid "Download »" +msgstr "Download »" + +#: includes/admin/class-mp-admin.php:245 +#: includes/admin/class-mp-exporter-orders.php:170 +msgid "All Statuses" +msgstr "Alle statussen" + +#: includes/admin/class-mp-admin.php:209 +#: includes/admin/class-mp-exporter-orders.php:150 +#: includes/admin/class-mp-exporter-orders.php:178 +msgid "Export Orders" +msgstr "Exporteer bestellingen" + +#: includes/admin/class-mp-admin.php:228 +msgid "Show all dates" +msgstr "Laat alle data zien" + +#: includes/admin/class-mp-orders-admin.php:947 +msgid "Change Status" +msgstr "Bewerk status" + +#: includes/admin/class-mp-orders-admin.php:287 +msgid "Order Notes" +msgstr "Opmerkingen bestelling" + +#: includes/admin/class-mp-orders-admin.php:478 +msgid "Other" +msgstr "Andere" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:205 +msgid "Subtotal" +msgstr "Subtotaal" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:84 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:87 +#: includes/admin/class-mp-products-admin.php:1737 +#: includes/common/class-mp-cart.php:1409 +#: includes/common/class-mp-product.php:559 +msgid "Quantity" +msgstr "Aantal" + +#: includes/common/helpers.php:93 +msgid "Item" +msgstr "Product" + +#: includes/common/class-mp-order.php:1050 +msgid "Current Status" +msgstr "Huidige status" + +#: includes/admin/class-mp-orders-admin.php:297 +msgid "Order Actions" +msgstr "Bestellings acties" + +#: includes/common/class-mp-product.php:1084 +msgid "More Info »" +msgstr "Meer informatie »" + +#: includes/common/class-mp-product.php:2313 +msgid "Low Product Inventory Notification" +msgstr "Beperkt product voorraad alarm" + +#: includes/common/class-mp-order.php:338 includes/common/data.php:154 +msgid "New Order Notification: ORDERID" +msgstr "Nieuwe bestelling notificatie: ORDERID" + +#: includes/common/helpers.php:259 +msgid "Your payment for this order is complete." +msgstr "Jouw betaling voor deze bestelling is compleet." + +#: includes/common/helpers.php:261 +msgid "Your payment for this order is not yet complete. Here is the latest status:" +msgstr "Jouw betaling voor deze bestelling is nog niet compleet. Dit is de laatste status:" + +#: includes/common/helpers.php:256 +msgid "Payment Total:" +msgstr "Betaling totaal:" + +#: includes/common/helpers.php:253 +msgid "Transaction ID:" +msgstr "Transactie nummer:" + +#: includes/common/helpers.php:249 +msgid "Payment Type:" +msgstr "Betalingstype:" + +#: includes/common/helpers.php:246 +msgid "Payment Method:" +msgstr "Betalingsmethode:" + +#: includes/common/helpers.php:242 +msgid "Order Notes:" +msgstr "Instructie bestelling:" + +#: includes/common/helpers.php:237 +msgid "Special Instructions:" +msgstr "Speciale instructies:" + +#: includes/common/helpers.php:232 +msgid "Tracking Number:" +msgstr "Tracking nummer:" + +#: includes/common/helpers.php:223 includes/common/helpers.php:226 +#: includes/common/helpers.php:228 +#: includes/common/shipping-modules/class-mp-shipping-api.php:406 +#: includes/common/shipping-modules/class-mp-shipping-api.php:428 +msgid "Shipping Method:" +msgstr "Verzend methode:" + +#: includes/common/helpers.php:168 +msgid "No shipping required for this order." +msgstr "Geen verzending nodig voor deze bestelling." + +#: includes/common/helpers.php:155 +msgid "Order Total:" +msgstr "Totaal bestelling:" + +#: includes/common/class-mp-order.php:1025 +msgid "Taxes:" +msgstr "BTW:" + +#: includes/common/class-mp-order.php:1032 includes/common/helpers.php:144 +msgid "Shipping:" +msgstr "Verzending:" + +#: includes/public/class-mp-checkout.php:367 +msgid "Street address, P.O. box, company name, c/o" +msgstr "Adres" + +#: includes/admin/class-mp-orders-admin.php:314 +msgid "Shipping Info" +msgstr "Verzendinformatie" + +#: includes/public/class-mp-public.php:740 +msgid "Whoops, there was a problem loading up this file for your download. Please contact us for help." +msgstr "Oeps, er was een probleem met het uploaden van deze file voor jouw download. Naam alsjeblieft contact met ons op voor hulp." + +#: includes/public/class-mp-public.php:683 +msgid "Sorry, our records show you've downloaded this file %d out of %d times allowed. Please contact us if you still need help." +msgstr "Onze gegevens geven aan dat jij dit bestand %d van de %d toegestane downloads heeft gedownload. Gelieve ons te contacteren als jij assistentie nodig heeft." + +#: includes/public/class-mp-public.php:634 +msgid "Sorry, your order has been marked as unpaid." +msgstr "Jouw order staat gemarkeerd als onbetaald." + +#: includes/public/class-mp-public.php:629 +msgid "Sorry, the link is invalid for this download." +msgstr "Sorry, de link is ongeldig voor deze download." + +#: includes/admin/class-mp-exporter-orders.php:15 +#: includes/admin/class-mp-products-admin.php:1172 +msgid "Cheatin’ uh?" +msgstr "Cheatin’ uh?" + +#: includes/public/class-mp-public.php:407 +#: includes/public/class-mp-short-codes.php:128 +msgid "Please enter a valid email address." +msgstr "Vul alsjeblieft een geldig e-mailadres in." + +#: includes/admin/class-mp-ajax.php:191 +#: includes/admin/class-mp-products-admin.php:1821 +#: includes/admin/class-mp-products-admin.php:2010 +#: includes/admin/class-mp-products-admin.php:2267 +msgid "File URL" +msgstr "Bestands URL" + +#: includes/admin/class-mp-products-admin.php:1842 +msgid "External Link" +msgstr "Externe link" + +#: includes/admin/class-mp-products-admin.php:2177 +msgid "Add Variation" +msgstr "Voeg variatie toe" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:126 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:289 +msgid "Inventory" +msgstr "Voorraad" + +#: includes/admin/class-mp-products-admin.php:438 +#: includes/admin/class-mp-products-admin.php:578 +#: includes/admin/class-mp-products-admin.php:1552 +#: includes/admin/class-mp-products-admin.php:2053 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:134 +msgid "Sale Price" +msgstr "Verkoopprijs" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "Variation Name" +msgstr "Naam variatie" + +#: includes/admin/class-mp-products-admin.php:1931 +msgid "Product Details" +msgstr "Product details" + +#: includes/admin/class-mp-product-attributes-list-table.php:33 +msgid "Delete" +msgstr "Verwijder" + +#: includes/admin/class-mp-orders-admin.php:1057 +msgid "Trashed" +msgstr "Verwijderd" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:231 +#: includes/admin/class-mp-orders-admin.php:1015 +#: includes/common/class-mp-order.php:1052 includes/common/helpers.php:97 +msgid "Total" +msgstr "Totaal" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1196 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:210 +#: includes/admin/class-mp-orders-admin.php:1014 +msgid "Discount" +msgstr "Korting" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:221 +#: includes/admin/class-mp-orders-admin.php:1013 +#: includes/common/payment-gateways/_ideal.php:148 +#: includes/common/payment-gateways/_payway.php:134 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:108 +msgid "Tax" +msgstr "Belasting" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:216 +#: includes/admin/class-mp-orders-admin.php:1012 +#: includes/admin/class-mp-products-admin.php:1958 +#: includes/admin/class-mp-products-admin.php:2198 +#: includes/admin/class-mp-store-settings-admin.php:114 +#: includes/admin/class-mp-store-settings-admin.php:230 +#: includes/common/class-mp-cart.php:717 includes/common/helpers.php:168 +#: includes/common/payment-gateways/_ideal.php:137 +#: includes/common/payment-gateways/_payway.php:116 +#: includes/public/class-mp-checkout.php:1304 +msgid "Shipping" +msgstr "Verzenden" + +#: includes/admin/class-mp-orders-admin.php:1011 +msgid "Items" +msgstr "Artikelen" + +#: includes/admin/class-mp-orders-admin.php:1010 +msgid "From" +msgstr "Van" + +#: includes/admin/class-mp-exporter-orders.php:154 +#: includes/admin/class-mp-orders-admin.php:1009 +#: includes/common/class-mp-gdpr.php:370 +msgid "Order Date" +msgstr "Datum bestelling" + +#: includes/admin/class-mp-orders-admin.php:1008 +#: includes/common/class-mp-gdpr.php:366 +#: includes/common/template-functions.php:2134 +msgid "Order ID" +msgstr "Bestelnummer" + +#: includes/addons/class-mp-addons-list-table.php:22 +#: includes/admin/class-mp-orders-admin.php:1007 +msgid "Status" +msgstr "Status" + +#: includes/admin/class-mp-orders-admin.php:1155 +msgid "N/A" +msgstr "N/A" + +#: includes/admin/class-mp-dashboard-widgets.php:243 +#: includes/admin/class-mp-products-admin.php:464 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:142 +msgid "Sales" +msgstr "Verkopen" + +#: includes/admin/class-mp-products-admin.php:463 +msgid "Stock" +msgstr "Voorraad" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:85 +#: includes/admin/class-mp-ajax.php:176 includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:434 +#: includes/admin/class-mp-products-admin.php:462 +#: includes/admin/class-mp-products-admin.php:576 +#: includes/admin/class-mp-products-admin.php:1519 +#: includes/admin/class-mp-products-admin.php:1569 +#: includes/admin/class-mp-products-admin.php:1950 +#: includes/admin/class-mp-products-admin.php:2059 +#: includes/admin/class-mp-products-admin.php:2190 +#: includes/admin/class-mp-products-admin.php:2330 +#: includes/common/class-mp-cart.php:1415 includes/common/helpers.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:130 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:276 +msgid "Price" +msgstr "Prijs" + +#: includes/admin/class-mp-ajax.php:173 +#: includes/admin/class-mp-products-admin.php:461 +#: includes/admin/class-mp-products-admin.php:1972 +#: includes/admin/class-mp-products-admin.php:2224 +msgid "SKU" +msgstr "SKU" + +#: includes/admin/class-mp-products-admin.php:459 +#: includes/admin/class-mp-products-admin.php:1793 +#: includes/admin/class-mp-products-admin.php:1805 +#: includes/admin/class-mp-products-admin.php:2163 +msgid "Variations" +msgstr "Variaties" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:83 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:86 +#: includes/admin/class-mp-dashboard-widgets.php:134 +#: includes/admin/class-mp-products-admin.php:458 +#: includes/admin/class-mp-products-admin.php:837 +#: includes/admin/class-mp-shortcode-builder.php:689 +#: includes/admin/class-mp-shortcode-builder.php:856 +#: includes/admin/class-mp-shortcode-builder.php:1300 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:512 +#: includes/admin/widgets/ms-global-product-list.php:115 +#: includes/admin/widgets/product-list.php:211 +msgid "Product Name" +msgstr "Productnaam" + +#: includes/common/template-functions.php:2575 +msgid "Categorized in " +msgstr "Gecategoriseerd in " + +#: includes/admin/class-mp-orders-admin.php:305 +#: includes/common/payment-gateways/free_orders.php:176 +msgid "Payment Information" +msgstr "Betalings informatie" + +#: includes/admin/class-mp-exporter-orders.php:167 +#: includes/admin/class-mp-orders-admin.php:432 +#: includes/admin/class-mp-pages-admin.php:62 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:227 +#: includes/common/class-mp-gdpr.php:374 +#: includes/common/template-functions.php:175 +#: includes/common/template-functions.php:926 +msgid "Order Status" +msgstr "Order status" + +#. translators: %s: orders closed +#: marketpress.php:327 +msgid "Closed (%s)" +msgid_plural "Closed (%s)" +msgstr[0] "Afgerond (%s)" +msgstr[1] "Afgerond (%s)" + +#: includes/admin/class-mp-admin.php:249 +#: includes/admin/class-mp-orders-admin.php:375 +#: includes/admin/class-mp-orders-admin.php:951 +#: includes/admin/class-mp-orders-admin.php:1053 +#: includes/admin/class-mp-orders-admin.php:1065 +#: includes/common/class-mp-gdpr.php:330 +#: includes/common/class-mp-order.php:1019 marketpress.php:325 +msgid "Closed" +msgstr "Gesloten" + +#. translators: %s: shipped orders +#: marketpress.php:320 +msgid "Shipped (%s)" +msgid_plural "Shipped (%s)" +msgstr[0] "Verzonden (%s)" +msgstr[1] "Verzonden (%s)" + +#: includes/admin/class-mp-admin.php:248 +#: includes/admin/class-mp-orders-admin.php:376 +#: includes/admin/class-mp-orders-admin.php:950 +#: includes/admin/class-mp-orders-admin.php:1049 +#: includes/admin/class-mp-orders-admin.php:1064 +#: includes/common/class-mp-gdpr.php:329 +#: includes/common/class-mp-order.php:1002 marketpress.php:318 +msgid "Shipped" +msgstr "Verzonden" + +#. translators: %s: paid orders +#: marketpress.php:313 +msgid "Paid (%s)" +msgid_plural "Paid (%s)" +msgstr[0] "Betaald (%s)" +msgstr[1] "Betaald (%s)" + +#: includes/admin/class-mp-admin.php:247 +#: includes/admin/class-mp-orders-admin.php:377 +#: includes/admin/class-mp-orders-admin.php:949 +#: includes/admin/class-mp-orders-admin.php:1045 +#: includes/admin/class-mp-orders-admin.php:1063 +#: includes/common/class-mp-gdpr.php:328 +#: includes/common/payment-gateways/2checkout.php:294 +#: includes/common/payment-gateways/_cubepoints.php:130 +#: includes/common/payment-gateways/authorizenet-aim.php:193 +#: includes/common/payment-gateways/free_orders.php:91 +#: includes/common/payment-gateways/mijireh.php:248 +#: includes/common/payment-gateways/paymill.php:273 +#: includes/common/payment-gateways/paypal-express.php:933 +#: includes/common/payment-gateways/paypal-express.php:967 +#: includes/common/payment-gateways/pin.php:258 +#: includes/common/payment-gateways/simplify.php:181 +#: includes/common/payment-gateways/stripe.php:368 +#: includes/common/payment-gateways/wepay.php:269 marketpress.php:311 +msgid "Paid" +msgstr "Betaald" + +#. translators: %s: orders received +#: marketpress.php:306 +msgid "Received (%s)" +msgid_plural "Received (%s)" +msgstr[0] "Ontvangen (%s)" +msgstr[1] "Ontvangen (%s)" + +#: includes/admin/class-mp-admin.php:246 +#: includes/admin/class-mp-orders-admin.php:378 +#: includes/admin/class-mp-orders-admin.php:1041 +#: includes/admin/class-mp-orders-admin.php:1062 +#: includes/common/class-mp-gdpr.php:327 includes/common/class-mp-order.php:995 +#: includes/common/payment-gateways/payfast.php:244 marketpress.php:304 +msgid "Received" +msgstr "Ontvangen" + +#: marketpress.php:268 +msgid "Search Orders" +msgstr "Zoek order" + +#: marketpress.php:267 +msgid "View Order" +msgstr "Bekijk order" + +#: marketpress.php:262 +msgid "Order" +msgstr "Order" + +#: includes/admin/class-mp-dashboard-widgets.php:301 +#: includes/admin/class-mp-orders-admin.php:989 marketpress.php:261 +msgid "Orders" +msgstr "Bestellingen" + +#: marketpress.php:228 +msgid "No Products found in Trash" +msgstr "Geen producten gevonden in de prullenbak" + +#: marketpress.php:227 +msgid "No Products Found" +msgstr "Geen producten gevonden" + +#: marketpress.php:226 +msgid "Search Products" +msgstr "Zoek product" + +#: marketpress.php:225 marketpress.php:229 +msgid "View Product" +msgstr "Bekijk product" + +#: marketpress.php:224 +msgid "New Product" +msgstr "Nieuw product" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1022 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:258 +#: marketpress.php:223 +msgid "Edit" +msgstr "Wijzig" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1019 +msgid "Create New" +msgstr "Creëer nieuw" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:687 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:698 +#: marketpress.php:217 +msgid "Product" +msgstr "Product" + +#: includes/admin/class-mp-dashboard-widgets.php:307 +#: includes/common/template-functions.php:173 +#: includes/common/template-functions.php:179 +#: includes/common/template-functions.php:902 +#: includes/multisite/template-functions.php:82 marketpress.php:216 +#: marketpress.php:219 +msgid "Products" +msgstr "Producten" + +#: includes/admin/class-mp-store-settings-admin.php:118 +#: includes/admin/widgets/product-tag-cloud.php:46 +#: includes/multisite/class-mp-admin-multisite.php:548 +msgid "Product Tags" +msgstr "Product tags" + +#: includes/common/template-functions.php:2906 +#: includes/multisite/template-functions.php:449 +msgid "Product Category" +msgstr "Product categorie" + +#: includes/admin/class-mp-store-settings-admin.php:117 +#: includes/admin/widgets/categories.php:8 +#: includes/admin/widgets/categories.php:18 +#: includes/multisite/class-mp-admin-multisite.php:539 +msgid "Product Categories" +msgstr "Product categorie" + +#: includes/common/payment-gateways/stripe.php:332 +#: includes/common/template-functions.php:872 marketpress.php:218 +msgid "Store" +msgstr "Winkel" + +#: includes/admin/class-mp-pages-admin.php:60 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:209 +#: includes/admin/widgets/cart.php:8 includes/admin/widgets/cart.php:56 +#: includes/common/template-functions.php:174 +#: includes/common/template-functions.php:811 +msgid "Shopping Cart" +msgstr "Winkelwagen" + +#: includes/admin/class-mp-store-settings-admin.php:110 +#: includes/admin/class-mp-store-settings-admin.php:218 +msgid "Store Settings" +msgstr "Winkel instellingen" + +#: includes/addons/class-mp-addons-list-table.php:128 marketpress.php:607 +msgid "Settings" +msgstr "Instellingen" + +#: includes/common/data.php:178 includes/common/data.php:190 +msgid "Your Order Has Been Shipped! (ORDERID)" +msgstr "Jouw bestelling is verzonden! (ORDERID)" + +#: includes/common/data.php:159 includes/common/data.php:166 +#: includes/common/data.php:172 +msgid "Your Order Confirmation (ORDERID)" +msgstr "Jouw order informatie (ORDERID)" + +#: includes/common/data.php:148 +msgid "

    Thank you for your order! We appreciate your business, and please come back often to check out our new products.

    " +msgstr "

    Dank voor jouw bestelling! Wil jij op de hoogte blijven bezoek dan regelmatig onze website.

    " + +#: includes/common/data.php:147 +msgid "

    You are almost done! Please do a final review of your order to make sure everything is correct then click the \"Confirm Payment\" button.

    " +msgstr "

    Jouw bestelling is bijna afgerond. Lees alles nog zorgvuldig door en klik op \"Confirm Payment\" button.

    " + +#: includes/common/data.php:145 +msgid "

    Please enter your shipping information in the form below to proceed with your order.

    " +msgstr "

    Vul hier alsjeblieft jouw verzendgegevens in om door te gaan met jouw bestelling.

    " + +#: includes/common/data.php:143 +msgid "

    If you have any questions about your order please do not hesitate to contact us.

    " +msgstr "

    Mocht u vragen hebben over uw bestelling, aarzel dan niet om contact met ons op te nemen.

    " + +#: includes/common/data.php:106 +msgid "tag" +msgstr "tag" + +#: includes/common/data.php:105 +msgid "category" +msgstr "categorie" + +#: includes/common/data.php:104 +msgid "order-status" +msgstr "order status" + +#: includes/common/data.php:103 +msgid "shopping-cart" +msgstr "winkelwagen" + +#: includes/common/data.php:102 +msgid "products" +msgstr "producten" + +#. Translators: change default slugs here +#: includes/common/data.php:101 +msgid "store" +msgstr "winkel" \ No newline at end of file diff --git a/languages/mp-no.mo b/languages/mp-no.mo new file mode 100644 index 0000000000000000000000000000000000000000..cc8561aec6922da0abce34dc6dbbe2f7cb941f59 GIT binary patch literal 27188 zcmc(nd6ZmNednKzjghc1UI1fkd?i~}%kFMjvK^b2ELp47){0t-ZD2gFyIxm6SJkVc z-m7kv85{^FFo9u7Fk47M0*EjfLQYILm_ufmi~ut%!(rIWWMLbI92i4@8DM+}%;)>N z_r0oaNf!JuXME)TzU98V{O)hRzwUpy_?$OI{5OAA6kP#+=Bc`iqJQP7GQOJykAfZW z1>h&a1@M|@N73uRKL97e>o1R@9bgaCIz9qw-j9Okg5L%;-|vAJfIkJ#1J8YqALjz_ zBJQ6BJ_%d{s{I(Kex3(v9Xmnww;$wRbeJDkgD(a(-#3A?;5)!)f=^~L`u<9gA*1WS zOTiuB3&DH92f+`4PX_l~>E|^CUda6mz>C2KsQEkqUJJfDy#Gs3^ZFZ5-+u~JyU&AK z=ih_+{(Av`0jm8)&y6BT7hMjX1KtGc`{#js!P`O2`*on`^mg#+;JZNe_gCThBcQ(f z9H?=>9G-s@6kmKdJpbRI#y#sQPv_+zTNzyeJ`KDXR6pB6jk_CEe|LczzZTv%LG_!1 z>hA$i^LiC{7x-3C{PM%_e$x5(2f?#>J_BmKv!MEKfR}&^p!$6c_z?JJkSRx#E7%io z4%9q92x>kb14ZA@1pIHH`uRst^Zz-h`7K-N`QloWK{1R0Em#^~U-2m$SCQ$OY4P`) zmK41U)Ht66wZ6}S+K+F6n*UEh&F8$;em|cIp3D6;py+-bD0GWU;x8vlQV`^UrkvqpS>PXjgI z=YU$zRiM^)Gf2~D0-OY=!KZ-l17$Bh2x{H`1Jt@72Q{DNYy5s*2I_t__!RJFFg=U? z2O&}P-s`-ad=BK(=rK^^J@fh~8V5IlG>ux|dhjjaTJTe#_Th1mf6-N=QFI5m8+;Y` zMo{gZGv?R78x-9Rf}+E{pyr(f?1SfV|61^=;G4qzpMc`ae+!D<4}+59PlFeLe+O#a z-vzaAkAoWLTqZBP7*xBfK=IXBc)l6bcY8q5<%OWyC7}ArL4E%~c>fx38TSu@+Rr}< z&yR!8=l=bm=BGt#|1JSF&o$uFzzI;_O@dng0Z{vW1k`xA@}bCHO^myPX|8* z>ifS9&%X_-pC5y2|8r3CfBrf@&#OVL;|5Uc-4O6j@af#&4Qjvd1NVXtfLp=OfG+|s zgt;_c3)KEEfPL^4;28MN;3#N=K+*S&0pAwhzXQ~~{tQ(A z9}f2)5BFaL#m8R<)zA4i`So4`YM-tM=s?Z$8c_Q)4r;s&puXDzYQ4Ka>FvA08L$UR zzP<|9z_V{=|B%BvDE;`GzkzN9-vM3(egXVF@Y~=)@YpSk0e%|17d-D)_7bdv@1ma% zfOm3#6yu`(c_*m(JOpZf9}dqy3Tl3z14WOohvz>4#UH-}#RumxnAZ6WPXVAZ1ei)N!z`g9|oVv^W&iU z`)lwV@ROkU?6aWc=WC$$|GS{Z{}CuY`8jwFc);m_kv^K z2SCm18=%JhLBOAZYIoKyKi~5~&Ewgi`nv(tI9oyWy9YcQtbtDk>)>iI1J&-$;CbL5 zgKGa?Q2hHJLDAt0pvHSN;J3i1aR2>q|5H%=aQ39{|7oD+{S5GO@M=)~Z335p&j%&X zF97vj15|$t;JM(-!u=~j&G+@7+P@h*3ce@cFF<{FuQ@E%a}d?~2*uLREr-vVmi-VI&`egqVqz8LU3pyvNLD0(j2i%f&h0@r}Ig4(ZX zQ1iVXd_VYdP~+XO&+psw0&WM@Za=sVJOW+-{%cV4cr&Q}{v6aiKMp<>{4#hY_)Spj zl(7|GEC;n;7l!+1fa?EpQ1o8`s=qa$^w<{geDEl!?`q)F!23YawGV3CHwJt+cp>*6 z1T~M3gI9r{2i4CHLDBgapvJlQfZylqK+SI>sP%0Dr6>1;npYFlJ{95pF;M-z61)X` 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 'DOMPDF_ENABLE_HTML5PARSER', true ); to the wp-config.php file." +msgstr "" + +#: includes/public/class-mp-checkout.php:723 +msgid "Invalid Email" +msgstr "" + +#: includes/public/class-mp-checkout.php:721 +#: includes/public/class-mp-checkout.php:729 +msgid "This field is required" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:804 +msgid "This option changes the built-in css styles for store pages. For a custom css style, save your css file with the /* MarketPress Style: Your CSS Theme Name Here */ header line in the \"%s\" folder and it will appear in this list so you may select it. You should select \"None\" if you don't wish to use custom CSS styles or if you are using default theme templates or custom theme templates and css to make your own completely unique store design. For more information on custom theme templates click here »." +msgstr "" + +#: includes/public/class-mp-public.php:421 +#: includes/public/class-mp-short-codes.php:142 +msgid "Please enter a value greater than or equal to {0}." +msgstr "Angi en verdi større eller lik {0}." + +#: includes/public/class-mp-public.php:420 +#: includes/public/class-mp-short-codes.php:141 +msgid "Please enter a value less than or equal to {0}." +msgstr "Angi en verdi mindre eller lik {0}." + +#: includes/public/class-mp-public.php:419 +#: includes/public/class-mp-short-codes.php:140 +msgid "Please enter a value between {0} and {1}." +msgstr "Angi en verdi mellom {0} og {1}," + +#: includes/public/class-mp-public.php:418 +#: includes/public/class-mp-short-codes.php:139 +msgid "Please enter a value between {0} and {1} characters long." +msgstr "" + +#: includes/public/class-mp-public.php:417 +#: includes/public/class-mp-short-codes.php:138 +msgid "Please enter at least {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:416 +#: includes/public/class-mp-short-codes.php:137 +msgid "Please enter no more than {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:415 +#: includes/public/class-mp-short-codes.php:136 +msgid "Please enter a value with a valid extension." +msgstr "" + +#: includes/public/class-mp-public.php:414 +#: includes/public/class-mp-short-codes.php:135 +msgid "Please enter the same value again." +msgstr "" + +#: includes/public/class-mp-public.php:413 +#: includes/public/class-mp-short-codes.php:134 +msgid "Please enter a valid credit card number." +msgstr "" + +#: includes/public/class-mp-public.php:412 +#: includes/public/class-mp-short-codes.php:133 +msgid "Please enter only digits." +msgstr "" + +#: includes/public/class-mp-public.php:411 +#: includes/public/class-mp-short-codes.php:132 +msgid "Please enter a valid number." +msgstr "" + +#: includes/public/class-mp-public.php:410 +#: includes/public/class-mp-short-codes.php:131 +msgid "Please enter a valid date (ISO)." +msgstr "" + +#: includes/public/class-mp-public.php:409 +#: includes/public/class-mp-short-codes.php:130 +msgid "Please enter a valid date." +msgstr "" + +#: includes/public/class-mp-public.php:408 +#: includes/public/class-mp-short-codes.php:129 +msgid "Please enter a valid URL." +msgstr "" + +#: includes/public/class-mp-public.php:406 +#: includes/public/class-mp-short-codes.php:127 +msgid "Please fix this field." +msgstr "" + +#: includes/public/class-mp-checkout.php:1287 +#: includes/public/class-mp-public.php:405 +#: includes/public/class-mp-short-codes.php:126 +msgid "This field is required." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:810 +msgid "None - Without Special CSS-styles" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:809 +msgid "Default - Using Default CSS-styles" +msgstr "" + +#: marketpress.php:739 +msgid "Enable multiple downloads per product" +msgstr "" + +#: marketpress.php:738 +msgid "Multiple Downloads" +msgstr "" + +#: includes/public/class-mp-checkout.php:715 +msgid "Invalid Zip Code" +msgstr "" + +#: includes/common/template-functions.php:2126 +msgid "Guest Email" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:195 +msgid "There was a problem finalizing your purchase. Please re-enter your credit card information and try again" +msgstr "" + +#: includes/common/class-mp-cart.php:565 includes/common/class-mp-order.php:600 +#: includes/common/helpers.php:111 +msgid "Download %1$s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:331 +msgid "Export products to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:328 +msgid "The import process uses the WordPress importer plugin." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:326 +msgid "Import / Export Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:325 +msgid "Export settings to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:324 +msgid "Import configuration" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:320 +msgid "Use the text below to export to a new installation. Or paste in the new configuration to import." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:318 +msgid "Import / Export Settings" +msgstr "" + +#. translators: URL to wp-admin/import.php +#: includes/admin/store-settings/class-mp-store-settings-import.php:266 +msgid "This importer is not installed. Please install importers from the main site." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:261 +msgid "Install Now" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:260 +msgid "Install %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:240 +msgid "Run Importer" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:239 +msgid "Run %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:258 +msgid "Import/Export" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1199 +msgid "Requires Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:737 +msgid "Optionally limit the user to some categories" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:671 +msgid "Should this coupon only be available to logged in users?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:670 +msgid "Require Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:655 +msgid "Mimimum number of products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:653 +msgid "Enter the minimum number of products in the cart that this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:648 +msgid "Can this coupon be limited to a number of products in the cart?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:334 +msgid "Add all values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:265 +msgid "Set as default variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:154 +msgid "Set Default" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:150 +msgid "More Info" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:40 +msgid "MarketPress - Quick Setup" +msgstr "" + +#: includes/public/class-mp-checkout.php:1399 +msgid "Proceed to checkout and create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1241 +#: includes/public/class-mp-checkout.php:1245 +msgid "Register account" +msgstr "" + +#: includes/public/class-mp-checkout.php:1233 +msgid "Register as customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:765 +msgid "

    Oops!

    Looks like you haven't added anything your cart. Let's go shopping!

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:763 +msgid "

    Oops!

    The cart is disabled.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing Information" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:214 +msgid "Global Currency" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:198 +msgid "Global Store Currency" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:507 +msgid "There are no shipping services available for this type of package in your location." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:168 +msgid "Using this USPS Shipping calculator requires requesting an Ecommerce API Username and Password. Get your free set of credentials here ». The password is no longer used for the API, just the username which you should enter below. The USPS test site has not yet been updated and currently doesn't work - you should just request activating your credentials with USPS and go live." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:339 +msgid "ZIP Code" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:334 +msgid "Last name" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:333 +msgid "First name" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:150 +msgid "These are the manual payment instructions to display on the order confirmation screen. TOTAL will be replaced with the order total and ORDERID will be replaced with Order ID." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:240 +msgid "You must login to Authorize.net merchant dashboard to obtain the API login ID and API transaction key. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:327 +msgid "
    1. Set the \"Return Method\" within Site Management to Header Redirect and set the \"Return URL\" to %s
    2. Set your notifications url to %s
    " +msgstr "" + +#: includes/common/data.php:191 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Also, digital downloads included in your order are now ready to be downloaded. Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:185 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order is now available to download! Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:184 +msgid "Your Order Is Ready To Be Downloaded! (ORDERID)" +msgstr "" + +#: includes/common/data.php:179 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:173 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received, your digital goods are ready to be downloaded and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:167 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received and your digital goods are ready to be downloaded. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:160 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +" Your order has been received, and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information: \n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/class-mp-product.php:638 +msgid "You can not add more items to cart." +msgstr "" + +#: includes/common/class-mp-product.php:635 +msgid "You can only add {0} to cart." +msgstr "" + +#: includes/common/class-mp-product.php:625 +msgid "This product has an order limit of %d." +msgstr "" + +#: includes/common/class-mp-order.php:1454 +msgid "Shipped: tracking code: %s" +msgstr "" + +#: includes/common/class-mp-order.php:1000 +#: includes/common/class-mp-order.php:1012 +msgid "Finished" +msgstr "" + +#: includes/common/class-mp-order.php:858 +msgid "Contact Details" +msgstr "" + +#: includes/common/class-mp-order.php:339 includes/common/data.php:155 +msgid "" +"A new order (ORDERID) was created in your store:\n" +"\n" +" ORDERINFOSKU\n" +"\n" +" SHIPPINGINFO\n" +"\n" +" PAYMENTINFO\n" +"\n" +msgstr "\n" + +#: includes/common/class-mp-cart.php:1858 +msgid "Add again" +msgstr "" + +#: includes/common/class-mp-cart.php:1852 +msgid "was removed from Shopping Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1242 +#: includes/public/class-mp-short-codes.php:160 +msgid "Cart update notice: this item has a limit per order or you have reached the stock limit." +msgstr "" + +#: includes/admin/widgets/product-list.php:235 +msgid "Show Only Featured Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:533 +msgid "If enabled, users won't be able to filter products per category and/or to order by release date/name/price." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:531 +msgid "Hide Products Filter?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:353 +msgid "Notification to registration email instead of billing email?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:322 +msgid "Order Shipped - Mixed orders (with both digital and physical products)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:289 +msgid "Order Shipped - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:224 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:194 +msgid "New Order - Mixed" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:161 +msgid "New Order - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:115 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:243 +msgid "Mixed orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:110 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:238 +msgid "Digital downloads orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:105 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:233 +msgid "Physical orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:96 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed.
    For orders placed with manual payment, emails set here will be overriden by the one configured in manual payments settings, under payments settings page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:89 +msgid "Customer Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:47 +msgid "Admin Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:566 +msgid "Only contact details" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:565 +msgid "Full billing info" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:561 +msgid "Details Collection" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:548 +msgid "Digital Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:515 +msgid "Apply Tax to Digital Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:236 +msgid "product (default)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:231 +msgid "If you are experiencing conflicts with other e-commerce plugins change this setting. This will change the internal post type of all your products. Please note that changing this option may break 3rd party themes or plugins." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1203 +msgid "Hide details" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1202 +msgid "Show all changes" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1184 +msgid "Version %s" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1161 +msgid "Current" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1131 +msgid "%s changelog" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:952 +msgid "We did not find any data for this plugin or theme..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:285 +msgid "Activate WPMU DEV Dashboard" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:279 +msgid "Just one more step - activate the WPMU DEV Dashboard plugin and you're all done!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:277 +msgid "Important updates are available for your WPMU DEV plugins/themes. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:273 +msgid "Just one more step to enable updates and support for %s!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:271 +msgid "Important updates are available for %s. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:264 +msgid "activate" +msgstr "" + +#: includes/admin/class-mp-admin.php:398 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:248 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:289 +msgid "Dismiss" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:247 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:288 +msgid "Saving..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:244 +msgid "Install Plugin" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:238 +msgid "Almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:236 +msgid "Important updates are available for your WPMU DEV plugins/themes. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:232 +msgid "%s is almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:230 +msgid "Important updates are available for %s. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:223 +msgid "install" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1428 +msgid "Sets the number of Tags to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1289 +msgid "How many products to display in the product list if \"paginate\" is set to false." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:739 +#: includes/admin/class-mp-shortcode-builder.php:906 +#: includes/admin/class-mp-shortcode-builder.php:1350 +msgid "Grid" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:735 +#: includes/admin/class-mp-shortcode-builder.php:902 +#: includes/admin/class-mp-shortcode-builder.php:1346 +msgid "Products will be displayed as list or grid." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:206 +msgid "Display a cloud or list of your global product tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:205 +msgid "Display a list of your global categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:204 +msgid "Display a list or grid of your global products." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:181 +msgid "Display a list of featured products." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1451 +msgid "Is Featured?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1444 +msgid "Featured Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:581 +#: includes/admin/class-mp-products-admin.php:1580 +msgid "% discount" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:579 +msgid "OR" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:460 +#: includes/admin/class-mp-products-admin.php:586 +#: includes/admin/widgets/product-list.php:217 +msgid "Featured" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:536 +#: includes/admin/class-mp-orders-admin.php:538 +msgid "Tracking Link" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:508 +msgid "Shipping Tax" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:356 +msgid "Shipping Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:352 +msgid "Taxes Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:349 +msgid "Products Total" +msgstr "" + +#: includes/admin/class-mp-ajax.php:366 +msgid "Oops! You entered an invalid username/email and or password." +msgstr "" + +#: includes/admin/class-mp-ajax.php:254 +msgid "Percentage Discount" +msgstr "" + +#: includes/admin/class-mp-ajax.php:234 +msgid "Limit the Amount of Items per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:214 +msgid "Unused Attributes" +msgstr "" + +#: includes/admin/class-mp-admin.php:82 +msgid "Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-admin.php:79 +msgid "MarketPress setup is not complete! Once you've completed this quick setup wizard you'll have a fully working online store - exciting! " +msgstr "" + +#: marketpress.php:263 +msgctxt "mp_order" +msgid "Add New" +msgstr "" + +#: marketpress.php:184 +msgctxt "product_tag" +msgid "Product Tag" +msgstr "" + +#: marketpress.php:183 +msgctxt "product_tag" +msgid "Product Tags" +msgstr "" + +#: marketpress.php:150 +msgctxt "product_category" +msgid "Product Category" +msgstr "" + +#: marketpress.php:149 +msgctxt "product_category" +msgid "Product Categories" +msgstr "" + +#. Author URI of the plugin/theme +msgid "http://premium.wpmudev.org" +msgstr "" + +#: marketpress.php:729 +msgid "Invoice PDF" +msgstr "" + +#: marketpress.php:712 +msgid "Grant access to themes and gateways depending on the user's Pro Site level" +msgstr "" + +#: marketpress.php:711 +msgid "Pro Sites" +msgstr "" + +#: marketpress.php:703 +msgid "Offer and accept coupon codes" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:687 +msgid "Install %s Pages" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:682 +msgid "Welcome to %s – Install pages required by the plugin automatically." +msgstr "" + +#: marketpress.php:668 +msgid "Your pages were created successfully." +msgstr "" + +#: marketpress.php:436 +msgid "Add a Product" +msgstr "" + +#: marketpress.php:271 +msgid "Parent Order" +msgstr "" + +#: marketpress.php:270 +msgid "No orders found in trash" +msgstr "" + +#: marketpress.php:269 +msgid "No orders found" +msgstr "" + +#: marketpress.php:265 +msgid "Edit Order" +msgstr "" + +#: marketpress.php:264 +msgid "Add New Order" +msgstr "" + +#: marketpress.php:220 marketpress.php:221 +msgid "Add New Product" +msgstr "" + +#: marketpress.php:197 +msgid "No product tags found" +msgstr "" + +#: marketpress.php:196 +msgid "Choose from the most used product tags" +msgstr "" + +#: marketpress.php:195 +msgid "Add or remove product tags" +msgstr "" + +#: marketpress.php:194 +msgid "Separate product tags with commas" +msgstr "" + +#: marketpress.php:193 +msgid "Search Product Tags" +msgstr "" + +#: marketpress.php:192 +msgid "Parent Product Tag:" +msgstr "" + +#: marketpress.php:191 +msgid "Parent Product Tag" +msgstr "" + +#: marketpress.php:190 +msgid "New Product Tag Name" +msgstr "" + +#: marketpress.php:189 +msgid "Add New Product Tag" +msgstr "" + +#: marketpress.php:188 +msgid "Update Product Tag" +msgstr "" + +#: marketpress.php:187 +msgid "View Product Tag" +msgstr "" + +#: marketpress.php:186 +msgid "Edit Product Tag" +msgstr "" + +#: marketpress.php:185 +msgid "All Product Tags" +msgstr "" + +#: marketpress.php:163 +msgid "No product categories found" +msgstr "" + +#: marketpress.php:162 +msgid "Choose from the most used product categories" +msgstr "" + +#: marketpress.php:161 +msgid "Add or remove product categories" +msgstr "" + +#: marketpress.php:160 +msgid "Separate product categories with commas" +msgstr "" + +#: marketpress.php:159 +msgid "Search Product Categories" +msgstr "" + +#: marketpress.php:158 +msgid "Parent Product Category:" +msgstr "" + +#: marketpress.php:157 +msgid "Parent Product Category" +msgstr "" + +#: marketpress.php:156 +msgid "New Product Category Name" +msgstr "" + +#: marketpress.php:155 +msgid "Add New Product Category" +msgstr "" + +#: marketpress.php:154 +msgid "Update Product Category" +msgstr "" + +#: marketpress.php:153 +msgid "View Product Category" +msgstr "" + +#: marketpress.php:152 +msgid "Edit Product Category" +msgstr "" + +#: marketpress.php:151 +msgid "All Product Categories" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Please fix the %s1 and then try submitting the form again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Oops! The form contains %s1 which %s2 been highlighted below." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:660 +msgid "have" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:659 +msgid "has" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:651 +msgid "Value must be less than {0}" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:650 +msgid "Please enter only letters and numbers" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:539 +msgid "Due to prolonged inactivity on this page, one or more settings were not saved. Please try again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:535 +msgid "Settings Saved" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-user-select.php:22 +msgid "Select Some Users" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-section.php:18 +msgid "Section Title" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:425 +msgid "Are you sure you want to delete this?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:30 +msgid "Add Row" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-post-select.php:24 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-taxonomy-select.php:22 +msgid "Select Posts" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:210 +msgid "Add Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:129 +msgid "Select the image that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:93 +msgid "Select image(s) that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:79 +msgid "Select the image that you would like to use for this variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:48 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:82 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:68 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:132 +msgid "Select Image" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:31 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:160 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:168 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:19 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:115 +msgid "Select File" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:30 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:18 +msgid "Select the file that you would like to use." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:357 +msgid "Create Variations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:356 +msgid "Add Another Variant" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Insert a value and press ENTER" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "(e.g. White, Grey, Red etc.)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Variation Values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:333 +msgid "Or create new variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "(e.g. Color)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:303 +msgid "You are about to delete selected variants.
    If you want to continue please confirm." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:302 +msgid "Confirmation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:290 +msgid "Insert quantity available. Empty for unlimited." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:281 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:294 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:307 +msgid "Cancel" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:280 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:293 +msgid "Update" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:277 +msgid "Insert the price i.e. 25 or 25.50" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:115 +msgid "Img." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:85 +msgid "Add New Variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:79 +msgid "Delete Variants" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:78 +msgid "Update Prices" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:77 +msgid "Update Inventory" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:76 +msgid "Update Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:75 +msgid "Bulk Actions" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:73 +msgid "Select bulk action" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:196 +msgid "Configure Store" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:195 +msgid "Configure shipping rates, emails and your store's appearance. " +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:190 +msgid "Add Product" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:189 +msgid "Add your first product for sale and get familiar with adding products." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:184 +msgid "Your store is almost ready for its first customers, but first it needs some products. Get started by adding products below, or jump straight into further configuring your store’s settings." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:183 +msgid "Woohoo! Your online store is up and running." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:160 +msgid "Finish Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:124 +msgid "And what metric system do you want to use?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:113 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:142 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:159 +msgid "Back" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:109 +msgid "Do you want to apply tax for your products? You can customize this for each product and variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:105 +msgid "What currency do you want to sell with?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:93 +msgid "And, which countries do you want to sell to?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:89 +msgid "Where is your online store based?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:80 +msgid "Payment Gateway" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:79 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:123 +msgid "Metric System" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:78 +msgid "Currency & Tax" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:77 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:88 +msgid "Locations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:70 +msgid "Choose where you want to sell your stuff and what currency. Easy!" +msgstr "" + +#: includes/public/class-mp-checkout.php:1400 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:58 +msgid "Continue" +msgstr "" + +#: includes/admin/class-mp-admin.php:83 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:53 +msgid "Skip this step, I'll do this manually" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:49 +msgid "Install store pages" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:44 +msgid "Once you've completed this quick setup wizard you'll have a fully working online store - exciting! Start
    by creating the default store pages for the online store such as the cart, checkout and store pages." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:42 +msgid "MarketPress adds a full online store to your website, with heaps of configuration options and addons
    to suit your needs. It's really easy to get going, and only takes a few minutes to setup!" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:41 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:69 +msgid "Welcome to MarketPress - Quick Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-advanced-select.php:23 +msgid "Select Some Options" +msgstr "" + +#: includes/wpmudev-metaboxes/class-wpmudev-field.php:694 +msgid "You must the WPMUDEV_Field::display() method in your form field class" +msgstr "" + +#: includes/public/class-mp-short-codes.php:636 +msgid "Only %s left in stock..." +msgstr "" + +#: includes/public/class-mp-short-codes.php:633 +msgid "Unlimited stock" +msgstr "" + +#: includes/public/class-mp-short-codes.php:430 +msgid "product_id must be defined" +msgstr "" + +#: includes/public/class-mp-checkout.php:1250 +msgid "An account with this username already exists" +msgstr "" + +#: includes/public/class-mp-checkout.php:1394 +msgid "Continue as Guest" +msgstr "" + +#: includes/public/class-mp-checkout.php:1393 +msgid "Proceed to checkout and you'll have an opportunity to create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1392 +#: includes/public/class-mp-checkout.php:1398 +msgid "First-time customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1386 +msgid "Login" +msgstr "" + +#: includes/public/class-mp-checkout.php:1379 +msgid "E-Mail Address/Username" +msgstr "" + +#: includes/public/class-mp-checkout.php:1377 +msgid "Sign in to speed up the checkout process." +msgstr "" + +#: includes/public/class-mp-checkout.php:1376 +msgid "Have an account?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1297 +msgid "Shipping address different than billing?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1184 +msgid "There are no available gateways to process this payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1160 +msgid "Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:1123 +msgid "Oops! An error occurred while processing your payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1051 +msgid "Next Step »" +msgstr "" + +#: includes/public/class-mp-checkout.php:1045 +msgid "« Previous Step" +msgstr "" + +#: includes/public/class-mp-checkout.php:873 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:657 +msgid "error" +msgstr "" + +#: includes/public/class-mp-checkout.php:872 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:658 +msgid "errors" +msgstr "" + +#: includes/public/class-mp-checkout.php:871 +msgid "

    Oops! We found %d %s in the form below.

    Fields that have errors are highlighted in red below. Entering into a field will reveal the actual error that occurred.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:870 +msgid "Please enter a valid first and last name" +msgstr "" + +#: includes/public/class-mp-checkout.php:869 +msgid " Please enter a valid card security code" +msgstr "" + +#: includes/public/class-mp-checkout.php:868 +msgid "Please enter a valid card expiration" +msgstr "" + +#: includes/public/class-mp-checkout.php:773 +msgid "Javascript is required in order to checkout. Please enable Javascript in your browser and then refresh this page." +msgstr "" + +#: includes/public/class-mp-checkout.php:588 +msgid "An unknown error occurred. Please try again." +msgstr "" + +#: includes/public/class-mp-checkout.php:386 +msgid "Town/City" +msgstr "" + +#: includes/public/class-mp-checkout.php:380 +msgid "Apartment, suite, unit, building, floor, etc" +msgstr "" + +#: includes/public/class-mp-checkout.php:376 +msgid "Address Line 2" +msgstr "" + +#: includes/public/class-mp-checkout.php:363 +msgid "Address Line 1" +msgstr "" + +#: includes/common/class-mp-order.php:770 +#: includes/public/class-mp-checkout.php:354 +msgid "Company" +msgstr "" + +#: includes/public/class-mp-checkout.php:330 +msgid "Last" +msgstr "" + +#: includes/public/class-mp-checkout.php:321 +msgid "First" +msgstr "" + +#: includes/public/class-mp-checkout.php:284 +msgid "State/Province" +msgstr "" + +#: includes/public/class-mp-checkout.php:83 +msgid "Review Order/Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing/Shipping Address" +msgstr "" + +#: includes/public/class-mp-checkout.php:80 +msgid "Login/Register" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:530 +msgid "Marketplace" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:523 +msgid "Global Marketplace Pages" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +msgid "Store Network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +#: includes/multisite/class-mp-admin-multisite.php:494 +msgid "Store Network Settings" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:440 +msgid "Set theme access permissions for network stores. For a custom css theme, save your css file with the MarketPress Theme: NAME header in the /marketpress/ui/themes/ folder and it will appear in this list so you may select it." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:361 +msgid "Choose a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:336 +msgid "%d products get indexed" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:285 +msgid "Product Indexer" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:281 +msgid "Please hold on..." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:280 +msgid "Index Products" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:279 +msgid "%d products have been indexed in whole network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:182 +msgid "Enable Global Shopping Cart?" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:178 +msgid "Limit Global Widgets/Shortcodes To Main Blog?" +msgstr "" + +#: includes/common/template-functions.php:2802 +#: includes/multisite/template-functions.php:355 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:97 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:114 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:143 +msgid "Next" +msgstr "" + +#: includes/common/template-functions.php:2801 +#: includes/multisite/template-functions.php:354 +msgid "Prev" +msgstr "" + +#: includes/common/template-functions.php:2597 +msgid "Tagged in " +msgstr "" + +#: includes/common/template-functions.php:2196 +#: includes/common/template-functions.php:2202 +#: includes/common/template-functions.php:2214 +#: includes/common/template-functions.php:2217 +msgid "Oops! We couldn't locate any orders matching that order number. Please verify the order number and try again." +msgstr "" + +#: includes/common/template-functions.php:2138 +msgid "Look Up" +msgstr "" + +#: includes/common/template-functions.php:1423 +msgid "Please choose a shipping method" +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "If you have your order ID you can look it up using the form below." +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "Order Search" +msgstr "" + +#: includes/common/template-functions.php:910 +#: includes/public/class-mp-checkout.php:1440 +msgid "Cart" +msgstr "" + +#: includes/common/template-functions.php:895 +msgid "[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:887 +msgid "[mp_global_categories_list]" +msgstr "" + +#: includes/common/template-functions.php:880 +msgid "" +"Welcome to our market place!\n" +"\n" +"Check out our network of products:\n" +"\n" +"[mp_list_global_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_global_categories_list]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:879 +msgid "Global Store" +msgstr "" + +#: includes/common/template-functions.php:873 +msgid "" +"Welcome to our online store! Feel free to browse around:\n" +"\n" +"[mp_store_navigation]\n" +"\n" +"Check out our most popular products:\n" +"\n" +"[mp_popular_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_list_categories]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_tag_cloud]" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:127 +msgid "If cart weight is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:126 +msgid "Cart Weight" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:222 +msgid "Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:206 +msgid "Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:196 +msgid "Retail Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:195 +msgid "Online Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:193 +msgid "Rates Request Type" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:189 +msgid "Maximum Weight Per Package" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:195 +#: includes/common/shipping-modules/mp-usps.php:236 +msgid "Enter your standard box sizes as LengthxWidthxHeight (e.g. 12x8x6) For each box defined enter the maximum weight it can contain. Note: the shipping prices this plugin calculates are estimates. If they are consistently too low or too high, please check that the list of boxes above and the product weights are accurate and complete." +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:187 +msgid "Handling Charge Per Box Shipped" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:176 +#: includes/common/shipping-modules/mp-ups.php:181 +msgid "Offered Services" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:165 +msgid "Shipper Number" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:151 +msgid "User ID" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:144 +msgid "Developer Kit Access Key" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:140 +msgid "Use Sandbox Mode?" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:123 +msgid "In order to use UPS, you will need a UPS Developer Kit access key and the UPS user ID and password associated with the access key. Set these up for free here. If this information is missing or incorrect, an error will appear during the checkout process and the buyer will not be able to complete the transaction." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:112 +msgid "If cart total is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:111 +msgid "Cart Total" +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:95 +#: includes/common/shipping-modules/mp-weight-rate.php:111 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Don't worry about sorting as this will be done automatically upon saving." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:170 +msgid "Method Title (visible for clients)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:409 +#: includes/common/shipping-modules/mp-ups.php:216 +#: includes/common/shipping-modules/mp-usps.php:251 +msgid "Max Weight (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:402 +#: includes/common/shipping-modules/mp-ups.php:209 +#: includes/common/shipping-modules/mp-usps.php:247 +msgid "Size (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:387 +msgid "Enter your standard box sizes as LengthxWidthxHeight ( 12x8x6 ) For each box defined enter the maximum weight it can contain. Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:361 +#: includes/common/shipping-modules/mp-usps.php:229 +msgid "Handling Charge per International Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:353 +msgid "International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:339 +#: includes/common/shipping-modules/mp-usps.php:213 +msgid "Handling Charge per Domestic Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:331 +msgid "Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:321 +msgid "When checked the customer can chose Residential or Commercial delivery with Residential the default. Unchecked it's only Residential rates." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:320 +msgid "Allow Commercial Delivery?" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:315 +msgid "Fedex 10kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:314 +msgid "Fedex 25kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:313 +msgid "Fedex Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:312 +msgid "Fedex Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:311 +msgid "Fedex Pak" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:310 +msgid "Fedex Tube" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:306 +msgid "Default Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:294 +msgid "Dropoff Type" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:290 +msgid "Meter ID" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:134 +msgid "This is a residential address" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:283 +msgid "There was an error processing your card: \"%s\". Please check your credit card info and try again." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:121 +msgid "Wepay makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept cards directly on your site. You don't need a merchant account or gateway. WePay handles everything including storing cards. Credit cards go directly to WePay's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:385 +msgid "There was an error processing your card - \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:356 +msgid "%s Store Purchase - Order ID - %s, Email - %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:251 +msgid "Stripe makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept Visa, MasterCard, American Express, Discover, JCB, and Diners Club cards directly on your site. You don't need a merchant account or gateway. Stripe handles everything, including storing cards, subscriptions, and direct payouts to your bank account. Credit cards go directly to Stripe's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:192 +msgid "ZMW - Zambian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:191 +msgid "ZAR - South African Rand" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:190 +msgid "YER - Yemeni Rial" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:189 +msgid "XPF - Cfp Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:188 +msgid "XOF - West African Cfa Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:187 +msgid "XCD - East Caribbean Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:186 +msgid "XAF - Central African Cfa Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:185 +msgid "WST - Samoan Tala" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:184 +msgid "VUV - Vanuatu Vatu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:183 +msgid "VND - Vietnamese Đồng" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:182 +msgid "VEF - Venezuelan Bolívar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:181 +msgid "UZS - Uzbekistani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:180 +msgid "UYI - Uruguayan Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:178 +msgid "UGX - Ugandan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:177 +msgid "UAH - Ukrainian Hryvnia" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:176 +msgid "TZS - Tanzanian Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:175 +msgid "TWD - New Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:174 +msgid "TTD - Trinidad and Tobago Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:172 +msgid "TOP - Tongan Paʻanga" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:171 +msgid "TJS - Tajikistani Somoni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:169 +msgid "SZL - Swazi Lilangeni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:168 +msgid "SVC - Salvadoran Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:167 +msgid "STD - São Tomé and Príncipe Dobra" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:166 +msgid "SRD - Surinamese Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:165 +msgid "SOS - Somali Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:164 +msgid "SLL - Sierra Leonean Leone" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:163 +msgid "SHP - Saint Helenian Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:160 +msgid "SCR - Seychellois Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:159 +msgid "SBD - Solomon Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:157 +msgid "RWF - Rwandan Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:156 +msgid "RUB - Russian Ruble" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:155 +msgid "RSD - Serbian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:154 +msgid "RON - Romanian Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:153 +msgid "QAR - Qatari Riyal" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:152 +msgid "PYG - Paraguayan Guaraní*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:151 +msgid "PLN - Polish Złoty" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:150 +msgid "PKR - Pakistani Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:149 +msgid "PHP - Philippine Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:148 +msgid "PGK - Papua New Guinean Kina" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:147 +msgid "PEN - Peruvian Nuevo Sol*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:146 +msgid "PAB - Panamanian Balboa*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:144 +msgid "NPR - Nepalese Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:142 +msgid "NIO - Nicaraguan Córdoba*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:141 +msgid "NGN - Nigerian Naira" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:140 +msgid "NAD - Namibian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:139 +msgid "MZN - Mozambican Metical" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:137 +msgid "MXN - Mexican Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:136 +msgid "MWK - Malawian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:135 +msgid "MVR - Maldivian Rufiyaa" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:134 +msgid "MUR - Mauritian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:133 +msgid "MRO - Mauritanian Ouguiya" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:132 +msgid "MOP - Macanese Pataca" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:131 +msgid "MNT - Mongolian Tögrög" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:130 +msgid "MKD - Macedonian Denar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:129 +msgid "MGA - Malagasy Ariary" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:128 +msgid "MDL - Moldovan Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:126 +msgid "LVL - Latvian Lats" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:124 +msgid "LSL - Lesotho Loti" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:123 +msgid "LRD - Liberian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:122 +msgid "LKR - Sri Lankan Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:121 +msgid "LBP - Lebanese Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:120 +msgid "LAK - Lao Kip*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:119 +msgid "KZT - Kazakhstani Tenge" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:118 +msgid "KYD - Cayman Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:117 +msgid "KRW - South Korean Won" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:116 +msgid "KMF - Comorian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:115 +msgid "KHR - Cambodian Riel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:114 +msgid "KGS - Kyrgyzstani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:113 +msgid "KES - Kenyan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:111 +msgid "JMD - Jamaican Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:110 +msgid "ISK - Icelandic Króna" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:109 +msgid "INR - Indian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:108 +msgid "ILS - Israeli New Sheqel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:107 +msgid "IDR - Indonesian Rupiah" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:105 +msgid "HTG - Haitian Gourde" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:103 +msgid "HNL - Honduran Lempira*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:101 +msgid "GYD - Guyanese Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:100 +msgid "GTQ - Guatemalan Quetzal*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:99 +msgid "GNF - Guinean Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:98 +msgid "GMD - Gambian Dalasi" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:97 +msgid "GIP - Gibraltar Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:96 +msgid "GEL - Georgian Lari" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:94 +msgid "FKP - Falkland Islands Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:93 +msgid "FJD - Fijian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:91 +msgid "ETB - Ethiopian Birr" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:90 +msgid "EGP - Egyptian Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:89 +msgid "EEK - Estonian Kroon*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:88 +msgid "DZD - Algerian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:87 +msgid "DOP - Dominican Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:85 +msgid "DJF - Djiboutian Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:84 +msgid "CZK - Czech Koruna*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:83 +msgid "CVE - Cape Verdean Escudo*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:82 +msgid "CRC - Costa Rican Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:81 +msgid "COP - Colombian Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:80 +msgid "CNY - Chinese Renminbi Yuan" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:79 +msgid "CLP - Chilean Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:77 +msgid "CDF - Congolese Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:76 +msgid "CAD - Canadian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:75 +msgid "BZD - Belize Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:74 +msgid "BWP - Botswana Pula" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:73 +msgid "BSD - Bahamian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:72 +msgid "BRL - Brazilian Real*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:71 +msgid "BOB - Bolivian Boliviano*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:70 +msgid "BND - Brunei Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:69 +msgid "BMD - Bermudian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:68 +msgid "BIF - Burundian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:67 +msgid "BGN - Bulgarian Lev" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:66 +msgid "BDT - Bangladeshi Taka" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:65 +msgid "BBD - Barbadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:64 +msgid "BAM - Bosnia & Herzegovina Convertible Mark" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:63 +msgid "AZN - Azerbaijani Manat" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:62 +msgid "AWG - Aruban Florin" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:61 +msgid "AUD - Australian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:60 +msgid "ARS - Argentine Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:59 +msgid "AOA - Angolan Kwanza*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:58 +msgid "ANG - Netherlands Antillean Gulden" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:57 +msgid "AMD - Armenian Dram" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:56 +msgid "ALL - Albanian Lek" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:55 +msgid "AFN - Afghan Afghani*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:54 +msgid "AED - United Arab Emirates Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:345 +msgid "Skrill balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:327 +msgid "Skrill IPN message received." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:283 +msgid "Skrill" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:278 +msgid "Pending payment" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:144 +msgid "The secret word must match the word submitted in the \"Merchant Tools\" section of your Skrill account." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:134 +msgid "You must use your valid Skrill merchant email. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:133 +msgid "Skrill Email" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:123 +msgid "Resell your inventory via Skrill.com (Moneybookers)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:95 +msgid "ZAR - South-African Rand" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:93 +msgid "TWD - Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:92 +msgid "TRY - New Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:91 +msgid "TND - Tunisian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:90 +msgid "THB - Thailand Baht" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:89 +msgid "SKK - Slovakian Koruna" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:86 +#: includes/common/payment-gateways/stripe.php:158 +msgid "SAR - Saudi Riyal" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:85 +msgid "RSD - Serbian dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:83 +msgid "QAR - Qatari Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:81 +msgid "OMR - Omani Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:80 +msgid "NOK - Norwegian Krone " +msgstr "" + +#: includes/common/payment-gateways/skrill.php:78 +#: includes/common/payment-gateways/stripe.php:138 +msgid "MYR - Malaysian Ringgit" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:77 +#: includes/common/payment-gateways/stripe.php:127 +msgid "MAD - Moroccan Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:74 +msgid "KRW - South-Korean Won" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:72 +msgid "JOD - Jordanian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:70 +msgid "INR - Indian Rupee" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:63 +msgid "EEK - Estonian Kroon" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:56 +msgid "AED - Utd. Arab Emir. Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:52 +msgid "Turkish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:51 +msgid "Swedish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:50 +msgid "Spanish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:49 +msgid "Russian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:48 +msgid "Romainian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:47 +msgid "Polish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:46 +msgid "Italian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:45 +msgid "Greek" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:44 +msgid "German" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:43 +msgid "French" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:42 +msgid "Finnish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:41 +msgid "English" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:40 +msgid "Dutch" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:39 +msgid "Danish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:38 +msgid "Czech" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:37 +msgid "Chinese" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:201 +msgid "There was an error processing your card: %s. Please re-enter your credit card info and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:278 +msgid "
  • There was an error processing your card: \"%s\". Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:274 +msgid "
  • There was an error processing your card. Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:177 +#: includes/common/payment-gateways/stripe.php:279 +msgid "Publishable Key" +msgstr "" + +#: includes/common/payment-gateways/pin.php:163 +msgid "API Credentials?" +msgstr "" + +#: includes/common/payment-gateways/pin.php:147 +msgid "PIN makes it easy to start accepting credit card payments with Australia’s first all-in-one online payment system. Accept all major credit cards directly on your site. Your sales proceeds are deposited to any Australian bank account, no merchant account required." +msgstr "" + +#: includes/common/payment-gateways/pin.php:57 +#: includes/common/payment-gateways/stripe.php:179 +msgid "USD - United States Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:455 +msgid "Email Footer" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:445 +msgid "Email Header" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:416 +msgid "Partner" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:409 +msgid "Vendor" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:852 +#: includes/common/payment-gateways/paypal-express.php:1126 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences\t section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:749 +msgid "Page Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:744 +msgid "Header Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:739 +msgid "Header Border Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:734 +msgid "Header Image" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:680 +msgid "Locale" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:624 +#: includes/common/payment-gateways/paypal-express.php:658 +msgid "Merchant Email" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:645 +msgid "Paypal Express Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:603 +msgid "Paypal Express Network Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:861 +msgid "Application ID (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:854 +msgid "Signature (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:847 +msgid "API Password (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:839 +msgid "API Username (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:832 +msgid "Signature (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:825 +msgid "API Password (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:817 +msgid "API Username (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:799 +msgid "This message is displayed at the top of the gateway settings page to store admins. It's a good place to inform them of your fees or put any sales messages." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:787 +msgid "Please enter your PayPal email address or business ID you want to recieve fees at." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:786 +msgid "PayPal E-mail" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:772 +msgid "Fees to Collect (%)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:375 +#: includes/public/class-mp-checkout.php:341 +msgid "Email Address" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:299 +msgid "Sorry, your order was not completed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:126 +#: includes/common/payment-gateways/paypal-express.php:780 +msgid "You will be redirected to the PayPal site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:90 +#: includes/common/payment-gateways/skrill.php:94 +msgid "USD - U.S. Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:89 +msgid "TRY - Turkish lira" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:88 +#: includes/common/payment-gateways/stripe.php:170 +msgid "THB - Thai Baht" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:87 +msgid "TWD - Taiwan New Dollars" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:86 +#: includes/common/payment-gateways/pin.php:59 +#: includes/common/payment-gateways/skrill.php:88 +#: includes/common/payment-gateways/stripe.php:162 +msgid "SGD - Singapore Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:84 +msgid "RUB - Russian Rubles" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:82 +msgid "PHP - Philippine Pesos" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:81 +#: includes/common/payment-gateways/pin.php:58 +#: includes/common/payment-gateways/skrill.php:79 +#: includes/common/payment-gateways/stripe.php:145 +msgid "NZD - New Zealand Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:79 +msgid "MXN - Mexican Peso" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:78 +msgid "MYR - Malaysian Ringgits" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:77 +#: includes/common/payment-gateways/pin.php:64 +#: includes/common/payment-gateways/skrill.php:73 +#: includes/common/payment-gateways/stripe.php:112 +msgid "JPY - Japanese Yen" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:75 +#: includes/common/payment-gateways/pin.php:63 +#: includes/common/payment-gateways/skrill.php:66 +#: includes/common/payment-gateways/stripe.php:102 +msgid "HKD - Hong Kong Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:73 +msgid "GBP - Pound Sterling" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:68 +#: includes/common/payment-gateways/pin.php:62 +#: includes/common/payment-gateways/skrill.php:59 +msgid "CAD - Canadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:67 +msgid "BRL - Brazilian Real" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:66 +#: includes/common/payment-gateways/pin.php:56 +#: includes/common/payment-gateways/skrill.php:57 +msgid "AUD - Australian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:288 +msgid "There was an error processing your card: \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:163 +msgid "When running on a live site, Paymill recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:161 +#: includes/common/payment-gateways/pin.php:157 +#: includes/common/payment-gateways/simplify.php:103 +#: includes/common/payment-gateways/stripe.php:260 +#: includes/common/payment-gateways/wepay.php:153 +msgid "Force SSL?" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:151 +msgid "Accept Visa, Mastercard, Maestro UK, Discover and Solo cards directly on your site. You don't need a merchant account or gateway. Credit cards go directly to Paymill's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:131 +msgid "CVV2" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:72 +#: includes/common/payment-gateways/pin.php:61 +#: includes/common/payment-gateways/skrill.php:65 +#: includes/common/payment-gateways/stripe.php:95 +msgid "GBP - British Pound" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:71 +#: includes/common/payment-gateways/stripe.php:173 +msgid "TRY - Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:70 +#: includes/common/payment-gateways/paypal-chained-payments.php:85 +#: includes/common/payment-gateways/skrill.php:87 +#: includes/common/payment-gateways/stripe.php:161 +msgid "SEK - Swedish Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:69 +#: includes/common/payment-gateways/skrill.php:84 +msgid "RON - Romanian Leu New" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:68 +#: includes/common/payment-gateways/paypal-chained-payments.php:83 +#: includes/common/payment-gateways/skrill.php:82 +msgid "PLN - Polish Zloty" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:67 +#: includes/common/payment-gateways/paypal-chained-payments.php:80 +#: includes/common/payment-gateways/stripe.php:143 +msgid "NOK - Norwegian Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:66 +#: includes/common/payment-gateways/skrill.php:75 +#: includes/common/payment-gateways/stripe.php:125 +msgid "LTL - Lithuanian Litas" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:65 +#: includes/common/payment-gateways/paypal-chained-payments.php:69 +#: includes/common/payment-gateways/skrill.php:60 +#: includes/common/payment-gateways/stripe.php:78 +msgid "CHF - Swiss Franc" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:64 +#: includes/common/payment-gateways/skrill.php:76 +msgid "LVL - Latvian Lat" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:63 +#: includes/common/payment-gateways/paypal-chained-payments.php:74 +#: includes/common/payment-gateways/skrill.php:69 +msgid "ILS - Israeli Shekel" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:62 +#: includes/common/payment-gateways/skrill.php:71 +msgid "ISK - Iceland Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:61 +#: includes/common/payment-gateways/paypal-chained-payments.php:76 +#: includes/common/payment-gateways/skrill.php:68 +#: includes/common/payment-gateways/stripe.php:106 +msgid "HUF - Hungarian Forint" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:60 +#: includes/common/payment-gateways/paypal-chained-payments.php:71 +#: includes/common/payment-gateways/skrill.php:62 +#: includes/common/payment-gateways/stripe.php:86 +msgid "DKK - Danish Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:59 +#: includes/common/payment-gateways/skrill.php:67 +#: includes/common/payment-gateways/stripe.php:104 +msgid "HRK - Croatian Kuna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:58 +#: includes/common/payment-gateways/paypal-chained-payments.php:70 +#: includes/common/payment-gateways/skrill.php:61 +msgid "CZK - Czech Koruna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:57 +#: includes/common/payment-gateways/skrill.php:58 +msgid "BGN - Bulgarian Leva" +msgstr "" + +#: includes/common/payment-gateways/payflow/class-mp-gateway-worker-payflow.php:123 +msgid "There was an error connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:344 +msgid "This setting will log all PayFast communication to the \"payfast.log\" file." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:342 +msgid "Log Debugging Info?" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:335 +msgid "DO NOT INPUT A VALUE UNLESS YOU HAVE SET ONE IN THE SETTINGS SECTION OF YOUR PAYFAST SETTINGS." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:333 +msgid "PayFast Passphrase" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:323 +msgid "You can find your credentials on your integration page." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:321 +msgid "PayFast Merchant Credentials" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:311 +msgid "PayFast Mode" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:308 +msgid "PayFast is a payments processing service for South Africa. We make it safe for buyers to send money and easy for sellers to receive money. More Info »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:306 +msgid "PayFast Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:285 +msgid "Your payment via PayFast for this order totaling %s is complete. The transaction number is %s." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:278 +msgid "Your payment via PayFast for this order totaling %s is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:124 +msgid "Your PayFast transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:82 +#: includes/common/payment-gateways/payfast.php:83 +msgid "PayFast" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:157 +msgid "API error: - \"%s\"" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:198 +msgid "The payment request is under process" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:140 +msgid "Order: #" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:116 +msgid "You will be redirected to the Mollie site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:73 +msgid "%sMollie%s provides a fully PCI Compliant and secure way to collect payments via iDeal, Credit Card, Bancontact / Mister Cash, SOFORT Banking, Overbooking, Bitcoin, PayPal, paysafecard and AcceptEmail." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:53 +#: includes/common/payment-gateways/mollie.php:54 +#: includes/common/payment-gateways/mollie.php:195 +#: includes/common/payment-gateways/mollie.php:245 +msgid "Mollie" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:50 +#: includes/common/payment-gateways/paymill.php:56 +#: includes/common/payment-gateways/paypal-chained-payments.php:72 +#: includes/common/payment-gateways/pin.php:60 +#: includes/common/payment-gateways/skrill.php:64 +#: includes/common/payment-gateways/stripe.php:92 +msgid "EUR - Euro" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:306 +msgid "Access Key" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:300 +msgid "You must login to the Mijireh.com dashboard to obtain the Access Key." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:299 +msgid "Credentials" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:289 +msgid "Mijireh Checkout provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:269 +msgid "Mijireh Error: " +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:89 +msgid "You will be redirected to the Mijireh.com site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:87 +msgid "Your Mijireh transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:42 +#: includes/common/payment-gateways/mijireh.php:43 +#: includes/common/payment-gateways/mijireh.php:324 +msgid "Mijireh" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:145 +msgid "These are the manual payment instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:189 +msgid "This is the email text to send to those who have made free order checkouts. You should include your free order instructions / information here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:183 +msgid "This is the free order information to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:182 +msgid "Confirmation User Information" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:177 +msgid "This is the information to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:163 +msgid "If enabled, all free orders will be automatically marked as paid." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:159 +msgid "Payment Status" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:149 +msgid "This gateway is automatically activated if order totalling 0 and it can't be disabled" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:35 +#: includes/common/payment-gateways/free_orders.php:36 +#: includes/common/payment-gateways/free_orders.php:89 +msgid "Free Order" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:34 +#: includes/common/payment-gateways/free_orders.php:197 +msgid "Free Orders" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:515 +msgid "Sandbox API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:266 +#: includes/common/payment-gateways/eway31.php:542 +msgid "eWay Rapid 3.1 Payments (beta)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:403 +msgid "Hosted Payment Page Language" +msgstr "" + +#: includes/common/payment-gateways/eway.php:373 +msgid "Note when testing in sandbox mode it will use the default eWay test API credentials. Also, please note that cart total needs to be a whole number (e.g. 10.00) in order to generate a successful transaction, otherwise the transaction will fail." +msgstr "" + +#: includes/common/payment-gateways/eway.php:267 +msgid "You will be redirected to https://www.eway.com.au to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:380 +msgid "You have chosen to checkout using %s. Please confirm your order details and click \"Submit Order\" when finished." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:272 +#: includes/common/payment-gateways/paymill.php:131 +#: includes/common/payment-gateways/stripe.php:231 +msgid "Security Code " +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Enter in MM/YYYY or MM/YY format" +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Expiration" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:321 +msgid "Delim Data" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:307 +#: includes/common/payment-gateways/paypal-payflow.php:456 +msgid "This text will appear as the footer of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:287 +#: includes/common/payment-gateways/paypal-payflow.php:440 +msgid "Email Customer (on success)" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:278 +msgid "Authorize.net default is \",\". Otherwise, get this from your credit card processor. If the transactions are not going through, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:277 +msgid "Delimeter Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:193 +msgid "Held For Review" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:310 +#: includes/common/payment-gateways/payfast.php:314 +msgid "Test" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:300 +#: includes/common/payment-gateways/pin.php:170 +#: includes/common/payment-gateways/stripe.php:272 +msgid "Secret Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:283 +msgid "Select Your Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:97 +msgid "Your payment will be processed by the iDEAL network" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:208 +msgid "These are the CubePoints to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:203 +msgid "These are the CubePoints instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:266 +msgid "If enabled, all API calls will be made to https://test.bitpay.com." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:263 +msgid "Use Test Mode?" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:259 +msgid "If checked, response fron bitpay will be stored in log file, keep it disabled unless required." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:256 +msgid "Enable Debug Log" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:249 +msgid "Full Notifications" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:231 +#: includes/common/payment-gateways/eway31.php:499 +#: includes/common/payment-gateways/eway31.php:526 +#: includes/common/payment-gateways/mollie.php:83 +#: includes/common/shipping-modules/mp-fedex.php:269 +msgid "API Key" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:222 +msgid "You can now accept a payment from any country on Earth, with no risk of fraud. To use Bitpay, you need to signup on Bitpay. \\n After completing the signup process, you can get api keys at Bitpay API key. You can read more about Bitpay at Bitpay API. \\n Bitpay requires SSL(https) for payment notifications to work." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:61 +msgid "You will be redirected to bitpay.com, for bitcoin payment. It is completely safe." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:346 +msgid "You must login to the 2Checkout vendor dashboard to obtain the seller ID and secret word. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:345 +#: includes/common/payment-gateways/authorizenet-aim.php:239 +#: includes/common/payment-gateways/paymill.php:168 +#: includes/common/payment-gateways/paypal-express.php:704 +#: includes/common/payment-gateways/simplify.php:80 +#: includes/common/payment-gateways/stripe.php:265 +#: includes/common/payment-gateways/wepay.php:158 +msgid "API Credentials" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:325 +#: includes/common/payment-gateways/_bitpay.php:220 +#: includes/common/payment-gateways/_cubepoints.php:185 +#: includes/common/payment-gateways/_ideal.php:268 +#: includes/common/payment-gateways/_payway.php:255 +#: includes/common/payment-gateways/authorizenet-aim.php:219 +#: includes/common/payment-gateways/eway.php:352 +#: includes/common/payment-gateways/eway31.php:460 +#: includes/common/payment-gateways/free_orders.php:147 +#: includes/common/payment-gateways/manual-payments.php:126 +#: includes/common/payment-gateways/mijireh.php:287 +#: includes/common/payment-gateways/mollie.php:71 +#: includes/common/payment-gateways/paymill.php:149 +#: includes/common/payment-gateways/paypal-chained-payments.php:344 +#: includes/common/payment-gateways/paypal-payflow.php:376 +#: includes/common/payment-gateways/pin.php:145 +#: includes/common/payment-gateways/simplify.php:69 +#: includes/common/payment-gateways/skrill.php:121 +#: includes/common/payment-gateways/stripe.php:249 +#: includes/common/payment-gateways/wepay.php:119 +#: includes/common/shipping-modules/mp-fedex.php:243 +#: includes/common/shipping-modules/mp-flat-rate.php:63 +#: includes/common/shipping-modules/mp-pickup.php:140 +#: includes/common/shipping-modules/mp-table-rate.php:94 +#: includes/common/shipping-modules/mp-ups.php:122 +#: includes/common/shipping-modules/mp-usps.php:167 +#: includes/common/shipping-modules/mp-weight-rate.php:110 +msgid "%s Settings" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:136 +msgid "You will be redirected to the 2Checkout site to finalize your payment." +msgstr "" + +#: includes/common/helpers.php:169 includes/public/class-mp-checkout.php:1277 +msgid "Billing" +msgstr "" + +#: includes/common/helpers.php:144 +msgid "FREE" +msgstr "" + +#: includes/common/helpers.php:134 +msgid "Coupons:" +msgstr "" + +#: includes/common/helpers.php:95 +msgid "Qty" +msgstr "" + +#: includes/common/helpers.php:94 +msgid "Sku" +msgstr "" + +#: includes/common/data.php:59 +msgid "Zip Code" +msgstr "" + +#: includes/common/class-mp-taxes.php:336 +msgid "Standard Table" +msgstr "" + +#: includes/common/class-mp-product.php:2698 +msgid "Tweet" +msgstr "" + +#: includes/common/class-mp-product.php:2321 +msgid "Notification Preferences: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2320 +msgid "Edit Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2318 +msgid "Link: %s

    " +msgstr "" + +#: includes/common/class-mp-product.php:2317 +msgid "Current Inventory: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2316 +msgid "Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2314 +msgid "This message is being sent to notify you of low stock of a product in your online store according to your preferences.

    " +msgstr "" + +#: includes/common/class-mp-product.php:1817 +msgid "" +msgstr "" + +#: includes/common/class-mp-product.php:1427 +#: includes/common/class-mp-product.php:1430 +msgid "(tax incl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1422 +#: includes/common/class-mp-product.php:1425 +msgid "(tax excl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1300 +#: includes/common/class-mp-product.php:1315 +msgid "%s each" +msgstr "" + +#: includes/common/class-mp-product.php:988 +msgid "Choose Options" +msgstr "" + +#: includes/common/class-mp-product.php:526 +msgid "Choose a %s" +msgstr "" + +#: includes/common/class-mp-product.php:284 +#: includes/common/class-mp-product.php:292 +#: includes/common/class-mp-product.php:615 +msgid "We're sorry, we only have %d of this item in stock right now." +msgstr "" + +#: includes/common/class-mp-order.php:1456 +msgid "Shipped: Track Shipment" +msgstr "" + +#: includes/common/class-mp-order.php:1049 +msgid "Order Received" +msgstr "" + +#: includes/common/class-mp-order.php:1014 +msgid "In Process" +msgstr "" + +#: includes/common/class-mp-order.php:969 +msgid "Order #" +msgstr "" + +#: includes/common/class-mp-order.php:866 +msgid "Copy billing address to shipping address" +msgstr "" + +#: includes/common/class-mp-order.php:822 +#: includes/public/class-mp-checkout.php:1314 +msgid "Special Instructions" +msgstr "" + +#: includes/common/class-mp-order.php:817 +#: includes/common/payment-gateways/stripe.php:335 +msgid "Email" +msgstr "" + +#: includes/common/class-mp-order.php:813 +#: includes/common/payment-gateways/stripe.php:341 +#: includes/public/class-mp-checkout.php:416 +msgid "Phone" +msgstr "" + +#: includes/common/class-mp-order.php:791 +#: includes/common/payment-gateways/stripe.php:337 +msgid "State" +msgstr "" + +#: includes/common/class-mp-order.php:776 +msgid "Address 1" +msgstr "" + +#: includes/common/class-mp-order.php:766 +msgid "Last Name" +msgstr "" + +#: includes/common/class-mp-order.php:762 +msgid "First Name" +msgstr "" + +#: includes/common/class-mp-installer.php:677 +msgid "MarketPress requires a database update to continue working correctly. Go to update page" +msgstr "" + +#: includes/common/class-mp-installer.php:657 +msgid "MarketPress performed a quick automatic update successfully!" +msgstr "" + +#: includes/common/class-mp-installer.php:653 +msgid "Perform Update" +msgstr "" + +#: includes/common/class-mp-installer.php:647 +msgid "Please update each subsite in your WordPress network where you have older version of the MarketPress plugin." +msgstr "" + +#: includes/common/class-mp-installer.php:641 +msgid "Depending on the amount of products you have, this update could take quite some time. Please keep this window open while the update completes. If you have products with multiple variations, the progress bar may move slower, please don't exit the window." +msgstr "" + +#: includes/common/class-mp-installer.php:632 +msgid "Product Metadata" +msgstr "" + +#: includes/common/class-mp-installer.php:601 +msgid "MarketPress requires a database update to continue working correctly.
    Below you will find a list of items that require your attention." +msgstr "" + +#: includes/common/class-mp-installer.php:600 +msgid "Update MarketPress Data" +msgstr "" + +#: includes/common/class-mp-installer.php:530 +msgid "Update Data" +msgstr "" + +#: includes/common/class-mp-installer.php:67 +msgid "Complete!" +msgstr "" + +#: includes/common/class-mp-installer.php:66 +msgid "Upgrading Database...Please Wait..." +msgstr "" + +#: includes/common/class-mp-installer.php:64 +msgid "An error occurred while updating. Please refresh this page and try again." +msgstr "" + +#: includes/common/class-mp-cart.php:2447 +msgid "Some items in your cart have fallen below the quantity you currently have in your cart. We have adjusted the quantity in your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:2443 +msgid "Some items in your cart are no longer available. We have removed these items from your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:1566 +msgid "item" +msgstr "" + +#: includes/common/class-mp-cart.php:1563 +#: includes/common/class-mp-cart.php:1568 +msgid "items" +msgstr "" + +#: includes/common/class-mp-cart.php:1363 +msgid "Items/Products added to Cart will show here." +msgstr "" + +#: includes/common/class-mp-cart.php:1362 +msgid "Your shopping cart is empty." +msgstr "Din handlekurv er tom" + +#: includes/common/class-mp-cart.php:1357 +msgid "View Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1241 +#: includes/common/class-mp-cart.php:1298 +#: includes/public/class-mp-short-codes.php:159 +msgid "Adding..." +msgstr "" + +#: includes/common/class-mp-cart.php:1033 +msgid "Continue Shopping?" +msgstr "Fortsett å handle" + +#: includes/common/class-mp-cart.php:961 +msgid "Secure Checkout
    Shopping is always safe and secure." +msgstr "Trygg betaling
    Handling er alltid trygt og sikkert hos oss." + +#: includes/common/class-mp-cart.php:959 +msgid "You are about to submit your order!
    Please review your order details before continuing. You will be charged immediately upon clicking \"Submit Order\"." +msgstr "" + +#: includes/common/class-mp-cart.php:956 +msgid "Continue »" +msgstr "" + +#: includes/common/class-mp-cart.php:955 +msgid "Submit Order" +msgstr "" + +#: includes/common/class-mp-cart.php:818 +msgid "There are no items in your cart - go add some !" +msgstr "" + +#: includes/common/class-mp-cart.php:816 +msgid "The cart is disabled." +msgstr "" + +#: includes/common/class-mp-cart.php:735 +msgid "Estimated %s" +msgstr "" + +#: includes/common/class-mp-cart.php:717 +msgid "Estimated Shipping" +msgstr "" + +#: includes/common/class-mp-cart.php:697 +msgid "Product Total" +msgstr "" + +#: includes/common/class-mp-cart.php:670 includes/common/class-mp-cart.php:672 +msgid "Estimated Total (%s, %s)" +msgstr "" + +#: includes/common/class-mp-cart.php:668 +msgid "Estimated Total (%s)" +msgstr "" + +#: includes/common/class-mp-cart.php:666 includes/common/class-mp-cart.php:752 +msgid "Estimated Total" +msgstr "" + +#: includes/admin/widgets/product-list.php:247 +msgid "Show Thumbnail Placeholder image (if image is not set)" +msgstr "" + +#: includes/admin/widgets/cart.php:73 +msgid "Display product price" +msgstr "" + +#: includes/admin/widgets/cart.php:71 +msgid "Display product quantity" +msgstr "" + +#: includes/admin/widgets/cart.php:69 +msgid "Display product image" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:93 +msgid "General Shipping Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:773 +msgid "If you are having conflicts with the lightbox library from your theme or another plugin you should uncheck this." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:772 +msgid "Use Built-In Lightbox for Images?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:762 +msgid "Disable Large Image Display?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:688 +msgid "Show Product Image?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:682 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:684 +msgid "Show Tags List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:676 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:678 +msgid "Show Categories List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:671 +msgid "If enabled, description excerpt will be added above Add to cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:669 +msgid "Show Excerpt?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:665 +msgid "If enabled, users will be able to choose how many of the product they want to purchase before adding to their cart. If not checked, quantity could be change later on the cart page." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:663 +msgid "Show Quantity Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:649 +msgid "Settings related to the display of individual product pages." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:648 +msgid "Product Page Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:605 +msgid "Related Products Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:573 +msgid "Show Related Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:568 +msgid "Related Product Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:549 +msgid "Order Status Entries Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:510 +msgid "Sort Products By" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:497 +msgid "Products Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:492 +msgid "Paginate Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:478 +msgid "Excerpts Length" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:473 +msgid "Show Excerpts?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:450 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:746 +msgid "Image Alignment" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:412 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:708 +msgid "Custom Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:401 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:697 +msgid "Large - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:400 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:696 +msgid "Medium - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:399 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:695 +msgid "Thumbnail - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:397 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:693 +msgid "Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:386 +msgid "Select default placeholder image thumbnail when product image is not available (if empty, plugin's built-in image will be used)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:380 +msgid "Show default product placeholder thumbnail when product image is not available?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:374 +msgid "Show Product Thumbnail?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:369 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:658 +msgid "Redirect to cart page for immediate checkout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:368 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:657 +msgid "Stay on current product page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:366 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:655 +msgid "MarketPress supports two \"flows\" for adding products to the shopping cart. After adding a product to their cart, two things can happen:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:365 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:654 +msgid "Add To Cart Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:355 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:628 +msgid "Four" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:354 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:627 +msgid "Three" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:353 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:626 +msgid "Two" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:625 +msgid "One" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:349 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:622 +msgid "Set the number of products that show up in a grid row to best fit your theme" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:348 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:621 +msgid "How many products per row?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:342 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:609 +msgid "Display as grid" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:341 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:608 +msgid "Display as list" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:339 +msgid "Product Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:334 +msgid "Settings related to the display of product lists/grids." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:333 +msgid "Product List/Grid Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:314 +msgid "Show Twitter Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:309 +msgid "Twitter" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:303 +msgid "Show Share Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:297 +msgid "Recommend" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:296 +msgid "Like" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:294 +msgid "Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:283 +msgid "Show Facebook Like Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:278 +msgid "Facebook" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:257 +msgid "Show \"Pin It\" Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:252 +msgid "Pinterest" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:246 +msgid "Social Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:193 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:202 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:211 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:220 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:229 +#: includes/multisite/class-mp-admin-multisite.php:532 +#: includes/multisite/class-mp-admin-multisite.php:541 +#: includes/multisite/class-mp-admin-multisite.php:550 +msgid "Choose a Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:191 +msgid "This page will be used as the root for your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:168 +#: includes/multisite/class-mp-admin-multisite.php:586 +msgid "Create Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "uncropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "cropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:87 +#: includes/multisite/class-mp-admin-multisite.php:121 +#: includes/multisite/class-mp-admin-multisite.php:620 +msgid "An error occurred while creating the store page. Please try again." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:66 +msgid "Choose the gateway(s) that you would like to be available for checkout." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:65 +msgid "Enabled Gateways" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:78 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:146 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:179 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:213 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:274 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:307 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:341 +msgid "Text" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:71 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:139 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:172 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:206 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:267 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:300 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:334 +msgid "Subject" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:52 +msgid "Notification Email" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:510 +msgid "Enabling this option will display label `excl. tax` or `incl. tax` after price" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:509 +msgid "Display tax label?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:504 +msgid "Enabling this option will show Price + Tax, eg. if your price is 100 and your tax 20, your price will be 120" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:416 +#: includes/multisite/class-mp-admin-multisite.php:234 +msgid "Price Format" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:366 +msgid "Enabling this field will display a textbox on the shipping checkout page for users to enter special instructions for their order. Useful for product personalization, etc." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:365 +msgid "Show Special Instructions Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:360 +msgid "Universal" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:359 +msgid "Old" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1167 +#: includes/admin/store-settings/class-mp-store-settings-general.php:358 +msgid "New" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:353 +msgid "If you already use Google Analytics for your website, you can track detailed ecommerce information by enabling this setting. Choose whether you are using the new asynchronous or old tracking code. Before Google Analytics can report ecommerce activity for your website, you must enable ecommerce tracking on the profile settings page for your website. Also keep in mind that some gateways do not reliably show the receipt page, so tracking may not be accurate in those cases. It is recommended to use the PayPal gateway for the most accurate data. More information »" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:347 +msgid "Do you want to display the product price on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:346 +msgid "Show product price on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:340 +msgid "Do you want to display the product quantity on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:339 +msgid "Show product quantity on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:333 +msgid "Do you want to display the product image on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:332 +msgid "Show product image on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:327 +msgid "This option hide floating Mini Cart in top right corner." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:326 +msgid "Disable Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:316 +msgid "If unchecked your Orders admin page will be hidden" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:315 +msgid "Show admin Orders page?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:309 +msgid "Disable Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:303 +msgid "Force Login?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:297 +msgid "Hide Out of Stock Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:555 +msgid "This will prevent multiples of the same downloadable product form being added to the cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:554 +msgid "Limit Digital Products Per-order?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:268 +msgid "If you're having issues downloading large files and have worked with your hosting provider to increase your memory limits, try enabling this - just keep in mind, it's not as secure!" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:267 +msgid "Use Alternative Download Method?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:252 +msgid "Download Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:230 +msgid "Change product post type" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:51 +msgid "%s Capabilities" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-addons.php:47 +msgid "Store Settings: Add Ons: %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:254 +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:56 +msgid "Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Edit Product Attribute %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:246 +msgid "Exporters" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:238 +msgid "Short Codes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:207 +msgid "An appropriate message for key \"%s\" could not be found." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:204 +msgid "Product attribute updated successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:203 +msgid "Product attribute added successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +msgid "Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +#: includes/admin/store-settings/class-mp-store-settings-addons.php:121 +msgid "Store Settings: Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "Store Settings: Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:118 +msgid "Store Settings: Product Tags" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:117 +msgid "Store Settings: Product Categories" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Store Settings: Product Attributes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +msgid "Store Settings: Payments" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:114 +msgid "Store Settings: Shipping" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +#: includes/admin/class-mp-store-settings-admin.php:226 +msgid "Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +msgid "Store Settings: Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:112 +msgid "Store Settings: Presentation" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:111 +msgid "Store Settings: General" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1489 +msgid "Select a Product" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1447 +msgid "Reset to Defaults" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1446 +msgid "Insert Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1202 +#: includes/admin/class-mp-shortcode-builder.php:1227 +#: includes/admin/class-mp-shortcode-builder.php:1252 +msgid "The text to show in the link." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1196 +#: includes/admin/class-mp-shortcode-builder.php:1221 +#: includes/admin/class-mp-shortcode-builder.php:1246 +msgid "Whether to return a clickable link or url." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1177 +msgid "Whether to display the cart only on store pages or not." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1171 +msgid "Whether to show or hide the product price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1165 +msgid "Whether to show or hide the product quantity." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1159 +msgid "Whether to show or hide the product image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1153 +msgid "The text displayed before the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1147 +msgid "The title of the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1058 +#: includes/admin/class-mp-shortcode-builder.php:1121 +msgid "A label to prepend to the price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1032 +#: includes/admin/class-mp-shortcode-builder.php:1127 +msgid "What context for display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1004 +msgid "Set the alignment of the image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:998 +msgid "Set a custom pixel width/height. If omitted defaults to the size set by \"context\"." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:993 +msgid "Widget" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:988 +msgid "What context for preset size options." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:982 +#: includes/admin/class-mp-shortcode-builder.php:1026 +#: includes/admin/class-mp-shortcode-builder.php:1052 +#: includes/admin/class-mp-shortcode-builder.php:1077 +#: includes/admin/class-mp-shortcode-builder.php:1096 +#: includes/admin/class-mp-shortcode-builder.php:1115 +msgid "The ID of the product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:963 +msgid "Whether to display the product meta (e.g. price, buy button)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:738 +#: includes/admin/class-mp-shortcode-builder.php:905 +#: includes/admin/class-mp-shortcode-builder.php:958 +#: includes/admin/class-mp-shortcode-builder.php:992 +#: includes/admin/class-mp-shortcode-builder.php:1035 +#: includes/admin/class-mp-shortcode-builder.php:1130 +#: includes/admin/class-mp-shortcode-builder.php:1349 +msgid "List" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:957 +#: includes/admin/class-mp-shortcode-builder.php:991 +#: includes/admin/class-mp-shortcode-builder.php:1034 +#: includes/admin/class-mp-shortcode-builder.php:1129 +msgid "Single" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:953 +msgid "Whether and what context of image size to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:948 +msgid "Full" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:943 +msgid "Whether and what type of content to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:937 +msgid "Whether to display the product title." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:931 +msgid "The ID of the product to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:747 +#: includes/admin/class-mp-shortcode-builder.php:914 +msgid "Hide" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:746 +#: includes/admin/class-mp-shortcode-builder.php:913 +msgid "Show" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:744 +#: includes/admin/class-mp-shortcode-builder.php:911 +msgid "Whether or not to show the product filters." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:724 +#: includes/admin/class-mp-shortcode-builder.php:891 +#: includes/admin/class-mp-shortcode-builder.php:1335 +msgid "Limits list to a specific product tag." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:713 +#: includes/admin/class-mp-shortcode-builder.php:880 +#: includes/admin/class-mp-shortcode-builder.php:1324 +msgid "Limits list to a specific product category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:706 +#: includes/admin/class-mp-shortcode-builder.php:873 +#: includes/admin/class-mp-shortcode-builder.php:1317 +msgid "Direction to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:684 +#: includes/admin/class-mp-shortcode-builder.php:851 +#: includes/admin/class-mp-shortcode-builder.php:1295 +msgid "What field to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:678 +#: includes/admin/class-mp-shortcode-builder.php:845 +#: includes/admin/class-mp-shortcode-builder.php:1283 +msgid "How many products to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:672 +#: includes/admin/class-mp-shortcode-builder.php:839 +#: includes/admin/class-mp-shortcode-builder.php:1277 +msgid "The page number to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:666 +#: includes/admin/class-mp-shortcode-builder.php:833 +#: includes/admin/class-mp-shortcode-builder.php:1271 +msgid "Whether to paginate the product list. This is useful to only show a subset." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:808 +msgid "How many related items to show." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:790 +msgid "How to relate the products" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:784 +msgid "The product to show related items for." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:765 +msgid "The maximum number of products to display" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:647 +msgid "Comma separated list of tags (term_id) to include. For example, include=5,27 means tags that have the term_id 5 or 27 will be the only tags displayed. Defaults to include everything." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:641 +msgid "Comma separated list of tags (term_id) to exclude. For example, exclude=5,27 means tags that have the term_id 5 or 27 will NOT be displayed. Defaults to exclude nothing." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:633 +#: includes/admin/class-mp-shortcode-builder.php:1420 +msgid "Sort order." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:629 +#: includes/admin/class-mp-shortcode-builder.php:1416 +msgid "Count" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:626 +#: includes/admin/class-mp-shortcode-builder.php:1413 +msgid "Order of the tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:620 +msgid "The text/space between tags)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:616 +msgid "UL with a class of \"wp-tag-cloud\"" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:615 +msgid "separated by whitespace defined by \"separator\" parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:613 +msgid "Format of the cloud display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:607 +msgid "The number of actual tags to display in the cloud. (Use \"0\" to display all tags.)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:601 +msgid "Unit of measure as pertains to the smallest and largest values. This can be any CSS length value, e.g. pt, px, em, %." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:595 +msgid "The text size of the tag with the largest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:589 +msgid "The text size of the tag with the smallest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:570 +msgid "The \"tabindex\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:564 +msgid "The \"name\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:558 +msgid "The \"id\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:552 +msgid "Which category ID is selected." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:540 +msgid "The max depth. This is ignored unless hierarchical is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:536 +#: includes/multisite/template-functions.php:816 +msgid "No Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:414 +#: includes/admin/class-mp-shortcode-builder.php:546 +msgid "Calculates link or post counts by including items from child categories. If show_counts and hierarchical are true this is automatically set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:409 +msgid "Value of n (some number) specifies the depth (or level) to descend in displaying Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:408 +msgid "Show only top level Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:407 +msgid "All Categories displayed in flat (no indent) form (overrides hierarchical)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:406 +msgid "All Categories and child Categories (Default)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:402 +msgid "This parameter controls how many levels in the hierarchy of Categories are to be included in the list of Categories. NOTE: The \"hierarchical\" argument, which is disabled by default, will override the depth argument, unless it is true. When the argument is false, it will display all of the categories. When it is enabled it will use the value in the \"depth\" argument." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:396 +#: includes/admin/class-mp-shortcode-builder.php:1394 +msgid "Sets the number of Categories to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:390 +#: includes/admin/class-mp-shortcode-builder.php:534 +msgid "Set the text to show when no categories are listed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:384 +msgid "Set the title and style of the outer list item. If present but empty, the outer list item will not be displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:378 +#: includes/admin/class-mp-shortcode-builder.php:528 +msgid "Display sub-categories as inner list items (below the parent list item) or inline." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:368 +#: includes/admin/class-mp-shortcode-builder.php:511 +msgid "Exclude category-tree from the results. The parameter include must be empty. If the hierarchical parameter is true, then use exclude instead of exclude_tree." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:354 +msgid "Only include these categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:340 +#: includes/admin/class-mp-shortcode-builder.php:356 +#: includes/admin/class-mp-shortcode-builder.php:370 +#: includes/admin/class-mp-shortcode-builder.php:496 +#: includes/admin/class-mp-shortcode-builder.php:513 +msgid "Select Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:338 +#: includes/admin/class-mp-shortcode-builder.php:494 +msgid "Exclude one or more categories from the results. The parameter include must be empty." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:332 +msgid "Set a URI for an image (usually an rss feed icon) to act as a link to each categories' rss-2 feed. This parameter overrides the feed parameter. There is no default for this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:320 +msgid "Display a link to each category's rss-2 feed and set the link text to display. The default is no text and no feed displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:313 +#: includes/admin/class-mp-shortcode-builder.php:487 +msgid "Any" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:307 +#: includes/admin/class-mp-shortcode-builder.php:481 +msgid "Only display categories that are children of the category identified by this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:301 +msgid "Sets whether a category's description is inserted into the title attribute of the links created (i.e. <a title=\"<em>Category Description</em>\" href=\"...)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:295 +#: includes/admin/class-mp-shortcode-builder.php:475 +msgid "Toggles the display of categories with no posts." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:289 +#: includes/admin/class-mp-shortcode-builder.php:469 +#: includes/admin/class-mp-shortcode-builder.php:1388 +msgid "Toggles the display of the current count of posts in each category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:279 +msgid "Style to display the categories list in. A value of list displays the categories as list items while none generates no special display method (the list items are separated by
    tags)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:269 +#: includes/admin/class-mp-shortcode-builder.php:449 +#: includes/admin/class-mp-shortcode-builder.php:1378 +msgid "Sort order for categories (either ascending or descending)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:259 +#: includes/admin/class-mp-shortcode-builder.php:439 +#: includes/admin/class-mp-shortcode-builder.php:1368 +msgid "Sort categories alphabetically, by unique Category ID, or by the count of posts in that Category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:253 +#: includes/admin/class-mp-shortcode-builder.php:433 +msgid "If a value is entered, causes the display of a link to all categories if the style is set to list." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:219 +msgid "Select an Action" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:217 +msgid "What would you like to do?" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:216 +#: includes/admin/class-mp-shortcode-builder.php:1522 +msgid "Add E-Commerce Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:197 +msgid "Display a list of links to your store pages." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:196 +msgid "Display a link or url to the order status page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:195 +msgid "Display a link or url to the current products list page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:194 +msgid "Display a link or url to the current store page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:193 +msgid "Display a link or url to the current shopping cart page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:192 +msgid "Display the cart widget." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:191 +msgid "Display the full product meta box with price and buy now/add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:190 +msgid "Display the product stock." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:189 +msgid "Display the product SKU number(s)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:188 +msgid "Display the product price (and sale price)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:187 +msgid "Display the buy or add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:186 +msgid "Display the featured image of a given product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:185 +msgid "Display a single product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:184 +msgid "Display a list of products according to preference." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:183 +msgid "Display products related to the one being viewed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:182 +msgid "Display a list of popular products ordered by sales." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:180 +msgid "Display an HTML dropdown of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:179 +msgid "Display an HTML list of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:178 +msgid "Display a cloud or list of your product tags." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:655 +msgid "Setup your payment gateway" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:643 +#: includes/admin/class-mp-setup-wizard.php:649 +msgid "Other Gateways" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:617 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:150 +msgid "Select which calculated shipping methods the customer will be able to choose from." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:601 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:134 +#: includes/public/class-mp-checkout.php:82 +msgid "Shipping Method" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:568 +msgid "I want to charge shipping" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:523 +#: includes/admin/store-settings/class-mp-store-settings-general.php:503 +msgid "Show Price + Tax?" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:507 +msgid "I.e. Taxes, VAT, GST, etc" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:491 +#: includes/admin/store-settings/class-mp-store-settings-general.php:471 +msgid "Current Rates" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:473 +msgid "Default Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:434 +#: includes/admin/class-mp-setup-wizard.php:442 +#: includes/admin/store-settings/class-mp-store-settings-general.php:386 +#: includes/admin/store-settings/class-mp-store-settings-general.php:394 +#: includes/multisite/class-mp-admin-multisite.php:204 +#: includes/multisite/class-mp-admin-multisite.php:212 +msgid "Select a Currency" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:414 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:105 +msgid "Choose Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:411 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:103 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:104 +msgid "All Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:410 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:102 +msgid "These are the countries that you will ship to." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:409 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:101 +msgid "Target Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:401 +msgid "Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:387 +#: includes/admin/store-settings/class-mp-store-settings-general.php:640 +msgid "Zip/Postal Code Label" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:352 +#: includes/admin/store-settings/class-mp-store-settings-general.php:606 +msgid "Select a State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:335 +#: includes/admin/store-settings/class-mp-store-settings-general.php:590 +msgid "Select A Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:332 +#: includes/admin/store-settings/class-mp-store-settings-general.php:587 +msgid "Select a Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:324 +msgid "Location" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:304 +#: includes/admin/class-mp-setup-wizard.php:312 +#: includes/admin/class-mp-store-settings-admin.php:129 +#: includes/admin/class-mp-store-settings-admin.php:262 +msgid "Quick Setup" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:289 +msgid "MarketPress setup is not complete! Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2479 +msgid "Enter your product name here" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2440 +msgid "Select a %s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2426 +msgid "Each product variation needs to have product attributes assigned to it so the system knows how to differentiate one product variation from the other. It is important that you assign a category to this product before choosing any attributes." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2409 +msgid "If you would like this variation to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2320 +msgid "Sale Price (if applicable)" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2281 +msgid "If you would like the description to be different than the main product enter it here." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2229 +msgid "Image" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2202 +#: includes/admin/class-mp-shortcode-builder.php:226 +msgid "Attributes" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2166 +msgid "Create your product variations here. You can reorder variations by using the number to left of each variation, or delete one by clicking the \"x\" to the right of each variation. NOTE: The variation that shows up first in this list will be considered the \"main variation\". The details from this variation will be used in product listings." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2061 +#: includes/admin/class-mp-products-admin.php:2332 +msgid "Value must be less than regular price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2043 +#: includes/admin/class-mp-products-admin.php:2306 +msgid "Regular Price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2023 +#: includes/admin/class-mp-products-admin.php:2286 +msgid "External URL" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1988 +#: includes/admin/class-mp-products-admin.php:2245 +msgid "Enter the quantity that you have available to sell." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1987 +#: includes/admin/class-mp-products-admin.php:2244 +msgid "Inventory Count" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1977 +#: includes/admin/class-mp-products-admin.php:2234 +msgid "Track Inventory?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1871 +msgid "%1$sProduct Images%2$s %3$sAdd images of the product. The first image on the list is the featured image for this product (you can reorder images on the list)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1806 +msgid "Add variations for this product. e.g. If you are selling t-shirts, you can create Color & Size variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1804 +msgid "%3$sAdd variations for%2$s %1$sProduct%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1776 +msgid "This product has a multiple variations %1$s(e.g. Multiple colors, sizes)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1775 +msgid "This is a unique product without variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1700 +msgid "Extra Shipping Cost %1$s(if applicable)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1659 +#: includes/admin/class-mp-products-admin.php:2112 +#: includes/admin/class-mp-products-admin.php:2359 +msgid "Weight" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1636 +#: includes/admin/class-mp-products-admin.php:2098 +#: includes/admin/class-mp-products-admin.php:2416 +msgid "Please enter a valid tax rate" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1531 +msgid "Limit Per Order %1$s(limit the number of the item a shopper can buy per order)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1513 +msgid "SKU %1$s(Stock Keeping Unit)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "%1$sPrice, Inventory & Variants%2$s %3$sSet price, manage inventory and create Product Variants (if appropriate for your product).%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "Product Variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1480 +msgid "External / Affiliate Link" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1471 +msgid "Digital Download" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1470 +msgid "Physical / Tangible Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1464 +msgid "Product Kind %1$s(Physical Product, Digital, etc)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1426 +msgid "Choose Products" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1420 +msgid "If you would like, you can choose specific related products instead of using the ones generated by MarketPress" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1019 +msgid "Changes saved successfully" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:826 +msgid "Option cannot be saved. Try again." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:821 +msgid "Option saved successfully." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:467 +msgid "Img" +msgstr "" + +#: includes/admin/class-mp-product-attributes-list-table.php:57 +msgid "Product attribute(s) deleted successfully." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:162 +msgid "- Create New Variation -" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:144 +msgid "Only lowercase letters and dashes (-) are allowed." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:139 +msgid "If a slug is not entered, it will be generated automatically. Max 32 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:138 +#: includes/admin/class-mp-product-attributes-list-table.php:23 +msgid "Slug" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:130 +msgid "Max 45 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:123 +msgid "Use the numbers on the left to sort. To delete - click the \"X\" to the right of each row." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:122 +msgid "Attribute Options" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:121 +msgid "Add Option" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:105 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:523 +msgid "Sort Order" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:87 +msgid "Alphabetical" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:86 +msgid "ID" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:84 +msgid "Select how the options will be sorted." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:82 +msgid "Sort By" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:75 +msgid "The name of the attribute (e.g. color, size, etc)" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:74 +msgid "Attribute Name" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:69 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Product Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Product Attributes" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:71 +msgid "You can choose to make this page one of the following core store pages." +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:66 +msgid "Network Store Base" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:61 +msgid "Checkout Page" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:52 +msgid "Store Page Settings" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1108 +msgid "Display billing/shipping info for this customer" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1097 +msgid "View order “%s”" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1072 +msgid "Flag as:" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:952 +msgid "Move To Trash" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:948 +msgid " Received" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:927 +msgid "Enter coupon code here" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:812 +msgid "The order status could not be updated due to unexpected error. Please try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:740 +msgid "An invalid bulk action was requested. Please go back and try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:692 +msgid "The order status for order ID %1$s was updated successfully." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:688 +msgid "Order statuses successfully updated." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:530 +msgid "Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:518 +msgid "Actual Shipping Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:513 +msgid "Method Paid For" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:504 +msgid "Amount Collected" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:477 +msgid "DHL" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:408 +msgid "There is no IPN history to show at this time" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:345 +msgid "Type" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:343 +msgid "Gateway" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:301 +#: includes/common/template-functions.php:528 +msgid "Order History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:291 +msgid "IPN History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:283 +msgid "Customer Info" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:279 +msgid "Order Details" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:157 +msgid "All Dates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:320 +msgid "Add Pages to Menu" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:318 +msgid "Add-ons" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:317 +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "User Capabilities" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:316 +#: includes/admin/class-mp-setup-wizard.php:631 +#: includes/admin/store-settings/class-mp-store-settings-payments.php:50 +msgid "Payment Gateways" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:315 +msgid "Shipping Rates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:312 +msgid "Configure" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:309 +#: includes/admin/class-mp-products-admin.php:466 +#: includes/admin/class-mp-shortcode-builder.php:797 +msgid "Tags" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:308 +#: includes/admin/class-mp-products-admin.php:465 +msgid "Categories" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:300 +msgid "Manage" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:297 +msgid "Here's some quick links to manage your store and products." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:288 +msgid "low in stock" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:287 +msgid "%s product" +msgid_plural "%s products" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-dashboard-widgets.php:280 +msgid "received" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:279 +#: includes/admin/class-mp-dashboard-widgets.php:283 +msgid "%s order" +msgid_plural "%s orders" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-dashboard-widgets.php:276 +msgid "Stock & Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:261 +msgid "Last 30 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:256 +msgid "Last 7 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:251 +msgid "Yesterday" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:248 +#: includes/admin/class-mp-dashboard-widgets.php:253 +#: includes/admin/class-mp-dashboard-widgets.php:258 +#: includes/admin/class-mp-dashboard-widgets.php:263 +msgid " Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:246 +msgid "Today" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:241 +msgid "Welcome back! Here's a quick summary of your store's performance." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:196 +#: includes/admin/class-mp-products-admin.php:895 +msgid "No products out of stock." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:136 +#: includes/admin/class-mp-products-admin.php:839 +msgid "Stock Level" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:135 +#: includes/admin/class-mp-products-admin.php:838 +msgid "Variation" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:121 +msgid "Low Stock (%s)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:116 +msgid "Store Management" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:115 +msgid "Store Reports" +msgstr "" + +#: includes/admin/class-mp-ajax.php:579 +#: includes/admin/class-mp-orders-admin.php:520 +#: includes/common/payment-gateways/2checkout.php:370 +#: includes/common/payment-gateways/authorizenet-aim.php:264 +#: includes/common/payment-gateways/mollie.php:93 +#: includes/common/payment-gateways/paymill.php:196 +#: includes/common/payment-gateways/pin.php:190 +#: includes/common/payment-gateways/skrill.php:157 +#: includes/common/payment-gateways/skrill.php:168 +#: includes/common/payment-gateways/wepay.php:143 +#: includes/public/class-mp-checkout.php:404 +msgid "Select One" +msgstr "" + +#: includes/admin/class-mp-ajax.php:511 +msgid "Oops... we could not locate any orders by that ID. Please double check your order ID and try again." +msgstr "" + +#: includes/admin/class-mp-ajax.php:482 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:166 +#: includes/multisite/class-mp-admin-multisite.php:584 +msgid "Edit Page" +msgstr "" + +#: includes/admin/class-mp-ajax.php:346 +msgid "Cancel " +msgstr "" + +#: includes/admin/class-mp-ajax.php:345 +msgid "Save " +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "Edit Description" +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "HTML Markup" +msgstr "" + +#: includes/admin/class-mp-ajax.php:333 +msgid "Plain Text Only" +msgstr "" + +#: includes/admin/class-mp-ajax.php:329 +msgid "Additional Content / Information for this Variation" +msgstr "" + +#: includes/admin/class-mp-ajax.php:317 +#: includes/admin/class-mp-products-admin.php:1762 +msgid "Allow this product to be purchased even if it's out of stock" +msgstr "" + +#: includes/admin/class-mp-ajax.php:313 +#: includes/admin/class-mp-products-admin.php:1711 +msgid "Track Product Inventory" +msgstr "" + +#: includes/admin/class-mp-ajax.php:300 +msgid "Extra Shipping Cost (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:295 +msgid "Ounces:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:294 +msgid "Pounds:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:292 +msgid "Kilograms:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:287 +#: includes/admin/class-mp-products-admin.php:1649 +msgid "Charge Shipping" +msgstr "" + +#: includes/admin/class-mp-ajax.php:273 +#: includes/admin/class-mp-products-admin.php:1623 +#: includes/admin/store-settings/class-mp-store-settings-general.php:454 +msgid "Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:272 +#: includes/admin/class-mp-products-admin.php:1622 +#: includes/admin/class-mp-products-admin.php:2090 +#: includes/admin/class-mp-products-admin.php:2408 +msgid "Special Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:271 +#: includes/admin/class-mp-products-admin.php:1625 +#: includes/admin/class-mp-products-admin.php:2092 +msgid "If you would like this product to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-ajax.php:268 +#: includes/admin/class-mp-products-admin.php:1599 +msgid "Charge Taxes (Special Rate)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:256 +#: includes/admin/class-mp-products-admin.php:1593 +#: includes/admin/class-mp-products-admin.php:2077 +#: includes/admin/class-mp-products-admin.php:2348 +msgid "End Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:255 +#: includes/admin/class-mp-products-admin.php:1589 +#: includes/admin/class-mp-products-admin.php:2072 +msgid "Start Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:1568 +msgid "Enter Sale Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:250 +#: includes/admin/class-mp-products-admin.php:1547 +msgid "Set up a Sale for this Product" +msgstr "" + +#: includes/admin/class-mp-ajax.php:206 includes/admin/class-mp-ajax.php:223 +msgid "Enter " +msgstr "" + +#: includes/admin/class-mp-ajax.php:193 +msgid "Browse" +msgstr "" + +#: includes/admin/class-mp-ajax.php:184 includes/admin/class-mp-ajax.php:192 +msgid "http://" +msgstr "" + +#: includes/admin/class-mp-ajax.php:183 +msgid "External Product URL" +msgstr "" + +#: includes/admin/class-mp-ajax.php:237 +msgid "Limit Per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:177 +#: includes/admin/class-mp-products-admin.php:1520 +msgid "Enter Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:174 +#: includes/admin/class-mp-products-admin.php:1512 +msgid "Enter SKU" +msgstr "" + +#: includes/admin/class-mp-ajax.php:173 +msgid "(Stock Keeping Unit)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:158 +msgid "Remove Image" +msgstr "" + +#: includes/admin/class-mp-ajax.php:74 +msgid "Variation Draft" +msgstr "" + +#: includes/admin/class-mp-admin.php:296 +#: includes/admin/class-mp-dashboard-widgets.php:70 +msgid "Please wait...saving in progress..." +msgstr "" + +#: includes/admin/class-mp-admin.php:295 +#: includes/admin/class-mp-dashboard-widgets.php:69 +msgid "Input is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:294 +#: includes/admin/class-mp-dashboard-widgets.php:68 +msgid "Valid number is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:292 +#: includes/admin/class-mp-dashboard-widgets.php:66 +msgid "Delete %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:291 +#: includes/admin/class-mp-dashboard-widgets.php:65 +msgid "Delete %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:290 +#: includes/admin/class-mp-dashboard-widgets.php:64 +msgid "Update inventory for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:289 +#: includes/admin/class-mp-dashboard-widgets.php:63 +msgid "Update inventory for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:288 +#: includes/admin/class-mp-dashboard-widgets.php:62 +msgid "Update price for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:287 +#: includes/admin/class-mp-dashboard-widgets.php:61 +msgid "Update prices for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:285 +#: includes/admin/class-mp-dashboard-widgets.php:59 +msgid "Creating variations, please wait..." +msgstr "" + +#: includes/admin/class-mp-admin.php:96 +msgid "The following payment gateways have been deprecated, Cubepoints, Bitpay, iDEAL, Skrill, Google Checkout. If you were using one of these gateways, please setup a new payment gateway here." +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:61 +msgid "Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:71 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:71 +#: includes/common/class-mp-gdpr.php:399 includes/common/class-mp-order.php:872 +#: includes/common/helpers.php:164 includes/public/class-mp-checkout.php:1434 +msgid "Shipping Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:66 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:66 +#: includes/common/class-mp-gdpr.php:392 includes/common/class-mp-order.php:864 +#: includes/common/helpers.php:163 includes/public/class-mp-checkout.php:1427 +msgid "Billing Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:61 +msgid "Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:258 +msgid "Shipping Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:256 +msgid "Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:235 +msgid "Payment Method: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:79 +msgid "The dir %s not exist or not writeable" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:239 +msgid "Shop header/logo" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:233 +msgid "Choose a template" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:226 +msgid "Template Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:221 +msgid "Disable automatic creation/attachment of invoices when only free products are ordered" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:220 +msgid "Disable for free products" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:216 +msgid "Attach invoice to" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:214 +msgid "Customer Order Shipped email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:212 +msgid "Customer New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:211 +msgid "Admin New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:206 +msgid "download" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:205 +msgid "How do you want to view the PDF?" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:203 +msgid "Open the PDF in a new browser tab/window" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:202 +msgid "Download the PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:158 +msgid "Export PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:103 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:106 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:109 +msgid "You can't download this order invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:76 +msgid "Invalid Request" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:72 +msgid "Order not exist!" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:67 +msgid "Invalid ID" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1293 +msgid "Coupon added successfully" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1292 +msgid "Please enter a code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1247 +msgid "No end" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1200 +msgid "Valid Dates" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1195 +msgid "Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1027 +msgid "No Coupons found in Trash" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1026 +msgid "No Coupons Found" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1025 +msgid "Search Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1024 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1028 +msgid "View Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1023 +msgid "New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1020 +msgid "Create New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1017 +msgid "Manage Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1002 +msgid "An error occurred while removing your coupon. Please try again." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:964 +msgid "Coupon can't be applied to this cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:951 +msgid "Invalid coupon code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:794 +msgid "Help Text" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:789 +msgid "Form Title" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:783 +msgid "Coupons Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:764 +msgid "End Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:758 +msgid "Does coupon have an end date?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:696 +msgid "Select Products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:688 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:723 +#: includes/common/payment-gateways/paypal-payflow.php:402 +msgid "User" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:638 +msgid "Max Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:636 +msgid "Enter the maximum number of times this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:623 +msgid "Leave blank to allow all other coupons." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:622 +msgid "Select combinable coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:618 +msgid "Can this coupon be combined with other coupons?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:613 +msgid "Apply to each applicable item once per cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:612 +msgid "Apply to each applicable item and quantity ordered" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:609 +msgid "How should the discount amount be applied?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:605 +msgid "Discount Amount" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:604 +msgid "Value must either be a decimal number or a percentage" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:602 +msgid "If you would like to give a percentage-based discount make sure to include the percent (%) symbol. Otherwise, the discount will be applied as a fixed amount off." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:595 +msgid "Letters and Numbers only." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:589 +msgid "Coupon Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:447 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:795 +msgid "More than one code? That's OK! Just be sure to enter one at a time." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:444 +msgid "Apply Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:314 +msgid "Coupon Discounts" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:89 +msgid "1 add-on disabled" +msgid_plural "%s add-ons disabled" +msgstr[0] "" +msgstr[1] "" + +#: includes/addons/class-mp-addons-list-table.php:84 +msgid "1 add-on enabled" +msgid_plural "%s add-ons enabled" +msgstr[0] "" +msgstr[1] "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Disabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Enable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:129 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:67 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:135 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:168 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:202 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:263 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:296 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:330 +msgid "Enabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +msgid "Disable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:34 +msgid "Disable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:33 +msgid "Enable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:21 +#: includes/admin/class-mp-products-admin.php:2280 +#: includes/common/class-mp-product.php:2916 +msgid "Description" +msgstr "" + +#: includes/common/template-functions.php:2889 +#: includes/multisite/template-functions.php:407 +msgid "Popularity (Least Popular - Most Popular)" +msgstr "" + +#: includes/common/template-functions.php:2888 +#: includes/multisite/template-functions.php:406 +msgid "Popularity (Most Popular - Least Popular)" +msgstr "" + +#: includes/common/template-functions.php:2885 +#: includes/multisite/template-functions.php:403 +msgid "Name (Z-A)" +msgstr "" + +#: includes/common/template-functions.php:2884 +#: includes/multisite/template-functions.php:402 +msgid "Name (A-Z)" +msgstr "" + +#: includes/common/template-functions.php:2883 +#: includes/multisite/template-functions.php:401 +msgid "Release Date (Oldest to Latest)" +msgstr "" + +#: includes/common/template-functions.php:2882 +#: includes/multisite/template-functions.php:400 +msgid "Release Date (Latest to Oldest)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:284 +msgid "paid" +msgstr "betalt" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "One Time Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Customer Counter" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Daily Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:182 +msgid "For the most accurate rates, please select the appropriate pick up type for your business." +msgstr "" + +#: includes/admin/class-mp-admin.php:374 +msgid "Page saved." +msgstr "" + +#: includes/admin/class-mp-admin.php:370 +msgid "Custom field deleted." +msgstr "" + +#: includes/admin/class-mp-admin.php:369 +msgid "Custom field updated." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:541 +msgid "%s - The payment request expired, - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:536 +msgid "%s - The payment not credited in merchants bitpay account, action required. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:252 +msgid "If enabled, you will recieve an email for each status update on payment." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:240 +msgid "Speed at which the bitcoin transaction registers as \"confirmed\" to the store. This overrides your merchant settings on the Bitpay website." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:238 +msgid "Transaction Speed" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:244 +msgid "Low" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:243 +msgid "Medium" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:242 +msgid "High" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:177 +#: includes/common/payment-gateways/_bitpay.php:517 +#: includes/common/payment-gateways/_bitpay.php:522 +msgid "%s - The payment request is under process. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:175 +#: includes/common/payment-gateways/_bitpay.php:527 +msgid "%s - The payment request has been processed - %s" +msgstr "%s - Betalingforespørsel er prosessert - %s" + +#: includes/common/payment-gateways/_bitpay.php:150 +#: includes/common/payment-gateways/_bitpay.php:294 +msgid "Incorrect order invoice, please contact site administrator" +msgstr "Feil ved faktura, vennligst kontakt administrator" + +#: includes/common/payment-gateways/_bitpay.php:141 +msgid "We could not verify order invoice details, please try again or contact site administrator for help" +msgstr "Vi kunne ikke verifisere faktura detaljer, vennligst prøv igjen eller kontakt oss for hjelp." + +#: includes/common/payment-gateways/simplify.php:81 +msgid "Login to Simplify to get your API credentials. Enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:605 +#: includes/common/payment-gateways/paypal-express.php:647 +msgid "Express Checkout is PayPal's premier checkout solution, which streamlines the checkout process for buyers and keeps them on your site after making a purchase. Unlike PayPal Pro, there are no additional fees to use Express Checkout, though you may need to do a free upgrade to a business account. More Info »" +msgstr "" + +#. Plugin URI of the plugin/theme +msgid "https://premium.wpmudev.org/project/e-commerce/" +msgstr "" + +#. Author of the plugin/theme +msgid "WPMU DEV" +msgstr "WPMU DEV" + +#: includes/admin/class-mp-orders-admin.php:541 +#: includes/admin/class-mp-orders-admin.php:543 +msgid "Tracking Number" +msgstr "Sporingsnummer" + +#: includes/common/class-mp-order.php:805 +#: includes/common/payment-gateways/stripe.php:336 +#: includes/public/class-mp-checkout.php:402 +msgid "Country" +msgstr "Land" + +#: includes/common/class-mp-order.php:784 +#: includes/common/payment-gateways/stripe.php:338 +msgid "City" +msgstr "By" + +#: includes/common/class-mp-order.php:780 +msgid "Address 2" +msgstr "Adresse 2" + +#: includes/common/payment-gateways/stripe.php:340 +msgid "Address" +msgstr "Adresse" + +#: includes/common/class-mp-cart.php:752 includes/common/class-mp-gdpr.php:378 +msgid "Order Total" +msgstr "Ordre sammenlagt" + +#: includes/admin/class-mp-orders-admin.php:360 +msgid "Payment Total" +msgstr "Total Beløp" + +#: includes/admin/class-mp-orders-admin.php:347 +msgid "Transaction ID" +msgstr "Transaksjons ID" + +#: includes/common/payment-gateways/wepay.php:207 +msgid "The WePay Card Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:186 +#: includes/common/shipping-modules/mp-fedex.php:283 +msgid "Account ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:179 +msgid "Access Token" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:172 +msgid "Client Secret" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:165 +msgid "Client ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:159 +msgid "You must login to WePay to get your API credentials. Make sure to check \"Tokenize credit cards\" option under \"API Keys\" section of your WePay app." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:154 +msgid "When in live mode it is recommended to use SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:148 +msgid "Donation" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:147 +msgid "Event" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:146 +msgid "Personal" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:145 +msgid "Service" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:144 +msgid "Goods" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:141 +msgid "Choose type of payments" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:140 +msgid "Checkout Type" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:134 +msgid "Staging" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:131 +msgid "Choose STAGING if you have registered the app on stage.wepay.com, or PRODUCTION if you registered on www.wepay.com" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:36 +#: includes/common/payment-gateways/wepay.php:299 +msgid "WePay" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:366 +msgid "Rejected - A payment was rejected." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:360 +msgid "Failed - A payment was rejected due to an error." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:342 +msgid "PayWay balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:298 +msgid "Full path of the cacerts.crt file" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:284 +msgid "User Name" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:277 +msgid "Biller Code" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:273 +msgid "Log Directory" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:266 +msgid "Encryption Key" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:60 +msgid "Your PayWay transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:40 +#: includes/common/payment-gateways/_payway.php:41 +msgid "PayWay" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:862 +msgid "You must register this application with PayPal using your business account login to get an Application ID that will work with your API credentials. A bit of a hassle, but worth it! In the near future we will be looking for ways to simplify this process. Register then submit your application while logged in to the developer portal. Note that you do not need an Application ID for testing in sandbox mode. More Information »" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:818 +#: includes/common/payment-gateways/paypal-chained-payments.php:840 +#: includes/common/payment-gateways/paypal-express.php:705 +msgid "You must login to PayPal and create an API signature to get your credentials. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:378 +msgid "Use Payflow payment gateway to accept online payments using your Internet merchant account and processing network. PayPal Payflow Pro is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:595 +msgid "Tags Only" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:594 +msgid "Category Only" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:795 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:593 +msgid "Category & Tags" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:591 +msgid "Relate Products By" +msgstr "Ordne produkter ved" + +#: includes/admin/class-mp-shortcode-builder.php:1008 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:455 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:751 +msgid "Right" +msgstr "Høyre" + +#: includes/admin/class-mp-shortcode-builder.php:1007 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:454 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:749 +msgid "Left" +msgstr "Venstre" + +#: includes/admin/class-mp-shortcode-builder.php:1009 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:750 +msgid "Center" +msgstr "Midstilt" + +#: marketpress.php:273 +msgid "Orders from your e-commerce store." +msgstr "" + +#: marketpress.php:231 +msgid "Products for your e-commerce store." +msgstr "" + +#: marketpress.php:222 +msgid "Edit Product" +msgstr "" + +#. Description of the plugin/theme +msgid "The complete WordPress ecommerce plugin - works perfectly with BuddyPress and Multisite too to create a social marketplace, where you can take a percentage! Activate the plugin, adjust your settings then add some products to your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:272 +msgid "Beside" +msgstr "Ved siden" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:271 +msgid "Above" +msgstr "Over" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:268 +msgid "Pin Count" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:261 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:287 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:318 +msgid "All View" +msgstr "Listevisning" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:260 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:286 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:317 +msgid "Single View" +msgstr "Enkeltvare" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:259 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:285 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:316 +msgid "Off" +msgstr "Av" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:578 +msgid "Related Product Limit" +msgstr "Antallsgrense for relaterte varer" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:681 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1201 +msgid "Applies To" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:685 +msgid "All Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:487 +msgid "The label shown for the tax line item in the cart. Taxes, VAT, GST, etc." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:485 +msgid "Tax Label" +msgstr "MVA ledetekst" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:81 +msgid "Apply" +msgstr "Bruk" + +#: includes/admin/class-mp-admin.php:192 +msgid "MarketPress Instructions" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1954 +#: includes/admin/class-mp-products-admin.php:2194 includes/common/data.php:62 +#: includes/common/helpers.php:150 +msgid "Taxes" +msgstr "Moms" + +#: includes/admin/class-mp-products-admin.php:1417 +#: includes/common/class-mp-product.php:2900 +msgid "Related Products" +msgstr "Relaterte varer" + +#: includes/common/shipping-modules/mp-usps.php:282 +#: includes/common/shipping-modules/mp-usps.php:316 +msgid "@ Max" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "(3-5 days)" +msgstr "(3-5 dager)" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "Priority Mail Express International Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:92 +msgid "Priority Mail Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:171 +#: includes/common/shipping-modules/mp-pickup.php:247 +msgid "In Store" +msgstr "I butikken" + +#: includes/common/shipping-modules/mp-pickup.php:159 +msgid "Pickup Fee" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:141 +msgid "This option allows your customers to indicate that they will pick-up their order at your place of business." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:60 +#: includes/common/shipping-modules/mp-pickup.php:76 +#: includes/common/shipping-modules/mp-pickup.php:176 +msgid "Pickup Instructions" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:24 +#: includes/common/shipping-modules/mp-pickup.php:254 +msgid "Pickup" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping - 0.00" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:256 +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:440 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:309 +msgid "Your Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:301 +msgid "Station" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:300 +msgid "Request Courier" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:299 +msgid "Drop Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:298 +msgid "Business Service Center" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:297 +msgid "Regular Pickup" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:135 +#: includes/common/shipping-modules/mp-fedex.php:264 +msgid "Production" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:207 +msgid "Simplify Commerce by MasterCard" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:104 +msgid "When in live mode, although it is not required, Simplify recommends you have an SSL certificate." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:183 +#: includes/common/payment-gateways/simplify.php:87 +msgid "Public Key" +msgstr "Offentlig nøkkel" + +#: includes/common/payment-gateways/paymill.php:175 +#: includes/common/payment-gateways/simplify.php:94 +msgid "Private Key" +msgstr "Privat nøkkel" + +#: includes/common/payment-gateways/simplify.php:71 +msgid "Simplify helps merchants to accept online payments from Mastercard, Visa, American Express, Discover, JCB, and Diners Club cards. It's that simple. We offer a merchant account and payment gateway in a single, secure package so you can concentrate on what really matters to your business. Only supports USD currently." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:267 +msgid "%1$s" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:151 +msgid "The Simplify Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/simplify.php:18 +msgid "Simplify" +msgstr "" + +#: includes/common/payment-gateways/pin.php:255 +msgid "%1$s Card %2$s" +msgstr "" + +#: includes/common/payment-gateways/pin.php:211 +msgid "The PIN Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:187 +msgid "Selecting a currency other than currency supported by PIN may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/pin.php:164 +msgid "You must login to PIN to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/pin.php:158 +msgid "When in live mode PIN recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/pin.php:45 +#: includes/common/payment-gateways/pin.php:286 +msgid "PIN" +msgstr "PIN" + +#: includes/common/payment-gateways/paypal-express.php:830 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:534 +#: includes/common/payment-gateways/paypal-express.php:865 +msgid "The payment is pending" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:235 +msgid "The Paymill Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:169 +msgid "You must login to Paymill to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:45 +#: includes/common/payment-gateways/paymill.php:308 +msgid "Paymill" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:90 +msgid "Invalid cardholder" +msgstr "Ugyldig korteier" + +#: includes/common/payment-gateways/paymill.php:89 +msgid "Card is no longer valid or has expired" +msgstr "Kortet er ikke lenger gyldig eller er utgått" + +#: includes/common/payment-gateways/paymill.php:88 +msgid "Please enter a valid Card CVC" +msgstr "Vennligst skiv inn en gyldig CVC kode" + +#: includes/common/payment-gateways/paymill.php:87 +msgid "Please choose a valid Expiration Date." +msgstr "Vennligs velg Utløpsdato" + +#: includes/common/payment-gateways/skrill.php:99 +#: includes/common/payment-gateways/skrill.php:100 +msgid "Skrill (Moneybookers)" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:24 +#: includes/common/shipping-modules/mp-weight-rate.php:292 +msgid "Weight Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:303 +msgid "USPS Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:270 +msgid "USPS Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:264 +msgid "USPS Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:145 +msgid "Flat Rate Large" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:140 +msgid "Flat Rate Medium 2" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:135 +msgid "Flat Rate Medium 1" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:130 +msgid "Flat Rate Small" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:118 +msgid "First Class International Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:114 +msgid "Priority Mail International Small Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:112 +msgid "Priority Mail International Medium Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:110 +msgid "Priority Mail International Large Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:108 +msgid "Priority Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:106 +msgid "Express Mail International Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:104 +msgid "Express Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:98 +msgid "Library Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:96 +msgid "Media Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "First-Class Mail Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:90 +msgid "Priority Mail Small Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:88 +msgid "Priority Mail Medium Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +#: includes/common/shipping-modules/mp-usps.php:88 +#: includes/common/shipping-modules/mp-usps.php:90 +#: includes/common/shipping-modules/mp-usps.php:92 +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "(2-4 days)" +msgstr "(2-4 dager)" + +#: includes/common/shipping-modules/mp-usps.php:86 +msgid "Priority Mail Large Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "(2-4) days" +msgstr "(2-4) dager" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "Priority Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "Express Mail Sunday/Holiday Delivery Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:80 +msgid "Express Mail Flat Rate Boxes Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:78 +msgid "Express Mail Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:76 +msgid "Express Mail Sunday/Holiday Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:74 +msgid "Express Mail Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:72 +#: includes/common/shipping-modules/mp-usps.php:74 +#: includes/common/shipping-modules/mp-usps.php:76 +#: includes/common/shipping-modules/mp-usps.php:78 +#: includes/common/shipping-modules/mp-usps.php:80 +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "(1-2 days)" +msgstr "(1-2 dager)" + +#: includes/common/shipping-modules/mp-usps.php:72 +msgid "Express Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:67 +#: includes/common/shipping-modules/mp-usps.php:902 +msgid "USPS" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:534 +msgid "UPS (beta)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:166 +msgid "Required if using negotiated rates" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "Worldwide Express Plus" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "(Scheduled)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "Standard" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "(2-5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "Worldwide Expedited" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:54 +msgid "Worldwide Express" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "2nd Day Air AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "(1 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "Next Day Air Early AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "Next Day Air Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "3 Day Select" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:49 +msgid "Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:48 +msgid "2nd Day Air" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "Next Day Air" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:475 +#: includes/common/shipping-modules/mp-ups.php:43 +msgid "UPS" +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:27 +#: includes/common/shipping-modules/mp-table-rate.php:318 +msgid "Table Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:71 +#: includes/common/shipping-modules/mp-table-quantity.php:77 +msgid "Shipping Cost: " +msgstr "Forsendelskostnad: " + +#: includes/common/shipping-modules/mp-table-quantity.php:70 +#: includes/common/shipping-modules/mp-table-quantity.php:76 +msgid "If quantity is greater than:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:66 +msgid "Each band must be a higher price than the one above it." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:56 +msgid "Number of Bands:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:53 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Each layer must be a higher quantity than the previous." +msgstr "Forsikre deg om at du angir leveringskostnad for hvert alternativ, ellers vil noen kunder kunne få gratis levering. Hvert nivå må ha et høyere leveringsantall enn den foregående." + +#: includes/common/shipping-modules/mp-table-quantity.php:51 +msgid "Table Quantity Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:31 +msgid "Table Quantity" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:135 +#: includes/common/shipping-modules/mp-table-rate.php:174 +#: includes/common/shipping-modules/mp-weight-rate.php:189 +msgid "European Union" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:123 +#: includes/common/shipping-modules/mp-table-rate.php:162 +#: includes/common/shipping-modules/mp-weight-rate.php:177 +msgid "United States" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:111 +#: includes/common/shipping-modules/mp-table-rate.php:151 +#: includes/common/shipping-modules/mp-weight-rate.php:166 +msgid "In Country" +msgstr "Innenlands" + +#: includes/common/shipping-modules/mp-flat-rate.php:146 +#: includes/common/shipping-modules/mp-table-rate.php:186 +#: includes/common/shipping-modules/mp-weight-rate.php:201 +msgid "International" +msgstr "Internasjonal" + +#: includes/common/shipping-modules/mp-flat-rate.php:101 +#: includes/common/shipping-modules/mp-table-rate.php:141 +#: includes/common/shipping-modules/mp-weight-rate.php:156 +msgid "Canada" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:92 +#: includes/common/shipping-modules/mp-table-rate.php:132 +#: includes/common/shipping-modules/mp-weight-rate.php:147 +msgid "Hawaii and Alaska" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:83 +#: includes/common/shipping-modules/mp-table-rate.php:123 +#: includes/common/shipping-modules/mp-weight-rate.php:138 +msgid "Lower 48 States" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:64 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping." +msgstr "Forsikre deg om at du angir leveringskostnad for hvert alternativ, ellers vil noen kunder kunne få gratis levering." + +#: includes/common/shipping-modules/mp-flat-rate.php:25 +#: includes/common/shipping-modules/mp-flat-rate.php:223 +msgid "Flat Rate" +msgstr "Fast rate" + +#: includes/common/shipping-modules/mp-fedex.php:761 +msgid "FedEx (beta)" +msgstr "FedEx (beta)" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Centimeters" +msgstr "Centimeter" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Inches" +msgstr "Tommer" + +#: includes/admin/class-mp-products-admin.php:1676 +#: includes/admin/class-mp-setup-wizard.php:547 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:166 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +msgid "Kilograms" +msgstr "Kilo" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:103 +msgid " %1$s - %2$s" +msgstr " %1$s - %2$s" + +#: includes/common/shipping-modules/mp-usps.php:358 +msgid "Max Weight per Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:356 +msgid "Box Dimensions" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:354 +msgid "Box Name" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:344 +msgid "Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:343 +msgid "For each box defined enter the maximum weight it can contain." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:341 +msgid "Enter your standard box sizes as LengthxWidthxHeight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:386 +#: includes/common/shipping-modules/mp-ups.php:193 +#: includes/common/shipping-modules/mp-usps.php:234 +#: includes/common/shipping-modules/mp-usps.php:338 +msgid "Standard Boxes and Weight Limits" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:328 +msgid "Handling Charge per Interntional Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:294 +msgid "Handling Charge per Domestic Shipment " +msgstr "Administrasjonsgebyr per innlandssending " + +#: includes/common/shipping-modules/mp-fedex.php:388 +#: includes/common/shipping-modules/mp-ups.php:196 +#: includes/common/shipping-modules/mp-usps.php:237 +msgid "Add Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "(Next Day)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +msgid "Europe First International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:62 +msgid "International Priority" +msgstr "Internasjonal Prioritet" + +#: includes/common/shipping-modules/mp-fedex.php:61 +#: includes/common/shipping-modules/mp-fedex.php:62 +#: includes/common/shipping-modules/mp-ups.php:54 +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "(1-3 Days)" +msgstr "(1-3 dager)" + +#: includes/common/shipping-modules/mp-fedex.php:61 +msgid "International First" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "(5 Days)" +msgstr "(5 dager)" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "International Economy" +msgstr "Internasjonal Økonomi" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "(2-7 Days)" +msgstr "(2-7 dager)" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "Smart Post" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:55 +#: includes/common/shipping-modules/mp-ups.php:49 +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "(1-5 Days)" +msgstr "(1-5 dager)" + +#: includes/common/shipping-modules/mp-fedex.php:55 +msgid "Ground Home Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "(1-7 Days)" +msgstr "(1-7 dager)" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "Fedex Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:53 +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "(3 Days)" +msgstr "(3 dager)" + +#: includes/common/shipping-modules/mp-fedex.php:53 +msgid "Fedex Express Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +#: includes/common/shipping-modules/mp-ups.php:48 +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "(2 Days)" +msgstr "(2 dager)" + +#: includes/common/shipping-modules/mp-fedex.php:52 +msgid "Fedex 2 Day" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "(2 Days am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "Fedex 2 Day AM" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "(1 Day)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +msgid "Standard Overnight" +msgstr "Standard 'over natten'" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "(1 Day am )" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "Priority Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "(1 Day am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "First Overnight" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:476 +#: includes/common/shipping-modules/mp-fedex.php:31 +msgid "FedEx" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:270 +#: includes/common/payment-gateways/simplify.php:179 +#: includes/common/payment-gateways/stripe.php:365 +msgid "%1$s Card ending in %2$s - Expires %3$s" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:259 +#: includes/common/payment-gateways/pin.php:238 +#: includes/common/payment-gateways/simplify.php:171 +msgid "%s Store Purchase - Order ID: %s, Email: %s" +msgstr "%s butikk kjøp - ordrenummer: %s, epost: %s" + +#: includes/common/payment-gateways/stripe.php:266 +msgid "You must login to Stripe to get your API credentials. You can enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:261 +msgid "When in live mode Stripe recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:311 +msgid "The Stripe Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:263 +#: includes/common/payment-gateways/paymill.php:122 +#: includes/common/payment-gateways/stripe.php:222 +msgid "Card Number" +msgstr "Kortnummer" + +#: includes/common/payment-gateways/paymill.php:86 +msgid "Please enter a valid Credit Card Number." +msgstr "Vennligst angi et gyldig kredittkortnummer." + +#: includes/common/payment-gateways/stripe.php:45 +#: includes/common/payment-gateways/stripe.php:433 +msgid "Stripe" +msgstr "Stripe" + +#: includes/common/payment-gateways/paypal-express.php:750 +msgid "Sets the background color for the payment page. By default, the color is white." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:745 +msgid "Sets the background color for the header of the payment page. By default, the color is white." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:740 +msgid "Sets the border color around the header of the payment page. The border is a 2-pixel perimeter around the header space, which is 750 pixels wide by 90 pixels high. By default, the color is black." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:735 +msgid "URL for an image you want to appear at the top left of the payment page. The image has a maximum size of 750 pixels wide by 90 pixels high. PayPal recommends that you provide an image that is stored on a secure (https) server. If you do not specify an image, the business name is displayed." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:857 +#: includes/common/payment-gateways/paypal-express.php:1131 +msgid "The payment is pending because it is part of an order that has been authorized but not settled." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:853 +#: includes/common/payment-gateways/paypal-express.php:1127 +msgid "The payment is pending because it has been authorized but not settled. You must capture the funds first." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:847 +#: includes/common/payment-gateways/paypal-express.php:1120 +msgid "You denied the payment when it was marked as pending." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:837 +#: includes/common/payment-gateways/paypal-express.php:1108 +msgid "A reversal has occurred on this transaction due to an unknown reason." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:836 +#: includes/common/payment-gateways/paypal-express.php:1107 +msgid "A reversal has occurred on this transaction because you have given the customer a refund." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:835 +#: includes/common/payment-gateways/paypal-express.php:1106 +msgid "A reversal has occurred on this transaction due to a complaint about the transaction from your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:834 +#: includes/common/payment-gateways/paypal-express.php:1105 +msgid "A reversal has occurred on this transaction due to your customer triggering a money-back guarantee." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:833 +#: includes/common/payment-gateways/paypal-express.php:1104 +msgid "A reversal has occurred on this transaction due to a chargeback by your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:1101 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer:" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:826 +#: includes/common/payment-gateways/paypal-express.php:1097 +msgid "A payment has been accepted." +msgstr "Betalingen er godkjent" + +#: includes/common/payment-gateways/paypal-express.php:818 +#: includes/common/payment-gateways/paypal-express.php:1087 +msgid "The transaction has not terminated, e.g. an authorization may be awaiting completion." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:531 +#: includes/common/payment-gateways/paypal-express.php:810 +#: includes/common/payment-gateways/paypal-express.php:1077 +msgid "The payment has failed. This happens only if the payment was made from your customer's bank account." +msgstr "Betalingen har feilet. Dette hender bare hvis betalingen skjer fra kunden sin bank konto." + +#: includes/common/payment-gateways/paypal-express.php:806 +#: includes/common/payment-gateways/paypal-express.php:1072 +msgid "An authorization for this transaction has been voided." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:802 +#: includes/common/payment-gateways/paypal-express.php:1067 +msgid "The authorization period for this payment has been reached." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:798 +#: includes/common/payment-gateways/paypal-express.php:1062 +msgid "A reversal has been canceled; for example, when you win a dispute and the funds for the reversal have been returned to you." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:499 +#: includes/common/payment-gateways/paypal-express.php:1163 +msgid "PayPal Express Checkout" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:798 +msgid "Gateway Settings Page Message" +msgstr "Melding på betalingsoppsettssiden" + +#: includes/common/payment-gateways/paypal-express.php:725 +msgid "Signature" +msgstr "Signatur" + +#: includes/common/payment-gateways/eway31.php:506 +#: includes/common/payment-gateways/eway31.php:533 +#: includes/common/shipping-modules/mp-fedex.php:276 +msgid "API Password" +msgstr "API passord" + +#: includes/common/payment-gateways/paypal-chained-payments.php:773 +msgid "Enter a percentage of all store sales to collect as a fee. Decimals allowed." +msgstr "Angi en prosentandel av alt butikksalg som skal trekkes som gebyr. Desimal er tillatt." + +#: includes/common/payment-gateways/paypal-chained-payments.php:757 +msgid "Using PayPal Chained Payments allows you as the multisite network owner to collect a predefined fee or percentage of all sales on network MarketPress stores! This is invisible to the customers who purchase items in a store, and all PayPal fees will be charged to the store owner. To use this option you must create API credentials, and you should make all other gateways unavailable or limited above." +msgstr "Ved å bruke PayPal linkede betalinger kan du som nettverkseier ta et bestemt gebyr eller en andel av alt salg i nettverket. Dette er usynlig for kundene som handler i butikkene, og alle slike gebyr vil ble trukket fra butikkeieren. For å bruke dette alternativet må du opprette API tilganger, og du må sette alle andre betalingsmåter utilgjengelige eller begrenset." + +#: includes/common/payment-gateways/paypal-chained-payments.php:338 +msgid "Please be aware that we will deduct a ?% fee from the total of each transaction in addition to any fees PayPal may charge you. If for any reason you need to refund a customer for an order, please contact us with a screenshot of the refund receipt in your PayPal history as well as the Transaction ID of our fee deduction so we can issue you a refund. Thank you!" +msgstr "Vær oppmerksom på at vi vil trekke ?% gebyr fra totalbeløpet på hver overføring i tillegg til eventuelle gebyr PayPay vil trekke. Dersom du av uansett grunn har behov for å tilbakebetale til en kunde, vennligst kontakt oss med et skjermbilde av tilbakebetalingskvitteringen fra din PayPal historikk sammen med transkaksjonsnummeret på det gebyr, så kan vi gi deg tilbakebetaling på dette. På forhånd takk." + +#: includes/common/payment-gateways/paypal-chained-payments.php:698 +#: includes/common/payment-gateways/paypal-express.php:149 +msgid "There was a problem connecting to PayPal. Please try again." +msgstr "Det var problemer med å kontakte PayPal. Vennligst prøv igjen." + +#: includes/common/payment-gateways/paypal-chained-payments.php:470 +#: includes/common/payment-gateways/paypal-express.php:1053 +msgid "There was a problem verifying the IPN string with PayPal. Please try again." +msgstr "Det var et problem med å verifisere IPN strengen med PayPal. Vennligst prøv igjen." + +#: includes/common/payment-gateways/paypal-chained-payments.php:310 +msgid "There was a problem connecting to PayPal to check the status of your purchase. Please check the status of your order here »" +msgstr "Det var et problem å koble til PayPal for å sjekke status på kjøpet. Vennligst sjekk status på din bestilling her »" + +#: includes/common/payment-gateways/payfast.php:539 +#: includes/common/payment-gateways/paypal-chained-payments.php:254 +#: includes/common/payment-gateways/paypal-express.php:1139 +msgid "The payment is pending." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:251 +#: includes/common/payment-gateways/paypal-chained-payments.php:531 +#: includes/common/payment-gateways/paypal-express.php:862 +#: includes/common/payment-gateways/paypal-express.php:1136 +msgid "The payment is pending for an unknown reason. For more information, contact PayPal customer service." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:250 +#: includes/common/payment-gateways/paypal-chained-payments.php:530 +#: includes/common/payment-gateways/paypal-express.php:861 +#: includes/common/payment-gateways/paypal-express.php:1135 +msgid "The payment is pending because you are not yet verified. You must verify your account before you can accept this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:249 +#: includes/common/payment-gateways/paypal-chained-payments.php:529 +#: includes/common/payment-gateways/paypal-express.php:860 +#: includes/common/payment-gateways/paypal-express.php:1134 +msgid "The payment is pending because it was made via credit card and you must upgrade your account to Business or Premier status in order to receive the funds. It can also mean that you have reached the monthly limit for transactions on your account." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:248 +#: includes/common/payment-gateways/paypal-chained-payments.php:528 +#: includes/common/payment-gateways/paypal-express.php:859 +#: includes/common/payment-gateways/paypal-express.php:1133 +msgid "The payment is pending because it was made to an email address that is not yet registered or confirmed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:247 +#: includes/common/payment-gateways/paypal-chained-payments.php:527 +#: includes/common/payment-gateways/paypal-express.php:858 +#: includes/common/payment-gateways/paypal-express.php:1132 +msgid "The payment is pending while it is being reviewed by PayPal for risk." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:246 +#: includes/common/payment-gateways/paypal-chained-payments.php:526 +#: includes/common/payment-gateways/paypal-express.php:856 +#: includes/common/payment-gateways/paypal-express.php:1130 +msgid "You do not have a balance in the currency sent, and you do not have your Payment Receiving Preferences set to automatically convert and accept this payment. You must manually accept or deny this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:245 +#: includes/common/payment-gateways/paypal-chained-payments.php:525 +#: includes/common/payment-gateways/paypal-express.php:855 +#: includes/common/payment-gateways/paypal-express.php:1129 +msgid "The payment is pending because you hold a non-U.S. account and do not have a withdrawal mechanism. You must manually accept or deny this payment from your Account Overview." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:244 +#: includes/common/payment-gateways/paypal-chained-payments.php:524 +#: includes/common/payment-gateways/paypal-express.php:854 +#: includes/common/payment-gateways/paypal-express.php:1128 +msgid "The payment is pending because it was made by an eCheck that has not yet cleared." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:243 +#: includes/common/payment-gateways/paypal-chained-payments.php:523 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences section of your Profile." +msgstr "Betalingen er på vent på grunn av at din kunde ikke registrerte en bekreftet leveringsadresse, og ditt oppsett er satt slik at du da ønsker å manuelt akseptere eller nekte disse betalingene. For å endre ditt oppsett, gå til din profil." + +#: includes/common/payment-gateways/paypal-chained-payments.php:236 +#: includes/common/payment-gateways/paypal-chained-payments.php:516 +msgid "The transaction was rejected by the receiver (you)." +msgstr "Overføringen ble avvist av mottaker (deg)." + +#: includes/common/payment-gateways/paypal-chained-payments.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:510 +#: includes/common/payment-gateways/paypal-express.php:843 +#: includes/common/payment-gateways/paypal-express.php:1115 +msgid "You refunded the payment." +msgstr "Du tilbakebetalte betalingen." + +#: includes/common/payment-gateways/paypal-chained-payments.php:224 +#: includes/common/payment-gateways/paypal-chained-payments.php:504 +msgid "The transaction is in progress." +msgstr "Betalingen blir behandlet." + +#: includes/common/payment-gateways/paypal-chained-payments.php:212 +#: includes/common/payment-gateways/paypal-chained-payments.php:491 +#: includes/common/payment-gateways/paypal-express.php:814 +#: includes/common/payment-gateways/paypal-express.php:1082 +msgid "The payment has been partially refunded." +msgstr "Betalingen har blitt delvis tilbakeført" + +#: includes/common/payment-gateways/paypal-chained-payments.php:202 +#: includes/common/payment-gateways/paypal-chained-payments.php:481 +msgid "PayPal balance, Credit Card, or Instant Transfer" +msgstr "PayPal saldo, Kredittkort eller overføring" + +#: includes/common/payment-gateways/paypal-chained-payments.php:177 +msgid "There was a problem connecting to PayPal to setup your purchase. Please try again." +msgstr "Det var et problem ved kommunikasjon mot PayPal med ditt kjøp. Vennligs prøv igjen." + +#: includes/common/payment-gateways/paypal-chained-payments.php:122 +msgid "Your PayPal transaction has been canceled." +msgstr "Din PayPal betaling har blitt annulert." + +#: includes/common/payment-gateways/paypal-chained-payments.php:50 +#: includes/common/payment-gateways/paypal-chained-payments.php:53 +#: includes/common/payment-gateways/paypal-chained-payments.php:732 +#: includes/common/payment-gateways/paypal-express.php:500 +#: includes/common/payment-gateways/paypal-express.php:938 +msgid "PayPal" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:48 +#: includes/common/payment-gateways/paypal-chained-payments.php:730 +#: includes/common/payment-gateways/paypal-chained-payments.php:756 +#: includes/common/payment-gateways/paypal-chained-payments.php:873 +msgid "PayPal Chained Payments" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:59 +#: includes/common/payment-gateways/paypal-payflow.php:467 +msgid "PayPal Payflow Pro" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:378 +msgid "Chargeback - A payment was reversed due to a chargeback. The funds have been removed from your account balance and returned to the buyer." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:372 +msgid "Failed - The Credit Card or Direct Debit transaction was declined." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:354 +#: includes/common/payment-gateways/skrill.php:366 +msgid "Cancelled - The payment was cancelled manually by the sender in their online account history or was auto-cancelled after 14 days pending." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:360 +msgid "Pending - The payment is pending. It can take 2-3 days for bank transfers to complete." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:349 +#: includes/common/payment-gateways/skrill.php:354 +msgid "Processed - The payment has been completed, and the funds have been added successfully to your Moneybookers account balance." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:189 +msgid "Shown to the customer on the confirmation screen - the end step of the process - a note, confirmation number, or any other message. Line breaks <br> may be used for longer messages." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:188 +msgid "Confirmation Note (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:183 +msgid "The URL of the logo which you would like to appear at the top of the payment form. The logo must be accessible via HTTPS otherwise it will not be shown. For best integration results we recommend that you use a logo with dimensions up to 200px in width and 50px in height." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:182 +msgid "Logo Image (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:177 +msgid "The name of this store, which will be shown on the gateway. If no value is submitted, the account email will be shown as the recipient of the payment." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:176 +msgid "Merchant Name (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:165 +msgid "Language" +msgstr "Språk" + +#: includes/common/payment-gateways/2checkout.php:368 +#: includes/common/payment-gateways/authorizenet-aim.php:262 +#: includes/common/payment-gateways/eway.php:363 +#: includes/common/payment-gateways/eway31.php:471 +#: includes/common/payment-gateways/mollie.php:91 +#: includes/common/payment-gateways/paymill.php:193 +#: includes/common/payment-gateways/paypal-chained-payments.php:356 +#: includes/common/payment-gateways/paypal-express.php:688 +#: includes/common/payment-gateways/paypal-payflow.php:432 +#: includes/common/payment-gateways/pin.php:186 +#: includes/common/payment-gateways/skrill.php:152 +#: includes/common/payment-gateways/stripe.php:288 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:104 +msgid "Currency" +msgstr "Valuta" + +#: includes/common/payment-gateways/2checkout.php:359 +#: includes/common/payment-gateways/skrill.php:143 +msgid "Secret Word" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:261 +msgid "Order ID:" +msgstr "Ordre nummer:" + +#: includes/common/payment-gateways/skrill.php:234 +msgid "Complete Checkout" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:204 +msgid "Your Moneybookers transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:155 +msgid "This is the email text to send to those who have made manual payment checkouts. You should include your manual payment instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:257 +#: includes/common/payment-gateways/manual-payments.php:128 +msgid "Record payments manually, such as by Cash, Check, or EFT." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:71 +msgid "Manual/Invoice" +msgstr "Manuell/faktura" + +#: includes/admin/class-mp-setup-wizard.php:648 +#: includes/common/payment-gateways/manual-payments.php:35 +#: includes/common/payment-gateways/manual-payments.php:36 +msgid "Manual Payment" +msgstr "Manuell betaling" + +#: includes/common/payment-gateways/manual-payments.php:34 +#: includes/common/payment-gateways/manual-payments.php:163 +msgid "Manual Payments" +msgstr "Manuell betaling" + +#: includes/common/payment-gateways/_ideal.php:288 +msgid "iDEAL Simulator (for testing)" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:287 +msgid "ABN Amro Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:286 +msgid "Friesland Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:285 +msgid "Rabobank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:284 +msgid "ING Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:279 +msgid "Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:270 +msgid "To make it easier to pay for online products and services, the Dutch banking community has developed the iDEAL online payment method. iDEAL allows online payments to be made using online banking in EUR only." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:247 +#: includes/common/payment-gateways/_payway.php:199 +#: includes/common/payment-gateways/manual-payments.php:68 +msgid "Invoiced" +msgstr "Fakturert" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1016 +msgid "Coupon" +msgstr "Rabattkode" + +#: includes/common/payment-gateways/_ideal.php:77 +#: includes/common/payment-gateways/_ideal.php:250 +#: includes/common/payment-gateways/_payway.php:202 +msgid "iDEAL" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:76 +msgid "iDEAL (beta)" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:327 +msgid "Merchant Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:293 +#: includes/common/payment-gateways/_payway.php:302 +#: includes/common/payment-gateways/payfast.php:324 +msgid "Merchant ID" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:462 +msgid "eWay Rapid 3.0 Payments lets merchants recieve credit card payments through eWay without need for users to leave the shop. Note this gateway requires a valid SSL certificate configured for this site." +msgstr "" + +#: includes/common/payment-gateways/eway.php:452 +msgid "There was a problem connecting to eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/eway.php:432 +#: includes/common/payment-gateways/eway.php:437 +msgid "The url of the image can be hosted on your website and pass the secure https:// path of the image to be displayed at the top of the website. This is the second image block on the webpage and is restricted to 960px X 65px. A default secure image is used if none is supplied." +msgstr "" + +#: includes/common/payment-gateways/eway.php:431 +#: includes/common/payment-gateways/eway.php:436 +msgid "Company Logo (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:427 +msgid "The page footer text can be customised and populated below the customer's order details. Useful for contact information." +msgstr "" + +#: includes/common/payment-gateways/eway.php:426 +msgid "Page Footer (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:421 +msgid "Page Description (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:417 +#: includes/common/payment-gateways/eway.php:422 +msgid "This value is used to populate the browsers title bar at the top of the screen." +msgstr "" + +#: includes/common/payment-gateways/eway.php:416 +msgid "Page Title (optional)" +msgstr "Sidetittel (valgfri)" + +#: includes/common/payment-gateways/eway.php:412 +msgid "This will be displayed as the company the customer is purchasing from, including this is highly recommended." +msgstr "" + +#: includes/common/payment-gateways/eway.php:411 +msgid "Company Name" +msgstr "Firmanavn" + +#: includes/common/payment-gateways/eway.php:394 +msgid "Customer ID" +msgstr "Kundenummer" + +#: includes/common/payment-gateways/eway.php:381 +#: includes/common/payment-gateways/eway31.php:488 +msgid "Live API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway.php:371 +#: includes/common/payment-gateways/eway31.php:479 +msgid "Gateway Mode" +msgstr "" + +#: includes/common/payment-gateways/eway.php:354 +msgid "The Hosted Page is a webpage hosted on eWAY's side eliminating the need for merchants to capture, transmit or store credit card numbers. At the checkout time the merchant automatically redirects the customer to the Hosted Page where they would enter their details and have the transaction processed. Upon completion of the transaction the customer is redirected back to the MarketPress checkout confirmation page." +msgstr "" + +#: includes/common/payment-gateways/eway.php:314 +msgid "There was a problem with your credit card information: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:300 +msgid "Paid - The card has been processed - %s" +msgstr "Betalt - Kortet har blitt behandlet - %s" + +#: includes/common/payment-gateways/eway.php:253 +msgid "There was a problem setting up the transaction with eWay: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:245 +#: includes/common/payment-gateways/eway.php:289 +msgid "There was a problem parsing the response from eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:159 +#: includes/common/payment-gateways/eway.php:189 +#: includes/common/payment-gateways/paypal-chained-payments.php:634 +#: includes/common/payment-gateways/paypal-express.php:322 +#: includes/common/payment-gateways/paypal-express.php:473 +msgid "%s Store Purchase - Order ID: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:147 +#: includes/common/payment-gateways/eway.php:462 +msgid "eWay Shared Payments" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:214 +msgid "This is the email text to send to those who have made CubePoints checkouts. You should include your CubePoints instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:212 +#: includes/common/payment-gateways/free_orders.php:188 +#: includes/common/payment-gateways/manual-payments.php:154 +msgid "Order Confirmation Email" +msgstr "Ordrebekreftelse på epost" + +#: includes/common/payment-gateways/_cubepoints.php:207 +#: includes/common/payment-gateways/manual-payments.php:149 +msgid "Confirmation User Instructions" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:202 +#: includes/common/payment-gateways/manual-payments.php:144 +msgid "User Instructions" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:198 +#: includes/common/payment-gateways/free_orders.php:170 +#: includes/common/payment-gateways/manual-payments.php:139 +msgid "Enter a public name for this payment method that is displayed to users - No HTML" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:532 +#: includes/common/payment-gateways/_cubepoints.php:196 +#: includes/common/payment-gateways/free_orders.php:169 +#: includes/common/payment-gateways/manual-payments.php:138 +msgid "Method Name" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:187 +msgid "Accept CubePoints as payment(requires the CubePoints plugin)." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:140 +msgid "Sorry, but you do not appear to have enough points to complete this purchase!" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:124 +msgid "%s Store Purchase" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:79 +#: includes/common/payment-gateways/_cubepoints.php:171 +msgid "Your current points: " +msgstr "Din poengsaldo: " + +#: includes/common/payment-gateways/_cubepoints.php:133 +#: includes/common/payment-gateways/_cubepoints.php:197 +msgid "CubePoints" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:344 +msgid "Authorize.net AIM Checkout" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:331 +msgid "Custom API URL" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:332 +msgid "Many other gateways have Authorize.net API emulators. To use one of these gateways input their API post url here." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:322 +msgid "Request a delimited response from the payment gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:316 +msgid "Security: MD5 Hash" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:317 +msgid "The payment gateway generated MD5 hash value that can be used to authenticate the transaction response. Not needed because responses are returned using an SSL connection." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:306 +msgid "Customer Receipt Email Footer" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:296 +msgid "Customer Receipt Email Header" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:297 +#: includes/common/payment-gateways/paypal-payflow.php:446 +msgid "This text will appear as the header of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:282 +msgid "Encapsulation Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:283 +msgid "Authorize.net default is blank. Otherwise, get this from your credit card processor. If the transactions are going through, but getting strange responses, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:273 +msgid "Optional settings to control advanced options" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:224 +#: includes/common/payment-gateways/authorizenet-aim.php:272 +msgid "Advanced Settings" +msgstr "Avansert oppsett" + +#: includes/common/payment-gateways/authorizenet-aim.php:253 +msgid "Transaction Key" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:246 +msgid "Login ID" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:396 +msgid "Gateway Credentials" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:221 +msgid "Authorize.net AIM is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway. USD is the only currency supported by this gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:205 +msgid "There was a problem finalizing your purchase. %s Please go back and try again." +msgstr "Det var et problem med sluttføringen av ditt kjøp. %s Vennligst gå tilbake og prøv igjen." + +#: includes/common/payment-gateways/payfast.php:519 +#: includes/common/payment-gateways/paypal-chained-payments.php:218 +#: includes/common/payment-gateways/paypal-chained-payments.php:498 +#: includes/common/payment-gateways/paypal-express.php:822 +#: includes/common/payment-gateways/paypal-express.php:1092 +msgid "The payment has been completed, and the funds have been added successfully to your account balance." +msgstr "Betalingen er fullført, og beløpet er registrert på ditt kontoutdrag." + +#: includes/common/payment-gateways/paypal-payflow.php:233 +msgid "Please enter a valid credit card security code" +msgstr "Vennligst angi en gyldig kredittkort sikkerhetskode" + +#: includes/common/payment-gateways/paypal-payflow.php:224 +#: includes/public/class-mp-checkout.php:867 +msgid "Please enter a valid credit card number" +msgstr "Vennligst angi et gyldig kredittkortnummer" + +#: includes/common/payment-gateways/paypal-payflow.php:221 +msgid "Please enter your credit card number" +msgstr "Vennligst angi ditt kredittkortnummer" + +#: includes/common/payment-gateways/paypal-payflow.php:217 +msgid "Please enter your credit card security code" +msgstr "Vennligst angi ditt kredittskort sikkerhetskode" + +#: includes/common/payment-gateways/paypal-payflow.php:213 +msgid "Please select your credit card expiration date." +msgstr "Vennligst angi ditt kredittkorts utløpsdato." + +#: includes/common/payment-gateways/2checkout.php:299 +#: includes/common/payment-gateways/authorizenet-aim.php:50 +#: includes/common/payment-gateways/eway.php:148 +#: includes/common/payment-gateways/eway.php:298 +#: includes/common/payment-gateways/eway31.php:267 +#: includes/common/payment-gateways/paymill.php:46 +#: includes/common/payment-gateways/paypal-express.php:972 +#: includes/common/payment-gateways/paypal-payflow.php:60 +#: includes/common/payment-gateways/pin.php:46 +#: includes/common/payment-gateways/simplify.php:19 +#: includes/common/payment-gateways/stripe.php:46 +#: includes/common/payment-gateways/wepay.php:37 +msgid "Credit Card" +msgstr "Kredittkort" + +#: includes/common/payment-gateways/authorizenet-aim.php:49 +msgid "Authorize.net Checkout" +msgstr "Authorize.net Checkout" + +#: includes/common/payment-gateways/skrill.php:156 +#: includes/common/payment-gateways/stripe.php:293 +msgid "Selecting a currency other than that used for your store may cause problems at checkout." +msgstr "Valg av valutakode annet enn den som er valgt i butikkoppsettet kan skape problemer ved kassen." + +#: includes/common/payment-gateways/2checkout.php:352 +msgid "Seller ID" +msgstr "Selger ID" + +#: includes/common/payment-gateways/2checkout.php:340 +#: includes/common/payment-gateways/_ideal.php:311 +#: includes/common/payment-gateways/authorizenet-aim.php:234 +#: includes/common/payment-gateways/eway.php:376 +#: includes/common/payment-gateways/payfast.php:315 +#: includes/common/payment-gateways/paypal-chained-payments.php:368 +#: includes/common/payment-gateways/paypal-express.php:699 +#: includes/common/payment-gateways/paypal-payflow.php:391 +msgid "Live" +msgstr "Drift" + +#: includes/common/payment-gateways/2checkout.php:339 +#: includes/common/payment-gateways/authorizenet-aim.php:233 +#: includes/common/payment-gateways/eway.php:375 +#: includes/common/payment-gateways/paypal-chained-payments.php:367 +#: includes/common/payment-gateways/paypal-express.php:698 +#: includes/common/payment-gateways/paypal-payflow.php:390 +#: includes/common/shipping-modules/mp-fedex.php:263 +msgid "Sandbox" +msgstr "Sandkasse" + +#: includes/common/payment-gateways/2checkout.php:336 +#: includes/common/payment-gateways/_ideal.php:307 +#: includes/common/payment-gateways/authorizenet-aim.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:365 +#: includes/common/payment-gateways/paypal-express.php:695 +#: includes/common/payment-gateways/paypal-payflow.php:387 +#: includes/common/payment-gateways/wepay.php:130 +#: includes/common/shipping-modules/mp-fedex.php:260 +msgid "Mode" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:288 +#: includes/common/payment-gateways/mijireh.php:242 +#: includes/common/payment-gateways/mollie.php:212 +msgid "The order has been received" +msgstr "Ordren er registrert" + +#: includes/common/payment-gateways/2checkout.php:74 +#: includes/common/payment-gateways/2checkout.php:75 +#: includes/common/payment-gateways/2checkout.php:435 +msgid "2Checkout" +msgstr "2Checkout" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:306 +msgid "Confirm" +msgstr "Bekreft" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:218 +#: includes/common/class-mp-cart.php:974 includes/common/class-mp-cart.php:1354 +#: includes/common/template-functions.php:918 +msgid "Checkout" +msgstr "Til kasse" + +#: includes/common/template-functions.php:207 +msgid "Check Order Status" +msgstr "Sjekk ordrestatus" + +#: includes/common/template-functions.php:235 +msgid "View Products" +msgstr "Vis varer" + +#: includes/common/template-functions.php:263 +msgid "Visit Store" +msgstr "Besøk butikken" + +#: includes/common/template-functions.php:2912 +#: includes/multisite/template-functions.php:448 +msgid "Order By" +msgstr "Sortering" + +#: includes/common/template-functions.php:2887 +#: includes/multisite/template-functions.php:405 +msgid "Price (High to Low)" +msgstr "Pris (høy til lav)" + +#: includes/common/template-functions.php:2886 +#: includes/multisite/template-functions.php:404 +msgid "Price (Low to High)" +msgstr "Pris (lav til høy)" + +#: includes/common/template-functions.php:2881 +#: includes/multisite/template-functions.php:399 +msgid "Default" +msgstr "Standard" + +#: includes/common/template-functions.php:2858 +msgid "Show All" +msgstr "Vis alle" + +#: includes/common/class-mp-product.php:2048 +msgid "View Larger Image »" +msgstr "Vis større bilde »" + +#: includes/common/class-mp-product.php:979 +msgid "Out of Stock" +msgstr "Utsolgt" + +#: includes/common/template-functions.php:148 +msgid "Price: " +msgstr "Pris: " + +#: includes/multisite/template-functions.php:833 +msgid "No Tags" +msgstr "Ingen tagger" + +#: includes/common/template-functions.php:3162 +msgid "Uncategorized" +msgstr "Ikke kategorisert" + +#: includes/common/class-mp-cart.php:569 includes/common/class-mp-order.php:604 +#: includes/common/helpers.php:115 +msgid "Download" +msgstr "Last ned" + +#: includes/common/class-mp-cart.php:1353 +msgid "Empty Cart" +msgstr "Tøm handlekurv" + +#: includes/common/payment-gateways/_payway.php:291 +#: includes/common/payment-gateways/paypal-express.php:718 +#: includes/common/payment-gateways/paypal-payflow.php:423 +#: includes/common/shipping-modules/mp-ups.php:158 +#: includes/public/class-mp-checkout.php:1254 +#: includes/public/class-mp-checkout.php:1383 +msgid "Password" +msgstr "Passord" + +#: includes/common/payment-gateways/eway.php:387 +#: includes/common/payment-gateways/paypal-express.php:711 +#: includes/common/shipping-modules/mp-usps.php:185 +#: includes/public/class-mp-checkout.php:1249 +msgid "Username" +msgstr "Brukernavn" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:437 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:790 +msgid "Have a coupon code?" +msgstr "Bruk din kupongkode her" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:321 +#: includes/admin/class-mp-orders-admin.php:526 +#: includes/common/class-mp-cart.php:592 +msgid "Remove" +msgstr "Fjern" + +#: includes/admin/class-mp-ajax.php:316 +msgid "Quantity:" +msgstr "Antall" + +#: includes/admin/class-mp-products-admin.php:2140 +#: includes/admin/class-mp-products-admin.php:2387 +#: includes/common/shipping-modules/class-mp-shipping-api.php:507 +msgid "Extra Shipping Cost" +msgstr "Ekstra leveringskostnader" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:403 +msgid "Choose a Shipping Method:" +msgstr "Velg en leveringsmåte:" + +#: includes/admin/class-mp-products-admin.php:1691 +#: includes/admin/class-mp-products-admin.php:2131 +#: includes/admin/class-mp-products-admin.php:2378 +#: includes/common/shipping-modules/class-mp-shipping-api.php:228 +msgid "Ounces" +msgstr "Ounces" + +#: includes/admin/class-mp-products-admin.php:1684 +#: includes/admin/class-mp-products-admin.php:2123 +#: includes/admin/class-mp-products-admin.php:2369 +#: includes/admin/class-mp-setup-wizard.php:546 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:165 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +#: includes/common/shipping-modules/class-mp-shipping-api.php:227 +msgid "Pounds" +msgstr "Pounds" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:226 +msgid "Product Weight:" +msgstr "Varens vekt:" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:214 +msgid "Weight (Kilograms)" +msgstr "Vekt (kg)" + +#: includes/admin/widgets/ms-global-categories.php:82 +msgid "Number of Categories:" +msgstr "Antall kategorier:" + +#: includes/admin/widgets/ms-global-categories.php:72 +msgid "Product Count" +msgstr "Vareantall" + +#: includes/addons/class-mp-addons-list-table.php:20 +#: includes/admin/class-mp-product-attributes-admin.php:129 +#: includes/admin/class-mp-product-attributes-list-table.php:22 +#: includes/admin/class-mp-products-admin.php:2216 +#: includes/admin/class-mp-shortcode-builder.php:628 +#: includes/admin/class-mp-shortcode-builder.php:1415 +#: includes/admin/widgets/ms-global-categories.php:70 +#: includes/common/shipping-modules/mp-fedex.php:395 +#: includes/common/shipping-modules/mp-ups.php:202 +#: includes/common/shipping-modules/mp-usps.php:243 +#: includes/public/class-mp-checkout.php:314 +msgid "Name" +msgstr "Navn" + +#: includes/admin/widgets/ms-global-categories.php:67 +msgid "Order Categories By:" +msgstr "Sorter kategorier med:" + +#: includes/admin/widgets/ms-global-categories.php:24 +#: includes/admin/widgets/ms-global-categories.php:50 +msgid "Global Product Categories" +msgstr "Globale varekategorier" + +#: includes/admin/widgets/ms-global-categories.php:15 +msgid "Global Product Category List" +msgstr "Global varekategoriliste" + +#: includes/admin/widgets/ms-global-categories.php:13 +msgid "Displays a network-wide HTML list of product categories from network MarketPress stores." +msgstr "Viser en global HTML liste med produktkategorier fra hele MarketPress butikknettverket." + +#: includes/admin/widgets/ms-global-tag-cloud.php:24 +#: includes/admin/widgets/ms-global-tag-cloud.php:45 +msgid "Global Product Tags" +msgstr "Global varetag" + +#: includes/admin/widgets/ms-global-tag-cloud.php:15 +msgid "Global Product Tag Cloud" +msgstr "Global varetag sky" + +#: includes/admin/class-mp-shortcode-builder.php:947 +#: includes/admin/widgets/ms-global-product-list.php:173 +msgid "Excerpt" +msgstr "Unntak" + +#: includes/admin/widgets/ms-global-product-list.php:169 +msgid "Content To Show:" +msgstr "Innhold som skal vises:" + +#: includes/admin/widgets/ms-global-product-list.php:140 +msgid "Limit To Product Tag:" +msgstr "Begrens til vare Tag:" + +#: includes/admin/widgets/ms-global-product-list.php:132 +msgid "Limit To Product Category:" +msgstr "Begrens til varegruppe:" + +#: includes/admin/widgets/ms-global-product-list.php:72 +msgid "Global Products" +msgstr "Globale varer" + +#: includes/admin/widgets/ms-global-product-list.php:16 +msgid "Global Product List" +msgstr "Global varekatalog" + +#: includes/admin/widgets/ms-global-product-list.php:14 +msgid "Shows a customizable global list of products from network MarketPress stores." +msgstr "Viser en tilpasset global varekatalog fra nettverksbutikker." + +#: includes/common/class-mp-product.php:974 +#: includes/multisite/template-functions.php:731 +msgid "Buy Now »" +msgstr "Kjøp nå »" + +#: includes/admin/widgets/ms-global-tag-cloud.php:13 +msgid "Displays global most used product tags in cloud format from network MarketPress stores." +msgstr "Viser de mest brukte produktetiketter fra den globale MarketPress butikken i skyformat." + +#: includes/multisite/class-mp-admin-multisite.php:438 +msgid "Theme Permissions" +msgstr "Tematillatelser" + +#: includes/multisite/class-mp-admin-multisite.php:402 +#: includes/multisite/class-mp-admin-multisite.php:448 +msgid "No Access" +msgstr "Ingen tilgang" + +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:120 +msgid "Pro Site Level" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:401 +#: includes/multisite/class-mp-admin-multisite.php:447 +msgid "All Can Use" +msgstr "Kan brukes av alle" + +#: includes/multisite/class-mp-admin-multisite.php:390 +msgid "Gateway Permissions" +msgstr "Gateway tillatelser" + +#: includes/multisite/class-mp-admin-multisite.php:375 +msgid "Select a Gateway" +msgstr "Velg måte" + +#: includes/multisite/class-mp-admin-multisite.php:350 +msgid "Global Gateway" +msgstr "Global måte" + +#. Plugin Name of the plugin/theme +msgid "MarketPress" +msgstr "MarketPress" + +#: includes/admin/widgets/product-tag-cloud.php:7 +msgid "Your most used product tags in cloud format from your MarketPress store." +msgstr "Dine mest brukte produktetiketter i skyformat fra din MarketPress butikk." + +#: includes/admin/widgets/categories.php:79 +msgid "Show hierarchy" +msgstr "" + +#: includes/admin/widgets/categories.php:76 +#: includes/admin/widgets/ms-global-categories.php:92 +msgid "Show product counts" +msgstr "Vis vareantall" + +#: includes/admin/widgets/categories.php:73 +msgid "Show as dropdown" +msgstr "Vis som nedtrekksboks" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:710 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:736 +#: includes/admin/widgets/categories.php:30 +msgid "Select Category" +msgstr "Velg kategori" + +#: includes/admin/widgets/categories.php:7 +msgid "A list or dropdown of product categories from your MarketPress store." +msgstr "En liste eller en nedtrekksliste med varekategorier fra din MarketPress butikk." + +#: includes/admin/widgets/product-list.php:250 +msgid "Show Buy Button" +msgstr "Vis knapp for \"Kjøp nå\"" + +#: includes/admin/widgets/ms-global-product-list.php:183 +#: includes/admin/widgets/product-list.php:244 +msgid "Show Price" +msgstr "Vis pris" + +#: includes/admin/widgets/product-list.php:241 +msgid "Show Excerpt" +msgstr "Vis utdrag" + +#: includes/admin/widgets/ms-global-product-list.php:155 +#: includes/admin/widgets/product-list.php:238 +msgid "Thumbnail Size:" +msgstr "Miniatyrbildets størrelse" + +#: includes/admin/widgets/ms-global-product-list.php:153 +#: includes/admin/widgets/product-list.php:237 +msgid "Show Thumbnail" +msgstr "Vis miniatyrbilde" + +#: includes/admin/widgets/ms-global-product-list.php:147 +#: includes/admin/widgets/product-list.php:233 +msgid "Display Settings" +msgstr "Visningsoppsett" + +#: includes/admin/widgets/ms-global-product-list.php:136 +#: includes/admin/widgets/ms-global-product-list.php:144 +#: includes/admin/widgets/product-list.php:230 +msgid "Enter the Slug" +msgstr "Angi Slug" + +#: includes/admin/widgets/product-list.php:228 +#: includes/common/template-functions.php:894 +msgid "Tag" +msgstr "Etikett" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:686 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:712 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:739 +#: includes/admin/class-mp-shortcode-builder.php:796 +#: includes/admin/widgets/product-list.php:227 +#: includes/common/template-functions.php:886 +#: includes/common/template-functions.php:2907 +msgid "Category" +msgstr "Kategori" + +#: includes/admin/widgets/product-list.php:226 +msgid "No Filter" +msgstr "Ingen filter" + +#: includes/admin/widgets/product-list.php:224 +msgid "Taxonomy Filter:" +msgstr "Taksanomifilter:" + +#: includes/admin/widgets/ms-global-product-list.php:108 +#: includes/admin/widgets/product-list.php:209 +msgid "Order Products By:" +msgstr "Sorter varer etter:" + +#: includes/admin/widgets/ms-global-product-list.php:101 +#: includes/admin/widgets/product-list.php:206 +msgid "Number of Products:" +msgstr "Antall varer:" + +#: includes/admin/widgets/ms-global-product-list.php:98 +#: includes/admin/widgets/product-list.php:204 +msgid "List Settings" +msgstr "Listeoppsett" + +#: includes/admin/widgets/product-list.php:177 +msgid "Our Products" +msgstr "Våre varer" + +#: includes/admin/widgets/product-list.php:144 +#: includes/common/template-functions.php:2070 +#: includes/common/template-functions.php:2347 +#: includes/multisite/template-functions.php:303 +#: includes/multisite/template-functions.php:623 +msgid "No Products" +msgstr "Beklager, men denne varegruppen inneholder ingen varer!" + +#: includes/admin/widgets/product-list.php:8 +msgid "Product List" +msgstr "Varekatalog" + +#: includes/admin/widgets/product-list.php:7 +msgid "Shows a customizable list of products from your MarketPress store." +msgstr "Viser en tilpasset produktliste fra din MarketPress butikk." + +#: includes/admin/widgets/cart.php:75 includes/admin/widgets/categories.php:82 +#: includes/admin/widgets/product-list.php:253 +#: includes/admin/widgets/product-tag-cloud.php:57 +msgid "Only show on store pages" +msgstr "Vis kun på butikksider" + +#: includes/admin/widgets/cart.php:65 +#: includes/admin/widgets/ms-global-product-list.php:92 +#: includes/admin/widgets/product-list.php:200 +msgid "Custom Text:" +msgstr "Tilpasset text:" + +#: includes/admin/widgets/cart.php:64 includes/admin/widgets/categories.php:69 +#: includes/admin/widgets/ms-global-categories.php:59 +#: includes/admin/widgets/ms-global-product-list.php:87 +#: includes/admin/widgets/ms-global-tag-cloud.php:49 +#: includes/admin/widgets/product-list.php:199 +#: includes/admin/widgets/product-tag-cloud.php:49 +msgid "Title:" +msgstr "Tittel:" + +#: includes/admin/widgets/cart.php:7 +msgid "Shows dynamic shopping cart contents along with a checkout button for your MarketPress store." +msgstr "Viser innholdet i handlekurven dynamisk sammen med en knapp for utsjekking fra din MarketPress butikk." + +#: includes/admin/widgets/product-tag-cloud.php:8 +msgid "Product Tag Cloud" +msgstr "Vis etikettsky" + +#: includes/admin/class-mp-setup-wizard.php:539 +#: includes/admin/class-mp-setup-wizard.php:575 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:163 +msgid "Measurement System" +msgstr "Måleenheter" + +#: includes/admin/class-mp-setup-wizard.php:616 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:149 +msgid "Select Shipping Options" +msgstr "Velg leveringsalternativer" + +#: includes/admin/class-mp-setup-wizard.php:596 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:129 +msgid "Calculated Options" +msgstr "Kalkulerte alternativer" + +#: includes/admin/class-mp-setup-wizard.php:582 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:115 +msgid "No Shipping" +msgstr "Ingen levering" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:110 +msgid "EU" +msgstr "EU" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:109 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:93 +msgid "All" +msgstr "Alle" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:92 +msgid "Select:" +msgstr "Velg:" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:185 +msgid "Store Pages" +msgstr "Butikksider" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:223 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:256 +msgid "Order Shipped" +msgstr "Ordre sendt" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:60 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:95 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:128 +#: marketpress.php:266 +msgid "New Order" +msgstr "Ny bestilling" + +#: includes/admin/class-mp-dashboard-widgets.php:314 +msgid "Email Notifications" +msgstr "Varsler på epost" + +#: includes/admin/class-mp-pages-admin.php:59 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:200 +msgid "Products List" +msgstr "Varekatalog" + +#: includes/admin/class-mp-pages-admin.php:58 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:190 +msgid "Store Base" +msgstr "Hovedside" + +#: includes/admin/class-mp-product-attributes-admin.php:108 +#: includes/admin/class-mp-shortcode-builder.php:635 +#: includes/admin/class-mp-shortcode-builder.php:708 +#: includes/admin/class-mp-shortcode-builder.php:875 +#: includes/admin/class-mp-shortcode-builder.php:1319 +#: includes/admin/class-mp-shortcode-builder.php:1422 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:526 +#: includes/admin/widgets/ms-global-categories.php:78 +#: includes/admin/widgets/ms-global-product-list.php:127 +#: includes/admin/widgets/product-list.php:221 +msgid "Ascending" +msgstr "Stigende" + +#: includes/admin/class-mp-product-attributes-admin.php:109 +#: includes/admin/class-mp-shortcode-builder.php:636 +#: includes/admin/class-mp-shortcode-builder.php:709 +#: includes/admin/class-mp-shortcode-builder.php:876 +#: includes/admin/class-mp-shortcode-builder.php:1320 +#: includes/admin/class-mp-shortcode-builder.php:1423 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:525 +#: includes/admin/widgets/ms-global-categories.php:75 +#: includes/admin/widgets/ms-global-product-list.php:124 +#: includes/admin/widgets/product-list.php:220 +msgid "Descending" +msgstr "Synkende" + +#: includes/admin/class-mp-shortcode-builder.php:637 +#: includes/admin/class-mp-shortcode-builder.php:695 +#: includes/admin/class-mp-shortcode-builder.php:862 +#: includes/admin/class-mp-shortcode-builder.php:1306 +#: includes/admin/class-mp-shortcode-builder.php:1424 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:518 +#: includes/admin/widgets/ms-global-product-list.php:121 +#: includes/admin/widgets/product-list.php:218 +msgid "Random" +msgstr "Tilfeldig" + +#: includes/admin/class-mp-shortcode-builder.php:694 +#: includes/admin/class-mp-shortcode-builder.php:861 +#: includes/admin/class-mp-shortcode-builder.php:1305 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:517 +#: includes/admin/widgets/ms-global-product-list.php:119 +#: includes/admin/widgets/product-list.php:216 +msgid "Product Price" +msgstr "Varepris" + +#: includes/admin/class-mp-shortcode-builder.php:693 +#: includes/admin/class-mp-shortcode-builder.php:860 +#: includes/admin/class-mp-shortcode-builder.php:1304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:516 +#: includes/admin/widgets/ms-global-product-list.php:117 +#: includes/admin/widgets/product-list.php:215 +msgid "Number of Sales" +msgstr "Antall solgt" + +#: includes/admin/class-mp-shortcode-builder.php:692 +#: includes/admin/class-mp-shortcode-builder.php:859 +#: includes/admin/class-mp-shortcode-builder.php:1303 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:515 +#: includes/admin/widgets/product-list.php:214 +msgid "Product Author" +msgstr "Varens publiserer" + +#: includes/admin/class-mp-shortcode-builder.php:691 +#: includes/admin/class-mp-shortcode-builder.php:858 +#: includes/admin/class-mp-shortcode-builder.php:1302 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:514 +#: includes/admin/widgets/product-list.php:213 +msgid "Product ID" +msgstr "Varenummer (SKU)" + +#: includes/admin/class-mp-shortcode-builder.php:690 +#: includes/admin/class-mp-shortcode-builder.php:857 +#: includes/admin/class-mp-shortcode-builder.php:1301 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:513 +#: includes/admin/widgets/ms-global-product-list.php:113 +#: includes/admin/widgets/product-list.php:212 +msgid "Publish Date" +msgstr "Publiseringsdato" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:430 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:726 +msgid "Width" +msgstr "Bredde" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:439 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:735 +msgid "Height" +msgstr "Høyde" + +#: includes/admin/class-mp-product-attributes-admin.php:88 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:402 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:698 +msgid "Custom" +msgstr "Tilpasset" + +#: includes/common/class-mp-product.php:179 +#: includes/common/class-mp-product.php:992 +#: includes/common/class-mp-product.php:1000 +#: includes/multisite/template-functions.php:579 +msgid "Buy Now" +msgstr "Kjøp nå" + +#: includes/common/class-mp-product.php:175 +#: includes/common/class-mp-product.php:990 +#: includes/common/class-mp-product.php:998 +msgid "Add To Cart" +msgstr "Legg i handlekurv" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:807 +msgid "Store Style" +msgstr "Butikkens stil" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1021 +msgid "Edit Coupon" +msgstr "Rediger kupong" + +#: includes/addons/mp-coupons/class-mp-coupon.php:580 +#: includes/admin/class-mp-ajax.php:238 +#: includes/admin/class-mp-products-admin.php:1532 +msgid "Unlimited" +msgstr "Ubegrenset" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1198 +msgid "Remaining Uses" +msgstr "Gjennstående bruk" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1197 +msgid "Used" +msgstr "Brukt" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:752 +#: includes/admin/class-mp-products-admin.php:2343 +msgid "Start Date" +msgstr "Startdato" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:598 +msgid "Coupon Code" +msgstr "Kupongkode" + +#: includes/admin/class-mp-orders-admin.php:444 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:284 +msgid "Save Changes" +msgstr "Lagre endringer" + +#: includes/admin/class-mp-pages-admin.php:57 +#: includes/admin/class-mp-shortcode-builder.php:716 +#: includes/admin/class-mp-shortcode-builder.php:727 +#: includes/admin/class-mp-shortcode-builder.php:883 +#: includes/admin/class-mp-shortcode-builder.php:894 +#: includes/admin/class-mp-shortcode-builder.php:946 +#: includes/admin/class-mp-shortcode-builder.php:956 +#: includes/admin/class-mp-shortcode-builder.php:1006 +#: includes/admin/class-mp-shortcode-builder.php:1327 +#: includes/admin/class-mp-shortcode-builder.php:1338 +#: includes/admin/store-settings/class-mp-store-settings-general.php:357 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:270 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:108 +#: includes/admin/widgets/ms-global-product-list.php:172 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:94 +msgid "None" +msgstr "Ingen" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:352 +msgid "Google Analytics Ecommerce Tracking" +msgstr "Google Analytics e-handelsporing" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:310 +msgid "This option turns MarketPress into more of a product listing plugin, disabling shopping carts, checkout, and order management. This is useful if you simply want to list items you can buy in a store somewhere else, optionally linking the \"Buy Now\" buttons to an external site. Some examples are a car dealership, or linking to songs/albums in itunes, or linking to products on another site with your own affiliate links." +msgstr "Dette valget gjør MarketPress til en produktkatalog, uten handlemulighet og ordrebehandling. Dette er nyttig dersom du kun ønsker å vise varer som kan handles et annet sted, f.eks ved å linke \"Kjøp nå\" knappent til en ekstern nettside. Et eksempel kan være en bilbutikk, eller linke til en sang eller album i iTunes, eller linke til produkter på et annet nettsted med din annonsørkode." + +#: includes/admin/store-settings/class-mp-store-settings-general.php:304 +msgid "Whether or not customers must be registered and logged in to checkout. (Not recommended: Enabling this can lower conversions)" +msgstr "Velg om kunder må være registrert og innlogget for å gå til kassen. (Ikke anbefalt: Aktivere dette kan senke konverteringen)" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:258 +msgid "How many times may a customer download a file they have purchased? (It's best to set this higher than one in case they have any problems downloading)" +msgstr "Hvor mange ganger skal en kunde kunne laste ned en fil de har kjøpt? (Det anbefales å sette dette høyere enn en, i tilfellet det skulle oppstå problemer med nedlastingen)" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:257 +msgid "Maximum Downloads" +msgstr "Maksimalt tillatte nedlastinger" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:298 +msgid "This will set the product to draft if inventory of all variations is gone." +msgstr "Dette vil sette varen til kladd dersom lageret av alle varianter er tomt." + +#: includes/admin/store-settings/class-mp-store-settings-general.php:288 +msgid "At what low stock count do you want to be warned for products you have enabled inventory tracking for?" +msgstr "På hvilket minimum lagernivå ønsker du å bli varslet på varer du har aktivert lagerhold på?" + +#: includes/admin/class-mp-dashboard-widgets.php:208 +#: includes/admin/store-settings/class-mp-store-settings-general.php:287 +msgid "Inventory Warning Threshold" +msgstr "Varslingsnivå varebeholdning" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:282 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:542 +msgid "Miscellaneous Settings" +msgstr "Forskjellig oppsett" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:429 +#: includes/multisite/class-mp-admin-multisite.php:247 +msgid "Show Decimal in Prices" +msgstr "Vis desimaler i priser" + +#: includes/admin/class-mp-setup-wizard.php:451 +#: includes/admin/store-settings/class-mp-store-settings-general.php:403 +#: includes/multisite/class-mp-admin-multisite.php:221 +msgid "Currency Symbol Position" +msgstr "Plassering av valutasymbol" + +#: includes/admin/class-mp-setup-wizard.php:444 +#: includes/admin/store-settings/class-mp-store-settings-general.php:396 +msgid "Store Currency" +msgstr "Butikkens valuta" + +#: includes/admin/class-mp-setup-wizard.php:429 +#: includes/admin/store-settings/class-mp-store-settings-general.php:381 +msgid "Currency Settings" +msgstr "Valutaoppsett" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:516 +msgid "Please see your local tax laws. Note if this is enabled and a downloadable only cart, rates will be the default for your base location." +msgstr "Vennligst sjekk dine lokale mva-regler. Merk at hvis dette er aktivert og du kun har nedlastbare varer, vil standard satser for ditt land bli brukt." + +#: includes/admin/class-mp-setup-wizard.php:529 +msgid "Apply Tax to Downloadable Products?" +msgstr "Legge mva på nedlastbare produkter?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:498 +msgid "Enabling this option allows you to enter and show all prices inclusive of tax, while still listing the tax total as a line item in shopping carts. Please see your local tax laws." +msgstr "Ved å aktivere dette valget kan du angi og vise alle priser inklusiv mva, men fortsatt vise mva totaler som egen linje i handlevognen. Vennligst sjekk dine lokale mva-regler." + +#: includes/admin/class-mp-setup-wizard.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:497 +msgid "Enter Prices Inclusive of Tax?" +msgstr "Angi priser inklusive mva?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:492 +msgid "Please see your local tax laws. Most areas charge tax on shipping fees." +msgstr "Vennligst sjekk dine lokale mva-regler. De fleste steder skal det belastes mva på leveringskostnader." + +#: includes/admin/class-mp-setup-wizard.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:491 +msgid "Apply Tax To Shipping Fees?" +msgstr "Mva på leveringskostnader?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:674 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:565 +#: includes/common/payment-gateways/authorizenet-aim.php:291 +#: includes/common/payment-gateways/authorizenet-aim.php:326 +#: includes/common/payment-gateways/payfast.php:347 +msgid "No" +msgstr "Nei" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:675 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:759 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:512 +#: includes/admin/class-mp-setup-wizard.php:518 +#: includes/admin/class-mp-setup-wizard.php:524 +#: includes/admin/class-mp-setup-wizard.php:530 +#: includes/admin/class-mp-setup-wizard.php:564 +#: includes/admin/store-settings/class-mp-store-settings-general.php:232 +#: includes/admin/store-settings/class-mp-store-settings-general.php:299 +#: includes/admin/store-settings/class-mp-store-settings-general.php:305 +#: includes/admin/store-settings/class-mp-store-settings-general.php:311 +#: includes/admin/store-settings/class-mp-store-settings-general.php:317 +#: includes/admin/store-settings/class-mp-store-settings-general.php:328 +#: includes/admin/store-settings/class-mp-store-settings-general.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:341 +#: includes/admin/store-settings/class-mp-store-settings-general.php:348 +#: includes/admin/store-settings/class-mp-store-settings-general.php:367 +#: includes/admin/store-settings/class-mp-store-settings-general.php:493 +#: includes/admin/store-settings/class-mp-store-settings-general.php:499 +#: includes/admin/store-settings/class-mp-store-settings-general.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:556 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:375 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:381 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:387 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:474 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:493 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:532 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:574 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:606 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:664 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:670 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:677 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:683 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:689 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:763 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:774 +#: includes/common/payment-gateways/_bitpay.php:250 +#: includes/common/payment-gateways/_bitpay.php:257 +#: includes/common/payment-gateways/_bitpay.php:264 +#: includes/common/payment-gateways/authorizenet-aim.php:290 +#: includes/common/payment-gateways/authorizenet-aim.php:325 +#: includes/common/payment-gateways/free_orders.php:160 +#: includes/common/payment-gateways/payfast.php:346 +#: includes/common/payment-gateways/paymill.php:162 +#: includes/common/payment-gateways/paypal-payflow.php:441 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-checkbox.php:22 +msgid "Yes" +msgstr "Ja" + +#: includes/admin/class-mp-setup-wizard.php:492 +#: includes/admin/store-settings/class-mp-store-settings-general.php:472 +msgid "%s Tax Rate" +msgstr "%s mva-sats" + +#: includes/admin/class-mp-setup-wizard.php:467 +#: includes/admin/store-settings/class-mp-store-settings-general.php:449 +msgid "Tax Settings" +msgstr "Mva oppsett" + +#: includes/admin/class-mp-setup-wizard.php:370 +#: includes/admin/store-settings/class-mp-store-settings-general.php:624 +msgid "Base Zip/Postal Code" +msgstr "Postnummer" + +#: includes/admin/class-mp-setup-wizard.php:354 +#: includes/admin/store-settings/class-mp-store-settings-general.php:608 +msgid "Base State/Province/Region" +msgstr "Fylke/Provins/Region" + +#: includes/admin/class-mp-setup-wizard.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:589 +msgid "Base Country" +msgstr "Hovedlokasjon (land)" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:582 +msgid "Location Settings" +msgstr "Lokale oppsett" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:195 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:800 +#: includes/multisite/class-mp-admin-multisite.php:172 +msgid "General Settings" +msgstr "Generelt oppsett" + +#: includes/admin/class-mp-products-admin.php:1945 +#: includes/admin/class-mp-products-admin.php:2185 +#: includes/admin/class-mp-store-settings-admin.php:111 +#: includes/admin/class-mp-store-settings-admin.php:266 +msgid "General" +msgstr "Generelt" + +#: includes/admin/class-mp-store-settings-admin.php:242 +msgid "Importers" +msgstr "Importer" + +#: includes/admin/class-mp-store-settings-admin.php:115 +#: includes/admin/class-mp-store-settings-admin.php:234 +msgid "Payments" +msgstr "Betaling" + +#: includes/admin/class-mp-dashboard-widgets.php:313 +#: includes/admin/class-mp-store-settings-admin.php:112 +#: includes/admin/class-mp-store-settings-admin.php:222 +msgid "Presentation" +msgstr "Presentasjon" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:916 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1015 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1018 +#: includes/admin/class-mp-dashboard-widgets.php:305 marketpress.php:702 +msgid "Coupons" +msgstr "Kuponger" + +#: includes/admin/class-mp-admin.php:251 +msgid "Download »" +msgstr "Last ned »" + +#: includes/admin/class-mp-admin.php:245 +#: includes/admin/class-mp-exporter-orders.php:170 +msgid "All Statuses" +msgstr "Alle statuser" + +#: includes/admin/class-mp-admin.php:209 +#: includes/admin/class-mp-exporter-orders.php:150 +#: includes/admin/class-mp-exporter-orders.php:178 +msgid "Export Orders" +msgstr "Eksporter ordrer" + +#: includes/admin/class-mp-admin.php:228 +msgid "Show all dates" +msgstr "Vis alle datoer" + +#: includes/admin/class-mp-orders-admin.php:947 +msgid "Change Status" +msgstr "Endre status" + +#: includes/admin/class-mp-orders-admin.php:287 +msgid "Order Notes" +msgstr "Ordrenotat" + +#: includes/admin/class-mp-orders-admin.php:478 +msgid "Other" +msgstr "Annet" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:205 +msgid "Subtotal" +msgstr "Total" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:84 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:87 +#: includes/admin/class-mp-products-admin.php:1737 +#: includes/common/class-mp-cart.php:1409 +#: includes/common/class-mp-product.php:559 +msgid "Quantity" +msgstr "Antall" + +#: includes/common/helpers.php:93 +msgid "Item" +msgstr "Vare" + +#: includes/common/class-mp-order.php:1050 +msgid "Current Status" +msgstr "Nåværende status" + +#: includes/admin/class-mp-orders-admin.php:297 +msgid "Order Actions" +msgstr "Ordrehendelser" + +#: includes/common/class-mp-product.php:1084 +msgid "More Info »" +msgstr "Mer informasjon »" + +#: includes/common/class-mp-product.php:2313 +msgid "Low Product Inventory Notification" +msgstr "Varsel om lavt lagernivå" + +#: includes/common/class-mp-order.php:338 includes/common/data.php:154 +msgid "New Order Notification: ORDERID" +msgstr "Ny ordrebekreftelse: ORDERID" + +#: includes/common/helpers.php:259 +msgid "Your payment for this order is complete." +msgstr "Din betaling er fullført." + +#: includes/common/helpers.php:261 +msgid "Your payment for this order is not yet complete. Here is the latest status:" +msgstr "Din betaling for denne bestillingen er ikke fullført. Her er siste status:" + +#: includes/common/helpers.php:256 +msgid "Payment Total:" +msgstr "Totalt til betaling:" + +#: includes/common/helpers.php:253 +msgid "Transaction ID:" +msgstr "Transaksjonsnummer:" + +#: includes/common/helpers.php:249 +msgid "Payment Type:" +msgstr "Betalingstype:" + +#: includes/common/helpers.php:246 +msgid "Payment Method:" +msgstr "Betalingsmåte:" + +#: includes/common/helpers.php:242 +msgid "Order Notes:" +msgstr "Ordrenotat:" + +#: includes/common/helpers.php:237 +msgid "Special Instructions:" +msgstr "Spesielle instruksjoner:" + +#: includes/common/helpers.php:232 +msgid "Tracking Number:" +msgstr "Sporingsnummer:" + +#: includes/common/helpers.php:223 includes/common/helpers.php:226 +#: includes/common/helpers.php:228 +#: includes/common/shipping-modules/class-mp-shipping-api.php:406 +#: includes/common/shipping-modules/class-mp-shipping-api.php:428 +msgid "Shipping Method:" +msgstr "Leveringsmåte:" + +#: includes/common/helpers.php:168 +msgid "No shipping required for this order." +msgstr "Levering er ikke nødvendig for denne ordren." + +#: includes/common/helpers.php:155 +msgid "Order Total:" +msgstr "Ordretotal:" + +#: includes/common/class-mp-order.php:1025 +msgid "Taxes:" +msgstr "Beregnet mva :" + +#: includes/common/class-mp-order.php:1032 includes/common/helpers.php:144 +msgid "Shipping:" +msgstr "Levering:" + +#: includes/public/class-mp-checkout.php:367 +msgid "Street address, P.O. box, company name, c/o" +msgstr "Gateadresse, postboks, firmanavn, c/o" + +#: includes/admin/class-mp-orders-admin.php:314 +msgid "Shipping Info" +msgstr "Leveringsadresse" + +#: includes/public/class-mp-public.php:740 +msgid "Whoops, there was a problem loading up this file for your download. Please contact us for help." +msgstr "Opps, det oppstod et problem ved opplasting av denne filen. Vennligst kontakt oss for hjelp." + +#: includes/public/class-mp-public.php:683 +msgid "Sorry, our records show you've downloaded this file %d out of %d times allowed. Please contact us if you still need help." +msgstr "Beklager, våre kartoteker viser at du har lastet ned denne filen %d av %d tillatte ganger. Vennligst kontakt oss dersom du fortsatt trenger hjelp." + +#: includes/public/class-mp-public.php:634 +msgid "Sorry, your order has been marked as unpaid." +msgstr "Beklager, din bestilling er merket som ubetalt." + +#: includes/public/class-mp-public.php:629 +msgid "Sorry, the link is invalid for this download." +msgstr "Beklager, nedlastingslinken er ikke gyldig." + +#: includes/admin/class-mp-exporter-orders.php:15 +#: includes/admin/class-mp-products-admin.php:1172 +msgid "Cheatin’ uh?" +msgstr "Jukser litt’ uh?" + +#: includes/public/class-mp-public.php:407 +#: includes/public/class-mp-short-codes.php:128 +msgid "Please enter a valid email address." +msgstr "" + +#: includes/admin/class-mp-ajax.php:191 +#: includes/admin/class-mp-products-admin.php:1821 +#: includes/admin/class-mp-products-admin.php:2010 +#: includes/admin/class-mp-products-admin.php:2267 +msgid "File URL" +msgstr "Filadresse (URL)" + +#: includes/admin/class-mp-products-admin.php:1842 +msgid "External Link" +msgstr "Ekstern kobling" + +#: includes/admin/class-mp-products-admin.php:2177 +msgid "Add Variation" +msgstr "Ny variant" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:126 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:289 +msgid "Inventory" +msgstr "Lagerstatus" + +#: includes/admin/class-mp-products-admin.php:438 +#: includes/admin/class-mp-products-admin.php:578 +#: includes/admin/class-mp-products-admin.php:1552 +#: includes/admin/class-mp-products-admin.php:2053 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:134 +msgid "Sale Price" +msgstr "Tilbudspris" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "Variation Name" +msgstr "Variasjonsnavn" + +#: includes/admin/class-mp-products-admin.php:1931 +msgid "Product Details" +msgstr "Varedetaljer" + +#: includes/admin/class-mp-product-attributes-list-table.php:33 +msgid "Delete" +msgstr "Slett" + +#: includes/admin/class-mp-orders-admin.php:1057 +msgid "Trashed" +msgstr "Kastet" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:231 +#: includes/admin/class-mp-orders-admin.php:1015 +#: includes/common/class-mp-order.php:1052 includes/common/helpers.php:97 +msgid "Total" +msgstr "Total" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1196 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:210 +#: includes/admin/class-mp-orders-admin.php:1014 +msgid "Discount" +msgstr "Rabatt" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:221 +#: includes/admin/class-mp-orders-admin.php:1013 +#: includes/common/payment-gateways/_ideal.php:148 +#: includes/common/payment-gateways/_payway.php:134 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:108 +msgid "Tax" +msgstr "Mva" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:216 +#: includes/admin/class-mp-orders-admin.php:1012 +#: includes/admin/class-mp-products-admin.php:1958 +#: includes/admin/class-mp-products-admin.php:2198 +#: includes/admin/class-mp-store-settings-admin.php:114 +#: includes/admin/class-mp-store-settings-admin.php:230 +#: includes/common/class-mp-cart.php:717 includes/common/helpers.php:168 +#: includes/common/payment-gateways/_ideal.php:137 +#: includes/common/payment-gateways/_payway.php:116 +#: includes/public/class-mp-checkout.php:1304 +msgid "Shipping" +msgstr "Levering" + +#: includes/admin/class-mp-orders-admin.php:1011 +msgid "Items" +msgstr "Varer" + +#: includes/admin/class-mp-orders-admin.php:1010 +msgid "From" +msgstr "Fra" + +#: includes/admin/class-mp-exporter-orders.php:154 +#: includes/admin/class-mp-orders-admin.php:1009 +#: includes/common/class-mp-gdpr.php:370 +msgid "Order Date" +msgstr "Ordredato" + +#: includes/admin/class-mp-orders-admin.php:1008 +#: includes/common/class-mp-gdpr.php:366 +#: includes/common/template-functions.php:2134 +msgid "Order ID" +msgstr "Ordrenummer" + +#: includes/addons/class-mp-addons-list-table.php:22 +#: includes/admin/class-mp-orders-admin.php:1007 +msgid "Status" +msgstr "Status" + +#: includes/admin/class-mp-orders-admin.php:1155 +msgid "N/A" +msgstr "Ikke tilgjengelig" + +#: includes/admin/class-mp-dashboard-widgets.php:243 +#: includes/admin/class-mp-products-admin.php:464 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:142 +msgid "Sales" +msgstr "Salg" + +#: includes/admin/class-mp-products-admin.php:463 +msgid "Stock" +msgstr "Lager" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:85 +#: includes/admin/class-mp-ajax.php:176 includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:434 +#: includes/admin/class-mp-products-admin.php:462 +#: includes/admin/class-mp-products-admin.php:576 +#: includes/admin/class-mp-products-admin.php:1519 +#: includes/admin/class-mp-products-admin.php:1569 +#: includes/admin/class-mp-products-admin.php:1950 +#: includes/admin/class-mp-products-admin.php:2059 +#: includes/admin/class-mp-products-admin.php:2190 +#: includes/admin/class-mp-products-admin.php:2330 +#: includes/common/class-mp-cart.php:1415 includes/common/helpers.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:130 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:276 +msgid "Price" +msgstr "Pris" + +#: includes/admin/class-mp-ajax.php:173 +#: includes/admin/class-mp-products-admin.php:461 +#: includes/admin/class-mp-products-admin.php:1972 +#: includes/admin/class-mp-products-admin.php:2224 +msgid "SKU" +msgstr "VareID" + +#: includes/admin/class-mp-products-admin.php:459 +#: includes/admin/class-mp-products-admin.php:1793 +#: includes/admin/class-mp-products-admin.php:1805 +#: includes/admin/class-mp-products-admin.php:2163 +msgid "Variations" +msgstr "Varianter" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:83 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:86 +#: includes/admin/class-mp-dashboard-widgets.php:134 +#: includes/admin/class-mp-products-admin.php:458 +#: includes/admin/class-mp-products-admin.php:837 +#: includes/admin/class-mp-shortcode-builder.php:689 +#: includes/admin/class-mp-shortcode-builder.php:856 +#: includes/admin/class-mp-shortcode-builder.php:1300 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:512 +#: includes/admin/widgets/ms-global-product-list.php:115 +#: includes/admin/widgets/product-list.php:211 +msgid "Product Name" +msgstr "Varenavn" + +#: includes/common/template-functions.php:2575 +msgid "Categorized in " +msgstr "I varegruppe " + +#: includes/admin/class-mp-orders-admin.php:305 +#: includes/common/payment-gateways/free_orders.php:176 +msgid "Payment Information" +msgstr "Betalingsinformasjon" + +#: includes/admin/class-mp-exporter-orders.php:167 +#: includes/admin/class-mp-orders-admin.php:432 +#: includes/admin/class-mp-pages-admin.php:62 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:227 +#: includes/common/class-mp-gdpr.php:374 +#: includes/common/template-functions.php:175 +#: includes/common/template-functions.php:926 +msgid "Order Status" +msgstr "Ordrestatus" + +#. translators: %s: orders closed +#: marketpress.php:327 +msgid "Closed (%s)" +msgid_plural "Closed (%s)" +msgstr[0] "Lukket (%s)" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:249 +#: includes/admin/class-mp-orders-admin.php:375 +#: includes/admin/class-mp-orders-admin.php:951 +#: includes/admin/class-mp-orders-admin.php:1053 +#: includes/admin/class-mp-orders-admin.php:1065 +#: includes/common/class-mp-gdpr.php:330 +#: includes/common/class-mp-order.php:1019 marketpress.php:325 +msgid "Closed" +msgstr "Lukket" + +#. translators: %s: shipped orders +#: marketpress.php:320 +msgid "Shipped (%s)" +msgid_plural "Shipped (%s)" +msgstr[0] "Sendt (%s)" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:248 +#: includes/admin/class-mp-orders-admin.php:376 +#: includes/admin/class-mp-orders-admin.php:950 +#: includes/admin/class-mp-orders-admin.php:1049 +#: includes/admin/class-mp-orders-admin.php:1064 +#: includes/common/class-mp-gdpr.php:329 +#: includes/common/class-mp-order.php:1002 marketpress.php:318 +msgid "Shipped" +msgstr "Sendt" + +#. translators: %s: paid orders +#: marketpress.php:313 +msgid "Paid (%s)" +msgid_plural "Paid (%s)" +msgstr[0] "Betalt (%s)" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:247 +#: includes/admin/class-mp-orders-admin.php:377 +#: includes/admin/class-mp-orders-admin.php:949 +#: includes/admin/class-mp-orders-admin.php:1045 +#: includes/admin/class-mp-orders-admin.php:1063 +#: includes/common/class-mp-gdpr.php:328 +#: includes/common/payment-gateways/2checkout.php:294 +#: includes/common/payment-gateways/_cubepoints.php:130 +#: includes/common/payment-gateways/authorizenet-aim.php:193 +#: includes/common/payment-gateways/free_orders.php:91 +#: includes/common/payment-gateways/mijireh.php:248 +#: includes/common/payment-gateways/paymill.php:273 +#: includes/common/payment-gateways/paypal-express.php:933 +#: includes/common/payment-gateways/paypal-express.php:967 +#: includes/common/payment-gateways/pin.php:258 +#: includes/common/payment-gateways/simplify.php:181 +#: includes/common/payment-gateways/stripe.php:368 +#: includes/common/payment-gateways/wepay.php:269 marketpress.php:311 +msgid "Paid" +msgstr "Betalt" + +#. translators: %s: orders received +#: marketpress.php:306 +msgid "Received (%s)" +msgid_plural "Received (%s)" +msgstr[0] "Mottatt (%s)" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:246 +#: includes/admin/class-mp-orders-admin.php:378 +#: includes/admin/class-mp-orders-admin.php:1041 +#: includes/admin/class-mp-orders-admin.php:1062 +#: includes/common/class-mp-gdpr.php:327 includes/common/class-mp-order.php:995 +#: includes/common/payment-gateways/payfast.php:244 marketpress.php:304 +msgid "Received" +msgstr "Mottatt" + +#: marketpress.php:268 +msgid "Search Orders" +msgstr "Søk bestillinger" + +#: marketpress.php:267 +msgid "View Order" +msgstr "Vis bestilling" + +#: marketpress.php:262 +msgid "Order" +msgstr "Bestill" + +#: includes/admin/class-mp-dashboard-widgets.php:301 +#: includes/admin/class-mp-orders-admin.php:989 marketpress.php:261 +msgid "Orders" +msgstr "Ordrer" + +#: marketpress.php:228 +msgid "No Products found in Trash" +msgstr "Ingen varer funnet i søppelkurven" + +#: marketpress.php:227 +msgid "No Products Found" +msgstr "Ingen varer funnet" + +#: marketpress.php:226 +msgid "Search Products" +msgstr "Søk varer" + +#: marketpress.php:225 marketpress.php:229 +msgid "View Product" +msgstr "Vis vare" + +#: marketpress.php:224 +msgid "New Product" +msgstr "Ny vare" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1022 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:258 +#: marketpress.php:223 +msgid "Edit" +msgstr "Rediger" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1019 +msgid "Create New" +msgstr "Opprett ny" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:687 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:698 +#: marketpress.php:217 +msgid "Product" +msgstr "Produkt" + +#: includes/admin/class-mp-dashboard-widgets.php:307 +#: includes/common/template-functions.php:173 +#: includes/common/template-functions.php:179 +#: includes/common/template-functions.php:902 +#: includes/multisite/template-functions.php:82 marketpress.php:216 +#: marketpress.php:219 +msgid "Products" +msgstr "Varer" + +#: includes/admin/class-mp-store-settings-admin.php:118 +#: includes/admin/widgets/product-tag-cloud.php:46 +#: includes/multisite/class-mp-admin-multisite.php:548 +msgid "Product Tags" +msgstr "Etiketter" + +#: includes/common/template-functions.php:2906 +#: includes/multisite/template-functions.php:449 +msgid "Product Category" +msgstr "Produktkategori" + +#: includes/admin/class-mp-store-settings-admin.php:117 +#: includes/admin/widgets/categories.php:8 +#: includes/admin/widgets/categories.php:18 +#: includes/multisite/class-mp-admin-multisite.php:539 +msgid "Product Categories" +msgstr "Varekategorier" + +#: includes/common/payment-gateways/stripe.php:332 +#: includes/common/template-functions.php:872 marketpress.php:218 +msgid "Store" +msgstr "Butikk" + +#: includes/admin/class-mp-pages-admin.php:60 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:209 +#: includes/admin/widgets/cart.php:8 includes/admin/widgets/cart.php:56 +#: includes/common/template-functions.php:174 +#: includes/common/template-functions.php:811 +msgid "Shopping Cart" +msgstr "Handlekurv" + +#: includes/admin/class-mp-store-settings-admin.php:110 +#: includes/admin/class-mp-store-settings-admin.php:218 +msgid "Store Settings" +msgstr "Butikkoppsett" + +#: includes/addons/class-mp-addons-list-table.php:128 marketpress.php:607 +msgid "Settings" +msgstr "Oppsett" + +#: includes/common/data.php:178 includes/common/data.php:190 +msgid "Your Order Has Been Shipped! (ORDERID)" +msgstr "Din ordre har blitt sendt! (ORDERID)" + +#: includes/common/data.php:159 includes/common/data.php:166 +#: includes/common/data.php:172 +msgid "Your Order Confirmation (ORDERID)" +msgstr "Din ordrebekreftelse (ORDERID)" + +#: includes/common/data.php:148 +msgid "

    Thank you for your order! We appreciate your business, and please come back often to check out our new products.

    " +msgstr "

    Takk for din bestilling! Vi setter pris på at du handler hos oss, og ønsker deg velkommen tilbake for å se våre nye produkter.

    " + +#: includes/common/data.php:147 +msgid "

    You are almost done! Please do a final review of your order to make sure everything is correct then click the \"Confirm Payment\" button.

    " +msgstr "

    Du er nesten ferdig! Vennligst ta en siste gjennomgang av din ordre for å forsikre deg om at alt er riktig, før du klikker \"Bekreft betaling\" knappen.

    " + +#: includes/common/data.php:145 +msgid "

    Please enter your shipping information in the form below to proceed with your order.

    " +msgstr "

    Vennligst angi din adresseinformasjon (leveringsadresse).

    " + +#: includes/common/data.php:143 +msgid "

    If you have any questions about your order please do not hesitate to contact us.

    " +msgstr "

    Dersom du har spørsmål rundt din ordre må du ikke nøle på å ta kontakt med oss.

    " + +#: includes/common/data.php:106 +msgid "tag" +msgstr "etikett" + +#: includes/common/data.php:105 +msgid "category" +msgstr "varegruppe" + +#: includes/common/data.php:104 +msgid "order-status" +msgstr "ordrestatus" + +#: includes/common/data.php:103 +msgid "shopping-cart" +msgstr "handlekurv" + +#: includes/common/data.php:102 +msgid "products" +msgstr "varer" + +#. Translators: change default slugs here +#: includes/common/data.php:101 +msgid "store" +msgstr "butikk" \ No newline at end of file diff --git a/languages/mp-pl.mo b/languages/mp-pl.mo new file mode 100644 index 0000000000000000000000000000000000000000..a7147db37ce97eaf21d1ed872e35126ef1649a8c GIT binary patch literal 5371 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 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: GlotPress/2.3.1\n" +"Language: pl\n" +"Project-Id-Version: MarketPress\n" + +#: includes/public/class-mp-checkout.php:1285 +msgid "By clicking this checkbox you allow the website to process your personal data." +msgstr "" + +#: includes/common/class-mp-gdpr.php:382 +msgid "Order Info" +msgstr "" + +#: includes/common/class-mp-gdpr.php:268 +msgid "Shipping Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:267 +msgid "Shipping Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:266 +msgid "Shipping ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:265 +msgid "Shipping State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:264 +msgid "Shipping City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:263 +msgid "Shipping Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:262 +msgid "Shipping Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:261 +msgid "Shipping Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:260 +msgid "Shipping Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:259 +msgid "Shipping Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:258 +msgid "Shipping First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:254 +msgid "Billing Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:253 +msgid "Billing Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:252 +msgid "Billing ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:251 +msgid "Billing State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:250 +msgid "Billing City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:249 +msgid "Billing Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:248 +msgid "Billing Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:247 +msgid "Billing Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:246 +msgid "Billing Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:245 +msgid "Billing Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:244 +msgid "Billing First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:151 +msgid "Orders Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:139 +msgid "Customer Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:100 includes/common/class-mp-gdpr.php:116 +msgid "MarketPress User Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:81 +msgid "" +"In addition to standard WordPress session cookies, this site might be setting an\n" +"\t\t additional cookie to remember your cart settings. This cookie will last for one year." +msgstr "" + +#: includes/common/class-mp-gdpr.php:80 +msgid "Cookies" +msgstr "" + +#: includes/common/class-mp-gdpr.php:77 +msgid "" +"The following information will be collected in order to process orders: your name,\n" +"\t\t username, email address, avatar and profile URLs, address and phone number. This data can be\n" +"\t\t exported and removed." +msgstr "" + +#: includes/common/class-mp-gdpr.php:76 +msgid "Additional data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:71 +msgid "" +"This site might be using third party services and tools to process payments or/and\n" +"\t\t process shipping data when creating orders on the MarketPress store. These services include payment\n" +"\t\t gateways: 2Checkout, Authorize.net AIM, eWay shared payments, eWay Rapid 3.1 Payments, Mijireh,\n" +"\t\t Mollie, Paymill, PayPal, PIN, Simplify Commerce by MasterCard, Stripe and WePay; shipping gateways:\n" +"\t\t Fedex, UPS, USPS." +msgstr "" + +#: includes/common/class-mp-gdpr.php:70 +msgid "Third parties" +msgstr "" + +#: includes/admin/class-mp-admin.php:403 +msgid "Start creating store pages and products for your online shop here." +msgstr "" + +#: includes/admin/class-mp-admin.php:402 +msgid "Create Online Shop" +msgstr "" + +#: includes/admin/class-mp-admin.php:394 +msgid "Run Setup Wizard" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:234 +msgid "If having problems during invoice generation, add define( 'DOMPDF_ENABLE_HTML5PARSER', true ); to the wp-config.php file." +msgstr "" + +#: includes/public/class-mp-checkout.php:723 +msgid "Invalid Email" +msgstr "" + +#: includes/public/class-mp-checkout.php:721 +#: includes/public/class-mp-checkout.php:729 +msgid "This field is required" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:804 +msgid "This option changes the built-in css styles for store pages. For a custom css style, save your css file with the /* MarketPress Style: Your CSS Theme Name Here */ header line in the \"%s\" folder and it will appear in this list so you may select it. You should select \"None\" if you don't wish to use custom CSS styles or if you are using default theme templates or custom theme templates and css to make your own completely unique store design. For more information on custom theme templates click here »." +msgstr "" + +#: includes/public/class-mp-public.php:421 +#: includes/public/class-mp-short-codes.php:142 +msgid "Please enter a value greater than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:420 +#: includes/public/class-mp-short-codes.php:141 +msgid "Please enter a value less than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:419 +#: includes/public/class-mp-short-codes.php:140 +msgid "Please enter a value between {0} and {1}." +msgstr "" + +#: includes/public/class-mp-public.php:418 +#: includes/public/class-mp-short-codes.php:139 +msgid "Please enter a value between {0} and {1} characters long." +msgstr "" + +#: includes/public/class-mp-public.php:417 +#: includes/public/class-mp-short-codes.php:138 +msgid "Please enter at least {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:416 +#: includes/public/class-mp-short-codes.php:137 +msgid "Please enter no more than {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:415 +#: includes/public/class-mp-short-codes.php:136 +msgid "Please enter a value with a valid extension." +msgstr "" + +#: includes/public/class-mp-public.php:414 +#: includes/public/class-mp-short-codes.php:135 +msgid "Please enter the same value again." +msgstr "" + +#: includes/public/class-mp-public.php:413 +#: includes/public/class-mp-short-codes.php:134 +msgid "Please enter a valid credit card number." +msgstr "" + +#: includes/public/class-mp-public.php:412 +#: includes/public/class-mp-short-codes.php:133 +msgid "Please enter only digits." +msgstr "" + +#: includes/public/class-mp-public.php:411 +#: includes/public/class-mp-short-codes.php:132 +msgid "Please enter a valid number." +msgstr "" + +#: includes/public/class-mp-public.php:410 +#: includes/public/class-mp-short-codes.php:131 +msgid "Please enter a valid date (ISO)." +msgstr "" + +#: includes/public/class-mp-public.php:409 +#: includes/public/class-mp-short-codes.php:130 +msgid "Please enter a valid date." +msgstr "" + +#: includes/public/class-mp-public.php:408 +#: includes/public/class-mp-short-codes.php:129 +msgid "Please enter a valid URL." +msgstr "" + +#: includes/public/class-mp-public.php:406 +#: includes/public/class-mp-short-codes.php:127 +msgid "Please fix this field." +msgstr "" + +#: includes/public/class-mp-checkout.php:1287 +#: includes/public/class-mp-public.php:405 +#: includes/public/class-mp-short-codes.php:126 +msgid "This field is required." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:810 +msgid "None - Without Special CSS-styles" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:809 +msgid "Default - Using Default CSS-styles" +msgstr "" + +#: marketpress.php:739 +msgid "Enable multiple downloads per product" +msgstr "" + +#: marketpress.php:738 +msgid "Multiple Downloads" +msgstr "" + +#: includes/public/class-mp-checkout.php:715 +msgid "Invalid Zip Code" +msgstr "" + +#: includes/common/template-functions.php:2126 +msgid "Guest Email" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:195 +msgid "There was a problem finalizing your purchase. Please re-enter your credit card information and try again" +msgstr "" + +#: includes/common/class-mp-cart.php:565 includes/common/class-mp-order.php:600 +#: includes/common/helpers.php:111 +msgid "Download %1$s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:331 +msgid "Export products to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:328 +msgid "The import process uses the WordPress importer plugin." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:326 +msgid "Import / Export Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:325 +msgid "Export settings to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:324 +msgid "Import configuration" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:320 +msgid "Use the text below to export to a new installation. Or paste in the new configuration to import." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:318 +msgid "Import / Export Settings" +msgstr "" + +#. translators: URL to wp-admin/import.php +#: includes/admin/store-settings/class-mp-store-settings-import.php:266 +msgid "This importer is not installed. Please install importers from the main site." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:261 +msgid "Install Now" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:260 +msgid "Install %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:240 +msgid "Run Importer" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:239 +msgid "Run %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:258 +msgid "Import/Export" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1199 +msgid "Requires Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:737 +msgid "Optionally limit the user to some categories" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:671 +msgid "Should this coupon only be available to logged in users?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:670 +msgid "Require Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:655 +msgid "Mimimum number of products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:653 +msgid "Enter the minimum number of products in the cart that this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:648 +msgid "Can this coupon be limited to a number of products in the cart?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:334 +msgid "Add all values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:265 +msgid "Set as default variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:154 +msgid "Set Default" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:150 +msgid "More Info" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:40 +msgid "MarketPress - Quick Setup" +msgstr "" + +#: includes/public/class-mp-checkout.php:1399 +msgid "Proceed to checkout and create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1241 +#: includes/public/class-mp-checkout.php:1245 +msgid "Register account" +msgstr "" + +#: includes/public/class-mp-checkout.php:1233 +msgid "Register as customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:765 +msgid "

    Oops!

    Looks like you haven't added anything your cart. Let's go shopping!

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:763 +msgid "

    Oops!

    The cart is disabled.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing Information" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:214 +msgid "Global Currency" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:198 +msgid "Global Store Currency" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:507 +msgid "There are no shipping services available for this type of package in your location." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:168 +msgid "Using this USPS Shipping calculator requires requesting an Ecommerce API Username and Password. Get your free set of credentials here ». The password is no longer used for the API, just the username which you should enter below. The USPS test site has not yet been updated and currently doesn't work - you should just request activating your credentials with USPS and go live." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:339 +msgid "ZIP Code" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:334 +msgid "Last name" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:333 +msgid "First name" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:150 +msgid "These are the manual payment instructions to display on the order confirmation screen. TOTAL will be replaced with the order total and ORDERID will be replaced with Order ID." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:240 +msgid "You must login to Authorize.net merchant dashboard to obtain the API login ID and API transaction key. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:327 +msgid "
    1. Set the \"Return Method\" within Site Management to Header Redirect and set the \"Return URL\" to %s
    2. Set your notifications url to %s
    " +msgstr "" + +#: includes/common/data.php:191 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Also, digital downloads included in your order are now ready to be downloaded. Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:185 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order is now available to download! Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:184 +msgid "Your Order Is Ready To Be Downloaded! (ORDERID)" +msgstr "" + +#: includes/common/data.php:179 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:173 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received, your digital goods are ready to be downloaded and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:167 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received and your digital goods are ready to be downloaded. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:160 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +" Your order has been received, and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information: \n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/class-mp-product.php:638 +msgid "You can not add more items to cart." +msgstr "" + +#: includes/common/class-mp-product.php:635 +msgid "You can only add {0} to cart." +msgstr "" + +#: includes/common/class-mp-product.php:625 +msgid "This product has an order limit of %d." +msgstr "" + +#: includes/common/class-mp-order.php:1454 +msgid "Shipped: tracking code: %s" +msgstr "" + +#: includes/common/class-mp-order.php:1000 +#: includes/common/class-mp-order.php:1012 +msgid "Finished" +msgstr "" + +#: includes/common/class-mp-order.php:858 +msgid "Contact Details" +msgstr "" + +#: includes/common/class-mp-order.php:339 includes/common/data.php:155 +msgid "" +"A new order (ORDERID) was created in your store:\n" +"\n" +" ORDERINFOSKU\n" +"\n" +" SHIPPINGINFO\n" +"\n" +" PAYMENTINFO\n" +"\n" +msgstr "\n" + +#: includes/common/class-mp-cart.php:1858 +msgid "Add again" +msgstr "" + +#: includes/common/class-mp-cart.php:1852 +msgid "was removed from Shopping Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1242 +#: includes/public/class-mp-short-codes.php:160 +msgid "Cart update notice: this item has a limit per order or you have reached the stock limit." +msgstr "" + +#: includes/admin/widgets/product-list.php:235 +msgid "Show Only Featured Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:533 +msgid "If enabled, users won't be able to filter products per category and/or to order by release date/name/price." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:531 +msgid "Hide Products Filter?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:353 +msgid "Notification to registration email instead of billing email?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:322 +msgid "Order Shipped - Mixed orders (with both digital and physical products)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:289 +msgid "Order Shipped - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:224 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:194 +msgid "New Order - Mixed" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:161 +msgid "New Order - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:115 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:243 +msgid "Mixed orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:110 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:238 +msgid "Digital downloads orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:105 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:233 +msgid "Physical orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:96 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed.
    For orders placed with manual payment, emails set here will be overriden by the one configured in manual payments settings, under payments settings page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:89 +msgid "Customer Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:47 +msgid "Admin Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:566 +msgid "Only contact details" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:565 +msgid "Full billing info" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:561 +msgid "Details Collection" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:548 +msgid "Digital Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:515 +msgid "Apply Tax to Digital Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:236 +msgid "product (default)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:231 +msgid "If you are experiencing conflicts with other e-commerce plugins change this setting. This will change the internal post type of all your products. Please note that changing this option may break 3rd party themes or plugins." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1203 +msgid "Hide details" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1202 +msgid "Show all changes" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1184 +msgid "Version %s" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1161 +msgid "Current" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1131 +msgid "%s changelog" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:952 +msgid "We did not find any data for this plugin or theme..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:285 +msgid "Activate WPMU DEV Dashboard" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:279 +msgid "Just one more step - activate the WPMU DEV Dashboard plugin and you're all done!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:277 +msgid "Important updates are available for your WPMU DEV plugins/themes. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:273 +msgid "Just one more step to enable updates and support for %s!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:271 +msgid "Important updates are available for %s. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:264 +msgid "activate" +msgstr "" + +#: includes/admin/class-mp-admin.php:398 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:248 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:289 +msgid "Dismiss" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:247 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:288 +msgid "Saving..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:244 +msgid "Install Plugin" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:238 +msgid "Almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:236 +msgid "Important updates are available for your WPMU DEV plugins/themes. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:232 +msgid "%s is almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:230 +msgid "Important updates are available for %s. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:223 +msgid "install" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1428 +msgid "Sets the number of Tags to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1289 +msgid "How many products to display in the product list if \"paginate\" is set to false." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:739 +#: includes/admin/class-mp-shortcode-builder.php:906 +#: includes/admin/class-mp-shortcode-builder.php:1350 +msgid "Grid" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:735 +#: includes/admin/class-mp-shortcode-builder.php:902 +#: includes/admin/class-mp-shortcode-builder.php:1346 +msgid "Products will be displayed as list or grid." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:206 +msgid "Display a cloud or list of your global product tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:205 +msgid "Display a list of your global categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:204 +msgid "Display a list or grid of your global products." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:181 +msgid "Display a list of featured products." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1451 +msgid "Is Featured?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1444 +msgid "Featured Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:581 +#: includes/admin/class-mp-products-admin.php:1580 +msgid "% discount" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:579 +msgid "OR" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:460 +#: includes/admin/class-mp-products-admin.php:586 +#: includes/admin/widgets/product-list.php:217 +msgid "Featured" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:536 +#: includes/admin/class-mp-orders-admin.php:538 +msgid "Tracking Link" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:508 +msgid "Shipping Tax" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:356 +msgid "Shipping Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:352 +msgid "Taxes Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:349 +msgid "Products Total" +msgstr "" + +#: includes/admin/class-mp-ajax.php:366 +msgid "Oops! You entered an invalid username/email and or password." +msgstr "" + +#: includes/admin/class-mp-ajax.php:254 +msgid "Percentage Discount" +msgstr "" + +#: includes/admin/class-mp-ajax.php:234 +msgid "Limit the Amount of Items per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:214 +msgid "Unused Attributes" +msgstr "" + +#: includes/admin/class-mp-admin.php:82 +msgid "Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-admin.php:79 +msgid "MarketPress setup is not complete! Once you've completed this quick setup wizard you'll have a fully working online store - exciting! " +msgstr "" + +#: marketpress.php:263 +msgctxt "mp_order" +msgid "Add New" +msgstr "" + +#: marketpress.php:184 +msgctxt "product_tag" +msgid "Product Tag" +msgstr "" + +#: marketpress.php:183 +msgctxt "product_tag" +msgid "Product Tags" +msgstr "" + +#: marketpress.php:150 +msgctxt "product_category" +msgid "Product Category" +msgstr "" + +#: marketpress.php:149 +msgctxt "product_category" +msgid "Product Categories" +msgstr "" + +#. Author URI of the plugin/theme +msgid "http://premium.wpmudev.org" +msgstr "" + +#: marketpress.php:729 +msgid "Invoice PDF" +msgstr "" + +#: marketpress.php:712 +msgid "Grant access to themes and gateways depending on the user's Pro Site level" +msgstr "" + +#: marketpress.php:711 +msgid "Pro Sites" +msgstr "" + +#: marketpress.php:703 +msgid "Offer and accept coupon codes" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:687 +msgid "Install %s Pages" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:682 +msgid "Welcome to %s – Install pages required by the plugin automatically." +msgstr "" + +#: marketpress.php:668 +msgid "Your pages were created successfully." +msgstr "" + +#: marketpress.php:436 +msgid "Add a Product" +msgstr "" + +#: marketpress.php:271 +msgid "Parent Order" +msgstr "" + +#: marketpress.php:270 +msgid "No orders found in trash" +msgstr "" + +#: marketpress.php:269 +msgid "No orders found" +msgstr "" + +#: marketpress.php:265 +msgid "Edit Order" +msgstr "" + +#: marketpress.php:264 +msgid "Add New Order" +msgstr "" + +#: marketpress.php:220 marketpress.php:221 +msgid "Add New Product" +msgstr "" + +#: marketpress.php:197 +msgid "No product tags found" +msgstr "" + +#: marketpress.php:196 +msgid "Choose from the most used product tags" +msgstr "" + +#: marketpress.php:195 +msgid "Add or remove product tags" +msgstr "" + +#: marketpress.php:194 +msgid "Separate product tags with commas" +msgstr "" + +#: marketpress.php:193 +msgid "Search Product Tags" +msgstr "" + +#: marketpress.php:192 +msgid "Parent Product Tag:" +msgstr "" + +#: marketpress.php:191 +msgid "Parent Product Tag" +msgstr "" + +#: marketpress.php:190 +msgid "New Product Tag Name" +msgstr "" + +#: marketpress.php:189 +msgid "Add New Product Tag" +msgstr "" + +#: marketpress.php:188 +msgid "Update Product Tag" +msgstr "" + +#: marketpress.php:187 +msgid "View Product Tag" +msgstr "" + +#: marketpress.php:186 +msgid "Edit Product Tag" +msgstr "" + +#: marketpress.php:185 +msgid "All Product Tags" +msgstr "" + +#: marketpress.php:163 +msgid "No product categories found" +msgstr "" + +#: marketpress.php:162 +msgid "Choose from the most used product categories" +msgstr "" + +#: marketpress.php:161 +msgid "Add or remove product categories" +msgstr "" + +#: marketpress.php:160 +msgid "Separate product categories with commas" +msgstr "" + +#: marketpress.php:159 +msgid "Search Product Categories" +msgstr "" + +#: marketpress.php:158 +msgid "Parent Product Category:" +msgstr "" + +#: marketpress.php:157 +msgid "Parent Product Category" +msgstr "" + +#: marketpress.php:156 +msgid "New Product Category Name" +msgstr "" + +#: marketpress.php:155 +msgid "Add New Product Category" +msgstr "" + +#: marketpress.php:154 +msgid "Update Product Category" +msgstr "" + +#: marketpress.php:153 +msgid "View Product Category" +msgstr "" + +#: marketpress.php:152 +msgid "Edit Product Category" +msgstr "" + +#: marketpress.php:151 +msgid "All Product Categories" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Please fix the %s1 and then try submitting the form again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Oops! The form contains %s1 which %s2 been highlighted below." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:660 +msgid "have" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:659 +msgid "has" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:651 +msgid "Value must be less than {0}" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:650 +msgid "Please enter only letters and numbers" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:539 +msgid "Due to prolonged inactivity on this page, one or more settings were not saved. Please try again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:535 +msgid "Settings Saved" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-user-select.php:22 +msgid "Select Some Users" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-section.php:18 +msgid "Section Title" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:425 +msgid "Are you sure you want to delete this?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:30 +msgid "Add Row" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-post-select.php:24 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-taxonomy-select.php:22 +msgid "Select Posts" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:210 +msgid "Add Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:129 +msgid "Select the image that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:93 +msgid "Select image(s) that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:79 +msgid "Select the image that you would like to use for this variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:48 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:82 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:68 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:132 +msgid "Select Image" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:31 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:160 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:168 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:19 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:115 +msgid "Select File" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:30 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:18 +msgid "Select the file that you would like to use." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:357 +msgid "Create Variations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:356 +msgid "Add Another Variant" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Insert a value and press ENTER" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "(e.g. White, Grey, Red etc.)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Variation Values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:333 +msgid "Or create new variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "(e.g. Color)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:303 +msgid "You are about to delete selected variants.
    If you want to continue please confirm." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:302 +msgid "Confirmation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:290 +msgid "Insert quantity available. Empty for unlimited." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:281 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:294 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:307 +msgid "Cancel" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:280 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:293 +msgid "Update" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:277 +msgid "Insert the price i.e. 25 or 25.50" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:115 +msgid "Img." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:85 +msgid "Add New Variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:79 +msgid "Delete Variants" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:78 +msgid "Update Prices" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:77 +msgid "Update Inventory" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:76 +msgid "Update Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:75 +msgid "Bulk Actions" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:73 +msgid "Select bulk action" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:196 +msgid "Configure Store" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:195 +msgid "Configure shipping rates, emails and your store's appearance. " +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:190 +msgid "Add Product" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:189 +msgid "Add your first product for sale and get familiar with adding products." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:184 +msgid "Your store is almost ready for its first customers, but first it needs some products. Get started by adding products below, or jump straight into further configuring your store’s settings." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:183 +msgid "Woohoo! Your online store is up and running." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:160 +msgid "Finish Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:124 +msgid "And what metric system do you want to use?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:113 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:142 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:159 +msgid "Back" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:109 +msgid "Do you want to apply tax for your products? You can customize this for each product and variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:105 +msgid "What currency do you want to sell with?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:93 +msgid "And, which countries do you want to sell to?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:89 +msgid "Where is your online store based?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:80 +msgid "Payment Gateway" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:79 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:123 +msgid "Metric System" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:78 +msgid "Currency & Tax" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:77 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:88 +msgid "Locations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:70 +msgid "Choose where you want to sell your stuff and what currency. Easy!" +msgstr "" + +#: includes/public/class-mp-checkout.php:1400 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:58 +msgid "Continue" +msgstr "" + +#: includes/admin/class-mp-admin.php:83 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:53 +msgid "Skip this step, I'll do this manually" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:49 +msgid "Install store pages" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:44 +msgid "Once you've completed this quick setup wizard you'll have a fully working online store - exciting! Start
    by creating the default store pages for the online store such as the cart, checkout and store pages." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:42 +msgid "MarketPress adds a full online store to your website, with heaps of configuration options and addons
    to suit your needs. It's really easy to get going, and only takes a few minutes to setup!" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:41 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:69 +msgid "Welcome to MarketPress - Quick Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-advanced-select.php:23 +msgid "Select Some Options" +msgstr "" + +#: includes/wpmudev-metaboxes/class-wpmudev-field.php:694 +msgid "You must the WPMUDEV_Field::display() method in your form field class" +msgstr "" + +#: includes/public/class-mp-short-codes.php:636 +msgid "Only %s left in stock..." +msgstr "" + +#: includes/public/class-mp-short-codes.php:633 +msgid "Unlimited stock" +msgstr "" + +#: includes/public/class-mp-short-codes.php:430 +msgid "product_id must be defined" +msgstr "" + +#: includes/public/class-mp-checkout.php:1250 +msgid "An account with this username already exists" +msgstr "" + +#: includes/public/class-mp-checkout.php:1394 +msgid "Continue as Guest" +msgstr "" + +#: includes/public/class-mp-checkout.php:1393 +msgid "Proceed to checkout and you'll have an opportunity to create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1392 +#: includes/public/class-mp-checkout.php:1398 +msgid "First-time customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1386 +msgid "Login" +msgstr "" + +#: includes/public/class-mp-checkout.php:1379 +msgid "E-Mail Address/Username" +msgstr "" + +#: includes/public/class-mp-checkout.php:1377 +msgid "Sign in to speed up the checkout process." +msgstr "" + +#: includes/public/class-mp-checkout.php:1376 +msgid "Have an account?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1297 +msgid "Shipping address different than billing?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1184 +msgid "There are no available gateways to process this payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1160 +msgid "Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:1123 +msgid "Oops! An error occurred while processing your payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1051 +msgid "Next Step »" +msgstr "" + +#: includes/public/class-mp-checkout.php:1045 +msgid "« Previous Step" +msgstr "" + +#: includes/public/class-mp-checkout.php:873 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:657 +msgid "error" +msgstr "" + +#: includes/public/class-mp-checkout.php:872 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:658 +msgid "errors" +msgstr "" + +#: includes/public/class-mp-checkout.php:871 +msgid "

    Oops! We found %d %s in the form below.

    Fields that have errors are highlighted in red below. Entering into a field will reveal the actual error that occurred.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:870 +msgid "Please enter a valid first and last name" +msgstr "" + +#: includes/public/class-mp-checkout.php:869 +msgid " Please enter a valid card security code" +msgstr "" + +#: includes/public/class-mp-checkout.php:868 +msgid "Please enter a valid card expiration" +msgstr "" + +#: includes/public/class-mp-checkout.php:773 +msgid "Javascript is required in order to checkout. Please enable Javascript in your browser and then refresh this page." +msgstr "" + +#: includes/public/class-mp-checkout.php:588 +msgid "An unknown error occurred. Please try again." +msgstr "" + +#: includes/public/class-mp-checkout.php:386 +msgid "Town/City" +msgstr "" + +#: includes/public/class-mp-checkout.php:380 +msgid "Apartment, suite, unit, building, floor, etc" +msgstr "" + +#: includes/public/class-mp-checkout.php:376 +msgid "Address Line 2" +msgstr "" + +#: includes/public/class-mp-checkout.php:363 +msgid "Address Line 1" +msgstr "" + +#: includes/common/class-mp-order.php:770 +#: includes/public/class-mp-checkout.php:354 +msgid "Company" +msgstr "" + +#: includes/public/class-mp-checkout.php:330 +msgid "Last" +msgstr "" + +#: includes/public/class-mp-checkout.php:321 +msgid "First" +msgstr "" + +#: includes/public/class-mp-checkout.php:284 +msgid "State/Province" +msgstr "" + +#: includes/public/class-mp-checkout.php:83 +msgid "Review Order/Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing/Shipping Address" +msgstr "" + +#: includes/public/class-mp-checkout.php:80 +msgid "Login/Register" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:530 +msgid "Marketplace" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:523 +msgid "Global Marketplace Pages" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +msgid "Store Network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +#: includes/multisite/class-mp-admin-multisite.php:494 +msgid "Store Network Settings" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:440 +msgid "Set theme access permissions for network stores. For a custom css theme, save your css file with the MarketPress Theme: NAME header in the /marketpress/ui/themes/ folder and it will appear in this list so you may select it." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:361 +msgid "Choose a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:336 +msgid "%d products get indexed" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:285 +msgid "Product Indexer" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:281 +msgid "Please hold on..." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:280 +msgid "Index Products" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:279 +msgid "%d products have been indexed in whole network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:182 +msgid "Enable Global Shopping Cart?" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:178 +msgid "Limit Global Widgets/Shortcodes To Main Blog?" +msgstr "" + +#: includes/common/template-functions.php:2802 +#: includes/multisite/template-functions.php:355 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:97 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:114 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:143 +msgid "Next" +msgstr "" + +#: includes/common/template-functions.php:2801 +#: includes/multisite/template-functions.php:354 +msgid "Prev" +msgstr "" + +#: includes/common/template-functions.php:2597 +msgid "Tagged in " +msgstr "" + +#: includes/common/template-functions.php:2196 +#: includes/common/template-functions.php:2202 +#: includes/common/template-functions.php:2214 +#: includes/common/template-functions.php:2217 +msgid "Oops! We couldn't locate any orders matching that order number. Please verify the order number and try again." +msgstr "" + +#: includes/common/template-functions.php:2138 +msgid "Look Up" +msgstr "" + +#: includes/common/template-functions.php:1423 +msgid "Please choose a shipping method" +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "If you have your order ID you can look it up using the form below." +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "Order Search" +msgstr "" + +#: includes/common/template-functions.php:910 +#: includes/public/class-mp-checkout.php:1440 +msgid "Cart" +msgstr "" + +#: includes/common/template-functions.php:895 +msgid "[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:887 +msgid "[mp_global_categories_list]" +msgstr "" + +#: includes/common/template-functions.php:880 +msgid "" +"Welcome to our market place!\n" +"\n" +"Check out our network of products:\n" +"\n" +"[mp_list_global_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_global_categories_list]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:879 +msgid "Global Store" +msgstr "" + +#: includes/common/template-functions.php:873 +msgid "" +"Welcome to our online store! Feel free to browse around:\n" +"\n" +"[mp_store_navigation]\n" +"\n" +"Check out our most popular products:\n" +"\n" +"[mp_popular_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_list_categories]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_tag_cloud]" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:127 +msgid "If cart weight is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:126 +msgid "Cart Weight" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:222 +msgid "Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:206 +msgid "Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:196 +msgid "Retail Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:195 +msgid "Online Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:193 +msgid "Rates Request Type" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:189 +msgid "Maximum Weight Per Package" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:195 +#: includes/common/shipping-modules/mp-usps.php:236 +msgid "Enter your standard box sizes as LengthxWidthxHeight (e.g. 12x8x6) For each box defined enter the maximum weight it can contain. Note: the shipping prices this plugin calculates are estimates. If they are consistently too low or too high, please check that the list of boxes above and the product weights are accurate and complete." +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:187 +msgid "Handling Charge Per Box Shipped" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:176 +#: includes/common/shipping-modules/mp-ups.php:181 +msgid "Offered Services" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:165 +msgid "Shipper Number" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:151 +msgid "User ID" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:144 +msgid "Developer Kit Access Key" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:140 +msgid "Use Sandbox Mode?" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:123 +msgid "In order to use UPS, you will need a UPS Developer Kit access key and the UPS user ID and password associated with the access key. Set these up for free here. If this information is missing or incorrect, an error will appear during the checkout process and the buyer will not be able to complete the transaction." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:112 +msgid "If cart total is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:111 +msgid "Cart Total" +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:95 +#: includes/common/shipping-modules/mp-weight-rate.php:111 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Don't worry about sorting as this will be done automatically upon saving." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:170 +msgid "Method Title (visible for clients)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:409 +#: includes/common/shipping-modules/mp-ups.php:216 +#: includes/common/shipping-modules/mp-usps.php:251 +msgid "Max Weight (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:402 +#: includes/common/shipping-modules/mp-ups.php:209 +#: includes/common/shipping-modules/mp-usps.php:247 +msgid "Size (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:387 +msgid "Enter your standard box sizes as LengthxWidthxHeight ( 12x8x6 ) For each box defined enter the maximum weight it can contain. Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:361 +#: includes/common/shipping-modules/mp-usps.php:229 +msgid "Handling Charge per International Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:353 +msgid "International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:339 +#: includes/common/shipping-modules/mp-usps.php:213 +msgid "Handling Charge per Domestic Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:331 +msgid "Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:321 +msgid "When checked the customer can chose Residential or Commercial delivery with Residential the default. Unchecked it's only Residential rates." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:320 +msgid "Allow Commercial Delivery?" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:315 +msgid "Fedex 10kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:314 +msgid "Fedex 25kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:313 +msgid "Fedex Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:312 +msgid "Fedex Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:311 +msgid "Fedex Pak" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:310 +msgid "Fedex Tube" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:306 +msgid "Default Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:294 +msgid "Dropoff Type" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:290 +msgid "Meter ID" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:134 +msgid "This is a residential address" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:283 +msgid "There was an error processing your card: \"%s\". Please check your credit card info and try again." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:121 +msgid "Wepay makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept cards directly on your site. You don't need a merchant account or gateway. WePay handles everything including storing cards. Credit cards go directly to WePay's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:385 +msgid "There was an error processing your card - \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:356 +msgid "%s Store Purchase - Order ID - %s, Email - %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:251 +msgid "Stripe makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept Visa, MasterCard, American Express, Discover, JCB, and Diners Club cards directly on your site. You don't need a merchant account or gateway. Stripe handles everything, including storing cards, subscriptions, and direct payouts to your bank account. Credit cards go directly to Stripe's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:192 +msgid "ZMW - Zambian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:191 +msgid "ZAR - South African Rand" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:190 +msgid "YER - Yemeni Rial" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:189 +msgid "XPF - Cfp Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:188 +msgid "XOF - West African Cfa Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:187 +msgid "XCD - East Caribbean Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:186 +msgid "XAF - Central African Cfa Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:185 +msgid "WST - Samoan Tala" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:184 +msgid "VUV - Vanuatu Vatu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:183 +msgid "VND - Vietnamese Đồng" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:182 +msgid "VEF - Venezuelan Bolívar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:181 +msgid "UZS - Uzbekistani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:180 +msgid "UYI - Uruguayan Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:178 +msgid "UGX - Ugandan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:177 +msgid "UAH - Ukrainian Hryvnia" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:176 +msgid "TZS - Tanzanian Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:175 +msgid "TWD - New Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:174 +msgid "TTD - Trinidad and Tobago Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:172 +msgid "TOP - Tongan Paʻanga" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:171 +msgid "TJS - Tajikistani Somoni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:169 +msgid "SZL - Swazi Lilangeni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:168 +msgid "SVC - Salvadoran Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:167 +msgid "STD - São Tomé and Príncipe Dobra" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:166 +msgid "SRD - Surinamese Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:165 +msgid "SOS - Somali Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:164 +msgid "SLL - Sierra Leonean Leone" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:163 +msgid "SHP - Saint Helenian Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:160 +msgid "SCR - Seychellois Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:159 +msgid "SBD - Solomon Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:157 +msgid "RWF - Rwandan Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:156 +msgid "RUB - Russian Ruble" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:155 +msgid "RSD - Serbian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:154 +msgid "RON - Romanian Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:153 +msgid "QAR - Qatari Riyal" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:152 +msgid "PYG - Paraguayan Guaraní*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:151 +msgid "PLN - Polish Złoty" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:150 +msgid "PKR - Pakistani Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:149 +msgid "PHP - Philippine Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:148 +msgid "PGK - Papua New Guinean Kina" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:147 +msgid "PEN - Peruvian Nuevo Sol*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:146 +msgid "PAB - Panamanian Balboa*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:144 +msgid "NPR - Nepalese Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:142 +msgid "NIO - Nicaraguan Córdoba*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:141 +msgid "NGN - Nigerian Naira" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:140 +msgid "NAD - Namibian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:139 +msgid "MZN - Mozambican Metical" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:137 +msgid "MXN - Mexican Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:136 +msgid "MWK - Malawian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:135 +msgid "MVR - Maldivian Rufiyaa" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:134 +msgid "MUR - Mauritian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:133 +msgid "MRO - Mauritanian Ouguiya" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:132 +msgid "MOP - Macanese Pataca" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:131 +msgid "MNT - Mongolian Tögrög" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:130 +msgid "MKD - Macedonian Denar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:129 +msgid "MGA - Malagasy Ariary" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:128 +msgid "MDL - Moldovan Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:126 +msgid "LVL - Latvian Lats" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:124 +msgid "LSL - Lesotho Loti" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:123 +msgid "LRD - Liberian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:122 +msgid "LKR - Sri Lankan Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:121 +msgid "LBP - Lebanese Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:120 +msgid "LAK - Lao Kip*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:119 +msgid "KZT - Kazakhstani Tenge" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:118 +msgid "KYD - Cayman Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:117 +msgid "KRW - South Korean Won" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:116 +msgid "KMF - Comorian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:115 +msgid "KHR - Cambodian Riel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:114 +msgid "KGS - Kyrgyzstani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:113 +msgid "KES - Kenyan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:111 +msgid "JMD - Jamaican Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:110 +msgid "ISK - Icelandic Króna" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:109 +msgid "INR - Indian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:108 +msgid "ILS - Israeli New Sheqel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:107 +msgid "IDR - Indonesian Rupiah" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:105 +msgid "HTG - Haitian Gourde" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:103 +msgid "HNL - Honduran Lempira*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:101 +msgid "GYD - Guyanese Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:100 +msgid "GTQ - Guatemalan Quetzal*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:99 +msgid "GNF - Guinean Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:98 +msgid "GMD - Gambian Dalasi" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:97 +msgid "GIP - Gibraltar Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:96 +msgid "GEL - Georgian Lari" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:94 +msgid "FKP - Falkland Islands Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:93 +msgid "FJD - Fijian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:91 +msgid "ETB - Ethiopian Birr" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:90 +msgid "EGP - Egyptian Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:89 +msgid "EEK - Estonian Kroon*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:88 +msgid "DZD - Algerian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:87 +msgid "DOP - Dominican Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:85 +msgid "DJF - Djiboutian Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:84 +msgid "CZK - Czech Koruna*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:83 +msgid "CVE - Cape Verdean Escudo*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:82 +msgid "CRC - Costa Rican Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:81 +msgid "COP - Colombian Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:80 +msgid "CNY - Chinese Renminbi Yuan" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:79 +msgid "CLP - Chilean Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:77 +msgid "CDF - Congolese Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:76 +msgid "CAD - Canadian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:75 +msgid "BZD - Belize Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:74 +msgid "BWP - Botswana Pula" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:73 +msgid "BSD - Bahamian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:72 +msgid "BRL - Brazilian Real*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:71 +msgid "BOB - Bolivian Boliviano*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:70 +msgid "BND - Brunei Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:69 +msgid "BMD - Bermudian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:68 +msgid "BIF - Burundian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:67 +msgid "BGN - Bulgarian Lev" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:66 +msgid "BDT - Bangladeshi Taka" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:65 +msgid "BBD - Barbadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:64 +msgid "BAM - Bosnia & Herzegovina Convertible Mark" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:63 +msgid "AZN - Azerbaijani Manat" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:62 +msgid "AWG - Aruban Florin" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:61 +msgid "AUD - Australian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:60 +msgid "ARS - Argentine Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:59 +msgid "AOA - Angolan Kwanza*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:58 +msgid "ANG - Netherlands Antillean Gulden" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:57 +msgid "AMD - Armenian Dram" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:56 +msgid "ALL - Albanian Lek" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:55 +msgid "AFN - Afghan Afghani*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:54 +msgid "AED - United Arab Emirates Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:345 +msgid "Skrill balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:327 +msgid "Skrill IPN message received." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:283 +msgid "Skrill" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:278 +msgid "Pending payment" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:144 +msgid "The secret word must match the word submitted in the \"Merchant Tools\" section of your Skrill account." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:134 +msgid "You must use your valid Skrill merchant email. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:133 +msgid "Skrill Email" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:123 +msgid "Resell your inventory via Skrill.com (Moneybookers)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:95 +msgid "ZAR - South-African Rand" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:93 +msgid "TWD - Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:92 +msgid "TRY - New Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:91 +msgid "TND - Tunisian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:90 +msgid "THB - Thailand Baht" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:89 +msgid "SKK - Slovakian Koruna" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:86 +#: includes/common/payment-gateways/stripe.php:158 +msgid "SAR - Saudi Riyal" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:85 +msgid "RSD - Serbian dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:83 +msgid "QAR - Qatari Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:81 +msgid "OMR - Omani Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:80 +msgid "NOK - Norwegian Krone " +msgstr "" + +#: includes/common/payment-gateways/skrill.php:78 +#: includes/common/payment-gateways/stripe.php:138 +msgid "MYR - Malaysian Ringgit" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:77 +#: includes/common/payment-gateways/stripe.php:127 +msgid "MAD - Moroccan Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:74 +msgid "KRW - South-Korean Won" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:72 +msgid "JOD - Jordanian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:70 +msgid "INR - Indian Rupee" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:63 +msgid "EEK - Estonian Kroon" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:56 +msgid "AED - Utd. Arab Emir. Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:52 +msgid "Turkish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:51 +msgid "Swedish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:50 +msgid "Spanish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:49 +msgid "Russian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:48 +msgid "Romainian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:47 +msgid "Polish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:46 +msgid "Italian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:45 +msgid "Greek" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:44 +msgid "German" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:43 +msgid "French" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:42 +msgid "Finnish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:41 +msgid "English" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:40 +msgid "Dutch" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:39 +msgid "Danish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:38 +msgid "Czech" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:37 +msgid "Chinese" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:201 +msgid "There was an error processing your card: %s. Please re-enter your credit card info and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:278 +msgid "
  • There was an error processing your card: \"%s\". Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:274 +msgid "
  • There was an error processing your card. Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:177 +#: includes/common/payment-gateways/stripe.php:279 +msgid "Publishable Key" +msgstr "" + +#: includes/common/payment-gateways/pin.php:163 +msgid "API Credentials?" +msgstr "" + +#: includes/common/payment-gateways/pin.php:147 +msgid "PIN makes it easy to start accepting credit card payments with Australia’s first all-in-one online payment system. Accept all major credit cards directly on your site. Your sales proceeds are deposited to any Australian bank account, no merchant account required." +msgstr "" + +#: includes/common/payment-gateways/pin.php:57 +#: includes/common/payment-gateways/stripe.php:179 +msgid "USD - United States Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:455 +msgid "Email Footer" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:445 +msgid "Email Header" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:416 +msgid "Partner" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:409 +msgid "Vendor" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:852 +#: includes/common/payment-gateways/paypal-express.php:1126 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences\t section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:749 +msgid "Page Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:744 +msgid "Header Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:739 +msgid "Header Border Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:734 +msgid "Header Image" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:680 +msgid "Locale" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:624 +#: includes/common/payment-gateways/paypal-express.php:658 +msgid "Merchant Email" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:645 +msgid "Paypal Express Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:603 +msgid "Paypal Express Network Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:861 +msgid "Application ID (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:854 +msgid "Signature (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:847 +msgid "API Password (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:839 +msgid "API Username (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:832 +msgid "Signature (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:825 +msgid "API Password (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:817 +msgid "API Username (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:799 +msgid "This message is displayed at the top of the gateway settings page to store admins. It's a good place to inform them of your fees or put any sales messages." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:787 +msgid "Please enter your PayPal email address or business ID you want to recieve fees at." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:786 +msgid "PayPal E-mail" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:772 +msgid "Fees to Collect (%)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:375 +#: includes/public/class-mp-checkout.php:341 +msgid "Email Address" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:299 +msgid "Sorry, your order was not completed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:126 +#: includes/common/payment-gateways/paypal-express.php:780 +msgid "You will be redirected to the PayPal site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:90 +#: includes/common/payment-gateways/skrill.php:94 +msgid "USD - U.S. Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:89 +msgid "TRY - Turkish lira" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:88 +#: includes/common/payment-gateways/stripe.php:170 +msgid "THB - Thai Baht" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:87 +msgid "TWD - Taiwan New Dollars" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:86 +#: includes/common/payment-gateways/pin.php:59 +#: includes/common/payment-gateways/skrill.php:88 +#: includes/common/payment-gateways/stripe.php:162 +msgid "SGD - Singapore Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:84 +msgid "RUB - Russian Rubles" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:82 +msgid "PHP - Philippine Pesos" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:81 +#: includes/common/payment-gateways/pin.php:58 +#: includes/common/payment-gateways/skrill.php:79 +#: includes/common/payment-gateways/stripe.php:145 +msgid "NZD - New Zealand Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:79 +msgid "MXN - Mexican Peso" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:78 +msgid "MYR - Malaysian Ringgits" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:77 +#: includes/common/payment-gateways/pin.php:64 +#: includes/common/payment-gateways/skrill.php:73 +#: includes/common/payment-gateways/stripe.php:112 +msgid "JPY - Japanese Yen" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:75 +#: includes/common/payment-gateways/pin.php:63 +#: includes/common/payment-gateways/skrill.php:66 +#: includes/common/payment-gateways/stripe.php:102 +msgid "HKD - Hong Kong Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:73 +msgid "GBP - Pound Sterling" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:68 +#: includes/common/payment-gateways/pin.php:62 +#: includes/common/payment-gateways/skrill.php:59 +msgid "CAD - Canadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:67 +msgid "BRL - Brazilian Real" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:66 +#: includes/common/payment-gateways/pin.php:56 +#: includes/common/payment-gateways/skrill.php:57 +msgid "AUD - Australian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:288 +msgid "There was an error processing your card: \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:163 +msgid "When running on a live site, Paymill recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:161 +#: includes/common/payment-gateways/pin.php:157 +#: includes/common/payment-gateways/simplify.php:103 +#: includes/common/payment-gateways/stripe.php:260 +#: includes/common/payment-gateways/wepay.php:153 +msgid "Force SSL?" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:151 +msgid "Accept Visa, Mastercard, Maestro UK, Discover and Solo cards directly on your site. You don't need a merchant account or gateway. Credit cards go directly to Paymill's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:131 +msgid "CVV2" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:72 +#: includes/common/payment-gateways/pin.php:61 +#: includes/common/payment-gateways/skrill.php:65 +#: includes/common/payment-gateways/stripe.php:95 +msgid "GBP - British Pound" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:71 +#: includes/common/payment-gateways/stripe.php:173 +msgid "TRY - Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:70 +#: includes/common/payment-gateways/paypal-chained-payments.php:85 +#: includes/common/payment-gateways/skrill.php:87 +#: includes/common/payment-gateways/stripe.php:161 +msgid "SEK - Swedish Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:69 +#: includes/common/payment-gateways/skrill.php:84 +msgid "RON - Romanian Leu New" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:68 +#: includes/common/payment-gateways/paypal-chained-payments.php:83 +#: includes/common/payment-gateways/skrill.php:82 +msgid "PLN - Polish Zloty" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:67 +#: includes/common/payment-gateways/paypal-chained-payments.php:80 +#: includes/common/payment-gateways/stripe.php:143 +msgid "NOK - Norwegian Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:66 +#: includes/common/payment-gateways/skrill.php:75 +#: includes/common/payment-gateways/stripe.php:125 +msgid "LTL - Lithuanian Litas" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:65 +#: includes/common/payment-gateways/paypal-chained-payments.php:69 +#: includes/common/payment-gateways/skrill.php:60 +#: includes/common/payment-gateways/stripe.php:78 +msgid "CHF - Swiss Franc" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:64 +#: includes/common/payment-gateways/skrill.php:76 +msgid "LVL - Latvian Lat" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:63 +#: includes/common/payment-gateways/paypal-chained-payments.php:74 +#: includes/common/payment-gateways/skrill.php:69 +msgid "ILS - Israeli Shekel" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:62 +#: includes/common/payment-gateways/skrill.php:71 +msgid "ISK - Iceland Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:61 +#: includes/common/payment-gateways/paypal-chained-payments.php:76 +#: includes/common/payment-gateways/skrill.php:68 +#: includes/common/payment-gateways/stripe.php:106 +msgid "HUF - Hungarian Forint" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:60 +#: includes/common/payment-gateways/paypal-chained-payments.php:71 +#: includes/common/payment-gateways/skrill.php:62 +#: includes/common/payment-gateways/stripe.php:86 +msgid "DKK - Danish Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:59 +#: includes/common/payment-gateways/skrill.php:67 +#: includes/common/payment-gateways/stripe.php:104 +msgid "HRK - Croatian Kuna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:58 +#: includes/common/payment-gateways/paypal-chained-payments.php:70 +#: includes/common/payment-gateways/skrill.php:61 +msgid "CZK - Czech Koruna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:57 +#: includes/common/payment-gateways/skrill.php:58 +msgid "BGN - Bulgarian Leva" +msgstr "" + +#: includes/common/payment-gateways/payflow/class-mp-gateway-worker-payflow.php:123 +msgid "There was an error connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:344 +msgid "This setting will log all PayFast communication to the \"payfast.log\" file." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:342 +msgid "Log Debugging Info?" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:335 +msgid "DO NOT INPUT A VALUE UNLESS YOU HAVE SET ONE IN THE SETTINGS SECTION OF YOUR PAYFAST SETTINGS." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:333 +msgid "PayFast Passphrase" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:323 +msgid "You can find your credentials on your integration page." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:321 +msgid "PayFast Merchant Credentials" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:311 +msgid "PayFast Mode" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:308 +msgid "PayFast is a payments processing service for South Africa. We make it safe for buyers to send money and easy for sellers to receive money. More Info »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:306 +msgid "PayFast Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:285 +msgid "Your payment via PayFast for this order totaling %s is complete. The transaction number is %s." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:278 +msgid "Your payment via PayFast for this order totaling %s is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:124 +msgid "Your PayFast transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:82 +#: includes/common/payment-gateways/payfast.php:83 +msgid "PayFast" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:157 +msgid "API error: - \"%s\"" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:198 +msgid "The payment request is under process" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:140 +msgid "Order: #" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:116 +msgid "You will be redirected to the Mollie site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:73 +msgid "%sMollie%s provides a fully PCI Compliant and secure way to collect payments via iDeal, Credit Card, Bancontact / Mister Cash, SOFORT Banking, Overbooking, Bitcoin, PayPal, paysafecard and AcceptEmail." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:53 +#: includes/common/payment-gateways/mollie.php:54 +#: includes/common/payment-gateways/mollie.php:195 +#: includes/common/payment-gateways/mollie.php:245 +msgid "Mollie" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:50 +#: includes/common/payment-gateways/paymill.php:56 +#: includes/common/payment-gateways/paypal-chained-payments.php:72 +#: includes/common/payment-gateways/pin.php:60 +#: includes/common/payment-gateways/skrill.php:64 +#: includes/common/payment-gateways/stripe.php:92 +msgid "EUR - Euro" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:306 +msgid "Access Key" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:300 +msgid "You must login to the Mijireh.com dashboard to obtain the Access Key." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:299 +msgid "Credentials" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:289 +msgid "Mijireh Checkout provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:269 +msgid "Mijireh Error: " +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:89 +msgid "You will be redirected to the Mijireh.com site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:87 +msgid "Your Mijireh transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:42 +#: includes/common/payment-gateways/mijireh.php:43 +#: includes/common/payment-gateways/mijireh.php:324 +msgid "Mijireh" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:145 +msgid "These are the manual payment instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:189 +msgid "This is the email text to send to those who have made free order checkouts. You should include your free order instructions / information here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:183 +msgid "This is the free order information to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:182 +msgid "Confirmation User Information" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:177 +msgid "This is the information to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:163 +msgid "If enabled, all free orders will be automatically marked as paid." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:159 +msgid "Payment Status" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:149 +msgid "This gateway is automatically activated if order totalling 0 and it can't be disabled" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:35 +#: includes/common/payment-gateways/free_orders.php:36 +#: includes/common/payment-gateways/free_orders.php:89 +msgid "Free Order" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:34 +#: includes/common/payment-gateways/free_orders.php:197 +msgid "Free Orders" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:515 +msgid "Sandbox API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:266 +#: includes/common/payment-gateways/eway31.php:542 +msgid "eWay Rapid 3.1 Payments (beta)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:403 +msgid "Hosted Payment Page Language" +msgstr "" + +#: includes/common/payment-gateways/eway.php:373 +msgid "Note when testing in sandbox mode it will use the default eWay test API credentials. Also, please note that cart total needs to be a whole number (e.g. 10.00) in order to generate a successful transaction, otherwise the transaction will fail." +msgstr "" + +#: includes/common/payment-gateways/eway.php:267 +msgid "You will be redirected to https://www.eway.com.au to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:380 +msgid "You have chosen to checkout using %s. Please confirm your order details and click \"Submit Order\" when finished." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:272 +#: includes/common/payment-gateways/paymill.php:131 +#: includes/common/payment-gateways/stripe.php:231 +msgid "Security Code " +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Enter in MM/YYYY or MM/YY format" +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Expiration" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:321 +msgid "Delim Data" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:307 +#: includes/common/payment-gateways/paypal-payflow.php:456 +msgid "This text will appear as the footer of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:287 +#: includes/common/payment-gateways/paypal-payflow.php:440 +msgid "Email Customer (on success)" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:278 +msgid "Authorize.net default is \",\". Otherwise, get this from your credit card processor. If the transactions are not going through, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:277 +msgid "Delimeter Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:193 +msgid "Held For Review" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:310 +#: includes/common/payment-gateways/payfast.php:314 +msgid "Test" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:300 +#: includes/common/payment-gateways/pin.php:170 +#: includes/common/payment-gateways/stripe.php:272 +msgid "Secret Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:283 +msgid "Select Your Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:97 +msgid "Your payment will be processed by the iDEAL network" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:208 +msgid "These are the CubePoints to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:203 +msgid "These are the CubePoints instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:266 +msgid "If enabled, all API calls will be made to https://test.bitpay.com." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:263 +msgid "Use Test Mode?" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:259 +msgid "If checked, response fron bitpay will be stored in log file, keep it disabled unless required." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:256 +msgid "Enable Debug Log" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:249 +msgid "Full Notifications" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:231 +#: includes/common/payment-gateways/eway31.php:499 +#: includes/common/payment-gateways/eway31.php:526 +#: includes/common/payment-gateways/mollie.php:83 +#: includes/common/shipping-modules/mp-fedex.php:269 +msgid "API Key" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:222 +msgid "You can now accept a payment from any country on Earth, with no risk of fraud. To use Bitpay, you need to signup on Bitpay. \\n After completing the signup process, you can get api keys at Bitpay API key. You can read more about Bitpay at Bitpay API. \\n Bitpay requires SSL(https) for payment notifications to work." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:61 +msgid "You will be redirected to bitpay.com, for bitcoin payment. It is completely safe." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:346 +msgid "You must login to the 2Checkout vendor dashboard to obtain the seller ID and secret word. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:345 +#: includes/common/payment-gateways/authorizenet-aim.php:239 +#: includes/common/payment-gateways/paymill.php:168 +#: includes/common/payment-gateways/paypal-express.php:704 +#: includes/common/payment-gateways/simplify.php:80 +#: includes/common/payment-gateways/stripe.php:265 +#: includes/common/payment-gateways/wepay.php:158 +msgid "API Credentials" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:325 +#: includes/common/payment-gateways/_bitpay.php:220 +#: includes/common/payment-gateways/_cubepoints.php:185 +#: includes/common/payment-gateways/_ideal.php:268 +#: includes/common/payment-gateways/_payway.php:255 +#: includes/common/payment-gateways/authorizenet-aim.php:219 +#: includes/common/payment-gateways/eway.php:352 +#: includes/common/payment-gateways/eway31.php:460 +#: includes/common/payment-gateways/free_orders.php:147 +#: includes/common/payment-gateways/manual-payments.php:126 +#: includes/common/payment-gateways/mijireh.php:287 +#: includes/common/payment-gateways/mollie.php:71 +#: includes/common/payment-gateways/paymill.php:149 +#: includes/common/payment-gateways/paypal-chained-payments.php:344 +#: includes/common/payment-gateways/paypal-payflow.php:376 +#: includes/common/payment-gateways/pin.php:145 +#: includes/common/payment-gateways/simplify.php:69 +#: includes/common/payment-gateways/skrill.php:121 +#: includes/common/payment-gateways/stripe.php:249 +#: includes/common/payment-gateways/wepay.php:119 +#: includes/common/shipping-modules/mp-fedex.php:243 +#: includes/common/shipping-modules/mp-flat-rate.php:63 +#: includes/common/shipping-modules/mp-pickup.php:140 +#: includes/common/shipping-modules/mp-table-rate.php:94 +#: includes/common/shipping-modules/mp-ups.php:122 +#: includes/common/shipping-modules/mp-usps.php:167 +#: includes/common/shipping-modules/mp-weight-rate.php:110 +msgid "%s Settings" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:136 +msgid "You will be redirected to the 2Checkout site to finalize your payment." +msgstr "" + +#: includes/common/helpers.php:169 includes/public/class-mp-checkout.php:1277 +msgid "Billing" +msgstr "" + +#: includes/common/helpers.php:144 +msgid "FREE" +msgstr "" + +#: includes/common/helpers.php:134 +msgid "Coupons:" +msgstr "" + +#: includes/common/helpers.php:95 +msgid "Qty" +msgstr "" + +#: includes/common/helpers.php:94 +msgid "Sku" +msgstr "" + +#: includes/common/data.php:59 +msgid "Zip Code" +msgstr "" + +#: includes/common/class-mp-taxes.php:336 +msgid "Standard Table" +msgstr "" + +#: includes/common/class-mp-product.php:2698 +msgid "Tweet" +msgstr "" + +#: includes/common/class-mp-product.php:2321 +msgid "Notification Preferences: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2320 +msgid "Edit Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2318 +msgid "Link: %s

    " +msgstr "" + +#: includes/common/class-mp-product.php:2317 +msgid "Current Inventory: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2316 +msgid "Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2314 +msgid "This message is being sent to notify you of low stock of a product in your online store according to your preferences.

    " +msgstr "" + +#: includes/common/class-mp-product.php:1817 +msgid "" +msgstr "" + +#: includes/common/class-mp-product.php:1427 +#: includes/common/class-mp-product.php:1430 +msgid "(tax incl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1422 +#: includes/common/class-mp-product.php:1425 +msgid "(tax excl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1300 +#: includes/common/class-mp-product.php:1315 +msgid "%s each" +msgstr "" + +#: includes/common/class-mp-product.php:988 +msgid "Choose Options" +msgstr "" + +#: includes/common/class-mp-product.php:526 +msgid "Choose a %s" +msgstr "" + +#: includes/common/class-mp-product.php:284 +#: includes/common/class-mp-product.php:292 +#: includes/common/class-mp-product.php:615 +msgid "We're sorry, we only have %d of this item in stock right now." +msgstr "" + +#: includes/common/class-mp-order.php:1456 +msgid "Shipped: Track Shipment" +msgstr "" + +#: includes/common/class-mp-order.php:1049 +msgid "Order Received" +msgstr "" + +#: includes/common/class-mp-order.php:1014 +msgid "In Process" +msgstr "" + +#: includes/common/class-mp-order.php:969 +msgid "Order #" +msgstr "" + +#: includes/common/class-mp-order.php:866 +msgid "Copy billing address to shipping address" +msgstr "" + +#: includes/common/class-mp-order.php:822 +#: includes/public/class-mp-checkout.php:1314 +msgid "Special Instructions" +msgstr "" + +#: includes/common/class-mp-order.php:817 +#: includes/common/payment-gateways/stripe.php:335 +msgid "Email" +msgstr "" + +#: includes/common/class-mp-order.php:813 +#: includes/common/payment-gateways/stripe.php:341 +#: includes/public/class-mp-checkout.php:416 +msgid "Phone" +msgstr "" + +#: includes/common/class-mp-order.php:791 +#: includes/common/payment-gateways/stripe.php:337 +msgid "State" +msgstr "" + +#: includes/common/class-mp-order.php:776 +msgid "Address 1" +msgstr "" + +#: includes/common/class-mp-order.php:766 +msgid "Last Name" +msgstr "" + +#: includes/common/class-mp-order.php:762 +msgid "First Name" +msgstr "" + +#: includes/common/class-mp-installer.php:677 +msgid "MarketPress requires a database update to continue working correctly. Go to update page" +msgstr "" + +#: includes/common/class-mp-installer.php:657 +msgid "MarketPress performed a quick automatic update successfully!" +msgstr "" + +#: includes/common/class-mp-installer.php:653 +msgid "Perform Update" +msgstr "" + +#: includes/common/class-mp-installer.php:647 +msgid "Please update each subsite in your WordPress network where you have older version of the MarketPress plugin." +msgstr "" + +#: includes/common/class-mp-installer.php:641 +msgid "Depending on the amount of products you have, this update could take quite some time. Please keep this window open while the update completes. If you have products with multiple variations, the progress bar may move slower, please don't exit the window." +msgstr "" + +#: includes/common/class-mp-installer.php:632 +msgid "Product Metadata" +msgstr "" + +#: includes/common/class-mp-installer.php:601 +msgid "MarketPress requires a database update to continue working correctly.
    Below you will find a list of items that require your attention." +msgstr "" + +#: includes/common/class-mp-installer.php:600 +msgid "Update MarketPress Data" +msgstr "" + +#: includes/common/class-mp-installer.php:530 +msgid "Update Data" +msgstr "" + +#: includes/common/class-mp-installer.php:67 +msgid "Complete!" +msgstr "" + +#: includes/common/class-mp-installer.php:66 +msgid "Upgrading Database...Please Wait..." +msgstr "" + +#: includes/common/class-mp-installer.php:64 +msgid "An error occurred while updating. Please refresh this page and try again." +msgstr "" + +#: includes/common/class-mp-cart.php:2447 +msgid "Some items in your cart have fallen below the quantity you currently have in your cart. We have adjusted the quantity in your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:2443 +msgid "Some items in your cart are no longer available. We have removed these items from your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:1566 +msgid "item" +msgstr "" + +#: includes/common/class-mp-cart.php:1563 +#: includes/common/class-mp-cart.php:1568 +msgid "items" +msgstr "" + +#: includes/common/class-mp-cart.php:1363 +msgid "Items/Products added to Cart will show here." +msgstr "" + +#: includes/common/class-mp-cart.php:1362 +msgid "Your shopping cart is empty." +msgstr "" + +#: includes/common/class-mp-cart.php:1357 +msgid "View Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1241 +#: includes/common/class-mp-cart.php:1298 +#: includes/public/class-mp-short-codes.php:159 +msgid "Adding..." +msgstr "" + +#: includes/common/class-mp-cart.php:1033 +msgid "Continue Shopping?" +msgstr "" + +#: includes/common/class-mp-cart.php:961 +msgid "Secure Checkout
    Shopping is always safe and secure." +msgstr "" + +#: includes/common/class-mp-cart.php:959 +msgid "You are about to submit your order!
    Please review your order details before continuing. You will be charged immediately upon clicking \"Submit Order\"." +msgstr "" + +#: includes/common/class-mp-cart.php:956 +msgid "Continue »" +msgstr "" + +#: includes/common/class-mp-cart.php:955 +msgid "Submit Order" +msgstr "" + +#: includes/common/class-mp-cart.php:818 +msgid "There are no items in your cart - go add some !" +msgstr "" + +#: includes/common/class-mp-cart.php:816 +msgid "The cart is disabled." +msgstr "" + +#: includes/common/class-mp-cart.php:735 +msgid "Estimated %s" +msgstr "" + +#: includes/common/class-mp-cart.php:717 +msgid "Estimated Shipping" +msgstr "" + +#: includes/common/class-mp-cart.php:697 +msgid "Product Total" +msgstr "" + +#: includes/common/class-mp-cart.php:670 includes/common/class-mp-cart.php:672 +msgid "Estimated Total (%s, %s)" +msgstr "" + +#: includes/common/class-mp-cart.php:668 +msgid "Estimated Total (%s)" +msgstr "" + +#: includes/common/class-mp-cart.php:666 includes/common/class-mp-cart.php:752 +msgid "Estimated Total" +msgstr "" + +#: includes/admin/widgets/product-list.php:247 +msgid "Show Thumbnail Placeholder image (if image is not set)" +msgstr "" + +#: includes/admin/widgets/cart.php:73 +msgid "Display product price" +msgstr "" + +#: includes/admin/widgets/cart.php:71 +msgid "Display product quantity" +msgstr "" + +#: includes/admin/widgets/cart.php:69 +msgid "Display product image" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:93 +msgid "General Shipping Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:773 +msgid "If you are having conflicts with the lightbox library from your theme or another plugin you should uncheck this." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:772 +msgid "Use Built-In Lightbox for Images?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:762 +msgid "Disable Large Image Display?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:688 +msgid "Show Product Image?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:682 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:684 +msgid "Show Tags List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:676 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:678 +msgid "Show Categories List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:671 +msgid "If enabled, description excerpt will be added above Add to cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:669 +msgid "Show Excerpt?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:665 +msgid "If enabled, users will be able to choose how many of the product they want to purchase before adding to their cart. If not checked, quantity could be change later on the cart page." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:663 +msgid "Show Quantity Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:649 +msgid "Settings related to the display of individual product pages." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:648 +msgid "Product Page Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:605 +msgid "Related Products Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:573 +msgid "Show Related Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:568 +msgid "Related Product Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:549 +msgid "Order Status Entries Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:510 +msgid "Sort Products By" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:497 +msgid "Products Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:492 +msgid "Paginate Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:478 +msgid "Excerpts Length" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:473 +msgid "Show Excerpts?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:450 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:746 +msgid "Image Alignment" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:412 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:708 +msgid "Custom Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:401 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:697 +msgid "Large - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:400 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:696 +msgid "Medium - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:399 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:695 +msgid "Thumbnail - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:397 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:693 +msgid "Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:386 +msgid "Select default placeholder image thumbnail when product image is not available (if empty, plugin's built-in image will be used)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:380 +msgid "Show default product placeholder thumbnail when product image is not available?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:374 +msgid "Show Product Thumbnail?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:369 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:658 +msgid "Redirect to cart page for immediate checkout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:368 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:657 +msgid "Stay on current product page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:366 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:655 +msgid "MarketPress supports two \"flows\" for adding products to the shopping cart. After adding a product to their cart, two things can happen:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:365 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:654 +msgid "Add To Cart Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:355 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:628 +msgid "Four" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:354 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:627 +msgid "Three" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:353 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:626 +msgid "Two" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:625 +msgid "One" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:349 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:622 +msgid "Set the number of products that show up in a grid row to best fit your theme" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:348 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:621 +msgid "How many products per row?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:342 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:609 +msgid "Display as grid" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:341 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:608 +msgid "Display as list" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:339 +msgid "Product Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:334 +msgid "Settings related to the display of product lists/grids." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:333 +msgid "Product List/Grid Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:314 +msgid "Show Twitter Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:309 +msgid "Twitter" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:303 +msgid "Show Share Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:297 +msgid "Recommend" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:296 +msgid "Like" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:294 +msgid "Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:283 +msgid "Show Facebook Like Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:278 +msgid "Facebook" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:257 +msgid "Show \"Pin It\" Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:252 +msgid "Pinterest" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:246 +msgid "Social Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:193 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:202 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:211 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:220 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:229 +#: includes/multisite/class-mp-admin-multisite.php:532 +#: includes/multisite/class-mp-admin-multisite.php:541 +#: includes/multisite/class-mp-admin-multisite.php:550 +msgid "Choose a Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:191 +msgid "This page will be used as the root for your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:168 +#: includes/multisite/class-mp-admin-multisite.php:586 +msgid "Create Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "uncropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "cropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:87 +#: includes/multisite/class-mp-admin-multisite.php:121 +#: includes/multisite/class-mp-admin-multisite.php:620 +msgid "An error occurred while creating the store page. Please try again." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:66 +msgid "Choose the gateway(s) that you would like to be available for checkout." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:65 +msgid "Enabled Gateways" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:78 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:146 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:179 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:213 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:274 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:307 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:341 +msgid "Text" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:71 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:139 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:172 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:206 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:267 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:300 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:334 +msgid "Subject" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:52 +msgid "Notification Email" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:510 +msgid "Enabling this option will display label `excl. tax` or `incl. tax` after price" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:509 +msgid "Display tax label?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:504 +msgid "Enabling this option will show Price + Tax, eg. if your price is 100 and your tax 20, your price will be 120" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:416 +#: includes/multisite/class-mp-admin-multisite.php:234 +msgid "Price Format" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:366 +msgid "Enabling this field will display a textbox on the shipping checkout page for users to enter special instructions for their order. Useful for product personalization, etc." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:365 +msgid "Show Special Instructions Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:360 +msgid "Universal" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:359 +msgid "Old" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1167 +#: includes/admin/store-settings/class-mp-store-settings-general.php:358 +msgid "New" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:353 +msgid "If you already use Google Analytics for your website, you can track detailed ecommerce information by enabling this setting. Choose whether you are using the new asynchronous or old tracking code. Before Google Analytics can report ecommerce activity for your website, you must enable ecommerce tracking on the profile settings page for your website. Also keep in mind that some gateways do not reliably show the receipt page, so tracking may not be accurate in those cases. It is recommended to use the PayPal gateway for the most accurate data. More information »" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:347 +msgid "Do you want to display the product price on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:346 +msgid "Show product price on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:340 +msgid "Do you want to display the product quantity on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:339 +msgid "Show product quantity on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:333 +msgid "Do you want to display the product image on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:332 +msgid "Show product image on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:327 +msgid "This option hide floating Mini Cart in top right corner." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:326 +msgid "Disable Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:316 +msgid "If unchecked your Orders admin page will be hidden" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:315 +msgid "Show admin Orders page?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:309 +msgid "Disable Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:303 +msgid "Force Login?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:297 +msgid "Hide Out of Stock Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:555 +msgid "This will prevent multiples of the same downloadable product form being added to the cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:554 +msgid "Limit Digital Products Per-order?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:268 +msgid "If you're having issues downloading large files and have worked with your hosting provider to increase your memory limits, try enabling this - just keep in mind, it's not as secure!" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:267 +msgid "Use Alternative Download Method?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:252 +msgid "Download Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:230 +msgid "Change product post type" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:51 +msgid "%s Capabilities" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-addons.php:47 +msgid "Store Settings: Add Ons: %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:254 +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:56 +msgid "Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Edit Product Attribute %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:246 +msgid "Exporters" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:238 +msgid "Short Codes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:207 +msgid "An appropriate message for key \"%s\" could not be found." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:204 +msgid "Product attribute updated successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:203 +msgid "Product attribute added successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +msgid "Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +#: includes/admin/store-settings/class-mp-store-settings-addons.php:121 +msgid "Store Settings: Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "Store Settings: Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:118 +msgid "Store Settings: Product Tags" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:117 +msgid "Store Settings: Product Categories" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Store Settings: Product Attributes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +msgid "Store Settings: Payments" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:114 +msgid "Store Settings: Shipping" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +#: includes/admin/class-mp-store-settings-admin.php:226 +msgid "Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +msgid "Store Settings: Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:112 +msgid "Store Settings: Presentation" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:111 +msgid "Store Settings: General" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1489 +msgid "Select a Product" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1447 +msgid "Reset to Defaults" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1446 +msgid "Insert Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1202 +#: includes/admin/class-mp-shortcode-builder.php:1227 +#: includes/admin/class-mp-shortcode-builder.php:1252 +msgid "The text to show in the link." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1196 +#: includes/admin/class-mp-shortcode-builder.php:1221 +#: includes/admin/class-mp-shortcode-builder.php:1246 +msgid "Whether to return a clickable link or url." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1177 +msgid "Whether to display the cart only on store pages or not." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1171 +msgid "Whether to show or hide the product price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1165 +msgid "Whether to show or hide the product quantity." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1159 +msgid "Whether to show or hide the product image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1153 +msgid "The text displayed before the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1147 +msgid "The title of the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1058 +#: includes/admin/class-mp-shortcode-builder.php:1121 +msgid "A label to prepend to the price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1032 +#: includes/admin/class-mp-shortcode-builder.php:1127 +msgid "What context for display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1004 +msgid "Set the alignment of the image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:998 +msgid "Set a custom pixel width/height. If omitted defaults to the size set by \"context\"." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:993 +msgid "Widget" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:988 +msgid "What context for preset size options." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:982 +#: includes/admin/class-mp-shortcode-builder.php:1026 +#: includes/admin/class-mp-shortcode-builder.php:1052 +#: includes/admin/class-mp-shortcode-builder.php:1077 +#: includes/admin/class-mp-shortcode-builder.php:1096 +#: includes/admin/class-mp-shortcode-builder.php:1115 +msgid "The ID of the product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:963 +msgid "Whether to display the product meta (e.g. price, buy button)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:738 +#: includes/admin/class-mp-shortcode-builder.php:905 +#: includes/admin/class-mp-shortcode-builder.php:958 +#: includes/admin/class-mp-shortcode-builder.php:992 +#: includes/admin/class-mp-shortcode-builder.php:1035 +#: includes/admin/class-mp-shortcode-builder.php:1130 +#: includes/admin/class-mp-shortcode-builder.php:1349 +msgid "List" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:957 +#: includes/admin/class-mp-shortcode-builder.php:991 +#: includes/admin/class-mp-shortcode-builder.php:1034 +#: includes/admin/class-mp-shortcode-builder.php:1129 +msgid "Single" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:953 +msgid "Whether and what context of image size to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:948 +msgid "Full" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:943 +msgid "Whether and what type of content to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:937 +msgid "Whether to display the product title." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:931 +msgid "The ID of the product to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:747 +#: includes/admin/class-mp-shortcode-builder.php:914 +msgid "Hide" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:746 +#: includes/admin/class-mp-shortcode-builder.php:913 +msgid "Show" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:744 +#: includes/admin/class-mp-shortcode-builder.php:911 +msgid "Whether or not to show the product filters." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:724 +#: includes/admin/class-mp-shortcode-builder.php:891 +#: includes/admin/class-mp-shortcode-builder.php:1335 +msgid "Limits list to a specific product tag." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:713 +#: includes/admin/class-mp-shortcode-builder.php:880 +#: includes/admin/class-mp-shortcode-builder.php:1324 +msgid "Limits list to a specific product category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:706 +#: includes/admin/class-mp-shortcode-builder.php:873 +#: includes/admin/class-mp-shortcode-builder.php:1317 +msgid "Direction to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:684 +#: includes/admin/class-mp-shortcode-builder.php:851 +#: includes/admin/class-mp-shortcode-builder.php:1295 +msgid "What field to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:678 +#: includes/admin/class-mp-shortcode-builder.php:845 +#: includes/admin/class-mp-shortcode-builder.php:1283 +msgid "How many products to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:672 +#: includes/admin/class-mp-shortcode-builder.php:839 +#: includes/admin/class-mp-shortcode-builder.php:1277 +msgid "The page number to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:666 +#: includes/admin/class-mp-shortcode-builder.php:833 +#: includes/admin/class-mp-shortcode-builder.php:1271 +msgid "Whether to paginate the product list. This is useful to only show a subset." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:808 +msgid "How many related items to show." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:790 +msgid "How to relate the products" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:784 +msgid "The product to show related items for." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:765 +msgid "The maximum number of products to display" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:647 +msgid "Comma separated list of tags (term_id) to include. For example, include=5,27 means tags that have the term_id 5 or 27 will be the only tags displayed. Defaults to include everything." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:641 +msgid "Comma separated list of tags (term_id) to exclude. For example, exclude=5,27 means tags that have the term_id 5 or 27 will NOT be displayed. Defaults to exclude nothing." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:633 +#: includes/admin/class-mp-shortcode-builder.php:1420 +msgid "Sort order." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:629 +#: includes/admin/class-mp-shortcode-builder.php:1416 +msgid "Count" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:626 +#: includes/admin/class-mp-shortcode-builder.php:1413 +msgid "Order of the tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:620 +msgid "The text/space between tags)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:616 +msgid "UL with a class of \"wp-tag-cloud\"" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:615 +msgid "separated by whitespace defined by \"separator\" parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:613 +msgid "Format of the cloud display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:607 +msgid "The number of actual tags to display in the cloud. (Use \"0\" to display all tags.)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:601 +msgid "Unit of measure as pertains to the smallest and largest values. This can be any CSS length value, e.g. pt, px, em, %." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:595 +msgid "The text size of the tag with the largest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:589 +msgid "The text size of the tag with the smallest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:570 +msgid "The \"tabindex\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:564 +msgid "The \"name\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:558 +msgid "The \"id\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:552 +msgid "Which category ID is selected." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:540 +msgid "The max depth. This is ignored unless hierarchical is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:536 +#: includes/multisite/template-functions.php:816 +msgid "No Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:414 +#: includes/admin/class-mp-shortcode-builder.php:546 +msgid "Calculates link or post counts by including items from child categories. If show_counts and hierarchical are true this is automatically set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:409 +msgid "Value of n (some number) specifies the depth (or level) to descend in displaying Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:408 +msgid "Show only top level Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:407 +msgid "All Categories displayed in flat (no indent) form (overrides hierarchical)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:406 +msgid "All Categories and child Categories (Default)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:402 +msgid "This parameter controls how many levels in the hierarchy of Categories are to be included in the list of Categories. NOTE: The \"hierarchical\" argument, which is disabled by default, will override the depth argument, unless it is true. When the argument is false, it will display all of the categories. When it is enabled it will use the value in the \"depth\" argument." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:396 +#: includes/admin/class-mp-shortcode-builder.php:1394 +msgid "Sets the number of Categories to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:390 +#: includes/admin/class-mp-shortcode-builder.php:534 +msgid "Set the text to show when no categories are listed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:384 +msgid "Set the title and style of the outer list item. If present but empty, the outer list item will not be displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:378 +#: includes/admin/class-mp-shortcode-builder.php:528 +msgid "Display sub-categories as inner list items (below the parent list item) or inline." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:368 +#: includes/admin/class-mp-shortcode-builder.php:511 +msgid "Exclude category-tree from the results. The parameter include must be empty. If the hierarchical parameter is true, then use exclude instead of exclude_tree." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:354 +msgid "Only include these categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:340 +#: includes/admin/class-mp-shortcode-builder.php:356 +#: includes/admin/class-mp-shortcode-builder.php:370 +#: includes/admin/class-mp-shortcode-builder.php:496 +#: includes/admin/class-mp-shortcode-builder.php:513 +msgid "Select Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:338 +#: includes/admin/class-mp-shortcode-builder.php:494 +msgid "Exclude one or more categories from the results. The parameter include must be empty." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:332 +msgid "Set a URI for an image (usually an rss feed icon) to act as a link to each categories' rss-2 feed. This parameter overrides the feed parameter. There is no default for this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:320 +msgid "Display a link to each category's rss-2 feed and set the link text to display. The default is no text and no feed displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:313 +#: includes/admin/class-mp-shortcode-builder.php:487 +msgid "Any" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:307 +#: includes/admin/class-mp-shortcode-builder.php:481 +msgid "Only display categories that are children of the category identified by this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:301 +msgid "Sets whether a category's description is inserted into the title attribute of the links created (i.e. <a title=\"<em>Category Description</em>\" href=\"...)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:295 +#: includes/admin/class-mp-shortcode-builder.php:475 +msgid "Toggles the display of categories with no posts." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:289 +#: includes/admin/class-mp-shortcode-builder.php:469 +#: includes/admin/class-mp-shortcode-builder.php:1388 +msgid "Toggles the display of the current count of posts in each category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:279 +msgid "Style to display the categories list in. A value of list displays the categories as list items while none generates no special display method (the list items are separated by
    tags)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:269 +#: includes/admin/class-mp-shortcode-builder.php:449 +#: includes/admin/class-mp-shortcode-builder.php:1378 +msgid "Sort order for categories (either ascending or descending)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:259 +#: includes/admin/class-mp-shortcode-builder.php:439 +#: includes/admin/class-mp-shortcode-builder.php:1368 +msgid "Sort categories alphabetically, by unique Category ID, or by the count of posts in that Category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:253 +#: includes/admin/class-mp-shortcode-builder.php:433 +msgid "If a value is entered, causes the display of a link to all categories if the style is set to list." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:219 +msgid "Select an Action" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:217 +msgid "What would you like to do?" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:216 +#: includes/admin/class-mp-shortcode-builder.php:1522 +msgid "Add E-Commerce Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:197 +msgid "Display a list of links to your store pages." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:196 +msgid "Display a link or url to the order status page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:195 +msgid "Display a link or url to the current products list page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:194 +msgid "Display a link or url to the current store page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:193 +msgid "Display a link or url to the current shopping cart page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:192 +msgid "Display the cart widget." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:191 +msgid "Display the full product meta box with price and buy now/add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:190 +msgid "Display the product stock." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:189 +msgid "Display the product SKU number(s)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:188 +msgid "Display the product price (and sale price)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:187 +msgid "Display the buy or add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:186 +msgid "Display the featured image of a given product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:185 +msgid "Display a single product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:184 +msgid "Display a list of products according to preference." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:183 +msgid "Display products related to the one being viewed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:182 +msgid "Display a list of popular products ordered by sales." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:180 +msgid "Display an HTML dropdown of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:179 +msgid "Display an HTML list of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:178 +msgid "Display a cloud or list of your product tags." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:655 +msgid "Setup your payment gateway" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:643 +#: includes/admin/class-mp-setup-wizard.php:649 +msgid "Other Gateways" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:617 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:150 +msgid "Select which calculated shipping methods the customer will be able to choose from." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:601 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:134 +#: includes/public/class-mp-checkout.php:82 +msgid "Shipping Method" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:568 +msgid "I want to charge shipping" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:523 +#: includes/admin/store-settings/class-mp-store-settings-general.php:503 +msgid "Show Price + Tax?" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:507 +msgid "I.e. Taxes, VAT, GST, etc" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:491 +#: includes/admin/store-settings/class-mp-store-settings-general.php:471 +msgid "Current Rates" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:473 +msgid "Default Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:434 +#: includes/admin/class-mp-setup-wizard.php:442 +#: includes/admin/store-settings/class-mp-store-settings-general.php:386 +#: includes/admin/store-settings/class-mp-store-settings-general.php:394 +#: includes/multisite/class-mp-admin-multisite.php:204 +#: includes/multisite/class-mp-admin-multisite.php:212 +msgid "Select a Currency" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:414 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:105 +msgid "Choose Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:411 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:103 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:104 +msgid "All Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:410 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:102 +msgid "These are the countries that you will ship to." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:409 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:101 +msgid "Target Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:401 +msgid "Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:387 +#: includes/admin/store-settings/class-mp-store-settings-general.php:640 +msgid "Zip/Postal Code Label" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:352 +#: includes/admin/store-settings/class-mp-store-settings-general.php:606 +msgid "Select a State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:335 +#: includes/admin/store-settings/class-mp-store-settings-general.php:590 +msgid "Select A Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:332 +#: includes/admin/store-settings/class-mp-store-settings-general.php:587 +msgid "Select a Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:324 +msgid "Location" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:304 +#: includes/admin/class-mp-setup-wizard.php:312 +#: includes/admin/class-mp-store-settings-admin.php:129 +#: includes/admin/class-mp-store-settings-admin.php:262 +msgid "Quick Setup" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:289 +msgid "MarketPress setup is not complete! Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2479 +msgid "Enter your product name here" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2440 +msgid "Select a %s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2426 +msgid "Each product variation needs to have product attributes assigned to it so the system knows how to differentiate one product variation from the other. It is important that you assign a category to this product before choosing any attributes." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2409 +msgid "If you would like this variation to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2320 +msgid "Sale Price (if applicable)" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2281 +msgid "If you would like the description to be different than the main product enter it here." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2229 +msgid "Image" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2202 +#: includes/admin/class-mp-shortcode-builder.php:226 +msgid "Attributes" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2166 +msgid "Create your product variations here. You can reorder variations by using the number to left of each variation, or delete one by clicking the \"x\" to the right of each variation. NOTE: The variation that shows up first in this list will be considered the \"main variation\". The details from this variation will be used in product listings." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2061 +#: includes/admin/class-mp-products-admin.php:2332 +msgid "Value must be less than regular price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2043 +#: includes/admin/class-mp-products-admin.php:2306 +msgid "Regular Price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2023 +#: includes/admin/class-mp-products-admin.php:2286 +msgid "External URL" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1988 +#: includes/admin/class-mp-products-admin.php:2245 +msgid "Enter the quantity that you have available to sell." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1987 +#: includes/admin/class-mp-products-admin.php:2244 +msgid "Inventory Count" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1977 +#: includes/admin/class-mp-products-admin.php:2234 +msgid "Track Inventory?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1871 +msgid "%1$sProduct Images%2$s %3$sAdd images of the product. The first image on the list is the featured image for this product (you can reorder images on the list)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1806 +msgid "Add variations for this product. e.g. If you are selling t-shirts, you can create Color & Size variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1804 +msgid "%3$sAdd variations for%2$s %1$sProduct%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1776 +msgid "This product has a multiple variations %1$s(e.g. Multiple colors, sizes)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1775 +msgid "This is a unique product without variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1700 +msgid "Extra Shipping Cost %1$s(if applicable)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1659 +#: includes/admin/class-mp-products-admin.php:2112 +#: includes/admin/class-mp-products-admin.php:2359 +msgid "Weight" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1636 +#: includes/admin/class-mp-products-admin.php:2098 +#: includes/admin/class-mp-products-admin.php:2416 +msgid "Please enter a valid tax rate" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1531 +msgid "Limit Per Order %1$s(limit the number of the item a shopper can buy per order)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1513 +msgid "SKU %1$s(Stock Keeping Unit)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "%1$sPrice, Inventory & Variants%2$s %3$sSet price, manage inventory and create Product Variants (if appropriate for your product).%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "Product Variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1480 +msgid "External / Affiliate Link" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1471 +msgid "Digital Download" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1470 +msgid "Physical / Tangible Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1464 +msgid "Product Kind %1$s(Physical Product, Digital, etc)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1426 +msgid "Choose Products" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1420 +msgid "If you would like, you can choose specific related products instead of using the ones generated by MarketPress" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1019 +msgid "Changes saved successfully" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:826 +msgid "Option cannot be saved. Try again." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:821 +msgid "Option saved successfully." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:467 +msgid "Img" +msgstr "" + +#: includes/admin/class-mp-product-attributes-list-table.php:57 +msgid "Product attribute(s) deleted successfully." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:162 +msgid "- Create New Variation -" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:144 +msgid "Only lowercase letters and dashes (-) are allowed." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:139 +msgid "If a slug is not entered, it will be generated automatically. Max 32 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:138 +#: includes/admin/class-mp-product-attributes-list-table.php:23 +msgid "Slug" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:130 +msgid "Max 45 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:123 +msgid "Use the numbers on the left to sort. To delete - click the \"X\" to the right of each row." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:122 +msgid "Attribute Options" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:121 +msgid "Add Option" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:105 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:523 +msgid "Sort Order" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:87 +msgid "Alphabetical" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:86 +msgid "ID" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:84 +msgid "Select how the options will be sorted." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:82 +msgid "Sort By" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:75 +msgid "The name of the attribute (e.g. color, size, etc)" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:74 +msgid "Attribute Name" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:69 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Product Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Product Attributes" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:71 +msgid "You can choose to make this page one of the following core store pages." +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:66 +msgid "Network Store Base" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:61 +msgid "Checkout Page" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:52 +msgid "Store Page Settings" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1108 +msgid "Display billing/shipping info for this customer" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1097 +msgid "View order “%s”" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1072 +msgid "Flag as:" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:952 +msgid "Move To Trash" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:948 +msgid " Received" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:927 +msgid "Enter coupon code here" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:812 +msgid "The order status could not be updated due to unexpected error. Please try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:740 +msgid "An invalid bulk action was requested. Please go back and try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:692 +msgid "The order status for order ID %1$s was updated successfully." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:688 +msgid "Order statuses successfully updated." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:530 +msgid "Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:518 +msgid "Actual Shipping Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:513 +msgid "Method Paid For" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:504 +msgid "Amount Collected" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:477 +msgid "DHL" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:408 +msgid "There is no IPN history to show at this time" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:345 +msgid "Type" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:343 +msgid "Gateway" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:301 +#: includes/common/template-functions.php:528 +msgid "Order History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:291 +msgid "IPN History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:283 +msgid "Customer Info" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:279 +msgid "Order Details" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:157 +msgid "All Dates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:320 +msgid "Add Pages to Menu" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:318 +msgid "Add-ons" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:317 +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "User Capabilities" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:316 +#: includes/admin/class-mp-setup-wizard.php:631 +#: includes/admin/store-settings/class-mp-store-settings-payments.php:50 +msgid "Payment Gateways" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:315 +msgid "Shipping Rates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:312 +msgid "Configure" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:309 +#: includes/admin/class-mp-products-admin.php:466 +#: includes/admin/class-mp-shortcode-builder.php:797 +msgid "Tags" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:308 +#: includes/admin/class-mp-products-admin.php:465 +msgid "Categories" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:300 +msgid "Manage" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:297 +msgid "Here's some quick links to manage your store and products." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:288 +msgid "low in stock" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:287 +msgid "%s product" +msgid_plural "%s products" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/admin/class-mp-dashboard-widgets.php:280 +msgid "received" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:279 +#: includes/admin/class-mp-dashboard-widgets.php:283 +msgid "%s order" +msgid_plural "%s orders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/admin/class-mp-dashboard-widgets.php:276 +msgid "Stock & Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:261 +msgid "Last 30 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:256 +msgid "Last 7 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:251 +msgid "Yesterday" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:248 +#: includes/admin/class-mp-dashboard-widgets.php:253 +#: includes/admin/class-mp-dashboard-widgets.php:258 +#: includes/admin/class-mp-dashboard-widgets.php:263 +msgid " Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:246 +msgid "Today" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:241 +msgid "Welcome back! Here's a quick summary of your store's performance." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:196 +#: includes/admin/class-mp-products-admin.php:895 +msgid "No products out of stock." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:136 +#: includes/admin/class-mp-products-admin.php:839 +msgid "Stock Level" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:135 +#: includes/admin/class-mp-products-admin.php:838 +msgid "Variation" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:121 +msgid "Low Stock (%s)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:116 +msgid "Store Management" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:115 +msgid "Store Reports" +msgstr "" + +#: includes/admin/class-mp-ajax.php:579 +#: includes/admin/class-mp-orders-admin.php:520 +#: includes/common/payment-gateways/2checkout.php:370 +#: includes/common/payment-gateways/authorizenet-aim.php:264 +#: includes/common/payment-gateways/mollie.php:93 +#: includes/common/payment-gateways/paymill.php:196 +#: includes/common/payment-gateways/pin.php:190 +#: includes/common/payment-gateways/skrill.php:157 +#: includes/common/payment-gateways/skrill.php:168 +#: includes/common/payment-gateways/wepay.php:143 +#: includes/public/class-mp-checkout.php:404 +msgid "Select One" +msgstr "" + +#: includes/admin/class-mp-ajax.php:511 +msgid "Oops... we could not locate any orders by that ID. Please double check your order ID and try again." +msgstr "" + +#: includes/admin/class-mp-ajax.php:482 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:166 +#: includes/multisite/class-mp-admin-multisite.php:584 +msgid "Edit Page" +msgstr "" + +#: includes/admin/class-mp-ajax.php:346 +msgid "Cancel " +msgstr "" + +#: includes/admin/class-mp-ajax.php:345 +msgid "Save " +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "Edit Description" +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "HTML Markup" +msgstr "" + +#: includes/admin/class-mp-ajax.php:333 +msgid "Plain Text Only" +msgstr "" + +#: includes/admin/class-mp-ajax.php:329 +msgid "Additional Content / Information for this Variation" +msgstr "" + +#: includes/admin/class-mp-ajax.php:317 +#: includes/admin/class-mp-products-admin.php:1762 +msgid "Allow this product to be purchased even if it's out of stock" +msgstr "" + +#: includes/admin/class-mp-ajax.php:313 +#: includes/admin/class-mp-products-admin.php:1711 +msgid "Track Product Inventory" +msgstr "" + +#: includes/admin/class-mp-ajax.php:300 +msgid "Extra Shipping Cost (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:295 +msgid "Ounces:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:294 +msgid "Pounds:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:292 +msgid "Kilograms:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:287 +#: includes/admin/class-mp-products-admin.php:1649 +msgid "Charge Shipping" +msgstr "" + +#: includes/admin/class-mp-ajax.php:273 +#: includes/admin/class-mp-products-admin.php:1623 +#: includes/admin/store-settings/class-mp-store-settings-general.php:454 +msgid "Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:272 +#: includes/admin/class-mp-products-admin.php:1622 +#: includes/admin/class-mp-products-admin.php:2090 +#: includes/admin/class-mp-products-admin.php:2408 +msgid "Special Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:271 +#: includes/admin/class-mp-products-admin.php:1625 +#: includes/admin/class-mp-products-admin.php:2092 +msgid "If you would like this product to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-ajax.php:268 +#: includes/admin/class-mp-products-admin.php:1599 +msgid "Charge Taxes (Special Rate)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:256 +#: includes/admin/class-mp-products-admin.php:1593 +#: includes/admin/class-mp-products-admin.php:2077 +#: includes/admin/class-mp-products-admin.php:2348 +msgid "End Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:255 +#: includes/admin/class-mp-products-admin.php:1589 +#: includes/admin/class-mp-products-admin.php:2072 +msgid "Start Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:1568 +msgid "Enter Sale Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:250 +#: includes/admin/class-mp-products-admin.php:1547 +msgid "Set up a Sale for this Product" +msgstr "" + +#: includes/admin/class-mp-ajax.php:206 includes/admin/class-mp-ajax.php:223 +msgid "Enter " +msgstr "" + +#: includes/admin/class-mp-ajax.php:193 +msgid "Browse" +msgstr "" + +#: includes/admin/class-mp-ajax.php:184 includes/admin/class-mp-ajax.php:192 +msgid "http://" +msgstr "" + +#: includes/admin/class-mp-ajax.php:183 +msgid "External Product URL" +msgstr "" + +#: includes/admin/class-mp-ajax.php:237 +msgid "Limit Per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:177 +#: includes/admin/class-mp-products-admin.php:1520 +msgid "Enter Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:174 +#: includes/admin/class-mp-products-admin.php:1512 +msgid "Enter SKU" +msgstr "" + +#: includes/admin/class-mp-ajax.php:173 +msgid "(Stock Keeping Unit)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:158 +msgid "Remove Image" +msgstr "" + +#: includes/admin/class-mp-ajax.php:74 +msgid "Variation Draft" +msgstr "" + +#: includes/admin/class-mp-admin.php:296 +#: includes/admin/class-mp-dashboard-widgets.php:70 +msgid "Please wait...saving in progress..." +msgstr "" + +#: includes/admin/class-mp-admin.php:295 +#: includes/admin/class-mp-dashboard-widgets.php:69 +msgid "Input is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:294 +#: includes/admin/class-mp-dashboard-widgets.php:68 +msgid "Valid number is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:292 +#: includes/admin/class-mp-dashboard-widgets.php:66 +msgid "Delete %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:291 +#: includes/admin/class-mp-dashboard-widgets.php:65 +msgid "Delete %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:290 +#: includes/admin/class-mp-dashboard-widgets.php:64 +msgid "Update inventory for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:289 +#: includes/admin/class-mp-dashboard-widgets.php:63 +msgid "Update inventory for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:288 +#: includes/admin/class-mp-dashboard-widgets.php:62 +msgid "Update price for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:287 +#: includes/admin/class-mp-dashboard-widgets.php:61 +msgid "Update prices for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:285 +#: includes/admin/class-mp-dashboard-widgets.php:59 +msgid "Creating variations, please wait..." +msgstr "" + +#: includes/admin/class-mp-admin.php:96 +msgid "The following payment gateways have been deprecated, Cubepoints, Bitpay, iDEAL, Skrill, Google Checkout. If you were using one of these gateways, please setup a new payment gateway here." +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:61 +msgid "Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:71 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:71 +#: includes/common/class-mp-gdpr.php:399 includes/common/class-mp-order.php:872 +#: includes/common/helpers.php:164 includes/public/class-mp-checkout.php:1434 +msgid "Shipping Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:66 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:66 +#: includes/common/class-mp-gdpr.php:392 includes/common/class-mp-order.php:864 +#: includes/common/helpers.php:163 includes/public/class-mp-checkout.php:1427 +msgid "Billing Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:61 +msgid "Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:258 +msgid "Shipping Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:256 +msgid "Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:235 +msgid "Payment Method: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:79 +msgid "The dir %s not exist or not writeable" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:239 +msgid "Shop header/logo" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:233 +msgid "Choose a template" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:226 +msgid "Template Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:221 +msgid "Disable automatic creation/attachment of invoices when only free products are ordered" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:220 +msgid "Disable for free products" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:216 +msgid "Attach invoice to" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:214 +msgid "Customer Order Shipped email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:212 +msgid "Customer New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:211 +msgid "Admin New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:206 +msgid "download" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:205 +msgid "How do you want to view the PDF?" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:203 +msgid "Open the PDF in a new browser tab/window" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:202 +msgid "Download the PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:158 +msgid "Export PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:103 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:106 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:109 +msgid "You can't download this order invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:76 +msgid "Invalid Request" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:72 +msgid "Order not exist!" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:67 +msgid "Invalid ID" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1293 +msgid "Coupon added successfully" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1292 +msgid "Please enter a code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1247 +msgid "No end" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1200 +msgid "Valid Dates" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1195 +msgid "Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1027 +msgid "No Coupons found in Trash" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1026 +msgid "No Coupons Found" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1025 +msgid "Search Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1024 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1028 +msgid "View Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1023 +msgid "New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1020 +msgid "Create New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1017 +msgid "Manage Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1002 +msgid "An error occurred while removing your coupon. Please try again." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:964 +msgid "Coupon can't be applied to this cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:951 +msgid "Invalid coupon code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:794 +msgid "Help Text" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:789 +msgid "Form Title" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:783 +msgid "Coupons Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:764 +msgid "End Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:758 +msgid "Does coupon have an end date?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:696 +msgid "Select Products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:688 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:723 +#: includes/common/payment-gateways/paypal-payflow.php:402 +msgid "User" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:638 +msgid "Max Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:636 +msgid "Enter the maximum number of times this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:623 +msgid "Leave blank to allow all other coupons." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:622 +msgid "Select combinable coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:618 +msgid "Can this coupon be combined with other coupons?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:613 +msgid "Apply to each applicable item once per cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:612 +msgid "Apply to each applicable item and quantity ordered" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:609 +msgid "How should the discount amount be applied?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:605 +msgid "Discount Amount" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:604 +msgid "Value must either be a decimal number or a percentage" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:602 +msgid "If you would like to give a percentage-based discount make sure to include the percent (%) symbol. Otherwise, the discount will be applied as a fixed amount off." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:595 +msgid "Letters and Numbers only." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:589 +msgid "Coupon Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:447 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:795 +msgid "More than one code? That's OK! Just be sure to enter one at a time." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:444 +msgid "Apply Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:314 +msgid "Coupon Discounts" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:89 +msgid "1 add-on disabled" +msgid_plural "%s add-ons disabled" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/addons/class-mp-addons-list-table.php:84 +msgid "1 add-on enabled" +msgid_plural "%s add-ons enabled" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Disabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Enable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:129 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:67 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:135 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:168 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:202 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:263 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:296 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:330 +msgid "Enabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +msgid "Disable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:34 +msgid "Disable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:33 +msgid "Enable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:21 +#: includes/admin/class-mp-products-admin.php:2280 +#: includes/common/class-mp-product.php:2916 +msgid "Description" +msgstr "" + +#: includes/common/template-functions.php:2889 +#: includes/multisite/template-functions.php:407 +msgid "Popularity (Least Popular - Most Popular)" +msgstr "Popularność (Najmniej do Najbardziej popularnych) " + +#: includes/common/template-functions.php:2888 +#: includes/multisite/template-functions.php:406 +msgid "Popularity (Most Popular - Least Popular)" +msgstr "Popularność (Najbardziej do Najmniej popularnych) " + +#: includes/common/template-functions.php:2885 +#: includes/multisite/template-functions.php:403 +msgid "Name (Z-A)" +msgstr "Nazwa(Z-A)" + +#: includes/common/template-functions.php:2884 +#: includes/multisite/template-functions.php:402 +msgid "Name (A-Z)" +msgstr "Nazwa (A-Z)" + +#: includes/common/template-functions.php:2883 +#: includes/multisite/template-functions.php:401 +msgid "Release Date (Oldest to Latest)" +msgstr "Data wydania (Najstarsze do Najnowszych) " + +#: includes/common/template-functions.php:2882 +#: includes/multisite/template-functions.php:400 +msgid "Release Date (Latest to Oldest)" +msgstr "Data wydania (Najnowsze do Najstarszych)" + +#: includes/admin/class-mp-dashboard-widgets.php:284 +msgid "paid" +msgstr "zapłacony" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "One Time Pickup" +msgstr "Jednorazowy zakup" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Customer Counter" +msgstr "Licznik klientów" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Daily Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:182 +msgid "For the most accurate rates, please select the appropriate pick up type for your business." +msgstr "" + +#: includes/admin/class-mp-admin.php:374 +msgid "Page saved." +msgstr "Strona zapisana." + +#: includes/admin/class-mp-admin.php:370 +msgid "Custom field deleted." +msgstr "" + +#: includes/admin/class-mp-admin.php:369 +msgid "Custom field updated." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:541 +msgid "%s - The payment request expired, - %s" +msgstr "%s - Czas żądania zapłaty upłynął, - %s" + +#: includes/common/payment-gateways/_bitpay.php:536 +msgid "%s - The payment not credited in merchants bitpay account, action required. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:252 +msgid "If enabled, you will recieve an email for each status update on payment." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:240 +msgid "Speed at which the bitcoin transaction registers as \"confirmed\" to the store. This overrides your merchant settings on the Bitpay website." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:238 +msgid "Transaction Speed" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:244 +msgid "Low" +msgstr "Niski" + +#: includes/common/payment-gateways/_bitpay.php:243 +msgid "Medium" +msgstr "Średni" + +#: includes/common/payment-gateways/_bitpay.php:242 +msgid "High" +msgstr "Wysoki" + +#: includes/common/payment-gateways/_bitpay.php:177 +#: includes/common/payment-gateways/_bitpay.php:517 +#: includes/common/payment-gateways/_bitpay.php:522 +msgid "%s - The payment request is under process. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:175 +#: includes/common/payment-gateways/_bitpay.php:527 +msgid "%s - The payment request has been processed - %s" +msgstr "%s - Wniosek o płatność został przetworzony - %s" + +#: includes/common/payment-gateways/_bitpay.php:150 +#: includes/common/payment-gateways/_bitpay.php:294 +msgid "Incorrect order invoice, please contact site administrator" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:141 +msgid "We could not verify order invoice details, please try again or contact site administrator for help" +msgstr "Nie mogliśmy zweryfikować danych faktury, prosimy spróbować ponownie lub skontaktować się z administratorem serwisu by uzyskać pomoc." + +#: includes/common/payment-gateways/simplify.php:81 +msgid "Login to Simplify to get your API credentials. Enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:605 +#: includes/common/payment-gateways/paypal-express.php:647 +msgid "Express Checkout is PayPal's premier checkout solution, which streamlines the checkout process for buyers and keeps them on your site after making a purchase. Unlike PayPal Pro, there are no additional fees to use Express Checkout, though you may need to do a free upgrade to a business account. More Info »" +msgstr "" + +#. Plugin URI of the plugin/theme +msgid "https://premium.wpmudev.org/project/e-commerce/" +msgstr "" + +#. Author of the plugin/theme +msgid "WPMU DEV" +msgstr "WPMU DEV" + +#: includes/admin/class-mp-orders-admin.php:541 +#: includes/admin/class-mp-orders-admin.php:543 +msgid "Tracking Number" +msgstr "" + +#: includes/common/class-mp-order.php:805 +#: includes/common/payment-gateways/stripe.php:336 +#: includes/public/class-mp-checkout.php:402 +msgid "Country" +msgstr "Państwo" + +#: includes/common/class-mp-order.php:784 +#: includes/common/payment-gateways/stripe.php:338 +msgid "City" +msgstr "Miasto" + +#: includes/common/class-mp-order.php:780 +msgid "Address 2" +msgstr "Adres 2" + +#: includes/common/payment-gateways/stripe.php:340 +msgid "Address" +msgstr "Adres" + +#: includes/common/class-mp-cart.php:752 includes/common/class-mp-gdpr.php:378 +msgid "Order Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:360 +msgid "Payment Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:347 +msgid "Transaction ID" +msgstr "ID tranzakcji" + +#: includes/common/payment-gateways/wepay.php:207 +msgid "The WePay Card Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:186 +#: includes/common/shipping-modules/mp-fedex.php:283 +msgid "Account ID" +msgstr "Id konta" + +#: includes/common/payment-gateways/wepay.php:179 +msgid "Access Token" +msgstr "Token dostępu" + +#: includes/common/payment-gateways/wepay.php:172 +msgid "Client Secret" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:165 +msgid "Client ID" +msgstr "ID klienta " + +#: includes/common/payment-gateways/wepay.php:159 +msgid "You must login to WePay to get your API credentials. Make sure to check \"Tokenize credit cards\" option under \"API Keys\" section of your WePay app." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:154 +msgid "When in live mode it is recommended to use SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:148 +msgid "Donation" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:147 +msgid "Event" +msgstr "Wydarzenie " + +#: includes/common/payment-gateways/wepay.php:146 +msgid "Personal" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:145 +msgid "Service" +msgstr "Serwis" + +#: includes/common/payment-gateways/wepay.php:144 +msgid "Goods" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:141 +msgid "Choose type of payments" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:140 +msgid "Checkout Type" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:134 +msgid "Staging" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:131 +msgid "Choose STAGING if you have registered the app on stage.wepay.com, or PRODUCTION if you registered on www.wepay.com" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:36 +#: includes/common/payment-gateways/wepay.php:299 +msgid "WePay" +msgstr "WePay" + +#: includes/common/payment-gateways/_payway.php:366 +msgid "Rejected - A payment was rejected." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:360 +msgid "Failed - A payment was rejected due to an error." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:342 +msgid "PayWay balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:298 +msgid "Full path of the cacerts.crt file" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:284 +msgid "User Name" +msgstr "Nazwa użytkownika " + +#: includes/common/payment-gateways/_payway.php:277 +msgid "Biller Code" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:273 +msgid "Log Directory" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:266 +msgid "Encryption Key" +msgstr "Kod zabezpieczeń" + +#: includes/common/payment-gateways/_payway.php:60 +msgid "Your PayWay transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:40 +#: includes/common/payment-gateways/_payway.php:41 +msgid "PayWay" +msgstr "PayWay" + +#: includes/common/payment-gateways/paypal-chained-payments.php:862 +msgid "You must register this application with PayPal using your business account login to get an Application ID that will work with your API credentials. A bit of a hassle, but worth it! In the near future we will be looking for ways to simplify this process. Register then submit your application while logged in to the developer portal. Note that you do not need an Application ID for testing in sandbox mode. More Information »" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:818 +#: includes/common/payment-gateways/paypal-chained-payments.php:840 +#: includes/common/payment-gateways/paypal-express.php:705 +msgid "You must login to PayPal and create an API signature to get your credentials. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:378 +msgid "Use Payflow payment gateway to accept online payments using your Internet merchant account and processing network. PayPal Payflow Pro is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:595 +msgid "Tags Only" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:594 +msgid "Category Only" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:795 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:593 +msgid "Category & Tags" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:591 +msgid "Relate Products By" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1008 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:455 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:751 +msgid "Right" +msgstr "Prawo" + +#: includes/admin/class-mp-shortcode-builder.php:1007 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:454 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:749 +msgid "Left" +msgstr "Lewo" + +#: includes/admin/class-mp-shortcode-builder.php:1009 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:750 +msgid "Center" +msgstr "Środkowy" + +#: marketpress.php:273 +msgid "Orders from your e-commerce store." +msgstr "" + +#: marketpress.php:231 +msgid "Products for your e-commerce store." +msgstr "" + +#: marketpress.php:222 +msgid "Edit Product" +msgstr "Edycja produktu" + +#. Description of the plugin/theme +msgid "The complete WordPress ecommerce plugin - works perfectly with BuddyPress and Multisite too to create a social marketplace, where you can take a percentage! Activate the plugin, adjust your settings then add some products to your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:272 +msgid "Beside" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:271 +msgid "Above" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:268 +msgid "Pin Count" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:261 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:287 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:318 +msgid "All View" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:260 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:286 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:317 +msgid "Single View" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:259 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:285 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:316 +msgid "Off" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:578 +msgid "Related Product Limit" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:681 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1201 +msgid "Applies To" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:685 +msgid "All Products" +msgstr "Wszystkie produkty" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:487 +msgid "The label shown for the tax line item in the cart. Taxes, VAT, GST, etc." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:485 +msgid "Tax Label" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:81 +msgid "Apply" +msgstr "" + +#: includes/admin/class-mp-admin.php:192 +msgid "MarketPress Instructions" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1954 +#: includes/admin/class-mp-products-admin.php:2194 includes/common/data.php:62 +#: includes/common/helpers.php:150 +msgid "Taxes" +msgstr "Podatki" + +#: includes/admin/class-mp-products-admin.php:1417 +#: includes/common/class-mp-product.php:2900 +msgid "Related Products" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:282 +#: includes/common/shipping-modules/mp-usps.php:316 +msgid "@ Max" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "(3-5 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "Priority Mail Express International Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:92 +msgid "Priority Mail Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:171 +#: includes/common/shipping-modules/mp-pickup.php:247 +msgid "In Store" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:159 +msgid "Pickup Fee" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:141 +msgid "This option allows your customers to indicate that they will pick-up their order at your place of business." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:60 +#: includes/common/shipping-modules/mp-pickup.php:76 +#: includes/common/shipping-modules/mp-pickup.php:176 +msgid "Pickup Instructions" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:24 +#: includes/common/shipping-modules/mp-pickup.php:254 +msgid "Pickup" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping - 0.00" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:256 +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:440 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:309 +msgid "Your Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:301 +msgid "Station" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:300 +msgid "Request Courier" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:299 +msgid "Drop Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:298 +msgid "Business Service Center" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:297 +msgid "Regular Pickup" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:135 +#: includes/common/shipping-modules/mp-fedex.php:264 +msgid "Production" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:207 +msgid "Simplify Commerce by MasterCard" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:104 +msgid "When in live mode, although it is not required, Simplify recommends you have an SSL certificate." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:183 +#: includes/common/payment-gateways/simplify.php:87 +msgid "Public Key" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:175 +#: includes/common/payment-gateways/simplify.php:94 +msgid "Private Key" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:71 +msgid "Simplify helps merchants to accept online payments from Mastercard, Visa, American Express, Discover, JCB, and Diners Club cards. It's that simple. We offer a merchant account and payment gateway in a single, secure package so you can concentrate on what really matters to your business. Only supports USD currently." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:267 +msgid "%1$s" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:151 +msgid "The Simplify Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/simplify.php:18 +msgid "Simplify" +msgstr "" + +#: includes/common/payment-gateways/pin.php:255 +msgid "%1$s Card %2$s" +msgstr "" + +#: includes/common/payment-gateways/pin.php:211 +msgid "The PIN Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:187 +msgid "Selecting a currency other than currency supported by PIN may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/pin.php:164 +msgid "You must login to PIN to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/pin.php:158 +msgid "When in live mode PIN recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/pin.php:45 +#: includes/common/payment-gateways/pin.php:286 +msgid "PIN" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:830 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:534 +#: includes/common/payment-gateways/paypal-express.php:865 +msgid "The payment is pending" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:235 +msgid "The Paymill Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:169 +msgid "You must login to Paymill to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:45 +#: includes/common/payment-gateways/paymill.php:308 +msgid "Paymill" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:90 +msgid "Invalid cardholder" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:89 +msgid "Card is no longer valid or has expired" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:88 +msgid "Please enter a valid Card CVC" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:87 +msgid "Please choose a valid Expiration Date." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:99 +#: includes/common/payment-gateways/skrill.php:100 +msgid "Skrill (Moneybookers)" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:24 +#: includes/common/shipping-modules/mp-weight-rate.php:292 +msgid "Weight Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:303 +msgid "USPS Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:270 +msgid "USPS Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:264 +msgid "USPS Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:145 +msgid "Flat Rate Large" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:140 +msgid "Flat Rate Medium 2" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:135 +msgid "Flat Rate Medium 1" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:130 +msgid "Flat Rate Small" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:118 +msgid "First Class International Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:114 +msgid "Priority Mail International Small Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:112 +msgid "Priority Mail International Medium Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:110 +msgid "Priority Mail International Large Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:108 +msgid "Priority Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:106 +msgid "Express Mail International Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:104 +msgid "Express Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:98 +msgid "Library Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:96 +msgid "Media Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "First-Class Mail Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:90 +msgid "Priority Mail Small Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:88 +msgid "Priority Mail Medium Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +#: includes/common/shipping-modules/mp-usps.php:88 +#: includes/common/shipping-modules/mp-usps.php:90 +#: includes/common/shipping-modules/mp-usps.php:92 +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "(2-4 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +msgid "Priority Mail Large Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "(2-4) days" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "Priority Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "Express Mail Sunday/Holiday Delivery Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:80 +msgid "Express Mail Flat Rate Boxes Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:78 +msgid "Express Mail Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:76 +msgid "Express Mail Sunday/Holiday Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:74 +msgid "Express Mail Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:72 +#: includes/common/shipping-modules/mp-usps.php:74 +#: includes/common/shipping-modules/mp-usps.php:76 +#: includes/common/shipping-modules/mp-usps.php:78 +#: includes/common/shipping-modules/mp-usps.php:80 +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "(1-2 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:72 +msgid "Express Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:67 +#: includes/common/shipping-modules/mp-usps.php:902 +msgid "USPS" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:534 +msgid "UPS (beta)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:166 +msgid "Required if using negotiated rates" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "Worldwide Express Plus" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "(Scheduled)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "Standard" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "(2-5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "Worldwide Expedited" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:54 +msgid "Worldwide Express" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "2nd Day Air AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "(1 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "Next Day Air Early AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "Next Day Air Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "3 Day Select" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:49 +msgid "Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:48 +msgid "2nd Day Air" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "Next Day Air" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:475 +#: includes/common/shipping-modules/mp-ups.php:43 +msgid "UPS" +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:27 +#: includes/common/shipping-modules/mp-table-rate.php:318 +msgid "Table Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:71 +#: includes/common/shipping-modules/mp-table-quantity.php:77 +msgid "Shipping Cost: " +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:70 +#: includes/common/shipping-modules/mp-table-quantity.php:76 +msgid "If quantity is greater than:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:66 +msgid "Each band must be a higher price than the one above it." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:56 +msgid "Number of Bands:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:53 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Each layer must be a higher quantity than the previous." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:51 +msgid "Table Quantity Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:31 +msgid "Table Quantity" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:135 +#: includes/common/shipping-modules/mp-table-rate.php:174 +#: includes/common/shipping-modules/mp-weight-rate.php:189 +msgid "European Union" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:123 +#: includes/common/shipping-modules/mp-table-rate.php:162 +#: includes/common/shipping-modules/mp-weight-rate.php:177 +msgid "United States" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:111 +#: includes/common/shipping-modules/mp-table-rate.php:151 +#: includes/common/shipping-modules/mp-weight-rate.php:166 +msgid "In Country" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:146 +#: includes/common/shipping-modules/mp-table-rate.php:186 +#: includes/common/shipping-modules/mp-weight-rate.php:201 +msgid "International" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:101 +#: includes/common/shipping-modules/mp-table-rate.php:141 +#: includes/common/shipping-modules/mp-weight-rate.php:156 +msgid "Canada" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:92 +#: includes/common/shipping-modules/mp-table-rate.php:132 +#: includes/common/shipping-modules/mp-weight-rate.php:147 +msgid "Hawaii and Alaska" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:83 +#: includes/common/shipping-modules/mp-table-rate.php:123 +#: includes/common/shipping-modules/mp-weight-rate.php:138 +msgid "Lower 48 States" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:64 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping." +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:25 +#: includes/common/shipping-modules/mp-flat-rate.php:223 +msgid "Flat Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:761 +msgid "FedEx (beta)" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Centimeters" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Inches" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1676 +#: includes/admin/class-mp-setup-wizard.php:547 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:166 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +msgid "Kilograms" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:103 +msgid " %1$s - %2$s" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:358 +msgid "Max Weight per Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:356 +msgid "Box Dimensions" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:354 +msgid "Box Name" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:344 +msgid "Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:343 +msgid "For each box defined enter the maximum weight it can contain." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:341 +msgid "Enter your standard box sizes as LengthxWidthxHeight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:386 +#: includes/common/shipping-modules/mp-ups.php:193 +#: includes/common/shipping-modules/mp-usps.php:234 +#: includes/common/shipping-modules/mp-usps.php:338 +msgid "Standard Boxes and Weight Limits" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:328 +msgid "Handling Charge per Interntional Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:294 +msgid "Handling Charge per Domestic Shipment " +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:388 +#: includes/common/shipping-modules/mp-ups.php:196 +#: includes/common/shipping-modules/mp-usps.php:237 +msgid "Add Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "(Next Day)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +msgid "Europe First International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:62 +msgid "International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:61 +#: includes/common/shipping-modules/mp-fedex.php:62 +#: includes/common/shipping-modules/mp-ups.php:54 +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "(1-3 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:61 +msgid "International First" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "(5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "International Economy" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "(2-7 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "Smart Post" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:55 +#: includes/common/shipping-modules/mp-ups.php:49 +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "(1-5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:55 +msgid "Ground Home Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "(1-7 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "Fedex Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:53 +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "(3 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:53 +msgid "Fedex Express Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +#: includes/common/shipping-modules/mp-ups.php:48 +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "(2 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +msgid "Fedex 2 Day" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "(2 Days am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "Fedex 2 Day AM" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "(1 Day)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +msgid "Standard Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "(1 Day am )" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "Priority Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "(1 Day am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "First Overnight" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:476 +#: includes/common/shipping-modules/mp-fedex.php:31 +msgid "FedEx" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:270 +#: includes/common/payment-gateways/simplify.php:179 +#: includes/common/payment-gateways/stripe.php:365 +msgid "%1$s Card ending in %2$s - Expires %3$s" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:259 +#: includes/common/payment-gateways/pin.php:238 +#: includes/common/payment-gateways/simplify.php:171 +msgid "%s Store Purchase - Order ID: %s, Email: %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:266 +msgid "You must login to Stripe to get your API credentials. You can enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:261 +msgid "When in live mode Stripe recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:311 +msgid "The Stripe Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:263 +#: includes/common/payment-gateways/paymill.php:122 +#: includes/common/payment-gateways/stripe.php:222 +msgid "Card Number" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:86 +msgid "Please enter a valid Credit Card Number." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:45 +#: includes/common/payment-gateways/stripe.php:433 +msgid "Stripe" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:750 +msgid "Sets the background color for the payment page. By default, the color is white." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:745 +msgid "Sets the background color for the header of the payment page. By default, the color is white." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:740 +msgid "Sets the border color around the header of the payment page. The border is a 2-pixel perimeter around the header space, which is 750 pixels wide by 90 pixels high. By default, the color is black." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:735 +msgid "URL for an image you want to appear at the top left of the payment page. The image has a maximum size of 750 pixels wide by 90 pixels high. PayPal recommends that you provide an image that is stored on a secure (https) server. If you do not specify an image, the business name is displayed." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:857 +#: includes/common/payment-gateways/paypal-express.php:1131 +msgid "The payment is pending because it is part of an order that has been authorized but not settled." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:853 +#: includes/common/payment-gateways/paypal-express.php:1127 +msgid "The payment is pending because it has been authorized but not settled. You must capture the funds first." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:847 +#: includes/common/payment-gateways/paypal-express.php:1120 +msgid "You denied the payment when it was marked as pending." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:837 +#: includes/common/payment-gateways/paypal-express.php:1108 +msgid "A reversal has occurred on this transaction due to an unknown reason." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:836 +#: includes/common/payment-gateways/paypal-express.php:1107 +msgid "A reversal has occurred on this transaction because you have given the customer a refund." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:835 +#: includes/common/payment-gateways/paypal-express.php:1106 +msgid "A reversal has occurred on this transaction due to a complaint about the transaction from your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:834 +#: includes/common/payment-gateways/paypal-express.php:1105 +msgid "A reversal has occurred on this transaction due to your customer triggering a money-back guarantee." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:833 +#: includes/common/payment-gateways/paypal-express.php:1104 +msgid "A reversal has occurred on this transaction due to a chargeback by your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:1101 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer:" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:826 +#: includes/common/payment-gateways/paypal-express.php:1097 +msgid "A payment has been accepted." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:818 +#: includes/common/payment-gateways/paypal-express.php:1087 +msgid "The transaction has not terminated, e.g. an authorization may be awaiting completion." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:531 +#: includes/common/payment-gateways/paypal-express.php:810 +#: includes/common/payment-gateways/paypal-express.php:1077 +msgid "The payment has failed. This happens only if the payment was made from your customer's bank account." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:806 +#: includes/common/payment-gateways/paypal-express.php:1072 +msgid "An authorization for this transaction has been voided." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:802 +#: includes/common/payment-gateways/paypal-express.php:1067 +msgid "The authorization period for this payment has been reached." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:798 +#: includes/common/payment-gateways/paypal-express.php:1062 +msgid "A reversal has been canceled; for example, when you win a dispute and the funds for the reversal have been returned to you." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:499 +#: includes/common/payment-gateways/paypal-express.php:1163 +msgid "PayPal Express Checkout" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:798 +msgid "Gateway Settings Page Message" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:725 +msgid "Signature" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:506 +#: includes/common/payment-gateways/eway31.php:533 +#: includes/common/shipping-modules/mp-fedex.php:276 +msgid "API Password" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:773 +msgid "Enter a percentage of all store sales to collect as a fee. Decimals allowed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:757 +msgid "Using PayPal Chained Payments allows you as the multisite network owner to collect a predefined fee or percentage of all sales on network MarketPress stores! This is invisible to the customers who purchase items in a store, and all PayPal fees will be charged to the store owner. To use this option you must create API credentials, and you should make all other gateways unavailable or limited above." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:338 +msgid "Please be aware that we will deduct a ?% fee from the total of each transaction in addition to any fees PayPal may charge you. If for any reason you need to refund a customer for an order, please contact us with a screenshot of the refund receipt in your PayPal history as well as the Transaction ID of our fee deduction so we can issue you a refund. Thank you!" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:698 +#: includes/common/payment-gateways/paypal-express.php:149 +msgid "There was a problem connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:470 +#: includes/common/payment-gateways/paypal-express.php:1053 +msgid "There was a problem verifying the IPN string with PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:310 +msgid "There was a problem connecting to PayPal to check the status of your purchase. Please check the status of your order here »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:539 +#: includes/common/payment-gateways/paypal-chained-payments.php:254 +#: includes/common/payment-gateways/paypal-express.php:1139 +msgid "The payment is pending." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:251 +#: includes/common/payment-gateways/paypal-chained-payments.php:531 +#: includes/common/payment-gateways/paypal-express.php:862 +#: includes/common/payment-gateways/paypal-express.php:1136 +msgid "The payment is pending for an unknown reason. For more information, contact PayPal customer service." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:250 +#: includes/common/payment-gateways/paypal-chained-payments.php:530 +#: includes/common/payment-gateways/paypal-express.php:861 +#: includes/common/payment-gateways/paypal-express.php:1135 +msgid "The payment is pending because you are not yet verified. You must verify your account before you can accept this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:249 +#: includes/common/payment-gateways/paypal-chained-payments.php:529 +#: includes/common/payment-gateways/paypal-express.php:860 +#: includes/common/payment-gateways/paypal-express.php:1134 +msgid "The payment is pending because it was made via credit card and you must upgrade your account to Business or Premier status in order to receive the funds. It can also mean that you have reached the monthly limit for transactions on your account." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:248 +#: includes/common/payment-gateways/paypal-chained-payments.php:528 +#: includes/common/payment-gateways/paypal-express.php:859 +#: includes/common/payment-gateways/paypal-express.php:1133 +msgid "The payment is pending because it was made to an email address that is not yet registered or confirmed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:247 +#: includes/common/payment-gateways/paypal-chained-payments.php:527 +#: includes/common/payment-gateways/paypal-express.php:858 +#: includes/common/payment-gateways/paypal-express.php:1132 +msgid "The payment is pending while it is being reviewed by PayPal for risk." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:246 +#: includes/common/payment-gateways/paypal-chained-payments.php:526 +#: includes/common/payment-gateways/paypal-express.php:856 +#: includes/common/payment-gateways/paypal-express.php:1130 +msgid "You do not have a balance in the currency sent, and you do not have your Payment Receiving Preferences set to automatically convert and accept this payment. You must manually accept or deny this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:245 +#: includes/common/payment-gateways/paypal-chained-payments.php:525 +#: includes/common/payment-gateways/paypal-express.php:855 +#: includes/common/payment-gateways/paypal-express.php:1129 +msgid "The payment is pending because you hold a non-U.S. account and do not have a withdrawal mechanism. You must manually accept or deny this payment from your Account Overview." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:244 +#: includes/common/payment-gateways/paypal-chained-payments.php:524 +#: includes/common/payment-gateways/paypal-express.php:854 +#: includes/common/payment-gateways/paypal-express.php:1128 +msgid "The payment is pending because it was made by an eCheck that has not yet cleared." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:243 +#: includes/common/payment-gateways/paypal-chained-payments.php:523 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:236 +#: includes/common/payment-gateways/paypal-chained-payments.php:516 +msgid "The transaction was rejected by the receiver (you)." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:510 +#: includes/common/payment-gateways/paypal-express.php:843 +#: includes/common/payment-gateways/paypal-express.php:1115 +msgid "You refunded the payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:224 +#: includes/common/payment-gateways/paypal-chained-payments.php:504 +msgid "The transaction is in progress." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:212 +#: includes/common/payment-gateways/paypal-chained-payments.php:491 +#: includes/common/payment-gateways/paypal-express.php:814 +#: includes/common/payment-gateways/paypal-express.php:1082 +msgid "The payment has been partially refunded." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:202 +#: includes/common/payment-gateways/paypal-chained-payments.php:481 +msgid "PayPal balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:177 +msgid "There was a problem connecting to PayPal to setup your purchase. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:122 +msgid "Your PayPal transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:50 +#: includes/common/payment-gateways/paypal-chained-payments.php:53 +#: includes/common/payment-gateways/paypal-chained-payments.php:732 +#: includes/common/payment-gateways/paypal-express.php:500 +#: includes/common/payment-gateways/paypal-express.php:938 +msgid "PayPal" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:48 +#: includes/common/payment-gateways/paypal-chained-payments.php:730 +#: includes/common/payment-gateways/paypal-chained-payments.php:756 +#: includes/common/payment-gateways/paypal-chained-payments.php:873 +msgid "PayPal Chained Payments" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:59 +#: includes/common/payment-gateways/paypal-payflow.php:467 +msgid "PayPal Payflow Pro" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:378 +msgid "Chargeback - A payment was reversed due to a chargeback. The funds have been removed from your account balance and returned to the buyer." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:372 +msgid "Failed - The Credit Card or Direct Debit transaction was declined." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:354 +#: includes/common/payment-gateways/skrill.php:366 +msgid "Cancelled - The payment was cancelled manually by the sender in their online account history or was auto-cancelled after 14 days pending." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:360 +msgid "Pending - The payment is pending. It can take 2-3 days for bank transfers to complete." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:349 +#: includes/common/payment-gateways/skrill.php:354 +msgid "Processed - The payment has been completed, and the funds have been added successfully to your Moneybookers account balance." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:189 +msgid "Shown to the customer on the confirmation screen - the end step of the process - a note, confirmation number, or any other message. Line breaks <br> may be used for longer messages." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:188 +msgid "Confirmation Note (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:183 +msgid "The URL of the logo which you would like to appear at the top of the payment form. The logo must be accessible via HTTPS otherwise it will not be shown. For best integration results we recommend that you use a logo with dimensions up to 200px in width and 50px in height." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:182 +msgid "Logo Image (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:177 +msgid "The name of this store, which will be shown on the gateway. If no value is submitted, the account email will be shown as the recipient of the payment." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:176 +msgid "Merchant Name (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:165 +msgid "Language" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:368 +#: includes/common/payment-gateways/authorizenet-aim.php:262 +#: includes/common/payment-gateways/eway.php:363 +#: includes/common/payment-gateways/eway31.php:471 +#: includes/common/payment-gateways/mollie.php:91 +#: includes/common/payment-gateways/paymill.php:193 +#: includes/common/payment-gateways/paypal-chained-payments.php:356 +#: includes/common/payment-gateways/paypal-express.php:688 +#: includes/common/payment-gateways/paypal-payflow.php:432 +#: includes/common/payment-gateways/pin.php:186 +#: includes/common/payment-gateways/skrill.php:152 +#: includes/common/payment-gateways/stripe.php:288 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:104 +msgid "Currency" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:359 +#: includes/common/payment-gateways/skrill.php:143 +msgid "Secret Word" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:261 +msgid "Order ID:" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:234 +msgid "Complete Checkout" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:204 +msgid "Your Moneybookers transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:155 +msgid "This is the email text to send to those who have made manual payment checkouts. You should include your manual payment instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:257 +#: includes/common/payment-gateways/manual-payments.php:128 +msgid "Record payments manually, such as by Cash, Check, or EFT." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:71 +msgid "Manual/Invoice" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:648 +#: includes/common/payment-gateways/manual-payments.php:35 +#: includes/common/payment-gateways/manual-payments.php:36 +msgid "Manual Payment" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:34 +#: includes/common/payment-gateways/manual-payments.php:163 +msgid "Manual Payments" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:288 +msgid "iDEAL Simulator (for testing)" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:287 +msgid "ABN Amro Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:286 +msgid "Friesland Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:285 +msgid "Rabobank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:284 +msgid "ING Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:279 +msgid "Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:270 +msgid "To make it easier to pay for online products and services, the Dutch banking community has developed the iDEAL online payment method. iDEAL allows online payments to be made using online banking in EUR only." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:247 +#: includes/common/payment-gateways/_payway.php:199 +#: includes/common/payment-gateways/manual-payments.php:68 +msgid "Invoiced" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1016 +msgid "Coupon" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:77 +#: includes/common/payment-gateways/_ideal.php:250 +#: includes/common/payment-gateways/_payway.php:202 +msgid "iDEAL" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:76 +msgid "iDEAL (beta)" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:327 +msgid "Merchant Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:293 +#: includes/common/payment-gateways/_payway.php:302 +#: includes/common/payment-gateways/payfast.php:324 +msgid "Merchant ID" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:462 +msgid "eWay Rapid 3.0 Payments lets merchants recieve credit card payments through eWay without need for users to leave the shop. Note this gateway requires a valid SSL certificate configured for this site." +msgstr "" + +#: includes/common/payment-gateways/eway.php:452 +msgid "There was a problem connecting to eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/eway.php:432 +#: includes/common/payment-gateways/eway.php:437 +msgid "The url of the image can be hosted on your website and pass the secure https:// path of the image to be displayed at the top of the website. This is the second image block on the webpage and is restricted to 960px X 65px. A default secure image is used if none is supplied." +msgstr "" + +#: includes/common/payment-gateways/eway.php:431 +#: includes/common/payment-gateways/eway.php:436 +msgid "Company Logo (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:427 +msgid "The page footer text can be customised and populated below the customer's order details. Useful for contact information." +msgstr "" + +#: includes/common/payment-gateways/eway.php:426 +msgid "Page Footer (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:421 +msgid "Page Description (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:417 +#: includes/common/payment-gateways/eway.php:422 +msgid "This value is used to populate the browsers title bar at the top of the screen." +msgstr "" + +#: includes/common/payment-gateways/eway.php:416 +msgid "Page Title (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:412 +msgid "This will be displayed as the company the customer is purchasing from, including this is highly recommended." +msgstr "" + +#: includes/common/payment-gateways/eway.php:411 +msgid "Company Name" +msgstr "" + +#: includes/common/payment-gateways/eway.php:394 +msgid "Customer ID" +msgstr "" + +#: includes/common/payment-gateways/eway.php:381 +#: includes/common/payment-gateways/eway31.php:488 +msgid "Live API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway.php:371 +#: includes/common/payment-gateways/eway31.php:479 +msgid "Gateway Mode" +msgstr "" + +#: includes/common/payment-gateways/eway.php:354 +msgid "The Hosted Page is a webpage hosted on eWAY's side eliminating the need for merchants to capture, transmit or store credit card numbers. At the checkout time the merchant automatically redirects the customer to the Hosted Page where they would enter their details and have the transaction processed. Upon completion of the transaction the customer is redirected back to the MarketPress checkout confirmation page." +msgstr "" + +#: includes/common/payment-gateways/eway.php:314 +msgid "There was a problem with your credit card information: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:300 +msgid "Paid - The card has been processed - %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:253 +msgid "There was a problem setting up the transaction with eWay: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:245 +#: includes/common/payment-gateways/eway.php:289 +msgid "There was a problem parsing the response from eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:159 +#: includes/common/payment-gateways/eway.php:189 +#: includes/common/payment-gateways/paypal-chained-payments.php:634 +#: includes/common/payment-gateways/paypal-express.php:322 +#: includes/common/payment-gateways/paypal-express.php:473 +msgid "%s Store Purchase - Order ID: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:147 +#: includes/common/payment-gateways/eway.php:462 +msgid "eWay Shared Payments" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:214 +msgid "This is the email text to send to those who have made CubePoints checkouts. You should include your CubePoints instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:212 +#: includes/common/payment-gateways/free_orders.php:188 +#: includes/common/payment-gateways/manual-payments.php:154 +msgid "Order Confirmation Email" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:207 +#: includes/common/payment-gateways/manual-payments.php:149 +msgid "Confirmation User Instructions" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:202 +#: includes/common/payment-gateways/manual-payments.php:144 +msgid "User Instructions" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:198 +#: includes/common/payment-gateways/free_orders.php:170 +#: includes/common/payment-gateways/manual-payments.php:139 +msgid "Enter a public name for this payment method that is displayed to users - No HTML" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:532 +#: includes/common/payment-gateways/_cubepoints.php:196 +#: includes/common/payment-gateways/free_orders.php:169 +#: includes/common/payment-gateways/manual-payments.php:138 +msgid "Method Name" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:187 +msgid "Accept CubePoints as payment(requires the CubePoints plugin)." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:140 +msgid "Sorry, but you do not appear to have enough points to complete this purchase!" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:124 +msgid "%s Store Purchase" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:79 +#: includes/common/payment-gateways/_cubepoints.php:171 +msgid "Your current points: " +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:133 +#: includes/common/payment-gateways/_cubepoints.php:197 +msgid "CubePoints" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:344 +msgid "Authorize.net AIM Checkout" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:331 +msgid "Custom API URL" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:332 +msgid "Many other gateways have Authorize.net API emulators. To use one of these gateways input their API post url here." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:322 +msgid "Request a delimited response from the payment gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:316 +msgid "Security: MD5 Hash" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:317 +msgid "The payment gateway generated MD5 hash value that can be used to authenticate the transaction response. Not needed because responses are returned using an SSL connection." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:306 +msgid "Customer Receipt Email Footer" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:296 +msgid "Customer Receipt Email Header" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:297 +#: includes/common/payment-gateways/paypal-payflow.php:446 +msgid "This text will appear as the header of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:282 +msgid "Encapsulation Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:283 +msgid "Authorize.net default is blank. Otherwise, get this from your credit card processor. If the transactions are going through, but getting strange responses, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:273 +msgid "Optional settings to control advanced options" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:224 +#: includes/common/payment-gateways/authorizenet-aim.php:272 +msgid "Advanced Settings" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:253 +msgid "Transaction Key" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:246 +msgid "Login ID" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:396 +msgid "Gateway Credentials" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:221 +msgid "Authorize.net AIM is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway. USD is the only currency supported by this gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:205 +msgid "There was a problem finalizing your purchase. %s Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:519 +#: includes/common/payment-gateways/paypal-chained-payments.php:218 +#: includes/common/payment-gateways/paypal-chained-payments.php:498 +#: includes/common/payment-gateways/paypal-express.php:822 +#: includes/common/payment-gateways/paypal-express.php:1092 +msgid "The payment has been completed, and the funds have been added successfully to your account balance." +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:233 +msgid "Please enter a valid credit card security code" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:224 +#: includes/public/class-mp-checkout.php:867 +msgid "Please enter a valid credit card number" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:221 +msgid "Please enter your credit card number" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:217 +msgid "Please enter your credit card security code" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:213 +msgid "Please select your credit card expiration date." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:299 +#: includes/common/payment-gateways/authorizenet-aim.php:50 +#: includes/common/payment-gateways/eway.php:148 +#: includes/common/payment-gateways/eway.php:298 +#: includes/common/payment-gateways/eway31.php:267 +#: includes/common/payment-gateways/paymill.php:46 +#: includes/common/payment-gateways/paypal-express.php:972 +#: includes/common/payment-gateways/paypal-payflow.php:60 +#: includes/common/payment-gateways/pin.php:46 +#: includes/common/payment-gateways/simplify.php:19 +#: includes/common/payment-gateways/stripe.php:46 +#: includes/common/payment-gateways/wepay.php:37 +msgid "Credit Card" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:49 +msgid "Authorize.net Checkout" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:156 +#: includes/common/payment-gateways/stripe.php:293 +msgid "Selecting a currency other than that used for your store may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:352 +msgid "Seller ID" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:340 +#: includes/common/payment-gateways/_ideal.php:311 +#: includes/common/payment-gateways/authorizenet-aim.php:234 +#: includes/common/payment-gateways/eway.php:376 +#: includes/common/payment-gateways/payfast.php:315 +#: includes/common/payment-gateways/paypal-chained-payments.php:368 +#: includes/common/payment-gateways/paypal-express.php:699 +#: includes/common/payment-gateways/paypal-payflow.php:391 +msgid "Live" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:339 +#: includes/common/payment-gateways/authorizenet-aim.php:233 +#: includes/common/payment-gateways/eway.php:375 +#: includes/common/payment-gateways/paypal-chained-payments.php:367 +#: includes/common/payment-gateways/paypal-express.php:698 +#: includes/common/payment-gateways/paypal-payflow.php:390 +#: includes/common/shipping-modules/mp-fedex.php:263 +msgid "Sandbox" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:336 +#: includes/common/payment-gateways/_ideal.php:307 +#: includes/common/payment-gateways/authorizenet-aim.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:365 +#: includes/common/payment-gateways/paypal-express.php:695 +#: includes/common/payment-gateways/paypal-payflow.php:387 +#: includes/common/payment-gateways/wepay.php:130 +#: includes/common/shipping-modules/mp-fedex.php:260 +msgid "Mode" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:288 +#: includes/common/payment-gateways/mijireh.php:242 +#: includes/common/payment-gateways/mollie.php:212 +msgid "The order has been received" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:74 +#: includes/common/payment-gateways/2checkout.php:75 +#: includes/common/payment-gateways/2checkout.php:435 +msgid "2Checkout" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:306 +msgid "Confirm" +msgstr "Potwierdź" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:218 +#: includes/common/class-mp-cart.php:974 includes/common/class-mp-cart.php:1354 +#: includes/common/template-functions.php:918 +msgid "Checkout" +msgstr "Płatność" + +#: includes/common/template-functions.php:207 +msgid "Check Order Status" +msgstr "Sprawdź status zamówienia" + +#: includes/common/template-functions.php:235 +msgid "View Products" +msgstr "Wyświetl produkty" + +#: includes/common/template-functions.php:263 +msgid "Visit Store" +msgstr "Odwiedź sklep" + +#: includes/common/template-functions.php:2912 +#: includes/multisite/template-functions.php:448 +msgid "Order By" +msgstr "Sortuj" + +#: includes/common/template-functions.php:2887 +#: includes/multisite/template-functions.php:405 +msgid "Price (High to Low)" +msgstr "wg ceny (od najwyższej)" + +#: includes/common/template-functions.php:2886 +#: includes/multisite/template-functions.php:404 +msgid "Price (Low to High)" +msgstr "wg ceny (od najniższej)" + +#: includes/common/template-functions.php:2881 +#: includes/multisite/template-functions.php:399 +msgid "Default" +msgstr "domyślnie" + +#: includes/common/template-functions.php:2858 +msgid "Show All" +msgstr "Pokaż wszystkie" + +#: includes/common/class-mp-product.php:2048 +msgid "View Larger Image »" +msgstr "" + +#: includes/common/class-mp-product.php:979 +msgid "Out of Stock" +msgstr "Produkt niedostępny" + +#: includes/common/template-functions.php:148 +msgid "Price: " +msgstr "Cena: " + +#: includes/multisite/template-functions.php:833 +msgid "No Tags" +msgstr "" + +#: includes/common/template-functions.php:3162 +msgid "Uncategorized" +msgstr "" + +#: includes/common/class-mp-cart.php:569 includes/common/class-mp-order.php:604 +#: includes/common/helpers.php:115 +msgid "Download" +msgstr "" + +#: includes/common/class-mp-cart.php:1353 +msgid "Empty Cart" +msgstr "Opróżnij koszyk" + +#: includes/common/payment-gateways/_payway.php:291 +#: includes/common/payment-gateways/paypal-express.php:718 +#: includes/common/payment-gateways/paypal-payflow.php:423 +#: includes/common/shipping-modules/mp-ups.php:158 +#: includes/public/class-mp-checkout.php:1254 +#: includes/public/class-mp-checkout.php:1383 +msgid "Password" +msgstr "" + +#: includes/common/payment-gateways/eway.php:387 +#: includes/common/payment-gateways/paypal-express.php:711 +#: includes/common/shipping-modules/mp-usps.php:185 +#: includes/public/class-mp-checkout.php:1249 +msgid "Username" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:437 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:790 +msgid "Have a coupon code?" +msgstr "Masz kupon rabatowy?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:321 +#: includes/admin/class-mp-orders-admin.php:526 +#: includes/common/class-mp-cart.php:592 +msgid "Remove" +msgstr "Usuń:" + +#: includes/admin/class-mp-ajax.php:316 +msgid "Quantity:" +msgstr "Ilość:" + +#: includes/admin/class-mp-products-admin.php:2140 +#: includes/admin/class-mp-products-admin.php:2387 +#: includes/common/shipping-modules/class-mp-shipping-api.php:507 +msgid "Extra Shipping Cost" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:403 +msgid "Choose a Shipping Method:" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1691 +#: includes/admin/class-mp-products-admin.php:2131 +#: includes/admin/class-mp-products-admin.php:2378 +#: includes/common/shipping-modules/class-mp-shipping-api.php:228 +msgid "Ounces" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1684 +#: includes/admin/class-mp-products-admin.php:2123 +#: includes/admin/class-mp-products-admin.php:2369 +#: includes/admin/class-mp-setup-wizard.php:546 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:165 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +#: includes/common/shipping-modules/class-mp-shipping-api.php:227 +msgid "Pounds" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:226 +msgid "Product Weight:" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:214 +msgid "Weight (Kilograms)" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:82 +msgid "Number of Categories:" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:72 +msgid "Product Count" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:20 +#: includes/admin/class-mp-product-attributes-admin.php:129 +#: includes/admin/class-mp-product-attributes-list-table.php:22 +#: includes/admin/class-mp-products-admin.php:2216 +#: includes/admin/class-mp-shortcode-builder.php:628 +#: includes/admin/class-mp-shortcode-builder.php:1415 +#: includes/admin/widgets/ms-global-categories.php:70 +#: includes/common/shipping-modules/mp-fedex.php:395 +#: includes/common/shipping-modules/mp-ups.php:202 +#: includes/common/shipping-modules/mp-usps.php:243 +#: includes/public/class-mp-checkout.php:314 +msgid "Name" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:67 +msgid "Order Categories By:" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:24 +#: includes/admin/widgets/ms-global-categories.php:50 +msgid "Global Product Categories" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:15 +msgid "Global Product Category List" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:13 +msgid "Displays a network-wide HTML list of product categories from network MarketPress stores." +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:24 +#: includes/admin/widgets/ms-global-tag-cloud.php:45 +msgid "Global Product Tags" +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:15 +msgid "Global Product Tag Cloud" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:947 +#: includes/admin/widgets/ms-global-product-list.php:173 +msgid "Excerpt" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:169 +msgid "Content To Show:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:140 +msgid "Limit To Product Tag:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:132 +msgid "Limit To Product Category:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:72 +msgid "Global Products" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:16 +msgid "Global Product List" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:14 +msgid "Shows a customizable global list of products from network MarketPress stores." +msgstr "" + +#: includes/common/class-mp-product.php:974 +#: includes/multisite/template-functions.php:731 +msgid "Buy Now »" +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:13 +msgid "Displays global most used product tags in cloud format from network MarketPress stores." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:438 +msgid "Theme Permissions" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:402 +#: includes/multisite/class-mp-admin-multisite.php:448 +msgid "No Access" +msgstr "" + +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:120 +msgid "Pro Site Level" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:401 +#: includes/multisite/class-mp-admin-multisite.php:447 +msgid "All Can Use" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:390 +msgid "Gateway Permissions" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:375 +msgid "Select a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:350 +msgid "Global Gateway" +msgstr "" + +#. Plugin Name of the plugin/theme +msgid "MarketPress" +msgstr "" + +#: includes/admin/widgets/product-tag-cloud.php:7 +msgid "Your most used product tags in cloud format from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/categories.php:79 +msgid "Show hierarchy" +msgstr "" + +#: includes/admin/widgets/categories.php:76 +#: includes/admin/widgets/ms-global-categories.php:92 +msgid "Show product counts" +msgstr "" + +#: includes/admin/widgets/categories.php:73 +msgid "Show as dropdown" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:710 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:736 +#: includes/admin/widgets/categories.php:30 +msgid "Select Category" +msgstr "" + +#: includes/admin/widgets/categories.php:7 +msgid "A list or dropdown of product categories from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/product-list.php:250 +msgid "Show Buy Button" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:183 +#: includes/admin/widgets/product-list.php:244 +msgid "Show Price" +msgstr "" + +#: includes/admin/widgets/product-list.php:241 +msgid "Show Excerpt" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:155 +#: includes/admin/widgets/product-list.php:238 +msgid "Thumbnail Size:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:153 +#: includes/admin/widgets/product-list.php:237 +msgid "Show Thumbnail" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:147 +#: includes/admin/widgets/product-list.php:233 +msgid "Display Settings" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:136 +#: includes/admin/widgets/ms-global-product-list.php:144 +#: includes/admin/widgets/product-list.php:230 +msgid "Enter the Slug" +msgstr "" + +#: includes/admin/widgets/product-list.php:228 +#: includes/common/template-functions.php:894 +msgid "Tag" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:686 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:712 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:739 +#: includes/admin/class-mp-shortcode-builder.php:796 +#: includes/admin/widgets/product-list.php:227 +#: includes/common/template-functions.php:886 +#: includes/common/template-functions.php:2907 +msgid "Category" +msgstr "" + +#: includes/admin/widgets/product-list.php:226 +msgid "No Filter" +msgstr "" + +#: includes/admin/widgets/product-list.php:224 +msgid "Taxonomy Filter:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:108 +#: includes/admin/widgets/product-list.php:209 +msgid "Order Products By:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:101 +#: includes/admin/widgets/product-list.php:206 +msgid "Number of Products:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:98 +#: includes/admin/widgets/product-list.php:204 +msgid "List Settings" +msgstr "" + +#: includes/admin/widgets/product-list.php:177 +msgid "Our Products" +msgstr "" + +#: includes/admin/widgets/product-list.php:144 +#: includes/common/template-functions.php:2070 +#: includes/common/template-functions.php:2347 +#: includes/multisite/template-functions.php:303 +#: includes/multisite/template-functions.php:623 +msgid "No Products" +msgstr "" + +#: includes/admin/widgets/product-list.php:8 +msgid "Product List" +msgstr "" + +#: includes/admin/widgets/product-list.php:7 +msgid "Shows a customizable list of products from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/cart.php:75 includes/admin/widgets/categories.php:82 +#: includes/admin/widgets/product-list.php:253 +#: includes/admin/widgets/product-tag-cloud.php:57 +msgid "Only show on store pages" +msgstr "" + +#: includes/admin/widgets/cart.php:65 +#: includes/admin/widgets/ms-global-product-list.php:92 +#: includes/admin/widgets/product-list.php:200 +msgid "Custom Text:" +msgstr "" + +#: includes/admin/widgets/cart.php:64 includes/admin/widgets/categories.php:69 +#: includes/admin/widgets/ms-global-categories.php:59 +#: includes/admin/widgets/ms-global-product-list.php:87 +#: includes/admin/widgets/ms-global-tag-cloud.php:49 +#: includes/admin/widgets/product-list.php:199 +#: includes/admin/widgets/product-tag-cloud.php:49 +msgid "Title:" +msgstr "" + +#: includes/admin/widgets/cart.php:7 +msgid "Shows dynamic shopping cart contents along with a checkout button for your MarketPress store." +msgstr "" + +#: includes/admin/widgets/product-tag-cloud.php:8 +msgid "Product Tag Cloud" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:539 +#: includes/admin/class-mp-setup-wizard.php:575 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:163 +msgid "Measurement System" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:616 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:149 +msgid "Select Shipping Options" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:596 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:129 +msgid "Calculated Options" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:582 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:115 +msgid "No Shipping" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:110 +msgid "EU" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:109 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:93 +msgid "All" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:92 +msgid "Select:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:185 +msgid "Store Pages" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:223 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:256 +msgid "Order Shipped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:60 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:95 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:128 +#: marketpress.php:266 +msgid "New Order" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:314 +msgid "Email Notifications" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:59 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:200 +msgid "Products List" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:58 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:190 +msgid "Store Base" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:108 +#: includes/admin/class-mp-shortcode-builder.php:635 +#: includes/admin/class-mp-shortcode-builder.php:708 +#: includes/admin/class-mp-shortcode-builder.php:875 +#: includes/admin/class-mp-shortcode-builder.php:1319 +#: includes/admin/class-mp-shortcode-builder.php:1422 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:526 +#: includes/admin/widgets/ms-global-categories.php:78 +#: includes/admin/widgets/ms-global-product-list.php:127 +#: includes/admin/widgets/product-list.php:221 +msgid "Ascending" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:109 +#: includes/admin/class-mp-shortcode-builder.php:636 +#: includes/admin/class-mp-shortcode-builder.php:709 +#: includes/admin/class-mp-shortcode-builder.php:876 +#: includes/admin/class-mp-shortcode-builder.php:1320 +#: includes/admin/class-mp-shortcode-builder.php:1423 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:525 +#: includes/admin/widgets/ms-global-categories.php:75 +#: includes/admin/widgets/ms-global-product-list.php:124 +#: includes/admin/widgets/product-list.php:220 +msgid "Descending" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:637 +#: includes/admin/class-mp-shortcode-builder.php:695 +#: includes/admin/class-mp-shortcode-builder.php:862 +#: includes/admin/class-mp-shortcode-builder.php:1306 +#: includes/admin/class-mp-shortcode-builder.php:1424 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:518 +#: includes/admin/widgets/ms-global-product-list.php:121 +#: includes/admin/widgets/product-list.php:218 +msgid "Random" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:694 +#: includes/admin/class-mp-shortcode-builder.php:861 +#: includes/admin/class-mp-shortcode-builder.php:1305 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:517 +#: includes/admin/widgets/ms-global-product-list.php:119 +#: includes/admin/widgets/product-list.php:216 +msgid "Product Price" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:693 +#: includes/admin/class-mp-shortcode-builder.php:860 +#: includes/admin/class-mp-shortcode-builder.php:1304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:516 +#: includes/admin/widgets/ms-global-product-list.php:117 +#: includes/admin/widgets/product-list.php:215 +msgid "Number of Sales" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:692 +#: includes/admin/class-mp-shortcode-builder.php:859 +#: includes/admin/class-mp-shortcode-builder.php:1303 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:515 +#: includes/admin/widgets/product-list.php:214 +msgid "Product Author" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:691 +#: includes/admin/class-mp-shortcode-builder.php:858 +#: includes/admin/class-mp-shortcode-builder.php:1302 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:514 +#: includes/admin/widgets/product-list.php:213 +msgid "Product ID" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:690 +#: includes/admin/class-mp-shortcode-builder.php:857 +#: includes/admin/class-mp-shortcode-builder.php:1301 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:513 +#: includes/admin/widgets/ms-global-product-list.php:113 +#: includes/admin/widgets/product-list.php:212 +msgid "Publish Date" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:430 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:726 +msgid "Width" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:439 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:735 +msgid "Height" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:88 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:402 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:698 +msgid "Custom" +msgstr "" + +#: includes/common/class-mp-product.php:179 +#: includes/common/class-mp-product.php:992 +#: includes/common/class-mp-product.php:1000 +#: includes/multisite/template-functions.php:579 +msgid "Buy Now" +msgstr "" + +#: includes/common/class-mp-product.php:175 +#: includes/common/class-mp-product.php:990 +#: includes/common/class-mp-product.php:998 +msgid "Add To Cart" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:807 +msgid "Store Style" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1021 +msgid "Edit Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupon.php:580 +#: includes/admin/class-mp-ajax.php:238 +#: includes/admin/class-mp-products-admin.php:1532 +msgid "Unlimited" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1198 +msgid "Remaining Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1197 +msgid "Used" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:752 +#: includes/admin/class-mp-products-admin.php:2343 +msgid "Start Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:598 +msgid "Coupon Code" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:444 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:284 +msgid "Save Changes" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:57 +#: includes/admin/class-mp-shortcode-builder.php:716 +#: includes/admin/class-mp-shortcode-builder.php:727 +#: includes/admin/class-mp-shortcode-builder.php:883 +#: includes/admin/class-mp-shortcode-builder.php:894 +#: includes/admin/class-mp-shortcode-builder.php:946 +#: includes/admin/class-mp-shortcode-builder.php:956 +#: includes/admin/class-mp-shortcode-builder.php:1006 +#: includes/admin/class-mp-shortcode-builder.php:1327 +#: includes/admin/class-mp-shortcode-builder.php:1338 +#: includes/admin/store-settings/class-mp-store-settings-general.php:357 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:270 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:108 +#: includes/admin/widgets/ms-global-product-list.php:172 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:94 +msgid "None" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:352 +msgid "Google Analytics Ecommerce Tracking" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:310 +msgid "This option turns MarketPress into more of a product listing plugin, disabling shopping carts, checkout, and order management. This is useful if you simply want to list items you can buy in a store somewhere else, optionally linking the \"Buy Now\" buttons to an external site. Some examples are a car dealership, or linking to songs/albums in itunes, or linking to products on another site with your own affiliate links." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:304 +msgid "Whether or not customers must be registered and logged in to checkout. (Not recommended: Enabling this can lower conversions)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:258 +msgid "How many times may a customer download a file they have purchased? (It's best to set this higher than one in case they have any problems downloading)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:257 +msgid "Maximum Downloads" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:298 +msgid "This will set the product to draft if inventory of all variations is gone." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:288 +msgid "At what low stock count do you want to be warned for products you have enabled inventory tracking for?" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:208 +#: includes/admin/store-settings/class-mp-store-settings-general.php:287 +msgid "Inventory Warning Threshold" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:282 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:542 +msgid "Miscellaneous Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:429 +#: includes/multisite/class-mp-admin-multisite.php:247 +msgid "Show Decimal in Prices" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:451 +#: includes/admin/store-settings/class-mp-store-settings-general.php:403 +#: includes/multisite/class-mp-admin-multisite.php:221 +msgid "Currency Symbol Position" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:444 +#: includes/admin/store-settings/class-mp-store-settings-general.php:396 +msgid "Store Currency" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:429 +#: includes/admin/store-settings/class-mp-store-settings-general.php:381 +msgid "Currency Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:516 +msgid "Please see your local tax laws. Note if this is enabled and a downloadable only cart, rates will be the default for your base location." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:529 +msgid "Apply Tax to Downloadable Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:498 +msgid "Enabling this option allows you to enter and show all prices inclusive of tax, while still listing the tax total as a line item in shopping carts. Please see your local tax laws." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:497 +msgid "Enter Prices Inclusive of Tax?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:492 +msgid "Please see your local tax laws. Most areas charge tax on shipping fees." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:491 +msgid "Apply Tax To Shipping Fees?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:674 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:565 +#: includes/common/payment-gateways/authorizenet-aim.php:291 +#: includes/common/payment-gateways/authorizenet-aim.php:326 +#: includes/common/payment-gateways/payfast.php:347 +msgid "No" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:675 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:759 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:512 +#: includes/admin/class-mp-setup-wizard.php:518 +#: includes/admin/class-mp-setup-wizard.php:524 +#: includes/admin/class-mp-setup-wizard.php:530 +#: includes/admin/class-mp-setup-wizard.php:564 +#: includes/admin/store-settings/class-mp-store-settings-general.php:232 +#: includes/admin/store-settings/class-mp-store-settings-general.php:299 +#: includes/admin/store-settings/class-mp-store-settings-general.php:305 +#: includes/admin/store-settings/class-mp-store-settings-general.php:311 +#: includes/admin/store-settings/class-mp-store-settings-general.php:317 +#: includes/admin/store-settings/class-mp-store-settings-general.php:328 +#: includes/admin/store-settings/class-mp-store-settings-general.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:341 +#: includes/admin/store-settings/class-mp-store-settings-general.php:348 +#: includes/admin/store-settings/class-mp-store-settings-general.php:367 +#: includes/admin/store-settings/class-mp-store-settings-general.php:493 +#: includes/admin/store-settings/class-mp-store-settings-general.php:499 +#: includes/admin/store-settings/class-mp-store-settings-general.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:556 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:375 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:381 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:387 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:474 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:493 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:532 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:574 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:606 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:664 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:670 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:677 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:683 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:689 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:763 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:774 +#: includes/common/payment-gateways/_bitpay.php:250 +#: includes/common/payment-gateways/_bitpay.php:257 +#: includes/common/payment-gateways/_bitpay.php:264 +#: includes/common/payment-gateways/authorizenet-aim.php:290 +#: includes/common/payment-gateways/authorizenet-aim.php:325 +#: includes/common/payment-gateways/free_orders.php:160 +#: includes/common/payment-gateways/payfast.php:346 +#: includes/common/payment-gateways/paymill.php:162 +#: includes/common/payment-gateways/paypal-payflow.php:441 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-checkbox.php:22 +msgid "Yes" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:492 +#: includes/admin/store-settings/class-mp-store-settings-general.php:472 +msgid "%s Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:467 +#: includes/admin/store-settings/class-mp-store-settings-general.php:449 +msgid "Tax Settings" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:370 +#: includes/admin/store-settings/class-mp-store-settings-general.php:624 +msgid "Base Zip/Postal Code" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:354 +#: includes/admin/store-settings/class-mp-store-settings-general.php:608 +msgid "Base State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:589 +msgid "Base Country" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:582 +msgid "Location Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:195 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:800 +#: includes/multisite/class-mp-admin-multisite.php:172 +msgid "General Settings" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1945 +#: includes/admin/class-mp-products-admin.php:2185 +#: includes/admin/class-mp-store-settings-admin.php:111 +#: includes/admin/class-mp-store-settings-admin.php:266 +msgid "General" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:242 +msgid "Importers" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +#: includes/admin/class-mp-store-settings-admin.php:234 +msgid "Payments" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:313 +#: includes/admin/class-mp-store-settings-admin.php:112 +#: includes/admin/class-mp-store-settings-admin.php:222 +msgid "Presentation" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:916 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1015 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1018 +#: includes/admin/class-mp-dashboard-widgets.php:305 marketpress.php:702 +msgid "Coupons" +msgstr "" + +#: includes/admin/class-mp-admin.php:251 +msgid "Download »" +msgstr "" + +#: includes/admin/class-mp-admin.php:245 +#: includes/admin/class-mp-exporter-orders.php:170 +msgid "All Statuses" +msgstr "" + +#: includes/admin/class-mp-admin.php:209 +#: includes/admin/class-mp-exporter-orders.php:150 +#: includes/admin/class-mp-exporter-orders.php:178 +msgid "Export Orders" +msgstr "" + +#: includes/admin/class-mp-admin.php:228 +msgid "Show all dates" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:947 +msgid "Change Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:287 +msgid "Order Notes" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:478 +msgid "Other" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:205 +msgid "Subtotal" +msgstr "Razem" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:84 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:87 +#: includes/admin/class-mp-products-admin.php:1737 +#: includes/common/class-mp-cart.php:1409 +#: includes/common/class-mp-product.php:559 +msgid "Quantity" +msgstr "Ilość" + +#: includes/common/helpers.php:93 +msgid "Item" +msgstr "Przedmiot" + +#: includes/common/class-mp-order.php:1050 +msgid "Current Status" +msgstr "Status zamówienia" + +#: includes/admin/class-mp-orders-admin.php:297 +msgid "Order Actions" +msgstr "" + +#: includes/common/class-mp-product.php:1084 +msgid "More Info »" +msgstr "" + +#: includes/common/class-mp-product.php:2313 +msgid "Low Product Inventory Notification" +msgstr "" + +#: includes/common/class-mp-order.php:338 includes/common/data.php:154 +msgid "New Order Notification: ORDERID" +msgstr "" + +#: includes/common/helpers.php:259 +msgid "Your payment for this order is complete." +msgstr "" + +#: includes/common/helpers.php:261 +msgid "Your payment for this order is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/helpers.php:256 +msgid "Payment Total:" +msgstr "Należność ogółem:" + +#: includes/common/helpers.php:253 +msgid "Transaction ID:" +msgstr "" + +#: includes/common/helpers.php:249 +msgid "Payment Type:" +msgstr "" + +#: includes/common/helpers.php:246 +msgid "Payment Method:" +msgstr "Metoda płatności:" + +#: includes/common/helpers.php:242 +msgid "Order Notes:" +msgstr "" + +#: includes/common/helpers.php:237 +msgid "Special Instructions:" +msgstr "Specjalne instrukcje:" + +#: includes/common/helpers.php:232 +msgid "Tracking Number:" +msgstr "Numer śledzenia:" + +#: includes/common/helpers.php:223 includes/common/helpers.php:226 +#: includes/common/helpers.php:228 +#: includes/common/shipping-modules/class-mp-shipping-api.php:406 +#: includes/common/shipping-modules/class-mp-shipping-api.php:428 +msgid "Shipping Method:" +msgstr "Metoda wysyłki:" + +#: includes/common/helpers.php:168 +msgid "No shipping required for this order." +msgstr "" + +#: includes/common/helpers.php:155 +msgid "Order Total:" +msgstr "Razem:" + +#: includes/common/class-mp-order.php:1025 +msgid "Taxes:" +msgstr "Podatek:" + +#: includes/common/class-mp-order.php:1032 includes/common/helpers.php:144 +msgid "Shipping:" +msgstr "Dostawa:" + +#: includes/public/class-mp-checkout.php:367 +msgid "Street address, P.O. box, company name, c/o" +msgstr "Ulica i numer, skrytka pocztowa lub nazwa budynku" + +#: includes/admin/class-mp-orders-admin.php:314 +msgid "Shipping Info" +msgstr "" + +#: includes/public/class-mp-public.php:740 +msgid "Whoops, there was a problem loading up this file for your download. Please contact us for help." +msgstr "" + +#: includes/public/class-mp-public.php:683 +msgid "Sorry, our records show you've downloaded this file %d out of %d times allowed. Please contact us if you still need help." +msgstr "" + +#: includes/public/class-mp-public.php:634 +msgid "Sorry, your order has been marked as unpaid." +msgstr "" + +#: includes/public/class-mp-public.php:629 +msgid "Sorry, the link is invalid for this download." +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:15 +#: includes/admin/class-mp-products-admin.php:1172 +msgid "Cheatin’ uh?" +msgstr "" + +#: includes/public/class-mp-public.php:407 +#: includes/public/class-mp-short-codes.php:128 +msgid "Please enter a valid email address." +msgstr "" + +#: includes/admin/class-mp-ajax.php:191 +#: includes/admin/class-mp-products-admin.php:1821 +#: includes/admin/class-mp-products-admin.php:2010 +#: includes/admin/class-mp-products-admin.php:2267 +msgid "File URL" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1842 +msgid "External Link" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2177 +msgid "Add Variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:126 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:289 +msgid "Inventory" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:438 +#: includes/admin/class-mp-products-admin.php:578 +#: includes/admin/class-mp-products-admin.php:1552 +#: includes/admin/class-mp-products-admin.php:2053 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:134 +msgid "Sale Price" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "Variation Name" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1931 +msgid "Product Details" +msgstr "" + +#: includes/admin/class-mp-product-attributes-list-table.php:33 +msgid "Delete" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1057 +msgid "Trashed" +msgstr "W koszu" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:231 +#: includes/admin/class-mp-orders-admin.php:1015 +#: includes/common/class-mp-order.php:1052 includes/common/helpers.php:97 +msgid "Total" +msgstr "Razem" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1196 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:210 +#: includes/admin/class-mp-orders-admin.php:1014 +msgid "Discount" +msgstr "Rabat" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:221 +#: includes/admin/class-mp-orders-admin.php:1013 +#: includes/common/payment-gateways/_ideal.php:148 +#: includes/common/payment-gateways/_payway.php:134 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:108 +msgid "Tax" +msgstr "Podatek" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:216 +#: includes/admin/class-mp-orders-admin.php:1012 +#: includes/admin/class-mp-products-admin.php:1958 +#: includes/admin/class-mp-products-admin.php:2198 +#: includes/admin/class-mp-store-settings-admin.php:114 +#: includes/admin/class-mp-store-settings-admin.php:230 +#: includes/common/class-mp-cart.php:717 includes/common/helpers.php:168 +#: includes/common/payment-gateways/_ideal.php:137 +#: includes/common/payment-gateways/_payway.php:116 +#: includes/public/class-mp-checkout.php:1304 +msgid "Shipping" +msgstr "Dostawa" + +#: includes/admin/class-mp-orders-admin.php:1011 +msgid "Items" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1010 +msgid "From" +msgstr "Od" + +#: includes/admin/class-mp-exporter-orders.php:154 +#: includes/admin/class-mp-orders-admin.php:1009 +#: includes/common/class-mp-gdpr.php:370 +msgid "Order Date" +msgstr "Data zamówienia" + +#: includes/admin/class-mp-orders-admin.php:1008 +#: includes/common/class-mp-gdpr.php:366 +#: includes/common/template-functions.php:2134 +msgid "Order ID" +msgstr "Numer zamówienia" + +#: includes/addons/class-mp-addons-list-table.php:22 +#: includes/admin/class-mp-orders-admin.php:1007 +msgid "Status" +msgstr "Status" + +#: includes/admin/class-mp-orders-admin.php:1155 +msgid "N/A" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:243 +#: includes/admin/class-mp-products-admin.php:464 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:142 +msgid "Sales" +msgstr "Promocje" + +#: includes/admin/class-mp-products-admin.php:463 +msgid "Stock" +msgstr "Dostepność" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:85 +#: includes/admin/class-mp-ajax.php:176 includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:434 +#: includes/admin/class-mp-products-admin.php:462 +#: includes/admin/class-mp-products-admin.php:576 +#: includes/admin/class-mp-products-admin.php:1519 +#: includes/admin/class-mp-products-admin.php:1569 +#: includes/admin/class-mp-products-admin.php:1950 +#: includes/admin/class-mp-products-admin.php:2059 +#: includes/admin/class-mp-products-admin.php:2190 +#: includes/admin/class-mp-products-admin.php:2330 +#: includes/common/class-mp-cart.php:1415 includes/common/helpers.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:130 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:276 +msgid "Price" +msgstr "Cena" + +#: includes/admin/class-mp-ajax.php:173 +#: includes/admin/class-mp-products-admin.php:461 +#: includes/admin/class-mp-products-admin.php:1972 +#: includes/admin/class-mp-products-admin.php:2224 +msgid "SKU" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:459 +#: includes/admin/class-mp-products-admin.php:1793 +#: includes/admin/class-mp-products-admin.php:1805 +#: includes/admin/class-mp-products-admin.php:2163 +msgid "Variations" +msgstr "Odmiany" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:83 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:86 +#: includes/admin/class-mp-dashboard-widgets.php:134 +#: includes/admin/class-mp-products-admin.php:458 +#: includes/admin/class-mp-products-admin.php:837 +#: includes/admin/class-mp-shortcode-builder.php:689 +#: includes/admin/class-mp-shortcode-builder.php:856 +#: includes/admin/class-mp-shortcode-builder.php:1300 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:512 +#: includes/admin/widgets/ms-global-product-list.php:115 +#: includes/admin/widgets/product-list.php:211 +msgid "Product Name" +msgstr "Nazwa produktu" + +#: includes/common/template-functions.php:2575 +msgid "Categorized in " +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:305 +#: includes/common/payment-gateways/free_orders.php:176 +msgid "Payment Information" +msgstr "Dane do płatności" + +#: includes/admin/class-mp-exporter-orders.php:167 +#: includes/admin/class-mp-orders-admin.php:432 +#: includes/admin/class-mp-pages-admin.php:62 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:227 +#: includes/common/class-mp-gdpr.php:374 +#: includes/common/template-functions.php:175 +#: includes/common/template-functions.php:926 +msgid "Order Status" +msgstr "Status zamówienia" + +#. translators: %s: orders closed +#: marketpress.php:327 +msgid "Closed (%s)" +msgid_plural "Closed (%s)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/admin/class-mp-admin.php:249 +#: includes/admin/class-mp-orders-admin.php:375 +#: includes/admin/class-mp-orders-admin.php:951 +#: includes/admin/class-mp-orders-admin.php:1053 +#: includes/admin/class-mp-orders-admin.php:1065 +#: includes/common/class-mp-gdpr.php:330 +#: includes/common/class-mp-order.php:1019 marketpress.php:325 +msgid "Closed" +msgstr "" + +#. translators: %s: shipped orders +#: marketpress.php:320 +msgid "Shipped (%s)" +msgid_plural "Shipped (%s)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/admin/class-mp-admin.php:248 +#: includes/admin/class-mp-orders-admin.php:376 +#: includes/admin/class-mp-orders-admin.php:950 +#: includes/admin/class-mp-orders-admin.php:1049 +#: includes/admin/class-mp-orders-admin.php:1064 +#: includes/common/class-mp-gdpr.php:329 +#: includes/common/class-mp-order.php:1002 marketpress.php:318 +msgid "Shipped" +msgstr "" + +#. translators: %s: paid orders +#: marketpress.php:313 +msgid "Paid (%s)" +msgid_plural "Paid (%s)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/admin/class-mp-admin.php:247 +#: includes/admin/class-mp-orders-admin.php:377 +#: includes/admin/class-mp-orders-admin.php:949 +#: includes/admin/class-mp-orders-admin.php:1045 +#: includes/admin/class-mp-orders-admin.php:1063 +#: includes/common/class-mp-gdpr.php:328 +#: includes/common/payment-gateways/2checkout.php:294 +#: includes/common/payment-gateways/_cubepoints.php:130 +#: includes/common/payment-gateways/authorizenet-aim.php:193 +#: includes/common/payment-gateways/free_orders.php:91 +#: includes/common/payment-gateways/mijireh.php:248 +#: includes/common/payment-gateways/paymill.php:273 +#: includes/common/payment-gateways/paypal-express.php:933 +#: includes/common/payment-gateways/paypal-express.php:967 +#: includes/common/payment-gateways/pin.php:258 +#: includes/common/payment-gateways/simplify.php:181 +#: includes/common/payment-gateways/stripe.php:368 +#: includes/common/payment-gateways/wepay.php:269 marketpress.php:311 +msgid "Paid" +msgstr "Zapłacone" + +#. translators: %s: orders received +#: marketpress.php:306 +msgid "Received (%s)" +msgid_plural "Received (%s)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/admin/class-mp-admin.php:246 +#: includes/admin/class-mp-orders-admin.php:378 +#: includes/admin/class-mp-orders-admin.php:1041 +#: includes/admin/class-mp-orders-admin.php:1062 +#: includes/common/class-mp-gdpr.php:327 includes/common/class-mp-order.php:995 +#: includes/common/payment-gateways/payfast.php:244 marketpress.php:304 +msgid "Received" +msgstr "Otrzymane" + +#: marketpress.php:268 +msgid "Search Orders" +msgstr "" + +#: marketpress.php:267 +msgid "View Order" +msgstr "" + +#: marketpress.php:262 +msgid "Order" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:301 +#: includes/admin/class-mp-orders-admin.php:989 marketpress.php:261 +msgid "Orders" +msgstr "" + +#: marketpress.php:228 +msgid "No Products found in Trash" +msgstr "" + +#: marketpress.php:227 +msgid "No Products Found" +msgstr "" + +#: marketpress.php:226 +msgid "Search Products" +msgstr "" + +#: marketpress.php:225 marketpress.php:229 +msgid "View Product" +msgstr "" + +#: marketpress.php:224 +msgid "New Product" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1022 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:258 +#: marketpress.php:223 +msgid "Edit" +msgstr "Zmień" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1019 +msgid "Create New" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:687 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:698 +#: marketpress.php:217 +msgid "Product" +msgstr "produkt" + +#: includes/admin/class-mp-dashboard-widgets.php:307 +#: includes/common/template-functions.php:173 +#: includes/common/template-functions.php:179 +#: includes/common/template-functions.php:902 +#: includes/multisite/template-functions.php:82 marketpress.php:216 +#: marketpress.php:219 +msgid "Products" +msgstr "Produkty" + +#: includes/admin/class-mp-store-settings-admin.php:118 +#: includes/admin/widgets/product-tag-cloud.php:46 +#: includes/multisite/class-mp-admin-multisite.php:548 +msgid "Product Tags" +msgstr "" + +#: includes/common/template-functions.php:2906 +#: includes/multisite/template-functions.php:449 +msgid "Product Category" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:117 +#: includes/admin/widgets/categories.php:8 +#: includes/admin/widgets/categories.php:18 +#: includes/multisite/class-mp-admin-multisite.php:539 +msgid "Product Categories" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:332 +#: includes/common/template-functions.php:872 marketpress.php:218 +msgid "Store" +msgstr "Sklep" + +#: includes/admin/class-mp-pages-admin.php:60 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:209 +#: includes/admin/widgets/cart.php:8 includes/admin/widgets/cart.php:56 +#: includes/common/template-functions.php:174 +#: includes/common/template-functions.php:811 +msgid "Shopping Cart" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:110 +#: includes/admin/class-mp-store-settings-admin.php:218 +msgid "Store Settings" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:128 marketpress.php:607 +msgid "Settings" +msgstr "Ustawienia" + +#: includes/common/data.php:178 includes/common/data.php:190 +msgid "Your Order Has Been Shipped! (ORDERID)" +msgstr "" + +#: includes/common/data.php:159 includes/common/data.php:166 +#: includes/common/data.php:172 +msgid "Your Order Confirmation (ORDERID)" +msgstr "" + +#: includes/common/data.php:148 +msgid "

    Thank you for your order! We appreciate your business, and please come back often to check out our new products.

    " +msgstr "

    Dziękujemy za zamówienie. Cenimy sobie naszych Klientów i zapraszamy ponownie do obejrzenie nowych produktów.

    " + +#: includes/common/data.php:147 +msgid "

    You are almost done! Please do a final review of your order to make sure everything is correct then click the \"Confirm Payment\" button.

    " +msgstr "

    Prawie gotowe! Prosimy ostatni raz dokładnie sprawdzić treść zamówienia i potwierdzić przyciskiem \"Potwierdź płatność\".

    " + +#: includes/common/data.php:145 +msgid "

    Please enter your shipping information in the form below to proceed with your order.

    " +msgstr "

    Prosimy o podanie adresu do wysyłki w formularzu poniżej.

    " + +#: includes/common/data.php:143 +msgid "

    If you have any questions about your order please do not hesitate to contact us.

    " +msgstr "

    W przypadku jakichkolwiek pytań związanych z zamówieniem, prosimy o kontakt z nami.

    " + +#: includes/common/data.php:106 +msgid "tag" +msgstr "" + +#: includes/common/data.php:105 +msgid "category" +msgstr "" + +#: includes/common/data.php:104 +msgid "order-status" +msgstr "" + +#: includes/common/data.php:103 +msgid "shopping-cart" +msgstr "" + +#: includes/common/data.php:102 +msgid "products" +msgstr "" + +#. Translators: change default slugs here +#: includes/common/data.php:101 +msgid "store" +msgstr "" \ No newline at end of file diff --git a/languages/mp-pt-br.mo b/languages/mp-pt-br.mo new file mode 100644 index 0000000000000000000000000000000000000000..8024cd5615b9d4962065e7602c882b4f8c252b3b GIT binary patch literal 200272 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 SM~i6tm5?lh6CJ?By8j1UJ0Z0I literal 0 HcmV?d00001 diff --git a/languages/mp-pt-br.po b/languages/mp-pt-br.po new file mode 100644 index 00000000..14ba8646 --- /dev/null +++ b/languages/mp-pt-br.po @@ -0,0 +1,9104 @@ +# Translation of MarketPress in Portuguese (Brazil) +# This file is distributed under the same license as the MarketPress package. +msgid "" +msgstr "" +"PO-Revision-Date: 2018-03-13 14:03:57+0000\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-Generator: GlotPress/2.3.1\n" +"Language: pt_BR\n" +"Project-Id-Version: MarketPress\n" + +#: includes/public/class-mp-checkout.php:1285 +msgid "By clicking this checkbox you allow the website to process your personal data." +msgstr "" + +#: includes/common/class-mp-gdpr.php:382 +msgid "Order Info" +msgstr "" + +#: includes/common/class-mp-gdpr.php:268 +msgid "Shipping Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:267 +msgid "Shipping Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:266 +msgid "Shipping ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:265 +msgid "Shipping State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:264 +msgid "Shipping City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:263 +msgid "Shipping Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:262 +msgid "Shipping Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:261 +msgid "Shipping Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:260 +msgid "Shipping Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:259 +msgid "Shipping Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:258 +msgid "Shipping First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:254 +msgid "Billing Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:253 +msgid "Billing Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:252 +msgid "Billing ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:251 +msgid "Billing State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:250 +msgid "Billing City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:249 +msgid "Billing Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:248 +msgid "Billing Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:247 +msgid "Billing Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:246 +msgid "Billing Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:245 +msgid "Billing Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:244 +msgid "Billing First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:151 +msgid "Orders Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:139 +msgid "Customer Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:100 includes/common/class-mp-gdpr.php:116 +msgid "MarketPress User Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:81 +msgid "" +"In addition to standard WordPress session cookies, this site might be setting an\n" +"\t\t additional cookie to remember your cart settings. This cookie will last for one year." +msgstr "" + +#: includes/common/class-mp-gdpr.php:80 +msgid "Cookies" +msgstr "" + +#: includes/common/class-mp-gdpr.php:77 +msgid "" +"The following information will be collected in order to process orders: your name,\n" +"\t\t username, email address, avatar and profile URLs, address and phone number. This data can be\n" +"\t\t exported and removed." +msgstr "" + +#: includes/common/class-mp-gdpr.php:76 +msgid "Additional data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:71 +msgid "" +"This site might be using third party services and tools to process payments or/and\n" +"\t\t process shipping data when creating orders on the MarketPress store. These services include payment\n" +"\t\t gateways: 2Checkout, Authorize.net AIM, eWay shared payments, eWay Rapid 3.1 Payments, Mijireh,\n" +"\t\t Mollie, Paymill, PayPal, PIN, Simplify Commerce by MasterCard, Stripe and WePay; shipping gateways:\n" +"\t\t Fedex, UPS, USPS." +msgstr "" + +#: includes/common/class-mp-gdpr.php:70 +msgid "Third parties" +msgstr "" + +#: includes/admin/class-mp-admin.php:403 +msgid "Start creating store pages and products for your online shop here." +msgstr "" + +#: includes/admin/class-mp-admin.php:402 +msgid "Create Online Shop" +msgstr "" + +#: includes/admin/class-mp-admin.php:394 +msgid "Run Setup Wizard" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:234 +msgid "If having problems during invoice generation, add define( 'DOMPDF_ENABLE_HTML5PARSER', true ); to the wp-config.php file." +msgstr "" + +#: includes/public/class-mp-checkout.php:723 +msgid "Invalid Email" +msgstr "Email Inválido" + +#: includes/public/class-mp-checkout.php:721 +#: includes/public/class-mp-checkout.php:729 +msgid "This field is required" +msgstr "Este campo é obrigatório" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:804 +msgid "This option changes the built-in css styles for store pages. For a custom css style, save your css file with the /* MarketPress Style: Your CSS Theme Name Here */ header line in the \"%s\" folder and it will appear in this list so you may select it. You should select \"None\" if you don't wish to use custom CSS styles or if you are using default theme templates or custom theme templates and css to make your own completely unique store design. For more information on custom theme templates click here »." +msgstr "Esta opção modifica os estilos do css embutido para armazenar páginas. Para um estilo css personalizado, grave seu arquivo css com a linha de cabeçalho /* Estilo MarketPress: Nome do Tema CSS */ na pasta \"%s\" e ele irá aparecer nesta lista para que possa selecioná-lo. Você deve selecionar \"Nenhum\" se nao deseja usar estilos personalizados de CSS ou se você está usando modelos padrão do tema ou modelos personalizados do tema e css para um design completamente único da sua loja. Para mais informações sobre modelos personalizados de tema clique aqui »." + +#: includes/public/class-mp-public.php:421 +#: includes/public/class-mp-short-codes.php:142 +msgid "Please enter a value greater than or equal to {0}." +msgstr "Por favor insira um valor igual ou maior que {0}." + +#: includes/public/class-mp-public.php:420 +#: includes/public/class-mp-short-codes.php:141 +msgid "Please enter a value less than or equal to {0}." +msgstr "Por favor insira um valor igual ou menor que {0}." + +#: includes/public/class-mp-public.php:419 +#: includes/public/class-mp-short-codes.php:140 +msgid "Please enter a value between {0} and {1}." +msgstr "Por favor insira um valor entre {0} e {1}." + +#: includes/public/class-mp-public.php:418 +#: includes/public/class-mp-short-codes.php:139 +msgid "Please enter a value between {0} and {1} characters long." +msgstr "Por favor insira um valor entre {0} e {1} caracteres." + +#: includes/public/class-mp-public.php:417 +#: includes/public/class-mp-short-codes.php:138 +msgid "Please enter at least {0} characters." +msgstr "Por favor insira ao menos {0} caracteres." + +#: includes/public/class-mp-public.php:416 +#: includes/public/class-mp-short-codes.php:137 +msgid "Please enter no more than {0} characters." +msgstr "Por favor insira não mais do que {0} caracteres." + +#: includes/public/class-mp-public.php:415 +#: includes/public/class-mp-short-codes.php:136 +msgid "Please enter a value with a valid extension." +msgstr "Por favor insira um valor com uma extensão válida." + +#: includes/public/class-mp-public.php:414 +#: includes/public/class-mp-short-codes.php:135 +msgid "Please enter the same value again." +msgstr "Por favor insira novamenteo mesmo valor." + +#: includes/public/class-mp-public.php:413 +#: includes/public/class-mp-short-codes.php:134 +msgid "Please enter a valid credit card number." +msgstr "Por favor insira um número válido de cartão de crédito." + +#: includes/public/class-mp-public.php:412 +#: includes/public/class-mp-short-codes.php:133 +msgid "Please enter only digits." +msgstr "Por favor insira apenas dígitos." + +#: includes/public/class-mp-public.php:411 +#: includes/public/class-mp-short-codes.php:132 +msgid "Please enter a valid number." +msgstr "Por favor insira um número válido." + +#: includes/public/class-mp-public.php:410 +#: includes/public/class-mp-short-codes.php:131 +msgid "Please enter a valid date (ISO)." +msgstr "Por favor insira uma data válida (ISO)." + +#: includes/public/class-mp-public.php:409 +#: includes/public/class-mp-short-codes.php:130 +msgid "Please enter a valid date." +msgstr "Por favor insira uma data válida." + +#: includes/public/class-mp-public.php:408 +#: includes/public/class-mp-short-codes.php:129 +msgid "Please enter a valid URL." +msgstr "Por favor insira uma URL válida." + +#: includes/public/class-mp-public.php:406 +#: includes/public/class-mp-short-codes.php:127 +msgid "Please fix this field." +msgstr "Por favor conserte este campo." + +#: includes/public/class-mp-checkout.php:1287 +#: includes/public/class-mp-public.php:405 +#: includes/public/class-mp-short-codes.php:126 +msgid "This field is required." +msgstr "Este campo é requerido." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:810 +msgid "None - Without Special CSS-styles" +msgstr "Nenhum - Sem Estilos CSS Especiais" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:809 +msgid "Default - Using Default CSS-styles" +msgstr "Padrão - Usando Estilos CSS Padrão" + +#: marketpress.php:739 +msgid "Enable multiple downloads per product" +msgstr "Habilitar múltiplos downloads por produto" + +#: marketpress.php:738 +msgid "Multiple Downloads" +msgstr "Downloads Múltiplos" + +#: includes/public/class-mp-checkout.php:715 +msgid "Invalid Zip Code" +msgstr "CEP Inválido" + +#: includes/common/template-functions.php:2126 +msgid "Guest Email" +msgstr "E-mail do Convidado" + +#: includes/common/payment-gateways/simplify.php:195 +msgid "There was a problem finalizing your purchase. Please re-enter your credit card information and try again" +msgstr "Houve um problema finalizando a sua compra. Por favor insira re-digite suas informações de cartão de crédito e tente novamente" + +#: includes/common/class-mp-cart.php:565 includes/common/class-mp-order.php:600 +#: includes/common/helpers.php:111 +msgid "Download %1$s" +msgstr "Faça o Download de %1$s" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:331 +msgid "Export products to file" +msgstr "Exportar produtos para arquivo" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:328 +msgid "The import process uses the WordPress importer plugin." +msgstr "O processo de importaçÃo usa o plugin de importação do WordPress." + +#: includes/admin/store-settings/class-mp-store-settings-import.php:326 +msgid "Import / Export Products" +msgstr "Importar / Exportar Produtos" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:325 +msgid "Export settings to file" +msgstr "Exportar configurações para arquivo" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:324 +msgid "Import configuration" +msgstr "Importar configuração" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:320 +msgid "Use the text below to export to a new installation. Or paste in the new configuration to import." +msgstr "Use o texto abaixo para exportar para uma nova instalação. Ou cole na nova configuração para importar." + +#: includes/admin/store-settings/class-mp-store-settings-import.php:318 +msgid "Import / Export Settings" +msgstr "Configurações de Importar / Exportar" + +#. translators: URL to wp-admin/import.php +#: includes/admin/store-settings/class-mp-store-settings-import.php:266 +msgid "This importer is not installed. Please install importers from the main site." +msgstr "Este importador não está instalado. Por favor instale os importadores a partir do site principal." + +#: includes/admin/store-settings/class-mp-store-settings-import.php:261 +msgid "Install Now" +msgstr "Instala Agora" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:260 +msgid "Install %s" +msgstr "Instalar %s" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:240 +msgid "Run Importer" +msgstr "Executar Importador" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:239 +msgid "Run %s" +msgstr "Executar %s" + +#: includes/admin/class-mp-store-settings-admin.php:258 +msgid "Import/Export" +msgstr "Importar/Exportar" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1199 +msgid "Requires Login" +msgstr "Requer Login" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:737 +msgid "Optionally limit the user to some categories" +msgstr "Limitar opcionalmente o usuário a algumas categorias" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:671 +msgid "Should this coupon only be available to logged in users?" +msgstr "Tornar este cupom disponível apenas para usuários que tenham feito login?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:670 +msgid "Require Login" +msgstr "Requer Login" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:655 +msgid "Mimimum number of products" +msgstr "Número mínimo de produtos" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:653 +msgid "Enter the minimum number of products in the cart that this coupon can be used." +msgstr "Insira o número mínimo de pordutos que precisam estar no carrinho para que este cupom possa ser usado." + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:648 +msgid "Can this coupon be limited to a number of products in the cart?" +msgstr "Tornar este cupom limitado a um número limitado de produtos no carrinho?" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:334 +msgid "Add all values" +msgstr "Adicionar todos os valores" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:265 +msgid "Set as default variation." +msgstr "Definir como variação padrão" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:154 +msgid "Set Default" +msgstr "Aplicar o Padrão" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:150 +msgid "More Info" +msgstr "Mais Informações" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:40 +msgid "MarketPress - Quick Setup" +msgstr "MarketPress - Configuração Rápida" + +#: includes/public/class-mp-checkout.php:1399 +msgid "Proceed to checkout and create an account at the end." +msgstr "Prosseguir para o check-out e criar uma conta no final." + +#: includes/public/class-mp-checkout.php:1241 +#: includes/public/class-mp-checkout.php:1245 +msgid "Register account" +msgstr "Registrar conta" + +#: includes/public/class-mp-checkout.php:1233 +msgid "Register as customer?" +msgstr "Registrar como cliente?" + +#: includes/public/class-mp-checkout.php:765 +msgid "

    Oops!

    Looks like you haven't added anything your cart. Let's go shopping!

    " +msgstr "

    Oopaa!

    Parece que você ainda não adicionou nada ao seu carrinho. Vamos às compras!

    " + +#: includes/public/class-mp-checkout.php:763 +msgid "

    Oops!

    The cart is disabled.

    " +msgstr "

    Oopaa!

    O carrinho está desabilitado.

    " + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing Information" +msgstr "Informação de Cobrança" + +#: includes/multisite/class-mp-admin-multisite.php:214 +msgid "Global Currency" +msgstr "Moeda Global" + +#: includes/multisite/class-mp-admin-multisite.php:198 +msgid "Global Store Currency" +msgstr "Moeda Global da Loja" + +#: includes/common/shipping-modules/mp-usps.php:507 +msgid "There are no shipping services available for this type of package in your location." +msgstr "Não há nenhum serviço de envio disponível para este tipo de pacote na sua localização." + +#: includes/common/shipping-modules/mp-usps.php:168 +msgid "Using this USPS Shipping calculator requires requesting an Ecommerce API Username and Password. Get your free set of credentials here ». The password is no longer used for the API, just the username which you should enter below. The USPS test site has not yet been updated and currently doesn't work - you should just request activating your credentials with USPS and go live." +msgstr "Usar a calculadora de Envio da USPS requer a solicitação de um Username e Senha da API de E-commerce. Obtenha gratuitamente seu conjunto de credenciais aqui ». A senha não é mais usada para a API, apenas o username que você precisa inserir abaixo. O site de teste da USPS ainda não foi atualizado e no momento não funciona - você só precisa solicitar a ativação das suas credenciais com a USPS e ir para o ar." + +#: includes/common/payment-gateways/stripe.php:339 +msgid "ZIP Code" +msgstr "CEP" + +#: includes/common/payment-gateways/stripe.php:334 +msgid "Last name" +msgstr "Último nome" + +#: includes/common/payment-gateways/stripe.php:333 +msgid "First name" +msgstr "Primeiro nome" + +#: includes/common/payment-gateways/manual-payments.php:150 +msgid "These are the manual payment instructions to display on the order confirmation screen. TOTAL will be replaced with the order total and ORDERID will be replaced with Order ID." +msgstr "Estas são as instruções para pagamento maneual a serem exibidas na tela de confirmação do pedido. TOTAL será substituído com o total do pedido e ORDERID será substituído com o ID do Pedido." + +#: includes/common/payment-gateways/authorizenet-aim.php:240 +msgid "You must login to Authorize.net merchant dashboard to obtain the API login ID and API transaction key. Instructions »" +msgstr "Você precisa fazer login no painel de comerciante do Authorize.net para ober o ID de login e a chave transacional da API. Instruções »" + +#: includes/common/payment-gateways/2checkout.php:327 +msgid "
    1. Set the \"Return Method\" within Site Management to Header Redirect and set the \"Return URL\" to %s
    2. Set your notifications url to %s
    " +msgstr "
    1. Defina o \"Método de Retorno\" em Gerenciamento do Site para Redirecionamento do Cabeçalho e defina a \"URL de Retorno\" para %s
    2. Defina a sua URL de notificações para %s
    " + +#: includes/common/data.php:191 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Also, digital downloads included in your order are now ready to be downloaded. Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" +"Prezado CUSTOMERNAME,\n" +"Seu pedido foi enviado! Além disso, downloads digitais incluídos no seu pedido já estão prontos para o download. Dependendo do método de envio e da sua localização, deve estar chegando logo. Por favor informe o seu ID do Pedido (ORDERID) sempre que nos contactar.\n" +"\n" +"Aqui está uma confirmação e os detalhes do seu pedido:\n" +"\n" +"Informação do Pedido:\n" +"ORDERINFO\n" +"\n" +"Informação do Envio:\n" +"SHIPPINGINFO\n" +"\n" +"Informação do Pagamento:\n" +"PAYMENTINFO\n" +"\n" +"ORDERNOTES\n" +"\n" +"Você poderá rastrear o status do seu pedido aqui: TRACKINGURL\n" +"\n" +"Obrigado novamente!" + +#: includes/common/data.php:185 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order is now available to download! Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" +"Prezado CUSTOMERNAME,\n" +"Seu pedido já está disponível para o download! Por favor informe o seu ID do Pedido (ORDERID) sempre que nos contactar.\n" +"\n" +"Aqui está uma confirmação dos detalhes do seu pedido:\n" +"\n" +"Informações do Pedido:\n" +"ORDERINFO\n" +"\n" +"Informações de Pagamento:\n" +"PAYMENTINFO\n" +"\n" +"ORDERNOTES\n" +"\n" +"Você pode rastrear o status do seu pedido aqui: TRACKINGURL\n" +"\n" +"Obrigado novamente!" + +#: includes/common/data.php:184 +msgid "Your Order Is Ready To Be Downloaded! (ORDERID)" +msgstr "Seu Pedido está Pronto para o Download (ORDERID)" + +#: includes/common/data.php:179 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" +"Prezado CUSTOMERNAME,\n" +"Seu pedido foi enviado! Dependendo do método de envio e da sua localização, deve estar chegando logo. Por favor informe o ID do seu Pedido (ORDERID) sempre que nos contactar.\n" +"\n" +"Aqui está a confirmação dos detalhes do seu pedido:\n" +"\n" +"Informações do Pedido:\n" +"ORDERINFO\n" +"\n" +"Informações do Envio:\n" +"SHIPPINGINFO\n" +"\n" +"Informações do Pagamento:\n" +"PAYMENTINFO\n" +"\n" +"ORDERNOTES\n" +"\n" +"Você pode rastrear o status do seu pedido aqui: TRACKINGURL\n" +"\n" +"Obrigado novamente!" + +#: includes/common/data.php:173 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received, your digital goods are ready to be downloaded and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" +"Obrigado pelo seu pedido, CUSTOMERNAME!\n" +"\n" +"Seu pedido foi recebido, seus ítens digitais estão prontos para o download os ítens a serem enviados já estão sendo processados. Por favor informe o ID do seu Pedido (ORDERID) sempre que nos contactar.\n" +"\n" +"Aqui está a confirmação dos detalhes do seu pedido:\n" +"\n" +"Informações do Pedido:\n" +"ORDERINFO\n" +"\n" +"Informações do Envio:\n" +"SHIPPINGINFO\n" +"\n" +"Informações do Pagamento:\n" +"PAYMENTINFO\n" +"\n" +"ORDERNOTES\n" +"\n" +"Você pode rastrear o status do seu pedido aqui: TRACKINGURL\n" +"\n" +"Obrigado novamente!" + +#: includes/common/data.php:167 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received and your digital goods are ready to be downloaded. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" +"Obrigado pelo seu pedido, CUSTOMERNAME!\n" +"\n" +"Seu pedido foi recebido e os seus ítens digitais já estão prontos para o download. Por favor informe o ID do seu Pedido (ORDERID) sempre que nos contactar.\n" +"\n" +"Aqui está a confirmação dos detalhes do seu pedido:\n" +"\n" +"Informações do Pedido:\n" +"ORDERINFO\n" +"\n" +"Informações do Pagamento:\n" +"PAYMENTINFO\n" +"\n" +"ORDERNOTES\n" +"\n" +"Você pode rastrear o status do seu pedido aqui: TRACKINGURL\n" +"\n" +"Obrigado novamente!" + +#: includes/common/data.php:160 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +" Your order has been received, and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information: \n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" +"Obrigado pelo seu pedido, CUSTOMERNAME!\n" +"\n" +"Seu pedido foi recebido, e os ítens a serem enviados já estão sendo processados. Por favor informe o ID do seu Pedido (ORDERID) sempre que nos contactar.\n" +"\n" +"Aqui está a confirmação dos detalhes do seu pedido:\n" +"\n" +"Informações do Pedido:\n" +"ORDERINFO\n" +"\n" +"Informações do Envio: \n" +"SHIPPINGINFO\n" +"\n" +"Informações do Pagamento:\n" +"PAYMENTINFO\n" +"\n" +"ORDERNOTES\n" +"\n" +"\n" +"Você pode rastrear o status do seu pedido aqui: TRACKINGURL\n" +"\n" +"Thanks again!" + +#: includes/common/class-mp-product.php:638 +msgid "You can not add more items to cart." +msgstr "Você não pode adicionar mais ítens ao carrinho." + +#: includes/common/class-mp-product.php:635 +msgid "You can only add {0} to cart." +msgstr "Você só pode adicionar {0} ao carrinho." + +#: includes/common/class-mp-product.php:625 +msgid "This product has an order limit of %d." +msgstr "Este produto tem um limite de pedidos de %d" + +#: includes/common/class-mp-order.php:1454 +msgid "Shipped: tracking code: %s" +msgstr "Enviado: código de rastreamento: %s" + +#: includes/common/class-mp-order.php:1000 +#: includes/common/class-mp-order.php:1012 +msgid "Finished" +msgstr "Concluído" + +#: includes/common/class-mp-order.php:858 +msgid "Contact Details" +msgstr "Detalhes de Contato" + +#: includes/common/class-mp-order.php:339 includes/common/data.php:155 +msgid "" +"A new order (ORDERID) was created in your store:\n" +"\n" +" ORDERINFOSKU\n" +"\n" +" SHIPPINGINFO\n" +"\n" +" PAYMENTINFO\n" +"\n" +msgstr "" +"Um novo pedido (ORDERID) foi recebido na sua loja:\n" +"\n" +"ORDERINFOSKU\n" +"\n" +"SHIPPINGINFO\n" +"\n" +"PAYMENTINFO\n" +"\n" + +#: includes/common/class-mp-cart.php:1858 +msgid "Add again" +msgstr "Adicionar novamente" + +#: includes/common/class-mp-cart.php:1852 +msgid "was removed from Shopping Cart" +msgstr "foi removido do Carrinho de Compras" + +#: includes/common/class-mp-cart.php:1242 +#: includes/public/class-mp-short-codes.php:160 +msgid "Cart update notice: this item has a limit per order or you have reached the stock limit." +msgstr "Informação de atualização do carrinho: este ítem tem um limite por pedido ou você atingiu o limite do estoque." + +#: includes/admin/widgets/product-list.php:235 +msgid "Show Only Featured Products" +msgstr "Exibir Apenas Produtos em Destaque" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:533 +msgid "If enabled, users won't be able to filter products per category and/or to order by release date/name/price." +msgstr "Se habilitado, os usuários não poderão filtrar produtos por categoria e/ou fazer pedidos por data/nome/preço do produto." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:531 +msgid "Hide Products Filter?" +msgstr "Ocultar Filtro de Produtos?" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:353 +msgid "Notification to registration email instead of billing email?" +msgstr "Notificações no e-mail de registro ao invés do e-mail de cobrança?" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:322 +msgid "Order Shipped - Mixed orders (with both digital and physical products)" +msgstr "Pedido Enviado - Pedidos mistos (com produtos digitáis e físicos)" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:289 +msgid "Order Shipped - Digital downloads only orders" +msgstr "Pedido Enviado - Pedidos só com downloads digitais" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:224 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "Estes códigos serão substituídos com os detalhes do pedido: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. HTML não é permitido." + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:194 +msgid "New Order - Mixed" +msgstr "Novo Pedido - Misto" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:161 +msgid "New Order - Digital downloads only orders" +msgstr "Novo Pedido - Pedidos só com downloads digitais" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:115 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:243 +msgid "Mixed orders" +msgstr "Pedidos mistos" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:110 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:238 +msgid "Digital downloads orders" +msgstr "Pedidos de downloads digitais" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:105 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:233 +msgid "Physical orders" +msgstr "Pedidos físicos" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:96 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed.
    For orders placed with manual payment, emails set here will be overriden by the one configured in manual payments settings, under payments settings page" +msgstr "Estes códigos serão substituídos com os detalhes do pedido: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. HTML não é permitido.
    Para pedidos feitos com pagamento manual, os e-mails definidos aqui serão sobrepujados por aqueles definidos nas configurações de pagamento manual, na página de configurações de pagamento" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:89 +msgid "Customer Notification Settings" +msgstr "Configurações de Notificação ao Cliente" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:47 +msgid "Admin Notification Settings" +msgstr "Configurações de Notificação ao Administrador" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:566 +msgid "Only contact details" +msgstr "Apenas detalhes do contato" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:565 +msgid "Full billing info" +msgstr "Informação completa de cobrança" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:561 +msgid "Details Collection" +msgstr "Coleta de Detalhes" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:548 +msgid "Digital Settings" +msgstr "Configurações Digitais" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:515 +msgid "Apply Tax to Digital Products?" +msgstr "Aplicar Taxas a Produtos Digitais?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:236 +msgid "product (default)" +msgstr "produto (padrão)" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:231 +msgid "If you are experiencing conflicts with other e-commerce plugins change this setting. This will change the internal post type of all your products. Please note that changing this option may break 3rd party themes or plugins." +msgstr "Se você estiver experimentando conflitos com outros plugins de e-commerce, modifique esta configuração. Isso irá mudar internamente o tipo de post de todos os seus produtos. Por favor note que mudar esta opção pode quebrar temas ou plugins de terceiros." + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1203 +msgid "Hide details" +msgstr "Ocultar detalhes" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1202 +msgid "Show all changes" +msgstr "Exibir todas as alterações" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1184 +msgid "Version %s" +msgstr "Versão %s" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1161 +msgid "Current" +msgstr "Atual" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1131 +msgid "%s changelog" +msgstr "log de mudanças de %s" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:952 +msgid "We did not find any data for this plugin or theme..." +msgstr "Não encontramos nenhuma informação para este plugin ou tema..." + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:285 +msgid "Activate WPMU DEV Dashboard" +msgstr "Ative o WPMU DEV Dashboard" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:279 +msgid "Just one more step - activate the WPMU DEV Dashboard plugin and you're all done!" +msgstr "Só mais um passo - ative o plugin WPMU DEV Dashboard e está tudo feito!" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:277 +msgid "Important updates are available for your WPMU DEV plugins/themes. Activate the WPMU DEV Dashboard to update now!" +msgstr "Atualizações importantes estão disponíveis para seus plugins/temas de WPMU DEV. Ative o WPMU DEV Dashboard para atualizar agora!" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:273 +msgid "Just one more step to enable updates and support for %s!" +msgstr "Só mais um passo para habilitar atualizações e suporte para %s!" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:271 +msgid "Important updates are available for %s. Activate the WPMU DEV Dashboard to update now!" +msgstr "Atualizações importantes estão disponíveis para %s. Ative o WPMU DEV Dashboard para atualizar agora!" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:264 +msgid "activate" +msgstr "ativar" + +#: includes/admin/class-mp-admin.php:398 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:248 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:289 +msgid "Dismiss" +msgstr "Dispensar" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:247 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:288 +msgid "Saving..." +msgstr "Gravando..." + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:244 +msgid "Install Plugin" +msgstr "Instalar o Plugin" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:238 +msgid "Almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "Quase pronto - instele o plugin gratuito WPMU DEV Dashboard para atualizações e suporte!" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:236 +msgid "Important updates are available for your WPMU DEV plugins/themes. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "Atualizações importantes estão disponíveis para os seus plugins/temas do WPMU DEV. Instele agora o plugin WPMU DEV Dashboard para atualizações e suporte!" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:232 +msgid "%s is almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "%s está quase pronto - instale o plugin gratuito WPMU DEV Dashboard para atualizações e suporte!" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:230 +msgid "Important updates are available for %s. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "Atualizações importantes estão disponíveis para %s. Instale agora o plugin gratuito WPMU DEV Dashboard para atualizações e suporte!" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:223 +msgid "install" +msgstr "instalar" + +#: includes/admin/class-mp-shortcode-builder.php:1428 +msgid "Sets the number of Tags to display. This causes the SQL LIMIT value to be defined." +msgstr "Define o número de Tags a exibir. Isso vai definir o valor de SQL LIMIT." + +#: includes/admin/class-mp-shortcode-builder.php:1289 +msgid "How many products to display in the product list if \"paginate\" is set to false." +msgstr "Quantos produtos vamos exibir na lista de produtos se \"paginar\" for dfinidido como falso." + +#: includes/admin/class-mp-shortcode-builder.php:739 +#: includes/admin/class-mp-shortcode-builder.php:906 +#: includes/admin/class-mp-shortcode-builder.php:1350 +msgid "Grid" +msgstr "Grade" + +#: includes/admin/class-mp-shortcode-builder.php:735 +#: includes/admin/class-mp-shortcode-builder.php:902 +#: includes/admin/class-mp-shortcode-builder.php:1346 +msgid "Products will be displayed as list or grid." +msgstr "Os produtos serão exibidos como lista ou grade." + +#: includes/admin/class-mp-shortcode-builder.php:206 +msgid "Display a cloud or list of your global product tags." +msgstr "Exibe uma nunvem ou lista das suas tags globais de produto." + +#: includes/admin/class-mp-shortcode-builder.php:205 +msgid "Display a list of your global categories." +msgstr "Exibe uma lista das suas categorias globais." + +#: includes/admin/class-mp-shortcode-builder.php:204 +msgid "Display a list or grid of your global products." +msgstr "Exibe uma lista ou grade global dos seus produtos." + +#: includes/admin/class-mp-shortcode-builder.php:181 +msgid "Display a list of featured products." +msgstr "Exibe uma lisat de produtos em destaque." + +#: includes/admin/class-mp-products-admin.php:1451 +msgid "Is Featured?" +msgstr "Está em Destaque?" + +#: includes/admin/class-mp-products-admin.php:1444 +msgid "Featured Product" +msgstr "Produto em Destaque" + +#: includes/admin/class-mp-products-admin.php:581 +#: includes/admin/class-mp-products-admin.php:1580 +msgid "% discount" +msgstr "desconto de %s" + +#: includes/admin/class-mp-products-admin.php:579 +msgid "OR" +msgstr "OU" + +#: includes/admin/class-mp-products-admin.php:460 +#: includes/admin/class-mp-products-admin.php:586 +#: includes/admin/widgets/product-list.php:217 +msgid "Featured" +msgstr "Em Destaque" + +#: includes/admin/class-mp-orders-admin.php:536 +#: includes/admin/class-mp-orders-admin.php:538 +msgid "Tracking Link" +msgstr "Link de Rastreamento" + +#: includes/admin/class-mp-orders-admin.php:508 +msgid "Shipping Tax" +msgstr "Taxa de Envio" + +#: includes/admin/class-mp-orders-admin.php:356 +msgid "Shipping Total" +msgstr "Total do Envio" + +#: includes/admin/class-mp-orders-admin.php:352 +msgid "Taxes Total" +msgstr "Total de Taxas" + +#: includes/admin/class-mp-orders-admin.php:349 +msgid "Products Total" +msgstr "Total dos Produtos" + +#: includes/admin/class-mp-ajax.php:366 +msgid "Oops! You entered an invalid username/email and or password." +msgstr "Oopaa! Você inseriu um username/e-mail e/ou senha inválido!" + +#: includes/admin/class-mp-ajax.php:254 +msgid "Percentage Discount" +msgstr "Percentual de Desconto" + +#: includes/admin/class-mp-ajax.php:234 +msgid "Limit the Amount of Items per Order" +msgstr "Limitar a Quantidade de Ítens por Pedido" + +#: includes/admin/class-mp-ajax.php:214 +msgid "Unused Attributes" +msgstr "Atributos Sem Uso" + +#: includes/admin/class-mp-admin.php:82 +msgid "Run setup wizard" +msgstr "Rodar o Assistente de Configuração" + +#: includes/admin/class-mp-admin.php:79 +msgid "MarketPress setup is not complete! Once you've completed this quick setup wizard you'll have a fully working online store - exciting! " +msgstr "A configuração do MarketPress não está completa! Quando você completar este assistente rápido de configuração você terá uma loja online totalmente funcional - excitante!" + +#: marketpress.php:263 +msgctxt "mp_order" +msgid "Add New" +msgstr "Adicionar Novo" + +#: marketpress.php:184 +msgctxt "product_tag" +msgid "Product Tag" +msgstr "Tag de Produto" + +#: marketpress.php:183 +msgctxt "product_tag" +msgid "Product Tags" +msgstr "Tags de Produto" + +#: marketpress.php:150 +msgctxt "product_category" +msgid "Product Category" +msgstr "Categoria de Produto" + +#: marketpress.php:149 +msgctxt "product_category" +msgid "Product Categories" +msgstr "Categorias de Produto" + +#. Author URI of the plugin/theme +msgid "http://premium.wpmudev.org" +msgstr "http://premium.wpmudev.org" + +#: marketpress.php:729 +msgid "Invoice PDF" +msgstr "PDF da Fatura" + +#: marketpress.php:712 +msgid "Grant access to themes and gateways depending on the user's Pro Site level" +msgstr "Conceder acesso a temas e gateways dependendo do nível Pro Site do usuário" + +#: marketpress.php:711 +msgid "Pro Sites" +msgstr "Pro Sites" + +#: marketpress.php:703 +msgid "Offer and accept coupon codes" +msgstr "Oferecer e aceitar códigos de cupom" + +#. translators: %s: plugin title +#: marketpress.php:687 +msgid "Install %s Pages" +msgstr "Instalar Páginas de %s" + +#. translators: %s: plugin title +#: marketpress.php:682 +msgid "Welcome to %s – Install pages required by the plugin automatically." +msgstr "Bem-vindo a %s – Instalar automaticamente as páginas requeridas pelo plugin." + +#: marketpress.php:668 +msgid "Your pages were created successfully." +msgstr "Suas páginas foram criadas com sucesso." + +#: marketpress.php:436 +msgid "Add a Product" +msgstr "Adicionar um Produto" + +#: marketpress.php:271 +msgid "Parent Order" +msgstr "Pedido-Pai" + +#: marketpress.php:270 +msgid "No orders found in trash" +msgstr "Nenhum pedido encontrado na lixeira" + +#: marketpress.php:269 +msgid "No orders found" +msgstr "Nenhum pedido encontrado" + +#: marketpress.php:265 +msgid "Edit Order" +msgstr "Editar Pedido" + +#: marketpress.php:264 +msgid "Add New Order" +msgstr "Adicionar Novo Pedido" + +#: marketpress.php:220 marketpress.php:221 +msgid "Add New Product" +msgstr "Adicionar Novo Produto" + +#: marketpress.php:197 +msgid "No product tags found" +msgstr "Nenhuma tag de produto encontrada" + +#: marketpress.php:196 +msgid "Choose from the most used product tags" +msgstr "Escolher entre as tags de produto mais usadas" + +#: marketpress.php:195 +msgid "Add or remove product tags" +msgstr "Adicionar ou remover tags de produto" + +#: marketpress.php:194 +msgid "Separate product tags with commas" +msgstr "Separar tags de produto com vírgulas" + +#: marketpress.php:193 +msgid "Search Product Tags" +msgstr "Pesquisar Tags de Produto" + +#: marketpress.php:192 +msgid "Parent Product Tag:" +msgstr "Tag de Produto-Pai:" + +#: marketpress.php:191 +msgid "Parent Product Tag" +msgstr "Tag de Produto-Pai" + +#: marketpress.php:190 +msgid "New Product Tag Name" +msgstr "Nome da Nova Tag de Produto" + +#: marketpress.php:189 +msgid "Add New Product Tag" +msgstr "Adicionar Nova Tag de Produto" + +#: marketpress.php:188 +msgid "Update Product Tag" +msgstr "Atualizar Tag de Produto" + +#: marketpress.php:187 +msgid "View Product Tag" +msgstr "Ver Tag de Produto" + +#: marketpress.php:186 +msgid "Edit Product Tag" +msgstr "Editar Tag de Produto" + +#: marketpress.php:185 +msgid "All Product Tags" +msgstr "Todas as Tags de Produto" + +#: marketpress.php:163 +msgid "No product categories found" +msgstr "Nenhuma categoria de produto encontrada" + +#: marketpress.php:162 +msgid "Choose from the most used product categories" +msgstr "Escolha entre as categorias de produto mais usadas" + +#: marketpress.php:161 +msgid "Add or remove product categories" +msgstr "Adicionar ou remover categorias de produtos" + +#: marketpress.php:160 +msgid "Separate product categories with commas" +msgstr "Separar as categorias de produtos com vírgulas" + +#: marketpress.php:159 +msgid "Search Product Categories" +msgstr "Pesquisar Categorias de Produtos" + +#: marketpress.php:158 +msgid "Parent Product Category:" +msgstr "Categoria de Produto-Pai:" + +#: marketpress.php:157 +msgid "Parent Product Category" +msgstr "Categoria de Produto-Pai" + +#: marketpress.php:156 +msgid "New Product Category Name" +msgstr "Nome da Nova Categoria de Produto" + +#: marketpress.php:155 +msgid "Add New Product Category" +msgstr "Adicionar Nova Categoria de Produto" + +#: marketpress.php:154 +msgid "Update Product Category" +msgstr "Atualizar Categoria de Produto" + +#: marketpress.php:153 +msgid "View Product Category" +msgstr "Ver Categoria de Produto" + +#: marketpress.php:152 +msgid "Edit Product Category" +msgstr "Editar Categoria de Produto" + +#: marketpress.php:151 +msgid "All Product Categories" +msgstr "Todas as Categorias de Produtos" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Please fix the %s1 and then try submitting the form again." +msgstr "Por favor conserte o %s1 e tente enviar novamente o formulário." + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Oops! The form contains %s1 which %s2 been highlighted below." +msgstr "Oopaa! O formulário contéim %s1 que %s2 foi habilitado abaixo." + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:660 +msgid "have" +msgstr "tenho" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:659 +msgid "has" +msgstr "tem" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:651 +msgid "Value must be less than {0}" +msgstr "O valor deve ser menor que {0}" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:650 +msgid "Please enter only letters and numbers" +msgstr "Por favor insira apenas letras e números" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:539 +msgid "Due to prolonged inactivity on this page, one or more settings were not saved. Please try again." +msgstr "Devido à inatividade prolongada nesta página, uma ou mais configurações não foram gravadas. Por favor tente novamente." + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:535 +msgid "Settings Saved" +msgstr "Configurações Gravadas" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-user-select.php:22 +msgid "Select Some Users" +msgstr "Selecione Alguns Usuários" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-section.php:18 +msgid "Section Title" +msgstr "Título da Seção" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:425 +msgid "Are you sure you want to delete this?" +msgstr "Tem certeza que deseja apagar isso?" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:30 +msgid "Add Row" +msgstr "Adicionar Linha" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-post-select.php:24 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-taxonomy-select.php:22 +msgid "Select Posts" +msgstr "Selecionar Posts" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:210 +msgid "Add Images" +msgstr "Adicionar Imagens" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:129 +msgid "Select the image that you would like to use for this product." +msgstr "Selecione a imagem que deseja usar para este produto." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:93 +msgid "Select image(s) that you would like to use for this product." +msgstr "Selecione uma ou mais imagens que deseja usar para este produto." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:79 +msgid "Select the image that you would like to use for this variation." +msgstr "Selecione a imagem que deseja usar para esta variação." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:48 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:82 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:68 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:132 +msgid "Select Image" +msgstr "Selecionar Imagem" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:31 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:160 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:168 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:19 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:115 +msgid "Select File" +msgstr "Selecionar Arquivo" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:30 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:18 +msgid "Select the file that you would like to use." +msgstr "Selecione o arquivo que deseja usar." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:357 +msgid "Create Variations" +msgstr "Criar Variações" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:356 +msgid "Add Another Variant" +msgstr "Adicionar uma Outra Variação" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Insert a value and press ENTER" +msgstr "Insira um valor e pressione ENTER" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "(e.g. White, Grey, Red etc.)" +msgstr "(ex: Branco, Cinza, Vermelho, etc.)" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Variation Values" +msgstr "Valores das Variações" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:333 +msgid "Or create new variation" +msgstr "Ou criar nova variação" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "(e.g. Color)" +msgstr "(ex: Cor)" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:303 +msgid "You are about to delete selected variants.
    If you want to continue please confirm." +msgstr "Você está prestes a apagar as variantes selecionadas.
    Por favor confirme se deseja continuar." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:302 +msgid "Confirmation" +msgstr "Confirmação" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:290 +msgid "Insert quantity available. Empty for unlimited." +msgstr "Informe a quantidade disponível. Vazio para ilimitado." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:281 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:294 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:307 +msgid "Cancel" +msgstr "Cancelar" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:280 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:293 +msgid "Update" +msgstr "Atualizar" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:277 +msgid "Insert the price i.e. 25 or 25.50" +msgstr "Informe o preço. Ex: 25 ou 25,50" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:115 +msgid "Img." +msgstr "Img." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:85 +msgid "Add New Variation" +msgstr "Adicionar Nova Variação" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:79 +msgid "Delete Variants" +msgstr "Apagar Variantes" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:78 +msgid "Update Prices" +msgstr "Atualizar Preços" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:77 +msgid "Update Inventory" +msgstr "Atualizar Inventário" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:76 +msgid "Update Images" +msgstr "Atualizar Imagens" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:75 +msgid "Bulk Actions" +msgstr "Ações em Massa" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:73 +msgid "Select bulk action" +msgstr "Selecionar ação em massa" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:196 +msgid "Configure Store" +msgstr "Configurar a Loja" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:195 +msgid "Configure shipping rates, emails and your store's appearance. " +msgstr "Configure taxas de frete, e-mails e a aparência da sua loja. " + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:190 +msgid "Add Product" +msgstr "Adicionar Produto" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:189 +msgid "Add your first product for sale and get familiar with adding products." +msgstr "Adicione seu primeiro produto para vender e se familiarizar com a adição de produtos." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:184 +msgid "Your store is almost ready for its first customers, but first it needs some products. Get started by adding products below, or jump straight into further configuring your store’s settings." +msgstr "Sua loja está quase pronta para os primeiros clientes, mas primeiro ela precisa de alguns produtos. Comece adicionando produtos abaixo, ou pule direto para configurações mais profundas da sua loja." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:183 +msgid "Woohoo! Your online store is up and running." +msgstr "Woohoo! Sua loja online está no ar e funcionando." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:160 +msgid "Finish Setup" +msgstr "Concluir Configuração" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:124 +msgid "And what metric system do you want to use?" +msgstr "E qual sistema métrico você quer utilizar?" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:113 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:142 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:159 +msgid "Back" +msgstr "Voltar" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:109 +msgid "Do you want to apply tax for your products? You can customize this for each product and variation." +msgstr "Deseja aplicar taxas aos seus produtos? Você pode personalizar isso para cada produto e variação." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:105 +msgid "What currency do you want to sell with?" +msgstr "Em qual a moeda que deseja vender?" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:93 +msgid "And, which countries do you want to sell to?" +msgstr "E quais os países para os quais deseja vender?" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:89 +msgid "Where is your online store based?" +msgstr "Onde está baseada a sua loja online?" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:80 +msgid "Payment Gateway" +msgstr "Gateway de Pagamento" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:79 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:123 +msgid "Metric System" +msgstr "Sistema Métrico" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:78 +msgid "Currency & Tax" +msgstr "Moeda e Taxas" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:77 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:88 +msgid "Locations" +msgstr "Locais" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:70 +msgid "Choose where you want to sell your stuff and what currency. Easy!" +msgstr "" +"Escolha onde deseja vender suas coisas e em qual moeda.\n" +"Fácil!" + +#: includes/public/class-mp-checkout.php:1400 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:58 +msgid "Continue" +msgstr "Continuar" + +#: includes/admin/class-mp-admin.php:83 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:53 +msgid "Skip this step, I'll do this manually" +msgstr "Pular esse passo, vou fazer isso manualmente" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:49 +msgid "Install store pages" +msgstr "Instalar páginas da loja" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:44 +msgid "Once you've completed this quick setup wizard you'll have a fully working online store - exciting! Start
    by creating the default store pages for the online store such as the cart, checkout and store pages." +msgstr "Após concluir este rápido assistente de configuração você terá uma loja online funcionando completamente - excitante! Comece
    criando as páginas padrão da loja para a loja online como o carrinho de compras, check-out e página da loja." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:42 +msgid "MarketPress adds a full online store to your website, with heaps of configuration options and addons
    to suit your needs. It's really easy to get going, and only takes a few minutes to setup!" +msgstr "O MarketPress adiciona uma loja online completa em seu website, com montes de opções de configuração e add-ons
    para atender às suas necessidades. É muito fácil para colocar em funcionamento, e leva apenas alguns minutos para configurar!" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:41 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:69 +msgid "Welcome to MarketPress - Quick Setup" +msgstr "Bem-Vindo ao MarketPress - Configuração Rápida" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-advanced-select.php:23 +msgid "Select Some Options" +msgstr "Selecione Algumas Opções" + +#: includes/wpmudev-metaboxes/class-wpmudev-field.php:694 +msgid "You must the WPMUDEV_Field::display() method in your form field class" +msgstr "Você precisa do método WPMUDEV_Field::display() na classe do campo do seu formulário" + +#: includes/public/class-mp-short-codes.php:636 +msgid "Only %s left in stock..." +msgstr "Restam apenas %s no estoque..." + +#: includes/public/class-mp-short-codes.php:633 +msgid "Unlimited stock" +msgstr "Estoque ilimitado" + +#: includes/public/class-mp-short-codes.php:430 +msgid "product_id must be defined" +msgstr "o product_id deve ser definido" + +#: includes/public/class-mp-checkout.php:1250 +msgid "An account with this username already exists" +msgstr "Já existe uma conta com este username" + +#: includes/public/class-mp-checkout.php:1394 +msgid "Continue as Guest" +msgstr "Continuar como Convidado" + +#: includes/public/class-mp-checkout.php:1393 +msgid "Proceed to checkout and you'll have an opportunity to create an account at the end." +msgstr "Prosseguir para o check-out e você terá a oportunidade de criar uma conta no final." + +#: includes/public/class-mp-checkout.php:1392 +#: includes/public/class-mp-checkout.php:1398 +msgid "First-time customer?" +msgstr "Cliente de primeira-vez?" + +#: includes/public/class-mp-checkout.php:1386 +msgid "Login" +msgstr "Login" + +#: includes/public/class-mp-checkout.php:1379 +msgid "E-Mail Address/Username" +msgstr "Endereço de E-mail/Username" + +#: includes/public/class-mp-checkout.php:1377 +msgid "Sign in to speed up the checkout process." +msgstr "Faça login para acelerar o processo de check-out." + +#: includes/public/class-mp-checkout.php:1376 +msgid "Have an account?" +msgstr "Tem uma conta?" + +#: includes/public/class-mp-checkout.php:1297 +msgid "Shipping address different than billing?" +msgstr "Endereço de entrega diferente do endereço de cobrança?" + +#: includes/public/class-mp-checkout.php:1184 +msgid "There are no available gateways to process this payment." +msgstr "Não há nenhum gateway de pagamento disponível para processar este pagamento." + +#: includes/public/class-mp-checkout.php:1160 +msgid "Payment" +msgstr "Pagamento" + +#: includes/public/class-mp-checkout.php:1123 +msgid "Oops! An error occurred while processing your payment." +msgstr "Oopaa! Ocorreu um erro processando o seu pagamento." + +#: includes/public/class-mp-checkout.php:1051 +msgid "Next Step »" +msgstr "Próximo Passo »" + +#: includes/public/class-mp-checkout.php:1045 +msgid "« Previous Step" +msgstr "« Passo Anterior" + +#: includes/public/class-mp-checkout.php:873 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:657 +msgid "error" +msgstr "erro" + +#: includes/public/class-mp-checkout.php:872 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:658 +msgid "errors" +msgstr "erros" + +#: includes/public/class-mp-checkout.php:871 +msgid "

    Oops! We found %d %s in the form below.

    Fields that have errors are highlighted in red below. Entering into a field will reveal the actual error that occurred.

    " +msgstr "

    Oopaa! Encontramos %d %s no formulário abaixo.

    Os campos que tem erros estão destacados em vermelho abaixo. Entrando em um campo irá revelar o erro que ocorreu no momento.

    " + +#: includes/public/class-mp-checkout.php:870 +msgid "Please enter a valid first and last name" +msgstr "Por favor informe u primeiro e último nome válidos" + +#: includes/public/class-mp-checkout.php:869 +msgid " Please enter a valid card security code" +msgstr "Por favor informe um código de segurança válido" + +#: includes/public/class-mp-checkout.php:868 +msgid "Please enter a valid card expiration" +msgstr "Por favor informe uma data de expiração válida do cartão" + +#: includes/public/class-mp-checkout.php:773 +msgid "Javascript is required in order to checkout. Please enable Javascript in your browser and then refresh this page." +msgstr "JavaScript é requerido para fazer o check-out. Por favor habilite o JavaScript no seu navegador e em seguida atualize esta página." + +#: includes/public/class-mp-checkout.php:588 +msgid "An unknown error occurred. Please try again." +msgstr "Ocorreu um erro desconhecido. Por favor tente novamente." + +#: includes/public/class-mp-checkout.php:386 +msgid "Town/City" +msgstr "Bairro/Cidade" + +#: includes/public/class-mp-checkout.php:380 +msgid "Apartment, suite, unit, building, floor, etc" +msgstr "Apartamento, sala, conjunto, bloco, andar, etc" + +#: includes/public/class-mp-checkout.php:376 +msgid "Address Line 2" +msgstr "Linha de Endereço 2" + +#: includes/public/class-mp-checkout.php:363 +msgid "Address Line 1" +msgstr "Linha de Endereço 1" + +#: includes/common/class-mp-order.php:770 +#: includes/public/class-mp-checkout.php:354 +msgid "Company" +msgstr "Compania" + +#: includes/public/class-mp-checkout.php:330 +msgid "Last" +msgstr "Último" + +#: includes/public/class-mp-checkout.php:321 +msgid "First" +msgstr "Primeiro" + +#: includes/public/class-mp-checkout.php:284 +msgid "State/Province" +msgstr "Estado" + +#: includes/public/class-mp-checkout.php:83 +msgid "Review Order/Payment" +msgstr "Revisar Pedido/Pagamento" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing/Shipping Address" +msgstr "Endereço de Cobrança/Envio" + +#: includes/public/class-mp-checkout.php:80 +msgid "Login/Register" +msgstr "Login/Registre-se" + +#: includes/multisite/class-mp-admin-multisite.php:530 +msgid "Marketplace" +msgstr "Mercado" + +#: includes/multisite/class-mp-admin-multisite.php:523 +msgid "Global Marketplace Pages" +msgstr "Páginas Globais do Mercado" + +#: includes/multisite/class-mp-admin-multisite.php:478 +msgid "Store Network" +msgstr "Rede de Lojas" + +#: includes/multisite/class-mp-admin-multisite.php:478 +#: includes/multisite/class-mp-admin-multisite.php:494 +msgid "Store Network Settings" +msgstr "Configurações da Rede de Lojas" + +#: includes/multisite/class-mp-admin-multisite.php:440 +msgid "Set theme access permissions for network stores. For a custom css theme, save your css file with the MarketPress Theme: NAME header in the /marketpress/ui/themes/ folder and it will appear in this list so you may select it." +msgstr "Defina as permissões de acesso ao tema para lojas na rede. Para um tema CSS personalizado, grave seu arquivo CSS com o cabeçalho Tema do MarketPress: NAME na pasta /marketpress/ui/themes/ e ele irá aparecer nesta lista para que possa selecioná-lo." + +#: includes/multisite/class-mp-admin-multisite.php:361 +msgid "Choose a Gateway" +msgstr "Escoha um Gateway" + +#: includes/multisite/class-mp-admin-multisite.php:336 +msgid "%d products get indexed" +msgstr "%d produtos serão indexados" + +#: includes/multisite/class-mp-admin-multisite.php:285 +msgid "Product Indexer" +msgstr "Indexador de Produto" + +#: includes/multisite/class-mp-admin-multisite.php:281 +msgid "Please hold on..." +msgstr "Por favor aguarde..." + +#: includes/multisite/class-mp-admin-multisite.php:280 +msgid "Index Products" +msgstr "Indexar Produtos" + +#: includes/multisite/class-mp-admin-multisite.php:279 +msgid "%d products have been indexed in whole network" +msgstr "%d produtos foram indexados na rede completa" + +#: includes/multisite/class-mp-admin-multisite.php:182 +msgid "Enable Global Shopping Cart?" +msgstr "Habilitar Carrinho de Compras Global?" + +#: includes/multisite/class-mp-admin-multisite.php:178 +msgid "Limit Global Widgets/Shortcodes To Main Blog?" +msgstr "Limitar Widgets/Shortcodes Globais ao Blog Principal?" + +#: includes/common/template-functions.php:2802 +#: includes/multisite/template-functions.php:355 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:97 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:114 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:143 +msgid "Next" +msgstr "Próximo" + +#: includes/common/template-functions.php:2801 +#: includes/multisite/template-functions.php:354 +msgid "Prev" +msgstr "Anterior" + +#: includes/common/template-functions.php:2597 +msgid "Tagged in " +msgstr "Marcado em" + +#: includes/common/template-functions.php:2196 +#: includes/common/template-functions.php:2202 +#: includes/common/template-functions.php:2214 +#: includes/common/template-functions.php:2217 +msgid "Oops! We couldn't locate any orders matching that order number. Please verify the order number and try again." +msgstr "Oopaa! Não conseguimos localizar nenhum pedido combinando com este número de pedido. Por favor verifique o número do pedido e tente novamente." + +#: includes/common/template-functions.php:2138 +msgid "Look Up" +msgstr "Fazer uma Busca" + +#: includes/common/template-functions.php:1423 +msgid "Please choose a shipping method" +msgstr "Por favor escolha um método de envio" + +#: includes/common/template-functions.php:927 +msgid "If you have your order ID you can look it up using the form below." +msgstr "Se você tem o ID do pedido você pode fazer uma busca usando o formulário abaixo." + +#: includes/common/template-functions.php:927 +msgid "Order Search" +msgstr "Pesquisa de Pedido" + +#: includes/common/template-functions.php:910 +#: includes/public/class-mp-checkout.php:1440 +msgid "Cart" +msgstr "Carrinho" + +#: includes/common/template-functions.php:895 +msgid "[mp_global_tag_cloud]" +msgstr "[mp_global_tag_cloud]" + +#: includes/common/template-functions.php:887 +msgid "[mp_global_categories_list]" +msgstr "[mp_global_categories_list]" + +#: includes/common/template-functions.php:880 +msgid "" +"Welcome to our market place!\n" +"\n" +"Check out our network of products:\n" +"\n" +"[mp_list_global_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_global_categories_list]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_global_tag_cloud]" +msgstr "" +"Bem-vindo ao nosso mercado!\n" +"\n" +"Veja a nossa rede de produtos:\n" +"\n" +"[mp_list_global_products]\n" +"\n" +"Navegar por categoria:\n" +"\n" +"[mp_global_categories_list]\n" +"\n" +"Navegar por tag:\n" +"\n" +"[mp_global_tag_cloud]" + +#: includes/common/template-functions.php:879 +msgid "Global Store" +msgstr "Loja Global" + +#: includes/common/template-functions.php:873 +msgid "" +"Welcome to our online store! Feel free to browse around:\n" +"\n" +"[mp_store_navigation]\n" +"\n" +"Check out our most popular products:\n" +"\n" +"[mp_popular_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_list_categories]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_tag_cloud]" +msgstr "" +"Bem-vindo à nossa loja online! Fique à vontade para navegar:\n" +"\n" +"[mp_store_navigation]\n" +"\n" +"Veja nossos produtos mais populares:\n" +"\n" +"[mp_popular_products]\n" +"\n" +"Navegue por categoria:\n" +"\n" +"[mp_list_categories]\n" +"\n" +"Navegue por tag:\n" +"\n" +"[mp_tag_cloud]" + +#: includes/common/shipping-modules/mp-weight-rate.php:127 +msgid "If cart weight is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "Se o total do carrinho é maior ou igual a este valor, então as taxas desta linha serão usadas durante o check-out." + +#: includes/common/shipping-modules/mp-weight-rate.php:126 +msgid "Cart Weight" +msgstr "Total do Carrinho" + +#: includes/common/shipping-modules/mp-usps.php:222 +msgid "Offered International Services" +msgstr "Serviços Internacionais Oferecidos" + +#: includes/common/shipping-modules/mp-usps.php:206 +msgid "Offered Domestic Services" +msgstr "Serviços Nacionais Oferecidos" + +#: includes/common/shipping-modules/mp-usps.php:196 +msgid "Retail Rates" +msgstr "Taxas de Varejo" + +#: includes/common/shipping-modules/mp-usps.php:195 +msgid "Online Rates" +msgstr "Taxas Online" + +#: includes/common/shipping-modules/mp-usps.php:193 +msgid "Rates Request Type" +msgstr "Tipo de Solicitação de Taxas" + +#: includes/common/shipping-modules/mp-usps.php:189 +msgid "Maximum Weight Per Package" +msgstr "Peso Máximo Por Pacote" + +#: includes/common/shipping-modules/mp-ups.php:195 +#: includes/common/shipping-modules/mp-usps.php:236 +msgid "Enter your standard box sizes as LengthxWidthxHeight (e.g. 12x8x6) For each box defined enter the maximum weight it can contain. Note: the shipping prices this plugin calculates are estimates. If they are consistently too low or too high, please check that the list of boxes above and the product weights are accurate and complete." +msgstr "Informe seus tamanhos padrão de caixa com ComprimentoxLarguraxAltura (ex: 12x8x6). Para cada box definido informe o peso máximo que ele pode conter. Nota: os preços de envio que este plugin calcula são aproximados. Se eles forem consistentemente muito baixos ou muito altos, por favor verifique se a lista de caixas acima e os pesos dos produtos estão precisos e completos." + +#: includes/common/shipping-modules/mp-ups.php:187 +msgid "Handling Charge Per Box Shipped" +msgstr "Taxa de Manuseio Por Caixa Enviada" + +#: includes/common/shipping-modules/mp-ups.php:176 +#: includes/common/shipping-modules/mp-ups.php:181 +msgid "Offered Services" +msgstr "Serviços Oferecidos" + +#: includes/common/shipping-modules/mp-ups.php:165 +msgid "Shipper Number" +msgstr "Número da Transportadora" + +#: includes/common/shipping-modules/mp-ups.php:151 +msgid "User ID" +msgstr "ID do Usuário" + +#: includes/common/shipping-modules/mp-ups.php:144 +msgid "Developer Kit Access Key" +msgstr "Chave de Acesso ao Kit do Desenvolvedor" + +#: includes/common/shipping-modules/mp-ups.php:140 +msgid "Use Sandbox Mode?" +msgstr "Usar Modo Sandbox?" + +#: includes/common/shipping-modules/mp-ups.php:123 +msgid "In order to use UPS, you will need a UPS Developer Kit access key and the UPS user ID and password associated with the access key. Set these up for free here. If this information is missing or incorrect, an error will appear during the checkout process and the buyer will not be able to complete the transaction." +msgstr "Para usar a UPS você precisa de uma chave de acesso ao Kit de Desenvolvedor da UPS e o ID de usuário e senha da UPS associados à chave de acesso. Defina-os gratuitamente aqui. Se esta informação estiver faltando ou incorreta, um erro irá aparecer durante o processo de check-out e o comprador não conseguirá completar a transação." + +#: includes/common/shipping-modules/mp-table-rate.php:112 +msgid "If cart total is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "Se o total do carrinho é maior ou igual a este valor, então as taxas daquela linha serão usadas durante o check-out." + +#: includes/common/shipping-modules/mp-table-rate.php:111 +msgid "Cart Total" +msgstr "Total do Carrinho" + +#: includes/common/shipping-modules/mp-table-rate.php:95 +#: includes/common/shipping-modules/mp-weight-rate.php:111 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Don't worry about sorting as this will be done automatically upon saving." +msgstr "Certifique-se de informar um preço do transporte para cada opção, ou os clientes poderão obter frete grátis. Não se preocupe com a classificação pois isso será feito automaticamente na gravação." + +#: includes/common/shipping-modules/mp-pickup.php:170 +msgid "Method Title (visible for clients)" +msgstr "Título do Método (visível para clientes)" + +#: includes/common/shipping-modules/mp-fedex.php:409 +#: includes/common/shipping-modules/mp-ups.php:216 +#: includes/common/shipping-modules/mp-usps.php:251 +msgid "Max Weight (%s)" +msgstr "Peso Máximo (%s)" + +#: includes/common/shipping-modules/mp-fedex.php:402 +#: includes/common/shipping-modules/mp-ups.php:209 +#: includes/common/shipping-modules/mp-usps.php:247 +msgid "Size (%s)" +msgstr "Tamanho (%s)" + +#: includes/common/shipping-modules/mp-fedex.php:387 +msgid "Enter your standard box sizes as LengthxWidthxHeight ( 12x8x6 ) For each box defined enter the maximum weight it can contain. Total weight selects the box size used for calculating Shipping costs." +msgstr "Insira os tamanhos padrão das suas caixas com ComprimentoxLarguraxAltura (12x8x6). Para cada caixa definida informe o peso máximo que a caixa pode conter. O peso total seleciona o tamanho de caixa usada para calcular os custos de Envio." + +#: includes/common/shipping-modules/mp-fedex.php:361 +#: includes/common/shipping-modules/mp-usps.php:229 +msgid "Handling Charge per International Shipment" +msgstr "Custo de Manuseio por Envio Internacional" + +#: includes/common/shipping-modules/mp-fedex.php:353 +msgid "International Services" +msgstr "Serviços Internacionais" + +#: includes/common/shipping-modules/mp-fedex.php:339 +#: includes/common/shipping-modules/mp-usps.php:213 +msgid "Handling Charge per Domestic Shipment" +msgstr "Custo de Manuseio por Envio Doméstico" + +#: includes/common/shipping-modules/mp-fedex.php:331 +msgid "Domestic Services" +msgstr "Serviços Domésticos" + +#: includes/common/shipping-modules/mp-fedex.php:321 +msgid "When checked the customer can chose Residential or Commercial delivery with Residential the default. Unchecked it's only Residential rates." +msgstr "Quando selecionado, o cliente pode escolher entre entrega Residencial ou Comercial, sendo Residencial o padrão. Quando não selecionado só existe a taxa Residencial." + +#: includes/common/shipping-modules/mp-fedex.php:320 +msgid "Allow Commercial Delivery?" +msgstr "Permite Entrega Comercial?" + +#: includes/common/shipping-modules/mp-fedex.php:315 +msgid "Fedex 10kg Box" +msgstr "Caixa FedEx de 10Kg" + +#: includes/common/shipping-modules/mp-fedex.php:314 +msgid "Fedex 25kg Box" +msgstr "Caixa FedEx de 25Kg" + +#: includes/common/shipping-modules/mp-fedex.php:313 +msgid "Fedex Box" +msgstr "Caixa FedEx" + +#: includes/common/shipping-modules/mp-fedex.php:312 +msgid "Fedex Envelope" +msgstr "Envelope Fedex " + +#: includes/common/shipping-modules/mp-fedex.php:311 +msgid "Fedex Pak" +msgstr "Pacote FedEx" + +#: includes/common/shipping-modules/mp-fedex.php:310 +msgid "Fedex Tube" +msgstr "Tubo FedEx" + +#: includes/common/shipping-modules/mp-fedex.php:306 +msgid "Default Packaging" +msgstr "Embalagem Padrão" + +#: includes/common/shipping-modules/mp-fedex.php:294 +msgid "Dropoff Type" +msgstr "Tipo de Recolhimento" + +#: includes/common/shipping-modules/mp-fedex.php:290 +msgid "Meter ID" +msgstr "ID do Medidor" + +#: includes/common/shipping-modules/mp-fedex.php:134 +msgid "This is a residential address" +msgstr "Este é um endereço residencial" + +#: includes/common/payment-gateways/wepay.php:283 +msgid "There was an error processing your card: \"%s\". Please check your credit card info and try again." +msgstr "Houve erro processando seu cartão: \"%s\". Por favor verifique as informações do seu cartão de crédito e tente novamente." + +#: includes/common/payment-gateways/wepay.php:121 +msgid "Wepay makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept cards directly on your site. You don't need a merchant account or gateway. WePay handles everything including storing cards. Credit cards go directly to WePay's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "A WePay torna fácil começar a aceitar cartões de crédito diretamente no seus ite com conformidade total PCI. Aceite cartões diretamente no seu site. Você não precisa de uma conta de comerciante ou gateway. A WePay maneja tudo incluindo o armazenamento dos cartões. Cartões de crédito vão diretamente para o nosso ambiente seguro WePay e nunca chegam aos seus servidores, de forma que você consegue evitar a maioria dos requerimentos PCI." + +#: includes/common/payment-gateways/stripe.php:385 +msgid "There was an error processing your card - \"%s\". Please try again." +msgstr "Houve um erro processando o seu cartão - \"%s\". Por favor tente novamente" + +#: includes/common/payment-gateways/stripe.php:356 +msgid "%s Store Purchase - Order ID - %s, Email - %s" +msgstr "Compra na Loja %s - ID do Pedido - %s, E-mail - %s" + +#: includes/common/payment-gateways/stripe.php:251 +msgid "Stripe makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept Visa, MasterCard, American Express, Discover, JCB, and Diners Club cards directly on your site. You don't need a merchant account or gateway. Stripe handles everything, including storing cards, subscriptions, and direct payouts to your bank account. Credit cards go directly to Stripe's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "O Stripe torna fácil começar a aceitar cartões de crédito diretamente no seu site com conformidade total PCI. Aceite cartões Visa, MasterCard, American Express, Discover, JCB e Diners Club diretamente no seu site. Você não precisa de uma conta de comerciante ou gateway. O Stripe maneja tudo, incluindo o armazenamento de cartões, assinaturas e pagamentos diretos para a sua conta bancária. Cartões de crédito vão diretamente para o ambiente seguro do Stripe e jamais chegam aos seus servidores, de forma que você consegue evitar a maioria dos requerimentos PCI." + +#: includes/common/payment-gateways/stripe.php:192 +msgid "ZMW - Zambian Kwacha" +msgstr "ZMW - Kwacha da Zâmbia" + +#: includes/common/payment-gateways/stripe.php:191 +msgid "ZAR - South African Rand" +msgstr "ZAR - Rand Sul-Africano" + +#: includes/common/payment-gateways/stripe.php:190 +msgid "YER - Yemeni Rial" +msgstr "YER - Rial do Iêmen" + +#: includes/common/payment-gateways/stripe.php:189 +msgid "XPF - Cfp Franc*" +msgstr "XPF - Franco Cfp*" + +#: includes/common/payment-gateways/stripe.php:188 +msgid "XOF - West African Cfa Franc*" +msgstr "XOF - Franco Oeste-Africano Cfa*" + +#: includes/common/payment-gateways/stripe.php:187 +msgid "XCD - East Caribbean Dollar" +msgstr "XCD - Dólar Leste-Caribenho" + +#: includes/common/payment-gateways/stripe.php:186 +msgid "XAF - Central African Cfa Franc" +msgstr "XAF - Franco Centro-Africano Cfa" + +#: includes/common/payment-gateways/stripe.php:185 +msgid "WST - Samoan Tala" +msgstr "WST - Tala Samoano" + +#: includes/common/payment-gateways/stripe.php:184 +msgid "VUV - Vanuatu Vatu" +msgstr "VUV - Vatu de Vanuatu" + +#: includes/common/payment-gateways/stripe.php:183 +msgid "VND - Vietnamese Đồng" +msgstr "VND - Đồng Vietnamita" + +#: includes/common/payment-gateways/stripe.php:182 +msgid "VEF - Venezuelan Bolívar*" +msgstr "VEF - Bolívar Venezuelano*" + +#: includes/common/payment-gateways/stripe.php:181 +msgid "UZS - Uzbekistani Som" +msgstr "UZS - Som do Uzbequistão" + +#: includes/common/payment-gateways/stripe.php:180 +msgid "UYI - Uruguayan Peso*" +msgstr "UYI - Peso Uruguaio*" + +#: includes/common/payment-gateways/stripe.php:178 +msgid "UGX - Ugandan Shilling" +msgstr "UGX - Shilling de Uganda" + +#: includes/common/payment-gateways/stripe.php:177 +msgid "UAH - Ukrainian Hryvnia" +msgstr "UAH - Hryvnia Ucraniano" + +#: includes/common/payment-gateways/stripe.php:176 +msgid "TZS - Tanzanian Shilling" +msgstr "TZS - Shilling Tanzaniano" + +#: includes/common/payment-gateways/stripe.php:175 +msgid "TWD - New Taiwan Dollar" +msgstr "TWD - Novo Dólar de Taiwan" + +#: includes/common/payment-gateways/stripe.php:174 +msgid "TTD - Trinidad and Tobago Dollar" +msgstr "TTD - Dólar de Trinidad e Tobago" + +#: includes/common/payment-gateways/stripe.php:172 +msgid "TOP - Tongan Paʻanga" +msgstr "TOP - Paʻanga Tongano" + +#: includes/common/payment-gateways/stripe.php:171 +msgid "TJS - Tajikistani Somoni" +msgstr "TJS - Somoni Tajiquistanês" + +#: includes/common/payment-gateways/stripe.php:169 +msgid "SZL - Swazi Lilangeni" +msgstr "SZL - Lilangeni do Swazi" + +#: includes/common/payment-gateways/stripe.php:168 +msgid "SVC - Salvadoran Colón*" +msgstr "SVC - Colón Salvadorenho*" + +#: includes/common/payment-gateways/stripe.php:167 +msgid "STD - São Tomé and Príncipe Dobra" +msgstr "STD - Dobra de São Tomé e Príncipe" + +#: includes/common/payment-gateways/stripe.php:166 +msgid "SRD - Surinamese Dollar*" +msgstr "SRD - Dólar Surinamês*" + +#: includes/common/payment-gateways/stripe.php:165 +msgid "SOS - Somali Shilling" +msgstr "SOS - Shilling Somáli" + +#: includes/common/payment-gateways/stripe.php:164 +msgid "SLL - Sierra Leonean Leone" +msgstr "SLL - Leone Sierra Leonês" + +#: includes/common/payment-gateways/stripe.php:163 +msgid "SHP - Saint Helenian Pound*" +msgstr "SHP - Libra Santa Heleniaana*" + +#: includes/common/payment-gateways/stripe.php:160 +msgid "SCR - Seychellois Rupee" +msgstr "SCR - Rúpia Seychellesa" + +#: includes/common/payment-gateways/stripe.php:159 +msgid "SBD - Solomon Islands Dollar" +msgstr "SBD - Dólar das Ilhas Salomão" + +#: includes/common/payment-gateways/stripe.php:157 +msgid "RWF - Rwandan Franc" +msgstr "RWF - Franco Ruandanês" + +#: includes/common/payment-gateways/stripe.php:156 +msgid "RUB - Russian Ruble" +msgstr "RUB - Rublo Russo" + +#: includes/common/payment-gateways/stripe.php:155 +msgid "RSD - Serbian Dinar" +msgstr "RSD - Dinar Sérvio" + +#: includes/common/payment-gateways/stripe.php:154 +msgid "RON - Romanian Leu" +msgstr "RON - Leu Romaniano" + +#: includes/common/payment-gateways/stripe.php:153 +msgid "QAR - Qatari Riyal" +msgstr "QAR - Riyal Catári" + +#: includes/common/payment-gateways/stripe.php:152 +msgid "PYG - Paraguayan Guaraní*" +msgstr "PYG - Guaraní Paraguaio*" + +#: includes/common/payment-gateways/stripe.php:151 +msgid "PLN - Polish Złoty" +msgstr "PLN - Złoty Polonês" + +#: includes/common/payment-gateways/stripe.php:150 +msgid "PKR - Pakistani Rupee" +msgstr "PKR - Rúpia Paquistanesa" + +#: includes/common/payment-gateways/stripe.php:149 +msgid "PHP - Philippine Peso" +msgstr "PHP - Peso Filipino" + +#: includes/common/payment-gateways/stripe.php:148 +msgid "PGK - Papua New Guinean Kina" +msgstr "PGK - Kina da Papua-Nova Guiné" + +#: includes/common/payment-gateways/stripe.php:147 +msgid "PEN - Peruvian Nuevo Sol*" +msgstr "PEN - Novo Sol Peruano*" + +#: includes/common/payment-gateways/stripe.php:146 +msgid "PAB - Panamanian Balboa*" +msgstr "PAB - Balboa Panamaniana*" + +#: includes/common/payment-gateways/stripe.php:144 +msgid "NPR - Nepalese Rupee" +msgstr "NPR - Rúpia Nepalesa" + +#: includes/common/payment-gateways/stripe.php:142 +msgid "NIO - Nicaraguan Córdoba*" +msgstr "NIO - Córdoba Nicaraguense*" + +#: includes/common/payment-gateways/stripe.php:141 +msgid "NGN - Nigerian Naira" +msgstr "NGN - Naira Nigeriana" + +#: includes/common/payment-gateways/stripe.php:140 +msgid "NAD - Namibian Dollar" +msgstr "NAD - Dólar da Namíbia" + +#: includes/common/payment-gateways/stripe.php:139 +msgid "MZN - Mozambican Metical" +msgstr "MZN - Metical Moçambicano" + +#: includes/common/payment-gateways/stripe.php:137 +msgid "MXN - Mexican Peso*" +msgstr "MXN - Peso Mexicano*" + +#: includes/common/payment-gateways/stripe.php:136 +msgid "MWK - Malawian Kwacha" +msgstr "MWK - Kwacha Maláio" + +#: includes/common/payment-gateways/stripe.php:135 +msgid "MVR - Maldivian Rufiyaa" +msgstr "MVR - Rufiyaa Maldiviana" + +#: includes/common/payment-gateways/stripe.php:134 +msgid "MUR - Mauritian Rupee*" +msgstr "MUR - Rúpia Mauritiana*" + +#: includes/common/payment-gateways/stripe.php:133 +msgid "MRO - Mauritanian Ouguiya" +msgstr "MRO - Ouguiya Mauritânio" + +#: includes/common/payment-gateways/stripe.php:132 +msgid "MOP - Macanese Pataca" +msgstr "MOP - Pataca Macanês" + +#: includes/common/payment-gateways/stripe.php:131 +msgid "MNT - Mongolian Tögrög" +msgstr "MNT - Tögrög Mongolinano" + +#: includes/common/payment-gateways/stripe.php:130 +msgid "MKD - Macedonian Denar" +msgstr "MKD - Denar Macedônio" + +#: includes/common/payment-gateways/stripe.php:129 +msgid "MGA - Malagasy Ariary" +msgstr "MGA - Ariary Malagásio" + +#: includes/common/payment-gateways/stripe.php:128 +msgid "MDL - Moldovan Leu" +msgstr "MDL - Leu Moldovanio" + +#: includes/common/payment-gateways/stripe.php:126 +msgid "LVL - Latvian Lats" +msgstr "LVL - Lats Letão" + +#: includes/common/payment-gateways/stripe.php:124 +msgid "LSL - Lesotho Loti" +msgstr "LSL - Loti do Lesotho" + +#: includes/common/payment-gateways/stripe.php:123 +msgid "LRD - Liberian Dollar" +msgstr "LRD - Dólar Liberiano" + +#: includes/common/payment-gateways/stripe.php:122 +msgid "LKR - Sri Lankan Rupee" +msgstr "LKR - Rúpia do Sri Lanka" + +#: includes/common/payment-gateways/stripe.php:121 +msgid "LBP - Lebanese Pound" +msgstr "LBP - Libra Libanesa" + +#: includes/common/payment-gateways/stripe.php:120 +msgid "LAK - Lao Kip*" +msgstr "LAK - Kip do Laos*" + +#: includes/common/payment-gateways/stripe.php:119 +msgid "KZT - Kazakhstani Tenge" +msgstr "KZT - Tenge Cazaquistanês" + +#: includes/common/payment-gateways/stripe.php:118 +msgid "KYD - Cayman Islands Dollar" +msgstr "KYD - Dólar das Ilhas Cayman" + +#: includes/common/payment-gateways/stripe.php:117 +msgid "KRW - South Korean Won" +msgstr "KRW - Won Sul-Coreano" + +#: includes/common/payment-gateways/stripe.php:116 +msgid "KMF - Comorian Franc" +msgstr "KMF - Franco Comoriano" + +#: includes/common/payment-gateways/stripe.php:115 +msgid "KHR - Cambodian Riel" +msgstr "KHR - Riel Cambojano" + +#: includes/common/payment-gateways/stripe.php:114 +msgid "KGS - Kyrgyzstani Som" +msgstr "KGS - Som Quirguistanês" + +#: includes/common/payment-gateways/stripe.php:113 +msgid "KES - Kenyan Shilling" +msgstr "KES - Shilling Queniano" + +#: includes/common/payment-gateways/stripe.php:111 +msgid "JMD - Jamaican Dollar" +msgstr "JMD - Dólar Jamaicano" + +#: includes/common/payment-gateways/stripe.php:110 +msgid "ISK - Icelandic Króna" +msgstr "ISK - Króna Islandesa" + +#: includes/common/payment-gateways/stripe.php:109 +msgid "INR - Indian Rupee*" +msgstr "INR - Rúpia Indiana*" + +#: includes/common/payment-gateways/stripe.php:108 +msgid "ILS - Israeli New Sheqel" +msgstr "ILS - Novo Sheqel Israelense" + +#: includes/common/payment-gateways/stripe.php:107 +msgid "IDR - Indonesian Rupiah" +msgstr "IDR - Rúpia da Indonésia" + +#: includes/common/payment-gateways/stripe.php:105 +msgid "HTG - Haitian Gourde" +msgstr "HTG - Gourde Haitiano" + +#: includes/common/payment-gateways/stripe.php:103 +msgid "HNL - Honduran Lempira*" +msgstr "HNL - Lempira Hondurenha*" + +#: includes/common/payment-gateways/stripe.php:101 +msgid "GYD - Guyanese Dollar" +msgstr "GYD - Dólar Guianês" + +#: includes/common/payment-gateways/stripe.php:100 +msgid "GTQ - Guatemalan Quetzal*" +msgstr "GTQ - Quetzal Guatemalteco*" + +#: includes/common/payment-gateways/stripe.php:99 +msgid "GNF - Guinean Franc*" +msgstr "GNF - Franco da Guiné*" + +#: includes/common/payment-gateways/stripe.php:98 +msgid "GMD - Gambian Dalasi" +msgstr "GMD - Dalasi Gambiano" + +#: includes/common/payment-gateways/stripe.php:97 +msgid "GIP - Gibraltar Pound" +msgstr "GIP - Libra de Gibraltar" + +#: includes/common/payment-gateways/stripe.php:96 +msgid "GEL - Georgian Lari" +msgstr "GEL - Lari Georgiano" + +#: includes/common/payment-gateways/stripe.php:94 +msgid "FKP - Falkland Islands Pound*" +msgstr "FKP - Libra das Ilhas Falkland*" + +#: includes/common/payment-gateways/stripe.php:93 +msgid "FJD - Fijian Dollar" +msgstr "FJD - Dólar Fijiano" + +#: includes/common/payment-gateways/stripe.php:91 +msgid "ETB - Ethiopian Birr" +msgstr "ETB - Birr Etiopiano" + +#: includes/common/payment-gateways/stripe.php:90 +msgid "EGP - Egyptian Pound" +msgstr "EGP - Libra Egípcia" + +#: includes/common/payment-gateways/stripe.php:89 +msgid "EEK - Estonian Kroon*" +msgstr "EEK - Kroon Estoniano*" + +#: includes/common/payment-gateways/stripe.php:88 +msgid "DZD - Algerian Dinar" +msgstr "DZD - Dinar Algeriano" + +#: includes/common/payment-gateways/stripe.php:87 +msgid "DOP - Dominican Peso" +msgstr "DOP - Peso Dominicano" + +#: includes/common/payment-gateways/stripe.php:85 +msgid "DJF - Djiboutian Franc*" +msgstr "DJF - Franco Djiboutiano*" + +#: includes/common/payment-gateways/stripe.php:84 +msgid "CZK - Czech Koruna*" +msgstr "CZK - Koruna Tcheca*" + +#: includes/common/payment-gateways/stripe.php:83 +msgid "CVE - Cape Verdean Escudo*" +msgstr "CVE - Escudo Cabo-Verdense*" + +#: includes/common/payment-gateways/stripe.php:82 +msgid "CRC - Costa Rican Colón*" +msgstr "CRC - Colón Costa-Riquenho*" + +#: includes/common/payment-gateways/stripe.php:81 +msgid "COP - Colombian Peso*" +msgstr "COP - Peso Colombiano*" + +#: includes/common/payment-gateways/stripe.php:80 +msgid "CNY - Chinese Renminbi Yuan" +msgstr "CNY - Renminbi Yuan Chinês" + +#: includes/common/payment-gateways/stripe.php:79 +msgid "CLP - Chilean Peso*" +msgstr "CLP - Peso Chileno*" + +#: includes/common/payment-gateways/stripe.php:77 +msgid "CDF - Congolese Franc" +msgstr "CDF - Franco Congolês" + +#: includes/common/payment-gateways/stripe.php:76 +msgid "CAD - Canadian Dollar*" +msgstr "CAD - Dólar Canadense*" + +#: includes/common/payment-gateways/stripe.php:75 +msgid "BZD - Belize Dollar" +msgstr "BZD - Dólar de Belize" + +#: includes/common/payment-gateways/stripe.php:74 +msgid "BWP - Botswana Pula" +msgstr "BWP - Pula do Botsuana" + +#: includes/common/payment-gateways/stripe.php:73 +msgid "BSD - Bahamian Dollar" +msgstr "BSD - Dólar das Bahamas" + +#: includes/common/payment-gateways/stripe.php:72 +msgid "BRL - Brazilian Real*" +msgstr "BRL - Real Brasileiro*" + +#: includes/common/payment-gateways/stripe.php:71 +msgid "BOB - Bolivian Boliviano*" +msgstr "BOB - Boliviano Boliviano*" + +#: includes/common/payment-gateways/stripe.php:70 +msgid "BND - Brunei Dollar" +msgstr "BND - Dólar de Brunei" + +#: includes/common/payment-gateways/stripe.php:69 +msgid "BMD - Bermudian Dollar" +msgstr "BMD - Dólar Bermudiano" + +#: includes/common/payment-gateways/stripe.php:68 +msgid "BIF - Burundian Franc" +msgstr "BIF - Franco Burundiano" + +#: includes/common/payment-gateways/stripe.php:67 +msgid "BGN - Bulgarian Lev" +msgstr "BGN - Lev Búlgaro" + +#: includes/common/payment-gateways/stripe.php:66 +msgid "BDT - Bangladeshi Taka" +msgstr "BDT - Taka de Bangladesh" + +#: includes/common/payment-gateways/stripe.php:65 +msgid "BBD - Barbadian Dollar" +msgstr "BBD - Dólar Barbadiano" + +#: includes/common/payment-gateways/stripe.php:64 +msgid "BAM - Bosnia & Herzegovina Convertible Mark" +msgstr "BAM - Marco Conversível da Bósnia e Herzegovina" + +#: includes/common/payment-gateways/stripe.php:63 +msgid "AZN - Azerbaijani Manat" +msgstr "AZN - Manat Azerbaijanês" + +#: includes/common/payment-gateways/stripe.php:62 +msgid "AWG - Aruban Florin" +msgstr "AWG - Florin Arubano" + +#: includes/common/payment-gateways/stripe.php:61 +msgid "AUD - Australian Dollar*" +msgstr "AUD - Dólar Australiano*" + +#: includes/common/payment-gateways/stripe.php:60 +msgid "ARS - Argentine Peso*" +msgstr "ARS - Peso Argentino*" + +#: includes/common/payment-gateways/stripe.php:59 +msgid "AOA - Angolan Kwanza*" +msgstr "AOA - Kwanza Angolano*" + +#: includes/common/payment-gateways/stripe.php:58 +msgid "ANG - Netherlands Antillean Gulden" +msgstr "ANG - Gulden Antileano-Holandês" + +#: includes/common/payment-gateways/stripe.php:57 +msgid "AMD - Armenian Dram" +msgstr "AMD - Dram Armênio" + +#: includes/common/payment-gateways/stripe.php:56 +msgid "ALL - Albanian Lek" +msgstr "ALL - Lek Albanês" + +#: includes/common/payment-gateways/stripe.php:55 +msgid "AFN - Afghan Afghani*" +msgstr "AFN - Afghani Afegão*" + +#: includes/common/payment-gateways/stripe.php:54 +msgid "AED - United Arab Emirates Dirham" +msgstr "AED - Dirham dos Emirados Árabes Unidos" + +#: includes/common/payment-gateways/skrill.php:345 +msgid "Skrill balance, Credit Card, or Instant Transfer" +msgstr "Saldo Skrill, Cartão de Crédito, ou Transferência Instantânea" + +#: includes/common/payment-gateways/skrill.php:327 +msgid "Skrill IPN message received." +msgstr "Mensagem do Skrill IPN recebida." + +#: includes/common/payment-gateways/skrill.php:283 +msgid "Skrill" +msgstr "Skrill" + +#: includes/common/payment-gateways/skrill.php:278 +msgid "Pending payment" +msgstr "Pagamento pendente" + +#: includes/common/payment-gateways/skrill.php:144 +msgid "The secret word must match the word submitted in the \"Merchant Tools\" section of your Skrill account." +msgstr "A palavra secreta deve combinar com a palavra enviada na seção \"Ferramentas de Comerciante\" da sua conta Skrill." + +#: includes/common/payment-gateways/skrill.php:134 +msgid "You must use your valid Skrill merchant email. Instructions »" +msgstr "Você deve usar o seu e-mail de comerciante válido da Skrill. Instruções »" + +#: includes/common/payment-gateways/skrill.php:133 +msgid "Skrill Email" +msgstr "E-mail do Skrill" + +#: includes/common/payment-gateways/skrill.php:123 +msgid "Resell your inventory via Skrill.com (Moneybookers)" +msgstr "Revenda seu inventário através da Skrill.com (MoneyBookers)" + +#: includes/common/payment-gateways/skrill.php:95 +msgid "ZAR - South-African Rand" +msgstr "ZAR - Rand Sul-Africano" + +#: includes/common/payment-gateways/skrill.php:93 +msgid "TWD - Taiwan Dollar" +msgstr "TWD - Dólar Taiwanês" + +#: includes/common/payment-gateways/skrill.php:92 +msgid "TRY - New Turkish Lira" +msgstr "TRY - Nova Lira Turca" + +#: includes/common/payment-gateways/skrill.php:91 +msgid "TND - Tunisian Dinar" +msgstr "TND - Dinar Tunisiano" + +#: includes/common/payment-gateways/skrill.php:90 +msgid "THB - Thailand Baht" +msgstr "THB - Baht Tailandês" + +#: includes/common/payment-gateways/skrill.php:89 +msgid "SKK - Slovakian Koruna" +msgstr "SKK - Koruna Eslovaca" + +#: includes/common/payment-gateways/skrill.php:86 +#: includes/common/payment-gateways/stripe.php:158 +msgid "SAR - Saudi Riyal" +msgstr "SAR - Riyal Saudita" + +#: includes/common/payment-gateways/skrill.php:85 +msgid "RSD - Serbian dinar" +msgstr "RSD - Dinar Sérvio" + +#: includes/common/payment-gateways/skrill.php:83 +msgid "QAR - Qatari Rial" +msgstr "QAR - Rial Catári" + +#: includes/common/payment-gateways/skrill.php:81 +msgid "OMR - Omani Rial" +msgstr "OMR - Rial Omanês" + +#: includes/common/payment-gateways/skrill.php:80 +msgid "NOK - Norwegian Krone " +msgstr "NOK - Krona Norueguesa" + +#: includes/common/payment-gateways/skrill.php:78 +#: includes/common/payment-gateways/stripe.php:138 +msgid "MYR - Malaysian Ringgit" +msgstr "MYR - Ringgit Malaio" + +#: includes/common/payment-gateways/skrill.php:77 +#: includes/common/payment-gateways/stripe.php:127 +msgid "MAD - Moroccan Dirham" +msgstr "MAD - Dirham Marroquino" + +#: includes/common/payment-gateways/skrill.php:74 +msgid "KRW - South-Korean Won" +msgstr "KRW - Won Sul-Coreano" + +#: includes/common/payment-gateways/skrill.php:72 +msgid "JOD - Jordanian Dinar" +msgstr "JOD - Dinar Jordaniano" + +#: includes/common/payment-gateways/skrill.php:70 +msgid "INR - Indian Rupee" +msgstr "INR - Rúpia Indiana" + +#: includes/common/payment-gateways/skrill.php:63 +msgid "EEK - Estonian Kroon" +msgstr "EEK - Kroon Estoniano" + +#: includes/common/payment-gateways/skrill.php:56 +msgid "AED - Utd. Arab Emir. Dirham" +msgstr "AED - Dirham dos Emirados Árabes Unidos" + +#: includes/common/payment-gateways/skrill.php:52 +msgid "Turkish" +msgstr "Turco" + +#: includes/common/payment-gateways/skrill.php:51 +msgid "Swedish" +msgstr "Sueco" + +#: includes/common/payment-gateways/skrill.php:50 +msgid "Spanish" +msgstr "Espanhol" + +#: includes/common/payment-gateways/skrill.php:49 +msgid "Russian" +msgstr "Russo" + +#: includes/common/payment-gateways/skrill.php:48 +msgid "Romainian" +msgstr "Romeno" + +#: includes/common/payment-gateways/skrill.php:47 +msgid "Polish" +msgstr "Polonês" + +#: includes/common/payment-gateways/skrill.php:46 +msgid "Italian" +msgstr "Italiano" + +#: includes/common/payment-gateways/skrill.php:45 +msgid "Greek" +msgstr "Grego" + +#: includes/common/payment-gateways/skrill.php:44 +msgid "German" +msgstr "Alemão" + +#: includes/common/payment-gateways/skrill.php:43 +msgid "French" +msgstr "Francês" + +#: includes/common/payment-gateways/skrill.php:42 +msgid "Finnish" +msgstr "Finlandês" + +#: includes/common/payment-gateways/skrill.php:41 +msgid "English" +msgstr "Inglês" + +#: includes/common/payment-gateways/skrill.php:40 +msgid "Dutch" +msgstr "Holandês" + +#: includes/common/payment-gateways/skrill.php:39 +msgid "Danish" +msgstr "Dinamarquês" + +#: includes/common/payment-gateways/skrill.php:38 +msgid "Czech" +msgstr "Tcheco" + +#: includes/common/payment-gateways/skrill.php:37 +msgid "Chinese" +msgstr "Chinês" + +#: includes/common/payment-gateways/simplify.php:201 +msgid "There was an error processing your card: %s. Please re-enter your credit card info and try again." +msgstr "Houve erro processando o seu cartão de crédito: %s. Por favor digite novamente as informações do seu cartão de crédito e tente novamente.." + +#: includes/common/payment-gateways/pin.php:278 +msgid "
  • There was an error processing your card: \"%s\". Please verify your credit card information and try again.
  • " +msgstr "
  • Houve um erro processando o seu cartão: \"%s\". Por favor verifique as informações do seu cartão de crédito e tente novamente.
  • " + +#: includes/common/payment-gateways/pin.php:274 +msgid "
  • There was an error processing your card. Please verify your credit card information and try again.
  • " +msgstr "
  • Houve um erro processando o seu cartão. Por favor verifique as informações do seu cartão de crédito e tente novamente.
  • " + +#: includes/common/payment-gateways/pin.php:177 +#: includes/common/payment-gateways/stripe.php:279 +msgid "Publishable Key" +msgstr "Chave Publicável" + +#: includes/common/payment-gateways/pin.php:163 +msgid "API Credentials?" +msgstr "Credenciais da API?" + +#: includes/common/payment-gateways/pin.php:147 +msgid "PIN makes it easy to start accepting credit card payments with Australia’s first all-in-one online payment system. Accept all major credit cards directly on your site. Your sales proceeds are deposited to any Australian bank account, no merchant account required." +msgstr "PIN torna fácil começar a aceitar pagamentos com cartão de crédito com o primeiro sistema tudo-em-um da Austrália. Aceite todos os principais cartões de crédito diretamente no seu site. Os recursos das suas vendas são depositados em contas de qualquer banco australiano, sem a necessidade de uma conta de comerciante." + +#: includes/common/payment-gateways/pin.php:57 +#: includes/common/payment-gateways/stripe.php:179 +msgid "USD - United States Dollar" +msgstr "USD - Dólar dos Estados Unidos" + +#: includes/common/payment-gateways/paypal-payflow.php:455 +msgid "Email Footer" +msgstr "Rodapé do E-mail" + +#: includes/common/payment-gateways/paypal-payflow.php:445 +msgid "Email Header" +msgstr "Cabeçalho do E-mail" + +#: includes/common/payment-gateways/paypal-payflow.php:416 +msgid "Partner" +msgstr "Parceiro" + +#: includes/common/payment-gateways/paypal-payflow.php:409 +msgid "Vendor" +msgstr "Vendedor" + +#: includes/common/payment-gateways/paypal-express.php:852 +#: includes/common/payment-gateways/paypal-express.php:1126 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences\t section of your Profile." +msgstr "O pagamento está pendente porque seu cliente não incluiu um endereço confirmado de envio e suas Preferências de Recebimento de pagamento estão definidas para você aceitar ou negar manualmente cada pagamento. Para mudar esta preferência, vá até a seção Preferências\t do seu Perfil." + +#: includes/common/payment-gateways/paypal-express.php:749 +msgid "Page Background Color" +msgstr "Cor de Fundo da Página" + +#: includes/common/payment-gateways/paypal-express.php:744 +msgid "Header Background Color" +msgstr "Cor de Fundo do Cabeçalho" + +#: includes/common/payment-gateways/paypal-express.php:739 +msgid "Header Border Color" +msgstr "Cor da Borda do Cabeçalho" + +#: includes/common/payment-gateways/paypal-express.php:734 +msgid "Header Image" +msgstr "Imagem do Cabeçalho" + +#: includes/common/payment-gateways/paypal-express.php:680 +msgid "Locale" +msgstr "Local" + +#: includes/common/payment-gateways/paypal-express.php:624 +#: includes/common/payment-gateways/paypal-express.php:658 +msgid "Merchant Email" +msgstr "E-mail de Comerciante" + +#: includes/common/payment-gateways/paypal-express.php:645 +msgid "Paypal Express Checkout Settings" +msgstr "Configurações de Check-out do PayPal Express" + +#: includes/common/payment-gateways/paypal-express.php:603 +msgid "Paypal Express Network Settings" +msgstr "Configurações de Rede do PayPal Express" + +#: includes/common/payment-gateways/paypal-chained-payments.php:861 +msgid "Application ID (Live)" +msgstr "ID do Aplicativo (Live)" + +#: includes/common/payment-gateways/paypal-chained-payments.php:854 +msgid "Signature (Live)" +msgstr "Assinatura (Live)" + +#: includes/common/payment-gateways/paypal-chained-payments.php:847 +msgid "API Password (Live)" +msgstr "Senha da API (Live)" + +#: includes/common/payment-gateways/paypal-chained-payments.php:839 +msgid "API Username (Live)" +msgstr "Username da API (Live)" + +#: includes/common/payment-gateways/paypal-chained-payments.php:832 +msgid "Signature (Sandbox)" +msgstr "Assinatura (Sandbox)" + +#: includes/common/payment-gateways/paypal-chained-payments.php:825 +msgid "API Password (Sandbox)" +msgstr "Senha da API (Sandbox)" + +#: includes/common/payment-gateways/paypal-chained-payments.php:817 +msgid "API Username (Sandbox)" +msgstr "Username da API (Sandbox)" + +#: includes/common/payment-gateways/paypal-chained-payments.php:799 +msgid "This message is displayed at the top of the gateway settings page to store admins. It's a good place to inform them of your fees or put any sales messages." +msgstr "Esta mensagem é exibida no topo da página de configurações do gateway para os administradores de loja. É um bom lugar para informá-los das suas taxas ou enviar mensagens de vendas." + +#: includes/common/payment-gateways/paypal-chained-payments.php:787 +msgid "Please enter your PayPal email address or business ID you want to recieve fees at." +msgstr "Por favor informe o seu endereço de e-mail do PayPal ou ID do negócio em que você deseja receber seus pagamentos." + +#: includes/common/payment-gateways/paypal-chained-payments.php:786 +msgid "PayPal E-mail" +msgstr "E-Mail do PayPal" + +#: includes/common/payment-gateways/paypal-chained-payments.php:772 +msgid "Fees to Collect (%)" +msgstr "Taxas a Coletar (%)" + +#: includes/common/payment-gateways/paypal-chained-payments.php:375 +#: includes/public/class-mp-checkout.php:341 +msgid "Email Address" +msgstr "Endereço de E-mail" + +#: includes/common/payment-gateways/paypal-chained-payments.php:299 +msgid "Sorry, your order was not completed." +msgstr "Desculpe, seu pedido não foi concluído." + +#: includes/common/payment-gateways/paypal-chained-payments.php:126 +#: includes/common/payment-gateways/paypal-express.php:780 +msgid "You will be redirected to the PayPal site to finalize your payment." +msgstr "Você será redirecionado ao site do PayPal para finalizar seu pagamento." + +#: includes/common/payment-gateways/paypal-chained-payments.php:90 +#: includes/common/payment-gateways/skrill.php:94 +msgid "USD - U.S. Dollar" +msgstr "USD - Dólar Norte-Americano" + +#: includes/common/payment-gateways/paypal-chained-payments.php:89 +msgid "TRY - Turkish lira" +msgstr "TRY - Lira Turca" + +#: includes/common/payment-gateways/paypal-chained-payments.php:88 +#: includes/common/payment-gateways/stripe.php:170 +msgid "THB - Thai Baht" +msgstr "THB - Baht Tailandês" + +#: includes/common/payment-gateways/paypal-chained-payments.php:87 +msgid "TWD - Taiwan New Dollars" +msgstr "TWD - Novo Dólar de Taiwan" + +#: includes/common/payment-gateways/paypal-chained-payments.php:86 +#: includes/common/payment-gateways/pin.php:59 +#: includes/common/payment-gateways/skrill.php:88 +#: includes/common/payment-gateways/stripe.php:162 +msgid "SGD - Singapore Dollar" +msgstr "SGD - Dólar de Cingapura" + +#: includes/common/payment-gateways/paypal-chained-payments.php:84 +msgid "RUB - Russian Rubles" +msgstr "RUB - Rublos Russos" + +#: includes/common/payment-gateways/paypal-chained-payments.php:82 +msgid "PHP - Philippine Pesos" +msgstr "PHP - Pesos Filipinos" + +#: includes/common/payment-gateways/paypal-chained-payments.php:81 +#: includes/common/payment-gateways/pin.php:58 +#: includes/common/payment-gateways/skrill.php:79 +#: includes/common/payment-gateways/stripe.php:145 +msgid "NZD - New Zealand Dollar" +msgstr "NZD - Dólar Neo-Zelandês" + +#: includes/common/payment-gateways/paypal-chained-payments.php:79 +msgid "MXN - Mexican Peso" +msgstr "MXN - Peso Mexicano" + +#: includes/common/payment-gateways/paypal-chained-payments.php:78 +msgid "MYR - Malaysian Ringgits" +msgstr "MYR - Ringgits Malaios" + +#: includes/common/payment-gateways/paypal-chained-payments.php:77 +#: includes/common/payment-gateways/pin.php:64 +#: includes/common/payment-gateways/skrill.php:73 +#: includes/common/payment-gateways/stripe.php:112 +msgid "JPY - Japanese Yen" +msgstr "JPY - Iene Japonês" + +#: includes/common/payment-gateways/paypal-chained-payments.php:75 +#: includes/common/payment-gateways/pin.php:63 +#: includes/common/payment-gateways/skrill.php:66 +#: includes/common/payment-gateways/stripe.php:102 +msgid "HKD - Hong Kong Dollar" +msgstr "HKD - Dólar de Hong Kong" + +#: includes/common/payment-gateways/paypal-chained-payments.php:73 +msgid "GBP - Pound Sterling" +msgstr "GBP - Libra Esterlina" + +#: includes/common/payment-gateways/paypal-chained-payments.php:68 +#: includes/common/payment-gateways/pin.php:62 +#: includes/common/payment-gateways/skrill.php:59 +msgid "CAD - Canadian Dollar" +msgstr "CAD - Dolar Canadense" + +#: includes/common/payment-gateways/paypal-chained-payments.php:67 +msgid "BRL - Brazilian Real" +msgstr "BRL - Real Brasileiro" + +#: includes/common/payment-gateways/paypal-chained-payments.php:66 +#: includes/common/payment-gateways/pin.php:56 +#: includes/common/payment-gateways/skrill.php:57 +msgid "AUD - Australian Dollar" +msgstr "AUD - Dólar Australiano" + +#: includes/common/payment-gateways/paymill.php:288 +msgid "There was an error processing your card: \"%s\". Please try again." +msgstr "Houve um erro processando seu cartão: \"%s\". Por favor tente novamente." + +#: includes/common/payment-gateways/paymill.php:163 +msgid "When running on a live site, Paymill recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "Quando em um site de produção, o Paymill recomenda que você possua um certificado SSL instalado para o site onde o formulário de check-out será exibido." + +#: includes/common/payment-gateways/paymill.php:161 +#: includes/common/payment-gateways/pin.php:157 +#: includes/common/payment-gateways/simplify.php:103 +#: includes/common/payment-gateways/stripe.php:260 +#: includes/common/payment-gateways/wepay.php:153 +msgid "Force SSL?" +msgstr "Forçar SSL?" + +#: includes/common/payment-gateways/paymill.php:151 +msgid "Accept Visa, Mastercard, Maestro UK, Discover and Solo cards directly on your site. You don't need a merchant account or gateway. Credit cards go directly to Paymill's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "Aceite cartões Visa, MasterCard, Maestro UK, Discover e Solo diretamente no seu site. Você não precisa uma conta de comerciante ou gateway. Cartões de crédito vão diretamente para o ambiente seguro do Paymill e nunca chegam aos seus servidores, de forma que você evita a maior parte dos requerimentos PCI." + +#: includes/common/payment-gateways/paymill.php:131 +msgid "CVV2" +msgstr "CVV2s" + +#: includes/common/payment-gateways/paymill.php:72 +#: includes/common/payment-gateways/pin.php:61 +#: includes/common/payment-gateways/skrill.php:65 +#: includes/common/payment-gateways/stripe.php:95 +msgid "GBP - British Pound" +msgstr "GBP - Libra Britânica" + +#: includes/common/payment-gateways/paymill.php:71 +#: includes/common/payment-gateways/stripe.php:173 +msgid "TRY - Turkish Lira" +msgstr "TRY - Lira Turca" + +#: includes/common/payment-gateways/paymill.php:70 +#: includes/common/payment-gateways/paypal-chained-payments.php:85 +#: includes/common/payment-gateways/skrill.php:87 +#: includes/common/payment-gateways/stripe.php:161 +msgid "SEK - Swedish Krona" +msgstr "SEK - Krona Sueca" + +#: includes/common/payment-gateways/paymill.php:69 +#: includes/common/payment-gateways/skrill.php:84 +msgid "RON - Romanian Leu New" +msgstr "RON - Leu New Romeno" + +#: includes/common/payment-gateways/paymill.php:68 +#: includes/common/payment-gateways/paypal-chained-payments.php:83 +#: includes/common/payment-gateways/skrill.php:82 +msgid "PLN - Polish Zloty" +msgstr "PLN - Zloty Polonês" + +#: includes/common/payment-gateways/paymill.php:67 +#: includes/common/payment-gateways/paypal-chained-payments.php:80 +#: includes/common/payment-gateways/stripe.php:143 +msgid "NOK - Norwegian Krone" +msgstr "NOK - Krone Norueguesa" + +#: includes/common/payment-gateways/paymill.php:66 +#: includes/common/payment-gateways/skrill.php:75 +#: includes/common/payment-gateways/stripe.php:125 +msgid "LTL - Lithuanian Litas" +msgstr "LTL - Litas Lituano" + +#: includes/common/payment-gateways/paymill.php:65 +#: includes/common/payment-gateways/paypal-chained-payments.php:69 +#: includes/common/payment-gateways/skrill.php:60 +#: includes/common/payment-gateways/stripe.php:78 +msgid "CHF - Swiss Franc" +msgstr "CHF - Franco Suíço" + +#: includes/common/payment-gateways/paymill.php:64 +#: includes/common/payment-gateways/skrill.php:76 +msgid "LVL - Latvian Lat" +msgstr "LVL - Lat Letão" + +#: includes/common/payment-gateways/paymill.php:63 +#: includes/common/payment-gateways/paypal-chained-payments.php:74 +#: includes/common/payment-gateways/skrill.php:69 +msgid "ILS - Israeli Shekel" +msgstr "ILS - Shekel Israelense" + +#: includes/common/payment-gateways/paymill.php:62 +#: includes/common/payment-gateways/skrill.php:71 +msgid "ISK - Iceland Krona" +msgstr "ISK - Krona Islandesa" + +#: includes/common/payment-gateways/paymill.php:61 +#: includes/common/payment-gateways/paypal-chained-payments.php:76 +#: includes/common/payment-gateways/skrill.php:68 +#: includes/common/payment-gateways/stripe.php:106 +msgid "HUF - Hungarian Forint" +msgstr "HUF - Forint Húngaro" + +#: includes/common/payment-gateways/paymill.php:60 +#: includes/common/payment-gateways/paypal-chained-payments.php:71 +#: includes/common/payment-gateways/skrill.php:62 +#: includes/common/payment-gateways/stripe.php:86 +msgid "DKK - Danish Krone" +msgstr "DKK - Krone Dinamarquesa" + +#: includes/common/payment-gateways/paymill.php:59 +#: includes/common/payment-gateways/skrill.php:67 +#: includes/common/payment-gateways/stripe.php:104 +msgid "HRK - Croatian Kuna" +msgstr "HRK - Kuna Croata" + +#: includes/common/payment-gateways/paymill.php:58 +#: includes/common/payment-gateways/paypal-chained-payments.php:70 +#: includes/common/payment-gateways/skrill.php:61 +msgid "CZK - Czech Koruna" +msgstr "CZK - Koruna Tcheca" + +#: includes/common/payment-gateways/paymill.php:57 +#: includes/common/payment-gateways/skrill.php:58 +msgid "BGN - Bulgarian Leva" +msgstr "BGN - Leva Búlgara" + +#: includes/common/payment-gateways/payflow/class-mp-gateway-worker-payflow.php:123 +msgid "There was an error connecting to PayPal. Please try again." +msgstr "Houve um erro conectando ao PayPal. Por favor tente novamente." + +#: includes/common/payment-gateways/payfast.php:344 +msgid "This setting will log all PayFast communication to the \"payfast.log\" file." +msgstr "Esta configuração irá gravar todas as comunicações do PayFast no arquivo de log \"payfast.log\"." + +#: includes/common/payment-gateways/payfast.php:342 +msgid "Log Debugging Info?" +msgstr "Fazer Log da Informação de Depuração?" + +#: includes/common/payment-gateways/payfast.php:335 +msgid "DO NOT INPUT A VALUE UNLESS YOU HAVE SET ONE IN THE SETTINGS SECTION OF YOUR PAYFAST SETTINGS." +msgstr "NÃO INSIRA UM VALOR A NÃO SER QUE TENHA DEFINIDO UM NAs DEFINIÇÕES DAS SUAS CONFIGURAÇÕES DO PAYFAST." + +#: includes/common/payment-gateways/payfast.php:333 +msgid "PayFast Passphrase" +msgstr "Senha do PayFast" + +#: includes/common/payment-gateways/payfast.php:323 +msgid "You can find your credentials on your integration page." +msgstr "Você encontra as suas credenciais na sua página de integração." + +#: includes/common/payment-gateways/payfast.php:321 +msgid "PayFast Merchant Credentials" +msgstr "Credenciais de Comerciante do PayFast" + +#: includes/common/payment-gateways/payfast.php:311 +msgid "PayFast Mode" +msgstr "Modo do PayFast" + +#: includes/common/payment-gateways/payfast.php:308 +msgid "PayFast is a payments processing service for South Africa. We make it safe for buyers to send money and easy for sellers to receive money. More Info »" +msgstr "O PayFast é um serviço de processamento de pagamentos da África do Sul. Tornamos seguro aos compradores enviar dinheiro e fácil aos vendedores para receber dinheiro. Mais Informações »" + +#: includes/common/payment-gateways/payfast.php:306 +msgid "PayFast Checkout Settings" +msgstr "Configurações de Check-out do PayFast" + +#: includes/common/payment-gateways/payfast.php:285 +msgid "Your payment via PayFast for this order totaling %s is complete. The transaction number is %s." +msgstr "Seu pagamento usando PayFast para este pedido totalizando %s está concluído. O número da transação é %s." + +#: includes/common/payment-gateways/payfast.php:278 +msgid "Your payment via PayFast for this order totaling %s is not yet complete. Here is the latest status:" +msgstr "Seu pagamento usando PayFast para este pedido totalizando %s ainda não foi concluído. Este é último o status do pedido:" + +#: includes/common/payment-gateways/payfast.php:124 +msgid "Your PayFast transaction has been canceled." +msgstr "Sua transação no PayFast foi cancelada." + +#: includes/common/payment-gateways/payfast.php:82 +#: includes/common/payment-gateways/payfast.php:83 +msgid "PayFast" +msgstr "PayFast" + +#: includes/common/payment-gateways/mollie.php:157 +msgid "API error: - \"%s\"" +msgstr "Erro de API: - \"%s\"" + +#: includes/common/payment-gateways/mollie.php:198 +msgid "The payment request is under process" +msgstr "A solicitação de pagamento está sendo processada" + +#: includes/common/payment-gateways/mollie.php:140 +msgid "Order: #" +msgstr "Pedido: #" + +#: includes/common/payment-gateways/mollie.php:116 +msgid "You will be redirected to the Mollie site to finalize your payment." +msgstr "Você será redirecionado para o site do Mollie para finalizar seu pagamento." + +#: includes/common/payment-gateways/mollie.php:73 +msgid "%sMollie%s provides a fully PCI Compliant and secure way to collect payments via iDeal, Credit Card, Bancontact / Mister Cash, SOFORT Banking, Overbooking, Bitcoin, PayPal, paysafecard and AcceptEmail." +msgstr "%sMollie%s fornece uma forma segura e totalmente em conformidade com PCI para receber pagamentos via iDeal, Cartões de Crédito, Bancontact / Mister Cash, Banco SOFORT, Overbooking, PayPal, PaySafeCard e AcceptEmail." + +#: includes/common/payment-gateways/mollie.php:53 +#: includes/common/payment-gateways/mollie.php:54 +#: includes/common/payment-gateways/mollie.php:195 +#: includes/common/payment-gateways/mollie.php:245 +msgid "Mollie" +msgstr "Mollie" + +#: includes/common/payment-gateways/mollie.php:50 +#: includes/common/payment-gateways/paymill.php:56 +#: includes/common/payment-gateways/paypal-chained-payments.php:72 +#: includes/common/payment-gateways/pin.php:60 +#: includes/common/payment-gateways/skrill.php:64 +#: includes/common/payment-gateways/stripe.php:92 +msgid "EUR - Euro" +msgstr "EUR - Euro" + +#: includes/common/payment-gateways/mijireh.php:306 +msgid "Access Key" +msgstr "Chave de Acess" + +#: includes/common/payment-gateways/mijireh.php:300 +msgid "You must login to the Mijireh.com dashboard to obtain the Access Key." +msgstr "Você precisa fazer login no painel do Mijireh.com para obter a Chave de Acesso." + +#: includes/common/payment-gateways/mijireh.php:299 +msgid "Credentials" +msgstr "Credenciais" + +#: includes/common/payment-gateways/mijireh.php:289 +msgid "Mijireh Checkout provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site." +msgstr "O Check-out Mijireh fornece uma forma segura e totalmente em conformidade com PCI para receber e transmitir dados de cartões de crédito ao seu gateway de pagamento, mantendo o controle sobre o design do seu site." + +#: includes/common/payment-gateways/mijireh.php:269 +msgid "Mijireh Error: " +msgstr "Erro do Mijireh:" + +#: includes/common/payment-gateways/mijireh.php:89 +msgid "You will be redirected to the Mijireh.com site to finalize your payment." +msgstr "Você será redirecionado ao site do Mijireh.com para finalizar seu pagamento." + +#: includes/common/payment-gateways/mijireh.php:87 +msgid "Your Mijireh transaction has been canceled." +msgstr "Sua transação no Mijireh foi cancelada." + +#: includes/common/payment-gateways/mijireh.php:42 +#: includes/common/payment-gateways/mijireh.php:43 +#: includes/common/payment-gateways/mijireh.php:324 +msgid "Mijireh" +msgstr "Mijireh" + +#: includes/common/payment-gateways/manual-payments.php:145 +msgid "These are the manual payment instructions to display on the payments screen." +msgstr "Estas são as instruções de pagamento manual a exibir na tela de pagamentos." + +#: includes/common/payment-gateways/free_orders.php:189 +msgid "This is the email text to send to those who have made free order checkouts. You should include your free order instructions / information here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "Este é o texto do e-mail para enivar àqueles que tiverem feito o check-out de pedidos gratuitos. Você deverá incluir as informações/instruções para o pedido gratuito. Isso irá sobrepudar o e-mail padrão do pedido. Estes códigos serão substituídos com os detalhes do pedido: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." + +#: includes/common/payment-gateways/free_orders.php:183 +msgid "This is the free order information to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "Esta é a informação para pedido gratuito a exibir na tela de confirmação do pedido. TOTAL será substituído com o total do pedido." + +#: includes/common/payment-gateways/free_orders.php:182 +msgid "Confirmation User Information" +msgstr "Informação do Usuário de Confirmação" + +#: includes/common/payment-gateways/free_orders.php:177 +msgid "This is the information to display on the payments screen." +msgstr "Esta é a informação a exibir na tela dos pagamentos." + +#: includes/common/payment-gateways/free_orders.php:163 +msgid "If enabled, all free orders will be automatically marked as paid." +msgstr "Se habilitado, todos os pedidos gratuitos serão marcados automaticamente como pagos." + +#: includes/common/payment-gateways/free_orders.php:159 +msgid "Payment Status" +msgstr "Status do Pagamento" + +#: includes/common/payment-gateways/free_orders.php:149 +msgid "This gateway is automatically activated if order totalling 0 and it can't be disabled" +msgstr "ESte gateways é ativado automaticamente se o total do pedido é 0 e não pode ser desabilitado" + +#: includes/common/payment-gateways/free_orders.php:35 +#: includes/common/payment-gateways/free_orders.php:36 +#: includes/common/payment-gateways/free_orders.php:89 +msgid "Free Order" +msgstr "Pedido Gratuito" + +#: includes/common/payment-gateways/free_orders.php:34 +#: includes/common/payment-gateways/free_orders.php:197 +msgid "Free Orders" +msgstr "Pedidos Gratuitos" + +#: includes/common/payment-gateways/eway31.php:515 +msgid "Sandbox API Credentials" +msgstr "Credenciais de Sandbox da API" + +#: includes/common/payment-gateways/eway31.php:266 +#: includes/common/payment-gateways/eway31.php:542 +msgid "eWay Rapid 3.1 Payments (beta)" +msgstr "Pagamentos eWay Rapid 3.1 (beta)" + +#: includes/common/payment-gateways/eway.php:403 +msgid "Hosted Payment Page Language" +msgstr "Linguagem da Página de Pagamento Hospedada" + +#: includes/common/payment-gateways/eway.php:373 +msgid "Note when testing in sandbox mode it will use the default eWay test API credentials. Also, please note that cart total needs to be a whole number (e.g. 10.00) in order to generate a successful transaction, otherwise the transaction will fail." +msgstr "Note que quando estiver testando o modo sandbox serão usadas as credenciais padrão de teste da API do eWay. Note também que o total do carrinho precisa ser um número inteiro (ex: 10,00) para gerar uma transação bem-sucedida, senão a transação irá falhar." + +#: includes/common/payment-gateways/eway.php:267 +msgid "You will be redirected to https://www.eway.com.au to finalize your payment." +msgstr "Você será redirecionado para https://www.eway.com.au para finalizar seu pagamento." + +#: includes/common/payment-gateways/class-mp-gateway-api.php:380 +msgid "You have chosen to checkout using %s. Please confirm your order details and click \"Submit Order\" when finished." +msgstr "Você escolheu fazer o check-out usando %s. Por favor confirme os detalhes do seu pedido e clique em \"Enviar Pedido\" quando terminar." + +#: includes/common/payment-gateways/class-mp-gateway-api.php:272 +#: includes/common/payment-gateways/paymill.php:131 +#: includes/common/payment-gateways/stripe.php:231 +msgid "Security Code " +msgstr "Código de Segurança" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Enter in MM/YYYY or MM/YY format" +msgstr "Insira no formato MM/YYYY ou MM/YY" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Expiration" +msgstr "Expiração" + +#: includes/common/payment-gateways/authorizenet-aim.php:321 +msgid "Delim Data" +msgstr "Dados Delimitadores" + +#: includes/common/payment-gateways/authorizenet-aim.php:307 +#: includes/common/payment-gateways/paypal-payflow.php:456 +msgid "This text will appear as the footer of the email receipt sent to the customer." +msgstr "Este texto irá aparecer como o rodapé do e-mail de recibo enviado ao cliente." + +#: includes/common/payment-gateways/authorizenet-aim.php:287 +#: includes/common/payment-gateways/paypal-payflow.php:440 +msgid "Email Customer (on success)" +msgstr "E-mail ao Cliente (em caso de sucesso)" + +#: includes/common/payment-gateways/authorizenet-aim.php:278 +msgid "Authorize.net default is \",\". Otherwise, get this from your credit card processor. If the transactions are not going through, this character is most likely wrong." +msgstr "O padrão do Authorize.net é \",\". De outra forma, obtenha isso da sua compania de cartão de crédito. Se as transações não estão acontecendo, provavelmente este caractere está errado." + +#: includes/common/payment-gateways/authorizenet-aim.php:277 +msgid "Delimeter Character" +msgstr "Caractere Delimitador" + +#: includes/common/payment-gateways/authorizenet-aim.php:193 +msgid "Held For Review" +msgstr "Mantido Para Revisão" + +#: includes/common/payment-gateways/_ideal.php:310 +#: includes/common/payment-gateways/payfast.php:314 +msgid "Test" +msgstr "Teste" + +#: includes/common/payment-gateways/_ideal.php:300 +#: includes/common/payment-gateways/pin.php:170 +#: includes/common/payment-gateways/stripe.php:272 +msgid "Secret Key" +msgstr "Chave Secreta" + +#: includes/common/payment-gateways/_ideal.php:283 +msgid "Select Your Bank" +msgstr "Selecione o Seu Banco" + +#: includes/common/payment-gateways/_ideal.php:97 +msgid "Your payment will be processed by the iDEAL network" +msgstr "Seu pagamento será processado pela rede iDEAL" + +#: includes/common/payment-gateways/_cubepoints.php:208 +msgid "These are the CubePoints to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "Estes são os CubePoints a exibir na tela de confirmação do pedido. TOTAL será substituído pelo total do pedido." + +#: includes/common/payment-gateways/_cubepoints.php:203 +msgid "These are the CubePoints instructions to display on the payments screen." +msgstr "Estas são as instruções do CubePoints a exibir na tela de pagamentos." + +#: includes/common/payment-gateways/_bitpay.php:266 +msgid "If enabled, all API calls will be made to https://test.bitpay.com." +msgstr "Se habilitado todas as chamadas da API serão feitos para https://test.bitpay.com." + +#: includes/common/payment-gateways/_bitpay.php:263 +msgid "Use Test Mode?" +msgstr "Usar Modo Teste?" + +#: includes/common/payment-gateways/_bitpay.php:259 +msgid "If checked, response fron bitpay will be stored in log file, keep it disabled unless required." +msgstr "Se selecionado, a resposta do BitPay será armazenada em um arquivo de log, mantenha isso desabilitado caso não seja necessário." + +#: includes/common/payment-gateways/_bitpay.php:256 +msgid "Enable Debug Log" +msgstr "Habilitar Log de Depuração" + +#: includes/common/payment-gateways/_bitpay.php:249 +msgid "Full Notifications" +msgstr "Notificaçoes Completas" + +#: includes/common/payment-gateways/_bitpay.php:231 +#: includes/common/payment-gateways/eway31.php:499 +#: includes/common/payment-gateways/eway31.php:526 +#: includes/common/payment-gateways/mollie.php:83 +#: includes/common/shipping-modules/mp-fedex.php:269 +msgid "API Key" +msgstr "Chave da API" + +#: includes/common/payment-gateways/_bitpay.php:222 +msgid "You can now accept a payment from any country on Earth, with no risk of fraud. To use Bitpay, you need to signup on Bitpay. \\n After completing the signup process, you can get api keys at Bitpay API key. You can read more about Bitpay at Bitpay API. \\n Bitpay requires SSL(https) for payment notifications to work." +msgstr "Você agora pode aceitar um pagamento de qualquer país da Terra, sem risco de fraude. Para usar o BitPay você precisa se inscrever em Bitpay. \\n Após completar o processo de inscrição você pode obter chaves da API em Chave de API BitPay. Você pode ler mais sobre o BitPay em Bitpay API. \\n O BitPay requer SSL (HTTPS) para as notificações de pagaemnto funcionarem." + +#: includes/common/payment-gateways/_bitpay.php:61 +msgid "You will be redirected to bitpay.com, for bitcoin payment. It is completely safe." +msgstr "Você será redirecionado para bitpay.com\"não-traduzir\">, para pagamentos em bitcoin. Isso é totalmente seguro." + +#: includes/common/payment-gateways/2checkout.php:346 +msgid "You must login to the 2Checkout vendor dashboard to obtain the seller ID and secret word. Instructions »" +msgstr "Você deve fazer login no painel de vendedor do 2Checkout para obter a ID de vendedor e a palavra secreta. Instruções »" + +#: includes/common/payment-gateways/2checkout.php:345 +#: includes/common/payment-gateways/authorizenet-aim.php:239 +#: includes/common/payment-gateways/paymill.php:168 +#: includes/common/payment-gateways/paypal-express.php:704 +#: includes/common/payment-gateways/simplify.php:80 +#: includes/common/payment-gateways/stripe.php:265 +#: includes/common/payment-gateways/wepay.php:158 +msgid "API Credentials" +msgstr "Credenciais da API" + +#: includes/common/payment-gateways/2checkout.php:325 +#: includes/common/payment-gateways/_bitpay.php:220 +#: includes/common/payment-gateways/_cubepoints.php:185 +#: includes/common/payment-gateways/_ideal.php:268 +#: includes/common/payment-gateways/_payway.php:255 +#: includes/common/payment-gateways/authorizenet-aim.php:219 +#: includes/common/payment-gateways/eway.php:352 +#: includes/common/payment-gateways/eway31.php:460 +#: includes/common/payment-gateways/free_orders.php:147 +#: includes/common/payment-gateways/manual-payments.php:126 +#: includes/common/payment-gateways/mijireh.php:287 +#: includes/common/payment-gateways/mollie.php:71 +#: includes/common/payment-gateways/paymill.php:149 +#: includes/common/payment-gateways/paypal-chained-payments.php:344 +#: includes/common/payment-gateways/paypal-payflow.php:376 +#: includes/common/payment-gateways/pin.php:145 +#: includes/common/payment-gateways/simplify.php:69 +#: includes/common/payment-gateways/skrill.php:121 +#: includes/common/payment-gateways/stripe.php:249 +#: includes/common/payment-gateways/wepay.php:119 +#: includes/common/shipping-modules/mp-fedex.php:243 +#: includes/common/shipping-modules/mp-flat-rate.php:63 +#: includes/common/shipping-modules/mp-pickup.php:140 +#: includes/common/shipping-modules/mp-table-rate.php:94 +#: includes/common/shipping-modules/mp-ups.php:122 +#: includes/common/shipping-modules/mp-usps.php:167 +#: includes/common/shipping-modules/mp-weight-rate.php:110 +msgid "%s Settings" +msgstr "%s Configurações" + +#: includes/common/payment-gateways/2checkout.php:136 +msgid "You will be redirected to the 2Checkout site to finalize your payment." +msgstr "Você será redirecionado para o site do 2Checkout para finalizar o seu pagamento." + +#: includes/common/helpers.php:169 includes/public/class-mp-checkout.php:1277 +msgid "Billing" +msgstr "Cobrança" + +#: includes/common/helpers.php:144 +msgid "FREE" +msgstr "GRÁTIS" + +#: includes/common/helpers.php:134 +msgid "Coupons:" +msgstr "Cupons:" + +#: includes/common/helpers.php:95 +msgid "Qty" +msgstr "Quantidade" + +#: includes/common/helpers.php:94 +msgid "Sku" +msgstr "SKU" + +#: includes/common/data.php:59 +msgid "Zip Code" +msgstr "CEP" + +#: includes/common/class-mp-taxes.php:336 +msgid "Standard Table" +msgstr "Tabela Padrão" + +#: includes/common/class-mp-product.php:2698 +msgid "Tweet" +msgstr "Tweet" + +#: includes/common/class-mp-product.php:2321 +msgid "Notification Preferences: %s" +msgstr "Preferências de Notificação: %s" + +#: includes/common/class-mp-product.php:2320 +msgid "Edit Product: %s" +msgstr "Editar Produto: %s" + +#: includes/common/class-mp-product.php:2318 +msgid "Link: %s

    " +msgstr "Link: %s

    " + +#: includes/common/class-mp-product.php:2317 +msgid "Current Inventory: %s" +msgstr "Inventário Atual: %s" + +#: includes/common/class-mp-product.php:2316 +msgid "Product: %s" +msgstr "Produto: %s" + +#: includes/common/class-mp-product.php:2314 +msgid "This message is being sent to notify you of low stock of a product in your online store according to your preferences.

    " +msgstr "Esta mensagem está sendo enviada para notificá-lo do estoque baixo de um produto na sua loja online, de acordo com as suas peferências.

    " + +#: includes/common/class-mp-product.php:1817 +msgid "" +msgstr "" + +#: includes/common/class-mp-product.php:1427 +#: includes/common/class-mp-product.php:1430 +msgid "(tax incl.)" +msgstr "(taxas incluídas)" + +#: includes/common/class-mp-product.php:1422 +#: includes/common/class-mp-product.php:1425 +msgid "(tax excl.)" +msgstr "(taxas excluídas)" + +#: includes/common/class-mp-product.php:1300 +#: includes/common/class-mp-product.php:1315 +msgid "%s each" +msgstr "%s cada" + +#: includes/common/class-mp-product.php:988 +msgid "Choose Options" +msgstr "Escolher Opções" + +#: includes/common/class-mp-product.php:526 +msgid "Choose a %s" +msgstr "Escolha um %s" + +#: includes/common/class-mp-product.php:284 +#: includes/common/class-mp-product.php:292 +#: includes/common/class-mp-product.php:615 +msgid "We're sorry, we only have %d of this item in stock right now." +msgstr "Desculpe, só temos %d unidades deste ítem no estoque no momento." + +#: includes/common/class-mp-order.php:1456 +msgid "Shipped: Track Shipment" +msgstr "Enviado: Rastrear Envio" + +#: includes/common/class-mp-order.php:1049 +msgid "Order Received" +msgstr "Pedido Recebido" + +#: includes/common/class-mp-order.php:1014 +msgid "In Process" +msgstr "Processando" + +#: includes/common/class-mp-order.php:969 +msgid "Order #" +msgstr "Pedido #" + +#: includes/common/class-mp-order.php:866 +msgid "Copy billing address to shipping address" +msgstr "Copiar o endereço de cobrança para o endereço de envio" + +#: includes/common/class-mp-order.php:822 +#: includes/public/class-mp-checkout.php:1314 +msgid "Special Instructions" +msgstr "Instruçoes Especiais" + +#: includes/common/class-mp-order.php:817 +#: includes/common/payment-gateways/stripe.php:335 +msgid "Email" +msgstr "E-mail" + +#: includes/common/class-mp-order.php:813 +#: includes/common/payment-gateways/stripe.php:341 +#: includes/public/class-mp-checkout.php:416 +msgid "Phone" +msgstr "Telefone" + +#: includes/common/class-mp-order.php:791 +#: includes/common/payment-gateways/stripe.php:337 +msgid "State" +msgstr "Estado" + +#: includes/common/class-mp-order.php:776 +msgid "Address 1" +msgstr "Endereço 1" + +#: includes/common/class-mp-order.php:766 +msgid "Last Name" +msgstr "Último Nome" + +#: includes/common/class-mp-order.php:762 +msgid "First Name" +msgstr "Primeiro Nome" + +#: includes/common/class-mp-installer.php:677 +msgid "MarketPress requires a database update to continue working correctly. Go to update page" +msgstr "O MarketPress requer uma atualização do banco de dados para continuar funcionando corretamente. Vá para a página de atualização" + +#: includes/common/class-mp-installer.php:657 +msgid "MarketPress performed a quick automatic update successfully!" +msgstr "O MarketPress fez uma atualização rápida com sucesso!" + +#: includes/common/class-mp-installer.php:653 +msgid "Perform Update" +msgstr "Fazer Atualização" + +#: includes/common/class-mp-installer.php:647 +msgid "Please update each subsite in your WordPress network where you have older version of the MarketPress plugin." +msgstr "Por favor atualize cada sub-site na sua rede WordPress onde você tenha uma versão antiga do plugin MarketPress." + +#: includes/common/class-mp-installer.php:641 +msgid "Depending on the amount of products you have, this update could take quite some time. Please keep this window open while the update completes. If you have products with multiple variations, the progress bar may move slower, please don't exit the window." +msgstr "Esta atualização pode demorar algum temo, dependendo da quantidade de produtos que você tiver. Por favor mantenha esta janela aberta até a atualização terminar. Se você tem produtos com múltiplas variações, a barra de progresso pode mover-se lentamente, por favor não saia desta janela." + +#: includes/common/class-mp-installer.php:632 +msgid "Product Metadata" +msgstr "Meta-Dados de Produto" + +#: includes/common/class-mp-installer.php:601 +msgid "MarketPress requires a database update to continue working correctly.
    Below you will find a list of items that require your attention." +msgstr "O MarketPress requer uma atualização do banco de dados para continuar funcionando corretamente.
    Abaixo você encontra uma lista dos ítens que requerem a sua atenção." + +#: includes/common/class-mp-installer.php:600 +msgid "Update MarketPress Data" +msgstr "Atualizar Dados do MarketPress" + +#: includes/common/class-mp-installer.php:530 +msgid "Update Data" +msgstr "Atualizar Dados" + +#: includes/common/class-mp-installer.php:67 +msgid "Complete!" +msgstr "Concluído!" + +#: includes/common/class-mp-installer.php:66 +msgid "Upgrading Database...Please Wait..." +msgstr "Fazendo Upgrade do Banco de Dados... Por Favor Aguarde..." + +#: includes/common/class-mp-installer.php:64 +msgid "An error occurred while updating. Please refresh this page and try again." +msgstr "Ocorreu um erro atualizando. Por favor atualize esta página e tente novamente." + +#: includes/common/class-mp-cart.php:2447 +msgid "Some items in your cart have fallen below the quantity you currently have in your cart. We have adjusted the quantity in your cart automatically." +msgstr "Alguns ítens no seu carrinho têm as quantidades abaixo do que você tem no carrinho. Ajustamos automaticamente para você as quantidades no seu carrinho." + +#: includes/common/class-mp-cart.php:2443 +msgid "Some items in your cart are no longer available. We have removed these items from your cart automatically." +msgstr "Alguns ítens no seu carrinho não estão mais disponíveis. Removemos automaticamente estes ítens do seu carrinho para você." + +#: includes/common/class-mp-cart.php:1566 +msgid "item" +msgstr "ítem" + +#: includes/common/class-mp-cart.php:1563 +#: includes/common/class-mp-cart.php:1568 +msgid "items" +msgstr "ítens" + +#: includes/common/class-mp-cart.php:1363 +msgid "Items/Products added to Cart will show here." +msgstr "Ítens/Produtos adicionados ao Carrinho irão aparecer aqui." + +#: includes/common/class-mp-cart.php:1362 +msgid "Your shopping cart is empty." +msgstr "Seu carrinho de compras está vazio." + +#: includes/common/class-mp-cart.php:1357 +msgid "View Cart" +msgstr "Ver o Carrinho" + +#: includes/common/class-mp-cart.php:1241 +#: includes/common/class-mp-cart.php:1298 +#: includes/public/class-mp-short-codes.php:159 +msgid "Adding..." +msgstr "Adicionando..." + +#: includes/common/class-mp-cart.php:1033 +msgid "Continue Shopping?" +msgstr "Continuar Comprando?" + +#: includes/common/class-mp-cart.php:961 +msgid "Secure Checkout
    Shopping is always safe and secure." +msgstr "Check-out Seguro
    Comprar é sempre seguro e garantido." + +#: includes/common/class-mp-cart.php:959 +msgid "You are about to submit your order!
    Please review your order details before continuing. You will be charged immediately upon clicking \"Submit Order\"." +msgstr "Você está para enviar seu pedido!
    Por favor revise os detalhes do seu pedido antes de continuar. Você será cobrado imediatamente ao clicar em \"Enviar Pedido\"." + +#: includes/common/class-mp-cart.php:956 +msgid "Continue »" +msgstr "Continuar »" + +#: includes/common/class-mp-cart.php:955 +msgid "Submit Order" +msgstr "Enviar Pedido" + +#: includes/common/class-mp-cart.php:818 +msgid "There are no items in your cart - go add some !" +msgstr "Não há nenhum ítem no seu carrinho - adicione alguns !" + +#: includes/common/class-mp-cart.php:816 +msgid "The cart is disabled." +msgstr "O carrinho está desabilitado." + +#: includes/common/class-mp-cart.php:735 +msgid "Estimated %s" +msgstr "%s Estimado" + +#: includes/common/class-mp-cart.php:717 +msgid "Estimated Shipping" +msgstr "Envio Estimado" + +#: includes/common/class-mp-cart.php:697 +msgid "Product Total" +msgstr "Total do Produto" + +#: includes/common/class-mp-cart.php:670 includes/common/class-mp-cart.php:672 +msgid "Estimated Total (%s, %s)" +msgstr "Total Estimado (%s, %s)" + +#: includes/common/class-mp-cart.php:668 +msgid "Estimated Total (%s)" +msgstr "Total Estimado (%s)" + +#: includes/common/class-mp-cart.php:666 includes/common/class-mp-cart.php:752 +msgid "Estimated Total" +msgstr "Total Estimado" + +#: includes/admin/widgets/product-list.php:247 +msgid "Show Thumbnail Placeholder image (if image is not set)" +msgstr "Exibir imagem de Posição da Miniatura (se a imagem não está definida)" + +#: includes/admin/widgets/cart.php:73 +msgid "Display product price" +msgstr "Exibir o preço do produto" + +#: includes/admin/widgets/cart.php:71 +msgid "Display product quantity" +msgstr "Exibir a quantidade do produto" + +#: includes/admin/widgets/cart.php:69 +msgid "Display product image" +msgstr "Exibir a imagem do produto" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:93 +msgid "General Shipping Settings" +msgstr "Configurações Gerais de Entrega" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:773 +msgid "If you are having conflicts with the lightbox library from your theme or another plugin you should uncheck this." +msgstr "Se você está tendo conflitos com a biblioteca do lightbox do seu tema ou algum outro plugin, você deve desativar isso." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:772 +msgid "Use Built-In Lightbox for Images?" +msgstr "Usar Lightbox Embutido para Imagens?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:762 +msgid "Disable Large Image Display?" +msgstr "Desabilitar Exibição de Imagem Grande?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:688 +msgid "Show Product Image?" +msgstr "Exibir Imagem do Produto?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:682 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:684 +msgid "Show Tags List?" +msgstr "Exibir Lista de Tags?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:676 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:678 +msgid "Show Categories List?" +msgstr "Exibir Lista de Categorias?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:671 +msgid "If enabled, description excerpt will be added above Add to cart." +msgstr "Se habilitado, o resumo descritivo será adicionado acima de Adicionar ao carrinho." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:669 +msgid "Show Excerpt?" +msgstr "Exibir Resumo?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:665 +msgid "If enabled, users will be able to choose how many of the product they want to purchase before adding to their cart. If not checked, quantity could be change later on the cart page." +msgstr "Se habilitado, os usuários poderão escolher quantos produtos desejam comprar antes de adicionar aos seus carrinhos. Se não selecionado, as quantidades podem ser modificadas depois na página do carrinho." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:663 +msgid "Show Quantity Field?" +msgstr "Exibir Campo de Quantidade?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:649 +msgid "Settings related to the display of individual product pages." +msgstr "Configurações relativas à exibição de páginas individuais de produto." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:648 +msgid "Product Page Settings" +msgstr "Configurações de Página de Produto" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:605 +msgid "Related Products Layout" +msgstr "Layout de Produtos Correlatos" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:573 +msgid "Show Related Products?" +msgstr "Exibir Produtos Correlatos?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:568 +msgid "Related Product Settings" +msgstr "Configurações de Produtos Correlatos" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:549 +msgid "Order Status Entries Per Page" +msgstr "Entradas de Status de Pedido Por Página" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:510 +msgid "Sort Products By" +msgstr "Ordenar Produtos Por" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:497 +msgid "Products Per Page" +msgstr "Produtos Por Página" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:492 +msgid "Paginate Products?" +msgstr "Paginar Produtos?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:478 +msgid "Excerpts Length" +msgstr "Tamanho do Resumo" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:473 +msgid "Show Excerpts?" +msgstr "Exibir Resumos?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:450 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:746 +msgid "Image Alignment" +msgstr "Alinhamento da Imagem" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:412 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:708 +msgid "Custom Image Size" +msgstr "Tamanho de Imagem Personalilzado" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:401 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:697 +msgid "Large - %s" +msgstr "Grande - %s" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:400 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:696 +msgid "Medium - %s" +msgstr "Médio - %s" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:399 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:695 +msgid "Thumbnail - %s" +msgstr "Miniatura - %s" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:397 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:693 +msgid "Image Size" +msgstr "Tamanho da Imagem" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:386 +msgid "Select default placeholder image thumbnail when product image is not available (if empty, plugin's built-in image will be used)" +msgstr "Selecione a miniatura padrão da imagem de posição quando a imagem do produto não está disponível (se vazia, será usada a imagem padrão do plugin)" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:380 +msgid "Show default product placeholder thumbnail when product image is not available?" +msgstr "Exibir a miniatura do posicionador do produto quando a imagem de produto não está disponível?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:374 +msgid "Show Product Thumbnail?" +msgstr "Exibir Miniatura do Produto?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:369 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:658 +msgid "Redirect to cart page for immediate checkout" +msgstr "Redireciona à página do carrinho para check-out imediato" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:368 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:657 +msgid "Stay on current product page" +msgstr "Fica na página atual de produto" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:366 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:655 +msgid "MarketPress supports two \"flows\" for adding products to the shopping cart. After adding a product to their cart, two things can happen:" +msgstr "O MarketPress suporta dois \"fluxos\" para adicionar produtos ao carrinho de compras. Após adicionar um produto ao carrinho, duas coisas podem acontecer:" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:365 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:654 +msgid "Add To Cart Action" +msgstr "Ação de Adicionar ao Carrinho" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:355 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:628 +msgid "Four" +msgstr "Quatro" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:354 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:627 +msgid "Three" +msgstr "Três" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:353 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:626 +msgid "Two" +msgstr "Dois" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:625 +msgid "One" +msgstr "Um" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:349 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:622 +msgid "Set the number of products that show up in a grid row to best fit your theme" +msgstr "Defina o número de produtos que serão exibidos por linha de grade para melhor se adaptar ao seu tema" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:348 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:621 +msgid "How many products per row?" +msgstr "Quantos produtos por linha?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:342 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:609 +msgid "Display as grid" +msgstr "Exibir em grade" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:341 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:608 +msgid "Display as list" +msgstr "Exibir em lista" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:339 +msgid "Product Layout" +msgstr "Layout do Produto" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:334 +msgid "Settings related to the display of product lists/grids." +msgstr "Configurações relativas à exibição de listas/grades de produtos." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:333 +msgid "Product List/Grid Settings" +msgstr "Configurações de Lista/Grade de Produto" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:314 +msgid "Show Twitter Button" +msgstr "Exibir Botão do Twitter" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:309 +msgid "Twitter" +msgstr "Twitter" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:303 +msgid "Show Share Button" +msgstr "Exibir Botão de Compartilhamento" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:297 +msgid "Recommend" +msgstr "Recomendado" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:296 +msgid "Like" +msgstr "Curtir" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:294 +msgid "Action" +msgstr "Ação" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:283 +msgid "Show Facebook Like Button" +msgstr "Exibir Botão Curtir do Facebook" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:278 +msgid "Facebook" +msgstr "Facebook" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:257 +msgid "Show \"Pin It\" Button" +msgstr "Exibir Botão \"Pin It\"" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:252 +msgid "Pinterest" +msgstr "Pinterest" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:246 +msgid "Social Settings" +msgstr "Configurações Sociais" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:193 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:202 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:211 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:220 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:229 +#: includes/multisite/class-mp-admin-multisite.php:532 +#: includes/multisite/class-mp-admin-multisite.php:541 +#: includes/multisite/class-mp-admin-multisite.php:550 +msgid "Choose a Page" +msgstr "Escolha uma Página" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:191 +msgid "This page will be used as the root for your store." +msgstr "Esta página será usada como a raiz para a sua loja." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:168 +#: includes/multisite/class-mp-admin-multisite.php:586 +msgid "Create Page" +msgstr "Criar Página" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "uncropped" +msgstr "não-recortada" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "cropped" +msgstr "recortada" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:87 +#: includes/multisite/class-mp-admin-multisite.php:121 +#: includes/multisite/class-mp-admin-multisite.php:620 +msgid "An error occurred while creating the store page. Please try again." +msgstr "Ocorreu um erro criando a página da loja. Por favor tente novamente." + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:66 +msgid "Choose the gateway(s) that you would like to be available for checkout." +msgstr "Escolha o(s) gateway(s) que deseja que estejam disponíveis no check-out." + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:65 +msgid "Enabled Gateways" +msgstr "Gateways Habilitados" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:78 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:146 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:179 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:213 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:274 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:307 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:341 +msgid "Text" +msgstr "Texto" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:71 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:139 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:172 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:206 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:267 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:300 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:334 +msgid "Subject" +msgstr "Assunto" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:52 +msgid "Notification Email" +msgstr "E-mail de Notificação" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:510 +msgid "Enabling this option will display label `excl. tax` or `incl. tax` after price" +msgstr "Habilitando esta opção irá exibir a etiqueta 'excluir taxas' ou 'incluir taxas' após o preço" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:509 +msgid "Display tax label?" +msgstr "Exibir etiqueta de taxa?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:504 +msgid "Enabling this option will show Price + Tax, eg. if your price is 100 and your tax 20, your price will be 120" +msgstr "Habilitando esta opção irá exibir o Preço + Taxas, por exemplo se o preço é 100 e a taxa 20, o preço total será 120" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:416 +#: includes/multisite/class-mp-admin-multisite.php:234 +msgid "Price Format" +msgstr "Formato do Preço" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:366 +msgid "Enabling this field will display a textbox on the shipping checkout page for users to enter special instructions for their order. Useful for product personalization, etc." +msgstr "Habilitando este campo irá exibir um box de texto na página de check-out de envio para os usuários informarem instruções especiais para os pedidos. Útil para a personalização de produtos, etc." + +#: includes/admin/store-settings/class-mp-store-settings-general.php:365 +msgid "Show Special Instructions Field?" +msgstr "Exibir Campo de Instruções Especiais?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:360 +msgid "Universal" +msgstr "Universal" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:359 +msgid "Old" +msgstr "Antigo" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1167 +#: includes/admin/store-settings/class-mp-store-settings-general.php:358 +msgid "New" +msgstr "Novo" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:353 +msgid "If you already use Google Analytics for your website, you can track detailed ecommerce information by enabling this setting. Choose whether you are using the new asynchronous or old tracking code. Before Google Analytics can report ecommerce activity for your website, you must enable ecommerce tracking on the profile settings page for your website. Also keep in mind that some gateways do not reliably show the receipt page, so tracking may not be accurate in those cases. It is recommended to use the PayPal gateway for the most accurate data. More information »" +msgstr "Se você já usa o Google Analytics no seu website, você pode rastrear informações detalhadas de e-commerce habilitando esta opção. Escolha se deseja usar o código novo assíncrono de rastreamento ou o antigo. Antes que o Google Analytics possa reportar a atividade de e-commerce do seu website, você precisa habilitar o rastreamento de e-commerce na página de configurações do perfil do seu website. Também tenha em mente que alguns gateways podem não ser muito precisos nestes casos. É recomendado o uso do gateway PayPal para dados mais precisos. Mais informações »" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:347 +msgid "Do you want to display the product price on floating Mini Cart." +msgstr "Exibir o preço do produto no Mini-Carrinho flutuante" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:346 +msgid "Show product price on Mini Cart?" +msgstr "Exibir preço do produto no Mini-Carrinho?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:340 +msgid "Do you want to display the product quantity on floating Mini Cart." +msgstr "Se deseja exibir a quantidade do produto no Mini-Carrinho flutuante." + +#: includes/admin/store-settings/class-mp-store-settings-general.php:339 +msgid "Show product quantity on Mini Cart?" +msgstr "Exibir quantidade do produto no Mini-Carrinho?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:333 +msgid "Do you want to display the product image on floating Mini Cart." +msgstr "Se deseja exibir a imagem do produto no Mini-Carrinho flutuante." + +#: includes/admin/store-settings/class-mp-store-settings-general.php:332 +msgid "Show product image on Mini Cart?" +msgstr "Exibir imagem do produto no Mini-Carrinho?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:327 +msgid "This option hide floating Mini Cart in top right corner." +msgstr "Esta opção oculta o Mini-Carrinho flutuante no canto superior direito." + +#: includes/admin/store-settings/class-mp-store-settings-general.php:326 +msgid "Disable Mini Cart?" +msgstr "Desabilitar o Mini-Carrinho?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:316 +msgid "If unchecked your Orders admin page will be hidden" +msgstr "Se não for selecionado, sua página de administração de Pedidos será oculta" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:315 +msgid "Show admin Orders page?" +msgstr "Exibir página de administração de Pedidos?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:309 +msgid "Disable Cart?" +msgstr "Desabilitar o Carrinho?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:303 +msgid "Force Login?" +msgstr "Forçar Login?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:297 +msgid "Hide Out of Stock Products?" +msgstr "Ocultar Produtos Fora de Estoque?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:555 +msgid "This will prevent multiples of the same downloadable product form being added to the cart." +msgstr "Isso impede que os mesmos produtos digitais sejam adicionados múltiplas vezes ao carrinho." + +#: includes/admin/store-settings/class-mp-store-settings-general.php:554 +msgid "Limit Digital Products Per-order?" +msgstr "Limitar Produtos Digitais Por Pedido?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:268 +msgid "If you're having issues downloading large files and have worked with your hosting provider to increase your memory limits, try enabling this - just keep in mind, it's not as secure!" +msgstr "Se você está tendo problemas fazendo o download de arquivos grande e já verificou com seu provedor de hospedagem como aumentar seus limites de memória, tente habilitar isso - apenas tenha em mente que não é tão seguro!" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:267 +msgid "Use Alternative Download Method?" +msgstr "Usar Método Alternativo de Download?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:252 +msgid "Download Settings" +msgstr "Configurações de Download" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:230 +msgid "Change product post type" +msgstr "Modificar tipo de post de produto" + +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:51 +msgid "%s Capabilities" +msgstr "Capacidades de %s" + +#: includes/admin/store-settings/class-mp-store-settings-addons.php:47 +msgid "Store Settings: Add Ons: %s" +msgstr "Armazenar Definições: Add-Ons: %s" + +#: includes/admin/class-mp-store-settings-admin.php:254 +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:56 +msgid "Capabilities" +msgstr "Capacidades" + +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Edit Product Attribute %s" +msgstr "Editar Atributo de Produto de %s" + +#: includes/admin/class-mp-store-settings-admin.php:246 +msgid "Exporters" +msgstr "Exportadores" + +#: includes/admin/class-mp-store-settings-admin.php:238 +msgid "Short Codes" +msgstr "Shortcodes" + +#: includes/admin/class-mp-store-settings-admin.php:207 +msgid "An appropriate message for key \"%s\" could not be found." +msgstr "Uma mensagem apropriada para a chave \"%s\" não foi encontrada." + +#: includes/admin/class-mp-store-settings-admin.php:204 +msgid "Product attribute updated successfully." +msgstr "Atributo de produto atualizado com sucesso." + +#: includes/admin/class-mp-store-settings-admin.php:203 +msgid "Product attribute added successfully." +msgstr "Atributo de produto adicionado com sucesso." + +#: includes/admin/class-mp-store-settings-admin.php:123 +msgid "Add Ons" +msgstr "Add-Ons" + +#: includes/admin/class-mp-store-settings-admin.php:123 +#: includes/admin/store-settings/class-mp-store-settings-addons.php:121 +msgid "Store Settings: Add Ons" +msgstr "Configurações da Loja: Add-Ons" + +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "Store Settings: Capabilities" +msgstr "Configurações da Loja: Capacidades" + +#: includes/admin/class-mp-store-settings-admin.php:118 +msgid "Store Settings: Product Tags" +msgstr "Configurações da Loja: Tags de Produto" + +#: includes/admin/class-mp-store-settings-admin.php:117 +msgid "Store Settings: Product Categories" +msgstr "Configurações da Loja: Categorias de Produto" + +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Store Settings: Product Attributes" +msgstr "Configurações da Loja: Atributos de Produto" + +#: includes/admin/class-mp-store-settings-admin.php:115 +msgid "Store Settings: Payments" +msgstr "Configurações da Loja: Pagamentos" + +#: includes/admin/class-mp-store-settings-admin.php:114 +msgid "Store Settings: Shipping" +msgstr "Configurações da Loja: Envio" + +#: includes/admin/class-mp-store-settings-admin.php:113 +#: includes/admin/class-mp-store-settings-admin.php:226 +msgid "Notifications" +msgstr "Notificações" + +#: includes/admin/class-mp-store-settings-admin.php:113 +msgid "Store Settings: Notifications" +msgstr "Configurações da Loja: Notificações" + +#: includes/admin/class-mp-store-settings-admin.php:112 +msgid "Store Settings: Presentation" +msgstr "Configurações da Loja: Apresentação" + +#: includes/admin/class-mp-store-settings-admin.php:111 +msgid "Store Settings: General" +msgstr "Configurações da Loja: Geral" + +#: includes/admin/class-mp-shortcode-builder.php:1489 +msgid "Select a Product" +msgstr "Selecione um Produto" + +#: includes/admin/class-mp-shortcode-builder.php:1447 +msgid "Reset to Defaults" +msgstr "Redefinir para os Padrões" + +#: includes/admin/class-mp-shortcode-builder.php:1446 +msgid "Insert Short Code" +msgstr "Inserir Shortcode" + +#: includes/admin/class-mp-shortcode-builder.php:1202 +#: includes/admin/class-mp-shortcode-builder.php:1227 +#: includes/admin/class-mp-shortcode-builder.php:1252 +msgid "The text to show in the link." +msgstr "O texto a ser exibido no link." + +#: includes/admin/class-mp-shortcode-builder.php:1196 +#: includes/admin/class-mp-shortcode-builder.php:1221 +#: includes/admin/class-mp-shortcode-builder.php:1246 +msgid "Whether to return a clickable link or url." +msgstr "Quando retornar um link ou URL clicável." + +#: includes/admin/class-mp-shortcode-builder.php:1177 +msgid "Whether to display the cart only on store pages or not." +msgstr "Exibir ou não o carrinho apenas nas páginas da loja." + +#: includes/admin/class-mp-shortcode-builder.php:1171 +msgid "Whether to show or hide the product price." +msgstr "Exibir ou ocultar o preço do produto." + +#: includes/admin/class-mp-shortcode-builder.php:1165 +msgid "Whether to show or hide the product quantity." +msgstr "Exibir ou ocultar a quantidade do produto." + +#: includes/admin/class-mp-shortcode-builder.php:1159 +msgid "Whether to show or hide the product image." +msgstr "Exibir ou ocultar a imagem do produto." + +#: includes/admin/class-mp-shortcode-builder.php:1153 +msgid "The text displayed before the cart." +msgstr "Texto exibido antes do carrinho." + +#: includes/admin/class-mp-shortcode-builder.php:1147 +msgid "The title of the cart." +msgstr "Título do carrinho." + +#: includes/admin/class-mp-shortcode-builder.php:1058 +#: includes/admin/class-mp-shortcode-builder.php:1121 +msgid "A label to prepend to the price." +msgstr "Etiqueta a adicionar ao preço." + +#: includes/admin/class-mp-shortcode-builder.php:1032 +#: includes/admin/class-mp-shortcode-builder.php:1127 +msgid "What context for display." +msgstr "Qual o contexto de exibição." + +#: includes/admin/class-mp-shortcode-builder.php:1004 +msgid "Set the alignment of the image." +msgstr "Defina o alinhamento da imagem." + +#: includes/admin/class-mp-shortcode-builder.php:998 +msgid "Set a custom pixel width/height. If omitted defaults to the size set by \"context\"." +msgstr "Defina uma largura/altura personalizada em pixels. Se omitidas, o padrão para altura é definido pelo \"contexto\"." + +#: includes/admin/class-mp-shortcode-builder.php:993 +msgid "Widget" +msgstr "Widget" + +#: includes/admin/class-mp-shortcode-builder.php:988 +msgid "What context for preset size options." +msgstr "Opções de contexto para tamanhos pré-definidos." + +#: includes/admin/class-mp-shortcode-builder.php:982 +#: includes/admin/class-mp-shortcode-builder.php:1026 +#: includes/admin/class-mp-shortcode-builder.php:1052 +#: includes/admin/class-mp-shortcode-builder.php:1077 +#: includes/admin/class-mp-shortcode-builder.php:1096 +#: includes/admin/class-mp-shortcode-builder.php:1115 +msgid "The ID of the product." +msgstr "ID do produto." + +#: includes/admin/class-mp-shortcode-builder.php:963 +msgid "Whether to display the product meta (e.g. price, buy button)." +msgstr "Quando exibir o meta do produto (ex: preço, botão comprar)." + +#: includes/admin/class-mp-shortcode-builder.php:738 +#: includes/admin/class-mp-shortcode-builder.php:905 +#: includes/admin/class-mp-shortcode-builder.php:958 +#: includes/admin/class-mp-shortcode-builder.php:992 +#: includes/admin/class-mp-shortcode-builder.php:1035 +#: includes/admin/class-mp-shortcode-builder.php:1130 +#: includes/admin/class-mp-shortcode-builder.php:1349 +msgid "List" +msgstr "Lista" + +#: includes/admin/class-mp-shortcode-builder.php:957 +#: includes/admin/class-mp-shortcode-builder.php:991 +#: includes/admin/class-mp-shortcode-builder.php:1034 +#: includes/admin/class-mp-shortcode-builder.php:1129 +msgid "Single" +msgstr "Único" + +#: includes/admin/class-mp-shortcode-builder.php:953 +msgid "Whether and what context of image size to display." +msgstr "Quando e qual contexto de tamanho de imagem exibir." + +#: includes/admin/class-mp-shortcode-builder.php:948 +msgid "Full" +msgstr "Completo" + +#: includes/admin/class-mp-shortcode-builder.php:943 +msgid "Whether and what type of content to display." +msgstr "Quando e qual tipo de conteúdo exibir." + +#: includes/admin/class-mp-shortcode-builder.php:937 +msgid "Whether to display the product title." +msgstr "Quando exibir o título do produto." + +#: includes/admin/class-mp-shortcode-builder.php:931 +msgid "The ID of the product to display." +msgstr "O ID do produto a exibir." + +#: includes/admin/class-mp-shortcode-builder.php:747 +#: includes/admin/class-mp-shortcode-builder.php:914 +msgid "Hide" +msgstr "Ocultar" + +#: includes/admin/class-mp-shortcode-builder.php:746 +#: includes/admin/class-mp-shortcode-builder.php:913 +msgid "Show" +msgstr "Exibir" + +#: includes/admin/class-mp-shortcode-builder.php:744 +#: includes/admin/class-mp-shortcode-builder.php:911 +msgid "Whether or not to show the product filters." +msgstr "Exibir ou não os filtros de produto." + +#: includes/admin/class-mp-shortcode-builder.php:724 +#: includes/admin/class-mp-shortcode-builder.php:891 +#: includes/admin/class-mp-shortcode-builder.php:1335 +msgid "Limits list to a specific product tag." +msgstr "Limita a lista a uma tag específica de produto." + +#: includes/admin/class-mp-shortcode-builder.php:713 +#: includes/admin/class-mp-shortcode-builder.php:880 +#: includes/admin/class-mp-shortcode-builder.php:1324 +msgid "Limits list to a specific product category." +msgstr "Limita a lista a uma categoria específica de produto." + +#: includes/admin/class-mp-shortcode-builder.php:706 +#: includes/admin/class-mp-shortcode-builder.php:873 +#: includes/admin/class-mp-shortcode-builder.php:1317 +msgid "Direction to order products by." +msgstr "Direção para ordenar os produtos." + +#: includes/admin/class-mp-shortcode-builder.php:684 +#: includes/admin/class-mp-shortcode-builder.php:851 +#: includes/admin/class-mp-shortcode-builder.php:1295 +msgid "What field to order products by." +msgstr "Qual campo usar para ordenar os produtos." + +#: includes/admin/class-mp-shortcode-builder.php:678 +#: includes/admin/class-mp-shortcode-builder.php:845 +#: includes/admin/class-mp-shortcode-builder.php:1283 +msgid "How many products to display in the product list if \"paginate\" is set to true." +msgstr "Quantos produtos exibir na lista de produtos se \"paginar\" for definido para verdadeiro." + +#: includes/admin/class-mp-shortcode-builder.php:672 +#: includes/admin/class-mp-shortcode-builder.php:839 +#: includes/admin/class-mp-shortcode-builder.php:1277 +msgid "The page number to display in the product list if \"paginate\" is set to true." +msgstr "O número de página a exibir na lista de produtos se \"paginar\" for definido para verdadeiro." + +#: includes/admin/class-mp-shortcode-builder.php:666 +#: includes/admin/class-mp-shortcode-builder.php:833 +#: includes/admin/class-mp-shortcode-builder.php:1271 +msgid "Whether to paginate the product list. This is useful to only show a subset." +msgstr "Quando paginar a lista de produtos. Isso é útil para exibir apenas um sub-set." + +#: includes/admin/class-mp-shortcode-builder.php:808 +msgid "How many related items to show." +msgstr "Quantos ítens correlatos a exibir." + +#: includes/admin/class-mp-shortcode-builder.php:790 +msgid "How to relate the products" +msgstr "Como relacionar os produtos" + +#: includes/admin/class-mp-shortcode-builder.php:784 +msgid "The product to show related items for." +msgstr "O produto para exibir os ítens correlatos." + +#: includes/admin/class-mp-shortcode-builder.php:765 +msgid "The maximum number of products to display" +msgstr "O número máximo de produtos a exibir." + +#: includes/admin/class-mp-shortcode-builder.php:647 +msgid "Comma separated list of tags (term_id) to include. For example, include=5,27 means tags that have the term_id 5 or 27 will be the only tags displayed. Defaults to include everything." +msgstr "Lista de tags separadas por vírgulas (term_id) a incluir. Por exemplo, include=5,27 significa que as tags que tenham o term_id 5 ou 27 serão as únicas exibidas. O padrão iclui tudo." + +#: includes/admin/class-mp-shortcode-builder.php:641 +msgid "Comma separated list of tags (term_id) to exclude. For example, exclude=5,27 means tags that have the term_id 5 or 27 will NOT be displayed. Defaults to exclude nothing." +msgstr "Lista de tags separadas por vírgulas (term_id) a excluir. Por exemplo, exclude=5,27 significa que as tags que tenham o term_id 5 ou 27 NÃO serão exibidas. O padrão não exclui nada." + +#: includes/admin/class-mp-shortcode-builder.php:633 +#: includes/admin/class-mp-shortcode-builder.php:1420 +msgid "Sort order." +msgstr "Ordem." + +#: includes/admin/class-mp-shortcode-builder.php:629 +#: includes/admin/class-mp-shortcode-builder.php:1416 +msgid "Count" +msgstr "Contagem" + +#: includes/admin/class-mp-shortcode-builder.php:626 +#: includes/admin/class-mp-shortcode-builder.php:1413 +msgid "Order of the tags." +msgstr "Ordem das tags." + +#: includes/admin/class-mp-shortcode-builder.php:620 +msgid "The text/space between tags)" +msgstr "O texto/espaço entre as tags" + +#: includes/admin/class-mp-shortcode-builder.php:616 +msgid "UL with a class of \"wp-tag-cloud\"" +msgstr "UL com uma classe de \"wp-tag-cloud\"" + +#: includes/admin/class-mp-shortcode-builder.php:615 +msgid "separated by whitespace defined by \"separator\" parameter." +msgstr "separados por espaços em branco definidos como parâmetro \"separador\"." + +#: includes/admin/class-mp-shortcode-builder.php:613 +msgid "Format of the cloud display." +msgstr "Formato da exibição da nuvem." + +#: includes/admin/class-mp-shortcode-builder.php:607 +msgid "The number of actual tags to display in the cloud. (Use \"0\" to display all tags.)" +msgstr "O número de tags a exibir na nuvem. (Use \"0\" para exibir todas as tags)." + +#: includes/admin/class-mp-shortcode-builder.php:601 +msgid "Unit of measure as pertains to the smallest and largest values. This can be any CSS length value, e.g. pt, px, em, %." +msgstr "Unidade de medida dos valores de menor e maior. Isso pode ser grupo de valores CSS. Por exemplo: pt, px, em, %." + +#: includes/admin/class-mp-shortcode-builder.php:595 +msgid "The text size of the tag with the largest count value (units given by unit parameter)." +msgstr "O tamanho do texto da tag com o valor maior (valores dados pelo parâmetro unidade)." + +#: includes/admin/class-mp-shortcode-builder.php:589 +msgid "The text size of the tag with the smallest count value (units given by unit parameter)." +msgstr "O tamanho do texto da tag com o menor valor (unidades dadas pelo parâmetro unidade)." + +#: includes/admin/class-mp-shortcode-builder.php:570 +msgid "The \"tabindex\" attribute value for select element. " +msgstr "O avlor do atributo \"tabindex\" para o elemento selecionado." + +#: includes/admin/class-mp-shortcode-builder.php:564 +msgid "The \"name\" attribute value for select element. " +msgstr "O valor do atributo \"nome\" para o elemento selecionado." + +#: includes/admin/class-mp-shortcode-builder.php:558 +msgid "The \"id\" attribute value for select element. " +msgstr "O valor do atributo \"id\" para o elemento selecionado." + +#: includes/admin/class-mp-shortcode-builder.php:552 +msgid "Which category ID is selected." +msgstr "Qual ID de Categoria é selecionado." + +#: includes/admin/class-mp-shortcode-builder.php:540 +msgid "The max depth. This is ignored unless hierarchical is set to true." +msgstr "A profundidade máxima. Isso é ignorado a não ser que hierárquico seja definido para true." + +#: includes/admin/class-mp-shortcode-builder.php:536 +#: includes/multisite/template-functions.php:816 +msgid "No Categories" +msgstr "Nenhuma Categoria" + +#: includes/admin/class-mp-shortcode-builder.php:414 +#: includes/admin/class-mp-shortcode-builder.php:546 +msgid "Calculates link or post counts by including items from child categories. If show_counts and hierarchical are true this is automatically set to true." +msgstr "Calcula as contagem de link ou post incluindo ítens das categorias-filhas. Se show_counts e hierárquico forem true isso é definido automaticamente para true." + +#: includes/admin/class-mp-shortcode-builder.php:409 +msgid "Value of n (some number) specifies the depth (or level) to descend in displaying Categories." +msgstr "Valor de n (algum número) especifica a profundidade (ou nível) a descer nas Categorias exibidas." + +#: includes/admin/class-mp-shortcode-builder.php:408 +msgid "Show only top level Categories." +msgstr "Exibir apenas Categorias do nível superior." + +#: includes/admin/class-mp-shortcode-builder.php:407 +msgid "All Categories displayed in flat (no indent) form (overrides hierarchical)." +msgstr "Todas as Categorias exibidas na forma plana (sem indentação, sobrepuja hierárquico)." + +#: includes/admin/class-mp-shortcode-builder.php:406 +msgid "All Categories and child Categories (Default)." +msgstr "Todas as Categorias e Categorias-Filhas (Padrão)." + +#: includes/admin/class-mp-shortcode-builder.php:402 +msgid "This parameter controls how many levels in the hierarchy of Categories are to be included in the list of Categories. NOTE: The \"hierarchical\" argument, which is disabled by default, will override the depth argument, unless it is true. When the argument is false, it will display all of the categories. When it is enabled it will use the value in the \"depth\" argument." +msgstr "Este parâmetro controla quantos níveis na hierarquia de Categorias serão incluídos na lista de Categorias. NOTA: O argumento \"hierárquico\", que é desabilitado por padrão, irá sobrepujar o argumento profundidade, a não ser que seja true. Quando o argumento é false, irá exibir todas as categorias. Quando está habilitado ele irá usar o valor do argumento \"profundidade\"." + +#: includes/admin/class-mp-shortcode-builder.php:396 +#: includes/admin/class-mp-shortcode-builder.php:1394 +msgid "Sets the number of Categories to display. This causes the SQL LIMIT value to be defined." +msgstr "Define o número de Categorias a exibir. Isso vai fazer que o valor SQL LIMIT seja definido." + +#: includes/admin/class-mp-shortcode-builder.php:390 +#: includes/admin/class-mp-shortcode-builder.php:534 +msgid "Set the text to show when no categories are listed." +msgstr "Defina o texto a exibir quando nenhuma categoria for listada." + +#: includes/admin/class-mp-shortcode-builder.php:384 +msgid "Set the title and style of the outer list item. If present but empty, the outer list item will not be displayed." +msgstr "Defina o título e o estilo do ítem externo da lista. Se presente mas vazio, o ítem externo da lista não será exibido." + +#: includes/admin/class-mp-shortcode-builder.php:378 +#: includes/admin/class-mp-shortcode-builder.php:528 +msgid "Display sub-categories as inner list items (below the parent list item) or inline." +msgstr "Exibir sub-categorias como ítens da lista interna (abaixo do ítem-pai da lista) ou inline." + +#: includes/admin/class-mp-shortcode-builder.php:368 +#: includes/admin/class-mp-shortcode-builder.php:511 +msgid "Exclude category-tree from the results. The parameter include must be empty. If the hierarchical parameter is true, then use exclude instead of exclude_tree." +msgstr "Exclui a árvore de categorias dos resultados. O parâmetro incluir deve estar vazio. Se o parêmetro hierárquico é true, então use excluir ao invés de exclude_tree." + +#: includes/admin/class-mp-shortcode-builder.php:354 +msgid "Only include these categories." +msgstr "Incluir somente estas categorias." + +#: includes/admin/class-mp-shortcode-builder.php:340 +#: includes/admin/class-mp-shortcode-builder.php:356 +#: includes/admin/class-mp-shortcode-builder.php:370 +#: includes/admin/class-mp-shortcode-builder.php:496 +#: includes/admin/class-mp-shortcode-builder.php:513 +msgid "Select Categories" +msgstr "Selecione Categorias" + +#: includes/admin/class-mp-shortcode-builder.php:338 +#: includes/admin/class-mp-shortcode-builder.php:494 +msgid "Exclude one or more categories from the results. The parameter include must be empty." +msgstr "Exclui uma ou mais categorias dos resultados. O parâmetro include deve estar vazio." + +#: includes/admin/class-mp-shortcode-builder.php:332 +msgid "Set a URI for an image (usually an rss feed icon) to act as a link to each categories' rss-2 feed. This parameter overrides the feed parameter. There is no default for this parameter." +msgstr "Defina a URL de uma imagem (normalmente um ícone de Feed RSS) para agira como link para o Feed RSS-2 de cada categoria. Este parâmetro sobrepuja o parâmetro feed. Não há padrão para este parâmetro." + +#: includes/admin/class-mp-shortcode-builder.php:320 +msgid "Display a link to each category's rss-2 feed and set the link text to display. The default is no text and no feed displayed." +msgstr "Exibe um link para o Feed RSS-2 de cada categoria, e define o texto do link a exibir. O padrão é nenhum texto e nenhum Feed exibido." + +#: includes/admin/class-mp-shortcode-builder.php:313 +#: includes/admin/class-mp-shortcode-builder.php:487 +msgid "Any" +msgstr "Qualquer" + +#: includes/admin/class-mp-shortcode-builder.php:307 +#: includes/admin/class-mp-shortcode-builder.php:481 +msgid "Only display categories that are children of the category identified by this parameter." +msgstr "Exibe apenas categorias-filhas da categoria identificada por este parâmetro." + +#: includes/admin/class-mp-shortcode-builder.php:301 +msgid "Sets whether a category's description is inserted into the title attribute of the links created (i.e. <a title=\"<em>Category Description</em>\" href=\"...)." +msgstr "Define quando a descrição de uma categoria é inserida no atributo do título dos links criados (ex: <a title=\"<em>Descrição da Categoria</em>\" href=\"...)." + +#: includes/admin/class-mp-shortcode-builder.php:295 +#: includes/admin/class-mp-shortcode-builder.php:475 +msgid "Toggles the display of categories with no posts." +msgstr "Alterna a exibição de categorias sem nenhum post." + +#: includes/admin/class-mp-shortcode-builder.php:289 +#: includes/admin/class-mp-shortcode-builder.php:469 +#: includes/admin/class-mp-shortcode-builder.php:1388 +msgid "Toggles the display of the current count of posts in each category." +msgstr "Alterna a exibição da contagem atual de posts em cada categoria." + +#: includes/admin/class-mp-shortcode-builder.php:279 +msgid "Style to display the categories list in. A value of list displays the categories as list items while none generates no special display method (the list items are separated by
    tags)." +msgstr "Estilo a exibir para a lista de categorias. Um valor de lista exibe as categorias como ítens da lista e none não gera nenhum método especial de exibição (os ítens da lista são separados por tags
    )." + +#: includes/admin/class-mp-shortcode-builder.php:269 +#: includes/admin/class-mp-shortcode-builder.php:449 +#: includes/admin/class-mp-shortcode-builder.php:1378 +msgid "Sort order for categories (either ascending or descending)." +msgstr "Ordenação das categorias (pode ser ascendente ou descendente)." + +#: includes/admin/class-mp-shortcode-builder.php:259 +#: includes/admin/class-mp-shortcode-builder.php:439 +#: includes/admin/class-mp-shortcode-builder.php:1368 +msgid "Sort categories alphabetically, by unique Category ID, or by the count of posts in that Category." +msgstr "Ordenar alfabeticamente as categorias, por ID único de Categoria ou pela contagem de posts naquela Categoria." + +#: includes/admin/class-mp-shortcode-builder.php:253 +#: includes/admin/class-mp-shortcode-builder.php:433 +msgid "If a value is entered, causes the display of a link to all categories if the style is set to list." +msgstr "Se um valor for informado causa a exibição de um link para todas as categorias se o estilo estiver definido para lista." + +#: includes/admin/class-mp-shortcode-builder.php:219 +msgid "Select an Action" +msgstr "Selecione uma Ação" + +#: includes/admin/class-mp-shortcode-builder.php:217 +msgid "What would you like to do?" +msgstr "O que você deseja fazer?" + +#: includes/admin/class-mp-shortcode-builder.php:216 +#: includes/admin/class-mp-shortcode-builder.php:1522 +msgid "Add E-Commerce Short Code" +msgstr "Adicionar Shortcode para e-Commerce" + +#: includes/admin/class-mp-shortcode-builder.php:197 +msgid "Display a list of links to your store pages." +msgstr "Exibe uma lista de links para as páginas da sua loja." + +#: includes/admin/class-mp-shortcode-builder.php:196 +msgid "Display a link or url to the order status page." +msgstr "Exibe um link ou URL para a página de status do pedido." + +#: includes/admin/class-mp-shortcode-builder.php:195 +msgid "Display a link or url to the current products list page." +msgstr "Exibe um link ou URL para a página atual de lista de produtos." + +#: includes/admin/class-mp-shortcode-builder.php:194 +msgid "Display a link or url to the current store page." +msgstr "Exibe um link ou URL para a página atual da loja." + +#: includes/admin/class-mp-shortcode-builder.php:193 +msgid "Display a link or url to the current shopping cart page." +msgstr "Exibe um link ou URL para a página atual do carrinho de compras." + +#: includes/admin/class-mp-shortcode-builder.php:192 +msgid "Display the cart widget." +msgstr "Exibe o widget do carrinho." + +#: includes/admin/class-mp-shortcode-builder.php:191 +msgid "Display the full product meta box with price and buy now/add to cart button." +msgstr "Exibe o meta box de produto completo com o preço e o botão comprar agora/adicionar ao carrinho." + +#: includes/admin/class-mp-shortcode-builder.php:190 +msgid "Display the product stock." +msgstr "Exibe o estoque do produto." + +#: includes/admin/class-mp-shortcode-builder.php:189 +msgid "Display the product SKU number(s)." +msgstr "Exibe o(s) número(s) SKU do(s) produto(s)." + +#: includes/admin/class-mp-shortcode-builder.php:188 +msgid "Display the product price (and sale price)." +msgstr "Exibe o preço do produto (e o preço em promoção)." + +#: includes/admin/class-mp-shortcode-builder.php:187 +msgid "Display the buy or add to cart button." +msgstr "Exibe o botão de comprar ou adicionar ao carrinho." + +#: includes/admin/class-mp-shortcode-builder.php:186 +msgid "Display the featured image of a given product." +msgstr "Exibe a imagem em destaque de um dado produto." + +#: includes/admin/class-mp-shortcode-builder.php:185 +msgid "Display a single product." +msgstr "Exibe um produto simples." + +#: includes/admin/class-mp-shortcode-builder.php:184 +msgid "Display a list of products according to preference." +msgstr "Exibe uma lista de produtos de acordo com a preferência." + +#: includes/admin/class-mp-shortcode-builder.php:183 +msgid "Display products related to the one being viewed." +msgstr "Exibe produtos correlatos ao que está sendo visualizado." + +#: includes/admin/class-mp-shortcode-builder.php:182 +msgid "Display a list of popular products ordered by sales." +msgstr "Exibe uma lista de produtos populares ordenados por vendas." + +#: includes/admin/class-mp-shortcode-builder.php:180 +msgid "Display an HTML dropdown of your product categories." +msgstr "Exibir um dropdown HTML das suas categorias de produto." + +#: includes/admin/class-mp-shortcode-builder.php:179 +msgid "Display an HTML list of your product categories." +msgstr "Exibir uma lista HTML das suas categorias de produto." + +#: includes/admin/class-mp-shortcode-builder.php:178 +msgid "Display a cloud or list of your product tags." +msgstr "Exibe uma nuvem ou lista de tags dos seus produtos." + +#: includes/admin/class-mp-setup-wizard.php:655 +msgid "Setup your payment gateway" +msgstr "Configure seu gateway de pagamento" + +#: includes/admin/class-mp-setup-wizard.php:643 +#: includes/admin/class-mp-setup-wizard.php:649 +msgid "Other Gateways" +msgstr "Outros Gateways" + +#: includes/admin/class-mp-setup-wizard.php:617 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:150 +msgid "Select which calculated shipping methods the customer will be able to choose from." +msgstr "Selecione quais métodos de envio calculados o usuário poderá escolher." + +#: includes/admin/class-mp-setup-wizard.php:601 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:134 +#: includes/public/class-mp-checkout.php:82 +msgid "Shipping Method" +msgstr "Método de Envio" + +#: includes/admin/class-mp-setup-wizard.php:568 +msgid "I want to charge shipping" +msgstr "Desejo cobrar o envio" + +#: includes/admin/class-mp-setup-wizard.php:523 +#: includes/admin/store-settings/class-mp-store-settings-general.php:503 +msgid "Show Price + Tax?" +msgstr "Exibir Preço + Taxas?" + +#: includes/admin/class-mp-setup-wizard.php:507 +msgid "I.e. Taxes, VAT, GST, etc" +msgstr "Ex: Taxas, ICMS, etc" + +#: includes/admin/class-mp-setup-wizard.php:491 +#: includes/admin/store-settings/class-mp-store-settings-general.php:471 +msgid "Current Rates" +msgstr "Taxas Atuais" + +#: includes/admin/class-mp-setup-wizard.php:473 +msgid "Default Tax Rate" +msgstr "Taxa Padrão" + +#: includes/admin/class-mp-setup-wizard.php:434 +#: includes/admin/class-mp-setup-wizard.php:442 +#: includes/admin/store-settings/class-mp-store-settings-general.php:386 +#: includes/admin/store-settings/class-mp-store-settings-general.php:394 +#: includes/multisite/class-mp-admin-multisite.php:204 +#: includes/multisite/class-mp-admin-multisite.php:212 +msgid "Select a Currency" +msgstr "Selecionar uma Moeda" + +#: includes/admin/class-mp-setup-wizard.php:414 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:105 +msgid "Choose Countries" +msgstr "Escolher Países" + +#: includes/admin/class-mp-setup-wizard.php:411 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:103 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:104 +msgid "All Countries" +msgstr "Todos os Países" + +#: includes/admin/class-mp-setup-wizard.php:410 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:102 +msgid "These are the countries that you will ship to." +msgstr "Estes são os países para os quais você envia." + +#: includes/admin/class-mp-setup-wizard.php:409 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:101 +msgid "Target Countries" +msgstr "Países-Alvo" + +#: includes/admin/class-mp-setup-wizard.php:401 +msgid "Countries" +msgstr "Países" + +#: includes/admin/class-mp-setup-wizard.php:387 +#: includes/admin/store-settings/class-mp-store-settings-general.php:640 +msgid "Zip/Postal Code Label" +msgstr "Etiqueta do CEP/Código Postal" + +#: includes/admin/class-mp-setup-wizard.php:352 +#: includes/admin/store-settings/class-mp-store-settings-general.php:606 +msgid "Select a State/Province/Region" +msgstr "Selecione um Estado/Província/Região" + +#: includes/admin/class-mp-setup-wizard.php:335 +#: includes/admin/store-settings/class-mp-store-settings-general.php:590 +msgid "Select A Country" +msgstr "Selecione Um País" + +#: includes/admin/class-mp-setup-wizard.php:332 +#: includes/admin/store-settings/class-mp-store-settings-general.php:587 +msgid "Select a Country" +msgstr "Selecione um País" + +#: includes/admin/class-mp-setup-wizard.php:324 +msgid "Location" +msgstr "Locallização" + +#: includes/admin/class-mp-setup-wizard.php:304 +#: includes/admin/class-mp-setup-wizard.php:312 +#: includes/admin/class-mp-store-settings-admin.php:129 +#: includes/admin/class-mp-store-settings-admin.php:262 +msgid "Quick Setup" +msgstr "Configuração Rápida" + +#: includes/admin/class-mp-setup-wizard.php:289 +msgid "MarketPress setup is not complete! Run setup wizard" +msgstr "A configuração do MarketPress não está completa! Executar o assistente de configuração" + +#: includes/admin/class-mp-products-admin.php:2479 +msgid "Enter your product name here" +msgstr "Insira aqui o nome do seu produto" + +#: includes/admin/class-mp-products-admin.php:2440 +msgid "Select a %s" +msgstr "Selecione um %s" + +#: includes/admin/class-mp-products-admin.php:2426 +msgid "Each product variation needs to have product attributes assigned to it so the system knows how to differentiate one product variation from the other. It is important that you assign a category to this product before choosing any attributes." +msgstr "Cada variação do produto precisa ter atributos de produto atribuídos a ela, para que o sistema diferencie uma variação de produto da outra. É importante que você atribua uma categoria a este produto antes de escolher quaisquer atributos." + +#: includes/admin/class-mp-products-admin.php:2409 +msgid "If you would like this variation to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "Se deseja que esta variação use uma taxa especial, insira ela aqui. Se você omitir o símbolo \"%\" a taxa será calculada como um valor fixo para cada um dos produtos no carrinho do usuário." + +#: includes/admin/class-mp-products-admin.php:2320 +msgid "Sale Price (if applicable)" +msgstr "Preço em Promoção (se aplicável)" + +#: includes/admin/class-mp-products-admin.php:2281 +msgid "If you would like the description to be different than the main product enter it here." +msgstr "Se deseja que a descrição seja diferente do produto principal, insira ela aqui." + +#: includes/admin/class-mp-products-admin.php:2229 +msgid "Image" +msgstr "Imagem" + +#: includes/admin/class-mp-products-admin.php:2202 +#: includes/admin/class-mp-shortcode-builder.php:226 +msgid "Attributes" +msgstr "Atributos" + +#: includes/admin/class-mp-products-admin.php:2166 +msgid "Create your product variations here. You can reorder variations by using the number to left of each variation, or delete one by clicking the \"x\" to the right of each variation. NOTE: The variation that shows up first in this list will be considered the \"main variation\". The details from this variation will be used in product listings." +msgstr "Crie aqui as variações do seu produto. Você pode reordenar variações usando o número à esquerda de cada variação, ou apagar uma clicando no \"x\" à direita de cada variação. NOTA: A variação que é exibida primeiro na lista será considerada a \"variação principal\". Os detalhes desta variação serão usados nas listagens de produto." + +#: includes/admin/class-mp-products-admin.php:2061 +#: includes/admin/class-mp-products-admin.php:2332 +msgid "Value must be less than regular price" +msgstr "O valor deve ser menor que o preço normal" + +#: includes/admin/class-mp-products-admin.php:2043 +#: includes/admin/class-mp-products-admin.php:2306 +msgid "Regular Price" +msgstr "Preço Normal" + +#: includes/admin/class-mp-products-admin.php:2023 +#: includes/admin/class-mp-products-admin.php:2286 +msgid "External URL" +msgstr "URL Externa" + +#: includes/admin/class-mp-products-admin.php:1988 +#: includes/admin/class-mp-products-admin.php:2245 +msgid "Enter the quantity that you have available to sell." +msgstr "Insira a quantidade que você tem disponível para venda." + +#: includes/admin/class-mp-products-admin.php:1987 +#: includes/admin/class-mp-products-admin.php:2244 +msgid "Inventory Count" +msgstr "Contagem de Inventário" + +#: includes/admin/class-mp-products-admin.php:1977 +#: includes/admin/class-mp-products-admin.php:2234 +msgid "Track Inventory?" +msgstr "Rastrear Inventário?" + +#: includes/admin/class-mp-products-admin.php:1871 +msgid "%1$sProduct Images%2$s %3$sAdd images of the product. The first image on the list is the featured image for this product (you can reorder images on the list)%2$s" +msgstr "%1$sImagens de Produto%2$s %3$sAdicionar imagens do produto. A primeira imagem na lista é a imagem em detaque para este produto (você pode reordenar as imagens na lista)%2$s" + +#: includes/admin/class-mp-products-admin.php:1806 +msgid "Add variations for this product. e.g. If you are selling t-shirts, you can create Color & Size variations" +msgstr "Adicione variações para este produto, por exemplo se estiver vendendo camisetas você pode criar variações de Cor e Tamanho" + +#: includes/admin/class-mp-products-admin.php:1804 +msgid "%3$sAdd variations for%2$s %1$sProduct%2$s" +msgstr "%3$sAdicionar variações para%2$s %1$sProduto%2$s" + +#: includes/admin/class-mp-products-admin.php:1776 +msgid "This product has a multiple variations %1$s(e.g. Multiple colors, sizes)%2$s" +msgstr "Este produto tem variações múltiplas %1$s(ex: múltiplas cores, tamanhos)%2$s" + +#: includes/admin/class-mp-products-admin.php:1775 +msgid "This is a unique product without variations" +msgstr "Este é um produto único sem variações" + +#: includes/admin/class-mp-products-admin.php:1700 +msgid "Extra Shipping Cost %1$s(if applicable)%2$s" +msgstr "Custo Extra de Envio %1$s(se aplicável)%2$s" + +#: includes/admin/class-mp-products-admin.php:1659 +#: includes/admin/class-mp-products-admin.php:2112 +#: includes/admin/class-mp-products-admin.php:2359 +msgid "Weight" +msgstr "Peso" + +#: includes/admin/class-mp-products-admin.php:1636 +#: includes/admin/class-mp-products-admin.php:2098 +#: includes/admin/class-mp-products-admin.php:2416 +msgid "Please enter a valid tax rate" +msgstr "Por favor informe uma taxa válida" + +#: includes/admin/class-mp-products-admin.php:1531 +msgid "Limit Per Order %1$s(limit the number of the item a shopper can buy per order)%2$s" +msgstr "Limite Por Pedido %1$s(limita a quantidade deste ítem que um comprador pode comprar por pedido)%2$s" + +#: includes/admin/class-mp-products-admin.php:1513 +msgid "SKU %1$s(Stock Keeping Unit)%2$s" +msgstr "SKU %1$s(Unidade de Manutenção de Estoque)%2$s" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "%1$sPrice, Inventory & Variants%2$s %3$sSet price, manage inventory and create Product Variants (if appropriate for your product).%2$s" +msgstr "%1$sPreço, Inventário e Variações%2$s %3$sDefina o preço, gerencie o inventário e crie Variações de Produto (se apropriado para o seu produto).%2$s" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "Product Variations" +msgstr "Variações de Produto" + +#: includes/admin/class-mp-products-admin.php:1480 +msgid "External / Affiliate Link" +msgstr "Linkn Externo / Afiliado" + +#: includes/admin/class-mp-products-admin.php:1471 +msgid "Digital Download" +msgstr "Download Digital" + +#: includes/admin/class-mp-products-admin.php:1470 +msgid "Physical / Tangible Product" +msgstr "Produto Físico" + +#: includes/admin/class-mp-products-admin.php:1464 +msgid "Product Kind %1$s(Physical Product, Digital, etc)%2$s" +msgstr "Tipo de Produto %1$s(Produto Físico, Digital, etc)%2$s" + +#: includes/admin/class-mp-products-admin.php:1426 +msgid "Choose Products" +msgstr "Escolher Produtos" + +#: includes/admin/class-mp-products-admin.php:1420 +msgid "If you would like, you can choose specific related products instead of using the ones generated by MarketPress" +msgstr "Se desejar, você pode escolher produtos correlatos específicos ao invés de usar os que são gerados pelo MarketPress" + +#: includes/admin/class-mp-products-admin.php:1019 +msgid "Changes saved successfully" +msgstr "Alterações gravadas com sucesso" + +#: includes/admin/class-mp-products-admin.php:826 +msgid "Option cannot be saved. Try again." +msgstr "A opção não pode ser gravada. Tente novamente." + +#: includes/admin/class-mp-products-admin.php:821 +msgid "Option saved successfully." +msgstr "Opção gravada com sucesso." + +#: includes/admin/class-mp-products-admin.php:467 +msgid "Img" +msgstr "Img" + +#: includes/admin/class-mp-product-attributes-list-table.php:57 +msgid "Product attribute(s) deleted successfully." +msgstr "Atributo(s) de produto apagado(s) com sucesso." + +#: includes/admin/class-mp-product-attributes-admin.php:162 +msgid "- Create New Variation -" +msgstr "- Criar Nova Variação -" + +#: includes/admin/class-mp-product-attributes-admin.php:144 +msgid "Only lowercase letters and dashes (-) are allowed." +msgstr "Apenas letras em caixa-baxa e traços (-) são permitidos." + +#: includes/admin/class-mp-product-attributes-admin.php:139 +msgid "If a slug is not entered, it will be generated automatically. Max 32 characters." +msgstr "Se um slug não for inserido ele será gerado automaticamente. Máximo 32 caracteres." + +#: includes/admin/class-mp-product-attributes-admin.php:138 +#: includes/admin/class-mp-product-attributes-list-table.php:23 +msgid "Slug" +msgstr "Slug" + +#: includes/admin/class-mp-product-attributes-admin.php:130 +msgid "Max 45 characters." +msgstr "Máximo 45 caracteres." + +#: includes/admin/class-mp-product-attributes-admin.php:123 +msgid "Use the numbers on the left to sort. To delete - click the \"X\" to the right of each row." +msgstr "Use os números à esquerda para ordenar. Para apagar - clique no \"X\" à direita de cada linha." + +#: includes/admin/class-mp-product-attributes-admin.php:122 +msgid "Attribute Options" +msgstr "Opções de Atributo" + +#: includes/admin/class-mp-product-attributes-admin.php:121 +msgid "Add Option" +msgstr "Adicionar Opção" + +#: includes/admin/class-mp-product-attributes-admin.php:105 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:523 +msgid "Sort Order" +msgstr "Ordenação" + +#: includes/admin/class-mp-product-attributes-admin.php:87 +msgid "Alphabetical" +msgstr "Alfabética" + +#: includes/admin/class-mp-product-attributes-admin.php:86 +msgid "ID" +msgstr "ID" + +#: includes/admin/class-mp-product-attributes-admin.php:84 +msgid "Select how the options will be sorted." +msgstr "Selecione como as opções serão ordenadas." + +#: includes/admin/class-mp-product-attributes-admin.php:82 +msgid "Sort By" +msgstr "Ordenar Por" + +#: includes/admin/class-mp-product-attributes-admin.php:75 +msgid "The name of the attribute (e.g. color, size, etc)" +msgstr "O nome do atributo (ex: cor, tamanho, etc)" + +#: includes/admin/class-mp-product-attributes-admin.php:74 +msgid "Attribute Name" +msgstr "Nome do Atributo" + +#: includes/admin/class-mp-product-attributes-admin.php:69 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Product Attribute" +msgstr "Adicionar Atributo de Produto" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Attribute" +msgstr "Adicionar Atributo" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Product Attributes" +msgstr "Atributos de Produto" + +#: includes/admin/class-mp-pages-admin.php:71 +msgid "You can choose to make this page one of the following core store pages." +msgstr "Você pode escolher tornar esta página uma das páginas centrais da loja." + +#: includes/admin/class-mp-pages-admin.php:66 +msgid "Network Store Base" +msgstr "Base da Loja em Rede" + +#: includes/admin/class-mp-pages-admin.php:61 +msgid "Checkout Page" +msgstr "Página de Check-out" + +#: includes/admin/class-mp-pages-admin.php:52 +msgid "Store Page Settings" +msgstr "Configurações de Página da Loja" + +#: includes/admin/class-mp-orders-admin.php:1108 +msgid "Display billing/shipping info for this customer" +msgstr "Exibir informação de cobrança/envio para este cliente" + +#: includes/admin/class-mp-orders-admin.php:1097 +msgid "View order “%s”" +msgstr "Ver pedido “%s”" + +#: includes/admin/class-mp-orders-admin.php:1072 +msgid "Flag as:" +msgstr "Marcar como:" + +#: includes/admin/class-mp-orders-admin.php:952 +msgid "Move To Trash" +msgstr "Mover Para a Lixeira" + +#: includes/admin/class-mp-orders-admin.php:948 +msgid " Received" +msgstr "Recebido" + +#: includes/admin/class-mp-orders-admin.php:927 +msgid "Enter coupon code here" +msgstr "Insira aqui o código do cupom" + +#: includes/admin/class-mp-orders-admin.php:812 +msgid "The order status could not be updated due to unexpected error. Please try again." +msgstr "O status do pedido não pôde ser atualizado devido a um erro inesperado. Por favor tente novamente." + +#: includes/admin/class-mp-orders-admin.php:740 +msgid "An invalid bulk action was requested. Please go back and try again." +msgstr "Um ação em massa inválida foi solicitada. Por favor volte e tente novamente." + +#: includes/admin/class-mp-orders-admin.php:692 +msgid "The order status for order ID %1$s was updated successfully." +msgstr "O status para o pedido com ID %1$s foi atualizado com sucesso." + +#: includes/admin/class-mp-orders-admin.php:688 +msgid "Order statuses successfully updated." +msgstr "Status dos pedidos autalizados com sucesso." + +#: includes/admin/class-mp-orders-admin.php:530 +msgid "Method" +msgstr "Método" + +#: includes/admin/class-mp-orders-admin.php:518 +msgid "Actual Shipping Method" +msgstr "Método Atual de Envio" + +#: includes/admin/class-mp-orders-admin.php:513 +msgid "Method Paid For" +msgstr "Método Pago Para" + +#: includes/admin/class-mp-orders-admin.php:504 +msgid "Amount Collected" +msgstr "Valor Recebido" + +#: includes/admin/class-mp-orders-admin.php:477 +msgid "DHL" +msgstr "DHL" + +#: includes/admin/class-mp-orders-admin.php:408 +msgid "There is no IPN history to show at this time" +msgstr "Não há nenhum histórico IPN para exibir no momento" + +#: includes/admin/class-mp-orders-admin.php:345 +msgid "Type" +msgstr "Tipo" + +#: includes/admin/class-mp-orders-admin.php:343 +msgid "Gateway" +msgstr "Gateway" + +#: includes/admin/class-mp-orders-admin.php:301 +#: includes/common/template-functions.php:528 +msgid "Order History" +msgstr "Histórico do Pedido" + +#: includes/admin/class-mp-orders-admin.php:291 +msgid "IPN History" +msgstr "Histórico IPN" + +#: includes/admin/class-mp-orders-admin.php:283 +msgid "Customer Info" +msgstr "Informações do Cliente" + +#: includes/admin/class-mp-orders-admin.php:279 +msgid "Order Details" +msgstr "Detalhes do Pedido" + +#: includes/admin/class-mp-exporter-orders.php:157 +msgid "All Dates" +msgstr "Todas as Datas" + +#: includes/admin/class-mp-dashboard-widgets.php:320 +msgid "Add Pages to Menu" +msgstr "Adicionar Páginas ao Menu" + +#: includes/admin/class-mp-dashboard-widgets.php:318 +msgid "Add-ons" +msgstr "Add-ons" + +#: includes/admin/class-mp-dashboard-widgets.php:317 +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "User Capabilities" +msgstr "Capacidades de Usuário" + +#: includes/admin/class-mp-dashboard-widgets.php:316 +#: includes/admin/class-mp-setup-wizard.php:631 +#: includes/admin/store-settings/class-mp-store-settings-payments.php:50 +msgid "Payment Gateways" +msgstr "Gateways de Pagamento" + +#: includes/admin/class-mp-dashboard-widgets.php:315 +msgid "Shipping Rates" +msgstr "Taxas de Envio" + +#: includes/admin/class-mp-dashboard-widgets.php:312 +msgid "Configure" +msgstr "Configurar" + +#: includes/admin/class-mp-dashboard-widgets.php:309 +#: includes/admin/class-mp-products-admin.php:466 +#: includes/admin/class-mp-shortcode-builder.php:797 +msgid "Tags" +msgstr "Tags" + +#: includes/admin/class-mp-dashboard-widgets.php:308 +#: includes/admin/class-mp-products-admin.php:465 +msgid "Categories" +msgstr "Categorias" + +#: includes/admin/class-mp-dashboard-widgets.php:300 +msgid "Manage" +msgstr "Gerenciar" + +#: includes/admin/class-mp-dashboard-widgets.php:297 +msgid "Here's some quick links to manage your store and products." +msgstr "Aqui vão alguns links rápidos para gerenciar sua loja e produtos." + +#: includes/admin/class-mp-dashboard-widgets.php:288 +msgid "low in stock" +msgstr "estoque baixo" + +#: includes/admin/class-mp-dashboard-widgets.php:287 +msgid "%s product" +msgid_plural "%s products" +msgstr[0] "%s produto" +msgstr[1] "%s produtos" + +#: includes/admin/class-mp-dashboard-widgets.php:280 +msgid "received" +msgstr "recebido" + +#: includes/admin/class-mp-dashboard-widgets.php:279 +#: includes/admin/class-mp-dashboard-widgets.php:283 +msgid "%s order" +msgid_plural "%s orders" +msgstr[0] "%s pedido" +msgstr[1] "%s pedidos" + +#: includes/admin/class-mp-dashboard-widgets.php:276 +msgid "Stock & Orders" +msgstr "Estoque e Pedidos" + +#: includes/admin/class-mp-dashboard-widgets.php:261 +msgid "Last 30 Days" +msgstr "Últimos 30 Dias" + +#: includes/admin/class-mp-dashboard-widgets.php:256 +msgid "Last 7 Days" +msgstr "Últimos 7 Dias" + +#: includes/admin/class-mp-dashboard-widgets.php:251 +msgid "Yesterday" +msgstr "Ontem" + +#: includes/admin/class-mp-dashboard-widgets.php:248 +#: includes/admin/class-mp-dashboard-widgets.php:253 +#: includes/admin/class-mp-dashboard-widgets.php:258 +#: includes/admin/class-mp-dashboard-widgets.php:263 +msgid " Orders" +msgstr "Pedidos" + +#: includes/admin/class-mp-dashboard-widgets.php:246 +msgid "Today" +msgstr "Hoje" + +#: includes/admin/class-mp-dashboard-widgets.php:241 +msgid "Welcome back! Here's a quick summary of your store's performance." +msgstr "Bem-vindo de volta! Aqui vai um resumo rápido do desempenho da sua loja." + +#: includes/admin/class-mp-dashboard-widgets.php:196 +#: includes/admin/class-mp-products-admin.php:895 +msgid "No products out of stock." +msgstr "Nenhum produto fora de estoque." + +#: includes/admin/class-mp-dashboard-widgets.php:136 +#: includes/admin/class-mp-products-admin.php:839 +msgid "Stock Level" +msgstr "Nível do Estoque" + +#: includes/admin/class-mp-dashboard-widgets.php:135 +#: includes/admin/class-mp-products-admin.php:838 +msgid "Variation" +msgstr "Variação" + +#: includes/admin/class-mp-dashboard-widgets.php:121 +msgid "Low Stock (%s)" +msgstr "Estoque Baixo (%s)" + +#: includes/admin/class-mp-dashboard-widgets.php:116 +msgid "Store Management" +msgstr "Gerenciamento da Loja" + +#: includes/admin/class-mp-dashboard-widgets.php:115 +msgid "Store Reports" +msgstr "Relatórios da Loja" + +#: includes/admin/class-mp-ajax.php:579 +#: includes/admin/class-mp-orders-admin.php:520 +#: includes/common/payment-gateways/2checkout.php:370 +#: includes/common/payment-gateways/authorizenet-aim.php:264 +#: includes/common/payment-gateways/mollie.php:93 +#: includes/common/payment-gateways/paymill.php:196 +#: includes/common/payment-gateways/pin.php:190 +#: includes/common/payment-gateways/skrill.php:157 +#: includes/common/payment-gateways/skrill.php:168 +#: includes/common/payment-gateways/wepay.php:143 +#: includes/public/class-mp-checkout.php:404 +msgid "Select One" +msgstr "Selecione Um" + +#: includes/admin/class-mp-ajax.php:511 +msgid "Oops... we could not locate any orders by that ID. Please double check your order ID and try again." +msgstr "Oopaa... Não conseguimos localizar nenhum pedido por este ID. Por favor verifique novamente seu ID de pedido e tente novamente." + +#: includes/admin/class-mp-ajax.php:482 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:166 +#: includes/multisite/class-mp-admin-multisite.php:584 +msgid "Edit Page" +msgstr "Edita Página" + +#: includes/admin/class-mp-ajax.php:346 +msgid "Cancel " +msgstr "Cancelar" + +#: includes/admin/class-mp-ajax.php:345 +msgid "Save " +msgstr "Gravar" + +#: includes/admin/class-mp-ajax.php:336 +msgid "Edit Description" +msgstr "Editar Descrição" + +#: includes/admin/class-mp-ajax.php:336 +msgid "HTML Markup" +msgstr "Marcação HTML" + +#: includes/admin/class-mp-ajax.php:333 +msgid "Plain Text Only" +msgstr "Apenas Texto Plano" + +#: includes/admin/class-mp-ajax.php:329 +msgid "Additional Content / Information for this Variation" +msgstr "Conteúdo Adicional / Informação para esta Variação" + +#: includes/admin/class-mp-ajax.php:317 +#: includes/admin/class-mp-products-admin.php:1762 +msgid "Allow this product to be purchased even if it's out of stock" +msgstr "Permitir que este produto seja comprado mesmo se estiver fora de estoque" + +#: includes/admin/class-mp-ajax.php:313 +#: includes/admin/class-mp-products-admin.php:1711 +msgid "Track Product Inventory" +msgstr "Rastrear Inventário de Produto" + +#: includes/admin/class-mp-ajax.php:300 +msgid "Extra Shipping Cost (if applicable)" +msgstr "Custo Extra de Envio (se aplicável)" + +#: includes/admin/class-mp-ajax.php:295 +msgid "Ounces:" +msgstr "Onças:" + +#: includes/admin/class-mp-ajax.php:294 +msgid "Pounds:" +msgstr "Libras:" + +#: includes/admin/class-mp-ajax.php:292 +msgid "Kilograms:" +msgstr "Quilogramas:" + +#: includes/admin/class-mp-ajax.php:287 +#: includes/admin/class-mp-products-admin.php:1649 +msgid "Charge Shipping" +msgstr "Cobrar Envio" + +#: includes/admin/class-mp-ajax.php:273 +#: includes/admin/class-mp-products-admin.php:1623 +#: includes/admin/store-settings/class-mp-store-settings-general.php:454 +msgid "Tax Rate" +msgstr "Taxa" + +#: includes/admin/class-mp-ajax.php:272 +#: includes/admin/class-mp-products-admin.php:1622 +#: includes/admin/class-mp-products-admin.php:2090 +#: includes/admin/class-mp-products-admin.php:2408 +msgid "Special Tax Rate" +msgstr "Taxa Especial" + +#: includes/admin/class-mp-ajax.php:271 +#: includes/admin/class-mp-products-admin.php:1625 +#: includes/admin/class-mp-products-admin.php:2092 +msgid "If you would like this product to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "Se deseja que este produto use uma taxa especial, insira ela aqui. Se você omitir o símbolo \"%\" a taxa será calculada como um valor fixo para cada um dos produtos do carrinho do usuário." + +#: includes/admin/class-mp-ajax.php:268 +#: includes/admin/class-mp-products-admin.php:1599 +msgid "Charge Taxes (Special Rate)" +msgstr "Cobrar Taxas (Taxa Especial)" + +#: includes/admin/class-mp-ajax.php:256 +#: includes/admin/class-mp-products-admin.php:1593 +#: includes/admin/class-mp-products-admin.php:2077 +#: includes/admin/class-mp-products-admin.php:2348 +msgid "End Date (if applicable)" +msgstr "Data Final (se aplicável)" + +#: includes/admin/class-mp-ajax.php:255 +#: includes/admin/class-mp-products-admin.php:1589 +#: includes/admin/class-mp-products-admin.php:2072 +msgid "Start Date (if applicable)" +msgstr "Data Inicial (se aplicável)" + +#: includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:1568 +msgid "Enter Sale Price" +msgstr "Insira o Preço em Promoção" + +#: includes/admin/class-mp-ajax.php:250 +#: includes/admin/class-mp-products-admin.php:1547 +msgid "Set up a Sale for this Product" +msgstr "Configure uma Promoção para este Produto" + +#: includes/admin/class-mp-ajax.php:206 includes/admin/class-mp-ajax.php:223 +msgid "Enter " +msgstr "Insira" + +#: includes/admin/class-mp-ajax.php:193 +msgid "Browse" +msgstr "Navegue" + +#: includes/admin/class-mp-ajax.php:184 includes/admin/class-mp-ajax.php:192 +msgid "http://" +msgstr "http://" + +#: includes/admin/class-mp-ajax.php:183 +msgid "External Product URL" +msgstr "URL de Produto Externo" + +#: includes/admin/class-mp-ajax.php:237 +msgid "Limit Per Order" +msgstr "Limite Por Pedido" + +#: includes/admin/class-mp-ajax.php:177 +#: includes/admin/class-mp-products-admin.php:1520 +msgid "Enter Price" +msgstr "Inserir Preço" + +#: includes/admin/class-mp-ajax.php:174 +#: includes/admin/class-mp-products-admin.php:1512 +msgid "Enter SKU" +msgstr "Inserir SKU" + +#: includes/admin/class-mp-ajax.php:173 +msgid "(Stock Keeping Unit)" +msgstr "(Unidade de Manutenção de Estoque)" + +#: includes/admin/class-mp-ajax.php:158 +msgid "Remove Image" +msgstr "Remover Imagem" + +#: includes/admin/class-mp-ajax.php:74 +msgid "Variation Draft" +msgstr "Rascunho de Variação" + +#: includes/admin/class-mp-admin.php:296 +#: includes/admin/class-mp-dashboard-widgets.php:70 +msgid "Please wait...saving in progress..." +msgstr "Por favor aguarde... gravação em curso..." + +#: includes/admin/class-mp-admin.php:295 +#: includes/admin/class-mp-dashboard-widgets.php:69 +msgid "Input is required" +msgstr "É requerida uma entrada" + +#: includes/admin/class-mp-admin.php:294 +#: includes/admin/class-mp-dashboard-widgets.php:68 +msgid "Valid number is required" +msgstr "É requerido um número válido" + +#: includes/admin/class-mp-admin.php:292 +#: includes/admin/class-mp-dashboard-widgets.php:66 +msgid "Delete %s product variant" +msgstr "Apagar variação de produto %s" + +#: includes/admin/class-mp-admin.php:291 +#: includes/admin/class-mp-dashboard-widgets.php:65 +msgid "Delete %s product variants" +msgstr "Apagar variações de produto %s" + +#: includes/admin/class-mp-admin.php:290 +#: includes/admin/class-mp-dashboard-widgets.php:64 +msgid "Update inventory for %s product variant" +msgstr "Atualizar inventário para a variante do produto %s" + +#: includes/admin/class-mp-admin.php:289 +#: includes/admin/class-mp-dashboard-widgets.php:63 +msgid "Update inventory for %s product variants" +msgstr "Atualizar inventário para as variantes do produto %s" + +#: includes/admin/class-mp-admin.php:288 +#: includes/admin/class-mp-dashboard-widgets.php:62 +msgid "Update price for %s product variant" +msgstr "Atualizar preço para a variante do produto %s" + +#: includes/admin/class-mp-admin.php:287 +#: includes/admin/class-mp-dashboard-widgets.php:61 +msgid "Update prices for %s product variants" +msgstr "Atualizar preço paras as variantes do produto %s" + +#: includes/admin/class-mp-admin.php:285 +#: includes/admin/class-mp-dashboard-widgets.php:59 +msgid "Creating variations, please wait..." +msgstr "Criando variações, por favor aguarde..." + +#: includes/admin/class-mp-admin.php:96 +msgid "The following payment gateways have been deprecated, Cubepoints, Bitpay, iDEAL, Skrill, Google Checkout. If you were using one of these gateways, please setup a new payment gateway here." +msgstr "Os gateways de pagamento a seguir estão deprecados: Cubepoints, Bitpay, iDeal, Skrill e Google Checkout. Se você estava usando um destes gateways, por favor configure um novo gateway de pagamento aqui." + +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:61 +msgid "Packing Slip" +msgstr "Etiqueta do Pacote" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:71 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:71 +#: includes/common/class-mp-gdpr.php:399 includes/common/class-mp-order.php:872 +#: includes/common/helpers.php:164 includes/public/class-mp-checkout.php:1434 +msgid "Shipping Address" +msgstr "Endereço de Envio" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:66 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:66 +#: includes/common/class-mp-gdpr.php:392 includes/common/class-mp-order.php:864 +#: includes/common/helpers.php:163 includes/public/class-mp-checkout.php:1427 +msgid "Billing Address" +msgstr "Endereço de Cobrança" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:61 +msgid "Invoice" +msgstr "Fatura" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:258 +msgid "Shipping Email: %s" +msgstr "E-mail de Envio: %s" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:256 +msgid "Email: %s" +msgstr "E-mail: %s" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:235 +msgid "Payment Method: %s" +msgstr "Método de Pagamento: %s" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:79 +msgid "The dir %s not exist or not writeable" +msgstr "O diretório %s não existe ou não tem permissões de escrita" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Packing Slip" +msgstr "Etiqueta do Pacote em PDF" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Invoice" +msgstr "Fatura em PDF" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:239 +msgid "Shop header/logo" +msgstr "Cabeçalho/Logo da Loja" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:233 +msgid "Choose a template" +msgstr "Escolha um modelo" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:226 +msgid "Template Settings" +msgstr "Configurações de Modelo" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:221 +msgid "Disable automatic creation/attachment of invoices when only free products are ordered" +msgstr "Desabilita a criação/anexo automático de faturas quando apenas produtos gratuitos são pedidos" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:220 +msgid "Disable for free products" +msgstr "Desabilitar para produtos gratuitos" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:216 +msgid "Attach invoice to" +msgstr "Anexar fatura para" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:214 +msgid "Customer Order Shipped email" +msgstr "E-mail de Pedido de Cliente Enviado" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:212 +msgid "Customer New Order email" +msgstr "E-mail de Novo Pedido ao Cliente" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:211 +msgid "Admin New Order email" +msgstr "E-mail de Novo Pedido ao Administrador" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:206 +msgid "download" +msgstr "fazer o download" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:205 +msgid "How do you want to view the PDF?" +msgstr "Como deseja ver o PDF?" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:203 +msgid "Open the PDF in a new browser tab/window" +msgstr "Abrir o PDF em uma nova aba/janela do navegador" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:202 +msgid "Download the PDF" +msgstr "Fazer o Download do PDF" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:158 +msgid "Export PDF" +msgstr "Exportar em PDF" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:103 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:106 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:109 +msgid "You can't download this order invoice" +msgstr "Você não pode fazer o download da fatura deste pedido" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:76 +msgid "Invalid Request" +msgstr "Solicitação Inválida" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:72 +msgid "Order not exist!" +msgstr "O pedido não existe!" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:67 +msgid "Invalid ID" +msgstr "ID Inválido" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1293 +msgid "Coupon added successfully" +msgstr "Cupom adicionado com sucesso" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1292 +msgid "Please enter a code" +msgstr "Por favor informe um código" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1247 +msgid "No end" +msgstr "Sem fim" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1200 +msgid "Valid Dates" +msgstr "Datas Válidas" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1195 +msgid "Code" +msgstr "Código" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1027 +msgid "No Coupons found in Trash" +msgstr "Nenhum Cupom encontrado na Lixeira" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1026 +msgid "No Coupons Found" +msgstr "Nenhum Cupom Encontrado" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1025 +msgid "Search Coupons" +msgstr "Pesquisar Cupons" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1024 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1028 +msgid "View Coupon" +msgstr "Ver Cupom" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1023 +msgid "New Coupon" +msgstr "Novo Cupom" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1020 +msgid "Create New Coupon" +msgstr "Criar Novo Cupom" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1017 +msgid "Manage Coupons" +msgstr "Gerenciar Cupons" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1002 +msgid "An error occurred while removing your coupon. Please try again." +msgstr "Ocorreu um erro removendo seu cupon. Por favor tente novamente." + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:964 +msgid "Coupon can't be applied to this cart" +msgstr "O cupom não pode ser aplicado a este carrinho" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:951 +msgid "Invalid coupon code" +msgstr "Código de cupom inválido" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:794 +msgid "Help Text" +msgstr "Texto de Ajuda" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:789 +msgid "Form Title" +msgstr "Título do Formulário" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:783 +msgid "Coupons Settings" +msgstr "Configurações de Cupons" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:764 +msgid "End Date" +msgstr "Data de Expiração" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:758 +msgid "Does coupon have an end date?" +msgstr "Este cupom tem uma data de expiração?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:696 +msgid "Select Products" +msgstr "Selecionar Produtos" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:688 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:723 +#: includes/common/payment-gateways/paypal-payflow.php:402 +msgid "User" +msgstr "Usuário" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:638 +msgid "Max Uses" +msgstr "Máximo de Utilizações" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:636 +msgid "Enter the maximum number of times this coupon can be used." +msgstr "Insira o número máximo de vezes que este cupom pode ser usado." + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:623 +msgid "Leave blank to allow all other coupons." +msgstr "Deixe em branco para permitir todos os outros cupons." + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:622 +msgid "Select combinable coupons" +msgstr "Selecione cupons combináveis" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:618 +msgid "Can this coupon be combined with other coupons?" +msgstr "Este cupom pode ser combinado com outros cupons?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:613 +msgid "Apply to each applicable item once per cart" +msgstr "Aplicar para cada ítem aplicável uma vez por carrinho" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:612 +msgid "Apply to each applicable item and quantity ordered" +msgstr "Aplicar para cada ítem aplicável e ordenado por quantidade" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:609 +msgid "How should the discount amount be applied?" +msgstr "Como o valor do desconto deve ser aplicado?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:605 +msgid "Discount Amount" +msgstr "Valor do Desconto" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:604 +msgid "Value must either be a decimal number or a percentage" +msgstr "O valor deve ser um número decimal ou uma porcentagem" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:602 +msgid "If you would like to give a percentage-based discount make sure to include the percent (%) symbol. Otherwise, the discount will be applied as a fixed amount off." +msgstr "Se deseja dar descontos baseados em porcentagem, certifique-se de incluir o símbolo percentual (%). Caso contrário o desconto será aplicado como um valor fixo." + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:595 +msgid "Letters and Numbers only." +msgstr "Somente Letras e Números." + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:589 +msgid "Coupon Settings" +msgstr "Configurações do Cupom" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:447 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:795 +msgid "More than one code? That's OK! Just be sure to enter one at a time." +msgstr "Mais de um código? Tudo OK! Apenas certifique-se de inserir um de cada vez." + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:444 +msgid "Apply Code" +msgstr "Aplicar Código" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:314 +msgid "Coupon Discounts" +msgstr "Descontos do Cupom" + +#: includes/addons/class-mp-addons-list-table.php:89 +msgid "1 add-on disabled" +msgid_plural "%s add-ons disabled" +msgstr[0] "1 add-on desabilitado" +msgstr[1] "%s add-ons desabilitados" + +#: includes/addons/class-mp-addons-list-table.php:84 +msgid "1 add-on enabled" +msgid_plural "%s add-ons enabled" +msgstr[0] "1 add-on habilitado" +msgstr[1] "%s add-ons habilitados" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Disabled" +msgstr "Desabilitado(s)" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Enable add-on" +msgstr "Habilitar add-on" + +#: includes/addons/class-mp-addons-list-table.php:45 +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:129 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:67 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:135 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:168 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:202 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:263 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:296 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:330 +msgid "Enabled" +msgstr "Habilitado" + +#: includes/addons/class-mp-addons-list-table.php:45 +msgid "Disable add-on" +msgstr "Desabilitar add-on" + +#: includes/addons/class-mp-addons-list-table.php:34 +msgid "Disable" +msgstr "Desabilitar" + +#: includes/addons/class-mp-addons-list-table.php:33 +msgid "Enable" +msgstr "Habilitar" + +#: includes/addons/class-mp-addons-list-table.php:21 +#: includes/admin/class-mp-products-admin.php:2280 +#: includes/common/class-mp-product.php:2916 +msgid "Description" +msgstr "Descrição" + +#: includes/common/template-functions.php:2889 +#: includes/multisite/template-functions.php:407 +msgid "Popularity (Least Popular - Most Popular)" +msgstr "Popularidade (Menos Populares - Mais Populares)" + +#: includes/common/template-functions.php:2888 +#: includes/multisite/template-functions.php:406 +msgid "Popularity (Most Popular - Least Popular)" +msgstr "Popularidade (Mais Populares - Menos Populares)" + +#: includes/common/template-functions.php:2885 +#: includes/multisite/template-functions.php:403 +msgid "Name (Z-A)" +msgstr "Nome (Z-A)" + +#: includes/common/template-functions.php:2884 +#: includes/multisite/template-functions.php:402 +msgid "Name (A-Z)" +msgstr "Nome (A-Z)" + +#: includes/common/template-functions.php:2883 +#: includes/multisite/template-functions.php:401 +msgid "Release Date (Oldest to Latest)" +msgstr "Data de Lançamento (Mais Antigos para Mais Recentes)" + +#: includes/common/template-functions.php:2882 +#: includes/multisite/template-functions.php:400 +msgid "Release Date (Latest to Oldest)" +msgstr "Data de Lançamento (Mais Recentes para Mais Antigos)" + +#: includes/admin/class-mp-dashboard-widgets.php:284 +msgid "paid" +msgstr "pago" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "One Time Pickup" +msgstr "Coleta Única" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Customer Counter" +msgstr "Contador de Clientes" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Daily Pickup" +msgstr "Coleta Diária" + +#: includes/common/shipping-modules/mp-ups.php:182 +msgid "For the most accurate rates, please select the appropriate pick up type for your business." +msgstr "Para as taxas mais precisas, por favor selecione o tipo apropriado de coleta para o seu negócio." + +#: includes/admin/class-mp-admin.php:374 +msgid "Page saved." +msgstr "Página gravada." + +#: includes/admin/class-mp-admin.php:370 +msgid "Custom field deleted." +msgstr "Campo personalizado apagado." + +#: includes/admin/class-mp-admin.php:369 +msgid "Custom field updated." +msgstr "Campo personalizado atualizado." + +#: includes/common/payment-gateways/_bitpay.php:541 +msgid "%s - The payment request expired, - %s" +msgstr "%s - O pedido de pagamento expirou, - %s" + +#: includes/common/payment-gateways/_bitpay.php:536 +msgid "%s - The payment not credited in merchants bitpay account, action required. Bitpay invoice status - %s" +msgstr "%s - O pagamento não foi creditado na conta de comerciante BitPay, é necessária a sua intervenção. Estado da fatura do Bitpay - %s" + +#: includes/common/payment-gateways/_bitpay.php:252 +msgid "If enabled, you will recieve an email for each status update on payment." +msgstr "Se habilitado você irá receber um e-mail para cada atualização de status do pagamento." + +#: includes/common/payment-gateways/_bitpay.php:240 +msgid "Speed at which the bitcoin transaction registers as \"confirmed\" to the store. This overrides your merchant settings on the Bitpay website." +msgstr "Velocidade em que as transações em bitcoin são registradas como \"confirmadas\" na loja. Isso sobrepuja suas configurações de comerciante no website Bitpay." + +#: includes/common/payment-gateways/_bitpay.php:238 +msgid "Transaction Speed" +msgstr "Velocidade da Transação" + +#: includes/common/payment-gateways/_bitpay.php:244 +msgid "Low" +msgstr "Baixa" + +#: includes/common/payment-gateways/_bitpay.php:243 +msgid "Medium" +msgstr "Média" + +#: includes/common/payment-gateways/_bitpay.php:242 +msgid "High" +msgstr "Alta" + +#: includes/common/payment-gateways/_bitpay.php:177 +#: includes/common/payment-gateways/_bitpay.php:517 +#: includes/common/payment-gateways/_bitpay.php:522 +msgid "%s - The payment request is under process. Bitpay invoice status - %s" +msgstr "%s - A solicitação de pagamento está sendo processada. Status da fatura Bitpay - %s" + +#: includes/common/payment-gateways/_bitpay.php:175 +#: includes/common/payment-gateways/_bitpay.php:527 +msgid "%s - The payment request has been processed - %s" +msgstr "%s - A solicitação de pagamento foi processada - %s" + +#: includes/common/payment-gateways/_bitpay.php:150 +#: includes/common/payment-gateways/_bitpay.php:294 +msgid "Incorrect order invoice, please contact site administrator" +msgstr "Fatura de pedido incorreta, por favor contate o administrador do site" + +#: includes/common/payment-gateways/_bitpay.php:141 +msgid "We could not verify order invoice details, please try again or contact site administrator for help" +msgstr "Foi impossível verificar os detalhes da fatura do pedido, por favor tente novamente ou contate o administrador do site para ajuda" + +#: includes/common/payment-gateways/simplify.php:81 +msgid "Login to Simplify to get your API credentials. Enter your test credentials, then live ones when ready." +msgstr "Faça login no Simplify para obter as suas credenciais da API. Insira as suas credenciais de teste e, insira as reais (live) quando estiver pronto." + +#: includes/common/payment-gateways/paypal-express.php:605 +#: includes/common/payment-gateways/paypal-express.php:647 +msgid "Express Checkout is PayPal's premier checkout solution, which streamlines the checkout process for buyers and keeps them on your site after making a purchase. Unlike PayPal Pro, there are no additional fees to use Express Checkout, though you may need to do a free upgrade to a business account. More Info »" +msgstr "Check-out Expresso é uma solução premium do PayPal para o check-out, que simplifica o processo de check-out para os compradores e os mantém no seu site após realizarem uma compra. Diferente do PayPal Pro, não há taxas adicionais para usar o Check-out Expresso, mas pode ser que você necessite atualziar gratuitamente a sua conta para uma conta de negócios. Mais Informações »" + +#. Plugin URI of the plugin/theme +msgid "https://premium.wpmudev.org/project/e-commerce/" +msgstr "https://premium.wpmudev.org/project/e-commerce/" + +#. Author of the plugin/theme +msgid "WPMU DEV" +msgstr "WPMU DEV" + +#: includes/admin/class-mp-orders-admin.php:541 +#: includes/admin/class-mp-orders-admin.php:543 +msgid "Tracking Number" +msgstr "Número do Rastreamento" + +#: includes/common/class-mp-order.php:805 +#: includes/common/payment-gateways/stripe.php:336 +#: includes/public/class-mp-checkout.php:402 +msgid "Country" +msgstr "País" + +#: includes/common/class-mp-order.php:784 +#: includes/common/payment-gateways/stripe.php:338 +msgid "City" +msgstr "Cidade" + +#: includes/common/class-mp-order.php:780 +msgid "Address 2" +msgstr "Endereço 2" + +#: includes/common/payment-gateways/stripe.php:340 +msgid "Address" +msgstr "Endereço" + +#: includes/common/class-mp-cart.php:752 includes/common/class-mp-gdpr.php:378 +msgid "Order Total" +msgstr "Total do Pedido" + +#: includes/admin/class-mp-orders-admin.php:360 +msgid "Payment Total" +msgstr "Total do Pagamento" + +#: includes/admin/class-mp-orders-admin.php:347 +msgid "Transaction ID" +msgstr "ID da Transação" + +#: includes/common/payment-gateways/wepay.php:207 +msgid "The WePay Card Token was not generated correctly. Please go back and try again." +msgstr "O Token WePay Card não foi gerado corretamente. Por favor retorne e tente novamente." + +#: includes/common/payment-gateways/wepay.php:186 +#: includes/common/shipping-modules/mp-fedex.php:283 +msgid "Account ID" +msgstr "ID da Conta" + +#: includes/common/payment-gateways/wepay.php:179 +msgid "Access Token" +msgstr "Token de Acesso" + +#: includes/common/payment-gateways/wepay.php:172 +msgid "Client Secret" +msgstr "Segredo do Cliente" + +#: includes/common/payment-gateways/wepay.php:165 +msgid "Client ID" +msgstr "ID do Cliente" + +#: includes/common/payment-gateways/wepay.php:159 +msgid "You must login to WePay to get your API credentials. Make sure to check \"Tokenize credit cards\" option under \"API Keys\" section of your WePay app." +msgstr "Você deve fazer login no WePay para obter suas credenciais da API. Certifique-se de selecionar a opção \"Tokenize credit cards\" na seção \"API Keys\" do seu app WePay." + +#: includes/common/payment-gateways/wepay.php:154 +msgid "When in live mode it is recommended to use SSL certificate setup for the site where the checkout form will be displayed." +msgstr "Quando em modo live é recomendado usar uma configuração de certificado SSL para o site em que o formulário de check-out será exibido." + +#: includes/common/payment-gateways/wepay.php:148 +msgid "Donation" +msgstr "Doação" + +#: includes/common/payment-gateways/wepay.php:147 +msgid "Event" +msgstr "Evento" + +#: includes/common/payment-gateways/wepay.php:146 +msgid "Personal" +msgstr "Pessoal" + +#: includes/common/payment-gateways/wepay.php:145 +msgid "Service" +msgstr "Serviço" + +#: includes/common/payment-gateways/wepay.php:144 +msgid "Goods" +msgstr "Mercadorias" + +#: includes/common/payment-gateways/wepay.php:141 +msgid "Choose type of payments" +msgstr "Escolha o tipo dos pagamentos" + +#: includes/common/payment-gateways/wepay.php:140 +msgid "Checkout Type" +msgstr "Tipo de Check-out" + +#: includes/common/payment-gateways/wepay.php:134 +msgid "Staging" +msgstr "Staging" + +#: includes/common/payment-gateways/wepay.php:131 +msgid "Choose STAGING if you have registered the app on stage.wepay.com, or PRODUCTION if you registered on www.wepay.com" +msgstr "Escolha STAGING se você registrou o app em stage.wepay.com ou PRODUCTION se registrou em www.wepay.com" + +#: includes/common/payment-gateways/wepay.php:36 +#: includes/common/payment-gateways/wepay.php:299 +msgid "WePay" +msgstr "WePay" + +#: includes/common/payment-gateways/_payway.php:366 +msgid "Rejected - A payment was rejected." +msgstr "Rejeitado - Um pagamento foi rejeitado." + +#: includes/common/payment-gateways/_payway.php:360 +msgid "Failed - A payment was rejected due to an error." +msgstr "Falh - Um pagamento foi rejeitado devido a um erro." + +#: includes/common/payment-gateways/_payway.php:342 +msgid "PayWay balance, Credit Card, or Instant Transfer" +msgstr "Saldo PayWay, Cartão de Crédito ou Transferência Eletrônica" + +#: includes/common/payment-gateways/_payway.php:298 +msgid "Full path of the cacerts.crt file" +msgstr "Caminho completo do arquivo cacerts.crt" + +#: includes/common/payment-gateways/_payway.php:284 +msgid "User Name" +msgstr "Nome do Usuário" + +#: includes/common/payment-gateways/_payway.php:277 +msgid "Biller Code" +msgstr "Código do Cobrador" + +#: includes/common/payment-gateways/_payway.php:273 +msgid "Log Directory" +msgstr "Diretório de Log" + +#: includes/common/payment-gateways/_payway.php:266 +msgid "Encryption Key" +msgstr "Chave de Encriptação" + +#: includes/common/payment-gateways/_payway.php:60 +msgid "Your PayWay transaction has been canceled." +msgstr "Sua transação PayWay foi cancelada." + +#: includes/common/payment-gateways/_payway.php:40 +#: includes/common/payment-gateways/_payway.php:41 +msgid "PayWay" +msgstr "PayWay" + +#: includes/common/payment-gateways/paypal-chained-payments.php:862 +msgid "You must register this application with PayPal using your business account login to get an Application ID that will work with your API credentials. A bit of a hassle, but worth it! In the near future we will be looking for ways to simplify this process. Register then submit your application while logged in to the developer portal. Note that you do not need an Application ID for testing in sandbox mode. More Information »" +msgstr "Você deve registrar este aplicativo com o PayPal usando a sua conta de comerciante para obter um ID de Aplicativo que irá trabalhar com as suas credenciais de API. Dá um certo trabalho mas vale a pena! No futuro estaremos à procura de formas de simplificar este processo. Registe e então envie a sua aplicação após ter feito login no portal do desenvolvedor. Note que você não precisa de um ID de Aplicativo para testar no modo sandbox. Mais Informações »" + +#: includes/common/payment-gateways/paypal-chained-payments.php:818 +#: includes/common/payment-gateways/paypal-chained-payments.php:840 +#: includes/common/payment-gateways/paypal-express.php:705 +msgid "You must login to PayPal and create an API signature to get your credentials. Instructions »" +msgstr "Você deve fazer login no PayPal e criar uma assinatura de API para poder obter as suas credenciais. Instruções »" + +#: includes/common/payment-gateways/paypal-payflow.php:378 +msgid "Use Payflow payment gateway to accept online payments using your Internet merchant account and processing network. PayPal Payflow Pro is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway." +msgstr "Use o gateway de pagamento Payflow para aceitar pagamentos online utilizando a sua conta de comerciante e rede de processamento.O PayPal Payflow Pro é uma solução de processamento de pagamentos personalizável e que dá ao comerciante controle sobre todos os passos no processamento de uma transação de pagamento. Um certificado SSL é requerido para usar este gateway." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:595 +msgid "Tags Only" +msgstr "Apenas Tags" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:594 +msgid "Category Only" +msgstr "Apenas Categoria" + +#: includes/admin/class-mp-shortcode-builder.php:795 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:593 +msgid "Category & Tags" +msgstr "Categoria & Tags" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:591 +msgid "Relate Products By" +msgstr "Relacionar Produtos Por" + +#: includes/admin/class-mp-shortcode-builder.php:1008 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:455 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:751 +msgid "Right" +msgstr "Direita" + +#: includes/admin/class-mp-shortcode-builder.php:1007 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:454 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:749 +msgid "Left" +msgstr "Esquerda" + +#: includes/admin/class-mp-shortcode-builder.php:1009 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:750 +msgid "Center" +msgstr "Centro" + +#: marketpress.php:273 +msgid "Orders from your e-commerce store." +msgstr "Pedidos da sua loja e-commerce." + +#: marketpress.php:231 +msgid "Products for your e-commerce store." +msgstr "Produtos para a sua loja e-commerce." + +#: marketpress.php:222 +msgid "Edit Product" +msgstr "Editar Produto" + +#. Description of the plugin/theme +msgid "The complete WordPress ecommerce plugin - works perfectly with BuddyPress and Multisite too to create a social marketplace, where you can take a percentage! Activate the plugin, adjust your settings then add some products to your store." +msgstr "O plugin de e-commerce completo para WordPress - funciona perfeitamente com o BuddyPress e também Multisite, para criar um marketplace social onde você pode tirar uma porcentagem! Ative o plugin, ajuste suas configurações e então adicione alguns produtos à sua loja." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:272 +msgid "Beside" +msgstr "Ao lado" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:271 +msgid "Above" +msgstr "Acima" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:268 +msgid "Pin Count" +msgstr "Contagem de Pins" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:261 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:287 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:318 +msgid "All View" +msgstr "Visualização Completa" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:260 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:286 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:317 +msgid "Single View" +msgstr "Visualização Individual" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:259 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:285 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:316 +msgid "Off" +msgstr "Desligado" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:578 +msgid "Related Product Limit" +msgstr "Limite de Produtos Correlatos" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:681 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1201 +msgid "Applies To" +msgstr "Aplica-se A" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:685 +msgid "All Products" +msgstr "Todos os Produtos" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:487 +msgid "The label shown for the tax line item in the cart. Taxes, VAT, GST, etc." +msgstr "A etiqueta exibida para linha das taxas no carrinho. Impostos, VAT, GST, etc." + +#: includes/admin/class-mp-setup-wizard.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:485 +msgid "Tax Label" +msgstr "Etiqueta da Taxa" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:81 +msgid "Apply" +msgstr "Aplicar" + +#: includes/admin/class-mp-admin.php:192 +msgid "MarketPress Instructions" +msgstr "Instruções do MarketPress" + +#: includes/admin/class-mp-products-admin.php:1954 +#: includes/admin/class-mp-products-admin.php:2194 includes/common/data.php:62 +#: includes/common/helpers.php:150 +msgid "Taxes" +msgstr "Taxas" + +#: includes/admin/class-mp-products-admin.php:1417 +#: includes/common/class-mp-product.php:2900 +msgid "Related Products" +msgstr "Produtos Correlatos" + +#: includes/common/shipping-modules/mp-usps.php:282 +#: includes/common/shipping-modules/mp-usps.php:316 +msgid "@ Max" +msgstr "@ Máximo" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "(3-5 days)" +msgstr "(3-5 dias)" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "Priority Mail Express International Padded Flat Rate Envelope" +msgstr "Correio Expresso Prioritário Internacional em Envelope Acolchoado com Taxa Fixa" + +#: includes/common/shipping-modules/mp-usps.php:92 +msgid "Priority Mail Padded Flat Rate Envelope" +msgstr "Correio Prioritário em Envelope Acolchoado com Taxa Fixa" + +#: includes/common/shipping-modules/mp-pickup.php:171 +#: includes/common/shipping-modules/mp-pickup.php:247 +msgid "In Store" +msgstr "Na Loja" + +#: includes/common/shipping-modules/mp-pickup.php:159 +msgid "Pickup Fee" +msgstr "Taxa de Retirada" + +#: includes/common/shipping-modules/mp-pickup.php:141 +msgid "This option allows your customers to indicate that they will pick-up their order at your place of business." +msgstr "Esta opção permite aos seus clientes indicarem que eles irão retirar o seu pedido no endereço da sua loja." + +#: includes/common/shipping-modules/mp-pickup.php:60 +#: includes/common/shipping-modules/mp-pickup.php:76 +#: includes/common/shipping-modules/mp-pickup.php:176 +msgid "Pickup Instructions" +msgstr "Instruções de Retirada" + +#: includes/common/shipping-modules/mp-pickup.php:24 +#: includes/common/shipping-modules/mp-pickup.php:254 +msgid "Pickup" +msgstr "Retirada" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping - 0.00" +msgstr "Envio Grátis - 0.00" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:256 +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:440 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping" +msgstr "Envio Grátis" + +#: includes/common/shipping-modules/mp-fedex.php:309 +msgid "Your Packaging" +msgstr "Sua Embalagem" + +#: includes/common/shipping-modules/mp-fedex.php:301 +msgid "Station" +msgstr "Agência" + +#: includes/common/shipping-modules/mp-fedex.php:300 +msgid "Request Courier" +msgstr "Solicitar Courier" + +#: includes/common/shipping-modules/mp-fedex.php:299 +msgid "Drop Box" +msgstr "Caixa Postal" + +#: includes/common/shipping-modules/mp-fedex.php:298 +msgid "Business Service Center" +msgstr "Centro de Serviços do Negócio" + +#: includes/common/shipping-modules/mp-fedex.php:297 +msgid "Regular Pickup" +msgstr "Retirada Normal" + +#: includes/common/payment-gateways/wepay.php:135 +#: includes/common/shipping-modules/mp-fedex.php:264 +msgid "Production" +msgstr "Produção" + +#: includes/common/payment-gateways/simplify.php:207 +msgid "Simplify Commerce by MasterCard" +msgstr "Simplify Commerce por MasterCard" + +#: includes/common/payment-gateways/simplify.php:104 +msgid "When in live mode, although it is not required, Simplify recommends you have an SSL certificate." +msgstr "Embora não seja necessário, a Simplifiy recomenda que tenha um certificado SSL quando o sistema estiver funcionar em modo live." + +#: includes/common/payment-gateways/paymill.php:183 +#: includes/common/payment-gateways/simplify.php:87 +msgid "Public Key" +msgstr "Chave Pública" + +#: includes/common/payment-gateways/paymill.php:175 +#: includes/common/payment-gateways/simplify.php:94 +msgid "Private Key" +msgstr "Chave Privada" + +#: includes/common/payment-gateways/simplify.php:71 +msgid "Simplify helps merchants to accept online payments from Mastercard, Visa, American Express, Discover, JCB, and Diners Club cards. It's that simple. We offer a merchant account and payment gateway in a single, secure package so you can concentrate on what really matters to your business. Only supports USD currently." +msgstr "O Simplify ajuda os comerciantes a aceitarem pagamentos online com cartões Mastercard, Visa, American Express, Discover, JCB e Diners Club. É simples assim. Oferecemos uma conta de comerciante e um gateway de pagamento num pacote único e seguro, e você pode se concentrar no que realmente importa para seu negócio. Atualmente suporta apenas USD." + +#: includes/common/payment-gateways/wepay.php:267 +msgid "%1$s" +msgstr "%1$s" + +#: includes/common/payment-gateways/simplify.php:151 +msgid "The Simplify Token was not generated correctly. Please go back and try again." +msgstr "O Token Simplify não foi gerado corretamente. Por favor volte e tente novamente." + +#: includes/common/payment-gateways/simplify.php:18 +msgid "Simplify" +msgstr "Simplify" + +#: includes/common/payment-gateways/pin.php:255 +msgid "%1$s Card %2$s" +msgstr "%1$s Cartão %2$s" + +#: includes/common/payment-gateways/pin.php:211 +msgid "The PIN Token was not generated correctly. Please go back and try again." +msgstr "O Token PIN não foi gerado corretamente. Por favor volte e tente novamente." + +#: includes/common/payment-gateways/pin.php:187 +msgid "Selecting a currency other than currency supported by PIN may cause problems at checkout." +msgstr "Selecionando uma moeda não suportada pelo seu PIN pode causar problemas no check-out." + +#: includes/common/payment-gateways/pin.php:164 +msgid "You must login to PIN to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "Você precisa fazer login no PIN para obter as suas credenciais da API. Você pode inserir as chaves de teste, e quando estiver tudo pronto as chaves reais (live)." + +#: includes/common/payment-gateways/pin.php:158 +msgid "When in live mode PIN recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "Quando em modo live, o PIN recomenda o uso de um certificado SSL para o site onde será exibido o formulário de check-out." + +#: includes/common/payment-gateways/pin.php:45 +#: includes/common/payment-gateways/pin.php:286 +msgid "PIN" +msgstr "PIN" + +#: includes/common/payment-gateways/paypal-express.php:830 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer" +msgstr "Um pagamento foi revertido devido a uma solicitação do cliente ou algum outro tipo de extorno. Os fundos foram removidos do balanço da sua conta e retornaram ao comprador" + +#: includes/common/payment-gateways/paypal-chained-payments.php:534 +#: includes/common/payment-gateways/paypal-express.php:865 +msgid "The payment is pending" +msgstr "O pagamento está pendente" + +#: includes/common/payment-gateways/paymill.php:235 +msgid "The Paymill Token was not generated correctly. Please go back and try again." +msgstr "O Token do Paymill não foi gerado corretamente. Por favor volte e tente novamente." + +#: includes/common/payment-gateways/paymill.php:169 +msgid "You must login to Paymill to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "Você deve fazer login no Paymill para obter as suas credenciais da API. Você pode inserir as chaves de teste, e quando estiver tudo pronto as chaves reais (live)." + +#: includes/common/payment-gateways/paymill.php:45 +#: includes/common/payment-gateways/paymill.php:308 +msgid "Paymill" +msgstr "Paymill" + +#: includes/common/payment-gateways/paymill.php:90 +msgid "Invalid cardholder" +msgstr "Titular do Cartão Inválido" + +#: includes/common/payment-gateways/paymill.php:89 +msgid "Card is no longer valid or has expired" +msgstr "O cartão não é mais válido ou já expirou" + +#: includes/common/payment-gateways/paymill.php:88 +msgid "Please enter a valid Card CVC" +msgstr "Por favor informe um CVC válido do Cartão" + +#: includes/common/payment-gateways/paymill.php:87 +msgid "Please choose a valid Expiration Date." +msgstr "Por favor escolhea uma Data válida de Expiração." + +#: includes/common/payment-gateways/skrill.php:99 +#: includes/common/payment-gateways/skrill.php:100 +msgid "Skrill (Moneybookers)" +msgstr "Skrill (Moneybookers)" + +#: includes/common/shipping-modules/mp-weight-rate.php:24 +#: includes/common/shipping-modules/mp-weight-rate.php:292 +msgid "Weight Rate" +msgstr "Taxa por Peso" + +#: includes/common/shipping-modules/mp-usps.php:303 +msgid "USPS Offered International Services" +msgstr "Serviços Internacionais Oferecidos pelo USPS" + +#: includes/common/shipping-modules/mp-usps.php:270 +msgid "USPS Offered Domestic Services" +msgstr "Serviços Domésticos Oferecidos pelo USPS" + +#: includes/common/shipping-modules/mp-usps.php:264 +msgid "USPS Settings" +msgstr "Configurações do USPS" + +#: includes/common/shipping-modules/mp-usps.php:145 +msgid "Flat Rate Large" +msgstr "Custo Fixo Grande" + +#: includes/common/shipping-modules/mp-usps.php:140 +msgid "Flat Rate Medium 2" +msgstr "Custo Fixo Caixa Média 2" + +#: includes/common/shipping-modules/mp-usps.php:135 +msgid "Flat Rate Medium 1" +msgstr "Custo Fixo Caixa Média 1" + +#: includes/common/shipping-modules/mp-usps.php:130 +msgid "Flat Rate Small" +msgstr "Custo Fixo Caixa Pequena" + +#: includes/common/shipping-modules/mp-usps.php:118 +msgid "First Class International Parcel" +msgstr "Encomenda Internacional de Primeira Classe" + +#: includes/common/shipping-modules/mp-usps.php:114 +msgid "Priority Mail International Small Flat Rate Boxes" +msgstr "Correio Prioritário Internacional Caixa Pequena Preço Fixo" + +#: includes/common/shipping-modules/mp-usps.php:112 +msgid "Priority Mail International Medium Flat Rate Boxes" +msgstr "Correio Prioritário Internacional Caixa Média Preço Fixo" + +#: includes/common/shipping-modules/mp-usps.php:110 +msgid "Priority Mail International Large Flat Rate Boxes" +msgstr "Correio Prioritário Internacional Caixa Grande Preço Fixo" + +#: includes/common/shipping-modules/mp-usps.php:108 +msgid "Priority Mail International" +msgstr "Correio Prioritário Internacional" + +#: includes/common/shipping-modules/mp-usps.php:106 +msgid "Express Mail International Flat Rate Boxes" +msgstr "Correio Expresso Internacional Caixa Preço Fixo" + +#: includes/common/shipping-modules/mp-usps.php:104 +msgid "Express Mail International" +msgstr "Correio Expresso Internacional" + +#: includes/common/shipping-modules/mp-usps.php:98 +msgid "Library Mail" +msgstr "Correio de Biblioteca" + +#: includes/common/shipping-modules/mp-usps.php:96 +msgid "Media Mail" +msgstr "Correio de Mídia" + +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "First-Class Mail Parcel" +msgstr "Encomenda Postal de Primeira Classe" + +#: includes/common/shipping-modules/mp-usps.php:90 +msgid "Priority Mail Small Flat Rate Box" +msgstr "Correio Prioritário Caixa Pequena Preço Fixo" + +#: includes/common/shipping-modules/mp-usps.php:88 +msgid "Priority Mail Medium Flat Rate Box" +msgstr "Correio Prioritário Caixa Média Preço Fixo" + +#: includes/common/shipping-modules/mp-usps.php:86 +#: includes/common/shipping-modules/mp-usps.php:88 +#: includes/common/shipping-modules/mp-usps.php:90 +#: includes/common/shipping-modules/mp-usps.php:92 +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "(2-4 days)" +msgstr "(2-4 dias)" + +#: includes/common/shipping-modules/mp-usps.php:86 +msgid "Priority Mail Large Flat Rate Box" +msgstr "Correio Prioritário Caixa Grande Preço Fixo" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "(2-4) days" +msgstr "(2-4) dias" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "Priority Mail" +msgstr "Correio Prioritário" + +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "Express Mail Sunday/Holiday Delivery Flat Rate Boxes" +msgstr "Correio Expresso com Entrega Domingos/Feriados Caixa Preço Fixo" + +#: includes/common/shipping-modules/mp-usps.php:80 +msgid "Express Mail Flat Rate Boxes Hold For Pickup" +msgstr "Correio Expresso Caixas Preço Fixo Aguardando Retirada" + +#: includes/common/shipping-modules/mp-usps.php:78 +msgid "Express Mail Flat Rate Boxes" +msgstr "Correio Expresso Caixas Preço Fixo" + +#: includes/common/shipping-modules/mp-usps.php:76 +msgid "Express Mail Sunday/Holiday Delivery" +msgstr "Correio Expresso com Entrega aos Domingos/Feriados" + +#: includes/common/shipping-modules/mp-usps.php:74 +msgid "Express Mail Hold For Pickup" +msgstr "Correio Expresso Aguardando Retirada" + +#: includes/common/shipping-modules/mp-usps.php:72 +#: includes/common/shipping-modules/mp-usps.php:74 +#: includes/common/shipping-modules/mp-usps.php:76 +#: includes/common/shipping-modules/mp-usps.php:78 +#: includes/common/shipping-modules/mp-usps.php:80 +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "(1-2 days)" +msgstr "(1-2 dias)" + +#: includes/common/shipping-modules/mp-usps.php:72 +msgid "Express Mail" +msgstr "Correio Expresso" + +#: includes/common/shipping-modules/mp-usps.php:67 +#: includes/common/shipping-modules/mp-usps.php:902 +msgid "USPS" +msgstr "USPS" + +#: includes/common/shipping-modules/mp-ups.php:534 +msgid "UPS (beta)" +msgstr "UPS (beta)" + +#: includes/common/shipping-modules/mp-ups.php:166 +msgid "Required if using negotiated rates" +msgstr "Requerido se estiver usando taxas negociadas" + +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "Saver" +msgstr "Econômico" + +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "Worldwide Express Plus" +msgstr "Worldwide Express Plus" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "(Scheduled)" +msgstr "(Agendado)" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "Standard" +msgstr "Padrão" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "(2-5 Days)" +msgstr "(2-5 Dias)" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "Worldwide Expedited" +msgstr "Worldwide Expedited" + +#: includes/common/shipping-modules/mp-ups.php:54 +msgid "Worldwide Express" +msgstr "Worldwide Express" + +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "2nd Day Air AM" +msgstr "2nd Day Air AM" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "(1 Days)" +msgstr "(1 Dia)" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "Next Day Air Early AM" +msgstr "Next Day Air Early AM" + +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "Next Day Air Saver" +msgstr "Next Day Air Saver" + +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "3 Day Select" +msgstr "Escolha de 3 Dias" + +#: includes/common/shipping-modules/mp-ups.php:49 +msgid "Ground" +msgstr "Terrestre" + +#: includes/common/shipping-modules/mp-ups.php:48 +msgid "2nd Day Air" +msgstr "2nd Day Air" + +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "Next Day Air" +msgstr "Next Day Air" + +#: includes/admin/class-mp-orders-admin.php:475 +#: includes/common/shipping-modules/mp-ups.php:43 +msgid "UPS" +msgstr "UPS" + +#: includes/common/shipping-modules/mp-table-rate.php:27 +#: includes/common/shipping-modules/mp-table-rate.php:318 +msgid "Table Rate" +msgstr "Preço de Tabela" + +#: includes/common/shipping-modules/mp-table-quantity.php:71 +#: includes/common/shipping-modules/mp-table-quantity.php:77 +msgid "Shipping Cost: " +msgstr "Custo de Envio:" + +#: includes/common/shipping-modules/mp-table-quantity.php:70 +#: includes/common/shipping-modules/mp-table-quantity.php:76 +msgid "If quantity is greater than:" +msgstr "Se a quantidade for maior que:" + +#: includes/common/shipping-modules/mp-table-quantity.php:66 +msgid "Each band must be a higher price than the one above it." +msgstr "Cada faixa precisa ter um preço mais alto que a que está acima dela." + +#: includes/common/shipping-modules/mp-table-quantity.php:56 +msgid "Number of Bands:" +msgstr "Número de Faixas:" + +#: includes/common/shipping-modules/mp-table-quantity.php:53 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Each layer must be a higher quantity than the previous." +msgstr "Certifique-se de inserir um preço de envio para cada opção ou seus clientes poderão receber frete grátis. Cada camada precisa ter uma quantidade maior que a anterior." + +#: includes/common/shipping-modules/mp-table-quantity.php:51 +msgid "Table Quantity Settings" +msgstr "Configurações de Quantidade de Tabela" + +#: includes/common/shipping-modules/mp-table-quantity.php:31 +msgid "Table Quantity" +msgstr "Quantidade de Tabela" + +#: includes/common/shipping-modules/mp-flat-rate.php:135 +#: includes/common/shipping-modules/mp-table-rate.php:174 +#: includes/common/shipping-modules/mp-weight-rate.php:189 +msgid "European Union" +msgstr "União Européia" + +#: includes/common/shipping-modules/mp-flat-rate.php:123 +#: includes/common/shipping-modules/mp-table-rate.php:162 +#: includes/common/shipping-modules/mp-weight-rate.php:177 +msgid "United States" +msgstr "Estados Unidos" + +#: includes/common/shipping-modules/mp-flat-rate.php:111 +#: includes/common/shipping-modules/mp-table-rate.php:151 +#: includes/common/shipping-modules/mp-weight-rate.php:166 +msgid "In Country" +msgstr "Nacional" + +#: includes/common/shipping-modules/mp-flat-rate.php:146 +#: includes/common/shipping-modules/mp-table-rate.php:186 +#: includes/common/shipping-modules/mp-weight-rate.php:201 +msgid "International" +msgstr "Internacional" + +#: includes/common/shipping-modules/mp-flat-rate.php:101 +#: includes/common/shipping-modules/mp-table-rate.php:141 +#: includes/common/shipping-modules/mp-weight-rate.php:156 +msgid "Canada" +msgstr "Canadá" + +#: includes/common/shipping-modules/mp-flat-rate.php:92 +#: includes/common/shipping-modules/mp-table-rate.php:132 +#: includes/common/shipping-modules/mp-weight-rate.php:147 +msgid "Hawaii and Alaska" +msgstr "Havaí e Alasca" + +#: includes/common/shipping-modules/mp-flat-rate.php:83 +#: includes/common/shipping-modules/mp-table-rate.php:123 +#: includes/common/shipping-modules/mp-weight-rate.php:138 +msgid "Lower 48 States" +msgstr "48 Estados de Baixo" + +#: includes/common/shipping-modules/mp-flat-rate.php:64 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping." +msgstr "Certifique-se de inserir um preço de envio para cada opção ou os clientes poderão receber frete grátis." + +#: includes/common/shipping-modules/mp-flat-rate.php:25 +#: includes/common/shipping-modules/mp-flat-rate.php:223 +msgid "Flat Rate" +msgstr "Preço Fixo" + +#: includes/common/shipping-modules/mp-fedex.php:761 +msgid "FedEx (beta)" +msgstr "FedEx (beta)" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Centimeters" +msgstr "Centímetros" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Inches" +msgstr "Polegadas" + +#: includes/admin/class-mp-products-admin.php:1676 +#: includes/admin/class-mp-setup-wizard.php:547 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:166 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +msgid "Kilograms" +msgstr "Quilogramas" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:103 +msgid " %1$s - %2$s" +msgstr " %1$s - %2$s" + +#: includes/common/shipping-modules/mp-usps.php:358 +msgid "Max Weight per Box" +msgstr "Peso Máximo por Caixa" + +#: includes/common/shipping-modules/mp-usps.php:356 +msgid "Box Dimensions" +msgstr "Dimensões da Caixa" + +#: includes/common/shipping-modules/mp-usps.php:354 +msgid "Box Name" +msgstr "Nome da Caixa" + +#: includes/common/shipping-modules/mp-usps.php:344 +msgid "Total weight selects the box size used for calculating Shipping costs." +msgstr "O peso total seleciona o tamanho da caixa usada para calcular os custos de Envio." + +#: includes/common/shipping-modules/mp-usps.php:343 +msgid "For each box defined enter the maximum weight it can contain." +msgstr "Para cada caixa definida, informe o peso máximo que ela pode conter." + +#: includes/common/shipping-modules/mp-usps.php:341 +msgid "Enter your standard box sizes as LengthxWidthxHeight" +msgstr "Insira seus tamanhos padrão de caixa como ComprimentoxLarguraxAltura" + +#: includes/common/shipping-modules/mp-fedex.php:386 +#: includes/common/shipping-modules/mp-ups.php:193 +#: includes/common/shipping-modules/mp-usps.php:234 +#: includes/common/shipping-modules/mp-usps.php:338 +msgid "Standard Boxes and Weight Limits" +msgstr "Limites Padrão de Caixas e Pesos" + +#: includes/common/shipping-modules/mp-usps.php:328 +msgid "Handling Charge per Interntional Shipment" +msgstr "Taxa de Manuseio para Envios Internacionais" + +#: includes/common/shipping-modules/mp-usps.php:294 +msgid "Handling Charge per Domestic Shipment " +msgstr "Taxa de Manuseio para Envios Domésticos" + +#: includes/common/shipping-modules/mp-fedex.php:388 +#: includes/common/shipping-modules/mp-ups.php:196 +#: includes/common/shipping-modules/mp-usps.php:237 +msgid "Add Box" +msgstr "Adicionar Caixa" + +#: includes/common/shipping-modules/mp-fedex.php:63 +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "(Next Day)" +msgstr "(Próximo Dia)" + +#: includes/common/shipping-modules/mp-fedex.php:63 +msgid "Europe First International Priority" +msgstr "Internacional Prioritário Europe First" + +#: includes/common/shipping-modules/mp-fedex.php:62 +msgid "International Priority" +msgstr "Prioritário Internacional" + +#: includes/common/shipping-modules/mp-fedex.php:61 +#: includes/common/shipping-modules/mp-fedex.php:62 +#: includes/common/shipping-modules/mp-ups.php:54 +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "(1-3 Days)" +msgstr "(1-3 Dias)" + +#: includes/common/shipping-modules/mp-fedex.php:61 +msgid "International First" +msgstr "International First" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "(5 Days)" +msgstr "(5 Dias)" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "International Economy" +msgstr "Internacional Econômico" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "(2-7 Days)" +msgstr "(2-7 Dias)" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "Smart Post" +msgstr "Smart Post" + +#: includes/common/shipping-modules/mp-fedex.php:55 +#: includes/common/shipping-modules/mp-ups.php:49 +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "(1-5 Days)" +msgstr "(1-5 Dias)" + +#: includes/common/shipping-modules/mp-fedex.php:55 +msgid "Ground Home Delivery" +msgstr "Entrega Doméstica Terrestre" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "(1-7 Days)" +msgstr "(1-7 Dias)" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "Fedex Ground" +msgstr "Fedex Terrestre" + +#: includes/common/shipping-modules/mp-fedex.php:53 +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "(3 Days)" +msgstr "(3 Dias)" + +#: includes/common/shipping-modules/mp-fedex.php:53 +msgid "Fedex Express Saver" +msgstr "Fedex Express Econômico" + +#: includes/common/shipping-modules/mp-fedex.php:52 +#: includes/common/shipping-modules/mp-ups.php:48 +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "(2 Days)" +msgstr "(2 Dias)" + +#: includes/common/shipping-modules/mp-fedex.php:52 +msgid "Fedex 2 Day" +msgstr "Fedex 2 Dias" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "(2 Days am)" +msgstr "(2 Dias AM)" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "Fedex 2 Day AM" +msgstr "Fedex 2 Dias AM" + +#: includes/common/shipping-modules/mp-fedex.php:50 +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "(1 Day)" +msgstr "(1 Dia)" + +#: includes/common/shipping-modules/mp-fedex.php:50 +msgid "Standard Overnight" +msgstr "Overnight Padrão" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "(1 Day am )" +msgstr "(1 Dia AM)" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "Priority Overnight" +msgstr "Overnight Prioritário" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "(1 Day am)" +msgstr "(1 Dia AM)" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "First Overnight" +msgstr "First Overnight" + +#: includes/admin/class-mp-orders-admin.php:476 +#: includes/common/shipping-modules/mp-fedex.php:31 +msgid "FedEx" +msgstr "FedEx" + +#: includes/common/payment-gateways/paymill.php:270 +#: includes/common/payment-gateways/simplify.php:179 +#: includes/common/payment-gateways/stripe.php:365 +msgid "%1$s Card ending in %2$s - Expires %3$s" +msgstr "Cartão %1$s terminando em %2$s - Expira em %3$s" + +#: includes/common/payment-gateways/paymill.php:259 +#: includes/common/payment-gateways/pin.php:238 +#: includes/common/payment-gateways/simplify.php:171 +msgid "%s Store Purchase - Order ID: %s, Email: %s" +msgstr "Compra na Loja %s - ID do Pedido: %s - E-mail: %s" + +#: includes/common/payment-gateways/stripe.php:266 +msgid "You must login to Stripe to get your API credentials. You can enter your test credentials, then live ones when ready." +msgstr "Você precisa fazer login no Stripe para obter as suas credenciais da API. Você pode informar suas credenciais de teste, e posteriormente as de produção quando estiver pronto." + +#: includes/common/payment-gateways/stripe.php:261 +msgid "When in live mode Stripe recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "Quando em modo live o Stripe recomenda que você tenha um certificado SSL configurado para o site onde o formulário de check-out será exibido." + +#: includes/common/payment-gateways/stripe.php:311 +msgid "The Stripe Token was not generated correctly. Please go back and try again." +msgstr "O Token do Stripe não foi gerado corretamente. Por favor volte e tente novamente." + +#: includes/common/payment-gateways/class-mp-gateway-api.php:263 +#: includes/common/payment-gateways/paymill.php:122 +#: includes/common/payment-gateways/stripe.php:222 +msgid "Card Number" +msgstr "Número do Cartão" + +#: includes/common/payment-gateways/paymill.php:86 +msgid "Please enter a valid Credit Card Number." +msgstr "Por favor insira um Número de Cartão de Crédito válido" + +#: includes/common/payment-gateways/stripe.php:45 +#: includes/common/payment-gateways/stripe.php:433 +msgid "Stripe" +msgstr "Stripe" + +#: includes/common/payment-gateways/paypal-express.php:750 +msgid "Sets the background color for the payment page. By default, the color is white." +msgstr "Define a cor de fundo da página de pagamento. A cor padrão é branca." + +#: includes/common/payment-gateways/paypal-express.php:745 +msgid "Sets the background color for the header of the payment page. By default, the color is white." +msgstr "Define a cor de fundo do cabeçalho da página de pagamento. A cor padrão é branca." + +#: includes/common/payment-gateways/paypal-express.php:740 +msgid "Sets the border color around the header of the payment page. The border is a 2-pixel perimeter around the header space, which is 750 pixels wide by 90 pixels high. By default, the color is black." +msgstr "Define a cor da borda em torno do cabeçalho da página de pagamento. A borda é um perímetro de 2 pixels de largura em torno da área do cabeçalho, que possui 750 pixels de largura por 90 pixels de altura. A cor padrão é preta." + +#: includes/common/payment-gateways/paypal-express.php:735 +msgid "URL for an image you want to appear at the top left of the payment page. The image has a maximum size of 750 pixels wide by 90 pixels high. PayPal recommends that you provide an image that is stored on a secure (https) server. If you do not specify an image, the business name is displayed." +msgstr "URL de uma imagem que você quer que apareça no canto superior esquerdo da página de pagamento. A imagem pode ter no máximo 750 pixels de largura por 90 pixels de altura. O PayPal recomenda que você forneça uma imagem que esteja armazenada em um servidor seguro (https). Se você não especificar uma imagem o nome da empresa será exibido." + +#: includes/common/payment-gateways/paypal-express.php:857 +#: includes/common/payment-gateways/paypal-express.php:1131 +msgid "The payment is pending because it is part of an order that has been authorized but not settled." +msgstr "O pagamento está pendente porque é parte de um pedido que foi autorizado mas não confirmado." + +#: includes/common/payment-gateways/paypal-express.php:853 +#: includes/common/payment-gateways/paypal-express.php:1127 +msgid "The payment is pending because it has been authorized but not settled. You must capture the funds first." +msgstr "O pagamento está pendente porque ele foi autorizado mas não foi confirmado. Primeiro você precisa capturar os fundos." + +#: includes/common/payment-gateways/paypal-express.php:847 +#: includes/common/payment-gateways/paypal-express.php:1120 +msgid "You denied the payment when it was marked as pending." +msgstr "Você negou o pagamento quando ele foi marcado como pendente." + +#: includes/common/payment-gateways/paypal-express.php:837 +#: includes/common/payment-gateways/paypal-express.php:1108 +msgid "A reversal has occurred on this transaction due to an unknown reason." +msgstr "Ocorreu um estorno nesta transação devido a uma razão desconhecida." + +#: includes/common/payment-gateways/paypal-express.php:836 +#: includes/common/payment-gateways/paypal-express.php:1107 +msgid "A reversal has occurred on this transaction because you have given the customer a refund." +msgstr "Ocorreu um estorno nesta transação porque você reembolsou o cliente." + +#: includes/common/payment-gateways/paypal-express.php:835 +#: includes/common/payment-gateways/paypal-express.php:1106 +msgid "A reversal has occurred on this transaction due to a complaint about the transaction from your customer." +msgstr "Ocorreu um estorno nesta transação devido a uma queixa sobre a transação feita pelo seu cliente." + +#: includes/common/payment-gateways/paypal-express.php:834 +#: includes/common/payment-gateways/paypal-express.php:1105 +msgid "A reversal has occurred on this transaction due to your customer triggering a money-back guarantee." +msgstr "Ocorreu um estorno nesta transação devido ao acionamento de uma garantia de devolução de dinheiro pelo cliente." + +#: includes/common/payment-gateways/paypal-express.php:833 +#: includes/common/payment-gateways/paypal-express.php:1104 +msgid "A reversal has occurred on this transaction due to a chargeback by your customer." +msgstr "Ocorreu um estorno nesta transação devido a uma solicitação feita pelo seu cliente." + +#: includes/common/payment-gateways/paypal-express.php:1101 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer:" +msgstr "O pagamento foi revertido devido a um estorno ou outro tipo de reversão. Os fundos foram removidos da sua conta e retornaram para o comprador: " + +#: includes/common/payment-gateways/paypal-express.php:826 +#: includes/common/payment-gateways/paypal-express.php:1097 +msgid "A payment has been accepted." +msgstr "Um pagamento foi aceito." + +#: includes/common/payment-gateways/paypal-express.php:818 +#: includes/common/payment-gateways/paypal-express.php:1087 +msgid "The transaction has not terminated, e.g. an authorization may be awaiting completion." +msgstr "A transação não foi terminada, ex.: uma autorização pode estar aguardando a conclusão." + +#: includes/common/payment-gateways/payfast.php:531 +#: includes/common/payment-gateways/paypal-express.php:810 +#: includes/common/payment-gateways/paypal-express.php:1077 +msgid "The payment has failed. This happens only if the payment was made from your customer's bank account." +msgstr "O pagamento falhou. Isso acontece apenas se o pagamento foi feito a partir da conta bancária do seu cliente." + +#: includes/common/payment-gateways/paypal-express.php:806 +#: includes/common/payment-gateways/paypal-express.php:1072 +msgid "An authorization for this transaction has been voided." +msgstr "Uma autorização para esta transação foi anulada." + +#: includes/common/payment-gateways/paypal-express.php:802 +#: includes/common/payment-gateways/paypal-express.php:1067 +msgid "The authorization period for this payment has been reached." +msgstr "O período de autorização para este pagamento foi atingido." + +#: includes/common/payment-gateways/paypal-express.php:798 +#: includes/common/payment-gateways/paypal-express.php:1062 +msgid "A reversal has been canceled; for example, when you win a dispute and the funds for the reversal have been returned to you." +msgstr "Um estorno foi cancelado; por exemplo, quando você ganha uma disputa e os fundos para a reversão tiverem retornado para você." + +#: includes/common/payment-gateways/paypal-express.php:499 +#: includes/common/payment-gateways/paypal-express.php:1163 +msgid "PayPal Express Checkout" +msgstr "Check-out Expresso do PayPal" + +#: includes/common/payment-gateways/paypal-chained-payments.php:798 +msgid "Gateway Settings Page Message" +msgstr "Mensagem da Página de Configurações do Gateway" + +#: includes/common/payment-gateways/paypal-express.php:725 +msgid "Signature" +msgstr "Assinatura" + +#: includes/common/payment-gateways/eway31.php:506 +#: includes/common/payment-gateways/eway31.php:533 +#: includes/common/shipping-modules/mp-fedex.php:276 +msgid "API Password" +msgstr "Senha da API" + +#: includes/common/payment-gateways/paypal-chained-payments.php:773 +msgid "Enter a percentage of all store sales to collect as a fee. Decimals allowed." +msgstr "Insira um percentual de vendas de todas as lojas a coletar como uma taxa. Decimais permitidos." + +#: includes/common/payment-gateways/paypal-chained-payments.php:757 +msgid "Using PayPal Chained Payments allows you as the multisite network owner to collect a predefined fee or percentage of all sales on network MarketPress stores! This is invisible to the customers who purchase items in a store, and all PayPal fees will be charged to the store owner. To use this option you must create API credentials, and you should make all other gateways unavailable or limited above." +msgstr "Usando Pagamentos Encadeados PayPal permite a você, como proprietário de uma rede multisite, coletar uma porcentagem pré-definida de todas as vendas na rede de lojas MarketPress! Isso é invisível aos clientes que comprarem ítens em uma loja, e todas as taxas PayPal serão cobradas do proprietário da loja. Para usar esta opção você deve criar credenciais da API, e deve tornar todos os outros gateways indisponíveis ou limitados acima." + +#: includes/common/payment-gateways/paypal-chained-payments.php:338 +msgid "Please be aware that we will deduct a ?% fee from the total of each transaction in addition to any fees PayPal may charge you. If for any reason you need to refund a customer for an order, please contact us with a screenshot of the refund receipt in your PayPal history as well as the Transaction ID of our fee deduction so we can issue you a refund. Thank you!" +msgstr "Por favor lembre-se que iremos deduzir uma taxa de ?% do total de cada transação além de quaisquer taxas que o PayPal possa cobrar de você. Se por alguma razão você precisar estornar o pedido de algum cliente, por favor entre em contato com um screenshot do recibo de estorno no seu histórico do PayPal além do ID da Transação da dedução da nossa taxa, para que possamos reembolsar você. Obrigado!" + +#: includes/common/payment-gateways/paypal-chained-payments.php:698 +#: includes/common/payment-gateways/paypal-express.php:149 +msgid "There was a problem connecting to PayPal. Please try again." +msgstr "Houve um problema conectando ao PayPal. Por favor tente novamente." + +#: includes/common/payment-gateways/paypal-chained-payments.php:470 +#: includes/common/payment-gateways/paypal-express.php:1053 +msgid "There was a problem verifying the IPN string with PayPal. Please try again." +msgstr "Houve um problema verificando a string IPN junto ao PayPal. Por favor tente novamente." + +#: includes/common/payment-gateways/paypal-chained-payments.php:310 +msgid "There was a problem connecting to PayPal to check the status of your purchase. Please check the status of your order here »" +msgstr "Houve um problema conectando ao PayPal para verificar o status da sua compra. Por favor verifique aqui o status do seu pedido »" + +#: includes/common/payment-gateways/payfast.php:539 +#: includes/common/payment-gateways/paypal-chained-payments.php:254 +#: includes/common/payment-gateways/paypal-express.php:1139 +msgid "The payment is pending." +msgstr "O pagamento está pendente." + +#: includes/common/payment-gateways/paypal-chained-payments.php:251 +#: includes/common/payment-gateways/paypal-chained-payments.php:531 +#: includes/common/payment-gateways/paypal-express.php:862 +#: includes/common/payment-gateways/paypal-express.php:1136 +msgid "The payment is pending for an unknown reason. For more information, contact PayPal customer service." +msgstr "O pagamento está pendente por uma razão desconhecida. Para mais informaçõesm entre em contato com o serviço ao cliente do PayPal." + +#: includes/common/payment-gateways/paypal-chained-payments.php:250 +#: includes/common/payment-gateways/paypal-chained-payments.php:530 +#: includes/common/payment-gateways/paypal-express.php:861 +#: includes/common/payment-gateways/paypal-express.php:1135 +msgid "The payment is pending because you are not yet verified. You must verify your account before you can accept this payment." +msgstr "O pagamento está pendente porque você ainda não foi verificado. Você deve verificar sua conta antes de poder aceitar este pagamento." + +#: includes/common/payment-gateways/paypal-chained-payments.php:249 +#: includes/common/payment-gateways/paypal-chained-payments.php:529 +#: includes/common/payment-gateways/paypal-express.php:860 +#: includes/common/payment-gateways/paypal-express.php:1134 +msgid "The payment is pending because it was made via credit card and you must upgrade your account to Business or Premier status in order to receive the funds. It can also mean that you have reached the monthly limit for transactions on your account." +msgstr "O pagamento está pendente porque ele foi feito com cartão de crédito e você precisa atualizar sua conta para o status Business ou Premier para poder receber os fundos. Isso também pode significar que você atingiu o limite mensal de transações da sua conta." + +#: includes/common/payment-gateways/paypal-chained-payments.php:248 +#: includes/common/payment-gateways/paypal-chained-payments.php:528 +#: includes/common/payment-gateways/paypal-express.php:859 +#: includes/common/payment-gateways/paypal-express.php:1133 +msgid "The payment is pending because it was made to an email address that is not yet registered or confirmed." +msgstr "O pagamento está pendente porque ele foi feito por um endereço de e-mail que ainda não está registrado ou confirmado." + +#: includes/common/payment-gateways/paypal-chained-payments.php:247 +#: includes/common/payment-gateways/paypal-chained-payments.php:527 +#: includes/common/payment-gateways/paypal-express.php:858 +#: includes/common/payment-gateways/paypal-express.php:1132 +msgid "The payment is pending while it is being reviewed by PayPal for risk." +msgstr "O pagamento está pendente enquanto passa por análise de risco do PayPal." + +#: includes/common/payment-gateways/paypal-chained-payments.php:246 +#: includes/common/payment-gateways/paypal-chained-payments.php:526 +#: includes/common/payment-gateways/paypal-express.php:856 +#: includes/common/payment-gateways/paypal-express.php:1130 +msgid "You do not have a balance in the currency sent, and you do not have your Payment Receiving Preferences set to automatically convert and accept this payment. You must manually accept or deny this payment." +msgstr "Você não tem saldo na moeda enviada, e você não definiu suas Preferências de Recebimento de Pagamentos para converter automaticamente e aceitar este pagamento. Você precisa aceitar ou rejeitar manualmente este pagamento." + +#: includes/common/payment-gateways/paypal-chained-payments.php:245 +#: includes/common/payment-gateways/paypal-chained-payments.php:525 +#: includes/common/payment-gateways/paypal-express.php:855 +#: includes/common/payment-gateways/paypal-express.php:1129 +msgid "The payment is pending because you hold a non-U.S. account and do not have a withdrawal mechanism. You must manually accept or deny this payment from your Account Overview." +msgstr "O pagamento está pendente porque você tem uma conta que não é dos EUA e não tem um mecanismo de saque. Você precisa aceitar ou negar esse pagamento manualmente a partir da Visão Geral da Conta." + +#: includes/common/payment-gateways/paypal-chained-payments.php:244 +#: includes/common/payment-gateways/paypal-chained-payments.php:524 +#: includes/common/payment-gateways/paypal-express.php:854 +#: includes/common/payment-gateways/paypal-express.php:1128 +msgid "The payment is pending because it was made by an eCheck that has not yet cleared." +msgstr "O pagamento está pendente porque ele foi feito por um e-Cheque que ainda não foi descontado." + +#: includes/common/payment-gateways/paypal-chained-payments.php:243 +#: includes/common/payment-gateways/paypal-chained-payments.php:523 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences section of your Profile." +msgstr "O pagamento está pendente porque seu cliente não incluiu um endereço de entrega confirmado e suas Preferências de Pagamento e Recebimento estão definidas de forma que você precisa aceitar ou negar manualmente cada pedido. Para alterar suas preferências, vá até a seção de Preferências do seu Perfil." + +#: includes/common/payment-gateways/paypal-chained-payments.php:236 +#: includes/common/payment-gateways/paypal-chained-payments.php:516 +msgid "The transaction was rejected by the receiver (you)." +msgstr "A transação foi rejeitada pelo receptor (você)." + +#: includes/common/payment-gateways/paypal-chained-payments.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:510 +#: includes/common/payment-gateways/paypal-express.php:843 +#: includes/common/payment-gateways/paypal-express.php:1115 +msgid "You refunded the payment." +msgstr "Você reembolsou o pagamento." + +#: includes/common/payment-gateways/paypal-chained-payments.php:224 +#: includes/common/payment-gateways/paypal-chained-payments.php:504 +msgid "The transaction is in progress." +msgstr "A transação está em andamento." + +#: includes/common/payment-gateways/paypal-chained-payments.php:212 +#: includes/common/payment-gateways/paypal-chained-payments.php:491 +#: includes/common/payment-gateways/paypal-express.php:814 +#: includes/common/payment-gateways/paypal-express.php:1082 +msgid "The payment has been partially refunded." +msgstr "O pagamento foi parcialmente reembolsado." + +#: includes/common/payment-gateways/paypal-chained-payments.php:202 +#: includes/common/payment-gateways/paypal-chained-payments.php:481 +msgid "PayPal balance, Credit Card, or Instant Transfer" +msgstr "Saldo do PayPal, Cartão de Crédito ou Transferência Eletrônica" + +#: includes/common/payment-gateways/paypal-chained-payments.php:177 +msgid "There was a problem connecting to PayPal to setup your purchase. Please try again." +msgstr "Houve um problema conectando ao PayPal para configurar sua compra. Por favor tente novamente." + +#: includes/common/payment-gateways/paypal-chained-payments.php:122 +msgid "Your PayPal transaction has been canceled." +msgstr "Sua transação do PayPal foi cancelada." + +#: includes/common/payment-gateways/paypal-chained-payments.php:50 +#: includes/common/payment-gateways/paypal-chained-payments.php:53 +#: includes/common/payment-gateways/paypal-chained-payments.php:732 +#: includes/common/payment-gateways/paypal-express.php:500 +#: includes/common/payment-gateways/paypal-express.php:938 +msgid "PayPal" +msgstr "PayPal" + +#: includes/common/payment-gateways/paypal-chained-payments.php:48 +#: includes/common/payment-gateways/paypal-chained-payments.php:730 +#: includes/common/payment-gateways/paypal-chained-payments.php:756 +#: includes/common/payment-gateways/paypal-chained-payments.php:873 +msgid "PayPal Chained Payments" +msgstr "Pagamentos Encadeados do PayPal" + +#: includes/common/payment-gateways/paypal-payflow.php:59 +#: includes/common/payment-gateways/paypal-payflow.php:467 +msgid "PayPal Payflow Pro" +msgstr "PayPal Payflow Pro" + +#: includes/common/payment-gateways/skrill.php:378 +msgid "Chargeback - A payment was reversed due to a chargeback. The funds have been removed from your account balance and returned to the buyer." +msgstr "Estorno - Um pagamento foi revertido devido a um estorno. Os recursos foram removidos do saldo de sua conta e retornaram ao comprador." + +#: includes/common/payment-gateways/skrill.php:372 +msgid "Failed - The Credit Card or Direct Debit transaction was declined." +msgstr "Falhou - A transação do Cartão de Crédito ou Débito foi recusada." + +#: includes/common/payment-gateways/_payway.php:354 +#: includes/common/payment-gateways/skrill.php:366 +msgid "Cancelled - The payment was cancelled manually by the sender in their online account history or was auto-cancelled after 14 days pending." +msgstr "Cancelado - O pagamento foi cancelado manualmente pelo remetente em seu histório online da conta ou foi cancelado automaticamente após 14 dias pendente." + +#: includes/common/payment-gateways/skrill.php:360 +msgid "Pending - The payment is pending. It can take 2-3 days for bank transfers to complete." +msgstr "Pendente - O Pagamento está pendente. Pode levar 2-3 dias para a trasferência bancária completar." + +#: includes/common/payment-gateways/_payway.php:349 +#: includes/common/payment-gateways/skrill.php:354 +msgid "Processed - The payment has been completed, and the funds have been added successfully to your Moneybookers account balance." +msgstr "Processado - O pagamento foi completado, e os fundos foram adicionados com sucesso ao saldo da sua conta Moneybookers." + +#: includes/common/payment-gateways/skrill.php:189 +msgid "Shown to the customer on the confirmation screen - the end step of the process - a note, confirmation number, or any other message. Line breaks <br> may be used for longer messages." +msgstr "Apresentado ao cliente na tela de confirmação - o passo final do processo - uma nota, o número de confirmação, ou qualquer outra mensagem. Quebras de linha <br> podem ser usadas para mensagens mais longas." + +#: includes/common/payment-gateways/skrill.php:188 +msgid "Confirmation Note (optional)" +msgstr "Nota de Confirmação (opcional)" + +#: includes/common/payment-gateways/skrill.php:183 +msgid "The URL of the logo which you would like to appear at the top of the payment form. The logo must be accessible via HTTPS otherwise it will not be shown. For best integration results we recommend that you use a logo with dimensions up to 200px in width and 50px in height." +msgstr "A URL da logomarca que deseja que apareça no topo do formulário de pagamento. A logo deve ser acessível via HTTPS, caso contrário ela não será exibida. Para melhores resultados na integração nós recomendamos que você use uma logomarca com dimensões até 200px de largura e 50px de altura." + +#: includes/common/payment-gateways/skrill.php:182 +msgid "Logo Image (optional)" +msgstr "Imagem da Logo (opcional)" + +#: includes/common/payment-gateways/skrill.php:177 +msgid "The name of this store, which will be shown on the gateway. If no value is submitted, the account email will be shown as the recipient of the payment." +msgstr "O nome desta loja, que será exibido no gateway. Se nenhum texto for enviado, o e-mail da conta será exibido como o do destinatário do pagamento." + +#: includes/common/payment-gateways/skrill.php:176 +msgid "Merchant Name (optional)" +msgstr "Nome do Comerciante (opcional)" + +#: includes/common/payment-gateways/skrill.php:165 +msgid "Language" +msgstr "Idioma" + +#: includes/common/payment-gateways/2checkout.php:368 +#: includes/common/payment-gateways/authorizenet-aim.php:262 +#: includes/common/payment-gateways/eway.php:363 +#: includes/common/payment-gateways/eway31.php:471 +#: includes/common/payment-gateways/mollie.php:91 +#: includes/common/payment-gateways/paymill.php:193 +#: includes/common/payment-gateways/paypal-chained-payments.php:356 +#: includes/common/payment-gateways/paypal-express.php:688 +#: includes/common/payment-gateways/paypal-payflow.php:432 +#: includes/common/payment-gateways/pin.php:186 +#: includes/common/payment-gateways/skrill.php:152 +#: includes/common/payment-gateways/stripe.php:288 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:104 +msgid "Currency" +msgstr "Moeda" + +#: includes/common/payment-gateways/2checkout.php:359 +#: includes/common/payment-gateways/skrill.php:143 +msgid "Secret Word" +msgstr "Palavra Secreta" + +#: includes/common/payment-gateways/skrill.php:261 +msgid "Order ID:" +msgstr "ID do Pedido:" + +#: includes/common/payment-gateways/skrill.php:234 +msgid "Complete Checkout" +msgstr "Completar o Check-out" + +#: includes/common/payment-gateways/skrill.php:204 +msgid "Your Moneybookers transaction has been canceled." +msgstr "A sua transação Moneybookers foi cancelada." + +#: includes/common/payment-gateways/manual-payments.php:155 +msgid "This is the email text to send to those who have made manual payment checkouts. You should include your manual payment instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "Este é o texto do e-mail a ser enviado àqueles que realizarem o check-out manual de pagamento. Você deve incluir aqui as suas instruções de pagamento manual. Ele sobrepuja o e-mail padrão de check-out de pedido. Os códigos serão substituídos com os detalhes do pedido: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." + +#: includes/common/payment-gateways/_payway.php:257 +#: includes/common/payment-gateways/manual-payments.php:128 +msgid "Record payments manually, such as by Cash, Check, or EFT." +msgstr "Registrar manualmente os pagamentos, como os feitos em Dinheiro, Cheque ou TED/DOC." + +#: includes/common/payment-gateways/manual-payments.php:71 +msgid "Manual/Invoice" +msgstr "Manual/Fatura" + +#: includes/admin/class-mp-setup-wizard.php:648 +#: includes/common/payment-gateways/manual-payments.php:35 +#: includes/common/payment-gateways/manual-payments.php:36 +msgid "Manual Payment" +msgstr "Pagamento Manual" + +#: includes/common/payment-gateways/manual-payments.php:34 +#: includes/common/payment-gateways/manual-payments.php:163 +msgid "Manual Payments" +msgstr "Pagamentos Manuais" + +#: includes/common/payment-gateways/_ideal.php:288 +msgid "iDEAL Simulator (for testing)" +msgstr "Simulador iDEAL (para testes)" + +#: includes/common/payment-gateways/_ideal.php:287 +msgid "ABN Amro Bank" +msgstr "ABN Amro Bank" + +#: includes/common/payment-gateways/_ideal.php:286 +msgid "Friesland Bank" +msgstr "Friesland Bank" + +#: includes/common/payment-gateways/_ideal.php:285 +msgid "Rabobank" +msgstr "Rabobank" + +#: includes/common/payment-gateways/_ideal.php:284 +msgid "ING Bank" +msgstr "Banco ING" + +#: includes/common/payment-gateways/_ideal.php:279 +msgid "Bank" +msgstr "Banco" + +#: includes/common/payment-gateways/_ideal.php:270 +msgid "To make it easier to pay for online products and services, the Dutch banking community has developed the iDEAL online payment method. iDEAL allows online payments to be made using online banking in EUR only." +msgstr "Para tornar mais fácil pagar por produtos e serviços on-line, a comunidade bancária holandesa desenvolveu o método de pagamento online iDEAL. Ele permite pagamentos online serem feitos usando apenas o sistema bancário online in EUR." + +#: includes/common/payment-gateways/_ideal.php:247 +#: includes/common/payment-gateways/_payway.php:199 +#: includes/common/payment-gateways/manual-payments.php:68 +msgid "Invoiced" +msgstr "Faturado" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1016 +msgid "Coupon" +msgstr "Cupom" + +#: includes/common/payment-gateways/_ideal.php:77 +#: includes/common/payment-gateways/_ideal.php:250 +#: includes/common/payment-gateways/_payway.php:202 +msgid "iDEAL" +msgstr "iDEAL" + +#: includes/common/payment-gateways/_ideal.php:76 +msgid "iDEAL (beta)" +msgstr "iDEAL (beta)" + +#: includes/common/payment-gateways/payfast.php:327 +msgid "Merchant Key" +msgstr "Chave de Comerciante" + +#: includes/common/payment-gateways/_ideal.php:293 +#: includes/common/payment-gateways/_payway.php:302 +#: includes/common/payment-gateways/payfast.php:324 +msgid "Merchant ID" +msgstr "ID de Comerciante" + +#: includes/common/payment-gateways/eway31.php:462 +msgid "eWay Rapid 3.0 Payments lets merchants recieve credit card payments through eWay without need for users to leave the shop. Note this gateway requires a valid SSL certificate configured for this site." +msgstr "O eWay Rapid 3.0 Payments possibilita aos comerciantes receberem pagamentos com cartão de crédito pelo eWay sem que os usuários deixem a loja. Note que esse gateway requer um certificado SSL válido configurado para este site." + +#: includes/common/payment-gateways/eway.php:452 +msgid "There was a problem connecting to eWay. Please try again." +msgstr "Houve um problema conectando-se ao eWay. Por favor tente novamente." + +#: includes/common/payment-gateways/eway.php:432 +#: includes/common/payment-gateways/eway.php:437 +msgid "The url of the image can be hosted on your website and pass the secure https:// path of the image to be displayed at the top of the website. This is the second image block on the webpage and is restricted to 960px X 65px. A default secure image is used if none is supplied." +msgstr "A url da imagem pode ser hospedada em seu website e passar o caminho seguro https:// da imagem a ser exibida no topo do website. Este é o segundo bloco de imagem na página web e é restrito a 960px X 65px. Uma imagem segura padrão será usada se nenhuma for informada." + +#: includes/common/payment-gateways/eway.php:431 +#: includes/common/payment-gateways/eway.php:436 +msgid "Company Logo (optional)" +msgstr "Logo da Empresa (opcional)" + +#: includes/common/payment-gateways/eway.php:427 +msgid "The page footer text can be customised and populated below the customer's order details. Useful for contact information." +msgstr "O texto do rodapé da página pode ser personalizado e populado abaixo dos detalhes do pedido do cliente. Útil para informações de contato." + +#: includes/common/payment-gateways/eway.php:426 +msgid "Page Footer (optional)" +msgstr "Rodapé da Página (opcional)" + +#: includes/common/payment-gateways/eway.php:421 +msgid "Page Description (optional)" +msgstr "Descrição da Página (opcional)" + +#: includes/common/payment-gateways/eway.php:417 +#: includes/common/payment-gateways/eway.php:422 +msgid "This value is used to populate the browsers title bar at the top of the screen." +msgstr "Este valor é usado para popular a barra de título do navegador no topo da tela." + +#: includes/common/payment-gateways/eway.php:416 +msgid "Page Title (optional)" +msgstr "Título da Página (opcional)" + +#: includes/common/payment-gateways/eway.php:412 +msgid "This will be displayed as the company the customer is purchasing from, including this is highly recommended." +msgstr "Isso será exibido como a empresa da qual o cliente está comprando, incluir isso é altamente recomendável." + +#: includes/common/payment-gateways/eway.php:411 +msgid "Company Name" +msgstr "Nome da Empresa" + +#: includes/common/payment-gateways/eway.php:394 +msgid "Customer ID" +msgstr "ID do Comprador" + +#: includes/common/payment-gateways/eway.php:381 +#: includes/common/payment-gateways/eway31.php:488 +msgid "Live API Credentials" +msgstr "Credenciais Live API" + +#: includes/common/payment-gateways/eway.php:371 +#: includes/common/payment-gateways/eway31.php:479 +msgid "Gateway Mode" +msgstr "Modo do Gateway" + +#: includes/common/payment-gateways/eway.php:354 +msgid "The Hosted Page is a webpage hosted on eWAY's side eliminating the need for merchants to capture, transmit or store credit card numbers. At the checkout time the merchant automatically redirects the customer to the Hosted Page where they would enter their details and have the transaction processed. Upon completion of the transaction the customer is redirected back to the MarketPress checkout confirmation page." +msgstr "A Página Hospedada é uma página web hospedada no eWay, eliminando a necessidade dos comerciantes capturarem, transmitirem ou armazenarem números de cartão de crédito. No momento do check-out o comerciante redireciona automaticamente o comprador à Página Hospedada onde ele insere seus detalhes e a transação é processada. Após a transação ser completada, o comprador é redirecionado de volta à página de confirmação de check-out do MarketPress." + +#: includes/common/payment-gateways/eway.php:314 +msgid "There was a problem with your credit card information: %s" +msgstr "Houve um problema com as informações do seu cartão de crédito: %s" + +#: includes/common/payment-gateways/eway.php:300 +msgid "Paid - The card has been processed - %s" +msgstr "Pago - O cartão foi processado - %s" + +#: includes/common/payment-gateways/eway.php:253 +msgid "There was a problem setting up the transaction with eWay: %s" +msgstr "Houve um problema configurando a transação com o eWay: %s" + +#: includes/common/payment-gateways/eway.php:245 +#: includes/common/payment-gateways/eway.php:289 +msgid "There was a problem parsing the response from eWay. Please try again." +msgstr "Houve um problema recebendo a resposta do eWay. Por favor tente novamente." + +#: includes/common/payment-gateways/_ideal.php:159 +#: includes/common/payment-gateways/eway.php:189 +#: includes/common/payment-gateways/paypal-chained-payments.php:634 +#: includes/common/payment-gateways/paypal-express.php:322 +#: includes/common/payment-gateways/paypal-express.php:473 +msgid "%s Store Purchase - Order ID: %s" +msgstr "Compra na Loja %s - ID do Pedido: %s" + +#: includes/common/payment-gateways/eway.php:147 +#: includes/common/payment-gateways/eway.php:462 +msgid "eWay Shared Payments" +msgstr "Pagamentos Compartilhados do eWay" + +#: includes/common/payment-gateways/_cubepoints.php:214 +msgid "This is the email text to send to those who have made CubePoints checkouts. You should include your CubePoints instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "Este é o texto do e-mail enviado àqueles que fizeram check-outs com CubePoints. Você deve incluir aqui as instruções para CubePoints. Isso sobrepuja o e-mail padrão de check-out de pedido. Estes códigos serão substituídos com os detalhes do pedido: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. HTML não é permitido." + +#: includes/common/payment-gateways/_cubepoints.php:212 +#: includes/common/payment-gateways/free_orders.php:188 +#: includes/common/payment-gateways/manual-payments.php:154 +msgid "Order Confirmation Email" +msgstr "E-mail de Cofirmação do Pedido" + +#: includes/common/payment-gateways/_cubepoints.php:207 +#: includes/common/payment-gateways/manual-payments.php:149 +msgid "Confirmation User Instructions" +msgstr "Instruções de Confirmação ao Usuário" + +#: includes/common/payment-gateways/_cubepoints.php:202 +#: includes/common/payment-gateways/manual-payments.php:144 +msgid "User Instructions" +msgstr "Instruções ao Usuário" + +#: includes/common/payment-gateways/_cubepoints.php:198 +#: includes/common/payment-gateways/free_orders.php:170 +#: includes/common/payment-gateways/manual-payments.php:139 +msgid "Enter a public name for this payment method that is displayed to users - No HTML" +msgstr "Insira um nome público para este método de pagamento, que será exibido aos usuários - Nenhum HTML" + +#: includes/admin/class-mp-orders-admin.php:532 +#: includes/common/payment-gateways/_cubepoints.php:196 +#: includes/common/payment-gateways/free_orders.php:169 +#: includes/common/payment-gateways/manual-payments.php:138 +msgid "Method Name" +msgstr "Nome do Método" + +#: includes/common/payment-gateways/_cubepoints.php:187 +msgid "Accept CubePoints as payment(requires the CubePoints plugin)." +msgstr "Aceitar CubePoints como pagamento (requer o plugin CubePoints)." + +#: includes/common/payment-gateways/_cubepoints.php:140 +msgid "Sorry, but you do not appear to have enough points to complete this purchase!" +msgstr "Desculpe mas você parece não ter pontos suficientes para completar esta compra!" + +#: includes/common/payment-gateways/_cubepoints.php:124 +msgid "%s Store Purchase" +msgstr "Compra da Loja %s" + +#: includes/common/payment-gateways/_cubepoints.php:79 +#: includes/common/payment-gateways/_cubepoints.php:171 +msgid "Your current points: " +msgstr "Seus pontos atuais:" + +#: includes/common/payment-gateways/_cubepoints.php:133 +#: includes/common/payment-gateways/_cubepoints.php:197 +msgid "CubePoints" +msgstr "CubePoints" + +#: includes/common/payment-gateways/authorizenet-aim.php:344 +msgid "Authorize.net AIM Checkout" +msgstr "Check-out AIM do Authorize.net" + +#: includes/common/payment-gateways/authorizenet-aim.php:331 +msgid "Custom API URL" +msgstr "URL Personalizada da API" + +#: includes/common/payment-gateways/authorizenet-aim.php:332 +msgid "Many other gateways have Authorize.net API emulators. To use one of these gateways input their API post url here." +msgstr "Muitos outros gateways possuem emuladores da API Authorize.net. Para usar um desses gateways informe aqui a sua URL de post da API." + +#: includes/common/payment-gateways/authorizenet-aim.php:322 +msgid "Request a delimited response from the payment gateway." +msgstr "Solicitar uma resposta delimitada do gateway de pagamento." + +#: includes/common/payment-gateways/authorizenet-aim.php:316 +msgid "Security: MD5 Hash" +msgstr "Segurança: Hash MD5" + +#: includes/common/payment-gateways/authorizenet-aim.php:317 +msgid "The payment gateway generated MD5 hash value that can be used to authenticate the transaction response. Not needed because responses are returned using an SSL connection." +msgstr "O valor do hash MD5 gerado pelo gateway de pagamento pode ser usado para autenticar a resposta da transação. Não é necessário pois as respostas são retornadas usando uma conexão SSL." + +#: includes/common/payment-gateways/authorizenet-aim.php:306 +msgid "Customer Receipt Email Footer" +msgstr "Rodapé do E-mail do Recibo ao Cliente" + +#: includes/common/payment-gateways/authorizenet-aim.php:296 +msgid "Customer Receipt Email Header" +msgstr "Cabeçalho do E-mail do Recibo ao Cliente" + +#: includes/common/payment-gateways/authorizenet-aim.php:297 +#: includes/common/payment-gateways/paypal-payflow.php:446 +msgid "This text will appear as the header of the email receipt sent to the customer." +msgstr "Este texto irá aparecer como cabeçalho do e-mail do recibo enviado ao cliente." + +#: includes/common/payment-gateways/authorizenet-aim.php:282 +msgid "Encapsulation Character" +msgstr "Caractere de Encapsulação" + +#: includes/common/payment-gateways/authorizenet-aim.php:283 +msgid "Authorize.net default is blank. Otherwise, get this from your credit card processor. If the transactions are going through, but getting strange responses, this character is most likely wrong." +msgstr "O padrão do Authorize.net é vazio. De outra forma, obtenha isso da sua operadora de cartão de crédito. Se as transações estão funcionando mas com respostas estranhas, provavelmente este caractere está errado." + +#: includes/common/payment-gateways/authorizenet-aim.php:273 +msgid "Optional settings to control advanced options" +msgstr "Configurações opcionais para controlar opções avançadas" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:224 +#: includes/common/payment-gateways/authorizenet-aim.php:272 +msgid "Advanced Settings" +msgstr "Configurações Avançadas" + +#: includes/common/payment-gateways/authorizenet-aim.php:253 +msgid "Transaction Key" +msgstr "Chave da Transação" + +#: includes/common/payment-gateways/authorizenet-aim.php:246 +msgid "Login ID" +msgstr "ID de Login" + +#: includes/common/payment-gateways/paypal-payflow.php:396 +msgid "Gateway Credentials" +msgstr "Credenciais do Gateway" + +#: includes/common/payment-gateways/authorizenet-aim.php:221 +msgid "Authorize.net AIM is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway. USD is the only currency supported by this gateway." +msgstr "O AIM Authorize.net é uma solução de processamento de pagamentos personalizável que dá ao comerciante o controle sobre todos os passos no processamento de uma transação. Um certificado SSL é requerido para usar este gateway. USD é a única moeda suportada por este gateway." + +#: includes/common/payment-gateways/authorizenet-aim.php:205 +msgid "There was a problem finalizing your purchase. %s Please go back and try again." +msgstr "Houve um problema finalizando a sua compra. %s Por favor volte e tente novamente." + +#: includes/common/payment-gateways/payfast.php:519 +#: includes/common/payment-gateways/paypal-chained-payments.php:218 +#: includes/common/payment-gateways/paypal-chained-payments.php:498 +#: includes/common/payment-gateways/paypal-express.php:822 +#: includes/common/payment-gateways/paypal-express.php:1092 +msgid "The payment has been completed, and the funds have been added successfully to your account balance." +msgstr "O pagamento foi concluído e os fundos foram creditados com sucesso na sua conta." + +#: includes/common/payment-gateways/paypal-payflow.php:233 +msgid "Please enter a valid credit card security code" +msgstr "Por favor insira um código de segurança válido de cartão de crédito" + +#: includes/common/payment-gateways/paypal-payflow.php:224 +#: includes/public/class-mp-checkout.php:867 +msgid "Please enter a valid credit card number" +msgstr "Por favor insira um número válido de cartão de crédito" + +#: includes/common/payment-gateways/paypal-payflow.php:221 +msgid "Please enter your credit card number" +msgstr "Por favor insira o número do seu cartão de crédito" + +#: includes/common/payment-gateways/paypal-payflow.php:217 +msgid "Please enter your credit card security code" +msgstr "Por favor insira o código de segurança do seu cartão de crédito" + +#: includes/common/payment-gateways/paypal-payflow.php:213 +msgid "Please select your credit card expiration date." +msgstr "Por favor selecione a data de expiração do seu cartão de crédito." + +#: includes/common/payment-gateways/2checkout.php:299 +#: includes/common/payment-gateways/authorizenet-aim.php:50 +#: includes/common/payment-gateways/eway.php:148 +#: includes/common/payment-gateways/eway.php:298 +#: includes/common/payment-gateways/eway31.php:267 +#: includes/common/payment-gateways/paymill.php:46 +#: includes/common/payment-gateways/paypal-express.php:972 +#: includes/common/payment-gateways/paypal-payflow.php:60 +#: includes/common/payment-gateways/pin.php:46 +#: includes/common/payment-gateways/simplify.php:19 +#: includes/common/payment-gateways/stripe.php:46 +#: includes/common/payment-gateways/wepay.php:37 +msgid "Credit Card" +msgstr "Cartão de Crédito" + +#: includes/common/payment-gateways/authorizenet-aim.php:49 +msgid "Authorize.net Checkout" +msgstr "Check-out do Authorize.net" + +#: includes/common/payment-gateways/skrill.php:156 +#: includes/common/payment-gateways/stripe.php:293 +msgid "Selecting a currency other than that used for your store may cause problems at checkout." +msgstr "Selecionando uma moeda diferente daquela usada na sua loja pode causar problemas no check-out." + +#: includes/common/payment-gateways/2checkout.php:352 +msgid "Seller ID" +msgstr "ID do Vendedor" + +#: includes/common/payment-gateways/2checkout.php:340 +#: includes/common/payment-gateways/_ideal.php:311 +#: includes/common/payment-gateways/authorizenet-aim.php:234 +#: includes/common/payment-gateways/eway.php:376 +#: includes/common/payment-gateways/payfast.php:315 +#: includes/common/payment-gateways/paypal-chained-payments.php:368 +#: includes/common/payment-gateways/paypal-express.php:699 +#: includes/common/payment-gateways/paypal-payflow.php:391 +msgid "Live" +msgstr "Live" + +#: includes/common/payment-gateways/2checkout.php:339 +#: includes/common/payment-gateways/authorizenet-aim.php:233 +#: includes/common/payment-gateways/eway.php:375 +#: includes/common/payment-gateways/paypal-chained-payments.php:367 +#: includes/common/payment-gateways/paypal-express.php:698 +#: includes/common/payment-gateways/paypal-payflow.php:390 +#: includes/common/shipping-modules/mp-fedex.php:263 +msgid "Sandbox" +msgstr "Sandbox" + +#: includes/common/payment-gateways/2checkout.php:336 +#: includes/common/payment-gateways/_ideal.php:307 +#: includes/common/payment-gateways/authorizenet-aim.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:365 +#: includes/common/payment-gateways/paypal-express.php:695 +#: includes/common/payment-gateways/paypal-payflow.php:387 +#: includes/common/payment-gateways/wepay.php:130 +#: includes/common/shipping-modules/mp-fedex.php:260 +msgid "Mode" +msgstr "Modo" + +#: includes/common/payment-gateways/2checkout.php:288 +#: includes/common/payment-gateways/mijireh.php:242 +#: includes/common/payment-gateways/mollie.php:212 +msgid "The order has been received" +msgstr "O pedido foi recebido" + +#: includes/common/payment-gateways/2checkout.php:74 +#: includes/common/payment-gateways/2checkout.php:75 +#: includes/common/payment-gateways/2checkout.php:435 +msgid "2Checkout" +msgstr "2Checkout" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:306 +msgid "Confirm" +msgstr "Confirmar" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:218 +#: includes/common/class-mp-cart.php:974 includes/common/class-mp-cart.php:1354 +#: includes/common/template-functions.php:918 +msgid "Checkout" +msgstr "Check-out" + +#: includes/common/template-functions.php:207 +msgid "Check Order Status" +msgstr "Verificar Status do Pedido" + +#: includes/common/template-functions.php:235 +msgid "View Products" +msgstr "Ver Produtos" + +#: includes/common/template-functions.php:263 +msgid "Visit Store" +msgstr "Visitar Loja" + +#: includes/common/template-functions.php:2912 +#: includes/multisite/template-functions.php:448 +msgid "Order By" +msgstr "Ordenar Por" + +#: includes/common/template-functions.php:2887 +#: includes/multisite/template-functions.php:405 +msgid "Price (High to Low)" +msgstr "Preço (Decrescente)" + +#: includes/common/template-functions.php:2886 +#: includes/multisite/template-functions.php:404 +msgid "Price (Low to High)" +msgstr "Preço (Crescente)" + +#: includes/common/template-functions.php:2881 +#: includes/multisite/template-functions.php:399 +msgid "Default" +msgstr "Padrão" + +#: includes/common/template-functions.php:2858 +msgid "Show All" +msgstr "Exibir Tudo" + +#: includes/common/class-mp-product.php:2048 +msgid "View Larger Image »" +msgstr "Ver Imagem Maior »" + +#: includes/common/class-mp-product.php:979 +msgid "Out of Stock" +msgstr "Fora de Estoque" + +#: includes/common/template-functions.php:148 +msgid "Price: " +msgstr "Preço:" + +#: includes/multisite/template-functions.php:833 +msgid "No Tags" +msgstr "Nenhuma Tag" + +#: includes/common/template-functions.php:3162 +msgid "Uncategorized" +msgstr "Sem Categoria" + +#: includes/common/class-mp-cart.php:569 includes/common/class-mp-order.php:604 +#: includes/common/helpers.php:115 +msgid "Download" +msgstr "Download" + +#: includes/common/class-mp-cart.php:1353 +msgid "Empty Cart" +msgstr "Esvaziar o Carrinho" + +#: includes/common/payment-gateways/_payway.php:291 +#: includes/common/payment-gateways/paypal-express.php:718 +#: includes/common/payment-gateways/paypal-payflow.php:423 +#: includes/common/shipping-modules/mp-ups.php:158 +#: includes/public/class-mp-checkout.php:1254 +#: includes/public/class-mp-checkout.php:1383 +msgid "Password" +msgstr "Senha" + +#: includes/common/payment-gateways/eway.php:387 +#: includes/common/payment-gateways/paypal-express.php:711 +#: includes/common/shipping-modules/mp-usps.php:185 +#: includes/public/class-mp-checkout.php:1249 +msgid "Username" +msgstr "Username" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:437 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:790 +msgid "Have a coupon code?" +msgstr "Tem um código de cupom?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:321 +#: includes/admin/class-mp-orders-admin.php:526 +#: includes/common/class-mp-cart.php:592 +msgid "Remove" +msgstr "Remover" + +#: includes/admin/class-mp-ajax.php:316 +msgid "Quantity:" +msgstr "Quantidade:" + +#: includes/admin/class-mp-products-admin.php:2140 +#: includes/admin/class-mp-products-admin.php:2387 +#: includes/common/shipping-modules/class-mp-shipping-api.php:507 +msgid "Extra Shipping Cost" +msgstr "Custo Adicional de Envio" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:403 +msgid "Choose a Shipping Method:" +msgstr "Escolha um Método de Envio:" + +#: includes/admin/class-mp-products-admin.php:1691 +#: includes/admin/class-mp-products-admin.php:2131 +#: includes/admin/class-mp-products-admin.php:2378 +#: includes/common/shipping-modules/class-mp-shipping-api.php:228 +msgid "Ounces" +msgstr "Onças" + +#: includes/admin/class-mp-products-admin.php:1684 +#: includes/admin/class-mp-products-admin.php:2123 +#: includes/admin/class-mp-products-admin.php:2369 +#: includes/admin/class-mp-setup-wizard.php:546 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:165 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +#: includes/common/shipping-modules/class-mp-shipping-api.php:227 +msgid "Pounds" +msgstr "Libras" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:226 +msgid "Product Weight:" +msgstr "Peso do Produto:" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:214 +msgid "Weight (Kilograms)" +msgstr "Peso (Quilos)" + +#: includes/admin/widgets/ms-global-categories.php:82 +msgid "Number of Categories:" +msgstr "Número de Categorias:" + +#: includes/admin/widgets/ms-global-categories.php:72 +msgid "Product Count" +msgstr "Contagem do Produto" + +#: includes/addons/class-mp-addons-list-table.php:20 +#: includes/admin/class-mp-product-attributes-admin.php:129 +#: includes/admin/class-mp-product-attributes-list-table.php:22 +#: includes/admin/class-mp-products-admin.php:2216 +#: includes/admin/class-mp-shortcode-builder.php:628 +#: includes/admin/class-mp-shortcode-builder.php:1415 +#: includes/admin/widgets/ms-global-categories.php:70 +#: includes/common/shipping-modules/mp-fedex.php:395 +#: includes/common/shipping-modules/mp-ups.php:202 +#: includes/common/shipping-modules/mp-usps.php:243 +#: includes/public/class-mp-checkout.php:314 +msgid "Name" +msgstr "Nome" + +#: includes/admin/widgets/ms-global-categories.php:67 +msgid "Order Categories By:" +msgstr "Ordenar Categorias Por:" + +#: includes/admin/widgets/ms-global-categories.php:24 +#: includes/admin/widgets/ms-global-categories.php:50 +msgid "Global Product Categories" +msgstr "Categorias Globais de Produto" + +#: includes/admin/widgets/ms-global-categories.php:15 +msgid "Global Product Category List" +msgstr "Lista de Categorias Globais de Produto" + +#: includes/admin/widgets/ms-global-categories.php:13 +msgid "Displays a network-wide HTML list of product categories from network MarketPress stores." +msgstr "Exibe uma lista HTML de categorias de produto de toda a rede de lojas do MarketPress." + +#: includes/admin/widgets/ms-global-tag-cloud.php:24 +#: includes/admin/widgets/ms-global-tag-cloud.php:45 +msgid "Global Product Tags" +msgstr "Tags Globais de Produto" + +#: includes/admin/widgets/ms-global-tag-cloud.php:15 +msgid "Global Product Tag Cloud" +msgstr "Nuvem de Tags Globais de Produto" + +#: includes/admin/class-mp-shortcode-builder.php:947 +#: includes/admin/widgets/ms-global-product-list.php:173 +msgid "Excerpt" +msgstr "Resumo" + +#: includes/admin/widgets/ms-global-product-list.php:169 +msgid "Content To Show:" +msgstr "Conteúdo a Exibir:" + +#: includes/admin/widgets/ms-global-product-list.php:140 +msgid "Limit To Product Tag:" +msgstr "Limitar a Tag de Produto:" + +#: includes/admin/widgets/ms-global-product-list.php:132 +msgid "Limit To Product Category:" +msgstr "Limitar a Categoria de Produto:" + +#: includes/admin/widgets/ms-global-product-list.php:72 +msgid "Global Products" +msgstr "Produtos Globais" + +#: includes/admin/widgets/ms-global-product-list.php:16 +msgid "Global Product List" +msgstr "Lista Global de Produtos" + +#: includes/admin/widgets/ms-global-product-list.php:14 +msgid "Shows a customizable global list of products from network MarketPress stores." +msgstr "Exibe uma lisga global personalizável de produtos da rede de lojas do MarketPress." + +#: includes/common/class-mp-product.php:974 +#: includes/multisite/template-functions.php:731 +msgid "Buy Now »" +msgstr "Comprar Agora »" + +#: includes/admin/widgets/ms-global-tag-cloud.php:13 +msgid "Displays global most used product tags in cloud format from network MarketPress stores." +msgstr "Exibe as tags globais de produtos mais usadas no formato nuvem de toda a rede de lojas do MarketPress." + +#: includes/multisite/class-mp-admin-multisite.php:438 +msgid "Theme Permissions" +msgstr "Permissões do Tema" + +#: includes/multisite/class-mp-admin-multisite.php:402 +#: includes/multisite/class-mp-admin-multisite.php:448 +msgid "No Access" +msgstr "Nenhum Acesso" + +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:120 +msgid "Pro Site Level" +msgstr "Nível Pro Site" + +#: includes/multisite/class-mp-admin-multisite.php:401 +#: includes/multisite/class-mp-admin-multisite.php:447 +msgid "All Can Use" +msgstr "Todos Podem Usar" + +#: includes/multisite/class-mp-admin-multisite.php:390 +msgid "Gateway Permissions" +msgstr "Permissões do Gateway" + +#: includes/multisite/class-mp-admin-multisite.php:375 +msgid "Select a Gateway" +msgstr "Selecione um Gateway" + +#: includes/multisite/class-mp-admin-multisite.php:350 +msgid "Global Gateway" +msgstr "Gateway Global" + +#. Plugin Name of the plugin/theme +msgid "MarketPress" +msgstr "MarketPress" + +#: includes/admin/widgets/product-tag-cloud.php:7 +msgid "Your most used product tags in cloud format from your MarketPress store." +msgstr "Suas tags de produto mais usadas no formato nuvem da sua loja do MarketPress." + +#: includes/admin/widgets/categories.php:79 +msgid "Show hierarchy" +msgstr "Exibir hierarquia" + +#: includes/admin/widgets/categories.php:76 +#: includes/admin/widgets/ms-global-categories.php:92 +msgid "Show product counts" +msgstr "Exibir contagens do produto" + +#: includes/admin/widgets/categories.php:73 +msgid "Show as dropdown" +msgstr "Exibir como dropdown" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:710 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:736 +#: includes/admin/widgets/categories.php:30 +msgid "Select Category" +msgstr "Selecione a Categoria" + +#: includes/admin/widgets/categories.php:7 +msgid "A list or dropdown of product categories from your MarketPress store." +msgstr "Uma lista ou dropdown de categorias de produto da sua loja do MarketPress." + +#: includes/admin/widgets/product-list.php:250 +msgid "Show Buy Button" +msgstr "Exibir o Botão Comprar" + +#: includes/admin/widgets/ms-global-product-list.php:183 +#: includes/admin/widgets/product-list.php:244 +msgid "Show Price" +msgstr "Exibir o Preço" + +#: includes/admin/widgets/product-list.php:241 +msgid "Show Excerpt" +msgstr "Exibir o Resumo" + +#: includes/admin/widgets/ms-global-product-list.php:155 +#: includes/admin/widgets/product-list.php:238 +msgid "Thumbnail Size:" +msgstr "Tamanho da Miniatura:" + +#: includes/admin/widgets/ms-global-product-list.php:153 +#: includes/admin/widgets/product-list.php:237 +msgid "Show Thumbnail" +msgstr "Exibir Miniatura" + +#: includes/admin/widgets/ms-global-product-list.php:147 +#: includes/admin/widgets/product-list.php:233 +msgid "Display Settings" +msgstr "Configurações de Exibição" + +#: includes/admin/widgets/ms-global-product-list.php:136 +#: includes/admin/widgets/ms-global-product-list.php:144 +#: includes/admin/widgets/product-list.php:230 +msgid "Enter the Slug" +msgstr "Insira o Slug" + +#: includes/admin/widgets/product-list.php:228 +#: includes/common/template-functions.php:894 +msgid "Tag" +msgstr "Tag" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:686 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:712 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:739 +#: includes/admin/class-mp-shortcode-builder.php:796 +#: includes/admin/widgets/product-list.php:227 +#: includes/common/template-functions.php:886 +#: includes/common/template-functions.php:2907 +msgid "Category" +msgstr "Categoria" + +#: includes/admin/widgets/product-list.php:226 +msgid "No Filter" +msgstr "Nenhum Filtro" + +#: includes/admin/widgets/product-list.php:224 +msgid "Taxonomy Filter:" +msgstr "Filtro de Taxonomia:" + +#: includes/admin/widgets/ms-global-product-list.php:108 +#: includes/admin/widgets/product-list.php:209 +msgid "Order Products By:" +msgstr "Ordenar Produtos Por:" + +#: includes/admin/widgets/ms-global-product-list.php:101 +#: includes/admin/widgets/product-list.php:206 +msgid "Number of Products:" +msgstr "Número de Produtos:" + +#: includes/admin/widgets/ms-global-product-list.php:98 +#: includes/admin/widgets/product-list.php:204 +msgid "List Settings" +msgstr "Configurações da Lista" + +#: includes/admin/widgets/product-list.php:177 +msgid "Our Products" +msgstr "Nossos Produtos" + +#: includes/admin/widgets/product-list.php:144 +#: includes/common/template-functions.php:2070 +#: includes/common/template-functions.php:2347 +#: includes/multisite/template-functions.php:303 +#: includes/multisite/template-functions.php:623 +msgid "No Products" +msgstr "Nenhum Produto" + +#: includes/admin/widgets/product-list.php:8 +msgid "Product List" +msgstr "Lista de Produtos" + +#: includes/admin/widgets/product-list.php:7 +msgid "Shows a customizable list of products from your MarketPress store." +msgstr "Exibe uma lista personalizável de produtos da sua loja MarketPress." + +#: includes/admin/widgets/cart.php:75 includes/admin/widgets/categories.php:82 +#: includes/admin/widgets/product-list.php:253 +#: includes/admin/widgets/product-tag-cloud.php:57 +msgid "Only show on store pages" +msgstr "Exibir apenas nas páginas da loja" + +#: includes/admin/widgets/cart.php:65 +#: includes/admin/widgets/ms-global-product-list.php:92 +#: includes/admin/widgets/product-list.php:200 +msgid "Custom Text:" +msgstr "Texto Personalizado:" + +#: includes/admin/widgets/cart.php:64 includes/admin/widgets/categories.php:69 +#: includes/admin/widgets/ms-global-categories.php:59 +#: includes/admin/widgets/ms-global-product-list.php:87 +#: includes/admin/widgets/ms-global-tag-cloud.php:49 +#: includes/admin/widgets/product-list.php:199 +#: includes/admin/widgets/product-tag-cloud.php:49 +msgid "Title:" +msgstr "Título:" + +#: includes/admin/widgets/cart.php:7 +msgid "Shows dynamic shopping cart contents along with a checkout button for your MarketPress store." +msgstr "Exibe conteúdo dinâmico do carrinho de compras junto com um botão de check-out para a sua loja MarketPress." + +#: includes/admin/widgets/product-tag-cloud.php:8 +msgid "Product Tag Cloud" +msgstr "Nuvem de Tags de Produto" + +#: includes/admin/class-mp-setup-wizard.php:539 +#: includes/admin/class-mp-setup-wizard.php:575 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:163 +msgid "Measurement System" +msgstr "Sistema de Medidas" + +#: includes/admin/class-mp-setup-wizard.php:616 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:149 +msgid "Select Shipping Options" +msgstr "Selecione as Opções de Envio" + +#: includes/admin/class-mp-setup-wizard.php:596 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:129 +msgid "Calculated Options" +msgstr "Opções Calculadas" + +#: includes/admin/class-mp-setup-wizard.php:582 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:115 +msgid "No Shipping" +msgstr "Nenhum Envio" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:110 +msgid "EU" +msgstr "Europa" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:109 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:93 +msgid "All" +msgstr "Tudo" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:92 +msgid "Select:" +msgstr "Selecione:" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:185 +msgid "Store Pages" +msgstr "Páginas da Loja" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:223 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:256 +msgid "Order Shipped" +msgstr "Pedido Enviado" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:60 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:95 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:128 +#: marketpress.php:266 +msgid "New Order" +msgstr "Novo Pedido" + +#: includes/admin/class-mp-dashboard-widgets.php:314 +msgid "Email Notifications" +msgstr "Notificações por E-mail" + +#: includes/admin/class-mp-pages-admin.php:59 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:200 +msgid "Products List" +msgstr "Lista de Produtos" + +#: includes/admin/class-mp-pages-admin.php:58 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:190 +msgid "Store Base" +msgstr "Base da Loja" + +#: includes/admin/class-mp-product-attributes-admin.php:108 +#: includes/admin/class-mp-shortcode-builder.php:635 +#: includes/admin/class-mp-shortcode-builder.php:708 +#: includes/admin/class-mp-shortcode-builder.php:875 +#: includes/admin/class-mp-shortcode-builder.php:1319 +#: includes/admin/class-mp-shortcode-builder.php:1422 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:526 +#: includes/admin/widgets/ms-global-categories.php:78 +#: includes/admin/widgets/ms-global-product-list.php:127 +#: includes/admin/widgets/product-list.php:221 +msgid "Ascending" +msgstr "Ascendente" + +#: includes/admin/class-mp-product-attributes-admin.php:109 +#: includes/admin/class-mp-shortcode-builder.php:636 +#: includes/admin/class-mp-shortcode-builder.php:709 +#: includes/admin/class-mp-shortcode-builder.php:876 +#: includes/admin/class-mp-shortcode-builder.php:1320 +#: includes/admin/class-mp-shortcode-builder.php:1423 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:525 +#: includes/admin/widgets/ms-global-categories.php:75 +#: includes/admin/widgets/ms-global-product-list.php:124 +#: includes/admin/widgets/product-list.php:220 +msgid "Descending" +msgstr "Descendente" + +#: includes/admin/class-mp-shortcode-builder.php:637 +#: includes/admin/class-mp-shortcode-builder.php:695 +#: includes/admin/class-mp-shortcode-builder.php:862 +#: includes/admin/class-mp-shortcode-builder.php:1306 +#: includes/admin/class-mp-shortcode-builder.php:1424 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:518 +#: includes/admin/widgets/ms-global-product-list.php:121 +#: includes/admin/widgets/product-list.php:218 +msgid "Random" +msgstr "Aleatório" + +#: includes/admin/class-mp-shortcode-builder.php:694 +#: includes/admin/class-mp-shortcode-builder.php:861 +#: includes/admin/class-mp-shortcode-builder.php:1305 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:517 +#: includes/admin/widgets/ms-global-product-list.php:119 +#: includes/admin/widgets/product-list.php:216 +msgid "Product Price" +msgstr "Preço do Produto" + +#: includes/admin/class-mp-shortcode-builder.php:693 +#: includes/admin/class-mp-shortcode-builder.php:860 +#: includes/admin/class-mp-shortcode-builder.php:1304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:516 +#: includes/admin/widgets/ms-global-product-list.php:117 +#: includes/admin/widgets/product-list.php:215 +msgid "Number of Sales" +msgstr "Número de Vendas" + +#: includes/admin/class-mp-shortcode-builder.php:692 +#: includes/admin/class-mp-shortcode-builder.php:859 +#: includes/admin/class-mp-shortcode-builder.php:1303 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:515 +#: includes/admin/widgets/product-list.php:214 +msgid "Product Author" +msgstr "Autor do Produto" + +#: includes/admin/class-mp-shortcode-builder.php:691 +#: includes/admin/class-mp-shortcode-builder.php:858 +#: includes/admin/class-mp-shortcode-builder.php:1302 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:514 +#: includes/admin/widgets/product-list.php:213 +msgid "Product ID" +msgstr "ID do Produto" + +#: includes/admin/class-mp-shortcode-builder.php:690 +#: includes/admin/class-mp-shortcode-builder.php:857 +#: includes/admin/class-mp-shortcode-builder.php:1301 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:513 +#: includes/admin/widgets/ms-global-product-list.php:113 +#: includes/admin/widgets/product-list.php:212 +msgid "Publish Date" +msgstr "Data de Publicação" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:430 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:726 +msgid "Width" +msgstr "Largura" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:439 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:735 +msgid "Height" +msgstr "Altura" + +#: includes/admin/class-mp-product-attributes-admin.php:88 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:402 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:698 +msgid "Custom" +msgstr "Personalizado" + +#: includes/common/class-mp-product.php:179 +#: includes/common/class-mp-product.php:992 +#: includes/common/class-mp-product.php:1000 +#: includes/multisite/template-functions.php:579 +msgid "Buy Now" +msgstr "Comprar Agora" + +#: includes/common/class-mp-product.php:175 +#: includes/common/class-mp-product.php:990 +#: includes/common/class-mp-product.php:998 +msgid "Add To Cart" +msgstr "Adicionar ao Carrinho" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:807 +msgid "Store Style" +msgstr "Estilo da Loja" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1021 +msgid "Edit Coupon" +msgstr "Editar Cupom" + +#: includes/addons/mp-coupons/class-mp-coupon.php:580 +#: includes/admin/class-mp-ajax.php:238 +#: includes/admin/class-mp-products-admin.php:1532 +msgid "Unlimited" +msgstr "Ilimitado" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1198 +msgid "Remaining Uses" +msgstr "Utilizações Restantes" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1197 +msgid "Used" +msgstr "Usado" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:752 +#: includes/admin/class-mp-products-admin.php:2343 +msgid "Start Date" +msgstr "Data de Início" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:598 +msgid "Coupon Code" +msgstr "Código do Cupom" + +#: includes/admin/class-mp-orders-admin.php:444 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:284 +msgid "Save Changes" +msgstr "Gravar Alterações" + +#: includes/admin/class-mp-pages-admin.php:57 +#: includes/admin/class-mp-shortcode-builder.php:716 +#: includes/admin/class-mp-shortcode-builder.php:727 +#: includes/admin/class-mp-shortcode-builder.php:883 +#: includes/admin/class-mp-shortcode-builder.php:894 +#: includes/admin/class-mp-shortcode-builder.php:946 +#: includes/admin/class-mp-shortcode-builder.php:956 +#: includes/admin/class-mp-shortcode-builder.php:1006 +#: includes/admin/class-mp-shortcode-builder.php:1327 +#: includes/admin/class-mp-shortcode-builder.php:1338 +#: includes/admin/store-settings/class-mp-store-settings-general.php:357 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:270 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:108 +#: includes/admin/widgets/ms-global-product-list.php:172 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:94 +msgid "None" +msgstr "Nenhum" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:352 +msgid "Google Analytics Ecommerce Tracking" +msgstr "Rastreamento de e-Commerce do Google Analytics" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:310 +msgid "This option turns MarketPress into more of a product listing plugin, disabling shopping carts, checkout, and order management. This is useful if you simply want to list items you can buy in a store somewhere else, optionally linking the \"Buy Now\" buttons to an external site. Some examples are a car dealership, or linking to songs/albums in itunes, or linking to products on another site with your own affiliate links." +msgstr "Essa opção transforma o MarketPress em um tipo de plugin de listagem de produtos, desabilitando carrinhos de compra, check-out e gerenciamento de pedidos. Isso é útil se você quiser apenas listar itens que você pode comprar em uma loja em qualquer outro lugar, opcionalmente com links para os botões \"Comprar Agora\" em um site externo. Alguns exemplos são uma revendeda de automóveis, ou links para músicas/álbuns na loja iTunes, ou links para produtos em outro site com seus próprios links afiliados." + +#: includes/admin/store-settings/class-mp-store-settings-general.php:304 +msgid "Whether or not customers must be registered and logged in to checkout. (Not recommended: Enabling this can lower conversions)" +msgstr "Se os usuários devem ou não estar registrados e fazer login para fazer o check-out. (Não recomendado: Ativar isso pode reduzir as conversões)" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:258 +msgid "How many times may a customer download a file they have purchased? (It's best to set this higher than one in case they have any problems downloading)" +msgstr "Quantas vezes um cliente pode descarregar um arquivo que tenha comprado? (É melhor definir isso para mais que um, caso eles tenham problemas no download)" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:257 +msgid "Maximum Downloads" +msgstr "Máximo de Downloads" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:298 +msgid "This will set the product to draft if inventory of all variations is gone." +msgstr "Isso irá definir o produto como rascunho se o inventário de todas as variaços estiver vazio" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:288 +msgid "At what low stock count do you want to be warned for products you have enabled inventory tracking for?" +msgstr "Abaixo de qual quantidade em estoque você quer ser avisado para os produtos em que habilitou o rastreamento de inventário?" + +#: includes/admin/class-mp-dashboard-widgets.php:208 +#: includes/admin/store-settings/class-mp-store-settings-general.php:287 +msgid "Inventory Warning Threshold" +msgstr "Ponto Inicial de Alerta do Estoque" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:282 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:542 +msgid "Miscellaneous Settings" +msgstr "Configurações Diversas" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:429 +#: includes/multisite/class-mp-admin-multisite.php:247 +msgid "Show Decimal in Prices" +msgstr "Exibir Decimais nos Preços" + +#: includes/admin/class-mp-setup-wizard.php:451 +#: includes/admin/store-settings/class-mp-store-settings-general.php:403 +#: includes/multisite/class-mp-admin-multisite.php:221 +msgid "Currency Symbol Position" +msgstr "Posição do Símbolo da Moeda" + +#: includes/admin/class-mp-setup-wizard.php:444 +#: includes/admin/store-settings/class-mp-store-settings-general.php:396 +msgid "Store Currency" +msgstr "Moeda da Loja" + +#: includes/admin/class-mp-setup-wizard.php:429 +#: includes/admin/store-settings/class-mp-store-settings-general.php:381 +msgid "Currency Settings" +msgstr "Configurações de Moeda" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:516 +msgid "Please see your local tax laws. Note if this is enabled and a downloadable only cart, rates will be the default for your base location." +msgstr "Por favor veja as leis locais de taxas. Note que se isso está habilitado em um carrinho apenas de downloads, as taxas serão por padrão as da base da sua localização." + +#: includes/admin/class-mp-setup-wizard.php:529 +msgid "Apply Tax to Downloadable Products?" +msgstr "Aplicar Taxas em Produtos Eletrônicos?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:498 +msgid "Enabling this option allows you to enter and show all prices inclusive of tax, while still listing the tax total as a line item in shopping carts. Please see your local tax laws." +msgstr "Habilitando esta opção permite que você insira e exiba todos os preços inclusive das taxas, enquanto continua listando o total das taxas como um ítem em uma linha nos carrinhos de compra. Por favor veja suas leis locais de taxas." + +#: includes/admin/class-mp-setup-wizard.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:497 +msgid "Enter Prices Inclusive of Tax?" +msgstr "Inserir Preços com Taxas Incluídas?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:492 +msgid "Please see your local tax laws. Most areas charge tax on shipping fees." +msgstr "Por favor veja suas leis locais de taxas. Muitas áreas cobram taxas nos custos de envio." + +#: includes/admin/class-mp-setup-wizard.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:491 +msgid "Apply Tax To Shipping Fees?" +msgstr "Aplicar Taxas aos Custos de Envio?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:674 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:565 +#: includes/common/payment-gateways/authorizenet-aim.php:291 +#: includes/common/payment-gateways/authorizenet-aim.php:326 +#: includes/common/payment-gateways/payfast.php:347 +msgid "No" +msgstr "Não" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:675 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:759 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:512 +#: includes/admin/class-mp-setup-wizard.php:518 +#: includes/admin/class-mp-setup-wizard.php:524 +#: includes/admin/class-mp-setup-wizard.php:530 +#: includes/admin/class-mp-setup-wizard.php:564 +#: includes/admin/store-settings/class-mp-store-settings-general.php:232 +#: includes/admin/store-settings/class-mp-store-settings-general.php:299 +#: includes/admin/store-settings/class-mp-store-settings-general.php:305 +#: includes/admin/store-settings/class-mp-store-settings-general.php:311 +#: includes/admin/store-settings/class-mp-store-settings-general.php:317 +#: includes/admin/store-settings/class-mp-store-settings-general.php:328 +#: includes/admin/store-settings/class-mp-store-settings-general.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:341 +#: includes/admin/store-settings/class-mp-store-settings-general.php:348 +#: includes/admin/store-settings/class-mp-store-settings-general.php:367 +#: includes/admin/store-settings/class-mp-store-settings-general.php:493 +#: includes/admin/store-settings/class-mp-store-settings-general.php:499 +#: includes/admin/store-settings/class-mp-store-settings-general.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:556 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:375 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:381 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:387 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:474 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:493 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:532 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:574 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:606 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:664 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:670 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:677 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:683 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:689 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:763 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:774 +#: includes/common/payment-gateways/_bitpay.php:250 +#: includes/common/payment-gateways/_bitpay.php:257 +#: includes/common/payment-gateways/_bitpay.php:264 +#: includes/common/payment-gateways/authorizenet-aim.php:290 +#: includes/common/payment-gateways/authorizenet-aim.php:325 +#: includes/common/payment-gateways/free_orders.php:160 +#: includes/common/payment-gateways/payfast.php:346 +#: includes/common/payment-gateways/paymill.php:162 +#: includes/common/payment-gateways/paypal-payflow.php:441 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-checkbox.php:22 +msgid "Yes" +msgstr "Sim" + +#: includes/admin/class-mp-setup-wizard.php:492 +#: includes/admin/store-settings/class-mp-store-settings-general.php:472 +msgid "%s Tax Rate" +msgstr "Custo de Taxas de %s" + +#: includes/admin/class-mp-setup-wizard.php:467 +#: includes/admin/store-settings/class-mp-store-settings-general.php:449 +msgid "Tax Settings" +msgstr "Configurações de Taxas" + +#: includes/admin/class-mp-setup-wizard.php:370 +#: includes/admin/store-settings/class-mp-store-settings-general.php:624 +msgid "Base Zip/Postal Code" +msgstr "CEP/Código Postal da Loja" + +#: includes/admin/class-mp-setup-wizard.php:354 +#: includes/admin/store-settings/class-mp-store-settings-general.php:608 +msgid "Base State/Province/Region" +msgstr "Estado/Província/Região da Loja" + +#: includes/admin/class-mp-setup-wizard.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:589 +msgid "Base Country" +msgstr "País da Loja" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:582 +msgid "Location Settings" +msgstr "Configurações de Localização" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:195 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:800 +#: includes/multisite/class-mp-admin-multisite.php:172 +msgid "General Settings" +msgstr "Configurações Gerais" + +#: includes/admin/class-mp-products-admin.php:1945 +#: includes/admin/class-mp-products-admin.php:2185 +#: includes/admin/class-mp-store-settings-admin.php:111 +#: includes/admin/class-mp-store-settings-admin.php:266 +msgid "General" +msgstr "Gerais" + +#: includes/admin/class-mp-store-settings-admin.php:242 +msgid "Importers" +msgstr "Importadores" + +#: includes/admin/class-mp-store-settings-admin.php:115 +#: includes/admin/class-mp-store-settings-admin.php:234 +msgid "Payments" +msgstr "Pagamentos" + +#: includes/admin/class-mp-dashboard-widgets.php:313 +#: includes/admin/class-mp-store-settings-admin.php:112 +#: includes/admin/class-mp-store-settings-admin.php:222 +msgid "Presentation" +msgstr "Apresentação" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:916 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1015 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1018 +#: includes/admin/class-mp-dashboard-widgets.php:305 marketpress.php:702 +msgid "Coupons" +msgstr "Cupons" + +#: includes/admin/class-mp-admin.php:251 +msgid "Download »" +msgstr "Download »" + +#: includes/admin/class-mp-admin.php:245 +#: includes/admin/class-mp-exporter-orders.php:170 +msgid "All Statuses" +msgstr "Todos os Status" + +#: includes/admin/class-mp-admin.php:209 +#: includes/admin/class-mp-exporter-orders.php:150 +#: includes/admin/class-mp-exporter-orders.php:178 +msgid "Export Orders" +msgstr "Exportar Pedidos" + +#: includes/admin/class-mp-admin.php:228 +msgid "Show all dates" +msgstr "Mostrar todas as datas" + +#: includes/admin/class-mp-orders-admin.php:947 +msgid "Change Status" +msgstr "Mudar o Status" + +#: includes/admin/class-mp-orders-admin.php:287 +msgid "Order Notes" +msgstr "Notas do Pedido" + +#: includes/admin/class-mp-orders-admin.php:478 +msgid "Other" +msgstr "Outro" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:205 +msgid "Subtotal" +msgstr "Subtotal" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:84 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:87 +#: includes/admin/class-mp-products-admin.php:1737 +#: includes/common/class-mp-cart.php:1409 +#: includes/common/class-mp-product.php:559 +msgid "Quantity" +msgstr "Quantidade" + +#: includes/common/helpers.php:93 +msgid "Item" +msgstr "Ítem" + +#: includes/common/class-mp-order.php:1050 +msgid "Current Status" +msgstr "Status Atual" + +#: includes/admin/class-mp-orders-admin.php:297 +msgid "Order Actions" +msgstr "Ações do Pedido" + +#: includes/common/class-mp-product.php:1084 +msgid "More Info »" +msgstr "Mais Informações »" + +#: includes/common/class-mp-product.php:2313 +msgid "Low Product Inventory Notification" +msgstr "Notificação de Estoque Baixo de Produto" + +#: includes/common/class-mp-order.php:338 includes/common/data.php:154 +msgid "New Order Notification: ORDERID" +msgstr "Notificação de Novo Pedido: ORDERID" + +#: includes/common/helpers.php:259 +msgid "Your payment for this order is complete." +msgstr "O seu pagamento para esse pedido foi concluído." + +#: includes/common/helpers.php:261 +msgid "Your payment for this order is not yet complete. Here is the latest status:" +msgstr "O seu pagamento para esse pedido ainda não foi concluído. Aqui está o último status:" + +#: includes/common/helpers.php:256 +msgid "Payment Total:" +msgstr "Total do Pagamento:" + +#: includes/common/helpers.php:253 +msgid "Transaction ID:" +msgstr "ID da Transação:" + +#: includes/common/helpers.php:249 +msgid "Payment Type:" +msgstr "Tipo de Pagamento:" + +#: includes/common/helpers.php:246 +msgid "Payment Method:" +msgstr "Método de Pagamento:" + +#: includes/common/helpers.php:242 +msgid "Order Notes:" +msgstr "Notas do Pedido:" + +#: includes/common/helpers.php:237 +msgid "Special Instructions:" +msgstr "Instruções Especiais:" + +#: includes/common/helpers.php:232 +msgid "Tracking Number:" +msgstr "Número de Rastreamento:" + +#: includes/common/helpers.php:223 includes/common/helpers.php:226 +#: includes/common/helpers.php:228 +#: includes/common/shipping-modules/class-mp-shipping-api.php:406 +#: includes/common/shipping-modules/class-mp-shipping-api.php:428 +msgid "Shipping Method:" +msgstr "Método de Envio:" + +#: includes/common/helpers.php:168 +msgid "No shipping required for this order." +msgstr "Não é necessário nenhum envio para este pedido." + +#: includes/common/helpers.php:155 +msgid "Order Total:" +msgstr "Total do Pedido:" + +#: includes/common/class-mp-order.php:1025 +msgid "Taxes:" +msgstr "Taxas:" + +#: includes/common/class-mp-order.php:1032 includes/common/helpers.php:144 +msgid "Shipping:" +msgstr "Envio:" + +#: includes/public/class-mp-checkout.php:367 +msgid "Street address, P.O. box, company name, c/o" +msgstr "Endereço do logradouro, caixa postal, nome da empresa, etc." + +#: includes/admin/class-mp-orders-admin.php:314 +msgid "Shipping Info" +msgstr "Informações de Envio" + +#: includes/public/class-mp-public.php:740 +msgid "Whoops, there was a problem loading up this file for your download. Please contact us for help." +msgstr "Ooopaaa, houve um problema carregando este arquivo para o seu download. Por favor entre em contato conosco para ajuda." + +#: includes/public/class-mp-public.php:683 +msgid "Sorry, our records show you've downloaded this file %d out of %d times allowed. Please contact us if you still need help." +msgstr "Desculpe, nossos registros mostram que você fez download deste arquivo %d de %d vezes permitidas. Por favor entre em contato conosco se ainda precisar de ajuda." + +#: includes/public/class-mp-public.php:634 +msgid "Sorry, your order has been marked as unpaid." +msgstr "Desculpe, seu pedido está marcado como não pago." + +#: includes/public/class-mp-public.php:629 +msgid "Sorry, the link is invalid for this download." +msgstr "Desculpe, o link é inválido para este download." + +#: includes/admin/class-mp-exporter-orders.php:15 +#: includes/admin/class-mp-products-admin.php:1172 +msgid "Cheatin’ uh?" +msgstr "Trapaceando’ né?" + +#: includes/public/class-mp-public.php:407 +#: includes/public/class-mp-short-codes.php:128 +msgid "Please enter a valid email address." +msgstr "Por favor informe um endereço válido de e-mail." + +#: includes/admin/class-mp-ajax.php:191 +#: includes/admin/class-mp-products-admin.php:1821 +#: includes/admin/class-mp-products-admin.php:2010 +#: includes/admin/class-mp-products-admin.php:2267 +msgid "File URL" +msgstr "URL do Arquivo" + +#: includes/admin/class-mp-products-admin.php:1842 +msgid "External Link" +msgstr "Link Externo" + +#: includes/admin/class-mp-products-admin.php:2177 +msgid "Add Variation" +msgstr "Adicionar Variação" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:126 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:289 +msgid "Inventory" +msgstr "Estoque" + +#: includes/admin/class-mp-products-admin.php:438 +#: includes/admin/class-mp-products-admin.php:578 +#: includes/admin/class-mp-products-admin.php:1552 +#: includes/admin/class-mp-products-admin.php:2053 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:134 +msgid "Sale Price" +msgstr "Preço de Venda" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "Variation Name" +msgstr "Nome da Variação" + +#: includes/admin/class-mp-products-admin.php:1931 +msgid "Product Details" +msgstr "Detalhes do Produto" + +#: includes/admin/class-mp-product-attributes-list-table.php:33 +msgid "Delete" +msgstr "Apagar" + +#: includes/admin/class-mp-orders-admin.php:1057 +msgid "Trashed" +msgstr "Na Lixeira" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:231 +#: includes/admin/class-mp-orders-admin.php:1015 +#: includes/common/class-mp-order.php:1052 includes/common/helpers.php:97 +msgid "Total" +msgstr "Total" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1196 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:210 +#: includes/admin/class-mp-orders-admin.php:1014 +msgid "Discount" +msgstr "Desconto" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:221 +#: includes/admin/class-mp-orders-admin.php:1013 +#: includes/common/payment-gateways/_ideal.php:148 +#: includes/common/payment-gateways/_payway.php:134 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:108 +msgid "Tax" +msgstr "Taxas" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:216 +#: includes/admin/class-mp-orders-admin.php:1012 +#: includes/admin/class-mp-products-admin.php:1958 +#: includes/admin/class-mp-products-admin.php:2198 +#: includes/admin/class-mp-store-settings-admin.php:114 +#: includes/admin/class-mp-store-settings-admin.php:230 +#: includes/common/class-mp-cart.php:717 includes/common/helpers.php:168 +#: includes/common/payment-gateways/_ideal.php:137 +#: includes/common/payment-gateways/_payway.php:116 +#: includes/public/class-mp-checkout.php:1304 +msgid "Shipping" +msgstr "Envio" + +#: includes/admin/class-mp-orders-admin.php:1011 +msgid "Items" +msgstr "Ítens" + +#: includes/admin/class-mp-orders-admin.php:1010 +msgid "From" +msgstr "De" + +#: includes/admin/class-mp-exporter-orders.php:154 +#: includes/admin/class-mp-orders-admin.php:1009 +#: includes/common/class-mp-gdpr.php:370 +msgid "Order Date" +msgstr "Data do Pedido" + +#: includes/admin/class-mp-orders-admin.php:1008 +#: includes/common/class-mp-gdpr.php:366 +#: includes/common/template-functions.php:2134 +msgid "Order ID" +msgstr "ID do Pedido" + +#: includes/addons/class-mp-addons-list-table.php:22 +#: includes/admin/class-mp-orders-admin.php:1007 +msgid "Status" +msgstr "Status" + +#: includes/admin/class-mp-orders-admin.php:1155 +msgid "N/A" +msgstr "N/D" + +#: includes/admin/class-mp-dashboard-widgets.php:243 +#: includes/admin/class-mp-products-admin.php:464 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:142 +msgid "Sales" +msgstr "Vendas" + +#: includes/admin/class-mp-products-admin.php:463 +msgid "Stock" +msgstr "Estoque" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:85 +#: includes/admin/class-mp-ajax.php:176 includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:434 +#: includes/admin/class-mp-products-admin.php:462 +#: includes/admin/class-mp-products-admin.php:576 +#: includes/admin/class-mp-products-admin.php:1519 +#: includes/admin/class-mp-products-admin.php:1569 +#: includes/admin/class-mp-products-admin.php:1950 +#: includes/admin/class-mp-products-admin.php:2059 +#: includes/admin/class-mp-products-admin.php:2190 +#: includes/admin/class-mp-products-admin.php:2330 +#: includes/common/class-mp-cart.php:1415 includes/common/helpers.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:130 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:276 +msgid "Price" +msgstr "Preço" + +#: includes/admin/class-mp-ajax.php:173 +#: includes/admin/class-mp-products-admin.php:461 +#: includes/admin/class-mp-products-admin.php:1972 +#: includes/admin/class-mp-products-admin.php:2224 +msgid "SKU" +msgstr "SKU" + +#: includes/admin/class-mp-products-admin.php:459 +#: includes/admin/class-mp-products-admin.php:1793 +#: includes/admin/class-mp-products-admin.php:1805 +#: includes/admin/class-mp-products-admin.php:2163 +msgid "Variations" +msgstr "Variações" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:83 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:86 +#: includes/admin/class-mp-dashboard-widgets.php:134 +#: includes/admin/class-mp-products-admin.php:458 +#: includes/admin/class-mp-products-admin.php:837 +#: includes/admin/class-mp-shortcode-builder.php:689 +#: includes/admin/class-mp-shortcode-builder.php:856 +#: includes/admin/class-mp-shortcode-builder.php:1300 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:512 +#: includes/admin/widgets/ms-global-product-list.php:115 +#: includes/admin/widgets/product-list.php:211 +msgid "Product Name" +msgstr "Nome do Produto" + +#: includes/common/template-functions.php:2575 +msgid "Categorized in " +msgstr "Categorizado em" + +#: includes/admin/class-mp-orders-admin.php:305 +#: includes/common/payment-gateways/free_orders.php:176 +msgid "Payment Information" +msgstr "Informações de Pagamento" + +#: includes/admin/class-mp-exporter-orders.php:167 +#: includes/admin/class-mp-orders-admin.php:432 +#: includes/admin/class-mp-pages-admin.php:62 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:227 +#: includes/common/class-mp-gdpr.php:374 +#: includes/common/template-functions.php:175 +#: includes/common/template-functions.php:926 +msgid "Order Status" +msgstr "Status do Pedido" + +#. translators: %s: orders closed +#: marketpress.php:327 +msgid "Closed (%s)" +msgid_plural "Closed (%s)" +msgstr[0] "Fechado (%s)" +msgstr[1] "Fechados (%s)" + +#: includes/admin/class-mp-admin.php:249 +#: includes/admin/class-mp-orders-admin.php:375 +#: includes/admin/class-mp-orders-admin.php:951 +#: includes/admin/class-mp-orders-admin.php:1053 +#: includes/admin/class-mp-orders-admin.php:1065 +#: includes/common/class-mp-gdpr.php:330 +#: includes/common/class-mp-order.php:1019 marketpress.php:325 +msgid "Closed" +msgstr "Fechado" + +#. translators: %s: shipped orders +#: marketpress.php:320 +msgid "Shipped (%s)" +msgid_plural "Shipped (%s)" +msgstr[0] "Enviado (%s)" +msgstr[1] "Enviados (%s)" + +#: includes/admin/class-mp-admin.php:248 +#: includes/admin/class-mp-orders-admin.php:376 +#: includes/admin/class-mp-orders-admin.php:950 +#: includes/admin/class-mp-orders-admin.php:1049 +#: includes/admin/class-mp-orders-admin.php:1064 +#: includes/common/class-mp-gdpr.php:329 +#: includes/common/class-mp-order.php:1002 marketpress.php:318 +msgid "Shipped" +msgstr "Enviado" + +#. translators: %s: paid orders +#: marketpress.php:313 +msgid "Paid (%s)" +msgid_plural "Paid (%s)" +msgstr[0] "Pago (%s)" +msgstr[1] "Pagos (%s)" + +#: includes/admin/class-mp-admin.php:247 +#: includes/admin/class-mp-orders-admin.php:377 +#: includes/admin/class-mp-orders-admin.php:949 +#: includes/admin/class-mp-orders-admin.php:1045 +#: includes/admin/class-mp-orders-admin.php:1063 +#: includes/common/class-mp-gdpr.php:328 +#: includes/common/payment-gateways/2checkout.php:294 +#: includes/common/payment-gateways/_cubepoints.php:130 +#: includes/common/payment-gateways/authorizenet-aim.php:193 +#: includes/common/payment-gateways/free_orders.php:91 +#: includes/common/payment-gateways/mijireh.php:248 +#: includes/common/payment-gateways/paymill.php:273 +#: includes/common/payment-gateways/paypal-express.php:933 +#: includes/common/payment-gateways/paypal-express.php:967 +#: includes/common/payment-gateways/pin.php:258 +#: includes/common/payment-gateways/simplify.php:181 +#: includes/common/payment-gateways/stripe.php:368 +#: includes/common/payment-gateways/wepay.php:269 marketpress.php:311 +msgid "Paid" +msgstr "Pago" + +#. translators: %s: orders received +#: marketpress.php:306 +msgid "Received (%s)" +msgid_plural "Received (%s)" +msgstr[0] "Recebido (%s)" +msgstr[1] "Recebidos (%s)" + +#: includes/admin/class-mp-admin.php:246 +#: includes/admin/class-mp-orders-admin.php:378 +#: includes/admin/class-mp-orders-admin.php:1041 +#: includes/admin/class-mp-orders-admin.php:1062 +#: includes/common/class-mp-gdpr.php:327 includes/common/class-mp-order.php:995 +#: includes/common/payment-gateways/payfast.php:244 marketpress.php:304 +msgid "Received" +msgstr "Recebido" + +#: marketpress.php:268 +msgid "Search Orders" +msgstr "Pesquisar Pedidos" + +#: marketpress.php:267 +msgid "View Order" +msgstr "Ver Pedido" + +#: marketpress.php:262 +msgid "Order" +msgstr "Pedido" + +#: includes/admin/class-mp-dashboard-widgets.php:301 +#: includes/admin/class-mp-orders-admin.php:989 marketpress.php:261 +msgid "Orders" +msgstr "Pedidos" + +#: marketpress.php:228 +msgid "No Products found in Trash" +msgstr "Nenhum Produto encontrado na Lixeira" + +#: marketpress.php:227 +msgid "No Products Found" +msgstr "Nenhum Produto Encontrado" + +#: marketpress.php:226 +msgid "Search Products" +msgstr "Pesquisar Produtos" + +#: marketpress.php:225 marketpress.php:229 +msgid "View Product" +msgstr "Ver Produto" + +#: marketpress.php:224 +msgid "New Product" +msgstr "Novo Produto" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1022 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:258 +#: marketpress.php:223 +msgid "Edit" +msgstr "Editar" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1019 +msgid "Create New" +msgstr "Criar Novo" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:687 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:698 +#: marketpress.php:217 +msgid "Product" +msgstr "Produto" + +#: includes/admin/class-mp-dashboard-widgets.php:307 +#: includes/common/template-functions.php:173 +#: includes/common/template-functions.php:179 +#: includes/common/template-functions.php:902 +#: includes/multisite/template-functions.php:82 marketpress.php:216 +#: marketpress.php:219 +msgid "Products" +msgstr "Produtos" + +#: includes/admin/class-mp-store-settings-admin.php:118 +#: includes/admin/widgets/product-tag-cloud.php:46 +#: includes/multisite/class-mp-admin-multisite.php:548 +msgid "Product Tags" +msgstr "Tags de Produto" + +#: includes/common/template-functions.php:2906 +#: includes/multisite/template-functions.php:449 +msgid "Product Category" +msgstr "Categoria de Produto" + +#: includes/admin/class-mp-store-settings-admin.php:117 +#: includes/admin/widgets/categories.php:8 +#: includes/admin/widgets/categories.php:18 +#: includes/multisite/class-mp-admin-multisite.php:539 +msgid "Product Categories" +msgstr "Categorias de Produto" + +#: includes/common/payment-gateways/stripe.php:332 +#: includes/common/template-functions.php:872 marketpress.php:218 +msgid "Store" +msgstr "Loja" + +#: includes/admin/class-mp-pages-admin.php:60 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:209 +#: includes/admin/widgets/cart.php:8 includes/admin/widgets/cart.php:56 +#: includes/common/template-functions.php:174 +#: includes/common/template-functions.php:811 +msgid "Shopping Cart" +msgstr "Carrinho de Compras" + +#: includes/admin/class-mp-store-settings-admin.php:110 +#: includes/admin/class-mp-store-settings-admin.php:218 +msgid "Store Settings" +msgstr "Configurações da Loja" + +#: includes/addons/class-mp-addons-list-table.php:128 marketpress.php:607 +msgid "Settings" +msgstr "Configurações" + +#: includes/common/data.php:178 includes/common/data.php:190 +msgid "Your Order Has Been Shipped! (ORDERID)" +msgstr "Seu Pedido Foi Enviado! (ORDERID)" + +#: includes/common/data.php:159 includes/common/data.php:166 +#: includes/common/data.php:172 +msgid "Your Order Confirmation (ORDERID)" +msgstr "Confirmação do Seu Pedido (ORDERID)" + +#: includes/common/data.php:148 +msgid "

    Thank you for your order! We appreciate your business, and please come back often to check out our new products.

    " +msgstr "

    Obrigado pelo seu pedido! Foi um prazer atendê-lo, volte sempre para conferir nossos novos produtos.

    " + +#: includes/common/data.php:147 +msgid "

    You are almost done! Please do a final review of your order to make sure everything is correct then click the \"Confirm Payment\" button.

    " +msgstr "

    Você está quase lá! Faça uma revisão final do seu pedido para ter certeza de que tudo está correto, e então clique no botão \"Confirmar Pagamento\".

    " + +#: includes/common/data.php:145 +msgid "

    Please enter your shipping information in the form below to proceed with your order.

    " +msgstr "

    Forneça suas informações de envio no formulário abaixo para prosseguir com o seu pedido.

    " + +#: includes/common/data.php:143 +msgid "

    If you have any questions about your order please do not hesitate to contact us.

    " +msgstr "

    Se você tiver alguma pergunta sobre o seu pedido, não hesite em nos contatar.

    " + +#: includes/common/data.php:106 +msgid "tag" +msgstr "tag" + +#: includes/common/data.php:105 +msgid "category" +msgstr "categoria" + +#: includes/common/data.php:104 +msgid "order-status" +msgstr "status-pedido" + +#: includes/common/data.php:103 +msgid "shopping-cart" +msgstr "carrinho" + +#: includes/common/data.php:102 +msgid "products" +msgstr "produtos" + +#. Translators: change default slugs here +#: includes/common/data.php:101 +msgid "store" +msgstr "loja" \ No newline at end of file diff --git a/languages/mp-pt.mo b/languages/mp-pt.mo new file mode 100644 index 0000000000000000000000000000000000000000..7f36712f3a95317f58c0cf68fde87fab22803294 GIT binary patch literal 64378 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 literal 0 HcmV?d00001 diff --git a/languages/mp-pt.po b/languages/mp-pt.po new file mode 100644 index 00000000..92eccd30 --- /dev/null +++ b/languages/mp-pt.po @@ -0,0 +1,8969 @@ +# Translation of MarketPress in Portuguese (Portugal) +# This file is distributed under the same license as the MarketPress package. +msgid "" +msgstr "" +"PO-Revision-Date: 2017-02-07 15:04:56+0000\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-Generator: GlotPress/2.3.1\n" +"Language: pt\n" +"Project-Id-Version: MarketPress\n" + +#: includes/public/class-mp-checkout.php:1285 +msgid "By clicking this checkbox you allow the website to process your personal data." +msgstr "" + +#: includes/common/class-mp-gdpr.php:382 +msgid "Order Info" +msgstr "" + +#: includes/common/class-mp-gdpr.php:268 +msgid "Shipping Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:267 +msgid "Shipping Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:266 +msgid "Shipping ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:265 +msgid "Shipping State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:264 +msgid "Shipping City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:263 +msgid "Shipping Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:262 +msgid "Shipping Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:261 +msgid "Shipping Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:260 +msgid "Shipping Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:259 +msgid "Shipping Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:258 +msgid "Shipping First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:254 +msgid "Billing Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:253 +msgid "Billing Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:252 +msgid "Billing ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:251 +msgid "Billing State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:250 +msgid "Billing City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:249 +msgid "Billing Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:248 +msgid "Billing Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:247 +msgid "Billing Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:246 +msgid "Billing Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:245 +msgid "Billing Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:244 +msgid "Billing First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:151 +msgid "Orders Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:139 +msgid "Customer Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:100 includes/common/class-mp-gdpr.php:116 +msgid "MarketPress User Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:81 +msgid "" +"In addition to standard WordPress session cookies, this site might be setting an\n" +"\t\t additional cookie to remember your cart settings. This cookie will last for one year." +msgstr "" + +#: includes/common/class-mp-gdpr.php:80 +msgid "Cookies" +msgstr "" + +#: includes/common/class-mp-gdpr.php:77 +msgid "" +"The following information will be collected in order to process orders: your name,\n" +"\t\t username, email address, avatar and profile URLs, address and phone number. This data can be\n" +"\t\t exported and removed." +msgstr "" + +#: includes/common/class-mp-gdpr.php:76 +msgid "Additional data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:71 +msgid "" +"This site might be using third party services and tools to process payments or/and\n" +"\t\t process shipping data when creating orders on the MarketPress store. These services include payment\n" +"\t\t gateways: 2Checkout, Authorize.net AIM, eWay shared payments, eWay Rapid 3.1 Payments, Mijireh,\n" +"\t\t Mollie, Paymill, PayPal, PIN, Simplify Commerce by MasterCard, Stripe and WePay; shipping gateways:\n" +"\t\t Fedex, UPS, USPS." +msgstr "" + +#: includes/common/class-mp-gdpr.php:70 +msgid "Third parties" +msgstr "" + +#: includes/admin/class-mp-admin.php:403 +msgid "Start creating store pages and products for your online shop here." +msgstr "" + +#: includes/admin/class-mp-admin.php:402 +msgid "Create Online Shop" +msgstr "" + +#: includes/admin/class-mp-admin.php:394 +msgid "Run Setup Wizard" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:234 +msgid "If having problems during invoice generation, add define( 'DOMPDF_ENABLE_HTML5PARSER', true ); to the wp-config.php file." +msgstr "" + +#: includes/public/class-mp-checkout.php:723 +msgid "Invalid Email" +msgstr "" + +#: includes/public/class-mp-checkout.php:721 +#: includes/public/class-mp-checkout.php:729 +msgid "This field is required" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:804 +msgid "This option changes the built-in css styles for store pages. For a custom css style, save your css file with the /* MarketPress Style: Your CSS Theme Name Here */ header line in the \"%s\" folder and it will appear in this list so you may select it. You should select \"None\" if you don't wish to use custom CSS styles or if you are using default theme templates or custom theme templates and css to make your own completely unique store design. For more information on custom theme templates click here »." +msgstr "" + +#: includes/public/class-mp-public.php:421 +#: includes/public/class-mp-short-codes.php:142 +msgid "Please enter a value greater than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:420 +#: includes/public/class-mp-short-codes.php:141 +msgid "Please enter a value less than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:419 +#: includes/public/class-mp-short-codes.php:140 +msgid "Please enter a value between {0} and {1}." +msgstr "" + +#: includes/public/class-mp-public.php:418 +#: includes/public/class-mp-short-codes.php:139 +msgid "Please enter a value between {0} and {1} characters long." +msgstr "" + +#: includes/public/class-mp-public.php:417 +#: includes/public/class-mp-short-codes.php:138 +msgid "Please enter at least {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:416 +#: includes/public/class-mp-short-codes.php:137 +msgid "Please enter no more than {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:415 +#: includes/public/class-mp-short-codes.php:136 +msgid "Please enter a value with a valid extension." +msgstr "" + +#: includes/public/class-mp-public.php:414 +#: includes/public/class-mp-short-codes.php:135 +msgid "Please enter the same value again." +msgstr "" + +#: includes/public/class-mp-public.php:413 +#: includes/public/class-mp-short-codes.php:134 +msgid "Please enter a valid credit card number." +msgstr "" + +#: includes/public/class-mp-public.php:412 +#: includes/public/class-mp-short-codes.php:133 +msgid "Please enter only digits." +msgstr "" + +#: includes/public/class-mp-public.php:411 +#: includes/public/class-mp-short-codes.php:132 +msgid "Please enter a valid number." +msgstr "" + +#: includes/public/class-mp-public.php:410 +#: includes/public/class-mp-short-codes.php:131 +msgid "Please enter a valid date (ISO)." +msgstr "" + +#: includes/public/class-mp-public.php:409 +#: includes/public/class-mp-short-codes.php:130 +msgid "Please enter a valid date." +msgstr "" + +#: includes/public/class-mp-public.php:408 +#: includes/public/class-mp-short-codes.php:129 +msgid "Please enter a valid URL." +msgstr "" + +#: includes/public/class-mp-public.php:406 +#: includes/public/class-mp-short-codes.php:127 +msgid "Please fix this field." +msgstr "" + +#: includes/public/class-mp-checkout.php:1287 +#: includes/public/class-mp-public.php:405 +#: includes/public/class-mp-short-codes.php:126 +msgid "This field is required." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:810 +msgid "None - Without Special CSS-styles" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:809 +msgid "Default - Using Default CSS-styles" +msgstr "" + +#: marketpress.php:739 +msgid "Enable multiple downloads per product" +msgstr "" + +#: marketpress.php:738 +msgid "Multiple Downloads" +msgstr "" + +#: includes/public/class-mp-checkout.php:715 +msgid "Invalid Zip Code" +msgstr "" + +#: includes/common/template-functions.php:2126 +msgid "Guest Email" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:195 +msgid "There was a problem finalizing your purchase. Please re-enter your credit card information and try again" +msgstr "" + +#: includes/common/class-mp-cart.php:565 includes/common/class-mp-order.php:600 +#: includes/common/helpers.php:111 +msgid "Download %1$s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:331 +msgid "Export products to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:328 +msgid "The import process uses the WordPress importer plugin." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:326 +msgid "Import / Export Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:325 +msgid "Export settings to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:324 +msgid "Import configuration" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:320 +msgid "Use the text below to export to a new installation. Or paste in the new configuration to import." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:318 +msgid "Import / Export Settings" +msgstr "" + +#. translators: URL to wp-admin/import.php +#: includes/admin/store-settings/class-mp-store-settings-import.php:266 +msgid "This importer is not installed. Please install importers from the main site." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:261 +msgid "Install Now" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:260 +msgid "Install %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:240 +msgid "Run Importer" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:239 +msgid "Run %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:258 +msgid "Import/Export" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1199 +msgid "Requires Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:737 +msgid "Optionally limit the user to some categories" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:671 +msgid "Should this coupon only be available to logged in users?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:670 +msgid "Require Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:655 +msgid "Mimimum number of products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:653 +msgid "Enter the minimum number of products in the cart that this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:648 +msgid "Can this coupon be limited to a number of products in the cart?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:334 +msgid "Add all values" +msgstr "Adicionar todos os valores" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:265 +msgid "Set as default variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:154 +msgid "Set Default" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:150 +msgid "More Info" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:40 +msgid "MarketPress - Quick Setup" +msgstr "" + +#: includes/public/class-mp-checkout.php:1399 +msgid "Proceed to checkout and create an account at the end." +msgstr "Prosseguir para checkout e criar uma conta no fim." + +#: includes/public/class-mp-checkout.php:1241 +#: includes/public/class-mp-checkout.php:1245 +msgid "Register account" +msgstr "" + +#: includes/public/class-mp-checkout.php:1233 +msgid "Register as customer?" +msgstr "Registar como cliente?" + +#: includes/public/class-mp-checkout.php:765 +msgid "

    Oops!

    Looks like you haven't added anything your cart. Let's go shopping!

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:763 +msgid "

    Oops!

    The cart is disabled.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing Information" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:214 +msgid "Global Currency" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:198 +msgid "Global Store Currency" +msgstr "Moeda global da loja" + +#: includes/common/shipping-modules/mp-usps.php:507 +msgid "There are no shipping services available for this type of package in your location." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:168 +msgid "Using this USPS Shipping calculator requires requesting an Ecommerce API Username and Password. Get your free set of credentials here ». The password is no longer used for the API, just the username which you should enter below. The USPS test site has not yet been updated and currently doesn't work - you should just request activating your credentials with USPS and go live." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:339 +msgid "ZIP Code" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:334 +msgid "Last name" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:333 +msgid "First name" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:150 +msgid "These are the manual payment instructions to display on the order confirmation screen. TOTAL will be replaced with the order total and ORDERID will be replaced with Order ID." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:240 +msgid "You must login to Authorize.net merchant dashboard to obtain the API login ID and API transaction key. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:327 +msgid "
    1. Set the \"Return Method\" within Site Management to Header Redirect and set the \"Return URL\" to %s
    2. Set your notifications url to %s
    " +msgstr "" + +#: includes/common/data.php:191 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Also, digital downloads included in your order are now ready to be downloaded. Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:185 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order is now available to download! Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:184 +msgid "Your Order Is Ready To Be Downloaded! (ORDERID)" +msgstr "" + +#: includes/common/data.php:179 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:173 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received, your digital goods are ready to be downloaded and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:167 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received and your digital goods are ready to be downloaded. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:160 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +" Your order has been received, and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information: \n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/class-mp-product.php:638 +msgid "You can not add more items to cart." +msgstr "" + +#: includes/common/class-mp-product.php:635 +msgid "You can only add {0} to cart." +msgstr "" + +#: includes/common/class-mp-product.php:625 +msgid "This product has an order limit of %d." +msgstr "" + +#: includes/common/class-mp-order.php:1454 +msgid "Shipped: tracking code: %s" +msgstr "" + +#: includes/common/class-mp-order.php:1000 +#: includes/common/class-mp-order.php:1012 +msgid "Finished" +msgstr "" + +#: includes/common/class-mp-order.php:858 +msgid "Contact Details" +msgstr "" + +#: includes/common/class-mp-order.php:339 includes/common/data.php:155 +msgid "" +"A new order (ORDERID) was created in your store:\n" +"\n" +" ORDERINFOSKU\n" +"\n" +" SHIPPINGINFO\n" +"\n" +" PAYMENTINFO\n" +"\n" +msgstr "\n" + +#: includes/common/class-mp-cart.php:1858 +msgid "Add again" +msgstr "" + +#: includes/common/class-mp-cart.php:1852 +msgid "was removed from Shopping Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1242 +#: includes/public/class-mp-short-codes.php:160 +msgid "Cart update notice: this item has a limit per order or you have reached the stock limit." +msgstr "" + +#: includes/admin/widgets/product-list.php:235 +msgid "Show Only Featured Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:533 +msgid "If enabled, users won't be able to filter products per category and/or to order by release date/name/price." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:531 +msgid "Hide Products Filter?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:353 +msgid "Notification to registration email instead of billing email?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:322 +msgid "Order Shipped - Mixed orders (with both digital and physical products)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:289 +msgid "Order Shipped - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:224 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:194 +msgid "New Order - Mixed" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:161 +msgid "New Order - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:115 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:243 +msgid "Mixed orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:110 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:238 +msgid "Digital downloads orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:105 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:233 +msgid "Physical orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:96 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed.
    For orders placed with manual payment, emails set here will be overriden by the one configured in manual payments settings, under payments settings page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:89 +msgid "Customer Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:47 +msgid "Admin Notification Settings" +msgstr "Definições de Notificação de Administradores" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:566 +msgid "Only contact details" +msgstr "Só detalhes de contacto" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:565 +msgid "Full billing info" +msgstr "Informação de facturação completa" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:561 +msgid "Details Collection" +msgstr "Recolha de Detalhes" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:548 +msgid "Digital Settings" +msgstr "Definições Digitais" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:515 +msgid "Apply Tax to Digital Products?" +msgstr "Aplicar Imposto a Produtos Digitais?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:236 +msgid "product (default)" +msgstr "produto (por omissão)" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:231 +msgid "If you are experiencing conflicts with other e-commerce plugins change this setting. This will change the internal post type of all your products. Please note that changing this option may break 3rd party themes or plugins." +msgstr "Se está a sofrer de conflitos com outros plugins de e-commerce, mude esta opção. Isto vai mudar o tipo interno de post para todos os produtos. Note: Mudar esta opção pode causar falhas em plugins e temas de entidades terceiras" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1203 +msgid "Hide details" +msgstr "Esconder detalhes" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1202 +msgid "Show all changes" +msgstr "Mostrar todas as alterações " + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1184 +msgid "Version %s" +msgstr "Versão %s" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1161 +msgid "Current" +msgstr "Corrente" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1131 +msgid "%s changelog" +msgstr "log de alterações %s" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:952 +msgid "We did not find any data for this plugin or theme..." +msgstr "Não encontrámos dados para este plugin ou tema" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:285 +msgid "Activate WPMU DEV Dashboard" +msgstr "Activar Dashboard WPMU DEV" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:279 +msgid "Just one more step - activate the WPMU DEV Dashboard plugin and you're all done!" +msgstr "Só mais um passo - active o Dashboard WPMU Dev e está concluído." + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:277 +msgid "Important updates are available for your WPMU DEV plugins/themes. Activate the WPMU DEV Dashboard to update now!" +msgstr "Estão disponíveis actualizações importantes para o WPMU Dev. Active o WPMU Dev Dashboard para actualizar!" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:273 +msgid "Just one more step to enable updates and support for %s!" +msgstr "Falta só um passo para ligar actualizações e suporte para %s!" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:271 +msgid "Important updates are available for %s. Activate the WPMU DEV Dashboard to update now!" +msgstr "Estão disponíveis actualizações importantes para %s. Active o WPMU Dev Dashboard para actualizar!" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:264 +msgid "activate" +msgstr "activar" + +#: includes/admin/class-mp-admin.php:398 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:248 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:289 +msgid "Dismiss" +msgstr "Dispensar" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:247 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:288 +msgid "Saving..." +msgstr "Gravando..." + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:244 +msgid "Install Plugin" +msgstr "Instalar plugin" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:238 +msgid "Almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "Está quase pronto. Instale o WPMU Dev Dashboard para suporte e actualizações. " + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:236 +msgid "Important updates are available for your WPMU DEV plugins/themes. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "Estão disponíveis updates importantes para temas e plugins WPMU DEV. Instale o WPMU DEV Dashboard para receber suporte e actualizações." + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:232 +msgid "%s is almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "%s está quase pronto. Instale o WPMU Dev Dashboard para suporte e actualizações. " + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:230 +msgid "Important updates are available for %s. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "Estão disponíveis updates importantes para %s. Instale o WPMU DEV Dashboard para receber suporte e actualizações." + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:223 +msgid "install" +msgstr "instalar" + +#: includes/admin/class-mp-shortcode-builder.php:1428 +msgid "Sets the number of Tags to display. This causes the SQL LIMIT value to be defined." +msgstr "Define o número de tags a mostrar. Faz com que seja definido o SQL LIMIT" + +#: includes/admin/class-mp-shortcode-builder.php:1289 +msgid "How many products to display in the product list if \"paginate\" is set to false." +msgstr "Quantos produtos mostrar na lista de produtos sem \"paginar\" estiver desligado" + +#: includes/admin/class-mp-shortcode-builder.php:739 +#: includes/admin/class-mp-shortcode-builder.php:906 +#: includes/admin/class-mp-shortcode-builder.php:1350 +msgid "Grid" +msgstr "Tabela" + +#: includes/admin/class-mp-shortcode-builder.php:735 +#: includes/admin/class-mp-shortcode-builder.php:902 +#: includes/admin/class-mp-shortcode-builder.php:1346 +msgid "Products will be displayed as list or grid." +msgstr "Os produtos vão ser mostrados em lista ou tabela" + +#: includes/admin/class-mp-shortcode-builder.php:206 +msgid "Display a cloud or list of your global product tags." +msgstr "Mostrar nuvem ou lista com as tags globais de produtos" + +#: includes/admin/class-mp-shortcode-builder.php:205 +msgid "Display a list of your global categories." +msgstr "Mostrar uma lista com as categorias globais." + +#: includes/admin/class-mp-shortcode-builder.php:204 +msgid "Display a list or grid of your global products." +msgstr "Mostrar uma lista ou tabela com os produtos globais." + +#: includes/admin/class-mp-shortcode-builder.php:181 +msgid "Display a list of featured products." +msgstr "Mostrar uma lista de produtos em destaque" + +#: includes/admin/class-mp-products-admin.php:1451 +msgid "Is Featured?" +msgstr "Em Destaque?" + +#: includes/admin/class-mp-products-admin.php:1444 +msgid "Featured Product" +msgstr "Produto em Destaque" + +#: includes/admin/class-mp-products-admin.php:581 +#: includes/admin/class-mp-products-admin.php:1580 +msgid "% discount" +msgstr "Desconto %" + +#: includes/admin/class-mp-products-admin.php:579 +msgid "OR" +msgstr "OU" + +#: includes/admin/class-mp-products-admin.php:460 +#: includes/admin/class-mp-products-admin.php:586 +#: includes/admin/widgets/product-list.php:217 +msgid "Featured" +msgstr "Em Destaque" + +#: includes/admin/class-mp-orders-admin.php:536 +#: includes/admin/class-mp-orders-admin.php:538 +msgid "Tracking Link" +msgstr "Link de seguimento" + +#: includes/admin/class-mp-orders-admin.php:508 +msgid "Shipping Tax" +msgstr "Imposto de portes" + +#: includes/admin/class-mp-orders-admin.php:356 +msgid "Shipping Total" +msgstr "Total de portes" + +#: includes/admin/class-mp-orders-admin.php:352 +msgid "Taxes Total" +msgstr "Total de impostos" + +#: includes/admin/class-mp-orders-admin.php:349 +msgid "Products Total" +msgstr "Total de Produtos" + +#: includes/admin/class-mp-ajax.php:366 +msgid "Oops! You entered an invalid username/email and or password." +msgstr "Ups! Introduziu um nome de utilizador/email ou password inválidos" + +#: includes/admin/class-mp-ajax.php:254 +msgid "Percentage Discount" +msgstr "Desconto Percentual" + +#: includes/admin/class-mp-ajax.php:234 +msgid "Limit the Amount of Items per Order" +msgstr "Limitar o número de items por encomenda" + +#: includes/admin/class-mp-ajax.php:214 +msgid "Unused Attributes" +msgstr "Atributos não usados" + +#: includes/admin/class-mp-admin.php:82 +msgid "Run setup wizard" +msgstr "Correr wizard de instalação" + +#: includes/admin/class-mp-admin.php:79 +msgid "MarketPress setup is not complete! Once you've completed this quick setup wizard you'll have a fully working online store - exciting! " +msgstr "Instalação do MarketPress incompleta! Assim que termine este wizard, terá uma loja online inteiramente funcional!" + +#: marketpress.php:263 +msgctxt "mp_order" +msgid "Add New" +msgstr "" + +#: marketpress.php:184 +msgctxt "product_tag" +msgid "Product Tag" +msgstr "" + +#: marketpress.php:183 +msgctxt "product_tag" +msgid "Product Tags" +msgstr "" + +#: marketpress.php:150 +msgctxt "product_category" +msgid "Product Category" +msgstr "" + +#: marketpress.php:149 +msgctxt "product_category" +msgid "Product Categories" +msgstr "" + +#. Author URI of the plugin/theme +msgid "http://premium.wpmudev.org" +msgstr "" + +#: marketpress.php:729 +msgid "Invoice PDF" +msgstr "" + +#: marketpress.php:712 +msgid "Grant access to themes and gateways depending on the user's Pro Site level" +msgstr "" + +#: marketpress.php:711 +msgid "Pro Sites" +msgstr "" + +#: marketpress.php:703 +msgid "Offer and accept coupon codes" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:687 +msgid "Install %s Pages" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:682 +msgid "Welcome to %s – Install pages required by the plugin automatically." +msgstr "" + +#: marketpress.php:668 +msgid "Your pages were created successfully." +msgstr "" + +#: marketpress.php:436 +msgid "Add a Product" +msgstr "Adicionar Produto" + +#: marketpress.php:271 +msgid "Parent Order" +msgstr "" + +#: marketpress.php:270 +msgid "No orders found in trash" +msgstr "" + +#: marketpress.php:269 +msgid "No orders found" +msgstr "Não foram encontradas encomendas" + +#: marketpress.php:265 +msgid "Edit Order" +msgstr "" + +#: marketpress.php:264 +msgid "Add New Order" +msgstr "" + +#: marketpress.php:220 marketpress.php:221 +msgid "Add New Product" +msgstr "" + +#: marketpress.php:197 +msgid "No product tags found" +msgstr "" + +#: marketpress.php:196 +msgid "Choose from the most used product tags" +msgstr "" + +#: marketpress.php:195 +msgid "Add or remove product tags" +msgstr "" + +#: marketpress.php:194 +msgid "Separate product tags with commas" +msgstr "" + +#: marketpress.php:193 +msgid "Search Product Tags" +msgstr "" + +#: marketpress.php:192 +msgid "Parent Product Tag:" +msgstr "" + +#: marketpress.php:191 +msgid "Parent Product Tag" +msgstr "" + +#: marketpress.php:190 +msgid "New Product Tag Name" +msgstr "" + +#: marketpress.php:189 +msgid "Add New Product Tag" +msgstr "" + +#: marketpress.php:188 +msgid "Update Product Tag" +msgstr "" + +#: marketpress.php:187 +msgid "View Product Tag" +msgstr "" + +#: marketpress.php:186 +msgid "Edit Product Tag" +msgstr "" + +#: marketpress.php:185 +msgid "All Product Tags" +msgstr "" + +#: marketpress.php:163 +msgid "No product categories found" +msgstr "" + +#: marketpress.php:162 +msgid "Choose from the most used product categories" +msgstr "" + +#: marketpress.php:161 +msgid "Add or remove product categories" +msgstr "" + +#: marketpress.php:160 +msgid "Separate product categories with commas" +msgstr "" + +#: marketpress.php:159 +msgid "Search Product Categories" +msgstr "" + +#: marketpress.php:158 +msgid "Parent Product Category:" +msgstr "" + +#: marketpress.php:157 +msgid "Parent Product Category" +msgstr "" + +#: marketpress.php:156 +msgid "New Product Category Name" +msgstr "" + +#: marketpress.php:155 +msgid "Add New Product Category" +msgstr "" + +#: marketpress.php:154 +msgid "Update Product Category" +msgstr "" + +#: marketpress.php:153 +msgid "View Product Category" +msgstr "" + +#: marketpress.php:152 +msgid "Edit Product Category" +msgstr "" + +#: marketpress.php:151 +msgid "All Product Categories" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Please fix the %s1 and then try submitting the form again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Oops! The form contains %s1 which %s2 been highlighted below." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:660 +msgid "have" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:659 +msgid "has" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:651 +msgid "Value must be less than {0}" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:650 +msgid "Please enter only letters and numbers" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:539 +msgid "Due to prolonged inactivity on this page, one or more settings were not saved. Please try again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:535 +msgid "Settings Saved" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-user-select.php:22 +msgid "Select Some Users" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-section.php:18 +msgid "Section Title" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:425 +msgid "Are you sure you want to delete this?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:30 +msgid "Add Row" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-post-select.php:24 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-taxonomy-select.php:22 +msgid "Select Posts" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:210 +msgid "Add Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:129 +msgid "Select the image that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:93 +msgid "Select image(s) that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:79 +msgid "Select the image that you would like to use for this variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:48 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:82 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:68 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:132 +msgid "Select Image" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:31 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:160 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:168 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:19 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:115 +msgid "Select File" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:30 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:18 +msgid "Select the file that you would like to use." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:357 +msgid "Create Variations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:356 +msgid "Add Another Variant" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Insert a value and press ENTER" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "(e.g. White, Grey, Red etc.)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Variation Values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:333 +msgid "Or create new variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "(e.g. Color)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:303 +msgid "You are about to delete selected variants.
    If you want to continue please confirm." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:302 +msgid "Confirmation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:290 +msgid "Insert quantity available. Empty for unlimited." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:281 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:294 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:307 +msgid "Cancel" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:280 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:293 +msgid "Update" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:277 +msgid "Insert the price i.e. 25 or 25.50" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:115 +msgid "Img." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:85 +msgid "Add New Variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:79 +msgid "Delete Variants" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:78 +msgid "Update Prices" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:77 +msgid "Update Inventory" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:76 +msgid "Update Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:75 +msgid "Bulk Actions" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:73 +msgid "Select bulk action" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:196 +msgid "Configure Store" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:195 +msgid "Configure shipping rates, emails and your store's appearance. " +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:190 +msgid "Add Product" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:189 +msgid "Add your first product for sale and get familiar with adding products." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:184 +msgid "Your store is almost ready for its first customers, but first it needs some products. Get started by adding products below, or jump straight into further configuring your store’s settings." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:183 +msgid "Woohoo! Your online store is up and running." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:160 +msgid "Finish Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:124 +msgid "And what metric system do you want to use?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:113 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:142 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:159 +msgid "Back" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:109 +msgid "Do you want to apply tax for your products? You can customize this for each product and variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:105 +msgid "What currency do you want to sell with?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:93 +msgid "And, which countries do you want to sell to?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:89 +msgid "Where is your online store based?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:80 +msgid "Payment Gateway" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:79 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:123 +msgid "Metric System" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:78 +msgid "Currency & Tax" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:77 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:88 +msgid "Locations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:70 +msgid "Choose where you want to sell your stuff and what currency. Easy!" +msgstr "" + +#: includes/public/class-mp-checkout.php:1400 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:58 +msgid "Continue" +msgstr "" + +#: includes/admin/class-mp-admin.php:83 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:53 +msgid "Skip this step, I'll do this manually" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:49 +msgid "Install store pages" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:44 +msgid "Once you've completed this quick setup wizard you'll have a fully working online store - exciting! Start
    by creating the default store pages for the online store such as the cart, checkout and store pages." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:42 +msgid "MarketPress adds a full online store to your website, with heaps of configuration options and addons
    to suit your needs. It's really easy to get going, and only takes a few minutes to setup!" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:41 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:69 +msgid "Welcome to MarketPress - Quick Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-advanced-select.php:23 +msgid "Select Some Options" +msgstr "" + +#: includes/wpmudev-metaboxes/class-wpmudev-field.php:694 +msgid "You must the WPMUDEV_Field::display() method in your form field class" +msgstr "Tem que ter o método WPMUDEV_Field::display() na class de campo de formulário" + +#: includes/public/class-mp-short-codes.php:636 +msgid "Only %s left in stock..." +msgstr "Só existem %s em inventário..." + +#: includes/public/class-mp-short-codes.php:633 +msgid "Unlimited stock" +msgstr "Stock ilimitador" + +#: includes/public/class-mp-short-codes.php:430 +msgid "product_id must be defined" +msgstr "product_id tem que ser definidor" + +#: includes/public/class-mp-checkout.php:1250 +msgid "An account with this username already exists" +msgstr "Já existe uma conta com este nome de utilizador" + +#: includes/public/class-mp-checkout.php:1394 +msgid "Continue as Guest" +msgstr "Continuar como convidado" + +#: includes/public/class-mp-checkout.php:1393 +msgid "Proceed to checkout and you'll have an opportunity to create an account at the end." +msgstr "Prossiga para o checkout, e no final terá a oportunidade de criar uma conta." + +#: includes/public/class-mp-checkout.php:1392 +#: includes/public/class-mp-checkout.php:1398 +msgid "First-time customer?" +msgstr "Cliente pela primeira vez?" + +#: includes/public/class-mp-checkout.php:1386 +msgid "Login" +msgstr "Login" + +#: includes/public/class-mp-checkout.php:1379 +msgid "E-Mail Address/Username" +msgstr "Email/Nome de utilizador" + +#: includes/public/class-mp-checkout.php:1377 +msgid "Sign in to speed up the checkout process." +msgstr "Faça login para acelerar o processo de checkout." + +#: includes/public/class-mp-checkout.php:1376 +msgid "Have an account?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1297 +msgid "Shipping address different than billing?" +msgstr "Morada de envio diferente da morada de facturação?" + +#: includes/public/class-mp-checkout.php:1184 +msgid "There are no available gateways to process this payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1160 +msgid "Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:1123 +msgid "Oops! An error occurred while processing your payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1051 +msgid "Next Step »" +msgstr "Próximo Passo »" + +#: includes/public/class-mp-checkout.php:1045 +msgid "« Previous Step" +msgstr "" + +#: includes/public/class-mp-checkout.php:873 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:657 +msgid "error" +msgstr "" + +#: includes/public/class-mp-checkout.php:872 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:658 +msgid "errors" +msgstr "" + +#: includes/public/class-mp-checkout.php:871 +msgid "

    Oops! We found %d %s in the form below.

    Fields that have errors are highlighted in red below. Entering into a field will reveal the actual error that occurred.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:870 +msgid "Please enter a valid first and last name" +msgstr "" + +#: includes/public/class-mp-checkout.php:869 +msgid " Please enter a valid card security code" +msgstr "" + +#: includes/public/class-mp-checkout.php:868 +msgid "Please enter a valid card expiration" +msgstr "" + +#: includes/public/class-mp-checkout.php:773 +msgid "Javascript is required in order to checkout. Please enable Javascript in your browser and then refresh this page." +msgstr "É necessário ter JavaScript ligado para o processo de checkout. Por favor ligue JavaScript no browser e refresque a página." + +#: includes/public/class-mp-checkout.php:588 +msgid "An unknown error occurred. Please try again." +msgstr "Ocorreu um erro inesperado. Por favor tente de novo." + +#: includes/public/class-mp-checkout.php:386 +msgid "Town/City" +msgstr "Cidade" + +#: includes/public/class-mp-checkout.php:380 +msgid "Apartment, suite, unit, building, floor, etc" +msgstr "" + +#: includes/public/class-mp-checkout.php:376 +msgid "Address Line 2" +msgstr "Linha de Endereço 2" + +#: includes/public/class-mp-checkout.php:363 +msgid "Address Line 1" +msgstr "Morada (linha 1)" + +#: includes/common/class-mp-order.php:770 +#: includes/public/class-mp-checkout.php:354 +msgid "Company" +msgstr "Empresa" + +#: includes/public/class-mp-checkout.php:330 +msgid "Last" +msgstr "Último" + +#: includes/public/class-mp-checkout.php:321 +msgid "First" +msgstr "Primeiro" + +#: includes/public/class-mp-checkout.php:284 +msgid "State/Province" +msgstr "Estado/Província" + +#: includes/public/class-mp-checkout.php:83 +msgid "Review Order/Payment" +msgstr "Rever Encomenda/Pagamento" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing/Shipping Address" +msgstr "Morada de Envio/Facturação" + +#: includes/public/class-mp-checkout.php:80 +msgid "Login/Register" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:530 +msgid "Marketplace" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:523 +msgid "Global Marketplace Pages" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +msgid "Store Network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +#: includes/multisite/class-mp-admin-multisite.php:494 +msgid "Store Network Settings" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:440 +msgid "Set theme access permissions for network stores. For a custom css theme, save your css file with the MarketPress Theme: NAME header in the /marketpress/ui/themes/ folder and it will appear in this list so you may select it." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:361 +msgid "Choose a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:336 +msgid "%d products get indexed" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:285 +msgid "Product Indexer" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:281 +msgid "Please hold on..." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:280 +msgid "Index Products" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:279 +msgid "%d products have been indexed in whole network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:182 +msgid "Enable Global Shopping Cart?" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:178 +msgid "Limit Global Widgets/Shortcodes To Main Blog?" +msgstr "" + +#: includes/common/template-functions.php:2802 +#: includes/multisite/template-functions.php:355 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:97 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:114 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:143 +msgid "Next" +msgstr "" + +#: includes/common/template-functions.php:2801 +#: includes/multisite/template-functions.php:354 +msgid "Prev" +msgstr "" + +#: includes/common/template-functions.php:2597 +msgid "Tagged in " +msgstr "" + +#: includes/common/template-functions.php:2196 +#: includes/common/template-functions.php:2202 +#: includes/common/template-functions.php:2214 +#: includes/common/template-functions.php:2217 +msgid "Oops! We couldn't locate any orders matching that order number. Please verify the order number and try again." +msgstr "" + +#: includes/common/template-functions.php:2138 +msgid "Look Up" +msgstr "" + +#: includes/common/template-functions.php:1423 +msgid "Please choose a shipping method" +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "If you have your order ID you can look it up using the form below." +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "Order Search" +msgstr "Pesquisa de Encomendas" + +#: includes/common/template-functions.php:910 +#: includes/public/class-mp-checkout.php:1440 +msgid "Cart" +msgstr "" + +#: includes/common/template-functions.php:895 +msgid "[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:887 +msgid "[mp_global_categories_list]" +msgstr "" + +#: includes/common/template-functions.php:880 +msgid "" +"Welcome to our market place!\n" +"\n" +"Check out our network of products:\n" +"\n" +"[mp_list_global_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_global_categories_list]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:879 +msgid "Global Store" +msgstr "" + +#: includes/common/template-functions.php:873 +msgid "" +"Welcome to our online store! Feel free to browse around:\n" +"\n" +"[mp_store_navigation]\n" +"\n" +"Check out our most popular products:\n" +"\n" +"[mp_popular_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_list_categories]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_tag_cloud]" +msgstr "" +"Bem vindo à nossa loja online ! Fique à vontade para explorar o site:\n" +"\n" +"[mp_store_navigation]\n" +"\n" +"Veja os nossos produtos mais populares:\n" +"\n" +"[mp_popular_products]\n" +"\n" +"Ver por categoria:\n" +"\n" +"[mp_list_categories]\n" +"\n" +"Ver por tag:\n" +"\n" +"[mp_tag_cloud]" + +#: includes/common/shipping-modules/mp-weight-rate.php:127 +msgid "If cart weight is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:126 +msgid "Cart Weight" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:222 +msgid "Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:206 +msgid "Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:196 +msgid "Retail Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:195 +msgid "Online Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:193 +msgid "Rates Request Type" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:189 +msgid "Maximum Weight Per Package" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:195 +#: includes/common/shipping-modules/mp-usps.php:236 +msgid "Enter your standard box sizes as LengthxWidthxHeight (e.g. 12x8x6) For each box defined enter the maximum weight it can contain. Note: the shipping prices this plugin calculates are estimates. If they are consistently too low or too high, please check that the list of boxes above and the product weights are accurate and complete." +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:187 +msgid "Handling Charge Per Box Shipped" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:176 +#: includes/common/shipping-modules/mp-ups.php:181 +msgid "Offered Services" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:165 +msgid "Shipper Number" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:151 +msgid "User ID" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:144 +msgid "Developer Kit Access Key" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:140 +msgid "Use Sandbox Mode?" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:123 +msgid "In order to use UPS, you will need a UPS Developer Kit access key and the UPS user ID and password associated with the access key. Set these up for free here. If this information is missing or incorrect, an error will appear during the checkout process and the buyer will not be able to complete the transaction." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:112 +msgid "If cart total is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:111 +msgid "Cart Total" +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:95 +#: includes/common/shipping-modules/mp-weight-rate.php:111 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Don't worry about sorting as this will be done automatically upon saving." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:170 +msgid "Method Title (visible for clients)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:409 +#: includes/common/shipping-modules/mp-ups.php:216 +#: includes/common/shipping-modules/mp-usps.php:251 +msgid "Max Weight (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:402 +#: includes/common/shipping-modules/mp-ups.php:209 +#: includes/common/shipping-modules/mp-usps.php:247 +msgid "Size (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:387 +msgid "Enter your standard box sizes as LengthxWidthxHeight ( 12x8x6 ) For each box defined enter the maximum weight it can contain. Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:361 +#: includes/common/shipping-modules/mp-usps.php:229 +msgid "Handling Charge per International Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:353 +msgid "International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:339 +#: includes/common/shipping-modules/mp-usps.php:213 +msgid "Handling Charge per Domestic Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:331 +msgid "Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:321 +msgid "When checked the customer can chose Residential or Commercial delivery with Residential the default. Unchecked it's only Residential rates." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:320 +msgid "Allow Commercial Delivery?" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:315 +msgid "Fedex 10kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:314 +msgid "Fedex 25kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:313 +msgid "Fedex Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:312 +msgid "Fedex Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:311 +msgid "Fedex Pak" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:310 +msgid "Fedex Tube" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:306 +msgid "Default Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:294 +msgid "Dropoff Type" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:290 +msgid "Meter ID" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:134 +msgid "This is a residential address" +msgstr "Morada residencial" + +#: includes/common/payment-gateways/wepay.php:283 +msgid "There was an error processing your card: \"%s\". Please check your credit card info and try again." +msgstr "Erro ao processar cartão: \"%s\". Por favor verifique o seu cartão de crédito e tente novamente." + +#: includes/common/payment-gateways/wepay.php:121 +msgid "Wepay makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept cards directly on your site. You don't need a merchant account or gateway. WePay handles everything including storing cards. Credit cards go directly to WePay's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:385 +msgid "There was an error processing your card - \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:356 +msgid "%s Store Purchase - Order ID - %s, Email - %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:251 +msgid "Stripe makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept Visa, MasterCard, American Express, Discover, JCB, and Diners Club cards directly on your site. You don't need a merchant account or gateway. Stripe handles everything, including storing cards, subscriptions, and direct payouts to your bank account. Credit cards go directly to Stripe's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:192 +msgid "ZMW - Zambian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:191 +msgid "ZAR - South African Rand" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:190 +msgid "YER - Yemeni Rial" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:189 +msgid "XPF - Cfp Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:188 +msgid "XOF - West African Cfa Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:187 +msgid "XCD - East Caribbean Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:186 +msgid "XAF - Central African Cfa Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:185 +msgid "WST - Samoan Tala" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:184 +msgid "VUV - Vanuatu Vatu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:183 +msgid "VND - Vietnamese Đồng" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:182 +msgid "VEF - Venezuelan Bolívar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:181 +msgid "UZS - Uzbekistani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:180 +msgid "UYI - Uruguayan Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:178 +msgid "UGX - Ugandan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:177 +msgid "UAH - Ukrainian Hryvnia" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:176 +msgid "TZS - Tanzanian Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:175 +msgid "TWD - New Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:174 +msgid "TTD - Trinidad and Tobago Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:172 +msgid "TOP - Tongan Paʻanga" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:171 +msgid "TJS - Tajikistani Somoni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:169 +msgid "SZL - Swazi Lilangeni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:168 +msgid "SVC - Salvadoran Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:167 +msgid "STD - São Tomé and Príncipe Dobra" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:166 +msgid "SRD - Surinamese Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:165 +msgid "SOS - Somali Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:164 +msgid "SLL - Sierra Leonean Leone" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:163 +msgid "SHP - Saint Helenian Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:160 +msgid "SCR - Seychellois Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:159 +msgid "SBD - Solomon Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:157 +msgid "RWF - Rwandan Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:156 +msgid "RUB - Russian Ruble" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:155 +msgid "RSD - Serbian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:154 +msgid "RON - Romanian Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:153 +msgid "QAR - Qatari Riyal" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:152 +msgid "PYG - Paraguayan Guaraní*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:151 +msgid "PLN - Polish Złoty" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:150 +msgid "PKR - Pakistani Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:149 +msgid "PHP - Philippine Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:148 +msgid "PGK - Papua New Guinean Kina" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:147 +msgid "PEN - Peruvian Nuevo Sol*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:146 +msgid "PAB - Panamanian Balboa*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:144 +msgid "NPR - Nepalese Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:142 +msgid "NIO - Nicaraguan Córdoba*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:141 +msgid "NGN - Nigerian Naira" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:140 +msgid "NAD - Namibian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:139 +msgid "MZN - Mozambican Metical" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:137 +msgid "MXN - Mexican Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:136 +msgid "MWK - Malawian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:135 +msgid "MVR - Maldivian Rufiyaa" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:134 +msgid "MUR - Mauritian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:133 +msgid "MRO - Mauritanian Ouguiya" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:132 +msgid "MOP - Macanese Pataca" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:131 +msgid "MNT - Mongolian Tögrög" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:130 +msgid "MKD - Macedonian Denar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:129 +msgid "MGA - Malagasy Ariary" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:128 +msgid "MDL - Moldovan Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:126 +msgid "LVL - Latvian Lats" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:124 +msgid "LSL - Lesotho Loti" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:123 +msgid "LRD - Liberian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:122 +msgid "LKR - Sri Lankan Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:121 +msgid "LBP - Lebanese Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:120 +msgid "LAK - Lao Kip*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:119 +msgid "KZT - Kazakhstani Tenge" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:118 +msgid "KYD - Cayman Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:117 +msgid "KRW - South Korean Won" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:116 +msgid "KMF - Comorian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:115 +msgid "KHR - Cambodian Riel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:114 +msgid "KGS - Kyrgyzstani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:113 +msgid "KES - Kenyan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:111 +msgid "JMD - Jamaican Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:110 +msgid "ISK - Icelandic Króna" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:109 +msgid "INR - Indian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:108 +msgid "ILS - Israeli New Sheqel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:107 +msgid "IDR - Indonesian Rupiah" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:105 +msgid "HTG - Haitian Gourde" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:103 +msgid "HNL - Honduran Lempira*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:101 +msgid "GYD - Guyanese Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:100 +msgid "GTQ - Guatemalan Quetzal*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:99 +msgid "GNF - Guinean Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:98 +msgid "GMD - Gambian Dalasi" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:97 +msgid "GIP - Gibraltar Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:96 +msgid "GEL - Georgian Lari" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:94 +msgid "FKP - Falkland Islands Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:93 +msgid "FJD - Fijian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:91 +msgid "ETB - Ethiopian Birr" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:90 +msgid "EGP - Egyptian Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:89 +msgid "EEK - Estonian Kroon*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:88 +msgid "DZD - Algerian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:87 +msgid "DOP - Dominican Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:85 +msgid "DJF - Djiboutian Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:84 +msgid "CZK - Czech Koruna*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:83 +msgid "CVE - Cape Verdean Escudo*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:82 +msgid "CRC - Costa Rican Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:81 +msgid "COP - Colombian Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:80 +msgid "CNY - Chinese Renminbi Yuan" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:79 +msgid "CLP - Chilean Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:77 +msgid "CDF - Congolese Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:76 +msgid "CAD - Canadian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:75 +msgid "BZD - Belize Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:74 +msgid "BWP - Botswana Pula" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:73 +msgid "BSD - Bahamian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:72 +msgid "BRL - Brazilian Real*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:71 +msgid "BOB - Bolivian Boliviano*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:70 +msgid "BND - Brunei Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:69 +msgid "BMD - Bermudian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:68 +msgid "BIF - Burundian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:67 +msgid "BGN - Bulgarian Lev" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:66 +msgid "BDT - Bangladeshi Taka" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:65 +msgid "BBD - Barbadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:64 +msgid "BAM - Bosnia & Herzegovina Convertible Mark" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:63 +msgid "AZN - Azerbaijani Manat" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:62 +msgid "AWG - Aruban Florin" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:61 +msgid "AUD - Australian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:60 +msgid "ARS - Argentine Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:59 +msgid "AOA - Angolan Kwanza*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:58 +msgid "ANG - Netherlands Antillean Gulden" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:57 +msgid "AMD - Armenian Dram" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:56 +msgid "ALL - Albanian Lek" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:55 +msgid "AFN - Afghan Afghani*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:54 +msgid "AED - United Arab Emirates Dirham" +msgstr "AED - United Arab Emirates Dirham" + +#: includes/common/payment-gateways/skrill.php:345 +msgid "Skrill balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:327 +msgid "Skrill IPN message received." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:283 +msgid "Skrill" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:278 +msgid "Pending payment" +msgstr "Pagamento pendente" + +#: includes/common/payment-gateways/skrill.php:144 +msgid "The secret word must match the word submitted in the \"Merchant Tools\" section of your Skrill account." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:134 +msgid "You must use your valid Skrill merchant email. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:133 +msgid "Skrill Email" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:123 +msgid "Resell your inventory via Skrill.com (Moneybookers)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:95 +msgid "ZAR - South-African Rand" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:93 +msgid "TWD - Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:92 +msgid "TRY - New Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:91 +msgid "TND - Tunisian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:90 +msgid "THB - Thailand Baht" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:89 +msgid "SKK - Slovakian Koruna" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:86 +#: includes/common/payment-gateways/stripe.php:158 +msgid "SAR - Saudi Riyal" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:85 +msgid "RSD - Serbian dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:83 +msgid "QAR - Qatari Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:81 +msgid "OMR - Omani Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:80 +msgid "NOK - Norwegian Krone " +msgstr "" + +#: includes/common/payment-gateways/skrill.php:78 +#: includes/common/payment-gateways/stripe.php:138 +msgid "MYR - Malaysian Ringgit" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:77 +#: includes/common/payment-gateways/stripe.php:127 +msgid "MAD - Moroccan Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:74 +msgid "KRW - South-Korean Won" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:72 +msgid "JOD - Jordanian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:70 +msgid "INR - Indian Rupee" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:63 +msgid "EEK - Estonian Kroon" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:56 +msgid "AED - Utd. Arab Emir. Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:52 +msgid "Turkish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:51 +msgid "Swedish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:50 +msgid "Spanish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:49 +msgid "Russian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:48 +msgid "Romainian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:47 +msgid "Polish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:46 +msgid "Italian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:45 +msgid "Greek" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:44 +msgid "German" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:43 +msgid "French" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:42 +msgid "Finnish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:41 +msgid "English" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:40 +msgid "Dutch" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:39 +msgid "Danish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:38 +msgid "Czech" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:37 +msgid "Chinese" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:201 +msgid "There was an error processing your card: %s. Please re-enter your credit card info and try again." +msgstr "Erro ao processar cartão: %s. Por favor re-introduca o seu cartão de crédito e tente novamente." + +#: includes/common/payment-gateways/pin.php:278 +msgid "
  • There was an error processing your card: \"%s\". Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:274 +msgid "
  • There was an error processing your card. Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:177 +#: includes/common/payment-gateways/stripe.php:279 +msgid "Publishable Key" +msgstr "" + +#: includes/common/payment-gateways/pin.php:163 +msgid "API Credentials?" +msgstr "" + +#: includes/common/payment-gateways/pin.php:147 +msgid "PIN makes it easy to start accepting credit card payments with Australia’s first all-in-one online payment system. Accept all major credit cards directly on your site. Your sales proceeds are deposited to any Australian bank account, no merchant account required." +msgstr "" + +#: includes/common/payment-gateways/pin.php:57 +#: includes/common/payment-gateways/stripe.php:179 +msgid "USD - United States Dollar" +msgstr "USD - United States Dollar" + +#: includes/common/payment-gateways/paypal-payflow.php:455 +msgid "Email Footer" +msgstr "Email Footer" + +#: includes/common/payment-gateways/paypal-payflow.php:445 +msgid "Email Header" +msgstr "Email Header" + +#: includes/common/payment-gateways/paypal-payflow.php:416 +msgid "Partner" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:409 +msgid "Vendor" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:852 +#: includes/common/payment-gateways/paypal-express.php:1126 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences\t section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:749 +msgid "Page Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:744 +msgid "Header Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:739 +msgid "Header Border Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:734 +msgid "Header Image" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:680 +msgid "Locale" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:624 +#: includes/common/payment-gateways/paypal-express.php:658 +msgid "Merchant Email" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:645 +msgid "Paypal Express Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:603 +msgid "Paypal Express Network Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:861 +msgid "Application ID (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:854 +msgid "Signature (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:847 +msgid "API Password (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:839 +msgid "API Username (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:832 +msgid "Signature (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:825 +msgid "API Password (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:817 +msgid "API Username (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:799 +msgid "This message is displayed at the top of the gateway settings page to store admins. It's a good place to inform them of your fees or put any sales messages." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:787 +msgid "Please enter your PayPal email address or business ID you want to recieve fees at." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:786 +msgid "PayPal E-mail" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:772 +msgid "Fees to Collect (%)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:375 +#: includes/public/class-mp-checkout.php:341 +msgid "Email Address" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:299 +msgid "Sorry, your order was not completed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:126 +#: includes/common/payment-gateways/paypal-express.php:780 +msgid "You will be redirected to the PayPal site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:90 +#: includes/common/payment-gateways/skrill.php:94 +msgid "USD - U.S. Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:89 +msgid "TRY - Turkish lira" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:88 +#: includes/common/payment-gateways/stripe.php:170 +msgid "THB - Thai Baht" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:87 +msgid "TWD - Taiwan New Dollars" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:86 +#: includes/common/payment-gateways/pin.php:59 +#: includes/common/payment-gateways/skrill.php:88 +#: includes/common/payment-gateways/stripe.php:162 +msgid "SGD - Singapore Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:84 +msgid "RUB - Russian Rubles" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:82 +msgid "PHP - Philippine Pesos" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:81 +#: includes/common/payment-gateways/pin.php:58 +#: includes/common/payment-gateways/skrill.php:79 +#: includes/common/payment-gateways/stripe.php:145 +msgid "NZD - New Zealand Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:79 +msgid "MXN - Mexican Peso" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:78 +msgid "MYR - Malaysian Ringgits" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:77 +#: includes/common/payment-gateways/pin.php:64 +#: includes/common/payment-gateways/skrill.php:73 +#: includes/common/payment-gateways/stripe.php:112 +msgid "JPY - Japanese Yen" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:75 +#: includes/common/payment-gateways/pin.php:63 +#: includes/common/payment-gateways/skrill.php:66 +#: includes/common/payment-gateways/stripe.php:102 +msgid "HKD - Hong Kong Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:73 +msgid "GBP - Pound Sterling" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:68 +#: includes/common/payment-gateways/pin.php:62 +#: includes/common/payment-gateways/skrill.php:59 +msgid "CAD - Canadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:67 +msgid "BRL - Brazilian Real" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:66 +#: includes/common/payment-gateways/pin.php:56 +#: includes/common/payment-gateways/skrill.php:57 +msgid "AUD - Australian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:288 +msgid "There was an error processing your card: \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:163 +msgid "When running on a live site, Paymill recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:161 +#: includes/common/payment-gateways/pin.php:157 +#: includes/common/payment-gateways/simplify.php:103 +#: includes/common/payment-gateways/stripe.php:260 +#: includes/common/payment-gateways/wepay.php:153 +msgid "Force SSL?" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:151 +msgid "Accept Visa, Mastercard, Maestro UK, Discover and Solo cards directly on your site. You don't need a merchant account or gateway. Credit cards go directly to Paymill's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:131 +msgid "CVV2" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:72 +#: includes/common/payment-gateways/pin.php:61 +#: includes/common/payment-gateways/skrill.php:65 +#: includes/common/payment-gateways/stripe.php:95 +msgid "GBP - British Pound" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:71 +#: includes/common/payment-gateways/stripe.php:173 +msgid "TRY - Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:70 +#: includes/common/payment-gateways/paypal-chained-payments.php:85 +#: includes/common/payment-gateways/skrill.php:87 +#: includes/common/payment-gateways/stripe.php:161 +msgid "SEK - Swedish Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:69 +#: includes/common/payment-gateways/skrill.php:84 +msgid "RON - Romanian Leu New" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:68 +#: includes/common/payment-gateways/paypal-chained-payments.php:83 +#: includes/common/payment-gateways/skrill.php:82 +msgid "PLN - Polish Zloty" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:67 +#: includes/common/payment-gateways/paypal-chained-payments.php:80 +#: includes/common/payment-gateways/stripe.php:143 +msgid "NOK - Norwegian Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:66 +#: includes/common/payment-gateways/skrill.php:75 +#: includes/common/payment-gateways/stripe.php:125 +msgid "LTL - Lithuanian Litas" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:65 +#: includes/common/payment-gateways/paypal-chained-payments.php:69 +#: includes/common/payment-gateways/skrill.php:60 +#: includes/common/payment-gateways/stripe.php:78 +msgid "CHF - Swiss Franc" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:64 +#: includes/common/payment-gateways/skrill.php:76 +msgid "LVL - Latvian Lat" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:63 +#: includes/common/payment-gateways/paypal-chained-payments.php:74 +#: includes/common/payment-gateways/skrill.php:69 +msgid "ILS - Israeli Shekel" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:62 +#: includes/common/payment-gateways/skrill.php:71 +msgid "ISK - Iceland Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:61 +#: includes/common/payment-gateways/paypal-chained-payments.php:76 +#: includes/common/payment-gateways/skrill.php:68 +#: includes/common/payment-gateways/stripe.php:106 +msgid "HUF - Hungarian Forint" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:60 +#: includes/common/payment-gateways/paypal-chained-payments.php:71 +#: includes/common/payment-gateways/skrill.php:62 +#: includes/common/payment-gateways/stripe.php:86 +msgid "DKK - Danish Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:59 +#: includes/common/payment-gateways/skrill.php:67 +#: includes/common/payment-gateways/stripe.php:104 +msgid "HRK - Croatian Kuna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:58 +#: includes/common/payment-gateways/paypal-chained-payments.php:70 +#: includes/common/payment-gateways/skrill.php:61 +msgid "CZK - Czech Koruna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:57 +#: includes/common/payment-gateways/skrill.php:58 +msgid "BGN - Bulgarian Leva" +msgstr "" + +#: includes/common/payment-gateways/payflow/class-mp-gateway-worker-payflow.php:123 +msgid "There was an error connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:344 +msgid "This setting will log all PayFast communication to the \"payfast.log\" file." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:342 +msgid "Log Debugging Info?" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:335 +msgid "DO NOT INPUT A VALUE UNLESS YOU HAVE SET ONE IN THE SETTINGS SECTION OF YOUR PAYFAST SETTINGS." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:333 +msgid "PayFast Passphrase" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:323 +msgid "You can find your credentials on your integration page." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:321 +msgid "PayFast Merchant Credentials" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:311 +msgid "PayFast Mode" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:308 +msgid "PayFast is a payments processing service for South Africa. We make it safe for buyers to send money and easy for sellers to receive money. More Info »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:306 +msgid "PayFast Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:285 +msgid "Your payment via PayFast for this order totaling %s is complete. The transaction number is %s." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:278 +msgid "Your payment via PayFast for this order totaling %s is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:124 +msgid "Your PayFast transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:82 +#: includes/common/payment-gateways/payfast.php:83 +msgid "PayFast" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:157 +msgid "API error: - \"%s\"" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:198 +msgid "The payment request is under process" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:140 +msgid "Order: #" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:116 +msgid "You will be redirected to the Mollie site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:73 +msgid "%sMollie%s provides a fully PCI Compliant and secure way to collect payments via iDeal, Credit Card, Bancontact / Mister Cash, SOFORT Banking, Overbooking, Bitcoin, PayPal, paysafecard and AcceptEmail." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:53 +#: includes/common/payment-gateways/mollie.php:54 +#: includes/common/payment-gateways/mollie.php:195 +#: includes/common/payment-gateways/mollie.php:245 +msgid "Mollie" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:50 +#: includes/common/payment-gateways/paymill.php:56 +#: includes/common/payment-gateways/paypal-chained-payments.php:72 +#: includes/common/payment-gateways/pin.php:60 +#: includes/common/payment-gateways/skrill.php:64 +#: includes/common/payment-gateways/stripe.php:92 +msgid "EUR - Euro" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:306 +msgid "Access Key" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:300 +msgid "You must login to the Mijireh.com dashboard to obtain the Access Key." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:299 +msgid "Credentials" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:289 +msgid "Mijireh Checkout provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:269 +msgid "Mijireh Error: " +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:89 +msgid "You will be redirected to the Mijireh.com site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:87 +msgid "Your Mijireh transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:42 +#: includes/common/payment-gateways/mijireh.php:43 +#: includes/common/payment-gateways/mijireh.php:324 +msgid "Mijireh" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:145 +msgid "These are the manual payment instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:189 +msgid "This is the email text to send to those who have made free order checkouts. You should include your free order instructions / information here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:183 +msgid "This is the free order information to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:182 +msgid "Confirmation User Information" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:177 +msgid "This is the information to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:163 +msgid "If enabled, all free orders will be automatically marked as paid." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:159 +msgid "Payment Status" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:149 +msgid "This gateway is automatically activated if order totalling 0 and it can't be disabled" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:35 +#: includes/common/payment-gateways/free_orders.php:36 +#: includes/common/payment-gateways/free_orders.php:89 +msgid "Free Order" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:34 +#: includes/common/payment-gateways/free_orders.php:197 +msgid "Free Orders" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:515 +msgid "Sandbox API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:266 +#: includes/common/payment-gateways/eway31.php:542 +msgid "eWay Rapid 3.1 Payments (beta)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:403 +msgid "Hosted Payment Page Language" +msgstr "" + +#: includes/common/payment-gateways/eway.php:373 +msgid "Note when testing in sandbox mode it will use the default eWay test API credentials. Also, please note that cart total needs to be a whole number (e.g. 10.00) in order to generate a successful transaction, otherwise the transaction will fail." +msgstr "" + +#: includes/common/payment-gateways/eway.php:267 +msgid "You will be redirected to https://www.eway.com.au to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:380 +msgid "You have chosen to checkout using %s. Please confirm your order details and click \"Submit Order\" when finished." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:272 +#: includes/common/payment-gateways/paymill.php:131 +#: includes/common/payment-gateways/stripe.php:231 +msgid "Security Code " +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Enter in MM/YYYY or MM/YY format" +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Expiration" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:321 +msgid "Delim Data" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:307 +#: includes/common/payment-gateways/paypal-payflow.php:456 +msgid "This text will appear as the footer of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:287 +#: includes/common/payment-gateways/paypal-payflow.php:440 +msgid "Email Customer (on success)" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:278 +msgid "Authorize.net default is \",\". Otherwise, get this from your credit card processor. If the transactions are not going through, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:277 +msgid "Delimeter Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:193 +msgid "Held For Review" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:310 +#: includes/common/payment-gateways/payfast.php:314 +msgid "Test" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:300 +#: includes/common/payment-gateways/pin.php:170 +#: includes/common/payment-gateways/stripe.php:272 +msgid "Secret Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:283 +msgid "Select Your Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:97 +msgid "Your payment will be processed by the iDEAL network" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:208 +msgid "These are the CubePoints to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:203 +msgid "These are the CubePoints instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:266 +msgid "If enabled, all API calls will be made to https://test.bitpay.com." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:263 +msgid "Use Test Mode?" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:259 +msgid "If checked, response fron bitpay will be stored in log file, keep it disabled unless required." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:256 +msgid "Enable Debug Log" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:249 +msgid "Full Notifications" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:231 +#: includes/common/payment-gateways/eway31.php:499 +#: includes/common/payment-gateways/eway31.php:526 +#: includes/common/payment-gateways/mollie.php:83 +#: includes/common/shipping-modules/mp-fedex.php:269 +msgid "API Key" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:222 +msgid "You can now accept a payment from any country on Earth, with no risk of fraud. To use Bitpay, you need to signup on Bitpay. \\n After completing the signup process, you can get api keys at Bitpay API key. You can read more about Bitpay at Bitpay API. \\n Bitpay requires SSL(https) for payment notifications to work." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:61 +msgid "You will be redirected to bitpay.com, for bitcoin payment. It is completely safe." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:346 +msgid "You must login to the 2Checkout vendor dashboard to obtain the seller ID and secret word. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:345 +#: includes/common/payment-gateways/authorizenet-aim.php:239 +#: includes/common/payment-gateways/paymill.php:168 +#: includes/common/payment-gateways/paypal-express.php:704 +#: includes/common/payment-gateways/simplify.php:80 +#: includes/common/payment-gateways/stripe.php:265 +#: includes/common/payment-gateways/wepay.php:158 +msgid "API Credentials" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:325 +#: includes/common/payment-gateways/_bitpay.php:220 +#: includes/common/payment-gateways/_cubepoints.php:185 +#: includes/common/payment-gateways/_ideal.php:268 +#: includes/common/payment-gateways/_payway.php:255 +#: includes/common/payment-gateways/authorizenet-aim.php:219 +#: includes/common/payment-gateways/eway.php:352 +#: includes/common/payment-gateways/eway31.php:460 +#: includes/common/payment-gateways/free_orders.php:147 +#: includes/common/payment-gateways/manual-payments.php:126 +#: includes/common/payment-gateways/mijireh.php:287 +#: includes/common/payment-gateways/mollie.php:71 +#: includes/common/payment-gateways/paymill.php:149 +#: includes/common/payment-gateways/paypal-chained-payments.php:344 +#: includes/common/payment-gateways/paypal-payflow.php:376 +#: includes/common/payment-gateways/pin.php:145 +#: includes/common/payment-gateways/simplify.php:69 +#: includes/common/payment-gateways/skrill.php:121 +#: includes/common/payment-gateways/stripe.php:249 +#: includes/common/payment-gateways/wepay.php:119 +#: includes/common/shipping-modules/mp-fedex.php:243 +#: includes/common/shipping-modules/mp-flat-rate.php:63 +#: includes/common/shipping-modules/mp-pickup.php:140 +#: includes/common/shipping-modules/mp-table-rate.php:94 +#: includes/common/shipping-modules/mp-ups.php:122 +#: includes/common/shipping-modules/mp-usps.php:167 +#: includes/common/shipping-modules/mp-weight-rate.php:110 +msgid "%s Settings" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:136 +msgid "You will be redirected to the 2Checkout site to finalize your payment." +msgstr "" + +#: includes/common/helpers.php:169 includes/public/class-mp-checkout.php:1277 +msgid "Billing" +msgstr "" + +#: includes/common/helpers.php:144 +msgid "FREE" +msgstr "" + +#: includes/common/helpers.php:134 +msgid "Coupons:" +msgstr "" + +#: includes/common/helpers.php:95 +msgid "Qty" +msgstr "" + +#: includes/common/helpers.php:94 +msgid "Sku" +msgstr "" + +#: includes/common/data.php:59 +msgid "Zip Code" +msgstr "" + +#: includes/common/class-mp-taxes.php:336 +msgid "Standard Table" +msgstr "" + +#: includes/common/class-mp-product.php:2698 +msgid "Tweet" +msgstr "" + +#: includes/common/class-mp-product.php:2321 +msgid "Notification Preferences: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2320 +msgid "Edit Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2318 +msgid "Link: %s

    " +msgstr "" + +#: includes/common/class-mp-product.php:2317 +msgid "Current Inventory: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2316 +msgid "Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2314 +msgid "This message is being sent to notify you of low stock of a product in your online store according to your preferences.

    " +msgstr "" + +#: includes/common/class-mp-product.php:1817 +msgid "" +msgstr "" + +#: includes/common/class-mp-product.php:1427 +#: includes/common/class-mp-product.php:1430 +msgid "(tax incl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1422 +#: includes/common/class-mp-product.php:1425 +msgid "(tax excl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1300 +#: includes/common/class-mp-product.php:1315 +msgid "%s each" +msgstr "" + +#: includes/common/class-mp-product.php:988 +msgid "Choose Options" +msgstr "" + +#: includes/common/class-mp-product.php:526 +msgid "Choose a %s" +msgstr "" + +#: includes/common/class-mp-product.php:284 +#: includes/common/class-mp-product.php:292 +#: includes/common/class-mp-product.php:615 +msgid "We're sorry, we only have %d of this item in stock right now." +msgstr "" + +#: includes/common/class-mp-order.php:1456 +msgid "Shipped: Track Shipment" +msgstr "" + +#: includes/common/class-mp-order.php:1049 +msgid "Order Received" +msgstr "" + +#: includes/common/class-mp-order.php:1014 +msgid "In Process" +msgstr "" + +#: includes/common/class-mp-order.php:969 +msgid "Order #" +msgstr "" + +#: includes/common/class-mp-order.php:866 +msgid "Copy billing address to shipping address" +msgstr "Copiar morada de facturação para morada de envio" + +#: includes/common/class-mp-order.php:822 +#: includes/public/class-mp-checkout.php:1314 +msgid "Special Instructions" +msgstr "" + +#: includes/common/class-mp-order.php:817 +#: includes/common/payment-gateways/stripe.php:335 +msgid "Email" +msgstr "" + +#: includes/common/class-mp-order.php:813 +#: includes/common/payment-gateways/stripe.php:341 +#: includes/public/class-mp-checkout.php:416 +msgid "Phone" +msgstr "" + +#: includes/common/class-mp-order.php:791 +#: includes/common/payment-gateways/stripe.php:337 +msgid "State" +msgstr "" + +#: includes/common/class-mp-order.php:776 +msgid "Address 1" +msgstr "" + +#: includes/common/class-mp-order.php:766 +msgid "Last Name" +msgstr "" + +#: includes/common/class-mp-order.php:762 +msgid "First Name" +msgstr "" + +#: includes/common/class-mp-installer.php:677 +msgid "MarketPress requires a database update to continue working correctly. Go to update page" +msgstr "" + +#: includes/common/class-mp-installer.php:657 +msgid "MarketPress performed a quick automatic update successfully!" +msgstr "" + +#: includes/common/class-mp-installer.php:653 +msgid "Perform Update" +msgstr "" + +#: includes/common/class-mp-installer.php:647 +msgid "Please update each subsite in your WordPress network where you have older version of the MarketPress plugin." +msgstr "" + +#: includes/common/class-mp-installer.php:641 +msgid "Depending on the amount of products you have, this update could take quite some time. Please keep this window open while the update completes. If you have products with multiple variations, the progress bar may move slower, please don't exit the window." +msgstr "" + +#: includes/common/class-mp-installer.php:632 +msgid "Product Metadata" +msgstr "" + +#: includes/common/class-mp-installer.php:601 +msgid "MarketPress requires a database update to continue working correctly.
    Below you will find a list of items that require your attention." +msgstr "" + +#: includes/common/class-mp-installer.php:600 +msgid "Update MarketPress Data" +msgstr "" + +#: includes/common/class-mp-installer.php:530 +msgid "Update Data" +msgstr "" + +#: includes/common/class-mp-installer.php:67 +msgid "Complete!" +msgstr "" + +#: includes/common/class-mp-installer.php:66 +msgid "Upgrading Database...Please Wait..." +msgstr "" + +#: includes/common/class-mp-installer.php:64 +msgid "An error occurred while updating. Please refresh this page and try again." +msgstr "" + +#: includes/common/class-mp-cart.php:2447 +msgid "Some items in your cart have fallen below the quantity you currently have in your cart. We have adjusted the quantity in your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:2443 +msgid "Some items in your cart are no longer available. We have removed these items from your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:1566 +msgid "item" +msgstr "" + +#: includes/common/class-mp-cart.php:1563 +#: includes/common/class-mp-cart.php:1568 +msgid "items" +msgstr "" + +#: includes/common/class-mp-cart.php:1363 +msgid "Items/Products added to Cart will show here." +msgstr "Items e produtos adicionados ao carrinho de compras vão surgir aqui." + +#: includes/common/class-mp-cart.php:1362 +msgid "Your shopping cart is empty." +msgstr "O carrinho de compras está vazio." + +#: includes/common/class-mp-cart.php:1357 +msgid "View Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1241 +#: includes/common/class-mp-cart.php:1298 +#: includes/public/class-mp-short-codes.php:159 +msgid "Adding..." +msgstr "" + +#: includes/common/class-mp-cart.php:1033 +msgid "Continue Shopping?" +msgstr "" + +#: includes/common/class-mp-cart.php:961 +msgid "Secure Checkout
    Shopping is always safe and secure." +msgstr "" + +#: includes/common/class-mp-cart.php:959 +msgid "You are about to submit your order!
    Please review your order details before continuing. You will be charged immediately upon clicking \"Submit Order\"." +msgstr "" + +#: includes/common/class-mp-cart.php:956 +msgid "Continue »" +msgstr "" + +#: includes/common/class-mp-cart.php:955 +msgid "Submit Order" +msgstr "" + +#: includes/common/class-mp-cart.php:818 +msgid "There are no items in your cart - go add some !" +msgstr "" + +#: includes/common/class-mp-cart.php:816 +msgid "The cart is disabled." +msgstr "" + +#: includes/common/class-mp-cart.php:735 +msgid "Estimated %s" +msgstr "" + +#: includes/common/class-mp-cart.php:717 +msgid "Estimated Shipping" +msgstr "" + +#: includes/common/class-mp-cart.php:697 +msgid "Product Total" +msgstr "Total de produtos" + +#: includes/common/class-mp-cart.php:670 includes/common/class-mp-cart.php:672 +msgid "Estimated Total (%s, %s)" +msgstr "" + +#: includes/common/class-mp-cart.php:668 +msgid "Estimated Total (%s)" +msgstr "" + +#: includes/common/class-mp-cart.php:666 includes/common/class-mp-cart.php:752 +msgid "Estimated Total" +msgstr "" + +#: includes/admin/widgets/product-list.php:247 +msgid "Show Thumbnail Placeholder image (if image is not set)" +msgstr "" + +#: includes/admin/widgets/cart.php:73 +msgid "Display product price" +msgstr "" + +#: includes/admin/widgets/cart.php:71 +msgid "Display product quantity" +msgstr "" + +#: includes/admin/widgets/cart.php:69 +msgid "Display product image" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:93 +msgid "General Shipping Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:773 +msgid "If you are having conflicts with the lightbox library from your theme or another plugin you should uncheck this." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:772 +msgid "Use Built-In Lightbox for Images?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:762 +msgid "Disable Large Image Display?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:688 +msgid "Show Product Image?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:682 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:684 +msgid "Show Tags List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:676 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:678 +msgid "Show Categories List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:671 +msgid "If enabled, description excerpt will be added above Add to cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:669 +msgid "Show Excerpt?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:665 +msgid "If enabled, users will be able to choose how many of the product they want to purchase before adding to their cart. If not checked, quantity could be change later on the cart page." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:663 +msgid "Show Quantity Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:649 +msgid "Settings related to the display of individual product pages." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:648 +msgid "Product Page Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:605 +msgid "Related Products Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:573 +msgid "Show Related Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:568 +msgid "Related Product Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:549 +msgid "Order Status Entries Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:510 +msgid "Sort Products By" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:497 +msgid "Products Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:492 +msgid "Paginate Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:478 +msgid "Excerpts Length" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:473 +msgid "Show Excerpts?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:450 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:746 +msgid "Image Alignment" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:412 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:708 +msgid "Custom Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:401 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:697 +msgid "Large - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:400 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:696 +msgid "Medium - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:399 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:695 +msgid "Thumbnail - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:397 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:693 +msgid "Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:386 +msgid "Select default placeholder image thumbnail when product image is not available (if empty, plugin's built-in image will be used)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:380 +msgid "Show default product placeholder thumbnail when product image is not available?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:374 +msgid "Show Product Thumbnail?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:369 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:658 +msgid "Redirect to cart page for immediate checkout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:368 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:657 +msgid "Stay on current product page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:366 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:655 +msgid "MarketPress supports two \"flows\" for adding products to the shopping cart. After adding a product to their cart, two things can happen:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:365 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:654 +msgid "Add To Cart Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:355 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:628 +msgid "Four" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:354 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:627 +msgid "Three" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:353 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:626 +msgid "Two" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:625 +msgid "One" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:349 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:622 +msgid "Set the number of products that show up in a grid row to best fit your theme" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:348 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:621 +msgid "How many products per row?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:342 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:609 +msgid "Display as grid" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:341 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:608 +msgid "Display as list" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:339 +msgid "Product Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:334 +msgid "Settings related to the display of product lists/grids." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:333 +msgid "Product List/Grid Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:314 +msgid "Show Twitter Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:309 +msgid "Twitter" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:303 +msgid "Show Share Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:297 +msgid "Recommend" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:296 +msgid "Like" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:294 +msgid "Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:283 +msgid "Show Facebook Like Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:278 +msgid "Facebook" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:257 +msgid "Show \"Pin It\" Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:252 +msgid "Pinterest" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:246 +msgid "Social Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:193 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:202 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:211 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:220 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:229 +#: includes/multisite/class-mp-admin-multisite.php:532 +#: includes/multisite/class-mp-admin-multisite.php:541 +#: includes/multisite/class-mp-admin-multisite.php:550 +msgid "Choose a Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:191 +msgid "This page will be used as the root for your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:168 +#: includes/multisite/class-mp-admin-multisite.php:586 +msgid "Create Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "uncropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "cropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:87 +#: includes/multisite/class-mp-admin-multisite.php:121 +#: includes/multisite/class-mp-admin-multisite.php:620 +msgid "An error occurred while creating the store page. Please try again." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:66 +msgid "Choose the gateway(s) that you would like to be available for checkout." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:65 +msgid "Enabled Gateways" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:78 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:146 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:179 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:213 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:274 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:307 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:341 +msgid "Text" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:71 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:139 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:172 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:206 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:267 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:300 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:334 +msgid "Subject" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:52 +msgid "Notification Email" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:510 +msgid "Enabling this option will display label `excl. tax` or `incl. tax` after price" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:509 +msgid "Display tax label?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:504 +msgid "Enabling this option will show Price + Tax, eg. if your price is 100 and your tax 20, your price will be 120" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:416 +#: includes/multisite/class-mp-admin-multisite.php:234 +msgid "Price Format" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:366 +msgid "Enabling this field will display a textbox on the shipping checkout page for users to enter special instructions for their order. Useful for product personalization, etc." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:365 +msgid "Show Special Instructions Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:360 +msgid "Universal" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:359 +msgid "Old" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1167 +#: includes/admin/store-settings/class-mp-store-settings-general.php:358 +msgid "New" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:353 +msgid "If you already use Google Analytics for your website, you can track detailed ecommerce information by enabling this setting. Choose whether you are using the new asynchronous or old tracking code. Before Google Analytics can report ecommerce activity for your website, you must enable ecommerce tracking on the profile settings page for your website. Also keep in mind that some gateways do not reliably show the receipt page, so tracking may not be accurate in those cases. It is recommended to use the PayPal gateway for the most accurate data. More information »" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:347 +msgid "Do you want to display the product price on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:346 +msgid "Show product price on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:340 +msgid "Do you want to display the product quantity on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:339 +msgid "Show product quantity on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:333 +msgid "Do you want to display the product image on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:332 +msgid "Show product image on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:327 +msgid "This option hide floating Mini Cart in top right corner." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:326 +msgid "Disable Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:316 +msgid "If unchecked your Orders admin page will be hidden" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:315 +msgid "Show admin Orders page?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:309 +msgid "Disable Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:303 +msgid "Force Login?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:297 +msgid "Hide Out of Stock Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:555 +msgid "This will prevent multiples of the same downloadable product form being added to the cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:554 +msgid "Limit Digital Products Per-order?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:268 +msgid "If you're having issues downloading large files and have worked with your hosting provider to increase your memory limits, try enabling this - just keep in mind, it's not as secure!" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:267 +msgid "Use Alternative Download Method?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:252 +msgid "Download Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:230 +msgid "Change product post type" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:51 +msgid "%s Capabilities" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-addons.php:47 +msgid "Store Settings: Add Ons: %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:254 +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:56 +msgid "Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Edit Product Attribute %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:246 +msgid "Exporters" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:238 +msgid "Short Codes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:207 +msgid "An appropriate message for key \"%s\" could not be found." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:204 +msgid "Product attribute updated successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:203 +msgid "Product attribute added successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +msgid "Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +#: includes/admin/store-settings/class-mp-store-settings-addons.php:121 +msgid "Store Settings: Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "Store Settings: Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:118 +msgid "Store Settings: Product Tags" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:117 +msgid "Store Settings: Product Categories" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Store Settings: Product Attributes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +msgid "Store Settings: Payments" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:114 +msgid "Store Settings: Shipping" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +#: includes/admin/class-mp-store-settings-admin.php:226 +msgid "Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +msgid "Store Settings: Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:112 +msgid "Store Settings: Presentation" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:111 +msgid "Store Settings: General" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1489 +msgid "Select a Product" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1447 +msgid "Reset to Defaults" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1446 +msgid "Insert Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1202 +#: includes/admin/class-mp-shortcode-builder.php:1227 +#: includes/admin/class-mp-shortcode-builder.php:1252 +msgid "The text to show in the link." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1196 +#: includes/admin/class-mp-shortcode-builder.php:1221 +#: includes/admin/class-mp-shortcode-builder.php:1246 +msgid "Whether to return a clickable link or url." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1177 +msgid "Whether to display the cart only on store pages or not." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1171 +msgid "Whether to show or hide the product price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1165 +msgid "Whether to show or hide the product quantity." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1159 +msgid "Whether to show or hide the product image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1153 +msgid "The text displayed before the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1147 +msgid "The title of the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1058 +#: includes/admin/class-mp-shortcode-builder.php:1121 +msgid "A label to prepend to the price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1032 +#: includes/admin/class-mp-shortcode-builder.php:1127 +msgid "What context for display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1004 +msgid "Set the alignment of the image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:998 +msgid "Set a custom pixel width/height. If omitted defaults to the size set by \"context\"." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:993 +msgid "Widget" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:988 +msgid "What context for preset size options." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:982 +#: includes/admin/class-mp-shortcode-builder.php:1026 +#: includes/admin/class-mp-shortcode-builder.php:1052 +#: includes/admin/class-mp-shortcode-builder.php:1077 +#: includes/admin/class-mp-shortcode-builder.php:1096 +#: includes/admin/class-mp-shortcode-builder.php:1115 +msgid "The ID of the product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:963 +msgid "Whether to display the product meta (e.g. price, buy button)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:738 +#: includes/admin/class-mp-shortcode-builder.php:905 +#: includes/admin/class-mp-shortcode-builder.php:958 +#: includes/admin/class-mp-shortcode-builder.php:992 +#: includes/admin/class-mp-shortcode-builder.php:1035 +#: includes/admin/class-mp-shortcode-builder.php:1130 +#: includes/admin/class-mp-shortcode-builder.php:1349 +msgid "List" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:957 +#: includes/admin/class-mp-shortcode-builder.php:991 +#: includes/admin/class-mp-shortcode-builder.php:1034 +#: includes/admin/class-mp-shortcode-builder.php:1129 +msgid "Single" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:953 +msgid "Whether and what context of image size to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:948 +msgid "Full" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:943 +msgid "Whether and what type of content to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:937 +msgid "Whether to display the product title." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:931 +msgid "The ID of the product to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:747 +#: includes/admin/class-mp-shortcode-builder.php:914 +msgid "Hide" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:746 +#: includes/admin/class-mp-shortcode-builder.php:913 +msgid "Show" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:744 +#: includes/admin/class-mp-shortcode-builder.php:911 +msgid "Whether or not to show the product filters." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:724 +#: includes/admin/class-mp-shortcode-builder.php:891 +#: includes/admin/class-mp-shortcode-builder.php:1335 +msgid "Limits list to a specific product tag." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:713 +#: includes/admin/class-mp-shortcode-builder.php:880 +#: includes/admin/class-mp-shortcode-builder.php:1324 +msgid "Limits list to a specific product category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:706 +#: includes/admin/class-mp-shortcode-builder.php:873 +#: includes/admin/class-mp-shortcode-builder.php:1317 +msgid "Direction to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:684 +#: includes/admin/class-mp-shortcode-builder.php:851 +#: includes/admin/class-mp-shortcode-builder.php:1295 +msgid "What field to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:678 +#: includes/admin/class-mp-shortcode-builder.php:845 +#: includes/admin/class-mp-shortcode-builder.php:1283 +msgid "How many products to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:672 +#: includes/admin/class-mp-shortcode-builder.php:839 +#: includes/admin/class-mp-shortcode-builder.php:1277 +msgid "The page number to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:666 +#: includes/admin/class-mp-shortcode-builder.php:833 +#: includes/admin/class-mp-shortcode-builder.php:1271 +msgid "Whether to paginate the product list. This is useful to only show a subset." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:808 +msgid "How many related items to show." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:790 +msgid "How to relate the products" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:784 +msgid "The product to show related items for." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:765 +msgid "The maximum number of products to display" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:647 +msgid "Comma separated list of tags (term_id) to include. For example, include=5,27 means tags that have the term_id 5 or 27 will be the only tags displayed. Defaults to include everything." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:641 +msgid "Comma separated list of tags (term_id) to exclude. For example, exclude=5,27 means tags that have the term_id 5 or 27 will NOT be displayed. Defaults to exclude nothing." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:633 +#: includes/admin/class-mp-shortcode-builder.php:1420 +msgid "Sort order." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:629 +#: includes/admin/class-mp-shortcode-builder.php:1416 +msgid "Count" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:626 +#: includes/admin/class-mp-shortcode-builder.php:1413 +msgid "Order of the tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:620 +msgid "The text/space between tags)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:616 +msgid "UL with a class of \"wp-tag-cloud\"" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:615 +msgid "separated by whitespace defined by \"separator\" parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:613 +msgid "Format of the cloud display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:607 +msgid "The number of actual tags to display in the cloud. (Use \"0\" to display all tags.)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:601 +msgid "Unit of measure as pertains to the smallest and largest values. This can be any CSS length value, e.g. pt, px, em, %." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:595 +msgid "The text size of the tag with the largest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:589 +msgid "The text size of the tag with the smallest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:570 +msgid "The \"tabindex\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:564 +msgid "The \"name\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:558 +msgid "The \"id\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:552 +msgid "Which category ID is selected." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:540 +msgid "The max depth. This is ignored unless hierarchical is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:536 +#: includes/multisite/template-functions.php:816 +msgid "No Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:414 +#: includes/admin/class-mp-shortcode-builder.php:546 +msgid "Calculates link or post counts by including items from child categories. If show_counts and hierarchical are true this is automatically set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:409 +msgid "Value of n (some number) specifies the depth (or level) to descend in displaying Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:408 +msgid "Show only top level Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:407 +msgid "All Categories displayed in flat (no indent) form (overrides hierarchical)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:406 +msgid "All Categories and child Categories (Default)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:402 +msgid "This parameter controls how many levels in the hierarchy of Categories are to be included in the list of Categories. NOTE: The \"hierarchical\" argument, which is disabled by default, will override the depth argument, unless it is true. When the argument is false, it will display all of the categories. When it is enabled it will use the value in the \"depth\" argument." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:396 +#: includes/admin/class-mp-shortcode-builder.php:1394 +msgid "Sets the number of Categories to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:390 +#: includes/admin/class-mp-shortcode-builder.php:534 +msgid "Set the text to show when no categories are listed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:384 +msgid "Set the title and style of the outer list item. If present but empty, the outer list item will not be displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:378 +#: includes/admin/class-mp-shortcode-builder.php:528 +msgid "Display sub-categories as inner list items (below the parent list item) or inline." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:368 +#: includes/admin/class-mp-shortcode-builder.php:511 +msgid "Exclude category-tree from the results. The parameter include must be empty. If the hierarchical parameter is true, then use exclude instead of exclude_tree." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:354 +msgid "Only include these categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:340 +#: includes/admin/class-mp-shortcode-builder.php:356 +#: includes/admin/class-mp-shortcode-builder.php:370 +#: includes/admin/class-mp-shortcode-builder.php:496 +#: includes/admin/class-mp-shortcode-builder.php:513 +msgid "Select Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:338 +#: includes/admin/class-mp-shortcode-builder.php:494 +msgid "Exclude one or more categories from the results. The parameter include must be empty." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:332 +msgid "Set a URI for an image (usually an rss feed icon) to act as a link to each categories' rss-2 feed. This parameter overrides the feed parameter. There is no default for this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:320 +msgid "Display a link to each category's rss-2 feed and set the link text to display. The default is no text and no feed displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:313 +#: includes/admin/class-mp-shortcode-builder.php:487 +msgid "Any" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:307 +#: includes/admin/class-mp-shortcode-builder.php:481 +msgid "Only display categories that are children of the category identified by this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:301 +msgid "Sets whether a category's description is inserted into the title attribute of the links created (i.e. <a title=\"<em>Category Description</em>\" href=\"...)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:295 +#: includes/admin/class-mp-shortcode-builder.php:475 +msgid "Toggles the display of categories with no posts." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:289 +#: includes/admin/class-mp-shortcode-builder.php:469 +#: includes/admin/class-mp-shortcode-builder.php:1388 +msgid "Toggles the display of the current count of posts in each category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:279 +msgid "Style to display the categories list in. A value of list displays the categories as list items while none generates no special display method (the list items are separated by
    tags)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:269 +#: includes/admin/class-mp-shortcode-builder.php:449 +#: includes/admin/class-mp-shortcode-builder.php:1378 +msgid "Sort order for categories (either ascending or descending)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:259 +#: includes/admin/class-mp-shortcode-builder.php:439 +#: includes/admin/class-mp-shortcode-builder.php:1368 +msgid "Sort categories alphabetically, by unique Category ID, or by the count of posts in that Category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:253 +#: includes/admin/class-mp-shortcode-builder.php:433 +msgid "If a value is entered, causes the display of a link to all categories if the style is set to list." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:219 +msgid "Select an Action" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:217 +msgid "What would you like to do?" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:216 +#: includes/admin/class-mp-shortcode-builder.php:1522 +msgid "Add E-Commerce Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:197 +msgid "Display a list of links to your store pages." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:196 +msgid "Display a link or url to the order status page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:195 +msgid "Display a link or url to the current products list page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:194 +msgid "Display a link or url to the current store page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:193 +msgid "Display a link or url to the current shopping cart page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:192 +msgid "Display the cart widget." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:191 +msgid "Display the full product meta box with price and buy now/add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:190 +msgid "Display the product stock." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:189 +msgid "Display the product SKU number(s)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:188 +msgid "Display the product price (and sale price)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:187 +msgid "Display the buy or add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:186 +msgid "Display the featured image of a given product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:185 +msgid "Display a single product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:184 +msgid "Display a list of products according to preference." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:183 +msgid "Display products related to the one being viewed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:182 +msgid "Display a list of popular products ordered by sales." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:180 +msgid "Display an HTML dropdown of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:179 +msgid "Display an HTML list of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:178 +msgid "Display a cloud or list of your product tags." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:655 +msgid "Setup your payment gateway" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:643 +#: includes/admin/class-mp-setup-wizard.php:649 +msgid "Other Gateways" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:617 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:150 +msgid "Select which calculated shipping methods the customer will be able to choose from." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:601 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:134 +#: includes/public/class-mp-checkout.php:82 +msgid "Shipping Method" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:568 +msgid "I want to charge shipping" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:523 +#: includes/admin/store-settings/class-mp-store-settings-general.php:503 +msgid "Show Price + Tax?" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:507 +msgid "I.e. Taxes, VAT, GST, etc" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:491 +#: includes/admin/store-settings/class-mp-store-settings-general.php:471 +msgid "Current Rates" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:473 +msgid "Default Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:434 +#: includes/admin/class-mp-setup-wizard.php:442 +#: includes/admin/store-settings/class-mp-store-settings-general.php:386 +#: includes/admin/store-settings/class-mp-store-settings-general.php:394 +#: includes/multisite/class-mp-admin-multisite.php:204 +#: includes/multisite/class-mp-admin-multisite.php:212 +msgid "Select a Currency" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:414 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:105 +msgid "Choose Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:411 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:103 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:104 +msgid "All Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:410 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:102 +msgid "These are the countries that you will ship to." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:409 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:101 +msgid "Target Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:401 +msgid "Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:387 +#: includes/admin/store-settings/class-mp-store-settings-general.php:640 +msgid "Zip/Postal Code Label" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:352 +#: includes/admin/store-settings/class-mp-store-settings-general.php:606 +msgid "Select a State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:335 +#: includes/admin/store-settings/class-mp-store-settings-general.php:590 +msgid "Select A Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:332 +#: includes/admin/store-settings/class-mp-store-settings-general.php:587 +msgid "Select a Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:324 +msgid "Location" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:304 +#: includes/admin/class-mp-setup-wizard.php:312 +#: includes/admin/class-mp-store-settings-admin.php:129 +#: includes/admin/class-mp-store-settings-admin.php:262 +msgid "Quick Setup" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:289 +msgid "MarketPress setup is not complete! Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2479 +msgid "Enter your product name here" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2440 +msgid "Select a %s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2426 +msgid "Each product variation needs to have product attributes assigned to it so the system knows how to differentiate one product variation from the other. It is important that you assign a category to this product before choosing any attributes." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2409 +msgid "If you would like this variation to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2320 +msgid "Sale Price (if applicable)" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2281 +msgid "If you would like the description to be different than the main product enter it here." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2229 +msgid "Image" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2202 +#: includes/admin/class-mp-shortcode-builder.php:226 +msgid "Attributes" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2166 +msgid "Create your product variations here. You can reorder variations by using the number to left of each variation, or delete one by clicking the \"x\" to the right of each variation. NOTE: The variation that shows up first in this list will be considered the \"main variation\". The details from this variation will be used in product listings." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2061 +#: includes/admin/class-mp-products-admin.php:2332 +msgid "Value must be less than regular price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2043 +#: includes/admin/class-mp-products-admin.php:2306 +msgid "Regular Price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2023 +#: includes/admin/class-mp-products-admin.php:2286 +msgid "External URL" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1988 +#: includes/admin/class-mp-products-admin.php:2245 +msgid "Enter the quantity that you have available to sell." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1987 +#: includes/admin/class-mp-products-admin.php:2244 +msgid "Inventory Count" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1977 +#: includes/admin/class-mp-products-admin.php:2234 +msgid "Track Inventory?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1871 +msgid "%1$sProduct Images%2$s %3$sAdd images of the product. The first image on the list is the featured image for this product (you can reorder images on the list)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1806 +msgid "Add variations for this product. e.g. If you are selling t-shirts, you can create Color & Size variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1804 +msgid "%3$sAdd variations for%2$s %1$sProduct%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1776 +msgid "This product has a multiple variations %1$s(e.g. Multiple colors, sizes)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1775 +msgid "This is a unique product without variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1700 +msgid "Extra Shipping Cost %1$s(if applicable)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1659 +#: includes/admin/class-mp-products-admin.php:2112 +#: includes/admin/class-mp-products-admin.php:2359 +msgid "Weight" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1636 +#: includes/admin/class-mp-products-admin.php:2098 +#: includes/admin/class-mp-products-admin.php:2416 +msgid "Please enter a valid tax rate" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1531 +msgid "Limit Per Order %1$s(limit the number of the item a shopper can buy per order)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1513 +msgid "SKU %1$s(Stock Keeping Unit)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "%1$sPrice, Inventory & Variants%2$s %3$sSet price, manage inventory and create Product Variants (if appropriate for your product).%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "Product Variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1480 +msgid "External / Affiliate Link" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1471 +msgid "Digital Download" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1470 +msgid "Physical / Tangible Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1464 +msgid "Product Kind %1$s(Physical Product, Digital, etc)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1426 +msgid "Choose Products" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1420 +msgid "If you would like, you can choose specific related products instead of using the ones generated by MarketPress" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1019 +msgid "Changes saved successfully" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:826 +msgid "Option cannot be saved. Try again." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:821 +msgid "Option saved successfully." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:467 +msgid "Img" +msgstr "" + +#: includes/admin/class-mp-product-attributes-list-table.php:57 +msgid "Product attribute(s) deleted successfully." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:162 +msgid "- Create New Variation -" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:144 +msgid "Only lowercase letters and dashes (-) are allowed." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:139 +msgid "If a slug is not entered, it will be generated automatically. Max 32 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:138 +#: includes/admin/class-mp-product-attributes-list-table.php:23 +msgid "Slug" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:130 +msgid "Max 45 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:123 +msgid "Use the numbers on the left to sort. To delete - click the \"X\" to the right of each row." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:122 +msgid "Attribute Options" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:121 +msgid "Add Option" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:105 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:523 +msgid "Sort Order" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:87 +msgid "Alphabetical" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:86 +msgid "ID" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:84 +msgid "Select how the options will be sorted." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:82 +msgid "Sort By" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:75 +msgid "The name of the attribute (e.g. color, size, etc)" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:74 +msgid "Attribute Name" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:69 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Product Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Product Attributes" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:71 +msgid "You can choose to make this page one of the following core store pages." +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:66 +msgid "Network Store Base" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:61 +msgid "Checkout Page" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:52 +msgid "Store Page Settings" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1108 +msgid "Display billing/shipping info for this customer" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1097 +msgid "View order “%s”" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1072 +msgid "Flag as:" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:952 +msgid "Move To Trash" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:948 +msgid " Received" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:927 +msgid "Enter coupon code here" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:812 +msgid "The order status could not be updated due to unexpected error. Please try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:740 +msgid "An invalid bulk action was requested. Please go back and try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:692 +msgid "The order status for order ID %1$s was updated successfully." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:688 +msgid "Order statuses successfully updated." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:530 +msgid "Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:518 +msgid "Actual Shipping Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:513 +msgid "Method Paid For" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:504 +msgid "Amount Collected" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:477 +msgid "DHL" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:408 +msgid "There is no IPN history to show at this time" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:345 +msgid "Type" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:343 +msgid "Gateway" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:301 +#: includes/common/template-functions.php:528 +msgid "Order History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:291 +msgid "IPN History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:283 +msgid "Customer Info" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:279 +msgid "Order Details" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:157 +msgid "All Dates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:320 +msgid "Add Pages to Menu" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:318 +msgid "Add-ons" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:317 +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "User Capabilities" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:316 +#: includes/admin/class-mp-setup-wizard.php:631 +#: includes/admin/store-settings/class-mp-store-settings-payments.php:50 +msgid "Payment Gateways" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:315 +msgid "Shipping Rates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:312 +msgid "Configure" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:309 +#: includes/admin/class-mp-products-admin.php:466 +#: includes/admin/class-mp-shortcode-builder.php:797 +msgid "Tags" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:308 +#: includes/admin/class-mp-products-admin.php:465 +msgid "Categories" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:300 +msgid "Manage" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:297 +msgid "Here's some quick links to manage your store and products." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:288 +msgid "low in stock" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:287 +msgid "%s product" +msgid_plural "%s products" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-dashboard-widgets.php:280 +msgid "received" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:279 +#: includes/admin/class-mp-dashboard-widgets.php:283 +msgid "%s order" +msgid_plural "%s orders" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-dashboard-widgets.php:276 +msgid "Stock & Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:261 +msgid "Last 30 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:256 +msgid "Last 7 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:251 +msgid "Yesterday" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:248 +#: includes/admin/class-mp-dashboard-widgets.php:253 +#: includes/admin/class-mp-dashboard-widgets.php:258 +#: includes/admin/class-mp-dashboard-widgets.php:263 +msgid " Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:246 +msgid "Today" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:241 +msgid "Welcome back! Here's a quick summary of your store's performance." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:196 +#: includes/admin/class-mp-products-admin.php:895 +msgid "No products out of stock." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:136 +#: includes/admin/class-mp-products-admin.php:839 +msgid "Stock Level" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:135 +#: includes/admin/class-mp-products-admin.php:838 +msgid "Variation" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:121 +msgid "Low Stock (%s)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:116 +msgid "Store Management" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:115 +msgid "Store Reports" +msgstr "" + +#: includes/admin/class-mp-ajax.php:579 +#: includes/admin/class-mp-orders-admin.php:520 +#: includes/common/payment-gateways/2checkout.php:370 +#: includes/common/payment-gateways/authorizenet-aim.php:264 +#: includes/common/payment-gateways/mollie.php:93 +#: includes/common/payment-gateways/paymill.php:196 +#: includes/common/payment-gateways/pin.php:190 +#: includes/common/payment-gateways/skrill.php:157 +#: includes/common/payment-gateways/skrill.php:168 +#: includes/common/payment-gateways/wepay.php:143 +#: includes/public/class-mp-checkout.php:404 +msgid "Select One" +msgstr "" + +#: includes/admin/class-mp-ajax.php:511 +msgid "Oops... we could not locate any orders by that ID. Please double check your order ID and try again." +msgstr "" + +#: includes/admin/class-mp-ajax.php:482 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:166 +#: includes/multisite/class-mp-admin-multisite.php:584 +msgid "Edit Page" +msgstr "" + +#: includes/admin/class-mp-ajax.php:346 +msgid "Cancel " +msgstr "" + +#: includes/admin/class-mp-ajax.php:345 +msgid "Save " +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "Edit Description" +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "HTML Markup" +msgstr "" + +#: includes/admin/class-mp-ajax.php:333 +msgid "Plain Text Only" +msgstr "" + +#: includes/admin/class-mp-ajax.php:329 +msgid "Additional Content / Information for this Variation" +msgstr "" + +#: includes/admin/class-mp-ajax.php:317 +#: includes/admin/class-mp-products-admin.php:1762 +msgid "Allow this product to be purchased even if it's out of stock" +msgstr "" + +#: includes/admin/class-mp-ajax.php:313 +#: includes/admin/class-mp-products-admin.php:1711 +msgid "Track Product Inventory" +msgstr "" + +#: includes/admin/class-mp-ajax.php:300 +msgid "Extra Shipping Cost (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:295 +msgid "Ounces:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:294 +msgid "Pounds:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:292 +msgid "Kilograms:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:287 +#: includes/admin/class-mp-products-admin.php:1649 +msgid "Charge Shipping" +msgstr "" + +#: includes/admin/class-mp-ajax.php:273 +#: includes/admin/class-mp-products-admin.php:1623 +#: includes/admin/store-settings/class-mp-store-settings-general.php:454 +msgid "Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:272 +#: includes/admin/class-mp-products-admin.php:1622 +#: includes/admin/class-mp-products-admin.php:2090 +#: includes/admin/class-mp-products-admin.php:2408 +msgid "Special Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:271 +#: includes/admin/class-mp-products-admin.php:1625 +#: includes/admin/class-mp-products-admin.php:2092 +msgid "If you would like this product to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-ajax.php:268 +#: includes/admin/class-mp-products-admin.php:1599 +msgid "Charge Taxes (Special Rate)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:256 +#: includes/admin/class-mp-products-admin.php:1593 +#: includes/admin/class-mp-products-admin.php:2077 +#: includes/admin/class-mp-products-admin.php:2348 +msgid "End Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:255 +#: includes/admin/class-mp-products-admin.php:1589 +#: includes/admin/class-mp-products-admin.php:2072 +msgid "Start Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:1568 +msgid "Enter Sale Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:250 +#: includes/admin/class-mp-products-admin.php:1547 +msgid "Set up a Sale for this Product" +msgstr "" + +#: includes/admin/class-mp-ajax.php:206 includes/admin/class-mp-ajax.php:223 +msgid "Enter " +msgstr "" + +#: includes/admin/class-mp-ajax.php:193 +msgid "Browse" +msgstr "" + +#: includes/admin/class-mp-ajax.php:184 includes/admin/class-mp-ajax.php:192 +msgid "http://" +msgstr "" + +#: includes/admin/class-mp-ajax.php:183 +msgid "External Product URL" +msgstr "" + +#: includes/admin/class-mp-ajax.php:237 +msgid "Limit Per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:177 +#: includes/admin/class-mp-products-admin.php:1520 +msgid "Enter Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:174 +#: includes/admin/class-mp-products-admin.php:1512 +msgid "Enter SKU" +msgstr "" + +#: includes/admin/class-mp-ajax.php:173 +msgid "(Stock Keeping Unit)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:158 +msgid "Remove Image" +msgstr "" + +#: includes/admin/class-mp-ajax.php:74 +msgid "Variation Draft" +msgstr "" + +#: includes/admin/class-mp-admin.php:296 +#: includes/admin/class-mp-dashboard-widgets.php:70 +msgid "Please wait...saving in progress..." +msgstr "" + +#: includes/admin/class-mp-admin.php:295 +#: includes/admin/class-mp-dashboard-widgets.php:69 +msgid "Input is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:294 +#: includes/admin/class-mp-dashboard-widgets.php:68 +msgid "Valid number is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:292 +#: includes/admin/class-mp-dashboard-widgets.php:66 +msgid "Delete %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:291 +#: includes/admin/class-mp-dashboard-widgets.php:65 +msgid "Delete %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:290 +#: includes/admin/class-mp-dashboard-widgets.php:64 +msgid "Update inventory for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:289 +#: includes/admin/class-mp-dashboard-widgets.php:63 +msgid "Update inventory for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:288 +#: includes/admin/class-mp-dashboard-widgets.php:62 +msgid "Update price for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:287 +#: includes/admin/class-mp-dashboard-widgets.php:61 +msgid "Update prices for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:285 +#: includes/admin/class-mp-dashboard-widgets.php:59 +msgid "Creating variations, please wait..." +msgstr "" + +#: includes/admin/class-mp-admin.php:96 +msgid "The following payment gateways have been deprecated, Cubepoints, Bitpay, iDEAL, Skrill, Google Checkout. If you were using one of these gateways, please setup a new payment gateway here." +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:61 +msgid "Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:71 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:71 +#: includes/common/class-mp-gdpr.php:399 includes/common/class-mp-order.php:872 +#: includes/common/helpers.php:164 includes/public/class-mp-checkout.php:1434 +msgid "Shipping Address" +msgstr "Morada de Envio" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:66 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:66 +#: includes/common/class-mp-gdpr.php:392 includes/common/class-mp-order.php:864 +#: includes/common/helpers.php:163 includes/public/class-mp-checkout.php:1427 +msgid "Billing Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:61 +msgid "Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:258 +msgid "Shipping Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:256 +msgid "Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:235 +msgid "Payment Method: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:79 +msgid "The dir %s not exist or not writeable" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:239 +msgid "Shop header/logo" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:233 +msgid "Choose a template" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:226 +msgid "Template Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:221 +msgid "Disable automatic creation/attachment of invoices when only free products are ordered" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:220 +msgid "Disable for free products" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:216 +msgid "Attach invoice to" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:214 +msgid "Customer Order Shipped email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:212 +msgid "Customer New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:211 +msgid "Admin New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:206 +msgid "download" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:205 +msgid "How do you want to view the PDF?" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:203 +msgid "Open the PDF in a new browser tab/window" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:202 +msgid "Download the PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:158 +msgid "Export PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:103 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:106 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:109 +msgid "You can't download this order invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:76 +msgid "Invalid Request" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:72 +msgid "Order not exist!" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:67 +msgid "Invalid ID" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1293 +msgid "Coupon added successfully" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1292 +msgid "Please enter a code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1247 +msgid "No end" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1200 +msgid "Valid Dates" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1195 +msgid "Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1027 +msgid "No Coupons found in Trash" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1026 +msgid "No Coupons Found" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1025 +msgid "Search Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1024 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1028 +msgid "View Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1023 +msgid "New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1020 +msgid "Create New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1017 +msgid "Manage Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1002 +msgid "An error occurred while removing your coupon. Please try again." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:964 +msgid "Coupon can't be applied to this cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:951 +msgid "Invalid coupon code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:794 +msgid "Help Text" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:789 +msgid "Form Title" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:783 +msgid "Coupons Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:764 +msgid "End Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:758 +msgid "Does coupon have an end date?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:696 +msgid "Select Products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:688 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:723 +#: includes/common/payment-gateways/paypal-payflow.php:402 +msgid "User" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:638 +msgid "Max Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:636 +msgid "Enter the maximum number of times this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:623 +msgid "Leave blank to allow all other coupons." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:622 +msgid "Select combinable coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:618 +msgid "Can this coupon be combined with other coupons?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:613 +msgid "Apply to each applicable item once per cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:612 +msgid "Apply to each applicable item and quantity ordered" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:609 +msgid "How should the discount amount be applied?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:605 +msgid "Discount Amount" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:604 +msgid "Value must either be a decimal number or a percentage" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:602 +msgid "If you would like to give a percentage-based discount make sure to include the percent (%) symbol. Otherwise, the discount will be applied as a fixed amount off." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:595 +msgid "Letters and Numbers only." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:589 +msgid "Coupon Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:447 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:795 +msgid "More than one code? That's OK! Just be sure to enter one at a time." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:444 +msgid "Apply Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:314 +msgid "Coupon Discounts" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:89 +msgid "1 add-on disabled" +msgid_plural "%s add-ons disabled" +msgstr[0] "" +msgstr[1] "" + +#: includes/addons/class-mp-addons-list-table.php:84 +msgid "1 add-on enabled" +msgid_plural "%s add-ons enabled" +msgstr[0] "" +msgstr[1] "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Disabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Enable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:129 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:67 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:135 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:168 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:202 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:263 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:296 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:330 +msgid "Enabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +msgid "Disable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:34 +msgid "Disable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:33 +msgid "Enable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:21 +#: includes/admin/class-mp-products-admin.php:2280 +#: includes/common/class-mp-product.php:2916 +msgid "Description" +msgstr "" + +#: includes/common/template-functions.php:2889 +#: includes/multisite/template-functions.php:407 +msgid "Popularity (Least Popular - Most Popular)" +msgstr "Popularidade (Menos Popular - Mais Popular)" + +#: includes/common/template-functions.php:2888 +#: includes/multisite/template-functions.php:406 +msgid "Popularity (Most Popular - Least Popular)" +msgstr "Popularidade (Mais Popular - Menos Popular)" + +#: includes/common/template-functions.php:2885 +#: includes/multisite/template-functions.php:403 +msgid "Name (Z-A)" +msgstr "Nome (Z-A)" + +#: includes/common/template-functions.php:2884 +#: includes/multisite/template-functions.php:402 +msgid "Name (A-Z)" +msgstr "Nome (A-Z)" + +#: includes/common/template-functions.php:2883 +#: includes/multisite/template-functions.php:401 +msgid "Release Date (Oldest to Latest)" +msgstr "Data de Publicação (Ordem Cronológica)" + +#: includes/common/template-functions.php:2882 +#: includes/multisite/template-functions.php:400 +msgid "Release Date (Latest to Oldest)" +msgstr "Data de Publicação (Ordem Cronológica Invertida)" + +#: includes/admin/class-mp-dashboard-widgets.php:284 +msgid "paid" +msgstr "pago" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "One Time Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Customer Counter" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Daily Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:182 +msgid "For the most accurate rates, please select the appropriate pick up type for your business." +msgstr "" + +#: includes/admin/class-mp-admin.php:374 +msgid "Page saved." +msgstr "Página guardada." + +#: includes/admin/class-mp-admin.php:370 +msgid "Custom field deleted." +msgstr "" + +#: includes/admin/class-mp-admin.php:369 +msgid "Custom field updated." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:541 +msgid "%s - The payment request expired, - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:536 +msgid "%s - The payment not credited in merchants bitpay account, action required. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:252 +msgid "If enabled, you will recieve an email for each status update on payment." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:240 +msgid "Speed at which the bitcoin transaction registers as \"confirmed\" to the store. This overrides your merchant settings on the Bitpay website." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:238 +msgid "Transaction Speed" +msgstr "Velocidade da Transferência" + +#: includes/common/payment-gateways/_bitpay.php:244 +msgid "Low" +msgstr "Baixo" + +#: includes/common/payment-gateways/_bitpay.php:243 +msgid "Medium" +msgstr "Médio" + +#: includes/common/payment-gateways/_bitpay.php:242 +msgid "High" +msgstr "Alto" + +#: includes/common/payment-gateways/_bitpay.php:177 +#: includes/common/payment-gateways/_bitpay.php:517 +#: includes/common/payment-gateways/_bitpay.php:522 +msgid "%s - The payment request is under process. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:175 +#: includes/common/payment-gateways/_bitpay.php:527 +msgid "%s - The payment request has been processed - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:150 +#: includes/common/payment-gateways/_bitpay.php:294 +msgid "Incorrect order invoice, please contact site administrator" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:141 +msgid "We could not verify order invoice details, please try again or contact site administrator for help" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:81 +msgid "Login to Simplify to get your API credentials. Enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:605 +#: includes/common/payment-gateways/paypal-express.php:647 +msgid "Express Checkout is PayPal's premier checkout solution, which streamlines the checkout process for buyers and keeps them on your site after making a purchase. Unlike PayPal Pro, there are no additional fees to use Express Checkout, though you may need to do a free upgrade to a business account. More Info »" +msgstr "" + +#. Plugin URI of the plugin/theme +msgid "https://premium.wpmudev.org/project/e-commerce/" +msgstr "https://premium.wpmudev.org/project/e-commerce/" + +#. Author of the plugin/theme +msgid "WPMU DEV" +msgstr "WPMU DEV" + +#: includes/admin/class-mp-orders-admin.php:541 +#: includes/admin/class-mp-orders-admin.php:543 +msgid "Tracking Number" +msgstr "" + +#: includes/common/class-mp-order.php:805 +#: includes/common/payment-gateways/stripe.php:336 +#: includes/public/class-mp-checkout.php:402 +msgid "Country" +msgstr "País" + +#: includes/common/class-mp-order.php:784 +#: includes/common/payment-gateways/stripe.php:338 +msgid "City" +msgstr "Cidade" + +#: includes/common/class-mp-order.php:780 +msgid "Address 2" +msgstr "Morada - linha 2" + +#: includes/common/payment-gateways/stripe.php:340 +msgid "Address" +msgstr "Morada" + +#: includes/common/class-mp-cart.php:752 includes/common/class-mp-gdpr.php:378 +msgid "Order Total" +msgstr "Total do Encomenda" + +#: includes/admin/class-mp-orders-admin.php:360 +msgid "Payment Total" +msgstr "Pagamento Total" + +#: includes/admin/class-mp-orders-admin.php:347 +msgid "Transaction ID" +msgstr "ID da Transacção" + +#: includes/common/payment-gateways/wepay.php:207 +msgid "The WePay Card Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:186 +#: includes/common/shipping-modules/mp-fedex.php:283 +msgid "Account ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:179 +msgid "Access Token" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:172 +msgid "Client Secret" +msgstr "Segredo de Cliente" + +#: includes/common/payment-gateways/wepay.php:165 +msgid "Client ID" +msgstr "ID de Cliente" + +#: includes/common/payment-gateways/wepay.php:159 +msgid "You must login to WePay to get your API credentials. Make sure to check \"Tokenize credit cards\" option under \"API Keys\" section of your WePay app." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:154 +msgid "When in live mode it is recommended to use SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:148 +msgid "Donation" +msgstr "Donativo" + +#: includes/common/payment-gateways/wepay.php:147 +msgid "Event" +msgstr "Evento" + +#: includes/common/payment-gateways/wepay.php:146 +msgid "Personal" +msgstr "Pessoal" + +#: includes/common/payment-gateways/wepay.php:145 +msgid "Service" +msgstr "Serviço" + +#: includes/common/payment-gateways/wepay.php:144 +msgid "Goods" +msgstr "Produtos" + +#: includes/common/payment-gateways/wepay.php:141 +msgid "Choose type of payments" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:140 +msgid "Checkout Type" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:134 +msgid "Staging" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:131 +msgid "Choose STAGING if you have registered the app on stage.wepay.com, or PRODUCTION if you registered on www.wepay.com" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:36 +#: includes/common/payment-gateways/wepay.php:299 +msgid "WePay" +msgstr "WePay" + +#: includes/common/payment-gateways/_payway.php:366 +msgid "Rejected - A payment was rejected." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:360 +msgid "Failed - A payment was rejected due to an error." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:342 +msgid "PayWay balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:298 +msgid "Full path of the cacerts.crt file" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:284 +msgid "User Name" +msgstr "Nome de Utilizador" + +#: includes/common/payment-gateways/_payway.php:277 +msgid "Biller Code" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:273 +msgid "Log Directory" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:266 +msgid "Encryption Key" +msgstr "Chave de Encriptação" + +#: includes/common/payment-gateways/_payway.php:60 +msgid "Your PayWay transaction has been canceled." +msgstr "A sua transferência PayWay foi cancelada. " + +#: includes/common/payment-gateways/_payway.php:40 +#: includes/common/payment-gateways/_payway.php:41 +msgid "PayWay" +msgstr "PayWay" + +#: includes/common/payment-gateways/paypal-chained-payments.php:862 +msgid "You must register this application with PayPal using your business account login to get an Application ID that will work with your API credentials. A bit of a hassle, but worth it! In the near future we will be looking for ways to simplify this process. Register then submit your application while logged in to the developer portal. Note that you do not need an Application ID for testing in sandbox mode. More Information »" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:818 +#: includes/common/payment-gateways/paypal-chained-payments.php:840 +#: includes/common/payment-gateways/paypal-express.php:705 +msgid "You must login to PayPal and create an API signature to get your credentials. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:378 +msgid "Use Payflow payment gateway to accept online payments using your Internet merchant account and processing network. PayPal Payflow Pro is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:595 +msgid "Tags Only" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:594 +msgid "Category Only" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:795 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:593 +msgid "Category & Tags" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:591 +msgid "Relate Products By" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1008 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:455 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:751 +msgid "Right" +msgstr "Direita" + +#: includes/admin/class-mp-shortcode-builder.php:1007 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:454 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:749 +msgid "Left" +msgstr "Esquerda" + +#: includes/admin/class-mp-shortcode-builder.php:1009 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:750 +msgid "Center" +msgstr "Centro" + +#: marketpress.php:273 +msgid "Orders from your e-commerce store." +msgstr "" + +#: marketpress.php:231 +msgid "Products for your e-commerce store." +msgstr "" + +#: marketpress.php:222 +msgid "Edit Product" +msgstr "Editar Produto" + +#. Description of the plugin/theme +msgid "The complete WordPress ecommerce plugin - works perfectly with BuddyPress and Multisite too to create a social marketplace, where you can take a percentage! Activate the plugin, adjust your settings then add some products to your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:272 +msgid "Beside" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:271 +msgid "Above" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:268 +msgid "Pin Count" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:261 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:287 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:318 +msgid "All View" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:260 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:286 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:317 +msgid "Single View" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:259 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:285 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:316 +msgid "Off" +msgstr "Desliga" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:578 +msgid "Related Product Limit" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:681 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1201 +msgid "Applies To" +msgstr "Aplica-se A" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:685 +msgid "All Products" +msgstr "Todos os Produtos " + +#: includes/admin/store-settings/class-mp-store-settings-general.php:487 +msgid "The label shown for the tax line item in the cart. Taxes, VAT, GST, etc." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:485 +msgid "Tax Label" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:81 +msgid "Apply" +msgstr "Aplicar" + +#: includes/admin/class-mp-admin.php:192 +msgid "MarketPress Instructions" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1954 +#: includes/admin/class-mp-products-admin.php:2194 includes/common/data.php:62 +#: includes/common/helpers.php:150 +msgid "Taxes" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1417 +#: includes/common/class-mp-product.php:2900 +msgid "Related Products" +msgstr "Produtos Relacionados" + +#: includes/common/shipping-modules/mp-usps.php:282 +#: includes/common/shipping-modules/mp-usps.php:316 +msgid "@ Max" +msgstr "@ Max" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "(3-5 days)" +msgstr "(3-5 dias)" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "Priority Mail Express International Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:92 +msgid "Priority Mail Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:171 +#: includes/common/shipping-modules/mp-pickup.php:247 +msgid "In Store" +msgstr "Em Stock" + +#: includes/common/shipping-modules/mp-pickup.php:159 +msgid "Pickup Fee" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:141 +msgid "This option allows your customers to indicate that they will pick-up their order at your place of business." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:60 +#: includes/common/shipping-modules/mp-pickup.php:76 +#: includes/common/shipping-modules/mp-pickup.php:176 +msgid "Pickup Instructions" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:24 +#: includes/common/shipping-modules/mp-pickup.php:254 +msgid "Pickup" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping - 0.00" +msgstr "Envio Gratuito - 0.00" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:256 +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:440 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping" +msgstr "Envio Gratuito" + +#: includes/common/shipping-modules/mp-fedex.php:309 +msgid "Your Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:301 +msgid "Station" +msgstr "Estação" + +#: includes/common/shipping-modules/mp-fedex.php:300 +msgid "Request Courier" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:299 +msgid "Drop Box" +msgstr "Drop Box" + +#: includes/common/shipping-modules/mp-fedex.php:298 +msgid "Business Service Center" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:297 +msgid "Regular Pickup" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:135 +#: includes/common/shipping-modules/mp-fedex.php:264 +msgid "Production" +msgstr "Produção" + +#: includes/common/payment-gateways/simplify.php:207 +msgid "Simplify Commerce by MasterCard" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:104 +msgid "When in live mode, although it is not required, Simplify recommends you have an SSL certificate." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:183 +#: includes/common/payment-gateways/simplify.php:87 +msgid "Public Key" +msgstr "Chave Pública " + +#: includes/common/payment-gateways/paymill.php:175 +#: includes/common/payment-gateways/simplify.php:94 +msgid "Private Key" +msgstr "Chave Privada" + +#: includes/common/payment-gateways/simplify.php:71 +msgid "Simplify helps merchants to accept online payments from Mastercard, Visa, American Express, Discover, JCB, and Diners Club cards. It's that simple. We offer a merchant account and payment gateway in a single, secure package so you can concentrate on what really matters to your business. Only supports USD currently." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:267 +msgid "%1$s" +msgstr "%1$s" + +#: includes/common/payment-gateways/simplify.php:151 +msgid "The Simplify Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/simplify.php:18 +msgid "Simplify" +msgstr "Simplify" + +#: includes/common/payment-gateways/pin.php:255 +msgid "%1$s Card %2$s" +msgstr "%1$s Cartão %2$s" + +#: includes/common/payment-gateways/pin.php:211 +msgid "The PIN Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:187 +msgid "Selecting a currency other than currency supported by PIN may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/pin.php:164 +msgid "You must login to PIN to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/pin.php:158 +msgid "When in live mode PIN recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/pin.php:45 +#: includes/common/payment-gateways/pin.php:286 +msgid "PIN" +msgstr "PIN" + +#: includes/common/payment-gateways/paypal-express.php:830 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:534 +#: includes/common/payment-gateways/paypal-express.php:865 +msgid "The payment is pending" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:235 +msgid "The Paymill Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:169 +msgid "You must login to Paymill to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:45 +#: includes/common/payment-gateways/paymill.php:308 +msgid "Paymill" +msgstr "Paymill" + +#: includes/common/payment-gateways/paymill.php:90 +msgid "Invalid cardholder" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:89 +msgid "Card is no longer valid or has expired" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:88 +msgid "Please enter a valid Card CVC" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:87 +msgid "Please choose a valid Expiration Date." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:99 +#: includes/common/payment-gateways/skrill.php:100 +msgid "Skrill (Moneybookers)" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:24 +#: includes/common/shipping-modules/mp-weight-rate.php:292 +msgid "Weight Rate" +msgstr "Taxa de peso" + +#: includes/common/shipping-modules/mp-usps.php:303 +msgid "USPS Offered International Services" +msgstr "USPS Serviços Internacionais Oferecidos" + +#: includes/common/shipping-modules/mp-usps.php:270 +msgid "USPS Offered Domestic Services" +msgstr "USPS Serviços Domésticos Oferecidos" + +#: includes/common/shipping-modules/mp-usps.php:264 +msgid "USPS Settings" +msgstr "USPS Configurações" + +#: includes/common/shipping-modules/mp-usps.php:145 +msgid "Flat Rate Large" +msgstr "Taxa fixa grande" + +#: includes/common/shipping-modules/mp-usps.php:140 +msgid "Flat Rate Medium 2" +msgstr "Taxa fixa média 2" + +#: includes/common/shipping-modules/mp-usps.php:135 +msgid "Flat Rate Medium 1" +msgstr "Taxa fixa média 1" + +#: includes/common/shipping-modules/mp-usps.php:130 +msgid "Flat Rate Small" +msgstr "Taxa fixa pequena" + +#: includes/common/shipping-modules/mp-usps.php:118 +msgid "First Class International Parcel" +msgstr "Primeira classe de encomendas internacionais" + +#: includes/common/shipping-modules/mp-usps.php:114 +msgid "Priority Mail International Small Flat Rate Boxes" +msgstr "Prioridade de Correio internacional para caixas pequenas de tarifa única" + +#: includes/common/shipping-modules/mp-usps.php:112 +msgid "Priority Mail International Medium Flat Rate Boxes" +msgstr "Prioridade de Correio internacional para caixas médias de tarifa única" + +#: includes/common/shipping-modules/mp-usps.php:110 +msgid "Priority Mail International Large Flat Rate Boxes" +msgstr "Prioridade de Correio internacional para caixas grandes de tarifa única" + +#: includes/common/shipping-modules/mp-usps.php:108 +msgid "Priority Mail International" +msgstr "Prioridade de correio internacional" + +#: includes/common/shipping-modules/mp-usps.php:106 +msgid "Express Mail International Flat Rate Boxes" +msgstr "Caixas de correio expresso internacional de taxa fixa" + +#: includes/common/shipping-modules/mp-usps.php:104 +msgid "Express Mail International" +msgstr "Correio Expresso Internacional" + +#: includes/common/shipping-modules/mp-usps.php:98 +msgid "Library Mail" +msgstr "Correio de biblioteca" + +#: includes/common/shipping-modules/mp-usps.php:96 +msgid "Media Mail" +msgstr "Correio de mídia" + +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "First-Class Mail Parcel" +msgstr "Parcela de email de primeira classe" + +#: includes/common/shipping-modules/mp-usps.php:90 +msgid "Priority Mail Small Flat Rate Box" +msgstr "Prioridade de email pequena taxa por caixa" + +#: includes/common/shipping-modules/mp-usps.php:88 +msgid "Priority Mail Medium Flat Rate Box" +msgstr "Prioridade de email média taxa por caixa" + +#: includes/common/shipping-modules/mp-usps.php:86 +#: includes/common/shipping-modules/mp-usps.php:88 +#: includes/common/shipping-modules/mp-usps.php:90 +#: includes/common/shipping-modules/mp-usps.php:92 +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "(2-4 days)" +msgstr "(2-4) dias" + +#: includes/common/shipping-modules/mp-usps.php:86 +msgid "Priority Mail Large Flat Rate Box" +msgstr "Prioridade de email grande taxa por caixa" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "(2-4) days" +msgstr "(2-4) dias" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "Priority Mail" +msgstr "Prioridade de email" + +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "Express Mail Sunday/Holiday Delivery Flat Rate Boxes" +msgstr "Correio Expresso de taxa fixa de entrega domingo/feriado " + +#: includes/common/shipping-modules/mp-usps.php:80 +msgid "Express Mail Flat Rate Boxes Hold For Pickup" +msgstr "Correio expresso de taxa de espera para atendimento" + +#: includes/common/shipping-modules/mp-usps.php:78 +msgid "Express Mail Flat Rate Boxes" +msgstr "Correio expresso de taxa fixa" + +#: includes/common/shipping-modules/mp-usps.php:76 +msgid "Express Mail Sunday/Holiday Delivery" +msgstr "Correio Expresso de taxa fixa de entrega domingo/feriado" + +#: includes/common/shipping-modules/mp-usps.php:74 +msgid "Express Mail Hold For Pickup" +msgstr "Espera para Atendimento Correio Expresso " + +#: includes/common/shipping-modules/mp-usps.php:72 +#: includes/common/shipping-modules/mp-usps.php:74 +#: includes/common/shipping-modules/mp-usps.php:76 +#: includes/common/shipping-modules/mp-usps.php:78 +#: includes/common/shipping-modules/mp-usps.php:80 +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "(1-2 days)" +msgstr "(1-2 dias)" + +#: includes/common/shipping-modules/mp-usps.php:72 +msgid "Express Mail" +msgstr "Correio expresso" + +#: includes/common/shipping-modules/mp-usps.php:67 +#: includes/common/shipping-modules/mp-usps.php:902 +msgid "USPS" +msgstr "USPS" + +#: includes/common/shipping-modules/mp-ups.php:534 +msgid "UPS (beta)" +msgstr "UPS (beta)" + +#: includes/common/shipping-modules/mp-ups.php:166 +msgid "Required if using negotiated rates" +msgstr "Necessário se estiver com tarifas negociadas" + +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "Saver" +msgstr "Salvar" + +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "Worldwide Express Plus" +msgstr "Worldwide Express Plus" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "(Scheduled)" +msgstr "(Programado)" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "Standard" +msgstr "Padrão" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "(2-5 Days)" +msgstr "(2-5 dias)" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "Worldwide Expedited" +msgstr "Worldwide Expedited" + +#: includes/common/shipping-modules/mp-ups.php:54 +msgid "Worldwide Express" +msgstr "Worldwide Express" + +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "2nd Day Air AM" +msgstr "Segundo dia útil" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "(1 Days)" +msgstr "(1 dia)" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "Next Day Air Early AM" +msgstr "Próximo dia útil" + +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "Next Day Air Saver" +msgstr "Next Day Air Saver" + +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "3 Day Select" +msgstr "3 Day Select" + +#: includes/common/shipping-modules/mp-ups.php:49 +msgid "Ground" +msgstr "Base" + +#: includes/common/shipping-modules/mp-ups.php:48 +msgid "2nd Day Air" +msgstr "2nd Day Air" + +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "Next Day Air" +msgstr "Next Day Air" + +#: includes/admin/class-mp-orders-admin.php:475 +#: includes/common/shipping-modules/mp-ups.php:43 +msgid "UPS" +msgstr "UPS" + +#: includes/common/shipping-modules/mp-table-rate.php:27 +#: includes/common/shipping-modules/mp-table-rate.php:318 +msgid "Table Rate" +msgstr "Tabela de taxa" + +#: includes/common/shipping-modules/mp-table-quantity.php:71 +#: includes/common/shipping-modules/mp-table-quantity.php:77 +msgid "Shipping Cost: " +msgstr "Custo de envio:" + +#: includes/common/shipping-modules/mp-table-quantity.php:70 +#: includes/common/shipping-modules/mp-table-quantity.php:76 +msgid "If quantity is greater than:" +msgstr "Se a quantidade for superior a:" + +#: includes/common/shipping-modules/mp-table-quantity.php:66 +msgid "Each band must be a higher price than the one above it." +msgstr "Cada faixa deve ser um preço maior do que a que está acima dela." + +#: includes/common/shipping-modules/mp-table-quantity.php:56 +msgid "Number of Bands:" +msgstr "Número de faixas:" + +#: includes/common/shipping-modules/mp-table-quantity.php:53 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Each layer must be a higher quantity than the previous." +msgstr "Certifique-se de introduzir um preço de envio para cada opção ou os clientes podem obter os portes de envio grátis. Cada camada tem de ser quantidade superior do que a anterior." + +#: includes/common/shipping-modules/mp-table-quantity.php:51 +msgid "Table Quantity Settings" +msgstr "Configurações da tabela de quantidade" + +#: includes/common/shipping-modules/mp-table-quantity.php:31 +msgid "Table Quantity" +msgstr "Tabela de quantidade" + +#: includes/common/shipping-modules/mp-flat-rate.php:135 +#: includes/common/shipping-modules/mp-table-rate.php:174 +#: includes/common/shipping-modules/mp-weight-rate.php:189 +msgid "European Union" +msgstr "União Européia" + +#: includes/common/shipping-modules/mp-flat-rate.php:123 +#: includes/common/shipping-modules/mp-table-rate.php:162 +#: includes/common/shipping-modules/mp-weight-rate.php:177 +msgid "United States" +msgstr "Estados Unidos" + +#: includes/common/shipping-modules/mp-flat-rate.php:111 +#: includes/common/shipping-modules/mp-table-rate.php:151 +#: includes/common/shipping-modules/mp-weight-rate.php:166 +msgid "In Country" +msgstr "No país" + +#: includes/common/shipping-modules/mp-flat-rate.php:146 +#: includes/common/shipping-modules/mp-table-rate.php:186 +#: includes/common/shipping-modules/mp-weight-rate.php:201 +msgid "International" +msgstr "Internacional" + +#: includes/common/shipping-modules/mp-flat-rate.php:101 +#: includes/common/shipping-modules/mp-table-rate.php:141 +#: includes/common/shipping-modules/mp-weight-rate.php:156 +msgid "Canada" +msgstr "Canada" + +#: includes/common/shipping-modules/mp-flat-rate.php:92 +#: includes/common/shipping-modules/mp-table-rate.php:132 +#: includes/common/shipping-modules/mp-weight-rate.php:147 +msgid "Hawaii and Alaska" +msgstr "Hawaii e Alaska" + +#: includes/common/shipping-modules/mp-flat-rate.php:83 +#: includes/common/shipping-modules/mp-table-rate.php:123 +#: includes/common/shipping-modules/mp-weight-rate.php:138 +msgid "Lower 48 States" +msgstr "48 estados" + +#: includes/common/shipping-modules/mp-flat-rate.php:64 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping." +msgstr "Certifique-se que introduz um preço de envio para cada opção ou os clientes podem obter o portes de envio grátis." + +#: includes/common/shipping-modules/mp-flat-rate.php:25 +#: includes/common/shipping-modules/mp-flat-rate.php:223 +msgid "Flat Rate" +msgstr "Taxa fixa" + +#: includes/common/shipping-modules/mp-fedex.php:761 +msgid "FedEx (beta)" +msgstr "FedEx (beta)" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Centimeters" +msgstr "Centímetros" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Inches" +msgstr "Polegadas" + +#: includes/admin/class-mp-products-admin.php:1676 +#: includes/admin/class-mp-setup-wizard.php:547 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:166 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +msgid "Kilograms" +msgstr "Quilogramas" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:103 +msgid " %1$s - %2$s" +msgstr " %1$s - %2$s" + +#: includes/common/shipping-modules/mp-usps.php:358 +msgid "Max Weight per Box" +msgstr "Peso máximo por caixa" + +#: includes/common/shipping-modules/mp-usps.php:356 +msgid "Box Dimensions" +msgstr "Dimensões da caixa" + +#: includes/common/shipping-modules/mp-usps.php:354 +msgid "Box Name" +msgstr "Nome da caixa" + +#: includes/common/shipping-modules/mp-usps.php:344 +msgid "Total weight selects the box size used for calculating Shipping costs." +msgstr "Peso total seleciona o tamanho da caixa utilizada para calcular os custos de envio." + +#: includes/common/shipping-modules/mp-usps.php:343 +msgid "For each box defined enter the maximum weight it can contain." +msgstr "Para cada caixa definida digitar o peso máximo que pode conter." + +#: includes/common/shipping-modules/mp-usps.php:341 +msgid "Enter your standard box sizes as LengthxWidthxHeight" +msgstr "Digite os tamanhos da caixa padrão como ComprimentoxLarguraxAltura" + +#: includes/common/shipping-modules/mp-fedex.php:386 +#: includes/common/shipping-modules/mp-ups.php:193 +#: includes/common/shipping-modules/mp-usps.php:234 +#: includes/common/shipping-modules/mp-usps.php:338 +msgid "Standard Boxes and Weight Limits" +msgstr "Caixas padrão e limite de peso" + +#: includes/common/shipping-modules/mp-usps.php:328 +msgid "Handling Charge per Interntional Shipment" +msgstr "Cobrança de manuseio por envio internacional" + +#: includes/common/shipping-modules/mp-usps.php:294 +msgid "Handling Charge per Domestic Shipment " +msgstr "Cobrança de manuseio por envio doméstico" + +#: includes/common/shipping-modules/mp-fedex.php:388 +#: includes/common/shipping-modules/mp-ups.php:196 +#: includes/common/shipping-modules/mp-usps.php:237 +msgid "Add Box" +msgstr "Adicionar caixa" + +#: includes/common/shipping-modules/mp-fedex.php:63 +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "(Next Day)" +msgstr "(Próximo dia)" + +#: includes/common/shipping-modules/mp-fedex.php:63 +msgid "Europe First International Priority" +msgstr "Prioridade da Primeira Internacional da Europa" + +#: includes/common/shipping-modules/mp-fedex.php:62 +msgid "International Priority" +msgstr "Prioridade Internacional" + +#: includes/common/shipping-modules/mp-fedex.php:61 +#: includes/common/shipping-modules/mp-fedex.php:62 +#: includes/common/shipping-modules/mp-ups.php:54 +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "(1-3 Days)" +msgstr "(1-3 dias)" + +#: includes/common/shipping-modules/mp-fedex.php:61 +msgid "International First" +msgstr "Primeira Internacional" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "(5 Days)" +msgstr "(5 dias)" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "International Economy" +msgstr "Economia Internacional" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "(2-7 Days)" +msgstr "(2-7 dias)" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "Smart Post" +msgstr "Postagem inteligente" + +#: includes/common/shipping-modules/mp-fedex.php:55 +#: includes/common/shipping-modules/mp-ups.php:49 +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "(1-5 Days)" +msgstr "(1-5 dias)" + +#: includes/common/shipping-modules/mp-fedex.php:55 +msgid "Ground Home Delivery" +msgstr "Área de entrega" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "(1-7 Days)" +msgstr "(1-7 dias)" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "Fedex Ground" +msgstr "Fedex base" + +#: includes/common/shipping-modules/mp-fedex.php:53 +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "(3 Days)" +msgstr "(3 dias)" + +#: includes/common/shipping-modules/mp-fedex.php:53 +msgid "Fedex Express Saver" +msgstr "Fedex Express Saver" + +#: includes/common/shipping-modules/mp-fedex.php:52 +#: includes/common/shipping-modules/mp-ups.php:48 +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "(2 Days)" +msgstr "(2 dias)" + +#: includes/common/shipping-modules/mp-fedex.php:52 +msgid "Fedex 2 Day" +msgstr "Fedex 2 Day" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "(2 Days am)" +msgstr "(2 Days am)" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "Fedex 2 Day AM" +msgstr "Fedex 2 Day AM" + +#: includes/common/shipping-modules/mp-fedex.php:50 +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "(1 Day)" +msgstr "(1 dia)" + +#: includes/common/shipping-modules/mp-fedex.php:50 +msgid "Standard Overnight" +msgstr "Serviço de Entrega Padrão" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "(1 Day am )" +msgstr "(1 Day am )" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "Priority Overnight" +msgstr "Serviço de Entrega Prioritário" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "(1 Day am)" +msgstr "(1 Day am)" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "First Overnight" +msgstr "First Overnight" + +#: includes/admin/class-mp-orders-admin.php:476 +#: includes/common/shipping-modules/mp-fedex.php:31 +msgid "FedEx" +msgstr "FedEx" + +#: includes/common/payment-gateways/paymill.php:270 +#: includes/common/payment-gateways/simplify.php:179 +#: includes/common/payment-gateways/stripe.php:365 +msgid "%1$s Card ending in %2$s - Expires %3$s" +msgstr "%1$s Cartão terminando em %2$s - Expira %3$s" + +#: includes/common/payment-gateways/paymill.php:259 +#: includes/common/payment-gateways/pin.php:238 +#: includes/common/payment-gateways/simplify.php:171 +msgid "%s Store Purchase - Order ID: %s, Email: %s" +msgstr "%s Compra em loja - ID de Encomenda: %s, Email: %s" + +#: includes/common/payment-gateways/stripe.php:266 +msgid "You must login to Stripe to get your API credentials. You can enter your test credentials, then live ones when ready." +msgstr "Poderá entrar no Stripe para obter suas credenciais da API. Poderá inserir suas credenciais de teste, e só depois, colocá-las no seu site quando estiverem prontas." + +#: includes/common/payment-gateways/stripe.php:261 +msgid "When in live mode Stripe recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "Quando em modo live Stripe é recomendável que você tenha uma configuração de certificado SSL para o site onde o formulário de checkout será exibido." + +#: includes/common/payment-gateways/stripe.php:311 +msgid "The Stripe Token was not generated correctly. Please go back and try again." +msgstr "A Stripe token não foi gerado corretamente. Por favor, volte e tente novamente." + +#: includes/common/payment-gateways/class-mp-gateway-api.php:263 +#: includes/common/payment-gateways/paymill.php:122 +#: includes/common/payment-gateways/stripe.php:222 +msgid "Card Number" +msgstr "Número do cartão" + +#: includes/common/payment-gateways/paymill.php:86 +msgid "Please enter a valid Credit Card Number." +msgstr "Por favor insira um número de cartão de crédito válido." + +#: includes/common/payment-gateways/stripe.php:45 +#: includes/common/payment-gateways/stripe.php:433 +msgid "Stripe" +msgstr "Stripe" + +#: includes/common/payment-gateways/paypal-express.php:750 +msgid "Sets the background color for the payment page. By default, the color is white." +msgstr "Define a cor de fundo para a página de pagamento. Por padrão, a cor é branca." + +#: includes/common/payment-gateways/paypal-express.php:745 +msgid "Sets the background color for the header of the payment page. By default, the color is white." +msgstr "Define a cor de fundo para o cabeçalho da página de pagamento. Por padrão, a cor é branca." + +#: includes/common/payment-gateways/paypal-express.php:740 +msgid "Sets the border color around the header of the payment page. The border is a 2-pixel perimeter around the header space, which is 750 pixels wide by 90 pixels high. By default, the color is black." +msgstr "Define a cor da borda ao redor do cabeçalho da página de pagamento. O limite é um perímetro de 2 pixels em torno do espaço de cabeçalho, que é de 750 pixels de largura por 90 pixels de altura. Por padrão, a cor é preta." + +#: includes/common/payment-gateways/paypal-express.php:735 +msgid "URL for an image you want to appear at the top left of the payment page. The image has a maximum size of 750 pixels wide by 90 pixels high. PayPal recommends that you provide an image that is stored on a secure (https) server. If you do not specify an image, the business name is displayed." +msgstr "URL para uma imagem que você quer que apareça no canto superior esquerdo da página de pagamento. A imagem tem um tamanho máximo de 750 pixels de largura por 90 pixels de altura. PayPal recomenda que você forneça uma imagem que está armazenada num servidor seguro (https). Se você não especificar uma imagem, o nome da empresa é exibido." + +#: includes/common/payment-gateways/paypal-express.php:857 +#: includes/common/payment-gateways/paypal-express.php:1131 +msgid "The payment is pending because it is part of an order that has been authorized but not settled." +msgstr "O pagamento está pendente porque é parte de um encomenda que foi autorizado, mas não resolvido." + +#: includes/common/payment-gateways/paypal-express.php:853 +#: includes/common/payment-gateways/paypal-express.php:1127 +msgid "The payment is pending because it has been authorized but not settled. You must capture the funds first." +msgstr "O pagamento está pendente porque foi autorizado, mas não resolvido. Você deve capturar os fundos em primeiro lugar." + +#: includes/common/payment-gateways/paypal-express.php:847 +#: includes/common/payment-gateways/paypal-express.php:1120 +msgid "You denied the payment when it was marked as pending." +msgstr "Você negou o pagamento quando marcou como pendente." + +#: includes/common/payment-gateways/paypal-express.php:837 +#: includes/common/payment-gateways/paypal-express.php:1108 +msgid "A reversal has occurred on this transaction due to an unknown reason." +msgstr "A inversão ocorreu nessa transacção devido a um motivo desconhecido." + +#: includes/common/payment-gateways/paypal-express.php:836 +#: includes/common/payment-gateways/paypal-express.php:1107 +msgid "A reversal has occurred on this transaction because you have given the customer a refund." +msgstr "A inversão ocorreu nessa transacção porque você deu ao cliente um reembolso." + +#: includes/common/payment-gateways/paypal-express.php:835 +#: includes/common/payment-gateways/paypal-express.php:1106 +msgid "A reversal has occurred on this transaction due to a complaint about the transaction from your customer." +msgstr "A inversão ocorreu nesta transacção devido a uma reclamação sobre a operação de seu cliente." + +#: includes/common/payment-gateways/paypal-express.php:834 +#: includes/common/payment-gateways/paypal-express.php:1105 +msgid "A reversal has occurred on this transaction due to your customer triggering a money-back guarantee." +msgstr "A inversão ocorreu nesta transacção devido ao seu cliente desencadeando uma garantia de devolução do dinheiro." + +#: includes/common/payment-gateways/paypal-express.php:833 +#: includes/common/payment-gateways/paypal-express.php:1104 +msgid "A reversal has occurred on this transaction due to a chargeback by your customer." +msgstr "A inversão ocorreu nesta transacção devido a um estorno de seu cliente." + +#: includes/common/payment-gateways/paypal-express.php:1101 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer:" +msgstr "O pagamento foi revertido devido a um estorno ou outro tipo de inversão. Os recursos foram removidos do saldo da sua conta e retornou para o comprador:" + +#: includes/common/payment-gateways/paypal-express.php:826 +#: includes/common/payment-gateways/paypal-express.php:1097 +msgid "A payment has been accepted." +msgstr "O pagamento foi aceite." + +#: includes/common/payment-gateways/paypal-express.php:818 +#: includes/common/payment-gateways/paypal-express.php:1087 +msgid "The transaction has not terminated, e.g. an authorization may be awaiting completion." +msgstr "A transação não está terminada, por exemplo, uma autorização pode estar aguardando a conclusão." + +#: includes/common/payment-gateways/payfast.php:531 +#: includes/common/payment-gateways/paypal-express.php:810 +#: includes/common/payment-gateways/paypal-express.php:1077 +msgid "The payment has failed. This happens only if the payment was made from your customer's bank account." +msgstr "O pagamento falhou. Isso só acontece se o pagamento foi feito da conta bancária do cliente." + +#: includes/common/payment-gateways/paypal-express.php:806 +#: includes/common/payment-gateways/paypal-express.php:1072 +msgid "An authorization for this transaction has been voided." +msgstr "A autorização para esta operação foi anulada." + +#: includes/common/payment-gateways/paypal-express.php:802 +#: includes/common/payment-gateways/paypal-express.php:1067 +msgid "The authorization period for this payment has been reached." +msgstr "Foi atingido o período de autorização para este pagamento." + +#: includes/common/payment-gateways/paypal-express.php:798 +#: includes/common/payment-gateways/paypal-express.php:1062 +msgid "A reversal has been canceled; for example, when you win a dispute and the funds for the reversal have been returned to you." +msgstr "A reversão foi cancelada, por exemplo, quando você ganha uma disputa e os fundos para a reversão serão devolvidos a você." + +#: includes/common/payment-gateways/paypal-express.php:499 +#: includes/common/payment-gateways/paypal-express.php:1163 +msgid "PayPal Express Checkout" +msgstr "PayPal Express Checkout" + +#: includes/common/payment-gateways/paypal-chained-payments.php:798 +msgid "Gateway Settings Page Message" +msgstr "Configurações de Gateway para página de mensagens" + +#: includes/common/payment-gateways/paypal-express.php:725 +msgid "Signature" +msgstr "Assinatura" + +#: includes/common/payment-gateways/eway31.php:506 +#: includes/common/payment-gateways/eway31.php:533 +#: includes/common/shipping-modules/mp-fedex.php:276 +msgid "API Password" +msgstr "Senha API" + +#: includes/common/payment-gateways/paypal-chained-payments.php:773 +msgid "Enter a percentage of all store sales to collect as a fee. Decimals allowed." +msgstr "Insira uma porcentagem de todas as vendas da loja para recolher uma taxa. Decimais são permitidos." + +#: includes/common/payment-gateways/paypal-chained-payments.php:757 +msgid "Using PayPal Chained Payments allows you as the multisite network owner to collect a predefined fee or percentage of all sales on network MarketPress stores! This is invisible to the customers who purchase items in a store, and all PayPal fees will be charged to the store owner. To use this option you must create API credentials, and you should make all other gateways unavailable or limited above." +msgstr "Usando a forma de Pagamento PayPal Chained permite que você, como proprietário da rede a vários locais, possa recolher uma taxa pré-definida ou a porcentagem de todas as vendas em lojas MarketPress rede! Este é invisível para os clientes que compram itens em uma loja, e todas as taxas do PayPal serão cobradas ao proprietário da loja. Para usar essa opção, você deve criar as credenciais de API, e você deve fazer todos os outros gateways disponível ou limitado acima." + +#: includes/common/payment-gateways/paypal-chained-payments.php:338 +msgid "Please be aware that we will deduct a ?% fee from the total of each transaction in addition to any fees PayPal may charge you. If for any reason you need to refund a customer for an order, please contact us with a screenshot of the refund receipt in your PayPal history as well as the Transaction ID of our fee deduction so we can issue you a refund. Thank you!" +msgstr "Por favor, esteja ciente de que iremos deduzir uma taxa ?% do total de cada transação, além de todas as taxas que o PayPal pode cobrar de você. Se por qualquer motivo você precisar reembolsar um cliente por um encomenda, por favor contate-nos com uma imagem do recibo de reembolso em seu histórico de PayPal, assim como o ID da transação da nossa taxa de dedução, para que possamos emitir um reembolso. Obrigado!" + +#: includes/common/payment-gateways/paypal-chained-payments.php:698 +#: includes/common/payment-gateways/paypal-express.php:149 +msgid "There was a problem connecting to PayPal. Please try again." +msgstr "Houve um problema de conexão com PayPal. Por favor, tente novamente." + +#: includes/common/payment-gateways/paypal-chained-payments.php:470 +#: includes/common/payment-gateways/paypal-express.php:1053 +msgid "There was a problem verifying the IPN string with PayPal. Please try again." +msgstr "Houve um problema verificando a seqüência de IPN e transferências bancárias. Por favor, tente novamente." + +#: includes/common/payment-gateways/paypal-chained-payments.php:310 +msgid "There was a problem connecting to PayPal to check the status of your purchase. Please check the status of your order here »" +msgstr "Houve um problema de conexão com PayPal para verificar o estado de sua compra. Por favor confira o estado do seu encomenda aqui »" + +#: includes/common/payment-gateways/payfast.php:539 +#: includes/common/payment-gateways/paypal-chained-payments.php:254 +#: includes/common/payment-gateways/paypal-express.php:1139 +msgid "The payment is pending." +msgstr "O pagamento está pendente." + +#: includes/common/payment-gateways/paypal-chained-payments.php:251 +#: includes/common/payment-gateways/paypal-chained-payments.php:531 +#: includes/common/payment-gateways/paypal-express.php:862 +#: includes/common/payment-gateways/paypal-express.php:1136 +msgid "The payment is pending for an unknown reason. For more information, contact PayPal customer service." +msgstr "O pagamento está pendente por um motivo desconhecido. Para mais informações, entre em contato com serviço ao cliente do PayPal." + +#: includes/common/payment-gateways/paypal-chained-payments.php:250 +#: includes/common/payment-gateways/paypal-chained-payments.php:530 +#: includes/common/payment-gateways/paypal-express.php:861 +#: includes/common/payment-gateways/paypal-express.php:1135 +msgid "The payment is pending because you are not yet verified. You must verify your account before you can accept this payment." +msgstr "O pagamento está pendente porque você ainda não está confirmado. Você deve verificar a sua conta antes que você possa aceitar este pagamento." + +#: includes/common/payment-gateways/paypal-chained-payments.php:249 +#: includes/common/payment-gateways/paypal-chained-payments.php:529 +#: includes/common/payment-gateways/paypal-express.php:860 +#: includes/common/payment-gateways/paypal-express.php:1134 +msgid "The payment is pending because it was made via credit card and you must upgrade your account to Business or Premier status in order to receive the funds. It can also mean that you have reached the monthly limit for transactions on your account." +msgstr "O pagamento está pendente porque foi feito via cartão de crédito e você deve atualizar sua conta para negócios ou status Premier, a fim de receber os fundos. Também pode significar que você tenha atingido o limite mensal de transações em sua conta." + +#: includes/common/payment-gateways/paypal-chained-payments.php:248 +#: includes/common/payment-gateways/paypal-chained-payments.php:528 +#: includes/common/payment-gateways/paypal-express.php:859 +#: includes/common/payment-gateways/paypal-express.php:1133 +msgid "The payment is pending because it was made to an email address that is not yet registered or confirmed." +msgstr "O pagamento está pendente, porque foi feito para um endereço de e-mail que ainda não está registrado ou confirmado." + +#: includes/common/payment-gateways/paypal-chained-payments.php:247 +#: includes/common/payment-gateways/paypal-chained-payments.php:527 +#: includes/common/payment-gateways/paypal-express.php:858 +#: includes/common/payment-gateways/paypal-express.php:1132 +msgid "The payment is pending while it is being reviewed by PayPal for risk." +msgstr "O pagamento está pendente, enquanto ele está sendo revisto pelo PayPal por risco." + +#: includes/common/payment-gateways/paypal-chained-payments.php:246 +#: includes/common/payment-gateways/paypal-chained-payments.php:526 +#: includes/common/payment-gateways/paypal-express.php:856 +#: includes/common/payment-gateways/paypal-express.php:1130 +msgid "You do not have a balance in the currency sent, and you do not have your Payment Receiving Preferences set to automatically convert and accept this payment. You must manually accept or deny this payment." +msgstr "Você não tem um saldo na moeda enviada, e você não tem as suas preferências de recebimento do pagamento definidas para converter e aceitar esse pagamento automaticamente. Você deve aceitar manualmente ou negar o pagamento." + +#: includes/common/payment-gateways/paypal-chained-payments.php:245 +#: includes/common/payment-gateways/paypal-chained-payments.php:525 +#: includes/common/payment-gateways/paypal-express.php:855 +#: includes/common/payment-gateways/paypal-express.php:1129 +msgid "The payment is pending because you hold a non-U.S. account and do not have a withdrawal mechanism. You must manually accept or deny this payment from your Account Overview." +msgstr "O pagamento está pendente porque você mantém uma conta não-US e não tem um mecanismo de retirada. Você deve aceitar manualmente ou negar esse pagamento a partir de sua Visão geral da conta." + +#: includes/common/payment-gateways/paypal-chained-payments.php:244 +#: includes/common/payment-gateways/paypal-chained-payments.php:524 +#: includes/common/payment-gateways/paypal-express.php:854 +#: includes/common/payment-gateways/paypal-express.php:1128 +msgid "The payment is pending because it was made by an eCheck that has not yet cleared." +msgstr "O pagamento está pendente, porque foi feito por um eCheck que ainda não foi eliminado." + +#: includes/common/payment-gateways/paypal-chained-payments.php:243 +#: includes/common/payment-gateways/paypal-chained-payments.php:523 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences section of your Profile." +msgstr "O pagamento está pendente porque o seu cliente não incluiu um endereço confirmado do transporte e suas preferências de recebimento do pagamento estão definidas de tal forma que você pode aceitar manualmente ou negar cada um desses pagamentos. Para alterar sua preferência, vá até a seção Preferências do seu perfil." + +#: includes/common/payment-gateways/paypal-chained-payments.php:236 +#: includes/common/payment-gateways/paypal-chained-payments.php:516 +msgid "The transaction was rejected by the receiver (you)." +msgstr "A transação foi rejeitada pelo recebedor (você)." + +#: includes/common/payment-gateways/paypal-chained-payments.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:510 +#: includes/common/payment-gateways/paypal-express.php:843 +#: includes/common/payment-gateways/paypal-express.php:1115 +msgid "You refunded the payment." +msgstr "Você devolveu o pagamento." + +#: includes/common/payment-gateways/paypal-chained-payments.php:224 +#: includes/common/payment-gateways/paypal-chained-payments.php:504 +msgid "The transaction is in progress." +msgstr "A transação está em andamento." + +#: includes/common/payment-gateways/paypal-chained-payments.php:212 +#: includes/common/payment-gateways/paypal-chained-payments.php:491 +#: includes/common/payment-gateways/paypal-express.php:814 +#: includes/common/payment-gateways/paypal-express.php:1082 +msgid "The payment has been partially refunded." +msgstr "O pagamento foi parcialmente reembolsado." + +#: includes/common/payment-gateways/paypal-chained-payments.php:202 +#: includes/common/payment-gateways/paypal-chained-payments.php:481 +msgid "PayPal balance, Credit Card, or Instant Transfer" +msgstr "Saldo do PayPal, cartão de crédito ou transferência instantânea" + +#: includes/common/payment-gateways/paypal-chained-payments.php:177 +msgid "There was a problem connecting to PayPal to setup your purchase. Please try again." +msgstr "Houve um problema de conexão com PayPal para configurar sua compra. Por favor, tente novamente." + +#: includes/common/payment-gateways/paypal-chained-payments.php:122 +msgid "Your PayPal transaction has been canceled." +msgstr "Sua transação PayPal foi cancelada." + +#: includes/common/payment-gateways/paypal-chained-payments.php:50 +#: includes/common/payment-gateways/paypal-chained-payments.php:53 +#: includes/common/payment-gateways/paypal-chained-payments.php:732 +#: includes/common/payment-gateways/paypal-express.php:500 +#: includes/common/payment-gateways/paypal-express.php:938 +msgid "PayPal" +msgstr "PayPal" + +#: includes/common/payment-gateways/paypal-chained-payments.php:48 +#: includes/common/payment-gateways/paypal-chained-payments.php:730 +#: includes/common/payment-gateways/paypal-chained-payments.php:756 +#: includes/common/payment-gateways/paypal-chained-payments.php:873 +msgid "PayPal Chained Payments" +msgstr "PayPal Chained Payments" + +#: includes/common/payment-gateways/paypal-payflow.php:59 +#: includes/common/payment-gateways/paypal-payflow.php:467 +msgid "PayPal Payflow Pro" +msgstr "PayPal Payflow Pro" + +#: includes/common/payment-gateways/skrill.php:378 +msgid "Chargeback - A payment was reversed due to a chargeback. The funds have been removed from your account balance and returned to the buyer." +msgstr "Cancelamento - Um pagamento foi revertido devido a um estorno. Os recursos foram removidos do saldo de sua conta e retornou para o comprador." + +#: includes/common/payment-gateways/skrill.php:372 +msgid "Failed - The Credit Card or Direct Debit transaction was declined." +msgstr "Falha - O cartão de crédito ou débito direto foi recusado." + +#: includes/common/payment-gateways/_payway.php:354 +#: includes/common/payment-gateways/skrill.php:366 +msgid "Cancelled - The payment was cancelled manually by the sender in their online account history or was auto-cancelled after 14 days pending." +msgstr "Cancelado - O pagamento foi cancelado manualmente pelo remetente em seu histórico da conta on-line ou foi automaticamente cancelado depois de 14 dias pendentes." + +#: includes/common/payment-gateways/skrill.php:360 +msgid "Pending - The payment is pending. It can take 2-3 days for bank transfers to complete." +msgstr "Pendente - O pagamento está pendente. Pode levar de 2 a 3 dias para transferências bancárias serem concluídas." + +#: includes/common/payment-gateways/_payway.php:349 +#: includes/common/payment-gateways/skrill.php:354 +msgid "Processed - The payment has been completed, and the funds have been added successfully to your Moneybookers account balance." +msgstr "Processado - O pagamento já foi concluído, e os recursos foram adicionados com êxito à sua conta Moneybookers." + +#: includes/common/payment-gateways/skrill.php:189 +msgid "Shown to the customer on the confirmation screen - the end step of the process - a note, confirmation number, or any other message. Line breaks <br> may be used for longer messages." +msgstr "Apresentado ao cliente no ecrã de confirmação - o passo final do processo - uma nota, o número de confirmação, ou qualquer outra mensagem. Quebras de linha <br> pode ser usado para mensagens mais longas." + +#: includes/common/payment-gateways/skrill.php:188 +msgid "Confirmation Note (optional)" +msgstr "Nota de confirmação (opcional)" + +#: includes/common/payment-gateways/skrill.php:183 +msgid "The URL of the logo which you would like to appear at the top of the payment form. The logo must be accessible via HTTPS otherwise it will not be shown. For best integration results we recommend that you use a logo with dimensions up to 200px in width and 50px in height." +msgstr "A URL do logotipo que você gostaria de aparecer no topo da forma de pagamento. O logotipo deve ser acessível via HTTPS caso contrário ele não será mostrado. Para melhores resultados, integração, recomendamos que você use um logotipo com dimensões até 200px de largura e 50px de altura." + +#: includes/common/payment-gateways/skrill.php:182 +msgid "Logo Image (optional)" +msgstr "Imagem do logo (opcional)" + +#: includes/common/payment-gateways/skrill.php:177 +msgid "The name of this store, which will be shown on the gateway. If no value is submitted, the account email will be shown as the recipient of the payment." +msgstr "O nome desta loja, que será mostrado no gateway. Se nenhum valor for enviado, o e-mail da conta será mostrado como o destinatário do pagamento." + +#: includes/common/payment-gateways/skrill.php:176 +msgid "Merchant Name (optional)" +msgstr "Nome do comerciante (opcional)" + +#: includes/common/payment-gateways/skrill.php:165 +msgid "Language" +msgstr "Idioma" + +#: includes/common/payment-gateways/2checkout.php:368 +#: includes/common/payment-gateways/authorizenet-aim.php:262 +#: includes/common/payment-gateways/eway.php:363 +#: includes/common/payment-gateways/eway31.php:471 +#: includes/common/payment-gateways/mollie.php:91 +#: includes/common/payment-gateways/paymill.php:193 +#: includes/common/payment-gateways/paypal-chained-payments.php:356 +#: includes/common/payment-gateways/paypal-express.php:688 +#: includes/common/payment-gateways/paypal-payflow.php:432 +#: includes/common/payment-gateways/pin.php:186 +#: includes/common/payment-gateways/skrill.php:152 +#: includes/common/payment-gateways/stripe.php:288 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:104 +msgid "Currency" +msgstr "Moeda" + +#: includes/common/payment-gateways/2checkout.php:359 +#: includes/common/payment-gateways/skrill.php:143 +msgid "Secret Word" +msgstr "Palavra secreta" + +#: includes/common/payment-gateways/skrill.php:261 +msgid "Order ID:" +msgstr "ID do encomenda:" + +#: includes/common/payment-gateways/skrill.php:234 +msgid "Complete Checkout" +msgstr "Checkout completo" + +#: includes/common/payment-gateways/skrill.php:204 +msgid "Your Moneybookers transaction has been canceled." +msgstr "Sua transação Moneybookers foi cancelada." + +#: includes/common/payment-gateways/manual-payments.php:155 +msgid "This is the email text to send to those who have made manual payment checkouts. You should include your manual payment instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "Este é o texto de e-mail para enviar para aqueles que escolheram pagamento manual. Você deve incluir suas instruções de pagamento manual aqui. Ele substitui o check-out e-mail de encomenda padrão. Estes códigos serão substituídos por detalhes de ordem: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. HTML não é permitido." + +#: includes/common/payment-gateways/_payway.php:257 +#: includes/common/payment-gateways/manual-payments.php:128 +msgid "Record payments manually, such as by Cash, Check, or EFT." +msgstr "Registrar pagamentos manualmente em dinheiro, cheque, ou EFT." + +#: includes/common/payment-gateways/manual-payments.php:71 +msgid "Manual/Invoice" +msgstr "Manual/Fatura" + +#: includes/admin/class-mp-setup-wizard.php:648 +#: includes/common/payment-gateways/manual-payments.php:35 +#: includes/common/payment-gateways/manual-payments.php:36 +msgid "Manual Payment" +msgstr "Pagamento manual" + +#: includes/common/payment-gateways/manual-payments.php:34 +#: includes/common/payment-gateways/manual-payments.php:163 +msgid "Manual Payments" +msgstr "Manual Payments" + +#: includes/common/payment-gateways/_ideal.php:288 +msgid "iDEAL Simulator (for testing)" +msgstr "iDEAL Simulador (para teste)" + +#: includes/common/payment-gateways/_ideal.php:287 +msgid "ABN Amro Bank" +msgstr "ABN Amro Bank" + +#: includes/common/payment-gateways/_ideal.php:286 +msgid "Friesland Bank" +msgstr "Friesland Bank" + +#: includes/common/payment-gateways/_ideal.php:285 +msgid "Rabobank" +msgstr "Rabobank" + +#: includes/common/payment-gateways/_ideal.php:284 +msgid "ING Bank" +msgstr "ING Bank" + +#: includes/common/payment-gateways/_ideal.php:279 +msgid "Bank" +msgstr "Banco" + +#: includes/common/payment-gateways/_ideal.php:270 +msgid "To make it easier to pay for online products and services, the Dutch banking community has developed the iDEAL online payment method. iDEAL allows online payments to be made using online banking in EUR only." +msgstr "Para tornar mais fácil de pagar por produtos e serviços on-line, a comunidade bancária holandesa desenvolveu o método de pagamento iDEAL online. iDEAL permite pagamentos on-line devendo ser feita utilizando a banca online em euros apenas." + +#: includes/common/payment-gateways/_ideal.php:247 +#: includes/common/payment-gateways/_payway.php:199 +#: includes/common/payment-gateways/manual-payments.php:68 +msgid "Invoiced" +msgstr "Faturado" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1016 +msgid "Coupon" +msgstr "Cupom" + +#: includes/common/payment-gateways/_ideal.php:77 +#: includes/common/payment-gateways/_ideal.php:250 +#: includes/common/payment-gateways/_payway.php:202 +msgid "iDEAL" +msgstr "iDEAL" + +#: includes/common/payment-gateways/_ideal.php:76 +msgid "iDEAL (beta)" +msgstr "iDEAL (beta)" + +#: includes/common/payment-gateways/payfast.php:327 +msgid "Merchant Key" +msgstr "Chave do comerciante" + +#: includes/common/payment-gateways/_ideal.php:293 +#: includes/common/payment-gateways/_payway.php:302 +#: includes/common/payment-gateways/payfast.php:324 +msgid "Merchant ID" +msgstr "ID do comerciante" + +#: includes/common/payment-gateways/eway31.php:462 +msgid "eWay Rapid 3.0 Payments lets merchants recieve credit card payments through eWay without need for users to leave the shop. Note this gateway requires a valid SSL certificate configured for this site." +msgstr "eWay Rapid 3.0 Payments permite que comerciantes recebam pagamentos com cartão de crédito através de talão eWay sem necessidade de os usuários a sair da loja. Note que esta passagem requer um certificado SSL válido configurado para este site." + +#: includes/common/payment-gateways/eway.php:452 +msgid "There was a problem connecting to eWay. Please try again." +msgstr "Houve um problema de conexão com eWay. Por favor, tente novamente." + +#: includes/common/payment-gateways/eway.php:432 +#: includes/common/payment-gateways/eway.php:437 +msgid "The url of the image can be hosted on your website and pass the secure https:// path of the image to be displayed at the top of the website. This is the second image block on the webpage and is restricted to 960px X 65px. A default secure image is used if none is supplied." +msgstr "A URL da imagem pode ser hospedada em seu site e passar o caminho https:// seguro para que a imagem seja exibida na parte superior do site. Este é o segundo bloco de imagem na página e é restrito a 960px X 65px. A imagem segura padrão é usada se nenhum for fornecido." + +#: includes/common/payment-gateways/eway.php:431 +#: includes/common/payment-gateways/eway.php:436 +msgid "Company Logo (optional)" +msgstr "Logo da Empresa (opcional)" + +#: includes/common/payment-gateways/eway.php:427 +msgid "The page footer text can be customised and populated below the customer's order details. Useful for contact information." +msgstr "O texto de rodapé de página pode ser personalizado e preenchido com detalhes do encomenda do cliente. Útil para informações de contato." + +#: includes/common/payment-gateways/eway.php:426 +msgid "Page Footer (optional)" +msgstr "Rodapé da Página (opcional)" + +#: includes/common/payment-gateways/eway.php:421 +msgid "Page Description (optional)" +msgstr "Descrição da página (opcional)" + +#: includes/common/payment-gateways/eway.php:417 +#: includes/common/payment-gateways/eway.php:422 +msgid "This value is used to populate the browsers title bar at the top of the screen." +msgstr "Este valor é usado para preencher a barra de título dos navegadores no topo da tela." + +#: includes/common/payment-gateways/eway.php:416 +msgid "Page Title (optional)" +msgstr "Título da página (opcional)" + +#: includes/common/payment-gateways/eway.php:412 +msgid "This will be displayed as the company the customer is purchasing from, including this is highly recommended." +msgstr "Esta será exibido de qual empresa o cliente está comprando, é altamente recomendado que inclua esta." + +#: includes/common/payment-gateways/eway.php:411 +msgid "Company Name" +msgstr "Nome da empresa" + +#: includes/common/payment-gateways/eway.php:394 +msgid "Customer ID" +msgstr "ID do cliente" + +#: includes/common/payment-gateways/eway.php:381 +#: includes/common/payment-gateways/eway31.php:488 +msgid "Live API Credentials" +msgstr "Live API Credenciais" + +#: includes/common/payment-gateways/eway.php:371 +#: includes/common/payment-gateways/eway31.php:479 +msgid "Gateway Mode" +msgstr "Modo Gateway" + +#: includes/common/payment-gateways/eway.php:354 +msgid "The Hosted Page is a webpage hosted on eWAY's side eliminating the need for merchants to capture, transmit or store credit card numbers. At the checkout time the merchant automatically redirects the customer to the Hosted Page where they would enter their details and have the transaction processed. Upon completion of the transaction the customer is redirected back to the MarketPress checkout confirmation page." +msgstr "A página hospedada é uma página hospedada no lado de eWay eliminando a necessidade de os comerciantes para capturar, transmitir ou armazenar números de cartão de crédito. No horário do checkout o comerciante automaticamente redireciona o cliente para a página hospedada onde eles irão introduzir os seus dados e ter a transação processada. Após a conclusão da operação, o cliente é redirecionado para a página de confirmação MarketPress." + +#: includes/common/payment-gateways/eway.php:314 +msgid "There was a problem with your credit card information: %s" +msgstr "Houve um problema com seu cartão de crédito: %s" + +#: includes/common/payment-gateways/eway.php:300 +msgid "Paid - The card has been processed - %s" +msgstr "Pago - O cartão foi processado - %s" + +#: includes/common/payment-gateways/eway.php:253 +msgid "There was a problem setting up the transaction with eWay: %s" +msgstr "Houve um problema de configuração na transação com eWay: %s" + +#: includes/common/payment-gateways/eway.php:245 +#: includes/common/payment-gateways/eway.php:289 +msgid "There was a problem parsing the response from eWay. Please try again." +msgstr "Houve um problema ao analisar a resposta do eWay. Por favor, tente novamente." + +#: includes/common/payment-gateways/_ideal.php:159 +#: includes/common/payment-gateways/eway.php:189 +#: includes/common/payment-gateways/paypal-chained-payments.php:634 +#: includes/common/payment-gateways/paypal-express.php:322 +#: includes/common/payment-gateways/paypal-express.php:473 +msgid "%s Store Purchase - Order ID: %s" +msgstr "%s Loja de compras - ID do encomenda: %s" + +#: includes/common/payment-gateways/eway.php:147 +#: includes/common/payment-gateways/eway.php:462 +msgid "eWay Shared Payments" +msgstr "eWay Shared Payments" + +#: includes/common/payment-gateways/_cubepoints.php:214 +msgid "This is the email text to send to those who have made CubePoints checkouts. You should include your CubePoints instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "Este é o texto de e-mail para enviar para aqueles que optaram por CubePoints checkouts. Você deve incluir suas instruções CubePoints aqui. Ele substitui o email de check-out de encomenda padrão. Estes códigos serão substituídos com detalhes da ordem: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. HTML não é permitido." + +#: includes/common/payment-gateways/_cubepoints.php:212 +#: includes/common/payment-gateways/free_orders.php:188 +#: includes/common/payment-gateways/manual-payments.php:154 +msgid "Order Confirmation Email" +msgstr "Email de confirmação do encomenda" + +#: includes/common/payment-gateways/_cubepoints.php:207 +#: includes/common/payment-gateways/manual-payments.php:149 +msgid "Confirmation User Instructions" +msgstr "Instruções do usuário para confirmação" + +#: includes/common/payment-gateways/_cubepoints.php:202 +#: includes/common/payment-gateways/manual-payments.php:144 +msgid "User Instructions" +msgstr "Instruções do usuário" + +#: includes/common/payment-gateways/_cubepoints.php:198 +#: includes/common/payment-gateways/free_orders.php:170 +#: includes/common/payment-gateways/manual-payments.php:139 +msgid "Enter a public name for this payment method that is displayed to users - No HTML" +msgstr "Digite um nome de público para este método de pagamento que será exibida aos usuários - Não aceita HTML" + +#: includes/admin/class-mp-orders-admin.php:532 +#: includes/common/payment-gateways/_cubepoints.php:196 +#: includes/common/payment-gateways/free_orders.php:169 +#: includes/common/payment-gateways/manual-payments.php:138 +msgid "Method Name" +msgstr "Nome do método" + +#: includes/common/payment-gateways/_cubepoints.php:187 +msgid "Accept CubePoints as payment(requires the CubePoints plugin)." +msgstr "Aceite CubePoints como forma de pagamento (requer o plugin CubePoints)." + +#: includes/common/payment-gateways/_cubepoints.php:140 +msgid "Sorry, but you do not appear to have enough points to complete this purchase!" +msgstr "Desculpe, mas você não parece ter pontos suficientes para concluir esta compra!" + +#: includes/common/payment-gateways/_cubepoints.php:124 +msgid "%s Store Purchase" +msgstr "%s Loja de compras" + +#: includes/common/payment-gateways/_cubepoints.php:79 +#: includes/common/payment-gateways/_cubepoints.php:171 +msgid "Your current points: " +msgstr "Sua pontuação atual:" + +#: includes/common/payment-gateways/_cubepoints.php:133 +#: includes/common/payment-gateways/_cubepoints.php:197 +msgid "CubePoints" +msgstr "CubePoints" + +#: includes/common/payment-gateways/authorizenet-aim.php:344 +msgid "Authorize.net AIM Checkout" +msgstr "Authorize.net AIM Checkout" + +#: includes/common/payment-gateways/authorizenet-aim.php:331 +msgid "Custom API URL" +msgstr "URL API personalizada" + +#: includes/common/payment-gateways/authorizenet-aim.php:332 +msgid "Many other gateways have Authorize.net API emulators. To use one of these gateways input their API post url here." +msgstr "Muitos outros gateways têm Authorize.net API emuladores. Para usar um desses gateways de entrada coloque sua url API aqui." + +#: includes/common/payment-gateways/authorizenet-aim.php:322 +msgid "Request a delimited response from the payment gateway." +msgstr "Solicitar uma resposta delimitada a partir do gateway de pagamento." + +#: includes/common/payment-gateways/authorizenet-aim.php:316 +msgid "Security: MD5 Hash" +msgstr "Segurança: Hash MD5" + +#: includes/common/payment-gateways/authorizenet-aim.php:317 +msgid "The payment gateway generated MD5 hash value that can be used to authenticate the transaction response. Not needed because responses are returned using an SSL connection." +msgstr "O gateway de pagamento gerou um valor de hash MD5, que pode ser usado para autenticar a resposta da transação. Não é necessário porque as respostas são retornados usando uma conexão SSL" + +#: includes/common/payment-gateways/authorizenet-aim.php:306 +msgid "Customer Receipt Email Footer" +msgstr "Rodapé do email de recebimento do cliente" + +#: includes/common/payment-gateways/authorizenet-aim.php:296 +msgid "Customer Receipt Email Header" +msgstr "Cabeçalho do email de recebimento do cliente" + +#: includes/common/payment-gateways/authorizenet-aim.php:297 +#: includes/common/payment-gateways/paypal-payflow.php:446 +msgid "This text will appear as the header of the email receipt sent to the customer." +msgstr "Este texto aparecerá como o cabeçalho do recibo de e-mail enviado para o cliente." + +#: includes/common/payment-gateways/authorizenet-aim.php:282 +msgid "Encapsulation Character" +msgstr "Encapsulamento de caractere" + +#: includes/common/payment-gateways/authorizenet-aim.php:283 +msgid "Authorize.net default is blank. Otherwise, get this from your credit card processor. If the transactions are going through, but getting strange responses, this character is most likely wrong." +msgstr "Authorize.net padrão é em branco. Caso contrário, obter isso de seu processador de cartão de crédito. Se as transações estão passando, mas recebendo respostas estranhas, este caractere provavelmente está errado." + +#: includes/common/payment-gateways/authorizenet-aim.php:273 +msgid "Optional settings to control advanced options" +msgstr "Configurações opcionais para controle das opções avançadas" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:224 +#: includes/common/payment-gateways/authorizenet-aim.php:272 +msgid "Advanced Settings" +msgstr "Configurações avançadas" + +#: includes/common/payment-gateways/authorizenet-aim.php:253 +msgid "Transaction Key" +msgstr "Chave de transação" + +#: includes/common/payment-gateways/authorizenet-aim.php:246 +msgid "Login ID" +msgstr "Login ID" + +#: includes/common/payment-gateways/paypal-payflow.php:396 +msgid "Gateway Credentials" +msgstr "Credenciais de Gateway" + +#: includes/common/payment-gateways/authorizenet-aim.php:221 +msgid "Authorize.net AIM is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway. USD is the only currency supported by this gateway." +msgstr "Authorize.net AIM é uma solução de processamento de pagamentos personalizável que dá o controle comercial sobre todas as etapas do processamento de uma transação. Um certificado SSL é necessário para usar esse gateway. USD é a única moeda suportada por este gateway." + +#: includes/common/payment-gateways/authorizenet-aim.php:205 +msgid "There was a problem finalizing your purchase. %s Please go back and try again." +msgstr "Houve um problema ao finalizar sua compra. %s Por favor volte e tente novamente." + +#: includes/common/payment-gateways/payfast.php:519 +#: includes/common/payment-gateways/paypal-chained-payments.php:218 +#: includes/common/payment-gateways/paypal-chained-payments.php:498 +#: includes/common/payment-gateways/paypal-express.php:822 +#: includes/common/payment-gateways/paypal-express.php:1092 +msgid "The payment has been completed, and the funds have been added successfully to your account balance." +msgstr "O pagamento já foi concluído, e os recursos foram adicionados com êxito à sua conta." + +#: includes/common/payment-gateways/paypal-payflow.php:233 +msgid "Please enter a valid credit card security code" +msgstr "Por favor, insira o código de segurança do cartão de crédito válido" + +#: includes/common/payment-gateways/paypal-payflow.php:224 +#: includes/public/class-mp-checkout.php:867 +msgid "Please enter a valid credit card number" +msgstr "Por favor insira um número de cartão de crédito válido" + +#: includes/common/payment-gateways/paypal-payflow.php:221 +msgid "Please enter your credit card number" +msgstr "Por favor digite o número do seu cartão de crédito" + +#: includes/common/payment-gateways/paypal-payflow.php:217 +msgid "Please enter your credit card security code" +msgstr "Por favor digite o código de segurança do seu cartão de crédito" + +#: includes/common/payment-gateways/paypal-payflow.php:213 +msgid "Please select your credit card expiration date." +msgstr "Por favor selecione a data de expiração do seu cartão de crédito." + +#: includes/common/payment-gateways/2checkout.php:299 +#: includes/common/payment-gateways/authorizenet-aim.php:50 +#: includes/common/payment-gateways/eway.php:148 +#: includes/common/payment-gateways/eway.php:298 +#: includes/common/payment-gateways/eway31.php:267 +#: includes/common/payment-gateways/paymill.php:46 +#: includes/common/payment-gateways/paypal-express.php:972 +#: includes/common/payment-gateways/paypal-payflow.php:60 +#: includes/common/payment-gateways/pin.php:46 +#: includes/common/payment-gateways/simplify.php:19 +#: includes/common/payment-gateways/stripe.php:46 +#: includes/common/payment-gateways/wepay.php:37 +msgid "Credit Card" +msgstr "Cartão de crédito" + +#: includes/common/payment-gateways/authorizenet-aim.php:49 +msgid "Authorize.net Checkout" +msgstr "Authorize.net Checkout" + +#: includes/common/payment-gateways/skrill.php:156 +#: includes/common/payment-gateways/stripe.php:293 +msgid "Selecting a currency other than that used for your store may cause problems at checkout." +msgstr "Seleção de uma moeda que não seja o utilizado para a sua loja pode causar problemas no check-out." + +#: includes/common/payment-gateways/2checkout.php:352 +msgid "Seller ID" +msgstr "ID do vendedor" + +#: includes/common/payment-gateways/2checkout.php:340 +#: includes/common/payment-gateways/_ideal.php:311 +#: includes/common/payment-gateways/authorizenet-aim.php:234 +#: includes/common/payment-gateways/eway.php:376 +#: includes/common/payment-gateways/payfast.php:315 +#: includes/common/payment-gateways/paypal-chained-payments.php:368 +#: includes/common/payment-gateways/paypal-express.php:699 +#: includes/common/payment-gateways/paypal-payflow.php:391 +msgid "Live" +msgstr "Live" + +#: includes/common/payment-gateways/2checkout.php:339 +#: includes/common/payment-gateways/authorizenet-aim.php:233 +#: includes/common/payment-gateways/eway.php:375 +#: includes/common/payment-gateways/paypal-chained-payments.php:367 +#: includes/common/payment-gateways/paypal-express.php:698 +#: includes/common/payment-gateways/paypal-payflow.php:390 +#: includes/common/shipping-modules/mp-fedex.php:263 +msgid "Sandbox" +msgstr "Sandbox" + +#: includes/common/payment-gateways/2checkout.php:336 +#: includes/common/payment-gateways/_ideal.php:307 +#: includes/common/payment-gateways/authorizenet-aim.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:365 +#: includes/common/payment-gateways/paypal-express.php:695 +#: includes/common/payment-gateways/paypal-payflow.php:387 +#: includes/common/payment-gateways/wepay.php:130 +#: includes/common/shipping-modules/mp-fedex.php:260 +msgid "Mode" +msgstr "Modo" + +#: includes/common/payment-gateways/2checkout.php:288 +#: includes/common/payment-gateways/mijireh.php:242 +#: includes/common/payment-gateways/mollie.php:212 +msgid "The order has been received" +msgstr "O encomenda foi recebido" + +#: includes/common/payment-gateways/2checkout.php:74 +#: includes/common/payment-gateways/2checkout.php:75 +#: includes/common/payment-gateways/2checkout.php:435 +msgid "2Checkout" +msgstr "2Checkout" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:306 +msgid "Confirm" +msgstr "Corfirmar" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:218 +#: includes/common/class-mp-cart.php:974 includes/common/class-mp-cart.php:1354 +#: includes/common/template-functions.php:918 +msgid "Checkout" +msgstr "Checkout" + +#: includes/common/template-functions.php:207 +msgid "Check Order Status" +msgstr "Verificar o estado do encomenda" + +#: includes/common/template-functions.php:235 +msgid "View Products" +msgstr "Ver Produtos" + +#: includes/common/template-functions.php:263 +msgid "Visit Store" +msgstr "Visitar a loja" + +#: includes/common/template-functions.php:2912 +#: includes/multisite/template-functions.php:448 +msgid "Order By" +msgstr "Ordenar por" + +#: includes/common/template-functions.php:2887 +#: includes/multisite/template-functions.php:405 +msgid "Price (High to Low)" +msgstr "Preço (Maior para Menor)" + +#: includes/common/template-functions.php:2886 +#: includes/multisite/template-functions.php:404 +msgid "Price (Low to High)" +msgstr "Preço (Menor para Maior)" + +#: includes/common/template-functions.php:2881 +#: includes/multisite/template-functions.php:399 +msgid "Default" +msgstr "Padrão" + +#: includes/common/template-functions.php:2858 +msgid "Show All" +msgstr "Mostrar tudo" + +#: includes/common/class-mp-product.php:2048 +msgid "View Larger Image »" +msgstr "Ver imagem grande »" + +#: includes/common/class-mp-product.php:979 +msgid "Out of Stock" +msgstr "Fora de estoque" + +#: includes/common/template-functions.php:148 +msgid "Price: " +msgstr "Preço:" + +#: includes/multisite/template-functions.php:833 +msgid "No Tags" +msgstr "Sem etiquetas" + +#: includes/common/template-functions.php:3162 +msgid "Uncategorized" +msgstr "Sem categoria" + +#: includes/common/class-mp-cart.php:569 includes/common/class-mp-order.php:604 +#: includes/common/helpers.php:115 +msgid "Download" +msgstr "Download" + +#: includes/common/class-mp-cart.php:1353 +msgid "Empty Cart" +msgstr "Carrinho vazio" + +#: includes/common/payment-gateways/_payway.php:291 +#: includes/common/payment-gateways/paypal-express.php:718 +#: includes/common/payment-gateways/paypal-payflow.php:423 +#: includes/common/shipping-modules/mp-ups.php:158 +#: includes/public/class-mp-checkout.php:1254 +#: includes/public/class-mp-checkout.php:1383 +msgid "Password" +msgstr "Senha" + +#: includes/common/payment-gateways/eway.php:387 +#: includes/common/payment-gateways/paypal-express.php:711 +#: includes/common/shipping-modules/mp-usps.php:185 +#: includes/public/class-mp-checkout.php:1249 +msgid "Username" +msgstr "Nome de Usuário" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:437 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:790 +msgid "Have a coupon code?" +msgstr "Tem um código de cupom?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:321 +#: includes/admin/class-mp-orders-admin.php:526 +#: includes/common/class-mp-cart.php:592 +msgid "Remove" +msgstr "Remover" + +#: includes/admin/class-mp-ajax.php:316 +msgid "Quantity:" +msgstr "Quantidade:" + +#: includes/admin/class-mp-products-admin.php:2140 +#: includes/admin/class-mp-products-admin.php:2387 +#: includes/common/shipping-modules/class-mp-shipping-api.php:507 +msgid "Extra Shipping Cost" +msgstr "Custos extras de envio" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:403 +msgid "Choose a Shipping Method:" +msgstr "Escolha um método de envio:" + +#: includes/admin/class-mp-products-admin.php:1691 +#: includes/admin/class-mp-products-admin.php:2131 +#: includes/admin/class-mp-products-admin.php:2378 +#: includes/common/shipping-modules/class-mp-shipping-api.php:228 +msgid "Ounces" +msgstr "Onças" + +#: includes/admin/class-mp-products-admin.php:1684 +#: includes/admin/class-mp-products-admin.php:2123 +#: includes/admin/class-mp-products-admin.php:2369 +#: includes/admin/class-mp-setup-wizard.php:546 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:165 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +#: includes/common/shipping-modules/class-mp-shipping-api.php:227 +msgid "Pounds" +msgstr "Libras" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:226 +msgid "Product Weight:" +msgstr "Peso do Produto:" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:214 +msgid "Weight (Kilograms)" +msgstr "Peso(Kg)" + +#: includes/admin/widgets/ms-global-categories.php:82 +msgid "Number of Categories:" +msgstr "Número de catergorias:" + +#: includes/admin/widgets/ms-global-categories.php:72 +msgid "Product Count" +msgstr "Contagem de produto" + +#: includes/addons/class-mp-addons-list-table.php:20 +#: includes/admin/class-mp-product-attributes-admin.php:129 +#: includes/admin/class-mp-product-attributes-list-table.php:22 +#: includes/admin/class-mp-products-admin.php:2216 +#: includes/admin/class-mp-shortcode-builder.php:628 +#: includes/admin/class-mp-shortcode-builder.php:1415 +#: includes/admin/widgets/ms-global-categories.php:70 +#: includes/common/shipping-modules/mp-fedex.php:395 +#: includes/common/shipping-modules/mp-ups.php:202 +#: includes/common/shipping-modules/mp-usps.php:243 +#: includes/public/class-mp-checkout.php:314 +msgid "Name" +msgstr "Nome" + +#: includes/admin/widgets/ms-global-categories.php:67 +msgid "Order Categories By:" +msgstr "Ordenar categorias por:" + +#: includes/admin/widgets/ms-global-categories.php:24 +#: includes/admin/widgets/ms-global-categories.php:50 +msgid "Global Product Categories" +msgstr "Categorias de Produto Global" + +#: includes/admin/widgets/ms-global-categories.php:15 +msgid "Global Product Category List" +msgstr "Lista de Categoria de Produto Global" + +#: includes/admin/widgets/ms-global-categories.php:13 +msgid "Displays a network-wide HTML list of product categories from network MarketPress stores." +msgstr "Exibe uma lista HTML da rede MarketPress de categorias de produtos das lojas." + +#: includes/admin/widgets/ms-global-tag-cloud.php:24 +#: includes/admin/widgets/ms-global-tag-cloud.php:45 +msgid "Global Product Tags" +msgstr "Etiquetas de Produto Global" + +#: includes/admin/widgets/ms-global-tag-cloud.php:15 +msgid "Global Product Tag Cloud" +msgstr "Nuvem Global de Etiqueta de Protudo" + +#: includes/admin/class-mp-shortcode-builder.php:947 +#: includes/admin/widgets/ms-global-product-list.php:173 +msgid "Excerpt" +msgstr "Resumo" + +#: includes/admin/widgets/ms-global-product-list.php:169 +msgid "Content To Show:" +msgstr "Conteúdo para mostrar:" + +#: includes/admin/widgets/ms-global-product-list.php:140 +msgid "Limit To Product Tag:" +msgstr "Limite de Etiqueta de Protudo:" + +#: includes/admin/widgets/ms-global-product-list.php:132 +msgid "Limit To Product Category:" +msgstr "Limite de Categoria de Produto:" + +#: includes/admin/widgets/ms-global-product-list.php:72 +msgid "Global Products" +msgstr "Produtos Globais" + +#: includes/admin/widgets/ms-global-product-list.php:16 +msgid "Global Product List" +msgstr "Lista Global de Produtos" + +#: includes/admin/widgets/ms-global-product-list.php:14 +msgid "Shows a customizable global list of products from network MarketPress stores." +msgstr "Mostra uma lista global personalizada de produtos das lojas da rede Marketpress" + +#: includes/common/class-mp-product.php:974 +#: includes/multisite/template-functions.php:731 +msgid "Buy Now »" +msgstr "Comprar »" + +#: includes/admin/widgets/ms-global-tag-cloud.php:13 +msgid "Displays global most used product tags in cloud format from network MarketPress stores." +msgstr "Exibe etiquetas globais de produtos mais utilizados em formato de nuvem de lojas da rede MarketPress." + +#: includes/multisite/class-mp-admin-multisite.php:438 +msgid "Theme Permissions" +msgstr "Permissões de Tema" + +#: includes/multisite/class-mp-admin-multisite.php:402 +#: includes/multisite/class-mp-admin-multisite.php:448 +msgid "No Access" +msgstr "Sem acesso" + +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:120 +msgid "Pro Site Level" +msgstr "Pro Site Level" + +#: includes/multisite/class-mp-admin-multisite.php:401 +#: includes/multisite/class-mp-admin-multisite.php:447 +msgid "All Can Use" +msgstr "Todos podem usar" + +#: includes/multisite/class-mp-admin-multisite.php:390 +msgid "Gateway Permissions" +msgstr "Permissões de Gateway" + +#: includes/multisite/class-mp-admin-multisite.php:375 +msgid "Select a Gateway" +msgstr "Selecione um Gateway" + +#: includes/multisite/class-mp-admin-multisite.php:350 +msgid "Global Gateway" +msgstr "Gateway global" + +#. Plugin Name of the plugin/theme +msgid "MarketPress" +msgstr "MarketPress" + +#: includes/admin/widgets/product-tag-cloud.php:7 +msgid "Your most used product tags in cloud format from your MarketPress store." +msgstr "Suas etiquetas de produtos mais utilizadas em formato de nuvem em sua loja MarketPress." + +#: includes/admin/widgets/categories.php:79 +msgid "Show hierarchy" +msgstr "Mostrar hierarquia" + +#: includes/admin/widgets/categories.php:76 +#: includes/admin/widgets/ms-global-categories.php:92 +msgid "Show product counts" +msgstr "Mostrar contador de produtos" + +#: includes/admin/widgets/categories.php:73 +msgid "Show as dropdown" +msgstr "Mostrar como dropdown" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:710 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:736 +#: includes/admin/widgets/categories.php:30 +msgid "Select Category" +msgstr "Selecione a categoria" + +#: includes/admin/widgets/categories.php:7 +msgid "A list or dropdown of product categories from your MarketPress store." +msgstr "A lista ou dropdown de categorias de produtos de sua loja MarketPress." + +#: includes/admin/widgets/product-list.php:250 +msgid "Show Buy Button" +msgstr "Mostrar botão comprar" + +#: includes/admin/widgets/ms-global-product-list.php:183 +#: includes/admin/widgets/product-list.php:244 +msgid "Show Price" +msgstr "Mostrar preço" + +#: includes/admin/widgets/product-list.php:241 +msgid "Show Excerpt" +msgstr "Mostrar resumo" + +#: includes/admin/widgets/ms-global-product-list.php:155 +#: includes/admin/widgets/product-list.php:238 +msgid "Thumbnail Size:" +msgstr "Tamanho da miniatura:" + +#: includes/admin/widgets/ms-global-product-list.php:153 +#: includes/admin/widgets/product-list.php:237 +msgid "Show Thumbnail" +msgstr "Mostrar miniatura" + +#: includes/admin/widgets/ms-global-product-list.php:147 +#: includes/admin/widgets/product-list.php:233 +msgid "Display Settings" +msgstr "Exibir as configurações" + +#: includes/admin/widgets/ms-global-product-list.php:136 +#: includes/admin/widgets/ms-global-product-list.php:144 +#: includes/admin/widgets/product-list.php:230 +msgid "Enter the Slug" +msgstr "Digite o slug" + +#: includes/admin/widgets/product-list.php:228 +#: includes/common/template-functions.php:894 +msgid "Tag" +msgstr "Etiqueta" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:686 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:712 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:739 +#: includes/admin/class-mp-shortcode-builder.php:796 +#: includes/admin/widgets/product-list.php:227 +#: includes/common/template-functions.php:886 +#: includes/common/template-functions.php:2907 +msgid "Category" +msgstr "Categoria" + +#: includes/admin/widgets/product-list.php:226 +msgid "No Filter" +msgstr "Sem filtro" + +#: includes/admin/widgets/product-list.php:224 +msgid "Taxonomy Filter:" +msgstr "Filtro de taxonomia:" + +#: includes/admin/widgets/ms-global-product-list.php:108 +#: includes/admin/widgets/product-list.php:209 +msgid "Order Products By:" +msgstr "Ordenar produtos por:" + +#: includes/admin/widgets/ms-global-product-list.php:101 +#: includes/admin/widgets/product-list.php:206 +msgid "Number of Products:" +msgstr "Número de produtos:" + +#: includes/admin/widgets/ms-global-product-list.php:98 +#: includes/admin/widgets/product-list.php:204 +msgid "List Settings" +msgstr "Configurações de Lista" + +#: includes/admin/widgets/product-list.php:177 +msgid "Our Products" +msgstr "Nossos produtos" + +#: includes/admin/widgets/product-list.php:144 +#: includes/common/template-functions.php:2070 +#: includes/common/template-functions.php:2347 +#: includes/multisite/template-functions.php:303 +#: includes/multisite/template-functions.php:623 +msgid "No Products" +msgstr "Nenhum produto" + +#: includes/admin/widgets/product-list.php:8 +msgid "Product List" +msgstr "Lista de produtos" + +#: includes/admin/widgets/product-list.php:7 +msgid "Shows a customizable list of products from your MarketPress store." +msgstr "Mostra uma lista personalizada de produtos de sua loja MarketPress." + +#: includes/admin/widgets/cart.php:75 includes/admin/widgets/categories.php:82 +#: includes/admin/widgets/product-list.php:253 +#: includes/admin/widgets/product-tag-cloud.php:57 +msgid "Only show on store pages" +msgstr "Mostrar apenas em páginas da loja" + +#: includes/admin/widgets/cart.php:65 +#: includes/admin/widgets/ms-global-product-list.php:92 +#: includes/admin/widgets/product-list.php:200 +msgid "Custom Text:" +msgstr "Texto personalizado:" + +#: includes/admin/widgets/cart.php:64 includes/admin/widgets/categories.php:69 +#: includes/admin/widgets/ms-global-categories.php:59 +#: includes/admin/widgets/ms-global-product-list.php:87 +#: includes/admin/widgets/ms-global-tag-cloud.php:49 +#: includes/admin/widgets/product-list.php:199 +#: includes/admin/widgets/product-tag-cloud.php:49 +msgid "Title:" +msgstr "Título:" + +#: includes/admin/widgets/cart.php:7 +msgid "Shows dynamic shopping cart contents along with a checkout button for your MarketPress store." +msgstr "Mostra conteúdos dinâmicos do carrinho de compras , juntamente com um botão de pagamento para sua loja MarketPress." + +#: includes/admin/widgets/product-tag-cloud.php:8 +msgid "Product Tag Cloud" +msgstr "Nuvem de Etiqueta de Produto" + +#: includes/admin/class-mp-setup-wizard.php:539 +#: includes/admin/class-mp-setup-wizard.php:575 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:163 +msgid "Measurement System" +msgstr "Sistem ade medição" + +#: includes/admin/class-mp-setup-wizard.php:616 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:149 +msgid "Select Shipping Options" +msgstr "Selecionar opções de envio" + +#: includes/admin/class-mp-setup-wizard.php:596 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:129 +msgid "Calculated Options" +msgstr "Opções de cálculo" + +#: includes/admin/class-mp-setup-wizard.php:582 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:115 +msgid "No Shipping" +msgstr "Sem transporte" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:110 +msgid "EU" +msgstr "EU" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:109 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:93 +msgid "All" +msgstr "Tudo" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:92 +msgid "Select:" +msgstr "Selecionar:" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:185 +msgid "Store Pages" +msgstr "Páginas da Loja" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:223 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:256 +msgid "Order Shipped" +msgstr "Encomenda Enviado" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:60 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:95 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:128 +#: marketpress.php:266 +msgid "New Order" +msgstr "Novo Encomenda" + +#: includes/admin/class-mp-dashboard-widgets.php:314 +msgid "Email Notifications" +msgstr "Notificações de Email" + +#: includes/admin/class-mp-pages-admin.php:59 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:200 +msgid "Products List" +msgstr "Lista Produtos" + +#: includes/admin/class-mp-pages-admin.php:58 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:190 +msgid "Store Base" +msgstr "Base da Loja" + +#: includes/admin/class-mp-product-attributes-admin.php:108 +#: includes/admin/class-mp-shortcode-builder.php:635 +#: includes/admin/class-mp-shortcode-builder.php:708 +#: includes/admin/class-mp-shortcode-builder.php:875 +#: includes/admin/class-mp-shortcode-builder.php:1319 +#: includes/admin/class-mp-shortcode-builder.php:1422 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:526 +#: includes/admin/widgets/ms-global-categories.php:78 +#: includes/admin/widgets/ms-global-product-list.php:127 +#: includes/admin/widgets/product-list.php:221 +msgid "Ascending" +msgstr "Ascendente" + +#: includes/admin/class-mp-product-attributes-admin.php:109 +#: includes/admin/class-mp-shortcode-builder.php:636 +#: includes/admin/class-mp-shortcode-builder.php:709 +#: includes/admin/class-mp-shortcode-builder.php:876 +#: includes/admin/class-mp-shortcode-builder.php:1320 +#: includes/admin/class-mp-shortcode-builder.php:1423 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:525 +#: includes/admin/widgets/ms-global-categories.php:75 +#: includes/admin/widgets/ms-global-product-list.php:124 +#: includes/admin/widgets/product-list.php:220 +msgid "Descending" +msgstr "Descendente" + +#: includes/admin/class-mp-shortcode-builder.php:637 +#: includes/admin/class-mp-shortcode-builder.php:695 +#: includes/admin/class-mp-shortcode-builder.php:862 +#: includes/admin/class-mp-shortcode-builder.php:1306 +#: includes/admin/class-mp-shortcode-builder.php:1424 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:518 +#: includes/admin/widgets/ms-global-product-list.php:121 +#: includes/admin/widgets/product-list.php:218 +msgid "Random" +msgstr "Aleatório" + +#: includes/admin/class-mp-shortcode-builder.php:694 +#: includes/admin/class-mp-shortcode-builder.php:861 +#: includes/admin/class-mp-shortcode-builder.php:1305 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:517 +#: includes/admin/widgets/ms-global-product-list.php:119 +#: includes/admin/widgets/product-list.php:216 +msgid "Product Price" +msgstr "Preço do Produto" + +#: includes/admin/class-mp-shortcode-builder.php:693 +#: includes/admin/class-mp-shortcode-builder.php:860 +#: includes/admin/class-mp-shortcode-builder.php:1304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:516 +#: includes/admin/widgets/ms-global-product-list.php:117 +#: includes/admin/widgets/product-list.php:215 +msgid "Number of Sales" +msgstr "Número de Vendas" + +#: includes/admin/class-mp-shortcode-builder.php:692 +#: includes/admin/class-mp-shortcode-builder.php:859 +#: includes/admin/class-mp-shortcode-builder.php:1303 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:515 +#: includes/admin/widgets/product-list.php:214 +msgid "Product Author" +msgstr "Autor do Produto" + +#: includes/admin/class-mp-shortcode-builder.php:691 +#: includes/admin/class-mp-shortcode-builder.php:858 +#: includes/admin/class-mp-shortcode-builder.php:1302 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:514 +#: includes/admin/widgets/product-list.php:213 +msgid "Product ID" +msgstr "ID do Produto" + +#: includes/admin/class-mp-shortcode-builder.php:690 +#: includes/admin/class-mp-shortcode-builder.php:857 +#: includes/admin/class-mp-shortcode-builder.php:1301 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:513 +#: includes/admin/widgets/ms-global-product-list.php:113 +#: includes/admin/widgets/product-list.php:212 +msgid "Publish Date" +msgstr "Data de Publicação" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:430 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:726 +msgid "Width" +msgstr "Largura" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:439 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:735 +msgid "Height" +msgstr "Altura" + +#: includes/admin/class-mp-product-attributes-admin.php:88 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:402 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:698 +msgid "Custom" +msgstr "Personalizado" + +#: includes/common/class-mp-product.php:179 +#: includes/common/class-mp-product.php:992 +#: includes/common/class-mp-product.php:1000 +#: includes/multisite/template-functions.php:579 +msgid "Buy Now" +msgstr "Comprar" + +#: includes/common/class-mp-product.php:175 +#: includes/common/class-mp-product.php:990 +#: includes/common/class-mp-product.php:998 +msgid "Add To Cart" +msgstr "Adicionar ao carrinho" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:807 +msgid "Store Style" +msgstr "Estilo Loja" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1021 +msgid "Edit Coupon" +msgstr "Editar cupom" + +#: includes/addons/mp-coupons/class-mp-coupon.php:580 +#: includes/admin/class-mp-ajax.php:238 +#: includes/admin/class-mp-products-admin.php:1532 +msgid "Unlimited" +msgstr "Ilimitado" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1198 +msgid "Remaining Uses" +msgstr "Demais usos" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1197 +msgid "Used" +msgstr "Usado" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:752 +#: includes/admin/class-mp-products-admin.php:2343 +msgid "Start Date" +msgstr "Data de início" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:598 +msgid "Coupon Code" +msgstr "Código do Cupom" + +#: includes/admin/class-mp-orders-admin.php:444 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:284 +msgid "Save Changes" +msgstr "Salvar alterações" + +#: includes/admin/class-mp-pages-admin.php:57 +#: includes/admin/class-mp-shortcode-builder.php:716 +#: includes/admin/class-mp-shortcode-builder.php:727 +#: includes/admin/class-mp-shortcode-builder.php:883 +#: includes/admin/class-mp-shortcode-builder.php:894 +#: includes/admin/class-mp-shortcode-builder.php:946 +#: includes/admin/class-mp-shortcode-builder.php:956 +#: includes/admin/class-mp-shortcode-builder.php:1006 +#: includes/admin/class-mp-shortcode-builder.php:1327 +#: includes/admin/class-mp-shortcode-builder.php:1338 +#: includes/admin/store-settings/class-mp-store-settings-general.php:357 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:270 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:108 +#: includes/admin/widgets/ms-global-product-list.php:172 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:94 +msgid "None" +msgstr "Nenhum" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:352 +msgid "Google Analytics Ecommerce Tracking" +msgstr "Google Analytics Ecommerce Tráfego" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:310 +msgid "This option turns MarketPress into more of a product listing plugin, disabling shopping carts, checkout, and order management. This is useful if you simply want to list items you can buy in a store somewhere else, optionally linking the \"Buy Now\" buttons to an external site. Some examples are a car dealership, or linking to songs/albums in itunes, or linking to products on another site with your own affiliate links." +msgstr "Esta opção torna o MarketPress mais como um plugin de listagem de produto, impossibilitando carrinhos de compras, check-out, e gerenciamento de encomendas. Isto é útil se você quiser simplesmente a lista de itens que você pode comprar em uma loja ou em outro lugar, opcionalmente, ligando as \"Buy Now\" botões para um site externo. Alguns exemplos são uma concessionária de carros, ou ligando para músicas / álbuns no iTunes, ou ligando para produtos em outro site com seus próprios links afiliados." + +#: includes/admin/store-settings/class-mp-store-settings-general.php:304 +msgid "Whether or not customers must be registered and logged in to checkout. (Not recommended: Enabling this can lower conversions)" +msgstr "Seja um cliente ou não deve ser registrado e logado para checkout. (Não recomendado: Habilitando isso pode diminuir as conversões)" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:258 +msgid "How many times may a customer download a file they have purchased? (It's best to set this higher than one in case they have any problems downloading)" +msgstr "Quantas vezes um cliente pode baixar um arquivo que tenha comprado? (É melhor definir esta opção maior do que um, caso tenham qualquer problemas com downloads)" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:257 +msgid "Maximum Downloads" +msgstr "Máximo de downloads" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:298 +msgid "This will set the product to draft if inventory of all variations is gone." +msgstr "Isto irá definir o produto como rascunho se o inventário de todas as variações se foram." + +#: includes/admin/store-settings/class-mp-store-settings-general.php:288 +msgid "At what low stock count do you want to be warned for products you have enabled inventory tracking for?" +msgstr "Em que baixa contagem de estoque que você quer ser avisado por produtos que você tiver ativado no controle de estoque?" + +#: includes/admin/class-mp-dashboard-widgets.php:208 +#: includes/admin/store-settings/class-mp-store-settings-general.php:287 +msgid "Inventory Warning Threshold" +msgstr "Aviso do limite do inventário" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:282 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:542 +msgid "Miscellaneous Settings" +msgstr "Demais configurações" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:429 +#: includes/multisite/class-mp-admin-multisite.php:247 +msgid "Show Decimal in Prices" +msgstr "Mostrar decimal dos preços" + +#: includes/admin/class-mp-setup-wizard.php:451 +#: includes/admin/store-settings/class-mp-store-settings-general.php:403 +#: includes/multisite/class-mp-admin-multisite.php:221 +msgid "Currency Symbol Position" +msgstr "Posição do Simbolo da Moeda" + +#: includes/admin/class-mp-setup-wizard.php:444 +#: includes/admin/store-settings/class-mp-store-settings-general.php:396 +msgid "Store Currency" +msgstr "Moeda da Loja" + +#: includes/admin/class-mp-setup-wizard.php:429 +#: includes/admin/store-settings/class-mp-store-settings-general.php:381 +msgid "Currency Settings" +msgstr "Configurações Moeda" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:516 +msgid "Please see your local tax laws. Note if this is enabled and a downloadable only cart, rates will be the default for your base location." +msgstr "Por favor, veja as leis fiscais locais. Observe se este estiver habilitado e puder fazer o download apenas pelo carrinho, as taxas serão o padrão para a sua localização base." + +#: includes/admin/class-mp-setup-wizard.php:529 +msgid "Apply Tax to Downloadable Products?" +msgstr "Aplicar Imposto para produtos de download?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:498 +msgid "Enabling this option allows you to enter and show all prices inclusive of tax, while still listing the tax total as a line item in shopping carts. Please see your local tax laws." +msgstr "Habilitar esta opção permite a você entrar e mostrar todos os preços incluindo impostos, enquanto ainda lista o total de imposto como um item de linha em carrinhos de compras. Por favor, veja as leis fiscais locais." + +#: includes/admin/class-mp-setup-wizard.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:497 +msgid "Enter Prices Inclusive of Tax?" +msgstr "Digite preços incluindo impostos?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:492 +msgid "Please see your local tax laws. Most areas charge tax on shipping fees." +msgstr "Por favor, veja as leis fiscais locais. A maioria das áreas cobram imposto sobre as despesas de envio." + +#: includes/admin/class-mp-setup-wizard.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:491 +msgid "Apply Tax To Shipping Fees?" +msgstr "Aplicar impostos para Despesas de envio?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:674 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:565 +#: includes/common/payment-gateways/authorizenet-aim.php:291 +#: includes/common/payment-gateways/authorizenet-aim.php:326 +#: includes/common/payment-gateways/payfast.php:347 +msgid "No" +msgstr "Não" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:675 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:759 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:512 +#: includes/admin/class-mp-setup-wizard.php:518 +#: includes/admin/class-mp-setup-wizard.php:524 +#: includes/admin/class-mp-setup-wizard.php:530 +#: includes/admin/class-mp-setup-wizard.php:564 +#: includes/admin/store-settings/class-mp-store-settings-general.php:232 +#: includes/admin/store-settings/class-mp-store-settings-general.php:299 +#: includes/admin/store-settings/class-mp-store-settings-general.php:305 +#: includes/admin/store-settings/class-mp-store-settings-general.php:311 +#: includes/admin/store-settings/class-mp-store-settings-general.php:317 +#: includes/admin/store-settings/class-mp-store-settings-general.php:328 +#: includes/admin/store-settings/class-mp-store-settings-general.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:341 +#: includes/admin/store-settings/class-mp-store-settings-general.php:348 +#: includes/admin/store-settings/class-mp-store-settings-general.php:367 +#: includes/admin/store-settings/class-mp-store-settings-general.php:493 +#: includes/admin/store-settings/class-mp-store-settings-general.php:499 +#: includes/admin/store-settings/class-mp-store-settings-general.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:556 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:375 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:381 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:387 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:474 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:493 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:532 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:574 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:606 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:664 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:670 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:677 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:683 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:689 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:763 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:774 +#: includes/common/payment-gateways/_bitpay.php:250 +#: includes/common/payment-gateways/_bitpay.php:257 +#: includes/common/payment-gateways/_bitpay.php:264 +#: includes/common/payment-gateways/authorizenet-aim.php:290 +#: includes/common/payment-gateways/authorizenet-aim.php:325 +#: includes/common/payment-gateways/free_orders.php:160 +#: includes/common/payment-gateways/payfast.php:346 +#: includes/common/payment-gateways/paymill.php:162 +#: includes/common/payment-gateways/paypal-payflow.php:441 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-checkbox.php:22 +msgid "Yes" +msgstr "Sim" + +#: includes/admin/class-mp-setup-wizard.php:492 +#: includes/admin/store-settings/class-mp-store-settings-general.php:472 +msgid "%s Tax Rate" +msgstr "%s Taxa de Imposto" + +#: includes/admin/class-mp-setup-wizard.php:467 +#: includes/admin/store-settings/class-mp-store-settings-general.php:449 +msgid "Tax Settings" +msgstr "Ajustes Fiscais" + +#: includes/admin/class-mp-setup-wizard.php:370 +#: includes/admin/store-settings/class-mp-store-settings-general.php:624 +msgid "Base Zip/Postal Code" +msgstr "CEP/Código Postal Base" + +#: includes/admin/class-mp-setup-wizard.php:354 +#: includes/admin/store-settings/class-mp-store-settings-general.php:608 +msgid "Base State/Province/Region" +msgstr "Estado/Província /Região Base" + +#: includes/admin/class-mp-setup-wizard.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:589 +msgid "Base Country" +msgstr "País Base" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:582 +msgid "Location Settings" +msgstr "Definições de Localização" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:195 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:800 +#: includes/multisite/class-mp-admin-multisite.php:172 +msgid "General Settings" +msgstr "Configurações Gerais" + +#: includes/admin/class-mp-products-admin.php:1945 +#: includes/admin/class-mp-products-admin.php:2185 +#: includes/admin/class-mp-store-settings-admin.php:111 +#: includes/admin/class-mp-store-settings-admin.php:266 +msgid "General" +msgstr "Geral" + +#: includes/admin/class-mp-store-settings-admin.php:242 +msgid "Importers" +msgstr "Importadores" + +#: includes/admin/class-mp-store-settings-admin.php:115 +#: includes/admin/class-mp-store-settings-admin.php:234 +msgid "Payments" +msgstr "Pagamentos" + +#: includes/admin/class-mp-dashboard-widgets.php:313 +#: includes/admin/class-mp-store-settings-admin.php:112 +#: includes/admin/class-mp-store-settings-admin.php:222 +msgid "Presentation" +msgstr "Apresentação" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:916 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1015 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1018 +#: includes/admin/class-mp-dashboard-widgets.php:305 marketpress.php:702 +msgid "Coupons" +msgstr "Cupons" + +#: includes/admin/class-mp-admin.php:251 +msgid "Download »" +msgstr "Download »" + +#: includes/admin/class-mp-admin.php:245 +#: includes/admin/class-mp-exporter-orders.php:170 +msgid "All Statuses" +msgstr "Todos os estados" + +#: includes/admin/class-mp-admin.php:209 +#: includes/admin/class-mp-exporter-orders.php:150 +#: includes/admin/class-mp-exporter-orders.php:178 +msgid "Export Orders" +msgstr "Encomendas de exportação" + +#: includes/admin/class-mp-admin.php:228 +msgid "Show all dates" +msgstr "Mostrar todas as datas" + +#: includes/admin/class-mp-orders-admin.php:947 +msgid "Change Status" +msgstr "Alterar estado" + +#: includes/admin/class-mp-orders-admin.php:287 +msgid "Order Notes" +msgstr "Notas do encomenda" + +#: includes/admin/class-mp-orders-admin.php:478 +msgid "Other" +msgstr "Outro" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:205 +msgid "Subtotal" +msgstr "Subtotal" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:84 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:87 +#: includes/admin/class-mp-products-admin.php:1737 +#: includes/common/class-mp-cart.php:1409 +#: includes/common/class-mp-product.php:559 +msgid "Quantity" +msgstr "Quantidade" + +#: includes/common/helpers.php:93 +msgid "Item" +msgstr "Item" + +#: includes/common/class-mp-order.php:1050 +msgid "Current Status" +msgstr "Estado Atual" + +#: includes/admin/class-mp-orders-admin.php:297 +msgid "Order Actions" +msgstr "Ações de Encomenda" + +#: includes/common/class-mp-product.php:1084 +msgid "More Info »" +msgstr "Mais informações »" + +#: includes/common/class-mp-product.php:2313 +msgid "Low Product Inventory Notification" +msgstr "Notificação de Baixo Inventário de Produtos " + +#: includes/common/class-mp-order.php:338 includes/common/data.php:154 +msgid "New Order Notification: ORDERID" +msgstr "Nova Notificação de Encomenda: ORDERID" + +#: includes/common/helpers.php:259 +msgid "Your payment for this order is complete." +msgstr "O pagamento para este encomenda está completo." + +#: includes/common/helpers.php:261 +msgid "Your payment for this order is not yet complete. Here is the latest status:" +msgstr "O pagamento para este encomenda ainda não está completo. Este é o estado mais recente:" + +#: includes/common/helpers.php:256 +msgid "Payment Total:" +msgstr "Pagamento Total:" + +#: includes/common/helpers.php:253 +msgid "Transaction ID:" +msgstr "ID Transação:" + +#: includes/common/helpers.php:249 +msgid "Payment Type:" +msgstr "Tipo de Pagamento:" + +#: includes/common/helpers.php:246 +msgid "Payment Method:" +msgstr "Método de Pagamento" + +#: includes/common/helpers.php:242 +msgid "Order Notes:" +msgstr "Notas do encomenda:" + +#: includes/common/helpers.php:237 +msgid "Special Instructions:" +msgstr "Instruções especiais:" + +#: includes/common/helpers.php:232 +msgid "Tracking Number:" +msgstr "Número de Rastreamento:" + +#: includes/common/helpers.php:223 includes/common/helpers.php:226 +#: includes/common/helpers.php:228 +#: includes/common/shipping-modules/class-mp-shipping-api.php:406 +#: includes/common/shipping-modules/class-mp-shipping-api.php:428 +msgid "Shipping Method:" +msgstr "Método de envio:" + +#: includes/common/helpers.php:168 +msgid "No shipping required for this order." +msgstr "Nenhum transporte necessário para este encomenda." + +#: includes/common/helpers.php:155 +msgid "Order Total:" +msgstr "Total do Encomenda:" + +#: includes/common/class-mp-order.php:1025 +msgid "Taxes:" +msgstr "Impostos:" + +#: includes/common/class-mp-order.php:1032 includes/common/helpers.php:144 +msgid "Shipping:" +msgstr "Envio:" + +#: includes/public/class-mp-checkout.php:367 +msgid "Street address, P.O. box, company name, c/o" +msgstr "Endereço da Rua, caixa do Edifício dos correios, o nome da empresa, c / o" + +#: includes/admin/class-mp-orders-admin.php:314 +msgid "Shipping Info" +msgstr "Informações de envio" + +#: includes/public/class-mp-public.php:740 +msgid "Whoops, there was a problem loading up this file for your download. Please contact us for help." +msgstr "Opa, houve um problema ao carregar-se este arquivo para o seu download. Entre em contato conosco para obter ajuda." + +#: includes/public/class-mp-public.php:683 +msgid "Sorry, our records show you've downloaded this file %d out of %d times allowed. Please contact us if you still need help." +msgstr "Desculpe, nossos registros mostram que você baixou este arquivo %d de %d vezes permitidos. Entre em contato conosco se você ainda precisar de ajuda." + +#: includes/public/class-mp-public.php:634 +msgid "Sorry, your order has been marked as unpaid." +msgstr "Desculpe, seu encomenda foi marcado como não pago." + +#: includes/public/class-mp-public.php:629 +msgid "Sorry, the link is invalid for this download." +msgstr "Desculpe, esse link para download é invalido." + +#: includes/admin/class-mp-exporter-orders.php:15 +#: includes/admin/class-mp-products-admin.php:1172 +msgid "Cheatin’ uh?" +msgstr "Cheatin’ uh?" + +#: includes/public/class-mp-public.php:407 +#: includes/public/class-mp-short-codes.php:128 +msgid "Please enter a valid email address." +msgstr "" + +#: includes/admin/class-mp-ajax.php:191 +#: includes/admin/class-mp-products-admin.php:1821 +#: includes/admin/class-mp-products-admin.php:2010 +#: includes/admin/class-mp-products-admin.php:2267 +msgid "File URL" +msgstr "URL do arquivo" + +#: includes/admin/class-mp-products-admin.php:1842 +msgid "External Link" +msgstr "Link Externo" + +#: includes/admin/class-mp-products-admin.php:2177 +msgid "Add Variation" +msgstr "Adicionar Variação" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:126 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:289 +msgid "Inventory" +msgstr "Inventário" + +#: includes/admin/class-mp-products-admin.php:438 +#: includes/admin/class-mp-products-admin.php:578 +#: includes/admin/class-mp-products-admin.php:1552 +#: includes/admin/class-mp-products-admin.php:2053 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:134 +msgid "Sale Price" +msgstr "Preço de Venda" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "Variation Name" +msgstr "Nome Variação" + +#: includes/admin/class-mp-products-admin.php:1931 +msgid "Product Details" +msgstr "Detalhes do Produto" + +#: includes/admin/class-mp-product-attributes-list-table.php:33 +msgid "Delete" +msgstr "Excluir" + +#: includes/admin/class-mp-orders-admin.php:1057 +msgid "Trashed" +msgstr "Lixeira" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:231 +#: includes/admin/class-mp-orders-admin.php:1015 +#: includes/common/class-mp-order.php:1052 includes/common/helpers.php:97 +msgid "Total" +msgstr "Total" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1196 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:210 +#: includes/admin/class-mp-orders-admin.php:1014 +msgid "Discount" +msgstr "Desconto" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:221 +#: includes/admin/class-mp-orders-admin.php:1013 +#: includes/common/payment-gateways/_ideal.php:148 +#: includes/common/payment-gateways/_payway.php:134 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:108 +msgid "Tax" +msgstr "Imposto" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:216 +#: includes/admin/class-mp-orders-admin.php:1012 +#: includes/admin/class-mp-products-admin.php:1958 +#: includes/admin/class-mp-products-admin.php:2198 +#: includes/admin/class-mp-store-settings-admin.php:114 +#: includes/admin/class-mp-store-settings-admin.php:230 +#: includes/common/class-mp-cart.php:717 includes/common/helpers.php:168 +#: includes/common/payment-gateways/_ideal.php:137 +#: includes/common/payment-gateways/_payway.php:116 +#: includes/public/class-mp-checkout.php:1304 +msgid "Shipping" +msgstr "Envio" + +#: includes/admin/class-mp-orders-admin.php:1011 +msgid "Items" +msgstr "Itens" + +#: includes/admin/class-mp-orders-admin.php:1010 +msgid "From" +msgstr "De" + +#: includes/admin/class-mp-exporter-orders.php:154 +#: includes/admin/class-mp-orders-admin.php:1009 +#: includes/common/class-mp-gdpr.php:370 +msgid "Order Date" +msgstr "Data do Encomenda" + +#: includes/admin/class-mp-orders-admin.php:1008 +#: includes/common/class-mp-gdpr.php:366 +#: includes/common/template-functions.php:2134 +msgid "Order ID" +msgstr "ID do Encomenda" + +#: includes/addons/class-mp-addons-list-table.php:22 +#: includes/admin/class-mp-orders-admin.php:1007 +msgid "Status" +msgstr "Estado" + +#: includes/admin/class-mp-orders-admin.php:1155 +msgid "N/A" +msgstr "N/A" + +#: includes/admin/class-mp-dashboard-widgets.php:243 +#: includes/admin/class-mp-products-admin.php:464 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:142 +msgid "Sales" +msgstr "Vendas" + +#: includes/admin/class-mp-products-admin.php:463 +msgid "Stock" +msgstr "Estoque" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:85 +#: includes/admin/class-mp-ajax.php:176 includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:434 +#: includes/admin/class-mp-products-admin.php:462 +#: includes/admin/class-mp-products-admin.php:576 +#: includes/admin/class-mp-products-admin.php:1519 +#: includes/admin/class-mp-products-admin.php:1569 +#: includes/admin/class-mp-products-admin.php:1950 +#: includes/admin/class-mp-products-admin.php:2059 +#: includes/admin/class-mp-products-admin.php:2190 +#: includes/admin/class-mp-products-admin.php:2330 +#: includes/common/class-mp-cart.php:1415 includes/common/helpers.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:130 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:276 +msgid "Price" +msgstr "Preço" + +#: includes/admin/class-mp-ajax.php:173 +#: includes/admin/class-mp-products-admin.php:461 +#: includes/admin/class-mp-products-admin.php:1972 +#: includes/admin/class-mp-products-admin.php:2224 +msgid "SKU" +msgstr "SKU" + +#: includes/admin/class-mp-products-admin.php:459 +#: includes/admin/class-mp-products-admin.php:1793 +#: includes/admin/class-mp-products-admin.php:1805 +#: includes/admin/class-mp-products-admin.php:2163 +msgid "Variations" +msgstr "Variações" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:83 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:86 +#: includes/admin/class-mp-dashboard-widgets.php:134 +#: includes/admin/class-mp-products-admin.php:458 +#: includes/admin/class-mp-products-admin.php:837 +#: includes/admin/class-mp-shortcode-builder.php:689 +#: includes/admin/class-mp-shortcode-builder.php:856 +#: includes/admin/class-mp-shortcode-builder.php:1300 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:512 +#: includes/admin/widgets/ms-global-product-list.php:115 +#: includes/admin/widgets/product-list.php:211 +msgid "Product Name" +msgstr "Nome do Produto" + +#: includes/common/template-functions.php:2575 +msgid "Categorized in " +msgstr "Categorizado em" + +#: includes/admin/class-mp-orders-admin.php:305 +#: includes/common/payment-gateways/free_orders.php:176 +msgid "Payment Information" +msgstr "Informações de pagamento" + +#: includes/admin/class-mp-exporter-orders.php:167 +#: includes/admin/class-mp-orders-admin.php:432 +#: includes/admin/class-mp-pages-admin.php:62 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:227 +#: includes/common/class-mp-gdpr.php:374 +#: includes/common/template-functions.php:175 +#: includes/common/template-functions.php:926 +msgid "Order Status" +msgstr "Estado Encomenda" + +#. translators: %s: orders closed +#: marketpress.php:327 +msgid "Closed (%s)" +msgid_plural "Closed (%s)" +msgstr[0] "Encerrado (%s)" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:249 +#: includes/admin/class-mp-orders-admin.php:375 +#: includes/admin/class-mp-orders-admin.php:951 +#: includes/admin/class-mp-orders-admin.php:1053 +#: includes/admin/class-mp-orders-admin.php:1065 +#: includes/common/class-mp-gdpr.php:330 +#: includes/common/class-mp-order.php:1019 marketpress.php:325 +msgid "Closed" +msgstr "Encerrado" + +#. translators: %s: shipped orders +#: marketpress.php:320 +msgid "Shipped (%s)" +msgid_plural "Shipped (%s)" +msgstr[0] "Enviado (%s)" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:248 +#: includes/admin/class-mp-orders-admin.php:376 +#: includes/admin/class-mp-orders-admin.php:950 +#: includes/admin/class-mp-orders-admin.php:1049 +#: includes/admin/class-mp-orders-admin.php:1064 +#: includes/common/class-mp-gdpr.php:329 +#: includes/common/class-mp-order.php:1002 marketpress.php:318 +msgid "Shipped" +msgstr "Enviado" + +#. translators: %s: paid orders +#: marketpress.php:313 +msgid "Paid (%s)" +msgid_plural "Paid (%s)" +msgstr[0] "Pago (%s)" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:247 +#: includes/admin/class-mp-orders-admin.php:377 +#: includes/admin/class-mp-orders-admin.php:949 +#: includes/admin/class-mp-orders-admin.php:1045 +#: includes/admin/class-mp-orders-admin.php:1063 +#: includes/common/class-mp-gdpr.php:328 +#: includes/common/payment-gateways/2checkout.php:294 +#: includes/common/payment-gateways/_cubepoints.php:130 +#: includes/common/payment-gateways/authorizenet-aim.php:193 +#: includes/common/payment-gateways/free_orders.php:91 +#: includes/common/payment-gateways/mijireh.php:248 +#: includes/common/payment-gateways/paymill.php:273 +#: includes/common/payment-gateways/paypal-express.php:933 +#: includes/common/payment-gateways/paypal-express.php:967 +#: includes/common/payment-gateways/pin.php:258 +#: includes/common/payment-gateways/simplify.php:181 +#: includes/common/payment-gateways/stripe.php:368 +#: includes/common/payment-gateways/wepay.php:269 marketpress.php:311 +msgid "Paid" +msgstr "Pago" + +#. translators: %s: orders received +#: marketpress.php:306 +msgid "Received (%s)" +msgid_plural "Received (%s)" +msgstr[0] "Recebido (%s)" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:246 +#: includes/admin/class-mp-orders-admin.php:378 +#: includes/admin/class-mp-orders-admin.php:1041 +#: includes/admin/class-mp-orders-admin.php:1062 +#: includes/common/class-mp-gdpr.php:327 includes/common/class-mp-order.php:995 +#: includes/common/payment-gateways/payfast.php:244 marketpress.php:304 +msgid "Received" +msgstr "Recebido" + +#: marketpress.php:268 +msgid "Search Orders" +msgstr "Buscar Encomendas" + +#: marketpress.php:267 +msgid "View Order" +msgstr "Ver Encomenda" + +#: marketpress.php:262 +msgid "Order" +msgstr "Encomenda" + +#: includes/admin/class-mp-dashboard-widgets.php:301 +#: includes/admin/class-mp-orders-admin.php:989 marketpress.php:261 +msgid "Orders" +msgstr "Encomendas" + +#: marketpress.php:228 +msgid "No Products found in Trash" +msgstr "Nenhum produto foi encontrado em lixo" + +#: marketpress.php:227 +msgid "No Products Found" +msgstr "Nenhum produto foi encontrado" + +#: marketpress.php:226 +msgid "Search Products" +msgstr "Buscar Produtos" + +#: marketpress.php:225 marketpress.php:229 +msgid "View Product" +msgstr "Ver Produto" + +#: marketpress.php:224 +msgid "New Product" +msgstr "Novo Produto" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1022 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:258 +#: marketpress.php:223 +msgid "Edit" +msgstr "Editar" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1019 +msgid "Create New" +msgstr "Criar novo" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:687 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:698 +#: marketpress.php:217 +msgid "Product" +msgstr "Produto" + +#: includes/admin/class-mp-dashboard-widgets.php:307 +#: includes/common/template-functions.php:173 +#: includes/common/template-functions.php:179 +#: includes/common/template-functions.php:902 +#: includes/multisite/template-functions.php:82 marketpress.php:216 +#: marketpress.php:219 +msgid "Products" +msgstr "Produtos" + +#: includes/admin/class-mp-store-settings-admin.php:118 +#: includes/admin/widgets/product-tag-cloud.php:46 +#: includes/multisite/class-mp-admin-multisite.php:548 +msgid "Product Tags" +msgstr "Etiquetas do Produto" + +#: includes/common/template-functions.php:2906 +#: includes/multisite/template-functions.php:449 +msgid "Product Category" +msgstr "Categoria do Produto" + +#: includes/admin/class-mp-store-settings-admin.php:117 +#: includes/admin/widgets/categories.php:8 +#: includes/admin/widgets/categories.php:18 +#: includes/multisite/class-mp-admin-multisite.php:539 +msgid "Product Categories" +msgstr "Categorias dos Produtos" + +#: includes/common/payment-gateways/stripe.php:332 +#: includes/common/template-functions.php:872 marketpress.php:218 +msgid "Store" +msgstr "Loja" + +#: includes/admin/class-mp-pages-admin.php:60 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:209 +#: includes/admin/widgets/cart.php:8 includes/admin/widgets/cart.php:56 +#: includes/common/template-functions.php:174 +#: includes/common/template-functions.php:811 +msgid "Shopping Cart" +msgstr "Carrinho" + +#: includes/admin/class-mp-store-settings-admin.php:110 +#: includes/admin/class-mp-store-settings-admin.php:218 +msgid "Store Settings" +msgstr "Configurações da Loja" + +#: includes/addons/class-mp-addons-list-table.php:128 marketpress.php:607 +msgid "Settings" +msgstr "Configurações" + +#: includes/common/data.php:178 includes/common/data.php:190 +msgid "Your Order Has Been Shipped! (ORDERID)" +msgstr "Seu encomenda foi enviado! (ORDERID)" + +#: includes/common/data.php:159 includes/common/data.php:166 +#: includes/common/data.php:172 +msgid "Your Order Confirmation (ORDERID)" +msgstr "Confirmação do seu encomenda (ORDERID)" + +#: includes/common/data.php:148 +msgid "

    Thank you for your order! We appreciate your business, and please come back often to check out our new products.

    " +msgstr "

    Obrigado pelo seu encomenda! Nós apreciamos seu negócio, e por favor, volte sempre para conferir os novos produtos.

    " + +#: includes/common/data.php:147 +msgid "

    You are almost done! Please do a final review of your order to make sure everything is correct then click the \"Confirm Payment\" button.

    " +msgstr "

    Você está quase pronto! Por favor, faça uma revisão final de seu encomenda para se certificar de que tudo está correto, em seguida, clique no botão \"Confirmar Pagamento\".

    " + +#: includes/common/data.php:145 +msgid "

    Please enter your shipping information in the form below to proceed with your order.

    " +msgstr "

    Por favor, insira no formulário abaixo seus dados de envio para prosseguir com o seu encomenda.

    " + +#: includes/common/data.php:143 +msgid "

    If you have any questions about your order please do not hesitate to contact us.

    " +msgstr "

    Se você tiver quaisquer perguntas sobre sua compra por favor não hesite em entrar em contato.

    " + +#: includes/common/data.php:106 +msgid "tag" +msgstr "etiqueta" + +#: includes/common/data.php:105 +msgid "category" +msgstr "categoria" + +#: includes/common/data.php:104 +msgid "order-status" +msgstr "estado-encomenda" + +#: includes/common/data.php:103 +msgid "shopping-cart" +msgstr "carrinho" + +#: includes/common/data.php:102 +msgid "products" +msgstr "produtos" + +#. Translators: change default slugs here +#: includes/common/data.php:101 +msgid "store" +msgstr "loja" \ No newline at end of file diff --git a/languages/mp-ro.mo b/languages/mp-ro.mo new file mode 100644 index 0000000000000000000000000000000000000000..d7778ac9531ef736f6873ff2d2998e1d90199374 GIT binary patch literal 10082 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 0 && n%100 < 20)) ? 1 : 2);\n" +"X-Generator: GlotPress/2.3.1\n" +"Language: ro\n" +"Project-Id-Version: MarketPress\n" + +#: includes/public/class-mp-checkout.php:1285 +msgid "By clicking this checkbox you allow the website to process your personal data." +msgstr "" + +#: includes/common/class-mp-gdpr.php:382 +msgid "Order Info" +msgstr "" + +#: includes/common/class-mp-gdpr.php:268 +msgid "Shipping Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:267 +msgid "Shipping Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:266 +msgid "Shipping ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:265 +msgid "Shipping State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:264 +msgid "Shipping City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:263 +msgid "Shipping Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:262 +msgid "Shipping Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:261 +msgid "Shipping Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:260 +msgid "Shipping Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:259 +msgid "Shipping Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:258 +msgid "Shipping First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:254 +msgid "Billing Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:253 +msgid "Billing Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:252 +msgid "Billing ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:251 +msgid "Billing State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:250 +msgid "Billing City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:249 +msgid "Billing Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:248 +msgid "Billing Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:247 +msgid "Billing Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:246 +msgid "Billing Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:245 +msgid "Billing Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:244 +msgid "Billing First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:151 +msgid "Orders Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:139 +msgid "Customer Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:100 includes/common/class-mp-gdpr.php:116 +msgid "MarketPress User Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:81 +msgid "" +"In addition to standard WordPress session cookies, this site might be setting an\n" +"\t\t additional cookie to remember your cart settings. This cookie will last for one year." +msgstr "" + +#: includes/common/class-mp-gdpr.php:80 +msgid "Cookies" +msgstr "" + +#: includes/common/class-mp-gdpr.php:77 +msgid "" +"The following information will be collected in order to process orders: your name,\n" +"\t\t username, email address, avatar and profile URLs, address and phone number. This data can be\n" +"\t\t exported and removed." +msgstr "" + +#: includes/common/class-mp-gdpr.php:76 +msgid "Additional data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:71 +msgid "" +"This site might be using third party services and tools to process payments or/and\n" +"\t\t process shipping data when creating orders on the MarketPress store. These services include payment\n" +"\t\t gateways: 2Checkout, Authorize.net AIM, eWay shared payments, eWay Rapid 3.1 Payments, Mijireh,\n" +"\t\t Mollie, Paymill, PayPal, PIN, Simplify Commerce by MasterCard, Stripe and WePay; shipping gateways:\n" +"\t\t Fedex, UPS, USPS." +msgstr "" + +#: includes/common/class-mp-gdpr.php:70 +msgid "Third parties" +msgstr "" + +#: includes/admin/class-mp-admin.php:403 +msgid "Start creating store pages and products for your online shop here." +msgstr "" + +#: includes/admin/class-mp-admin.php:402 +msgid "Create Online Shop" +msgstr "" + +#: includes/admin/class-mp-admin.php:394 +msgid "Run Setup Wizard" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:234 +msgid "If having problems during invoice generation, add define( 'DOMPDF_ENABLE_HTML5PARSER', true ); to the wp-config.php file." +msgstr "" + +#: includes/public/class-mp-checkout.php:723 +msgid "Invalid Email" +msgstr "Adresă email invalidă" + +#: includes/public/class-mp-checkout.php:721 +#: includes/public/class-mp-checkout.php:729 +msgid "This field is required" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:804 +msgid "This option changes the built-in css styles for store pages. For a custom css style, save your css file with the /* MarketPress Style: Your CSS Theme Name Here */ header line in the \"%s\" folder and it will appear in this list so you may select it. You should select \"None\" if you don't wish to use custom CSS styles or if you are using default theme templates or custom theme templates and css to make your own completely unique store design. For more information on custom theme templates click here »." +msgstr "" + +#: includes/public/class-mp-public.php:421 +#: includes/public/class-mp-short-codes.php:142 +msgid "Please enter a value greater than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:420 +#: includes/public/class-mp-short-codes.php:141 +msgid "Please enter a value less than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:419 +#: includes/public/class-mp-short-codes.php:140 +msgid "Please enter a value between {0} and {1}." +msgstr "" + +#: includes/public/class-mp-public.php:418 +#: includes/public/class-mp-short-codes.php:139 +msgid "Please enter a value between {0} and {1} characters long." +msgstr "" + +#: includes/public/class-mp-public.php:417 +#: includes/public/class-mp-short-codes.php:138 +msgid "Please enter at least {0} characters." +msgstr "Vă rugăm introduceți cel puțin {0} caractere." + +#: includes/public/class-mp-public.php:416 +#: includes/public/class-mp-short-codes.php:137 +msgid "Please enter no more than {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:415 +#: includes/public/class-mp-short-codes.php:136 +msgid "Please enter a value with a valid extension." +msgstr "Vă rugăm introduceți o valoare cu o extensie validă." + +#: includes/public/class-mp-public.php:414 +#: includes/public/class-mp-short-codes.php:135 +msgid "Please enter the same value again." +msgstr "Vă rugăm introduceți aceeași valoare încă o dată." + +#: includes/public/class-mp-public.php:413 +#: includes/public/class-mp-short-codes.php:134 +msgid "Please enter a valid credit card number." +msgstr "Vă rugăm introduceți un număr de card valid." + +#: includes/public/class-mp-public.php:412 +#: includes/public/class-mp-short-codes.php:133 +msgid "Please enter only digits." +msgstr "Vă rugăm introduceți doar caractere." + +#: includes/public/class-mp-public.php:411 +#: includes/public/class-mp-short-codes.php:132 +msgid "Please enter a valid number." +msgstr "Vă rugăm introduceți un număr valid." + +#: includes/public/class-mp-public.php:410 +#: includes/public/class-mp-short-codes.php:131 +msgid "Please enter a valid date (ISO)." +msgstr "" + +#: includes/public/class-mp-public.php:409 +#: includes/public/class-mp-short-codes.php:130 +msgid "Please enter a valid date." +msgstr "" + +#: includes/public/class-mp-public.php:408 +#: includes/public/class-mp-short-codes.php:129 +msgid "Please enter a valid URL." +msgstr "" + +#: includes/public/class-mp-public.php:406 +#: includes/public/class-mp-short-codes.php:127 +msgid "Please fix this field." +msgstr "" + +#: includes/public/class-mp-checkout.php:1287 +#: includes/public/class-mp-public.php:405 +#: includes/public/class-mp-short-codes.php:126 +msgid "This field is required." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:810 +msgid "None - Without Special CSS-styles" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:809 +msgid "Default - Using Default CSS-styles" +msgstr "" + +#: marketpress.php:739 +msgid "Enable multiple downloads per product" +msgstr "Activați descărcări multiple per produs." + +#: marketpress.php:738 +msgid "Multiple Downloads" +msgstr "Descărcări multiple" + +#: includes/public/class-mp-checkout.php:715 +msgid "Invalid Zip Code" +msgstr "Cod poștal invalid" + +#: includes/common/template-functions.php:2126 +msgid "Guest Email" +msgstr "Email vizitator" + +#: includes/common/payment-gateways/simplify.php:195 +msgid "There was a problem finalizing your purchase. Please re-enter your credit card information and try again" +msgstr "A intervenit o eroare în finalizarea cumpărăturilor dvs. Vă rugăm introduceți informațiile cardului din nou și încercați încă o dată " + +#: includes/common/class-mp-cart.php:565 includes/common/class-mp-order.php:600 +#: includes/common/helpers.php:111 +msgid "Download %1$s" +msgstr "Descărcați %1$s" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:331 +msgid "Export products to file" +msgstr "Exportați produsele în fișier" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:328 +msgid "The import process uses the WordPress importer plugin." +msgstr "Procesul de importare foloseșe aplcația de import a WordPress-ului." + +#: includes/admin/store-settings/class-mp-store-settings-import.php:326 +msgid "Import / Export Products" +msgstr "Importați / Exportați produse" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:325 +msgid "Export settings to file" +msgstr "Exportați setările în fișier" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:324 +msgid "Import configuration" +msgstr "Importați configurație" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:320 +msgid "Use the text below to export to a new installation. Or paste in the new configuration to import." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:318 +msgid "Import / Export Settings" +msgstr "" + +#. translators: URL to wp-admin/import.php +#: includes/admin/store-settings/class-mp-store-settings-import.php:266 +msgid "This importer is not installed. Please install importers from the main site." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:261 +msgid "Install Now" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:260 +msgid "Install %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:240 +msgid "Run Importer" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:239 +msgid "Run %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:258 +msgid "Import/Export" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1199 +msgid "Requires Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:737 +msgid "Optionally limit the user to some categories" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:671 +msgid "Should this coupon only be available to logged in users?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:670 +msgid "Require Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:655 +msgid "Mimimum number of products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:653 +msgid "Enter the minimum number of products in the cart that this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:648 +msgid "Can this coupon be limited to a number of products in the cart?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:334 +msgid "Add all values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:265 +msgid "Set as default variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:154 +msgid "Set Default" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:150 +msgid "More Info" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:40 +msgid "MarketPress - Quick Setup" +msgstr "" + +#: includes/public/class-mp-checkout.php:1399 +msgid "Proceed to checkout and create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1241 +#: includes/public/class-mp-checkout.php:1245 +msgid "Register account" +msgstr "" + +#: includes/public/class-mp-checkout.php:1233 +msgid "Register as customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:765 +msgid "

    Oops!

    Looks like you haven't added anything your cart. Let's go shopping!

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:763 +msgid "

    Oops!

    The cart is disabled.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing Information" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:214 +msgid "Global Currency" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:198 +msgid "Global Store Currency" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:507 +msgid "There are no shipping services available for this type of package in your location." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:168 +msgid "Using this USPS Shipping calculator requires requesting an Ecommerce API Username and Password. Get your free set of credentials here ». The password is no longer used for the API, just the username which you should enter below. The USPS test site has not yet been updated and currently doesn't work - you should just request activating your credentials with USPS and go live." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:339 +msgid "ZIP Code" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:334 +msgid "Last name" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:333 +msgid "First name" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:150 +msgid "These are the manual payment instructions to display on the order confirmation screen. TOTAL will be replaced with the order total and ORDERID will be replaced with Order ID." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:240 +msgid "You must login to Authorize.net merchant dashboard to obtain the API login ID and API transaction key. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:327 +msgid "
    1. Set the \"Return Method\" within Site Management to Header Redirect and set the \"Return URL\" to %s
    2. Set your notifications url to %s
    " +msgstr "" + +#: includes/common/data.php:191 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Also, digital downloads included in your order are now ready to be downloaded. Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:185 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order is now available to download! Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:184 +msgid "Your Order Is Ready To Be Downloaded! (ORDERID)" +msgstr "" + +#: includes/common/data.php:179 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:173 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received, your digital goods are ready to be downloaded and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:167 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received and your digital goods are ready to be downloaded. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:160 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +" Your order has been received, and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information: \n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/class-mp-product.php:638 +msgid "You can not add more items to cart." +msgstr "" + +#: includes/common/class-mp-product.php:635 +msgid "You can only add {0} to cart." +msgstr "" + +#: includes/common/class-mp-product.php:625 +msgid "This product has an order limit of %d." +msgstr "" + +#: includes/common/class-mp-order.php:1454 +msgid "Shipped: tracking code: %s" +msgstr "" + +#: includes/common/class-mp-order.php:1000 +#: includes/common/class-mp-order.php:1012 +msgid "Finished" +msgstr "" + +#: includes/common/class-mp-order.php:858 +msgid "Contact Details" +msgstr "" + +#: includes/common/class-mp-order.php:339 includes/common/data.php:155 +msgid "" +"A new order (ORDERID) was created in your store:\n" +"\n" +" ORDERINFOSKU\n" +"\n" +" SHIPPINGINFO\n" +"\n" +" PAYMENTINFO\n" +"\n" +msgstr "\n" + +#: includes/common/class-mp-cart.php:1858 +msgid "Add again" +msgstr "" + +#: includes/common/class-mp-cart.php:1852 +msgid "was removed from Shopping Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1242 +#: includes/public/class-mp-short-codes.php:160 +msgid "Cart update notice: this item has a limit per order or you have reached the stock limit." +msgstr "" + +#: includes/admin/widgets/product-list.php:235 +msgid "Show Only Featured Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:533 +msgid "If enabled, users won't be able to filter products per category and/or to order by release date/name/price." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:531 +msgid "Hide Products Filter?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:353 +msgid "Notification to registration email instead of billing email?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:322 +msgid "Order Shipped - Mixed orders (with both digital and physical products)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:289 +msgid "Order Shipped - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:224 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:194 +msgid "New Order - Mixed" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:161 +msgid "New Order - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:115 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:243 +msgid "Mixed orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:110 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:238 +msgid "Digital downloads orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:105 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:233 +msgid "Physical orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:96 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed.
    For orders placed with manual payment, emails set here will be overriden by the one configured in manual payments settings, under payments settings page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:89 +msgid "Customer Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:47 +msgid "Admin Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:566 +msgid "Only contact details" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:565 +msgid "Full billing info" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:561 +msgid "Details Collection" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:548 +msgid "Digital Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:515 +msgid "Apply Tax to Digital Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:236 +msgid "product (default)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:231 +msgid "If you are experiencing conflicts with other e-commerce plugins change this setting. This will change the internal post type of all your products. Please note that changing this option may break 3rd party themes or plugins." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1203 +msgid "Hide details" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1202 +msgid "Show all changes" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1184 +msgid "Version %s" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1161 +msgid "Current" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1131 +msgid "%s changelog" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:952 +msgid "We did not find any data for this plugin or theme..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:285 +msgid "Activate WPMU DEV Dashboard" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:279 +msgid "Just one more step - activate the WPMU DEV Dashboard plugin and you're all done!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:277 +msgid "Important updates are available for your WPMU DEV plugins/themes. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:273 +msgid "Just one more step to enable updates and support for %s!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:271 +msgid "Important updates are available for %s. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:264 +msgid "activate" +msgstr "" + +#: includes/admin/class-mp-admin.php:398 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:248 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:289 +msgid "Dismiss" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:247 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:288 +msgid "Saving..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:244 +msgid "Install Plugin" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:238 +msgid "Almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:236 +msgid "Important updates are available for your WPMU DEV plugins/themes. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:232 +msgid "%s is almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:230 +msgid "Important updates are available for %s. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:223 +msgid "install" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1428 +msgid "Sets the number of Tags to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1289 +msgid "How many products to display in the product list if \"paginate\" is set to false." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:739 +#: includes/admin/class-mp-shortcode-builder.php:906 +#: includes/admin/class-mp-shortcode-builder.php:1350 +msgid "Grid" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:735 +#: includes/admin/class-mp-shortcode-builder.php:902 +#: includes/admin/class-mp-shortcode-builder.php:1346 +msgid "Products will be displayed as list or grid." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:206 +msgid "Display a cloud or list of your global product tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:205 +msgid "Display a list of your global categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:204 +msgid "Display a list or grid of your global products." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:181 +msgid "Display a list of featured products." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1451 +msgid "Is Featured?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1444 +msgid "Featured Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:581 +#: includes/admin/class-mp-products-admin.php:1580 +msgid "% discount" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:579 +msgid "OR" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:460 +#: includes/admin/class-mp-products-admin.php:586 +#: includes/admin/widgets/product-list.php:217 +msgid "Featured" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:536 +#: includes/admin/class-mp-orders-admin.php:538 +msgid "Tracking Link" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:508 +msgid "Shipping Tax" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:356 +msgid "Shipping Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:352 +msgid "Taxes Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:349 +msgid "Products Total" +msgstr "" + +#: includes/admin/class-mp-ajax.php:366 +msgid "Oops! You entered an invalid username/email and or password." +msgstr "" + +#: includes/admin/class-mp-ajax.php:254 +msgid "Percentage Discount" +msgstr "" + +#: includes/admin/class-mp-ajax.php:234 +msgid "Limit the Amount of Items per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:214 +msgid "Unused Attributes" +msgstr "" + +#: includes/admin/class-mp-admin.php:82 +msgid "Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-admin.php:79 +msgid "MarketPress setup is not complete! Once you've completed this quick setup wizard you'll have a fully working online store - exciting! " +msgstr "" + +#: marketpress.php:263 +msgctxt "mp_order" +msgid "Add New" +msgstr "" + +#: marketpress.php:184 +msgctxt "product_tag" +msgid "Product Tag" +msgstr "" + +#: marketpress.php:183 +msgctxt "product_tag" +msgid "Product Tags" +msgstr "" + +#: marketpress.php:150 +msgctxt "product_category" +msgid "Product Category" +msgstr "" + +#: marketpress.php:149 +msgctxt "product_category" +msgid "Product Categories" +msgstr "" + +#. Author URI of the plugin/theme +msgid "http://premium.wpmudev.org" +msgstr "" + +#: marketpress.php:729 +msgid "Invoice PDF" +msgstr "" + +#: marketpress.php:712 +msgid "Grant access to themes and gateways depending on the user's Pro Site level" +msgstr "" + +#: marketpress.php:711 +msgid "Pro Sites" +msgstr "" + +#: marketpress.php:703 +msgid "Offer and accept coupon codes" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:687 +msgid "Install %s Pages" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:682 +msgid "Welcome to %s – Install pages required by the plugin automatically." +msgstr "" + +#: marketpress.php:668 +msgid "Your pages were created successfully." +msgstr "" + +#: marketpress.php:436 +msgid "Add a Product" +msgstr "" + +#: marketpress.php:271 +msgid "Parent Order" +msgstr "" + +#: marketpress.php:270 +msgid "No orders found in trash" +msgstr "" + +#: marketpress.php:269 +msgid "No orders found" +msgstr "" + +#: marketpress.php:265 +msgid "Edit Order" +msgstr "" + +#: marketpress.php:264 +msgid "Add New Order" +msgstr "" + +#: marketpress.php:220 marketpress.php:221 +msgid "Add New Product" +msgstr "" + +#: marketpress.php:197 +msgid "No product tags found" +msgstr "" + +#: marketpress.php:196 +msgid "Choose from the most used product tags" +msgstr "" + +#: marketpress.php:195 +msgid "Add or remove product tags" +msgstr "" + +#: marketpress.php:194 +msgid "Separate product tags with commas" +msgstr "" + +#: marketpress.php:193 +msgid "Search Product Tags" +msgstr "" + +#: marketpress.php:192 +msgid "Parent Product Tag:" +msgstr "" + +#: marketpress.php:191 +msgid "Parent Product Tag" +msgstr "" + +#: marketpress.php:190 +msgid "New Product Tag Name" +msgstr "" + +#: marketpress.php:189 +msgid "Add New Product Tag" +msgstr "" + +#: marketpress.php:188 +msgid "Update Product Tag" +msgstr "" + +#: marketpress.php:187 +msgid "View Product Tag" +msgstr "" + +#: marketpress.php:186 +msgid "Edit Product Tag" +msgstr "" + +#: marketpress.php:185 +msgid "All Product Tags" +msgstr "" + +#: marketpress.php:163 +msgid "No product categories found" +msgstr "" + +#: marketpress.php:162 +msgid "Choose from the most used product categories" +msgstr "" + +#: marketpress.php:161 +msgid "Add or remove product categories" +msgstr "" + +#: marketpress.php:160 +msgid "Separate product categories with commas" +msgstr "" + +#: marketpress.php:159 +msgid "Search Product Categories" +msgstr "" + +#: marketpress.php:158 +msgid "Parent Product Category:" +msgstr "" + +#: marketpress.php:157 +msgid "Parent Product Category" +msgstr "" + +#: marketpress.php:156 +msgid "New Product Category Name" +msgstr "" + +#: marketpress.php:155 +msgid "Add New Product Category" +msgstr "" + +#: marketpress.php:154 +msgid "Update Product Category" +msgstr "" + +#: marketpress.php:153 +msgid "View Product Category" +msgstr "" + +#: marketpress.php:152 +msgid "Edit Product Category" +msgstr "" + +#: marketpress.php:151 +msgid "All Product Categories" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Please fix the %s1 and then try submitting the form again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Oops! The form contains %s1 which %s2 been highlighted below." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:660 +msgid "have" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:659 +msgid "has" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:651 +msgid "Value must be less than {0}" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:650 +msgid "Please enter only letters and numbers" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:539 +msgid "Due to prolonged inactivity on this page, one or more settings were not saved. Please try again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:535 +msgid "Settings Saved" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-user-select.php:22 +msgid "Select Some Users" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-section.php:18 +msgid "Section Title" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:425 +msgid "Are you sure you want to delete this?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:30 +msgid "Add Row" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-post-select.php:24 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-taxonomy-select.php:22 +msgid "Select Posts" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:210 +msgid "Add Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:129 +msgid "Select the image that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:93 +msgid "Select image(s) that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:79 +msgid "Select the image that you would like to use for this variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:48 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:82 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:68 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:132 +msgid "Select Image" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:31 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:160 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:168 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:19 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:115 +msgid "Select File" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:30 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:18 +msgid "Select the file that you would like to use." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:357 +msgid "Create Variations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:356 +msgid "Add Another Variant" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Insert a value and press ENTER" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "(e.g. White, Grey, Red etc.)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Variation Values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:333 +msgid "Or create new variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "(e.g. Color)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:303 +msgid "You are about to delete selected variants.
    If you want to continue please confirm." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:302 +msgid "Confirmation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:290 +msgid "Insert quantity available. Empty for unlimited." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:281 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:294 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:307 +msgid "Cancel" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:280 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:293 +msgid "Update" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:277 +msgid "Insert the price i.e. 25 or 25.50" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:115 +msgid "Img." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:85 +msgid "Add New Variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:79 +msgid "Delete Variants" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:78 +msgid "Update Prices" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:77 +msgid "Update Inventory" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:76 +msgid "Update Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:75 +msgid "Bulk Actions" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:73 +msgid "Select bulk action" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:196 +msgid "Configure Store" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:195 +msgid "Configure shipping rates, emails and your store's appearance. " +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:190 +msgid "Add Product" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:189 +msgid "Add your first product for sale and get familiar with adding products." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:184 +msgid "Your store is almost ready for its first customers, but first it needs some products. Get started by adding products below, or jump straight into further configuring your store’s settings." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:183 +msgid "Woohoo! Your online store is up and running." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:160 +msgid "Finish Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:124 +msgid "And what metric system do you want to use?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:113 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:142 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:159 +msgid "Back" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:109 +msgid "Do you want to apply tax for your products? You can customize this for each product and variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:105 +msgid "What currency do you want to sell with?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:93 +msgid "And, which countries do you want to sell to?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:89 +msgid "Where is your online store based?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:80 +msgid "Payment Gateway" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:79 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:123 +msgid "Metric System" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:78 +msgid "Currency & Tax" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:77 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:88 +msgid "Locations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:70 +msgid "Choose where you want to sell your stuff and what currency. Easy!" +msgstr "" + +#: includes/public/class-mp-checkout.php:1400 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:58 +msgid "Continue" +msgstr "" + +#: includes/admin/class-mp-admin.php:83 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:53 +msgid "Skip this step, I'll do this manually" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:49 +msgid "Install store pages" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:44 +msgid "Once you've completed this quick setup wizard you'll have a fully working online store - exciting! Start
    by creating the default store pages for the online store such as the cart, checkout and store pages." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:42 +msgid "MarketPress adds a full online store to your website, with heaps of configuration options and addons
    to suit your needs. It's really easy to get going, and only takes a few minutes to setup!" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:41 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:69 +msgid "Welcome to MarketPress - Quick Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-advanced-select.php:23 +msgid "Select Some Options" +msgstr "" + +#: includes/wpmudev-metaboxes/class-wpmudev-field.php:694 +msgid "You must the WPMUDEV_Field::display() method in your form field class" +msgstr "" + +#: includes/public/class-mp-short-codes.php:636 +msgid "Only %s left in stock..." +msgstr "" + +#: includes/public/class-mp-short-codes.php:633 +msgid "Unlimited stock" +msgstr "" + +#: includes/public/class-mp-short-codes.php:430 +msgid "product_id must be defined" +msgstr "" + +#: includes/public/class-mp-checkout.php:1250 +msgid "An account with this username already exists" +msgstr "" + +#: includes/public/class-mp-checkout.php:1394 +msgid "Continue as Guest" +msgstr "" + +#: includes/public/class-mp-checkout.php:1393 +msgid "Proceed to checkout and you'll have an opportunity to create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1392 +#: includes/public/class-mp-checkout.php:1398 +msgid "First-time customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1386 +msgid "Login" +msgstr "" + +#: includes/public/class-mp-checkout.php:1379 +msgid "E-Mail Address/Username" +msgstr "" + +#: includes/public/class-mp-checkout.php:1377 +msgid "Sign in to speed up the checkout process." +msgstr "" + +#: includes/public/class-mp-checkout.php:1376 +msgid "Have an account?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1297 +msgid "Shipping address different than billing?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1184 +msgid "There are no available gateways to process this payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1160 +msgid "Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:1123 +msgid "Oops! An error occurred while processing your payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1051 +msgid "Next Step »" +msgstr "" + +#: includes/public/class-mp-checkout.php:1045 +msgid "« Previous Step" +msgstr "" + +#: includes/public/class-mp-checkout.php:873 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:657 +msgid "error" +msgstr "" + +#: includes/public/class-mp-checkout.php:872 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:658 +msgid "errors" +msgstr "" + +#: includes/public/class-mp-checkout.php:871 +msgid "

    Oops! We found %d %s in the form below.

    Fields that have errors are highlighted in red below. Entering into a field will reveal the actual error that occurred.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:870 +msgid "Please enter a valid first and last name" +msgstr "" + +#: includes/public/class-mp-checkout.php:869 +msgid " Please enter a valid card security code" +msgstr "" + +#: includes/public/class-mp-checkout.php:868 +msgid "Please enter a valid card expiration" +msgstr "" + +#: includes/public/class-mp-checkout.php:773 +msgid "Javascript is required in order to checkout. Please enable Javascript in your browser and then refresh this page." +msgstr "" + +#: includes/public/class-mp-checkout.php:588 +msgid "An unknown error occurred. Please try again." +msgstr "" + +#: includes/public/class-mp-checkout.php:386 +msgid "Town/City" +msgstr "" + +#: includes/public/class-mp-checkout.php:380 +msgid "Apartment, suite, unit, building, floor, etc" +msgstr "" + +#: includes/public/class-mp-checkout.php:376 +msgid "Address Line 2" +msgstr "" + +#: includes/public/class-mp-checkout.php:363 +msgid "Address Line 1" +msgstr "" + +#: includes/common/class-mp-order.php:770 +#: includes/public/class-mp-checkout.php:354 +msgid "Company" +msgstr "" + +#: includes/public/class-mp-checkout.php:330 +msgid "Last" +msgstr "" + +#: includes/public/class-mp-checkout.php:321 +msgid "First" +msgstr "" + +#: includes/public/class-mp-checkout.php:284 +msgid "State/Province" +msgstr "" + +#: includes/public/class-mp-checkout.php:83 +msgid "Review Order/Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing/Shipping Address" +msgstr "" + +#: includes/public/class-mp-checkout.php:80 +msgid "Login/Register" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:530 +msgid "Marketplace" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:523 +msgid "Global Marketplace Pages" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +msgid "Store Network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +#: includes/multisite/class-mp-admin-multisite.php:494 +msgid "Store Network Settings" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:440 +msgid "Set theme access permissions for network stores. For a custom css theme, save your css file with the MarketPress Theme: NAME header in the /marketpress/ui/themes/ folder and it will appear in this list so you may select it." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:361 +msgid "Choose a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:336 +msgid "%d products get indexed" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:285 +msgid "Product Indexer" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:281 +msgid "Please hold on..." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:280 +msgid "Index Products" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:279 +msgid "%d products have been indexed in whole network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:182 +msgid "Enable Global Shopping Cart?" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:178 +msgid "Limit Global Widgets/Shortcodes To Main Blog?" +msgstr "" + +#: includes/common/template-functions.php:2802 +#: includes/multisite/template-functions.php:355 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:97 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:114 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:143 +msgid "Next" +msgstr "" + +#: includes/common/template-functions.php:2801 +#: includes/multisite/template-functions.php:354 +msgid "Prev" +msgstr "" + +#: includes/common/template-functions.php:2597 +msgid "Tagged in " +msgstr "" + +#: includes/common/template-functions.php:2196 +#: includes/common/template-functions.php:2202 +#: includes/common/template-functions.php:2214 +#: includes/common/template-functions.php:2217 +msgid "Oops! We couldn't locate any orders matching that order number. Please verify the order number and try again." +msgstr "" + +#: includes/common/template-functions.php:2138 +msgid "Look Up" +msgstr "" + +#: includes/common/template-functions.php:1423 +msgid "Please choose a shipping method" +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "If you have your order ID you can look it up using the form below." +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "Order Search" +msgstr "" + +#: includes/common/template-functions.php:910 +#: includes/public/class-mp-checkout.php:1440 +msgid "Cart" +msgstr "" + +#: includes/common/template-functions.php:895 +msgid "[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:887 +msgid "[mp_global_categories_list]" +msgstr "" + +#: includes/common/template-functions.php:880 +msgid "" +"Welcome to our market place!\n" +"\n" +"Check out our network of products:\n" +"\n" +"[mp_list_global_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_global_categories_list]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:879 +msgid "Global Store" +msgstr "" + +#: includes/common/template-functions.php:873 +msgid "" +"Welcome to our online store! Feel free to browse around:\n" +"\n" +"[mp_store_navigation]\n" +"\n" +"Check out our most popular products:\n" +"\n" +"[mp_popular_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_list_categories]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_tag_cloud]" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:127 +msgid "If cart weight is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:126 +msgid "Cart Weight" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:222 +msgid "Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:206 +msgid "Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:196 +msgid "Retail Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:195 +msgid "Online Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:193 +msgid "Rates Request Type" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:189 +msgid "Maximum Weight Per Package" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:195 +#: includes/common/shipping-modules/mp-usps.php:236 +msgid "Enter your standard box sizes as LengthxWidthxHeight (e.g. 12x8x6) For each box defined enter the maximum weight it can contain. Note: the shipping prices this plugin calculates are estimates. If they are consistently too low or too high, please check that the list of boxes above and the product weights are accurate and complete." +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:187 +msgid "Handling Charge Per Box Shipped" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:176 +#: includes/common/shipping-modules/mp-ups.php:181 +msgid "Offered Services" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:165 +msgid "Shipper Number" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:151 +msgid "User ID" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:144 +msgid "Developer Kit Access Key" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:140 +msgid "Use Sandbox Mode?" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:123 +msgid "In order to use UPS, you will need a UPS Developer Kit access key and the UPS user ID and password associated with the access key. Set these up for free here. If this information is missing or incorrect, an error will appear during the checkout process and the buyer will not be able to complete the transaction." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:112 +msgid "If cart total is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:111 +msgid "Cart Total" +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:95 +#: includes/common/shipping-modules/mp-weight-rate.php:111 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Don't worry about sorting as this will be done automatically upon saving." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:170 +msgid "Method Title (visible for clients)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:409 +#: includes/common/shipping-modules/mp-ups.php:216 +#: includes/common/shipping-modules/mp-usps.php:251 +msgid "Max Weight (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:402 +#: includes/common/shipping-modules/mp-ups.php:209 +#: includes/common/shipping-modules/mp-usps.php:247 +msgid "Size (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:387 +msgid "Enter your standard box sizes as LengthxWidthxHeight ( 12x8x6 ) For each box defined enter the maximum weight it can contain. Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:361 +#: includes/common/shipping-modules/mp-usps.php:229 +msgid "Handling Charge per International Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:353 +msgid "International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:339 +#: includes/common/shipping-modules/mp-usps.php:213 +msgid "Handling Charge per Domestic Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:331 +msgid "Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:321 +msgid "When checked the customer can chose Residential or Commercial delivery with Residential the default. Unchecked it's only Residential rates." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:320 +msgid "Allow Commercial Delivery?" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:315 +msgid "Fedex 10kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:314 +msgid "Fedex 25kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:313 +msgid "Fedex Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:312 +msgid "Fedex Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:311 +msgid "Fedex Pak" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:310 +msgid "Fedex Tube" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:306 +msgid "Default Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:294 +msgid "Dropoff Type" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:290 +msgid "Meter ID" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:134 +msgid "This is a residential address" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:283 +msgid "There was an error processing your card: \"%s\". Please check your credit card info and try again." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:121 +msgid "Wepay makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept cards directly on your site. You don't need a merchant account or gateway. WePay handles everything including storing cards. Credit cards go directly to WePay's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:385 +msgid "There was an error processing your card - \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:356 +msgid "%s Store Purchase - Order ID - %s, Email - %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:251 +msgid "Stripe makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept Visa, MasterCard, American Express, Discover, JCB, and Diners Club cards directly on your site. You don't need a merchant account or gateway. Stripe handles everything, including storing cards, subscriptions, and direct payouts to your bank account. Credit cards go directly to Stripe's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:192 +msgid "ZMW - Zambian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:191 +msgid "ZAR - South African Rand" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:190 +msgid "YER - Yemeni Rial" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:189 +msgid "XPF - Cfp Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:188 +msgid "XOF - West African Cfa Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:187 +msgid "XCD - East Caribbean Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:186 +msgid "XAF - Central African Cfa Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:185 +msgid "WST - Samoan Tala" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:184 +msgid "VUV - Vanuatu Vatu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:183 +msgid "VND - Vietnamese Đồng" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:182 +msgid "VEF - Venezuelan Bolívar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:181 +msgid "UZS - Uzbekistani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:180 +msgid "UYI - Uruguayan Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:178 +msgid "UGX - Ugandan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:177 +msgid "UAH - Ukrainian Hryvnia" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:176 +msgid "TZS - Tanzanian Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:175 +msgid "TWD - New Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:174 +msgid "TTD - Trinidad and Tobago Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:172 +msgid "TOP - Tongan Paʻanga" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:171 +msgid "TJS - Tajikistani Somoni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:169 +msgid "SZL - Swazi Lilangeni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:168 +msgid "SVC - Salvadoran Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:167 +msgid "STD - São Tomé and Príncipe Dobra" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:166 +msgid "SRD - Surinamese Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:165 +msgid "SOS - Somali Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:164 +msgid "SLL - Sierra Leonean Leone" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:163 +msgid "SHP - Saint Helenian Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:160 +msgid "SCR - Seychellois Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:159 +msgid "SBD - Solomon Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:157 +msgid "RWF - Rwandan Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:156 +msgid "RUB - Russian Ruble" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:155 +msgid "RSD - Serbian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:154 +msgid "RON - Romanian Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:153 +msgid "QAR - Qatari Riyal" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:152 +msgid "PYG - Paraguayan Guaraní*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:151 +msgid "PLN - Polish Złoty" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:150 +msgid "PKR - Pakistani Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:149 +msgid "PHP - Philippine Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:148 +msgid "PGK - Papua New Guinean Kina" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:147 +msgid "PEN - Peruvian Nuevo Sol*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:146 +msgid "PAB - Panamanian Balboa*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:144 +msgid "NPR - Nepalese Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:142 +msgid "NIO - Nicaraguan Córdoba*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:141 +msgid "NGN - Nigerian Naira" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:140 +msgid "NAD - Namibian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:139 +msgid "MZN - Mozambican Metical" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:137 +msgid "MXN - Mexican Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:136 +msgid "MWK - Malawian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:135 +msgid "MVR - Maldivian Rufiyaa" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:134 +msgid "MUR - Mauritian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:133 +msgid "MRO - Mauritanian Ouguiya" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:132 +msgid "MOP - Macanese Pataca" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:131 +msgid "MNT - Mongolian Tögrög" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:130 +msgid "MKD - Macedonian Denar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:129 +msgid "MGA - Malagasy Ariary" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:128 +msgid "MDL - Moldovan Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:126 +msgid "LVL - Latvian Lats" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:124 +msgid "LSL - Lesotho Loti" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:123 +msgid "LRD - Liberian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:122 +msgid "LKR - Sri Lankan Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:121 +msgid "LBP - Lebanese Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:120 +msgid "LAK - Lao Kip*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:119 +msgid "KZT - Kazakhstani Tenge" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:118 +msgid "KYD - Cayman Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:117 +msgid "KRW - South Korean Won" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:116 +msgid "KMF - Comorian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:115 +msgid "KHR - Cambodian Riel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:114 +msgid "KGS - Kyrgyzstani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:113 +msgid "KES - Kenyan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:111 +msgid "JMD - Jamaican Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:110 +msgid "ISK - Icelandic Króna" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:109 +msgid "INR - Indian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:108 +msgid "ILS - Israeli New Sheqel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:107 +msgid "IDR - Indonesian Rupiah" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:105 +msgid "HTG - Haitian Gourde" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:103 +msgid "HNL - Honduran Lempira*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:101 +msgid "GYD - Guyanese Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:100 +msgid "GTQ - Guatemalan Quetzal*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:99 +msgid "GNF - Guinean Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:98 +msgid "GMD - Gambian Dalasi" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:97 +msgid "GIP - Gibraltar Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:96 +msgid "GEL - Georgian Lari" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:94 +msgid "FKP - Falkland Islands Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:93 +msgid "FJD - Fijian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:91 +msgid "ETB - Ethiopian Birr" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:90 +msgid "EGP - Egyptian Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:89 +msgid "EEK - Estonian Kroon*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:88 +msgid "DZD - Algerian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:87 +msgid "DOP - Dominican Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:85 +msgid "DJF - Djiboutian Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:84 +msgid "CZK - Czech Koruna*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:83 +msgid "CVE - Cape Verdean Escudo*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:82 +msgid "CRC - Costa Rican Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:81 +msgid "COP - Colombian Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:80 +msgid "CNY - Chinese Renminbi Yuan" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:79 +msgid "CLP - Chilean Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:77 +msgid "CDF - Congolese Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:76 +msgid "CAD - Canadian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:75 +msgid "BZD - Belize Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:74 +msgid "BWP - Botswana Pula" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:73 +msgid "BSD - Bahamian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:72 +msgid "BRL - Brazilian Real*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:71 +msgid "BOB - Bolivian Boliviano*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:70 +msgid "BND - Brunei Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:69 +msgid "BMD - Bermudian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:68 +msgid "BIF - Burundian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:67 +msgid "BGN - Bulgarian Lev" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:66 +msgid "BDT - Bangladeshi Taka" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:65 +msgid "BBD - Barbadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:64 +msgid "BAM - Bosnia & Herzegovina Convertible Mark" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:63 +msgid "AZN - Azerbaijani Manat" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:62 +msgid "AWG - Aruban Florin" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:61 +msgid "AUD - Australian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:60 +msgid "ARS - Argentine Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:59 +msgid "AOA - Angolan Kwanza*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:58 +msgid "ANG - Netherlands Antillean Gulden" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:57 +msgid "AMD - Armenian Dram" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:56 +msgid "ALL - Albanian Lek" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:55 +msgid "AFN - Afghan Afghani*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:54 +msgid "AED - United Arab Emirates Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:345 +msgid "Skrill balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:327 +msgid "Skrill IPN message received." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:283 +msgid "Skrill" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:278 +msgid "Pending payment" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:144 +msgid "The secret word must match the word submitted in the \"Merchant Tools\" section of your Skrill account." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:134 +msgid "You must use your valid Skrill merchant email. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:133 +msgid "Skrill Email" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:123 +msgid "Resell your inventory via Skrill.com (Moneybookers)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:95 +msgid "ZAR - South-African Rand" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:93 +msgid "TWD - Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:92 +msgid "TRY - New Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:91 +msgid "TND - Tunisian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:90 +msgid "THB - Thailand Baht" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:89 +msgid "SKK - Slovakian Koruna" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:86 +#: includes/common/payment-gateways/stripe.php:158 +msgid "SAR - Saudi Riyal" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:85 +msgid "RSD - Serbian dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:83 +msgid "QAR - Qatari Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:81 +msgid "OMR - Omani Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:80 +msgid "NOK - Norwegian Krone " +msgstr "" + +#: includes/common/payment-gateways/skrill.php:78 +#: includes/common/payment-gateways/stripe.php:138 +msgid "MYR - Malaysian Ringgit" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:77 +#: includes/common/payment-gateways/stripe.php:127 +msgid "MAD - Moroccan Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:74 +msgid "KRW - South-Korean Won" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:72 +msgid "JOD - Jordanian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:70 +msgid "INR - Indian Rupee" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:63 +msgid "EEK - Estonian Kroon" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:56 +msgid "AED - Utd. Arab Emir. Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:52 +msgid "Turkish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:51 +msgid "Swedish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:50 +msgid "Spanish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:49 +msgid "Russian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:48 +msgid "Romainian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:47 +msgid "Polish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:46 +msgid "Italian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:45 +msgid "Greek" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:44 +msgid "German" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:43 +msgid "French" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:42 +msgid "Finnish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:41 +msgid "English" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:40 +msgid "Dutch" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:39 +msgid "Danish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:38 +msgid "Czech" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:37 +msgid "Chinese" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:201 +msgid "There was an error processing your card: %s. Please re-enter your credit card info and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:278 +msgid "
  • There was an error processing your card: \"%s\". Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:274 +msgid "
  • There was an error processing your card. Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:177 +#: includes/common/payment-gateways/stripe.php:279 +msgid "Publishable Key" +msgstr "" + +#: includes/common/payment-gateways/pin.php:163 +msgid "API Credentials?" +msgstr "" + +#: includes/common/payment-gateways/pin.php:147 +msgid "PIN makes it easy to start accepting credit card payments with Australia’s first all-in-one online payment system. Accept all major credit cards directly on your site. Your sales proceeds are deposited to any Australian bank account, no merchant account required." +msgstr "" + +#: includes/common/payment-gateways/pin.php:57 +#: includes/common/payment-gateways/stripe.php:179 +msgid "USD - United States Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:455 +msgid "Email Footer" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:445 +msgid "Email Header" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:416 +msgid "Partner" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:409 +msgid "Vendor" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:852 +#: includes/common/payment-gateways/paypal-express.php:1126 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences\t section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:749 +msgid "Page Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:744 +msgid "Header Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:739 +msgid "Header Border Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:734 +msgid "Header Image" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:680 +msgid "Locale" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:624 +#: includes/common/payment-gateways/paypal-express.php:658 +msgid "Merchant Email" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:645 +msgid "Paypal Express Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:603 +msgid "Paypal Express Network Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:861 +msgid "Application ID (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:854 +msgid "Signature (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:847 +msgid "API Password (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:839 +msgid "API Username (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:832 +msgid "Signature (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:825 +msgid "API Password (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:817 +msgid "API Username (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:799 +msgid "This message is displayed at the top of the gateway settings page to store admins. It's a good place to inform them of your fees or put any sales messages." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:787 +msgid "Please enter your PayPal email address or business ID you want to recieve fees at." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:786 +msgid "PayPal E-mail" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:772 +msgid "Fees to Collect (%)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:375 +#: includes/public/class-mp-checkout.php:341 +msgid "Email Address" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:299 +msgid "Sorry, your order was not completed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:126 +#: includes/common/payment-gateways/paypal-express.php:780 +msgid "You will be redirected to the PayPal site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:90 +#: includes/common/payment-gateways/skrill.php:94 +msgid "USD - U.S. Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:89 +msgid "TRY - Turkish lira" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:88 +#: includes/common/payment-gateways/stripe.php:170 +msgid "THB - Thai Baht" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:87 +msgid "TWD - Taiwan New Dollars" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:86 +#: includes/common/payment-gateways/pin.php:59 +#: includes/common/payment-gateways/skrill.php:88 +#: includes/common/payment-gateways/stripe.php:162 +msgid "SGD - Singapore Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:84 +msgid "RUB - Russian Rubles" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:82 +msgid "PHP - Philippine Pesos" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:81 +#: includes/common/payment-gateways/pin.php:58 +#: includes/common/payment-gateways/skrill.php:79 +#: includes/common/payment-gateways/stripe.php:145 +msgid "NZD - New Zealand Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:79 +msgid "MXN - Mexican Peso" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:78 +msgid "MYR - Malaysian Ringgits" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:77 +#: includes/common/payment-gateways/pin.php:64 +#: includes/common/payment-gateways/skrill.php:73 +#: includes/common/payment-gateways/stripe.php:112 +msgid "JPY - Japanese Yen" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:75 +#: includes/common/payment-gateways/pin.php:63 +#: includes/common/payment-gateways/skrill.php:66 +#: includes/common/payment-gateways/stripe.php:102 +msgid "HKD - Hong Kong Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:73 +msgid "GBP - Pound Sterling" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:68 +#: includes/common/payment-gateways/pin.php:62 +#: includes/common/payment-gateways/skrill.php:59 +msgid "CAD - Canadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:67 +msgid "BRL - Brazilian Real" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:66 +#: includes/common/payment-gateways/pin.php:56 +#: includes/common/payment-gateways/skrill.php:57 +msgid "AUD - Australian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:288 +msgid "There was an error processing your card: \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:163 +msgid "When running on a live site, Paymill recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:161 +#: includes/common/payment-gateways/pin.php:157 +#: includes/common/payment-gateways/simplify.php:103 +#: includes/common/payment-gateways/stripe.php:260 +#: includes/common/payment-gateways/wepay.php:153 +msgid "Force SSL?" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:151 +msgid "Accept Visa, Mastercard, Maestro UK, Discover and Solo cards directly on your site. You don't need a merchant account or gateway. Credit cards go directly to Paymill's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:131 +msgid "CVV2" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:72 +#: includes/common/payment-gateways/pin.php:61 +#: includes/common/payment-gateways/skrill.php:65 +#: includes/common/payment-gateways/stripe.php:95 +msgid "GBP - British Pound" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:71 +#: includes/common/payment-gateways/stripe.php:173 +msgid "TRY - Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:70 +#: includes/common/payment-gateways/paypal-chained-payments.php:85 +#: includes/common/payment-gateways/skrill.php:87 +#: includes/common/payment-gateways/stripe.php:161 +msgid "SEK - Swedish Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:69 +#: includes/common/payment-gateways/skrill.php:84 +msgid "RON - Romanian Leu New" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:68 +#: includes/common/payment-gateways/paypal-chained-payments.php:83 +#: includes/common/payment-gateways/skrill.php:82 +msgid "PLN - Polish Zloty" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:67 +#: includes/common/payment-gateways/paypal-chained-payments.php:80 +#: includes/common/payment-gateways/stripe.php:143 +msgid "NOK - Norwegian Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:66 +#: includes/common/payment-gateways/skrill.php:75 +#: includes/common/payment-gateways/stripe.php:125 +msgid "LTL - Lithuanian Litas" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:65 +#: includes/common/payment-gateways/paypal-chained-payments.php:69 +#: includes/common/payment-gateways/skrill.php:60 +#: includes/common/payment-gateways/stripe.php:78 +msgid "CHF - Swiss Franc" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:64 +#: includes/common/payment-gateways/skrill.php:76 +msgid "LVL - Latvian Lat" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:63 +#: includes/common/payment-gateways/paypal-chained-payments.php:74 +#: includes/common/payment-gateways/skrill.php:69 +msgid "ILS - Israeli Shekel" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:62 +#: includes/common/payment-gateways/skrill.php:71 +msgid "ISK - Iceland Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:61 +#: includes/common/payment-gateways/paypal-chained-payments.php:76 +#: includes/common/payment-gateways/skrill.php:68 +#: includes/common/payment-gateways/stripe.php:106 +msgid "HUF - Hungarian Forint" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:60 +#: includes/common/payment-gateways/paypal-chained-payments.php:71 +#: includes/common/payment-gateways/skrill.php:62 +#: includes/common/payment-gateways/stripe.php:86 +msgid "DKK - Danish Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:59 +#: includes/common/payment-gateways/skrill.php:67 +#: includes/common/payment-gateways/stripe.php:104 +msgid "HRK - Croatian Kuna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:58 +#: includes/common/payment-gateways/paypal-chained-payments.php:70 +#: includes/common/payment-gateways/skrill.php:61 +msgid "CZK - Czech Koruna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:57 +#: includes/common/payment-gateways/skrill.php:58 +msgid "BGN - Bulgarian Leva" +msgstr "" + +#: includes/common/payment-gateways/payflow/class-mp-gateway-worker-payflow.php:123 +msgid "There was an error connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:344 +msgid "This setting will log all PayFast communication to the \"payfast.log\" file." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:342 +msgid "Log Debugging Info?" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:335 +msgid "DO NOT INPUT A VALUE UNLESS YOU HAVE SET ONE IN THE SETTINGS SECTION OF YOUR PAYFAST SETTINGS." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:333 +msgid "PayFast Passphrase" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:323 +msgid "You can find your credentials on your integration page." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:321 +msgid "PayFast Merchant Credentials" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:311 +msgid "PayFast Mode" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:308 +msgid "PayFast is a payments processing service for South Africa. We make it safe for buyers to send money and easy for sellers to receive money. More Info »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:306 +msgid "PayFast Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:285 +msgid "Your payment via PayFast for this order totaling %s is complete. The transaction number is %s." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:278 +msgid "Your payment via PayFast for this order totaling %s is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:124 +msgid "Your PayFast transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:82 +#: includes/common/payment-gateways/payfast.php:83 +msgid "PayFast" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:157 +msgid "API error: - \"%s\"" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:198 +msgid "The payment request is under process" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:140 +msgid "Order: #" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:116 +msgid "You will be redirected to the Mollie site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:73 +msgid "%sMollie%s provides a fully PCI Compliant and secure way to collect payments via iDeal, Credit Card, Bancontact / Mister Cash, SOFORT Banking, Overbooking, Bitcoin, PayPal, paysafecard and AcceptEmail." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:53 +#: includes/common/payment-gateways/mollie.php:54 +#: includes/common/payment-gateways/mollie.php:195 +#: includes/common/payment-gateways/mollie.php:245 +msgid "Mollie" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:50 +#: includes/common/payment-gateways/paymill.php:56 +#: includes/common/payment-gateways/paypal-chained-payments.php:72 +#: includes/common/payment-gateways/pin.php:60 +#: includes/common/payment-gateways/skrill.php:64 +#: includes/common/payment-gateways/stripe.php:92 +msgid "EUR - Euro" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:306 +msgid "Access Key" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:300 +msgid "You must login to the Mijireh.com dashboard to obtain the Access Key." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:299 +msgid "Credentials" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:289 +msgid "Mijireh Checkout provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:269 +msgid "Mijireh Error: " +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:89 +msgid "You will be redirected to the Mijireh.com site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:87 +msgid "Your Mijireh transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:42 +#: includes/common/payment-gateways/mijireh.php:43 +#: includes/common/payment-gateways/mijireh.php:324 +msgid "Mijireh" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:145 +msgid "These are the manual payment instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:189 +msgid "This is the email text to send to those who have made free order checkouts. You should include your free order instructions / information here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:183 +msgid "This is the free order information to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:182 +msgid "Confirmation User Information" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:177 +msgid "This is the information to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:163 +msgid "If enabled, all free orders will be automatically marked as paid." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:159 +msgid "Payment Status" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:149 +msgid "This gateway is automatically activated if order totalling 0 and it can't be disabled" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:35 +#: includes/common/payment-gateways/free_orders.php:36 +#: includes/common/payment-gateways/free_orders.php:89 +msgid "Free Order" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:34 +#: includes/common/payment-gateways/free_orders.php:197 +msgid "Free Orders" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:515 +msgid "Sandbox API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:266 +#: includes/common/payment-gateways/eway31.php:542 +msgid "eWay Rapid 3.1 Payments (beta)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:403 +msgid "Hosted Payment Page Language" +msgstr "" + +#: includes/common/payment-gateways/eway.php:373 +msgid "Note when testing in sandbox mode it will use the default eWay test API credentials. Also, please note that cart total needs to be a whole number (e.g. 10.00) in order to generate a successful transaction, otherwise the transaction will fail." +msgstr "" + +#: includes/common/payment-gateways/eway.php:267 +msgid "You will be redirected to https://www.eway.com.au to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:380 +msgid "You have chosen to checkout using %s. Please confirm your order details and click \"Submit Order\" when finished." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:272 +#: includes/common/payment-gateways/paymill.php:131 +#: includes/common/payment-gateways/stripe.php:231 +msgid "Security Code " +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Enter in MM/YYYY or MM/YY format" +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Expiration" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:321 +msgid "Delim Data" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:307 +#: includes/common/payment-gateways/paypal-payflow.php:456 +msgid "This text will appear as the footer of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:287 +#: includes/common/payment-gateways/paypal-payflow.php:440 +msgid "Email Customer (on success)" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:278 +msgid "Authorize.net default is \",\". Otherwise, get this from your credit card processor. If the transactions are not going through, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:277 +msgid "Delimeter Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:193 +msgid "Held For Review" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:310 +#: includes/common/payment-gateways/payfast.php:314 +msgid "Test" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:300 +#: includes/common/payment-gateways/pin.php:170 +#: includes/common/payment-gateways/stripe.php:272 +msgid "Secret Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:283 +msgid "Select Your Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:97 +msgid "Your payment will be processed by the iDEAL network" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:208 +msgid "These are the CubePoints to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:203 +msgid "These are the CubePoints instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:266 +msgid "If enabled, all API calls will be made to https://test.bitpay.com." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:263 +msgid "Use Test Mode?" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:259 +msgid "If checked, response fron bitpay will be stored in log file, keep it disabled unless required." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:256 +msgid "Enable Debug Log" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:249 +msgid "Full Notifications" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:231 +#: includes/common/payment-gateways/eway31.php:499 +#: includes/common/payment-gateways/eway31.php:526 +#: includes/common/payment-gateways/mollie.php:83 +#: includes/common/shipping-modules/mp-fedex.php:269 +msgid "API Key" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:222 +msgid "You can now accept a payment from any country on Earth, with no risk of fraud. To use Bitpay, you need to signup on Bitpay. \\n After completing the signup process, you can get api keys at Bitpay API key. You can read more about Bitpay at Bitpay API. \\n Bitpay requires SSL(https) for payment notifications to work." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:61 +msgid "You will be redirected to bitpay.com, for bitcoin payment. It is completely safe." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:346 +msgid "You must login to the 2Checkout vendor dashboard to obtain the seller ID and secret word. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:345 +#: includes/common/payment-gateways/authorizenet-aim.php:239 +#: includes/common/payment-gateways/paymill.php:168 +#: includes/common/payment-gateways/paypal-express.php:704 +#: includes/common/payment-gateways/simplify.php:80 +#: includes/common/payment-gateways/stripe.php:265 +#: includes/common/payment-gateways/wepay.php:158 +msgid "API Credentials" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:325 +#: includes/common/payment-gateways/_bitpay.php:220 +#: includes/common/payment-gateways/_cubepoints.php:185 +#: includes/common/payment-gateways/_ideal.php:268 +#: includes/common/payment-gateways/_payway.php:255 +#: includes/common/payment-gateways/authorizenet-aim.php:219 +#: includes/common/payment-gateways/eway.php:352 +#: includes/common/payment-gateways/eway31.php:460 +#: includes/common/payment-gateways/free_orders.php:147 +#: includes/common/payment-gateways/manual-payments.php:126 +#: includes/common/payment-gateways/mijireh.php:287 +#: includes/common/payment-gateways/mollie.php:71 +#: includes/common/payment-gateways/paymill.php:149 +#: includes/common/payment-gateways/paypal-chained-payments.php:344 +#: includes/common/payment-gateways/paypal-payflow.php:376 +#: includes/common/payment-gateways/pin.php:145 +#: includes/common/payment-gateways/simplify.php:69 +#: includes/common/payment-gateways/skrill.php:121 +#: includes/common/payment-gateways/stripe.php:249 +#: includes/common/payment-gateways/wepay.php:119 +#: includes/common/shipping-modules/mp-fedex.php:243 +#: includes/common/shipping-modules/mp-flat-rate.php:63 +#: includes/common/shipping-modules/mp-pickup.php:140 +#: includes/common/shipping-modules/mp-table-rate.php:94 +#: includes/common/shipping-modules/mp-ups.php:122 +#: includes/common/shipping-modules/mp-usps.php:167 +#: includes/common/shipping-modules/mp-weight-rate.php:110 +msgid "%s Settings" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:136 +msgid "You will be redirected to the 2Checkout site to finalize your payment." +msgstr "" + +#: includes/common/helpers.php:169 includes/public/class-mp-checkout.php:1277 +msgid "Billing" +msgstr "" + +#: includes/common/helpers.php:144 +msgid "FREE" +msgstr "" + +#: includes/common/helpers.php:134 +msgid "Coupons:" +msgstr "" + +#: includes/common/helpers.php:95 +msgid "Qty" +msgstr "" + +#: includes/common/helpers.php:94 +msgid "Sku" +msgstr "" + +#: includes/common/data.php:59 +msgid "Zip Code" +msgstr "" + +#: includes/common/class-mp-taxes.php:336 +msgid "Standard Table" +msgstr "" + +#: includes/common/class-mp-product.php:2698 +msgid "Tweet" +msgstr "" + +#: includes/common/class-mp-product.php:2321 +msgid "Notification Preferences: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2320 +msgid "Edit Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2318 +msgid "Link: %s

    " +msgstr "" + +#: includes/common/class-mp-product.php:2317 +msgid "Current Inventory: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2316 +msgid "Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2314 +msgid "This message is being sent to notify you of low stock of a product in your online store according to your preferences.

    " +msgstr "" + +#: includes/common/class-mp-product.php:1817 +msgid "" +msgstr "" + +#: includes/common/class-mp-product.php:1427 +#: includes/common/class-mp-product.php:1430 +msgid "(tax incl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1422 +#: includes/common/class-mp-product.php:1425 +msgid "(tax excl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1300 +#: includes/common/class-mp-product.php:1315 +msgid "%s each" +msgstr "" + +#: includes/common/class-mp-product.php:988 +msgid "Choose Options" +msgstr "" + +#: includes/common/class-mp-product.php:526 +msgid "Choose a %s" +msgstr "" + +#: includes/common/class-mp-product.php:284 +#: includes/common/class-mp-product.php:292 +#: includes/common/class-mp-product.php:615 +msgid "We're sorry, we only have %d of this item in stock right now." +msgstr "" + +#: includes/common/class-mp-order.php:1456 +msgid "Shipped: Track Shipment" +msgstr "" + +#: includes/common/class-mp-order.php:1049 +msgid "Order Received" +msgstr "" + +#: includes/common/class-mp-order.php:1014 +msgid "In Process" +msgstr "" + +#: includes/common/class-mp-order.php:969 +msgid "Order #" +msgstr "" + +#: includes/common/class-mp-order.php:866 +msgid "Copy billing address to shipping address" +msgstr "" + +#: includes/common/class-mp-order.php:822 +#: includes/public/class-mp-checkout.php:1314 +msgid "Special Instructions" +msgstr "" + +#: includes/common/class-mp-order.php:817 +#: includes/common/payment-gateways/stripe.php:335 +msgid "Email" +msgstr "" + +#: includes/common/class-mp-order.php:813 +#: includes/common/payment-gateways/stripe.php:341 +#: includes/public/class-mp-checkout.php:416 +msgid "Phone" +msgstr "" + +#: includes/common/class-mp-order.php:791 +#: includes/common/payment-gateways/stripe.php:337 +msgid "State" +msgstr "" + +#: includes/common/class-mp-order.php:776 +msgid "Address 1" +msgstr "" + +#: includes/common/class-mp-order.php:766 +msgid "Last Name" +msgstr "" + +#: includes/common/class-mp-order.php:762 +msgid "First Name" +msgstr "" + +#: includes/common/class-mp-installer.php:677 +msgid "MarketPress requires a database update to continue working correctly. Go to update page" +msgstr "" + +#: includes/common/class-mp-installer.php:657 +msgid "MarketPress performed a quick automatic update successfully!" +msgstr "" + +#: includes/common/class-mp-installer.php:653 +msgid "Perform Update" +msgstr "" + +#: includes/common/class-mp-installer.php:647 +msgid "Please update each subsite in your WordPress network where you have older version of the MarketPress plugin." +msgstr "" + +#: includes/common/class-mp-installer.php:641 +msgid "Depending on the amount of products you have, this update could take quite some time. Please keep this window open while the update completes. If you have products with multiple variations, the progress bar may move slower, please don't exit the window." +msgstr "" + +#: includes/common/class-mp-installer.php:632 +msgid "Product Metadata" +msgstr "" + +#: includes/common/class-mp-installer.php:601 +msgid "MarketPress requires a database update to continue working correctly.
    Below you will find a list of items that require your attention." +msgstr "" + +#: includes/common/class-mp-installer.php:600 +msgid "Update MarketPress Data" +msgstr "" + +#: includes/common/class-mp-installer.php:530 +msgid "Update Data" +msgstr "" + +#: includes/common/class-mp-installer.php:67 +msgid "Complete!" +msgstr "" + +#: includes/common/class-mp-installer.php:66 +msgid "Upgrading Database...Please Wait..." +msgstr "" + +#: includes/common/class-mp-installer.php:64 +msgid "An error occurred while updating. Please refresh this page and try again." +msgstr "" + +#: includes/common/class-mp-cart.php:2447 +msgid "Some items in your cart have fallen below the quantity you currently have in your cart. We have adjusted the quantity in your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:2443 +msgid "Some items in your cart are no longer available. We have removed these items from your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:1566 +msgid "item" +msgstr "" + +#: includes/common/class-mp-cart.php:1563 +#: includes/common/class-mp-cart.php:1568 +msgid "items" +msgstr "" + +#: includes/common/class-mp-cart.php:1363 +msgid "Items/Products added to Cart will show here." +msgstr "" + +#: includes/common/class-mp-cart.php:1362 +msgid "Your shopping cart is empty." +msgstr "" + +#: includes/common/class-mp-cart.php:1357 +msgid "View Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1241 +#: includes/common/class-mp-cart.php:1298 +#: includes/public/class-mp-short-codes.php:159 +msgid "Adding..." +msgstr "" + +#: includes/common/class-mp-cart.php:1033 +msgid "Continue Shopping?" +msgstr "" + +#: includes/common/class-mp-cart.php:961 +msgid "Secure Checkout
    Shopping is always safe and secure." +msgstr "" + +#: includes/common/class-mp-cart.php:959 +msgid "You are about to submit your order!
    Please review your order details before continuing. You will be charged immediately upon clicking \"Submit Order\"." +msgstr "" + +#: includes/common/class-mp-cart.php:956 +msgid "Continue »" +msgstr "" + +#: includes/common/class-mp-cart.php:955 +msgid "Submit Order" +msgstr "" + +#: includes/common/class-mp-cart.php:818 +msgid "There are no items in your cart - go add some !" +msgstr "" + +#: includes/common/class-mp-cart.php:816 +msgid "The cart is disabled." +msgstr "" + +#: includes/common/class-mp-cart.php:735 +msgid "Estimated %s" +msgstr "" + +#: includes/common/class-mp-cart.php:717 +msgid "Estimated Shipping" +msgstr "" + +#: includes/common/class-mp-cart.php:697 +msgid "Product Total" +msgstr "" + +#: includes/common/class-mp-cart.php:670 includes/common/class-mp-cart.php:672 +msgid "Estimated Total (%s, %s)" +msgstr "" + +#: includes/common/class-mp-cart.php:668 +msgid "Estimated Total (%s)" +msgstr "" + +#: includes/common/class-mp-cart.php:666 includes/common/class-mp-cart.php:752 +msgid "Estimated Total" +msgstr "" + +#: includes/admin/widgets/product-list.php:247 +msgid "Show Thumbnail Placeholder image (if image is not set)" +msgstr "" + +#: includes/admin/widgets/cart.php:73 +msgid "Display product price" +msgstr "" + +#: includes/admin/widgets/cart.php:71 +msgid "Display product quantity" +msgstr "" + +#: includes/admin/widgets/cart.php:69 +msgid "Display product image" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:93 +msgid "General Shipping Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:773 +msgid "If you are having conflicts with the lightbox library from your theme or another plugin you should uncheck this." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:772 +msgid "Use Built-In Lightbox for Images?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:762 +msgid "Disable Large Image Display?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:688 +msgid "Show Product Image?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:682 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:684 +msgid "Show Tags List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:676 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:678 +msgid "Show Categories List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:671 +msgid "If enabled, description excerpt will be added above Add to cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:669 +msgid "Show Excerpt?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:665 +msgid "If enabled, users will be able to choose how many of the product they want to purchase before adding to their cart. If not checked, quantity could be change later on the cart page." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:663 +msgid "Show Quantity Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:649 +msgid "Settings related to the display of individual product pages." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:648 +msgid "Product Page Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:605 +msgid "Related Products Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:573 +msgid "Show Related Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:568 +msgid "Related Product Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:549 +msgid "Order Status Entries Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:510 +msgid "Sort Products By" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:497 +msgid "Products Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:492 +msgid "Paginate Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:478 +msgid "Excerpts Length" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:473 +msgid "Show Excerpts?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:450 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:746 +msgid "Image Alignment" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:412 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:708 +msgid "Custom Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:401 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:697 +msgid "Large - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:400 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:696 +msgid "Medium - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:399 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:695 +msgid "Thumbnail - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:397 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:693 +msgid "Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:386 +msgid "Select default placeholder image thumbnail when product image is not available (if empty, plugin's built-in image will be used)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:380 +msgid "Show default product placeholder thumbnail when product image is not available?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:374 +msgid "Show Product Thumbnail?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:369 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:658 +msgid "Redirect to cart page for immediate checkout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:368 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:657 +msgid "Stay on current product page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:366 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:655 +msgid "MarketPress supports two \"flows\" for adding products to the shopping cart. After adding a product to their cart, two things can happen:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:365 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:654 +msgid "Add To Cart Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:355 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:628 +msgid "Four" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:354 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:627 +msgid "Three" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:353 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:626 +msgid "Two" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:625 +msgid "One" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:349 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:622 +msgid "Set the number of products that show up in a grid row to best fit your theme" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:348 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:621 +msgid "How many products per row?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:342 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:609 +msgid "Display as grid" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:341 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:608 +msgid "Display as list" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:339 +msgid "Product Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:334 +msgid "Settings related to the display of product lists/grids." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:333 +msgid "Product List/Grid Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:314 +msgid "Show Twitter Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:309 +msgid "Twitter" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:303 +msgid "Show Share Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:297 +msgid "Recommend" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:296 +msgid "Like" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:294 +msgid "Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:283 +msgid "Show Facebook Like Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:278 +msgid "Facebook" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:257 +msgid "Show \"Pin It\" Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:252 +msgid "Pinterest" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:246 +msgid "Social Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:193 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:202 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:211 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:220 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:229 +#: includes/multisite/class-mp-admin-multisite.php:532 +#: includes/multisite/class-mp-admin-multisite.php:541 +#: includes/multisite/class-mp-admin-multisite.php:550 +msgid "Choose a Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:191 +msgid "This page will be used as the root for your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:168 +#: includes/multisite/class-mp-admin-multisite.php:586 +msgid "Create Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "uncropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "cropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:87 +#: includes/multisite/class-mp-admin-multisite.php:121 +#: includes/multisite/class-mp-admin-multisite.php:620 +msgid "An error occurred while creating the store page. Please try again." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:66 +msgid "Choose the gateway(s) that you would like to be available for checkout." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:65 +msgid "Enabled Gateways" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:78 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:146 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:179 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:213 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:274 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:307 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:341 +msgid "Text" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:71 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:139 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:172 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:206 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:267 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:300 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:334 +msgid "Subject" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:52 +msgid "Notification Email" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:510 +msgid "Enabling this option will display label `excl. tax` or `incl. tax` after price" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:509 +msgid "Display tax label?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:504 +msgid "Enabling this option will show Price + Tax, eg. if your price is 100 and your tax 20, your price will be 120" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:416 +#: includes/multisite/class-mp-admin-multisite.php:234 +msgid "Price Format" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:366 +msgid "Enabling this field will display a textbox on the shipping checkout page for users to enter special instructions for their order. Useful for product personalization, etc." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:365 +msgid "Show Special Instructions Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:360 +msgid "Universal" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:359 +msgid "Old" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1167 +#: includes/admin/store-settings/class-mp-store-settings-general.php:358 +msgid "New" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:353 +msgid "If you already use Google Analytics for your website, you can track detailed ecommerce information by enabling this setting. Choose whether you are using the new asynchronous or old tracking code. Before Google Analytics can report ecommerce activity for your website, you must enable ecommerce tracking on the profile settings page for your website. Also keep in mind that some gateways do not reliably show the receipt page, so tracking may not be accurate in those cases. It is recommended to use the PayPal gateway for the most accurate data. More information »" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:347 +msgid "Do you want to display the product price on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:346 +msgid "Show product price on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:340 +msgid "Do you want to display the product quantity on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:339 +msgid "Show product quantity on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:333 +msgid "Do you want to display the product image on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:332 +msgid "Show product image on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:327 +msgid "This option hide floating Mini Cart in top right corner." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:326 +msgid "Disable Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:316 +msgid "If unchecked your Orders admin page will be hidden" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:315 +msgid "Show admin Orders page?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:309 +msgid "Disable Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:303 +msgid "Force Login?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:297 +msgid "Hide Out of Stock Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:555 +msgid "This will prevent multiples of the same downloadable product form being added to the cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:554 +msgid "Limit Digital Products Per-order?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:268 +msgid "If you're having issues downloading large files and have worked with your hosting provider to increase your memory limits, try enabling this - just keep in mind, it's not as secure!" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:267 +msgid "Use Alternative Download Method?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:252 +msgid "Download Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:230 +msgid "Change product post type" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:51 +msgid "%s Capabilities" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-addons.php:47 +msgid "Store Settings: Add Ons: %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:254 +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:56 +msgid "Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Edit Product Attribute %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:246 +msgid "Exporters" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:238 +msgid "Short Codes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:207 +msgid "An appropriate message for key \"%s\" could not be found." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:204 +msgid "Product attribute updated successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:203 +msgid "Product attribute added successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +msgid "Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +#: includes/admin/store-settings/class-mp-store-settings-addons.php:121 +msgid "Store Settings: Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "Store Settings: Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:118 +msgid "Store Settings: Product Tags" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:117 +msgid "Store Settings: Product Categories" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Store Settings: Product Attributes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +msgid "Store Settings: Payments" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:114 +msgid "Store Settings: Shipping" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +#: includes/admin/class-mp-store-settings-admin.php:226 +msgid "Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +msgid "Store Settings: Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:112 +msgid "Store Settings: Presentation" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:111 +msgid "Store Settings: General" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1489 +msgid "Select a Product" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1447 +msgid "Reset to Defaults" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1446 +msgid "Insert Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1202 +#: includes/admin/class-mp-shortcode-builder.php:1227 +#: includes/admin/class-mp-shortcode-builder.php:1252 +msgid "The text to show in the link." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1196 +#: includes/admin/class-mp-shortcode-builder.php:1221 +#: includes/admin/class-mp-shortcode-builder.php:1246 +msgid "Whether to return a clickable link or url." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1177 +msgid "Whether to display the cart only on store pages or not." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1171 +msgid "Whether to show or hide the product price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1165 +msgid "Whether to show or hide the product quantity." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1159 +msgid "Whether to show or hide the product image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1153 +msgid "The text displayed before the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1147 +msgid "The title of the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1058 +#: includes/admin/class-mp-shortcode-builder.php:1121 +msgid "A label to prepend to the price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1032 +#: includes/admin/class-mp-shortcode-builder.php:1127 +msgid "What context for display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1004 +msgid "Set the alignment of the image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:998 +msgid "Set a custom pixel width/height. If omitted defaults to the size set by \"context\"." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:993 +msgid "Widget" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:988 +msgid "What context for preset size options." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:982 +#: includes/admin/class-mp-shortcode-builder.php:1026 +#: includes/admin/class-mp-shortcode-builder.php:1052 +#: includes/admin/class-mp-shortcode-builder.php:1077 +#: includes/admin/class-mp-shortcode-builder.php:1096 +#: includes/admin/class-mp-shortcode-builder.php:1115 +msgid "The ID of the product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:963 +msgid "Whether to display the product meta (e.g. price, buy button)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:738 +#: includes/admin/class-mp-shortcode-builder.php:905 +#: includes/admin/class-mp-shortcode-builder.php:958 +#: includes/admin/class-mp-shortcode-builder.php:992 +#: includes/admin/class-mp-shortcode-builder.php:1035 +#: includes/admin/class-mp-shortcode-builder.php:1130 +#: includes/admin/class-mp-shortcode-builder.php:1349 +msgid "List" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:957 +#: includes/admin/class-mp-shortcode-builder.php:991 +#: includes/admin/class-mp-shortcode-builder.php:1034 +#: includes/admin/class-mp-shortcode-builder.php:1129 +msgid "Single" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:953 +msgid "Whether and what context of image size to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:948 +msgid "Full" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:943 +msgid "Whether and what type of content to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:937 +msgid "Whether to display the product title." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:931 +msgid "The ID of the product to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:747 +#: includes/admin/class-mp-shortcode-builder.php:914 +msgid "Hide" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:746 +#: includes/admin/class-mp-shortcode-builder.php:913 +msgid "Show" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:744 +#: includes/admin/class-mp-shortcode-builder.php:911 +msgid "Whether or not to show the product filters." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:724 +#: includes/admin/class-mp-shortcode-builder.php:891 +#: includes/admin/class-mp-shortcode-builder.php:1335 +msgid "Limits list to a specific product tag." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:713 +#: includes/admin/class-mp-shortcode-builder.php:880 +#: includes/admin/class-mp-shortcode-builder.php:1324 +msgid "Limits list to a specific product category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:706 +#: includes/admin/class-mp-shortcode-builder.php:873 +#: includes/admin/class-mp-shortcode-builder.php:1317 +msgid "Direction to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:684 +#: includes/admin/class-mp-shortcode-builder.php:851 +#: includes/admin/class-mp-shortcode-builder.php:1295 +msgid "What field to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:678 +#: includes/admin/class-mp-shortcode-builder.php:845 +#: includes/admin/class-mp-shortcode-builder.php:1283 +msgid "How many products to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:672 +#: includes/admin/class-mp-shortcode-builder.php:839 +#: includes/admin/class-mp-shortcode-builder.php:1277 +msgid "The page number to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:666 +#: includes/admin/class-mp-shortcode-builder.php:833 +#: includes/admin/class-mp-shortcode-builder.php:1271 +msgid "Whether to paginate the product list. This is useful to only show a subset." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:808 +msgid "How many related items to show." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:790 +msgid "How to relate the products" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:784 +msgid "The product to show related items for." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:765 +msgid "The maximum number of products to display" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:647 +msgid "Comma separated list of tags (term_id) to include. For example, include=5,27 means tags that have the term_id 5 or 27 will be the only tags displayed. Defaults to include everything." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:641 +msgid "Comma separated list of tags (term_id) to exclude. For example, exclude=5,27 means tags that have the term_id 5 or 27 will NOT be displayed. Defaults to exclude nothing." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:633 +#: includes/admin/class-mp-shortcode-builder.php:1420 +msgid "Sort order." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:629 +#: includes/admin/class-mp-shortcode-builder.php:1416 +msgid "Count" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:626 +#: includes/admin/class-mp-shortcode-builder.php:1413 +msgid "Order of the tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:620 +msgid "The text/space between tags)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:616 +msgid "UL with a class of \"wp-tag-cloud\"" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:615 +msgid "separated by whitespace defined by \"separator\" parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:613 +msgid "Format of the cloud display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:607 +msgid "The number of actual tags to display in the cloud. (Use \"0\" to display all tags.)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:601 +msgid "Unit of measure as pertains to the smallest and largest values. This can be any CSS length value, e.g. pt, px, em, %." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:595 +msgid "The text size of the tag with the largest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:589 +msgid "The text size of the tag with the smallest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:570 +msgid "The \"tabindex\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:564 +msgid "The \"name\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:558 +msgid "The \"id\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:552 +msgid "Which category ID is selected." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:540 +msgid "The max depth. This is ignored unless hierarchical is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:536 +#: includes/multisite/template-functions.php:816 +msgid "No Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:414 +#: includes/admin/class-mp-shortcode-builder.php:546 +msgid "Calculates link or post counts by including items from child categories. If show_counts and hierarchical are true this is automatically set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:409 +msgid "Value of n (some number) specifies the depth (or level) to descend in displaying Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:408 +msgid "Show only top level Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:407 +msgid "All Categories displayed in flat (no indent) form (overrides hierarchical)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:406 +msgid "All Categories and child Categories (Default)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:402 +msgid "This parameter controls how many levels in the hierarchy of Categories are to be included in the list of Categories. NOTE: The \"hierarchical\" argument, which is disabled by default, will override the depth argument, unless it is true. When the argument is false, it will display all of the categories. When it is enabled it will use the value in the \"depth\" argument." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:396 +#: includes/admin/class-mp-shortcode-builder.php:1394 +msgid "Sets the number of Categories to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:390 +#: includes/admin/class-mp-shortcode-builder.php:534 +msgid "Set the text to show when no categories are listed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:384 +msgid "Set the title and style of the outer list item. If present but empty, the outer list item will not be displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:378 +#: includes/admin/class-mp-shortcode-builder.php:528 +msgid "Display sub-categories as inner list items (below the parent list item) or inline." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:368 +#: includes/admin/class-mp-shortcode-builder.php:511 +msgid "Exclude category-tree from the results. The parameter include must be empty. If the hierarchical parameter is true, then use exclude instead of exclude_tree." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:354 +msgid "Only include these categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:340 +#: includes/admin/class-mp-shortcode-builder.php:356 +#: includes/admin/class-mp-shortcode-builder.php:370 +#: includes/admin/class-mp-shortcode-builder.php:496 +#: includes/admin/class-mp-shortcode-builder.php:513 +msgid "Select Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:338 +#: includes/admin/class-mp-shortcode-builder.php:494 +msgid "Exclude one or more categories from the results. The parameter include must be empty." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:332 +msgid "Set a URI for an image (usually an rss feed icon) to act as a link to each categories' rss-2 feed. This parameter overrides the feed parameter. There is no default for this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:320 +msgid "Display a link to each category's rss-2 feed and set the link text to display. The default is no text and no feed displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:313 +#: includes/admin/class-mp-shortcode-builder.php:487 +msgid "Any" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:307 +#: includes/admin/class-mp-shortcode-builder.php:481 +msgid "Only display categories that are children of the category identified by this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:301 +msgid "Sets whether a category's description is inserted into the title attribute of the links created (i.e. <a title=\"<em>Category Description</em>\" href=\"...)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:295 +#: includes/admin/class-mp-shortcode-builder.php:475 +msgid "Toggles the display of categories with no posts." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:289 +#: includes/admin/class-mp-shortcode-builder.php:469 +#: includes/admin/class-mp-shortcode-builder.php:1388 +msgid "Toggles the display of the current count of posts in each category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:279 +msgid "Style to display the categories list in. A value of list displays the categories as list items while none generates no special display method (the list items are separated by
    tags)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:269 +#: includes/admin/class-mp-shortcode-builder.php:449 +#: includes/admin/class-mp-shortcode-builder.php:1378 +msgid "Sort order for categories (either ascending or descending)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:259 +#: includes/admin/class-mp-shortcode-builder.php:439 +#: includes/admin/class-mp-shortcode-builder.php:1368 +msgid "Sort categories alphabetically, by unique Category ID, or by the count of posts in that Category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:253 +#: includes/admin/class-mp-shortcode-builder.php:433 +msgid "If a value is entered, causes the display of a link to all categories if the style is set to list." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:219 +msgid "Select an Action" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:217 +msgid "What would you like to do?" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:216 +#: includes/admin/class-mp-shortcode-builder.php:1522 +msgid "Add E-Commerce Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:197 +msgid "Display a list of links to your store pages." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:196 +msgid "Display a link or url to the order status page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:195 +msgid "Display a link or url to the current products list page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:194 +msgid "Display a link or url to the current store page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:193 +msgid "Display a link or url to the current shopping cart page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:192 +msgid "Display the cart widget." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:191 +msgid "Display the full product meta box with price and buy now/add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:190 +msgid "Display the product stock." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:189 +msgid "Display the product SKU number(s)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:188 +msgid "Display the product price (and sale price)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:187 +msgid "Display the buy or add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:186 +msgid "Display the featured image of a given product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:185 +msgid "Display a single product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:184 +msgid "Display a list of products according to preference." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:183 +msgid "Display products related to the one being viewed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:182 +msgid "Display a list of popular products ordered by sales." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:180 +msgid "Display an HTML dropdown of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:179 +msgid "Display an HTML list of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:178 +msgid "Display a cloud or list of your product tags." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:655 +msgid "Setup your payment gateway" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:643 +#: includes/admin/class-mp-setup-wizard.php:649 +msgid "Other Gateways" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:617 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:150 +msgid "Select which calculated shipping methods the customer will be able to choose from." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:601 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:134 +#: includes/public/class-mp-checkout.php:82 +msgid "Shipping Method" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:568 +msgid "I want to charge shipping" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:523 +#: includes/admin/store-settings/class-mp-store-settings-general.php:503 +msgid "Show Price + Tax?" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:507 +msgid "I.e. Taxes, VAT, GST, etc" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:491 +#: includes/admin/store-settings/class-mp-store-settings-general.php:471 +msgid "Current Rates" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:473 +msgid "Default Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:434 +#: includes/admin/class-mp-setup-wizard.php:442 +#: includes/admin/store-settings/class-mp-store-settings-general.php:386 +#: includes/admin/store-settings/class-mp-store-settings-general.php:394 +#: includes/multisite/class-mp-admin-multisite.php:204 +#: includes/multisite/class-mp-admin-multisite.php:212 +msgid "Select a Currency" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:414 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:105 +msgid "Choose Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:411 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:103 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:104 +msgid "All Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:410 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:102 +msgid "These are the countries that you will ship to." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:409 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:101 +msgid "Target Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:401 +msgid "Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:387 +#: includes/admin/store-settings/class-mp-store-settings-general.php:640 +msgid "Zip/Postal Code Label" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:352 +#: includes/admin/store-settings/class-mp-store-settings-general.php:606 +msgid "Select a State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:335 +#: includes/admin/store-settings/class-mp-store-settings-general.php:590 +msgid "Select A Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:332 +#: includes/admin/store-settings/class-mp-store-settings-general.php:587 +msgid "Select a Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:324 +msgid "Location" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:304 +#: includes/admin/class-mp-setup-wizard.php:312 +#: includes/admin/class-mp-store-settings-admin.php:129 +#: includes/admin/class-mp-store-settings-admin.php:262 +msgid "Quick Setup" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:289 +msgid "MarketPress setup is not complete! Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2479 +msgid "Enter your product name here" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2440 +msgid "Select a %s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2426 +msgid "Each product variation needs to have product attributes assigned to it so the system knows how to differentiate one product variation from the other. It is important that you assign a category to this product before choosing any attributes." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2409 +msgid "If you would like this variation to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2320 +msgid "Sale Price (if applicable)" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2281 +msgid "If you would like the description to be different than the main product enter it here." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2229 +msgid "Image" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2202 +#: includes/admin/class-mp-shortcode-builder.php:226 +msgid "Attributes" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2166 +msgid "Create your product variations here. You can reorder variations by using the number to left of each variation, or delete one by clicking the \"x\" to the right of each variation. NOTE: The variation that shows up first in this list will be considered the \"main variation\". The details from this variation will be used in product listings." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2061 +#: includes/admin/class-mp-products-admin.php:2332 +msgid "Value must be less than regular price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2043 +#: includes/admin/class-mp-products-admin.php:2306 +msgid "Regular Price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2023 +#: includes/admin/class-mp-products-admin.php:2286 +msgid "External URL" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1988 +#: includes/admin/class-mp-products-admin.php:2245 +msgid "Enter the quantity that you have available to sell." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1987 +#: includes/admin/class-mp-products-admin.php:2244 +msgid "Inventory Count" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1977 +#: includes/admin/class-mp-products-admin.php:2234 +msgid "Track Inventory?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1871 +msgid "%1$sProduct Images%2$s %3$sAdd images of the product. The first image on the list is the featured image for this product (you can reorder images on the list)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1806 +msgid "Add variations for this product. e.g. If you are selling t-shirts, you can create Color & Size variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1804 +msgid "%3$sAdd variations for%2$s %1$sProduct%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1776 +msgid "This product has a multiple variations %1$s(e.g. Multiple colors, sizes)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1775 +msgid "This is a unique product without variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1700 +msgid "Extra Shipping Cost %1$s(if applicable)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1659 +#: includes/admin/class-mp-products-admin.php:2112 +#: includes/admin/class-mp-products-admin.php:2359 +msgid "Weight" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1636 +#: includes/admin/class-mp-products-admin.php:2098 +#: includes/admin/class-mp-products-admin.php:2416 +msgid "Please enter a valid tax rate" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1531 +msgid "Limit Per Order %1$s(limit the number of the item a shopper can buy per order)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1513 +msgid "SKU %1$s(Stock Keeping Unit)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "%1$sPrice, Inventory & Variants%2$s %3$sSet price, manage inventory and create Product Variants (if appropriate for your product).%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "Product Variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1480 +msgid "External / Affiliate Link" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1471 +msgid "Digital Download" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1470 +msgid "Physical / Tangible Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1464 +msgid "Product Kind %1$s(Physical Product, Digital, etc)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1426 +msgid "Choose Products" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1420 +msgid "If you would like, you can choose specific related products instead of using the ones generated by MarketPress" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1019 +msgid "Changes saved successfully" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:826 +msgid "Option cannot be saved. Try again." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:821 +msgid "Option saved successfully." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:467 +msgid "Img" +msgstr "" + +#: includes/admin/class-mp-product-attributes-list-table.php:57 +msgid "Product attribute(s) deleted successfully." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:162 +msgid "- Create New Variation -" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:144 +msgid "Only lowercase letters and dashes (-) are allowed." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:139 +msgid "If a slug is not entered, it will be generated automatically. Max 32 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:138 +#: includes/admin/class-mp-product-attributes-list-table.php:23 +msgid "Slug" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:130 +msgid "Max 45 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:123 +msgid "Use the numbers on the left to sort. To delete - click the \"X\" to the right of each row." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:122 +msgid "Attribute Options" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:121 +msgid "Add Option" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:105 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:523 +msgid "Sort Order" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:87 +msgid "Alphabetical" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:86 +msgid "ID" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:84 +msgid "Select how the options will be sorted." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:82 +msgid "Sort By" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:75 +msgid "The name of the attribute (e.g. color, size, etc)" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:74 +msgid "Attribute Name" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:69 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Product Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Product Attributes" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:71 +msgid "You can choose to make this page one of the following core store pages." +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:66 +msgid "Network Store Base" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:61 +msgid "Checkout Page" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:52 +msgid "Store Page Settings" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1108 +msgid "Display billing/shipping info for this customer" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1097 +msgid "View order “%s”" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1072 +msgid "Flag as:" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:952 +msgid "Move To Trash" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:948 +msgid " Received" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:927 +msgid "Enter coupon code here" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:812 +msgid "The order status could not be updated due to unexpected error. Please try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:740 +msgid "An invalid bulk action was requested. Please go back and try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:692 +msgid "The order status for order ID %1$s was updated successfully." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:688 +msgid "Order statuses successfully updated." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:530 +msgid "Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:518 +msgid "Actual Shipping Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:513 +msgid "Method Paid For" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:504 +msgid "Amount Collected" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:477 +msgid "DHL" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:408 +msgid "There is no IPN history to show at this time" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:345 +msgid "Type" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:343 +msgid "Gateway" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:301 +#: includes/common/template-functions.php:528 +msgid "Order History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:291 +msgid "IPN History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:283 +msgid "Customer Info" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:279 +msgid "Order Details" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:157 +msgid "All Dates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:320 +msgid "Add Pages to Menu" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:318 +msgid "Add-ons" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:317 +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "User Capabilities" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:316 +#: includes/admin/class-mp-setup-wizard.php:631 +#: includes/admin/store-settings/class-mp-store-settings-payments.php:50 +msgid "Payment Gateways" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:315 +msgid "Shipping Rates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:312 +msgid "Configure" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:309 +#: includes/admin/class-mp-products-admin.php:466 +#: includes/admin/class-mp-shortcode-builder.php:797 +msgid "Tags" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:308 +#: includes/admin/class-mp-products-admin.php:465 +msgid "Categories" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:300 +msgid "Manage" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:297 +msgid "Here's some quick links to manage your store and products." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:288 +msgid "low in stock" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:287 +msgid "%s product" +msgid_plural "%s products" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/admin/class-mp-dashboard-widgets.php:280 +msgid "received" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:279 +#: includes/admin/class-mp-dashboard-widgets.php:283 +msgid "%s order" +msgid_plural "%s orders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/admin/class-mp-dashboard-widgets.php:276 +msgid "Stock & Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:261 +msgid "Last 30 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:256 +msgid "Last 7 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:251 +msgid "Yesterday" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:248 +#: includes/admin/class-mp-dashboard-widgets.php:253 +#: includes/admin/class-mp-dashboard-widgets.php:258 +#: includes/admin/class-mp-dashboard-widgets.php:263 +msgid " Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:246 +msgid "Today" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:241 +msgid "Welcome back! Here's a quick summary of your store's performance." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:196 +#: includes/admin/class-mp-products-admin.php:895 +msgid "No products out of stock." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:136 +#: includes/admin/class-mp-products-admin.php:839 +msgid "Stock Level" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:135 +#: includes/admin/class-mp-products-admin.php:838 +msgid "Variation" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:121 +msgid "Low Stock (%s)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:116 +msgid "Store Management" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:115 +msgid "Store Reports" +msgstr "" + +#: includes/admin/class-mp-ajax.php:579 +#: includes/admin/class-mp-orders-admin.php:520 +#: includes/common/payment-gateways/2checkout.php:370 +#: includes/common/payment-gateways/authorizenet-aim.php:264 +#: includes/common/payment-gateways/mollie.php:93 +#: includes/common/payment-gateways/paymill.php:196 +#: includes/common/payment-gateways/pin.php:190 +#: includes/common/payment-gateways/skrill.php:157 +#: includes/common/payment-gateways/skrill.php:168 +#: includes/common/payment-gateways/wepay.php:143 +#: includes/public/class-mp-checkout.php:404 +msgid "Select One" +msgstr "" + +#: includes/admin/class-mp-ajax.php:511 +msgid "Oops... we could not locate any orders by that ID. Please double check your order ID and try again." +msgstr "" + +#: includes/admin/class-mp-ajax.php:482 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:166 +#: includes/multisite/class-mp-admin-multisite.php:584 +msgid "Edit Page" +msgstr "" + +#: includes/admin/class-mp-ajax.php:346 +msgid "Cancel " +msgstr "" + +#: includes/admin/class-mp-ajax.php:345 +msgid "Save " +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "Edit Description" +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "HTML Markup" +msgstr "" + +#: includes/admin/class-mp-ajax.php:333 +msgid "Plain Text Only" +msgstr "" + +#: includes/admin/class-mp-ajax.php:329 +msgid "Additional Content / Information for this Variation" +msgstr "" + +#: includes/admin/class-mp-ajax.php:317 +#: includes/admin/class-mp-products-admin.php:1762 +msgid "Allow this product to be purchased even if it's out of stock" +msgstr "" + +#: includes/admin/class-mp-ajax.php:313 +#: includes/admin/class-mp-products-admin.php:1711 +msgid "Track Product Inventory" +msgstr "" + +#: includes/admin/class-mp-ajax.php:300 +msgid "Extra Shipping Cost (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:295 +msgid "Ounces:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:294 +msgid "Pounds:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:292 +msgid "Kilograms:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:287 +#: includes/admin/class-mp-products-admin.php:1649 +msgid "Charge Shipping" +msgstr "" + +#: includes/admin/class-mp-ajax.php:273 +#: includes/admin/class-mp-products-admin.php:1623 +#: includes/admin/store-settings/class-mp-store-settings-general.php:454 +msgid "Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:272 +#: includes/admin/class-mp-products-admin.php:1622 +#: includes/admin/class-mp-products-admin.php:2090 +#: includes/admin/class-mp-products-admin.php:2408 +msgid "Special Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:271 +#: includes/admin/class-mp-products-admin.php:1625 +#: includes/admin/class-mp-products-admin.php:2092 +msgid "If you would like this product to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-ajax.php:268 +#: includes/admin/class-mp-products-admin.php:1599 +msgid "Charge Taxes (Special Rate)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:256 +#: includes/admin/class-mp-products-admin.php:1593 +#: includes/admin/class-mp-products-admin.php:2077 +#: includes/admin/class-mp-products-admin.php:2348 +msgid "End Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:255 +#: includes/admin/class-mp-products-admin.php:1589 +#: includes/admin/class-mp-products-admin.php:2072 +msgid "Start Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:1568 +msgid "Enter Sale Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:250 +#: includes/admin/class-mp-products-admin.php:1547 +msgid "Set up a Sale for this Product" +msgstr "" + +#: includes/admin/class-mp-ajax.php:206 includes/admin/class-mp-ajax.php:223 +msgid "Enter " +msgstr "" + +#: includes/admin/class-mp-ajax.php:193 +msgid "Browse" +msgstr "" + +#: includes/admin/class-mp-ajax.php:184 includes/admin/class-mp-ajax.php:192 +msgid "http://" +msgstr "" + +#: includes/admin/class-mp-ajax.php:183 +msgid "External Product URL" +msgstr "" + +#: includes/admin/class-mp-ajax.php:237 +msgid "Limit Per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:177 +#: includes/admin/class-mp-products-admin.php:1520 +msgid "Enter Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:174 +#: includes/admin/class-mp-products-admin.php:1512 +msgid "Enter SKU" +msgstr "" + +#: includes/admin/class-mp-ajax.php:173 +msgid "(Stock Keeping Unit)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:158 +msgid "Remove Image" +msgstr "" + +#: includes/admin/class-mp-ajax.php:74 +msgid "Variation Draft" +msgstr "" + +#: includes/admin/class-mp-admin.php:296 +#: includes/admin/class-mp-dashboard-widgets.php:70 +msgid "Please wait...saving in progress..." +msgstr "" + +#: includes/admin/class-mp-admin.php:295 +#: includes/admin/class-mp-dashboard-widgets.php:69 +msgid "Input is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:294 +#: includes/admin/class-mp-dashboard-widgets.php:68 +msgid "Valid number is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:292 +#: includes/admin/class-mp-dashboard-widgets.php:66 +msgid "Delete %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:291 +#: includes/admin/class-mp-dashboard-widgets.php:65 +msgid "Delete %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:290 +#: includes/admin/class-mp-dashboard-widgets.php:64 +msgid "Update inventory for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:289 +#: includes/admin/class-mp-dashboard-widgets.php:63 +msgid "Update inventory for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:288 +#: includes/admin/class-mp-dashboard-widgets.php:62 +msgid "Update price for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:287 +#: includes/admin/class-mp-dashboard-widgets.php:61 +msgid "Update prices for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:285 +#: includes/admin/class-mp-dashboard-widgets.php:59 +msgid "Creating variations, please wait..." +msgstr "" + +#: includes/admin/class-mp-admin.php:96 +msgid "The following payment gateways have been deprecated, Cubepoints, Bitpay, iDEAL, Skrill, Google Checkout. If you were using one of these gateways, please setup a new payment gateway here." +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:61 +msgid "Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:71 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:71 +#: includes/common/class-mp-gdpr.php:399 includes/common/class-mp-order.php:872 +#: includes/common/helpers.php:164 includes/public/class-mp-checkout.php:1434 +msgid "Shipping Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:66 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:66 +#: includes/common/class-mp-gdpr.php:392 includes/common/class-mp-order.php:864 +#: includes/common/helpers.php:163 includes/public/class-mp-checkout.php:1427 +msgid "Billing Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:61 +msgid "Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:258 +msgid "Shipping Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:256 +msgid "Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:235 +msgid "Payment Method: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:79 +msgid "The dir %s not exist or not writeable" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:239 +msgid "Shop header/logo" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:233 +msgid "Choose a template" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:226 +msgid "Template Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:221 +msgid "Disable automatic creation/attachment of invoices when only free products are ordered" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:220 +msgid "Disable for free products" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:216 +msgid "Attach invoice to" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:214 +msgid "Customer Order Shipped email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:212 +msgid "Customer New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:211 +msgid "Admin New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:206 +msgid "download" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:205 +msgid "How do you want to view the PDF?" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:203 +msgid "Open the PDF in a new browser tab/window" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:202 +msgid "Download the PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:158 +msgid "Export PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:103 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:106 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:109 +msgid "You can't download this order invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:76 +msgid "Invalid Request" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:72 +msgid "Order not exist!" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:67 +msgid "Invalid ID" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1293 +msgid "Coupon added successfully" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1292 +msgid "Please enter a code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1247 +msgid "No end" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1200 +msgid "Valid Dates" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1195 +msgid "Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1027 +msgid "No Coupons found in Trash" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1026 +msgid "No Coupons Found" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1025 +msgid "Search Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1024 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1028 +msgid "View Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1023 +msgid "New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1020 +msgid "Create New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1017 +msgid "Manage Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1002 +msgid "An error occurred while removing your coupon. Please try again." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:964 +msgid "Coupon can't be applied to this cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:951 +msgid "Invalid coupon code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:794 +msgid "Help Text" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:789 +msgid "Form Title" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:783 +msgid "Coupons Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:764 +msgid "End Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:758 +msgid "Does coupon have an end date?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:696 +msgid "Select Products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:688 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:723 +#: includes/common/payment-gateways/paypal-payflow.php:402 +msgid "User" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:638 +msgid "Max Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:636 +msgid "Enter the maximum number of times this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:623 +msgid "Leave blank to allow all other coupons." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:622 +msgid "Select combinable coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:618 +msgid "Can this coupon be combined with other coupons?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:613 +msgid "Apply to each applicable item once per cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:612 +msgid "Apply to each applicable item and quantity ordered" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:609 +msgid "How should the discount amount be applied?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:605 +msgid "Discount Amount" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:604 +msgid "Value must either be a decimal number or a percentage" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:602 +msgid "If you would like to give a percentage-based discount make sure to include the percent (%) symbol. Otherwise, the discount will be applied as a fixed amount off." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:595 +msgid "Letters and Numbers only." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:589 +msgid "Coupon Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:447 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:795 +msgid "More than one code? That's OK! Just be sure to enter one at a time." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:444 +msgid "Apply Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:314 +msgid "Coupon Discounts" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:89 +msgid "1 add-on disabled" +msgid_plural "%s add-ons disabled" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/addons/class-mp-addons-list-table.php:84 +msgid "1 add-on enabled" +msgid_plural "%s add-ons enabled" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Disabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Enable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:129 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:67 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:135 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:168 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:202 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:263 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:296 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:330 +msgid "Enabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +msgid "Disable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:34 +msgid "Disable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:33 +msgid "Enable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:21 +#: includes/admin/class-mp-products-admin.php:2280 +#: includes/common/class-mp-product.php:2916 +msgid "Description" +msgstr "" + +#: includes/common/template-functions.php:2889 +#: includes/multisite/template-functions.php:407 +msgid "Popularity (Least Popular - Most Popular)" +msgstr "Popularitate (Mai Puţin Popular - Mai Popular)" + +#: includes/common/template-functions.php:2888 +#: includes/multisite/template-functions.php:406 +msgid "Popularity (Most Popular - Least Popular)" +msgstr "Popularitate (Mai Popular - Mai Puţin Popular)" + +#: includes/common/template-functions.php:2885 +#: includes/multisite/template-functions.php:403 +msgid "Name (Z-A)" +msgstr "Nume (Z-A)" + +#: includes/common/template-functions.php:2884 +#: includes/multisite/template-functions.php:402 +msgid "Name (A-Z)" +msgstr "Nume (A-Z)" + +#: includes/common/template-functions.php:2883 +#: includes/multisite/template-functions.php:401 +msgid "Release Date (Oldest to Latest)" +msgstr "" + +#: includes/common/template-functions.php:2882 +#: includes/multisite/template-functions.php:400 +msgid "Release Date (Latest to Oldest)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:284 +msgid "paid" +msgstr "plătit" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "One Time Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Customer Counter" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Daily Pickup" +msgstr "Colectare Zilnică" + +#: includes/common/shipping-modules/mp-ups.php:182 +msgid "For the most accurate rates, please select the appropriate pick up type for your business." +msgstr "" + +#: includes/admin/class-mp-admin.php:374 +msgid "Page saved." +msgstr "Pagină salvată." + +#: includes/admin/class-mp-admin.php:370 +msgid "Custom field deleted." +msgstr "" + +#: includes/admin/class-mp-admin.php:369 +msgid "Custom field updated." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:541 +msgid "%s - The payment request expired, - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:536 +msgid "%s - The payment not credited in merchants bitpay account, action required. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:252 +msgid "If enabled, you will recieve an email for each status update on payment." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:240 +msgid "Speed at which the bitcoin transaction registers as \"confirmed\" to the store. This overrides your merchant settings on the Bitpay website." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:238 +msgid "Transaction Speed" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:244 +msgid "Low" +msgstr "Scăzut" + +#: includes/common/payment-gateways/_bitpay.php:243 +msgid "Medium" +msgstr "Medie" + +#: includes/common/payment-gateways/_bitpay.php:242 +msgid "High" +msgstr "Înaltă" + +#: includes/common/payment-gateways/_bitpay.php:177 +#: includes/common/payment-gateways/_bitpay.php:517 +#: includes/common/payment-gateways/_bitpay.php:522 +msgid "%s - The payment request is under process. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:175 +#: includes/common/payment-gateways/_bitpay.php:527 +msgid "%s - The payment request has been processed - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:150 +#: includes/common/payment-gateways/_bitpay.php:294 +msgid "Incorrect order invoice, please contact site administrator" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:141 +msgid "We could not verify order invoice details, please try again or contact site administrator for help" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:81 +msgid "Login to Simplify to get your API credentials. Enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:605 +#: includes/common/payment-gateways/paypal-express.php:647 +msgid "Express Checkout is PayPal's premier checkout solution, which streamlines the checkout process for buyers and keeps them on your site after making a purchase. Unlike PayPal Pro, there are no additional fees to use Express Checkout, though you may need to do a free upgrade to a business account. More Info »" +msgstr "" + +#. Plugin URI of the plugin/theme +msgid "https://premium.wpmudev.org/project/e-commerce/" +msgstr "https://premium.wpmudev.org/project/e-commerce/" + +#. Author of the plugin/theme +msgid "WPMU DEV" +msgstr "WPMU DEV" + +#: includes/admin/class-mp-orders-admin.php:541 +#: includes/admin/class-mp-orders-admin.php:543 +msgid "Tracking Number" +msgstr "" + +#: includes/common/class-mp-order.php:805 +#: includes/common/payment-gateways/stripe.php:336 +#: includes/public/class-mp-checkout.php:402 +msgid "Country" +msgstr "Țara" + +#: includes/common/class-mp-order.php:784 +#: includes/common/payment-gateways/stripe.php:338 +msgid "City" +msgstr "Localitate" + +#: includes/common/class-mp-order.php:780 +msgid "Address 2" +msgstr "Adresă 2" + +#: includes/common/payment-gateways/stripe.php:340 +msgid "Address" +msgstr "Adresă" + +#: includes/common/class-mp-cart.php:752 includes/common/class-mp-gdpr.php:378 +msgid "Order Total" +msgstr "Total Comandă" + +#: includes/admin/class-mp-orders-admin.php:360 +msgid "Payment Total" +msgstr "Total Plată" + +#: includes/admin/class-mp-orders-admin.php:347 +msgid "Transaction ID" +msgstr "ID Tranzacţie" + +#: includes/common/payment-gateways/wepay.php:207 +msgid "The WePay Card Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:186 +#: includes/common/shipping-modules/mp-fedex.php:283 +msgid "Account ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:179 +msgid "Access Token" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:172 +msgid "Client Secret" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:165 +msgid "Client ID" +msgstr "ID Client" + +#: includes/common/payment-gateways/wepay.php:159 +msgid "You must login to WePay to get your API credentials. Make sure to check \"Tokenize credit cards\" option under \"API Keys\" section of your WePay app." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:154 +msgid "When in live mode it is recommended to use SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:148 +msgid "Donation" +msgstr "Donaţie" + +#: includes/common/payment-gateways/wepay.php:147 +msgid "Event" +msgstr "Eveniment" + +#: includes/common/payment-gateways/wepay.php:146 +msgid "Personal" +msgstr "Personal" + +#: includes/common/payment-gateways/wepay.php:145 +msgid "Service" +msgstr "Servicii" + +#: includes/common/payment-gateways/wepay.php:144 +msgid "Goods" +msgstr "Bunuri" + +#: includes/common/payment-gateways/wepay.php:141 +msgid "Choose type of payments" +msgstr "Alegeţi tipurile de plăţi" + +#: includes/common/payment-gateways/wepay.php:140 +msgid "Checkout Type" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:134 +msgid "Staging" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:131 +msgid "Choose STAGING if you have registered the app on stage.wepay.com, or PRODUCTION if you registered on www.wepay.com" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:36 +#: includes/common/payment-gateways/wepay.php:299 +msgid "WePay" +msgstr "WePay" + +#: includes/common/payment-gateways/_payway.php:366 +msgid "Rejected - A payment was rejected." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:360 +msgid "Failed - A payment was rejected due to an error." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:342 +msgid "PayWay balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:298 +msgid "Full path of the cacerts.crt file" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:284 +msgid "User Name" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:277 +msgid "Biller Code" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:273 +msgid "Log Directory" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:266 +msgid "Encryption Key" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:60 +msgid "Your PayWay transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:40 +#: includes/common/payment-gateways/_payway.php:41 +msgid "PayWay" +msgstr "PayWay" + +#: includes/common/payment-gateways/paypal-chained-payments.php:862 +msgid "You must register this application with PayPal using your business account login to get an Application ID that will work with your API credentials. A bit of a hassle, but worth it! In the near future we will be looking for ways to simplify this process. Register then submit your application while logged in to the developer portal. Note that you do not need an Application ID for testing in sandbox mode. More Information »" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:818 +#: includes/common/payment-gateways/paypal-chained-payments.php:840 +#: includes/common/payment-gateways/paypal-express.php:705 +msgid "You must login to PayPal and create an API signature to get your credentials. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:378 +msgid "Use Payflow payment gateway to accept online payments using your Internet merchant account and processing network. PayPal Payflow Pro is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:595 +msgid "Tags Only" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:594 +msgid "Category Only" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:795 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:593 +msgid "Category & Tags" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:591 +msgid "Relate Products By" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1008 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:455 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:751 +msgid "Right" +msgstr "Dreapta" + +#: includes/admin/class-mp-shortcode-builder.php:1007 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:454 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:749 +msgid "Left" +msgstr "Stânga" + +#: includes/admin/class-mp-shortcode-builder.php:1009 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:750 +msgid "Center" +msgstr "Centru" + +#: marketpress.php:273 +msgid "Orders from your e-commerce store." +msgstr "Comenzi din magazinul dvs electronic." + +#: marketpress.php:231 +msgid "Products for your e-commerce store." +msgstr "Produse pentru magazinul dvs electronic." + +#: marketpress.php:222 +msgid "Edit Product" +msgstr "Editează Produs" + +#. Description of the plugin/theme +msgid "The complete WordPress ecommerce plugin - works perfectly with BuddyPress and Multisite too to create a social marketplace, where you can take a percentage! Activate the plugin, adjust your settings then add some products to your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:272 +msgid "Beside" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:271 +msgid "Above" +msgstr "Deasupra" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:268 +msgid "Pin Count" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:261 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:287 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:318 +msgid "All View" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:260 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:286 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:317 +msgid "Single View" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:259 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:285 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:316 +msgid "Off" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:578 +msgid "Related Product Limit" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:681 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1201 +msgid "Applies To" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:685 +msgid "All Products" +msgstr "Toate Produsele" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:487 +msgid "The label shown for the tax line item in the cart. Taxes, VAT, GST, etc." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:485 +msgid "Tax Label" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:81 +msgid "Apply" +msgstr "" + +#: includes/admin/class-mp-admin.php:192 +msgid "MarketPress Instructions" +msgstr "Instrucţiuni MarketPress" + +#: includes/admin/class-mp-products-admin.php:1954 +#: includes/admin/class-mp-products-admin.php:2194 includes/common/data.php:62 +#: includes/common/helpers.php:150 +msgid "Taxes" +msgstr "Taxe" + +#: includes/admin/class-mp-products-admin.php:1417 +#: includes/common/class-mp-product.php:2900 +msgid "Related Products" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:282 +#: includes/common/shipping-modules/mp-usps.php:316 +msgid "@ Max" +msgstr "@ Max" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "(3-5 days)" +msgstr "(3-5 zile)" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "Priority Mail Express International Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:92 +msgid "Priority Mail Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:171 +#: includes/common/shipping-modules/mp-pickup.php:247 +msgid "In Store" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:159 +msgid "Pickup Fee" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:141 +msgid "This option allows your customers to indicate that they will pick-up their order at your place of business." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:60 +#: includes/common/shipping-modules/mp-pickup.php:76 +#: includes/common/shipping-modules/mp-pickup.php:176 +msgid "Pickup Instructions" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:24 +#: includes/common/shipping-modules/mp-pickup.php:254 +msgid "Pickup" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping - 0.00" +msgstr "Livrare Gratuită - 0.00" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:256 +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:440 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:309 +msgid "Your Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:301 +msgid "Station" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:300 +msgid "Request Courier" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:299 +msgid "Drop Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:298 +msgid "Business Service Center" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:297 +msgid "Regular Pickup" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:135 +#: includes/common/shipping-modules/mp-fedex.php:264 +msgid "Production" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:207 +msgid "Simplify Commerce by MasterCard" +msgstr "Simplify Commerce de la MasterCard" + +#: includes/common/payment-gateways/simplify.php:104 +msgid "When in live mode, although it is not required, Simplify recommends you have an SSL certificate." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:183 +#: includes/common/payment-gateways/simplify.php:87 +msgid "Public Key" +msgstr "Cheie Publică" + +#: includes/common/payment-gateways/paymill.php:175 +#: includes/common/payment-gateways/simplify.php:94 +msgid "Private Key" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:71 +msgid "Simplify helps merchants to accept online payments from Mastercard, Visa, American Express, Discover, JCB, and Diners Club cards. It's that simple. We offer a merchant account and payment gateway in a single, secure package so you can concentrate on what really matters to your business. Only supports USD currently." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:267 +msgid "%1$s" +msgstr "%1$s" + +#: includes/common/payment-gateways/simplify.php:151 +msgid "The Simplify Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/simplify.php:18 +msgid "Simplify" +msgstr "" + +#: includes/common/payment-gateways/pin.php:255 +msgid "%1$s Card %2$s" +msgstr "" + +#: includes/common/payment-gateways/pin.php:211 +msgid "The PIN Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:187 +msgid "Selecting a currency other than currency supported by PIN may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/pin.php:164 +msgid "You must login to PIN to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/pin.php:158 +msgid "When in live mode PIN recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/pin.php:45 +#: includes/common/payment-gateways/pin.php:286 +msgid "PIN" +msgstr "PIN" + +#: includes/common/payment-gateways/paypal-express.php:830 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:534 +#: includes/common/payment-gateways/paypal-express.php:865 +msgid "The payment is pending" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:235 +msgid "The Paymill Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:169 +msgid "You must login to Paymill to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:45 +#: includes/common/payment-gateways/paymill.php:308 +msgid "Paymill" +msgstr "Paymill" + +#: includes/common/payment-gateways/paymill.php:90 +msgid "Invalid cardholder" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:89 +msgid "Card is no longer valid or has expired" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:88 +msgid "Please enter a valid Card CVC" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:87 +msgid "Please choose a valid Expiration Date." +msgstr "Vă rugăm să alegeţi o Dată de Expirare validă." + +#: includes/common/payment-gateways/skrill.php:99 +#: includes/common/payment-gateways/skrill.php:100 +msgid "Skrill (Moneybookers)" +msgstr "Skrill (Moneybookers)" + +#: includes/common/shipping-modules/mp-weight-rate.php:24 +#: includes/common/shipping-modules/mp-weight-rate.php:292 +msgid "Weight Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:303 +msgid "USPS Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:270 +msgid "USPS Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:264 +msgid "USPS Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:145 +msgid "Flat Rate Large" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:140 +msgid "Flat Rate Medium 2" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:135 +msgid "Flat Rate Medium 1" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:130 +msgid "Flat Rate Small" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:118 +msgid "First Class International Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:114 +msgid "Priority Mail International Small Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:112 +msgid "Priority Mail International Medium Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:110 +msgid "Priority Mail International Large Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:108 +msgid "Priority Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:106 +msgid "Express Mail International Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:104 +msgid "Express Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:98 +msgid "Library Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:96 +msgid "Media Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "First-Class Mail Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:90 +msgid "Priority Mail Small Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:88 +msgid "Priority Mail Medium Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +#: includes/common/shipping-modules/mp-usps.php:88 +#: includes/common/shipping-modules/mp-usps.php:90 +#: includes/common/shipping-modules/mp-usps.php:92 +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "(2-4 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +msgid "Priority Mail Large Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "(2-4) days" +msgstr "(2-4) zile" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "Priority Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "Express Mail Sunday/Holiday Delivery Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:80 +msgid "Express Mail Flat Rate Boxes Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:78 +msgid "Express Mail Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:76 +msgid "Express Mail Sunday/Holiday Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:74 +msgid "Express Mail Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:72 +#: includes/common/shipping-modules/mp-usps.php:74 +#: includes/common/shipping-modules/mp-usps.php:76 +#: includes/common/shipping-modules/mp-usps.php:78 +#: includes/common/shipping-modules/mp-usps.php:80 +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "(1-2 days)" +msgstr "(1-2 zile)" + +#: includes/common/shipping-modules/mp-usps.php:72 +msgid "Express Mail" +msgstr "Express Mail" + +#: includes/common/shipping-modules/mp-usps.php:67 +#: includes/common/shipping-modules/mp-usps.php:902 +msgid "USPS" +msgstr "USPS" + +#: includes/common/shipping-modules/mp-ups.php:534 +msgid "UPS (beta)" +msgstr "UPS (beta)" + +#: includes/common/shipping-modules/mp-ups.php:166 +msgid "Required if using negotiated rates" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "Worldwide Express Plus" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "(Scheduled)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "Standard" +msgstr "Standard" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "(2-5 Days)" +msgstr "(2-5 Zile)" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "Worldwide Expedited" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:54 +msgid "Worldwide Express" +msgstr "Worldwide Express" + +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "2nd Day Air AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "(1 Days)" +msgstr "(1 Zi)" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "Next Day Air Early AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "Next Day Air Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "3 Day Select" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:49 +msgid "Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:48 +msgid "2nd Day Air" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "Next Day Air" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:475 +#: includes/common/shipping-modules/mp-ups.php:43 +msgid "UPS" +msgstr "UPS" + +#: includes/common/shipping-modules/mp-table-rate.php:27 +#: includes/common/shipping-modules/mp-table-rate.php:318 +msgid "Table Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:71 +#: includes/common/shipping-modules/mp-table-quantity.php:77 +msgid "Shipping Cost: " +msgstr "Cost de Livrare:" + +#: includes/common/shipping-modules/mp-table-quantity.php:70 +#: includes/common/shipping-modules/mp-table-quantity.php:76 +msgid "If quantity is greater than:" +msgstr "Dacă cantitatea este mai mare de:" + +#: includes/common/shipping-modules/mp-table-quantity.php:66 +msgid "Each band must be a higher price than the one above it." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:56 +msgid "Number of Bands:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:53 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Each layer must be a higher quantity than the previous." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:51 +msgid "Table Quantity Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:31 +msgid "Table Quantity" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:135 +#: includes/common/shipping-modules/mp-table-rate.php:174 +#: includes/common/shipping-modules/mp-weight-rate.php:189 +msgid "European Union" +msgstr "Uniunea Europeană" + +#: includes/common/shipping-modules/mp-flat-rate.php:123 +#: includes/common/shipping-modules/mp-table-rate.php:162 +#: includes/common/shipping-modules/mp-weight-rate.php:177 +msgid "United States" +msgstr "Statele Unite" + +#: includes/common/shipping-modules/mp-flat-rate.php:111 +#: includes/common/shipping-modules/mp-table-rate.php:151 +#: includes/common/shipping-modules/mp-weight-rate.php:166 +msgid "In Country" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:146 +#: includes/common/shipping-modules/mp-table-rate.php:186 +#: includes/common/shipping-modules/mp-weight-rate.php:201 +msgid "International" +msgstr "Internaţional" + +#: includes/common/shipping-modules/mp-flat-rate.php:101 +#: includes/common/shipping-modules/mp-table-rate.php:141 +#: includes/common/shipping-modules/mp-weight-rate.php:156 +msgid "Canada" +msgstr "Canada" + +#: includes/common/shipping-modules/mp-flat-rate.php:92 +#: includes/common/shipping-modules/mp-table-rate.php:132 +#: includes/common/shipping-modules/mp-weight-rate.php:147 +msgid "Hawaii and Alaska" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:83 +#: includes/common/shipping-modules/mp-table-rate.php:123 +#: includes/common/shipping-modules/mp-weight-rate.php:138 +msgid "Lower 48 States" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:64 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping." +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:25 +#: includes/common/shipping-modules/mp-flat-rate.php:223 +msgid "Flat Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:761 +msgid "FedEx (beta)" +msgstr "FedEx (beta)" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Centimeters" +msgstr "Centimetri" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Inches" +msgstr "Inci" + +#: includes/admin/class-mp-products-admin.php:1676 +#: includes/admin/class-mp-setup-wizard.php:547 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:166 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +msgid "Kilograms" +msgstr "Kilograme" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:103 +msgid " %1$s - %2$s" +msgstr " %1$s - %2$s" + +#: includes/common/shipping-modules/mp-usps.php:358 +msgid "Max Weight per Box" +msgstr "Greutate Max per Cutie" + +#: includes/common/shipping-modules/mp-usps.php:356 +msgid "Box Dimensions" +msgstr "Dimensiuni Cutie" + +#: includes/common/shipping-modules/mp-usps.php:354 +msgid "Box Name" +msgstr "Nume Cutie" + +#: includes/common/shipping-modules/mp-usps.php:344 +msgid "Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:343 +msgid "For each box defined enter the maximum weight it can contain." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:341 +msgid "Enter your standard box sizes as LengthxWidthxHeight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:386 +#: includes/common/shipping-modules/mp-ups.php:193 +#: includes/common/shipping-modules/mp-usps.php:234 +#: includes/common/shipping-modules/mp-usps.php:338 +msgid "Standard Boxes and Weight Limits" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:328 +msgid "Handling Charge per Interntional Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:294 +msgid "Handling Charge per Domestic Shipment " +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:388 +#: includes/common/shipping-modules/mp-ups.php:196 +#: includes/common/shipping-modules/mp-usps.php:237 +msgid "Add Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "(Next Day)" +msgstr "(Ziua Următoare)" + +#: includes/common/shipping-modules/mp-fedex.php:63 +msgid "Europe First International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:62 +msgid "International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:61 +#: includes/common/shipping-modules/mp-fedex.php:62 +#: includes/common/shipping-modules/mp-ups.php:54 +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "(1-3 Days)" +msgstr "(1-3 Zile)" + +#: includes/common/shipping-modules/mp-fedex.php:61 +msgid "International First" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "(5 Days)" +msgstr "(5 Zile)" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "International Economy" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "(2-7 Days)" +msgstr "(2-7 Zile)" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "Smart Post" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:55 +#: includes/common/shipping-modules/mp-ups.php:49 +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "(1-5 Days)" +msgstr "(1-5 Zile)" + +#: includes/common/shipping-modules/mp-fedex.php:55 +msgid "Ground Home Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "(1-7 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "Fedex Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:53 +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "(3 Days)" +msgstr "(3 Zile)" + +#: includes/common/shipping-modules/mp-fedex.php:53 +msgid "Fedex Express Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +#: includes/common/shipping-modules/mp-ups.php:48 +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "(2 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +msgid "Fedex 2 Day" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "(2 Days am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "Fedex 2 Day AM" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "(1 Day)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +msgid "Standard Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "(1 Day am )" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "Priority Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "(1 Day am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "First Overnight" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:476 +#: includes/common/shipping-modules/mp-fedex.php:31 +msgid "FedEx" +msgstr "FedEx" + +#: includes/common/payment-gateways/paymill.php:270 +#: includes/common/payment-gateways/simplify.php:179 +#: includes/common/payment-gateways/stripe.php:365 +msgid "%1$s Card ending in %2$s - Expires %3$s" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:259 +#: includes/common/payment-gateways/pin.php:238 +#: includes/common/payment-gateways/simplify.php:171 +msgid "%s Store Purchase - Order ID: %s, Email: %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:266 +msgid "You must login to Stripe to get your API credentials. You can enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:261 +msgid "When in live mode Stripe recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:311 +msgid "The Stripe Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:263 +#: includes/common/payment-gateways/paymill.php:122 +#: includes/common/payment-gateways/stripe.php:222 +msgid "Card Number" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:86 +msgid "Please enter a valid Credit Card Number." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:45 +#: includes/common/payment-gateways/stripe.php:433 +msgid "Stripe" +msgstr "Stripe" + +#: includes/common/payment-gateways/paypal-express.php:750 +msgid "Sets the background color for the payment page. By default, the color is white." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:745 +msgid "Sets the background color for the header of the payment page. By default, the color is white." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:740 +msgid "Sets the border color around the header of the payment page. The border is a 2-pixel perimeter around the header space, which is 750 pixels wide by 90 pixels high. By default, the color is black." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:735 +msgid "URL for an image you want to appear at the top left of the payment page. The image has a maximum size of 750 pixels wide by 90 pixels high. PayPal recommends that you provide an image that is stored on a secure (https) server. If you do not specify an image, the business name is displayed." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:857 +#: includes/common/payment-gateways/paypal-express.php:1131 +msgid "The payment is pending because it is part of an order that has been authorized but not settled." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:853 +#: includes/common/payment-gateways/paypal-express.php:1127 +msgid "The payment is pending because it has been authorized but not settled. You must capture the funds first." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:847 +#: includes/common/payment-gateways/paypal-express.php:1120 +msgid "You denied the payment when it was marked as pending." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:837 +#: includes/common/payment-gateways/paypal-express.php:1108 +msgid "A reversal has occurred on this transaction due to an unknown reason." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:836 +#: includes/common/payment-gateways/paypal-express.php:1107 +msgid "A reversal has occurred on this transaction because you have given the customer a refund." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:835 +#: includes/common/payment-gateways/paypal-express.php:1106 +msgid "A reversal has occurred on this transaction due to a complaint about the transaction from your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:834 +#: includes/common/payment-gateways/paypal-express.php:1105 +msgid "A reversal has occurred on this transaction due to your customer triggering a money-back guarantee." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:833 +#: includes/common/payment-gateways/paypal-express.php:1104 +msgid "A reversal has occurred on this transaction due to a chargeback by your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:1101 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer:" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:826 +#: includes/common/payment-gateways/paypal-express.php:1097 +msgid "A payment has been accepted." +msgstr "O plată a fost acceptată." + +#: includes/common/payment-gateways/paypal-express.php:818 +#: includes/common/payment-gateways/paypal-express.php:1087 +msgid "The transaction has not terminated, e.g. an authorization may be awaiting completion." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:531 +#: includes/common/payment-gateways/paypal-express.php:810 +#: includes/common/payment-gateways/paypal-express.php:1077 +msgid "The payment has failed. This happens only if the payment was made from your customer's bank account." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:806 +#: includes/common/payment-gateways/paypal-express.php:1072 +msgid "An authorization for this transaction has been voided." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:802 +#: includes/common/payment-gateways/paypal-express.php:1067 +msgid "The authorization period for this payment has been reached." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:798 +#: includes/common/payment-gateways/paypal-express.php:1062 +msgid "A reversal has been canceled; for example, when you win a dispute and the funds for the reversal have been returned to you." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:499 +#: includes/common/payment-gateways/paypal-express.php:1163 +msgid "PayPal Express Checkout" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:798 +msgid "Gateway Settings Page Message" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:725 +msgid "Signature" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:506 +#: includes/common/payment-gateways/eway31.php:533 +#: includes/common/shipping-modules/mp-fedex.php:276 +msgid "API Password" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:773 +msgid "Enter a percentage of all store sales to collect as a fee. Decimals allowed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:757 +msgid "Using PayPal Chained Payments allows you as the multisite network owner to collect a predefined fee or percentage of all sales on network MarketPress stores! This is invisible to the customers who purchase items in a store, and all PayPal fees will be charged to the store owner. To use this option you must create API credentials, and you should make all other gateways unavailable or limited above." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:338 +msgid "Please be aware that we will deduct a ?% fee from the total of each transaction in addition to any fees PayPal may charge you. If for any reason you need to refund a customer for an order, please contact us with a screenshot of the refund receipt in your PayPal history as well as the Transaction ID of our fee deduction so we can issue you a refund. Thank you!" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:698 +#: includes/common/payment-gateways/paypal-express.php:149 +msgid "There was a problem connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:470 +#: includes/common/payment-gateways/paypal-express.php:1053 +msgid "There was a problem verifying the IPN string with PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:310 +msgid "There was a problem connecting to PayPal to check the status of your purchase. Please check the status of your order here »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:539 +#: includes/common/payment-gateways/paypal-chained-payments.php:254 +#: includes/common/payment-gateways/paypal-express.php:1139 +msgid "The payment is pending." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:251 +#: includes/common/payment-gateways/paypal-chained-payments.php:531 +#: includes/common/payment-gateways/paypal-express.php:862 +#: includes/common/payment-gateways/paypal-express.php:1136 +msgid "The payment is pending for an unknown reason. For more information, contact PayPal customer service." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:250 +#: includes/common/payment-gateways/paypal-chained-payments.php:530 +#: includes/common/payment-gateways/paypal-express.php:861 +#: includes/common/payment-gateways/paypal-express.php:1135 +msgid "The payment is pending because you are not yet verified. You must verify your account before you can accept this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:249 +#: includes/common/payment-gateways/paypal-chained-payments.php:529 +#: includes/common/payment-gateways/paypal-express.php:860 +#: includes/common/payment-gateways/paypal-express.php:1134 +msgid "The payment is pending because it was made via credit card and you must upgrade your account to Business or Premier status in order to receive the funds. It can also mean that you have reached the monthly limit for transactions on your account." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:248 +#: includes/common/payment-gateways/paypal-chained-payments.php:528 +#: includes/common/payment-gateways/paypal-express.php:859 +#: includes/common/payment-gateways/paypal-express.php:1133 +msgid "The payment is pending because it was made to an email address that is not yet registered or confirmed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:247 +#: includes/common/payment-gateways/paypal-chained-payments.php:527 +#: includes/common/payment-gateways/paypal-express.php:858 +#: includes/common/payment-gateways/paypal-express.php:1132 +msgid "The payment is pending while it is being reviewed by PayPal for risk." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:246 +#: includes/common/payment-gateways/paypal-chained-payments.php:526 +#: includes/common/payment-gateways/paypal-express.php:856 +#: includes/common/payment-gateways/paypal-express.php:1130 +msgid "You do not have a balance in the currency sent, and you do not have your Payment Receiving Preferences set to automatically convert and accept this payment. You must manually accept or deny this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:245 +#: includes/common/payment-gateways/paypal-chained-payments.php:525 +#: includes/common/payment-gateways/paypal-express.php:855 +#: includes/common/payment-gateways/paypal-express.php:1129 +msgid "The payment is pending because you hold a non-U.S. account and do not have a withdrawal mechanism. You must manually accept or deny this payment from your Account Overview." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:244 +#: includes/common/payment-gateways/paypal-chained-payments.php:524 +#: includes/common/payment-gateways/paypal-express.php:854 +#: includes/common/payment-gateways/paypal-express.php:1128 +msgid "The payment is pending because it was made by an eCheck that has not yet cleared." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:243 +#: includes/common/payment-gateways/paypal-chained-payments.php:523 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:236 +#: includes/common/payment-gateways/paypal-chained-payments.php:516 +msgid "The transaction was rejected by the receiver (you)." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:510 +#: includes/common/payment-gateways/paypal-express.php:843 +#: includes/common/payment-gateways/paypal-express.php:1115 +msgid "You refunded the payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:224 +#: includes/common/payment-gateways/paypal-chained-payments.php:504 +msgid "The transaction is in progress." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:212 +#: includes/common/payment-gateways/paypal-chained-payments.php:491 +#: includes/common/payment-gateways/paypal-express.php:814 +#: includes/common/payment-gateways/paypal-express.php:1082 +msgid "The payment has been partially refunded." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:202 +#: includes/common/payment-gateways/paypal-chained-payments.php:481 +msgid "PayPal balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:177 +msgid "There was a problem connecting to PayPal to setup your purchase. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:122 +msgid "Your PayPal transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:50 +#: includes/common/payment-gateways/paypal-chained-payments.php:53 +#: includes/common/payment-gateways/paypal-chained-payments.php:732 +#: includes/common/payment-gateways/paypal-express.php:500 +#: includes/common/payment-gateways/paypal-express.php:938 +msgid "PayPal" +msgstr "PayPal" + +#: includes/common/payment-gateways/paypal-chained-payments.php:48 +#: includes/common/payment-gateways/paypal-chained-payments.php:730 +#: includes/common/payment-gateways/paypal-chained-payments.php:756 +#: includes/common/payment-gateways/paypal-chained-payments.php:873 +msgid "PayPal Chained Payments" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:59 +#: includes/common/payment-gateways/paypal-payflow.php:467 +msgid "PayPal Payflow Pro" +msgstr "PayPal Payflow Pro" + +#: includes/common/payment-gateways/skrill.php:378 +msgid "Chargeback - A payment was reversed due to a chargeback. The funds have been removed from your account balance and returned to the buyer." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:372 +msgid "Failed - The Credit Card or Direct Debit transaction was declined." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:354 +#: includes/common/payment-gateways/skrill.php:366 +msgid "Cancelled - The payment was cancelled manually by the sender in their online account history or was auto-cancelled after 14 days pending." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:360 +msgid "Pending - The payment is pending. It can take 2-3 days for bank transfers to complete." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:349 +#: includes/common/payment-gateways/skrill.php:354 +msgid "Processed - The payment has been completed, and the funds have been added successfully to your Moneybookers account balance." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:189 +msgid "Shown to the customer on the confirmation screen - the end step of the process - a note, confirmation number, or any other message. Line breaks <br> may be used for longer messages." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:188 +msgid "Confirmation Note (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:183 +msgid "The URL of the logo which you would like to appear at the top of the payment form. The logo must be accessible via HTTPS otherwise it will not be shown. For best integration results we recommend that you use a logo with dimensions up to 200px in width and 50px in height." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:182 +msgid "Logo Image (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:177 +msgid "The name of this store, which will be shown on the gateway. If no value is submitted, the account email will be shown as the recipient of the payment." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:176 +msgid "Merchant Name (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:165 +msgid "Language" +msgstr "Limba străină" + +#: includes/common/payment-gateways/2checkout.php:368 +#: includes/common/payment-gateways/authorizenet-aim.php:262 +#: includes/common/payment-gateways/eway.php:363 +#: includes/common/payment-gateways/eway31.php:471 +#: includes/common/payment-gateways/mollie.php:91 +#: includes/common/payment-gateways/paymill.php:193 +#: includes/common/payment-gateways/paypal-chained-payments.php:356 +#: includes/common/payment-gateways/paypal-express.php:688 +#: includes/common/payment-gateways/paypal-payflow.php:432 +#: includes/common/payment-gateways/pin.php:186 +#: includes/common/payment-gateways/skrill.php:152 +#: includes/common/payment-gateways/stripe.php:288 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:104 +msgid "Currency" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:359 +#: includes/common/payment-gateways/skrill.php:143 +msgid "Secret Word" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:261 +msgid "Order ID:" +msgstr "ID Comandă:" + +#: includes/common/payment-gateways/skrill.php:234 +msgid "Complete Checkout" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:204 +msgid "Your Moneybookers transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:155 +msgid "This is the email text to send to those who have made manual payment checkouts. You should include your manual payment instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:257 +#: includes/common/payment-gateways/manual-payments.php:128 +msgid "Record payments manually, such as by Cash, Check, or EFT." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:71 +msgid "Manual/Invoice" +msgstr "Manual/Factură" + +#: includes/admin/class-mp-setup-wizard.php:648 +#: includes/common/payment-gateways/manual-payments.php:35 +#: includes/common/payment-gateways/manual-payments.php:36 +msgid "Manual Payment" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:34 +#: includes/common/payment-gateways/manual-payments.php:163 +msgid "Manual Payments" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:288 +msgid "iDEAL Simulator (for testing)" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:287 +msgid "ABN Amro Bank" +msgstr "ABN Amro Bank" + +#: includes/common/payment-gateways/_ideal.php:286 +msgid "Friesland Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:285 +msgid "Rabobank" +msgstr "Rabobank" + +#: includes/common/payment-gateways/_ideal.php:284 +msgid "ING Bank" +msgstr "ING Bank" + +#: includes/common/payment-gateways/_ideal.php:279 +msgid "Bank" +msgstr "Banca" + +#: includes/common/payment-gateways/_ideal.php:270 +msgid "To make it easier to pay for online products and services, the Dutch banking community has developed the iDEAL online payment method. iDEAL allows online payments to be made using online banking in EUR only." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:247 +#: includes/common/payment-gateways/_payway.php:199 +#: includes/common/payment-gateways/manual-payments.php:68 +msgid "Invoiced" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1016 +msgid "Coupon" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:77 +#: includes/common/payment-gateways/_ideal.php:250 +#: includes/common/payment-gateways/_payway.php:202 +msgid "iDEAL" +msgstr "iDEAL" + +#: includes/common/payment-gateways/_ideal.php:76 +msgid "iDEAL (beta)" +msgstr "iDEAL (beta)" + +#: includes/common/payment-gateways/payfast.php:327 +msgid "Merchant Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:293 +#: includes/common/payment-gateways/_payway.php:302 +#: includes/common/payment-gateways/payfast.php:324 +msgid "Merchant ID" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:462 +msgid "eWay Rapid 3.0 Payments lets merchants recieve credit card payments through eWay without need for users to leave the shop. Note this gateway requires a valid SSL certificate configured for this site." +msgstr "" + +#: includes/common/payment-gateways/eway.php:452 +msgid "There was a problem connecting to eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/eway.php:432 +#: includes/common/payment-gateways/eway.php:437 +msgid "The url of the image can be hosted on your website and pass the secure https:// path of the image to be displayed at the top of the website. This is the second image block on the webpage and is restricted to 960px X 65px. A default secure image is used if none is supplied." +msgstr "" + +#: includes/common/payment-gateways/eway.php:431 +#: includes/common/payment-gateways/eway.php:436 +msgid "Company Logo (optional)" +msgstr "Logo Companie (opţional)" + +#: includes/common/payment-gateways/eway.php:427 +msgid "The page footer text can be customised and populated below the customer's order details. Useful for contact information." +msgstr "" + +#: includes/common/payment-gateways/eway.php:426 +msgid "Page Footer (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:421 +msgid "Page Description (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:417 +#: includes/common/payment-gateways/eway.php:422 +msgid "This value is used to populate the browsers title bar at the top of the screen." +msgstr "" + +#: includes/common/payment-gateways/eway.php:416 +msgid "Page Title (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:412 +msgid "This will be displayed as the company the customer is purchasing from, including this is highly recommended." +msgstr "" + +#: includes/common/payment-gateways/eway.php:411 +msgid "Company Name" +msgstr "" + +#: includes/common/payment-gateways/eway.php:394 +msgid "Customer ID" +msgstr "" + +#: includes/common/payment-gateways/eway.php:381 +#: includes/common/payment-gateways/eway31.php:488 +msgid "Live API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway.php:371 +#: includes/common/payment-gateways/eway31.php:479 +msgid "Gateway Mode" +msgstr "" + +#: includes/common/payment-gateways/eway.php:354 +msgid "The Hosted Page is a webpage hosted on eWAY's side eliminating the need for merchants to capture, transmit or store credit card numbers. At the checkout time the merchant automatically redirects the customer to the Hosted Page where they would enter their details and have the transaction processed. Upon completion of the transaction the customer is redirected back to the MarketPress checkout confirmation page." +msgstr "" + +#: includes/common/payment-gateways/eway.php:314 +msgid "There was a problem with your credit card information: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:300 +msgid "Paid - The card has been processed - %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:253 +msgid "There was a problem setting up the transaction with eWay: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:245 +#: includes/common/payment-gateways/eway.php:289 +msgid "There was a problem parsing the response from eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:159 +#: includes/common/payment-gateways/eway.php:189 +#: includes/common/payment-gateways/paypal-chained-payments.php:634 +#: includes/common/payment-gateways/paypal-express.php:322 +#: includes/common/payment-gateways/paypal-express.php:473 +msgid "%s Store Purchase - Order ID: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:147 +#: includes/common/payment-gateways/eway.php:462 +msgid "eWay Shared Payments" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:214 +msgid "This is the email text to send to those who have made CubePoints checkouts. You should include your CubePoints instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:212 +#: includes/common/payment-gateways/free_orders.php:188 +#: includes/common/payment-gateways/manual-payments.php:154 +msgid "Order Confirmation Email" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:207 +#: includes/common/payment-gateways/manual-payments.php:149 +msgid "Confirmation User Instructions" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:202 +#: includes/common/payment-gateways/manual-payments.php:144 +msgid "User Instructions" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:198 +#: includes/common/payment-gateways/free_orders.php:170 +#: includes/common/payment-gateways/manual-payments.php:139 +msgid "Enter a public name for this payment method that is displayed to users - No HTML" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:532 +#: includes/common/payment-gateways/_cubepoints.php:196 +#: includes/common/payment-gateways/free_orders.php:169 +#: includes/common/payment-gateways/manual-payments.php:138 +msgid "Method Name" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:187 +msgid "Accept CubePoints as payment(requires the CubePoints plugin)." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:140 +msgid "Sorry, but you do not appear to have enough points to complete this purchase!" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:124 +msgid "%s Store Purchase" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:79 +#: includes/common/payment-gateways/_cubepoints.php:171 +msgid "Your current points: " +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:133 +#: includes/common/payment-gateways/_cubepoints.php:197 +msgid "CubePoints" +msgstr "CubePoints" + +#: includes/common/payment-gateways/authorizenet-aim.php:344 +msgid "Authorize.net AIM Checkout" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:331 +msgid "Custom API URL" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:332 +msgid "Many other gateways have Authorize.net API emulators. To use one of these gateways input their API post url here." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:322 +msgid "Request a delimited response from the payment gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:316 +msgid "Security: MD5 Hash" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:317 +msgid "The payment gateway generated MD5 hash value that can be used to authenticate the transaction response. Not needed because responses are returned using an SSL connection." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:306 +msgid "Customer Receipt Email Footer" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:296 +msgid "Customer Receipt Email Header" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:297 +#: includes/common/payment-gateways/paypal-payflow.php:446 +msgid "This text will appear as the header of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:282 +msgid "Encapsulation Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:283 +msgid "Authorize.net default is blank. Otherwise, get this from your credit card processor. If the transactions are going through, but getting strange responses, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:273 +msgid "Optional settings to control advanced options" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:224 +#: includes/common/payment-gateways/authorizenet-aim.php:272 +msgid "Advanced Settings" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:253 +msgid "Transaction Key" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:246 +msgid "Login ID" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:396 +msgid "Gateway Credentials" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:221 +msgid "Authorize.net AIM is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway. USD is the only currency supported by this gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:205 +msgid "There was a problem finalizing your purchase. %s Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:519 +#: includes/common/payment-gateways/paypal-chained-payments.php:218 +#: includes/common/payment-gateways/paypal-chained-payments.php:498 +#: includes/common/payment-gateways/paypal-express.php:822 +#: includes/common/payment-gateways/paypal-express.php:1092 +msgid "The payment has been completed, and the funds have been added successfully to your account balance." +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:233 +msgid "Please enter a valid credit card security code" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:224 +#: includes/public/class-mp-checkout.php:867 +msgid "Please enter a valid credit card number" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:221 +msgid "Please enter your credit card number" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:217 +msgid "Please enter your credit card security code" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:213 +msgid "Please select your credit card expiration date." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:299 +#: includes/common/payment-gateways/authorizenet-aim.php:50 +#: includes/common/payment-gateways/eway.php:148 +#: includes/common/payment-gateways/eway.php:298 +#: includes/common/payment-gateways/eway31.php:267 +#: includes/common/payment-gateways/paymill.php:46 +#: includes/common/payment-gateways/paypal-express.php:972 +#: includes/common/payment-gateways/paypal-payflow.php:60 +#: includes/common/payment-gateways/pin.php:46 +#: includes/common/payment-gateways/simplify.php:19 +#: includes/common/payment-gateways/stripe.php:46 +#: includes/common/payment-gateways/wepay.php:37 +msgid "Credit Card" +msgstr "Card de Credit" + +#: includes/common/payment-gateways/authorizenet-aim.php:49 +msgid "Authorize.net Checkout" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:156 +#: includes/common/payment-gateways/stripe.php:293 +msgid "Selecting a currency other than that used for your store may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:352 +msgid "Seller ID" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:340 +#: includes/common/payment-gateways/_ideal.php:311 +#: includes/common/payment-gateways/authorizenet-aim.php:234 +#: includes/common/payment-gateways/eway.php:376 +#: includes/common/payment-gateways/payfast.php:315 +#: includes/common/payment-gateways/paypal-chained-payments.php:368 +#: includes/common/payment-gateways/paypal-express.php:699 +#: includes/common/payment-gateways/paypal-payflow.php:391 +msgid "Live" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:339 +#: includes/common/payment-gateways/authorizenet-aim.php:233 +#: includes/common/payment-gateways/eway.php:375 +#: includes/common/payment-gateways/paypal-chained-payments.php:367 +#: includes/common/payment-gateways/paypal-express.php:698 +#: includes/common/payment-gateways/paypal-payflow.php:390 +#: includes/common/shipping-modules/mp-fedex.php:263 +msgid "Sandbox" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:336 +#: includes/common/payment-gateways/_ideal.php:307 +#: includes/common/payment-gateways/authorizenet-aim.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:365 +#: includes/common/payment-gateways/paypal-express.php:695 +#: includes/common/payment-gateways/paypal-payflow.php:387 +#: includes/common/payment-gateways/wepay.php:130 +#: includes/common/shipping-modules/mp-fedex.php:260 +msgid "Mode" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:288 +#: includes/common/payment-gateways/mijireh.php:242 +#: includes/common/payment-gateways/mollie.php:212 +msgid "The order has been received" +msgstr "Comanda a fost primită" + +#: includes/common/payment-gateways/2checkout.php:74 +#: includes/common/payment-gateways/2checkout.php:75 +#: includes/common/payment-gateways/2checkout.php:435 +msgid "2Checkout" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:306 +msgid "Confirm" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:218 +#: includes/common/class-mp-cart.php:974 includes/common/class-mp-cart.php:1354 +#: includes/common/template-functions.php:918 +msgid "Checkout" +msgstr "" + +#: includes/common/template-functions.php:207 +msgid "Check Order Status" +msgstr "" + +#: includes/common/template-functions.php:235 +msgid "View Products" +msgstr "Vizualizare Produse" + +#: includes/common/template-functions.php:263 +msgid "Visit Store" +msgstr "Vizitaţi Magazinul" + +#: includes/common/template-functions.php:2912 +#: includes/multisite/template-functions.php:448 +msgid "Order By" +msgstr "Ordonează După" + +#: includes/common/template-functions.php:2887 +#: includes/multisite/template-functions.php:405 +msgid "Price (High to Low)" +msgstr "Preţ (Mare către Mic)" + +#: includes/common/template-functions.php:2886 +#: includes/multisite/template-functions.php:404 +msgid "Price (Low to High)" +msgstr "Preţ (Mic către Mare)" + +#: includes/common/template-functions.php:2881 +#: includes/multisite/template-functions.php:399 +msgid "Default" +msgstr "" + +#: includes/common/template-functions.php:2858 +msgid "Show All" +msgstr "" + +#: includes/common/class-mp-product.php:2048 +msgid "View Larger Image »" +msgstr "" + +#: includes/common/class-mp-product.php:979 +msgid "Out of Stock" +msgstr "" + +#: includes/common/template-functions.php:148 +msgid "Price: " +msgstr "Preţ:" + +#: includes/multisite/template-functions.php:833 +msgid "No Tags" +msgstr "" + +#: includes/common/template-functions.php:3162 +msgid "Uncategorized" +msgstr "" + +#: includes/common/class-mp-cart.php:569 includes/common/class-mp-order.php:604 +#: includes/common/helpers.php:115 +msgid "Download" +msgstr "Descarcă" + +#: includes/common/class-mp-cart.php:1353 +msgid "Empty Cart" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:291 +#: includes/common/payment-gateways/paypal-express.php:718 +#: includes/common/payment-gateways/paypal-payflow.php:423 +#: includes/common/shipping-modules/mp-ups.php:158 +#: includes/public/class-mp-checkout.php:1254 +#: includes/public/class-mp-checkout.php:1383 +msgid "Password" +msgstr "Parolă" + +#: includes/common/payment-gateways/eway.php:387 +#: includes/common/payment-gateways/paypal-express.php:711 +#: includes/common/shipping-modules/mp-usps.php:185 +#: includes/public/class-mp-checkout.php:1249 +msgid "Username" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:437 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:790 +msgid "Have a coupon code?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:321 +#: includes/admin/class-mp-orders-admin.php:526 +#: includes/common/class-mp-cart.php:592 +msgid "Remove" +msgstr "" + +#: includes/admin/class-mp-ajax.php:316 +msgid "Quantity:" +msgstr "Cantitate:" + +#: includes/admin/class-mp-products-admin.php:2140 +#: includes/admin/class-mp-products-admin.php:2387 +#: includes/common/shipping-modules/class-mp-shipping-api.php:507 +msgid "Extra Shipping Cost" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:403 +msgid "Choose a Shipping Method:" +msgstr "Alegeţi o Metodă de Livrare:" + +#: includes/admin/class-mp-products-admin.php:1691 +#: includes/admin/class-mp-products-admin.php:2131 +#: includes/admin/class-mp-products-admin.php:2378 +#: includes/common/shipping-modules/class-mp-shipping-api.php:228 +msgid "Ounces" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1684 +#: includes/admin/class-mp-products-admin.php:2123 +#: includes/admin/class-mp-products-admin.php:2369 +#: includes/admin/class-mp-setup-wizard.php:546 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:165 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +#: includes/common/shipping-modules/class-mp-shipping-api.php:227 +msgid "Pounds" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:226 +msgid "Product Weight:" +msgstr "Greutate Produs:" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:214 +msgid "Weight (Kilograms)" +msgstr "Greutate (Kilograme)" + +#: includes/admin/widgets/ms-global-categories.php:82 +msgid "Number of Categories:" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:72 +msgid "Product Count" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:20 +#: includes/admin/class-mp-product-attributes-admin.php:129 +#: includes/admin/class-mp-product-attributes-list-table.php:22 +#: includes/admin/class-mp-products-admin.php:2216 +#: includes/admin/class-mp-shortcode-builder.php:628 +#: includes/admin/class-mp-shortcode-builder.php:1415 +#: includes/admin/widgets/ms-global-categories.php:70 +#: includes/common/shipping-modules/mp-fedex.php:395 +#: includes/common/shipping-modules/mp-ups.php:202 +#: includes/common/shipping-modules/mp-usps.php:243 +#: includes/public/class-mp-checkout.php:314 +msgid "Name" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:67 +msgid "Order Categories By:" +msgstr "Ordonaţi Categoriile După" + +#: includes/admin/widgets/ms-global-categories.php:24 +#: includes/admin/widgets/ms-global-categories.php:50 +msgid "Global Product Categories" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:15 +msgid "Global Product Category List" +msgstr "Lista Globală de Categorii de Produse" + +#: includes/admin/widgets/ms-global-categories.php:13 +msgid "Displays a network-wide HTML list of product categories from network MarketPress stores." +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:24 +#: includes/admin/widgets/ms-global-tag-cloud.php:45 +msgid "Global Product Tags" +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:15 +msgid "Global Product Tag Cloud" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:947 +#: includes/admin/widgets/ms-global-product-list.php:173 +msgid "Excerpt" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:169 +msgid "Content To Show:" +msgstr "Conţinutul de Afișat:" + +#: includes/admin/widgets/ms-global-product-list.php:140 +msgid "Limit To Product Tag:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:132 +msgid "Limit To Product Category:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:72 +msgid "Global Products" +msgstr "Produse Globale" + +#: includes/admin/widgets/ms-global-product-list.php:16 +msgid "Global Product List" +msgstr "Listă Globală de Produse" + +#: includes/admin/widgets/ms-global-product-list.php:14 +msgid "Shows a customizable global list of products from network MarketPress stores." +msgstr "" + +#: includes/common/class-mp-product.php:974 +#: includes/multisite/template-functions.php:731 +msgid "Buy Now »" +msgstr "Cumpără Acum »" + +#: includes/admin/widgets/ms-global-tag-cloud.php:13 +msgid "Displays global most used product tags in cloud format from network MarketPress stores." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:438 +msgid "Theme Permissions" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:402 +#: includes/multisite/class-mp-admin-multisite.php:448 +msgid "No Access" +msgstr "" + +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:120 +msgid "Pro Site Level" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:401 +#: includes/multisite/class-mp-admin-multisite.php:447 +msgid "All Can Use" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:390 +msgid "Gateway Permissions" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:375 +msgid "Select a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:350 +msgid "Global Gateway" +msgstr "" + +#. Plugin Name of the plugin/theme +msgid "MarketPress" +msgstr "" + +#: includes/admin/widgets/product-tag-cloud.php:7 +msgid "Your most used product tags in cloud format from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/categories.php:79 +msgid "Show hierarchy" +msgstr "" + +#: includes/admin/widgets/categories.php:76 +#: includes/admin/widgets/ms-global-categories.php:92 +msgid "Show product counts" +msgstr "" + +#: includes/admin/widgets/categories.php:73 +msgid "Show as dropdown" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:710 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:736 +#: includes/admin/widgets/categories.php:30 +msgid "Select Category" +msgstr "" + +#: includes/admin/widgets/categories.php:7 +msgid "A list or dropdown of product categories from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/product-list.php:250 +msgid "Show Buy Button" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:183 +#: includes/admin/widgets/product-list.php:244 +msgid "Show Price" +msgstr "Arată Preţul" + +#: includes/admin/widgets/product-list.php:241 +msgid "Show Excerpt" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:155 +#: includes/admin/widgets/product-list.php:238 +msgid "Thumbnail Size:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:153 +#: includes/admin/widgets/product-list.php:237 +msgid "Show Thumbnail" +msgstr "Arată Miniatura" + +#: includes/admin/widgets/ms-global-product-list.php:147 +#: includes/admin/widgets/product-list.php:233 +msgid "Display Settings" +msgstr "Setări Afișare" + +#: includes/admin/widgets/ms-global-product-list.php:136 +#: includes/admin/widgets/ms-global-product-list.php:144 +#: includes/admin/widgets/product-list.php:230 +msgid "Enter the Slug" +msgstr "" + +#: includes/admin/widgets/product-list.php:228 +#: includes/common/template-functions.php:894 +msgid "Tag" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:686 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:712 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:739 +#: includes/admin/class-mp-shortcode-builder.php:796 +#: includes/admin/widgets/product-list.php:227 +#: includes/common/template-functions.php:886 +#: includes/common/template-functions.php:2907 +msgid "Category" +msgstr "Categorie" + +#: includes/admin/widgets/product-list.php:226 +msgid "No Filter" +msgstr "Fără Filtru" + +#: includes/admin/widgets/product-list.php:224 +msgid "Taxonomy Filter:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:108 +#: includes/admin/widgets/product-list.php:209 +msgid "Order Products By:" +msgstr "Ordonează Produsele După:" + +#: includes/admin/widgets/ms-global-product-list.php:101 +#: includes/admin/widgets/product-list.php:206 +msgid "Number of Products:" +msgstr "Număr de Produse:" + +#: includes/admin/widgets/ms-global-product-list.php:98 +#: includes/admin/widgets/product-list.php:204 +msgid "List Settings" +msgstr "Setări Listă" + +#: includes/admin/widgets/product-list.php:177 +msgid "Our Products" +msgstr "Produsele Noastre" + +#: includes/admin/widgets/product-list.php:144 +#: includes/common/template-functions.php:2070 +#: includes/common/template-functions.php:2347 +#: includes/multisite/template-functions.php:303 +#: includes/multisite/template-functions.php:623 +msgid "No Products" +msgstr "" + +#: includes/admin/widgets/product-list.php:8 +msgid "Product List" +msgstr "" + +#: includes/admin/widgets/product-list.php:7 +msgid "Shows a customizable list of products from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/cart.php:75 includes/admin/widgets/categories.php:82 +#: includes/admin/widgets/product-list.php:253 +#: includes/admin/widgets/product-tag-cloud.php:57 +msgid "Only show on store pages" +msgstr "" + +#: includes/admin/widgets/cart.php:65 +#: includes/admin/widgets/ms-global-product-list.php:92 +#: includes/admin/widgets/product-list.php:200 +msgid "Custom Text:" +msgstr "" + +#: includes/admin/widgets/cart.php:64 includes/admin/widgets/categories.php:69 +#: includes/admin/widgets/ms-global-categories.php:59 +#: includes/admin/widgets/ms-global-product-list.php:87 +#: includes/admin/widgets/ms-global-tag-cloud.php:49 +#: includes/admin/widgets/product-list.php:199 +#: includes/admin/widgets/product-tag-cloud.php:49 +msgid "Title:" +msgstr "" + +#: includes/admin/widgets/cart.php:7 +msgid "Shows dynamic shopping cart contents along with a checkout button for your MarketPress store." +msgstr "" + +#: includes/admin/widgets/product-tag-cloud.php:8 +msgid "Product Tag Cloud" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:539 +#: includes/admin/class-mp-setup-wizard.php:575 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:163 +msgid "Measurement System" +msgstr "Sistemul de Măsură" + +#: includes/admin/class-mp-setup-wizard.php:616 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:149 +msgid "Select Shipping Options" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:596 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:129 +msgid "Calculated Options" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:582 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:115 +msgid "No Shipping" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:110 +msgid "EU" +msgstr "UE" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:109 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:93 +msgid "All" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:92 +msgid "Select:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:185 +msgid "Store Pages" +msgstr "Pagini Magazin" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:223 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:256 +msgid "Order Shipped" +msgstr "Comandă Livrată" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:60 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:95 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:128 +#: marketpress.php:266 +msgid "New Order" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:314 +msgid "Email Notifications" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:59 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:200 +msgid "Products List" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:58 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:190 +msgid "Store Base" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:108 +#: includes/admin/class-mp-shortcode-builder.php:635 +#: includes/admin/class-mp-shortcode-builder.php:708 +#: includes/admin/class-mp-shortcode-builder.php:875 +#: includes/admin/class-mp-shortcode-builder.php:1319 +#: includes/admin/class-mp-shortcode-builder.php:1422 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:526 +#: includes/admin/widgets/ms-global-categories.php:78 +#: includes/admin/widgets/ms-global-product-list.php:127 +#: includes/admin/widgets/product-list.php:221 +msgid "Ascending" +msgstr "Crescător" + +#: includes/admin/class-mp-product-attributes-admin.php:109 +#: includes/admin/class-mp-shortcode-builder.php:636 +#: includes/admin/class-mp-shortcode-builder.php:709 +#: includes/admin/class-mp-shortcode-builder.php:876 +#: includes/admin/class-mp-shortcode-builder.php:1320 +#: includes/admin/class-mp-shortcode-builder.php:1423 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:525 +#: includes/admin/widgets/ms-global-categories.php:75 +#: includes/admin/widgets/ms-global-product-list.php:124 +#: includes/admin/widgets/product-list.php:220 +msgid "Descending" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:637 +#: includes/admin/class-mp-shortcode-builder.php:695 +#: includes/admin/class-mp-shortcode-builder.php:862 +#: includes/admin/class-mp-shortcode-builder.php:1306 +#: includes/admin/class-mp-shortcode-builder.php:1424 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:518 +#: includes/admin/widgets/ms-global-product-list.php:121 +#: includes/admin/widgets/product-list.php:218 +msgid "Random" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:694 +#: includes/admin/class-mp-shortcode-builder.php:861 +#: includes/admin/class-mp-shortcode-builder.php:1305 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:517 +#: includes/admin/widgets/ms-global-product-list.php:119 +#: includes/admin/widgets/product-list.php:216 +msgid "Product Price" +msgstr "Preţ Produs" + +#: includes/admin/class-mp-shortcode-builder.php:693 +#: includes/admin/class-mp-shortcode-builder.php:860 +#: includes/admin/class-mp-shortcode-builder.php:1304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:516 +#: includes/admin/widgets/ms-global-product-list.php:117 +#: includes/admin/widgets/product-list.php:215 +msgid "Number of Sales" +msgstr "Numărul de Vânzări" + +#: includes/admin/class-mp-shortcode-builder.php:692 +#: includes/admin/class-mp-shortcode-builder.php:859 +#: includes/admin/class-mp-shortcode-builder.php:1303 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:515 +#: includes/admin/widgets/product-list.php:214 +msgid "Product Author" +msgstr "Autor Produs" + +#: includes/admin/class-mp-shortcode-builder.php:691 +#: includes/admin/class-mp-shortcode-builder.php:858 +#: includes/admin/class-mp-shortcode-builder.php:1302 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:514 +#: includes/admin/widgets/product-list.php:213 +msgid "Product ID" +msgstr "ID Produs" + +#: includes/admin/class-mp-shortcode-builder.php:690 +#: includes/admin/class-mp-shortcode-builder.php:857 +#: includes/admin/class-mp-shortcode-builder.php:1301 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:513 +#: includes/admin/widgets/ms-global-product-list.php:113 +#: includes/admin/widgets/product-list.php:212 +msgid "Publish Date" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:430 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:726 +msgid "Width" +msgstr "Lăţime" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:439 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:735 +msgid "Height" +msgstr "Înălţime" + +#: includes/admin/class-mp-product-attributes-admin.php:88 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:402 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:698 +msgid "Custom" +msgstr "" + +#: includes/common/class-mp-product.php:179 +#: includes/common/class-mp-product.php:992 +#: includes/common/class-mp-product.php:1000 +#: includes/multisite/template-functions.php:579 +msgid "Buy Now" +msgstr "Cumpără Acum" + +#: includes/common/class-mp-product.php:175 +#: includes/common/class-mp-product.php:990 +#: includes/common/class-mp-product.php:998 +msgid "Add To Cart" +msgstr "Adaugă in Coș" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:807 +msgid "Store Style" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1021 +msgid "Edit Coupon" +msgstr "Editează Cupon" + +#: includes/addons/mp-coupons/class-mp-coupon.php:580 +#: includes/admin/class-mp-ajax.php:238 +#: includes/admin/class-mp-products-admin.php:1532 +msgid "Unlimited" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1198 +msgid "Remaining Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1197 +msgid "Used" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:752 +#: includes/admin/class-mp-products-admin.php:2343 +msgid "Start Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:598 +msgid "Coupon Code" +msgstr "Cod Cupon" + +#: includes/admin/class-mp-orders-admin.php:444 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:284 +msgid "Save Changes" +msgstr "Salvează Modificările" + +#: includes/admin/class-mp-pages-admin.php:57 +#: includes/admin/class-mp-shortcode-builder.php:716 +#: includes/admin/class-mp-shortcode-builder.php:727 +#: includes/admin/class-mp-shortcode-builder.php:883 +#: includes/admin/class-mp-shortcode-builder.php:894 +#: includes/admin/class-mp-shortcode-builder.php:946 +#: includes/admin/class-mp-shortcode-builder.php:956 +#: includes/admin/class-mp-shortcode-builder.php:1006 +#: includes/admin/class-mp-shortcode-builder.php:1327 +#: includes/admin/class-mp-shortcode-builder.php:1338 +#: includes/admin/store-settings/class-mp-store-settings-general.php:357 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:270 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:108 +#: includes/admin/widgets/ms-global-product-list.php:172 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:94 +msgid "None" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:352 +msgid "Google Analytics Ecommerce Tracking" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:310 +msgid "This option turns MarketPress into more of a product listing plugin, disabling shopping carts, checkout, and order management. This is useful if you simply want to list items you can buy in a store somewhere else, optionally linking the \"Buy Now\" buttons to an external site. Some examples are a car dealership, or linking to songs/albums in itunes, or linking to products on another site with your own affiliate links." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:304 +msgid "Whether or not customers must be registered and logged in to checkout. (Not recommended: Enabling this can lower conversions)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:258 +msgid "How many times may a customer download a file they have purchased? (It's best to set this higher than one in case they have any problems downloading)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:257 +msgid "Maximum Downloads" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:298 +msgid "This will set the product to draft if inventory of all variations is gone." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:288 +msgid "At what low stock count do you want to be warned for products you have enabled inventory tracking for?" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:208 +#: includes/admin/store-settings/class-mp-store-settings-general.php:287 +msgid "Inventory Warning Threshold" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:282 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:542 +msgid "Miscellaneous Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:429 +#: includes/multisite/class-mp-admin-multisite.php:247 +msgid "Show Decimal in Prices" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:451 +#: includes/admin/store-settings/class-mp-store-settings-general.php:403 +#: includes/multisite/class-mp-admin-multisite.php:221 +msgid "Currency Symbol Position" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:444 +#: includes/admin/store-settings/class-mp-store-settings-general.php:396 +msgid "Store Currency" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:429 +#: includes/admin/store-settings/class-mp-store-settings-general.php:381 +msgid "Currency Settings" +msgstr "Setări Valută" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:516 +msgid "Please see your local tax laws. Note if this is enabled and a downloadable only cart, rates will be the default for your base location." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:529 +msgid "Apply Tax to Downloadable Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:498 +msgid "Enabling this option allows you to enter and show all prices inclusive of tax, while still listing the tax total as a line item in shopping carts. Please see your local tax laws." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:497 +msgid "Enter Prices Inclusive of Tax?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:492 +msgid "Please see your local tax laws. Most areas charge tax on shipping fees." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:491 +msgid "Apply Tax To Shipping Fees?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:674 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:565 +#: includes/common/payment-gateways/authorizenet-aim.php:291 +#: includes/common/payment-gateways/authorizenet-aim.php:326 +#: includes/common/payment-gateways/payfast.php:347 +msgid "No" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:675 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:759 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:512 +#: includes/admin/class-mp-setup-wizard.php:518 +#: includes/admin/class-mp-setup-wizard.php:524 +#: includes/admin/class-mp-setup-wizard.php:530 +#: includes/admin/class-mp-setup-wizard.php:564 +#: includes/admin/store-settings/class-mp-store-settings-general.php:232 +#: includes/admin/store-settings/class-mp-store-settings-general.php:299 +#: includes/admin/store-settings/class-mp-store-settings-general.php:305 +#: includes/admin/store-settings/class-mp-store-settings-general.php:311 +#: includes/admin/store-settings/class-mp-store-settings-general.php:317 +#: includes/admin/store-settings/class-mp-store-settings-general.php:328 +#: includes/admin/store-settings/class-mp-store-settings-general.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:341 +#: includes/admin/store-settings/class-mp-store-settings-general.php:348 +#: includes/admin/store-settings/class-mp-store-settings-general.php:367 +#: includes/admin/store-settings/class-mp-store-settings-general.php:493 +#: includes/admin/store-settings/class-mp-store-settings-general.php:499 +#: includes/admin/store-settings/class-mp-store-settings-general.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:556 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:375 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:381 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:387 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:474 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:493 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:532 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:574 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:606 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:664 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:670 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:677 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:683 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:689 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:763 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:774 +#: includes/common/payment-gateways/_bitpay.php:250 +#: includes/common/payment-gateways/_bitpay.php:257 +#: includes/common/payment-gateways/_bitpay.php:264 +#: includes/common/payment-gateways/authorizenet-aim.php:290 +#: includes/common/payment-gateways/authorizenet-aim.php:325 +#: includes/common/payment-gateways/free_orders.php:160 +#: includes/common/payment-gateways/payfast.php:346 +#: includes/common/payment-gateways/paymill.php:162 +#: includes/common/payment-gateways/paypal-payflow.php:441 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-checkbox.php:22 +msgid "Yes" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:492 +#: includes/admin/store-settings/class-mp-store-settings-general.php:472 +msgid "%s Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:467 +#: includes/admin/store-settings/class-mp-store-settings-general.php:449 +msgid "Tax Settings" +msgstr "Setări Taxe" + +#: includes/admin/class-mp-setup-wizard.php:370 +#: includes/admin/store-settings/class-mp-store-settings-general.php:624 +msgid "Base Zip/Postal Code" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:354 +#: includes/admin/store-settings/class-mp-store-settings-general.php:608 +msgid "Base State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:589 +msgid "Base Country" +msgstr "Țara de Bază" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:582 +msgid "Location Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:195 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:800 +#: includes/multisite/class-mp-admin-multisite.php:172 +msgid "General Settings" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1945 +#: includes/admin/class-mp-products-admin.php:2185 +#: includes/admin/class-mp-store-settings-admin.php:111 +#: includes/admin/class-mp-store-settings-admin.php:266 +msgid "General" +msgstr "General" + +#: includes/admin/class-mp-store-settings-admin.php:242 +msgid "Importers" +msgstr "Importatori" + +#: includes/admin/class-mp-store-settings-admin.php:115 +#: includes/admin/class-mp-store-settings-admin.php:234 +msgid "Payments" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:313 +#: includes/admin/class-mp-store-settings-admin.php:112 +#: includes/admin/class-mp-store-settings-admin.php:222 +msgid "Presentation" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:916 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1015 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1018 +#: includes/admin/class-mp-dashboard-widgets.php:305 marketpress.php:702 +msgid "Coupons" +msgstr "" + +#: includes/admin/class-mp-admin.php:251 +msgid "Download »" +msgstr "" + +#: includes/admin/class-mp-admin.php:245 +#: includes/admin/class-mp-exporter-orders.php:170 +msgid "All Statuses" +msgstr "" + +#: includes/admin/class-mp-admin.php:209 +#: includes/admin/class-mp-exporter-orders.php:150 +#: includes/admin/class-mp-exporter-orders.php:178 +msgid "Export Orders" +msgstr "" + +#: includes/admin/class-mp-admin.php:228 +msgid "Show all dates" +msgstr "Arată toate datele" + +#: includes/admin/class-mp-orders-admin.php:947 +msgid "Change Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:287 +msgid "Order Notes" +msgstr "Note Comandă" + +#: includes/admin/class-mp-orders-admin.php:478 +msgid "Other" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:205 +msgid "Subtotal" +msgstr "Subtotal" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:84 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:87 +#: includes/admin/class-mp-products-admin.php:1737 +#: includes/common/class-mp-cart.php:1409 +#: includes/common/class-mp-product.php:559 +msgid "Quantity" +msgstr "" + +#: includes/common/helpers.php:93 +msgid "Item" +msgstr "Articol" + +#: includes/common/class-mp-order.php:1050 +msgid "Current Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:297 +msgid "Order Actions" +msgstr "Acţiuni Comandă" + +#: includes/common/class-mp-product.php:1084 +msgid "More Info »" +msgstr "Mai multe Informaţii »" + +#: includes/common/class-mp-product.php:2313 +msgid "Low Product Inventory Notification" +msgstr "" + +#: includes/common/class-mp-order.php:338 includes/common/data.php:154 +msgid "New Order Notification: ORDERID" +msgstr "" + +#: includes/common/helpers.php:259 +msgid "Your payment for this order is complete." +msgstr "" + +#: includes/common/helpers.php:261 +msgid "Your payment for this order is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/helpers.php:256 +msgid "Payment Total:" +msgstr "" + +#: includes/common/helpers.php:253 +msgid "Transaction ID:" +msgstr "" + +#: includes/common/helpers.php:249 +msgid "Payment Type:" +msgstr "" + +#: includes/common/helpers.php:246 +msgid "Payment Method:" +msgstr "" + +#: includes/common/helpers.php:242 +msgid "Order Notes:" +msgstr "Note Comandă:" + +#: includes/common/helpers.php:237 +msgid "Special Instructions:" +msgstr "" + +#: includes/common/helpers.php:232 +msgid "Tracking Number:" +msgstr "" + +#: includes/common/helpers.php:223 includes/common/helpers.php:226 +#: includes/common/helpers.php:228 +#: includes/common/shipping-modules/class-mp-shipping-api.php:406 +#: includes/common/shipping-modules/class-mp-shipping-api.php:428 +msgid "Shipping Method:" +msgstr "" + +#: includes/common/helpers.php:168 +msgid "No shipping required for this order." +msgstr "" + +#: includes/common/helpers.php:155 +msgid "Order Total:" +msgstr "" + +#: includes/common/class-mp-order.php:1025 +msgid "Taxes:" +msgstr "Taxe:" + +#: includes/common/class-mp-order.php:1032 includes/common/helpers.php:144 +msgid "Shipping:" +msgstr "Livrare:" + +#: includes/public/class-mp-checkout.php:367 +msgid "Street address, P.O. box, company name, c/o" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:314 +msgid "Shipping Info" +msgstr "" + +#: includes/public/class-mp-public.php:740 +msgid "Whoops, there was a problem loading up this file for your download. Please contact us for help." +msgstr "" + +#: includes/public/class-mp-public.php:683 +msgid "Sorry, our records show you've downloaded this file %d out of %d times allowed. Please contact us if you still need help." +msgstr "" + +#: includes/public/class-mp-public.php:634 +msgid "Sorry, your order has been marked as unpaid." +msgstr "" + +#: includes/public/class-mp-public.php:629 +msgid "Sorry, the link is invalid for this download." +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:15 +#: includes/admin/class-mp-products-admin.php:1172 +msgid "Cheatin’ uh?" +msgstr "" + +#: includes/public/class-mp-public.php:407 +#: includes/public/class-mp-short-codes.php:128 +msgid "Please enter a valid email address." +msgstr "Vă rugăm să introduceţi o adresă de email validă." + +#: includes/admin/class-mp-ajax.php:191 +#: includes/admin/class-mp-products-admin.php:1821 +#: includes/admin/class-mp-products-admin.php:2010 +#: includes/admin/class-mp-products-admin.php:2267 +msgid "File URL" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1842 +msgid "External Link" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2177 +msgid "Add Variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:126 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:289 +msgid "Inventory" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:438 +#: includes/admin/class-mp-products-admin.php:578 +#: includes/admin/class-mp-products-admin.php:1552 +#: includes/admin/class-mp-products-admin.php:2053 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:134 +msgid "Sale Price" +msgstr "Preţ de Vânzare" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "Variation Name" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1931 +msgid "Product Details" +msgstr "Detalii Produs" + +#: includes/admin/class-mp-product-attributes-list-table.php:33 +msgid "Delete" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1057 +msgid "Trashed" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:231 +#: includes/admin/class-mp-orders-admin.php:1015 +#: includes/common/class-mp-order.php:1052 includes/common/helpers.php:97 +msgid "Total" +msgstr "Total" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1196 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:210 +#: includes/admin/class-mp-orders-admin.php:1014 +msgid "Discount" +msgstr "Discount" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:221 +#: includes/admin/class-mp-orders-admin.php:1013 +#: includes/common/payment-gateways/_ideal.php:148 +#: includes/common/payment-gateways/_payway.php:134 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:108 +msgid "Tax" +msgstr "Taxe" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:216 +#: includes/admin/class-mp-orders-admin.php:1012 +#: includes/admin/class-mp-products-admin.php:1958 +#: includes/admin/class-mp-products-admin.php:2198 +#: includes/admin/class-mp-store-settings-admin.php:114 +#: includes/admin/class-mp-store-settings-admin.php:230 +#: includes/common/class-mp-cart.php:717 includes/common/helpers.php:168 +#: includes/common/payment-gateways/_ideal.php:137 +#: includes/common/payment-gateways/_payway.php:116 +#: includes/public/class-mp-checkout.php:1304 +msgid "Shipping" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1011 +msgid "Items" +msgstr "Articole" + +#: includes/admin/class-mp-orders-admin.php:1010 +msgid "From" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:154 +#: includes/admin/class-mp-orders-admin.php:1009 +#: includes/common/class-mp-gdpr.php:370 +msgid "Order Date" +msgstr "Dată Comandă" + +#: includes/admin/class-mp-orders-admin.php:1008 +#: includes/common/class-mp-gdpr.php:366 +#: includes/common/template-functions.php:2134 +msgid "Order ID" +msgstr "ID Comandă" + +#: includes/addons/class-mp-addons-list-table.php:22 +#: includes/admin/class-mp-orders-admin.php:1007 +msgid "Status" +msgstr "Stare" + +#: includes/admin/class-mp-orders-admin.php:1155 +msgid "N/A" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:243 +#: includes/admin/class-mp-products-admin.php:464 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:142 +msgid "Sales" +msgstr "Vânzări" + +#: includes/admin/class-mp-products-admin.php:463 +msgid "Stock" +msgstr "Stoc" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:85 +#: includes/admin/class-mp-ajax.php:176 includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:434 +#: includes/admin/class-mp-products-admin.php:462 +#: includes/admin/class-mp-products-admin.php:576 +#: includes/admin/class-mp-products-admin.php:1519 +#: includes/admin/class-mp-products-admin.php:1569 +#: includes/admin/class-mp-products-admin.php:1950 +#: includes/admin/class-mp-products-admin.php:2059 +#: includes/admin/class-mp-products-admin.php:2190 +#: includes/admin/class-mp-products-admin.php:2330 +#: includes/common/class-mp-cart.php:1415 includes/common/helpers.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:130 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:276 +msgid "Price" +msgstr "Preţ" + +#: includes/admin/class-mp-ajax.php:173 +#: includes/admin/class-mp-products-admin.php:461 +#: includes/admin/class-mp-products-admin.php:1972 +#: includes/admin/class-mp-products-admin.php:2224 +msgid "SKU" +msgstr "SKU" + +#: includes/admin/class-mp-products-admin.php:459 +#: includes/admin/class-mp-products-admin.php:1793 +#: includes/admin/class-mp-products-admin.php:1805 +#: includes/admin/class-mp-products-admin.php:2163 +msgid "Variations" +msgstr "Variaţii" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:83 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:86 +#: includes/admin/class-mp-dashboard-widgets.php:134 +#: includes/admin/class-mp-products-admin.php:458 +#: includes/admin/class-mp-products-admin.php:837 +#: includes/admin/class-mp-shortcode-builder.php:689 +#: includes/admin/class-mp-shortcode-builder.php:856 +#: includes/admin/class-mp-shortcode-builder.php:1300 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:512 +#: includes/admin/widgets/ms-global-product-list.php:115 +#: includes/admin/widgets/product-list.php:211 +msgid "Product Name" +msgstr "Nume Produs" + +#: includes/common/template-functions.php:2575 +msgid "Categorized in " +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:305 +#: includes/common/payment-gateways/free_orders.php:176 +msgid "Payment Information" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:167 +#: includes/admin/class-mp-orders-admin.php:432 +#: includes/admin/class-mp-pages-admin.php:62 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:227 +#: includes/common/class-mp-gdpr.php:374 +#: includes/common/template-functions.php:175 +#: includes/common/template-functions.php:926 +msgid "Order Status" +msgstr "Stare Comandă" + +#. translators: %s: orders closed +#: marketpress.php:327 +msgid "Closed (%s)" +msgid_plural "Closed (%s)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/admin/class-mp-admin.php:249 +#: includes/admin/class-mp-orders-admin.php:375 +#: includes/admin/class-mp-orders-admin.php:951 +#: includes/admin/class-mp-orders-admin.php:1053 +#: includes/admin/class-mp-orders-admin.php:1065 +#: includes/common/class-mp-gdpr.php:330 +#: includes/common/class-mp-order.php:1019 marketpress.php:325 +msgid "Closed" +msgstr "" + +#. translators: %s: shipped orders +#: marketpress.php:320 +msgid "Shipped (%s)" +msgid_plural "Shipped (%s)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/admin/class-mp-admin.php:248 +#: includes/admin/class-mp-orders-admin.php:376 +#: includes/admin/class-mp-orders-admin.php:950 +#: includes/admin/class-mp-orders-admin.php:1049 +#: includes/admin/class-mp-orders-admin.php:1064 +#: includes/common/class-mp-gdpr.php:329 +#: includes/common/class-mp-order.php:1002 marketpress.php:318 +msgid "Shipped" +msgstr "" + +#. translators: %s: paid orders +#: marketpress.php:313 +msgid "Paid (%s)" +msgid_plural "Paid (%s)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/admin/class-mp-admin.php:247 +#: includes/admin/class-mp-orders-admin.php:377 +#: includes/admin/class-mp-orders-admin.php:949 +#: includes/admin/class-mp-orders-admin.php:1045 +#: includes/admin/class-mp-orders-admin.php:1063 +#: includes/common/class-mp-gdpr.php:328 +#: includes/common/payment-gateways/2checkout.php:294 +#: includes/common/payment-gateways/_cubepoints.php:130 +#: includes/common/payment-gateways/authorizenet-aim.php:193 +#: includes/common/payment-gateways/free_orders.php:91 +#: includes/common/payment-gateways/mijireh.php:248 +#: includes/common/payment-gateways/paymill.php:273 +#: includes/common/payment-gateways/paypal-express.php:933 +#: includes/common/payment-gateways/paypal-express.php:967 +#: includes/common/payment-gateways/pin.php:258 +#: includes/common/payment-gateways/simplify.php:181 +#: includes/common/payment-gateways/stripe.php:368 +#: includes/common/payment-gateways/wepay.php:269 marketpress.php:311 +msgid "Paid" +msgstr "" + +#. translators: %s: orders received +#: marketpress.php:306 +msgid "Received (%s)" +msgid_plural "Received (%s)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/admin/class-mp-admin.php:246 +#: includes/admin/class-mp-orders-admin.php:378 +#: includes/admin/class-mp-orders-admin.php:1041 +#: includes/admin/class-mp-orders-admin.php:1062 +#: includes/common/class-mp-gdpr.php:327 includes/common/class-mp-order.php:995 +#: includes/common/payment-gateways/payfast.php:244 marketpress.php:304 +msgid "Received" +msgstr "" + +#: marketpress.php:268 +msgid "Search Orders" +msgstr "" + +#: marketpress.php:267 +msgid "View Order" +msgstr "Vizualizare Comandă" + +#: marketpress.php:262 +msgid "Order" +msgstr "Comandă" + +#: includes/admin/class-mp-dashboard-widgets.php:301 +#: includes/admin/class-mp-orders-admin.php:989 marketpress.php:261 +msgid "Orders" +msgstr "Comenzi" + +#: marketpress.php:228 +msgid "No Products found in Trash" +msgstr "" + +#: marketpress.php:227 +msgid "No Products Found" +msgstr "" + +#: marketpress.php:226 +msgid "Search Products" +msgstr "Caută Produse" + +#: marketpress.php:225 marketpress.php:229 +msgid "View Product" +msgstr "Vizualizare Produs" + +#: marketpress.php:224 +msgid "New Product" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1022 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:258 +#: marketpress.php:223 +msgid "Edit" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1019 +msgid "Create New" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:687 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:698 +#: marketpress.php:217 +msgid "Product" +msgstr "Produs" + +#: includes/admin/class-mp-dashboard-widgets.php:307 +#: includes/common/template-functions.php:173 +#: includes/common/template-functions.php:179 +#: includes/common/template-functions.php:902 +#: includes/multisite/template-functions.php:82 marketpress.php:216 +#: marketpress.php:219 +msgid "Products" +msgstr "Produse" + +#: includes/admin/class-mp-store-settings-admin.php:118 +#: includes/admin/widgets/product-tag-cloud.php:46 +#: includes/multisite/class-mp-admin-multisite.php:548 +msgid "Product Tags" +msgstr "" + +#: includes/common/template-functions.php:2906 +#: includes/multisite/template-functions.php:449 +msgid "Product Category" +msgstr "Categorie Produs" + +#: includes/admin/class-mp-store-settings-admin.php:117 +#: includes/admin/widgets/categories.php:8 +#: includes/admin/widgets/categories.php:18 +#: includes/multisite/class-mp-admin-multisite.php:539 +msgid "Product Categories" +msgstr "Categorii Produse" + +#: includes/common/payment-gateways/stripe.php:332 +#: includes/common/template-functions.php:872 marketpress.php:218 +msgid "Store" +msgstr "Magazin" + +#: includes/admin/class-mp-pages-admin.php:60 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:209 +#: includes/admin/widgets/cart.php:8 includes/admin/widgets/cart.php:56 +#: includes/common/template-functions.php:174 +#: includes/common/template-functions.php:811 +msgid "Shopping Cart" +msgstr "Coș de Cumpărături" + +#: includes/admin/class-mp-store-settings-admin.php:110 +#: includes/admin/class-mp-store-settings-admin.php:218 +msgid "Store Settings" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:128 marketpress.php:607 +msgid "Settings" +msgstr "Setări" + +#: includes/common/data.php:178 includes/common/data.php:190 +msgid "Your Order Has Been Shipped! (ORDERID)" +msgstr "" + +#: includes/common/data.php:159 includes/common/data.php:166 +#: includes/common/data.php:172 +msgid "Your Order Confirmation (ORDERID)" +msgstr "" + +#: includes/common/data.php:148 +msgid "

    Thank you for your order! We appreciate your business, and please come back often to check out our new products.

    " +msgstr "" + +#: includes/common/data.php:147 +msgid "

    You are almost done! Please do a final review of your order to make sure everything is correct then click the \"Confirm Payment\" button.

    " +msgstr "" + +#: includes/common/data.php:145 +msgid "

    Please enter your shipping information in the form below to proceed with your order.

    " +msgstr "" + +#: includes/common/data.php:143 +msgid "

    If you have any questions about your order please do not hesitate to contact us.

    " +msgstr "" + +#: includes/common/data.php:106 +msgid "tag" +msgstr "" + +#: includes/common/data.php:105 +msgid "category" +msgstr "categorie" + +#: includes/common/data.php:104 +msgid "order-status" +msgstr "" + +#: includes/common/data.php:103 +msgid "shopping-cart" +msgstr "shopping-cart" + +#: includes/common/data.php:102 +msgid "products" +msgstr "produse" + +#. Translators: change default slugs here +#: includes/common/data.php:101 +msgid "store" +msgstr "" \ No newline at end of file diff --git a/languages/mp-ru.mo b/languages/mp-ru.mo new file mode 100644 index 0000000000000000000000000000000000000000..4df7ebe8a6ec6d97f5302afbb2863663e27b3447 GIT binary patch literal 7719 zcmd6rTWlO>8HNWal$vA9`TVC+nnv|*?W92ECaqE@DM3A0N!n7Nq~qPOJ!CzzotbrN zC?biW6gf>GZAGb|rKq9^f#f)G;y8&TE&!okbXG|80)#jSkPsKZ1ridc=ly1OZHFc* z2qDsXzn%Z^9pCT$|Jk2icG06A|Em1GlfMHm(Ua%>^`%R)kFS5@xq_^|%=0creiV5L zvW|Q$GD7wuKZU#s`7Pu{$R8tnkUv4b3i%u4E0BLez6JRgq}E-^hxEP~`AX!wk*`Ls zDdjat`L_xAa^%O5@~e*gF!IrI{13>O=RYHx$PpIv)q5WKI^<80zeN5XDSOZ1jK-fw z%Ij9^_rf3FHFuUC4fdmfqWtsPc9p zhmj-5=aD}|%CDzLiu8X2xf#9RM!uitKN9>FY#@J) zR2{bS@iwH7d^7Ts$V-ujkyjv}Mq=7~7ODLH7%6?fLSBRXJMsg_^*H}toP-o%lR2z0= zaT2(pR#Ib8!0>HJJxJWP&9T|+Ts+drK?rn+8iJKbnu-|Yy#^PoZ&z(HD!P_!{F>fmwu?%kNm~neZa1wkx zsAWvlTlf(>KXO5m#7WiL8YeEJEaNe?@N2bJ;%9-=N80O}jX;S{g9f{88M#Q}W)f;q zGpy})t!5F|2zn;tRzgBkGM=VY@1{7er{1;^%M(_~jtf&angr~YRlHyqIA8*&vN2{S z{Dxc{0}yh{9C0H_Jg)ViCf?)rgpCG}aV=q`-b$2%+E`HA9k;S-*WMm0!T-SE&A~|K z-5L`LHA>wG^{jih2_xiV%|zg8@i>W8_ASDDTgqD+WTb9S_z6F$+d^U*^I7e?kyZor z?TM4!iY$&ALU3xmP;tS1wJ>9R72QGI-G<@h`r%1eQ&P2DN!yTSNgRz{Uk^t7RwFC- zHvQ2c-Eeg|ho42^SLjb$!h333gznyMVu4J3xuU8!#C!xQhk{5A)WI9iNeY%5-uByX zq&c^@(ln&f+gmh{x4i?zihE&%R=w@kIy-`7BCG}8jw}gjn{j`4kkWp1WNMw6TJ!)m zXj93Y|N7Dh6cA4Rl%`ZP<5M3jk_aE{a$yAp8`*s zs^051jRy&>AGs~}HN`KzZgZH{;)wvF_~77;y_S{D)Q7?kHd@0MvR`#~#VuElqcxd} z0?^<)v_ox>A#sQX)DELG#~y#ON_{PI=Iae&4=_3jfJ9YcRBN;>>4JrlZ*hy-hSM6` zL?k$?niaWFb!ZPN8<%bBN4q;_t8Q?4_D18S1hTyFV@(QVVTZs4(L@Nm3NDp}NUpgt zvTp>CQaR-#HA{FFIe#J!>jlLq^`d?%Bn{BS&anWkVkuS{D|L52F{YVPK^Kql{AjQuyR{MEppz{s#s+ows_a(Yg*NLB)=P7h`h6)&BL0 z3qs_7pNyqpo!uc!>6b^{&cv@7L)_XLAEpoQpbz83yHkYIYEYIqa}**Rp$+WZ3?s?_ zE!BgJQ(}qUyMYRRwK&Rr$lf}}uaAdO2xIub%ot-VXf!d=fYaT(fv9KW$q;*E)WU^e_!1G<@SQw-$mS+BFxr%SQYK^#6zuRm2Vcj$LyrJ7F z+k=TP#lOmC)DF0Hef{sN^j%w7ca2-OZlJG!V155pef;aWW!o)VDtCZ*)(*J-YG2PF zIiy&XogDZBE(`9UFTGpTPVZZ{NAKa_!Q(#E;UEAgOGLYO&gSz+F2WW<5g< zPUA*}BYHd?a8c79(~aw|<6zdz#w(-M{e2rZ_PZ;taQfP}YGZ%DyTSE2mh*i5#&w;k z4I8h~SKHCIp})`Fe}A!sHGON@)6brDYp?71Q01loK2ya999NBONW^#by6XCBf6vW+ zG}_`E8E{FfXDEqvtEgekz}7@6YG* z<1Sy!k1#pI#3Dm8`I+J}w>owCliHOZWAJ!B@AA`pIm+LOd_F&u&#;bLVE!dW7Hm`_ ztAX^gD`EbH{1{5++WWlx5pvk5xT$d>()2@N*u$2VB0u|Cm0`*2VmEd&*f(%0=x% zEIqw6F~zLyDMn_(RE@~13$6i?$QBu=)oZ{^zl@>7(70YT#PW%3SrR$&6LwbHln0;?zk^K;4?Zlja` z7ITc8#mUbxs7Mc!x>N0g?ay_J^04U?Bu@d&GwrGNLAN}g?Wr4x4Mj)V)0PAaVXi$T z0H9`OpqrHT7X{`sWUDOfnf9Ufen63*s8B0avi%@WNAO`@U_8}6WZv;*3RMME7$SwX zO!3YY$tMDwn{I!Wz;R>7vbx|vBGHjgxj&VkEG8M9J-2?ARIA1usgRCY#Y&Rr%N!Xj ztr1yppj+`{g_~-H2l0j~I3ge>MM|w^9BBVKP87{D?d6X$dP?2;7*-aw!{!dj^(in; z6Q2t~G!kt4fJ`W1+D;J_rrO*Ztn3-tRpN_m9i;m(f=gBrVq-h@l@%5AL}{Feux>6C z*`owjnU3z0mRJLhO@T6H5#pd#RVJI7wU%H3F?YjU){KfwYv{4_M}+4ctHuKVHxV5+ zyb*cPa7L+gjS5|W@+24$Nl;`u+{$d!U_}OX+5yV}J~5=KCkhbet)QYw7+%Gi76h4_ z7We>!A(F)oP!<4J^UkVMN`2h|7YKn_4W>nmR z1C`||!iizNN+Ip6m4+NNu5z%Iux1pFUA<)q3RAY~G?2l`?oj|tIv2kVn2hz>4_KEH z8kPl1%$Ul9-PbVkYGiO>S9JzqS%=*`OwdX93jB!?RzMX*(o3IZOh!8#Q>4H2;{nk8 zB!TWlxl**(%b(z@h#3-Rh>8~^(LJ=aLA6x^L{|lQPOCOLtcxvk<-1@0HLK1(m4h94 zk2W?>(Ijjvtij8sOZFC3l=7%)zaXoM$rYy&p_e};XMhW>uMG&YmYygPj*P}Q@uNSOB{dH7JwQd+XoXepFhUN%P=b`dJq`+M{6WZB;PReVFL;?j} z8b)Ra+YV7^!HCHel<-js4iyS+00m?=F)bwBRzC6^k@>fT5KCfYuVw zmUTm0iFjfn1YuW>9aTS;#ZjmVzH670l^o(_LDbV7dLfm{DY+H4MOwPd3BqVSVeW9{ zC|YIdoD+H3#X={x?qGAQw6ov5IcdQ5^2bmJ#mXyju6AH)>1xEdwV%Mg{Jmg7<~w}_ ztuJ+7=O=;k+Ij9>$il`QsnZ?F;+WI*vb<7Py`tR~EjoE(-n|%?bUIn`=R}ZQmpZ>O zoX;ckrbzmM!k=ZVxl*O&v7{YBSZ>7%t>|WzLlzcyb%BW#>bkn1w~UpcmakN*<9{d8 z&Y8F3$Bq{YTycp~ieL;&XLzBK<6_wdaR1N9ll(hMk2Bx{N?pzbFo9YvQ=G+z z?6oOBCM0q{7K@xa|0Gkz-DK9T%?n=smCp5u9cq)K>?`;~Rl%0kL?;RtC%gcfn%CV( zcO|_Ppt2xEHdIIlGdM8CRj4GV!q@XaR}E=Ix(^T>lE+w4Q*nVOPI?``>?D)xxMO)H zHW3KZ>INFFynYBcgrVq)mu2-InbWwvV^~yW<8xq&SBwZBqxEHXF9XDR&J}Bw%b%h1 z;7Atn+R;4@@#BbH%E=Yo$=@*)ES~=tBEhOiwFOh+-JH;AqKHlxtSy(hsOhMeS2l=s zqa)7h>GS`Pls|zdYL2}Yc+u4ar=tv2^E&6x`_t07n{o3YHsaR5{?0^Ni=*7GSDu={ JmfCB*_fL8z5g`Bo literal 0 HcmV?d00001 diff --git a/languages/mp-ru.po b/languages/mp-ru.po new file mode 100644 index 00000000..44740d5e --- /dev/null +++ b/languages/mp-ru.po @@ -0,0 +1,8977 @@ +# Translation of MarketPress in Russian +# This file is distributed under the same license as the MarketPress package. +msgid "" +msgstr "" +"PO-Revision-Date: 2016-08-24 22:01:31+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: GlotPress/2.3.1\n" +"Language: ru\n" +"Project-Id-Version: MarketPress\n" + +#: includes/public/class-mp-checkout.php:1285 +msgid "By clicking this checkbox you allow the website to process your personal data." +msgstr "" + +#: includes/common/class-mp-gdpr.php:382 +msgid "Order Info" +msgstr "" + +#: includes/common/class-mp-gdpr.php:268 +msgid "Shipping Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:267 +msgid "Shipping Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:266 +msgid "Shipping ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:265 +msgid "Shipping State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:264 +msgid "Shipping City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:263 +msgid "Shipping Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:262 +msgid "Shipping Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:261 +msgid "Shipping Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:260 +msgid "Shipping Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:259 +msgid "Shipping Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:258 +msgid "Shipping First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:254 +msgid "Billing Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:253 +msgid "Billing Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:252 +msgid "Billing ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:251 +msgid "Billing State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:250 +msgid "Billing City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:249 +msgid "Billing Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:248 +msgid "Billing Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:247 +msgid "Billing Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:246 +msgid "Billing Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:245 +msgid "Billing Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:244 +msgid "Billing First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:151 +msgid "Orders Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:139 +msgid "Customer Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:100 includes/common/class-mp-gdpr.php:116 +msgid "MarketPress User Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:81 +msgid "" +"In addition to standard WordPress session cookies, this site might be setting an\n" +"\t\t additional cookie to remember your cart settings. This cookie will last for one year." +msgstr "" + +#: includes/common/class-mp-gdpr.php:80 +msgid "Cookies" +msgstr "" + +#: includes/common/class-mp-gdpr.php:77 +msgid "" +"The following information will be collected in order to process orders: your name,\n" +"\t\t username, email address, avatar and profile URLs, address and phone number. This data can be\n" +"\t\t exported and removed." +msgstr "" + +#: includes/common/class-mp-gdpr.php:76 +msgid "Additional data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:71 +msgid "" +"This site might be using third party services and tools to process payments or/and\n" +"\t\t process shipping data when creating orders on the MarketPress store. These services include payment\n" +"\t\t gateways: 2Checkout, Authorize.net AIM, eWay shared payments, eWay Rapid 3.1 Payments, Mijireh,\n" +"\t\t Mollie, Paymill, PayPal, PIN, Simplify Commerce by MasterCard, Stripe and WePay; shipping gateways:\n" +"\t\t Fedex, UPS, USPS." +msgstr "" + +#: includes/common/class-mp-gdpr.php:70 +msgid "Third parties" +msgstr "" + +#: includes/admin/class-mp-admin.php:403 +msgid "Start creating store pages and products for your online shop here." +msgstr "" + +#: includes/admin/class-mp-admin.php:402 +msgid "Create Online Shop" +msgstr "" + +#: includes/admin/class-mp-admin.php:394 +msgid "Run Setup Wizard" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:234 +msgid "If having problems during invoice generation, add define( 'DOMPDF_ENABLE_HTML5PARSER', true ); to the wp-config.php file." +msgstr "" + +#: includes/public/class-mp-checkout.php:723 +msgid "Invalid Email" +msgstr "" + +#: includes/public/class-mp-checkout.php:721 +#: includes/public/class-mp-checkout.php:729 +msgid "This field is required" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:804 +msgid "This option changes the built-in css styles for store pages. For a custom css style, save your css file with the /* MarketPress Style: Your CSS Theme Name Here */ header line in the \"%s\" folder and it will appear in this list so you may select it. You should select \"None\" if you don't wish to use custom CSS styles or if you are using default theme templates or custom theme templates and css to make your own completely unique store design. For more information on custom theme templates click here »." +msgstr "" + +#: includes/public/class-mp-public.php:421 +#: includes/public/class-mp-short-codes.php:142 +msgid "Please enter a value greater than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:420 +#: includes/public/class-mp-short-codes.php:141 +msgid "Please enter a value less than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:419 +#: includes/public/class-mp-short-codes.php:140 +msgid "Please enter a value between {0} and {1}." +msgstr "" + +#: includes/public/class-mp-public.php:418 +#: includes/public/class-mp-short-codes.php:139 +msgid "Please enter a value between {0} and {1} characters long." +msgstr "" + +#: includes/public/class-mp-public.php:417 +#: includes/public/class-mp-short-codes.php:138 +msgid "Please enter at least {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:416 +#: includes/public/class-mp-short-codes.php:137 +msgid "Please enter no more than {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:415 +#: includes/public/class-mp-short-codes.php:136 +msgid "Please enter a value with a valid extension." +msgstr "" + +#: includes/public/class-mp-public.php:414 +#: includes/public/class-mp-short-codes.php:135 +msgid "Please enter the same value again." +msgstr "" + +#: includes/public/class-mp-public.php:413 +#: includes/public/class-mp-short-codes.php:134 +msgid "Please enter a valid credit card number." +msgstr "" + +#: includes/public/class-mp-public.php:412 +#: includes/public/class-mp-short-codes.php:133 +msgid "Please enter only digits." +msgstr "" + +#: includes/public/class-mp-public.php:411 +#: includes/public/class-mp-short-codes.php:132 +msgid "Please enter a valid number." +msgstr "" + +#: includes/public/class-mp-public.php:410 +#: includes/public/class-mp-short-codes.php:131 +msgid "Please enter a valid date (ISO)." +msgstr "" + +#: includes/public/class-mp-public.php:409 +#: includes/public/class-mp-short-codes.php:130 +msgid "Please enter a valid date." +msgstr "" + +#: includes/public/class-mp-public.php:408 +#: includes/public/class-mp-short-codes.php:129 +msgid "Please enter a valid URL." +msgstr "" + +#: includes/public/class-mp-public.php:406 +#: includes/public/class-mp-short-codes.php:127 +msgid "Please fix this field." +msgstr "" + +#: includes/public/class-mp-checkout.php:1287 +#: includes/public/class-mp-public.php:405 +#: includes/public/class-mp-short-codes.php:126 +msgid "This field is required." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:810 +msgid "None - Without Special CSS-styles" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:809 +msgid "Default - Using Default CSS-styles" +msgstr "" + +#: marketpress.php:739 +msgid "Enable multiple downloads per product" +msgstr "" + +#: marketpress.php:738 +msgid "Multiple Downloads" +msgstr "" + +#: includes/public/class-mp-checkout.php:715 +msgid "Invalid Zip Code" +msgstr "" + +#: includes/common/template-functions.php:2126 +msgid "Guest Email" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:195 +msgid "There was a problem finalizing your purchase. Please re-enter your credit card information and try again" +msgstr "" + +#: includes/common/class-mp-cart.php:565 includes/common/class-mp-order.php:600 +#: includes/common/helpers.php:111 +msgid "Download %1$s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:331 +msgid "Export products to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:328 +msgid "The import process uses the WordPress importer plugin." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:326 +msgid "Import / Export Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:325 +msgid "Export settings to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:324 +msgid "Import configuration" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:320 +msgid "Use the text below to export to a new installation. Or paste in the new configuration to import." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:318 +msgid "Import / Export Settings" +msgstr "" + +#. translators: URL to wp-admin/import.php +#: includes/admin/store-settings/class-mp-store-settings-import.php:266 +msgid "This importer is not installed. Please install importers from the main site." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:261 +msgid "Install Now" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:260 +msgid "Install %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:240 +msgid "Run Importer" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:239 +msgid "Run %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:258 +msgid "Import/Export" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1199 +msgid "Requires Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:737 +msgid "Optionally limit the user to some categories" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:671 +msgid "Should this coupon only be available to logged in users?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:670 +msgid "Require Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:655 +msgid "Mimimum number of products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:653 +msgid "Enter the minimum number of products in the cart that this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:648 +msgid "Can this coupon be limited to a number of products in the cart?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:334 +msgid "Add all values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:265 +msgid "Set as default variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:154 +msgid "Set Default" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:150 +msgid "More Info" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:40 +msgid "MarketPress - Quick Setup" +msgstr "" + +#: includes/public/class-mp-checkout.php:1399 +msgid "Proceed to checkout and create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1241 +#: includes/public/class-mp-checkout.php:1245 +msgid "Register account" +msgstr "" + +#: includes/public/class-mp-checkout.php:1233 +msgid "Register as customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:765 +msgid "

    Oops!

    Looks like you haven't added anything your cart. Let's go shopping!

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:763 +msgid "

    Oops!

    The cart is disabled.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing Information" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:214 +msgid "Global Currency" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:198 +msgid "Global Store Currency" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:507 +msgid "There are no shipping services available for this type of package in your location." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:168 +msgid "Using this USPS Shipping calculator requires requesting an Ecommerce API Username and Password. Get your free set of credentials here ». The password is no longer used for the API, just the username which you should enter below. The USPS test site has not yet been updated and currently doesn't work - you should just request activating your credentials with USPS and go live." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:339 +msgid "ZIP Code" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:334 +msgid "Last name" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:333 +msgid "First name" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:150 +msgid "These are the manual payment instructions to display on the order confirmation screen. TOTAL will be replaced with the order total and ORDERID will be replaced with Order ID." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:240 +msgid "You must login to Authorize.net merchant dashboard to obtain the API login ID and API transaction key. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:327 +msgid "
    1. Set the \"Return Method\" within Site Management to Header Redirect and set the \"Return URL\" to %s
    2. Set your notifications url to %s
    " +msgstr "" + +#: includes/common/data.php:191 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Also, digital downloads included in your order are now ready to be downloaded. Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:185 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order is now available to download! Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:184 +msgid "Your Order Is Ready To Be Downloaded! (ORDERID)" +msgstr "" + +#: includes/common/data.php:179 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:173 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received, your digital goods are ready to be downloaded and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:167 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received and your digital goods are ready to be downloaded. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:160 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +" Your order has been received, and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information: \n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/class-mp-product.php:638 +msgid "You can not add more items to cart." +msgstr "" + +#: includes/common/class-mp-product.php:635 +msgid "You can only add {0} to cart." +msgstr "" + +#: includes/common/class-mp-product.php:625 +msgid "This product has an order limit of %d." +msgstr "" + +#: includes/common/class-mp-order.php:1454 +msgid "Shipped: tracking code: %s" +msgstr "" + +#: includes/common/class-mp-order.php:1000 +#: includes/common/class-mp-order.php:1012 +msgid "Finished" +msgstr "" + +#: includes/common/class-mp-order.php:858 +msgid "Contact Details" +msgstr "" + +#: includes/common/class-mp-order.php:339 includes/common/data.php:155 +msgid "" +"A new order (ORDERID) was created in your store:\n" +"\n" +" ORDERINFOSKU\n" +"\n" +" SHIPPINGINFO\n" +"\n" +" PAYMENTINFO\n" +"\n" +msgstr "\n" + +#: includes/common/class-mp-cart.php:1858 +msgid "Add again" +msgstr "" + +#: includes/common/class-mp-cart.php:1852 +msgid "was removed from Shopping Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1242 +#: includes/public/class-mp-short-codes.php:160 +msgid "Cart update notice: this item has a limit per order or you have reached the stock limit." +msgstr "" + +#: includes/admin/widgets/product-list.php:235 +msgid "Show Only Featured Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:533 +msgid "If enabled, users won't be able to filter products per category and/or to order by release date/name/price." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:531 +msgid "Hide Products Filter?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:353 +msgid "Notification to registration email instead of billing email?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:322 +msgid "Order Shipped - Mixed orders (with both digital and physical products)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:289 +msgid "Order Shipped - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:224 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:194 +msgid "New Order - Mixed" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:161 +msgid "New Order - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:115 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:243 +msgid "Mixed orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:110 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:238 +msgid "Digital downloads orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:105 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:233 +msgid "Physical orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:96 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed.
    For orders placed with manual payment, emails set here will be overriden by the one configured in manual payments settings, under payments settings page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:89 +msgid "Customer Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:47 +msgid "Admin Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:566 +msgid "Only contact details" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:565 +msgid "Full billing info" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:561 +msgid "Details Collection" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:548 +msgid "Digital Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:515 +msgid "Apply Tax to Digital Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:236 +msgid "product (default)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:231 +msgid "If you are experiencing conflicts with other e-commerce plugins change this setting. This will change the internal post type of all your products. Please note that changing this option may break 3rd party themes or plugins." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1203 +msgid "Hide details" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1202 +msgid "Show all changes" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1184 +msgid "Version %s" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1161 +msgid "Current" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1131 +msgid "%s changelog" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:952 +msgid "We did not find any data for this plugin or theme..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:285 +msgid "Activate WPMU DEV Dashboard" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:279 +msgid "Just one more step - activate the WPMU DEV Dashboard plugin and you're all done!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:277 +msgid "Important updates are available for your WPMU DEV plugins/themes. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:273 +msgid "Just one more step to enable updates and support for %s!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:271 +msgid "Important updates are available for %s. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:264 +msgid "activate" +msgstr "" + +#: includes/admin/class-mp-admin.php:398 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:248 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:289 +msgid "Dismiss" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:247 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:288 +msgid "Saving..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:244 +msgid "Install Plugin" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:238 +msgid "Almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:236 +msgid "Important updates are available for your WPMU DEV plugins/themes. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:232 +msgid "%s is almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:230 +msgid "Important updates are available for %s. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:223 +msgid "install" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1428 +msgid "Sets the number of Tags to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1289 +msgid "How many products to display in the product list if \"paginate\" is set to false." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:739 +#: includes/admin/class-mp-shortcode-builder.php:906 +#: includes/admin/class-mp-shortcode-builder.php:1350 +msgid "Grid" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:735 +#: includes/admin/class-mp-shortcode-builder.php:902 +#: includes/admin/class-mp-shortcode-builder.php:1346 +msgid "Products will be displayed as list or grid." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:206 +msgid "Display a cloud or list of your global product tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:205 +msgid "Display a list of your global categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:204 +msgid "Display a list or grid of your global products." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:181 +msgid "Display a list of featured products." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1451 +msgid "Is Featured?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1444 +msgid "Featured Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:581 +#: includes/admin/class-mp-products-admin.php:1580 +msgid "% discount" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:579 +msgid "OR" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:460 +#: includes/admin/class-mp-products-admin.php:586 +#: includes/admin/widgets/product-list.php:217 +msgid "Featured" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:536 +#: includes/admin/class-mp-orders-admin.php:538 +msgid "Tracking Link" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:508 +msgid "Shipping Tax" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:356 +msgid "Shipping Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:352 +msgid "Taxes Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:349 +msgid "Products Total" +msgstr "" + +#: includes/admin/class-mp-ajax.php:366 +msgid "Oops! You entered an invalid username/email and or password." +msgstr "" + +#: includes/admin/class-mp-ajax.php:254 +msgid "Percentage Discount" +msgstr "" + +#: includes/admin/class-mp-ajax.php:234 +msgid "Limit the Amount of Items per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:214 +msgid "Unused Attributes" +msgstr "" + +#: includes/admin/class-mp-admin.php:82 +msgid "Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-admin.php:79 +msgid "MarketPress setup is not complete! Once you've completed this quick setup wizard you'll have a fully working online store - exciting! " +msgstr "" + +#: marketpress.php:263 +msgctxt "mp_order" +msgid "Add New" +msgstr "" + +#: marketpress.php:184 +msgctxt "product_tag" +msgid "Product Tag" +msgstr "" + +#: marketpress.php:183 +msgctxt "product_tag" +msgid "Product Tags" +msgstr "" + +#: marketpress.php:150 +msgctxt "product_category" +msgid "Product Category" +msgstr "" + +#: marketpress.php:149 +msgctxt "product_category" +msgid "Product Categories" +msgstr "" + +#. Author URI of the plugin/theme +msgid "http://premium.wpmudev.org" +msgstr "" + +#: marketpress.php:729 +msgid "Invoice PDF" +msgstr "" + +#: marketpress.php:712 +msgid "Grant access to themes and gateways depending on the user's Pro Site level" +msgstr "" + +#: marketpress.php:711 +msgid "Pro Sites" +msgstr "" + +#: marketpress.php:703 +msgid "Offer and accept coupon codes" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:687 +msgid "Install %s Pages" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:682 +msgid "Welcome to %s – Install pages required by the plugin automatically." +msgstr "" + +#: marketpress.php:668 +msgid "Your pages were created successfully." +msgstr "" + +#: marketpress.php:436 +msgid "Add a Product" +msgstr "" + +#: marketpress.php:271 +msgid "Parent Order" +msgstr "" + +#: marketpress.php:270 +msgid "No orders found in trash" +msgstr "" + +#: marketpress.php:269 +msgid "No orders found" +msgstr "Заказы не найдены" + +#: marketpress.php:265 +msgid "Edit Order" +msgstr "" + +#: marketpress.php:264 +msgid "Add New Order" +msgstr "" + +#: marketpress.php:220 marketpress.php:221 +msgid "Add New Product" +msgstr "" + +#: marketpress.php:197 +msgid "No product tags found" +msgstr "" + +#: marketpress.php:196 +msgid "Choose from the most used product tags" +msgstr "" + +#: marketpress.php:195 +msgid "Add or remove product tags" +msgstr "" + +#: marketpress.php:194 +msgid "Separate product tags with commas" +msgstr "" + +#: marketpress.php:193 +msgid "Search Product Tags" +msgstr "" + +#: marketpress.php:192 +msgid "Parent Product Tag:" +msgstr "" + +#: marketpress.php:191 +msgid "Parent Product Tag" +msgstr "" + +#: marketpress.php:190 +msgid "New Product Tag Name" +msgstr "" + +#: marketpress.php:189 +msgid "Add New Product Tag" +msgstr "" + +#: marketpress.php:188 +msgid "Update Product Tag" +msgstr "" + +#: marketpress.php:187 +msgid "View Product Tag" +msgstr "" + +#: marketpress.php:186 +msgid "Edit Product Tag" +msgstr "" + +#: marketpress.php:185 +msgid "All Product Tags" +msgstr "" + +#: marketpress.php:163 +msgid "No product categories found" +msgstr "" + +#: marketpress.php:162 +msgid "Choose from the most used product categories" +msgstr "" + +#: marketpress.php:161 +msgid "Add or remove product categories" +msgstr "" + +#: marketpress.php:160 +msgid "Separate product categories with commas" +msgstr "" + +#: marketpress.php:159 +msgid "Search Product Categories" +msgstr "" + +#: marketpress.php:158 +msgid "Parent Product Category:" +msgstr "" + +#: marketpress.php:157 +msgid "Parent Product Category" +msgstr "" + +#: marketpress.php:156 +msgid "New Product Category Name" +msgstr "" + +#: marketpress.php:155 +msgid "Add New Product Category" +msgstr "" + +#: marketpress.php:154 +msgid "Update Product Category" +msgstr "" + +#: marketpress.php:153 +msgid "View Product Category" +msgstr "" + +#: marketpress.php:152 +msgid "Edit Product Category" +msgstr "" + +#: marketpress.php:151 +msgid "All Product Categories" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Please fix the %s1 and then try submitting the form again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Oops! The form contains %s1 which %s2 been highlighted below." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:660 +msgid "have" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:659 +msgid "has" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:651 +msgid "Value must be less than {0}" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:650 +msgid "Please enter only letters and numbers" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:539 +msgid "Due to prolonged inactivity on this page, one or more settings were not saved. Please try again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:535 +msgid "Settings Saved" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-user-select.php:22 +msgid "Select Some Users" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-section.php:18 +msgid "Section Title" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:425 +msgid "Are you sure you want to delete this?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:30 +msgid "Add Row" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-post-select.php:24 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-taxonomy-select.php:22 +msgid "Select Posts" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:210 +msgid "Add Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:129 +msgid "Select the image that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:93 +msgid "Select image(s) that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:79 +msgid "Select the image that you would like to use for this variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:48 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:82 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:68 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:132 +msgid "Select Image" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:31 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:160 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:168 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:19 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:115 +msgid "Select File" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:30 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:18 +msgid "Select the file that you would like to use." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:357 +msgid "Create Variations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:356 +msgid "Add Another Variant" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Insert a value and press ENTER" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "(e.g. White, Grey, Red etc.)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Variation Values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:333 +msgid "Or create new variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "(e.g. Color)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:303 +msgid "You are about to delete selected variants.
    If you want to continue please confirm." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:302 +msgid "Confirmation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:290 +msgid "Insert quantity available. Empty for unlimited." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:281 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:294 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:307 +msgid "Cancel" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:280 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:293 +msgid "Update" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:277 +msgid "Insert the price i.e. 25 or 25.50" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:115 +msgid "Img." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:85 +msgid "Add New Variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:79 +msgid "Delete Variants" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:78 +msgid "Update Prices" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:77 +msgid "Update Inventory" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:76 +msgid "Update Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:75 +msgid "Bulk Actions" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:73 +msgid "Select bulk action" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:196 +msgid "Configure Store" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:195 +msgid "Configure shipping rates, emails and your store's appearance. " +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:190 +msgid "Add Product" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:189 +msgid "Add your first product for sale and get familiar with adding products." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:184 +msgid "Your store is almost ready for its first customers, but first it needs some products. Get started by adding products below, or jump straight into further configuring your store’s settings." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:183 +msgid "Woohoo! Your online store is up and running." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:160 +msgid "Finish Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:124 +msgid "And what metric system do you want to use?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:113 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:142 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:159 +msgid "Back" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:109 +msgid "Do you want to apply tax for your products? You can customize this for each product and variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:105 +msgid "What currency do you want to sell with?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:93 +msgid "And, which countries do you want to sell to?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:89 +msgid "Where is your online store based?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:80 +msgid "Payment Gateway" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:79 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:123 +msgid "Metric System" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:78 +msgid "Currency & Tax" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:77 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:88 +msgid "Locations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:70 +msgid "Choose where you want to sell your stuff and what currency. Easy!" +msgstr "" + +#: includes/public/class-mp-checkout.php:1400 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:58 +msgid "Continue" +msgstr "" + +#: includes/admin/class-mp-admin.php:83 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:53 +msgid "Skip this step, I'll do this manually" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:49 +msgid "Install store pages" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:44 +msgid "Once you've completed this quick setup wizard you'll have a fully working online store - exciting! Start
    by creating the default store pages for the online store such as the cart, checkout and store pages." +msgstr "После того, как вы завершили этот быстрый мастер установки вы будете иметь полностью рабочий интернет-магазин - замечательно! Начните
    путем создания страниц по умолчаниюдля интернет-магазина, таких как корзина, проверка и хранения страниц." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:42 +msgid "MarketPress adds a full online store to your website, with heaps of configuration options and addons
    to suit your needs. It's really easy to get going, and only takes a few minutes to setup!" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:41 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:69 +msgid "Welcome to MarketPress - Quick Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-advanced-select.php:23 +msgid "Select Some Options" +msgstr "" + +#: includes/wpmudev-metaboxes/class-wpmudev-field.php:694 +msgid "You must the WPMUDEV_Field::display() method in your form field class" +msgstr "" + +#: includes/public/class-mp-short-codes.php:636 +msgid "Only %s left in stock..." +msgstr "" + +#: includes/public/class-mp-short-codes.php:633 +msgid "Unlimited stock" +msgstr "" + +#: includes/public/class-mp-short-codes.php:430 +msgid "product_id must be defined" +msgstr "" + +#: includes/public/class-mp-checkout.php:1250 +msgid "An account with this username already exists" +msgstr "" + +#: includes/public/class-mp-checkout.php:1394 +msgid "Continue as Guest" +msgstr "" + +#: includes/public/class-mp-checkout.php:1393 +msgid "Proceed to checkout and you'll have an opportunity to create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1392 +#: includes/public/class-mp-checkout.php:1398 +msgid "First-time customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1386 +msgid "Login" +msgstr "" + +#: includes/public/class-mp-checkout.php:1379 +msgid "E-Mail Address/Username" +msgstr "" + +#: includes/public/class-mp-checkout.php:1377 +msgid "Sign in to speed up the checkout process." +msgstr "" + +#: includes/public/class-mp-checkout.php:1376 +msgid "Have an account?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1297 +msgid "Shipping address different than billing?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1184 +msgid "There are no available gateways to process this payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1160 +msgid "Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:1123 +msgid "Oops! An error occurred while processing your payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1051 +msgid "Next Step »" +msgstr "" + +#: includes/public/class-mp-checkout.php:1045 +msgid "« Previous Step" +msgstr "" + +#: includes/public/class-mp-checkout.php:873 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:657 +msgid "error" +msgstr "" + +#: includes/public/class-mp-checkout.php:872 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:658 +msgid "errors" +msgstr "" + +#: includes/public/class-mp-checkout.php:871 +msgid "

    Oops! We found %d %s in the form below.

    Fields that have errors are highlighted in red below. Entering into a field will reveal the actual error that occurred.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:870 +msgid "Please enter a valid first and last name" +msgstr "" + +#: includes/public/class-mp-checkout.php:869 +msgid " Please enter a valid card security code" +msgstr "" + +#: includes/public/class-mp-checkout.php:868 +msgid "Please enter a valid card expiration" +msgstr "" + +#: includes/public/class-mp-checkout.php:773 +msgid "Javascript is required in order to checkout. Please enable Javascript in your browser and then refresh this page." +msgstr "" + +#: includes/public/class-mp-checkout.php:588 +msgid "An unknown error occurred. Please try again." +msgstr "" + +#: includes/public/class-mp-checkout.php:386 +msgid "Town/City" +msgstr "" + +#: includes/public/class-mp-checkout.php:380 +msgid "Apartment, suite, unit, building, floor, etc" +msgstr "Квартира, офис, здание, этаж и т.д." + +#: includes/public/class-mp-checkout.php:376 +msgid "Address Line 2" +msgstr "Адрес, строка 2" + +#: includes/public/class-mp-checkout.php:363 +msgid "Address Line 1" +msgstr "" + +#: includes/common/class-mp-order.php:770 +#: includes/public/class-mp-checkout.php:354 +msgid "Company" +msgstr "" + +#: includes/public/class-mp-checkout.php:330 +msgid "Last" +msgstr "" + +#: includes/public/class-mp-checkout.php:321 +msgid "First" +msgstr "" + +#: includes/public/class-mp-checkout.php:284 +msgid "State/Province" +msgstr "" + +#: includes/public/class-mp-checkout.php:83 +msgid "Review Order/Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing/Shipping Address" +msgstr "" + +#: includes/public/class-mp-checkout.php:80 +msgid "Login/Register" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:530 +msgid "Marketplace" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:523 +msgid "Global Marketplace Pages" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +msgid "Store Network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +#: includes/multisite/class-mp-admin-multisite.php:494 +msgid "Store Network Settings" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:440 +msgid "Set theme access permissions for network stores. For a custom css theme, save your css file with the MarketPress Theme: NAME header in the /marketpress/ui/themes/ folder and it will appear in this list so you may select it." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:361 +msgid "Choose a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:336 +msgid "%d products get indexed" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:285 +msgid "Product Indexer" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:281 +msgid "Please hold on..." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:280 +msgid "Index Products" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:279 +msgid "%d products have been indexed in whole network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:182 +msgid "Enable Global Shopping Cart?" +msgstr "Включить Глобальную Корзину?" + +#: includes/multisite/class-mp-admin-multisite.php:178 +msgid "Limit Global Widgets/Shortcodes To Main Blog?" +msgstr "" + +#: includes/common/template-functions.php:2802 +#: includes/multisite/template-functions.php:355 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:97 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:114 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:143 +msgid "Next" +msgstr "" + +#: includes/common/template-functions.php:2801 +#: includes/multisite/template-functions.php:354 +msgid "Prev" +msgstr "" + +#: includes/common/template-functions.php:2597 +msgid "Tagged in " +msgstr "" + +#: includes/common/template-functions.php:2196 +#: includes/common/template-functions.php:2202 +#: includes/common/template-functions.php:2214 +#: includes/common/template-functions.php:2217 +msgid "Oops! We couldn't locate any orders matching that order number. Please verify the order number and try again." +msgstr "" + +#: includes/common/template-functions.php:2138 +msgid "Look Up" +msgstr "" + +#: includes/common/template-functions.php:1423 +msgid "Please choose a shipping method" +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "If you have your order ID you can look it up using the form below." +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "Order Search" +msgstr "" + +#: includes/common/template-functions.php:910 +#: includes/public/class-mp-checkout.php:1440 +msgid "Cart" +msgstr "Корзина" + +#: includes/common/template-functions.php:895 +msgid "[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:887 +msgid "[mp_global_categories_list]" +msgstr "" + +#: includes/common/template-functions.php:880 +msgid "" +"Welcome to our market place!\n" +"\n" +"Check out our network of products:\n" +"\n" +"[mp_list_global_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_global_categories_list]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:879 +msgid "Global Store" +msgstr "" + +#: includes/common/template-functions.php:873 +msgid "" +"Welcome to our online store! Feel free to browse around:\n" +"\n" +"[mp_store_navigation]\n" +"\n" +"Check out our most popular products:\n" +"\n" +"[mp_popular_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_list_categories]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_tag_cloud]" +msgstr "" +"Добро пожаловать на наш Интернет-магазин! Чувствуйте себя свободно:\n" +"\n" +"[mp_store_navigation]\n" +"\n" +"Посмотрите наши самые популярные товары:\n" +"\n" +"[mp_popular_products]\n" +"\n" +"Обзор по категориям:\n" +"\n" +"[mp_list_categories]\n" +"\n" +"Обзор по тэгам:\n" +"\n" +"[mp_tag_cloud]" + +#: includes/common/shipping-modules/mp-weight-rate.php:127 +msgid "If cart weight is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "Если корзина вес больше или равен этому значению, то будет использоваться ставки из этой строки во время проверки." + +#: includes/common/shipping-modules/mp-weight-rate.php:126 +msgid "Cart Weight" +msgstr "Вес корзины " + +#: includes/common/shipping-modules/mp-usps.php:222 +msgid "Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:206 +msgid "Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:196 +msgid "Retail Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:195 +msgid "Online Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:193 +msgid "Rates Request Type" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:189 +msgid "Maximum Weight Per Package" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:195 +#: includes/common/shipping-modules/mp-usps.php:236 +msgid "Enter your standard box sizes as LengthxWidthxHeight (e.g. 12x8x6) For each box defined enter the maximum weight it can contain. Note: the shipping prices this plugin calculates are estimates. If they are consistently too low or too high, please check that the list of boxes above and the product weights are accurate and complete." +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:187 +msgid "Handling Charge Per Box Shipped" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:176 +#: includes/common/shipping-modules/mp-ups.php:181 +msgid "Offered Services" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:165 +msgid "Shipper Number" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:151 +msgid "User ID" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:144 +msgid "Developer Kit Access Key" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:140 +msgid "Use Sandbox Mode?" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:123 +msgid "In order to use UPS, you will need a UPS Developer Kit access key and the UPS user ID and password associated with the access key. Set these up for free here. If this information is missing or incorrect, an error will appear during the checkout process and the buyer will not be able to complete the transaction." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:112 +msgid "If cart total is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "Если Итоговая сумма корзины больше или равна этому значению, то будет использоваться ставки из этой строки во время проверки." + +#: includes/common/shipping-modules/mp-table-rate.php:111 +msgid "Cart Total" +msgstr "Корзина Всего" + +#: includes/common/shipping-modules/mp-table-rate.php:95 +#: includes/common/shipping-modules/mp-weight-rate.php:111 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Don't worry about sorting as this will be done automatically upon saving." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:170 +msgid "Method Title (visible for clients)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:409 +#: includes/common/shipping-modules/mp-ups.php:216 +#: includes/common/shipping-modules/mp-usps.php:251 +msgid "Max Weight (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:402 +#: includes/common/shipping-modules/mp-ups.php:209 +#: includes/common/shipping-modules/mp-usps.php:247 +msgid "Size (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:387 +msgid "Enter your standard box sizes as LengthxWidthxHeight ( 12x8x6 ) For each box defined enter the maximum weight it can contain. Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:361 +#: includes/common/shipping-modules/mp-usps.php:229 +msgid "Handling Charge per International Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:353 +msgid "International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:339 +#: includes/common/shipping-modules/mp-usps.php:213 +msgid "Handling Charge per Domestic Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:331 +msgid "Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:321 +msgid "When checked the customer can chose Residential or Commercial delivery with Residential the default. Unchecked it's only Residential rates." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:320 +msgid "Allow Commercial Delivery?" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:315 +msgid "Fedex 10kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:314 +msgid "Fedex 25kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:313 +msgid "Fedex Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:312 +msgid "Fedex Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:311 +msgid "Fedex Pak" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:310 +msgid "Fedex Tube" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:306 +msgid "Default Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:294 +msgid "Dropoff Type" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:290 +msgid "Meter ID" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:134 +msgid "This is a residential address" +msgstr "Это адрес проживания" + +#: includes/common/payment-gateways/wepay.php:283 +msgid "There was an error processing your card: \"%s\". Please check your credit card info and try again." +msgstr " Произошла ошибка при обработки вашей карты: \"%s\". Пожалуйста, проверьте данные вашей кредитной карты и повторите попытку еще раз." + +#: includes/common/payment-gateways/wepay.php:121 +msgid "Wepay makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept cards directly on your site. You don't need a merchant account or gateway. WePay handles everything including storing cards. Credit cards go directly to WePay's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:385 +msgid "There was an error processing your card - \"%s\". Please try again." +msgstr "Имела место ошибка при обработке вашей карты - \"%s\". Пожалуйста, попробуйте еще раз." + +#: includes/common/payment-gateways/stripe.php:356 +msgid "%s Store Purchase - Order ID - %s, Email - %s" +msgstr "%s Продажи магазина - ID Заказа - %s, Email - %s" + +#: includes/common/payment-gateways/stripe.php:251 +msgid "Stripe makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept Visa, MasterCard, American Express, Discover, JCB, and Diners Club cards directly on your site. You don't need a merchant account or gateway. Stripe handles everything, including storing cards, subscriptions, and direct payouts to your bank account. Credit cards go directly to Stripe's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "Нашивки (Stripe) позволяет легко начать принимать кредитные карты прямо на вашем сайте с полным соблюдением PCI. Принимаем к оплате Visa, MasterCard, American Express, Discover, JCB и Diners Club карты непосредственно на вашем сайте. Вам не нужно торгового счета или шлюз. Нашивки (Stripe) обрабатывает все, в том числе хранения карты памяти, подписки и прямые выплаты на ваш банковский счет. Кредитные карты идут непосредственно в безопасной среде нашивки, и никогда не попадут на серверы, так что вы можете избежать большинства требований PCI." + +#: includes/common/payment-gateways/stripe.php:192 +msgid "ZMW - Zambian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:191 +msgid "ZAR - South African Rand" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:190 +msgid "YER - Yemeni Rial" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:189 +msgid "XPF - Cfp Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:188 +msgid "XOF - West African Cfa Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:187 +msgid "XCD - East Caribbean Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:186 +msgid "XAF - Central African Cfa Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:185 +msgid "WST - Samoan Tala" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:184 +msgid "VUV - Vanuatu Vatu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:183 +msgid "VND - Vietnamese Đồng" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:182 +msgid "VEF - Venezuelan Bolívar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:181 +msgid "UZS - Uzbekistani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:180 +msgid "UYI - Uruguayan Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:178 +msgid "UGX - Ugandan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:177 +msgid "UAH - Ukrainian Hryvnia" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:176 +msgid "TZS - Tanzanian Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:175 +msgid "TWD - New Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:174 +msgid "TTD - Trinidad and Tobago Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:172 +msgid "TOP - Tongan Paʻanga" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:171 +msgid "TJS - Tajikistani Somoni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:169 +msgid "SZL - Swazi Lilangeni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:168 +msgid "SVC - Salvadoran Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:167 +msgid "STD - São Tomé and Príncipe Dobra" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:166 +msgid "SRD - Surinamese Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:165 +msgid "SOS - Somali Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:164 +msgid "SLL - Sierra Leonean Leone" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:163 +msgid "SHP - Saint Helenian Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:160 +msgid "SCR - Seychellois Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:159 +msgid "SBD - Solomon Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:157 +msgid "RWF - Rwandan Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:156 +msgid "RUB - Russian Ruble" +msgstr "RUB - Российский рубль" + +#: includes/common/payment-gateways/stripe.php:155 +msgid "RSD - Serbian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:154 +msgid "RON - Romanian Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:153 +msgid "QAR - Qatari Riyal" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:152 +msgid "PYG - Paraguayan Guaraní*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:151 +msgid "PLN - Polish Złoty" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:150 +msgid "PKR - Pakistani Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:149 +msgid "PHP - Philippine Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:148 +msgid "PGK - Papua New Guinean Kina" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:147 +msgid "PEN - Peruvian Nuevo Sol*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:146 +msgid "PAB - Panamanian Balboa*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:144 +msgid "NPR - Nepalese Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:142 +msgid "NIO - Nicaraguan Córdoba*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:141 +msgid "NGN - Nigerian Naira" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:140 +msgid "NAD - Namibian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:139 +msgid "MZN - Mozambican Metical" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:137 +msgid "MXN - Mexican Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:136 +msgid "MWK - Malawian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:135 +msgid "MVR - Maldivian Rufiyaa" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:134 +msgid "MUR - Mauritian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:133 +msgid "MRO - Mauritanian Ouguiya" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:132 +msgid "MOP - Macanese Pataca" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:131 +msgid "MNT - Mongolian Tögrög" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:130 +msgid "MKD - Macedonian Denar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:129 +msgid "MGA - Malagasy Ariary" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:128 +msgid "MDL - Moldovan Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:126 +msgid "LVL - Latvian Lats" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:124 +msgid "LSL - Lesotho Loti" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:123 +msgid "LRD - Liberian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:122 +msgid "LKR - Sri Lankan Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:121 +msgid "LBP - Lebanese Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:120 +msgid "LAK - Lao Kip*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:119 +msgid "KZT - Kazakhstani Tenge" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:118 +msgid "KYD - Cayman Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:117 +msgid "KRW - South Korean Won" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:116 +msgid "KMF - Comorian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:115 +msgid "KHR - Cambodian Riel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:114 +msgid "KGS - Kyrgyzstani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:113 +msgid "KES - Kenyan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:111 +msgid "JMD - Jamaican Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:110 +msgid "ISK - Icelandic Króna" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:109 +msgid "INR - Indian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:108 +msgid "ILS - Israeli New Sheqel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:107 +msgid "IDR - Indonesian Rupiah" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:105 +msgid "HTG - Haitian Gourde" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:103 +msgid "HNL - Honduran Lempira*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:101 +msgid "GYD - Guyanese Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:100 +msgid "GTQ - Guatemalan Quetzal*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:99 +msgid "GNF - Guinean Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:98 +msgid "GMD - Gambian Dalasi" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:97 +msgid "GIP - Gibraltar Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:96 +msgid "GEL - Georgian Lari" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:94 +msgid "FKP - Falkland Islands Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:93 +msgid "FJD - Fijian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:91 +msgid "ETB - Ethiopian Birr" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:90 +msgid "EGP - Egyptian Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:89 +msgid "EEK - Estonian Kroon*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:88 +msgid "DZD - Algerian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:87 +msgid "DOP - Dominican Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:85 +msgid "DJF - Djiboutian Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:84 +msgid "CZK - Czech Koruna*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:83 +msgid "CVE - Cape Verdean Escudo*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:82 +msgid "CRC - Costa Rican Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:81 +msgid "COP - Colombian Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:80 +msgid "CNY - Chinese Renminbi Yuan" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:79 +msgid "CLP - Chilean Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:77 +msgid "CDF - Congolese Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:76 +msgid "CAD - Canadian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:75 +msgid "BZD - Belize Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:74 +msgid "BWP - Botswana Pula" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:73 +msgid "BSD - Bahamian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:72 +msgid "BRL - Brazilian Real*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:71 +msgid "BOB - Bolivian Boliviano*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:70 +msgid "BND - Brunei Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:69 +msgid "BMD - Bermudian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:68 +msgid "BIF - Burundian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:67 +msgid "BGN - Bulgarian Lev" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:66 +msgid "BDT - Bangladeshi Taka" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:65 +msgid "BBD - Barbadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:64 +msgid "BAM - Bosnia & Herzegovina Convertible Mark" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:63 +msgid "AZN - Azerbaijani Manat" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:62 +msgid "AWG - Aruban Florin" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:61 +msgid "AUD - Australian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:60 +msgid "ARS - Argentine Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:59 +msgid "AOA - Angolan Kwanza*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:58 +msgid "ANG - Netherlands Antillean Gulden" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:57 +msgid "AMD - Armenian Dram" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:56 +msgid "ALL - Albanian Lek" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:55 +msgid "AFN - Afghan Afghani*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:54 +msgid "AED - United Arab Emirates Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:345 +msgid "Skrill balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:327 +msgid "Skrill IPN message received." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:283 +msgid "Skrill" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:278 +msgid "Pending payment" +msgstr "Отложенный платеж" + +#: includes/common/payment-gateways/skrill.php:144 +msgid "The secret word must match the word submitted in the \"Merchant Tools\" section of your Skrill account." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:134 +msgid "You must use your valid Skrill merchant email. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:133 +msgid "Skrill Email" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:123 +msgid "Resell your inventory via Skrill.com (Moneybookers)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:95 +msgid "ZAR - South-African Rand" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:93 +msgid "TWD - Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:92 +msgid "TRY - New Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:91 +msgid "TND - Tunisian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:90 +msgid "THB - Thailand Baht" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:89 +msgid "SKK - Slovakian Koruna" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:86 +#: includes/common/payment-gateways/stripe.php:158 +msgid "SAR - Saudi Riyal" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:85 +msgid "RSD - Serbian dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:83 +msgid "QAR - Qatari Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:81 +msgid "OMR - Omani Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:80 +msgid "NOK - Norwegian Krone " +msgstr "" + +#: includes/common/payment-gateways/skrill.php:78 +#: includes/common/payment-gateways/stripe.php:138 +msgid "MYR - Malaysian Ringgit" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:77 +#: includes/common/payment-gateways/stripe.php:127 +msgid "MAD - Moroccan Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:74 +msgid "KRW - South-Korean Won" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:72 +msgid "JOD - Jordanian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:70 +msgid "INR - Indian Rupee" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:63 +msgid "EEK - Estonian Kroon" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:56 +msgid "AED - Utd. Arab Emir. Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:52 +msgid "Turkish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:51 +msgid "Swedish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:50 +msgid "Spanish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:49 +msgid "Russian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:48 +msgid "Romainian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:47 +msgid "Polish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:46 +msgid "Italian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:45 +msgid "Greek" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:44 +msgid "German" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:43 +msgid "French" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:42 +msgid "Finnish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:41 +msgid "English" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:40 +msgid "Dutch" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:39 +msgid "Danish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:38 +msgid "Czech" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:37 +msgid "Chinese" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:201 +msgid "There was an error processing your card: %s. Please re-enter your credit card info and try again." +msgstr "Произошла ошибка при обработки вашей карты: %s. Пожалуйста введите информацию вашей кредитной карты и повторите попытку." + +#: includes/common/payment-gateways/pin.php:278 +msgid "
  • There was an error processing your card: \"%s\". Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:274 +msgid "
  • There was an error processing your card. Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:177 +#: includes/common/payment-gateways/stripe.php:279 +msgid "Publishable Key" +msgstr "" + +#: includes/common/payment-gateways/pin.php:163 +msgid "API Credentials?" +msgstr "" + +#: includes/common/payment-gateways/pin.php:147 +msgid "PIN makes it easy to start accepting credit card payments with Australia’s first all-in-one online payment system. Accept all major credit cards directly on your site. Your sales proceeds are deposited to any Australian bank account, no merchant account required." +msgstr "" + +#: includes/common/payment-gateways/pin.php:57 +#: includes/common/payment-gateways/stripe.php:179 +msgid "USD - United States Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:455 +msgid "Email Footer" +msgstr "Нижний колонтитул сообщения" + +#: includes/common/payment-gateways/paypal-payflow.php:445 +msgid "Email Header" +msgstr "Заголовок сообщения электронной почты " + +#: includes/common/payment-gateways/paypal-payflow.php:416 +msgid "Partner" +msgstr "Партнер" + +#: includes/common/payment-gateways/paypal-payflow.php:409 +msgid "Vendor" +msgstr "Поставщик" + +#: includes/common/payment-gateways/paypal-express.php:852 +#: includes/common/payment-gateways/paypal-express.php:1126 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences\t section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:749 +msgid "Page Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:744 +msgid "Header Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:739 +msgid "Header Border Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:734 +msgid "Header Image" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:680 +msgid "Locale" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:624 +#: includes/common/payment-gateways/paypal-express.php:658 +msgid "Merchant Email" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:645 +msgid "Paypal Express Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:603 +msgid "Paypal Express Network Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:861 +msgid "Application ID (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:854 +msgid "Signature (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:847 +msgid "API Password (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:839 +msgid "API Username (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:832 +msgid "Signature (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:825 +msgid "API Password (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:817 +msgid "API Username (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:799 +msgid "This message is displayed at the top of the gateway settings page to store admins. It's a good place to inform them of your fees or put any sales messages." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:787 +msgid "Please enter your PayPal email address or business ID you want to recieve fees at." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:786 +msgid "PayPal E-mail" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:772 +msgid "Fees to Collect (%)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:375 +#: includes/public/class-mp-checkout.php:341 +msgid "Email Address" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:299 +msgid "Sorry, your order was not completed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:126 +#: includes/common/payment-gateways/paypal-express.php:780 +msgid "You will be redirected to the PayPal site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:90 +#: includes/common/payment-gateways/skrill.php:94 +msgid "USD - U.S. Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:89 +msgid "TRY - Turkish lira" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:88 +#: includes/common/payment-gateways/stripe.php:170 +msgid "THB - Thai Baht" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:87 +msgid "TWD - Taiwan New Dollars" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:86 +#: includes/common/payment-gateways/pin.php:59 +#: includes/common/payment-gateways/skrill.php:88 +#: includes/common/payment-gateways/stripe.php:162 +msgid "SGD - Singapore Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:84 +msgid "RUB - Russian Rubles" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:82 +msgid "PHP - Philippine Pesos" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:81 +#: includes/common/payment-gateways/pin.php:58 +#: includes/common/payment-gateways/skrill.php:79 +#: includes/common/payment-gateways/stripe.php:145 +msgid "NZD - New Zealand Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:79 +msgid "MXN - Mexican Peso" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:78 +msgid "MYR - Malaysian Ringgits" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:77 +#: includes/common/payment-gateways/pin.php:64 +#: includes/common/payment-gateways/skrill.php:73 +#: includes/common/payment-gateways/stripe.php:112 +msgid "JPY - Japanese Yen" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:75 +#: includes/common/payment-gateways/pin.php:63 +#: includes/common/payment-gateways/skrill.php:66 +#: includes/common/payment-gateways/stripe.php:102 +msgid "HKD - Hong Kong Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:73 +msgid "GBP - Pound Sterling" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:68 +#: includes/common/payment-gateways/pin.php:62 +#: includes/common/payment-gateways/skrill.php:59 +msgid "CAD - Canadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:67 +msgid "BRL - Brazilian Real" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:66 +#: includes/common/payment-gateways/pin.php:56 +#: includes/common/payment-gateways/skrill.php:57 +msgid "AUD - Australian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:288 +msgid "There was an error processing your card: \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:163 +msgid "When running on a live site, Paymill recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:161 +#: includes/common/payment-gateways/pin.php:157 +#: includes/common/payment-gateways/simplify.php:103 +#: includes/common/payment-gateways/stripe.php:260 +#: includes/common/payment-gateways/wepay.php:153 +msgid "Force SSL?" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:151 +msgid "Accept Visa, Mastercard, Maestro UK, Discover and Solo cards directly on your site. You don't need a merchant account or gateway. Credit cards go directly to Paymill's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:131 +msgid "CVV2" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:72 +#: includes/common/payment-gateways/pin.php:61 +#: includes/common/payment-gateways/skrill.php:65 +#: includes/common/payment-gateways/stripe.php:95 +msgid "GBP - British Pound" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:71 +#: includes/common/payment-gateways/stripe.php:173 +msgid "TRY - Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:70 +#: includes/common/payment-gateways/paypal-chained-payments.php:85 +#: includes/common/payment-gateways/skrill.php:87 +#: includes/common/payment-gateways/stripe.php:161 +msgid "SEK - Swedish Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:69 +#: includes/common/payment-gateways/skrill.php:84 +msgid "RON - Romanian Leu New" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:68 +#: includes/common/payment-gateways/paypal-chained-payments.php:83 +#: includes/common/payment-gateways/skrill.php:82 +msgid "PLN - Polish Zloty" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:67 +#: includes/common/payment-gateways/paypal-chained-payments.php:80 +#: includes/common/payment-gateways/stripe.php:143 +msgid "NOK - Norwegian Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:66 +#: includes/common/payment-gateways/skrill.php:75 +#: includes/common/payment-gateways/stripe.php:125 +msgid "LTL - Lithuanian Litas" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:65 +#: includes/common/payment-gateways/paypal-chained-payments.php:69 +#: includes/common/payment-gateways/skrill.php:60 +#: includes/common/payment-gateways/stripe.php:78 +msgid "CHF - Swiss Franc" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:64 +#: includes/common/payment-gateways/skrill.php:76 +msgid "LVL - Latvian Lat" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:63 +#: includes/common/payment-gateways/paypal-chained-payments.php:74 +#: includes/common/payment-gateways/skrill.php:69 +msgid "ILS - Israeli Shekel" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:62 +#: includes/common/payment-gateways/skrill.php:71 +msgid "ISK - Iceland Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:61 +#: includes/common/payment-gateways/paypal-chained-payments.php:76 +#: includes/common/payment-gateways/skrill.php:68 +#: includes/common/payment-gateways/stripe.php:106 +msgid "HUF - Hungarian Forint" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:60 +#: includes/common/payment-gateways/paypal-chained-payments.php:71 +#: includes/common/payment-gateways/skrill.php:62 +#: includes/common/payment-gateways/stripe.php:86 +msgid "DKK - Danish Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:59 +#: includes/common/payment-gateways/skrill.php:67 +#: includes/common/payment-gateways/stripe.php:104 +msgid "HRK - Croatian Kuna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:58 +#: includes/common/payment-gateways/paypal-chained-payments.php:70 +#: includes/common/payment-gateways/skrill.php:61 +msgid "CZK - Czech Koruna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:57 +#: includes/common/payment-gateways/skrill.php:58 +msgid "BGN - Bulgarian Leva" +msgstr "" + +#: includes/common/payment-gateways/payflow/class-mp-gateway-worker-payflow.php:123 +msgid "There was an error connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:344 +msgid "This setting will log all PayFast communication to the \"payfast.log\" file." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:342 +msgid "Log Debugging Info?" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:335 +msgid "DO NOT INPUT A VALUE UNLESS YOU HAVE SET ONE IN THE SETTINGS SECTION OF YOUR PAYFAST SETTINGS." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:333 +msgid "PayFast Passphrase" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:323 +msgid "You can find your credentials on your integration page." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:321 +msgid "PayFast Merchant Credentials" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:311 +msgid "PayFast Mode" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:308 +msgid "PayFast is a payments processing service for South Africa. We make it safe for buyers to send money and easy for sellers to receive money. More Info »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:306 +msgid "PayFast Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:285 +msgid "Your payment via PayFast for this order totaling %s is complete. The transaction number is %s." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:278 +msgid "Your payment via PayFast for this order totaling %s is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:124 +msgid "Your PayFast transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:82 +#: includes/common/payment-gateways/payfast.php:83 +msgid "PayFast" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:157 +msgid "API error: - \"%s\"" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:198 +msgid "The payment request is under process" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:140 +msgid "Order: #" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:116 +msgid "You will be redirected to the Mollie site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:73 +msgid "%sMollie%s provides a fully PCI Compliant and secure way to collect payments via iDeal, Credit Card, Bancontact / Mister Cash, SOFORT Banking, Overbooking, Bitcoin, PayPal, paysafecard and AcceptEmail." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:53 +#: includes/common/payment-gateways/mollie.php:54 +#: includes/common/payment-gateways/mollie.php:195 +#: includes/common/payment-gateways/mollie.php:245 +msgid "Mollie" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:50 +#: includes/common/payment-gateways/paymill.php:56 +#: includes/common/payment-gateways/paypal-chained-payments.php:72 +#: includes/common/payment-gateways/pin.php:60 +#: includes/common/payment-gateways/skrill.php:64 +#: includes/common/payment-gateways/stripe.php:92 +msgid "EUR - Euro" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:306 +msgid "Access Key" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:300 +msgid "You must login to the Mijireh.com dashboard to obtain the Access Key." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:299 +msgid "Credentials" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:289 +msgid "Mijireh Checkout provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:269 +msgid "Mijireh Error: " +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:89 +msgid "You will be redirected to the Mijireh.com site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:87 +msgid "Your Mijireh transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:42 +#: includes/common/payment-gateways/mijireh.php:43 +#: includes/common/payment-gateways/mijireh.php:324 +msgid "Mijireh" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:145 +msgid "These are the manual payment instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:189 +msgid "This is the email text to send to those who have made free order checkouts. You should include your free order instructions / information here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:183 +msgid "This is the free order information to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:182 +msgid "Confirmation User Information" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:177 +msgid "This is the information to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:163 +msgid "If enabled, all free orders will be automatically marked as paid." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:159 +msgid "Payment Status" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:149 +msgid "This gateway is automatically activated if order totalling 0 and it can't be disabled" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:35 +#: includes/common/payment-gateways/free_orders.php:36 +#: includes/common/payment-gateways/free_orders.php:89 +msgid "Free Order" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:34 +#: includes/common/payment-gateways/free_orders.php:197 +msgid "Free Orders" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:515 +msgid "Sandbox API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:266 +#: includes/common/payment-gateways/eway31.php:542 +msgid "eWay Rapid 3.1 Payments (beta)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:403 +msgid "Hosted Payment Page Language" +msgstr "" + +#: includes/common/payment-gateways/eway.php:373 +msgid "Note when testing in sandbox mode it will use the default eWay test API credentials. Also, please note that cart total needs to be a whole number (e.g. 10.00) in order to generate a successful transaction, otherwise the transaction will fail." +msgstr "" + +#: includes/common/payment-gateways/eway.php:267 +msgid "You will be redirected to https://www.eway.com.au to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:380 +msgid "You have chosen to checkout using %s. Please confirm your order details and click \"Submit Order\" when finished." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:272 +#: includes/common/payment-gateways/paymill.php:131 +#: includes/common/payment-gateways/stripe.php:231 +msgid "Security Code " +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Enter in MM/YYYY or MM/YY format" +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Expiration" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:321 +msgid "Delim Data" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:307 +#: includes/common/payment-gateways/paypal-payflow.php:456 +msgid "This text will appear as the footer of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:287 +#: includes/common/payment-gateways/paypal-payflow.php:440 +msgid "Email Customer (on success)" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:278 +msgid "Authorize.net default is \",\". Otherwise, get this from your credit card processor. If the transactions are not going through, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:277 +msgid "Delimeter Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:193 +msgid "Held For Review" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:310 +#: includes/common/payment-gateways/payfast.php:314 +msgid "Test" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:300 +#: includes/common/payment-gateways/pin.php:170 +#: includes/common/payment-gateways/stripe.php:272 +msgid "Secret Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:283 +msgid "Select Your Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:97 +msgid "Your payment will be processed by the iDEAL network" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:208 +msgid "These are the CubePoints to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:203 +msgid "These are the CubePoints instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:266 +msgid "If enabled, all API calls will be made to https://test.bitpay.com." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:263 +msgid "Use Test Mode?" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:259 +msgid "If checked, response fron bitpay will be stored in log file, keep it disabled unless required." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:256 +msgid "Enable Debug Log" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:249 +msgid "Full Notifications" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:231 +#: includes/common/payment-gateways/eway31.php:499 +#: includes/common/payment-gateways/eway31.php:526 +#: includes/common/payment-gateways/mollie.php:83 +#: includes/common/shipping-modules/mp-fedex.php:269 +msgid "API Key" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:222 +msgid "You can now accept a payment from any country on Earth, with no risk of fraud. To use Bitpay, you need to signup on Bitpay. \\n After completing the signup process, you can get api keys at Bitpay API key. You can read more about Bitpay at Bitpay API. \\n Bitpay requires SSL(https) for payment notifications to work." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:61 +msgid "You will be redirected to bitpay.com, for bitcoin payment. It is completely safe." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:346 +msgid "You must login to the 2Checkout vendor dashboard to obtain the seller ID and secret word. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:345 +#: includes/common/payment-gateways/authorizenet-aim.php:239 +#: includes/common/payment-gateways/paymill.php:168 +#: includes/common/payment-gateways/paypal-express.php:704 +#: includes/common/payment-gateways/simplify.php:80 +#: includes/common/payment-gateways/stripe.php:265 +#: includes/common/payment-gateways/wepay.php:158 +msgid "API Credentials" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:325 +#: includes/common/payment-gateways/_bitpay.php:220 +#: includes/common/payment-gateways/_cubepoints.php:185 +#: includes/common/payment-gateways/_ideal.php:268 +#: includes/common/payment-gateways/_payway.php:255 +#: includes/common/payment-gateways/authorizenet-aim.php:219 +#: includes/common/payment-gateways/eway.php:352 +#: includes/common/payment-gateways/eway31.php:460 +#: includes/common/payment-gateways/free_orders.php:147 +#: includes/common/payment-gateways/manual-payments.php:126 +#: includes/common/payment-gateways/mijireh.php:287 +#: includes/common/payment-gateways/mollie.php:71 +#: includes/common/payment-gateways/paymill.php:149 +#: includes/common/payment-gateways/paypal-chained-payments.php:344 +#: includes/common/payment-gateways/paypal-payflow.php:376 +#: includes/common/payment-gateways/pin.php:145 +#: includes/common/payment-gateways/simplify.php:69 +#: includes/common/payment-gateways/skrill.php:121 +#: includes/common/payment-gateways/stripe.php:249 +#: includes/common/payment-gateways/wepay.php:119 +#: includes/common/shipping-modules/mp-fedex.php:243 +#: includes/common/shipping-modules/mp-flat-rate.php:63 +#: includes/common/shipping-modules/mp-pickup.php:140 +#: includes/common/shipping-modules/mp-table-rate.php:94 +#: includes/common/shipping-modules/mp-ups.php:122 +#: includes/common/shipping-modules/mp-usps.php:167 +#: includes/common/shipping-modules/mp-weight-rate.php:110 +msgid "%s Settings" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:136 +msgid "You will be redirected to the 2Checkout site to finalize your payment." +msgstr "" + +#: includes/common/helpers.php:169 includes/public/class-mp-checkout.php:1277 +msgid "Billing" +msgstr "" + +#: includes/common/helpers.php:144 +msgid "FREE" +msgstr "" + +#: includes/common/helpers.php:134 +msgid "Coupons:" +msgstr "" + +#: includes/common/helpers.php:95 +msgid "Qty" +msgstr "" + +#: includes/common/helpers.php:94 +msgid "Sku" +msgstr "" + +#: includes/common/data.php:59 +msgid "Zip Code" +msgstr "" + +#: includes/common/class-mp-taxes.php:336 +msgid "Standard Table" +msgstr "" + +#: includes/common/class-mp-product.php:2698 +msgid "Tweet" +msgstr "" + +#: includes/common/class-mp-product.php:2321 +msgid "Notification Preferences: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2320 +msgid "Edit Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2318 +msgid "Link: %s

    " +msgstr "" + +#: includes/common/class-mp-product.php:2317 +msgid "Current Inventory: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2316 +msgid "Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2314 +msgid "This message is being sent to notify you of low stock of a product in your online store according to your preferences.

    " +msgstr "" + +#: includes/common/class-mp-product.php:1817 +msgid "" +msgstr "" + +#: includes/common/class-mp-product.php:1427 +#: includes/common/class-mp-product.php:1430 +msgid "(tax incl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1422 +#: includes/common/class-mp-product.php:1425 +msgid "(tax excl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1300 +#: includes/common/class-mp-product.php:1315 +msgid "%s each" +msgstr "" + +#: includes/common/class-mp-product.php:988 +msgid "Choose Options" +msgstr "" + +#: includes/common/class-mp-product.php:526 +msgid "Choose a %s" +msgstr "" + +#: includes/common/class-mp-product.php:284 +#: includes/common/class-mp-product.php:292 +#: includes/common/class-mp-product.php:615 +msgid "We're sorry, we only have %d of this item in stock right now." +msgstr "" + +#: includes/common/class-mp-order.php:1456 +msgid "Shipped: Track Shipment" +msgstr "" + +#: includes/common/class-mp-order.php:1049 +msgid "Order Received" +msgstr "" + +#: includes/common/class-mp-order.php:1014 +msgid "In Process" +msgstr "" + +#: includes/common/class-mp-order.php:969 +msgid "Order #" +msgstr "" + +#: includes/common/class-mp-order.php:866 +msgid "Copy billing address to shipping address" +msgstr "" + +#: includes/common/class-mp-order.php:822 +#: includes/public/class-mp-checkout.php:1314 +msgid "Special Instructions" +msgstr "" + +#: includes/common/class-mp-order.php:817 +#: includes/common/payment-gateways/stripe.php:335 +msgid "Email" +msgstr "" + +#: includes/common/class-mp-order.php:813 +#: includes/common/payment-gateways/stripe.php:341 +#: includes/public/class-mp-checkout.php:416 +msgid "Phone" +msgstr "" + +#: includes/common/class-mp-order.php:791 +#: includes/common/payment-gateways/stripe.php:337 +msgid "State" +msgstr "" + +#: includes/common/class-mp-order.php:776 +msgid "Address 1" +msgstr "" + +#: includes/common/class-mp-order.php:766 +msgid "Last Name" +msgstr "" + +#: includes/common/class-mp-order.php:762 +msgid "First Name" +msgstr "" + +#: includes/common/class-mp-installer.php:677 +msgid "MarketPress requires a database update to continue working correctly. Go to update page" +msgstr "" + +#: includes/common/class-mp-installer.php:657 +msgid "MarketPress performed a quick automatic update successfully!" +msgstr "" + +#: includes/common/class-mp-installer.php:653 +msgid "Perform Update" +msgstr "" + +#: includes/common/class-mp-installer.php:647 +msgid "Please update each subsite in your WordPress network where you have older version of the MarketPress plugin." +msgstr "" + +#: includes/common/class-mp-installer.php:641 +msgid "Depending on the amount of products you have, this update could take quite some time. Please keep this window open while the update completes. If you have products with multiple variations, the progress bar may move slower, please don't exit the window." +msgstr "" + +#: includes/common/class-mp-installer.php:632 +msgid "Product Metadata" +msgstr "" + +#: includes/common/class-mp-installer.php:601 +msgid "MarketPress requires a database update to continue working correctly.
    Below you will find a list of items that require your attention." +msgstr "" + +#: includes/common/class-mp-installer.php:600 +msgid "Update MarketPress Data" +msgstr "" + +#: includes/common/class-mp-installer.php:530 +msgid "Update Data" +msgstr "" + +#: includes/common/class-mp-installer.php:67 +msgid "Complete!" +msgstr "" + +#: includes/common/class-mp-installer.php:66 +msgid "Upgrading Database...Please Wait..." +msgstr "" + +#: includes/common/class-mp-installer.php:64 +msgid "An error occurred while updating. Please refresh this page and try again." +msgstr "" + +#: includes/common/class-mp-cart.php:2447 +msgid "Some items in your cart have fallen below the quantity you currently have in your cart. We have adjusted the quantity in your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:2443 +msgid "Some items in your cart are no longer available. We have removed these items from your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:1566 +msgid "item" +msgstr "" + +#: includes/common/class-mp-cart.php:1563 +#: includes/common/class-mp-cart.php:1568 +msgid "items" +msgstr "" + +#: includes/common/class-mp-cart.php:1363 +msgid "Items/Products added to Cart will show here." +msgstr "" + +#: includes/common/class-mp-cart.php:1362 +msgid "Your shopping cart is empty." +msgstr "" + +#: includes/common/class-mp-cart.php:1357 +msgid "View Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1241 +#: includes/common/class-mp-cart.php:1298 +#: includes/public/class-mp-short-codes.php:159 +msgid "Adding..." +msgstr "" + +#: includes/common/class-mp-cart.php:1033 +msgid "Continue Shopping?" +msgstr "" + +#: includes/common/class-mp-cart.php:961 +msgid "Secure Checkout
    Shopping is always safe and secure." +msgstr "" + +#: includes/common/class-mp-cart.php:959 +msgid "You are about to submit your order!
    Please review your order details before continuing. You will be charged immediately upon clicking \"Submit Order\"." +msgstr "" + +#: includes/common/class-mp-cart.php:956 +msgid "Continue »" +msgstr "" + +#: includes/common/class-mp-cart.php:955 +msgid "Submit Order" +msgstr "" + +#: includes/common/class-mp-cart.php:818 +msgid "There are no items in your cart - go add some !" +msgstr "" + +#: includes/common/class-mp-cart.php:816 +msgid "The cart is disabled." +msgstr "" + +#: includes/common/class-mp-cart.php:735 +msgid "Estimated %s" +msgstr "" + +#: includes/common/class-mp-cart.php:717 +msgid "Estimated Shipping" +msgstr "" + +#: includes/common/class-mp-cart.php:697 +msgid "Product Total" +msgstr "" + +#: includes/common/class-mp-cart.php:670 includes/common/class-mp-cart.php:672 +msgid "Estimated Total (%s, %s)" +msgstr "" + +#: includes/common/class-mp-cart.php:668 +msgid "Estimated Total (%s)" +msgstr "" + +#: includes/common/class-mp-cart.php:666 includes/common/class-mp-cart.php:752 +msgid "Estimated Total" +msgstr "" + +#: includes/admin/widgets/product-list.php:247 +msgid "Show Thumbnail Placeholder image (if image is not set)" +msgstr "" + +#: includes/admin/widgets/cart.php:73 +msgid "Display product price" +msgstr "" + +#: includes/admin/widgets/cart.php:71 +msgid "Display product quantity" +msgstr "" + +#: includes/admin/widgets/cart.php:69 +msgid "Display product image" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:93 +msgid "General Shipping Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:773 +msgid "If you are having conflicts with the lightbox library from your theme or another plugin you should uncheck this." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:772 +msgid "Use Built-In Lightbox for Images?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:762 +msgid "Disable Large Image Display?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:688 +msgid "Show Product Image?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:682 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:684 +msgid "Show Tags List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:676 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:678 +msgid "Show Categories List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:671 +msgid "If enabled, description excerpt will be added above Add to cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:669 +msgid "Show Excerpt?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:665 +msgid "If enabled, users will be able to choose how many of the product they want to purchase before adding to their cart. If not checked, quantity could be change later on the cart page." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:663 +msgid "Show Quantity Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:649 +msgid "Settings related to the display of individual product pages." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:648 +msgid "Product Page Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:605 +msgid "Related Products Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:573 +msgid "Show Related Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:568 +msgid "Related Product Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:549 +msgid "Order Status Entries Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:510 +msgid "Sort Products By" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:497 +msgid "Products Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:492 +msgid "Paginate Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:478 +msgid "Excerpts Length" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:473 +msgid "Show Excerpts?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:450 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:746 +msgid "Image Alignment" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:412 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:708 +msgid "Custom Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:401 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:697 +msgid "Large - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:400 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:696 +msgid "Medium - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:399 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:695 +msgid "Thumbnail - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:397 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:693 +msgid "Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:386 +msgid "Select default placeholder image thumbnail when product image is not available (if empty, plugin's built-in image will be used)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:380 +msgid "Show default product placeholder thumbnail when product image is not available?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:374 +msgid "Show Product Thumbnail?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:369 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:658 +msgid "Redirect to cart page for immediate checkout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:368 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:657 +msgid "Stay on current product page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:366 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:655 +msgid "MarketPress supports two \"flows\" for adding products to the shopping cart. After adding a product to their cart, two things can happen:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:365 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:654 +msgid "Add To Cart Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:355 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:628 +msgid "Four" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:354 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:627 +msgid "Three" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:353 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:626 +msgid "Two" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:625 +msgid "One" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:349 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:622 +msgid "Set the number of products that show up in a grid row to best fit your theme" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:348 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:621 +msgid "How many products per row?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:342 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:609 +msgid "Display as grid" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:341 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:608 +msgid "Display as list" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:339 +msgid "Product Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:334 +msgid "Settings related to the display of product lists/grids." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:333 +msgid "Product List/Grid Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:314 +msgid "Show Twitter Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:309 +msgid "Twitter" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:303 +msgid "Show Share Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:297 +msgid "Recommend" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:296 +msgid "Like" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:294 +msgid "Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:283 +msgid "Show Facebook Like Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:278 +msgid "Facebook" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:257 +msgid "Show \"Pin It\" Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:252 +msgid "Pinterest" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:246 +msgid "Social Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:193 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:202 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:211 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:220 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:229 +#: includes/multisite/class-mp-admin-multisite.php:532 +#: includes/multisite/class-mp-admin-multisite.php:541 +#: includes/multisite/class-mp-admin-multisite.php:550 +msgid "Choose a Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:191 +msgid "This page will be used as the root for your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:168 +#: includes/multisite/class-mp-admin-multisite.php:586 +msgid "Create Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "uncropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "cropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:87 +#: includes/multisite/class-mp-admin-multisite.php:121 +#: includes/multisite/class-mp-admin-multisite.php:620 +msgid "An error occurred while creating the store page. Please try again." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:66 +msgid "Choose the gateway(s) that you would like to be available for checkout." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:65 +msgid "Enabled Gateways" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:78 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:146 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:179 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:213 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:274 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:307 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:341 +msgid "Text" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:71 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:139 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:172 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:206 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:267 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:300 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:334 +msgid "Subject" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:52 +msgid "Notification Email" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:510 +msgid "Enabling this option will display label `excl. tax` or `incl. tax` after price" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:509 +msgid "Display tax label?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:504 +msgid "Enabling this option will show Price + Tax, eg. if your price is 100 and your tax 20, your price will be 120" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:416 +#: includes/multisite/class-mp-admin-multisite.php:234 +msgid "Price Format" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:366 +msgid "Enabling this field will display a textbox on the shipping checkout page for users to enter special instructions for their order. Useful for product personalization, etc." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:365 +msgid "Show Special Instructions Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:360 +msgid "Universal" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:359 +msgid "Old" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1167 +#: includes/admin/store-settings/class-mp-store-settings-general.php:358 +msgid "New" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:353 +msgid "If you already use Google Analytics for your website, you can track detailed ecommerce information by enabling this setting. Choose whether you are using the new asynchronous or old tracking code. Before Google Analytics can report ecommerce activity for your website, you must enable ecommerce tracking on the profile settings page for your website. Also keep in mind that some gateways do not reliably show the receipt page, so tracking may not be accurate in those cases. It is recommended to use the PayPal gateway for the most accurate data. More information »" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:347 +msgid "Do you want to display the product price on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:346 +msgid "Show product price on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:340 +msgid "Do you want to display the product quantity on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:339 +msgid "Show product quantity on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:333 +msgid "Do you want to display the product image on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:332 +msgid "Show product image on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:327 +msgid "This option hide floating Mini Cart in top right corner." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:326 +msgid "Disable Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:316 +msgid "If unchecked your Orders admin page will be hidden" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:315 +msgid "Show admin Orders page?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:309 +msgid "Disable Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:303 +msgid "Force Login?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:297 +msgid "Hide Out of Stock Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:555 +msgid "This will prevent multiples of the same downloadable product form being added to the cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:554 +msgid "Limit Digital Products Per-order?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:268 +msgid "If you're having issues downloading large files and have worked with your hosting provider to increase your memory limits, try enabling this - just keep in mind, it's not as secure!" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:267 +msgid "Use Alternative Download Method?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:252 +msgid "Download Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:230 +msgid "Change product post type" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:51 +msgid "%s Capabilities" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-addons.php:47 +msgid "Store Settings: Add Ons: %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:254 +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:56 +msgid "Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Edit Product Attribute %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:246 +msgid "Exporters" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:238 +msgid "Short Codes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:207 +msgid "An appropriate message for key \"%s\" could not be found." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:204 +msgid "Product attribute updated successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:203 +msgid "Product attribute added successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +msgid "Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +#: includes/admin/store-settings/class-mp-store-settings-addons.php:121 +msgid "Store Settings: Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "Store Settings: Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:118 +msgid "Store Settings: Product Tags" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:117 +msgid "Store Settings: Product Categories" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Store Settings: Product Attributes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +msgid "Store Settings: Payments" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:114 +msgid "Store Settings: Shipping" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +#: includes/admin/class-mp-store-settings-admin.php:226 +msgid "Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +msgid "Store Settings: Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:112 +msgid "Store Settings: Presentation" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:111 +msgid "Store Settings: General" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1489 +msgid "Select a Product" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1447 +msgid "Reset to Defaults" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1446 +msgid "Insert Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1202 +#: includes/admin/class-mp-shortcode-builder.php:1227 +#: includes/admin/class-mp-shortcode-builder.php:1252 +msgid "The text to show in the link." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1196 +#: includes/admin/class-mp-shortcode-builder.php:1221 +#: includes/admin/class-mp-shortcode-builder.php:1246 +msgid "Whether to return a clickable link or url." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1177 +msgid "Whether to display the cart only on store pages or not." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1171 +msgid "Whether to show or hide the product price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1165 +msgid "Whether to show or hide the product quantity." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1159 +msgid "Whether to show or hide the product image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1153 +msgid "The text displayed before the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1147 +msgid "The title of the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1058 +#: includes/admin/class-mp-shortcode-builder.php:1121 +msgid "A label to prepend to the price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1032 +#: includes/admin/class-mp-shortcode-builder.php:1127 +msgid "What context for display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1004 +msgid "Set the alignment of the image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:998 +msgid "Set a custom pixel width/height. If omitted defaults to the size set by \"context\"." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:993 +msgid "Widget" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:988 +msgid "What context for preset size options." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:982 +#: includes/admin/class-mp-shortcode-builder.php:1026 +#: includes/admin/class-mp-shortcode-builder.php:1052 +#: includes/admin/class-mp-shortcode-builder.php:1077 +#: includes/admin/class-mp-shortcode-builder.php:1096 +#: includes/admin/class-mp-shortcode-builder.php:1115 +msgid "The ID of the product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:963 +msgid "Whether to display the product meta (e.g. price, buy button)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:738 +#: includes/admin/class-mp-shortcode-builder.php:905 +#: includes/admin/class-mp-shortcode-builder.php:958 +#: includes/admin/class-mp-shortcode-builder.php:992 +#: includes/admin/class-mp-shortcode-builder.php:1035 +#: includes/admin/class-mp-shortcode-builder.php:1130 +#: includes/admin/class-mp-shortcode-builder.php:1349 +msgid "List" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:957 +#: includes/admin/class-mp-shortcode-builder.php:991 +#: includes/admin/class-mp-shortcode-builder.php:1034 +#: includes/admin/class-mp-shortcode-builder.php:1129 +msgid "Single" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:953 +msgid "Whether and what context of image size to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:948 +msgid "Full" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:943 +msgid "Whether and what type of content to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:937 +msgid "Whether to display the product title." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:931 +msgid "The ID of the product to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:747 +#: includes/admin/class-mp-shortcode-builder.php:914 +msgid "Hide" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:746 +#: includes/admin/class-mp-shortcode-builder.php:913 +msgid "Show" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:744 +#: includes/admin/class-mp-shortcode-builder.php:911 +msgid "Whether or not to show the product filters." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:724 +#: includes/admin/class-mp-shortcode-builder.php:891 +#: includes/admin/class-mp-shortcode-builder.php:1335 +msgid "Limits list to a specific product tag." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:713 +#: includes/admin/class-mp-shortcode-builder.php:880 +#: includes/admin/class-mp-shortcode-builder.php:1324 +msgid "Limits list to a specific product category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:706 +#: includes/admin/class-mp-shortcode-builder.php:873 +#: includes/admin/class-mp-shortcode-builder.php:1317 +msgid "Direction to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:684 +#: includes/admin/class-mp-shortcode-builder.php:851 +#: includes/admin/class-mp-shortcode-builder.php:1295 +msgid "What field to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:678 +#: includes/admin/class-mp-shortcode-builder.php:845 +#: includes/admin/class-mp-shortcode-builder.php:1283 +msgid "How many products to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:672 +#: includes/admin/class-mp-shortcode-builder.php:839 +#: includes/admin/class-mp-shortcode-builder.php:1277 +msgid "The page number to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:666 +#: includes/admin/class-mp-shortcode-builder.php:833 +#: includes/admin/class-mp-shortcode-builder.php:1271 +msgid "Whether to paginate the product list. This is useful to only show a subset." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:808 +msgid "How many related items to show." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:790 +msgid "How to relate the products" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:784 +msgid "The product to show related items for." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:765 +msgid "The maximum number of products to display" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:647 +msgid "Comma separated list of tags (term_id) to include. For example, include=5,27 means tags that have the term_id 5 or 27 will be the only tags displayed. Defaults to include everything." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:641 +msgid "Comma separated list of tags (term_id) to exclude. For example, exclude=5,27 means tags that have the term_id 5 or 27 will NOT be displayed. Defaults to exclude nothing." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:633 +#: includes/admin/class-mp-shortcode-builder.php:1420 +msgid "Sort order." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:629 +#: includes/admin/class-mp-shortcode-builder.php:1416 +msgid "Count" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:626 +#: includes/admin/class-mp-shortcode-builder.php:1413 +msgid "Order of the tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:620 +msgid "The text/space between tags)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:616 +msgid "UL with a class of \"wp-tag-cloud\"" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:615 +msgid "separated by whitespace defined by \"separator\" parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:613 +msgid "Format of the cloud display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:607 +msgid "The number of actual tags to display in the cloud. (Use \"0\" to display all tags.)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:601 +msgid "Unit of measure as pertains to the smallest and largest values. This can be any CSS length value, e.g. pt, px, em, %." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:595 +msgid "The text size of the tag with the largest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:589 +msgid "The text size of the tag with the smallest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:570 +msgid "The \"tabindex\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:564 +msgid "The \"name\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:558 +msgid "The \"id\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:552 +msgid "Which category ID is selected." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:540 +msgid "The max depth. This is ignored unless hierarchical is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:536 +#: includes/multisite/template-functions.php:816 +msgid "No Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:414 +#: includes/admin/class-mp-shortcode-builder.php:546 +msgid "Calculates link or post counts by including items from child categories. If show_counts and hierarchical are true this is automatically set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:409 +msgid "Value of n (some number) specifies the depth (or level) to descend in displaying Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:408 +msgid "Show only top level Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:407 +msgid "All Categories displayed in flat (no indent) form (overrides hierarchical)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:406 +msgid "All Categories and child Categories (Default)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:402 +msgid "This parameter controls how many levels in the hierarchy of Categories are to be included in the list of Categories. NOTE: The \"hierarchical\" argument, which is disabled by default, will override the depth argument, unless it is true. When the argument is false, it will display all of the categories. When it is enabled it will use the value in the \"depth\" argument." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:396 +#: includes/admin/class-mp-shortcode-builder.php:1394 +msgid "Sets the number of Categories to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:390 +#: includes/admin/class-mp-shortcode-builder.php:534 +msgid "Set the text to show when no categories are listed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:384 +msgid "Set the title and style of the outer list item. If present but empty, the outer list item will not be displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:378 +#: includes/admin/class-mp-shortcode-builder.php:528 +msgid "Display sub-categories as inner list items (below the parent list item) or inline." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:368 +#: includes/admin/class-mp-shortcode-builder.php:511 +msgid "Exclude category-tree from the results. The parameter include must be empty. If the hierarchical parameter is true, then use exclude instead of exclude_tree." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:354 +msgid "Only include these categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:340 +#: includes/admin/class-mp-shortcode-builder.php:356 +#: includes/admin/class-mp-shortcode-builder.php:370 +#: includes/admin/class-mp-shortcode-builder.php:496 +#: includes/admin/class-mp-shortcode-builder.php:513 +msgid "Select Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:338 +#: includes/admin/class-mp-shortcode-builder.php:494 +msgid "Exclude one or more categories from the results. The parameter include must be empty." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:332 +msgid "Set a URI for an image (usually an rss feed icon) to act as a link to each categories' rss-2 feed. This parameter overrides the feed parameter. There is no default for this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:320 +msgid "Display a link to each category's rss-2 feed and set the link text to display. The default is no text and no feed displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:313 +#: includes/admin/class-mp-shortcode-builder.php:487 +msgid "Any" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:307 +#: includes/admin/class-mp-shortcode-builder.php:481 +msgid "Only display categories that are children of the category identified by this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:301 +msgid "Sets whether a category's description is inserted into the title attribute of the links created (i.e. <a title=\"<em>Category Description</em>\" href=\"...)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:295 +#: includes/admin/class-mp-shortcode-builder.php:475 +msgid "Toggles the display of categories with no posts." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:289 +#: includes/admin/class-mp-shortcode-builder.php:469 +#: includes/admin/class-mp-shortcode-builder.php:1388 +msgid "Toggles the display of the current count of posts in each category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:279 +msgid "Style to display the categories list in. A value of list displays the categories as list items while none generates no special display method (the list items are separated by
    tags)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:269 +#: includes/admin/class-mp-shortcode-builder.php:449 +#: includes/admin/class-mp-shortcode-builder.php:1378 +msgid "Sort order for categories (either ascending or descending)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:259 +#: includes/admin/class-mp-shortcode-builder.php:439 +#: includes/admin/class-mp-shortcode-builder.php:1368 +msgid "Sort categories alphabetically, by unique Category ID, or by the count of posts in that Category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:253 +#: includes/admin/class-mp-shortcode-builder.php:433 +msgid "If a value is entered, causes the display of a link to all categories if the style is set to list." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:219 +msgid "Select an Action" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:217 +msgid "What would you like to do?" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:216 +#: includes/admin/class-mp-shortcode-builder.php:1522 +msgid "Add E-Commerce Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:197 +msgid "Display a list of links to your store pages." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:196 +msgid "Display a link or url to the order status page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:195 +msgid "Display a link or url to the current products list page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:194 +msgid "Display a link or url to the current store page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:193 +msgid "Display a link or url to the current shopping cart page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:192 +msgid "Display the cart widget." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:191 +msgid "Display the full product meta box with price and buy now/add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:190 +msgid "Display the product stock." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:189 +msgid "Display the product SKU number(s)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:188 +msgid "Display the product price (and sale price)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:187 +msgid "Display the buy or add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:186 +msgid "Display the featured image of a given product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:185 +msgid "Display a single product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:184 +msgid "Display a list of products according to preference." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:183 +msgid "Display products related to the one being viewed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:182 +msgid "Display a list of popular products ordered by sales." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:180 +msgid "Display an HTML dropdown of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:179 +msgid "Display an HTML list of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:178 +msgid "Display a cloud or list of your product tags." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:655 +msgid "Setup your payment gateway" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:643 +#: includes/admin/class-mp-setup-wizard.php:649 +msgid "Other Gateways" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:617 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:150 +msgid "Select which calculated shipping methods the customer will be able to choose from." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:601 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:134 +#: includes/public/class-mp-checkout.php:82 +msgid "Shipping Method" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:568 +msgid "I want to charge shipping" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:523 +#: includes/admin/store-settings/class-mp-store-settings-general.php:503 +msgid "Show Price + Tax?" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:507 +msgid "I.e. Taxes, VAT, GST, etc" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:491 +#: includes/admin/store-settings/class-mp-store-settings-general.php:471 +msgid "Current Rates" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:473 +msgid "Default Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:434 +#: includes/admin/class-mp-setup-wizard.php:442 +#: includes/admin/store-settings/class-mp-store-settings-general.php:386 +#: includes/admin/store-settings/class-mp-store-settings-general.php:394 +#: includes/multisite/class-mp-admin-multisite.php:204 +#: includes/multisite/class-mp-admin-multisite.php:212 +msgid "Select a Currency" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:414 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:105 +msgid "Choose Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:411 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:103 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:104 +msgid "All Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:410 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:102 +msgid "These are the countries that you will ship to." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:409 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:101 +msgid "Target Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:401 +msgid "Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:387 +#: includes/admin/store-settings/class-mp-store-settings-general.php:640 +msgid "Zip/Postal Code Label" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:352 +#: includes/admin/store-settings/class-mp-store-settings-general.php:606 +msgid "Select a State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:335 +#: includes/admin/store-settings/class-mp-store-settings-general.php:590 +msgid "Select A Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:332 +#: includes/admin/store-settings/class-mp-store-settings-general.php:587 +msgid "Select a Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:324 +msgid "Location" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:304 +#: includes/admin/class-mp-setup-wizard.php:312 +#: includes/admin/class-mp-store-settings-admin.php:129 +#: includes/admin/class-mp-store-settings-admin.php:262 +msgid "Quick Setup" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:289 +msgid "MarketPress setup is not complete! Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2479 +msgid "Enter your product name here" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2440 +msgid "Select a %s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2426 +msgid "Each product variation needs to have product attributes assigned to it so the system knows how to differentiate one product variation from the other. It is important that you assign a category to this product before choosing any attributes." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2409 +msgid "If you would like this variation to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2320 +msgid "Sale Price (if applicable)" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2281 +msgid "If you would like the description to be different than the main product enter it here." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2229 +msgid "Image" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2202 +#: includes/admin/class-mp-shortcode-builder.php:226 +msgid "Attributes" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2166 +msgid "Create your product variations here. You can reorder variations by using the number to left of each variation, or delete one by clicking the \"x\" to the right of each variation. NOTE: The variation that shows up first in this list will be considered the \"main variation\". The details from this variation will be used in product listings." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2061 +#: includes/admin/class-mp-products-admin.php:2332 +msgid "Value must be less than regular price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2043 +#: includes/admin/class-mp-products-admin.php:2306 +msgid "Regular Price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2023 +#: includes/admin/class-mp-products-admin.php:2286 +msgid "External URL" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1988 +#: includes/admin/class-mp-products-admin.php:2245 +msgid "Enter the quantity that you have available to sell." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1987 +#: includes/admin/class-mp-products-admin.php:2244 +msgid "Inventory Count" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1977 +#: includes/admin/class-mp-products-admin.php:2234 +msgid "Track Inventory?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1871 +msgid "%1$sProduct Images%2$s %3$sAdd images of the product. The first image on the list is the featured image for this product (you can reorder images on the list)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1806 +msgid "Add variations for this product. e.g. If you are selling t-shirts, you can create Color & Size variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1804 +msgid "%3$sAdd variations for%2$s %1$sProduct%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1776 +msgid "This product has a multiple variations %1$s(e.g. Multiple colors, sizes)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1775 +msgid "This is a unique product without variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1700 +msgid "Extra Shipping Cost %1$s(if applicable)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1659 +#: includes/admin/class-mp-products-admin.php:2112 +#: includes/admin/class-mp-products-admin.php:2359 +msgid "Weight" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1636 +#: includes/admin/class-mp-products-admin.php:2098 +#: includes/admin/class-mp-products-admin.php:2416 +msgid "Please enter a valid tax rate" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1531 +msgid "Limit Per Order %1$s(limit the number of the item a shopper can buy per order)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1513 +msgid "SKU %1$s(Stock Keeping Unit)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "%1$sPrice, Inventory & Variants%2$s %3$sSet price, manage inventory and create Product Variants (if appropriate for your product).%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "Product Variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1480 +msgid "External / Affiliate Link" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1471 +msgid "Digital Download" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1470 +msgid "Physical / Tangible Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1464 +msgid "Product Kind %1$s(Physical Product, Digital, etc)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1426 +msgid "Choose Products" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1420 +msgid "If you would like, you can choose specific related products instead of using the ones generated by MarketPress" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1019 +msgid "Changes saved successfully" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:826 +msgid "Option cannot be saved. Try again." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:821 +msgid "Option saved successfully." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:467 +msgid "Img" +msgstr "" + +#: includes/admin/class-mp-product-attributes-list-table.php:57 +msgid "Product attribute(s) deleted successfully." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:162 +msgid "- Create New Variation -" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:144 +msgid "Only lowercase letters and dashes (-) are allowed." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:139 +msgid "If a slug is not entered, it will be generated automatically. Max 32 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:138 +#: includes/admin/class-mp-product-attributes-list-table.php:23 +msgid "Slug" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:130 +msgid "Max 45 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:123 +msgid "Use the numbers on the left to sort. To delete - click the \"X\" to the right of each row." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:122 +msgid "Attribute Options" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:121 +msgid "Add Option" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:105 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:523 +msgid "Sort Order" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:87 +msgid "Alphabetical" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:86 +msgid "ID" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:84 +msgid "Select how the options will be sorted." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:82 +msgid "Sort By" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:75 +msgid "The name of the attribute (e.g. color, size, etc)" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:74 +msgid "Attribute Name" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:69 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Product Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Product Attributes" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:71 +msgid "You can choose to make this page one of the following core store pages." +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:66 +msgid "Network Store Base" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:61 +msgid "Checkout Page" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:52 +msgid "Store Page Settings" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1108 +msgid "Display billing/shipping info for this customer" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1097 +msgid "View order “%s”" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1072 +msgid "Flag as:" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:952 +msgid "Move To Trash" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:948 +msgid " Received" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:927 +msgid "Enter coupon code here" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:812 +msgid "The order status could not be updated due to unexpected error. Please try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:740 +msgid "An invalid bulk action was requested. Please go back and try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:692 +msgid "The order status for order ID %1$s was updated successfully." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:688 +msgid "Order statuses successfully updated." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:530 +msgid "Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:518 +msgid "Actual Shipping Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:513 +msgid "Method Paid For" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:504 +msgid "Amount Collected" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:477 +msgid "DHL" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:408 +msgid "There is no IPN history to show at this time" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:345 +msgid "Type" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:343 +msgid "Gateway" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:301 +#: includes/common/template-functions.php:528 +msgid "Order History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:291 +msgid "IPN History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:283 +msgid "Customer Info" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:279 +msgid "Order Details" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:157 +msgid "All Dates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:320 +msgid "Add Pages to Menu" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:318 +msgid "Add-ons" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:317 +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "User Capabilities" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:316 +#: includes/admin/class-mp-setup-wizard.php:631 +#: includes/admin/store-settings/class-mp-store-settings-payments.php:50 +msgid "Payment Gateways" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:315 +msgid "Shipping Rates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:312 +msgid "Configure" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:309 +#: includes/admin/class-mp-products-admin.php:466 +#: includes/admin/class-mp-shortcode-builder.php:797 +msgid "Tags" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:308 +#: includes/admin/class-mp-products-admin.php:465 +msgid "Categories" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:300 +msgid "Manage" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:297 +msgid "Here's some quick links to manage your store and products." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:288 +msgid "low in stock" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:287 +msgid "%s product" +msgid_plural "%s products" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/admin/class-mp-dashboard-widgets.php:280 +msgid "received" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:279 +#: includes/admin/class-mp-dashboard-widgets.php:283 +msgid "%s order" +msgid_plural "%s orders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/admin/class-mp-dashboard-widgets.php:276 +msgid "Stock & Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:261 +msgid "Last 30 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:256 +msgid "Last 7 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:251 +msgid "Yesterday" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:248 +#: includes/admin/class-mp-dashboard-widgets.php:253 +#: includes/admin/class-mp-dashboard-widgets.php:258 +#: includes/admin/class-mp-dashboard-widgets.php:263 +msgid " Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:246 +msgid "Today" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:241 +msgid "Welcome back! Here's a quick summary of your store's performance." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:196 +#: includes/admin/class-mp-products-admin.php:895 +msgid "No products out of stock." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:136 +#: includes/admin/class-mp-products-admin.php:839 +msgid "Stock Level" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:135 +#: includes/admin/class-mp-products-admin.php:838 +msgid "Variation" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:121 +msgid "Low Stock (%s)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:116 +msgid "Store Management" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:115 +msgid "Store Reports" +msgstr "" + +#: includes/admin/class-mp-ajax.php:579 +#: includes/admin/class-mp-orders-admin.php:520 +#: includes/common/payment-gateways/2checkout.php:370 +#: includes/common/payment-gateways/authorizenet-aim.php:264 +#: includes/common/payment-gateways/mollie.php:93 +#: includes/common/payment-gateways/paymill.php:196 +#: includes/common/payment-gateways/pin.php:190 +#: includes/common/payment-gateways/skrill.php:157 +#: includes/common/payment-gateways/skrill.php:168 +#: includes/common/payment-gateways/wepay.php:143 +#: includes/public/class-mp-checkout.php:404 +msgid "Select One" +msgstr "" + +#: includes/admin/class-mp-ajax.php:511 +msgid "Oops... we could not locate any orders by that ID. Please double check your order ID and try again." +msgstr "" + +#: includes/admin/class-mp-ajax.php:482 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:166 +#: includes/multisite/class-mp-admin-multisite.php:584 +msgid "Edit Page" +msgstr "" + +#: includes/admin/class-mp-ajax.php:346 +msgid "Cancel " +msgstr "" + +#: includes/admin/class-mp-ajax.php:345 +msgid "Save " +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "Edit Description" +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "HTML Markup" +msgstr "" + +#: includes/admin/class-mp-ajax.php:333 +msgid "Plain Text Only" +msgstr "" + +#: includes/admin/class-mp-ajax.php:329 +msgid "Additional Content / Information for this Variation" +msgstr "" + +#: includes/admin/class-mp-ajax.php:317 +#: includes/admin/class-mp-products-admin.php:1762 +msgid "Allow this product to be purchased even if it's out of stock" +msgstr "" + +#: includes/admin/class-mp-ajax.php:313 +#: includes/admin/class-mp-products-admin.php:1711 +msgid "Track Product Inventory" +msgstr "" + +#: includes/admin/class-mp-ajax.php:300 +msgid "Extra Shipping Cost (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:295 +msgid "Ounces:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:294 +msgid "Pounds:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:292 +msgid "Kilograms:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:287 +#: includes/admin/class-mp-products-admin.php:1649 +msgid "Charge Shipping" +msgstr "" + +#: includes/admin/class-mp-ajax.php:273 +#: includes/admin/class-mp-products-admin.php:1623 +#: includes/admin/store-settings/class-mp-store-settings-general.php:454 +msgid "Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:272 +#: includes/admin/class-mp-products-admin.php:1622 +#: includes/admin/class-mp-products-admin.php:2090 +#: includes/admin/class-mp-products-admin.php:2408 +msgid "Special Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:271 +#: includes/admin/class-mp-products-admin.php:1625 +#: includes/admin/class-mp-products-admin.php:2092 +msgid "If you would like this product to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-ajax.php:268 +#: includes/admin/class-mp-products-admin.php:1599 +msgid "Charge Taxes (Special Rate)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:256 +#: includes/admin/class-mp-products-admin.php:1593 +#: includes/admin/class-mp-products-admin.php:2077 +#: includes/admin/class-mp-products-admin.php:2348 +msgid "End Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:255 +#: includes/admin/class-mp-products-admin.php:1589 +#: includes/admin/class-mp-products-admin.php:2072 +msgid "Start Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:1568 +msgid "Enter Sale Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:250 +#: includes/admin/class-mp-products-admin.php:1547 +msgid "Set up a Sale for this Product" +msgstr "" + +#: includes/admin/class-mp-ajax.php:206 includes/admin/class-mp-ajax.php:223 +msgid "Enter " +msgstr "" + +#: includes/admin/class-mp-ajax.php:193 +msgid "Browse" +msgstr "" + +#: includes/admin/class-mp-ajax.php:184 includes/admin/class-mp-ajax.php:192 +msgid "http://" +msgstr "" + +#: includes/admin/class-mp-ajax.php:183 +msgid "External Product URL" +msgstr "" + +#: includes/admin/class-mp-ajax.php:237 +msgid "Limit Per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:177 +#: includes/admin/class-mp-products-admin.php:1520 +msgid "Enter Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:174 +#: includes/admin/class-mp-products-admin.php:1512 +msgid "Enter SKU" +msgstr "" + +#: includes/admin/class-mp-ajax.php:173 +msgid "(Stock Keeping Unit)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:158 +msgid "Remove Image" +msgstr "" + +#: includes/admin/class-mp-ajax.php:74 +msgid "Variation Draft" +msgstr "" + +#: includes/admin/class-mp-admin.php:296 +#: includes/admin/class-mp-dashboard-widgets.php:70 +msgid "Please wait...saving in progress..." +msgstr "" + +#: includes/admin/class-mp-admin.php:295 +#: includes/admin/class-mp-dashboard-widgets.php:69 +msgid "Input is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:294 +#: includes/admin/class-mp-dashboard-widgets.php:68 +msgid "Valid number is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:292 +#: includes/admin/class-mp-dashboard-widgets.php:66 +msgid "Delete %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:291 +#: includes/admin/class-mp-dashboard-widgets.php:65 +msgid "Delete %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:290 +#: includes/admin/class-mp-dashboard-widgets.php:64 +msgid "Update inventory for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:289 +#: includes/admin/class-mp-dashboard-widgets.php:63 +msgid "Update inventory for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:288 +#: includes/admin/class-mp-dashboard-widgets.php:62 +msgid "Update price for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:287 +#: includes/admin/class-mp-dashboard-widgets.php:61 +msgid "Update prices for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:285 +#: includes/admin/class-mp-dashboard-widgets.php:59 +msgid "Creating variations, please wait..." +msgstr "" + +#: includes/admin/class-mp-admin.php:96 +msgid "The following payment gateways have been deprecated, Cubepoints, Bitpay, iDEAL, Skrill, Google Checkout. If you were using one of these gateways, please setup a new payment gateway here." +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:61 +msgid "Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:71 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:71 +#: includes/common/class-mp-gdpr.php:399 includes/common/class-mp-order.php:872 +#: includes/common/helpers.php:164 includes/public/class-mp-checkout.php:1434 +msgid "Shipping Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:66 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:66 +#: includes/common/class-mp-gdpr.php:392 includes/common/class-mp-order.php:864 +#: includes/common/helpers.php:163 includes/public/class-mp-checkout.php:1427 +msgid "Billing Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:61 +msgid "Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:258 +msgid "Shipping Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:256 +msgid "Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:235 +msgid "Payment Method: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:79 +msgid "The dir %s not exist or not writeable" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:239 +msgid "Shop header/logo" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:233 +msgid "Choose a template" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:226 +msgid "Template Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:221 +msgid "Disable automatic creation/attachment of invoices when only free products are ordered" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:220 +msgid "Disable for free products" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:216 +msgid "Attach invoice to" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:214 +msgid "Customer Order Shipped email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:212 +msgid "Customer New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:211 +msgid "Admin New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:206 +msgid "download" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:205 +msgid "How do you want to view the PDF?" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:203 +msgid "Open the PDF in a new browser tab/window" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:202 +msgid "Download the PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:158 +msgid "Export PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:103 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:106 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:109 +msgid "You can't download this order invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:76 +msgid "Invalid Request" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:72 +msgid "Order not exist!" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:67 +msgid "Invalid ID" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1293 +msgid "Coupon added successfully" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1292 +msgid "Please enter a code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1247 +msgid "No end" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1200 +msgid "Valid Dates" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1195 +msgid "Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1027 +msgid "No Coupons found in Trash" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1026 +msgid "No Coupons Found" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1025 +msgid "Search Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1024 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1028 +msgid "View Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1023 +msgid "New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1020 +msgid "Create New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1017 +msgid "Manage Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1002 +msgid "An error occurred while removing your coupon. Please try again." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:964 +msgid "Coupon can't be applied to this cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:951 +msgid "Invalid coupon code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:794 +msgid "Help Text" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:789 +msgid "Form Title" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:783 +msgid "Coupons Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:764 +msgid "End Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:758 +msgid "Does coupon have an end date?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:696 +msgid "Select Products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:688 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:723 +#: includes/common/payment-gateways/paypal-payflow.php:402 +msgid "User" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:638 +msgid "Max Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:636 +msgid "Enter the maximum number of times this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:623 +msgid "Leave blank to allow all other coupons." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:622 +msgid "Select combinable coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:618 +msgid "Can this coupon be combined with other coupons?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:613 +msgid "Apply to each applicable item once per cart" +msgstr "Применить к каждому применяемому пункта один раз в корзину" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:612 +msgid "Apply to each applicable item and quantity ordered" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:609 +msgid "How should the discount amount be applied?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:605 +msgid "Discount Amount" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:604 +msgid "Value must either be a decimal number or a percentage" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:602 +msgid "If you would like to give a percentage-based discount make sure to include the percent (%) symbol. Otherwise, the discount will be applied as a fixed amount off." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:595 +msgid "Letters and Numbers only." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:589 +msgid "Coupon Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:447 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:795 +msgid "More than one code? That's OK! Just be sure to enter one at a time." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:444 +msgid "Apply Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:314 +msgid "Coupon Discounts" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:89 +msgid "1 add-on disabled" +msgid_plural "%s add-ons disabled" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/addons/class-mp-addons-list-table.php:84 +msgid "1 add-on enabled" +msgid_plural "%s add-ons enabled" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Disabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Enable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:129 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:67 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:135 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:168 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:202 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:263 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:296 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:330 +msgid "Enabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +msgid "Disable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:34 +msgid "Disable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:33 +msgid "Enable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:21 +#: includes/admin/class-mp-products-admin.php:2280 +#: includes/common/class-mp-product.php:2916 +msgid "Description" +msgstr "" + +#: includes/common/template-functions.php:2889 +#: includes/multisite/template-functions.php:407 +msgid "Popularity (Least Popular - Most Popular)" +msgstr "" + +#: includes/common/template-functions.php:2888 +#: includes/multisite/template-functions.php:406 +msgid "Popularity (Most Popular - Least Popular)" +msgstr "" + +#: includes/common/template-functions.php:2885 +#: includes/multisite/template-functions.php:403 +msgid "Name (Z-A)" +msgstr "" + +#: includes/common/template-functions.php:2884 +#: includes/multisite/template-functions.php:402 +msgid "Name (A-Z)" +msgstr "" + +#: includes/common/template-functions.php:2883 +#: includes/multisite/template-functions.php:401 +msgid "Release Date (Oldest to Latest)" +msgstr "" + +#: includes/common/template-functions.php:2882 +#: includes/multisite/template-functions.php:400 +msgid "Release Date (Latest to Oldest)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:284 +msgid "paid" +msgstr "платный" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "One Time Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Customer Counter" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Daily Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:182 +msgid "For the most accurate rates, please select the appropriate pick up type for your business." +msgstr "Для получения наиболее точных ставок , пожалуйста, выберите соответствующий подобрать тип для вашего бизнеса ." + +#: includes/admin/class-mp-admin.php:374 +msgid "Page saved." +msgstr "" + +#: includes/admin/class-mp-admin.php:370 +msgid "Custom field deleted." +msgstr "" + +#: includes/admin/class-mp-admin.php:369 +msgid "Custom field updated." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:541 +msgid "%s - The payment request expired, - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:536 +msgid "%s - The payment not credited in merchants bitpay account, action required. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:252 +msgid "If enabled, you will recieve an email for each status update on payment." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:240 +msgid "Speed at which the bitcoin transaction registers as \"confirmed\" to the store. This overrides your merchant settings on the Bitpay website." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:238 +msgid "Transaction Speed" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:244 +msgid "Low" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:243 +msgid "Medium" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:242 +msgid "High" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:177 +#: includes/common/payment-gateways/_bitpay.php:517 +#: includes/common/payment-gateways/_bitpay.php:522 +msgid "%s - The payment request is under process. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:175 +#: includes/common/payment-gateways/_bitpay.php:527 +msgid "%s - The payment request has been processed - %s" +msgstr "%s - просьбаплатеж обработан - %s" + +#: includes/common/payment-gateways/_bitpay.php:150 +#: includes/common/payment-gateways/_bitpay.php:294 +msgid "Incorrect order invoice, please contact site administrator" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:141 +msgid "We could not verify order invoice details, please try again or contact site administrator for help" +msgstr "Мы не смогли проверить детали заказа счетов-фактур , попробуйте еще раз или свяжитесь с администрацией сайта для помощи" + +#: includes/common/payment-gateways/simplify.php:81 +msgid "Login to Simplify to get your API credentials. Enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:605 +#: includes/common/payment-gateways/paypal-express.php:647 +msgid "Express Checkout is PayPal's premier checkout solution, which streamlines the checkout process for buyers and keeps them on your site after making a purchase. Unlike PayPal Pro, there are no additional fees to use Express Checkout, though you may need to do a free upgrade to a business account. More Info »" +msgstr "" + +#. Plugin URI of the plugin/theme +msgid "https://premium.wpmudev.org/project/e-commerce/" +msgstr "" + +#. Author of the plugin/theme +msgid "WPMU DEV" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:541 +#: includes/admin/class-mp-orders-admin.php:543 +msgid "Tracking Number" +msgstr "Код отслеживания" + +#: includes/common/class-mp-order.php:805 +#: includes/common/payment-gateways/stripe.php:336 +#: includes/public/class-mp-checkout.php:402 +msgid "Country" +msgstr "Страна" + +#: includes/common/class-mp-order.php:784 +#: includes/common/payment-gateways/stripe.php:338 +msgid "City" +msgstr "Город" + +#: includes/common/class-mp-order.php:780 +msgid "Address 2" +msgstr "Доп. адрес" + +#: includes/common/payment-gateways/stripe.php:340 +msgid "Address" +msgstr "Адрес" + +#: includes/common/class-mp-cart.php:752 includes/common/class-mp-gdpr.php:378 +msgid "Order Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:360 +msgid "Payment Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:347 +msgid "Transaction ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:207 +msgid "The WePay Card Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:186 +#: includes/common/shipping-modules/mp-fedex.php:283 +msgid "Account ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:179 +msgid "Access Token" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:172 +msgid "Client Secret" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:165 +msgid "Client ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:159 +msgid "You must login to WePay to get your API credentials. Make sure to check \"Tokenize credit cards\" option under \"API Keys\" section of your WePay app." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:154 +msgid "When in live mode it is recommended to use SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:148 +msgid "Donation" +msgstr "Пожертвование" + +#: includes/common/payment-gateways/wepay.php:147 +msgid "Event" +msgstr "Событие" + +#: includes/common/payment-gateways/wepay.php:146 +msgid "Personal" +msgstr "Персональные данные" + +#: includes/common/payment-gateways/wepay.php:145 +msgid "Service" +msgstr "Сервис" + +#: includes/common/payment-gateways/wepay.php:144 +msgid "Goods" +msgstr "Товары" + +#: includes/common/payment-gateways/wepay.php:141 +msgid "Choose type of payments" +msgstr "Выберите тип платежа" + +#: includes/common/payment-gateways/wepay.php:140 +msgid "Checkout Type" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:134 +msgid "Staging" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:131 +msgid "Choose STAGING if you have registered the app on stage.wepay.com, or PRODUCTION if you registered on www.wepay.com" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:36 +#: includes/common/payment-gateways/wepay.php:299 +msgid "WePay" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:366 +msgid "Rejected - A payment was rejected." +msgstr "Отклонено - платёж не принят" + +#: includes/common/payment-gateways/_payway.php:360 +msgid "Failed - A payment was rejected due to an error." +msgstr "Неудача: платёж не принят из-за ошибки" + +#: includes/common/payment-gateways/_payway.php:342 +msgid "PayWay balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:298 +msgid "Full path of the cacerts.crt file" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:284 +msgid "User Name" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:277 +msgid "Biller Code" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:273 +msgid "Log Directory" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:266 +msgid "Encryption Key" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:60 +msgid "Your PayWay transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:40 +#: includes/common/payment-gateways/_payway.php:41 +msgid "PayWay" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:862 +msgid "You must register this application with PayPal using your business account login to get an Application ID that will work with your API credentials. A bit of a hassle, but worth it! In the near future we will be looking for ways to simplify this process. Register then submit your application while logged in to the developer portal. Note that you do not need an Application ID for testing in sandbox mode. More Information »" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:818 +#: includes/common/payment-gateways/paypal-chained-payments.php:840 +#: includes/common/payment-gateways/paypal-express.php:705 +msgid "You must login to PayPal and create an API signature to get your credentials. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:378 +msgid "Use Payflow payment gateway to accept online payments using your Internet merchant account and processing network. PayPal Payflow Pro is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:595 +msgid "Tags Only" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:594 +msgid "Category Only" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:795 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:593 +msgid "Category & Tags" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:591 +msgid "Relate Products By" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1008 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:455 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:751 +msgid "Right" +msgstr "Вправо" + +#: includes/admin/class-mp-shortcode-builder.php:1007 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:454 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:749 +msgid "Left" +msgstr "Влево" + +#: includes/admin/class-mp-shortcode-builder.php:1009 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:750 +msgid "Center" +msgstr "По центру" + +#: marketpress.php:273 +msgid "Orders from your e-commerce store." +msgstr "" + +#: marketpress.php:231 +msgid "Products for your e-commerce store." +msgstr "" + +#: marketpress.php:222 +msgid "Edit Product" +msgstr "" + +#. Description of the plugin/theme +msgid "The complete WordPress ecommerce plugin - works perfectly with BuddyPress and Multisite too to create a social marketplace, where you can take a percentage! Activate the plugin, adjust your settings then add some products to your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:272 +msgid "Beside" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:271 +msgid "Above" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:268 +msgid "Pin Count" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:261 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:287 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:318 +msgid "All View" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:260 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:286 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:317 +msgid "Single View" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:259 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:285 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:316 +msgid "Off" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:578 +msgid "Related Product Limit" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:681 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1201 +msgid "Applies To" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:685 +msgid "All Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:487 +msgid "The label shown for the tax line item in the cart. Taxes, VAT, GST, etc." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:485 +msgid "Tax Label" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:81 +msgid "Apply" +msgstr "" + +#: includes/admin/class-mp-admin.php:192 +msgid "MarketPress Instructions" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1954 +#: includes/admin/class-mp-products-admin.php:2194 includes/common/data.php:62 +#: includes/common/helpers.php:150 +msgid "Taxes" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1417 +#: includes/common/class-mp-product.php:2900 +msgid "Related Products" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:282 +#: includes/common/shipping-modules/mp-usps.php:316 +msgid "@ Max" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "(3-5 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "Priority Mail Express International Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:92 +msgid "Priority Mail Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:171 +#: includes/common/shipping-modules/mp-pickup.php:247 +msgid "In Store" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:159 +msgid "Pickup Fee" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:141 +msgid "This option allows your customers to indicate that they will pick-up their order at your place of business." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:60 +#: includes/common/shipping-modules/mp-pickup.php:76 +#: includes/common/shipping-modules/mp-pickup.php:176 +msgid "Pickup Instructions" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:24 +#: includes/common/shipping-modules/mp-pickup.php:254 +msgid "Pickup" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping - 0.00" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:256 +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:440 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:309 +msgid "Your Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:301 +msgid "Station" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:300 +msgid "Request Courier" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:299 +msgid "Drop Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:298 +msgid "Business Service Center" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:297 +msgid "Regular Pickup" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:135 +#: includes/common/shipping-modules/mp-fedex.php:264 +msgid "Production" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:207 +msgid "Simplify Commerce by MasterCard" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:104 +msgid "When in live mode, although it is not required, Simplify recommends you have an SSL certificate." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:183 +#: includes/common/payment-gateways/simplify.php:87 +msgid "Public Key" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:175 +#: includes/common/payment-gateways/simplify.php:94 +msgid "Private Key" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:71 +msgid "Simplify helps merchants to accept online payments from Mastercard, Visa, American Express, Discover, JCB, and Diners Club cards. It's that simple. We offer a merchant account and payment gateway in a single, secure package so you can concentrate on what really matters to your business. Only supports USD currently." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:267 +msgid "%1$s" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:151 +msgid "The Simplify Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/simplify.php:18 +msgid "Simplify" +msgstr "" + +#: includes/common/payment-gateways/pin.php:255 +msgid "%1$s Card %2$s" +msgstr "" + +#: includes/common/payment-gateways/pin.php:211 +msgid "The PIN Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:187 +msgid "Selecting a currency other than currency supported by PIN may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/pin.php:164 +msgid "You must login to PIN to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/pin.php:158 +msgid "When in live mode PIN recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/pin.php:45 +#: includes/common/payment-gateways/pin.php:286 +msgid "PIN" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:830 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:534 +#: includes/common/payment-gateways/paypal-express.php:865 +msgid "The payment is pending" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:235 +msgid "The Paymill Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:169 +msgid "You must login to Paymill to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:45 +#: includes/common/payment-gateways/paymill.php:308 +msgid "Paymill" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:90 +msgid "Invalid cardholder" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:89 +msgid "Card is no longer valid or has expired" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:88 +msgid "Please enter a valid Card CVC" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:87 +msgid "Please choose a valid Expiration Date." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:99 +#: includes/common/payment-gateways/skrill.php:100 +msgid "Skrill (Moneybookers)" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:24 +#: includes/common/shipping-modules/mp-weight-rate.php:292 +msgid "Weight Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:303 +msgid "USPS Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:270 +msgid "USPS Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:264 +msgid "USPS Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:145 +msgid "Flat Rate Large" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:140 +msgid "Flat Rate Medium 2" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:135 +msgid "Flat Rate Medium 1" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:130 +msgid "Flat Rate Small" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:118 +msgid "First Class International Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:114 +msgid "Priority Mail International Small Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:112 +msgid "Priority Mail International Medium Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:110 +msgid "Priority Mail International Large Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:108 +msgid "Priority Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:106 +msgid "Express Mail International Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:104 +msgid "Express Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:98 +msgid "Library Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:96 +msgid "Media Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "First-Class Mail Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:90 +msgid "Priority Mail Small Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:88 +msgid "Priority Mail Medium Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +#: includes/common/shipping-modules/mp-usps.php:88 +#: includes/common/shipping-modules/mp-usps.php:90 +#: includes/common/shipping-modules/mp-usps.php:92 +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "(2-4 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +msgid "Priority Mail Large Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "(2-4) days" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "Priority Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "Express Mail Sunday/Holiday Delivery Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:80 +msgid "Express Mail Flat Rate Boxes Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:78 +msgid "Express Mail Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:76 +msgid "Express Mail Sunday/Holiday Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:74 +msgid "Express Mail Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:72 +#: includes/common/shipping-modules/mp-usps.php:74 +#: includes/common/shipping-modules/mp-usps.php:76 +#: includes/common/shipping-modules/mp-usps.php:78 +#: includes/common/shipping-modules/mp-usps.php:80 +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "(1-2 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:72 +msgid "Express Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:67 +#: includes/common/shipping-modules/mp-usps.php:902 +msgid "USPS" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:534 +msgid "UPS (beta)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:166 +msgid "Required if using negotiated rates" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "Worldwide Express Plus" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "(Scheduled)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "Standard" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "(2-5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "Worldwide Expedited" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:54 +msgid "Worldwide Express" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "2nd Day Air AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "(1 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "Next Day Air Early AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "Next Day Air Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "3 Day Select" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:49 +msgid "Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:48 +msgid "2nd Day Air" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "Next Day Air" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:475 +#: includes/common/shipping-modules/mp-ups.php:43 +msgid "UPS" +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:27 +#: includes/common/shipping-modules/mp-table-rate.php:318 +msgid "Table Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:71 +#: includes/common/shipping-modules/mp-table-quantity.php:77 +msgid "Shipping Cost: " +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:70 +#: includes/common/shipping-modules/mp-table-quantity.php:76 +msgid "If quantity is greater than:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:66 +msgid "Each band must be a higher price than the one above it." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:56 +msgid "Number of Bands:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:53 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Each layer must be a higher quantity than the previous." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:51 +msgid "Table Quantity Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:31 +msgid "Table Quantity" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:135 +#: includes/common/shipping-modules/mp-table-rate.php:174 +#: includes/common/shipping-modules/mp-weight-rate.php:189 +msgid "European Union" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:123 +#: includes/common/shipping-modules/mp-table-rate.php:162 +#: includes/common/shipping-modules/mp-weight-rate.php:177 +msgid "United States" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:111 +#: includes/common/shipping-modules/mp-table-rate.php:151 +#: includes/common/shipping-modules/mp-weight-rate.php:166 +msgid "In Country" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:146 +#: includes/common/shipping-modules/mp-table-rate.php:186 +#: includes/common/shipping-modules/mp-weight-rate.php:201 +msgid "International" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:101 +#: includes/common/shipping-modules/mp-table-rate.php:141 +#: includes/common/shipping-modules/mp-weight-rate.php:156 +msgid "Canada" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:92 +#: includes/common/shipping-modules/mp-table-rate.php:132 +#: includes/common/shipping-modules/mp-weight-rate.php:147 +msgid "Hawaii and Alaska" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:83 +#: includes/common/shipping-modules/mp-table-rate.php:123 +#: includes/common/shipping-modules/mp-weight-rate.php:138 +msgid "Lower 48 States" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:64 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping." +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:25 +#: includes/common/shipping-modules/mp-flat-rate.php:223 +msgid "Flat Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:761 +msgid "FedEx (beta)" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Centimeters" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Inches" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1676 +#: includes/admin/class-mp-setup-wizard.php:547 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:166 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +msgid "Kilograms" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:103 +msgid " %1$s - %2$s" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:358 +msgid "Max Weight per Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:356 +msgid "Box Dimensions" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:354 +msgid "Box Name" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:344 +msgid "Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:343 +msgid "For each box defined enter the maximum weight it can contain." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:341 +msgid "Enter your standard box sizes as LengthxWidthxHeight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:386 +#: includes/common/shipping-modules/mp-ups.php:193 +#: includes/common/shipping-modules/mp-usps.php:234 +#: includes/common/shipping-modules/mp-usps.php:338 +msgid "Standard Boxes and Weight Limits" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:328 +msgid "Handling Charge per Interntional Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:294 +msgid "Handling Charge per Domestic Shipment " +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:388 +#: includes/common/shipping-modules/mp-ups.php:196 +#: includes/common/shipping-modules/mp-usps.php:237 +msgid "Add Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "(Next Day)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +msgid "Europe First International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:62 +msgid "International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:61 +#: includes/common/shipping-modules/mp-fedex.php:62 +#: includes/common/shipping-modules/mp-ups.php:54 +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "(1-3 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:61 +msgid "International First" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "(5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "International Economy" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "(2-7 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "Smart Post" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:55 +#: includes/common/shipping-modules/mp-ups.php:49 +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "(1-5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:55 +msgid "Ground Home Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "(1-7 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "Fedex Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:53 +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "(3 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:53 +msgid "Fedex Express Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +#: includes/common/shipping-modules/mp-ups.php:48 +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "(2 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +msgid "Fedex 2 Day" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "(2 Days am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "Fedex 2 Day AM" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "(1 Day)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +msgid "Standard Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "(1 Day am )" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "Priority Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "(1 Day am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "First Overnight" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:476 +#: includes/common/shipping-modules/mp-fedex.php:31 +msgid "FedEx" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:270 +#: includes/common/payment-gateways/simplify.php:179 +#: includes/common/payment-gateways/stripe.php:365 +msgid "%1$s Card ending in %2$s - Expires %3$s" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:259 +#: includes/common/payment-gateways/pin.php:238 +#: includes/common/payment-gateways/simplify.php:171 +msgid "%s Store Purchase - Order ID: %s, Email: %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:266 +msgid "You must login to Stripe to get your API credentials. You can enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:261 +msgid "When in live mode Stripe recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:311 +msgid "The Stripe Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:263 +#: includes/common/payment-gateways/paymill.php:122 +#: includes/common/payment-gateways/stripe.php:222 +msgid "Card Number" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:86 +msgid "Please enter a valid Credit Card Number." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:45 +#: includes/common/payment-gateways/stripe.php:433 +msgid "Stripe" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:750 +msgid "Sets the background color for the payment page. By default, the color is white." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:745 +msgid "Sets the background color for the header of the payment page. By default, the color is white." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:740 +msgid "Sets the border color around the header of the payment page. The border is a 2-pixel perimeter around the header space, which is 750 pixels wide by 90 pixels high. By default, the color is black." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:735 +msgid "URL for an image you want to appear at the top left of the payment page. The image has a maximum size of 750 pixels wide by 90 pixels high. PayPal recommends that you provide an image that is stored on a secure (https) server. If you do not specify an image, the business name is displayed." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:857 +#: includes/common/payment-gateways/paypal-express.php:1131 +msgid "The payment is pending because it is part of an order that has been authorized but not settled." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:853 +#: includes/common/payment-gateways/paypal-express.php:1127 +msgid "The payment is pending because it has been authorized but not settled. You must capture the funds first." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:847 +#: includes/common/payment-gateways/paypal-express.php:1120 +msgid "You denied the payment when it was marked as pending." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:837 +#: includes/common/payment-gateways/paypal-express.php:1108 +msgid "A reversal has occurred on this transaction due to an unknown reason." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:836 +#: includes/common/payment-gateways/paypal-express.php:1107 +msgid "A reversal has occurred on this transaction because you have given the customer a refund." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:835 +#: includes/common/payment-gateways/paypal-express.php:1106 +msgid "A reversal has occurred on this transaction due to a complaint about the transaction from your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:834 +#: includes/common/payment-gateways/paypal-express.php:1105 +msgid "A reversal has occurred on this transaction due to your customer triggering a money-back guarantee." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:833 +#: includes/common/payment-gateways/paypal-express.php:1104 +msgid "A reversal has occurred on this transaction due to a chargeback by your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:1101 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer:" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:826 +#: includes/common/payment-gateways/paypal-express.php:1097 +msgid "A payment has been accepted." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:818 +#: includes/common/payment-gateways/paypal-express.php:1087 +msgid "The transaction has not terminated, e.g. an authorization may be awaiting completion." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:531 +#: includes/common/payment-gateways/paypal-express.php:810 +#: includes/common/payment-gateways/paypal-express.php:1077 +msgid "The payment has failed. This happens only if the payment was made from your customer's bank account." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:806 +#: includes/common/payment-gateways/paypal-express.php:1072 +msgid "An authorization for this transaction has been voided." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:802 +#: includes/common/payment-gateways/paypal-express.php:1067 +msgid "The authorization period for this payment has been reached." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:798 +#: includes/common/payment-gateways/paypal-express.php:1062 +msgid "A reversal has been canceled; for example, when you win a dispute and the funds for the reversal have been returned to you." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:499 +#: includes/common/payment-gateways/paypal-express.php:1163 +msgid "PayPal Express Checkout" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:798 +msgid "Gateway Settings Page Message" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:725 +msgid "Signature" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:506 +#: includes/common/payment-gateways/eway31.php:533 +#: includes/common/shipping-modules/mp-fedex.php:276 +msgid "API Password" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:773 +msgid "Enter a percentage of all store sales to collect as a fee. Decimals allowed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:757 +msgid "Using PayPal Chained Payments allows you as the multisite network owner to collect a predefined fee or percentage of all sales on network MarketPress stores! This is invisible to the customers who purchase items in a store, and all PayPal fees will be charged to the store owner. To use this option you must create API credentials, and you should make all other gateways unavailable or limited above." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:338 +msgid "Please be aware that we will deduct a ?% fee from the total of each transaction in addition to any fees PayPal may charge you. If for any reason you need to refund a customer for an order, please contact us with a screenshot of the refund receipt in your PayPal history as well as the Transaction ID of our fee deduction so we can issue you a refund. Thank you!" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:698 +#: includes/common/payment-gateways/paypal-express.php:149 +msgid "There was a problem connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:470 +#: includes/common/payment-gateways/paypal-express.php:1053 +msgid "There was a problem verifying the IPN string with PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:310 +msgid "There was a problem connecting to PayPal to check the status of your purchase. Please check the status of your order here »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:539 +#: includes/common/payment-gateways/paypal-chained-payments.php:254 +#: includes/common/payment-gateways/paypal-express.php:1139 +msgid "The payment is pending." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:251 +#: includes/common/payment-gateways/paypal-chained-payments.php:531 +#: includes/common/payment-gateways/paypal-express.php:862 +#: includes/common/payment-gateways/paypal-express.php:1136 +msgid "The payment is pending for an unknown reason. For more information, contact PayPal customer service." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:250 +#: includes/common/payment-gateways/paypal-chained-payments.php:530 +#: includes/common/payment-gateways/paypal-express.php:861 +#: includes/common/payment-gateways/paypal-express.php:1135 +msgid "The payment is pending because you are not yet verified. You must verify your account before you can accept this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:249 +#: includes/common/payment-gateways/paypal-chained-payments.php:529 +#: includes/common/payment-gateways/paypal-express.php:860 +#: includes/common/payment-gateways/paypal-express.php:1134 +msgid "The payment is pending because it was made via credit card and you must upgrade your account to Business or Premier status in order to receive the funds. It can also mean that you have reached the monthly limit for transactions on your account." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:248 +#: includes/common/payment-gateways/paypal-chained-payments.php:528 +#: includes/common/payment-gateways/paypal-express.php:859 +#: includes/common/payment-gateways/paypal-express.php:1133 +msgid "The payment is pending because it was made to an email address that is not yet registered or confirmed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:247 +#: includes/common/payment-gateways/paypal-chained-payments.php:527 +#: includes/common/payment-gateways/paypal-express.php:858 +#: includes/common/payment-gateways/paypal-express.php:1132 +msgid "The payment is pending while it is being reviewed by PayPal for risk." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:246 +#: includes/common/payment-gateways/paypal-chained-payments.php:526 +#: includes/common/payment-gateways/paypal-express.php:856 +#: includes/common/payment-gateways/paypal-express.php:1130 +msgid "You do not have a balance in the currency sent, and you do not have your Payment Receiving Preferences set to automatically convert and accept this payment. You must manually accept or deny this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:245 +#: includes/common/payment-gateways/paypal-chained-payments.php:525 +#: includes/common/payment-gateways/paypal-express.php:855 +#: includes/common/payment-gateways/paypal-express.php:1129 +msgid "The payment is pending because you hold a non-U.S. account and do not have a withdrawal mechanism. You must manually accept or deny this payment from your Account Overview." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:244 +#: includes/common/payment-gateways/paypal-chained-payments.php:524 +#: includes/common/payment-gateways/paypal-express.php:854 +#: includes/common/payment-gateways/paypal-express.php:1128 +msgid "The payment is pending because it was made by an eCheck that has not yet cleared." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:243 +#: includes/common/payment-gateways/paypal-chained-payments.php:523 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:236 +#: includes/common/payment-gateways/paypal-chained-payments.php:516 +msgid "The transaction was rejected by the receiver (you)." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:510 +#: includes/common/payment-gateways/paypal-express.php:843 +#: includes/common/payment-gateways/paypal-express.php:1115 +msgid "You refunded the payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:224 +#: includes/common/payment-gateways/paypal-chained-payments.php:504 +msgid "The transaction is in progress." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:212 +#: includes/common/payment-gateways/paypal-chained-payments.php:491 +#: includes/common/payment-gateways/paypal-express.php:814 +#: includes/common/payment-gateways/paypal-express.php:1082 +msgid "The payment has been partially refunded." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:202 +#: includes/common/payment-gateways/paypal-chained-payments.php:481 +msgid "PayPal balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:177 +msgid "There was a problem connecting to PayPal to setup your purchase. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:122 +msgid "Your PayPal transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:50 +#: includes/common/payment-gateways/paypal-chained-payments.php:53 +#: includes/common/payment-gateways/paypal-chained-payments.php:732 +#: includes/common/payment-gateways/paypal-express.php:500 +#: includes/common/payment-gateways/paypal-express.php:938 +msgid "PayPal" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:48 +#: includes/common/payment-gateways/paypal-chained-payments.php:730 +#: includes/common/payment-gateways/paypal-chained-payments.php:756 +#: includes/common/payment-gateways/paypal-chained-payments.php:873 +msgid "PayPal Chained Payments" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:59 +#: includes/common/payment-gateways/paypal-payflow.php:467 +msgid "PayPal Payflow Pro" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:378 +msgid "Chargeback - A payment was reversed due to a chargeback. The funds have been removed from your account balance and returned to the buyer." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:372 +msgid "Failed - The Credit Card or Direct Debit transaction was declined." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:354 +#: includes/common/payment-gateways/skrill.php:366 +msgid "Cancelled - The payment was cancelled manually by the sender in their online account history or was auto-cancelled after 14 days pending." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:360 +msgid "Pending - The payment is pending. It can take 2-3 days for bank transfers to complete." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:349 +#: includes/common/payment-gateways/skrill.php:354 +msgid "Processed - The payment has been completed, and the funds have been added successfully to your Moneybookers account balance." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:189 +msgid "Shown to the customer on the confirmation screen - the end step of the process - a note, confirmation number, or any other message. Line breaks <br> may be used for longer messages." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:188 +msgid "Confirmation Note (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:183 +msgid "The URL of the logo which you would like to appear at the top of the payment form. The logo must be accessible via HTTPS otherwise it will not be shown. For best integration results we recommend that you use a logo with dimensions up to 200px in width and 50px in height." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:182 +msgid "Logo Image (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:177 +msgid "The name of this store, which will be shown on the gateway. If no value is submitted, the account email will be shown as the recipient of the payment." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:176 +msgid "Merchant Name (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:165 +msgid "Language" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:368 +#: includes/common/payment-gateways/authorizenet-aim.php:262 +#: includes/common/payment-gateways/eway.php:363 +#: includes/common/payment-gateways/eway31.php:471 +#: includes/common/payment-gateways/mollie.php:91 +#: includes/common/payment-gateways/paymill.php:193 +#: includes/common/payment-gateways/paypal-chained-payments.php:356 +#: includes/common/payment-gateways/paypal-express.php:688 +#: includes/common/payment-gateways/paypal-payflow.php:432 +#: includes/common/payment-gateways/pin.php:186 +#: includes/common/payment-gateways/skrill.php:152 +#: includes/common/payment-gateways/stripe.php:288 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:104 +msgid "Currency" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:359 +#: includes/common/payment-gateways/skrill.php:143 +msgid "Secret Word" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:261 +msgid "Order ID:" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:234 +msgid "Complete Checkout" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:204 +msgid "Your Moneybookers transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:155 +msgid "This is the email text to send to those who have made manual payment checkouts. You should include your manual payment instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:257 +#: includes/common/payment-gateways/manual-payments.php:128 +msgid "Record payments manually, such as by Cash, Check, or EFT." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:71 +msgid "Manual/Invoice" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:648 +#: includes/common/payment-gateways/manual-payments.php:35 +#: includes/common/payment-gateways/manual-payments.php:36 +msgid "Manual Payment" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:34 +#: includes/common/payment-gateways/manual-payments.php:163 +msgid "Manual Payments" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:288 +msgid "iDEAL Simulator (for testing)" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:287 +msgid "ABN Amro Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:286 +msgid "Friesland Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:285 +msgid "Rabobank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:284 +msgid "ING Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:279 +msgid "Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:270 +msgid "To make it easier to pay for online products and services, the Dutch banking community has developed the iDEAL online payment method. iDEAL allows online payments to be made using online banking in EUR only." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:247 +#: includes/common/payment-gateways/_payway.php:199 +#: includes/common/payment-gateways/manual-payments.php:68 +msgid "Invoiced" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1016 +msgid "Coupon" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:77 +#: includes/common/payment-gateways/_ideal.php:250 +#: includes/common/payment-gateways/_payway.php:202 +msgid "iDEAL" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:76 +msgid "iDEAL (beta)" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:327 +msgid "Merchant Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:293 +#: includes/common/payment-gateways/_payway.php:302 +#: includes/common/payment-gateways/payfast.php:324 +msgid "Merchant ID" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:462 +msgid "eWay Rapid 3.0 Payments lets merchants recieve credit card payments through eWay without need for users to leave the shop. Note this gateway requires a valid SSL certificate configured for this site." +msgstr "" + +#: includes/common/payment-gateways/eway.php:452 +msgid "There was a problem connecting to eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/eway.php:432 +#: includes/common/payment-gateways/eway.php:437 +msgid "The url of the image can be hosted on your website and pass the secure https:// path of the image to be displayed at the top of the website. This is the second image block on the webpage and is restricted to 960px X 65px. A default secure image is used if none is supplied." +msgstr "" + +#: includes/common/payment-gateways/eway.php:431 +#: includes/common/payment-gateways/eway.php:436 +msgid "Company Logo (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:427 +msgid "The page footer text can be customised and populated below the customer's order details. Useful for contact information." +msgstr "" + +#: includes/common/payment-gateways/eway.php:426 +msgid "Page Footer (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:421 +msgid "Page Description (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:417 +#: includes/common/payment-gateways/eway.php:422 +msgid "This value is used to populate the browsers title bar at the top of the screen." +msgstr "" + +#: includes/common/payment-gateways/eway.php:416 +msgid "Page Title (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:412 +msgid "This will be displayed as the company the customer is purchasing from, including this is highly recommended." +msgstr "" + +#: includes/common/payment-gateways/eway.php:411 +msgid "Company Name" +msgstr "" + +#: includes/common/payment-gateways/eway.php:394 +msgid "Customer ID" +msgstr "" + +#: includes/common/payment-gateways/eway.php:381 +#: includes/common/payment-gateways/eway31.php:488 +msgid "Live API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway.php:371 +#: includes/common/payment-gateways/eway31.php:479 +msgid "Gateway Mode" +msgstr "" + +#: includes/common/payment-gateways/eway.php:354 +msgid "The Hosted Page is a webpage hosted on eWAY's side eliminating the need for merchants to capture, transmit or store credit card numbers. At the checkout time the merchant automatically redirects the customer to the Hosted Page where they would enter their details and have the transaction processed. Upon completion of the transaction the customer is redirected back to the MarketPress checkout confirmation page." +msgstr "" + +#: includes/common/payment-gateways/eway.php:314 +msgid "There was a problem with your credit card information: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:300 +msgid "Paid - The card has been processed - %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:253 +msgid "There was a problem setting up the transaction with eWay: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:245 +#: includes/common/payment-gateways/eway.php:289 +msgid "There was a problem parsing the response from eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:159 +#: includes/common/payment-gateways/eway.php:189 +#: includes/common/payment-gateways/paypal-chained-payments.php:634 +#: includes/common/payment-gateways/paypal-express.php:322 +#: includes/common/payment-gateways/paypal-express.php:473 +msgid "%s Store Purchase - Order ID: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:147 +#: includes/common/payment-gateways/eway.php:462 +msgid "eWay Shared Payments" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:214 +msgid "This is the email text to send to those who have made CubePoints checkouts. You should include your CubePoints instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:212 +#: includes/common/payment-gateways/free_orders.php:188 +#: includes/common/payment-gateways/manual-payments.php:154 +msgid "Order Confirmation Email" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:207 +#: includes/common/payment-gateways/manual-payments.php:149 +msgid "Confirmation User Instructions" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:202 +#: includes/common/payment-gateways/manual-payments.php:144 +msgid "User Instructions" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:198 +#: includes/common/payment-gateways/free_orders.php:170 +#: includes/common/payment-gateways/manual-payments.php:139 +msgid "Enter a public name for this payment method that is displayed to users - No HTML" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:532 +#: includes/common/payment-gateways/_cubepoints.php:196 +#: includes/common/payment-gateways/free_orders.php:169 +#: includes/common/payment-gateways/manual-payments.php:138 +msgid "Method Name" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:187 +msgid "Accept CubePoints as payment(requires the CubePoints plugin)." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:140 +msgid "Sorry, but you do not appear to have enough points to complete this purchase!" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:124 +msgid "%s Store Purchase" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:79 +#: includes/common/payment-gateways/_cubepoints.php:171 +msgid "Your current points: " +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:133 +#: includes/common/payment-gateways/_cubepoints.php:197 +msgid "CubePoints" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:344 +msgid "Authorize.net AIM Checkout" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:331 +msgid "Custom API URL" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:332 +msgid "Many other gateways have Authorize.net API emulators. To use one of these gateways input their API post url here." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:322 +msgid "Request a delimited response from the payment gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:316 +msgid "Security: MD5 Hash" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:317 +msgid "The payment gateway generated MD5 hash value that can be used to authenticate the transaction response. Not needed because responses are returned using an SSL connection." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:306 +msgid "Customer Receipt Email Footer" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:296 +msgid "Customer Receipt Email Header" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:297 +#: includes/common/payment-gateways/paypal-payflow.php:446 +msgid "This text will appear as the header of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:282 +msgid "Encapsulation Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:283 +msgid "Authorize.net default is blank. Otherwise, get this from your credit card processor. If the transactions are going through, but getting strange responses, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:273 +msgid "Optional settings to control advanced options" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:224 +#: includes/common/payment-gateways/authorizenet-aim.php:272 +msgid "Advanced Settings" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:253 +msgid "Transaction Key" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:246 +msgid "Login ID" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:396 +msgid "Gateway Credentials" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:221 +msgid "Authorize.net AIM is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway. USD is the only currency supported by this gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:205 +msgid "There was a problem finalizing your purchase. %s Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:519 +#: includes/common/payment-gateways/paypal-chained-payments.php:218 +#: includes/common/payment-gateways/paypal-chained-payments.php:498 +#: includes/common/payment-gateways/paypal-express.php:822 +#: includes/common/payment-gateways/paypal-express.php:1092 +msgid "The payment has been completed, and the funds have been added successfully to your account balance." +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:233 +msgid "Please enter a valid credit card security code" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:224 +#: includes/public/class-mp-checkout.php:867 +msgid "Please enter a valid credit card number" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:221 +msgid "Please enter your credit card number" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:217 +msgid "Please enter your credit card security code" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:213 +msgid "Please select your credit card expiration date." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:299 +#: includes/common/payment-gateways/authorizenet-aim.php:50 +#: includes/common/payment-gateways/eway.php:148 +#: includes/common/payment-gateways/eway.php:298 +#: includes/common/payment-gateways/eway31.php:267 +#: includes/common/payment-gateways/paymill.php:46 +#: includes/common/payment-gateways/paypal-express.php:972 +#: includes/common/payment-gateways/paypal-payflow.php:60 +#: includes/common/payment-gateways/pin.php:46 +#: includes/common/payment-gateways/simplify.php:19 +#: includes/common/payment-gateways/stripe.php:46 +#: includes/common/payment-gateways/wepay.php:37 +msgid "Credit Card" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:49 +msgid "Authorize.net Checkout" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:156 +#: includes/common/payment-gateways/stripe.php:293 +msgid "Selecting a currency other than that used for your store may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:352 +msgid "Seller ID" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:340 +#: includes/common/payment-gateways/_ideal.php:311 +#: includes/common/payment-gateways/authorizenet-aim.php:234 +#: includes/common/payment-gateways/eway.php:376 +#: includes/common/payment-gateways/payfast.php:315 +#: includes/common/payment-gateways/paypal-chained-payments.php:368 +#: includes/common/payment-gateways/paypal-express.php:699 +#: includes/common/payment-gateways/paypal-payflow.php:391 +msgid "Live" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:339 +#: includes/common/payment-gateways/authorizenet-aim.php:233 +#: includes/common/payment-gateways/eway.php:375 +#: includes/common/payment-gateways/paypal-chained-payments.php:367 +#: includes/common/payment-gateways/paypal-express.php:698 +#: includes/common/payment-gateways/paypal-payflow.php:390 +#: includes/common/shipping-modules/mp-fedex.php:263 +msgid "Sandbox" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:336 +#: includes/common/payment-gateways/_ideal.php:307 +#: includes/common/payment-gateways/authorizenet-aim.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:365 +#: includes/common/payment-gateways/paypal-express.php:695 +#: includes/common/payment-gateways/paypal-payflow.php:387 +#: includes/common/payment-gateways/wepay.php:130 +#: includes/common/shipping-modules/mp-fedex.php:260 +msgid "Mode" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:288 +#: includes/common/payment-gateways/mijireh.php:242 +#: includes/common/payment-gateways/mollie.php:212 +msgid "The order has been received" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:74 +#: includes/common/payment-gateways/2checkout.php:75 +#: includes/common/payment-gateways/2checkout.php:435 +msgid "2Checkout" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:306 +msgid "Confirm" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:218 +#: includes/common/class-mp-cart.php:974 includes/common/class-mp-cart.php:1354 +#: includes/common/template-functions.php:918 +msgid "Checkout" +msgstr "" + +#: includes/common/template-functions.php:207 +msgid "Check Order Status" +msgstr "" + +#: includes/common/template-functions.php:235 +msgid "View Products" +msgstr "" + +#: includes/common/template-functions.php:263 +msgid "Visit Store" +msgstr "" + +#: includes/common/template-functions.php:2912 +#: includes/multisite/template-functions.php:448 +msgid "Order By" +msgstr "" + +#: includes/common/template-functions.php:2887 +#: includes/multisite/template-functions.php:405 +msgid "Price (High to Low)" +msgstr "" + +#: includes/common/template-functions.php:2886 +#: includes/multisite/template-functions.php:404 +msgid "Price (Low to High)" +msgstr "" + +#: includes/common/template-functions.php:2881 +#: includes/multisite/template-functions.php:399 +msgid "Default" +msgstr "" + +#: includes/common/template-functions.php:2858 +msgid "Show All" +msgstr "" + +#: includes/common/class-mp-product.php:2048 +msgid "View Larger Image »" +msgstr "" + +#: includes/common/class-mp-product.php:979 +msgid "Out of Stock" +msgstr "" + +#: includes/common/template-functions.php:148 +msgid "Price: " +msgstr "" + +#: includes/multisite/template-functions.php:833 +msgid "No Tags" +msgstr "" + +#: includes/common/template-functions.php:3162 +msgid "Uncategorized" +msgstr "" + +#: includes/common/class-mp-cart.php:569 includes/common/class-mp-order.php:604 +#: includes/common/helpers.php:115 +msgid "Download" +msgstr "" + +#: includes/common/class-mp-cart.php:1353 +msgid "Empty Cart" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:291 +#: includes/common/payment-gateways/paypal-express.php:718 +#: includes/common/payment-gateways/paypal-payflow.php:423 +#: includes/common/shipping-modules/mp-ups.php:158 +#: includes/public/class-mp-checkout.php:1254 +#: includes/public/class-mp-checkout.php:1383 +msgid "Password" +msgstr "" + +#: includes/common/payment-gateways/eway.php:387 +#: includes/common/payment-gateways/paypal-express.php:711 +#: includes/common/shipping-modules/mp-usps.php:185 +#: includes/public/class-mp-checkout.php:1249 +msgid "Username" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:437 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:790 +msgid "Have a coupon code?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:321 +#: includes/admin/class-mp-orders-admin.php:526 +#: includes/common/class-mp-cart.php:592 +msgid "Remove" +msgstr "" + +#: includes/admin/class-mp-ajax.php:316 +msgid "Quantity:" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2140 +#: includes/admin/class-mp-products-admin.php:2387 +#: includes/common/shipping-modules/class-mp-shipping-api.php:507 +msgid "Extra Shipping Cost" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:403 +msgid "Choose a Shipping Method:" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1691 +#: includes/admin/class-mp-products-admin.php:2131 +#: includes/admin/class-mp-products-admin.php:2378 +#: includes/common/shipping-modules/class-mp-shipping-api.php:228 +msgid "Ounces" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1684 +#: includes/admin/class-mp-products-admin.php:2123 +#: includes/admin/class-mp-products-admin.php:2369 +#: includes/admin/class-mp-setup-wizard.php:546 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:165 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +#: includes/common/shipping-modules/class-mp-shipping-api.php:227 +msgid "Pounds" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:226 +msgid "Product Weight:" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:214 +msgid "Weight (Kilograms)" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:82 +msgid "Number of Categories:" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:72 +msgid "Product Count" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:20 +#: includes/admin/class-mp-product-attributes-admin.php:129 +#: includes/admin/class-mp-product-attributes-list-table.php:22 +#: includes/admin/class-mp-products-admin.php:2216 +#: includes/admin/class-mp-shortcode-builder.php:628 +#: includes/admin/class-mp-shortcode-builder.php:1415 +#: includes/admin/widgets/ms-global-categories.php:70 +#: includes/common/shipping-modules/mp-fedex.php:395 +#: includes/common/shipping-modules/mp-ups.php:202 +#: includes/common/shipping-modules/mp-usps.php:243 +#: includes/public/class-mp-checkout.php:314 +msgid "Name" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:67 +msgid "Order Categories By:" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:24 +#: includes/admin/widgets/ms-global-categories.php:50 +msgid "Global Product Categories" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:15 +msgid "Global Product Category List" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:13 +msgid "Displays a network-wide HTML list of product categories from network MarketPress stores." +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:24 +#: includes/admin/widgets/ms-global-tag-cloud.php:45 +msgid "Global Product Tags" +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:15 +msgid "Global Product Tag Cloud" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:947 +#: includes/admin/widgets/ms-global-product-list.php:173 +msgid "Excerpt" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:169 +msgid "Content To Show:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:140 +msgid "Limit To Product Tag:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:132 +msgid "Limit To Product Category:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:72 +msgid "Global Products" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:16 +msgid "Global Product List" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:14 +msgid "Shows a customizable global list of products from network MarketPress stores." +msgstr "" + +#: includes/common/class-mp-product.php:974 +#: includes/multisite/template-functions.php:731 +msgid "Buy Now »" +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:13 +msgid "Displays global most used product tags in cloud format from network MarketPress stores." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:438 +msgid "Theme Permissions" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:402 +#: includes/multisite/class-mp-admin-multisite.php:448 +msgid "No Access" +msgstr "" + +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:120 +msgid "Pro Site Level" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:401 +#: includes/multisite/class-mp-admin-multisite.php:447 +msgid "All Can Use" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:390 +msgid "Gateway Permissions" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:375 +msgid "Select a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:350 +msgid "Global Gateway" +msgstr "" + +#. Plugin Name of the plugin/theme +msgid "MarketPress" +msgstr "" + +#: includes/admin/widgets/product-tag-cloud.php:7 +msgid "Your most used product tags in cloud format from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/categories.php:79 +msgid "Show hierarchy" +msgstr "" + +#: includes/admin/widgets/categories.php:76 +#: includes/admin/widgets/ms-global-categories.php:92 +msgid "Show product counts" +msgstr "" + +#: includes/admin/widgets/categories.php:73 +msgid "Show as dropdown" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:710 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:736 +#: includes/admin/widgets/categories.php:30 +msgid "Select Category" +msgstr "" + +#: includes/admin/widgets/categories.php:7 +msgid "A list or dropdown of product categories from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/product-list.php:250 +msgid "Show Buy Button" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:183 +#: includes/admin/widgets/product-list.php:244 +msgid "Show Price" +msgstr "" + +#: includes/admin/widgets/product-list.php:241 +msgid "Show Excerpt" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:155 +#: includes/admin/widgets/product-list.php:238 +msgid "Thumbnail Size:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:153 +#: includes/admin/widgets/product-list.php:237 +msgid "Show Thumbnail" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:147 +#: includes/admin/widgets/product-list.php:233 +msgid "Display Settings" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:136 +#: includes/admin/widgets/ms-global-product-list.php:144 +#: includes/admin/widgets/product-list.php:230 +msgid "Enter the Slug" +msgstr "" + +#: includes/admin/widgets/product-list.php:228 +#: includes/common/template-functions.php:894 +msgid "Tag" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:686 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:712 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:739 +#: includes/admin/class-mp-shortcode-builder.php:796 +#: includes/admin/widgets/product-list.php:227 +#: includes/common/template-functions.php:886 +#: includes/common/template-functions.php:2907 +msgid "Category" +msgstr "" + +#: includes/admin/widgets/product-list.php:226 +msgid "No Filter" +msgstr "" + +#: includes/admin/widgets/product-list.php:224 +msgid "Taxonomy Filter:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:108 +#: includes/admin/widgets/product-list.php:209 +msgid "Order Products By:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:101 +#: includes/admin/widgets/product-list.php:206 +msgid "Number of Products:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:98 +#: includes/admin/widgets/product-list.php:204 +msgid "List Settings" +msgstr "" + +#: includes/admin/widgets/product-list.php:177 +msgid "Our Products" +msgstr "" + +#: includes/admin/widgets/product-list.php:144 +#: includes/common/template-functions.php:2070 +#: includes/common/template-functions.php:2347 +#: includes/multisite/template-functions.php:303 +#: includes/multisite/template-functions.php:623 +msgid "No Products" +msgstr "" + +#: includes/admin/widgets/product-list.php:8 +msgid "Product List" +msgstr "" + +#: includes/admin/widgets/product-list.php:7 +msgid "Shows a customizable list of products from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/cart.php:75 includes/admin/widgets/categories.php:82 +#: includes/admin/widgets/product-list.php:253 +#: includes/admin/widgets/product-tag-cloud.php:57 +msgid "Only show on store pages" +msgstr "" + +#: includes/admin/widgets/cart.php:65 +#: includes/admin/widgets/ms-global-product-list.php:92 +#: includes/admin/widgets/product-list.php:200 +msgid "Custom Text:" +msgstr "" + +#: includes/admin/widgets/cart.php:64 includes/admin/widgets/categories.php:69 +#: includes/admin/widgets/ms-global-categories.php:59 +#: includes/admin/widgets/ms-global-product-list.php:87 +#: includes/admin/widgets/ms-global-tag-cloud.php:49 +#: includes/admin/widgets/product-list.php:199 +#: includes/admin/widgets/product-tag-cloud.php:49 +msgid "Title:" +msgstr "" + +#: includes/admin/widgets/cart.php:7 +msgid "Shows dynamic shopping cart contents along with a checkout button for your MarketPress store." +msgstr "" + +#: includes/admin/widgets/product-tag-cloud.php:8 +msgid "Product Tag Cloud" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:539 +#: includes/admin/class-mp-setup-wizard.php:575 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:163 +msgid "Measurement System" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:616 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:149 +msgid "Select Shipping Options" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:596 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:129 +msgid "Calculated Options" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:582 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:115 +msgid "No Shipping" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:110 +msgid "EU" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:109 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:93 +msgid "All" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:92 +msgid "Select:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:185 +msgid "Store Pages" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:223 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:256 +msgid "Order Shipped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:60 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:95 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:128 +#: marketpress.php:266 +msgid "New Order" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:314 +msgid "Email Notifications" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:59 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:200 +msgid "Products List" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:58 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:190 +msgid "Store Base" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:108 +#: includes/admin/class-mp-shortcode-builder.php:635 +#: includes/admin/class-mp-shortcode-builder.php:708 +#: includes/admin/class-mp-shortcode-builder.php:875 +#: includes/admin/class-mp-shortcode-builder.php:1319 +#: includes/admin/class-mp-shortcode-builder.php:1422 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:526 +#: includes/admin/widgets/ms-global-categories.php:78 +#: includes/admin/widgets/ms-global-product-list.php:127 +#: includes/admin/widgets/product-list.php:221 +msgid "Ascending" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:109 +#: includes/admin/class-mp-shortcode-builder.php:636 +#: includes/admin/class-mp-shortcode-builder.php:709 +#: includes/admin/class-mp-shortcode-builder.php:876 +#: includes/admin/class-mp-shortcode-builder.php:1320 +#: includes/admin/class-mp-shortcode-builder.php:1423 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:525 +#: includes/admin/widgets/ms-global-categories.php:75 +#: includes/admin/widgets/ms-global-product-list.php:124 +#: includes/admin/widgets/product-list.php:220 +msgid "Descending" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:637 +#: includes/admin/class-mp-shortcode-builder.php:695 +#: includes/admin/class-mp-shortcode-builder.php:862 +#: includes/admin/class-mp-shortcode-builder.php:1306 +#: includes/admin/class-mp-shortcode-builder.php:1424 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:518 +#: includes/admin/widgets/ms-global-product-list.php:121 +#: includes/admin/widgets/product-list.php:218 +msgid "Random" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:694 +#: includes/admin/class-mp-shortcode-builder.php:861 +#: includes/admin/class-mp-shortcode-builder.php:1305 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:517 +#: includes/admin/widgets/ms-global-product-list.php:119 +#: includes/admin/widgets/product-list.php:216 +msgid "Product Price" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:693 +#: includes/admin/class-mp-shortcode-builder.php:860 +#: includes/admin/class-mp-shortcode-builder.php:1304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:516 +#: includes/admin/widgets/ms-global-product-list.php:117 +#: includes/admin/widgets/product-list.php:215 +msgid "Number of Sales" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:692 +#: includes/admin/class-mp-shortcode-builder.php:859 +#: includes/admin/class-mp-shortcode-builder.php:1303 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:515 +#: includes/admin/widgets/product-list.php:214 +msgid "Product Author" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:691 +#: includes/admin/class-mp-shortcode-builder.php:858 +#: includes/admin/class-mp-shortcode-builder.php:1302 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:514 +#: includes/admin/widgets/product-list.php:213 +msgid "Product ID" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:690 +#: includes/admin/class-mp-shortcode-builder.php:857 +#: includes/admin/class-mp-shortcode-builder.php:1301 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:513 +#: includes/admin/widgets/ms-global-product-list.php:113 +#: includes/admin/widgets/product-list.php:212 +msgid "Publish Date" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:430 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:726 +msgid "Width" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:439 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:735 +msgid "Height" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:88 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:402 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:698 +msgid "Custom" +msgstr "" + +#: includes/common/class-mp-product.php:179 +#: includes/common/class-mp-product.php:992 +#: includes/common/class-mp-product.php:1000 +#: includes/multisite/template-functions.php:579 +msgid "Buy Now" +msgstr "" + +#: includes/common/class-mp-product.php:175 +#: includes/common/class-mp-product.php:990 +#: includes/common/class-mp-product.php:998 +msgid "Add To Cart" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:807 +msgid "Store Style" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1021 +msgid "Edit Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupon.php:580 +#: includes/admin/class-mp-ajax.php:238 +#: includes/admin/class-mp-products-admin.php:1532 +msgid "Unlimited" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1198 +msgid "Remaining Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1197 +msgid "Used" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:752 +#: includes/admin/class-mp-products-admin.php:2343 +msgid "Start Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:598 +msgid "Coupon Code" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:444 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:284 +msgid "Save Changes" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:57 +#: includes/admin/class-mp-shortcode-builder.php:716 +#: includes/admin/class-mp-shortcode-builder.php:727 +#: includes/admin/class-mp-shortcode-builder.php:883 +#: includes/admin/class-mp-shortcode-builder.php:894 +#: includes/admin/class-mp-shortcode-builder.php:946 +#: includes/admin/class-mp-shortcode-builder.php:956 +#: includes/admin/class-mp-shortcode-builder.php:1006 +#: includes/admin/class-mp-shortcode-builder.php:1327 +#: includes/admin/class-mp-shortcode-builder.php:1338 +#: includes/admin/store-settings/class-mp-store-settings-general.php:357 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:270 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:108 +#: includes/admin/widgets/ms-global-product-list.php:172 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:94 +msgid "None" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:352 +msgid "Google Analytics Ecommerce Tracking" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:310 +msgid "This option turns MarketPress into more of a product listing plugin, disabling shopping carts, checkout, and order management. This is useful if you simply want to list items you can buy in a store somewhere else, optionally linking the \"Buy Now\" buttons to an external site. Some examples are a car dealership, or linking to songs/albums in itunes, or linking to products on another site with your own affiliate links." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:304 +msgid "Whether or not customers must be registered and logged in to checkout. (Not recommended: Enabling this can lower conversions)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:258 +msgid "How many times may a customer download a file they have purchased? (It's best to set this higher than one in case they have any problems downloading)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:257 +msgid "Maximum Downloads" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:298 +msgid "This will set the product to draft if inventory of all variations is gone." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:288 +msgid "At what low stock count do you want to be warned for products you have enabled inventory tracking for?" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:208 +#: includes/admin/store-settings/class-mp-store-settings-general.php:287 +msgid "Inventory Warning Threshold" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:282 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:542 +msgid "Miscellaneous Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:429 +#: includes/multisite/class-mp-admin-multisite.php:247 +msgid "Show Decimal in Prices" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:451 +#: includes/admin/store-settings/class-mp-store-settings-general.php:403 +#: includes/multisite/class-mp-admin-multisite.php:221 +msgid "Currency Symbol Position" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:444 +#: includes/admin/store-settings/class-mp-store-settings-general.php:396 +msgid "Store Currency" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:429 +#: includes/admin/store-settings/class-mp-store-settings-general.php:381 +msgid "Currency Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:516 +msgid "Please see your local tax laws. Note if this is enabled and a downloadable only cart, rates will be the default for your base location." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:529 +msgid "Apply Tax to Downloadable Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:498 +msgid "Enabling this option allows you to enter and show all prices inclusive of tax, while still listing the tax total as a line item in shopping carts. Please see your local tax laws." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:497 +msgid "Enter Prices Inclusive of Tax?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:492 +msgid "Please see your local tax laws. Most areas charge tax on shipping fees." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:491 +msgid "Apply Tax To Shipping Fees?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:674 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:565 +#: includes/common/payment-gateways/authorizenet-aim.php:291 +#: includes/common/payment-gateways/authorizenet-aim.php:326 +#: includes/common/payment-gateways/payfast.php:347 +msgid "No" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:675 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:759 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:512 +#: includes/admin/class-mp-setup-wizard.php:518 +#: includes/admin/class-mp-setup-wizard.php:524 +#: includes/admin/class-mp-setup-wizard.php:530 +#: includes/admin/class-mp-setup-wizard.php:564 +#: includes/admin/store-settings/class-mp-store-settings-general.php:232 +#: includes/admin/store-settings/class-mp-store-settings-general.php:299 +#: includes/admin/store-settings/class-mp-store-settings-general.php:305 +#: includes/admin/store-settings/class-mp-store-settings-general.php:311 +#: includes/admin/store-settings/class-mp-store-settings-general.php:317 +#: includes/admin/store-settings/class-mp-store-settings-general.php:328 +#: includes/admin/store-settings/class-mp-store-settings-general.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:341 +#: includes/admin/store-settings/class-mp-store-settings-general.php:348 +#: includes/admin/store-settings/class-mp-store-settings-general.php:367 +#: includes/admin/store-settings/class-mp-store-settings-general.php:493 +#: includes/admin/store-settings/class-mp-store-settings-general.php:499 +#: includes/admin/store-settings/class-mp-store-settings-general.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:556 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:375 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:381 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:387 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:474 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:493 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:532 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:574 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:606 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:664 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:670 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:677 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:683 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:689 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:763 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:774 +#: includes/common/payment-gateways/_bitpay.php:250 +#: includes/common/payment-gateways/_bitpay.php:257 +#: includes/common/payment-gateways/_bitpay.php:264 +#: includes/common/payment-gateways/authorizenet-aim.php:290 +#: includes/common/payment-gateways/authorizenet-aim.php:325 +#: includes/common/payment-gateways/free_orders.php:160 +#: includes/common/payment-gateways/payfast.php:346 +#: includes/common/payment-gateways/paymill.php:162 +#: includes/common/payment-gateways/paypal-payflow.php:441 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-checkbox.php:22 +msgid "Yes" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:492 +#: includes/admin/store-settings/class-mp-store-settings-general.php:472 +msgid "%s Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:467 +#: includes/admin/store-settings/class-mp-store-settings-general.php:449 +msgid "Tax Settings" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:370 +#: includes/admin/store-settings/class-mp-store-settings-general.php:624 +msgid "Base Zip/Postal Code" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:354 +#: includes/admin/store-settings/class-mp-store-settings-general.php:608 +msgid "Base State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:589 +msgid "Base Country" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:582 +msgid "Location Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:195 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:800 +#: includes/multisite/class-mp-admin-multisite.php:172 +msgid "General Settings" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1945 +#: includes/admin/class-mp-products-admin.php:2185 +#: includes/admin/class-mp-store-settings-admin.php:111 +#: includes/admin/class-mp-store-settings-admin.php:266 +msgid "General" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:242 +msgid "Importers" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +#: includes/admin/class-mp-store-settings-admin.php:234 +msgid "Payments" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:313 +#: includes/admin/class-mp-store-settings-admin.php:112 +#: includes/admin/class-mp-store-settings-admin.php:222 +msgid "Presentation" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:916 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1015 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1018 +#: includes/admin/class-mp-dashboard-widgets.php:305 marketpress.php:702 +msgid "Coupons" +msgstr "" + +#: includes/admin/class-mp-admin.php:251 +msgid "Download »" +msgstr "" + +#: includes/admin/class-mp-admin.php:245 +#: includes/admin/class-mp-exporter-orders.php:170 +msgid "All Statuses" +msgstr "" + +#: includes/admin/class-mp-admin.php:209 +#: includes/admin/class-mp-exporter-orders.php:150 +#: includes/admin/class-mp-exporter-orders.php:178 +msgid "Export Orders" +msgstr "" + +#: includes/admin/class-mp-admin.php:228 +msgid "Show all dates" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:947 +msgid "Change Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:287 +msgid "Order Notes" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:478 +msgid "Other" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:205 +msgid "Subtotal" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:84 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:87 +#: includes/admin/class-mp-products-admin.php:1737 +#: includes/common/class-mp-cart.php:1409 +#: includes/common/class-mp-product.php:559 +msgid "Quantity" +msgstr "" + +#: includes/common/helpers.php:93 +msgid "Item" +msgstr "" + +#: includes/common/class-mp-order.php:1050 +msgid "Current Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:297 +msgid "Order Actions" +msgstr "" + +#: includes/common/class-mp-product.php:1084 +msgid "More Info »" +msgstr "" + +#: includes/common/class-mp-product.php:2313 +msgid "Low Product Inventory Notification" +msgstr "" + +#: includes/common/class-mp-order.php:338 includes/common/data.php:154 +msgid "New Order Notification: ORDERID" +msgstr "" + +#: includes/common/helpers.php:259 +msgid "Your payment for this order is complete." +msgstr "" + +#: includes/common/helpers.php:261 +msgid "Your payment for this order is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/helpers.php:256 +msgid "Payment Total:" +msgstr "" + +#: includes/common/helpers.php:253 +msgid "Transaction ID:" +msgstr "" + +#: includes/common/helpers.php:249 +msgid "Payment Type:" +msgstr "" + +#: includes/common/helpers.php:246 +msgid "Payment Method:" +msgstr "" + +#: includes/common/helpers.php:242 +msgid "Order Notes:" +msgstr "" + +#: includes/common/helpers.php:237 +msgid "Special Instructions:" +msgstr "" + +#: includes/common/helpers.php:232 +msgid "Tracking Number:" +msgstr "" + +#: includes/common/helpers.php:223 includes/common/helpers.php:226 +#: includes/common/helpers.php:228 +#: includes/common/shipping-modules/class-mp-shipping-api.php:406 +#: includes/common/shipping-modules/class-mp-shipping-api.php:428 +msgid "Shipping Method:" +msgstr "" + +#: includes/common/helpers.php:168 +msgid "No shipping required for this order." +msgstr "" + +#: includes/common/helpers.php:155 +msgid "Order Total:" +msgstr "" + +#: includes/common/class-mp-order.php:1025 +msgid "Taxes:" +msgstr "" + +#: includes/common/class-mp-order.php:1032 includes/common/helpers.php:144 +msgid "Shipping:" +msgstr "" + +#: includes/public/class-mp-checkout.php:367 +msgid "Street address, P.O. box, company name, c/o" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:314 +msgid "Shipping Info" +msgstr "" + +#: includes/public/class-mp-public.php:740 +msgid "Whoops, there was a problem loading up this file for your download. Please contact us for help." +msgstr "" + +#: includes/public/class-mp-public.php:683 +msgid "Sorry, our records show you've downloaded this file %d out of %d times allowed. Please contact us if you still need help." +msgstr "" + +#: includes/public/class-mp-public.php:634 +msgid "Sorry, your order has been marked as unpaid." +msgstr "" + +#: includes/public/class-mp-public.php:629 +msgid "Sorry, the link is invalid for this download." +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:15 +#: includes/admin/class-mp-products-admin.php:1172 +msgid "Cheatin’ uh?" +msgstr "" + +#: includes/public/class-mp-public.php:407 +#: includes/public/class-mp-short-codes.php:128 +msgid "Please enter a valid email address." +msgstr "" + +#: includes/admin/class-mp-ajax.php:191 +#: includes/admin/class-mp-products-admin.php:1821 +#: includes/admin/class-mp-products-admin.php:2010 +#: includes/admin/class-mp-products-admin.php:2267 +msgid "File URL" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1842 +msgid "External Link" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2177 +msgid "Add Variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:126 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:289 +msgid "Inventory" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:438 +#: includes/admin/class-mp-products-admin.php:578 +#: includes/admin/class-mp-products-admin.php:1552 +#: includes/admin/class-mp-products-admin.php:2053 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:134 +msgid "Sale Price" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "Variation Name" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1931 +msgid "Product Details" +msgstr "" + +#: includes/admin/class-mp-product-attributes-list-table.php:33 +msgid "Delete" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1057 +msgid "Trashed" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:231 +#: includes/admin/class-mp-orders-admin.php:1015 +#: includes/common/class-mp-order.php:1052 includes/common/helpers.php:97 +msgid "Total" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1196 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:210 +#: includes/admin/class-mp-orders-admin.php:1014 +msgid "Discount" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:221 +#: includes/admin/class-mp-orders-admin.php:1013 +#: includes/common/payment-gateways/_ideal.php:148 +#: includes/common/payment-gateways/_payway.php:134 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:108 +msgid "Tax" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:216 +#: includes/admin/class-mp-orders-admin.php:1012 +#: includes/admin/class-mp-products-admin.php:1958 +#: includes/admin/class-mp-products-admin.php:2198 +#: includes/admin/class-mp-store-settings-admin.php:114 +#: includes/admin/class-mp-store-settings-admin.php:230 +#: includes/common/class-mp-cart.php:717 includes/common/helpers.php:168 +#: includes/common/payment-gateways/_ideal.php:137 +#: includes/common/payment-gateways/_payway.php:116 +#: includes/public/class-mp-checkout.php:1304 +msgid "Shipping" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1011 +msgid "Items" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1010 +msgid "From" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:154 +#: includes/admin/class-mp-orders-admin.php:1009 +#: includes/common/class-mp-gdpr.php:370 +msgid "Order Date" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1008 +#: includes/common/class-mp-gdpr.php:366 +#: includes/common/template-functions.php:2134 +msgid "Order ID" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:22 +#: includes/admin/class-mp-orders-admin.php:1007 +msgid "Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1155 +msgid "N/A" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:243 +#: includes/admin/class-mp-products-admin.php:464 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:142 +msgid "Sales" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:463 +msgid "Stock" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:85 +#: includes/admin/class-mp-ajax.php:176 includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:434 +#: includes/admin/class-mp-products-admin.php:462 +#: includes/admin/class-mp-products-admin.php:576 +#: includes/admin/class-mp-products-admin.php:1519 +#: includes/admin/class-mp-products-admin.php:1569 +#: includes/admin/class-mp-products-admin.php:1950 +#: includes/admin/class-mp-products-admin.php:2059 +#: includes/admin/class-mp-products-admin.php:2190 +#: includes/admin/class-mp-products-admin.php:2330 +#: includes/common/class-mp-cart.php:1415 includes/common/helpers.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:130 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:276 +msgid "Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:173 +#: includes/admin/class-mp-products-admin.php:461 +#: includes/admin/class-mp-products-admin.php:1972 +#: includes/admin/class-mp-products-admin.php:2224 +msgid "SKU" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:459 +#: includes/admin/class-mp-products-admin.php:1793 +#: includes/admin/class-mp-products-admin.php:1805 +#: includes/admin/class-mp-products-admin.php:2163 +msgid "Variations" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:83 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:86 +#: includes/admin/class-mp-dashboard-widgets.php:134 +#: includes/admin/class-mp-products-admin.php:458 +#: includes/admin/class-mp-products-admin.php:837 +#: includes/admin/class-mp-shortcode-builder.php:689 +#: includes/admin/class-mp-shortcode-builder.php:856 +#: includes/admin/class-mp-shortcode-builder.php:1300 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:512 +#: includes/admin/widgets/ms-global-product-list.php:115 +#: includes/admin/widgets/product-list.php:211 +msgid "Product Name" +msgstr "" + +#: includes/common/template-functions.php:2575 +msgid "Categorized in " +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:305 +#: includes/common/payment-gateways/free_orders.php:176 +msgid "Payment Information" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:167 +#: includes/admin/class-mp-orders-admin.php:432 +#: includes/admin/class-mp-pages-admin.php:62 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:227 +#: includes/common/class-mp-gdpr.php:374 +#: includes/common/template-functions.php:175 +#: includes/common/template-functions.php:926 +msgid "Order Status" +msgstr "" + +#. translators: %s: orders closed +#: marketpress.php:327 +msgid "Closed (%s)" +msgid_plural "Closed (%s)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/admin/class-mp-admin.php:249 +#: includes/admin/class-mp-orders-admin.php:375 +#: includes/admin/class-mp-orders-admin.php:951 +#: includes/admin/class-mp-orders-admin.php:1053 +#: includes/admin/class-mp-orders-admin.php:1065 +#: includes/common/class-mp-gdpr.php:330 +#: includes/common/class-mp-order.php:1019 marketpress.php:325 +msgid "Closed" +msgstr "" + +#. translators: %s: shipped orders +#: marketpress.php:320 +msgid "Shipped (%s)" +msgid_plural "Shipped (%s)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/admin/class-mp-admin.php:248 +#: includes/admin/class-mp-orders-admin.php:376 +#: includes/admin/class-mp-orders-admin.php:950 +#: includes/admin/class-mp-orders-admin.php:1049 +#: includes/admin/class-mp-orders-admin.php:1064 +#: includes/common/class-mp-gdpr.php:329 +#: includes/common/class-mp-order.php:1002 marketpress.php:318 +msgid "Shipped" +msgstr "" + +#. translators: %s: paid orders +#: marketpress.php:313 +msgid "Paid (%s)" +msgid_plural "Paid (%s)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/admin/class-mp-admin.php:247 +#: includes/admin/class-mp-orders-admin.php:377 +#: includes/admin/class-mp-orders-admin.php:949 +#: includes/admin/class-mp-orders-admin.php:1045 +#: includes/admin/class-mp-orders-admin.php:1063 +#: includes/common/class-mp-gdpr.php:328 +#: includes/common/payment-gateways/2checkout.php:294 +#: includes/common/payment-gateways/_cubepoints.php:130 +#: includes/common/payment-gateways/authorizenet-aim.php:193 +#: includes/common/payment-gateways/free_orders.php:91 +#: includes/common/payment-gateways/mijireh.php:248 +#: includes/common/payment-gateways/paymill.php:273 +#: includes/common/payment-gateways/paypal-express.php:933 +#: includes/common/payment-gateways/paypal-express.php:967 +#: includes/common/payment-gateways/pin.php:258 +#: includes/common/payment-gateways/simplify.php:181 +#: includes/common/payment-gateways/stripe.php:368 +#: includes/common/payment-gateways/wepay.php:269 marketpress.php:311 +msgid "Paid" +msgstr "" + +#. translators: %s: orders received +#: marketpress.php:306 +msgid "Received (%s)" +msgid_plural "Received (%s)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/admin/class-mp-admin.php:246 +#: includes/admin/class-mp-orders-admin.php:378 +#: includes/admin/class-mp-orders-admin.php:1041 +#: includes/admin/class-mp-orders-admin.php:1062 +#: includes/common/class-mp-gdpr.php:327 includes/common/class-mp-order.php:995 +#: includes/common/payment-gateways/payfast.php:244 marketpress.php:304 +msgid "Received" +msgstr "" + +#: marketpress.php:268 +msgid "Search Orders" +msgstr "" + +#: marketpress.php:267 +msgid "View Order" +msgstr "" + +#: marketpress.php:262 +msgid "Order" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:301 +#: includes/admin/class-mp-orders-admin.php:989 marketpress.php:261 +msgid "Orders" +msgstr "" + +#: marketpress.php:228 +msgid "No Products found in Trash" +msgstr "" + +#: marketpress.php:227 +msgid "No Products Found" +msgstr "" + +#: marketpress.php:226 +msgid "Search Products" +msgstr "" + +#: marketpress.php:225 marketpress.php:229 +msgid "View Product" +msgstr "" + +#: marketpress.php:224 +msgid "New Product" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1022 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:258 +#: marketpress.php:223 +msgid "Edit" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1019 +msgid "Create New" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:687 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:698 +#: marketpress.php:217 +msgid "Product" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:307 +#: includes/common/template-functions.php:173 +#: includes/common/template-functions.php:179 +#: includes/common/template-functions.php:902 +#: includes/multisite/template-functions.php:82 marketpress.php:216 +#: marketpress.php:219 +msgid "Products" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:118 +#: includes/admin/widgets/product-tag-cloud.php:46 +#: includes/multisite/class-mp-admin-multisite.php:548 +msgid "Product Tags" +msgstr "" + +#: includes/common/template-functions.php:2906 +#: includes/multisite/template-functions.php:449 +msgid "Product Category" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:117 +#: includes/admin/widgets/categories.php:8 +#: includes/admin/widgets/categories.php:18 +#: includes/multisite/class-mp-admin-multisite.php:539 +msgid "Product Categories" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:332 +#: includes/common/template-functions.php:872 marketpress.php:218 +msgid "Store" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:60 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:209 +#: includes/admin/widgets/cart.php:8 includes/admin/widgets/cart.php:56 +#: includes/common/template-functions.php:174 +#: includes/common/template-functions.php:811 +msgid "Shopping Cart" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:110 +#: includes/admin/class-mp-store-settings-admin.php:218 +msgid "Store Settings" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:128 marketpress.php:607 +msgid "Settings" +msgstr "" + +#: includes/common/data.php:178 includes/common/data.php:190 +msgid "Your Order Has Been Shipped! (ORDERID)" +msgstr "" + +#: includes/common/data.php:159 includes/common/data.php:166 +#: includes/common/data.php:172 +msgid "Your Order Confirmation (ORDERID)" +msgstr "" + +#: includes/common/data.php:148 +msgid "

    Thank you for your order! We appreciate your business, and please come back often to check out our new products.

    " +msgstr "" + +#: includes/common/data.php:147 +msgid "

    You are almost done! Please do a final review of your order to make sure everything is correct then click the \"Confirm Payment\" button.

    " +msgstr "" + +#: includes/common/data.php:145 +msgid "

    Please enter your shipping information in the form below to proceed with your order.

    " +msgstr "" + +#: includes/common/data.php:143 +msgid "

    If you have any questions about your order please do not hesitate to contact us.

    " +msgstr "" + +#: includes/common/data.php:106 +msgid "tag" +msgstr "" + +#: includes/common/data.php:105 +msgid "category" +msgstr "" + +#: includes/common/data.php:104 +msgid "order-status" +msgstr "" + +#: includes/common/data.php:103 +msgid "shopping-cart" +msgstr "" + +#: includes/common/data.php:102 +msgid "products" +msgstr "" + +#. Translators: change default slugs here +#: includes/common/data.php:101 +msgid "store" +msgstr "магазин" \ No newline at end of file diff --git a/languages/mp-sk.mo b/languages/mp-sk.mo new file mode 100644 index 0000000000000000000000000000000000000000..62f4cf601e082bd59703edebe06421db8dbea077 GIT binary patch literal 1777 zcmb7E&u`pB6gE&OTB!$6BXL0DDN>^XvG+$(wQN{GK+;Au?WzfZ>#Y5DJ+VDwX2wpP zGZ)~}3r7x-=mDhs0~L)_t@e-L!e0RY1E0Mc8c?eWOV(%4%zN*9-^@3Eym{eA56>mM zZ{z*8{=xI-92#7~_g{EBcrU-?d7HpZ;053hz+1ovz&`MI;48q(FMHl=z_)0{#YU*W*~cgqXX)_wdh1TGx31`~vs{coBH%RnPkbxCGn+?gQ)mKLK9{{tWyM zcmiAkUdN;b?f~mLPwK^2Ecvt-Gv%VnSUEEMO~KX?-_NDtXcf~}?DLn!!qSLYQEqg| z)^hZM0BNaE5u3AsfIgKD#Yw7C%aF-B;fk6S%HEQb*xMcxD=|uIGL5V(N7~d378O@1Pgz)|P%9@eYb63jlu0G6 zGs0=(-PVWR4o9-cyxpA9q;PZ?OO$iaZX{i(r6Md=78xX}8lE7UjU_0wjMQUkGLDwX z=_bY^EeDVug6NWskrCUvKSLRtFc#Pg%g#wP!2;w)orO||JgO-M-rl)-4K44hx{D%> zNNGpND#z8oo27^yfU_1Ajuckr}!ws$uD zeQ1WYed-3C)@RrfoJxPM$`R=JzH8?x$Zil6GSFx6<=&QmQbob@j353JHVofnI6M9izs}HfOefI zX)F>qeT3tHV>W~#8wc)JRwvV6yrCvc%d)9+LV6UL+3EBIMq$74Uv4BNVs;ww0UhBc zX^dPJ^QNl6yTho6YUp!ONFd7rN1$CM70#p4c6yRgQoAs5#Q}29L&5^4MyyII@6Pn( zC}D5c;cimkb#MAOj8koA4_84Dx5EgB@jr%4LMf<3wJ_G0oIBGj6hja#=h~IH5=2 && n<=4) ? 1 : 2;\n" +"X-Generator: GlotPress/2.3.1\n" +"Language: sk\n" +"Project-Id-Version: MarketPress\n" + +#: includes/public/class-mp-checkout.php:1285 +msgid "By clicking this checkbox you allow the website to process your personal data." +msgstr "" + +#: includes/common/class-mp-gdpr.php:382 +msgid "Order Info" +msgstr "" + +#: includes/common/class-mp-gdpr.php:268 +msgid "Shipping Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:267 +msgid "Shipping Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:266 +msgid "Shipping ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:265 +msgid "Shipping State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:264 +msgid "Shipping City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:263 +msgid "Shipping Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:262 +msgid "Shipping Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:261 +msgid "Shipping Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:260 +msgid "Shipping Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:259 +msgid "Shipping Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:258 +msgid "Shipping First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:254 +msgid "Billing Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:253 +msgid "Billing Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:252 +msgid "Billing ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:251 +msgid "Billing State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:250 +msgid "Billing City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:249 +msgid "Billing Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:248 +msgid "Billing Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:247 +msgid "Billing Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:246 +msgid "Billing Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:245 +msgid "Billing Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:244 +msgid "Billing First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:151 +msgid "Orders Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:139 +msgid "Customer Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:100 includes/common/class-mp-gdpr.php:116 +msgid "MarketPress User Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:81 +msgid "" +"In addition to standard WordPress session cookies, this site might be setting an\n" +"\t\t additional cookie to remember your cart settings. This cookie will last for one year." +msgstr "" + +#: includes/common/class-mp-gdpr.php:80 +msgid "Cookies" +msgstr "" + +#: includes/common/class-mp-gdpr.php:77 +msgid "" +"The following information will be collected in order to process orders: your name,\n" +"\t\t username, email address, avatar and profile URLs, address and phone number. This data can be\n" +"\t\t exported and removed." +msgstr "" + +#: includes/common/class-mp-gdpr.php:76 +msgid "Additional data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:71 +msgid "" +"This site might be using third party services and tools to process payments or/and\n" +"\t\t process shipping data when creating orders on the MarketPress store. These services include payment\n" +"\t\t gateways: 2Checkout, Authorize.net AIM, eWay shared payments, eWay Rapid 3.1 Payments, Mijireh,\n" +"\t\t Mollie, Paymill, PayPal, PIN, Simplify Commerce by MasterCard, Stripe and WePay; shipping gateways:\n" +"\t\t Fedex, UPS, USPS." +msgstr "" + +#: includes/common/class-mp-gdpr.php:70 +msgid "Third parties" +msgstr "" + +#: includes/admin/class-mp-admin.php:403 +msgid "Start creating store pages and products for your online shop here." +msgstr "" + +#: includes/admin/class-mp-admin.php:402 +msgid "Create Online Shop" +msgstr "" + +#: includes/admin/class-mp-admin.php:394 +msgid "Run Setup Wizard" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:234 +msgid "If having problems during invoice generation, add define( 'DOMPDF_ENABLE_HTML5PARSER', true ); to the wp-config.php file." +msgstr "" + +#: includes/public/class-mp-checkout.php:723 +msgid "Invalid Email" +msgstr "" + +#: includes/public/class-mp-checkout.php:721 +#: includes/public/class-mp-checkout.php:729 +msgid "This field is required" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:804 +msgid "This option changes the built-in css styles for store pages. For a custom css style, save your css file with the /* MarketPress Style: Your CSS Theme Name Here */ header line in the \"%s\" folder and it will appear in this list so you may select it. You should select \"None\" if you don't wish to use custom CSS styles or if you are using default theme templates or custom theme templates and css to make your own completely unique store design. For more information on custom theme templates click here »." +msgstr "" + +#: includes/public/class-mp-public.php:421 +#: includes/public/class-mp-short-codes.php:142 +msgid "Please enter a value greater than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:420 +#: includes/public/class-mp-short-codes.php:141 +msgid "Please enter a value less than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:419 +#: includes/public/class-mp-short-codes.php:140 +msgid "Please enter a value between {0} and {1}." +msgstr "" + +#: includes/public/class-mp-public.php:418 +#: includes/public/class-mp-short-codes.php:139 +msgid "Please enter a value between {0} and {1} characters long." +msgstr "" + +#: includes/public/class-mp-public.php:417 +#: includes/public/class-mp-short-codes.php:138 +msgid "Please enter at least {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:416 +#: includes/public/class-mp-short-codes.php:137 +msgid "Please enter no more than {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:415 +#: includes/public/class-mp-short-codes.php:136 +msgid "Please enter a value with a valid extension." +msgstr "" + +#: includes/public/class-mp-public.php:414 +#: includes/public/class-mp-short-codes.php:135 +msgid "Please enter the same value again." +msgstr "" + +#: includes/public/class-mp-public.php:413 +#: includes/public/class-mp-short-codes.php:134 +msgid "Please enter a valid credit card number." +msgstr "" + +#: includes/public/class-mp-public.php:412 +#: includes/public/class-mp-short-codes.php:133 +msgid "Please enter only digits." +msgstr "" + +#: includes/public/class-mp-public.php:411 +#: includes/public/class-mp-short-codes.php:132 +msgid "Please enter a valid number." +msgstr "" + +#: includes/public/class-mp-public.php:410 +#: includes/public/class-mp-short-codes.php:131 +msgid "Please enter a valid date (ISO)." +msgstr "" + +#: includes/public/class-mp-public.php:409 +#: includes/public/class-mp-short-codes.php:130 +msgid "Please enter a valid date." +msgstr "" + +#: includes/public/class-mp-public.php:408 +#: includes/public/class-mp-short-codes.php:129 +msgid "Please enter a valid URL." +msgstr "" + +#: includes/public/class-mp-public.php:406 +#: includes/public/class-mp-short-codes.php:127 +msgid "Please fix this field." +msgstr "" + +#: includes/public/class-mp-checkout.php:1287 +#: includes/public/class-mp-public.php:405 +#: includes/public/class-mp-short-codes.php:126 +msgid "This field is required." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:810 +msgid "None - Without Special CSS-styles" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:809 +msgid "Default - Using Default CSS-styles" +msgstr "" + +#: marketpress.php:739 +msgid "Enable multiple downloads per product" +msgstr "" + +#: marketpress.php:738 +msgid "Multiple Downloads" +msgstr "" + +#: includes/public/class-mp-checkout.php:715 +msgid "Invalid Zip Code" +msgstr "" + +#: includes/common/template-functions.php:2126 +msgid "Guest Email" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:195 +msgid "There was a problem finalizing your purchase. Please re-enter your credit card information and try again" +msgstr "" + +#: includes/common/class-mp-cart.php:565 includes/common/class-mp-order.php:600 +#: includes/common/helpers.php:111 +msgid "Download %1$s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:331 +msgid "Export products to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:328 +msgid "The import process uses the WordPress importer plugin." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:326 +msgid "Import / Export Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:325 +msgid "Export settings to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:324 +msgid "Import configuration" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:320 +msgid "Use the text below to export to a new installation. Or paste in the new configuration to import." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:318 +msgid "Import / Export Settings" +msgstr "" + +#. translators: URL to wp-admin/import.php +#: includes/admin/store-settings/class-mp-store-settings-import.php:266 +msgid "This importer is not installed. Please install importers from the main site." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:261 +msgid "Install Now" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:260 +msgid "Install %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:240 +msgid "Run Importer" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:239 +msgid "Run %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:258 +msgid "Import/Export" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1199 +msgid "Requires Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:737 +msgid "Optionally limit the user to some categories" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:671 +msgid "Should this coupon only be available to logged in users?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:670 +msgid "Require Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:655 +msgid "Mimimum number of products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:653 +msgid "Enter the minimum number of products in the cart that this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:648 +msgid "Can this coupon be limited to a number of products in the cart?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:334 +msgid "Add all values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:265 +msgid "Set as default variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:154 +msgid "Set Default" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:150 +msgid "More Info" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:40 +msgid "MarketPress - Quick Setup" +msgstr "" + +#: includes/public/class-mp-checkout.php:1399 +msgid "Proceed to checkout and create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1241 +#: includes/public/class-mp-checkout.php:1245 +msgid "Register account" +msgstr "" + +#: includes/public/class-mp-checkout.php:1233 +msgid "Register as customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:765 +msgid "

    Oops!

    Looks like you haven't added anything your cart. Let's go shopping!

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:763 +msgid "

    Oops!

    The cart is disabled.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing Information" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:214 +msgid "Global Currency" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:198 +msgid "Global Store Currency" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:507 +msgid "There are no shipping services available for this type of package in your location." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:168 +msgid "Using this USPS Shipping calculator requires requesting an Ecommerce API Username and Password. Get your free set of credentials here ». The password is no longer used for the API, just the username which you should enter below. The USPS test site has not yet been updated and currently doesn't work - you should just request activating your credentials with USPS and go live." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:339 +msgid "ZIP Code" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:334 +msgid "Last name" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:333 +msgid "First name" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:150 +msgid "These are the manual payment instructions to display on the order confirmation screen. TOTAL will be replaced with the order total and ORDERID will be replaced with Order ID." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:240 +msgid "You must login to Authorize.net merchant dashboard to obtain the API login ID and API transaction key. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:327 +msgid "
    1. Set the \"Return Method\" within Site Management to Header Redirect and set the \"Return URL\" to %s
    2. Set your notifications url to %s
    " +msgstr "" + +#: includes/common/data.php:191 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Also, digital downloads included in your order are now ready to be downloaded. Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:185 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order is now available to download! Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:184 +msgid "Your Order Is Ready To Be Downloaded! (ORDERID)" +msgstr "" + +#: includes/common/data.php:179 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:173 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received, your digital goods are ready to be downloaded and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:167 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received and your digital goods are ready to be downloaded. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:160 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +" Your order has been received, and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information: \n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/class-mp-product.php:638 +msgid "You can not add more items to cart." +msgstr "" + +#: includes/common/class-mp-product.php:635 +msgid "You can only add {0} to cart." +msgstr "" + +#: includes/common/class-mp-product.php:625 +msgid "This product has an order limit of %d." +msgstr "" + +#: includes/common/class-mp-order.php:1454 +msgid "Shipped: tracking code: %s" +msgstr "" + +#: includes/common/class-mp-order.php:1000 +#: includes/common/class-mp-order.php:1012 +msgid "Finished" +msgstr "" + +#: includes/common/class-mp-order.php:858 +msgid "Contact Details" +msgstr "" + +#: includes/common/class-mp-order.php:339 includes/common/data.php:155 +msgid "" +"A new order (ORDERID) was created in your store:\n" +"\n" +" ORDERINFOSKU\n" +"\n" +" SHIPPINGINFO\n" +"\n" +" PAYMENTINFO\n" +"\n" +msgstr "\n" + +#: includes/common/class-mp-cart.php:1858 +msgid "Add again" +msgstr "" + +#: includes/common/class-mp-cart.php:1852 +msgid "was removed from Shopping Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1242 +#: includes/public/class-mp-short-codes.php:160 +msgid "Cart update notice: this item has a limit per order or you have reached the stock limit." +msgstr "" + +#: includes/admin/widgets/product-list.php:235 +msgid "Show Only Featured Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:533 +msgid "If enabled, users won't be able to filter products per category and/or to order by release date/name/price." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:531 +msgid "Hide Products Filter?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:353 +msgid "Notification to registration email instead of billing email?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:322 +msgid "Order Shipped - Mixed orders (with both digital and physical products)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:289 +msgid "Order Shipped - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:224 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:194 +msgid "New Order - Mixed" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:161 +msgid "New Order - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:115 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:243 +msgid "Mixed orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:110 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:238 +msgid "Digital downloads orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:105 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:233 +msgid "Physical orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:96 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed.
    For orders placed with manual payment, emails set here will be overriden by the one configured in manual payments settings, under payments settings page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:89 +msgid "Customer Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:47 +msgid "Admin Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:566 +msgid "Only contact details" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:565 +msgid "Full billing info" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:561 +msgid "Details Collection" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:548 +msgid "Digital Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:515 +msgid "Apply Tax to Digital Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:236 +msgid "product (default)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:231 +msgid "If you are experiencing conflicts with other e-commerce plugins change this setting. This will change the internal post type of all your products. Please note that changing this option may break 3rd party themes or plugins." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1203 +msgid "Hide details" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1202 +msgid "Show all changes" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1184 +msgid "Version %s" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1161 +msgid "Current" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1131 +msgid "%s changelog" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:952 +msgid "We did not find any data for this plugin or theme..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:285 +msgid "Activate WPMU DEV Dashboard" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:279 +msgid "Just one more step - activate the WPMU DEV Dashboard plugin and you're all done!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:277 +msgid "Important updates are available for your WPMU DEV plugins/themes. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:273 +msgid "Just one more step to enable updates and support for %s!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:271 +msgid "Important updates are available for %s. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:264 +msgid "activate" +msgstr "" + +#: includes/admin/class-mp-admin.php:398 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:248 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:289 +msgid "Dismiss" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:247 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:288 +msgid "Saving..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:244 +msgid "Install Plugin" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:238 +msgid "Almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:236 +msgid "Important updates are available for your WPMU DEV plugins/themes. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:232 +msgid "%s is almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:230 +msgid "Important updates are available for %s. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:223 +msgid "install" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1428 +msgid "Sets the number of Tags to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1289 +msgid "How many products to display in the product list if \"paginate\" is set to false." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:739 +#: includes/admin/class-mp-shortcode-builder.php:906 +#: includes/admin/class-mp-shortcode-builder.php:1350 +msgid "Grid" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:735 +#: includes/admin/class-mp-shortcode-builder.php:902 +#: includes/admin/class-mp-shortcode-builder.php:1346 +msgid "Products will be displayed as list or grid." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:206 +msgid "Display a cloud or list of your global product tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:205 +msgid "Display a list of your global categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:204 +msgid "Display a list or grid of your global products." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:181 +msgid "Display a list of featured products." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1451 +msgid "Is Featured?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1444 +msgid "Featured Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:581 +#: includes/admin/class-mp-products-admin.php:1580 +msgid "% discount" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:579 +msgid "OR" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:460 +#: includes/admin/class-mp-products-admin.php:586 +#: includes/admin/widgets/product-list.php:217 +msgid "Featured" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:536 +#: includes/admin/class-mp-orders-admin.php:538 +msgid "Tracking Link" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:508 +msgid "Shipping Tax" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:356 +msgid "Shipping Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:352 +msgid "Taxes Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:349 +msgid "Products Total" +msgstr "" + +#: includes/admin/class-mp-ajax.php:366 +msgid "Oops! You entered an invalid username/email and or password." +msgstr "" + +#: includes/admin/class-mp-ajax.php:254 +msgid "Percentage Discount" +msgstr "" + +#: includes/admin/class-mp-ajax.php:234 +msgid "Limit the Amount of Items per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:214 +msgid "Unused Attributes" +msgstr "" + +#: includes/admin/class-mp-admin.php:82 +msgid "Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-admin.php:79 +msgid "MarketPress setup is not complete! Once you've completed this quick setup wizard you'll have a fully working online store - exciting! " +msgstr "" + +#: marketpress.php:263 +msgctxt "mp_order" +msgid "Add New" +msgstr "" + +#: marketpress.php:184 +msgctxt "product_tag" +msgid "Product Tag" +msgstr "" + +#: marketpress.php:183 +msgctxt "product_tag" +msgid "Product Tags" +msgstr "" + +#: marketpress.php:150 +msgctxt "product_category" +msgid "Product Category" +msgstr "" + +#: marketpress.php:149 +msgctxt "product_category" +msgid "Product Categories" +msgstr "" + +#. Author URI of the plugin/theme +msgid "http://premium.wpmudev.org" +msgstr "" + +#: marketpress.php:729 +msgid "Invoice PDF" +msgstr "" + +#: marketpress.php:712 +msgid "Grant access to themes and gateways depending on the user's Pro Site level" +msgstr "" + +#: marketpress.php:711 +msgid "Pro Sites" +msgstr "" + +#: marketpress.php:703 +msgid "Offer and accept coupon codes" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:687 +msgid "Install %s Pages" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:682 +msgid "Welcome to %s – Install pages required by the plugin automatically." +msgstr "" + +#: marketpress.php:668 +msgid "Your pages were created successfully." +msgstr "" + +#: marketpress.php:436 +msgid "Add a Product" +msgstr "" + +#: marketpress.php:271 +msgid "Parent Order" +msgstr "" + +#: marketpress.php:270 +msgid "No orders found in trash" +msgstr "" + +#: marketpress.php:269 +msgid "No orders found" +msgstr "" + +#: marketpress.php:265 +msgid "Edit Order" +msgstr "" + +#: marketpress.php:264 +msgid "Add New Order" +msgstr "" + +#: marketpress.php:220 marketpress.php:221 +msgid "Add New Product" +msgstr "" + +#: marketpress.php:197 +msgid "No product tags found" +msgstr "" + +#: marketpress.php:196 +msgid "Choose from the most used product tags" +msgstr "" + +#: marketpress.php:195 +msgid "Add or remove product tags" +msgstr "" + +#: marketpress.php:194 +msgid "Separate product tags with commas" +msgstr "" + +#: marketpress.php:193 +msgid "Search Product Tags" +msgstr "" + +#: marketpress.php:192 +msgid "Parent Product Tag:" +msgstr "" + +#: marketpress.php:191 +msgid "Parent Product Tag" +msgstr "" + +#: marketpress.php:190 +msgid "New Product Tag Name" +msgstr "" + +#: marketpress.php:189 +msgid "Add New Product Tag" +msgstr "" + +#: marketpress.php:188 +msgid "Update Product Tag" +msgstr "" + +#: marketpress.php:187 +msgid "View Product Tag" +msgstr "" + +#: marketpress.php:186 +msgid "Edit Product Tag" +msgstr "" + +#: marketpress.php:185 +msgid "All Product Tags" +msgstr "" + +#: marketpress.php:163 +msgid "No product categories found" +msgstr "" + +#: marketpress.php:162 +msgid "Choose from the most used product categories" +msgstr "" + +#: marketpress.php:161 +msgid "Add or remove product categories" +msgstr "" + +#: marketpress.php:160 +msgid "Separate product categories with commas" +msgstr "" + +#: marketpress.php:159 +msgid "Search Product Categories" +msgstr "" + +#: marketpress.php:158 +msgid "Parent Product Category:" +msgstr "" + +#: marketpress.php:157 +msgid "Parent Product Category" +msgstr "" + +#: marketpress.php:156 +msgid "New Product Category Name" +msgstr "" + +#: marketpress.php:155 +msgid "Add New Product Category" +msgstr "" + +#: marketpress.php:154 +msgid "Update Product Category" +msgstr "" + +#: marketpress.php:153 +msgid "View Product Category" +msgstr "" + +#: marketpress.php:152 +msgid "Edit Product Category" +msgstr "" + +#: marketpress.php:151 +msgid "All Product Categories" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Please fix the %s1 and then try submitting the form again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Oops! The form contains %s1 which %s2 been highlighted below." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:660 +msgid "have" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:659 +msgid "has" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:651 +msgid "Value must be less than {0}" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:650 +msgid "Please enter only letters and numbers" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:539 +msgid "Due to prolonged inactivity on this page, one or more settings were not saved. Please try again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:535 +msgid "Settings Saved" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-user-select.php:22 +msgid "Select Some Users" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-section.php:18 +msgid "Section Title" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:425 +msgid "Are you sure you want to delete this?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:30 +msgid "Add Row" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-post-select.php:24 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-taxonomy-select.php:22 +msgid "Select Posts" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:210 +msgid "Add Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:129 +msgid "Select the image that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:93 +msgid "Select image(s) that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:79 +msgid "Select the image that you would like to use for this variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:48 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:82 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:68 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:132 +msgid "Select Image" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:31 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:160 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:168 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:19 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:115 +msgid "Select File" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:30 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:18 +msgid "Select the file that you would like to use." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:357 +msgid "Create Variations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:356 +msgid "Add Another Variant" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Insert a value and press ENTER" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "(e.g. White, Grey, Red etc.)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Variation Values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:333 +msgid "Or create new variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "(e.g. Color)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:303 +msgid "You are about to delete selected variants.
    If you want to continue please confirm." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:302 +msgid "Confirmation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:290 +msgid "Insert quantity available. Empty for unlimited." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:281 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:294 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:307 +msgid "Cancel" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:280 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:293 +msgid "Update" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:277 +msgid "Insert the price i.e. 25 or 25.50" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:115 +msgid "Img." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:85 +msgid "Add New Variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:79 +msgid "Delete Variants" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:78 +msgid "Update Prices" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:77 +msgid "Update Inventory" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:76 +msgid "Update Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:75 +msgid "Bulk Actions" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:73 +msgid "Select bulk action" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:196 +msgid "Configure Store" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:195 +msgid "Configure shipping rates, emails and your store's appearance. " +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:190 +msgid "Add Product" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:189 +msgid "Add your first product for sale and get familiar with adding products." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:184 +msgid "Your store is almost ready for its first customers, but first it needs some products. Get started by adding products below, or jump straight into further configuring your store’s settings." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:183 +msgid "Woohoo! Your online store is up and running." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:160 +msgid "Finish Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:124 +msgid "And what metric system do you want to use?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:113 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:142 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:159 +msgid "Back" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:109 +msgid "Do you want to apply tax for your products? You can customize this for each product and variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:105 +msgid "What currency do you want to sell with?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:93 +msgid "And, which countries do you want to sell to?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:89 +msgid "Where is your online store based?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:80 +msgid "Payment Gateway" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:79 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:123 +msgid "Metric System" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:78 +msgid "Currency & Tax" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:77 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:88 +msgid "Locations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:70 +msgid "Choose where you want to sell your stuff and what currency. Easy!" +msgstr "" + +#: includes/public/class-mp-checkout.php:1400 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:58 +msgid "Continue" +msgstr "" + +#: includes/admin/class-mp-admin.php:83 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:53 +msgid "Skip this step, I'll do this manually" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:49 +msgid "Install store pages" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:44 +msgid "Once you've completed this quick setup wizard you'll have a fully working online store - exciting! Start
    by creating the default store pages for the online store such as the cart, checkout and store pages." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:42 +msgid "MarketPress adds a full online store to your website, with heaps of configuration options and addons
    to suit your needs. It's really easy to get going, and only takes a few minutes to setup!" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:41 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:69 +msgid "Welcome to MarketPress - Quick Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-advanced-select.php:23 +msgid "Select Some Options" +msgstr "" + +#: includes/wpmudev-metaboxes/class-wpmudev-field.php:694 +msgid "You must the WPMUDEV_Field::display() method in your form field class" +msgstr "" + +#: includes/public/class-mp-short-codes.php:636 +msgid "Only %s left in stock..." +msgstr "" + +#: includes/public/class-mp-short-codes.php:633 +msgid "Unlimited stock" +msgstr "" + +#: includes/public/class-mp-short-codes.php:430 +msgid "product_id must be defined" +msgstr "" + +#: includes/public/class-mp-checkout.php:1250 +msgid "An account with this username already exists" +msgstr "" + +#: includes/public/class-mp-checkout.php:1394 +msgid "Continue as Guest" +msgstr "" + +#: includes/public/class-mp-checkout.php:1393 +msgid "Proceed to checkout and you'll have an opportunity to create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1392 +#: includes/public/class-mp-checkout.php:1398 +msgid "First-time customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1386 +msgid "Login" +msgstr "" + +#: includes/public/class-mp-checkout.php:1379 +msgid "E-Mail Address/Username" +msgstr "" + +#: includes/public/class-mp-checkout.php:1377 +msgid "Sign in to speed up the checkout process." +msgstr "" + +#: includes/public/class-mp-checkout.php:1376 +msgid "Have an account?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1297 +msgid "Shipping address different than billing?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1184 +msgid "There are no available gateways to process this payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1160 +msgid "Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:1123 +msgid "Oops! An error occurred while processing your payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1051 +msgid "Next Step »" +msgstr "" + +#: includes/public/class-mp-checkout.php:1045 +msgid "« Previous Step" +msgstr "" + +#: includes/public/class-mp-checkout.php:873 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:657 +msgid "error" +msgstr "" + +#: includes/public/class-mp-checkout.php:872 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:658 +msgid "errors" +msgstr "" + +#: includes/public/class-mp-checkout.php:871 +msgid "

    Oops! We found %d %s in the form below.

    Fields that have errors are highlighted in red below. Entering into a field will reveal the actual error that occurred.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:870 +msgid "Please enter a valid first and last name" +msgstr "" + +#: includes/public/class-mp-checkout.php:869 +msgid " Please enter a valid card security code" +msgstr "" + +#: includes/public/class-mp-checkout.php:868 +msgid "Please enter a valid card expiration" +msgstr "" + +#: includes/public/class-mp-checkout.php:773 +msgid "Javascript is required in order to checkout. Please enable Javascript in your browser and then refresh this page." +msgstr "" + +#: includes/public/class-mp-checkout.php:588 +msgid "An unknown error occurred. Please try again." +msgstr "" + +#: includes/public/class-mp-checkout.php:386 +msgid "Town/City" +msgstr "" + +#: includes/public/class-mp-checkout.php:380 +msgid "Apartment, suite, unit, building, floor, etc" +msgstr "" + +#: includes/public/class-mp-checkout.php:376 +msgid "Address Line 2" +msgstr "" + +#: includes/public/class-mp-checkout.php:363 +msgid "Address Line 1" +msgstr "" + +#: includes/common/class-mp-order.php:770 +#: includes/public/class-mp-checkout.php:354 +msgid "Company" +msgstr "" + +#: includes/public/class-mp-checkout.php:330 +msgid "Last" +msgstr "" + +#: includes/public/class-mp-checkout.php:321 +msgid "First" +msgstr "" + +#: includes/public/class-mp-checkout.php:284 +msgid "State/Province" +msgstr "" + +#: includes/public/class-mp-checkout.php:83 +msgid "Review Order/Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing/Shipping Address" +msgstr "" + +#: includes/public/class-mp-checkout.php:80 +msgid "Login/Register" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:530 +msgid "Marketplace" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:523 +msgid "Global Marketplace Pages" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +msgid "Store Network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +#: includes/multisite/class-mp-admin-multisite.php:494 +msgid "Store Network Settings" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:440 +msgid "Set theme access permissions for network stores. For a custom css theme, save your css file with the MarketPress Theme: NAME header in the /marketpress/ui/themes/ folder and it will appear in this list so you may select it." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:361 +msgid "Choose a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:336 +msgid "%d products get indexed" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:285 +msgid "Product Indexer" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:281 +msgid "Please hold on..." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:280 +msgid "Index Products" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:279 +msgid "%d products have been indexed in whole network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:182 +msgid "Enable Global Shopping Cart?" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:178 +msgid "Limit Global Widgets/Shortcodes To Main Blog?" +msgstr "" + +#: includes/common/template-functions.php:2802 +#: includes/multisite/template-functions.php:355 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:97 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:114 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:143 +msgid "Next" +msgstr "" + +#: includes/common/template-functions.php:2801 +#: includes/multisite/template-functions.php:354 +msgid "Prev" +msgstr "" + +#: includes/common/template-functions.php:2597 +msgid "Tagged in " +msgstr "" + +#: includes/common/template-functions.php:2196 +#: includes/common/template-functions.php:2202 +#: includes/common/template-functions.php:2214 +#: includes/common/template-functions.php:2217 +msgid "Oops! We couldn't locate any orders matching that order number. Please verify the order number and try again." +msgstr "" + +#: includes/common/template-functions.php:2138 +msgid "Look Up" +msgstr "" + +#: includes/common/template-functions.php:1423 +msgid "Please choose a shipping method" +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "If you have your order ID you can look it up using the form below." +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "Order Search" +msgstr "" + +#: includes/common/template-functions.php:910 +#: includes/public/class-mp-checkout.php:1440 +msgid "Cart" +msgstr "" + +#: includes/common/template-functions.php:895 +msgid "[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:887 +msgid "[mp_global_categories_list]" +msgstr "" + +#: includes/common/template-functions.php:880 +msgid "" +"Welcome to our market place!\n" +"\n" +"Check out our network of products:\n" +"\n" +"[mp_list_global_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_global_categories_list]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:879 +msgid "Global Store" +msgstr "" + +#: includes/common/template-functions.php:873 +msgid "" +"Welcome to our online store! Feel free to browse around:\n" +"\n" +"[mp_store_navigation]\n" +"\n" +"Check out our most popular products:\n" +"\n" +"[mp_popular_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_list_categories]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_tag_cloud]" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:127 +msgid "If cart weight is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:126 +msgid "Cart Weight" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:222 +msgid "Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:206 +msgid "Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:196 +msgid "Retail Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:195 +msgid "Online Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:193 +msgid "Rates Request Type" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:189 +msgid "Maximum Weight Per Package" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:195 +#: includes/common/shipping-modules/mp-usps.php:236 +msgid "Enter your standard box sizes as LengthxWidthxHeight (e.g. 12x8x6) For each box defined enter the maximum weight it can contain. Note: the shipping prices this plugin calculates are estimates. If they are consistently too low or too high, please check that the list of boxes above and the product weights are accurate and complete." +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:187 +msgid "Handling Charge Per Box Shipped" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:176 +#: includes/common/shipping-modules/mp-ups.php:181 +msgid "Offered Services" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:165 +msgid "Shipper Number" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:151 +msgid "User ID" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:144 +msgid "Developer Kit Access Key" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:140 +msgid "Use Sandbox Mode?" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:123 +msgid "In order to use UPS, you will need a UPS Developer Kit access key and the UPS user ID and password associated with the access key. Set these up for free here. If this information is missing or incorrect, an error will appear during the checkout process and the buyer will not be able to complete the transaction." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:112 +msgid "If cart total is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:111 +msgid "Cart Total" +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:95 +#: includes/common/shipping-modules/mp-weight-rate.php:111 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Don't worry about sorting as this will be done automatically upon saving." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:170 +msgid "Method Title (visible for clients)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:409 +#: includes/common/shipping-modules/mp-ups.php:216 +#: includes/common/shipping-modules/mp-usps.php:251 +msgid "Max Weight (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:402 +#: includes/common/shipping-modules/mp-ups.php:209 +#: includes/common/shipping-modules/mp-usps.php:247 +msgid "Size (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:387 +msgid "Enter your standard box sizes as LengthxWidthxHeight ( 12x8x6 ) For each box defined enter the maximum weight it can contain. Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:361 +#: includes/common/shipping-modules/mp-usps.php:229 +msgid "Handling Charge per International Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:353 +msgid "International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:339 +#: includes/common/shipping-modules/mp-usps.php:213 +msgid "Handling Charge per Domestic Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:331 +msgid "Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:321 +msgid "When checked the customer can chose Residential or Commercial delivery with Residential the default. Unchecked it's only Residential rates." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:320 +msgid "Allow Commercial Delivery?" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:315 +msgid "Fedex 10kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:314 +msgid "Fedex 25kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:313 +msgid "Fedex Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:312 +msgid "Fedex Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:311 +msgid "Fedex Pak" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:310 +msgid "Fedex Tube" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:306 +msgid "Default Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:294 +msgid "Dropoff Type" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:290 +msgid "Meter ID" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:134 +msgid "This is a residential address" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:283 +msgid "There was an error processing your card: \"%s\". Please check your credit card info and try again." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:121 +msgid "Wepay makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept cards directly on your site. You don't need a merchant account or gateway. WePay handles everything including storing cards. Credit cards go directly to WePay's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:385 +msgid "There was an error processing your card - \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:356 +msgid "%s Store Purchase - Order ID - %s, Email - %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:251 +msgid "Stripe makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept Visa, MasterCard, American Express, Discover, JCB, and Diners Club cards directly on your site. You don't need a merchant account or gateway. Stripe handles everything, including storing cards, subscriptions, and direct payouts to your bank account. Credit cards go directly to Stripe's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:192 +msgid "ZMW - Zambian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:191 +msgid "ZAR - South African Rand" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:190 +msgid "YER - Yemeni Rial" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:189 +msgid "XPF - Cfp Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:188 +msgid "XOF - West African Cfa Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:187 +msgid "XCD - East Caribbean Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:186 +msgid "XAF - Central African Cfa Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:185 +msgid "WST - Samoan Tala" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:184 +msgid "VUV - Vanuatu Vatu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:183 +msgid "VND - Vietnamese Đồng" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:182 +msgid "VEF - Venezuelan Bolívar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:181 +msgid "UZS - Uzbekistani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:180 +msgid "UYI - Uruguayan Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:178 +msgid "UGX - Ugandan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:177 +msgid "UAH - Ukrainian Hryvnia" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:176 +msgid "TZS - Tanzanian Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:175 +msgid "TWD - New Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:174 +msgid "TTD - Trinidad and Tobago Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:172 +msgid "TOP - Tongan Paʻanga" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:171 +msgid "TJS - Tajikistani Somoni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:169 +msgid "SZL - Swazi Lilangeni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:168 +msgid "SVC - Salvadoran Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:167 +msgid "STD - São Tomé and Príncipe Dobra" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:166 +msgid "SRD - Surinamese Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:165 +msgid "SOS - Somali Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:164 +msgid "SLL - Sierra Leonean Leone" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:163 +msgid "SHP - Saint Helenian Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:160 +msgid "SCR - Seychellois Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:159 +msgid "SBD - Solomon Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:157 +msgid "RWF - Rwandan Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:156 +msgid "RUB - Russian Ruble" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:155 +msgid "RSD - Serbian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:154 +msgid "RON - Romanian Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:153 +msgid "QAR - Qatari Riyal" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:152 +msgid "PYG - Paraguayan Guaraní*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:151 +msgid "PLN - Polish Złoty" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:150 +msgid "PKR - Pakistani Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:149 +msgid "PHP - Philippine Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:148 +msgid "PGK - Papua New Guinean Kina" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:147 +msgid "PEN - Peruvian Nuevo Sol*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:146 +msgid "PAB - Panamanian Balboa*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:144 +msgid "NPR - Nepalese Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:142 +msgid "NIO - Nicaraguan Córdoba*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:141 +msgid "NGN - Nigerian Naira" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:140 +msgid "NAD - Namibian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:139 +msgid "MZN - Mozambican Metical" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:137 +msgid "MXN - Mexican Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:136 +msgid "MWK - Malawian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:135 +msgid "MVR - Maldivian Rufiyaa" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:134 +msgid "MUR - Mauritian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:133 +msgid "MRO - Mauritanian Ouguiya" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:132 +msgid "MOP - Macanese Pataca" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:131 +msgid "MNT - Mongolian Tögrög" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:130 +msgid "MKD - Macedonian Denar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:129 +msgid "MGA - Malagasy Ariary" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:128 +msgid "MDL - Moldovan Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:126 +msgid "LVL - Latvian Lats" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:124 +msgid "LSL - Lesotho Loti" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:123 +msgid "LRD - Liberian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:122 +msgid "LKR - Sri Lankan Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:121 +msgid "LBP - Lebanese Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:120 +msgid "LAK - Lao Kip*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:119 +msgid "KZT - Kazakhstani Tenge" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:118 +msgid "KYD - Cayman Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:117 +msgid "KRW - South Korean Won" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:116 +msgid "KMF - Comorian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:115 +msgid "KHR - Cambodian Riel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:114 +msgid "KGS - Kyrgyzstani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:113 +msgid "KES - Kenyan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:111 +msgid "JMD - Jamaican Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:110 +msgid "ISK - Icelandic Króna" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:109 +msgid "INR - Indian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:108 +msgid "ILS - Israeli New Sheqel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:107 +msgid "IDR - Indonesian Rupiah" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:105 +msgid "HTG - Haitian Gourde" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:103 +msgid "HNL - Honduran Lempira*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:101 +msgid "GYD - Guyanese Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:100 +msgid "GTQ - Guatemalan Quetzal*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:99 +msgid "GNF - Guinean Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:98 +msgid "GMD - Gambian Dalasi" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:97 +msgid "GIP - Gibraltar Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:96 +msgid "GEL - Georgian Lari" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:94 +msgid "FKP - Falkland Islands Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:93 +msgid "FJD - Fijian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:91 +msgid "ETB - Ethiopian Birr" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:90 +msgid "EGP - Egyptian Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:89 +msgid "EEK - Estonian Kroon*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:88 +msgid "DZD - Algerian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:87 +msgid "DOP - Dominican Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:85 +msgid "DJF - Djiboutian Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:84 +msgid "CZK - Czech Koruna*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:83 +msgid "CVE - Cape Verdean Escudo*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:82 +msgid "CRC - Costa Rican Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:81 +msgid "COP - Colombian Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:80 +msgid "CNY - Chinese Renminbi Yuan" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:79 +msgid "CLP - Chilean Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:77 +msgid "CDF - Congolese Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:76 +msgid "CAD - Canadian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:75 +msgid "BZD - Belize Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:74 +msgid "BWP - Botswana Pula" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:73 +msgid "BSD - Bahamian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:72 +msgid "BRL - Brazilian Real*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:71 +msgid "BOB - Bolivian Boliviano*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:70 +msgid "BND - Brunei Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:69 +msgid "BMD - Bermudian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:68 +msgid "BIF - Burundian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:67 +msgid "BGN - Bulgarian Lev" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:66 +msgid "BDT - Bangladeshi Taka" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:65 +msgid "BBD - Barbadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:64 +msgid "BAM - Bosnia & Herzegovina Convertible Mark" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:63 +msgid "AZN - Azerbaijani Manat" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:62 +msgid "AWG - Aruban Florin" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:61 +msgid "AUD - Australian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:60 +msgid "ARS - Argentine Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:59 +msgid "AOA - Angolan Kwanza*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:58 +msgid "ANG - Netherlands Antillean Gulden" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:57 +msgid "AMD - Armenian Dram" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:56 +msgid "ALL - Albanian Lek" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:55 +msgid "AFN - Afghan Afghani*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:54 +msgid "AED - United Arab Emirates Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:345 +msgid "Skrill balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:327 +msgid "Skrill IPN message received." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:283 +msgid "Skrill" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:278 +msgid "Pending payment" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:144 +msgid "The secret word must match the word submitted in the \"Merchant Tools\" section of your Skrill account." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:134 +msgid "You must use your valid Skrill merchant email. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:133 +msgid "Skrill Email" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:123 +msgid "Resell your inventory via Skrill.com (Moneybookers)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:95 +msgid "ZAR - South-African Rand" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:93 +msgid "TWD - Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:92 +msgid "TRY - New Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:91 +msgid "TND - Tunisian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:90 +msgid "THB - Thailand Baht" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:89 +msgid "SKK - Slovakian Koruna" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:86 +#: includes/common/payment-gateways/stripe.php:158 +msgid "SAR - Saudi Riyal" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:85 +msgid "RSD - Serbian dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:83 +msgid "QAR - Qatari Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:81 +msgid "OMR - Omani Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:80 +msgid "NOK - Norwegian Krone " +msgstr "" + +#: includes/common/payment-gateways/skrill.php:78 +#: includes/common/payment-gateways/stripe.php:138 +msgid "MYR - Malaysian Ringgit" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:77 +#: includes/common/payment-gateways/stripe.php:127 +msgid "MAD - Moroccan Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:74 +msgid "KRW - South-Korean Won" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:72 +msgid "JOD - Jordanian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:70 +msgid "INR - Indian Rupee" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:63 +msgid "EEK - Estonian Kroon" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:56 +msgid "AED - Utd. Arab Emir. Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:52 +msgid "Turkish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:51 +msgid "Swedish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:50 +msgid "Spanish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:49 +msgid "Russian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:48 +msgid "Romainian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:47 +msgid "Polish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:46 +msgid "Italian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:45 +msgid "Greek" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:44 +msgid "German" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:43 +msgid "French" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:42 +msgid "Finnish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:41 +msgid "English" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:40 +msgid "Dutch" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:39 +msgid "Danish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:38 +msgid "Czech" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:37 +msgid "Chinese" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:201 +msgid "There was an error processing your card: %s. Please re-enter your credit card info and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:278 +msgid "
  • There was an error processing your card: \"%s\". Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:274 +msgid "
  • There was an error processing your card. Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:177 +#: includes/common/payment-gateways/stripe.php:279 +msgid "Publishable Key" +msgstr "" + +#: includes/common/payment-gateways/pin.php:163 +msgid "API Credentials?" +msgstr "" + +#: includes/common/payment-gateways/pin.php:147 +msgid "PIN makes it easy to start accepting credit card payments with Australia’s first all-in-one online payment system. Accept all major credit cards directly on your site. Your sales proceeds are deposited to any Australian bank account, no merchant account required." +msgstr "" + +#: includes/common/payment-gateways/pin.php:57 +#: includes/common/payment-gateways/stripe.php:179 +msgid "USD - United States Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:455 +msgid "Email Footer" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:445 +msgid "Email Header" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:416 +msgid "Partner" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:409 +msgid "Vendor" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:852 +#: includes/common/payment-gateways/paypal-express.php:1126 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences\t section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:749 +msgid "Page Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:744 +msgid "Header Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:739 +msgid "Header Border Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:734 +msgid "Header Image" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:680 +msgid "Locale" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:624 +#: includes/common/payment-gateways/paypal-express.php:658 +msgid "Merchant Email" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:645 +msgid "Paypal Express Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:603 +msgid "Paypal Express Network Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:861 +msgid "Application ID (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:854 +msgid "Signature (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:847 +msgid "API Password (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:839 +msgid "API Username (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:832 +msgid "Signature (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:825 +msgid "API Password (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:817 +msgid "API Username (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:799 +msgid "This message is displayed at the top of the gateway settings page to store admins. It's a good place to inform them of your fees or put any sales messages." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:787 +msgid "Please enter your PayPal email address or business ID you want to recieve fees at." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:786 +msgid "PayPal E-mail" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:772 +msgid "Fees to Collect (%)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:375 +#: includes/public/class-mp-checkout.php:341 +msgid "Email Address" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:299 +msgid "Sorry, your order was not completed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:126 +#: includes/common/payment-gateways/paypal-express.php:780 +msgid "You will be redirected to the PayPal site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:90 +#: includes/common/payment-gateways/skrill.php:94 +msgid "USD - U.S. Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:89 +msgid "TRY - Turkish lira" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:88 +#: includes/common/payment-gateways/stripe.php:170 +msgid "THB - Thai Baht" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:87 +msgid "TWD - Taiwan New Dollars" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:86 +#: includes/common/payment-gateways/pin.php:59 +#: includes/common/payment-gateways/skrill.php:88 +#: includes/common/payment-gateways/stripe.php:162 +msgid "SGD - Singapore Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:84 +msgid "RUB - Russian Rubles" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:82 +msgid "PHP - Philippine Pesos" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:81 +#: includes/common/payment-gateways/pin.php:58 +#: includes/common/payment-gateways/skrill.php:79 +#: includes/common/payment-gateways/stripe.php:145 +msgid "NZD - New Zealand Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:79 +msgid "MXN - Mexican Peso" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:78 +msgid "MYR - Malaysian Ringgits" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:77 +#: includes/common/payment-gateways/pin.php:64 +#: includes/common/payment-gateways/skrill.php:73 +#: includes/common/payment-gateways/stripe.php:112 +msgid "JPY - Japanese Yen" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:75 +#: includes/common/payment-gateways/pin.php:63 +#: includes/common/payment-gateways/skrill.php:66 +#: includes/common/payment-gateways/stripe.php:102 +msgid "HKD - Hong Kong Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:73 +msgid "GBP - Pound Sterling" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:68 +#: includes/common/payment-gateways/pin.php:62 +#: includes/common/payment-gateways/skrill.php:59 +msgid "CAD - Canadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:67 +msgid "BRL - Brazilian Real" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:66 +#: includes/common/payment-gateways/pin.php:56 +#: includes/common/payment-gateways/skrill.php:57 +msgid "AUD - Australian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:288 +msgid "There was an error processing your card: \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:163 +msgid "When running on a live site, Paymill recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:161 +#: includes/common/payment-gateways/pin.php:157 +#: includes/common/payment-gateways/simplify.php:103 +#: includes/common/payment-gateways/stripe.php:260 +#: includes/common/payment-gateways/wepay.php:153 +msgid "Force SSL?" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:151 +msgid "Accept Visa, Mastercard, Maestro UK, Discover and Solo cards directly on your site. You don't need a merchant account or gateway. Credit cards go directly to Paymill's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:131 +msgid "CVV2" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:72 +#: includes/common/payment-gateways/pin.php:61 +#: includes/common/payment-gateways/skrill.php:65 +#: includes/common/payment-gateways/stripe.php:95 +msgid "GBP - British Pound" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:71 +#: includes/common/payment-gateways/stripe.php:173 +msgid "TRY - Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:70 +#: includes/common/payment-gateways/paypal-chained-payments.php:85 +#: includes/common/payment-gateways/skrill.php:87 +#: includes/common/payment-gateways/stripe.php:161 +msgid "SEK - Swedish Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:69 +#: includes/common/payment-gateways/skrill.php:84 +msgid "RON - Romanian Leu New" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:68 +#: includes/common/payment-gateways/paypal-chained-payments.php:83 +#: includes/common/payment-gateways/skrill.php:82 +msgid "PLN - Polish Zloty" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:67 +#: includes/common/payment-gateways/paypal-chained-payments.php:80 +#: includes/common/payment-gateways/stripe.php:143 +msgid "NOK - Norwegian Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:66 +#: includes/common/payment-gateways/skrill.php:75 +#: includes/common/payment-gateways/stripe.php:125 +msgid "LTL - Lithuanian Litas" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:65 +#: includes/common/payment-gateways/paypal-chained-payments.php:69 +#: includes/common/payment-gateways/skrill.php:60 +#: includes/common/payment-gateways/stripe.php:78 +msgid "CHF - Swiss Franc" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:64 +#: includes/common/payment-gateways/skrill.php:76 +msgid "LVL - Latvian Lat" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:63 +#: includes/common/payment-gateways/paypal-chained-payments.php:74 +#: includes/common/payment-gateways/skrill.php:69 +msgid "ILS - Israeli Shekel" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:62 +#: includes/common/payment-gateways/skrill.php:71 +msgid "ISK - Iceland Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:61 +#: includes/common/payment-gateways/paypal-chained-payments.php:76 +#: includes/common/payment-gateways/skrill.php:68 +#: includes/common/payment-gateways/stripe.php:106 +msgid "HUF - Hungarian Forint" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:60 +#: includes/common/payment-gateways/paypal-chained-payments.php:71 +#: includes/common/payment-gateways/skrill.php:62 +#: includes/common/payment-gateways/stripe.php:86 +msgid "DKK - Danish Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:59 +#: includes/common/payment-gateways/skrill.php:67 +#: includes/common/payment-gateways/stripe.php:104 +msgid "HRK - Croatian Kuna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:58 +#: includes/common/payment-gateways/paypal-chained-payments.php:70 +#: includes/common/payment-gateways/skrill.php:61 +msgid "CZK - Czech Koruna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:57 +#: includes/common/payment-gateways/skrill.php:58 +msgid "BGN - Bulgarian Leva" +msgstr "" + +#: includes/common/payment-gateways/payflow/class-mp-gateway-worker-payflow.php:123 +msgid "There was an error connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:344 +msgid "This setting will log all PayFast communication to the \"payfast.log\" file." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:342 +msgid "Log Debugging Info?" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:335 +msgid "DO NOT INPUT A VALUE UNLESS YOU HAVE SET ONE IN THE SETTINGS SECTION OF YOUR PAYFAST SETTINGS." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:333 +msgid "PayFast Passphrase" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:323 +msgid "You can find your credentials on your integration page." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:321 +msgid "PayFast Merchant Credentials" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:311 +msgid "PayFast Mode" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:308 +msgid "PayFast is a payments processing service for South Africa. We make it safe for buyers to send money and easy for sellers to receive money. More Info »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:306 +msgid "PayFast Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:285 +msgid "Your payment via PayFast for this order totaling %s is complete. The transaction number is %s." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:278 +msgid "Your payment via PayFast for this order totaling %s is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:124 +msgid "Your PayFast transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:82 +#: includes/common/payment-gateways/payfast.php:83 +msgid "PayFast" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:157 +msgid "API error: - \"%s\"" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:198 +msgid "The payment request is under process" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:140 +msgid "Order: #" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:116 +msgid "You will be redirected to the Mollie site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:73 +msgid "%sMollie%s provides a fully PCI Compliant and secure way to collect payments via iDeal, Credit Card, Bancontact / Mister Cash, SOFORT Banking, Overbooking, Bitcoin, PayPal, paysafecard and AcceptEmail." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:53 +#: includes/common/payment-gateways/mollie.php:54 +#: includes/common/payment-gateways/mollie.php:195 +#: includes/common/payment-gateways/mollie.php:245 +msgid "Mollie" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:50 +#: includes/common/payment-gateways/paymill.php:56 +#: includes/common/payment-gateways/paypal-chained-payments.php:72 +#: includes/common/payment-gateways/pin.php:60 +#: includes/common/payment-gateways/skrill.php:64 +#: includes/common/payment-gateways/stripe.php:92 +msgid "EUR - Euro" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:306 +msgid "Access Key" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:300 +msgid "You must login to the Mijireh.com dashboard to obtain the Access Key." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:299 +msgid "Credentials" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:289 +msgid "Mijireh Checkout provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:269 +msgid "Mijireh Error: " +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:89 +msgid "You will be redirected to the Mijireh.com site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:87 +msgid "Your Mijireh transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:42 +#: includes/common/payment-gateways/mijireh.php:43 +#: includes/common/payment-gateways/mijireh.php:324 +msgid "Mijireh" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:145 +msgid "These are the manual payment instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:189 +msgid "This is the email text to send to those who have made free order checkouts. You should include your free order instructions / information here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:183 +msgid "This is the free order information to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:182 +msgid "Confirmation User Information" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:177 +msgid "This is the information to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:163 +msgid "If enabled, all free orders will be automatically marked as paid." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:159 +msgid "Payment Status" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:149 +msgid "This gateway is automatically activated if order totalling 0 and it can't be disabled" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:35 +#: includes/common/payment-gateways/free_orders.php:36 +#: includes/common/payment-gateways/free_orders.php:89 +msgid "Free Order" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:34 +#: includes/common/payment-gateways/free_orders.php:197 +msgid "Free Orders" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:515 +msgid "Sandbox API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:266 +#: includes/common/payment-gateways/eway31.php:542 +msgid "eWay Rapid 3.1 Payments (beta)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:403 +msgid "Hosted Payment Page Language" +msgstr "" + +#: includes/common/payment-gateways/eway.php:373 +msgid "Note when testing in sandbox mode it will use the default eWay test API credentials. Also, please note that cart total needs to be a whole number (e.g. 10.00) in order to generate a successful transaction, otherwise the transaction will fail." +msgstr "" + +#: includes/common/payment-gateways/eway.php:267 +msgid "You will be redirected to https://www.eway.com.au to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:380 +msgid "You have chosen to checkout using %s. Please confirm your order details and click \"Submit Order\" when finished." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:272 +#: includes/common/payment-gateways/paymill.php:131 +#: includes/common/payment-gateways/stripe.php:231 +msgid "Security Code " +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Enter in MM/YYYY or MM/YY format" +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Expiration" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:321 +msgid "Delim Data" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:307 +#: includes/common/payment-gateways/paypal-payflow.php:456 +msgid "This text will appear as the footer of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:287 +#: includes/common/payment-gateways/paypal-payflow.php:440 +msgid "Email Customer (on success)" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:278 +msgid "Authorize.net default is \",\". Otherwise, get this from your credit card processor. If the transactions are not going through, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:277 +msgid "Delimeter Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:193 +msgid "Held For Review" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:310 +#: includes/common/payment-gateways/payfast.php:314 +msgid "Test" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:300 +#: includes/common/payment-gateways/pin.php:170 +#: includes/common/payment-gateways/stripe.php:272 +msgid "Secret Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:283 +msgid "Select Your Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:97 +msgid "Your payment will be processed by the iDEAL network" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:208 +msgid "These are the CubePoints to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:203 +msgid "These are the CubePoints instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:266 +msgid "If enabled, all API calls will be made to https://test.bitpay.com." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:263 +msgid "Use Test Mode?" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:259 +msgid "If checked, response fron bitpay will be stored in log file, keep it disabled unless required." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:256 +msgid "Enable Debug Log" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:249 +msgid "Full Notifications" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:231 +#: includes/common/payment-gateways/eway31.php:499 +#: includes/common/payment-gateways/eway31.php:526 +#: includes/common/payment-gateways/mollie.php:83 +#: includes/common/shipping-modules/mp-fedex.php:269 +msgid "API Key" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:222 +msgid "You can now accept a payment from any country on Earth, with no risk of fraud. To use Bitpay, you need to signup on Bitpay. \\n After completing the signup process, you can get api keys at Bitpay API key. You can read more about Bitpay at Bitpay API. \\n Bitpay requires SSL(https) for payment notifications to work." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:61 +msgid "You will be redirected to bitpay.com, for bitcoin payment. It is completely safe." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:346 +msgid "You must login to the 2Checkout vendor dashboard to obtain the seller ID and secret word. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:345 +#: includes/common/payment-gateways/authorizenet-aim.php:239 +#: includes/common/payment-gateways/paymill.php:168 +#: includes/common/payment-gateways/paypal-express.php:704 +#: includes/common/payment-gateways/simplify.php:80 +#: includes/common/payment-gateways/stripe.php:265 +#: includes/common/payment-gateways/wepay.php:158 +msgid "API Credentials" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:325 +#: includes/common/payment-gateways/_bitpay.php:220 +#: includes/common/payment-gateways/_cubepoints.php:185 +#: includes/common/payment-gateways/_ideal.php:268 +#: includes/common/payment-gateways/_payway.php:255 +#: includes/common/payment-gateways/authorizenet-aim.php:219 +#: includes/common/payment-gateways/eway.php:352 +#: includes/common/payment-gateways/eway31.php:460 +#: includes/common/payment-gateways/free_orders.php:147 +#: includes/common/payment-gateways/manual-payments.php:126 +#: includes/common/payment-gateways/mijireh.php:287 +#: includes/common/payment-gateways/mollie.php:71 +#: includes/common/payment-gateways/paymill.php:149 +#: includes/common/payment-gateways/paypal-chained-payments.php:344 +#: includes/common/payment-gateways/paypal-payflow.php:376 +#: includes/common/payment-gateways/pin.php:145 +#: includes/common/payment-gateways/simplify.php:69 +#: includes/common/payment-gateways/skrill.php:121 +#: includes/common/payment-gateways/stripe.php:249 +#: includes/common/payment-gateways/wepay.php:119 +#: includes/common/shipping-modules/mp-fedex.php:243 +#: includes/common/shipping-modules/mp-flat-rate.php:63 +#: includes/common/shipping-modules/mp-pickup.php:140 +#: includes/common/shipping-modules/mp-table-rate.php:94 +#: includes/common/shipping-modules/mp-ups.php:122 +#: includes/common/shipping-modules/mp-usps.php:167 +#: includes/common/shipping-modules/mp-weight-rate.php:110 +msgid "%s Settings" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:136 +msgid "You will be redirected to the 2Checkout site to finalize your payment." +msgstr "" + +#: includes/common/helpers.php:169 includes/public/class-mp-checkout.php:1277 +msgid "Billing" +msgstr "" + +#: includes/common/helpers.php:144 +msgid "FREE" +msgstr "" + +#: includes/common/helpers.php:134 +msgid "Coupons:" +msgstr "" + +#: includes/common/helpers.php:95 +msgid "Qty" +msgstr "" + +#: includes/common/helpers.php:94 +msgid "Sku" +msgstr "" + +#: includes/common/data.php:59 +msgid "Zip Code" +msgstr "" + +#: includes/common/class-mp-taxes.php:336 +msgid "Standard Table" +msgstr "" + +#: includes/common/class-mp-product.php:2698 +msgid "Tweet" +msgstr "" + +#: includes/common/class-mp-product.php:2321 +msgid "Notification Preferences: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2320 +msgid "Edit Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2318 +msgid "Link: %s

    " +msgstr "" + +#: includes/common/class-mp-product.php:2317 +msgid "Current Inventory: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2316 +msgid "Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2314 +msgid "This message is being sent to notify you of low stock of a product in your online store according to your preferences.

    " +msgstr "" + +#: includes/common/class-mp-product.php:1817 +msgid "" +msgstr "" + +#: includes/common/class-mp-product.php:1427 +#: includes/common/class-mp-product.php:1430 +msgid "(tax incl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1422 +#: includes/common/class-mp-product.php:1425 +msgid "(tax excl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1300 +#: includes/common/class-mp-product.php:1315 +msgid "%s each" +msgstr "" + +#: includes/common/class-mp-product.php:988 +msgid "Choose Options" +msgstr "" + +#: includes/common/class-mp-product.php:526 +msgid "Choose a %s" +msgstr "" + +#: includes/common/class-mp-product.php:284 +#: includes/common/class-mp-product.php:292 +#: includes/common/class-mp-product.php:615 +msgid "We're sorry, we only have %d of this item in stock right now." +msgstr "" + +#: includes/common/class-mp-order.php:1456 +msgid "Shipped: Track Shipment" +msgstr "" + +#: includes/common/class-mp-order.php:1049 +msgid "Order Received" +msgstr "" + +#: includes/common/class-mp-order.php:1014 +msgid "In Process" +msgstr "" + +#: includes/common/class-mp-order.php:969 +msgid "Order #" +msgstr "" + +#: includes/common/class-mp-order.php:866 +msgid "Copy billing address to shipping address" +msgstr "" + +#: includes/common/class-mp-order.php:822 +#: includes/public/class-mp-checkout.php:1314 +msgid "Special Instructions" +msgstr "" + +#: includes/common/class-mp-order.php:817 +#: includes/common/payment-gateways/stripe.php:335 +msgid "Email" +msgstr "" + +#: includes/common/class-mp-order.php:813 +#: includes/common/payment-gateways/stripe.php:341 +#: includes/public/class-mp-checkout.php:416 +msgid "Phone" +msgstr "" + +#: includes/common/class-mp-order.php:791 +#: includes/common/payment-gateways/stripe.php:337 +msgid "State" +msgstr "" + +#: includes/common/class-mp-order.php:776 +msgid "Address 1" +msgstr "" + +#: includes/common/class-mp-order.php:766 +msgid "Last Name" +msgstr "" + +#: includes/common/class-mp-order.php:762 +msgid "First Name" +msgstr "" + +#: includes/common/class-mp-installer.php:677 +msgid "MarketPress requires a database update to continue working correctly. Go to update page" +msgstr "" + +#: includes/common/class-mp-installer.php:657 +msgid "MarketPress performed a quick automatic update successfully!" +msgstr "" + +#: includes/common/class-mp-installer.php:653 +msgid "Perform Update" +msgstr "" + +#: includes/common/class-mp-installer.php:647 +msgid "Please update each subsite in your WordPress network where you have older version of the MarketPress plugin." +msgstr "" + +#: includes/common/class-mp-installer.php:641 +msgid "Depending on the amount of products you have, this update could take quite some time. Please keep this window open while the update completes. If you have products with multiple variations, the progress bar may move slower, please don't exit the window." +msgstr "" + +#: includes/common/class-mp-installer.php:632 +msgid "Product Metadata" +msgstr "" + +#: includes/common/class-mp-installer.php:601 +msgid "MarketPress requires a database update to continue working correctly.
    Below you will find a list of items that require your attention." +msgstr "" + +#: includes/common/class-mp-installer.php:600 +msgid "Update MarketPress Data" +msgstr "" + +#: includes/common/class-mp-installer.php:530 +msgid "Update Data" +msgstr "" + +#: includes/common/class-mp-installer.php:67 +msgid "Complete!" +msgstr "" + +#: includes/common/class-mp-installer.php:66 +msgid "Upgrading Database...Please Wait..." +msgstr "" + +#: includes/common/class-mp-installer.php:64 +msgid "An error occurred while updating. Please refresh this page and try again." +msgstr "" + +#: includes/common/class-mp-cart.php:2447 +msgid "Some items in your cart have fallen below the quantity you currently have in your cart. We have adjusted the quantity in your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:2443 +msgid "Some items in your cart are no longer available. We have removed these items from your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:1566 +msgid "item" +msgstr "" + +#: includes/common/class-mp-cart.php:1563 +#: includes/common/class-mp-cart.php:1568 +msgid "items" +msgstr "" + +#: includes/common/class-mp-cart.php:1363 +msgid "Items/Products added to Cart will show here." +msgstr "" + +#: includes/common/class-mp-cart.php:1362 +msgid "Your shopping cart is empty." +msgstr "" + +#: includes/common/class-mp-cart.php:1357 +msgid "View Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1241 +#: includes/common/class-mp-cart.php:1298 +#: includes/public/class-mp-short-codes.php:159 +msgid "Adding..." +msgstr "" + +#: includes/common/class-mp-cart.php:1033 +msgid "Continue Shopping?" +msgstr "" + +#: includes/common/class-mp-cart.php:961 +msgid "Secure Checkout
    Shopping is always safe and secure." +msgstr "" + +#: includes/common/class-mp-cart.php:959 +msgid "You are about to submit your order!
    Please review your order details before continuing. You will be charged immediately upon clicking \"Submit Order\"." +msgstr "" + +#: includes/common/class-mp-cart.php:956 +msgid "Continue »" +msgstr "" + +#: includes/common/class-mp-cart.php:955 +msgid "Submit Order" +msgstr "" + +#: includes/common/class-mp-cart.php:818 +msgid "There are no items in your cart - go add some !" +msgstr "" + +#: includes/common/class-mp-cart.php:816 +msgid "The cart is disabled." +msgstr "" + +#: includes/common/class-mp-cart.php:735 +msgid "Estimated %s" +msgstr "" + +#: includes/common/class-mp-cart.php:717 +msgid "Estimated Shipping" +msgstr "" + +#: includes/common/class-mp-cart.php:697 +msgid "Product Total" +msgstr "" + +#: includes/common/class-mp-cart.php:670 includes/common/class-mp-cart.php:672 +msgid "Estimated Total (%s, %s)" +msgstr "" + +#: includes/common/class-mp-cart.php:668 +msgid "Estimated Total (%s)" +msgstr "" + +#: includes/common/class-mp-cart.php:666 includes/common/class-mp-cart.php:752 +msgid "Estimated Total" +msgstr "" + +#: includes/admin/widgets/product-list.php:247 +msgid "Show Thumbnail Placeholder image (if image is not set)" +msgstr "" + +#: includes/admin/widgets/cart.php:73 +msgid "Display product price" +msgstr "" + +#: includes/admin/widgets/cart.php:71 +msgid "Display product quantity" +msgstr "" + +#: includes/admin/widgets/cart.php:69 +msgid "Display product image" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:93 +msgid "General Shipping Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:773 +msgid "If you are having conflicts with the lightbox library from your theme or another plugin you should uncheck this." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:772 +msgid "Use Built-In Lightbox for Images?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:762 +msgid "Disable Large Image Display?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:688 +msgid "Show Product Image?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:682 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:684 +msgid "Show Tags List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:676 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:678 +msgid "Show Categories List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:671 +msgid "If enabled, description excerpt will be added above Add to cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:669 +msgid "Show Excerpt?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:665 +msgid "If enabled, users will be able to choose how many of the product they want to purchase before adding to their cart. If not checked, quantity could be change later on the cart page." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:663 +msgid "Show Quantity Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:649 +msgid "Settings related to the display of individual product pages." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:648 +msgid "Product Page Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:605 +msgid "Related Products Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:573 +msgid "Show Related Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:568 +msgid "Related Product Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:549 +msgid "Order Status Entries Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:510 +msgid "Sort Products By" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:497 +msgid "Products Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:492 +msgid "Paginate Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:478 +msgid "Excerpts Length" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:473 +msgid "Show Excerpts?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:450 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:746 +msgid "Image Alignment" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:412 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:708 +msgid "Custom Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:401 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:697 +msgid "Large - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:400 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:696 +msgid "Medium - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:399 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:695 +msgid "Thumbnail - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:397 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:693 +msgid "Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:386 +msgid "Select default placeholder image thumbnail when product image is not available (if empty, plugin's built-in image will be used)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:380 +msgid "Show default product placeholder thumbnail when product image is not available?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:374 +msgid "Show Product Thumbnail?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:369 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:658 +msgid "Redirect to cart page for immediate checkout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:368 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:657 +msgid "Stay on current product page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:366 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:655 +msgid "MarketPress supports two \"flows\" for adding products to the shopping cart. After adding a product to their cart, two things can happen:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:365 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:654 +msgid "Add To Cart Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:355 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:628 +msgid "Four" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:354 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:627 +msgid "Three" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:353 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:626 +msgid "Two" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:625 +msgid "One" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:349 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:622 +msgid "Set the number of products that show up in a grid row to best fit your theme" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:348 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:621 +msgid "How many products per row?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:342 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:609 +msgid "Display as grid" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:341 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:608 +msgid "Display as list" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:339 +msgid "Product Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:334 +msgid "Settings related to the display of product lists/grids." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:333 +msgid "Product List/Grid Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:314 +msgid "Show Twitter Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:309 +msgid "Twitter" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:303 +msgid "Show Share Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:297 +msgid "Recommend" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:296 +msgid "Like" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:294 +msgid "Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:283 +msgid "Show Facebook Like Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:278 +msgid "Facebook" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:257 +msgid "Show \"Pin It\" Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:252 +msgid "Pinterest" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:246 +msgid "Social Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:193 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:202 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:211 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:220 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:229 +#: includes/multisite/class-mp-admin-multisite.php:532 +#: includes/multisite/class-mp-admin-multisite.php:541 +#: includes/multisite/class-mp-admin-multisite.php:550 +msgid "Choose a Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:191 +msgid "This page will be used as the root for your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:168 +#: includes/multisite/class-mp-admin-multisite.php:586 +msgid "Create Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "uncropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "cropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:87 +#: includes/multisite/class-mp-admin-multisite.php:121 +#: includes/multisite/class-mp-admin-multisite.php:620 +msgid "An error occurred while creating the store page. Please try again." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:66 +msgid "Choose the gateway(s) that you would like to be available for checkout." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:65 +msgid "Enabled Gateways" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:78 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:146 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:179 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:213 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:274 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:307 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:341 +msgid "Text" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:71 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:139 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:172 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:206 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:267 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:300 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:334 +msgid "Subject" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:52 +msgid "Notification Email" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:510 +msgid "Enabling this option will display label `excl. tax` or `incl. tax` after price" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:509 +msgid "Display tax label?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:504 +msgid "Enabling this option will show Price + Tax, eg. if your price is 100 and your tax 20, your price will be 120" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:416 +#: includes/multisite/class-mp-admin-multisite.php:234 +msgid "Price Format" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:366 +msgid "Enabling this field will display a textbox on the shipping checkout page for users to enter special instructions for their order. Useful for product personalization, etc." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:365 +msgid "Show Special Instructions Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:360 +msgid "Universal" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:359 +msgid "Old" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1167 +#: includes/admin/store-settings/class-mp-store-settings-general.php:358 +msgid "New" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:353 +msgid "If you already use Google Analytics for your website, you can track detailed ecommerce information by enabling this setting. Choose whether you are using the new asynchronous or old tracking code. Before Google Analytics can report ecommerce activity for your website, you must enable ecommerce tracking on the profile settings page for your website. Also keep in mind that some gateways do not reliably show the receipt page, so tracking may not be accurate in those cases. It is recommended to use the PayPal gateway for the most accurate data. More information »" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:347 +msgid "Do you want to display the product price on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:346 +msgid "Show product price on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:340 +msgid "Do you want to display the product quantity on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:339 +msgid "Show product quantity on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:333 +msgid "Do you want to display the product image on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:332 +msgid "Show product image on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:327 +msgid "This option hide floating Mini Cart in top right corner." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:326 +msgid "Disable Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:316 +msgid "If unchecked your Orders admin page will be hidden" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:315 +msgid "Show admin Orders page?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:309 +msgid "Disable Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:303 +msgid "Force Login?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:297 +msgid "Hide Out of Stock Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:555 +msgid "This will prevent multiples of the same downloadable product form being added to the cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:554 +msgid "Limit Digital Products Per-order?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:268 +msgid "If you're having issues downloading large files and have worked with your hosting provider to increase your memory limits, try enabling this - just keep in mind, it's not as secure!" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:267 +msgid "Use Alternative Download Method?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:252 +msgid "Download Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:230 +msgid "Change product post type" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:51 +msgid "%s Capabilities" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-addons.php:47 +msgid "Store Settings: Add Ons: %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:254 +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:56 +msgid "Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Edit Product Attribute %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:246 +msgid "Exporters" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:238 +msgid "Short Codes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:207 +msgid "An appropriate message for key \"%s\" could not be found." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:204 +msgid "Product attribute updated successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:203 +msgid "Product attribute added successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +msgid "Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +#: includes/admin/store-settings/class-mp-store-settings-addons.php:121 +msgid "Store Settings: Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "Store Settings: Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:118 +msgid "Store Settings: Product Tags" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:117 +msgid "Store Settings: Product Categories" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Store Settings: Product Attributes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +msgid "Store Settings: Payments" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:114 +msgid "Store Settings: Shipping" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +#: includes/admin/class-mp-store-settings-admin.php:226 +msgid "Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +msgid "Store Settings: Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:112 +msgid "Store Settings: Presentation" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:111 +msgid "Store Settings: General" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1489 +msgid "Select a Product" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1447 +msgid "Reset to Defaults" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1446 +msgid "Insert Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1202 +#: includes/admin/class-mp-shortcode-builder.php:1227 +#: includes/admin/class-mp-shortcode-builder.php:1252 +msgid "The text to show in the link." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1196 +#: includes/admin/class-mp-shortcode-builder.php:1221 +#: includes/admin/class-mp-shortcode-builder.php:1246 +msgid "Whether to return a clickable link or url." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1177 +msgid "Whether to display the cart only on store pages or not." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1171 +msgid "Whether to show or hide the product price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1165 +msgid "Whether to show or hide the product quantity." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1159 +msgid "Whether to show or hide the product image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1153 +msgid "The text displayed before the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1147 +msgid "The title of the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1058 +#: includes/admin/class-mp-shortcode-builder.php:1121 +msgid "A label to prepend to the price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1032 +#: includes/admin/class-mp-shortcode-builder.php:1127 +msgid "What context for display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1004 +msgid "Set the alignment of the image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:998 +msgid "Set a custom pixel width/height. If omitted defaults to the size set by \"context\"." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:993 +msgid "Widget" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:988 +msgid "What context for preset size options." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:982 +#: includes/admin/class-mp-shortcode-builder.php:1026 +#: includes/admin/class-mp-shortcode-builder.php:1052 +#: includes/admin/class-mp-shortcode-builder.php:1077 +#: includes/admin/class-mp-shortcode-builder.php:1096 +#: includes/admin/class-mp-shortcode-builder.php:1115 +msgid "The ID of the product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:963 +msgid "Whether to display the product meta (e.g. price, buy button)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:738 +#: includes/admin/class-mp-shortcode-builder.php:905 +#: includes/admin/class-mp-shortcode-builder.php:958 +#: includes/admin/class-mp-shortcode-builder.php:992 +#: includes/admin/class-mp-shortcode-builder.php:1035 +#: includes/admin/class-mp-shortcode-builder.php:1130 +#: includes/admin/class-mp-shortcode-builder.php:1349 +msgid "List" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:957 +#: includes/admin/class-mp-shortcode-builder.php:991 +#: includes/admin/class-mp-shortcode-builder.php:1034 +#: includes/admin/class-mp-shortcode-builder.php:1129 +msgid "Single" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:953 +msgid "Whether and what context of image size to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:948 +msgid "Full" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:943 +msgid "Whether and what type of content to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:937 +msgid "Whether to display the product title." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:931 +msgid "The ID of the product to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:747 +#: includes/admin/class-mp-shortcode-builder.php:914 +msgid "Hide" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:746 +#: includes/admin/class-mp-shortcode-builder.php:913 +msgid "Show" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:744 +#: includes/admin/class-mp-shortcode-builder.php:911 +msgid "Whether or not to show the product filters." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:724 +#: includes/admin/class-mp-shortcode-builder.php:891 +#: includes/admin/class-mp-shortcode-builder.php:1335 +msgid "Limits list to a specific product tag." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:713 +#: includes/admin/class-mp-shortcode-builder.php:880 +#: includes/admin/class-mp-shortcode-builder.php:1324 +msgid "Limits list to a specific product category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:706 +#: includes/admin/class-mp-shortcode-builder.php:873 +#: includes/admin/class-mp-shortcode-builder.php:1317 +msgid "Direction to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:684 +#: includes/admin/class-mp-shortcode-builder.php:851 +#: includes/admin/class-mp-shortcode-builder.php:1295 +msgid "What field to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:678 +#: includes/admin/class-mp-shortcode-builder.php:845 +#: includes/admin/class-mp-shortcode-builder.php:1283 +msgid "How many products to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:672 +#: includes/admin/class-mp-shortcode-builder.php:839 +#: includes/admin/class-mp-shortcode-builder.php:1277 +msgid "The page number to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:666 +#: includes/admin/class-mp-shortcode-builder.php:833 +#: includes/admin/class-mp-shortcode-builder.php:1271 +msgid "Whether to paginate the product list. This is useful to only show a subset." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:808 +msgid "How many related items to show." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:790 +msgid "How to relate the products" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:784 +msgid "The product to show related items for." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:765 +msgid "The maximum number of products to display" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:647 +msgid "Comma separated list of tags (term_id) to include. For example, include=5,27 means tags that have the term_id 5 or 27 will be the only tags displayed. Defaults to include everything." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:641 +msgid "Comma separated list of tags (term_id) to exclude. For example, exclude=5,27 means tags that have the term_id 5 or 27 will NOT be displayed. Defaults to exclude nothing." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:633 +#: includes/admin/class-mp-shortcode-builder.php:1420 +msgid "Sort order." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:629 +#: includes/admin/class-mp-shortcode-builder.php:1416 +msgid "Count" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:626 +#: includes/admin/class-mp-shortcode-builder.php:1413 +msgid "Order of the tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:620 +msgid "The text/space between tags)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:616 +msgid "UL with a class of \"wp-tag-cloud\"" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:615 +msgid "separated by whitespace defined by \"separator\" parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:613 +msgid "Format of the cloud display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:607 +msgid "The number of actual tags to display in the cloud. (Use \"0\" to display all tags.)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:601 +msgid "Unit of measure as pertains to the smallest and largest values. This can be any CSS length value, e.g. pt, px, em, %." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:595 +msgid "The text size of the tag with the largest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:589 +msgid "The text size of the tag with the smallest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:570 +msgid "The \"tabindex\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:564 +msgid "The \"name\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:558 +msgid "The \"id\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:552 +msgid "Which category ID is selected." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:540 +msgid "The max depth. This is ignored unless hierarchical is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:536 +#: includes/multisite/template-functions.php:816 +msgid "No Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:414 +#: includes/admin/class-mp-shortcode-builder.php:546 +msgid "Calculates link or post counts by including items from child categories. If show_counts and hierarchical are true this is automatically set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:409 +msgid "Value of n (some number) specifies the depth (or level) to descend in displaying Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:408 +msgid "Show only top level Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:407 +msgid "All Categories displayed in flat (no indent) form (overrides hierarchical)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:406 +msgid "All Categories and child Categories (Default)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:402 +msgid "This parameter controls how many levels in the hierarchy of Categories are to be included in the list of Categories. NOTE: The \"hierarchical\" argument, which is disabled by default, will override the depth argument, unless it is true. When the argument is false, it will display all of the categories. When it is enabled it will use the value in the \"depth\" argument." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:396 +#: includes/admin/class-mp-shortcode-builder.php:1394 +msgid "Sets the number of Categories to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:390 +#: includes/admin/class-mp-shortcode-builder.php:534 +msgid "Set the text to show when no categories are listed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:384 +msgid "Set the title and style of the outer list item. If present but empty, the outer list item will not be displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:378 +#: includes/admin/class-mp-shortcode-builder.php:528 +msgid "Display sub-categories as inner list items (below the parent list item) or inline." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:368 +#: includes/admin/class-mp-shortcode-builder.php:511 +msgid "Exclude category-tree from the results. The parameter include must be empty. If the hierarchical parameter is true, then use exclude instead of exclude_tree." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:354 +msgid "Only include these categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:340 +#: includes/admin/class-mp-shortcode-builder.php:356 +#: includes/admin/class-mp-shortcode-builder.php:370 +#: includes/admin/class-mp-shortcode-builder.php:496 +#: includes/admin/class-mp-shortcode-builder.php:513 +msgid "Select Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:338 +#: includes/admin/class-mp-shortcode-builder.php:494 +msgid "Exclude one or more categories from the results. The parameter include must be empty." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:332 +msgid "Set a URI for an image (usually an rss feed icon) to act as a link to each categories' rss-2 feed. This parameter overrides the feed parameter. There is no default for this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:320 +msgid "Display a link to each category's rss-2 feed and set the link text to display. The default is no text and no feed displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:313 +#: includes/admin/class-mp-shortcode-builder.php:487 +msgid "Any" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:307 +#: includes/admin/class-mp-shortcode-builder.php:481 +msgid "Only display categories that are children of the category identified by this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:301 +msgid "Sets whether a category's description is inserted into the title attribute of the links created (i.e. <a title=\"<em>Category Description</em>\" href=\"...)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:295 +#: includes/admin/class-mp-shortcode-builder.php:475 +msgid "Toggles the display of categories with no posts." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:289 +#: includes/admin/class-mp-shortcode-builder.php:469 +#: includes/admin/class-mp-shortcode-builder.php:1388 +msgid "Toggles the display of the current count of posts in each category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:279 +msgid "Style to display the categories list in. A value of list displays the categories as list items while none generates no special display method (the list items are separated by
    tags)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:269 +#: includes/admin/class-mp-shortcode-builder.php:449 +#: includes/admin/class-mp-shortcode-builder.php:1378 +msgid "Sort order for categories (either ascending or descending)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:259 +#: includes/admin/class-mp-shortcode-builder.php:439 +#: includes/admin/class-mp-shortcode-builder.php:1368 +msgid "Sort categories alphabetically, by unique Category ID, or by the count of posts in that Category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:253 +#: includes/admin/class-mp-shortcode-builder.php:433 +msgid "If a value is entered, causes the display of a link to all categories if the style is set to list." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:219 +msgid "Select an Action" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:217 +msgid "What would you like to do?" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:216 +#: includes/admin/class-mp-shortcode-builder.php:1522 +msgid "Add E-Commerce Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:197 +msgid "Display a list of links to your store pages." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:196 +msgid "Display a link or url to the order status page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:195 +msgid "Display a link or url to the current products list page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:194 +msgid "Display a link or url to the current store page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:193 +msgid "Display a link or url to the current shopping cart page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:192 +msgid "Display the cart widget." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:191 +msgid "Display the full product meta box with price and buy now/add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:190 +msgid "Display the product stock." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:189 +msgid "Display the product SKU number(s)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:188 +msgid "Display the product price (and sale price)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:187 +msgid "Display the buy or add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:186 +msgid "Display the featured image of a given product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:185 +msgid "Display a single product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:184 +msgid "Display a list of products according to preference." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:183 +msgid "Display products related to the one being viewed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:182 +msgid "Display a list of popular products ordered by sales." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:180 +msgid "Display an HTML dropdown of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:179 +msgid "Display an HTML list of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:178 +msgid "Display a cloud or list of your product tags." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:655 +msgid "Setup your payment gateway" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:643 +#: includes/admin/class-mp-setup-wizard.php:649 +msgid "Other Gateways" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:617 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:150 +msgid "Select which calculated shipping methods the customer will be able to choose from." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:601 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:134 +#: includes/public/class-mp-checkout.php:82 +msgid "Shipping Method" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:568 +msgid "I want to charge shipping" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:523 +#: includes/admin/store-settings/class-mp-store-settings-general.php:503 +msgid "Show Price + Tax?" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:507 +msgid "I.e. Taxes, VAT, GST, etc" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:491 +#: includes/admin/store-settings/class-mp-store-settings-general.php:471 +msgid "Current Rates" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:473 +msgid "Default Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:434 +#: includes/admin/class-mp-setup-wizard.php:442 +#: includes/admin/store-settings/class-mp-store-settings-general.php:386 +#: includes/admin/store-settings/class-mp-store-settings-general.php:394 +#: includes/multisite/class-mp-admin-multisite.php:204 +#: includes/multisite/class-mp-admin-multisite.php:212 +msgid "Select a Currency" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:414 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:105 +msgid "Choose Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:411 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:103 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:104 +msgid "All Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:410 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:102 +msgid "These are the countries that you will ship to." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:409 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:101 +msgid "Target Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:401 +msgid "Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:387 +#: includes/admin/store-settings/class-mp-store-settings-general.php:640 +msgid "Zip/Postal Code Label" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:352 +#: includes/admin/store-settings/class-mp-store-settings-general.php:606 +msgid "Select a State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:335 +#: includes/admin/store-settings/class-mp-store-settings-general.php:590 +msgid "Select A Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:332 +#: includes/admin/store-settings/class-mp-store-settings-general.php:587 +msgid "Select a Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:324 +msgid "Location" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:304 +#: includes/admin/class-mp-setup-wizard.php:312 +#: includes/admin/class-mp-store-settings-admin.php:129 +#: includes/admin/class-mp-store-settings-admin.php:262 +msgid "Quick Setup" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:289 +msgid "MarketPress setup is not complete! Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2479 +msgid "Enter your product name here" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2440 +msgid "Select a %s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2426 +msgid "Each product variation needs to have product attributes assigned to it so the system knows how to differentiate one product variation from the other. It is important that you assign a category to this product before choosing any attributes." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2409 +msgid "If you would like this variation to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2320 +msgid "Sale Price (if applicable)" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2281 +msgid "If you would like the description to be different than the main product enter it here." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2229 +msgid "Image" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2202 +#: includes/admin/class-mp-shortcode-builder.php:226 +msgid "Attributes" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2166 +msgid "Create your product variations here. You can reorder variations by using the number to left of each variation, or delete one by clicking the \"x\" to the right of each variation. NOTE: The variation that shows up first in this list will be considered the \"main variation\". The details from this variation will be used in product listings." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2061 +#: includes/admin/class-mp-products-admin.php:2332 +msgid "Value must be less than regular price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2043 +#: includes/admin/class-mp-products-admin.php:2306 +msgid "Regular Price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2023 +#: includes/admin/class-mp-products-admin.php:2286 +msgid "External URL" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1988 +#: includes/admin/class-mp-products-admin.php:2245 +msgid "Enter the quantity that you have available to sell." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1987 +#: includes/admin/class-mp-products-admin.php:2244 +msgid "Inventory Count" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1977 +#: includes/admin/class-mp-products-admin.php:2234 +msgid "Track Inventory?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1871 +msgid "%1$sProduct Images%2$s %3$sAdd images of the product. The first image on the list is the featured image for this product (you can reorder images on the list)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1806 +msgid "Add variations for this product. e.g. If you are selling t-shirts, you can create Color & Size variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1804 +msgid "%3$sAdd variations for%2$s %1$sProduct%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1776 +msgid "This product has a multiple variations %1$s(e.g. Multiple colors, sizes)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1775 +msgid "This is a unique product without variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1700 +msgid "Extra Shipping Cost %1$s(if applicable)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1659 +#: includes/admin/class-mp-products-admin.php:2112 +#: includes/admin/class-mp-products-admin.php:2359 +msgid "Weight" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1636 +#: includes/admin/class-mp-products-admin.php:2098 +#: includes/admin/class-mp-products-admin.php:2416 +msgid "Please enter a valid tax rate" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1531 +msgid "Limit Per Order %1$s(limit the number of the item a shopper can buy per order)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1513 +msgid "SKU %1$s(Stock Keeping Unit)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "%1$sPrice, Inventory & Variants%2$s %3$sSet price, manage inventory and create Product Variants (if appropriate for your product).%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "Product Variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1480 +msgid "External / Affiliate Link" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1471 +msgid "Digital Download" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1470 +msgid "Physical / Tangible Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1464 +msgid "Product Kind %1$s(Physical Product, Digital, etc)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1426 +msgid "Choose Products" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1420 +msgid "If you would like, you can choose specific related products instead of using the ones generated by MarketPress" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1019 +msgid "Changes saved successfully" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:826 +msgid "Option cannot be saved. Try again." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:821 +msgid "Option saved successfully." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:467 +msgid "Img" +msgstr "" + +#: includes/admin/class-mp-product-attributes-list-table.php:57 +msgid "Product attribute(s) deleted successfully." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:162 +msgid "- Create New Variation -" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:144 +msgid "Only lowercase letters and dashes (-) are allowed." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:139 +msgid "If a slug is not entered, it will be generated automatically. Max 32 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:138 +#: includes/admin/class-mp-product-attributes-list-table.php:23 +msgid "Slug" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:130 +msgid "Max 45 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:123 +msgid "Use the numbers on the left to sort. To delete - click the \"X\" to the right of each row." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:122 +msgid "Attribute Options" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:121 +msgid "Add Option" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:105 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:523 +msgid "Sort Order" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:87 +msgid "Alphabetical" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:86 +msgid "ID" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:84 +msgid "Select how the options will be sorted." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:82 +msgid "Sort By" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:75 +msgid "The name of the attribute (e.g. color, size, etc)" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:74 +msgid "Attribute Name" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:69 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Product Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Product Attributes" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:71 +msgid "You can choose to make this page one of the following core store pages." +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:66 +msgid "Network Store Base" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:61 +msgid "Checkout Page" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:52 +msgid "Store Page Settings" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1108 +msgid "Display billing/shipping info for this customer" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1097 +msgid "View order “%s”" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1072 +msgid "Flag as:" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:952 +msgid "Move To Trash" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:948 +msgid " Received" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:927 +msgid "Enter coupon code here" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:812 +msgid "The order status could not be updated due to unexpected error. Please try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:740 +msgid "An invalid bulk action was requested. Please go back and try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:692 +msgid "The order status for order ID %1$s was updated successfully." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:688 +msgid "Order statuses successfully updated." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:530 +msgid "Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:518 +msgid "Actual Shipping Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:513 +msgid "Method Paid For" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:504 +msgid "Amount Collected" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:477 +msgid "DHL" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:408 +msgid "There is no IPN history to show at this time" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:345 +msgid "Type" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:343 +msgid "Gateway" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:301 +#: includes/common/template-functions.php:528 +msgid "Order History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:291 +msgid "IPN History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:283 +msgid "Customer Info" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:279 +msgid "Order Details" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:157 +msgid "All Dates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:320 +msgid "Add Pages to Menu" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:318 +msgid "Add-ons" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:317 +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "User Capabilities" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:316 +#: includes/admin/class-mp-setup-wizard.php:631 +#: includes/admin/store-settings/class-mp-store-settings-payments.php:50 +msgid "Payment Gateways" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:315 +msgid "Shipping Rates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:312 +msgid "Configure" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:309 +#: includes/admin/class-mp-products-admin.php:466 +#: includes/admin/class-mp-shortcode-builder.php:797 +msgid "Tags" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:308 +#: includes/admin/class-mp-products-admin.php:465 +msgid "Categories" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:300 +msgid "Manage" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:297 +msgid "Here's some quick links to manage your store and products." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:288 +msgid "low in stock" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:287 +msgid "%s product" +msgid_plural "%s products" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/admin/class-mp-dashboard-widgets.php:280 +msgid "received" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:279 +#: includes/admin/class-mp-dashboard-widgets.php:283 +msgid "%s order" +msgid_plural "%s orders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/admin/class-mp-dashboard-widgets.php:276 +msgid "Stock & Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:261 +msgid "Last 30 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:256 +msgid "Last 7 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:251 +msgid "Yesterday" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:248 +#: includes/admin/class-mp-dashboard-widgets.php:253 +#: includes/admin/class-mp-dashboard-widgets.php:258 +#: includes/admin/class-mp-dashboard-widgets.php:263 +msgid " Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:246 +msgid "Today" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:241 +msgid "Welcome back! Here's a quick summary of your store's performance." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:196 +#: includes/admin/class-mp-products-admin.php:895 +msgid "No products out of stock." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:136 +#: includes/admin/class-mp-products-admin.php:839 +msgid "Stock Level" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:135 +#: includes/admin/class-mp-products-admin.php:838 +msgid "Variation" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:121 +msgid "Low Stock (%s)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:116 +msgid "Store Management" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:115 +msgid "Store Reports" +msgstr "" + +#: includes/admin/class-mp-ajax.php:579 +#: includes/admin/class-mp-orders-admin.php:520 +#: includes/common/payment-gateways/2checkout.php:370 +#: includes/common/payment-gateways/authorizenet-aim.php:264 +#: includes/common/payment-gateways/mollie.php:93 +#: includes/common/payment-gateways/paymill.php:196 +#: includes/common/payment-gateways/pin.php:190 +#: includes/common/payment-gateways/skrill.php:157 +#: includes/common/payment-gateways/skrill.php:168 +#: includes/common/payment-gateways/wepay.php:143 +#: includes/public/class-mp-checkout.php:404 +msgid "Select One" +msgstr "" + +#: includes/admin/class-mp-ajax.php:511 +msgid "Oops... we could not locate any orders by that ID. Please double check your order ID and try again." +msgstr "" + +#: includes/admin/class-mp-ajax.php:482 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:166 +#: includes/multisite/class-mp-admin-multisite.php:584 +msgid "Edit Page" +msgstr "" + +#: includes/admin/class-mp-ajax.php:346 +msgid "Cancel " +msgstr "" + +#: includes/admin/class-mp-ajax.php:345 +msgid "Save " +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "Edit Description" +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "HTML Markup" +msgstr "" + +#: includes/admin/class-mp-ajax.php:333 +msgid "Plain Text Only" +msgstr "" + +#: includes/admin/class-mp-ajax.php:329 +msgid "Additional Content / Information for this Variation" +msgstr "" + +#: includes/admin/class-mp-ajax.php:317 +#: includes/admin/class-mp-products-admin.php:1762 +msgid "Allow this product to be purchased even if it's out of stock" +msgstr "" + +#: includes/admin/class-mp-ajax.php:313 +#: includes/admin/class-mp-products-admin.php:1711 +msgid "Track Product Inventory" +msgstr "" + +#: includes/admin/class-mp-ajax.php:300 +msgid "Extra Shipping Cost (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:295 +msgid "Ounces:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:294 +msgid "Pounds:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:292 +msgid "Kilograms:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:287 +#: includes/admin/class-mp-products-admin.php:1649 +msgid "Charge Shipping" +msgstr "" + +#: includes/admin/class-mp-ajax.php:273 +#: includes/admin/class-mp-products-admin.php:1623 +#: includes/admin/store-settings/class-mp-store-settings-general.php:454 +msgid "Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:272 +#: includes/admin/class-mp-products-admin.php:1622 +#: includes/admin/class-mp-products-admin.php:2090 +#: includes/admin/class-mp-products-admin.php:2408 +msgid "Special Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:271 +#: includes/admin/class-mp-products-admin.php:1625 +#: includes/admin/class-mp-products-admin.php:2092 +msgid "If you would like this product to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-ajax.php:268 +#: includes/admin/class-mp-products-admin.php:1599 +msgid "Charge Taxes (Special Rate)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:256 +#: includes/admin/class-mp-products-admin.php:1593 +#: includes/admin/class-mp-products-admin.php:2077 +#: includes/admin/class-mp-products-admin.php:2348 +msgid "End Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:255 +#: includes/admin/class-mp-products-admin.php:1589 +#: includes/admin/class-mp-products-admin.php:2072 +msgid "Start Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:1568 +msgid "Enter Sale Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:250 +#: includes/admin/class-mp-products-admin.php:1547 +msgid "Set up a Sale for this Product" +msgstr "" + +#: includes/admin/class-mp-ajax.php:206 includes/admin/class-mp-ajax.php:223 +msgid "Enter " +msgstr "" + +#: includes/admin/class-mp-ajax.php:193 +msgid "Browse" +msgstr "" + +#: includes/admin/class-mp-ajax.php:184 includes/admin/class-mp-ajax.php:192 +msgid "http://" +msgstr "" + +#: includes/admin/class-mp-ajax.php:183 +msgid "External Product URL" +msgstr "" + +#: includes/admin/class-mp-ajax.php:237 +msgid "Limit Per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:177 +#: includes/admin/class-mp-products-admin.php:1520 +msgid "Enter Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:174 +#: includes/admin/class-mp-products-admin.php:1512 +msgid "Enter SKU" +msgstr "" + +#: includes/admin/class-mp-ajax.php:173 +msgid "(Stock Keeping Unit)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:158 +msgid "Remove Image" +msgstr "" + +#: includes/admin/class-mp-ajax.php:74 +msgid "Variation Draft" +msgstr "" + +#: includes/admin/class-mp-admin.php:296 +#: includes/admin/class-mp-dashboard-widgets.php:70 +msgid "Please wait...saving in progress..." +msgstr "" + +#: includes/admin/class-mp-admin.php:295 +#: includes/admin/class-mp-dashboard-widgets.php:69 +msgid "Input is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:294 +#: includes/admin/class-mp-dashboard-widgets.php:68 +msgid "Valid number is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:292 +#: includes/admin/class-mp-dashboard-widgets.php:66 +msgid "Delete %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:291 +#: includes/admin/class-mp-dashboard-widgets.php:65 +msgid "Delete %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:290 +#: includes/admin/class-mp-dashboard-widgets.php:64 +msgid "Update inventory for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:289 +#: includes/admin/class-mp-dashboard-widgets.php:63 +msgid "Update inventory for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:288 +#: includes/admin/class-mp-dashboard-widgets.php:62 +msgid "Update price for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:287 +#: includes/admin/class-mp-dashboard-widgets.php:61 +msgid "Update prices for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:285 +#: includes/admin/class-mp-dashboard-widgets.php:59 +msgid "Creating variations, please wait..." +msgstr "" + +#: includes/admin/class-mp-admin.php:96 +msgid "The following payment gateways have been deprecated, Cubepoints, Bitpay, iDEAL, Skrill, Google Checkout. If you were using one of these gateways, please setup a new payment gateway here." +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:61 +msgid "Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:71 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:71 +#: includes/common/class-mp-gdpr.php:399 includes/common/class-mp-order.php:872 +#: includes/common/helpers.php:164 includes/public/class-mp-checkout.php:1434 +msgid "Shipping Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:66 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:66 +#: includes/common/class-mp-gdpr.php:392 includes/common/class-mp-order.php:864 +#: includes/common/helpers.php:163 includes/public/class-mp-checkout.php:1427 +msgid "Billing Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:61 +msgid "Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:258 +msgid "Shipping Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:256 +msgid "Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:235 +msgid "Payment Method: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:79 +msgid "The dir %s not exist or not writeable" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:239 +msgid "Shop header/logo" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:233 +msgid "Choose a template" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:226 +msgid "Template Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:221 +msgid "Disable automatic creation/attachment of invoices when only free products are ordered" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:220 +msgid "Disable for free products" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:216 +msgid "Attach invoice to" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:214 +msgid "Customer Order Shipped email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:212 +msgid "Customer New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:211 +msgid "Admin New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:206 +msgid "download" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:205 +msgid "How do you want to view the PDF?" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:203 +msgid "Open the PDF in a new browser tab/window" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:202 +msgid "Download the PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:158 +msgid "Export PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:103 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:106 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:109 +msgid "You can't download this order invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:76 +msgid "Invalid Request" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:72 +msgid "Order not exist!" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:67 +msgid "Invalid ID" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1293 +msgid "Coupon added successfully" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1292 +msgid "Please enter a code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1247 +msgid "No end" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1200 +msgid "Valid Dates" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1195 +msgid "Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1027 +msgid "No Coupons found in Trash" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1026 +msgid "No Coupons Found" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1025 +msgid "Search Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1024 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1028 +msgid "View Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1023 +msgid "New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1020 +msgid "Create New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1017 +msgid "Manage Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1002 +msgid "An error occurred while removing your coupon. Please try again." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:964 +msgid "Coupon can't be applied to this cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:951 +msgid "Invalid coupon code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:794 +msgid "Help Text" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:789 +msgid "Form Title" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:783 +msgid "Coupons Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:764 +msgid "End Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:758 +msgid "Does coupon have an end date?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:696 +msgid "Select Products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:688 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:723 +#: includes/common/payment-gateways/paypal-payflow.php:402 +msgid "User" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:638 +msgid "Max Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:636 +msgid "Enter the maximum number of times this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:623 +msgid "Leave blank to allow all other coupons." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:622 +msgid "Select combinable coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:618 +msgid "Can this coupon be combined with other coupons?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:613 +msgid "Apply to each applicable item once per cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:612 +msgid "Apply to each applicable item and quantity ordered" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:609 +msgid "How should the discount amount be applied?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:605 +msgid "Discount Amount" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:604 +msgid "Value must either be a decimal number or a percentage" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:602 +msgid "If you would like to give a percentage-based discount make sure to include the percent (%) symbol. Otherwise, the discount will be applied as a fixed amount off." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:595 +msgid "Letters and Numbers only." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:589 +msgid "Coupon Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:447 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:795 +msgid "More than one code? That's OK! Just be sure to enter one at a time." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:444 +msgid "Apply Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:314 +msgid "Coupon Discounts" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:89 +msgid "1 add-on disabled" +msgid_plural "%s add-ons disabled" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/addons/class-mp-addons-list-table.php:84 +msgid "1 add-on enabled" +msgid_plural "%s add-ons enabled" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Disabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Enable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:129 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:67 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:135 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:168 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:202 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:263 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:296 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:330 +msgid "Enabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +msgid "Disable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:34 +msgid "Disable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:33 +msgid "Enable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:21 +#: includes/admin/class-mp-products-admin.php:2280 +#: includes/common/class-mp-product.php:2916 +msgid "Description" +msgstr "" + +#: includes/common/template-functions.php:2889 +#: includes/multisite/template-functions.php:407 +msgid "Popularity (Least Popular - Most Popular)" +msgstr "" + +#: includes/common/template-functions.php:2888 +#: includes/multisite/template-functions.php:406 +msgid "Popularity (Most Popular - Least Popular)" +msgstr "" + +#: includes/common/template-functions.php:2885 +#: includes/multisite/template-functions.php:403 +msgid "Name (Z-A)" +msgstr "" + +#: includes/common/template-functions.php:2884 +#: includes/multisite/template-functions.php:402 +msgid "Name (A-Z)" +msgstr "" + +#: includes/common/template-functions.php:2883 +#: includes/multisite/template-functions.php:401 +msgid "Release Date (Oldest to Latest)" +msgstr "" + +#: includes/common/template-functions.php:2882 +#: includes/multisite/template-functions.php:400 +msgid "Release Date (Latest to Oldest)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:284 +msgid "paid" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "One Time Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Customer Counter" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Daily Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:182 +msgid "For the most accurate rates, please select the appropriate pick up type for your business." +msgstr "" + +#: includes/admin/class-mp-admin.php:374 +msgid "Page saved." +msgstr "" + +#: includes/admin/class-mp-admin.php:370 +msgid "Custom field deleted." +msgstr "" + +#: includes/admin/class-mp-admin.php:369 +msgid "Custom field updated." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:541 +msgid "%s - The payment request expired, - %s" +msgstr "%s - Požiadavka na platbu vypršala, - %s" + +#: includes/common/payment-gateways/_bitpay.php:536 +msgid "%s - The payment not credited in merchants bitpay account, action required. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:252 +msgid "If enabled, you will recieve an email for each status update on payment." +msgstr "Po aktivovaní obdržíte e-mail pri každej zmene stavu platby." + +#: includes/common/payment-gateways/_bitpay.php:240 +msgid "Speed at which the bitcoin transaction registers as \"confirmed\" to the store. This overrides your merchant settings on the Bitpay website." +msgstr "Rýchlosť, akou bude bitcoin transakcia v obchode registrovaná ako \"potvrdená\". Týmto nahradíte Vaše nastavenia na stránke BitPay." + +#: includes/common/payment-gateways/_bitpay.php:238 +msgid "Transaction Speed" +msgstr "Rýchlosť transakcie" + +#: includes/common/payment-gateways/_bitpay.php:244 +msgid "Low" +msgstr "Nízke" + +#: includes/common/payment-gateways/_bitpay.php:243 +msgid "Medium" +msgstr "Stredné" + +#: includes/common/payment-gateways/_bitpay.php:242 +msgid "High" +msgstr "Vysoké" + +#: includes/common/payment-gateways/_bitpay.php:177 +#: includes/common/payment-gateways/_bitpay.php:517 +#: includes/common/payment-gateways/_bitpay.php:522 +msgid "%s - The payment request is under process. Bitpay invoice status - %s" +msgstr "%s - Požiadavka na platbu sa práve spracováva. Stav faktúry BitPay - %s" + +#: includes/common/payment-gateways/_bitpay.php:175 +#: includes/common/payment-gateways/_bitpay.php:527 +msgid "%s - The payment request has been processed - %s" +msgstr "%s - Požiadavka na platbu bola spracovaná - %s" + +#: includes/common/payment-gateways/_bitpay.php:150 +#: includes/common/payment-gateways/_bitpay.php:294 +msgid "Incorrect order invoice, please contact site administrator" +msgstr "Nesprávna faktúra objednávky, prosím kontaktujte správcu stránky" + +#: includes/common/payment-gateways/_bitpay.php:141 +msgid "We could not verify order invoice details, please try again or contact site administrator for help" +msgstr "Nedokázali sme overiť detaily faktúry objednávky, skúste to prosím znova, alebo kontaktujte správcu stránky" + +#: includes/common/payment-gateways/simplify.php:81 +msgid "Login to Simplify to get your API credentials. Enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:605 +#: includes/common/payment-gateways/paypal-express.php:647 +msgid "Express Checkout is PayPal's premier checkout solution, which streamlines the checkout process for buyers and keeps them on your site after making a purchase. Unlike PayPal Pro, there are no additional fees to use Express Checkout, though you may need to do a free upgrade to a business account. More Info »" +msgstr "" + +#. Plugin URI of the plugin/theme +msgid "https://premium.wpmudev.org/project/e-commerce/" +msgstr "https://premium.wpmudev.org/project/e-commerce/" + +#. Author of the plugin/theme +msgid "WPMU DEV" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:541 +#: includes/admin/class-mp-orders-admin.php:543 +msgid "Tracking Number" +msgstr "" + +#: includes/common/class-mp-order.php:805 +#: includes/common/payment-gateways/stripe.php:336 +#: includes/public/class-mp-checkout.php:402 +msgid "Country" +msgstr "" + +#: includes/common/class-mp-order.php:784 +#: includes/common/payment-gateways/stripe.php:338 +msgid "City" +msgstr "" + +#: includes/common/class-mp-order.php:780 +msgid "Address 2" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:340 +msgid "Address" +msgstr "" + +#: includes/common/class-mp-cart.php:752 includes/common/class-mp-gdpr.php:378 +msgid "Order Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:360 +msgid "Payment Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:347 +msgid "Transaction ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:207 +msgid "The WePay Card Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:186 +#: includes/common/shipping-modules/mp-fedex.php:283 +msgid "Account ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:179 +msgid "Access Token" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:172 +msgid "Client Secret" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:165 +msgid "Client ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:159 +msgid "You must login to WePay to get your API credentials. Make sure to check \"Tokenize credit cards\" option under \"API Keys\" section of your WePay app." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:154 +msgid "When in live mode it is recommended to use SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:148 +msgid "Donation" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:147 +msgid "Event" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:146 +msgid "Personal" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:145 +msgid "Service" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:144 +msgid "Goods" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:141 +msgid "Choose type of payments" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:140 +msgid "Checkout Type" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:134 +msgid "Staging" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:131 +msgid "Choose STAGING if you have registered the app on stage.wepay.com, or PRODUCTION if you registered on www.wepay.com" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:36 +#: includes/common/payment-gateways/wepay.php:299 +msgid "WePay" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:366 +msgid "Rejected - A payment was rejected." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:360 +msgid "Failed - A payment was rejected due to an error." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:342 +msgid "PayWay balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:298 +msgid "Full path of the cacerts.crt file" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:284 +msgid "User Name" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:277 +msgid "Biller Code" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:273 +msgid "Log Directory" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:266 +msgid "Encryption Key" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:60 +msgid "Your PayWay transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:40 +#: includes/common/payment-gateways/_payway.php:41 +msgid "PayWay" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:862 +msgid "You must register this application with PayPal using your business account login to get an Application ID that will work with your API credentials. A bit of a hassle, but worth it! In the near future we will be looking for ways to simplify this process. Register then submit your application while logged in to the developer portal. Note that you do not need an Application ID for testing in sandbox mode. More Information »" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:818 +#: includes/common/payment-gateways/paypal-chained-payments.php:840 +#: includes/common/payment-gateways/paypal-express.php:705 +msgid "You must login to PayPal and create an API signature to get your credentials. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:378 +msgid "Use Payflow payment gateway to accept online payments using your Internet merchant account and processing network. PayPal Payflow Pro is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:595 +msgid "Tags Only" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:594 +msgid "Category Only" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:795 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:593 +msgid "Category & Tags" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:591 +msgid "Relate Products By" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1008 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:455 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:751 +msgid "Right" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1007 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:454 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:749 +msgid "Left" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1009 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:750 +msgid "Center" +msgstr "" + +#: marketpress.php:273 +msgid "Orders from your e-commerce store." +msgstr "" + +#: marketpress.php:231 +msgid "Products for your e-commerce store." +msgstr "" + +#: marketpress.php:222 +msgid "Edit Product" +msgstr "" + +#. Description of the plugin/theme +msgid "The complete WordPress ecommerce plugin - works perfectly with BuddyPress and Multisite too to create a social marketplace, where you can take a percentage! Activate the plugin, adjust your settings then add some products to your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:272 +msgid "Beside" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:271 +msgid "Above" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:268 +msgid "Pin Count" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:261 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:287 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:318 +msgid "All View" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:260 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:286 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:317 +msgid "Single View" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:259 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:285 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:316 +msgid "Off" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:578 +msgid "Related Product Limit" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:681 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1201 +msgid "Applies To" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:685 +msgid "All Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:487 +msgid "The label shown for the tax line item in the cart. Taxes, VAT, GST, etc." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:485 +msgid "Tax Label" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:81 +msgid "Apply" +msgstr "" + +#: includes/admin/class-mp-admin.php:192 +msgid "MarketPress Instructions" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1954 +#: includes/admin/class-mp-products-admin.php:2194 includes/common/data.php:62 +#: includes/common/helpers.php:150 +msgid "Taxes" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1417 +#: includes/common/class-mp-product.php:2900 +msgid "Related Products" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:282 +#: includes/common/shipping-modules/mp-usps.php:316 +msgid "@ Max" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "(3-5 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "Priority Mail Express International Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:92 +msgid "Priority Mail Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:171 +#: includes/common/shipping-modules/mp-pickup.php:247 +msgid "In Store" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:159 +msgid "Pickup Fee" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:141 +msgid "This option allows your customers to indicate that they will pick-up their order at your place of business." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:60 +#: includes/common/shipping-modules/mp-pickup.php:76 +#: includes/common/shipping-modules/mp-pickup.php:176 +msgid "Pickup Instructions" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:24 +#: includes/common/shipping-modules/mp-pickup.php:254 +msgid "Pickup" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping - 0.00" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:256 +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:440 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:309 +msgid "Your Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:301 +msgid "Station" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:300 +msgid "Request Courier" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:299 +msgid "Drop Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:298 +msgid "Business Service Center" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:297 +msgid "Regular Pickup" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:135 +#: includes/common/shipping-modules/mp-fedex.php:264 +msgid "Production" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:207 +msgid "Simplify Commerce by MasterCard" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:104 +msgid "When in live mode, although it is not required, Simplify recommends you have an SSL certificate." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:183 +#: includes/common/payment-gateways/simplify.php:87 +msgid "Public Key" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:175 +#: includes/common/payment-gateways/simplify.php:94 +msgid "Private Key" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:71 +msgid "Simplify helps merchants to accept online payments from Mastercard, Visa, American Express, Discover, JCB, and Diners Club cards. It's that simple. We offer a merchant account and payment gateway in a single, secure package so you can concentrate on what really matters to your business. Only supports USD currently." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:267 +msgid "%1$s" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:151 +msgid "The Simplify Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/simplify.php:18 +msgid "Simplify" +msgstr "" + +#: includes/common/payment-gateways/pin.php:255 +msgid "%1$s Card %2$s" +msgstr "" + +#: includes/common/payment-gateways/pin.php:211 +msgid "The PIN Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:187 +msgid "Selecting a currency other than currency supported by PIN may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/pin.php:164 +msgid "You must login to PIN to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/pin.php:158 +msgid "When in live mode PIN recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/pin.php:45 +#: includes/common/payment-gateways/pin.php:286 +msgid "PIN" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:830 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:534 +#: includes/common/payment-gateways/paypal-express.php:865 +msgid "The payment is pending" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:235 +msgid "The Paymill Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:169 +msgid "You must login to Paymill to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:45 +#: includes/common/payment-gateways/paymill.php:308 +msgid "Paymill" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:90 +msgid "Invalid cardholder" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:89 +msgid "Card is no longer valid or has expired" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:88 +msgid "Please enter a valid Card CVC" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:87 +msgid "Please choose a valid Expiration Date." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:99 +#: includes/common/payment-gateways/skrill.php:100 +msgid "Skrill (Moneybookers)" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:24 +#: includes/common/shipping-modules/mp-weight-rate.php:292 +msgid "Weight Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:303 +msgid "USPS Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:270 +msgid "USPS Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:264 +msgid "USPS Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:145 +msgid "Flat Rate Large" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:140 +msgid "Flat Rate Medium 2" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:135 +msgid "Flat Rate Medium 1" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:130 +msgid "Flat Rate Small" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:118 +msgid "First Class International Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:114 +msgid "Priority Mail International Small Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:112 +msgid "Priority Mail International Medium Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:110 +msgid "Priority Mail International Large Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:108 +msgid "Priority Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:106 +msgid "Express Mail International Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:104 +msgid "Express Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:98 +msgid "Library Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:96 +msgid "Media Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "First-Class Mail Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:90 +msgid "Priority Mail Small Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:88 +msgid "Priority Mail Medium Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +#: includes/common/shipping-modules/mp-usps.php:88 +#: includes/common/shipping-modules/mp-usps.php:90 +#: includes/common/shipping-modules/mp-usps.php:92 +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "(2-4 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +msgid "Priority Mail Large Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "(2-4) days" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "Priority Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "Express Mail Sunday/Holiday Delivery Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:80 +msgid "Express Mail Flat Rate Boxes Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:78 +msgid "Express Mail Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:76 +msgid "Express Mail Sunday/Holiday Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:74 +msgid "Express Mail Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:72 +#: includes/common/shipping-modules/mp-usps.php:74 +#: includes/common/shipping-modules/mp-usps.php:76 +#: includes/common/shipping-modules/mp-usps.php:78 +#: includes/common/shipping-modules/mp-usps.php:80 +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "(1-2 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:72 +msgid "Express Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:67 +#: includes/common/shipping-modules/mp-usps.php:902 +msgid "USPS" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:534 +msgid "UPS (beta)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:166 +msgid "Required if using negotiated rates" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "Worldwide Express Plus" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "(Scheduled)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "Standard" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "(2-5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "Worldwide Expedited" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:54 +msgid "Worldwide Express" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "2nd Day Air AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "(1 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "Next Day Air Early AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "Next Day Air Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "3 Day Select" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:49 +msgid "Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:48 +msgid "2nd Day Air" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "Next Day Air" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:475 +#: includes/common/shipping-modules/mp-ups.php:43 +msgid "UPS" +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:27 +#: includes/common/shipping-modules/mp-table-rate.php:318 +msgid "Table Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:71 +#: includes/common/shipping-modules/mp-table-quantity.php:77 +msgid "Shipping Cost: " +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:70 +#: includes/common/shipping-modules/mp-table-quantity.php:76 +msgid "If quantity is greater than:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:66 +msgid "Each band must be a higher price than the one above it." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:56 +msgid "Number of Bands:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:53 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Each layer must be a higher quantity than the previous." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:51 +msgid "Table Quantity Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:31 +msgid "Table Quantity" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:135 +#: includes/common/shipping-modules/mp-table-rate.php:174 +#: includes/common/shipping-modules/mp-weight-rate.php:189 +msgid "European Union" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:123 +#: includes/common/shipping-modules/mp-table-rate.php:162 +#: includes/common/shipping-modules/mp-weight-rate.php:177 +msgid "United States" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:111 +#: includes/common/shipping-modules/mp-table-rate.php:151 +#: includes/common/shipping-modules/mp-weight-rate.php:166 +msgid "In Country" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:146 +#: includes/common/shipping-modules/mp-table-rate.php:186 +#: includes/common/shipping-modules/mp-weight-rate.php:201 +msgid "International" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:101 +#: includes/common/shipping-modules/mp-table-rate.php:141 +#: includes/common/shipping-modules/mp-weight-rate.php:156 +msgid "Canada" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:92 +#: includes/common/shipping-modules/mp-table-rate.php:132 +#: includes/common/shipping-modules/mp-weight-rate.php:147 +msgid "Hawaii and Alaska" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:83 +#: includes/common/shipping-modules/mp-table-rate.php:123 +#: includes/common/shipping-modules/mp-weight-rate.php:138 +msgid "Lower 48 States" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:64 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping." +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:25 +#: includes/common/shipping-modules/mp-flat-rate.php:223 +msgid "Flat Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:761 +msgid "FedEx (beta)" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Centimeters" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Inches" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1676 +#: includes/admin/class-mp-setup-wizard.php:547 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:166 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +msgid "Kilograms" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:103 +msgid " %1$s - %2$s" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:358 +msgid "Max Weight per Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:356 +msgid "Box Dimensions" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:354 +msgid "Box Name" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:344 +msgid "Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:343 +msgid "For each box defined enter the maximum weight it can contain." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:341 +msgid "Enter your standard box sizes as LengthxWidthxHeight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:386 +#: includes/common/shipping-modules/mp-ups.php:193 +#: includes/common/shipping-modules/mp-usps.php:234 +#: includes/common/shipping-modules/mp-usps.php:338 +msgid "Standard Boxes and Weight Limits" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:328 +msgid "Handling Charge per Interntional Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:294 +msgid "Handling Charge per Domestic Shipment " +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:388 +#: includes/common/shipping-modules/mp-ups.php:196 +#: includes/common/shipping-modules/mp-usps.php:237 +msgid "Add Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "(Next Day)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +msgid "Europe First International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:62 +msgid "International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:61 +#: includes/common/shipping-modules/mp-fedex.php:62 +#: includes/common/shipping-modules/mp-ups.php:54 +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "(1-3 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:61 +msgid "International First" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "(5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "International Economy" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "(2-7 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "Smart Post" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:55 +#: includes/common/shipping-modules/mp-ups.php:49 +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "(1-5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:55 +msgid "Ground Home Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "(1-7 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "Fedex Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:53 +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "(3 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:53 +msgid "Fedex Express Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +#: includes/common/shipping-modules/mp-ups.php:48 +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "(2 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +msgid "Fedex 2 Day" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "(2 Days am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "Fedex 2 Day AM" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "(1 Day)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +msgid "Standard Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "(1 Day am )" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "Priority Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "(1 Day am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "First Overnight" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:476 +#: includes/common/shipping-modules/mp-fedex.php:31 +msgid "FedEx" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:270 +#: includes/common/payment-gateways/simplify.php:179 +#: includes/common/payment-gateways/stripe.php:365 +msgid "%1$s Card ending in %2$s - Expires %3$s" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:259 +#: includes/common/payment-gateways/pin.php:238 +#: includes/common/payment-gateways/simplify.php:171 +msgid "%s Store Purchase - Order ID: %s, Email: %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:266 +msgid "You must login to Stripe to get your API credentials. You can enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:261 +msgid "When in live mode Stripe recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:311 +msgid "The Stripe Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:263 +#: includes/common/payment-gateways/paymill.php:122 +#: includes/common/payment-gateways/stripe.php:222 +msgid "Card Number" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:86 +msgid "Please enter a valid Credit Card Number." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:45 +#: includes/common/payment-gateways/stripe.php:433 +msgid "Stripe" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:750 +msgid "Sets the background color for the payment page. By default, the color is white." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:745 +msgid "Sets the background color for the header of the payment page. By default, the color is white." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:740 +msgid "Sets the border color around the header of the payment page. The border is a 2-pixel perimeter around the header space, which is 750 pixels wide by 90 pixels high. By default, the color is black." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:735 +msgid "URL for an image you want to appear at the top left of the payment page. The image has a maximum size of 750 pixels wide by 90 pixels high. PayPal recommends that you provide an image that is stored on a secure (https) server. If you do not specify an image, the business name is displayed." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:857 +#: includes/common/payment-gateways/paypal-express.php:1131 +msgid "The payment is pending because it is part of an order that has been authorized but not settled." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:853 +#: includes/common/payment-gateways/paypal-express.php:1127 +msgid "The payment is pending because it has been authorized but not settled. You must capture the funds first." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:847 +#: includes/common/payment-gateways/paypal-express.php:1120 +msgid "You denied the payment when it was marked as pending." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:837 +#: includes/common/payment-gateways/paypal-express.php:1108 +msgid "A reversal has occurred on this transaction due to an unknown reason." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:836 +#: includes/common/payment-gateways/paypal-express.php:1107 +msgid "A reversal has occurred on this transaction because you have given the customer a refund." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:835 +#: includes/common/payment-gateways/paypal-express.php:1106 +msgid "A reversal has occurred on this transaction due to a complaint about the transaction from your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:834 +#: includes/common/payment-gateways/paypal-express.php:1105 +msgid "A reversal has occurred on this transaction due to your customer triggering a money-back guarantee." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:833 +#: includes/common/payment-gateways/paypal-express.php:1104 +msgid "A reversal has occurred on this transaction due to a chargeback by your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:1101 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer:" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:826 +#: includes/common/payment-gateways/paypal-express.php:1097 +msgid "A payment has been accepted." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:818 +#: includes/common/payment-gateways/paypal-express.php:1087 +msgid "The transaction has not terminated, e.g. an authorization may be awaiting completion." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:531 +#: includes/common/payment-gateways/paypal-express.php:810 +#: includes/common/payment-gateways/paypal-express.php:1077 +msgid "The payment has failed. This happens only if the payment was made from your customer's bank account." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:806 +#: includes/common/payment-gateways/paypal-express.php:1072 +msgid "An authorization for this transaction has been voided." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:802 +#: includes/common/payment-gateways/paypal-express.php:1067 +msgid "The authorization period for this payment has been reached." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:798 +#: includes/common/payment-gateways/paypal-express.php:1062 +msgid "A reversal has been canceled; for example, when you win a dispute and the funds for the reversal have been returned to you." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:499 +#: includes/common/payment-gateways/paypal-express.php:1163 +msgid "PayPal Express Checkout" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:798 +msgid "Gateway Settings Page Message" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:725 +msgid "Signature" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:506 +#: includes/common/payment-gateways/eway31.php:533 +#: includes/common/shipping-modules/mp-fedex.php:276 +msgid "API Password" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:773 +msgid "Enter a percentage of all store sales to collect as a fee. Decimals allowed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:757 +msgid "Using PayPal Chained Payments allows you as the multisite network owner to collect a predefined fee or percentage of all sales on network MarketPress stores! This is invisible to the customers who purchase items in a store, and all PayPal fees will be charged to the store owner. To use this option you must create API credentials, and you should make all other gateways unavailable or limited above." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:338 +msgid "Please be aware that we will deduct a ?% fee from the total of each transaction in addition to any fees PayPal may charge you. If for any reason you need to refund a customer for an order, please contact us with a screenshot of the refund receipt in your PayPal history as well as the Transaction ID of our fee deduction so we can issue you a refund. Thank you!" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:698 +#: includes/common/payment-gateways/paypal-express.php:149 +msgid "There was a problem connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:470 +#: includes/common/payment-gateways/paypal-express.php:1053 +msgid "There was a problem verifying the IPN string with PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:310 +msgid "There was a problem connecting to PayPal to check the status of your purchase. Please check the status of your order here »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:539 +#: includes/common/payment-gateways/paypal-chained-payments.php:254 +#: includes/common/payment-gateways/paypal-express.php:1139 +msgid "The payment is pending." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:251 +#: includes/common/payment-gateways/paypal-chained-payments.php:531 +#: includes/common/payment-gateways/paypal-express.php:862 +#: includes/common/payment-gateways/paypal-express.php:1136 +msgid "The payment is pending for an unknown reason. For more information, contact PayPal customer service." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:250 +#: includes/common/payment-gateways/paypal-chained-payments.php:530 +#: includes/common/payment-gateways/paypal-express.php:861 +#: includes/common/payment-gateways/paypal-express.php:1135 +msgid "The payment is pending because you are not yet verified. You must verify your account before you can accept this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:249 +#: includes/common/payment-gateways/paypal-chained-payments.php:529 +#: includes/common/payment-gateways/paypal-express.php:860 +#: includes/common/payment-gateways/paypal-express.php:1134 +msgid "The payment is pending because it was made via credit card and you must upgrade your account to Business or Premier status in order to receive the funds. It can also mean that you have reached the monthly limit for transactions on your account." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:248 +#: includes/common/payment-gateways/paypal-chained-payments.php:528 +#: includes/common/payment-gateways/paypal-express.php:859 +#: includes/common/payment-gateways/paypal-express.php:1133 +msgid "The payment is pending because it was made to an email address that is not yet registered or confirmed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:247 +#: includes/common/payment-gateways/paypal-chained-payments.php:527 +#: includes/common/payment-gateways/paypal-express.php:858 +#: includes/common/payment-gateways/paypal-express.php:1132 +msgid "The payment is pending while it is being reviewed by PayPal for risk." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:246 +#: includes/common/payment-gateways/paypal-chained-payments.php:526 +#: includes/common/payment-gateways/paypal-express.php:856 +#: includes/common/payment-gateways/paypal-express.php:1130 +msgid "You do not have a balance in the currency sent, and you do not have your Payment Receiving Preferences set to automatically convert and accept this payment. You must manually accept or deny this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:245 +#: includes/common/payment-gateways/paypal-chained-payments.php:525 +#: includes/common/payment-gateways/paypal-express.php:855 +#: includes/common/payment-gateways/paypal-express.php:1129 +msgid "The payment is pending because you hold a non-U.S. account and do not have a withdrawal mechanism. You must manually accept or deny this payment from your Account Overview." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:244 +#: includes/common/payment-gateways/paypal-chained-payments.php:524 +#: includes/common/payment-gateways/paypal-express.php:854 +#: includes/common/payment-gateways/paypal-express.php:1128 +msgid "The payment is pending because it was made by an eCheck that has not yet cleared." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:243 +#: includes/common/payment-gateways/paypal-chained-payments.php:523 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:236 +#: includes/common/payment-gateways/paypal-chained-payments.php:516 +msgid "The transaction was rejected by the receiver (you)." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:510 +#: includes/common/payment-gateways/paypal-express.php:843 +#: includes/common/payment-gateways/paypal-express.php:1115 +msgid "You refunded the payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:224 +#: includes/common/payment-gateways/paypal-chained-payments.php:504 +msgid "The transaction is in progress." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:212 +#: includes/common/payment-gateways/paypal-chained-payments.php:491 +#: includes/common/payment-gateways/paypal-express.php:814 +#: includes/common/payment-gateways/paypal-express.php:1082 +msgid "The payment has been partially refunded." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:202 +#: includes/common/payment-gateways/paypal-chained-payments.php:481 +msgid "PayPal balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:177 +msgid "There was a problem connecting to PayPal to setup your purchase. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:122 +msgid "Your PayPal transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:50 +#: includes/common/payment-gateways/paypal-chained-payments.php:53 +#: includes/common/payment-gateways/paypal-chained-payments.php:732 +#: includes/common/payment-gateways/paypal-express.php:500 +#: includes/common/payment-gateways/paypal-express.php:938 +msgid "PayPal" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:48 +#: includes/common/payment-gateways/paypal-chained-payments.php:730 +#: includes/common/payment-gateways/paypal-chained-payments.php:756 +#: includes/common/payment-gateways/paypal-chained-payments.php:873 +msgid "PayPal Chained Payments" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:59 +#: includes/common/payment-gateways/paypal-payflow.php:467 +msgid "PayPal Payflow Pro" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:378 +msgid "Chargeback - A payment was reversed due to a chargeback. The funds have been removed from your account balance and returned to the buyer." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:372 +msgid "Failed - The Credit Card or Direct Debit transaction was declined." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:354 +#: includes/common/payment-gateways/skrill.php:366 +msgid "Cancelled - The payment was cancelled manually by the sender in their online account history or was auto-cancelled after 14 days pending." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:360 +msgid "Pending - The payment is pending. It can take 2-3 days for bank transfers to complete." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:349 +#: includes/common/payment-gateways/skrill.php:354 +msgid "Processed - The payment has been completed, and the funds have been added successfully to your Moneybookers account balance." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:189 +msgid "Shown to the customer on the confirmation screen - the end step of the process - a note, confirmation number, or any other message. Line breaks <br> may be used for longer messages." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:188 +msgid "Confirmation Note (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:183 +msgid "The URL of the logo which you would like to appear at the top of the payment form. The logo must be accessible via HTTPS otherwise it will not be shown. For best integration results we recommend that you use a logo with dimensions up to 200px in width and 50px in height." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:182 +msgid "Logo Image (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:177 +msgid "The name of this store, which will be shown on the gateway. If no value is submitted, the account email will be shown as the recipient of the payment." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:176 +msgid "Merchant Name (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:165 +msgid "Language" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:368 +#: includes/common/payment-gateways/authorizenet-aim.php:262 +#: includes/common/payment-gateways/eway.php:363 +#: includes/common/payment-gateways/eway31.php:471 +#: includes/common/payment-gateways/mollie.php:91 +#: includes/common/payment-gateways/paymill.php:193 +#: includes/common/payment-gateways/paypal-chained-payments.php:356 +#: includes/common/payment-gateways/paypal-express.php:688 +#: includes/common/payment-gateways/paypal-payflow.php:432 +#: includes/common/payment-gateways/pin.php:186 +#: includes/common/payment-gateways/skrill.php:152 +#: includes/common/payment-gateways/stripe.php:288 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:104 +msgid "Currency" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:359 +#: includes/common/payment-gateways/skrill.php:143 +msgid "Secret Word" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:261 +msgid "Order ID:" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:234 +msgid "Complete Checkout" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:204 +msgid "Your Moneybookers transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:155 +msgid "This is the email text to send to those who have made manual payment checkouts. You should include your manual payment instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:257 +#: includes/common/payment-gateways/manual-payments.php:128 +msgid "Record payments manually, such as by Cash, Check, or EFT." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:71 +msgid "Manual/Invoice" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:648 +#: includes/common/payment-gateways/manual-payments.php:35 +#: includes/common/payment-gateways/manual-payments.php:36 +msgid "Manual Payment" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:34 +#: includes/common/payment-gateways/manual-payments.php:163 +msgid "Manual Payments" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:288 +msgid "iDEAL Simulator (for testing)" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:287 +msgid "ABN Amro Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:286 +msgid "Friesland Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:285 +msgid "Rabobank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:284 +msgid "ING Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:279 +msgid "Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:270 +msgid "To make it easier to pay for online products and services, the Dutch banking community has developed the iDEAL online payment method. iDEAL allows online payments to be made using online banking in EUR only." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:247 +#: includes/common/payment-gateways/_payway.php:199 +#: includes/common/payment-gateways/manual-payments.php:68 +msgid "Invoiced" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1016 +msgid "Coupon" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:77 +#: includes/common/payment-gateways/_ideal.php:250 +#: includes/common/payment-gateways/_payway.php:202 +msgid "iDEAL" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:76 +msgid "iDEAL (beta)" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:327 +msgid "Merchant Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:293 +#: includes/common/payment-gateways/_payway.php:302 +#: includes/common/payment-gateways/payfast.php:324 +msgid "Merchant ID" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:462 +msgid "eWay Rapid 3.0 Payments lets merchants recieve credit card payments through eWay without need for users to leave the shop. Note this gateway requires a valid SSL certificate configured for this site." +msgstr "" + +#: includes/common/payment-gateways/eway.php:452 +msgid "There was a problem connecting to eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/eway.php:432 +#: includes/common/payment-gateways/eway.php:437 +msgid "The url of the image can be hosted on your website and pass the secure https:// path of the image to be displayed at the top of the website. This is the second image block on the webpage and is restricted to 960px X 65px. A default secure image is used if none is supplied." +msgstr "" + +#: includes/common/payment-gateways/eway.php:431 +#: includes/common/payment-gateways/eway.php:436 +msgid "Company Logo (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:427 +msgid "The page footer text can be customised and populated below the customer's order details. Useful for contact information." +msgstr "" + +#: includes/common/payment-gateways/eway.php:426 +msgid "Page Footer (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:421 +msgid "Page Description (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:417 +#: includes/common/payment-gateways/eway.php:422 +msgid "This value is used to populate the browsers title bar at the top of the screen." +msgstr "" + +#: includes/common/payment-gateways/eway.php:416 +msgid "Page Title (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:412 +msgid "This will be displayed as the company the customer is purchasing from, including this is highly recommended." +msgstr "" + +#: includes/common/payment-gateways/eway.php:411 +msgid "Company Name" +msgstr "" + +#: includes/common/payment-gateways/eway.php:394 +msgid "Customer ID" +msgstr "" + +#: includes/common/payment-gateways/eway.php:381 +#: includes/common/payment-gateways/eway31.php:488 +msgid "Live API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway.php:371 +#: includes/common/payment-gateways/eway31.php:479 +msgid "Gateway Mode" +msgstr "" + +#: includes/common/payment-gateways/eway.php:354 +msgid "The Hosted Page is a webpage hosted on eWAY's side eliminating the need for merchants to capture, transmit or store credit card numbers. At the checkout time the merchant automatically redirects the customer to the Hosted Page where they would enter their details and have the transaction processed. Upon completion of the transaction the customer is redirected back to the MarketPress checkout confirmation page." +msgstr "" + +#: includes/common/payment-gateways/eway.php:314 +msgid "There was a problem with your credit card information: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:300 +msgid "Paid - The card has been processed - %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:253 +msgid "There was a problem setting up the transaction with eWay: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:245 +#: includes/common/payment-gateways/eway.php:289 +msgid "There was a problem parsing the response from eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:159 +#: includes/common/payment-gateways/eway.php:189 +#: includes/common/payment-gateways/paypal-chained-payments.php:634 +#: includes/common/payment-gateways/paypal-express.php:322 +#: includes/common/payment-gateways/paypal-express.php:473 +msgid "%s Store Purchase - Order ID: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:147 +#: includes/common/payment-gateways/eway.php:462 +msgid "eWay Shared Payments" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:214 +msgid "This is the email text to send to those who have made CubePoints checkouts. You should include your CubePoints instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:212 +#: includes/common/payment-gateways/free_orders.php:188 +#: includes/common/payment-gateways/manual-payments.php:154 +msgid "Order Confirmation Email" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:207 +#: includes/common/payment-gateways/manual-payments.php:149 +msgid "Confirmation User Instructions" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:202 +#: includes/common/payment-gateways/manual-payments.php:144 +msgid "User Instructions" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:198 +#: includes/common/payment-gateways/free_orders.php:170 +#: includes/common/payment-gateways/manual-payments.php:139 +msgid "Enter a public name for this payment method that is displayed to users - No HTML" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:532 +#: includes/common/payment-gateways/_cubepoints.php:196 +#: includes/common/payment-gateways/free_orders.php:169 +#: includes/common/payment-gateways/manual-payments.php:138 +msgid "Method Name" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:187 +msgid "Accept CubePoints as payment(requires the CubePoints plugin)." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:140 +msgid "Sorry, but you do not appear to have enough points to complete this purchase!" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:124 +msgid "%s Store Purchase" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:79 +#: includes/common/payment-gateways/_cubepoints.php:171 +msgid "Your current points: " +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:133 +#: includes/common/payment-gateways/_cubepoints.php:197 +msgid "CubePoints" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:344 +msgid "Authorize.net AIM Checkout" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:331 +msgid "Custom API URL" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:332 +msgid "Many other gateways have Authorize.net API emulators. To use one of these gateways input their API post url here." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:322 +msgid "Request a delimited response from the payment gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:316 +msgid "Security: MD5 Hash" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:317 +msgid "The payment gateway generated MD5 hash value that can be used to authenticate the transaction response. Not needed because responses are returned using an SSL connection." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:306 +msgid "Customer Receipt Email Footer" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:296 +msgid "Customer Receipt Email Header" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:297 +#: includes/common/payment-gateways/paypal-payflow.php:446 +msgid "This text will appear as the header of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:282 +msgid "Encapsulation Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:283 +msgid "Authorize.net default is blank. Otherwise, get this from your credit card processor. If the transactions are going through, but getting strange responses, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:273 +msgid "Optional settings to control advanced options" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:224 +#: includes/common/payment-gateways/authorizenet-aim.php:272 +msgid "Advanced Settings" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:253 +msgid "Transaction Key" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:246 +msgid "Login ID" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:396 +msgid "Gateway Credentials" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:221 +msgid "Authorize.net AIM is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway. USD is the only currency supported by this gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:205 +msgid "There was a problem finalizing your purchase. %s Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:519 +#: includes/common/payment-gateways/paypal-chained-payments.php:218 +#: includes/common/payment-gateways/paypal-chained-payments.php:498 +#: includes/common/payment-gateways/paypal-express.php:822 +#: includes/common/payment-gateways/paypal-express.php:1092 +msgid "The payment has been completed, and the funds have been added successfully to your account balance." +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:233 +msgid "Please enter a valid credit card security code" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:224 +#: includes/public/class-mp-checkout.php:867 +msgid "Please enter a valid credit card number" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:221 +msgid "Please enter your credit card number" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:217 +msgid "Please enter your credit card security code" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:213 +msgid "Please select your credit card expiration date." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:299 +#: includes/common/payment-gateways/authorizenet-aim.php:50 +#: includes/common/payment-gateways/eway.php:148 +#: includes/common/payment-gateways/eway.php:298 +#: includes/common/payment-gateways/eway31.php:267 +#: includes/common/payment-gateways/paymill.php:46 +#: includes/common/payment-gateways/paypal-express.php:972 +#: includes/common/payment-gateways/paypal-payflow.php:60 +#: includes/common/payment-gateways/pin.php:46 +#: includes/common/payment-gateways/simplify.php:19 +#: includes/common/payment-gateways/stripe.php:46 +#: includes/common/payment-gateways/wepay.php:37 +msgid "Credit Card" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:49 +msgid "Authorize.net Checkout" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:156 +#: includes/common/payment-gateways/stripe.php:293 +msgid "Selecting a currency other than that used for your store may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:352 +msgid "Seller ID" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:340 +#: includes/common/payment-gateways/_ideal.php:311 +#: includes/common/payment-gateways/authorizenet-aim.php:234 +#: includes/common/payment-gateways/eway.php:376 +#: includes/common/payment-gateways/payfast.php:315 +#: includes/common/payment-gateways/paypal-chained-payments.php:368 +#: includes/common/payment-gateways/paypal-express.php:699 +#: includes/common/payment-gateways/paypal-payflow.php:391 +msgid "Live" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:339 +#: includes/common/payment-gateways/authorizenet-aim.php:233 +#: includes/common/payment-gateways/eway.php:375 +#: includes/common/payment-gateways/paypal-chained-payments.php:367 +#: includes/common/payment-gateways/paypal-express.php:698 +#: includes/common/payment-gateways/paypal-payflow.php:390 +#: includes/common/shipping-modules/mp-fedex.php:263 +msgid "Sandbox" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:336 +#: includes/common/payment-gateways/_ideal.php:307 +#: includes/common/payment-gateways/authorizenet-aim.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:365 +#: includes/common/payment-gateways/paypal-express.php:695 +#: includes/common/payment-gateways/paypal-payflow.php:387 +#: includes/common/payment-gateways/wepay.php:130 +#: includes/common/shipping-modules/mp-fedex.php:260 +msgid "Mode" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:288 +#: includes/common/payment-gateways/mijireh.php:242 +#: includes/common/payment-gateways/mollie.php:212 +msgid "The order has been received" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:74 +#: includes/common/payment-gateways/2checkout.php:75 +#: includes/common/payment-gateways/2checkout.php:435 +msgid "2Checkout" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:306 +msgid "Confirm" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:218 +#: includes/common/class-mp-cart.php:974 includes/common/class-mp-cart.php:1354 +#: includes/common/template-functions.php:918 +msgid "Checkout" +msgstr "" + +#: includes/common/template-functions.php:207 +msgid "Check Order Status" +msgstr "" + +#: includes/common/template-functions.php:235 +msgid "View Products" +msgstr "" + +#: includes/common/template-functions.php:263 +msgid "Visit Store" +msgstr "" + +#: includes/common/template-functions.php:2912 +#: includes/multisite/template-functions.php:448 +msgid "Order By" +msgstr "" + +#: includes/common/template-functions.php:2887 +#: includes/multisite/template-functions.php:405 +msgid "Price (High to Low)" +msgstr "" + +#: includes/common/template-functions.php:2886 +#: includes/multisite/template-functions.php:404 +msgid "Price (Low to High)" +msgstr "" + +#: includes/common/template-functions.php:2881 +#: includes/multisite/template-functions.php:399 +msgid "Default" +msgstr "" + +#: includes/common/template-functions.php:2858 +msgid "Show All" +msgstr "" + +#: includes/common/class-mp-product.php:2048 +msgid "View Larger Image »" +msgstr "" + +#: includes/common/class-mp-product.php:979 +msgid "Out of Stock" +msgstr "" + +#: includes/common/template-functions.php:148 +msgid "Price: " +msgstr "" + +#: includes/multisite/template-functions.php:833 +msgid "No Tags" +msgstr "" + +#: includes/common/template-functions.php:3162 +msgid "Uncategorized" +msgstr "" + +#: includes/common/class-mp-cart.php:569 includes/common/class-mp-order.php:604 +#: includes/common/helpers.php:115 +msgid "Download" +msgstr "" + +#: includes/common/class-mp-cart.php:1353 +msgid "Empty Cart" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:291 +#: includes/common/payment-gateways/paypal-express.php:718 +#: includes/common/payment-gateways/paypal-payflow.php:423 +#: includes/common/shipping-modules/mp-ups.php:158 +#: includes/public/class-mp-checkout.php:1254 +#: includes/public/class-mp-checkout.php:1383 +msgid "Password" +msgstr "" + +#: includes/common/payment-gateways/eway.php:387 +#: includes/common/payment-gateways/paypal-express.php:711 +#: includes/common/shipping-modules/mp-usps.php:185 +#: includes/public/class-mp-checkout.php:1249 +msgid "Username" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:437 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:790 +msgid "Have a coupon code?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:321 +#: includes/admin/class-mp-orders-admin.php:526 +#: includes/common/class-mp-cart.php:592 +msgid "Remove" +msgstr "" + +#: includes/admin/class-mp-ajax.php:316 +msgid "Quantity:" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2140 +#: includes/admin/class-mp-products-admin.php:2387 +#: includes/common/shipping-modules/class-mp-shipping-api.php:507 +msgid "Extra Shipping Cost" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:403 +msgid "Choose a Shipping Method:" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1691 +#: includes/admin/class-mp-products-admin.php:2131 +#: includes/admin/class-mp-products-admin.php:2378 +#: includes/common/shipping-modules/class-mp-shipping-api.php:228 +msgid "Ounces" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1684 +#: includes/admin/class-mp-products-admin.php:2123 +#: includes/admin/class-mp-products-admin.php:2369 +#: includes/admin/class-mp-setup-wizard.php:546 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:165 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +#: includes/common/shipping-modules/class-mp-shipping-api.php:227 +msgid "Pounds" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:226 +msgid "Product Weight:" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:214 +msgid "Weight (Kilograms)" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:82 +msgid "Number of Categories:" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:72 +msgid "Product Count" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:20 +#: includes/admin/class-mp-product-attributes-admin.php:129 +#: includes/admin/class-mp-product-attributes-list-table.php:22 +#: includes/admin/class-mp-products-admin.php:2216 +#: includes/admin/class-mp-shortcode-builder.php:628 +#: includes/admin/class-mp-shortcode-builder.php:1415 +#: includes/admin/widgets/ms-global-categories.php:70 +#: includes/common/shipping-modules/mp-fedex.php:395 +#: includes/common/shipping-modules/mp-ups.php:202 +#: includes/common/shipping-modules/mp-usps.php:243 +#: includes/public/class-mp-checkout.php:314 +msgid "Name" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:67 +msgid "Order Categories By:" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:24 +#: includes/admin/widgets/ms-global-categories.php:50 +msgid "Global Product Categories" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:15 +msgid "Global Product Category List" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:13 +msgid "Displays a network-wide HTML list of product categories from network MarketPress stores." +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:24 +#: includes/admin/widgets/ms-global-tag-cloud.php:45 +msgid "Global Product Tags" +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:15 +msgid "Global Product Tag Cloud" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:947 +#: includes/admin/widgets/ms-global-product-list.php:173 +msgid "Excerpt" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:169 +msgid "Content To Show:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:140 +msgid "Limit To Product Tag:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:132 +msgid "Limit To Product Category:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:72 +msgid "Global Products" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:16 +msgid "Global Product List" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:14 +msgid "Shows a customizable global list of products from network MarketPress stores." +msgstr "" + +#: includes/common/class-mp-product.php:974 +#: includes/multisite/template-functions.php:731 +msgid "Buy Now »" +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:13 +msgid "Displays global most used product tags in cloud format from network MarketPress stores." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:438 +msgid "Theme Permissions" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:402 +#: includes/multisite/class-mp-admin-multisite.php:448 +msgid "No Access" +msgstr "" + +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:120 +msgid "Pro Site Level" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:401 +#: includes/multisite/class-mp-admin-multisite.php:447 +msgid "All Can Use" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:390 +msgid "Gateway Permissions" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:375 +msgid "Select a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:350 +msgid "Global Gateway" +msgstr "" + +#. Plugin Name of the plugin/theme +msgid "MarketPress" +msgstr "" + +#: includes/admin/widgets/product-tag-cloud.php:7 +msgid "Your most used product tags in cloud format from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/categories.php:79 +msgid "Show hierarchy" +msgstr "" + +#: includes/admin/widgets/categories.php:76 +#: includes/admin/widgets/ms-global-categories.php:92 +msgid "Show product counts" +msgstr "" + +#: includes/admin/widgets/categories.php:73 +msgid "Show as dropdown" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:710 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:736 +#: includes/admin/widgets/categories.php:30 +msgid "Select Category" +msgstr "" + +#: includes/admin/widgets/categories.php:7 +msgid "A list or dropdown of product categories from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/product-list.php:250 +msgid "Show Buy Button" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:183 +#: includes/admin/widgets/product-list.php:244 +msgid "Show Price" +msgstr "" + +#: includes/admin/widgets/product-list.php:241 +msgid "Show Excerpt" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:155 +#: includes/admin/widgets/product-list.php:238 +msgid "Thumbnail Size:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:153 +#: includes/admin/widgets/product-list.php:237 +msgid "Show Thumbnail" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:147 +#: includes/admin/widgets/product-list.php:233 +msgid "Display Settings" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:136 +#: includes/admin/widgets/ms-global-product-list.php:144 +#: includes/admin/widgets/product-list.php:230 +msgid "Enter the Slug" +msgstr "" + +#: includes/admin/widgets/product-list.php:228 +#: includes/common/template-functions.php:894 +msgid "Tag" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:686 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:712 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:739 +#: includes/admin/class-mp-shortcode-builder.php:796 +#: includes/admin/widgets/product-list.php:227 +#: includes/common/template-functions.php:886 +#: includes/common/template-functions.php:2907 +msgid "Category" +msgstr "" + +#: includes/admin/widgets/product-list.php:226 +msgid "No Filter" +msgstr "" + +#: includes/admin/widgets/product-list.php:224 +msgid "Taxonomy Filter:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:108 +#: includes/admin/widgets/product-list.php:209 +msgid "Order Products By:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:101 +#: includes/admin/widgets/product-list.php:206 +msgid "Number of Products:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:98 +#: includes/admin/widgets/product-list.php:204 +msgid "List Settings" +msgstr "" + +#: includes/admin/widgets/product-list.php:177 +msgid "Our Products" +msgstr "" + +#: includes/admin/widgets/product-list.php:144 +#: includes/common/template-functions.php:2070 +#: includes/common/template-functions.php:2347 +#: includes/multisite/template-functions.php:303 +#: includes/multisite/template-functions.php:623 +msgid "No Products" +msgstr "" + +#: includes/admin/widgets/product-list.php:8 +msgid "Product List" +msgstr "" + +#: includes/admin/widgets/product-list.php:7 +msgid "Shows a customizable list of products from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/cart.php:75 includes/admin/widgets/categories.php:82 +#: includes/admin/widgets/product-list.php:253 +#: includes/admin/widgets/product-tag-cloud.php:57 +msgid "Only show on store pages" +msgstr "" + +#: includes/admin/widgets/cart.php:65 +#: includes/admin/widgets/ms-global-product-list.php:92 +#: includes/admin/widgets/product-list.php:200 +msgid "Custom Text:" +msgstr "" + +#: includes/admin/widgets/cart.php:64 includes/admin/widgets/categories.php:69 +#: includes/admin/widgets/ms-global-categories.php:59 +#: includes/admin/widgets/ms-global-product-list.php:87 +#: includes/admin/widgets/ms-global-tag-cloud.php:49 +#: includes/admin/widgets/product-list.php:199 +#: includes/admin/widgets/product-tag-cloud.php:49 +msgid "Title:" +msgstr "" + +#: includes/admin/widgets/cart.php:7 +msgid "Shows dynamic shopping cart contents along with a checkout button for your MarketPress store." +msgstr "" + +#: includes/admin/widgets/product-tag-cloud.php:8 +msgid "Product Tag Cloud" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:539 +#: includes/admin/class-mp-setup-wizard.php:575 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:163 +msgid "Measurement System" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:616 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:149 +msgid "Select Shipping Options" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:596 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:129 +msgid "Calculated Options" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:582 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:115 +msgid "No Shipping" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:110 +msgid "EU" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:109 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:93 +msgid "All" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:92 +msgid "Select:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:185 +msgid "Store Pages" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:223 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:256 +msgid "Order Shipped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:60 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:95 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:128 +#: marketpress.php:266 +msgid "New Order" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:314 +msgid "Email Notifications" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:59 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:200 +msgid "Products List" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:58 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:190 +msgid "Store Base" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:108 +#: includes/admin/class-mp-shortcode-builder.php:635 +#: includes/admin/class-mp-shortcode-builder.php:708 +#: includes/admin/class-mp-shortcode-builder.php:875 +#: includes/admin/class-mp-shortcode-builder.php:1319 +#: includes/admin/class-mp-shortcode-builder.php:1422 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:526 +#: includes/admin/widgets/ms-global-categories.php:78 +#: includes/admin/widgets/ms-global-product-list.php:127 +#: includes/admin/widgets/product-list.php:221 +msgid "Ascending" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:109 +#: includes/admin/class-mp-shortcode-builder.php:636 +#: includes/admin/class-mp-shortcode-builder.php:709 +#: includes/admin/class-mp-shortcode-builder.php:876 +#: includes/admin/class-mp-shortcode-builder.php:1320 +#: includes/admin/class-mp-shortcode-builder.php:1423 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:525 +#: includes/admin/widgets/ms-global-categories.php:75 +#: includes/admin/widgets/ms-global-product-list.php:124 +#: includes/admin/widgets/product-list.php:220 +msgid "Descending" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:637 +#: includes/admin/class-mp-shortcode-builder.php:695 +#: includes/admin/class-mp-shortcode-builder.php:862 +#: includes/admin/class-mp-shortcode-builder.php:1306 +#: includes/admin/class-mp-shortcode-builder.php:1424 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:518 +#: includes/admin/widgets/ms-global-product-list.php:121 +#: includes/admin/widgets/product-list.php:218 +msgid "Random" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:694 +#: includes/admin/class-mp-shortcode-builder.php:861 +#: includes/admin/class-mp-shortcode-builder.php:1305 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:517 +#: includes/admin/widgets/ms-global-product-list.php:119 +#: includes/admin/widgets/product-list.php:216 +msgid "Product Price" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:693 +#: includes/admin/class-mp-shortcode-builder.php:860 +#: includes/admin/class-mp-shortcode-builder.php:1304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:516 +#: includes/admin/widgets/ms-global-product-list.php:117 +#: includes/admin/widgets/product-list.php:215 +msgid "Number of Sales" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:692 +#: includes/admin/class-mp-shortcode-builder.php:859 +#: includes/admin/class-mp-shortcode-builder.php:1303 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:515 +#: includes/admin/widgets/product-list.php:214 +msgid "Product Author" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:691 +#: includes/admin/class-mp-shortcode-builder.php:858 +#: includes/admin/class-mp-shortcode-builder.php:1302 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:514 +#: includes/admin/widgets/product-list.php:213 +msgid "Product ID" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:690 +#: includes/admin/class-mp-shortcode-builder.php:857 +#: includes/admin/class-mp-shortcode-builder.php:1301 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:513 +#: includes/admin/widgets/ms-global-product-list.php:113 +#: includes/admin/widgets/product-list.php:212 +msgid "Publish Date" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:430 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:726 +msgid "Width" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:439 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:735 +msgid "Height" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:88 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:402 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:698 +msgid "Custom" +msgstr "" + +#: includes/common/class-mp-product.php:179 +#: includes/common/class-mp-product.php:992 +#: includes/common/class-mp-product.php:1000 +#: includes/multisite/template-functions.php:579 +msgid "Buy Now" +msgstr "" + +#: includes/common/class-mp-product.php:175 +#: includes/common/class-mp-product.php:990 +#: includes/common/class-mp-product.php:998 +msgid "Add To Cart" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:807 +msgid "Store Style" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1021 +msgid "Edit Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupon.php:580 +#: includes/admin/class-mp-ajax.php:238 +#: includes/admin/class-mp-products-admin.php:1532 +msgid "Unlimited" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1198 +msgid "Remaining Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1197 +msgid "Used" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:752 +#: includes/admin/class-mp-products-admin.php:2343 +msgid "Start Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:598 +msgid "Coupon Code" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:444 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:284 +msgid "Save Changes" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:57 +#: includes/admin/class-mp-shortcode-builder.php:716 +#: includes/admin/class-mp-shortcode-builder.php:727 +#: includes/admin/class-mp-shortcode-builder.php:883 +#: includes/admin/class-mp-shortcode-builder.php:894 +#: includes/admin/class-mp-shortcode-builder.php:946 +#: includes/admin/class-mp-shortcode-builder.php:956 +#: includes/admin/class-mp-shortcode-builder.php:1006 +#: includes/admin/class-mp-shortcode-builder.php:1327 +#: includes/admin/class-mp-shortcode-builder.php:1338 +#: includes/admin/store-settings/class-mp-store-settings-general.php:357 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:270 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:108 +#: includes/admin/widgets/ms-global-product-list.php:172 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:94 +msgid "None" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:352 +msgid "Google Analytics Ecommerce Tracking" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:310 +msgid "This option turns MarketPress into more of a product listing plugin, disabling shopping carts, checkout, and order management. This is useful if you simply want to list items you can buy in a store somewhere else, optionally linking the \"Buy Now\" buttons to an external site. Some examples are a car dealership, or linking to songs/albums in itunes, or linking to products on another site with your own affiliate links." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:304 +msgid "Whether or not customers must be registered and logged in to checkout. (Not recommended: Enabling this can lower conversions)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:258 +msgid "How many times may a customer download a file they have purchased? (It's best to set this higher than one in case they have any problems downloading)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:257 +msgid "Maximum Downloads" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:298 +msgid "This will set the product to draft if inventory of all variations is gone." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:288 +msgid "At what low stock count do you want to be warned for products you have enabled inventory tracking for?" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:208 +#: includes/admin/store-settings/class-mp-store-settings-general.php:287 +msgid "Inventory Warning Threshold" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:282 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:542 +msgid "Miscellaneous Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:429 +#: includes/multisite/class-mp-admin-multisite.php:247 +msgid "Show Decimal in Prices" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:451 +#: includes/admin/store-settings/class-mp-store-settings-general.php:403 +#: includes/multisite/class-mp-admin-multisite.php:221 +msgid "Currency Symbol Position" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:444 +#: includes/admin/store-settings/class-mp-store-settings-general.php:396 +msgid "Store Currency" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:429 +#: includes/admin/store-settings/class-mp-store-settings-general.php:381 +msgid "Currency Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:516 +msgid "Please see your local tax laws. Note if this is enabled and a downloadable only cart, rates will be the default for your base location." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:529 +msgid "Apply Tax to Downloadable Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:498 +msgid "Enabling this option allows you to enter and show all prices inclusive of tax, while still listing the tax total as a line item in shopping carts. Please see your local tax laws." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:497 +msgid "Enter Prices Inclusive of Tax?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:492 +msgid "Please see your local tax laws. Most areas charge tax on shipping fees." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:491 +msgid "Apply Tax To Shipping Fees?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:674 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:565 +#: includes/common/payment-gateways/authorizenet-aim.php:291 +#: includes/common/payment-gateways/authorizenet-aim.php:326 +#: includes/common/payment-gateways/payfast.php:347 +msgid "No" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:675 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:759 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:512 +#: includes/admin/class-mp-setup-wizard.php:518 +#: includes/admin/class-mp-setup-wizard.php:524 +#: includes/admin/class-mp-setup-wizard.php:530 +#: includes/admin/class-mp-setup-wizard.php:564 +#: includes/admin/store-settings/class-mp-store-settings-general.php:232 +#: includes/admin/store-settings/class-mp-store-settings-general.php:299 +#: includes/admin/store-settings/class-mp-store-settings-general.php:305 +#: includes/admin/store-settings/class-mp-store-settings-general.php:311 +#: includes/admin/store-settings/class-mp-store-settings-general.php:317 +#: includes/admin/store-settings/class-mp-store-settings-general.php:328 +#: includes/admin/store-settings/class-mp-store-settings-general.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:341 +#: includes/admin/store-settings/class-mp-store-settings-general.php:348 +#: includes/admin/store-settings/class-mp-store-settings-general.php:367 +#: includes/admin/store-settings/class-mp-store-settings-general.php:493 +#: includes/admin/store-settings/class-mp-store-settings-general.php:499 +#: includes/admin/store-settings/class-mp-store-settings-general.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:556 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:375 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:381 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:387 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:474 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:493 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:532 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:574 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:606 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:664 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:670 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:677 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:683 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:689 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:763 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:774 +#: includes/common/payment-gateways/_bitpay.php:250 +#: includes/common/payment-gateways/_bitpay.php:257 +#: includes/common/payment-gateways/_bitpay.php:264 +#: includes/common/payment-gateways/authorizenet-aim.php:290 +#: includes/common/payment-gateways/authorizenet-aim.php:325 +#: includes/common/payment-gateways/free_orders.php:160 +#: includes/common/payment-gateways/payfast.php:346 +#: includes/common/payment-gateways/paymill.php:162 +#: includes/common/payment-gateways/paypal-payflow.php:441 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-checkbox.php:22 +msgid "Yes" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:492 +#: includes/admin/store-settings/class-mp-store-settings-general.php:472 +msgid "%s Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:467 +#: includes/admin/store-settings/class-mp-store-settings-general.php:449 +msgid "Tax Settings" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:370 +#: includes/admin/store-settings/class-mp-store-settings-general.php:624 +msgid "Base Zip/Postal Code" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:354 +#: includes/admin/store-settings/class-mp-store-settings-general.php:608 +msgid "Base State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:589 +msgid "Base Country" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:582 +msgid "Location Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:195 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:800 +#: includes/multisite/class-mp-admin-multisite.php:172 +msgid "General Settings" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1945 +#: includes/admin/class-mp-products-admin.php:2185 +#: includes/admin/class-mp-store-settings-admin.php:111 +#: includes/admin/class-mp-store-settings-admin.php:266 +msgid "General" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:242 +msgid "Importers" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +#: includes/admin/class-mp-store-settings-admin.php:234 +msgid "Payments" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:313 +#: includes/admin/class-mp-store-settings-admin.php:112 +#: includes/admin/class-mp-store-settings-admin.php:222 +msgid "Presentation" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:916 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1015 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1018 +#: includes/admin/class-mp-dashboard-widgets.php:305 marketpress.php:702 +msgid "Coupons" +msgstr "" + +#: includes/admin/class-mp-admin.php:251 +msgid "Download »" +msgstr "" + +#: includes/admin/class-mp-admin.php:245 +#: includes/admin/class-mp-exporter-orders.php:170 +msgid "All Statuses" +msgstr "" + +#: includes/admin/class-mp-admin.php:209 +#: includes/admin/class-mp-exporter-orders.php:150 +#: includes/admin/class-mp-exporter-orders.php:178 +msgid "Export Orders" +msgstr "" + +#: includes/admin/class-mp-admin.php:228 +msgid "Show all dates" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:947 +msgid "Change Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:287 +msgid "Order Notes" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:478 +msgid "Other" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:205 +msgid "Subtotal" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:84 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:87 +#: includes/admin/class-mp-products-admin.php:1737 +#: includes/common/class-mp-cart.php:1409 +#: includes/common/class-mp-product.php:559 +msgid "Quantity" +msgstr "" + +#: includes/common/helpers.php:93 +msgid "Item" +msgstr "" + +#: includes/common/class-mp-order.php:1050 +msgid "Current Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:297 +msgid "Order Actions" +msgstr "" + +#: includes/common/class-mp-product.php:1084 +msgid "More Info »" +msgstr "" + +#: includes/common/class-mp-product.php:2313 +msgid "Low Product Inventory Notification" +msgstr "" + +#: includes/common/class-mp-order.php:338 includes/common/data.php:154 +msgid "New Order Notification: ORDERID" +msgstr "" + +#: includes/common/helpers.php:259 +msgid "Your payment for this order is complete." +msgstr "" + +#: includes/common/helpers.php:261 +msgid "Your payment for this order is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/helpers.php:256 +msgid "Payment Total:" +msgstr "" + +#: includes/common/helpers.php:253 +msgid "Transaction ID:" +msgstr "" + +#: includes/common/helpers.php:249 +msgid "Payment Type:" +msgstr "" + +#: includes/common/helpers.php:246 +msgid "Payment Method:" +msgstr "" + +#: includes/common/helpers.php:242 +msgid "Order Notes:" +msgstr "" + +#: includes/common/helpers.php:237 +msgid "Special Instructions:" +msgstr "" + +#: includes/common/helpers.php:232 +msgid "Tracking Number:" +msgstr "" + +#: includes/common/helpers.php:223 includes/common/helpers.php:226 +#: includes/common/helpers.php:228 +#: includes/common/shipping-modules/class-mp-shipping-api.php:406 +#: includes/common/shipping-modules/class-mp-shipping-api.php:428 +msgid "Shipping Method:" +msgstr "" + +#: includes/common/helpers.php:168 +msgid "No shipping required for this order." +msgstr "" + +#: includes/common/helpers.php:155 +msgid "Order Total:" +msgstr "" + +#: includes/common/class-mp-order.php:1025 +msgid "Taxes:" +msgstr "" + +#: includes/common/class-mp-order.php:1032 includes/common/helpers.php:144 +msgid "Shipping:" +msgstr "" + +#: includes/public/class-mp-checkout.php:367 +msgid "Street address, P.O. box, company name, c/o" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:314 +msgid "Shipping Info" +msgstr "" + +#: includes/public/class-mp-public.php:740 +msgid "Whoops, there was a problem loading up this file for your download. Please contact us for help." +msgstr "" + +#: includes/public/class-mp-public.php:683 +msgid "Sorry, our records show you've downloaded this file %d out of %d times allowed. Please contact us if you still need help." +msgstr "" + +#: includes/public/class-mp-public.php:634 +msgid "Sorry, your order has been marked as unpaid." +msgstr "" + +#: includes/public/class-mp-public.php:629 +msgid "Sorry, the link is invalid for this download." +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:15 +#: includes/admin/class-mp-products-admin.php:1172 +msgid "Cheatin’ uh?" +msgstr "" + +#: includes/public/class-mp-public.php:407 +#: includes/public/class-mp-short-codes.php:128 +msgid "Please enter a valid email address." +msgstr "" + +#: includes/admin/class-mp-ajax.php:191 +#: includes/admin/class-mp-products-admin.php:1821 +#: includes/admin/class-mp-products-admin.php:2010 +#: includes/admin/class-mp-products-admin.php:2267 +msgid "File URL" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1842 +msgid "External Link" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2177 +msgid "Add Variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:126 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:289 +msgid "Inventory" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:438 +#: includes/admin/class-mp-products-admin.php:578 +#: includes/admin/class-mp-products-admin.php:1552 +#: includes/admin/class-mp-products-admin.php:2053 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:134 +msgid "Sale Price" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "Variation Name" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1931 +msgid "Product Details" +msgstr "" + +#: includes/admin/class-mp-product-attributes-list-table.php:33 +msgid "Delete" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1057 +msgid "Trashed" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:231 +#: includes/admin/class-mp-orders-admin.php:1015 +#: includes/common/class-mp-order.php:1052 includes/common/helpers.php:97 +msgid "Total" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1196 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:210 +#: includes/admin/class-mp-orders-admin.php:1014 +msgid "Discount" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:221 +#: includes/admin/class-mp-orders-admin.php:1013 +#: includes/common/payment-gateways/_ideal.php:148 +#: includes/common/payment-gateways/_payway.php:134 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:108 +msgid "Tax" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:216 +#: includes/admin/class-mp-orders-admin.php:1012 +#: includes/admin/class-mp-products-admin.php:1958 +#: includes/admin/class-mp-products-admin.php:2198 +#: includes/admin/class-mp-store-settings-admin.php:114 +#: includes/admin/class-mp-store-settings-admin.php:230 +#: includes/common/class-mp-cart.php:717 includes/common/helpers.php:168 +#: includes/common/payment-gateways/_ideal.php:137 +#: includes/common/payment-gateways/_payway.php:116 +#: includes/public/class-mp-checkout.php:1304 +msgid "Shipping" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1011 +msgid "Items" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1010 +msgid "From" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:154 +#: includes/admin/class-mp-orders-admin.php:1009 +#: includes/common/class-mp-gdpr.php:370 +msgid "Order Date" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1008 +#: includes/common/class-mp-gdpr.php:366 +#: includes/common/template-functions.php:2134 +msgid "Order ID" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:22 +#: includes/admin/class-mp-orders-admin.php:1007 +msgid "Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1155 +msgid "N/A" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:243 +#: includes/admin/class-mp-products-admin.php:464 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:142 +msgid "Sales" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:463 +msgid "Stock" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:85 +#: includes/admin/class-mp-ajax.php:176 includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:434 +#: includes/admin/class-mp-products-admin.php:462 +#: includes/admin/class-mp-products-admin.php:576 +#: includes/admin/class-mp-products-admin.php:1519 +#: includes/admin/class-mp-products-admin.php:1569 +#: includes/admin/class-mp-products-admin.php:1950 +#: includes/admin/class-mp-products-admin.php:2059 +#: includes/admin/class-mp-products-admin.php:2190 +#: includes/admin/class-mp-products-admin.php:2330 +#: includes/common/class-mp-cart.php:1415 includes/common/helpers.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:130 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:276 +msgid "Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:173 +#: includes/admin/class-mp-products-admin.php:461 +#: includes/admin/class-mp-products-admin.php:1972 +#: includes/admin/class-mp-products-admin.php:2224 +msgid "SKU" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:459 +#: includes/admin/class-mp-products-admin.php:1793 +#: includes/admin/class-mp-products-admin.php:1805 +#: includes/admin/class-mp-products-admin.php:2163 +msgid "Variations" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:83 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:86 +#: includes/admin/class-mp-dashboard-widgets.php:134 +#: includes/admin/class-mp-products-admin.php:458 +#: includes/admin/class-mp-products-admin.php:837 +#: includes/admin/class-mp-shortcode-builder.php:689 +#: includes/admin/class-mp-shortcode-builder.php:856 +#: includes/admin/class-mp-shortcode-builder.php:1300 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:512 +#: includes/admin/widgets/ms-global-product-list.php:115 +#: includes/admin/widgets/product-list.php:211 +msgid "Product Name" +msgstr "" + +#: includes/common/template-functions.php:2575 +msgid "Categorized in " +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:305 +#: includes/common/payment-gateways/free_orders.php:176 +msgid "Payment Information" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:167 +#: includes/admin/class-mp-orders-admin.php:432 +#: includes/admin/class-mp-pages-admin.php:62 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:227 +#: includes/common/class-mp-gdpr.php:374 +#: includes/common/template-functions.php:175 +#: includes/common/template-functions.php:926 +msgid "Order Status" +msgstr "" + +#. translators: %s: orders closed +#: marketpress.php:327 +msgid "Closed (%s)" +msgid_plural "Closed (%s)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/admin/class-mp-admin.php:249 +#: includes/admin/class-mp-orders-admin.php:375 +#: includes/admin/class-mp-orders-admin.php:951 +#: includes/admin/class-mp-orders-admin.php:1053 +#: includes/admin/class-mp-orders-admin.php:1065 +#: includes/common/class-mp-gdpr.php:330 +#: includes/common/class-mp-order.php:1019 marketpress.php:325 +msgid "Closed" +msgstr "" + +#. translators: %s: shipped orders +#: marketpress.php:320 +msgid "Shipped (%s)" +msgid_plural "Shipped (%s)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/admin/class-mp-admin.php:248 +#: includes/admin/class-mp-orders-admin.php:376 +#: includes/admin/class-mp-orders-admin.php:950 +#: includes/admin/class-mp-orders-admin.php:1049 +#: includes/admin/class-mp-orders-admin.php:1064 +#: includes/common/class-mp-gdpr.php:329 +#: includes/common/class-mp-order.php:1002 marketpress.php:318 +msgid "Shipped" +msgstr "" + +#. translators: %s: paid orders +#: marketpress.php:313 +msgid "Paid (%s)" +msgid_plural "Paid (%s)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/admin/class-mp-admin.php:247 +#: includes/admin/class-mp-orders-admin.php:377 +#: includes/admin/class-mp-orders-admin.php:949 +#: includes/admin/class-mp-orders-admin.php:1045 +#: includes/admin/class-mp-orders-admin.php:1063 +#: includes/common/class-mp-gdpr.php:328 +#: includes/common/payment-gateways/2checkout.php:294 +#: includes/common/payment-gateways/_cubepoints.php:130 +#: includes/common/payment-gateways/authorizenet-aim.php:193 +#: includes/common/payment-gateways/free_orders.php:91 +#: includes/common/payment-gateways/mijireh.php:248 +#: includes/common/payment-gateways/paymill.php:273 +#: includes/common/payment-gateways/paypal-express.php:933 +#: includes/common/payment-gateways/paypal-express.php:967 +#: includes/common/payment-gateways/pin.php:258 +#: includes/common/payment-gateways/simplify.php:181 +#: includes/common/payment-gateways/stripe.php:368 +#: includes/common/payment-gateways/wepay.php:269 marketpress.php:311 +msgid "Paid" +msgstr "" + +#. translators: %s: orders received +#: marketpress.php:306 +msgid "Received (%s)" +msgid_plural "Received (%s)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/admin/class-mp-admin.php:246 +#: includes/admin/class-mp-orders-admin.php:378 +#: includes/admin/class-mp-orders-admin.php:1041 +#: includes/admin/class-mp-orders-admin.php:1062 +#: includes/common/class-mp-gdpr.php:327 includes/common/class-mp-order.php:995 +#: includes/common/payment-gateways/payfast.php:244 marketpress.php:304 +msgid "Received" +msgstr "" + +#: marketpress.php:268 +msgid "Search Orders" +msgstr "" + +#: marketpress.php:267 +msgid "View Order" +msgstr "" + +#: marketpress.php:262 +msgid "Order" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:301 +#: includes/admin/class-mp-orders-admin.php:989 marketpress.php:261 +msgid "Orders" +msgstr "" + +#: marketpress.php:228 +msgid "No Products found in Trash" +msgstr "" + +#: marketpress.php:227 +msgid "No Products Found" +msgstr "" + +#: marketpress.php:226 +msgid "Search Products" +msgstr "" + +#: marketpress.php:225 marketpress.php:229 +msgid "View Product" +msgstr "" + +#: marketpress.php:224 +msgid "New Product" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1022 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:258 +#: marketpress.php:223 +msgid "Edit" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1019 +msgid "Create New" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:687 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:698 +#: marketpress.php:217 +msgid "Product" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:307 +#: includes/common/template-functions.php:173 +#: includes/common/template-functions.php:179 +#: includes/common/template-functions.php:902 +#: includes/multisite/template-functions.php:82 marketpress.php:216 +#: marketpress.php:219 +msgid "Products" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:118 +#: includes/admin/widgets/product-tag-cloud.php:46 +#: includes/multisite/class-mp-admin-multisite.php:548 +msgid "Product Tags" +msgstr "" + +#: includes/common/template-functions.php:2906 +#: includes/multisite/template-functions.php:449 +msgid "Product Category" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:117 +#: includes/admin/widgets/categories.php:8 +#: includes/admin/widgets/categories.php:18 +#: includes/multisite/class-mp-admin-multisite.php:539 +msgid "Product Categories" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:332 +#: includes/common/template-functions.php:872 marketpress.php:218 +msgid "Store" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:60 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:209 +#: includes/admin/widgets/cart.php:8 includes/admin/widgets/cart.php:56 +#: includes/common/template-functions.php:174 +#: includes/common/template-functions.php:811 +msgid "Shopping Cart" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:110 +#: includes/admin/class-mp-store-settings-admin.php:218 +msgid "Store Settings" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:128 marketpress.php:607 +msgid "Settings" +msgstr "" + +#: includes/common/data.php:178 includes/common/data.php:190 +msgid "Your Order Has Been Shipped! (ORDERID)" +msgstr "" + +#: includes/common/data.php:159 includes/common/data.php:166 +#: includes/common/data.php:172 +msgid "Your Order Confirmation (ORDERID)" +msgstr "" + +#: includes/common/data.php:148 +msgid "

    Thank you for your order! We appreciate your business, and please come back often to check out our new products.

    " +msgstr "" + +#: includes/common/data.php:147 +msgid "

    You are almost done! Please do a final review of your order to make sure everything is correct then click the \"Confirm Payment\" button.

    " +msgstr "" + +#: includes/common/data.php:145 +msgid "

    Please enter your shipping information in the form below to proceed with your order.

    " +msgstr "" + +#: includes/common/data.php:143 +msgid "

    If you have any questions about your order please do not hesitate to contact us.

    " +msgstr "" + +#: includes/common/data.php:106 +msgid "tag" +msgstr "" + +#: includes/common/data.php:105 +msgid "category" +msgstr "" + +#: includes/common/data.php:104 +msgid "order-status" +msgstr "" + +#: includes/common/data.php:103 +msgid "shopping-cart" +msgstr "" + +#: includes/common/data.php:102 +msgid "products" +msgstr "" + +#. Translators: change default slugs here +#: includes/common/data.php:101 +msgid "store" +msgstr "" \ No newline at end of file diff --git a/languages/mp-sr.mo b/languages/mp-sr.mo new file mode 100644 index 0000000000000000000000000000000000000000..1fe2f535831176ec7549f238d9dbf35dbedfad1f GIT binary patch literal 10125 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 literal 0 HcmV?d00001 diff --git a/languages/mp-sr.po b/languages/mp-sr.po new file mode 100644 index 00000000..14004ecf --- /dev/null +++ b/languages/mp-sr.po @@ -0,0 +1,8964 @@ +# Translation of MarketPress in Serbian +# This file is distributed under the same license as the MarketPress package. +msgid "" +msgstr "" +"PO-Revision-Date: 2019-01-13 23:05:02+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: GlotPress/2.3.1\n" +"Language: sr_RS\n" +"Project-Id-Version: MarketPress\n" + +#: includes/public/class-mp-checkout.php:1285 +msgid "By clicking this checkbox you allow the website to process your personal data." +msgstr "" + +#: includes/common/class-mp-gdpr.php:382 +msgid "Order Info" +msgstr "" + +#: includes/common/class-mp-gdpr.php:268 +msgid "Shipping Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:267 +msgid "Shipping Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:266 +msgid "Shipping ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:265 +msgid "Shipping State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:264 +msgid "Shipping City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:263 +msgid "Shipping Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:262 +msgid "Shipping Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:261 +msgid "Shipping Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:260 +msgid "Shipping Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:259 +msgid "Shipping Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:258 +msgid "Shipping First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:254 +msgid "Billing Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:253 +msgid "Billing Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:252 +msgid "Billing ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:251 +msgid "Billing State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:250 +msgid "Billing City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:249 +msgid "Billing Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:248 +msgid "Billing Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:247 +msgid "Billing Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:246 +msgid "Billing Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:245 +msgid "Billing Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:244 +msgid "Billing First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:151 +msgid "Orders Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:139 +msgid "Customer Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:100 includes/common/class-mp-gdpr.php:116 +msgid "MarketPress User Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:81 +msgid "" +"In addition to standard WordPress session cookies, this site might be setting an\n" +"\t\t additional cookie to remember your cart settings. This cookie will last for one year." +msgstr "" + +#: includes/common/class-mp-gdpr.php:80 +msgid "Cookies" +msgstr "" + +#: includes/common/class-mp-gdpr.php:77 +msgid "" +"The following information will be collected in order to process orders: your name,\n" +"\t\t username, email address, avatar and profile URLs, address and phone number. This data can be\n" +"\t\t exported and removed." +msgstr "" + +#: includes/common/class-mp-gdpr.php:76 +msgid "Additional data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:71 +msgid "" +"This site might be using third party services and tools to process payments or/and\n" +"\t\t process shipping data when creating orders on the MarketPress store. These services include payment\n" +"\t\t gateways: 2Checkout, Authorize.net AIM, eWay shared payments, eWay Rapid 3.1 Payments, Mijireh,\n" +"\t\t Mollie, Paymill, PayPal, PIN, Simplify Commerce by MasterCard, Stripe and WePay; shipping gateways:\n" +"\t\t Fedex, UPS, USPS." +msgstr "" + +#: includes/common/class-mp-gdpr.php:70 +msgid "Third parties" +msgstr "" + +#: includes/admin/class-mp-admin.php:403 +msgid "Start creating store pages and products for your online shop here." +msgstr "" + +#: includes/admin/class-mp-admin.php:402 +msgid "Create Online Shop" +msgstr "" + +#: includes/admin/class-mp-admin.php:394 +msgid "Run Setup Wizard" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:234 +msgid "If having problems during invoice generation, add define( 'DOMPDF_ENABLE_HTML5PARSER', true ); to the wp-config.php file." +msgstr "" + +#: includes/public/class-mp-checkout.php:723 +msgid "Invalid Email" +msgstr "Pogrešna e-pošta" + +#: includes/public/class-mp-checkout.php:721 +#: includes/public/class-mp-checkout.php:729 +msgid "This field is required" +msgstr "Polje je obavezno" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:804 +msgid "This option changes the built-in css styles for store pages. For a custom css style, save your css file with the /* MarketPress Style: Your CSS Theme Name Here */ header line in the \"%s\" folder and it will appear in this list so you may select it. You should select \"None\" if you don't wish to use custom CSS styles or if you are using default theme templates or custom theme templates and css to make your own completely unique store design. For more information on custom theme templates click here »." +msgstr "Ova opcija menja postojeći css izgled za stranicu prodavnice. Za poseban css izgled, sačuvajte Vašu css datoteku sa /* MarketPress Style: Ime Vaše CSS teme upišite ovde */ header line in the \"%s\" direktorijum i ona će se pojaviti u ovoj listi tako da ćete moći da je odaberete. Potrebno je da odaberete \"Ništa\" ako ne želite da koristite poseban CSS izgled ili ako koristite podrazumevani predložak teme ili poseban predložak teme i css kako biste napravili Vaš lični, kompletno unikatni dizajn prodavnice. Za više informacija u vezi sa posebnim predloškom teme kliknite sledeće here »." + +#: includes/public/class-mp-public.php:421 +#: includes/public/class-mp-short-codes.php:142 +msgid "Please enter a value greater than or equal to {0}." +msgstr "Molim upišite vrednost veću od ili jednaku {0}." + +#: includes/public/class-mp-public.php:420 +#: includes/public/class-mp-short-codes.php:141 +msgid "Please enter a value less than or equal to {0}." +msgstr "Molim upišite vrednost manju ili jednaku {0}." + +#: includes/public/class-mp-public.php:419 +#: includes/public/class-mp-short-codes.php:140 +msgid "Please enter a value between {0} and {1}." +msgstr "Molim upišite vrednost između {0} i {1}." + +#: includes/public/class-mp-public.php:418 +#: includes/public/class-mp-short-codes.php:139 +msgid "Please enter a value between {0} and {1} characters long." +msgstr "Molim upišite vrednost između {0} i {1} karaktera." + +#: includes/public/class-mp-public.php:417 +#: includes/public/class-mp-short-codes.php:138 +msgid "Please enter at least {0} characters." +msgstr "Molim upišite najmanje {0} karaktera." + +#: includes/public/class-mp-public.php:416 +#: includes/public/class-mp-short-codes.php:137 +msgid "Please enter no more than {0} characters." +msgstr "Molim upišite ne više od {0} karaktera." + +#: includes/public/class-mp-public.php:415 +#: includes/public/class-mp-short-codes.php:136 +msgid "Please enter a value with a valid extension." +msgstr "Molim upišite vrednost sa odgovarajućom ekstenzijom." + +#: includes/public/class-mp-public.php:414 +#: includes/public/class-mp-short-codes.php:135 +msgid "Please enter the same value again." +msgstr "Molim upišite istu vrednost ponovo." + +#: includes/public/class-mp-public.php:413 +#: includes/public/class-mp-short-codes.php:134 +msgid "Please enter a valid credit card number." +msgstr "Molim upišite ispravan broj platne kartice." + +#: includes/public/class-mp-public.php:412 +#: includes/public/class-mp-short-codes.php:133 +msgid "Please enter only digits." +msgstr "Molim upišite samo brojeve." + +#: includes/public/class-mp-public.php:411 +#: includes/public/class-mp-short-codes.php:132 +msgid "Please enter a valid number." +msgstr "Molim upišite ispravan broj." + +#: includes/public/class-mp-public.php:410 +#: includes/public/class-mp-short-codes.php:131 +msgid "Please enter a valid date (ISO)." +msgstr "Molim upišite ispravan datum (ISO)" + +#: includes/public/class-mp-public.php:409 +#: includes/public/class-mp-short-codes.php:130 +msgid "Please enter a valid date." +msgstr "Molim upišite ispravan datum." + +#: includes/public/class-mp-public.php:408 +#: includes/public/class-mp-short-codes.php:129 +msgid "Please enter a valid URL." +msgstr "Molim unesite ispravan URL." + +#: includes/public/class-mp-public.php:406 +#: includes/public/class-mp-short-codes.php:127 +msgid "Please fix this field." +msgstr "Molim popravite ovo polje." + +#: includes/public/class-mp-checkout.php:1287 +#: includes/public/class-mp-public.php:405 +#: includes/public/class-mp-short-codes.php:126 +msgid "This field is required." +msgstr "Ovo polje je obavezno." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:810 +msgid "None - Without Special CSS-styles" +msgstr "Ništa - bez posebnog CSS-stila" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:809 +msgid "Default - Using Default CSS-styles" +msgstr "Podrazumevani - koristite podrazumevani CSS-stil" + +#: marketpress.php:739 +msgid "Enable multiple downloads per product" +msgstr "Omogućite više preuzimanja po proizvodu" + +#: marketpress.php:738 +msgid "Multiple Downloads" +msgstr "Višestruko preuzimanje" + +#: includes/public/class-mp-checkout.php:715 +msgid "Invalid Zip Code" +msgstr "Pogrešan Zip kod" + +#: includes/common/template-functions.php:2126 +msgid "Guest Email" +msgstr "E-pošta gosta" + +#: includes/common/payment-gateways/simplify.php:195 +msgid "There was a problem finalizing your purchase. Please re-enter your credit card information and try again" +msgstr "Postoji problem prilikom završne obrade Vaše porudžbine. Molim upišite ponovo podatke sa Vaše platne kartice i pokušajte ponovo " + +#: includes/common/class-mp-cart.php:565 includes/common/class-mp-order.php:600 +#: includes/common/helpers.php:111 +msgid "Download %1$s" +msgstr "Preuzimanje %1$s" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:331 +msgid "Export products to file" +msgstr "Izvezite proizvode u datoteku" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:328 +msgid "The import process uses the WordPress importer plugin." +msgstr "Proces uvoženja koristi WordPress uvozni dodatak " + +#: includes/admin/store-settings/class-mp-store-settings-import.php:326 +msgid "Import / Export Products" +msgstr "Uvezi / izvezi proizvode" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:325 +msgid "Export settings to file" +msgstr "Izvezi podešavanja u datoteku" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:324 +msgid "Import configuration" +msgstr "Uvezi konfiguraciju" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:320 +msgid "Use the text below to export to a new installation. Or paste in the new configuration to import." +msgstr "" +"Koristite tekst ispod da biste izvezli u novu instalaciju.\n" +"Ili \"nalepite\" u novu konfiguraciju za uvoz." + +#: includes/admin/store-settings/class-mp-store-settings-import.php:318 +msgid "Import / Export Settings" +msgstr "Uvezi / izvezi podešavanja" + +#. translators: URL to wp-admin/import.php +#: includes/admin/store-settings/class-mp-store-settings-import.php:266 +msgid "This importer is not installed. Please install importers from the main site." +msgstr "Uvoznik nije instaliran. Molim instalirajte uvoznik sa the main site." + +#: includes/admin/store-settings/class-mp-store-settings-import.php:261 +msgid "Install Now" +msgstr "Instaliraj sada" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:260 +msgid "Install %s" +msgstr "Instaliranje %s" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:240 +msgid "Run Importer" +msgstr "Pokrenite uvoznik" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:239 +msgid "Run %s" +msgstr "Pokrenuto %s" + +#: includes/admin/class-mp-store-settings-admin.php:258 +msgid "Import/Export" +msgstr "Uvoz/Izvoz" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1199 +msgid "Requires Login" +msgstr "Prijava je obavezna" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:737 +msgid "Optionally limit the user to some categories" +msgstr "Po želji možete ograničiti korisnika na neke kategorije" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:671 +msgid "Should this coupon only be available to logged in users?" +msgstr "Treba li da ovaj kupon bude dostupan samo prijavljenim korisnicima?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:670 +msgid "Require Login" +msgstr "Prijava je obavezna" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:655 +msgid "Mimimum number of products" +msgstr "Minimalan broj proizvoda" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:653 +msgid "Enter the minimum number of products in the cart that this coupon can be used." +msgstr "Upišite minimalan broj proizvoda u korpi za koji ovaj kupon može biti iskorišćen" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:648 +msgid "Can this coupon be limited to a number of products in the cart?" +msgstr "Može li ovaj kupon biti ograničen na određeni broj proizvoda u korpi?" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:334 +msgid "Add all values" +msgstr "Dodajte sve vrednosti" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:265 +msgid "Set as default variation." +msgstr "Postavite kao podrazumevajuću varijaciju." + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:154 +msgid "Set Default" +msgstr "Postavite podrazumevajuće" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:150 +msgid "More Info" +msgstr "Više informacija" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:40 +msgid "MarketPress - Quick Setup" +msgstr "MarketPress - brzo podešavanje" + +#: includes/public/class-mp-checkout.php:1399 +msgid "Proceed to checkout and create an account at the end." +msgstr "Nastavite sa plaćanjem i napravite nalog na kraju." + +#: includes/public/class-mp-checkout.php:1241 +#: includes/public/class-mp-checkout.php:1245 +msgid "Register account" +msgstr "Registrujte nalog" + +#: includes/public/class-mp-checkout.php:1233 +msgid "Register as customer?" +msgstr "Registruj kao kupac?" + +#: includes/public/class-mp-checkout.php:765 +msgid "

    Oops!

    Looks like you haven't added anything your cart. Let's go shopping!

    " +msgstr "

    Oops!

    Izgleda kao da niste ništa ubacili u Vašu korpu. Nastavite sa kupovinom!

    " + +#: includes/public/class-mp-checkout.php:763 +msgid "

    Oops!

    The cart is disabled.

    " +msgstr "

    Joj!

    Korpa je onemogućena.

    " + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing Information" +msgstr "Informacije u vezi sa plaćanjem" + +#: includes/multisite/class-mp-admin-multisite.php:214 +msgid "Global Currency" +msgstr "Globalna valuta" + +#: includes/multisite/class-mp-admin-multisite.php:198 +msgid "Global Store Currency" +msgstr "Globalna valuta prodavnice" + +#: includes/common/shipping-modules/mp-usps.php:507 +msgid "There are no shipping services available for this type of package in your location." +msgstr "Ne postoje usluge dostave za ovu vrstu paketa na vašoj lokaciji." + +#: includes/common/shipping-modules/mp-usps.php:168 +msgid "Using this USPS Shipping calculator requires requesting an Ecommerce API Username and Password. Get your free set of credentials here ». The password is no longer used for the API, just the username which you should enter below. The USPS test site has not yet been updated and currently doesn't work - you should just request activating your credentials with USPS and go live." +msgstr "Korišćenjem ovog kalkulatora USPS Dostave potrebno je zahtevati korisničko ime i lozinku za API za e-trgovinu. Uzmite svoj besplatni set akreditacija here ». Lozinka se više ne koristi za API, već samo korisničko ime koje treba da unesete ispod. USPS test sajt još uvek nije ažuriran i trenutno ne funkcioniše - trebalo bi samo da zatražite aktiviranje vaših akreditacija sa USPS-om i da se aktivira." + +#: includes/common/payment-gateways/stripe.php:339 +msgid "ZIP Code" +msgstr "Zip kod" + +#: includes/common/payment-gateways/stripe.php:334 +msgid "Last name" +msgstr "Prezime" + +#: includes/common/payment-gateways/stripe.php:333 +msgid "First name" +msgstr "Ime" + +#: includes/common/payment-gateways/manual-payments.php:150 +msgid "These are the manual payment instructions to display on the order confirmation screen. TOTAL will be replaced with the order total and ORDERID will be replaced with Order ID." +msgstr "Ovo su uputstva za manuelno plaćanje koja se prikazuju na ekranu za potvrdu porudžbine. TOTAL će biti zamenjeno sa ukupna porudžbina i ORDERID će biti zamenjen sa ID porudžbine." + +#: includes/common/payment-gateways/authorizenet-aim.php:240 +msgid "You must login to Authorize.net merchant dashboard to obtain the API login ID and API transaction key. Instructions »" +msgstr "Morate se prijaviti na kontrolnu tablu Authorize.net trgovca da biste dobili API ID za prijavu i ključ API transakcije. Instructions »" + +#: includes/common/payment-gateways/2checkout.php:327 +msgid "
    1. Set the \"Return Method\" within Site Management to Header Redirect and set the \"Return URL\" to %s
    2. Set your notifications url to %s
    " +msgstr "
    1. Podesite \"Metod povratka\" unutar Site Management u Preusmeravanje zaglavljai podesite \"Povratni URL\" u %s
    2. Postavite svoj notifications url u %s
    " + +#: includes/common/data.php:191 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Also, digital downloads included in your order are now ready to be downloaded. Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:185 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order is now available to download! Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:184 +msgid "Your Order Is Ready To Be Downloaded! (ORDERID)" +msgstr "" + +#: includes/common/data.php:179 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:173 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received, your digital goods are ready to be downloaded and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:167 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received and your digital goods are ready to be downloaded. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:160 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +" Your order has been received, and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information: \n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/class-mp-product.php:638 +msgid "You can not add more items to cart." +msgstr "" + +#: includes/common/class-mp-product.php:635 +msgid "You can only add {0} to cart." +msgstr "" + +#: includes/common/class-mp-product.php:625 +msgid "This product has an order limit of %d." +msgstr "" + +#: includes/common/class-mp-order.php:1454 +msgid "Shipped: tracking code: %s" +msgstr "" + +#: includes/common/class-mp-order.php:1000 +#: includes/common/class-mp-order.php:1012 +msgid "Finished" +msgstr "" + +#: includes/common/class-mp-order.php:858 +msgid "Contact Details" +msgstr "" + +#: includes/common/class-mp-order.php:339 includes/common/data.php:155 +msgid "" +"A new order (ORDERID) was created in your store:\n" +"\n" +" ORDERINFOSKU\n" +"\n" +" SHIPPINGINFO\n" +"\n" +" PAYMENTINFO\n" +"\n" +msgstr "\n" + +#: includes/common/class-mp-cart.php:1858 +msgid "Add again" +msgstr "" + +#: includes/common/class-mp-cart.php:1852 +msgid "was removed from Shopping Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1242 +#: includes/public/class-mp-short-codes.php:160 +msgid "Cart update notice: this item has a limit per order or you have reached the stock limit." +msgstr "" + +#: includes/admin/widgets/product-list.php:235 +msgid "Show Only Featured Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:533 +msgid "If enabled, users won't be able to filter products per category and/or to order by release date/name/price." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:531 +msgid "Hide Products Filter?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:353 +msgid "Notification to registration email instead of billing email?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:322 +msgid "Order Shipped - Mixed orders (with both digital and physical products)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:289 +msgid "Order Shipped - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:224 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:194 +msgid "New Order - Mixed" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:161 +msgid "New Order - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:115 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:243 +msgid "Mixed orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:110 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:238 +msgid "Digital downloads orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:105 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:233 +msgid "Physical orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:96 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed.
    For orders placed with manual payment, emails set here will be overriden by the one configured in manual payments settings, under payments settings page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:89 +msgid "Customer Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:47 +msgid "Admin Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:566 +msgid "Only contact details" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:565 +msgid "Full billing info" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:561 +msgid "Details Collection" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:548 +msgid "Digital Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:515 +msgid "Apply Tax to Digital Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:236 +msgid "product (default)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:231 +msgid "If you are experiencing conflicts with other e-commerce plugins change this setting. This will change the internal post type of all your products. Please note that changing this option may break 3rd party themes or plugins." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1203 +msgid "Hide details" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1202 +msgid "Show all changes" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1184 +msgid "Version %s" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1161 +msgid "Current" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1131 +msgid "%s changelog" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:952 +msgid "We did not find any data for this plugin or theme..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:285 +msgid "Activate WPMU DEV Dashboard" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:279 +msgid "Just one more step - activate the WPMU DEV Dashboard plugin and you're all done!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:277 +msgid "Important updates are available for your WPMU DEV plugins/themes. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:273 +msgid "Just one more step to enable updates and support for %s!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:271 +msgid "Important updates are available for %s. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:264 +msgid "activate" +msgstr "" + +#: includes/admin/class-mp-admin.php:398 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:248 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:289 +msgid "Dismiss" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:247 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:288 +msgid "Saving..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:244 +msgid "Install Plugin" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:238 +msgid "Almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:236 +msgid "Important updates are available for your WPMU DEV plugins/themes. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:232 +msgid "%s is almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:230 +msgid "Important updates are available for %s. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:223 +msgid "install" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1428 +msgid "Sets the number of Tags to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1289 +msgid "How many products to display in the product list if \"paginate\" is set to false." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:739 +#: includes/admin/class-mp-shortcode-builder.php:906 +#: includes/admin/class-mp-shortcode-builder.php:1350 +msgid "Grid" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:735 +#: includes/admin/class-mp-shortcode-builder.php:902 +#: includes/admin/class-mp-shortcode-builder.php:1346 +msgid "Products will be displayed as list or grid." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:206 +msgid "Display a cloud or list of your global product tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:205 +msgid "Display a list of your global categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:204 +msgid "Display a list or grid of your global products." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:181 +msgid "Display a list of featured products." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1451 +msgid "Is Featured?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1444 +msgid "Featured Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:581 +#: includes/admin/class-mp-products-admin.php:1580 +msgid "% discount" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:579 +msgid "OR" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:460 +#: includes/admin/class-mp-products-admin.php:586 +#: includes/admin/widgets/product-list.php:217 +msgid "Featured" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:536 +#: includes/admin/class-mp-orders-admin.php:538 +msgid "Tracking Link" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:508 +msgid "Shipping Tax" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:356 +msgid "Shipping Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:352 +msgid "Taxes Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:349 +msgid "Products Total" +msgstr "" + +#: includes/admin/class-mp-ajax.php:366 +msgid "Oops! You entered an invalid username/email and or password." +msgstr "" + +#: includes/admin/class-mp-ajax.php:254 +msgid "Percentage Discount" +msgstr "" + +#: includes/admin/class-mp-ajax.php:234 +msgid "Limit the Amount of Items per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:214 +msgid "Unused Attributes" +msgstr "" + +#: includes/admin/class-mp-admin.php:82 +msgid "Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-admin.php:79 +msgid "MarketPress setup is not complete! Once you've completed this quick setup wizard you'll have a fully working online store - exciting! " +msgstr "" + +#: marketpress.php:263 +msgctxt "mp_order" +msgid "Add New" +msgstr "" + +#: marketpress.php:184 +msgctxt "product_tag" +msgid "Product Tag" +msgstr "" + +#: marketpress.php:183 +msgctxt "product_tag" +msgid "Product Tags" +msgstr "" + +#: marketpress.php:150 +msgctxt "product_category" +msgid "Product Category" +msgstr "" + +#: marketpress.php:149 +msgctxt "product_category" +msgid "Product Categories" +msgstr "" + +#. Author URI of the plugin/theme +msgid "http://premium.wpmudev.org" +msgstr "" + +#: marketpress.php:729 +msgid "Invoice PDF" +msgstr "" + +#: marketpress.php:712 +msgid "Grant access to themes and gateways depending on the user's Pro Site level" +msgstr "" + +#: marketpress.php:711 +msgid "Pro Sites" +msgstr "" + +#: marketpress.php:703 +msgid "Offer and accept coupon codes" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:687 +msgid "Install %s Pages" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:682 +msgid "Welcome to %s – Install pages required by the plugin automatically." +msgstr "" + +#: marketpress.php:668 +msgid "Your pages were created successfully." +msgstr "" + +#: marketpress.php:436 +msgid "Add a Product" +msgstr "" + +#: marketpress.php:271 +msgid "Parent Order" +msgstr "" + +#: marketpress.php:270 +msgid "No orders found in trash" +msgstr "" + +#: marketpress.php:269 +msgid "No orders found" +msgstr "" + +#: marketpress.php:265 +msgid "Edit Order" +msgstr "" + +#: marketpress.php:264 +msgid "Add New Order" +msgstr "" + +#: marketpress.php:220 marketpress.php:221 +msgid "Add New Product" +msgstr "" + +#: marketpress.php:197 +msgid "No product tags found" +msgstr "" + +#: marketpress.php:196 +msgid "Choose from the most used product tags" +msgstr "" + +#: marketpress.php:195 +msgid "Add or remove product tags" +msgstr "" + +#: marketpress.php:194 +msgid "Separate product tags with commas" +msgstr "" + +#: marketpress.php:193 +msgid "Search Product Tags" +msgstr "" + +#: marketpress.php:192 +msgid "Parent Product Tag:" +msgstr "" + +#: marketpress.php:191 +msgid "Parent Product Tag" +msgstr "" + +#: marketpress.php:190 +msgid "New Product Tag Name" +msgstr "" + +#: marketpress.php:189 +msgid "Add New Product Tag" +msgstr "" + +#: marketpress.php:188 +msgid "Update Product Tag" +msgstr "" + +#: marketpress.php:187 +msgid "View Product Tag" +msgstr "" + +#: marketpress.php:186 +msgid "Edit Product Tag" +msgstr "" + +#: marketpress.php:185 +msgid "All Product Tags" +msgstr "" + +#: marketpress.php:163 +msgid "No product categories found" +msgstr "" + +#: marketpress.php:162 +msgid "Choose from the most used product categories" +msgstr "" + +#: marketpress.php:161 +msgid "Add or remove product categories" +msgstr "" + +#: marketpress.php:160 +msgid "Separate product categories with commas" +msgstr "" + +#: marketpress.php:159 +msgid "Search Product Categories" +msgstr "" + +#: marketpress.php:158 +msgid "Parent Product Category:" +msgstr "" + +#: marketpress.php:157 +msgid "Parent Product Category" +msgstr "" + +#: marketpress.php:156 +msgid "New Product Category Name" +msgstr "" + +#: marketpress.php:155 +msgid "Add New Product Category" +msgstr "" + +#: marketpress.php:154 +msgid "Update Product Category" +msgstr "" + +#: marketpress.php:153 +msgid "View Product Category" +msgstr "" + +#: marketpress.php:152 +msgid "Edit Product Category" +msgstr "" + +#: marketpress.php:151 +msgid "All Product Categories" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Please fix the %s1 and then try submitting the form again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Oops! The form contains %s1 which %s2 been highlighted below." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:660 +msgid "have" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:659 +msgid "has" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:651 +msgid "Value must be less than {0}" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:650 +msgid "Please enter only letters and numbers" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:539 +msgid "Due to prolonged inactivity on this page, one or more settings were not saved. Please try again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:535 +msgid "Settings Saved" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-user-select.php:22 +msgid "Select Some Users" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-section.php:18 +msgid "Section Title" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:425 +msgid "Are you sure you want to delete this?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:30 +msgid "Add Row" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-post-select.php:24 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-taxonomy-select.php:22 +msgid "Select Posts" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:210 +msgid "Add Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:129 +msgid "Select the image that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:93 +msgid "Select image(s) that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:79 +msgid "Select the image that you would like to use for this variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:48 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:82 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:68 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:132 +msgid "Select Image" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:31 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:160 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:168 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:19 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:115 +msgid "Select File" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:30 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:18 +msgid "Select the file that you would like to use." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:357 +msgid "Create Variations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:356 +msgid "Add Another Variant" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Insert a value and press ENTER" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "(e.g. White, Grey, Red etc.)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Variation Values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:333 +msgid "Or create new variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "(e.g. Color)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:303 +msgid "You are about to delete selected variants.
    If you want to continue please confirm." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:302 +msgid "Confirmation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:290 +msgid "Insert quantity available. Empty for unlimited." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:281 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:294 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:307 +msgid "Cancel" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:280 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:293 +msgid "Update" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:277 +msgid "Insert the price i.e. 25 or 25.50" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:115 +msgid "Img." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:85 +msgid "Add New Variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:79 +msgid "Delete Variants" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:78 +msgid "Update Prices" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:77 +msgid "Update Inventory" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:76 +msgid "Update Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:75 +msgid "Bulk Actions" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:73 +msgid "Select bulk action" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:196 +msgid "Configure Store" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:195 +msgid "Configure shipping rates, emails and your store's appearance. " +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:190 +msgid "Add Product" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:189 +msgid "Add your first product for sale and get familiar with adding products." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:184 +msgid "Your store is almost ready for its first customers, but first it needs some products. Get started by adding products below, or jump straight into further configuring your store’s settings." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:183 +msgid "Woohoo! Your online store is up and running." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:160 +msgid "Finish Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:124 +msgid "And what metric system do you want to use?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:113 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:142 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:159 +msgid "Back" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:109 +msgid "Do you want to apply tax for your products? You can customize this for each product and variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:105 +msgid "What currency do you want to sell with?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:93 +msgid "And, which countries do you want to sell to?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:89 +msgid "Where is your online store based?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:80 +msgid "Payment Gateway" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:79 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:123 +msgid "Metric System" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:78 +msgid "Currency & Tax" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:77 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:88 +msgid "Locations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:70 +msgid "Choose where you want to sell your stuff and what currency. Easy!" +msgstr "" + +#: includes/public/class-mp-checkout.php:1400 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:58 +msgid "Continue" +msgstr "" + +#: includes/admin/class-mp-admin.php:83 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:53 +msgid "Skip this step, I'll do this manually" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:49 +msgid "Install store pages" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:44 +msgid "Once you've completed this quick setup wizard you'll have a fully working online store - exciting! Start
    by creating the default store pages for the online store such as the cart, checkout and store pages." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:42 +msgid "MarketPress adds a full online store to your website, with heaps of configuration options and addons
    to suit your needs. It's really easy to get going, and only takes a few minutes to setup!" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:41 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:69 +msgid "Welcome to MarketPress - Quick Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-advanced-select.php:23 +msgid "Select Some Options" +msgstr "" + +#: includes/wpmudev-metaboxes/class-wpmudev-field.php:694 +msgid "You must the WPMUDEV_Field::display() method in your form field class" +msgstr "" + +#: includes/public/class-mp-short-codes.php:636 +msgid "Only %s left in stock..." +msgstr "" + +#: includes/public/class-mp-short-codes.php:633 +msgid "Unlimited stock" +msgstr "" + +#: includes/public/class-mp-short-codes.php:430 +msgid "product_id must be defined" +msgstr "" + +#: includes/public/class-mp-checkout.php:1250 +msgid "An account with this username already exists" +msgstr "" + +#: includes/public/class-mp-checkout.php:1394 +msgid "Continue as Guest" +msgstr "" + +#: includes/public/class-mp-checkout.php:1393 +msgid "Proceed to checkout and you'll have an opportunity to create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1392 +#: includes/public/class-mp-checkout.php:1398 +msgid "First-time customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1386 +msgid "Login" +msgstr "" + +#: includes/public/class-mp-checkout.php:1379 +msgid "E-Mail Address/Username" +msgstr "" + +#: includes/public/class-mp-checkout.php:1377 +msgid "Sign in to speed up the checkout process." +msgstr "" + +#: includes/public/class-mp-checkout.php:1376 +msgid "Have an account?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1297 +msgid "Shipping address different than billing?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1184 +msgid "There are no available gateways to process this payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1160 +msgid "Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:1123 +msgid "Oops! An error occurred while processing your payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1051 +msgid "Next Step »" +msgstr "" + +#: includes/public/class-mp-checkout.php:1045 +msgid "« Previous Step" +msgstr "" + +#: includes/public/class-mp-checkout.php:873 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:657 +msgid "error" +msgstr "" + +#: includes/public/class-mp-checkout.php:872 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:658 +msgid "errors" +msgstr "" + +#: includes/public/class-mp-checkout.php:871 +msgid "

    Oops! We found %d %s in the form below.

    Fields that have errors are highlighted in red below. Entering into a field will reveal the actual error that occurred.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:870 +msgid "Please enter a valid first and last name" +msgstr "" + +#: includes/public/class-mp-checkout.php:869 +msgid " Please enter a valid card security code" +msgstr "" + +#: includes/public/class-mp-checkout.php:868 +msgid "Please enter a valid card expiration" +msgstr "" + +#: includes/public/class-mp-checkout.php:773 +msgid "Javascript is required in order to checkout. Please enable Javascript in your browser and then refresh this page." +msgstr "" + +#: includes/public/class-mp-checkout.php:588 +msgid "An unknown error occurred. Please try again." +msgstr "" + +#: includes/public/class-mp-checkout.php:386 +msgid "Town/City" +msgstr "" + +#: includes/public/class-mp-checkout.php:380 +msgid "Apartment, suite, unit, building, floor, etc" +msgstr "" + +#: includes/public/class-mp-checkout.php:376 +msgid "Address Line 2" +msgstr "" + +#: includes/public/class-mp-checkout.php:363 +msgid "Address Line 1" +msgstr "" + +#: includes/common/class-mp-order.php:770 +#: includes/public/class-mp-checkout.php:354 +msgid "Company" +msgstr "" + +#: includes/public/class-mp-checkout.php:330 +msgid "Last" +msgstr "" + +#: includes/public/class-mp-checkout.php:321 +msgid "First" +msgstr "" + +#: includes/public/class-mp-checkout.php:284 +msgid "State/Province" +msgstr "" + +#: includes/public/class-mp-checkout.php:83 +msgid "Review Order/Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing/Shipping Address" +msgstr "" + +#: includes/public/class-mp-checkout.php:80 +msgid "Login/Register" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:530 +msgid "Marketplace" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:523 +msgid "Global Marketplace Pages" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +msgid "Store Network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +#: includes/multisite/class-mp-admin-multisite.php:494 +msgid "Store Network Settings" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:440 +msgid "Set theme access permissions for network stores. For a custom css theme, save your css file with the MarketPress Theme: NAME header in the /marketpress/ui/themes/ folder and it will appear in this list so you may select it." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:361 +msgid "Choose a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:336 +msgid "%d products get indexed" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:285 +msgid "Product Indexer" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:281 +msgid "Please hold on..." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:280 +msgid "Index Products" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:279 +msgid "%d products have been indexed in whole network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:182 +msgid "Enable Global Shopping Cart?" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:178 +msgid "Limit Global Widgets/Shortcodes To Main Blog?" +msgstr "" + +#: includes/common/template-functions.php:2802 +#: includes/multisite/template-functions.php:355 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:97 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:114 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:143 +msgid "Next" +msgstr "" + +#: includes/common/template-functions.php:2801 +#: includes/multisite/template-functions.php:354 +msgid "Prev" +msgstr "" + +#: includes/common/template-functions.php:2597 +msgid "Tagged in " +msgstr "" + +#: includes/common/template-functions.php:2196 +#: includes/common/template-functions.php:2202 +#: includes/common/template-functions.php:2214 +#: includes/common/template-functions.php:2217 +msgid "Oops! We couldn't locate any orders matching that order number. Please verify the order number and try again." +msgstr "" + +#: includes/common/template-functions.php:2138 +msgid "Look Up" +msgstr "" + +#: includes/common/template-functions.php:1423 +msgid "Please choose a shipping method" +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "If you have your order ID you can look it up using the form below." +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "Order Search" +msgstr "" + +#: includes/common/template-functions.php:910 +#: includes/public/class-mp-checkout.php:1440 +msgid "Cart" +msgstr "" + +#: includes/common/template-functions.php:895 +msgid "[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:887 +msgid "[mp_global_categories_list]" +msgstr "" + +#: includes/common/template-functions.php:880 +msgid "" +"Welcome to our market place!\n" +"\n" +"Check out our network of products:\n" +"\n" +"[mp_list_global_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_global_categories_list]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:879 +msgid "Global Store" +msgstr "" + +#: includes/common/template-functions.php:873 +msgid "" +"Welcome to our online store! Feel free to browse around:\n" +"\n" +"[mp_store_navigation]\n" +"\n" +"Check out our most popular products:\n" +"\n" +"[mp_popular_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_list_categories]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_tag_cloud]" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:127 +msgid "If cart weight is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:126 +msgid "Cart Weight" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:222 +msgid "Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:206 +msgid "Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:196 +msgid "Retail Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:195 +msgid "Online Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:193 +msgid "Rates Request Type" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:189 +msgid "Maximum Weight Per Package" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:195 +#: includes/common/shipping-modules/mp-usps.php:236 +msgid "Enter your standard box sizes as LengthxWidthxHeight (e.g. 12x8x6) For each box defined enter the maximum weight it can contain. Note: the shipping prices this plugin calculates are estimates. If they are consistently too low or too high, please check that the list of boxes above and the product weights are accurate and complete." +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:187 +msgid "Handling Charge Per Box Shipped" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:176 +#: includes/common/shipping-modules/mp-ups.php:181 +msgid "Offered Services" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:165 +msgid "Shipper Number" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:151 +msgid "User ID" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:144 +msgid "Developer Kit Access Key" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:140 +msgid "Use Sandbox Mode?" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:123 +msgid "In order to use UPS, you will need a UPS Developer Kit access key and the UPS user ID and password associated with the access key. Set these up for free here. If this information is missing or incorrect, an error will appear during the checkout process and the buyer will not be able to complete the transaction." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:112 +msgid "If cart total is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:111 +msgid "Cart Total" +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:95 +#: includes/common/shipping-modules/mp-weight-rate.php:111 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Don't worry about sorting as this will be done automatically upon saving." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:170 +msgid "Method Title (visible for clients)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:409 +#: includes/common/shipping-modules/mp-ups.php:216 +#: includes/common/shipping-modules/mp-usps.php:251 +msgid "Max Weight (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:402 +#: includes/common/shipping-modules/mp-ups.php:209 +#: includes/common/shipping-modules/mp-usps.php:247 +msgid "Size (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:387 +msgid "Enter your standard box sizes as LengthxWidthxHeight ( 12x8x6 ) For each box defined enter the maximum weight it can contain. Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:361 +#: includes/common/shipping-modules/mp-usps.php:229 +msgid "Handling Charge per International Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:353 +msgid "International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:339 +#: includes/common/shipping-modules/mp-usps.php:213 +msgid "Handling Charge per Domestic Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:331 +msgid "Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:321 +msgid "When checked the customer can chose Residential or Commercial delivery with Residential the default. Unchecked it's only Residential rates." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:320 +msgid "Allow Commercial Delivery?" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:315 +msgid "Fedex 10kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:314 +msgid "Fedex 25kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:313 +msgid "Fedex Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:312 +msgid "Fedex Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:311 +msgid "Fedex Pak" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:310 +msgid "Fedex Tube" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:306 +msgid "Default Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:294 +msgid "Dropoff Type" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:290 +msgid "Meter ID" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:134 +msgid "This is a residential address" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:283 +msgid "There was an error processing your card: \"%s\". Please check your credit card info and try again." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:121 +msgid "Wepay makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept cards directly on your site. You don't need a merchant account or gateway. WePay handles everything including storing cards. Credit cards go directly to WePay's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:385 +msgid "There was an error processing your card - \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:356 +msgid "%s Store Purchase - Order ID - %s, Email - %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:251 +msgid "Stripe makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept Visa, MasterCard, American Express, Discover, JCB, and Diners Club cards directly on your site. You don't need a merchant account or gateway. Stripe handles everything, including storing cards, subscriptions, and direct payouts to your bank account. Credit cards go directly to Stripe's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:192 +msgid "ZMW - Zambian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:191 +msgid "ZAR - South African Rand" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:190 +msgid "YER - Yemeni Rial" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:189 +msgid "XPF - Cfp Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:188 +msgid "XOF - West African Cfa Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:187 +msgid "XCD - East Caribbean Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:186 +msgid "XAF - Central African Cfa Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:185 +msgid "WST - Samoan Tala" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:184 +msgid "VUV - Vanuatu Vatu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:183 +msgid "VND - Vietnamese Đồng" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:182 +msgid "VEF - Venezuelan Bolívar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:181 +msgid "UZS - Uzbekistani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:180 +msgid "UYI - Uruguayan Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:178 +msgid "UGX - Ugandan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:177 +msgid "UAH - Ukrainian Hryvnia" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:176 +msgid "TZS - Tanzanian Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:175 +msgid "TWD - New Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:174 +msgid "TTD - Trinidad and Tobago Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:172 +msgid "TOP - Tongan Paʻanga" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:171 +msgid "TJS - Tajikistani Somoni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:169 +msgid "SZL - Swazi Lilangeni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:168 +msgid "SVC - Salvadoran Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:167 +msgid "STD - São Tomé and Príncipe Dobra" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:166 +msgid "SRD - Surinamese Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:165 +msgid "SOS - Somali Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:164 +msgid "SLL - Sierra Leonean Leone" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:163 +msgid "SHP - Saint Helenian Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:160 +msgid "SCR - Seychellois Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:159 +msgid "SBD - Solomon Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:157 +msgid "RWF - Rwandan Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:156 +msgid "RUB - Russian Ruble" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:155 +msgid "RSD - Serbian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:154 +msgid "RON - Romanian Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:153 +msgid "QAR - Qatari Riyal" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:152 +msgid "PYG - Paraguayan Guaraní*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:151 +msgid "PLN - Polish Złoty" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:150 +msgid "PKR - Pakistani Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:149 +msgid "PHP - Philippine Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:148 +msgid "PGK - Papua New Guinean Kina" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:147 +msgid "PEN - Peruvian Nuevo Sol*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:146 +msgid "PAB - Panamanian Balboa*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:144 +msgid "NPR - Nepalese Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:142 +msgid "NIO - Nicaraguan Córdoba*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:141 +msgid "NGN - Nigerian Naira" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:140 +msgid "NAD - Namibian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:139 +msgid "MZN - Mozambican Metical" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:137 +msgid "MXN - Mexican Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:136 +msgid "MWK - Malawian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:135 +msgid "MVR - Maldivian Rufiyaa" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:134 +msgid "MUR - Mauritian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:133 +msgid "MRO - Mauritanian Ouguiya" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:132 +msgid "MOP - Macanese Pataca" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:131 +msgid "MNT - Mongolian Tögrög" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:130 +msgid "MKD - Macedonian Denar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:129 +msgid "MGA - Malagasy Ariary" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:128 +msgid "MDL - Moldovan Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:126 +msgid "LVL - Latvian Lats" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:124 +msgid "LSL - Lesotho Loti" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:123 +msgid "LRD - Liberian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:122 +msgid "LKR - Sri Lankan Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:121 +msgid "LBP - Lebanese Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:120 +msgid "LAK - Lao Kip*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:119 +msgid "KZT - Kazakhstani Tenge" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:118 +msgid "KYD - Cayman Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:117 +msgid "KRW - South Korean Won" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:116 +msgid "KMF - Comorian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:115 +msgid "KHR - Cambodian Riel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:114 +msgid "KGS - Kyrgyzstani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:113 +msgid "KES - Kenyan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:111 +msgid "JMD - Jamaican Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:110 +msgid "ISK - Icelandic Króna" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:109 +msgid "INR - Indian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:108 +msgid "ILS - Israeli New Sheqel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:107 +msgid "IDR - Indonesian Rupiah" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:105 +msgid "HTG - Haitian Gourde" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:103 +msgid "HNL - Honduran Lempira*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:101 +msgid "GYD - Guyanese Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:100 +msgid "GTQ - Guatemalan Quetzal*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:99 +msgid "GNF - Guinean Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:98 +msgid "GMD - Gambian Dalasi" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:97 +msgid "GIP - Gibraltar Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:96 +msgid "GEL - Georgian Lari" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:94 +msgid "FKP - Falkland Islands Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:93 +msgid "FJD - Fijian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:91 +msgid "ETB - Ethiopian Birr" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:90 +msgid "EGP - Egyptian Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:89 +msgid "EEK - Estonian Kroon*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:88 +msgid "DZD - Algerian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:87 +msgid "DOP - Dominican Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:85 +msgid "DJF - Djiboutian Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:84 +msgid "CZK - Czech Koruna*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:83 +msgid "CVE - Cape Verdean Escudo*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:82 +msgid "CRC - Costa Rican Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:81 +msgid "COP - Colombian Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:80 +msgid "CNY - Chinese Renminbi Yuan" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:79 +msgid "CLP - Chilean Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:77 +msgid "CDF - Congolese Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:76 +msgid "CAD - Canadian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:75 +msgid "BZD - Belize Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:74 +msgid "BWP - Botswana Pula" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:73 +msgid "BSD - Bahamian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:72 +msgid "BRL - Brazilian Real*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:71 +msgid "BOB - Bolivian Boliviano*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:70 +msgid "BND - Brunei Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:69 +msgid "BMD - Bermudian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:68 +msgid "BIF - Burundian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:67 +msgid "BGN - Bulgarian Lev" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:66 +msgid "BDT - Bangladeshi Taka" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:65 +msgid "BBD - Barbadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:64 +msgid "BAM - Bosnia & Herzegovina Convertible Mark" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:63 +msgid "AZN - Azerbaijani Manat" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:62 +msgid "AWG - Aruban Florin" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:61 +msgid "AUD - Australian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:60 +msgid "ARS - Argentine Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:59 +msgid "AOA - Angolan Kwanza*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:58 +msgid "ANG - Netherlands Antillean Gulden" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:57 +msgid "AMD - Armenian Dram" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:56 +msgid "ALL - Albanian Lek" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:55 +msgid "AFN - Afghan Afghani*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:54 +msgid "AED - United Arab Emirates Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:345 +msgid "Skrill balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:327 +msgid "Skrill IPN message received." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:283 +msgid "Skrill" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:278 +msgid "Pending payment" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:144 +msgid "The secret word must match the word submitted in the \"Merchant Tools\" section of your Skrill account." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:134 +msgid "You must use your valid Skrill merchant email. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:133 +msgid "Skrill Email" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:123 +msgid "Resell your inventory via Skrill.com (Moneybookers)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:95 +msgid "ZAR - South-African Rand" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:93 +msgid "TWD - Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:92 +msgid "TRY - New Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:91 +msgid "TND - Tunisian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:90 +msgid "THB - Thailand Baht" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:89 +msgid "SKK - Slovakian Koruna" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:86 +#: includes/common/payment-gateways/stripe.php:158 +msgid "SAR - Saudi Riyal" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:85 +msgid "RSD - Serbian dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:83 +msgid "QAR - Qatari Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:81 +msgid "OMR - Omani Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:80 +msgid "NOK - Norwegian Krone " +msgstr "" + +#: includes/common/payment-gateways/skrill.php:78 +#: includes/common/payment-gateways/stripe.php:138 +msgid "MYR - Malaysian Ringgit" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:77 +#: includes/common/payment-gateways/stripe.php:127 +msgid "MAD - Moroccan Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:74 +msgid "KRW - South-Korean Won" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:72 +msgid "JOD - Jordanian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:70 +msgid "INR - Indian Rupee" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:63 +msgid "EEK - Estonian Kroon" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:56 +msgid "AED - Utd. Arab Emir. Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:52 +msgid "Turkish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:51 +msgid "Swedish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:50 +msgid "Spanish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:49 +msgid "Russian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:48 +msgid "Romainian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:47 +msgid "Polish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:46 +msgid "Italian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:45 +msgid "Greek" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:44 +msgid "German" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:43 +msgid "French" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:42 +msgid "Finnish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:41 +msgid "English" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:40 +msgid "Dutch" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:39 +msgid "Danish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:38 +msgid "Czech" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:37 +msgid "Chinese" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:201 +msgid "There was an error processing your card: %s. Please re-enter your credit card info and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:278 +msgid "
  • There was an error processing your card: \"%s\". Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:274 +msgid "
  • There was an error processing your card. Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:177 +#: includes/common/payment-gateways/stripe.php:279 +msgid "Publishable Key" +msgstr "" + +#: includes/common/payment-gateways/pin.php:163 +msgid "API Credentials?" +msgstr "" + +#: includes/common/payment-gateways/pin.php:147 +msgid "PIN makes it easy to start accepting credit card payments with Australia’s first all-in-one online payment system. Accept all major credit cards directly on your site. Your sales proceeds are deposited to any Australian bank account, no merchant account required." +msgstr "" + +#: includes/common/payment-gateways/pin.php:57 +#: includes/common/payment-gateways/stripe.php:179 +msgid "USD - United States Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:455 +msgid "Email Footer" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:445 +msgid "Email Header" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:416 +msgid "Partner" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:409 +msgid "Vendor" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:852 +#: includes/common/payment-gateways/paypal-express.php:1126 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences\t section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:749 +msgid "Page Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:744 +msgid "Header Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:739 +msgid "Header Border Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:734 +msgid "Header Image" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:680 +msgid "Locale" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:624 +#: includes/common/payment-gateways/paypal-express.php:658 +msgid "Merchant Email" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:645 +msgid "Paypal Express Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:603 +msgid "Paypal Express Network Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:861 +msgid "Application ID (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:854 +msgid "Signature (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:847 +msgid "API Password (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:839 +msgid "API Username (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:832 +msgid "Signature (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:825 +msgid "API Password (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:817 +msgid "API Username (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:799 +msgid "This message is displayed at the top of the gateway settings page to store admins. It's a good place to inform them of your fees or put any sales messages." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:787 +msgid "Please enter your PayPal email address or business ID you want to recieve fees at." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:786 +msgid "PayPal E-mail" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:772 +msgid "Fees to Collect (%)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:375 +#: includes/public/class-mp-checkout.php:341 +msgid "Email Address" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:299 +msgid "Sorry, your order was not completed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:126 +#: includes/common/payment-gateways/paypal-express.php:780 +msgid "You will be redirected to the PayPal site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:90 +#: includes/common/payment-gateways/skrill.php:94 +msgid "USD - U.S. Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:89 +msgid "TRY - Turkish lira" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:88 +#: includes/common/payment-gateways/stripe.php:170 +msgid "THB - Thai Baht" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:87 +msgid "TWD - Taiwan New Dollars" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:86 +#: includes/common/payment-gateways/pin.php:59 +#: includes/common/payment-gateways/skrill.php:88 +#: includes/common/payment-gateways/stripe.php:162 +msgid "SGD - Singapore Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:84 +msgid "RUB - Russian Rubles" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:82 +msgid "PHP - Philippine Pesos" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:81 +#: includes/common/payment-gateways/pin.php:58 +#: includes/common/payment-gateways/skrill.php:79 +#: includes/common/payment-gateways/stripe.php:145 +msgid "NZD - New Zealand Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:79 +msgid "MXN - Mexican Peso" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:78 +msgid "MYR - Malaysian Ringgits" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:77 +#: includes/common/payment-gateways/pin.php:64 +#: includes/common/payment-gateways/skrill.php:73 +#: includes/common/payment-gateways/stripe.php:112 +msgid "JPY - Japanese Yen" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:75 +#: includes/common/payment-gateways/pin.php:63 +#: includes/common/payment-gateways/skrill.php:66 +#: includes/common/payment-gateways/stripe.php:102 +msgid "HKD - Hong Kong Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:73 +msgid "GBP - Pound Sterling" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:68 +#: includes/common/payment-gateways/pin.php:62 +#: includes/common/payment-gateways/skrill.php:59 +msgid "CAD - Canadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:67 +msgid "BRL - Brazilian Real" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:66 +#: includes/common/payment-gateways/pin.php:56 +#: includes/common/payment-gateways/skrill.php:57 +msgid "AUD - Australian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:288 +msgid "There was an error processing your card: \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:163 +msgid "When running on a live site, Paymill recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:161 +#: includes/common/payment-gateways/pin.php:157 +#: includes/common/payment-gateways/simplify.php:103 +#: includes/common/payment-gateways/stripe.php:260 +#: includes/common/payment-gateways/wepay.php:153 +msgid "Force SSL?" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:151 +msgid "Accept Visa, Mastercard, Maestro UK, Discover and Solo cards directly on your site. You don't need a merchant account or gateway. Credit cards go directly to Paymill's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:131 +msgid "CVV2" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:72 +#: includes/common/payment-gateways/pin.php:61 +#: includes/common/payment-gateways/skrill.php:65 +#: includes/common/payment-gateways/stripe.php:95 +msgid "GBP - British Pound" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:71 +#: includes/common/payment-gateways/stripe.php:173 +msgid "TRY - Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:70 +#: includes/common/payment-gateways/paypal-chained-payments.php:85 +#: includes/common/payment-gateways/skrill.php:87 +#: includes/common/payment-gateways/stripe.php:161 +msgid "SEK - Swedish Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:69 +#: includes/common/payment-gateways/skrill.php:84 +msgid "RON - Romanian Leu New" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:68 +#: includes/common/payment-gateways/paypal-chained-payments.php:83 +#: includes/common/payment-gateways/skrill.php:82 +msgid "PLN - Polish Zloty" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:67 +#: includes/common/payment-gateways/paypal-chained-payments.php:80 +#: includes/common/payment-gateways/stripe.php:143 +msgid "NOK - Norwegian Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:66 +#: includes/common/payment-gateways/skrill.php:75 +#: includes/common/payment-gateways/stripe.php:125 +msgid "LTL - Lithuanian Litas" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:65 +#: includes/common/payment-gateways/paypal-chained-payments.php:69 +#: includes/common/payment-gateways/skrill.php:60 +#: includes/common/payment-gateways/stripe.php:78 +msgid "CHF - Swiss Franc" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:64 +#: includes/common/payment-gateways/skrill.php:76 +msgid "LVL - Latvian Lat" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:63 +#: includes/common/payment-gateways/paypal-chained-payments.php:74 +#: includes/common/payment-gateways/skrill.php:69 +msgid "ILS - Israeli Shekel" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:62 +#: includes/common/payment-gateways/skrill.php:71 +msgid "ISK - Iceland Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:61 +#: includes/common/payment-gateways/paypal-chained-payments.php:76 +#: includes/common/payment-gateways/skrill.php:68 +#: includes/common/payment-gateways/stripe.php:106 +msgid "HUF - Hungarian Forint" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:60 +#: includes/common/payment-gateways/paypal-chained-payments.php:71 +#: includes/common/payment-gateways/skrill.php:62 +#: includes/common/payment-gateways/stripe.php:86 +msgid "DKK - Danish Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:59 +#: includes/common/payment-gateways/skrill.php:67 +#: includes/common/payment-gateways/stripe.php:104 +msgid "HRK - Croatian Kuna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:58 +#: includes/common/payment-gateways/paypal-chained-payments.php:70 +#: includes/common/payment-gateways/skrill.php:61 +msgid "CZK - Czech Koruna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:57 +#: includes/common/payment-gateways/skrill.php:58 +msgid "BGN - Bulgarian Leva" +msgstr "" + +#: includes/common/payment-gateways/payflow/class-mp-gateway-worker-payflow.php:123 +msgid "There was an error connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:344 +msgid "This setting will log all PayFast communication to the \"payfast.log\" file." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:342 +msgid "Log Debugging Info?" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:335 +msgid "DO NOT INPUT A VALUE UNLESS YOU HAVE SET ONE IN THE SETTINGS SECTION OF YOUR PAYFAST SETTINGS." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:333 +msgid "PayFast Passphrase" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:323 +msgid "You can find your credentials on your integration page." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:321 +msgid "PayFast Merchant Credentials" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:311 +msgid "PayFast Mode" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:308 +msgid "PayFast is a payments processing service for South Africa. We make it safe for buyers to send money and easy for sellers to receive money. More Info »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:306 +msgid "PayFast Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:285 +msgid "Your payment via PayFast for this order totaling %s is complete. The transaction number is %s." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:278 +msgid "Your payment via PayFast for this order totaling %s is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:124 +msgid "Your PayFast transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:82 +#: includes/common/payment-gateways/payfast.php:83 +msgid "PayFast" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:157 +msgid "API error: - \"%s\"" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:198 +msgid "The payment request is under process" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:140 +msgid "Order: #" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:116 +msgid "You will be redirected to the Mollie site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:73 +msgid "%sMollie%s provides a fully PCI Compliant and secure way to collect payments via iDeal, Credit Card, Bancontact / Mister Cash, SOFORT Banking, Overbooking, Bitcoin, PayPal, paysafecard and AcceptEmail." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:53 +#: includes/common/payment-gateways/mollie.php:54 +#: includes/common/payment-gateways/mollie.php:195 +#: includes/common/payment-gateways/mollie.php:245 +msgid "Mollie" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:50 +#: includes/common/payment-gateways/paymill.php:56 +#: includes/common/payment-gateways/paypal-chained-payments.php:72 +#: includes/common/payment-gateways/pin.php:60 +#: includes/common/payment-gateways/skrill.php:64 +#: includes/common/payment-gateways/stripe.php:92 +msgid "EUR - Euro" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:306 +msgid "Access Key" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:300 +msgid "You must login to the Mijireh.com dashboard to obtain the Access Key." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:299 +msgid "Credentials" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:289 +msgid "Mijireh Checkout provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:269 +msgid "Mijireh Error: " +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:89 +msgid "You will be redirected to the Mijireh.com site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:87 +msgid "Your Mijireh transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:42 +#: includes/common/payment-gateways/mijireh.php:43 +#: includes/common/payment-gateways/mijireh.php:324 +msgid "Mijireh" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:145 +msgid "These are the manual payment instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:189 +msgid "This is the email text to send to those who have made free order checkouts. You should include your free order instructions / information here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:183 +msgid "This is the free order information to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:182 +msgid "Confirmation User Information" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:177 +msgid "This is the information to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:163 +msgid "If enabled, all free orders will be automatically marked as paid." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:159 +msgid "Payment Status" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:149 +msgid "This gateway is automatically activated if order totalling 0 and it can't be disabled" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:35 +#: includes/common/payment-gateways/free_orders.php:36 +#: includes/common/payment-gateways/free_orders.php:89 +msgid "Free Order" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:34 +#: includes/common/payment-gateways/free_orders.php:197 +msgid "Free Orders" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:515 +msgid "Sandbox API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:266 +#: includes/common/payment-gateways/eway31.php:542 +msgid "eWay Rapid 3.1 Payments (beta)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:403 +msgid "Hosted Payment Page Language" +msgstr "" + +#: includes/common/payment-gateways/eway.php:373 +msgid "Note when testing in sandbox mode it will use the default eWay test API credentials. Also, please note that cart total needs to be a whole number (e.g. 10.00) in order to generate a successful transaction, otherwise the transaction will fail." +msgstr "" + +#: includes/common/payment-gateways/eway.php:267 +msgid "You will be redirected to https://www.eway.com.au to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:380 +msgid "You have chosen to checkout using %s. Please confirm your order details and click \"Submit Order\" when finished." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:272 +#: includes/common/payment-gateways/paymill.php:131 +#: includes/common/payment-gateways/stripe.php:231 +msgid "Security Code " +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Enter in MM/YYYY or MM/YY format" +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Expiration" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:321 +msgid "Delim Data" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:307 +#: includes/common/payment-gateways/paypal-payflow.php:456 +msgid "This text will appear as the footer of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:287 +#: includes/common/payment-gateways/paypal-payflow.php:440 +msgid "Email Customer (on success)" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:278 +msgid "Authorize.net default is \",\". Otherwise, get this from your credit card processor. If the transactions are not going through, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:277 +msgid "Delimeter Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:193 +msgid "Held For Review" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:310 +#: includes/common/payment-gateways/payfast.php:314 +msgid "Test" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:300 +#: includes/common/payment-gateways/pin.php:170 +#: includes/common/payment-gateways/stripe.php:272 +msgid "Secret Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:283 +msgid "Select Your Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:97 +msgid "Your payment will be processed by the iDEAL network" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:208 +msgid "These are the CubePoints to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:203 +msgid "These are the CubePoints instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:266 +msgid "If enabled, all API calls will be made to https://test.bitpay.com." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:263 +msgid "Use Test Mode?" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:259 +msgid "If checked, response fron bitpay will be stored in log file, keep it disabled unless required." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:256 +msgid "Enable Debug Log" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:249 +msgid "Full Notifications" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:231 +#: includes/common/payment-gateways/eway31.php:499 +#: includes/common/payment-gateways/eway31.php:526 +#: includes/common/payment-gateways/mollie.php:83 +#: includes/common/shipping-modules/mp-fedex.php:269 +msgid "API Key" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:222 +msgid "You can now accept a payment from any country on Earth, with no risk of fraud. To use Bitpay, you need to signup on Bitpay. \\n After completing the signup process, you can get api keys at Bitpay API key. You can read more about Bitpay at Bitpay API. \\n Bitpay requires SSL(https) for payment notifications to work." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:61 +msgid "You will be redirected to bitpay.com, for bitcoin payment. It is completely safe." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:346 +msgid "You must login to the 2Checkout vendor dashboard to obtain the seller ID and secret word. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:345 +#: includes/common/payment-gateways/authorizenet-aim.php:239 +#: includes/common/payment-gateways/paymill.php:168 +#: includes/common/payment-gateways/paypal-express.php:704 +#: includes/common/payment-gateways/simplify.php:80 +#: includes/common/payment-gateways/stripe.php:265 +#: includes/common/payment-gateways/wepay.php:158 +msgid "API Credentials" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:325 +#: includes/common/payment-gateways/_bitpay.php:220 +#: includes/common/payment-gateways/_cubepoints.php:185 +#: includes/common/payment-gateways/_ideal.php:268 +#: includes/common/payment-gateways/_payway.php:255 +#: includes/common/payment-gateways/authorizenet-aim.php:219 +#: includes/common/payment-gateways/eway.php:352 +#: includes/common/payment-gateways/eway31.php:460 +#: includes/common/payment-gateways/free_orders.php:147 +#: includes/common/payment-gateways/manual-payments.php:126 +#: includes/common/payment-gateways/mijireh.php:287 +#: includes/common/payment-gateways/mollie.php:71 +#: includes/common/payment-gateways/paymill.php:149 +#: includes/common/payment-gateways/paypal-chained-payments.php:344 +#: includes/common/payment-gateways/paypal-payflow.php:376 +#: includes/common/payment-gateways/pin.php:145 +#: includes/common/payment-gateways/simplify.php:69 +#: includes/common/payment-gateways/skrill.php:121 +#: includes/common/payment-gateways/stripe.php:249 +#: includes/common/payment-gateways/wepay.php:119 +#: includes/common/shipping-modules/mp-fedex.php:243 +#: includes/common/shipping-modules/mp-flat-rate.php:63 +#: includes/common/shipping-modules/mp-pickup.php:140 +#: includes/common/shipping-modules/mp-table-rate.php:94 +#: includes/common/shipping-modules/mp-ups.php:122 +#: includes/common/shipping-modules/mp-usps.php:167 +#: includes/common/shipping-modules/mp-weight-rate.php:110 +msgid "%s Settings" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:136 +msgid "You will be redirected to the 2Checkout site to finalize your payment." +msgstr "" + +#: includes/common/helpers.php:169 includes/public/class-mp-checkout.php:1277 +msgid "Billing" +msgstr "" + +#: includes/common/helpers.php:144 +msgid "FREE" +msgstr "" + +#: includes/common/helpers.php:134 +msgid "Coupons:" +msgstr "" + +#: includes/common/helpers.php:95 +msgid "Qty" +msgstr "" + +#: includes/common/helpers.php:94 +msgid "Sku" +msgstr "" + +#: includes/common/data.php:59 +msgid "Zip Code" +msgstr "" + +#: includes/common/class-mp-taxes.php:336 +msgid "Standard Table" +msgstr "" + +#: includes/common/class-mp-product.php:2698 +msgid "Tweet" +msgstr "" + +#: includes/common/class-mp-product.php:2321 +msgid "Notification Preferences: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2320 +msgid "Edit Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2318 +msgid "Link: %s

    " +msgstr "" + +#: includes/common/class-mp-product.php:2317 +msgid "Current Inventory: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2316 +msgid "Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2314 +msgid "This message is being sent to notify you of low stock of a product in your online store according to your preferences.

    " +msgstr "" + +#: includes/common/class-mp-product.php:1817 +msgid "" +msgstr "" + +#: includes/common/class-mp-product.php:1427 +#: includes/common/class-mp-product.php:1430 +msgid "(tax incl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1422 +#: includes/common/class-mp-product.php:1425 +msgid "(tax excl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1300 +#: includes/common/class-mp-product.php:1315 +msgid "%s each" +msgstr "" + +#: includes/common/class-mp-product.php:988 +msgid "Choose Options" +msgstr "" + +#: includes/common/class-mp-product.php:526 +msgid "Choose a %s" +msgstr "" + +#: includes/common/class-mp-product.php:284 +#: includes/common/class-mp-product.php:292 +#: includes/common/class-mp-product.php:615 +msgid "We're sorry, we only have %d of this item in stock right now." +msgstr "" + +#: includes/common/class-mp-order.php:1456 +msgid "Shipped: Track Shipment" +msgstr "" + +#: includes/common/class-mp-order.php:1049 +msgid "Order Received" +msgstr "" + +#: includes/common/class-mp-order.php:1014 +msgid "In Process" +msgstr "" + +#: includes/common/class-mp-order.php:969 +msgid "Order #" +msgstr "" + +#: includes/common/class-mp-order.php:866 +msgid "Copy billing address to shipping address" +msgstr "" + +#: includes/common/class-mp-order.php:822 +#: includes/public/class-mp-checkout.php:1314 +msgid "Special Instructions" +msgstr "" + +#: includes/common/class-mp-order.php:817 +#: includes/common/payment-gateways/stripe.php:335 +msgid "Email" +msgstr "" + +#: includes/common/class-mp-order.php:813 +#: includes/common/payment-gateways/stripe.php:341 +#: includes/public/class-mp-checkout.php:416 +msgid "Phone" +msgstr "" + +#: includes/common/class-mp-order.php:791 +#: includes/common/payment-gateways/stripe.php:337 +msgid "State" +msgstr "" + +#: includes/common/class-mp-order.php:776 +msgid "Address 1" +msgstr "" + +#: includes/common/class-mp-order.php:766 +msgid "Last Name" +msgstr "" + +#: includes/common/class-mp-order.php:762 +msgid "First Name" +msgstr "" + +#: includes/common/class-mp-installer.php:677 +msgid "MarketPress requires a database update to continue working correctly. Go to update page" +msgstr "" + +#: includes/common/class-mp-installer.php:657 +msgid "MarketPress performed a quick automatic update successfully!" +msgstr "" + +#: includes/common/class-mp-installer.php:653 +msgid "Perform Update" +msgstr "" + +#: includes/common/class-mp-installer.php:647 +msgid "Please update each subsite in your WordPress network where you have older version of the MarketPress plugin." +msgstr "" + +#: includes/common/class-mp-installer.php:641 +msgid "Depending on the amount of products you have, this update could take quite some time. Please keep this window open while the update completes. If you have products with multiple variations, the progress bar may move slower, please don't exit the window." +msgstr "" + +#: includes/common/class-mp-installer.php:632 +msgid "Product Metadata" +msgstr "" + +#: includes/common/class-mp-installer.php:601 +msgid "MarketPress requires a database update to continue working correctly.
    Below you will find a list of items that require your attention." +msgstr "" + +#: includes/common/class-mp-installer.php:600 +msgid "Update MarketPress Data" +msgstr "" + +#: includes/common/class-mp-installer.php:530 +msgid "Update Data" +msgstr "" + +#: includes/common/class-mp-installer.php:67 +msgid "Complete!" +msgstr "" + +#: includes/common/class-mp-installer.php:66 +msgid "Upgrading Database...Please Wait..." +msgstr "" + +#: includes/common/class-mp-installer.php:64 +msgid "An error occurred while updating. Please refresh this page and try again." +msgstr "" + +#: includes/common/class-mp-cart.php:2447 +msgid "Some items in your cart have fallen below the quantity you currently have in your cart. We have adjusted the quantity in your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:2443 +msgid "Some items in your cart are no longer available. We have removed these items from your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:1566 +msgid "item" +msgstr "" + +#: includes/common/class-mp-cart.php:1563 +#: includes/common/class-mp-cart.php:1568 +msgid "items" +msgstr "" + +#: includes/common/class-mp-cart.php:1363 +msgid "Items/Products added to Cart will show here." +msgstr "" + +#: includes/common/class-mp-cart.php:1362 +msgid "Your shopping cart is empty." +msgstr "" + +#: includes/common/class-mp-cart.php:1357 +msgid "View Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1241 +#: includes/common/class-mp-cart.php:1298 +#: includes/public/class-mp-short-codes.php:159 +msgid "Adding..." +msgstr "" + +#: includes/common/class-mp-cart.php:1033 +msgid "Continue Shopping?" +msgstr "" + +#: includes/common/class-mp-cart.php:961 +msgid "Secure Checkout
    Shopping is always safe and secure." +msgstr "" + +#: includes/common/class-mp-cart.php:959 +msgid "You are about to submit your order!
    Please review your order details before continuing. You will be charged immediately upon clicking \"Submit Order\"." +msgstr "" + +#: includes/common/class-mp-cart.php:956 +msgid "Continue »" +msgstr "" + +#: includes/common/class-mp-cart.php:955 +msgid "Submit Order" +msgstr "" + +#: includes/common/class-mp-cart.php:818 +msgid "There are no items in your cart - go add some !" +msgstr "" + +#: includes/common/class-mp-cart.php:816 +msgid "The cart is disabled." +msgstr "" + +#: includes/common/class-mp-cart.php:735 +msgid "Estimated %s" +msgstr "" + +#: includes/common/class-mp-cart.php:717 +msgid "Estimated Shipping" +msgstr "" + +#: includes/common/class-mp-cart.php:697 +msgid "Product Total" +msgstr "" + +#: includes/common/class-mp-cart.php:670 includes/common/class-mp-cart.php:672 +msgid "Estimated Total (%s, %s)" +msgstr "" + +#: includes/common/class-mp-cart.php:668 +msgid "Estimated Total (%s)" +msgstr "" + +#: includes/common/class-mp-cart.php:666 includes/common/class-mp-cart.php:752 +msgid "Estimated Total" +msgstr "" + +#: includes/admin/widgets/product-list.php:247 +msgid "Show Thumbnail Placeholder image (if image is not set)" +msgstr "" + +#: includes/admin/widgets/cart.php:73 +msgid "Display product price" +msgstr "" + +#: includes/admin/widgets/cart.php:71 +msgid "Display product quantity" +msgstr "" + +#: includes/admin/widgets/cart.php:69 +msgid "Display product image" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:93 +msgid "General Shipping Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:773 +msgid "If you are having conflicts with the lightbox library from your theme or another plugin you should uncheck this." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:772 +msgid "Use Built-In Lightbox for Images?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:762 +msgid "Disable Large Image Display?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:688 +msgid "Show Product Image?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:682 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:684 +msgid "Show Tags List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:676 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:678 +msgid "Show Categories List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:671 +msgid "If enabled, description excerpt will be added above Add to cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:669 +msgid "Show Excerpt?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:665 +msgid "If enabled, users will be able to choose how many of the product they want to purchase before adding to their cart. If not checked, quantity could be change later on the cart page." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:663 +msgid "Show Quantity Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:649 +msgid "Settings related to the display of individual product pages." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:648 +msgid "Product Page Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:605 +msgid "Related Products Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:573 +msgid "Show Related Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:568 +msgid "Related Product Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:549 +msgid "Order Status Entries Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:510 +msgid "Sort Products By" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:497 +msgid "Products Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:492 +msgid "Paginate Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:478 +msgid "Excerpts Length" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:473 +msgid "Show Excerpts?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:450 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:746 +msgid "Image Alignment" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:412 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:708 +msgid "Custom Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:401 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:697 +msgid "Large - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:400 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:696 +msgid "Medium - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:399 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:695 +msgid "Thumbnail - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:397 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:693 +msgid "Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:386 +msgid "Select default placeholder image thumbnail when product image is not available (if empty, plugin's built-in image will be used)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:380 +msgid "Show default product placeholder thumbnail when product image is not available?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:374 +msgid "Show Product Thumbnail?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:369 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:658 +msgid "Redirect to cart page for immediate checkout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:368 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:657 +msgid "Stay on current product page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:366 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:655 +msgid "MarketPress supports two \"flows\" for adding products to the shopping cart. After adding a product to their cart, two things can happen:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:365 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:654 +msgid "Add To Cart Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:355 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:628 +msgid "Four" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:354 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:627 +msgid "Three" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:353 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:626 +msgid "Two" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:625 +msgid "One" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:349 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:622 +msgid "Set the number of products that show up in a grid row to best fit your theme" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:348 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:621 +msgid "How many products per row?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:342 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:609 +msgid "Display as grid" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:341 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:608 +msgid "Display as list" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:339 +msgid "Product Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:334 +msgid "Settings related to the display of product lists/grids." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:333 +msgid "Product List/Grid Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:314 +msgid "Show Twitter Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:309 +msgid "Twitter" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:303 +msgid "Show Share Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:297 +msgid "Recommend" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:296 +msgid "Like" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:294 +msgid "Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:283 +msgid "Show Facebook Like Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:278 +msgid "Facebook" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:257 +msgid "Show \"Pin It\" Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:252 +msgid "Pinterest" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:246 +msgid "Social Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:193 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:202 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:211 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:220 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:229 +#: includes/multisite/class-mp-admin-multisite.php:532 +#: includes/multisite/class-mp-admin-multisite.php:541 +#: includes/multisite/class-mp-admin-multisite.php:550 +msgid "Choose a Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:191 +msgid "This page will be used as the root for your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:168 +#: includes/multisite/class-mp-admin-multisite.php:586 +msgid "Create Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "uncropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "cropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:87 +#: includes/multisite/class-mp-admin-multisite.php:121 +#: includes/multisite/class-mp-admin-multisite.php:620 +msgid "An error occurred while creating the store page. Please try again." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:66 +msgid "Choose the gateway(s) that you would like to be available for checkout." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:65 +msgid "Enabled Gateways" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:78 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:146 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:179 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:213 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:274 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:307 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:341 +msgid "Text" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:71 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:139 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:172 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:206 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:267 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:300 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:334 +msgid "Subject" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:52 +msgid "Notification Email" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:510 +msgid "Enabling this option will display label `excl. tax` or `incl. tax` after price" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:509 +msgid "Display tax label?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:504 +msgid "Enabling this option will show Price + Tax, eg. if your price is 100 and your tax 20, your price will be 120" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:416 +#: includes/multisite/class-mp-admin-multisite.php:234 +msgid "Price Format" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:366 +msgid "Enabling this field will display a textbox on the shipping checkout page for users to enter special instructions for their order. Useful for product personalization, etc." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:365 +msgid "Show Special Instructions Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:360 +msgid "Universal" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:359 +msgid "Old" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1167 +#: includes/admin/store-settings/class-mp-store-settings-general.php:358 +msgid "New" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:353 +msgid "If you already use Google Analytics for your website, you can track detailed ecommerce information by enabling this setting. Choose whether you are using the new asynchronous or old tracking code. Before Google Analytics can report ecommerce activity for your website, you must enable ecommerce tracking on the profile settings page for your website. Also keep in mind that some gateways do not reliably show the receipt page, so tracking may not be accurate in those cases. It is recommended to use the PayPal gateway for the most accurate data. More information »" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:347 +msgid "Do you want to display the product price on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:346 +msgid "Show product price on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:340 +msgid "Do you want to display the product quantity on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:339 +msgid "Show product quantity on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:333 +msgid "Do you want to display the product image on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:332 +msgid "Show product image on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:327 +msgid "This option hide floating Mini Cart in top right corner." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:326 +msgid "Disable Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:316 +msgid "If unchecked your Orders admin page will be hidden" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:315 +msgid "Show admin Orders page?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:309 +msgid "Disable Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:303 +msgid "Force Login?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:297 +msgid "Hide Out of Stock Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:555 +msgid "This will prevent multiples of the same downloadable product form being added to the cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:554 +msgid "Limit Digital Products Per-order?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:268 +msgid "If you're having issues downloading large files and have worked with your hosting provider to increase your memory limits, try enabling this - just keep in mind, it's not as secure!" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:267 +msgid "Use Alternative Download Method?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:252 +msgid "Download Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:230 +msgid "Change product post type" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:51 +msgid "%s Capabilities" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-addons.php:47 +msgid "Store Settings: Add Ons: %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:254 +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:56 +msgid "Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Edit Product Attribute %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:246 +msgid "Exporters" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:238 +msgid "Short Codes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:207 +msgid "An appropriate message for key \"%s\" could not be found." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:204 +msgid "Product attribute updated successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:203 +msgid "Product attribute added successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +msgid "Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +#: includes/admin/store-settings/class-mp-store-settings-addons.php:121 +msgid "Store Settings: Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "Store Settings: Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:118 +msgid "Store Settings: Product Tags" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:117 +msgid "Store Settings: Product Categories" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Store Settings: Product Attributes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +msgid "Store Settings: Payments" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:114 +msgid "Store Settings: Shipping" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +#: includes/admin/class-mp-store-settings-admin.php:226 +msgid "Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +msgid "Store Settings: Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:112 +msgid "Store Settings: Presentation" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:111 +msgid "Store Settings: General" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1489 +msgid "Select a Product" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1447 +msgid "Reset to Defaults" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1446 +msgid "Insert Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1202 +#: includes/admin/class-mp-shortcode-builder.php:1227 +#: includes/admin/class-mp-shortcode-builder.php:1252 +msgid "The text to show in the link." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1196 +#: includes/admin/class-mp-shortcode-builder.php:1221 +#: includes/admin/class-mp-shortcode-builder.php:1246 +msgid "Whether to return a clickable link or url." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1177 +msgid "Whether to display the cart only on store pages or not." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1171 +msgid "Whether to show or hide the product price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1165 +msgid "Whether to show or hide the product quantity." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1159 +msgid "Whether to show or hide the product image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1153 +msgid "The text displayed before the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1147 +msgid "The title of the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1058 +#: includes/admin/class-mp-shortcode-builder.php:1121 +msgid "A label to prepend to the price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1032 +#: includes/admin/class-mp-shortcode-builder.php:1127 +msgid "What context for display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1004 +msgid "Set the alignment of the image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:998 +msgid "Set a custom pixel width/height. If omitted defaults to the size set by \"context\"." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:993 +msgid "Widget" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:988 +msgid "What context for preset size options." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:982 +#: includes/admin/class-mp-shortcode-builder.php:1026 +#: includes/admin/class-mp-shortcode-builder.php:1052 +#: includes/admin/class-mp-shortcode-builder.php:1077 +#: includes/admin/class-mp-shortcode-builder.php:1096 +#: includes/admin/class-mp-shortcode-builder.php:1115 +msgid "The ID of the product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:963 +msgid "Whether to display the product meta (e.g. price, buy button)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:738 +#: includes/admin/class-mp-shortcode-builder.php:905 +#: includes/admin/class-mp-shortcode-builder.php:958 +#: includes/admin/class-mp-shortcode-builder.php:992 +#: includes/admin/class-mp-shortcode-builder.php:1035 +#: includes/admin/class-mp-shortcode-builder.php:1130 +#: includes/admin/class-mp-shortcode-builder.php:1349 +msgid "List" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:957 +#: includes/admin/class-mp-shortcode-builder.php:991 +#: includes/admin/class-mp-shortcode-builder.php:1034 +#: includes/admin/class-mp-shortcode-builder.php:1129 +msgid "Single" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:953 +msgid "Whether and what context of image size to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:948 +msgid "Full" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:943 +msgid "Whether and what type of content to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:937 +msgid "Whether to display the product title." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:931 +msgid "The ID of the product to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:747 +#: includes/admin/class-mp-shortcode-builder.php:914 +msgid "Hide" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:746 +#: includes/admin/class-mp-shortcode-builder.php:913 +msgid "Show" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:744 +#: includes/admin/class-mp-shortcode-builder.php:911 +msgid "Whether or not to show the product filters." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:724 +#: includes/admin/class-mp-shortcode-builder.php:891 +#: includes/admin/class-mp-shortcode-builder.php:1335 +msgid "Limits list to a specific product tag." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:713 +#: includes/admin/class-mp-shortcode-builder.php:880 +#: includes/admin/class-mp-shortcode-builder.php:1324 +msgid "Limits list to a specific product category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:706 +#: includes/admin/class-mp-shortcode-builder.php:873 +#: includes/admin/class-mp-shortcode-builder.php:1317 +msgid "Direction to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:684 +#: includes/admin/class-mp-shortcode-builder.php:851 +#: includes/admin/class-mp-shortcode-builder.php:1295 +msgid "What field to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:678 +#: includes/admin/class-mp-shortcode-builder.php:845 +#: includes/admin/class-mp-shortcode-builder.php:1283 +msgid "How many products to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:672 +#: includes/admin/class-mp-shortcode-builder.php:839 +#: includes/admin/class-mp-shortcode-builder.php:1277 +msgid "The page number to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:666 +#: includes/admin/class-mp-shortcode-builder.php:833 +#: includes/admin/class-mp-shortcode-builder.php:1271 +msgid "Whether to paginate the product list. This is useful to only show a subset." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:808 +msgid "How many related items to show." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:790 +msgid "How to relate the products" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:784 +msgid "The product to show related items for." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:765 +msgid "The maximum number of products to display" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:647 +msgid "Comma separated list of tags (term_id) to include. For example, include=5,27 means tags that have the term_id 5 or 27 will be the only tags displayed. Defaults to include everything." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:641 +msgid "Comma separated list of tags (term_id) to exclude. For example, exclude=5,27 means tags that have the term_id 5 or 27 will NOT be displayed. Defaults to exclude nothing." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:633 +#: includes/admin/class-mp-shortcode-builder.php:1420 +msgid "Sort order." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:629 +#: includes/admin/class-mp-shortcode-builder.php:1416 +msgid "Count" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:626 +#: includes/admin/class-mp-shortcode-builder.php:1413 +msgid "Order of the tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:620 +msgid "The text/space between tags)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:616 +msgid "UL with a class of \"wp-tag-cloud\"" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:615 +msgid "separated by whitespace defined by \"separator\" parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:613 +msgid "Format of the cloud display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:607 +msgid "The number of actual tags to display in the cloud. (Use \"0\" to display all tags.)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:601 +msgid "Unit of measure as pertains to the smallest and largest values. This can be any CSS length value, e.g. pt, px, em, %." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:595 +msgid "The text size of the tag with the largest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:589 +msgid "The text size of the tag with the smallest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:570 +msgid "The \"tabindex\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:564 +msgid "The \"name\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:558 +msgid "The \"id\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:552 +msgid "Which category ID is selected." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:540 +msgid "The max depth. This is ignored unless hierarchical is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:536 +#: includes/multisite/template-functions.php:816 +msgid "No Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:414 +#: includes/admin/class-mp-shortcode-builder.php:546 +msgid "Calculates link or post counts by including items from child categories. If show_counts and hierarchical are true this is automatically set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:409 +msgid "Value of n (some number) specifies the depth (or level) to descend in displaying Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:408 +msgid "Show only top level Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:407 +msgid "All Categories displayed in flat (no indent) form (overrides hierarchical)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:406 +msgid "All Categories and child Categories (Default)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:402 +msgid "This parameter controls how many levels in the hierarchy of Categories are to be included in the list of Categories. NOTE: The \"hierarchical\" argument, which is disabled by default, will override the depth argument, unless it is true. When the argument is false, it will display all of the categories. When it is enabled it will use the value in the \"depth\" argument." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:396 +#: includes/admin/class-mp-shortcode-builder.php:1394 +msgid "Sets the number of Categories to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:390 +#: includes/admin/class-mp-shortcode-builder.php:534 +msgid "Set the text to show when no categories are listed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:384 +msgid "Set the title and style of the outer list item. If present but empty, the outer list item will not be displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:378 +#: includes/admin/class-mp-shortcode-builder.php:528 +msgid "Display sub-categories as inner list items (below the parent list item) or inline." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:368 +#: includes/admin/class-mp-shortcode-builder.php:511 +msgid "Exclude category-tree from the results. The parameter include must be empty. If the hierarchical parameter is true, then use exclude instead of exclude_tree." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:354 +msgid "Only include these categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:340 +#: includes/admin/class-mp-shortcode-builder.php:356 +#: includes/admin/class-mp-shortcode-builder.php:370 +#: includes/admin/class-mp-shortcode-builder.php:496 +#: includes/admin/class-mp-shortcode-builder.php:513 +msgid "Select Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:338 +#: includes/admin/class-mp-shortcode-builder.php:494 +msgid "Exclude one or more categories from the results. The parameter include must be empty." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:332 +msgid "Set a URI for an image (usually an rss feed icon) to act as a link to each categories' rss-2 feed. This parameter overrides the feed parameter. There is no default for this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:320 +msgid "Display a link to each category's rss-2 feed and set the link text to display. The default is no text and no feed displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:313 +#: includes/admin/class-mp-shortcode-builder.php:487 +msgid "Any" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:307 +#: includes/admin/class-mp-shortcode-builder.php:481 +msgid "Only display categories that are children of the category identified by this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:301 +msgid "Sets whether a category's description is inserted into the title attribute of the links created (i.e. <a title=\"<em>Category Description</em>\" href=\"...)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:295 +#: includes/admin/class-mp-shortcode-builder.php:475 +msgid "Toggles the display of categories with no posts." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:289 +#: includes/admin/class-mp-shortcode-builder.php:469 +#: includes/admin/class-mp-shortcode-builder.php:1388 +msgid "Toggles the display of the current count of posts in each category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:279 +msgid "Style to display the categories list in. A value of list displays the categories as list items while none generates no special display method (the list items are separated by
    tags)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:269 +#: includes/admin/class-mp-shortcode-builder.php:449 +#: includes/admin/class-mp-shortcode-builder.php:1378 +msgid "Sort order for categories (either ascending or descending)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:259 +#: includes/admin/class-mp-shortcode-builder.php:439 +#: includes/admin/class-mp-shortcode-builder.php:1368 +msgid "Sort categories alphabetically, by unique Category ID, or by the count of posts in that Category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:253 +#: includes/admin/class-mp-shortcode-builder.php:433 +msgid "If a value is entered, causes the display of a link to all categories if the style is set to list." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:219 +msgid "Select an Action" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:217 +msgid "What would you like to do?" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:216 +#: includes/admin/class-mp-shortcode-builder.php:1522 +msgid "Add E-Commerce Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:197 +msgid "Display a list of links to your store pages." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:196 +msgid "Display a link or url to the order status page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:195 +msgid "Display a link or url to the current products list page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:194 +msgid "Display a link or url to the current store page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:193 +msgid "Display a link or url to the current shopping cart page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:192 +msgid "Display the cart widget." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:191 +msgid "Display the full product meta box with price and buy now/add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:190 +msgid "Display the product stock." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:189 +msgid "Display the product SKU number(s)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:188 +msgid "Display the product price (and sale price)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:187 +msgid "Display the buy or add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:186 +msgid "Display the featured image of a given product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:185 +msgid "Display a single product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:184 +msgid "Display a list of products according to preference." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:183 +msgid "Display products related to the one being viewed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:182 +msgid "Display a list of popular products ordered by sales." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:180 +msgid "Display an HTML dropdown of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:179 +msgid "Display an HTML list of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:178 +msgid "Display a cloud or list of your product tags." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:655 +msgid "Setup your payment gateway" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:643 +#: includes/admin/class-mp-setup-wizard.php:649 +msgid "Other Gateways" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:617 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:150 +msgid "Select which calculated shipping methods the customer will be able to choose from." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:601 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:134 +#: includes/public/class-mp-checkout.php:82 +msgid "Shipping Method" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:568 +msgid "I want to charge shipping" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:523 +#: includes/admin/store-settings/class-mp-store-settings-general.php:503 +msgid "Show Price + Tax?" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:507 +msgid "I.e. Taxes, VAT, GST, etc" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:491 +#: includes/admin/store-settings/class-mp-store-settings-general.php:471 +msgid "Current Rates" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:473 +msgid "Default Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:434 +#: includes/admin/class-mp-setup-wizard.php:442 +#: includes/admin/store-settings/class-mp-store-settings-general.php:386 +#: includes/admin/store-settings/class-mp-store-settings-general.php:394 +#: includes/multisite/class-mp-admin-multisite.php:204 +#: includes/multisite/class-mp-admin-multisite.php:212 +msgid "Select a Currency" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:414 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:105 +msgid "Choose Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:411 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:103 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:104 +msgid "All Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:410 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:102 +msgid "These are the countries that you will ship to." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:409 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:101 +msgid "Target Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:401 +msgid "Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:387 +#: includes/admin/store-settings/class-mp-store-settings-general.php:640 +msgid "Zip/Postal Code Label" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:352 +#: includes/admin/store-settings/class-mp-store-settings-general.php:606 +msgid "Select a State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:335 +#: includes/admin/store-settings/class-mp-store-settings-general.php:590 +msgid "Select A Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:332 +#: includes/admin/store-settings/class-mp-store-settings-general.php:587 +msgid "Select a Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:324 +msgid "Location" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:304 +#: includes/admin/class-mp-setup-wizard.php:312 +#: includes/admin/class-mp-store-settings-admin.php:129 +#: includes/admin/class-mp-store-settings-admin.php:262 +msgid "Quick Setup" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:289 +msgid "MarketPress setup is not complete! Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2479 +msgid "Enter your product name here" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2440 +msgid "Select a %s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2426 +msgid "Each product variation needs to have product attributes assigned to it so the system knows how to differentiate one product variation from the other. It is important that you assign a category to this product before choosing any attributes." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2409 +msgid "If you would like this variation to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2320 +msgid "Sale Price (if applicable)" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2281 +msgid "If you would like the description to be different than the main product enter it here." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2229 +msgid "Image" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2202 +#: includes/admin/class-mp-shortcode-builder.php:226 +msgid "Attributes" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2166 +msgid "Create your product variations here. You can reorder variations by using the number to left of each variation, or delete one by clicking the \"x\" to the right of each variation. NOTE: The variation that shows up first in this list will be considered the \"main variation\". The details from this variation will be used in product listings." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2061 +#: includes/admin/class-mp-products-admin.php:2332 +msgid "Value must be less than regular price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2043 +#: includes/admin/class-mp-products-admin.php:2306 +msgid "Regular Price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2023 +#: includes/admin/class-mp-products-admin.php:2286 +msgid "External URL" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1988 +#: includes/admin/class-mp-products-admin.php:2245 +msgid "Enter the quantity that you have available to sell." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1987 +#: includes/admin/class-mp-products-admin.php:2244 +msgid "Inventory Count" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1977 +#: includes/admin/class-mp-products-admin.php:2234 +msgid "Track Inventory?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1871 +msgid "%1$sProduct Images%2$s %3$sAdd images of the product. The first image on the list is the featured image for this product (you can reorder images on the list)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1806 +msgid "Add variations for this product. e.g. If you are selling t-shirts, you can create Color & Size variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1804 +msgid "%3$sAdd variations for%2$s %1$sProduct%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1776 +msgid "This product has a multiple variations %1$s(e.g. Multiple colors, sizes)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1775 +msgid "This is a unique product without variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1700 +msgid "Extra Shipping Cost %1$s(if applicable)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1659 +#: includes/admin/class-mp-products-admin.php:2112 +#: includes/admin/class-mp-products-admin.php:2359 +msgid "Weight" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1636 +#: includes/admin/class-mp-products-admin.php:2098 +#: includes/admin/class-mp-products-admin.php:2416 +msgid "Please enter a valid tax rate" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1531 +msgid "Limit Per Order %1$s(limit the number of the item a shopper can buy per order)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1513 +msgid "SKU %1$s(Stock Keeping Unit)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "%1$sPrice, Inventory & Variants%2$s %3$sSet price, manage inventory and create Product Variants (if appropriate for your product).%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "Product Variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1480 +msgid "External / Affiliate Link" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1471 +msgid "Digital Download" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1470 +msgid "Physical / Tangible Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1464 +msgid "Product Kind %1$s(Physical Product, Digital, etc)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1426 +msgid "Choose Products" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1420 +msgid "If you would like, you can choose specific related products instead of using the ones generated by MarketPress" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1019 +msgid "Changes saved successfully" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:826 +msgid "Option cannot be saved. Try again." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:821 +msgid "Option saved successfully." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:467 +msgid "Img" +msgstr "" + +#: includes/admin/class-mp-product-attributes-list-table.php:57 +msgid "Product attribute(s) deleted successfully." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:162 +msgid "- Create New Variation -" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:144 +msgid "Only lowercase letters and dashes (-) are allowed." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:139 +msgid "If a slug is not entered, it will be generated automatically. Max 32 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:138 +#: includes/admin/class-mp-product-attributes-list-table.php:23 +msgid "Slug" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:130 +msgid "Max 45 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:123 +msgid "Use the numbers on the left to sort. To delete - click the \"X\" to the right of each row." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:122 +msgid "Attribute Options" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:121 +msgid "Add Option" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:105 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:523 +msgid "Sort Order" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:87 +msgid "Alphabetical" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:86 +msgid "ID" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:84 +msgid "Select how the options will be sorted." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:82 +msgid "Sort By" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:75 +msgid "The name of the attribute (e.g. color, size, etc)" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:74 +msgid "Attribute Name" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:69 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Product Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Product Attributes" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:71 +msgid "You can choose to make this page one of the following core store pages." +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:66 +msgid "Network Store Base" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:61 +msgid "Checkout Page" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:52 +msgid "Store Page Settings" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1108 +msgid "Display billing/shipping info for this customer" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1097 +msgid "View order “%s”" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1072 +msgid "Flag as:" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:952 +msgid "Move To Trash" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:948 +msgid " Received" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:927 +msgid "Enter coupon code here" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:812 +msgid "The order status could not be updated due to unexpected error. Please try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:740 +msgid "An invalid bulk action was requested. Please go back and try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:692 +msgid "The order status for order ID %1$s was updated successfully." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:688 +msgid "Order statuses successfully updated." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:530 +msgid "Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:518 +msgid "Actual Shipping Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:513 +msgid "Method Paid For" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:504 +msgid "Amount Collected" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:477 +msgid "DHL" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:408 +msgid "There is no IPN history to show at this time" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:345 +msgid "Type" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:343 +msgid "Gateway" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:301 +#: includes/common/template-functions.php:528 +msgid "Order History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:291 +msgid "IPN History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:283 +msgid "Customer Info" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:279 +msgid "Order Details" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:157 +msgid "All Dates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:320 +msgid "Add Pages to Menu" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:318 +msgid "Add-ons" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:317 +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "User Capabilities" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:316 +#: includes/admin/class-mp-setup-wizard.php:631 +#: includes/admin/store-settings/class-mp-store-settings-payments.php:50 +msgid "Payment Gateways" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:315 +msgid "Shipping Rates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:312 +msgid "Configure" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:309 +#: includes/admin/class-mp-products-admin.php:466 +#: includes/admin/class-mp-shortcode-builder.php:797 +msgid "Tags" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:308 +#: includes/admin/class-mp-products-admin.php:465 +msgid "Categories" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:300 +msgid "Manage" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:297 +msgid "Here's some quick links to manage your store and products." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:288 +msgid "low in stock" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:287 +msgid "%s product" +msgid_plural "%s products" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/admin/class-mp-dashboard-widgets.php:280 +msgid "received" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:279 +#: includes/admin/class-mp-dashboard-widgets.php:283 +msgid "%s order" +msgid_plural "%s orders" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/admin/class-mp-dashboard-widgets.php:276 +msgid "Stock & Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:261 +msgid "Last 30 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:256 +msgid "Last 7 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:251 +msgid "Yesterday" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:248 +#: includes/admin/class-mp-dashboard-widgets.php:253 +#: includes/admin/class-mp-dashboard-widgets.php:258 +#: includes/admin/class-mp-dashboard-widgets.php:263 +msgid " Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:246 +msgid "Today" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:241 +msgid "Welcome back! Here's a quick summary of your store's performance." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:196 +#: includes/admin/class-mp-products-admin.php:895 +msgid "No products out of stock." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:136 +#: includes/admin/class-mp-products-admin.php:839 +msgid "Stock Level" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:135 +#: includes/admin/class-mp-products-admin.php:838 +msgid "Variation" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:121 +msgid "Low Stock (%s)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:116 +msgid "Store Management" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:115 +msgid "Store Reports" +msgstr "" + +#: includes/admin/class-mp-ajax.php:579 +#: includes/admin/class-mp-orders-admin.php:520 +#: includes/common/payment-gateways/2checkout.php:370 +#: includes/common/payment-gateways/authorizenet-aim.php:264 +#: includes/common/payment-gateways/mollie.php:93 +#: includes/common/payment-gateways/paymill.php:196 +#: includes/common/payment-gateways/pin.php:190 +#: includes/common/payment-gateways/skrill.php:157 +#: includes/common/payment-gateways/skrill.php:168 +#: includes/common/payment-gateways/wepay.php:143 +#: includes/public/class-mp-checkout.php:404 +msgid "Select One" +msgstr "" + +#: includes/admin/class-mp-ajax.php:511 +msgid "Oops... we could not locate any orders by that ID. Please double check your order ID and try again." +msgstr "" + +#: includes/admin/class-mp-ajax.php:482 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:166 +#: includes/multisite/class-mp-admin-multisite.php:584 +msgid "Edit Page" +msgstr "" + +#: includes/admin/class-mp-ajax.php:346 +msgid "Cancel " +msgstr "" + +#: includes/admin/class-mp-ajax.php:345 +msgid "Save " +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "Edit Description" +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "HTML Markup" +msgstr "" + +#: includes/admin/class-mp-ajax.php:333 +msgid "Plain Text Only" +msgstr "" + +#: includes/admin/class-mp-ajax.php:329 +msgid "Additional Content / Information for this Variation" +msgstr "" + +#: includes/admin/class-mp-ajax.php:317 +#: includes/admin/class-mp-products-admin.php:1762 +msgid "Allow this product to be purchased even if it's out of stock" +msgstr "" + +#: includes/admin/class-mp-ajax.php:313 +#: includes/admin/class-mp-products-admin.php:1711 +msgid "Track Product Inventory" +msgstr "" + +#: includes/admin/class-mp-ajax.php:300 +msgid "Extra Shipping Cost (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:295 +msgid "Ounces:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:294 +msgid "Pounds:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:292 +msgid "Kilograms:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:287 +#: includes/admin/class-mp-products-admin.php:1649 +msgid "Charge Shipping" +msgstr "" + +#: includes/admin/class-mp-ajax.php:273 +#: includes/admin/class-mp-products-admin.php:1623 +#: includes/admin/store-settings/class-mp-store-settings-general.php:454 +msgid "Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:272 +#: includes/admin/class-mp-products-admin.php:1622 +#: includes/admin/class-mp-products-admin.php:2090 +#: includes/admin/class-mp-products-admin.php:2408 +msgid "Special Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:271 +#: includes/admin/class-mp-products-admin.php:1625 +#: includes/admin/class-mp-products-admin.php:2092 +msgid "If you would like this product to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-ajax.php:268 +#: includes/admin/class-mp-products-admin.php:1599 +msgid "Charge Taxes (Special Rate)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:256 +#: includes/admin/class-mp-products-admin.php:1593 +#: includes/admin/class-mp-products-admin.php:2077 +#: includes/admin/class-mp-products-admin.php:2348 +msgid "End Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:255 +#: includes/admin/class-mp-products-admin.php:1589 +#: includes/admin/class-mp-products-admin.php:2072 +msgid "Start Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:1568 +msgid "Enter Sale Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:250 +#: includes/admin/class-mp-products-admin.php:1547 +msgid "Set up a Sale for this Product" +msgstr "" + +#: includes/admin/class-mp-ajax.php:206 includes/admin/class-mp-ajax.php:223 +msgid "Enter " +msgstr "" + +#: includes/admin/class-mp-ajax.php:193 +msgid "Browse" +msgstr "" + +#: includes/admin/class-mp-ajax.php:184 includes/admin/class-mp-ajax.php:192 +msgid "http://" +msgstr "" + +#: includes/admin/class-mp-ajax.php:183 +msgid "External Product URL" +msgstr "" + +#: includes/admin/class-mp-ajax.php:237 +msgid "Limit Per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:177 +#: includes/admin/class-mp-products-admin.php:1520 +msgid "Enter Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:174 +#: includes/admin/class-mp-products-admin.php:1512 +msgid "Enter SKU" +msgstr "" + +#: includes/admin/class-mp-ajax.php:173 +msgid "(Stock Keeping Unit)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:158 +msgid "Remove Image" +msgstr "" + +#: includes/admin/class-mp-ajax.php:74 +msgid "Variation Draft" +msgstr "" + +#: includes/admin/class-mp-admin.php:296 +#: includes/admin/class-mp-dashboard-widgets.php:70 +msgid "Please wait...saving in progress..." +msgstr "" + +#: includes/admin/class-mp-admin.php:295 +#: includes/admin/class-mp-dashboard-widgets.php:69 +msgid "Input is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:294 +#: includes/admin/class-mp-dashboard-widgets.php:68 +msgid "Valid number is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:292 +#: includes/admin/class-mp-dashboard-widgets.php:66 +msgid "Delete %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:291 +#: includes/admin/class-mp-dashboard-widgets.php:65 +msgid "Delete %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:290 +#: includes/admin/class-mp-dashboard-widgets.php:64 +msgid "Update inventory for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:289 +#: includes/admin/class-mp-dashboard-widgets.php:63 +msgid "Update inventory for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:288 +#: includes/admin/class-mp-dashboard-widgets.php:62 +msgid "Update price for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:287 +#: includes/admin/class-mp-dashboard-widgets.php:61 +msgid "Update prices for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:285 +#: includes/admin/class-mp-dashboard-widgets.php:59 +msgid "Creating variations, please wait..." +msgstr "" + +#: includes/admin/class-mp-admin.php:96 +msgid "The following payment gateways have been deprecated, Cubepoints, Bitpay, iDEAL, Skrill, Google Checkout. If you were using one of these gateways, please setup a new payment gateway here." +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:61 +msgid "Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:71 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:71 +#: includes/common/class-mp-gdpr.php:399 includes/common/class-mp-order.php:872 +#: includes/common/helpers.php:164 includes/public/class-mp-checkout.php:1434 +msgid "Shipping Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:66 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:66 +#: includes/common/class-mp-gdpr.php:392 includes/common/class-mp-order.php:864 +#: includes/common/helpers.php:163 includes/public/class-mp-checkout.php:1427 +msgid "Billing Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:61 +msgid "Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:258 +msgid "Shipping Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:256 +msgid "Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:235 +msgid "Payment Method: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:79 +msgid "The dir %s not exist or not writeable" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:239 +msgid "Shop header/logo" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:233 +msgid "Choose a template" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:226 +msgid "Template Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:221 +msgid "Disable automatic creation/attachment of invoices when only free products are ordered" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:220 +msgid "Disable for free products" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:216 +msgid "Attach invoice to" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:214 +msgid "Customer Order Shipped email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:212 +msgid "Customer New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:211 +msgid "Admin New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:206 +msgid "download" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:205 +msgid "How do you want to view the PDF?" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:203 +msgid "Open the PDF in a new browser tab/window" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:202 +msgid "Download the PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:158 +msgid "Export PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:103 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:106 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:109 +msgid "You can't download this order invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:76 +msgid "Invalid Request" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:72 +msgid "Order not exist!" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:67 +msgid "Invalid ID" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1293 +msgid "Coupon added successfully" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1292 +msgid "Please enter a code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1247 +msgid "No end" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1200 +msgid "Valid Dates" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1195 +msgid "Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1027 +msgid "No Coupons found in Trash" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1026 +msgid "No Coupons Found" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1025 +msgid "Search Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1024 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1028 +msgid "View Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1023 +msgid "New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1020 +msgid "Create New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1017 +msgid "Manage Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1002 +msgid "An error occurred while removing your coupon. Please try again." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:964 +msgid "Coupon can't be applied to this cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:951 +msgid "Invalid coupon code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:794 +msgid "Help Text" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:789 +msgid "Form Title" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:783 +msgid "Coupons Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:764 +msgid "End Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:758 +msgid "Does coupon have an end date?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:696 +msgid "Select Products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:688 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:723 +#: includes/common/payment-gateways/paypal-payflow.php:402 +msgid "User" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:638 +msgid "Max Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:636 +msgid "Enter the maximum number of times this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:623 +msgid "Leave blank to allow all other coupons." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:622 +msgid "Select combinable coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:618 +msgid "Can this coupon be combined with other coupons?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:613 +msgid "Apply to each applicable item once per cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:612 +msgid "Apply to each applicable item and quantity ordered" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:609 +msgid "How should the discount amount be applied?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:605 +msgid "Discount Amount" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:604 +msgid "Value must either be a decimal number or a percentage" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:602 +msgid "If you would like to give a percentage-based discount make sure to include the percent (%) symbol. Otherwise, the discount will be applied as a fixed amount off." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:595 +msgid "Letters and Numbers only." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:589 +msgid "Coupon Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:447 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:795 +msgid "More than one code? That's OK! Just be sure to enter one at a time." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:444 +msgid "Apply Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:314 +msgid "Coupon Discounts" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:89 +msgid "1 add-on disabled" +msgid_plural "%s add-ons disabled" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/addons/class-mp-addons-list-table.php:84 +msgid "1 add-on enabled" +msgid_plural "%s add-ons enabled" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Disabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Enable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:129 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:67 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:135 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:168 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:202 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:263 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:296 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:330 +msgid "Enabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +msgid "Disable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:34 +msgid "Disable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:33 +msgid "Enable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:21 +#: includes/admin/class-mp-products-admin.php:2280 +#: includes/common/class-mp-product.php:2916 +msgid "Description" +msgstr "" + +#: includes/common/template-functions.php:2889 +#: includes/multisite/template-functions.php:407 +msgid "Popularity (Least Popular - Most Popular)" +msgstr "" + +#: includes/common/template-functions.php:2888 +#: includes/multisite/template-functions.php:406 +msgid "Popularity (Most Popular - Least Popular)" +msgstr "" + +#: includes/common/template-functions.php:2885 +#: includes/multisite/template-functions.php:403 +msgid "Name (Z-A)" +msgstr "" + +#: includes/common/template-functions.php:2884 +#: includes/multisite/template-functions.php:402 +msgid "Name (A-Z)" +msgstr "" + +#: includes/common/template-functions.php:2883 +#: includes/multisite/template-functions.php:401 +msgid "Release Date (Oldest to Latest)" +msgstr "" + +#: includes/common/template-functions.php:2882 +#: includes/multisite/template-functions.php:400 +msgid "Release Date (Latest to Oldest)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:284 +msgid "paid" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "One Time Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Customer Counter" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Daily Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:182 +msgid "For the most accurate rates, please select the appropriate pick up type for your business." +msgstr "" + +#: includes/admin/class-mp-admin.php:374 +msgid "Page saved." +msgstr "" + +#: includes/admin/class-mp-admin.php:370 +msgid "Custom field deleted." +msgstr "" + +#: includes/admin/class-mp-admin.php:369 +msgid "Custom field updated." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:541 +msgid "%s - The payment request expired, - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:536 +msgid "%s - The payment not credited in merchants bitpay account, action required. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:252 +msgid "If enabled, you will recieve an email for each status update on payment." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:240 +msgid "Speed at which the bitcoin transaction registers as \"confirmed\" to the store. This overrides your merchant settings on the Bitpay website." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:238 +msgid "Transaction Speed" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:244 +msgid "Low" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:243 +msgid "Medium" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:242 +msgid "High" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:177 +#: includes/common/payment-gateways/_bitpay.php:517 +#: includes/common/payment-gateways/_bitpay.php:522 +msgid "%s - The payment request is under process. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:175 +#: includes/common/payment-gateways/_bitpay.php:527 +msgid "%s - The payment request has been processed - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:150 +#: includes/common/payment-gateways/_bitpay.php:294 +msgid "Incorrect order invoice, please contact site administrator" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:141 +msgid "We could not verify order invoice details, please try again or contact site administrator for help" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:81 +msgid "Login to Simplify to get your API credentials. Enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:605 +#: includes/common/payment-gateways/paypal-express.php:647 +msgid "Express Checkout is PayPal's premier checkout solution, which streamlines the checkout process for buyers and keeps them on your site after making a purchase. Unlike PayPal Pro, there are no additional fees to use Express Checkout, though you may need to do a free upgrade to a business account. More Info »" +msgstr "" + +#. Plugin URI of the plugin/theme +msgid "https://premium.wpmudev.org/project/e-commerce/" +msgstr "" + +#. Author of the plugin/theme +msgid "WPMU DEV" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:541 +#: includes/admin/class-mp-orders-admin.php:543 +msgid "Tracking Number" +msgstr "" + +#: includes/common/class-mp-order.php:805 +#: includes/common/payment-gateways/stripe.php:336 +#: includes/public/class-mp-checkout.php:402 +msgid "Country" +msgstr "" + +#: includes/common/class-mp-order.php:784 +#: includes/common/payment-gateways/stripe.php:338 +msgid "City" +msgstr "" + +#: includes/common/class-mp-order.php:780 +msgid "Address 2" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:340 +msgid "Address" +msgstr "" + +#: includes/common/class-mp-cart.php:752 includes/common/class-mp-gdpr.php:378 +msgid "Order Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:360 +msgid "Payment Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:347 +msgid "Transaction ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:207 +msgid "The WePay Card Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:186 +#: includes/common/shipping-modules/mp-fedex.php:283 +msgid "Account ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:179 +msgid "Access Token" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:172 +msgid "Client Secret" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:165 +msgid "Client ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:159 +msgid "You must login to WePay to get your API credentials. Make sure to check \"Tokenize credit cards\" option under \"API Keys\" section of your WePay app." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:154 +msgid "When in live mode it is recommended to use SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:148 +msgid "Donation" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:147 +msgid "Event" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:146 +msgid "Personal" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:145 +msgid "Service" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:144 +msgid "Goods" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:141 +msgid "Choose type of payments" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:140 +msgid "Checkout Type" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:134 +msgid "Staging" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:131 +msgid "Choose STAGING if you have registered the app on stage.wepay.com, or PRODUCTION if you registered on www.wepay.com" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:36 +#: includes/common/payment-gateways/wepay.php:299 +msgid "WePay" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:366 +msgid "Rejected - A payment was rejected." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:360 +msgid "Failed - A payment was rejected due to an error." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:342 +msgid "PayWay balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:298 +msgid "Full path of the cacerts.crt file" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:284 +msgid "User Name" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:277 +msgid "Biller Code" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:273 +msgid "Log Directory" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:266 +msgid "Encryption Key" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:60 +msgid "Your PayWay transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:40 +#: includes/common/payment-gateways/_payway.php:41 +msgid "PayWay" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:862 +msgid "You must register this application with PayPal using your business account login to get an Application ID that will work with your API credentials. A bit of a hassle, but worth it! In the near future we will be looking for ways to simplify this process. Register then submit your application while logged in to the developer portal. Note that you do not need an Application ID for testing in sandbox mode. More Information »" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:818 +#: includes/common/payment-gateways/paypal-chained-payments.php:840 +#: includes/common/payment-gateways/paypal-express.php:705 +msgid "You must login to PayPal and create an API signature to get your credentials. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:378 +msgid "Use Payflow payment gateway to accept online payments using your Internet merchant account and processing network. PayPal Payflow Pro is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:595 +msgid "Tags Only" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:594 +msgid "Category Only" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:795 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:593 +msgid "Category & Tags" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:591 +msgid "Relate Products By" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1008 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:455 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:751 +msgid "Right" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1007 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:454 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:749 +msgid "Left" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1009 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:750 +msgid "Center" +msgstr "" + +#: marketpress.php:273 +msgid "Orders from your e-commerce store." +msgstr "" + +#: marketpress.php:231 +msgid "Products for your e-commerce store." +msgstr "" + +#: marketpress.php:222 +msgid "Edit Product" +msgstr "" + +#. Description of the plugin/theme +msgid "The complete WordPress ecommerce plugin - works perfectly with BuddyPress and Multisite too to create a social marketplace, where you can take a percentage! Activate the plugin, adjust your settings then add some products to your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:272 +msgid "Beside" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:271 +msgid "Above" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:268 +msgid "Pin Count" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:261 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:287 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:318 +msgid "All View" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:260 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:286 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:317 +msgid "Single View" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:259 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:285 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:316 +msgid "Off" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:578 +msgid "Related Product Limit" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:681 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1201 +msgid "Applies To" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:685 +msgid "All Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:487 +msgid "The label shown for the tax line item in the cart. Taxes, VAT, GST, etc." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:485 +msgid "Tax Label" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:81 +msgid "Apply" +msgstr "" + +#: includes/admin/class-mp-admin.php:192 +msgid "MarketPress Instructions" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1954 +#: includes/admin/class-mp-products-admin.php:2194 includes/common/data.php:62 +#: includes/common/helpers.php:150 +msgid "Taxes" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1417 +#: includes/common/class-mp-product.php:2900 +msgid "Related Products" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:282 +#: includes/common/shipping-modules/mp-usps.php:316 +msgid "@ Max" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "(3-5 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "Priority Mail Express International Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:92 +msgid "Priority Mail Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:171 +#: includes/common/shipping-modules/mp-pickup.php:247 +msgid "In Store" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:159 +msgid "Pickup Fee" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:141 +msgid "This option allows your customers to indicate that they will pick-up their order at your place of business." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:60 +#: includes/common/shipping-modules/mp-pickup.php:76 +#: includes/common/shipping-modules/mp-pickup.php:176 +msgid "Pickup Instructions" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:24 +#: includes/common/shipping-modules/mp-pickup.php:254 +msgid "Pickup" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping - 0.00" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:256 +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:440 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:309 +msgid "Your Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:301 +msgid "Station" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:300 +msgid "Request Courier" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:299 +msgid "Drop Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:298 +msgid "Business Service Center" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:297 +msgid "Regular Pickup" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:135 +#: includes/common/shipping-modules/mp-fedex.php:264 +msgid "Production" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:207 +msgid "Simplify Commerce by MasterCard" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:104 +msgid "When in live mode, although it is not required, Simplify recommends you have an SSL certificate." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:183 +#: includes/common/payment-gateways/simplify.php:87 +msgid "Public Key" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:175 +#: includes/common/payment-gateways/simplify.php:94 +msgid "Private Key" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:71 +msgid "Simplify helps merchants to accept online payments from Mastercard, Visa, American Express, Discover, JCB, and Diners Club cards. It's that simple. We offer a merchant account and payment gateway in a single, secure package so you can concentrate on what really matters to your business. Only supports USD currently." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:267 +msgid "%1$s" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:151 +msgid "The Simplify Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/simplify.php:18 +msgid "Simplify" +msgstr "" + +#: includes/common/payment-gateways/pin.php:255 +msgid "%1$s Card %2$s" +msgstr "" + +#: includes/common/payment-gateways/pin.php:211 +msgid "The PIN Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:187 +msgid "Selecting a currency other than currency supported by PIN may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/pin.php:164 +msgid "You must login to PIN to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/pin.php:158 +msgid "When in live mode PIN recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/pin.php:45 +#: includes/common/payment-gateways/pin.php:286 +msgid "PIN" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:830 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:534 +#: includes/common/payment-gateways/paypal-express.php:865 +msgid "The payment is pending" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:235 +msgid "The Paymill Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:169 +msgid "You must login to Paymill to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:45 +#: includes/common/payment-gateways/paymill.php:308 +msgid "Paymill" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:90 +msgid "Invalid cardholder" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:89 +msgid "Card is no longer valid or has expired" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:88 +msgid "Please enter a valid Card CVC" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:87 +msgid "Please choose a valid Expiration Date." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:99 +#: includes/common/payment-gateways/skrill.php:100 +msgid "Skrill (Moneybookers)" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:24 +#: includes/common/shipping-modules/mp-weight-rate.php:292 +msgid "Weight Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:303 +msgid "USPS Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:270 +msgid "USPS Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:264 +msgid "USPS Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:145 +msgid "Flat Rate Large" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:140 +msgid "Flat Rate Medium 2" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:135 +msgid "Flat Rate Medium 1" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:130 +msgid "Flat Rate Small" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:118 +msgid "First Class International Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:114 +msgid "Priority Mail International Small Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:112 +msgid "Priority Mail International Medium Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:110 +msgid "Priority Mail International Large Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:108 +msgid "Priority Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:106 +msgid "Express Mail International Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:104 +msgid "Express Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:98 +msgid "Library Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:96 +msgid "Media Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "First-Class Mail Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:90 +msgid "Priority Mail Small Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:88 +msgid "Priority Mail Medium Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +#: includes/common/shipping-modules/mp-usps.php:88 +#: includes/common/shipping-modules/mp-usps.php:90 +#: includes/common/shipping-modules/mp-usps.php:92 +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "(2-4 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +msgid "Priority Mail Large Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "(2-4) days" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "Priority Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "Express Mail Sunday/Holiday Delivery Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:80 +msgid "Express Mail Flat Rate Boxes Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:78 +msgid "Express Mail Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:76 +msgid "Express Mail Sunday/Holiday Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:74 +msgid "Express Mail Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:72 +#: includes/common/shipping-modules/mp-usps.php:74 +#: includes/common/shipping-modules/mp-usps.php:76 +#: includes/common/shipping-modules/mp-usps.php:78 +#: includes/common/shipping-modules/mp-usps.php:80 +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "(1-2 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:72 +msgid "Express Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:67 +#: includes/common/shipping-modules/mp-usps.php:902 +msgid "USPS" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:534 +msgid "UPS (beta)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:166 +msgid "Required if using negotiated rates" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "Worldwide Express Plus" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "(Scheduled)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "Standard" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "(2-5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "Worldwide Expedited" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:54 +msgid "Worldwide Express" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "2nd Day Air AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "(1 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "Next Day Air Early AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "Next Day Air Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "3 Day Select" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:49 +msgid "Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:48 +msgid "2nd Day Air" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "Next Day Air" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:475 +#: includes/common/shipping-modules/mp-ups.php:43 +msgid "UPS" +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:27 +#: includes/common/shipping-modules/mp-table-rate.php:318 +msgid "Table Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:71 +#: includes/common/shipping-modules/mp-table-quantity.php:77 +msgid "Shipping Cost: " +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:70 +#: includes/common/shipping-modules/mp-table-quantity.php:76 +msgid "If quantity is greater than:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:66 +msgid "Each band must be a higher price than the one above it." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:56 +msgid "Number of Bands:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:53 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Each layer must be a higher quantity than the previous." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:51 +msgid "Table Quantity Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:31 +msgid "Table Quantity" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:135 +#: includes/common/shipping-modules/mp-table-rate.php:174 +#: includes/common/shipping-modules/mp-weight-rate.php:189 +msgid "European Union" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:123 +#: includes/common/shipping-modules/mp-table-rate.php:162 +#: includes/common/shipping-modules/mp-weight-rate.php:177 +msgid "United States" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:111 +#: includes/common/shipping-modules/mp-table-rate.php:151 +#: includes/common/shipping-modules/mp-weight-rate.php:166 +msgid "In Country" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:146 +#: includes/common/shipping-modules/mp-table-rate.php:186 +#: includes/common/shipping-modules/mp-weight-rate.php:201 +msgid "International" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:101 +#: includes/common/shipping-modules/mp-table-rate.php:141 +#: includes/common/shipping-modules/mp-weight-rate.php:156 +msgid "Canada" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:92 +#: includes/common/shipping-modules/mp-table-rate.php:132 +#: includes/common/shipping-modules/mp-weight-rate.php:147 +msgid "Hawaii and Alaska" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:83 +#: includes/common/shipping-modules/mp-table-rate.php:123 +#: includes/common/shipping-modules/mp-weight-rate.php:138 +msgid "Lower 48 States" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:64 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping." +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:25 +#: includes/common/shipping-modules/mp-flat-rate.php:223 +msgid "Flat Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:761 +msgid "FedEx (beta)" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Centimeters" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Inches" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1676 +#: includes/admin/class-mp-setup-wizard.php:547 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:166 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +msgid "Kilograms" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:103 +msgid " %1$s - %2$s" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:358 +msgid "Max Weight per Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:356 +msgid "Box Dimensions" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:354 +msgid "Box Name" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:344 +msgid "Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:343 +msgid "For each box defined enter the maximum weight it can contain." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:341 +msgid "Enter your standard box sizes as LengthxWidthxHeight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:386 +#: includes/common/shipping-modules/mp-ups.php:193 +#: includes/common/shipping-modules/mp-usps.php:234 +#: includes/common/shipping-modules/mp-usps.php:338 +msgid "Standard Boxes and Weight Limits" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:328 +msgid "Handling Charge per Interntional Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:294 +msgid "Handling Charge per Domestic Shipment " +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:388 +#: includes/common/shipping-modules/mp-ups.php:196 +#: includes/common/shipping-modules/mp-usps.php:237 +msgid "Add Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "(Next Day)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +msgid "Europe First International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:62 +msgid "International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:61 +#: includes/common/shipping-modules/mp-fedex.php:62 +#: includes/common/shipping-modules/mp-ups.php:54 +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "(1-3 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:61 +msgid "International First" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "(5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "International Economy" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "(2-7 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "Smart Post" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:55 +#: includes/common/shipping-modules/mp-ups.php:49 +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "(1-5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:55 +msgid "Ground Home Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "(1-7 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "Fedex Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:53 +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "(3 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:53 +msgid "Fedex Express Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +#: includes/common/shipping-modules/mp-ups.php:48 +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "(2 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +msgid "Fedex 2 Day" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "(2 Days am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "Fedex 2 Day AM" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "(1 Day)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +msgid "Standard Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "(1 Day am )" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "Priority Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "(1 Day am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "First Overnight" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:476 +#: includes/common/shipping-modules/mp-fedex.php:31 +msgid "FedEx" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:270 +#: includes/common/payment-gateways/simplify.php:179 +#: includes/common/payment-gateways/stripe.php:365 +msgid "%1$s Card ending in %2$s - Expires %3$s" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:259 +#: includes/common/payment-gateways/pin.php:238 +#: includes/common/payment-gateways/simplify.php:171 +msgid "%s Store Purchase - Order ID: %s, Email: %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:266 +msgid "You must login to Stripe to get your API credentials. You can enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:261 +msgid "When in live mode Stripe recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:311 +msgid "The Stripe Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:263 +#: includes/common/payment-gateways/paymill.php:122 +#: includes/common/payment-gateways/stripe.php:222 +msgid "Card Number" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:86 +msgid "Please enter a valid Credit Card Number." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:45 +#: includes/common/payment-gateways/stripe.php:433 +msgid "Stripe" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:750 +msgid "Sets the background color for the payment page. By default, the color is white." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:745 +msgid "Sets the background color for the header of the payment page. By default, the color is white." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:740 +msgid "Sets the border color around the header of the payment page. The border is a 2-pixel perimeter around the header space, which is 750 pixels wide by 90 pixels high. By default, the color is black." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:735 +msgid "URL for an image you want to appear at the top left of the payment page. The image has a maximum size of 750 pixels wide by 90 pixels high. PayPal recommends that you provide an image that is stored on a secure (https) server. If you do not specify an image, the business name is displayed." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:857 +#: includes/common/payment-gateways/paypal-express.php:1131 +msgid "The payment is pending because it is part of an order that has been authorized but not settled." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:853 +#: includes/common/payment-gateways/paypal-express.php:1127 +msgid "The payment is pending because it has been authorized but not settled. You must capture the funds first." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:847 +#: includes/common/payment-gateways/paypal-express.php:1120 +msgid "You denied the payment when it was marked as pending." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:837 +#: includes/common/payment-gateways/paypal-express.php:1108 +msgid "A reversal has occurred on this transaction due to an unknown reason." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:836 +#: includes/common/payment-gateways/paypal-express.php:1107 +msgid "A reversal has occurred on this transaction because you have given the customer a refund." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:835 +#: includes/common/payment-gateways/paypal-express.php:1106 +msgid "A reversal has occurred on this transaction due to a complaint about the transaction from your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:834 +#: includes/common/payment-gateways/paypal-express.php:1105 +msgid "A reversal has occurred on this transaction due to your customer triggering a money-back guarantee." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:833 +#: includes/common/payment-gateways/paypal-express.php:1104 +msgid "A reversal has occurred on this transaction due to a chargeback by your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:1101 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer:" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:826 +#: includes/common/payment-gateways/paypal-express.php:1097 +msgid "A payment has been accepted." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:818 +#: includes/common/payment-gateways/paypal-express.php:1087 +msgid "The transaction has not terminated, e.g. an authorization may be awaiting completion." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:531 +#: includes/common/payment-gateways/paypal-express.php:810 +#: includes/common/payment-gateways/paypal-express.php:1077 +msgid "The payment has failed. This happens only if the payment was made from your customer's bank account." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:806 +#: includes/common/payment-gateways/paypal-express.php:1072 +msgid "An authorization for this transaction has been voided." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:802 +#: includes/common/payment-gateways/paypal-express.php:1067 +msgid "The authorization period for this payment has been reached." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:798 +#: includes/common/payment-gateways/paypal-express.php:1062 +msgid "A reversal has been canceled; for example, when you win a dispute and the funds for the reversal have been returned to you." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:499 +#: includes/common/payment-gateways/paypal-express.php:1163 +msgid "PayPal Express Checkout" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:798 +msgid "Gateway Settings Page Message" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:725 +msgid "Signature" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:506 +#: includes/common/payment-gateways/eway31.php:533 +#: includes/common/shipping-modules/mp-fedex.php:276 +msgid "API Password" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:773 +msgid "Enter a percentage of all store sales to collect as a fee. Decimals allowed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:757 +msgid "Using PayPal Chained Payments allows you as the multisite network owner to collect a predefined fee or percentage of all sales on network MarketPress stores! This is invisible to the customers who purchase items in a store, and all PayPal fees will be charged to the store owner. To use this option you must create API credentials, and you should make all other gateways unavailable or limited above." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:338 +msgid "Please be aware that we will deduct a ?% fee from the total of each transaction in addition to any fees PayPal may charge you. If for any reason you need to refund a customer for an order, please contact us with a screenshot of the refund receipt in your PayPal history as well as the Transaction ID of our fee deduction so we can issue you a refund. Thank you!" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:698 +#: includes/common/payment-gateways/paypal-express.php:149 +msgid "There was a problem connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:470 +#: includes/common/payment-gateways/paypal-express.php:1053 +msgid "There was a problem verifying the IPN string with PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:310 +msgid "There was a problem connecting to PayPal to check the status of your purchase. Please check the status of your order here »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:539 +#: includes/common/payment-gateways/paypal-chained-payments.php:254 +#: includes/common/payment-gateways/paypal-express.php:1139 +msgid "The payment is pending." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:251 +#: includes/common/payment-gateways/paypal-chained-payments.php:531 +#: includes/common/payment-gateways/paypal-express.php:862 +#: includes/common/payment-gateways/paypal-express.php:1136 +msgid "The payment is pending for an unknown reason. For more information, contact PayPal customer service." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:250 +#: includes/common/payment-gateways/paypal-chained-payments.php:530 +#: includes/common/payment-gateways/paypal-express.php:861 +#: includes/common/payment-gateways/paypal-express.php:1135 +msgid "The payment is pending because you are not yet verified. You must verify your account before you can accept this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:249 +#: includes/common/payment-gateways/paypal-chained-payments.php:529 +#: includes/common/payment-gateways/paypal-express.php:860 +#: includes/common/payment-gateways/paypal-express.php:1134 +msgid "The payment is pending because it was made via credit card and you must upgrade your account to Business or Premier status in order to receive the funds. It can also mean that you have reached the monthly limit for transactions on your account." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:248 +#: includes/common/payment-gateways/paypal-chained-payments.php:528 +#: includes/common/payment-gateways/paypal-express.php:859 +#: includes/common/payment-gateways/paypal-express.php:1133 +msgid "The payment is pending because it was made to an email address that is not yet registered or confirmed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:247 +#: includes/common/payment-gateways/paypal-chained-payments.php:527 +#: includes/common/payment-gateways/paypal-express.php:858 +#: includes/common/payment-gateways/paypal-express.php:1132 +msgid "The payment is pending while it is being reviewed by PayPal for risk." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:246 +#: includes/common/payment-gateways/paypal-chained-payments.php:526 +#: includes/common/payment-gateways/paypal-express.php:856 +#: includes/common/payment-gateways/paypal-express.php:1130 +msgid "You do not have a balance in the currency sent, and you do not have your Payment Receiving Preferences set to automatically convert and accept this payment. You must manually accept or deny this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:245 +#: includes/common/payment-gateways/paypal-chained-payments.php:525 +#: includes/common/payment-gateways/paypal-express.php:855 +#: includes/common/payment-gateways/paypal-express.php:1129 +msgid "The payment is pending because you hold a non-U.S. account and do not have a withdrawal mechanism. You must manually accept or deny this payment from your Account Overview." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:244 +#: includes/common/payment-gateways/paypal-chained-payments.php:524 +#: includes/common/payment-gateways/paypal-express.php:854 +#: includes/common/payment-gateways/paypal-express.php:1128 +msgid "The payment is pending because it was made by an eCheck that has not yet cleared." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:243 +#: includes/common/payment-gateways/paypal-chained-payments.php:523 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:236 +#: includes/common/payment-gateways/paypal-chained-payments.php:516 +msgid "The transaction was rejected by the receiver (you)." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:510 +#: includes/common/payment-gateways/paypal-express.php:843 +#: includes/common/payment-gateways/paypal-express.php:1115 +msgid "You refunded the payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:224 +#: includes/common/payment-gateways/paypal-chained-payments.php:504 +msgid "The transaction is in progress." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:212 +#: includes/common/payment-gateways/paypal-chained-payments.php:491 +#: includes/common/payment-gateways/paypal-express.php:814 +#: includes/common/payment-gateways/paypal-express.php:1082 +msgid "The payment has been partially refunded." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:202 +#: includes/common/payment-gateways/paypal-chained-payments.php:481 +msgid "PayPal balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:177 +msgid "There was a problem connecting to PayPal to setup your purchase. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:122 +msgid "Your PayPal transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:50 +#: includes/common/payment-gateways/paypal-chained-payments.php:53 +#: includes/common/payment-gateways/paypal-chained-payments.php:732 +#: includes/common/payment-gateways/paypal-express.php:500 +#: includes/common/payment-gateways/paypal-express.php:938 +msgid "PayPal" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:48 +#: includes/common/payment-gateways/paypal-chained-payments.php:730 +#: includes/common/payment-gateways/paypal-chained-payments.php:756 +#: includes/common/payment-gateways/paypal-chained-payments.php:873 +msgid "PayPal Chained Payments" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:59 +#: includes/common/payment-gateways/paypal-payflow.php:467 +msgid "PayPal Payflow Pro" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:378 +msgid "Chargeback - A payment was reversed due to a chargeback. The funds have been removed from your account balance and returned to the buyer." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:372 +msgid "Failed - The Credit Card or Direct Debit transaction was declined." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:354 +#: includes/common/payment-gateways/skrill.php:366 +msgid "Cancelled - The payment was cancelled manually by the sender in their online account history or was auto-cancelled after 14 days pending." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:360 +msgid "Pending - The payment is pending. It can take 2-3 days for bank transfers to complete." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:349 +#: includes/common/payment-gateways/skrill.php:354 +msgid "Processed - The payment has been completed, and the funds have been added successfully to your Moneybookers account balance." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:189 +msgid "Shown to the customer on the confirmation screen - the end step of the process - a note, confirmation number, or any other message. Line breaks <br> may be used for longer messages." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:188 +msgid "Confirmation Note (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:183 +msgid "The URL of the logo which you would like to appear at the top of the payment form. The logo must be accessible via HTTPS otherwise it will not be shown. For best integration results we recommend that you use a logo with dimensions up to 200px in width and 50px in height." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:182 +msgid "Logo Image (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:177 +msgid "The name of this store, which will be shown on the gateway. If no value is submitted, the account email will be shown as the recipient of the payment." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:176 +msgid "Merchant Name (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:165 +msgid "Language" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:368 +#: includes/common/payment-gateways/authorizenet-aim.php:262 +#: includes/common/payment-gateways/eway.php:363 +#: includes/common/payment-gateways/eway31.php:471 +#: includes/common/payment-gateways/mollie.php:91 +#: includes/common/payment-gateways/paymill.php:193 +#: includes/common/payment-gateways/paypal-chained-payments.php:356 +#: includes/common/payment-gateways/paypal-express.php:688 +#: includes/common/payment-gateways/paypal-payflow.php:432 +#: includes/common/payment-gateways/pin.php:186 +#: includes/common/payment-gateways/skrill.php:152 +#: includes/common/payment-gateways/stripe.php:288 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:104 +msgid "Currency" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:359 +#: includes/common/payment-gateways/skrill.php:143 +msgid "Secret Word" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:261 +msgid "Order ID:" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:234 +msgid "Complete Checkout" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:204 +msgid "Your Moneybookers transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:155 +msgid "This is the email text to send to those who have made manual payment checkouts. You should include your manual payment instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:257 +#: includes/common/payment-gateways/manual-payments.php:128 +msgid "Record payments manually, such as by Cash, Check, or EFT." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:71 +msgid "Manual/Invoice" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:648 +#: includes/common/payment-gateways/manual-payments.php:35 +#: includes/common/payment-gateways/manual-payments.php:36 +msgid "Manual Payment" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:34 +#: includes/common/payment-gateways/manual-payments.php:163 +msgid "Manual Payments" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:288 +msgid "iDEAL Simulator (for testing)" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:287 +msgid "ABN Amro Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:286 +msgid "Friesland Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:285 +msgid "Rabobank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:284 +msgid "ING Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:279 +msgid "Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:270 +msgid "To make it easier to pay for online products and services, the Dutch banking community has developed the iDEAL online payment method. iDEAL allows online payments to be made using online banking in EUR only." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:247 +#: includes/common/payment-gateways/_payway.php:199 +#: includes/common/payment-gateways/manual-payments.php:68 +msgid "Invoiced" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1016 +msgid "Coupon" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:77 +#: includes/common/payment-gateways/_ideal.php:250 +#: includes/common/payment-gateways/_payway.php:202 +msgid "iDEAL" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:76 +msgid "iDEAL (beta)" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:327 +msgid "Merchant Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:293 +#: includes/common/payment-gateways/_payway.php:302 +#: includes/common/payment-gateways/payfast.php:324 +msgid "Merchant ID" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:462 +msgid "eWay Rapid 3.0 Payments lets merchants recieve credit card payments through eWay without need for users to leave the shop. Note this gateway requires a valid SSL certificate configured for this site." +msgstr "" + +#: includes/common/payment-gateways/eway.php:452 +msgid "There was a problem connecting to eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/eway.php:432 +#: includes/common/payment-gateways/eway.php:437 +msgid "The url of the image can be hosted on your website and pass the secure https:// path of the image to be displayed at the top of the website. This is the second image block on the webpage and is restricted to 960px X 65px. A default secure image is used if none is supplied." +msgstr "" + +#: includes/common/payment-gateways/eway.php:431 +#: includes/common/payment-gateways/eway.php:436 +msgid "Company Logo (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:427 +msgid "The page footer text can be customised and populated below the customer's order details. Useful for contact information." +msgstr "" + +#: includes/common/payment-gateways/eway.php:426 +msgid "Page Footer (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:421 +msgid "Page Description (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:417 +#: includes/common/payment-gateways/eway.php:422 +msgid "This value is used to populate the browsers title bar at the top of the screen." +msgstr "" + +#: includes/common/payment-gateways/eway.php:416 +msgid "Page Title (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:412 +msgid "This will be displayed as the company the customer is purchasing from, including this is highly recommended." +msgstr "" + +#: includes/common/payment-gateways/eway.php:411 +msgid "Company Name" +msgstr "" + +#: includes/common/payment-gateways/eway.php:394 +msgid "Customer ID" +msgstr "" + +#: includes/common/payment-gateways/eway.php:381 +#: includes/common/payment-gateways/eway31.php:488 +msgid "Live API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway.php:371 +#: includes/common/payment-gateways/eway31.php:479 +msgid "Gateway Mode" +msgstr "" + +#: includes/common/payment-gateways/eway.php:354 +msgid "The Hosted Page is a webpage hosted on eWAY's side eliminating the need for merchants to capture, transmit or store credit card numbers. At the checkout time the merchant automatically redirects the customer to the Hosted Page where they would enter their details and have the transaction processed. Upon completion of the transaction the customer is redirected back to the MarketPress checkout confirmation page." +msgstr "" + +#: includes/common/payment-gateways/eway.php:314 +msgid "There was a problem with your credit card information: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:300 +msgid "Paid - The card has been processed - %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:253 +msgid "There was a problem setting up the transaction with eWay: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:245 +#: includes/common/payment-gateways/eway.php:289 +msgid "There was a problem parsing the response from eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:159 +#: includes/common/payment-gateways/eway.php:189 +#: includes/common/payment-gateways/paypal-chained-payments.php:634 +#: includes/common/payment-gateways/paypal-express.php:322 +#: includes/common/payment-gateways/paypal-express.php:473 +msgid "%s Store Purchase - Order ID: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:147 +#: includes/common/payment-gateways/eway.php:462 +msgid "eWay Shared Payments" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:214 +msgid "This is the email text to send to those who have made CubePoints checkouts. You should include your CubePoints instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:212 +#: includes/common/payment-gateways/free_orders.php:188 +#: includes/common/payment-gateways/manual-payments.php:154 +msgid "Order Confirmation Email" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:207 +#: includes/common/payment-gateways/manual-payments.php:149 +msgid "Confirmation User Instructions" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:202 +#: includes/common/payment-gateways/manual-payments.php:144 +msgid "User Instructions" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:198 +#: includes/common/payment-gateways/free_orders.php:170 +#: includes/common/payment-gateways/manual-payments.php:139 +msgid "Enter a public name for this payment method that is displayed to users - No HTML" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:532 +#: includes/common/payment-gateways/_cubepoints.php:196 +#: includes/common/payment-gateways/free_orders.php:169 +#: includes/common/payment-gateways/manual-payments.php:138 +msgid "Method Name" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:187 +msgid "Accept CubePoints as payment(requires the CubePoints plugin)." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:140 +msgid "Sorry, but you do not appear to have enough points to complete this purchase!" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:124 +msgid "%s Store Purchase" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:79 +#: includes/common/payment-gateways/_cubepoints.php:171 +msgid "Your current points: " +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:133 +#: includes/common/payment-gateways/_cubepoints.php:197 +msgid "CubePoints" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:344 +msgid "Authorize.net AIM Checkout" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:331 +msgid "Custom API URL" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:332 +msgid "Many other gateways have Authorize.net API emulators. To use one of these gateways input their API post url here." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:322 +msgid "Request a delimited response from the payment gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:316 +msgid "Security: MD5 Hash" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:317 +msgid "The payment gateway generated MD5 hash value that can be used to authenticate the transaction response. Not needed because responses are returned using an SSL connection." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:306 +msgid "Customer Receipt Email Footer" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:296 +msgid "Customer Receipt Email Header" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:297 +#: includes/common/payment-gateways/paypal-payflow.php:446 +msgid "This text will appear as the header of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:282 +msgid "Encapsulation Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:283 +msgid "Authorize.net default is blank. Otherwise, get this from your credit card processor. If the transactions are going through, but getting strange responses, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:273 +msgid "Optional settings to control advanced options" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:224 +#: includes/common/payment-gateways/authorizenet-aim.php:272 +msgid "Advanced Settings" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:253 +msgid "Transaction Key" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:246 +msgid "Login ID" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:396 +msgid "Gateway Credentials" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:221 +msgid "Authorize.net AIM is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway. USD is the only currency supported by this gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:205 +msgid "There was a problem finalizing your purchase. %s Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:519 +#: includes/common/payment-gateways/paypal-chained-payments.php:218 +#: includes/common/payment-gateways/paypal-chained-payments.php:498 +#: includes/common/payment-gateways/paypal-express.php:822 +#: includes/common/payment-gateways/paypal-express.php:1092 +msgid "The payment has been completed, and the funds have been added successfully to your account balance." +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:233 +msgid "Please enter a valid credit card security code" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:224 +#: includes/public/class-mp-checkout.php:867 +msgid "Please enter a valid credit card number" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:221 +msgid "Please enter your credit card number" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:217 +msgid "Please enter your credit card security code" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:213 +msgid "Please select your credit card expiration date." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:299 +#: includes/common/payment-gateways/authorizenet-aim.php:50 +#: includes/common/payment-gateways/eway.php:148 +#: includes/common/payment-gateways/eway.php:298 +#: includes/common/payment-gateways/eway31.php:267 +#: includes/common/payment-gateways/paymill.php:46 +#: includes/common/payment-gateways/paypal-express.php:972 +#: includes/common/payment-gateways/paypal-payflow.php:60 +#: includes/common/payment-gateways/pin.php:46 +#: includes/common/payment-gateways/simplify.php:19 +#: includes/common/payment-gateways/stripe.php:46 +#: includes/common/payment-gateways/wepay.php:37 +msgid "Credit Card" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:49 +msgid "Authorize.net Checkout" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:156 +#: includes/common/payment-gateways/stripe.php:293 +msgid "Selecting a currency other than that used for your store may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:352 +msgid "Seller ID" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:340 +#: includes/common/payment-gateways/_ideal.php:311 +#: includes/common/payment-gateways/authorizenet-aim.php:234 +#: includes/common/payment-gateways/eway.php:376 +#: includes/common/payment-gateways/payfast.php:315 +#: includes/common/payment-gateways/paypal-chained-payments.php:368 +#: includes/common/payment-gateways/paypal-express.php:699 +#: includes/common/payment-gateways/paypal-payflow.php:391 +msgid "Live" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:339 +#: includes/common/payment-gateways/authorizenet-aim.php:233 +#: includes/common/payment-gateways/eway.php:375 +#: includes/common/payment-gateways/paypal-chained-payments.php:367 +#: includes/common/payment-gateways/paypal-express.php:698 +#: includes/common/payment-gateways/paypal-payflow.php:390 +#: includes/common/shipping-modules/mp-fedex.php:263 +msgid "Sandbox" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:336 +#: includes/common/payment-gateways/_ideal.php:307 +#: includes/common/payment-gateways/authorizenet-aim.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:365 +#: includes/common/payment-gateways/paypal-express.php:695 +#: includes/common/payment-gateways/paypal-payflow.php:387 +#: includes/common/payment-gateways/wepay.php:130 +#: includes/common/shipping-modules/mp-fedex.php:260 +msgid "Mode" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:288 +#: includes/common/payment-gateways/mijireh.php:242 +#: includes/common/payment-gateways/mollie.php:212 +msgid "The order has been received" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:74 +#: includes/common/payment-gateways/2checkout.php:75 +#: includes/common/payment-gateways/2checkout.php:435 +msgid "2Checkout" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:306 +msgid "Confirm" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:218 +#: includes/common/class-mp-cart.php:974 includes/common/class-mp-cart.php:1354 +#: includes/common/template-functions.php:918 +msgid "Checkout" +msgstr "" + +#: includes/common/template-functions.php:207 +msgid "Check Order Status" +msgstr "" + +#: includes/common/template-functions.php:235 +msgid "View Products" +msgstr "" + +#: includes/common/template-functions.php:263 +msgid "Visit Store" +msgstr "" + +#: includes/common/template-functions.php:2912 +#: includes/multisite/template-functions.php:448 +msgid "Order By" +msgstr "" + +#: includes/common/template-functions.php:2887 +#: includes/multisite/template-functions.php:405 +msgid "Price (High to Low)" +msgstr "" + +#: includes/common/template-functions.php:2886 +#: includes/multisite/template-functions.php:404 +msgid "Price (Low to High)" +msgstr "" + +#: includes/common/template-functions.php:2881 +#: includes/multisite/template-functions.php:399 +msgid "Default" +msgstr "" + +#: includes/common/template-functions.php:2858 +msgid "Show All" +msgstr "" + +#: includes/common/class-mp-product.php:2048 +msgid "View Larger Image »" +msgstr "" + +#: includes/common/class-mp-product.php:979 +msgid "Out of Stock" +msgstr "" + +#: includes/common/template-functions.php:148 +msgid "Price: " +msgstr "" + +#: includes/multisite/template-functions.php:833 +msgid "No Tags" +msgstr "" + +#: includes/common/template-functions.php:3162 +msgid "Uncategorized" +msgstr "" + +#: includes/common/class-mp-cart.php:569 includes/common/class-mp-order.php:604 +#: includes/common/helpers.php:115 +msgid "Download" +msgstr "" + +#: includes/common/class-mp-cart.php:1353 +msgid "Empty Cart" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:291 +#: includes/common/payment-gateways/paypal-express.php:718 +#: includes/common/payment-gateways/paypal-payflow.php:423 +#: includes/common/shipping-modules/mp-ups.php:158 +#: includes/public/class-mp-checkout.php:1254 +#: includes/public/class-mp-checkout.php:1383 +msgid "Password" +msgstr "" + +#: includes/common/payment-gateways/eway.php:387 +#: includes/common/payment-gateways/paypal-express.php:711 +#: includes/common/shipping-modules/mp-usps.php:185 +#: includes/public/class-mp-checkout.php:1249 +msgid "Username" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:437 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:790 +msgid "Have a coupon code?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:321 +#: includes/admin/class-mp-orders-admin.php:526 +#: includes/common/class-mp-cart.php:592 +msgid "Remove" +msgstr "" + +#: includes/admin/class-mp-ajax.php:316 +msgid "Quantity:" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2140 +#: includes/admin/class-mp-products-admin.php:2387 +#: includes/common/shipping-modules/class-mp-shipping-api.php:507 +msgid "Extra Shipping Cost" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:403 +msgid "Choose a Shipping Method:" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1691 +#: includes/admin/class-mp-products-admin.php:2131 +#: includes/admin/class-mp-products-admin.php:2378 +#: includes/common/shipping-modules/class-mp-shipping-api.php:228 +msgid "Ounces" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1684 +#: includes/admin/class-mp-products-admin.php:2123 +#: includes/admin/class-mp-products-admin.php:2369 +#: includes/admin/class-mp-setup-wizard.php:546 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:165 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +#: includes/common/shipping-modules/class-mp-shipping-api.php:227 +msgid "Pounds" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:226 +msgid "Product Weight:" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:214 +msgid "Weight (Kilograms)" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:82 +msgid "Number of Categories:" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:72 +msgid "Product Count" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:20 +#: includes/admin/class-mp-product-attributes-admin.php:129 +#: includes/admin/class-mp-product-attributes-list-table.php:22 +#: includes/admin/class-mp-products-admin.php:2216 +#: includes/admin/class-mp-shortcode-builder.php:628 +#: includes/admin/class-mp-shortcode-builder.php:1415 +#: includes/admin/widgets/ms-global-categories.php:70 +#: includes/common/shipping-modules/mp-fedex.php:395 +#: includes/common/shipping-modules/mp-ups.php:202 +#: includes/common/shipping-modules/mp-usps.php:243 +#: includes/public/class-mp-checkout.php:314 +msgid "Name" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:67 +msgid "Order Categories By:" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:24 +#: includes/admin/widgets/ms-global-categories.php:50 +msgid "Global Product Categories" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:15 +msgid "Global Product Category List" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:13 +msgid "Displays a network-wide HTML list of product categories from network MarketPress stores." +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:24 +#: includes/admin/widgets/ms-global-tag-cloud.php:45 +msgid "Global Product Tags" +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:15 +msgid "Global Product Tag Cloud" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:947 +#: includes/admin/widgets/ms-global-product-list.php:173 +msgid "Excerpt" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:169 +msgid "Content To Show:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:140 +msgid "Limit To Product Tag:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:132 +msgid "Limit To Product Category:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:72 +msgid "Global Products" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:16 +msgid "Global Product List" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:14 +msgid "Shows a customizable global list of products from network MarketPress stores." +msgstr "" + +#: includes/common/class-mp-product.php:974 +#: includes/multisite/template-functions.php:731 +msgid "Buy Now »" +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:13 +msgid "Displays global most used product tags in cloud format from network MarketPress stores." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:438 +msgid "Theme Permissions" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:402 +#: includes/multisite/class-mp-admin-multisite.php:448 +msgid "No Access" +msgstr "" + +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:120 +msgid "Pro Site Level" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:401 +#: includes/multisite/class-mp-admin-multisite.php:447 +msgid "All Can Use" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:390 +msgid "Gateway Permissions" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:375 +msgid "Select a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:350 +msgid "Global Gateway" +msgstr "" + +#. Plugin Name of the plugin/theme +msgid "MarketPress" +msgstr "" + +#: includes/admin/widgets/product-tag-cloud.php:7 +msgid "Your most used product tags in cloud format from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/categories.php:79 +msgid "Show hierarchy" +msgstr "" + +#: includes/admin/widgets/categories.php:76 +#: includes/admin/widgets/ms-global-categories.php:92 +msgid "Show product counts" +msgstr "" + +#: includes/admin/widgets/categories.php:73 +msgid "Show as dropdown" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:710 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:736 +#: includes/admin/widgets/categories.php:30 +msgid "Select Category" +msgstr "" + +#: includes/admin/widgets/categories.php:7 +msgid "A list or dropdown of product categories from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/product-list.php:250 +msgid "Show Buy Button" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:183 +#: includes/admin/widgets/product-list.php:244 +msgid "Show Price" +msgstr "" + +#: includes/admin/widgets/product-list.php:241 +msgid "Show Excerpt" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:155 +#: includes/admin/widgets/product-list.php:238 +msgid "Thumbnail Size:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:153 +#: includes/admin/widgets/product-list.php:237 +msgid "Show Thumbnail" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:147 +#: includes/admin/widgets/product-list.php:233 +msgid "Display Settings" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:136 +#: includes/admin/widgets/ms-global-product-list.php:144 +#: includes/admin/widgets/product-list.php:230 +msgid "Enter the Slug" +msgstr "" + +#: includes/admin/widgets/product-list.php:228 +#: includes/common/template-functions.php:894 +msgid "Tag" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:686 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:712 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:739 +#: includes/admin/class-mp-shortcode-builder.php:796 +#: includes/admin/widgets/product-list.php:227 +#: includes/common/template-functions.php:886 +#: includes/common/template-functions.php:2907 +msgid "Category" +msgstr "" + +#: includes/admin/widgets/product-list.php:226 +msgid "No Filter" +msgstr "" + +#: includes/admin/widgets/product-list.php:224 +msgid "Taxonomy Filter:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:108 +#: includes/admin/widgets/product-list.php:209 +msgid "Order Products By:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:101 +#: includes/admin/widgets/product-list.php:206 +msgid "Number of Products:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:98 +#: includes/admin/widgets/product-list.php:204 +msgid "List Settings" +msgstr "" + +#: includes/admin/widgets/product-list.php:177 +msgid "Our Products" +msgstr "" + +#: includes/admin/widgets/product-list.php:144 +#: includes/common/template-functions.php:2070 +#: includes/common/template-functions.php:2347 +#: includes/multisite/template-functions.php:303 +#: includes/multisite/template-functions.php:623 +msgid "No Products" +msgstr "" + +#: includes/admin/widgets/product-list.php:8 +msgid "Product List" +msgstr "" + +#: includes/admin/widgets/product-list.php:7 +msgid "Shows a customizable list of products from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/cart.php:75 includes/admin/widgets/categories.php:82 +#: includes/admin/widgets/product-list.php:253 +#: includes/admin/widgets/product-tag-cloud.php:57 +msgid "Only show on store pages" +msgstr "" + +#: includes/admin/widgets/cart.php:65 +#: includes/admin/widgets/ms-global-product-list.php:92 +#: includes/admin/widgets/product-list.php:200 +msgid "Custom Text:" +msgstr "" + +#: includes/admin/widgets/cart.php:64 includes/admin/widgets/categories.php:69 +#: includes/admin/widgets/ms-global-categories.php:59 +#: includes/admin/widgets/ms-global-product-list.php:87 +#: includes/admin/widgets/ms-global-tag-cloud.php:49 +#: includes/admin/widgets/product-list.php:199 +#: includes/admin/widgets/product-tag-cloud.php:49 +msgid "Title:" +msgstr "" + +#: includes/admin/widgets/cart.php:7 +msgid "Shows dynamic shopping cart contents along with a checkout button for your MarketPress store." +msgstr "" + +#: includes/admin/widgets/product-tag-cloud.php:8 +msgid "Product Tag Cloud" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:539 +#: includes/admin/class-mp-setup-wizard.php:575 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:163 +msgid "Measurement System" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:616 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:149 +msgid "Select Shipping Options" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:596 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:129 +msgid "Calculated Options" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:582 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:115 +msgid "No Shipping" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:110 +msgid "EU" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:109 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:93 +msgid "All" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:92 +msgid "Select:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:185 +msgid "Store Pages" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:223 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:256 +msgid "Order Shipped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:60 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:95 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:128 +#: marketpress.php:266 +msgid "New Order" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:314 +msgid "Email Notifications" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:59 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:200 +msgid "Products List" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:58 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:190 +msgid "Store Base" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:108 +#: includes/admin/class-mp-shortcode-builder.php:635 +#: includes/admin/class-mp-shortcode-builder.php:708 +#: includes/admin/class-mp-shortcode-builder.php:875 +#: includes/admin/class-mp-shortcode-builder.php:1319 +#: includes/admin/class-mp-shortcode-builder.php:1422 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:526 +#: includes/admin/widgets/ms-global-categories.php:78 +#: includes/admin/widgets/ms-global-product-list.php:127 +#: includes/admin/widgets/product-list.php:221 +msgid "Ascending" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:109 +#: includes/admin/class-mp-shortcode-builder.php:636 +#: includes/admin/class-mp-shortcode-builder.php:709 +#: includes/admin/class-mp-shortcode-builder.php:876 +#: includes/admin/class-mp-shortcode-builder.php:1320 +#: includes/admin/class-mp-shortcode-builder.php:1423 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:525 +#: includes/admin/widgets/ms-global-categories.php:75 +#: includes/admin/widgets/ms-global-product-list.php:124 +#: includes/admin/widgets/product-list.php:220 +msgid "Descending" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:637 +#: includes/admin/class-mp-shortcode-builder.php:695 +#: includes/admin/class-mp-shortcode-builder.php:862 +#: includes/admin/class-mp-shortcode-builder.php:1306 +#: includes/admin/class-mp-shortcode-builder.php:1424 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:518 +#: includes/admin/widgets/ms-global-product-list.php:121 +#: includes/admin/widgets/product-list.php:218 +msgid "Random" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:694 +#: includes/admin/class-mp-shortcode-builder.php:861 +#: includes/admin/class-mp-shortcode-builder.php:1305 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:517 +#: includes/admin/widgets/ms-global-product-list.php:119 +#: includes/admin/widgets/product-list.php:216 +msgid "Product Price" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:693 +#: includes/admin/class-mp-shortcode-builder.php:860 +#: includes/admin/class-mp-shortcode-builder.php:1304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:516 +#: includes/admin/widgets/ms-global-product-list.php:117 +#: includes/admin/widgets/product-list.php:215 +msgid "Number of Sales" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:692 +#: includes/admin/class-mp-shortcode-builder.php:859 +#: includes/admin/class-mp-shortcode-builder.php:1303 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:515 +#: includes/admin/widgets/product-list.php:214 +msgid "Product Author" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:691 +#: includes/admin/class-mp-shortcode-builder.php:858 +#: includes/admin/class-mp-shortcode-builder.php:1302 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:514 +#: includes/admin/widgets/product-list.php:213 +msgid "Product ID" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:690 +#: includes/admin/class-mp-shortcode-builder.php:857 +#: includes/admin/class-mp-shortcode-builder.php:1301 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:513 +#: includes/admin/widgets/ms-global-product-list.php:113 +#: includes/admin/widgets/product-list.php:212 +msgid "Publish Date" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:430 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:726 +msgid "Width" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:439 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:735 +msgid "Height" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:88 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:402 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:698 +msgid "Custom" +msgstr "" + +#: includes/common/class-mp-product.php:179 +#: includes/common/class-mp-product.php:992 +#: includes/common/class-mp-product.php:1000 +#: includes/multisite/template-functions.php:579 +msgid "Buy Now" +msgstr "" + +#: includes/common/class-mp-product.php:175 +#: includes/common/class-mp-product.php:990 +#: includes/common/class-mp-product.php:998 +msgid "Add To Cart" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:807 +msgid "Store Style" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1021 +msgid "Edit Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupon.php:580 +#: includes/admin/class-mp-ajax.php:238 +#: includes/admin/class-mp-products-admin.php:1532 +msgid "Unlimited" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1198 +msgid "Remaining Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1197 +msgid "Used" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:752 +#: includes/admin/class-mp-products-admin.php:2343 +msgid "Start Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:598 +msgid "Coupon Code" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:444 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:284 +msgid "Save Changes" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:57 +#: includes/admin/class-mp-shortcode-builder.php:716 +#: includes/admin/class-mp-shortcode-builder.php:727 +#: includes/admin/class-mp-shortcode-builder.php:883 +#: includes/admin/class-mp-shortcode-builder.php:894 +#: includes/admin/class-mp-shortcode-builder.php:946 +#: includes/admin/class-mp-shortcode-builder.php:956 +#: includes/admin/class-mp-shortcode-builder.php:1006 +#: includes/admin/class-mp-shortcode-builder.php:1327 +#: includes/admin/class-mp-shortcode-builder.php:1338 +#: includes/admin/store-settings/class-mp-store-settings-general.php:357 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:270 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:108 +#: includes/admin/widgets/ms-global-product-list.php:172 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:94 +msgid "None" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:352 +msgid "Google Analytics Ecommerce Tracking" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:310 +msgid "This option turns MarketPress into more of a product listing plugin, disabling shopping carts, checkout, and order management. This is useful if you simply want to list items you can buy in a store somewhere else, optionally linking the \"Buy Now\" buttons to an external site. Some examples are a car dealership, or linking to songs/albums in itunes, or linking to products on another site with your own affiliate links." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:304 +msgid "Whether or not customers must be registered and logged in to checkout. (Not recommended: Enabling this can lower conversions)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:258 +msgid "How many times may a customer download a file they have purchased? (It's best to set this higher than one in case they have any problems downloading)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:257 +msgid "Maximum Downloads" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:298 +msgid "This will set the product to draft if inventory of all variations is gone." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:288 +msgid "At what low stock count do you want to be warned for products you have enabled inventory tracking for?" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:208 +#: includes/admin/store-settings/class-mp-store-settings-general.php:287 +msgid "Inventory Warning Threshold" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:282 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:542 +msgid "Miscellaneous Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:429 +#: includes/multisite/class-mp-admin-multisite.php:247 +msgid "Show Decimal in Prices" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:451 +#: includes/admin/store-settings/class-mp-store-settings-general.php:403 +#: includes/multisite/class-mp-admin-multisite.php:221 +msgid "Currency Symbol Position" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:444 +#: includes/admin/store-settings/class-mp-store-settings-general.php:396 +msgid "Store Currency" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:429 +#: includes/admin/store-settings/class-mp-store-settings-general.php:381 +msgid "Currency Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:516 +msgid "Please see your local tax laws. Note if this is enabled and a downloadable only cart, rates will be the default for your base location." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:529 +msgid "Apply Tax to Downloadable Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:498 +msgid "Enabling this option allows you to enter and show all prices inclusive of tax, while still listing the tax total as a line item in shopping carts. Please see your local tax laws." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:497 +msgid "Enter Prices Inclusive of Tax?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:492 +msgid "Please see your local tax laws. Most areas charge tax on shipping fees." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:491 +msgid "Apply Tax To Shipping Fees?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:674 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:565 +#: includes/common/payment-gateways/authorizenet-aim.php:291 +#: includes/common/payment-gateways/authorizenet-aim.php:326 +#: includes/common/payment-gateways/payfast.php:347 +msgid "No" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:675 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:759 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:512 +#: includes/admin/class-mp-setup-wizard.php:518 +#: includes/admin/class-mp-setup-wizard.php:524 +#: includes/admin/class-mp-setup-wizard.php:530 +#: includes/admin/class-mp-setup-wizard.php:564 +#: includes/admin/store-settings/class-mp-store-settings-general.php:232 +#: includes/admin/store-settings/class-mp-store-settings-general.php:299 +#: includes/admin/store-settings/class-mp-store-settings-general.php:305 +#: includes/admin/store-settings/class-mp-store-settings-general.php:311 +#: includes/admin/store-settings/class-mp-store-settings-general.php:317 +#: includes/admin/store-settings/class-mp-store-settings-general.php:328 +#: includes/admin/store-settings/class-mp-store-settings-general.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:341 +#: includes/admin/store-settings/class-mp-store-settings-general.php:348 +#: includes/admin/store-settings/class-mp-store-settings-general.php:367 +#: includes/admin/store-settings/class-mp-store-settings-general.php:493 +#: includes/admin/store-settings/class-mp-store-settings-general.php:499 +#: includes/admin/store-settings/class-mp-store-settings-general.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:556 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:375 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:381 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:387 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:474 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:493 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:532 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:574 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:606 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:664 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:670 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:677 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:683 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:689 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:763 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:774 +#: includes/common/payment-gateways/_bitpay.php:250 +#: includes/common/payment-gateways/_bitpay.php:257 +#: includes/common/payment-gateways/_bitpay.php:264 +#: includes/common/payment-gateways/authorizenet-aim.php:290 +#: includes/common/payment-gateways/authorizenet-aim.php:325 +#: includes/common/payment-gateways/free_orders.php:160 +#: includes/common/payment-gateways/payfast.php:346 +#: includes/common/payment-gateways/paymill.php:162 +#: includes/common/payment-gateways/paypal-payflow.php:441 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-checkbox.php:22 +msgid "Yes" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:492 +#: includes/admin/store-settings/class-mp-store-settings-general.php:472 +msgid "%s Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:467 +#: includes/admin/store-settings/class-mp-store-settings-general.php:449 +msgid "Tax Settings" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:370 +#: includes/admin/store-settings/class-mp-store-settings-general.php:624 +msgid "Base Zip/Postal Code" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:354 +#: includes/admin/store-settings/class-mp-store-settings-general.php:608 +msgid "Base State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:589 +msgid "Base Country" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:582 +msgid "Location Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:195 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:800 +#: includes/multisite/class-mp-admin-multisite.php:172 +msgid "General Settings" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1945 +#: includes/admin/class-mp-products-admin.php:2185 +#: includes/admin/class-mp-store-settings-admin.php:111 +#: includes/admin/class-mp-store-settings-admin.php:266 +msgid "General" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:242 +msgid "Importers" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +#: includes/admin/class-mp-store-settings-admin.php:234 +msgid "Payments" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:313 +#: includes/admin/class-mp-store-settings-admin.php:112 +#: includes/admin/class-mp-store-settings-admin.php:222 +msgid "Presentation" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:916 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1015 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1018 +#: includes/admin/class-mp-dashboard-widgets.php:305 marketpress.php:702 +msgid "Coupons" +msgstr "" + +#: includes/admin/class-mp-admin.php:251 +msgid "Download »" +msgstr "" + +#: includes/admin/class-mp-admin.php:245 +#: includes/admin/class-mp-exporter-orders.php:170 +msgid "All Statuses" +msgstr "" + +#: includes/admin/class-mp-admin.php:209 +#: includes/admin/class-mp-exporter-orders.php:150 +#: includes/admin/class-mp-exporter-orders.php:178 +msgid "Export Orders" +msgstr "" + +#: includes/admin/class-mp-admin.php:228 +msgid "Show all dates" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:947 +msgid "Change Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:287 +msgid "Order Notes" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:478 +msgid "Other" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:205 +msgid "Subtotal" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:84 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:87 +#: includes/admin/class-mp-products-admin.php:1737 +#: includes/common/class-mp-cart.php:1409 +#: includes/common/class-mp-product.php:559 +msgid "Quantity" +msgstr "" + +#: includes/common/helpers.php:93 +msgid "Item" +msgstr "" + +#: includes/common/class-mp-order.php:1050 +msgid "Current Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:297 +msgid "Order Actions" +msgstr "" + +#: includes/common/class-mp-product.php:1084 +msgid "More Info »" +msgstr "" + +#: includes/common/class-mp-product.php:2313 +msgid "Low Product Inventory Notification" +msgstr "" + +#: includes/common/class-mp-order.php:338 includes/common/data.php:154 +msgid "New Order Notification: ORDERID" +msgstr "" + +#: includes/common/helpers.php:259 +msgid "Your payment for this order is complete." +msgstr "" + +#: includes/common/helpers.php:261 +msgid "Your payment for this order is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/helpers.php:256 +msgid "Payment Total:" +msgstr "" + +#: includes/common/helpers.php:253 +msgid "Transaction ID:" +msgstr "" + +#: includes/common/helpers.php:249 +msgid "Payment Type:" +msgstr "" + +#: includes/common/helpers.php:246 +msgid "Payment Method:" +msgstr "" + +#: includes/common/helpers.php:242 +msgid "Order Notes:" +msgstr "" + +#: includes/common/helpers.php:237 +msgid "Special Instructions:" +msgstr "" + +#: includes/common/helpers.php:232 +msgid "Tracking Number:" +msgstr "" + +#: includes/common/helpers.php:223 includes/common/helpers.php:226 +#: includes/common/helpers.php:228 +#: includes/common/shipping-modules/class-mp-shipping-api.php:406 +#: includes/common/shipping-modules/class-mp-shipping-api.php:428 +msgid "Shipping Method:" +msgstr "" + +#: includes/common/helpers.php:168 +msgid "No shipping required for this order." +msgstr "" + +#: includes/common/helpers.php:155 +msgid "Order Total:" +msgstr "" + +#: includes/common/class-mp-order.php:1025 +msgid "Taxes:" +msgstr "" + +#: includes/common/class-mp-order.php:1032 includes/common/helpers.php:144 +msgid "Shipping:" +msgstr "" + +#: includes/public/class-mp-checkout.php:367 +msgid "Street address, P.O. box, company name, c/o" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:314 +msgid "Shipping Info" +msgstr "" + +#: includes/public/class-mp-public.php:740 +msgid "Whoops, there was a problem loading up this file for your download. Please contact us for help." +msgstr "" + +#: includes/public/class-mp-public.php:683 +msgid "Sorry, our records show you've downloaded this file %d out of %d times allowed. Please contact us if you still need help." +msgstr "" + +#: includes/public/class-mp-public.php:634 +msgid "Sorry, your order has been marked as unpaid." +msgstr "" + +#: includes/public/class-mp-public.php:629 +msgid "Sorry, the link is invalid for this download." +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:15 +#: includes/admin/class-mp-products-admin.php:1172 +msgid "Cheatin’ uh?" +msgstr "" + +#: includes/public/class-mp-public.php:407 +#: includes/public/class-mp-short-codes.php:128 +msgid "Please enter a valid email address." +msgstr "" + +#: includes/admin/class-mp-ajax.php:191 +#: includes/admin/class-mp-products-admin.php:1821 +#: includes/admin/class-mp-products-admin.php:2010 +#: includes/admin/class-mp-products-admin.php:2267 +msgid "File URL" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1842 +msgid "External Link" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2177 +msgid "Add Variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:126 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:289 +msgid "Inventory" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:438 +#: includes/admin/class-mp-products-admin.php:578 +#: includes/admin/class-mp-products-admin.php:1552 +#: includes/admin/class-mp-products-admin.php:2053 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:134 +msgid "Sale Price" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "Variation Name" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1931 +msgid "Product Details" +msgstr "" + +#: includes/admin/class-mp-product-attributes-list-table.php:33 +msgid "Delete" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1057 +msgid "Trashed" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:231 +#: includes/admin/class-mp-orders-admin.php:1015 +#: includes/common/class-mp-order.php:1052 includes/common/helpers.php:97 +msgid "Total" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1196 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:210 +#: includes/admin/class-mp-orders-admin.php:1014 +msgid "Discount" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:221 +#: includes/admin/class-mp-orders-admin.php:1013 +#: includes/common/payment-gateways/_ideal.php:148 +#: includes/common/payment-gateways/_payway.php:134 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:108 +msgid "Tax" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:216 +#: includes/admin/class-mp-orders-admin.php:1012 +#: includes/admin/class-mp-products-admin.php:1958 +#: includes/admin/class-mp-products-admin.php:2198 +#: includes/admin/class-mp-store-settings-admin.php:114 +#: includes/admin/class-mp-store-settings-admin.php:230 +#: includes/common/class-mp-cart.php:717 includes/common/helpers.php:168 +#: includes/common/payment-gateways/_ideal.php:137 +#: includes/common/payment-gateways/_payway.php:116 +#: includes/public/class-mp-checkout.php:1304 +msgid "Shipping" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1011 +msgid "Items" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1010 +msgid "From" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:154 +#: includes/admin/class-mp-orders-admin.php:1009 +#: includes/common/class-mp-gdpr.php:370 +msgid "Order Date" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1008 +#: includes/common/class-mp-gdpr.php:366 +#: includes/common/template-functions.php:2134 +msgid "Order ID" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:22 +#: includes/admin/class-mp-orders-admin.php:1007 +msgid "Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1155 +msgid "N/A" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:243 +#: includes/admin/class-mp-products-admin.php:464 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:142 +msgid "Sales" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:463 +msgid "Stock" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:85 +#: includes/admin/class-mp-ajax.php:176 includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:434 +#: includes/admin/class-mp-products-admin.php:462 +#: includes/admin/class-mp-products-admin.php:576 +#: includes/admin/class-mp-products-admin.php:1519 +#: includes/admin/class-mp-products-admin.php:1569 +#: includes/admin/class-mp-products-admin.php:1950 +#: includes/admin/class-mp-products-admin.php:2059 +#: includes/admin/class-mp-products-admin.php:2190 +#: includes/admin/class-mp-products-admin.php:2330 +#: includes/common/class-mp-cart.php:1415 includes/common/helpers.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:130 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:276 +msgid "Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:173 +#: includes/admin/class-mp-products-admin.php:461 +#: includes/admin/class-mp-products-admin.php:1972 +#: includes/admin/class-mp-products-admin.php:2224 +msgid "SKU" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:459 +#: includes/admin/class-mp-products-admin.php:1793 +#: includes/admin/class-mp-products-admin.php:1805 +#: includes/admin/class-mp-products-admin.php:2163 +msgid "Variations" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:83 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:86 +#: includes/admin/class-mp-dashboard-widgets.php:134 +#: includes/admin/class-mp-products-admin.php:458 +#: includes/admin/class-mp-products-admin.php:837 +#: includes/admin/class-mp-shortcode-builder.php:689 +#: includes/admin/class-mp-shortcode-builder.php:856 +#: includes/admin/class-mp-shortcode-builder.php:1300 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:512 +#: includes/admin/widgets/ms-global-product-list.php:115 +#: includes/admin/widgets/product-list.php:211 +msgid "Product Name" +msgstr "" + +#: includes/common/template-functions.php:2575 +msgid "Categorized in " +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:305 +#: includes/common/payment-gateways/free_orders.php:176 +msgid "Payment Information" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:167 +#: includes/admin/class-mp-orders-admin.php:432 +#: includes/admin/class-mp-pages-admin.php:62 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:227 +#: includes/common/class-mp-gdpr.php:374 +#: includes/common/template-functions.php:175 +#: includes/common/template-functions.php:926 +msgid "Order Status" +msgstr "" + +#. translators: %s: orders closed +#: marketpress.php:327 +msgid "Closed (%s)" +msgid_plural "Closed (%s)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/admin/class-mp-admin.php:249 +#: includes/admin/class-mp-orders-admin.php:375 +#: includes/admin/class-mp-orders-admin.php:951 +#: includes/admin/class-mp-orders-admin.php:1053 +#: includes/admin/class-mp-orders-admin.php:1065 +#: includes/common/class-mp-gdpr.php:330 +#: includes/common/class-mp-order.php:1019 marketpress.php:325 +msgid "Closed" +msgstr "" + +#. translators: %s: shipped orders +#: marketpress.php:320 +msgid "Shipped (%s)" +msgid_plural "Shipped (%s)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/admin/class-mp-admin.php:248 +#: includes/admin/class-mp-orders-admin.php:376 +#: includes/admin/class-mp-orders-admin.php:950 +#: includes/admin/class-mp-orders-admin.php:1049 +#: includes/admin/class-mp-orders-admin.php:1064 +#: includes/common/class-mp-gdpr.php:329 +#: includes/common/class-mp-order.php:1002 marketpress.php:318 +msgid "Shipped" +msgstr "" + +#. translators: %s: paid orders +#: marketpress.php:313 +msgid "Paid (%s)" +msgid_plural "Paid (%s)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/admin/class-mp-admin.php:247 +#: includes/admin/class-mp-orders-admin.php:377 +#: includes/admin/class-mp-orders-admin.php:949 +#: includes/admin/class-mp-orders-admin.php:1045 +#: includes/admin/class-mp-orders-admin.php:1063 +#: includes/common/class-mp-gdpr.php:328 +#: includes/common/payment-gateways/2checkout.php:294 +#: includes/common/payment-gateways/_cubepoints.php:130 +#: includes/common/payment-gateways/authorizenet-aim.php:193 +#: includes/common/payment-gateways/free_orders.php:91 +#: includes/common/payment-gateways/mijireh.php:248 +#: includes/common/payment-gateways/paymill.php:273 +#: includes/common/payment-gateways/paypal-express.php:933 +#: includes/common/payment-gateways/paypal-express.php:967 +#: includes/common/payment-gateways/pin.php:258 +#: includes/common/payment-gateways/simplify.php:181 +#: includes/common/payment-gateways/stripe.php:368 +#: includes/common/payment-gateways/wepay.php:269 marketpress.php:311 +msgid "Paid" +msgstr "" + +#. translators: %s: orders received +#: marketpress.php:306 +msgid "Received (%s)" +msgid_plural "Received (%s)" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + +#: includes/admin/class-mp-admin.php:246 +#: includes/admin/class-mp-orders-admin.php:378 +#: includes/admin/class-mp-orders-admin.php:1041 +#: includes/admin/class-mp-orders-admin.php:1062 +#: includes/common/class-mp-gdpr.php:327 includes/common/class-mp-order.php:995 +#: includes/common/payment-gateways/payfast.php:244 marketpress.php:304 +msgid "Received" +msgstr "" + +#: marketpress.php:268 +msgid "Search Orders" +msgstr "" + +#: marketpress.php:267 +msgid "View Order" +msgstr "" + +#: marketpress.php:262 +msgid "Order" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:301 +#: includes/admin/class-mp-orders-admin.php:989 marketpress.php:261 +msgid "Orders" +msgstr "" + +#: marketpress.php:228 +msgid "No Products found in Trash" +msgstr "" + +#: marketpress.php:227 +msgid "No Products Found" +msgstr "" + +#: marketpress.php:226 +msgid "Search Products" +msgstr "" + +#: marketpress.php:225 marketpress.php:229 +msgid "View Product" +msgstr "" + +#: marketpress.php:224 +msgid "New Product" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1022 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:258 +#: marketpress.php:223 +msgid "Edit" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1019 +msgid "Create New" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:687 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:698 +#: marketpress.php:217 +msgid "Product" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:307 +#: includes/common/template-functions.php:173 +#: includes/common/template-functions.php:179 +#: includes/common/template-functions.php:902 +#: includes/multisite/template-functions.php:82 marketpress.php:216 +#: marketpress.php:219 +msgid "Products" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:118 +#: includes/admin/widgets/product-tag-cloud.php:46 +#: includes/multisite/class-mp-admin-multisite.php:548 +msgid "Product Tags" +msgstr "" + +#: includes/common/template-functions.php:2906 +#: includes/multisite/template-functions.php:449 +msgid "Product Category" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:117 +#: includes/admin/widgets/categories.php:8 +#: includes/admin/widgets/categories.php:18 +#: includes/multisite/class-mp-admin-multisite.php:539 +msgid "Product Categories" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:332 +#: includes/common/template-functions.php:872 marketpress.php:218 +msgid "Store" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:60 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:209 +#: includes/admin/widgets/cart.php:8 includes/admin/widgets/cart.php:56 +#: includes/common/template-functions.php:174 +#: includes/common/template-functions.php:811 +msgid "Shopping Cart" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:110 +#: includes/admin/class-mp-store-settings-admin.php:218 +msgid "Store Settings" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:128 marketpress.php:607 +msgid "Settings" +msgstr "" + +#: includes/common/data.php:178 includes/common/data.php:190 +msgid "Your Order Has Been Shipped! (ORDERID)" +msgstr "" + +#: includes/common/data.php:159 includes/common/data.php:166 +#: includes/common/data.php:172 +msgid "Your Order Confirmation (ORDERID)" +msgstr "" + +#: includes/common/data.php:148 +msgid "

    Thank you for your order! We appreciate your business, and please come back often to check out our new products.

    " +msgstr "" + +#: includes/common/data.php:147 +msgid "

    You are almost done! Please do a final review of your order to make sure everything is correct then click the \"Confirm Payment\" button.

    " +msgstr "" + +#: includes/common/data.php:145 +msgid "

    Please enter your shipping information in the form below to proceed with your order.

    " +msgstr "" + +#: includes/common/data.php:143 +msgid "

    If you have any questions about your order please do not hesitate to contact us.

    " +msgstr "" + +#: includes/common/data.php:106 +msgid "tag" +msgstr "" + +#: includes/common/data.php:105 +msgid "category" +msgstr "" + +#: includes/common/data.php:104 +msgid "order-status" +msgstr "" + +#: includes/common/data.php:103 +msgid "shopping-cart" +msgstr "" + +#: includes/common/data.php:102 +msgid "products" +msgstr "" + +#. Translators: change default slugs here +#: includes/common/data.php:101 +msgid "store" +msgstr "" \ No newline at end of file diff --git a/languages/mp-sv.mo b/languages/mp-sv.mo new file mode 100644 index 0000000000000000000000000000000000000000..8e008ed81d585828fc8d2b5963ee14f9c0d9ddb5 GIT binary patch literal 45983 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 'DOMPDF_ENABLE_HTML5PARSER', true ); to the wp-config.php file." +msgstr "" + +#: includes/public/class-mp-checkout.php:723 +msgid "Invalid Email" +msgstr "" + +#: includes/public/class-mp-checkout.php:721 +#: includes/public/class-mp-checkout.php:729 +msgid "This field is required" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:804 +msgid "This option changes the built-in css styles for store pages. For a custom css style, save your css file with the /* MarketPress Style: Your CSS Theme Name Here */ header line in the \"%s\" folder and it will appear in this list so you may select it. You should select \"None\" if you don't wish to use custom CSS styles or if you are using default theme templates or custom theme templates and css to make your own completely unique store design. For more information on custom theme templates click here »." +msgstr "" + +#: includes/public/class-mp-public.php:421 +#: includes/public/class-mp-short-codes.php:142 +msgid "Please enter a value greater than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:420 +#: includes/public/class-mp-short-codes.php:141 +msgid "Please enter a value less than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:419 +#: includes/public/class-mp-short-codes.php:140 +msgid "Please enter a value between {0} and {1}." +msgstr "" + +#: includes/public/class-mp-public.php:418 +#: includes/public/class-mp-short-codes.php:139 +msgid "Please enter a value between {0} and {1} characters long." +msgstr "" + +#: includes/public/class-mp-public.php:417 +#: includes/public/class-mp-short-codes.php:138 +msgid "Please enter at least {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:416 +#: includes/public/class-mp-short-codes.php:137 +msgid "Please enter no more than {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:415 +#: includes/public/class-mp-short-codes.php:136 +msgid "Please enter a value with a valid extension." +msgstr "" + +#: includes/public/class-mp-public.php:414 +#: includes/public/class-mp-short-codes.php:135 +msgid "Please enter the same value again." +msgstr "" + +#: includes/public/class-mp-public.php:413 +#: includes/public/class-mp-short-codes.php:134 +msgid "Please enter a valid credit card number." +msgstr "" + +#: includes/public/class-mp-public.php:412 +#: includes/public/class-mp-short-codes.php:133 +msgid "Please enter only digits." +msgstr "" + +#: includes/public/class-mp-public.php:411 +#: includes/public/class-mp-short-codes.php:132 +msgid "Please enter a valid number." +msgstr "" + +#: includes/public/class-mp-public.php:410 +#: includes/public/class-mp-short-codes.php:131 +msgid "Please enter a valid date (ISO)." +msgstr "" + +#: includes/public/class-mp-public.php:409 +#: includes/public/class-mp-short-codes.php:130 +msgid "Please enter a valid date." +msgstr "" + +#: includes/public/class-mp-public.php:408 +#: includes/public/class-mp-short-codes.php:129 +msgid "Please enter a valid URL." +msgstr "" + +#: includes/public/class-mp-public.php:406 +#: includes/public/class-mp-short-codes.php:127 +msgid "Please fix this field." +msgstr "" + +#: includes/public/class-mp-checkout.php:1287 +#: includes/public/class-mp-public.php:405 +#: includes/public/class-mp-short-codes.php:126 +msgid "This field is required." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:810 +msgid "None - Without Special CSS-styles" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:809 +msgid "Default - Using Default CSS-styles" +msgstr "" + +#: marketpress.php:739 +msgid "Enable multiple downloads per product" +msgstr "" + +#: marketpress.php:738 +msgid "Multiple Downloads" +msgstr "" + +#: includes/public/class-mp-checkout.php:715 +msgid "Invalid Zip Code" +msgstr "Ogiltigt postnummer" + +#: includes/common/template-functions.php:2126 +msgid "Guest Email" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:195 +msgid "There was a problem finalizing your purchase. Please re-enter your credit card information and try again" +msgstr "" + +#: includes/common/class-mp-cart.php:565 includes/common/class-mp-order.php:600 +#: includes/common/helpers.php:111 +msgid "Download %1$s" +msgstr "Ladda ner %1$s" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:331 +msgid "Export products to file" +msgstr "Exportera produkter till fil" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:328 +msgid "The import process uses the WordPress importer plugin." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:326 +msgid "Import / Export Products" +msgstr "Importera/exportera produkter" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:325 +msgid "Export settings to file" +msgstr "Exportera inställningar till fil" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:324 +msgid "Import configuration" +msgstr "Importkonfiguration" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:320 +msgid "Use the text below to export to a new installation. Or paste in the new configuration to import." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:318 +msgid "Import / Export Settings" +msgstr "Import/export inställningar" + +#. translators: URL to wp-admin/import.php +#: includes/admin/store-settings/class-mp-store-settings-import.php:266 +msgid "This importer is not installed. Please install importers from the main site." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:261 +msgid "Install Now" +msgstr "Installera nu" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:260 +msgid "Install %s" +msgstr "Installera %s" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:240 +msgid "Run Importer" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:239 +msgid "Run %s" +msgstr "Kör %s" + +#: includes/admin/class-mp-store-settings-admin.php:258 +msgid "Import/Export" +msgstr "Importera/exportera" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1199 +msgid "Requires Login" +msgstr "Kräver inloggning" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:737 +msgid "Optionally limit the user to some categories" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:671 +msgid "Should this coupon only be available to logged in users?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:670 +msgid "Require Login" +msgstr "Kräver insloggning" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:655 +msgid "Mimimum number of products" +msgstr "Minimum antal produkter" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:653 +msgid "Enter the minimum number of products in the cart that this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:648 +msgid "Can this coupon be limited to a number of products in the cart?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:334 +msgid "Add all values" +msgstr "Lägg till alla värden" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:265 +msgid "Set as default variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:154 +msgid "Set Default" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:150 +msgid "More Info" +msgstr "Mer information" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:40 +msgid "MarketPress - Quick Setup" +msgstr "" + +#: includes/public/class-mp-checkout.php:1399 +msgid "Proceed to checkout and create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1241 +#: includes/public/class-mp-checkout.php:1245 +msgid "Register account" +msgstr "Registrera konto" + +#: includes/public/class-mp-checkout.php:1233 +msgid "Register as customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:765 +msgid "

    Oops!

    Looks like you haven't added anything your cart. Let's go shopping!

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:763 +msgid "

    Oops!

    The cart is disabled.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing Information" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:214 +msgid "Global Currency" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:198 +msgid "Global Store Currency" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:507 +msgid "There are no shipping services available for this type of package in your location." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:168 +msgid "Using this USPS Shipping calculator requires requesting an Ecommerce API Username and Password. Get your free set of credentials here ». The password is no longer used for the API, just the username which you should enter below. The USPS test site has not yet been updated and currently doesn't work - you should just request activating your credentials with USPS and go live." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:339 +msgid "ZIP Code" +msgstr "Postnummer" + +#: includes/common/payment-gateways/stripe.php:334 +msgid "Last name" +msgstr "Efternamn" + +#: includes/common/payment-gateways/stripe.php:333 +msgid "First name" +msgstr "Förnamn" + +#: includes/common/payment-gateways/manual-payments.php:150 +msgid "These are the manual payment instructions to display on the order confirmation screen. TOTAL will be replaced with the order total and ORDERID will be replaced with Order ID." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:240 +msgid "You must login to Authorize.net merchant dashboard to obtain the API login ID and API transaction key. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:327 +msgid "
    1. Set the \"Return Method\" within Site Management to Header Redirect and set the \"Return URL\" to %s
    2. Set your notifications url to %s
    " +msgstr "" + +#: includes/common/data.php:191 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Also, digital downloads included in your order are now ready to be downloaded. Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:185 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order is now available to download! Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:184 +msgid "Your Order Is Ready To Be Downloaded! (ORDERID)" +msgstr "" + +#: includes/common/data.php:179 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:173 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received, your digital goods are ready to be downloaded and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:167 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received and your digital goods are ready to be downloaded. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:160 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +" Your order has been received, and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information: \n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/class-mp-product.php:638 +msgid "You can not add more items to cart." +msgstr "" + +#: includes/common/class-mp-product.php:635 +msgid "You can only add {0} to cart." +msgstr "" + +#: includes/common/class-mp-product.php:625 +msgid "This product has an order limit of %d." +msgstr "" + +#: includes/common/class-mp-order.php:1454 +msgid "Shipped: tracking code: %s" +msgstr "" + +#: includes/common/class-mp-order.php:1000 +#: includes/common/class-mp-order.php:1012 +msgid "Finished" +msgstr "Slutförd" + +#: includes/common/class-mp-order.php:858 +msgid "Contact Details" +msgstr "Kontaktinformation" + +#: includes/common/class-mp-order.php:339 includes/common/data.php:155 +msgid "" +"A new order (ORDERID) was created in your store:\n" +"\n" +" ORDERINFOSKU\n" +"\n" +" SHIPPINGINFO\n" +"\n" +" PAYMENTINFO\n" +"\n" +msgstr "\n" + +#: includes/common/class-mp-cart.php:1858 +msgid "Add again" +msgstr "Lägg till igen" + +#: includes/common/class-mp-cart.php:1852 +msgid "was removed from Shopping Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1242 +#: includes/public/class-mp-short-codes.php:160 +msgid "Cart update notice: this item has a limit per order or you have reached the stock limit." +msgstr "" + +#: includes/admin/widgets/product-list.php:235 +msgid "Show Only Featured Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:533 +msgid "If enabled, users won't be able to filter products per category and/or to order by release date/name/price." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:531 +msgid "Hide Products Filter?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:353 +msgid "Notification to registration email instead of billing email?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:322 +msgid "Order Shipped - Mixed orders (with both digital and physical products)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:289 +msgid "Order Shipped - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:224 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:194 +msgid "New Order - Mixed" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:161 +msgid "New Order - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:115 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:243 +msgid "Mixed orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:110 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:238 +msgid "Digital downloads orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:105 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:233 +msgid "Physical orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:96 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed.
    For orders placed with manual payment, emails set here will be overriden by the one configured in manual payments settings, under payments settings page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:89 +msgid "Customer Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:47 +msgid "Admin Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:566 +msgid "Only contact details" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:565 +msgid "Full billing info" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:561 +msgid "Details Collection" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:548 +msgid "Digital Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:515 +msgid "Apply Tax to Digital Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:236 +msgid "product (default)" +msgstr "produkt (standard)" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:231 +msgid "If you are experiencing conflicts with other e-commerce plugins change this setting. This will change the internal post type of all your products. Please note that changing this option may break 3rd party themes or plugins." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1203 +msgid "Hide details" +msgstr "Göm detaljer" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1202 +msgid "Show all changes" +msgstr "Visa alla ändringar" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1184 +msgid "Version %s" +msgstr "Version %s" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1161 +msgid "Current" +msgstr "Aktuell" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1131 +msgid "%s changelog" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:952 +msgid "We did not find any data for this plugin or theme..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:285 +msgid "Activate WPMU DEV Dashboard" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:279 +msgid "Just one more step - activate the WPMU DEV Dashboard plugin and you're all done!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:277 +msgid "Important updates are available for your WPMU DEV plugins/themes. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:273 +msgid "Just one more step to enable updates and support for %s!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:271 +msgid "Important updates are available for %s. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:264 +msgid "activate" +msgstr "aktivera" + +#: includes/admin/class-mp-admin.php:398 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:248 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:289 +msgid "Dismiss" +msgstr "Avfärda" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:247 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:288 +msgid "Saving..." +msgstr "Sparar..." + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:244 +msgid "Install Plugin" +msgstr "Installera tillägg" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:238 +msgid "Almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:236 +msgid "Important updates are available for your WPMU DEV plugins/themes. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:232 +msgid "%s is almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:230 +msgid "Important updates are available for %s. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:223 +msgid "install" +msgstr "installera" + +#: includes/admin/class-mp-shortcode-builder.php:1428 +msgid "Sets the number of Tags to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1289 +msgid "How many products to display in the product list if \"paginate\" is set to false." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:739 +#: includes/admin/class-mp-shortcode-builder.php:906 +#: includes/admin/class-mp-shortcode-builder.php:1350 +msgid "Grid" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:735 +#: includes/admin/class-mp-shortcode-builder.php:902 +#: includes/admin/class-mp-shortcode-builder.php:1346 +msgid "Products will be displayed as list or grid." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:206 +msgid "Display a cloud or list of your global product tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:205 +msgid "Display a list of your global categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:204 +msgid "Display a list or grid of your global products." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:181 +msgid "Display a list of featured products." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1451 +msgid "Is Featured?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1444 +msgid "Featured Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:581 +#: includes/admin/class-mp-products-admin.php:1580 +msgid "% discount" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:579 +msgid "OR" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:460 +#: includes/admin/class-mp-products-admin.php:586 +#: includes/admin/widgets/product-list.php:217 +msgid "Featured" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:536 +#: includes/admin/class-mp-orders-admin.php:538 +msgid "Tracking Link" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:508 +msgid "Shipping Tax" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:356 +msgid "Shipping Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:352 +msgid "Taxes Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:349 +msgid "Products Total" +msgstr "" + +#: includes/admin/class-mp-ajax.php:366 +msgid "Oops! You entered an invalid username/email and or password." +msgstr "" + +#: includes/admin/class-mp-ajax.php:254 +msgid "Percentage Discount" +msgstr "" + +#: includes/admin/class-mp-ajax.php:234 +msgid "Limit the Amount of Items per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:214 +msgid "Unused Attributes" +msgstr "" + +#: includes/admin/class-mp-admin.php:82 +msgid "Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-admin.php:79 +msgid "MarketPress setup is not complete! Once you've completed this quick setup wizard you'll have a fully working online store - exciting! " +msgstr "" + +#: marketpress.php:263 +msgctxt "mp_order" +msgid "Add New" +msgstr "" + +#: marketpress.php:184 +msgctxt "product_tag" +msgid "Product Tag" +msgstr "" + +#: marketpress.php:183 +msgctxt "product_tag" +msgid "Product Tags" +msgstr "" + +#: marketpress.php:150 +msgctxt "product_category" +msgid "Product Category" +msgstr "Produktkategori" + +#: marketpress.php:149 +msgctxt "product_category" +msgid "Product Categories" +msgstr "Produktkategorier" + +#. Author URI of the plugin/theme +msgid "http://premium.wpmudev.org" +msgstr "http://premium.wpmudev.org" + +#: marketpress.php:729 +msgid "Invoice PDF" +msgstr "Faktura PDF" + +#: marketpress.php:712 +msgid "Grant access to themes and gateways depending on the user's Pro Site level" +msgstr "" + +#: marketpress.php:711 +msgid "Pro Sites" +msgstr "" + +#: marketpress.php:703 +msgid "Offer and accept coupon codes" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:687 +msgid "Install %s Pages" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:682 +msgid "Welcome to %s – Install pages required by the plugin automatically." +msgstr "" + +#: marketpress.php:668 +msgid "Your pages were created successfully." +msgstr "" + +#: marketpress.php:436 +msgid "Add a Product" +msgstr "Lägg till produkt" + +#: marketpress.php:271 +msgid "Parent Order" +msgstr "" + +#: marketpress.php:270 +msgid "No orders found in trash" +msgstr "" + +#: marketpress.php:269 +msgid "No orders found" +msgstr "Inga ordrar funna" + +#: marketpress.php:265 +msgid "Edit Order" +msgstr "" + +#: marketpress.php:264 +msgid "Add New Order" +msgstr "Lägg till ny order" + +#: marketpress.php:220 marketpress.php:221 +msgid "Add New Product" +msgstr "Lägg till ny produkt" + +#: marketpress.php:197 +msgid "No product tags found" +msgstr "" + +#: marketpress.php:196 +msgid "Choose from the most used product tags" +msgstr "" + +#: marketpress.php:195 +msgid "Add or remove product tags" +msgstr "" + +#: marketpress.php:194 +msgid "Separate product tags with commas" +msgstr "" + +#: marketpress.php:193 +msgid "Search Product Tags" +msgstr "" + +#: marketpress.php:192 +msgid "Parent Product Tag:" +msgstr "" + +#: marketpress.php:191 +msgid "Parent Product Tag" +msgstr "" + +#: marketpress.php:190 +msgid "New Product Tag Name" +msgstr "" + +#: marketpress.php:189 +msgid "Add New Product Tag" +msgstr "" + +#: marketpress.php:188 +msgid "Update Product Tag" +msgstr "" + +#: marketpress.php:187 +msgid "View Product Tag" +msgstr "" + +#: marketpress.php:186 +msgid "Edit Product Tag" +msgstr "" + +#: marketpress.php:185 +msgid "All Product Tags" +msgstr "" + +#: marketpress.php:163 +msgid "No product categories found" +msgstr "Inga produktkategorier hittades" + +#: marketpress.php:162 +msgid "Choose from the most used product categories" +msgstr "" + +#: marketpress.php:161 +msgid "Add or remove product categories" +msgstr "" + +#: marketpress.php:160 +msgid "Separate product categories with commas" +msgstr "" + +#: marketpress.php:159 +msgid "Search Product Categories" +msgstr "Sök produktkategorier" + +#: marketpress.php:158 +msgid "Parent Product Category:" +msgstr "" + +#: marketpress.php:157 +msgid "Parent Product Category" +msgstr "" + +#: marketpress.php:156 +msgid "New Product Category Name" +msgstr "" + +#: marketpress.php:155 +msgid "Add New Product Category" +msgstr "" + +#: marketpress.php:154 +msgid "Update Product Category" +msgstr "" + +#: marketpress.php:153 +msgid "View Product Category" +msgstr "" + +#: marketpress.php:152 +msgid "Edit Product Category" +msgstr "" + +#: marketpress.php:151 +msgid "All Product Categories" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Please fix the %s1 and then try submitting the form again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Oops! The form contains %s1 which %s2 been highlighted below." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:660 +msgid "have" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:659 +msgid "has" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:651 +msgid "Value must be less than {0}" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:650 +msgid "Please enter only letters and numbers" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:539 +msgid "Due to prolonged inactivity on this page, one or more settings were not saved. Please try again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:535 +msgid "Settings Saved" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-user-select.php:22 +msgid "Select Some Users" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-section.php:18 +msgid "Section Title" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:425 +msgid "Are you sure you want to delete this?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:30 +msgid "Add Row" +msgstr "Lägg till rad" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-post-select.php:24 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-taxonomy-select.php:22 +msgid "Select Posts" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:210 +msgid "Add Images" +msgstr "Lägg till bilder" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:129 +msgid "Select the image that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:93 +msgid "Select image(s) that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:79 +msgid "Select the image that you would like to use for this variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:48 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:82 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:68 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:132 +msgid "Select Image" +msgstr "Välj bild" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:31 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:160 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:168 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:19 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:115 +msgid "Select File" +msgstr "Välj fil" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:30 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:18 +msgid "Select the file that you would like to use." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:357 +msgid "Create Variations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:356 +msgid "Add Another Variant" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Insert a value and press ENTER" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "(e.g. White, Grey, Red etc.)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Variation Values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:333 +msgid "Or create new variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "(e.g. Color)" +msgstr "(t ex färg)" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:303 +msgid "You are about to delete selected variants.
    If you want to continue please confirm." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:302 +msgid "Confirmation" +msgstr "Bekräftelse" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:290 +msgid "Insert quantity available. Empty for unlimited." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:281 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:294 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:307 +msgid "Cancel" +msgstr "Avbryt" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:280 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:293 +msgid "Update" +msgstr "Uppdatera" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:277 +msgid "Insert the price i.e. 25 or 25.50" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:115 +msgid "Img." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:85 +msgid "Add New Variation" +msgstr "Lägg till ny variant" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:79 +msgid "Delete Variants" +msgstr "Ta bort varianter" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:78 +msgid "Update Prices" +msgstr "Uppdatera priser" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:77 +msgid "Update Inventory" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:76 +msgid "Update Images" +msgstr "Uppdatera bilder" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:75 +msgid "Bulk Actions" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:73 +msgid "Select bulk action" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:196 +msgid "Configure Store" +msgstr "Konfigurera butik" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:195 +msgid "Configure shipping rates, emails and your store's appearance. " +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:190 +msgid "Add Product" +msgstr "Lägg till produkt" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:189 +msgid "Add your first product for sale and get familiar with adding products." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:184 +msgid "Your store is almost ready for its first customers, but first it needs some products. Get started by adding products below, or jump straight into further configuring your store’s settings." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:183 +msgid "Woohoo! Your online store is up and running." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:160 +msgid "Finish Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:124 +msgid "And what metric system do you want to use?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:113 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:142 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:159 +msgid "Back" +msgstr "Tillbaka" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:109 +msgid "Do you want to apply tax for your products? You can customize this for each product and variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:105 +msgid "What currency do you want to sell with?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:93 +msgid "And, which countries do you want to sell to?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:89 +msgid "Where is your online store based?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:80 +msgid "Payment Gateway" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:79 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:123 +msgid "Metric System" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:78 +msgid "Currency & Tax" +msgstr "Valuta & skatt" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:77 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:88 +msgid "Locations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:70 +msgid "Choose where you want to sell your stuff and what currency. Easy!" +msgstr "" + +#: includes/public/class-mp-checkout.php:1400 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:58 +msgid "Continue" +msgstr "Fortsätt" + +#: includes/admin/class-mp-admin.php:83 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:53 +msgid "Skip this step, I'll do this manually" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:49 +msgid "Install store pages" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:44 +msgid "Once you've completed this quick setup wizard you'll have a fully working online store - exciting! Start
    by creating the default store pages for the online store such as the cart, checkout and store pages." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:42 +msgid "MarketPress adds a full online store to your website, with heaps of configuration options and addons
    to suit your needs. It's really easy to get going, and only takes a few minutes to setup!" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:41 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:69 +msgid "Welcome to MarketPress - Quick Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-advanced-select.php:23 +msgid "Select Some Options" +msgstr "Välj något alternativ" + +#: includes/wpmudev-metaboxes/class-wpmudev-field.php:694 +msgid "You must the WPMUDEV_Field::display() method in your form field class" +msgstr "" + +#: includes/public/class-mp-short-codes.php:636 +msgid "Only %s left in stock..." +msgstr "Endast %s kvar i lager..." + +#: includes/public/class-mp-short-codes.php:633 +msgid "Unlimited stock" +msgstr "" + +#: includes/public/class-mp-short-codes.php:430 +msgid "product_id must be defined" +msgstr "" + +#: includes/public/class-mp-checkout.php:1250 +msgid "An account with this username already exists" +msgstr "Ett konto med det användarnamnet finns redan," + +#: includes/public/class-mp-checkout.php:1394 +msgid "Continue as Guest" +msgstr "Fortsätt utan att logga in" + +#: includes/public/class-mp-checkout.php:1393 +msgid "Proceed to checkout and you'll have an opportunity to create an account at the end." +msgstr "Gå vidare till checkout. (Du kommer att kunna skapa ett konto senare om du önskar.)" + +#: includes/public/class-mp-checkout.php:1392 +#: includes/public/class-mp-checkout.php:1398 +msgid "First-time customer?" +msgstr "Ny kund?" + +#: includes/public/class-mp-checkout.php:1386 +msgid "Login" +msgstr "Login" + +#: includes/public/class-mp-checkout.php:1379 +msgid "E-Mail Address/Username" +msgstr "E-postadress/användarnamn" + +#: includes/public/class-mp-checkout.php:1377 +msgid "Sign in to speed up the checkout process." +msgstr "Logga in för att snabba på processen." + +#: includes/public/class-mp-checkout.php:1376 +msgid "Have an account?" +msgstr "Har du ett konto?" + +#: includes/public/class-mp-checkout.php:1297 +msgid "Shipping address different than billing?" +msgstr "Är leveransadressen en annan än fakturaadressen?" + +#: includes/public/class-mp-checkout.php:1184 +msgid "There are no available gateways to process this payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1160 +msgid "Payment" +msgstr "Betalning" + +#: includes/public/class-mp-checkout.php:1123 +msgid "Oops! An error occurred while processing your payment." +msgstr "Oops! Ett fel uppstod när betalningen bearbetades" + +#: includes/public/class-mp-checkout.php:1051 +msgid "Next Step »" +msgstr "Nästa steg »" + +#: includes/public/class-mp-checkout.php:1045 +msgid "« Previous Step" +msgstr "« Föregående steg" + +#: includes/public/class-mp-checkout.php:873 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:657 +msgid "error" +msgstr "fel" + +#: includes/public/class-mp-checkout.php:872 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:658 +msgid "errors" +msgstr "fel" + +#: includes/public/class-mp-checkout.php:871 +msgid "

    Oops! We found %d %s in the form below.

    Fields that have errors are highlighted in red below. Entering into a field will reveal the actual error that occurred.

    " +msgstr "

    Ojdå! Vi har hittat %d %s i formuläret nedan.

    Felaktiga fält har markerats med rött nedan. När du går in i fältet visas felaktigheten.

    " + +#: includes/public/class-mp-checkout.php:870 +msgid "Please enter a valid first and last name" +msgstr "Ange för- och efternamn" + +#: includes/public/class-mp-checkout.php:869 +msgid " Please enter a valid card security code" +msgstr "Ange korrekt säkerhetkod." + +#: includes/public/class-mp-checkout.php:868 +msgid "Please enter a valid card expiration" +msgstr "Ange korrrekt datum." + +#: includes/public/class-mp-checkout.php:773 +msgid "Javascript is required in order to checkout. Please enable Javascript in your browser and then refresh this page." +msgstr "Javascript krävs för att du ska kunna checka ut. Sätt på javascript och ladda om sidan." + +#: includes/public/class-mp-checkout.php:588 +msgid "An unknown error occurred. Please try again." +msgstr "Ett fel inträffade. Försök igen." + +#: includes/public/class-mp-checkout.php:386 +msgid "Town/City" +msgstr "Stad" + +#: includes/public/class-mp-checkout.php:380 +msgid "Apartment, suite, unit, building, floor, etc" +msgstr "Lägenhet, våning, etc" + +#: includes/public/class-mp-checkout.php:376 +msgid "Address Line 2" +msgstr "Adressrad 2" + +#: includes/public/class-mp-checkout.php:363 +msgid "Address Line 1" +msgstr "Adressrad 1 " + +#: includes/common/class-mp-order.php:770 +#: includes/public/class-mp-checkout.php:354 +msgid "Company" +msgstr "Företag" + +#: includes/public/class-mp-checkout.php:330 +msgid "Last" +msgstr "Efternamn" + +#: includes/public/class-mp-checkout.php:321 +msgid "First" +msgstr "Förnamn" + +#: includes/public/class-mp-checkout.php:284 +msgid "State/Province" +msgstr "Stat/provins" + +#: includes/public/class-mp-checkout.php:83 +msgid "Review Order/Payment" +msgstr "Se order/betalningssätt" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing/Shipping Address" +msgstr "Faktura/leveransadress" + +#: includes/public/class-mp-checkout.php:80 +msgid "Login/Register" +msgstr "Logga in/Registrera" + +#: includes/multisite/class-mp-admin-multisite.php:530 +msgid "Marketplace" +msgstr "Marknad" + +#: includes/multisite/class-mp-admin-multisite.php:523 +msgid "Global Marketplace Pages" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +msgid "Store Network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +#: includes/multisite/class-mp-admin-multisite.php:494 +msgid "Store Network Settings" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:440 +msgid "Set theme access permissions for network stores. For a custom css theme, save your css file with the MarketPress Theme: NAME header in the /marketpress/ui/themes/ folder and it will appear in this list so you may select it." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:361 +msgid "Choose a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:336 +msgid "%d products get indexed" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:285 +msgid "Product Indexer" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:281 +msgid "Please hold on..." +msgstr "Vänligen vänta..." + +#: includes/multisite/class-mp-admin-multisite.php:280 +msgid "Index Products" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:279 +msgid "%d products have been indexed in whole network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:182 +msgid "Enable Global Shopping Cart?" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:178 +msgid "Limit Global Widgets/Shortcodes To Main Blog?" +msgstr "" + +#: includes/common/template-functions.php:2802 +#: includes/multisite/template-functions.php:355 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:97 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:114 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:143 +msgid "Next" +msgstr "Nästa" + +#: includes/common/template-functions.php:2801 +#: includes/multisite/template-functions.php:354 +msgid "Prev" +msgstr "Föregående" + +#: includes/common/template-functions.php:2597 +msgid "Tagged in " +msgstr "" + +#: includes/common/template-functions.php:2196 +#: includes/common/template-functions.php:2202 +#: includes/common/template-functions.php:2214 +#: includes/common/template-functions.php:2217 +msgid "Oops! We couldn't locate any orders matching that order number. Please verify the order number and try again." +msgstr "" + +#: includes/common/template-functions.php:2138 +msgid "Look Up" +msgstr "Lås upp" + +#: includes/common/template-functions.php:1423 +msgid "Please choose a shipping method" +msgstr "Välj en fraktmetod" + +#: includes/common/template-functions.php:927 +msgid "If you have your order ID you can look it up using the form below." +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "Order Search" +msgstr "Ordersökning" + +#: includes/common/template-functions.php:910 +#: includes/public/class-mp-checkout.php:1440 +msgid "Cart" +msgstr "Kundvagn" + +#: includes/common/template-functions.php:895 +msgid "[mp_global_tag_cloud]" +msgstr "[mp_global_tag_cloud]" + +#: includes/common/template-functions.php:887 +msgid "[mp_global_categories_list]" +msgstr "[mp_global_categories_list]" + +#: includes/common/template-functions.php:880 +msgid "" +"Welcome to our market place!\n" +"\n" +"Check out our network of products:\n" +"\n" +"[mp_list_global_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_global_categories_list]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:879 +msgid "Global Store" +msgstr "" + +#: includes/common/template-functions.php:873 +msgid "" +"Welcome to our online store! Feel free to browse around:\n" +"\n" +"[mp_store_navigation]\n" +"\n" +"Check out our most popular products:\n" +"\n" +"[mp_popular_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_list_categories]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_tag_cloud]" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:127 +msgid "If cart weight is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:126 +msgid "Cart Weight" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:222 +msgid "Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:206 +msgid "Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:196 +msgid "Retail Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:195 +msgid "Online Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:193 +msgid "Rates Request Type" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:189 +msgid "Maximum Weight Per Package" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:195 +#: includes/common/shipping-modules/mp-usps.php:236 +msgid "Enter your standard box sizes as LengthxWidthxHeight (e.g. 12x8x6) For each box defined enter the maximum weight it can contain. Note: the shipping prices this plugin calculates are estimates. If they are consistently too low or too high, please check that the list of boxes above and the product weights are accurate and complete." +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:187 +msgid "Handling Charge Per Box Shipped" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:176 +#: includes/common/shipping-modules/mp-ups.php:181 +msgid "Offered Services" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:165 +msgid "Shipper Number" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:151 +msgid "User ID" +msgstr "Användar-ID" + +#: includes/common/shipping-modules/mp-ups.php:144 +msgid "Developer Kit Access Key" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:140 +msgid "Use Sandbox Mode?" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:123 +msgid "In order to use UPS, you will need a UPS Developer Kit access key and the UPS user ID and password associated with the access key. Set these up for free here. If this information is missing or incorrect, an error will appear during the checkout process and the buyer will not be able to complete the transaction." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:112 +msgid "If cart total is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:111 +msgid "Cart Total" +msgstr "Kundvagn totalt" + +#: includes/common/shipping-modules/mp-table-rate.php:95 +#: includes/common/shipping-modules/mp-weight-rate.php:111 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Don't worry about sorting as this will be done automatically upon saving." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:170 +msgid "Method Title (visible for clients)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:409 +#: includes/common/shipping-modules/mp-ups.php:216 +#: includes/common/shipping-modules/mp-usps.php:251 +msgid "Max Weight (%s)" +msgstr "Maxvikt (%s)" + +#: includes/common/shipping-modules/mp-fedex.php:402 +#: includes/common/shipping-modules/mp-ups.php:209 +#: includes/common/shipping-modules/mp-usps.php:247 +msgid "Size (%s)" +msgstr "Storlek (%s)" + +#: includes/common/shipping-modules/mp-fedex.php:387 +msgid "Enter your standard box sizes as LengthxWidthxHeight ( 12x8x6 ) For each box defined enter the maximum weight it can contain. Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:361 +#: includes/common/shipping-modules/mp-usps.php:229 +msgid "Handling Charge per International Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:353 +msgid "International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:339 +#: includes/common/shipping-modules/mp-usps.php:213 +msgid "Handling Charge per Domestic Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:331 +msgid "Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:321 +msgid "When checked the customer can chose Residential or Commercial delivery with Residential the default. Unchecked it's only Residential rates." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:320 +msgid "Allow Commercial Delivery?" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:315 +msgid "Fedex 10kg Box" +msgstr "Fedex 10kg Box" + +#: includes/common/shipping-modules/mp-fedex.php:314 +msgid "Fedex 25kg Box" +msgstr "Fedex 25kg Box" + +#: includes/common/shipping-modules/mp-fedex.php:313 +msgid "Fedex Box" +msgstr "Fedex Box" + +#: includes/common/shipping-modules/mp-fedex.php:312 +msgid "Fedex Envelope" +msgstr "Fedex kuvert" + +#: includes/common/shipping-modules/mp-fedex.php:311 +msgid "Fedex Pak" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:310 +msgid "Fedex Tube" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:306 +msgid "Default Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:294 +msgid "Dropoff Type" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:290 +msgid "Meter ID" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:134 +msgid "This is a residential address" +msgstr "Detta är en bostadsadress" + +#: includes/common/payment-gateways/wepay.php:283 +msgid "There was an error processing your card: \"%s\". Please check your credit card info and try again." +msgstr "Något blev fel då ditt kort skulle debiteras: \"%s\". Försök igen." + +#: includes/common/payment-gateways/wepay.php:121 +msgid "Wepay makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept cards directly on your site. You don't need a merchant account or gateway. WePay handles everything including storing cards. Credit cards go directly to WePay's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:385 +msgid "There was an error processing your card - \"%s\". Please try again." +msgstr "Det uppstod ett fel vid behandlingen av ditt kort - \"%s\". Var vänlig försök igen." + +#: includes/common/payment-gateways/stripe.php:356 +msgid "%s Store Purchase - Order ID - %s, Email - %s" +msgstr "%s Köp - Order ID - %s, E-post - %s" + +#: includes/common/payment-gateways/stripe.php:251 +msgid "Stripe makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept Visa, MasterCard, American Express, Discover, JCB, and Diners Club cards directly on your site. You don't need a merchant account or gateway. Stripe handles everything, including storing cards, subscriptions, and direct payouts to your bank account. Credit cards go directly to Stripe's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:192 +msgid "ZMW - Zambian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:191 +msgid "ZAR - South African Rand" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:190 +msgid "YER - Yemeni Rial" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:189 +msgid "XPF - Cfp Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:188 +msgid "XOF - West African Cfa Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:187 +msgid "XCD - East Caribbean Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:186 +msgid "XAF - Central African Cfa Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:185 +msgid "WST - Samoan Tala" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:184 +msgid "VUV - Vanuatu Vatu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:183 +msgid "VND - Vietnamese Đồng" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:182 +msgid "VEF - Venezuelan Bolívar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:181 +msgid "UZS - Uzbekistani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:180 +msgid "UYI - Uruguayan Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:178 +msgid "UGX - Ugandan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:177 +msgid "UAH - Ukrainian Hryvnia" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:176 +msgid "TZS - Tanzanian Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:175 +msgid "TWD - New Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:174 +msgid "TTD - Trinidad and Tobago Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:172 +msgid "TOP - Tongan Paʻanga" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:171 +msgid "TJS - Tajikistani Somoni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:169 +msgid "SZL - Swazi Lilangeni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:168 +msgid "SVC - Salvadoran Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:167 +msgid "STD - São Tomé and Príncipe Dobra" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:166 +msgid "SRD - Surinamese Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:165 +msgid "SOS - Somali Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:164 +msgid "SLL - Sierra Leonean Leone" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:163 +msgid "SHP - Saint Helenian Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:160 +msgid "SCR - Seychellois Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:159 +msgid "SBD - Solomon Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:157 +msgid "RWF - Rwandan Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:156 +msgid "RUB - Russian Ruble" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:155 +msgid "RSD - Serbian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:154 +msgid "RON - Romanian Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:153 +msgid "QAR - Qatari Riyal" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:152 +msgid "PYG - Paraguayan Guaraní*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:151 +msgid "PLN - Polish Złoty" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:150 +msgid "PKR - Pakistani Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:149 +msgid "PHP - Philippine Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:148 +msgid "PGK - Papua New Guinean Kina" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:147 +msgid "PEN - Peruvian Nuevo Sol*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:146 +msgid "PAB - Panamanian Balboa*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:144 +msgid "NPR - Nepalese Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:142 +msgid "NIO - Nicaraguan Córdoba*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:141 +msgid "NGN - Nigerian Naira" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:140 +msgid "NAD - Namibian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:139 +msgid "MZN - Mozambican Metical" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:137 +msgid "MXN - Mexican Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:136 +msgid "MWK - Malawian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:135 +msgid "MVR - Maldivian Rufiyaa" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:134 +msgid "MUR - Mauritian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:133 +msgid "MRO - Mauritanian Ouguiya" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:132 +msgid "MOP - Macanese Pataca" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:131 +msgid "MNT - Mongolian Tögrög" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:130 +msgid "MKD - Macedonian Denar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:129 +msgid "MGA - Malagasy Ariary" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:128 +msgid "MDL - Moldovan Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:126 +msgid "LVL - Latvian Lats" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:124 +msgid "LSL - Lesotho Loti" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:123 +msgid "LRD - Liberian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:122 +msgid "LKR - Sri Lankan Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:121 +msgid "LBP - Lebanese Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:120 +msgid "LAK - Lao Kip*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:119 +msgid "KZT - Kazakhstani Tenge" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:118 +msgid "KYD - Cayman Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:117 +msgid "KRW - South Korean Won" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:116 +msgid "KMF - Comorian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:115 +msgid "KHR - Cambodian Riel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:114 +msgid "KGS - Kyrgyzstani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:113 +msgid "KES - Kenyan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:111 +msgid "JMD - Jamaican Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:110 +msgid "ISK - Icelandic Króna" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:109 +msgid "INR - Indian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:108 +msgid "ILS - Israeli New Sheqel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:107 +msgid "IDR - Indonesian Rupiah" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:105 +msgid "HTG - Haitian Gourde" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:103 +msgid "HNL - Honduran Lempira*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:101 +msgid "GYD - Guyanese Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:100 +msgid "GTQ - Guatemalan Quetzal*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:99 +msgid "GNF - Guinean Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:98 +msgid "GMD - Gambian Dalasi" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:97 +msgid "GIP - Gibraltar Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:96 +msgid "GEL - Georgian Lari" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:94 +msgid "FKP - Falkland Islands Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:93 +msgid "FJD - Fijian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:91 +msgid "ETB - Ethiopian Birr" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:90 +msgid "EGP - Egyptian Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:89 +msgid "EEK - Estonian Kroon*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:88 +msgid "DZD - Algerian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:87 +msgid "DOP - Dominican Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:85 +msgid "DJF - Djiboutian Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:84 +msgid "CZK - Czech Koruna*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:83 +msgid "CVE - Cape Verdean Escudo*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:82 +msgid "CRC - Costa Rican Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:81 +msgid "COP - Colombian Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:80 +msgid "CNY - Chinese Renminbi Yuan" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:79 +msgid "CLP - Chilean Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:77 +msgid "CDF - Congolese Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:76 +msgid "CAD - Canadian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:75 +msgid "BZD - Belize Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:74 +msgid "BWP - Botswana Pula" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:73 +msgid "BSD - Bahamian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:72 +msgid "BRL - Brazilian Real*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:71 +msgid "BOB - Bolivian Boliviano*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:70 +msgid "BND - Brunei Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:69 +msgid "BMD - Bermudian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:68 +msgid "BIF - Burundian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:67 +msgid "BGN - Bulgarian Lev" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:66 +msgid "BDT - Bangladeshi Taka" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:65 +msgid "BBD - Barbadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:64 +msgid "BAM - Bosnia & Herzegovina Convertible Mark" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:63 +msgid "AZN - Azerbaijani Manat" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:62 +msgid "AWG - Aruban Florin" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:61 +msgid "AUD - Australian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:60 +msgid "ARS - Argentine Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:59 +msgid "AOA - Angolan Kwanza*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:58 +msgid "ANG - Netherlands Antillean Gulden" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:57 +msgid "AMD - Armenian Dram" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:56 +msgid "ALL - Albanian Lek" +msgstr "ALL - albansk lek" + +#: includes/common/payment-gateways/stripe.php:55 +msgid "AFN - Afghan Afghani*" +msgstr "AFN - afgansk afghani*" + +#: includes/common/payment-gateways/stripe.php:54 +msgid "AED - United Arab Emirates Dirham" +msgstr "AED - Förenade Arabemiraten dirham" + +#: includes/common/payment-gateways/skrill.php:345 +msgid "Skrill balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:327 +msgid "Skrill IPN message received." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:283 +msgid "Skrill" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:278 +msgid "Pending payment" +msgstr "Betalning pågår" + +#: includes/common/payment-gateways/skrill.php:144 +msgid "The secret word must match the word submitted in the \"Merchant Tools\" section of your Skrill account." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:134 +msgid "You must use your valid Skrill merchant email. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:133 +msgid "Skrill Email" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:123 +msgid "Resell your inventory via Skrill.com (Moneybookers)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:95 +msgid "ZAR - South-African Rand" +msgstr "ZAR - sydafrikansk rand" + +#: includes/common/payment-gateways/skrill.php:93 +msgid "TWD - Taiwan Dollar" +msgstr "TWD - taiwanesisk dollar" + +#: includes/common/payment-gateways/skrill.php:92 +msgid "TRY - New Turkish Lira" +msgstr "TRY - ny turkisk lira" + +#: includes/common/payment-gateways/skrill.php:91 +msgid "TND - Tunisian Dinar" +msgstr "TND - tunisisk dinar" + +#: includes/common/payment-gateways/skrill.php:90 +msgid "THB - Thailand Baht" +msgstr "THB - thailändsk baht" + +#: includes/common/payment-gateways/skrill.php:89 +msgid "SKK - Slovakian Koruna" +msgstr "SKK - slovakisk koruna" + +#: includes/common/payment-gateways/skrill.php:86 +#: includes/common/payment-gateways/stripe.php:158 +msgid "SAR - Saudi Riyal" +msgstr "SAR - saudisk riyal" + +#: includes/common/payment-gateways/skrill.php:85 +msgid "RSD - Serbian dinar" +msgstr "RSD - serbisk dinar" + +#: includes/common/payment-gateways/skrill.php:83 +msgid "QAR - Qatari Rial" +msgstr "QA - qatarsk rial" + +#: includes/common/payment-gateways/skrill.php:81 +msgid "OMR - Omani Rial" +msgstr "OMR - omansk rial" + +#: includes/common/payment-gateways/skrill.php:80 +msgid "NOK - Norwegian Krone " +msgstr "NOK - norsk krona" + +#: includes/common/payment-gateways/skrill.php:78 +#: includes/common/payment-gateways/stripe.php:138 +msgid "MYR - Malaysian Ringgit" +msgstr "MYR - malayisk ringgit" + +#: includes/common/payment-gateways/skrill.php:77 +#: includes/common/payment-gateways/stripe.php:127 +msgid "MAD - Moroccan Dirham" +msgstr "MAD - marockansk dirham" + +#: includes/common/payment-gateways/skrill.php:74 +msgid "KRW - South-Korean Won" +msgstr "KRW - sydkoreansk won" + +#: includes/common/payment-gateways/skrill.php:72 +msgid "JOD - Jordanian Dinar" +msgstr "JOD - jordansk dinar" + +#: includes/common/payment-gateways/skrill.php:70 +msgid "INR - Indian Rupee" +msgstr "INR - indisk rupie" + +#: includes/common/payment-gateways/skrill.php:63 +msgid "EEK - Estonian Kroon" +msgstr "EEK - estnisk krona" + +#: includes/common/payment-gateways/skrill.php:56 +msgid "AED - Utd. Arab Emir. Dirham" +msgstr "AED - Förenade Arabemiraten dirham" + +#: includes/common/payment-gateways/skrill.php:52 +msgid "Turkish" +msgstr "turkiska" + +#: includes/common/payment-gateways/skrill.php:51 +msgid "Swedish" +msgstr "svenska" + +#: includes/common/payment-gateways/skrill.php:50 +msgid "Spanish" +msgstr "spanska" + +#: includes/common/payment-gateways/skrill.php:49 +msgid "Russian" +msgstr "ryska" + +#: includes/common/payment-gateways/skrill.php:48 +msgid "Romainian" +msgstr "rumänska" + +#: includes/common/payment-gateways/skrill.php:47 +msgid "Polish" +msgstr "polska" + +#: includes/common/payment-gateways/skrill.php:46 +msgid "Italian" +msgstr "italienska" + +#: includes/common/payment-gateways/skrill.php:45 +msgid "Greek" +msgstr "grekiska" + +#: includes/common/payment-gateways/skrill.php:44 +msgid "German" +msgstr "tyska" + +#: includes/common/payment-gateways/skrill.php:43 +msgid "French" +msgstr "franska" + +#: includes/common/payment-gateways/skrill.php:42 +msgid "Finnish" +msgstr "finska" + +#: includes/common/payment-gateways/skrill.php:41 +msgid "English" +msgstr "engelska" + +#: includes/common/payment-gateways/skrill.php:40 +msgid "Dutch" +msgstr "holländska" + +#: includes/common/payment-gateways/skrill.php:39 +msgid "Danish" +msgstr "danska" + +#: includes/common/payment-gateways/skrill.php:38 +msgid "Czech" +msgstr "tjeckiska" + +#: includes/common/payment-gateways/skrill.php:37 +msgid "Chinese" +msgstr "kinesiska" + +#: includes/common/payment-gateways/simplify.php:201 +msgid "There was an error processing your card: %s. Please re-enter your credit card info and try again." +msgstr "Något blev fel då ditt kort skulle debiteras: %s. Fyll i dina kortuppgifter och försök igen." + +#: includes/common/payment-gateways/pin.php:278 +msgid "
  • There was an error processing your card: \"%s\". Please verify your credit card information and try again.
  • " +msgstr "
  • Något blev fel då ditt kort skulle debiteras: \"%s\". Ange din kortinformation och försök igen.
  • " + +#: includes/common/payment-gateways/pin.php:274 +msgid "
  • There was an error processing your card. Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:177 +#: includes/common/payment-gateways/stripe.php:279 +msgid "Publishable Key" +msgstr "" + +#: includes/common/payment-gateways/pin.php:163 +msgid "API Credentials?" +msgstr "" + +#: includes/common/payment-gateways/pin.php:147 +msgid "PIN makes it easy to start accepting credit card payments with Australia’s first all-in-one online payment system. Accept all major credit cards directly on your site. Your sales proceeds are deposited to any Australian bank account, no merchant account required." +msgstr "" + +#: includes/common/payment-gateways/pin.php:57 +#: includes/common/payment-gateways/stripe.php:179 +msgid "USD - United States Dollar" +msgstr "USD - amerikansk dollar" + +#: includes/common/payment-gateways/paypal-payflow.php:455 +msgid "Email Footer" +msgstr "E-postsidfot" + +#: includes/common/payment-gateways/paypal-payflow.php:445 +msgid "Email Header" +msgstr "E-posthuvud" + +#: includes/common/payment-gateways/paypal-payflow.php:416 +msgid "Partner" +msgstr "Partner" + +#: includes/common/payment-gateways/paypal-payflow.php:409 +msgid "Vendor" +msgstr "Säljare" + +#: includes/common/payment-gateways/paypal-express.php:852 +#: includes/common/payment-gateways/paypal-express.php:1126 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences\t section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:749 +msgid "Page Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:744 +msgid "Header Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:739 +msgid "Header Border Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:734 +msgid "Header Image" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:680 +msgid "Locale" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:624 +#: includes/common/payment-gateways/paypal-express.php:658 +msgid "Merchant Email" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:645 +msgid "Paypal Express Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:603 +msgid "Paypal Express Network Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:861 +msgid "Application ID (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:854 +msgid "Signature (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:847 +msgid "API Password (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:839 +msgid "API Username (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:832 +msgid "Signature (Sandbox)" +msgstr "Signatur (Sandbox)" + +#: includes/common/payment-gateways/paypal-chained-payments.php:825 +msgid "API Password (Sandbox)" +msgstr "API lösenord (Sandbox)" + +#: includes/common/payment-gateways/paypal-chained-payments.php:817 +msgid "API Username (Sandbox)" +msgstr "API användarnamn (Sandbox)" + +#: includes/common/payment-gateways/paypal-chained-payments.php:799 +msgid "This message is displayed at the top of the gateway settings page to store admins. It's a good place to inform them of your fees or put any sales messages." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:787 +msgid "Please enter your PayPal email address or business ID you want to recieve fees at." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:786 +msgid "PayPal E-mail" +msgstr "PayPal e-postadress" + +#: includes/common/payment-gateways/paypal-chained-payments.php:772 +msgid "Fees to Collect (%)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:375 +#: includes/public/class-mp-checkout.php:341 +msgid "Email Address" +msgstr "E-postadress" + +#: includes/common/payment-gateways/paypal-chained-payments.php:299 +msgid "Sorry, your order was not completed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:126 +#: includes/common/payment-gateways/paypal-express.php:780 +msgid "You will be redirected to the PayPal site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:90 +#: includes/common/payment-gateways/skrill.php:94 +msgid "USD - U.S. Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:89 +msgid "TRY - Turkish lira" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:88 +#: includes/common/payment-gateways/stripe.php:170 +msgid "THB - Thai Baht" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:87 +msgid "TWD - Taiwan New Dollars" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:86 +#: includes/common/payment-gateways/pin.php:59 +#: includes/common/payment-gateways/skrill.php:88 +#: includes/common/payment-gateways/stripe.php:162 +msgid "SGD - Singapore Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:84 +msgid "RUB - Russian Rubles" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:82 +msgid "PHP - Philippine Pesos" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:81 +#: includes/common/payment-gateways/pin.php:58 +#: includes/common/payment-gateways/skrill.php:79 +#: includes/common/payment-gateways/stripe.php:145 +msgid "NZD - New Zealand Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:79 +msgid "MXN - Mexican Peso" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:78 +msgid "MYR - Malaysian Ringgits" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:77 +#: includes/common/payment-gateways/pin.php:64 +#: includes/common/payment-gateways/skrill.php:73 +#: includes/common/payment-gateways/stripe.php:112 +msgid "JPY - Japanese Yen" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:75 +#: includes/common/payment-gateways/pin.php:63 +#: includes/common/payment-gateways/skrill.php:66 +#: includes/common/payment-gateways/stripe.php:102 +msgid "HKD - Hong Kong Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:73 +msgid "GBP - Pound Sterling" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:68 +#: includes/common/payment-gateways/pin.php:62 +#: includes/common/payment-gateways/skrill.php:59 +msgid "CAD - Canadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:67 +msgid "BRL - Brazilian Real" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:66 +#: includes/common/payment-gateways/pin.php:56 +#: includes/common/payment-gateways/skrill.php:57 +msgid "AUD - Australian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:288 +msgid "There was an error processing your card: \"%s\". Please try again." +msgstr "Det uppstod ett fel vid behandlingen av ditt kort: \"%s\". Var vänlig försök igen." + +#: includes/common/payment-gateways/paymill.php:163 +msgid "When running on a live site, Paymill recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:161 +#: includes/common/payment-gateways/pin.php:157 +#: includes/common/payment-gateways/simplify.php:103 +#: includes/common/payment-gateways/stripe.php:260 +#: includes/common/payment-gateways/wepay.php:153 +msgid "Force SSL?" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:151 +msgid "Accept Visa, Mastercard, Maestro UK, Discover and Solo cards directly on your site. You don't need a merchant account or gateway. Credit cards go directly to Paymill's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:131 +msgid "CVV2" +msgstr "CVV2" + +#: includes/common/payment-gateways/paymill.php:72 +#: includes/common/payment-gateways/pin.php:61 +#: includes/common/payment-gateways/skrill.php:65 +#: includes/common/payment-gateways/stripe.php:95 +msgid "GBP - British Pound" +msgstr "GBP - Brittiska pund" + +#: includes/common/payment-gateways/paymill.php:71 +#: includes/common/payment-gateways/stripe.php:173 +msgid "TRY - Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:70 +#: includes/common/payment-gateways/paypal-chained-payments.php:85 +#: includes/common/payment-gateways/skrill.php:87 +#: includes/common/payment-gateways/stripe.php:161 +msgid "SEK - Swedish Krona" +msgstr "SEK - svensk krona" + +#: includes/common/payment-gateways/paymill.php:69 +#: includes/common/payment-gateways/skrill.php:84 +msgid "RON - Romanian Leu New" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:68 +#: includes/common/payment-gateways/paypal-chained-payments.php:83 +#: includes/common/payment-gateways/skrill.php:82 +msgid "PLN - Polish Zloty" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:67 +#: includes/common/payment-gateways/paypal-chained-payments.php:80 +#: includes/common/payment-gateways/stripe.php:143 +msgid "NOK - Norwegian Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:66 +#: includes/common/payment-gateways/skrill.php:75 +#: includes/common/payment-gateways/stripe.php:125 +msgid "LTL - Lithuanian Litas" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:65 +#: includes/common/payment-gateways/paypal-chained-payments.php:69 +#: includes/common/payment-gateways/skrill.php:60 +#: includes/common/payment-gateways/stripe.php:78 +msgid "CHF - Swiss Franc" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:64 +#: includes/common/payment-gateways/skrill.php:76 +msgid "LVL - Latvian Lat" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:63 +#: includes/common/payment-gateways/paypal-chained-payments.php:74 +#: includes/common/payment-gateways/skrill.php:69 +msgid "ILS - Israeli Shekel" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:62 +#: includes/common/payment-gateways/skrill.php:71 +msgid "ISK - Iceland Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:61 +#: includes/common/payment-gateways/paypal-chained-payments.php:76 +#: includes/common/payment-gateways/skrill.php:68 +#: includes/common/payment-gateways/stripe.php:106 +msgid "HUF - Hungarian Forint" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:60 +#: includes/common/payment-gateways/paypal-chained-payments.php:71 +#: includes/common/payment-gateways/skrill.php:62 +#: includes/common/payment-gateways/stripe.php:86 +msgid "DKK - Danish Krone" +msgstr "Dansk krona" + +#: includes/common/payment-gateways/paymill.php:59 +#: includes/common/payment-gateways/skrill.php:67 +#: includes/common/payment-gateways/stripe.php:104 +msgid "HRK - Croatian Kuna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:58 +#: includes/common/payment-gateways/paypal-chained-payments.php:70 +#: includes/common/payment-gateways/skrill.php:61 +msgid "CZK - Czech Koruna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:57 +#: includes/common/payment-gateways/skrill.php:58 +msgid "BGN - Bulgarian Leva" +msgstr "" + +#: includes/common/payment-gateways/payflow/class-mp-gateway-worker-payflow.php:123 +msgid "There was an error connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:344 +msgid "This setting will log all PayFast communication to the \"payfast.log\" file." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:342 +msgid "Log Debugging Info?" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:335 +msgid "DO NOT INPUT A VALUE UNLESS YOU HAVE SET ONE IN THE SETTINGS SECTION OF YOUR PAYFAST SETTINGS." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:333 +msgid "PayFast Passphrase" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:323 +msgid "You can find your credentials on your integration page." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:321 +msgid "PayFast Merchant Credentials" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:311 +msgid "PayFast Mode" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:308 +msgid "PayFast is a payments processing service for South Africa. We make it safe for buyers to send money and easy for sellers to receive money. More Info »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:306 +msgid "PayFast Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:285 +msgid "Your payment via PayFast for this order totaling %s is complete. The transaction number is %s." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:278 +msgid "Your payment via PayFast for this order totaling %s is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:124 +msgid "Your PayFast transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:82 +#: includes/common/payment-gateways/payfast.php:83 +msgid "PayFast" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:157 +msgid "API error: - \"%s\"" +msgstr "API fel: - \"%s\"" + +#: includes/common/payment-gateways/mollie.php:198 +msgid "The payment request is under process" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:140 +msgid "Order: #" +msgstr "Order: #" + +#: includes/common/payment-gateways/mollie.php:116 +msgid "You will be redirected to the Mollie site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:73 +msgid "%sMollie%s provides a fully PCI Compliant and secure way to collect payments via iDeal, Credit Card, Bancontact / Mister Cash, SOFORT Banking, Overbooking, Bitcoin, PayPal, paysafecard and AcceptEmail." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:53 +#: includes/common/payment-gateways/mollie.php:54 +#: includes/common/payment-gateways/mollie.php:195 +#: includes/common/payment-gateways/mollie.php:245 +msgid "Mollie" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:50 +#: includes/common/payment-gateways/paymill.php:56 +#: includes/common/payment-gateways/paypal-chained-payments.php:72 +#: includes/common/payment-gateways/pin.php:60 +#: includes/common/payment-gateways/skrill.php:64 +#: includes/common/payment-gateways/stripe.php:92 +msgid "EUR - Euro" +msgstr "EUR - Euro" + +#: includes/common/payment-gateways/mijireh.php:306 +msgid "Access Key" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:300 +msgid "You must login to the Mijireh.com dashboard to obtain the Access Key." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:299 +msgid "Credentials" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:289 +msgid "Mijireh Checkout provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:269 +msgid "Mijireh Error: " +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:89 +msgid "You will be redirected to the Mijireh.com site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:87 +msgid "Your Mijireh transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:42 +#: includes/common/payment-gateways/mijireh.php:43 +#: includes/common/payment-gateways/mijireh.php:324 +msgid "Mijireh" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:145 +msgid "These are the manual payment instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:189 +msgid "This is the email text to send to those who have made free order checkouts. You should include your free order instructions / information here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:183 +msgid "This is the free order information to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:182 +msgid "Confirmation User Information" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:177 +msgid "This is the information to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:163 +msgid "If enabled, all free orders will be automatically marked as paid." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:159 +msgid "Payment Status" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:149 +msgid "This gateway is automatically activated if order totalling 0 and it can't be disabled" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:35 +#: includes/common/payment-gateways/free_orders.php:36 +#: includes/common/payment-gateways/free_orders.php:89 +msgid "Free Order" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:34 +#: includes/common/payment-gateways/free_orders.php:197 +msgid "Free Orders" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:515 +msgid "Sandbox API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:266 +#: includes/common/payment-gateways/eway31.php:542 +msgid "eWay Rapid 3.1 Payments (beta)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:403 +msgid "Hosted Payment Page Language" +msgstr "" + +#: includes/common/payment-gateways/eway.php:373 +msgid "Note when testing in sandbox mode it will use the default eWay test API credentials. Also, please note that cart total needs to be a whole number (e.g. 10.00) in order to generate a successful transaction, otherwise the transaction will fail." +msgstr "" + +#: includes/common/payment-gateways/eway.php:267 +msgid "You will be redirected to https://www.eway.com.au to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:380 +msgid "You have chosen to checkout using %s. Please confirm your order details and click \"Submit Order\" when finished." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:272 +#: includes/common/payment-gateways/paymill.php:131 +#: includes/common/payment-gateways/stripe.php:231 +msgid "Security Code " +msgstr "Säkerhetskod" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Enter in MM/YYYY or MM/YY format" +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Expiration" +msgstr "Upphör" + +#: includes/common/payment-gateways/authorizenet-aim.php:321 +msgid "Delim Data" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:307 +#: includes/common/payment-gateways/paypal-payflow.php:456 +msgid "This text will appear as the footer of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:287 +#: includes/common/payment-gateways/paypal-payflow.php:440 +msgid "Email Customer (on success)" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:278 +msgid "Authorize.net default is \",\". Otherwise, get this from your credit card processor. If the transactions are not going through, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:277 +msgid "Delimeter Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:193 +msgid "Held For Review" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:310 +#: includes/common/payment-gateways/payfast.php:314 +msgid "Test" +msgstr "Testa" + +#: includes/common/payment-gateways/_ideal.php:300 +#: includes/common/payment-gateways/pin.php:170 +#: includes/common/payment-gateways/stripe.php:272 +msgid "Secret Key" +msgstr "Säkerhetsnyckel" + +#: includes/common/payment-gateways/_ideal.php:283 +msgid "Select Your Bank" +msgstr "Välj bank" + +#: includes/common/payment-gateways/_ideal.php:97 +msgid "Your payment will be processed by the iDEAL network" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:208 +msgid "These are the CubePoints to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:203 +msgid "These are the CubePoints instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:266 +msgid "If enabled, all API calls will be made to https://test.bitpay.com." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:263 +msgid "Use Test Mode?" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:259 +msgid "If checked, response fron bitpay will be stored in log file, keep it disabled unless required." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:256 +msgid "Enable Debug Log" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:249 +msgid "Full Notifications" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:231 +#: includes/common/payment-gateways/eway31.php:499 +#: includes/common/payment-gateways/eway31.php:526 +#: includes/common/payment-gateways/mollie.php:83 +#: includes/common/shipping-modules/mp-fedex.php:269 +msgid "API Key" +msgstr "API-nyckel" + +#: includes/common/payment-gateways/_bitpay.php:222 +msgid "You can now accept a payment from any country on Earth, with no risk of fraud. To use Bitpay, you need to signup on Bitpay. \\n After completing the signup process, you can get api keys at Bitpay API key. You can read more about Bitpay at Bitpay API. \\n Bitpay requires SSL(https) for payment notifications to work." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:61 +msgid "You will be redirected to bitpay.com, for bitcoin payment. It is completely safe." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:346 +msgid "You must login to the 2Checkout vendor dashboard to obtain the seller ID and secret word. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:345 +#: includes/common/payment-gateways/authorizenet-aim.php:239 +#: includes/common/payment-gateways/paymill.php:168 +#: includes/common/payment-gateways/paypal-express.php:704 +#: includes/common/payment-gateways/simplify.php:80 +#: includes/common/payment-gateways/stripe.php:265 +#: includes/common/payment-gateways/wepay.php:158 +msgid "API Credentials" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:325 +#: includes/common/payment-gateways/_bitpay.php:220 +#: includes/common/payment-gateways/_cubepoints.php:185 +#: includes/common/payment-gateways/_ideal.php:268 +#: includes/common/payment-gateways/_payway.php:255 +#: includes/common/payment-gateways/authorizenet-aim.php:219 +#: includes/common/payment-gateways/eway.php:352 +#: includes/common/payment-gateways/eway31.php:460 +#: includes/common/payment-gateways/free_orders.php:147 +#: includes/common/payment-gateways/manual-payments.php:126 +#: includes/common/payment-gateways/mijireh.php:287 +#: includes/common/payment-gateways/mollie.php:71 +#: includes/common/payment-gateways/paymill.php:149 +#: includes/common/payment-gateways/paypal-chained-payments.php:344 +#: includes/common/payment-gateways/paypal-payflow.php:376 +#: includes/common/payment-gateways/pin.php:145 +#: includes/common/payment-gateways/simplify.php:69 +#: includes/common/payment-gateways/skrill.php:121 +#: includes/common/payment-gateways/stripe.php:249 +#: includes/common/payment-gateways/wepay.php:119 +#: includes/common/shipping-modules/mp-fedex.php:243 +#: includes/common/shipping-modules/mp-flat-rate.php:63 +#: includes/common/shipping-modules/mp-pickup.php:140 +#: includes/common/shipping-modules/mp-table-rate.php:94 +#: includes/common/shipping-modules/mp-ups.php:122 +#: includes/common/shipping-modules/mp-usps.php:167 +#: includes/common/shipping-modules/mp-weight-rate.php:110 +msgid "%s Settings" +msgstr "%s inställningar" + +#: includes/common/payment-gateways/2checkout.php:136 +msgid "You will be redirected to the 2Checkout site to finalize your payment." +msgstr "Du kommer att omdirigeras till 2Checkout-webbplatsen för att slutföra din betalning." + +#: includes/common/helpers.php:169 includes/public/class-mp-checkout.php:1277 +msgid "Billing" +msgstr "Fakturering" + +#: includes/common/helpers.php:144 +msgid "FREE" +msgstr "Fri" + +#: includes/common/helpers.php:134 +msgid "Coupons:" +msgstr "Kuponger:" + +#: includes/common/helpers.php:95 +msgid "Qty" +msgstr "" + +#: includes/common/helpers.php:94 +msgid "Sku" +msgstr "SKU" + +#: includes/common/data.php:59 +msgid "Zip Code" +msgstr "Postnummer" + +#: includes/common/class-mp-taxes.php:336 +msgid "Standard Table" +msgstr "" + +#: includes/common/class-mp-product.php:2698 +msgid "Tweet" +msgstr "Tweet" + +#: includes/common/class-mp-product.php:2321 +msgid "Notification Preferences: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2320 +msgid "Edit Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2318 +msgid "Link: %s

    " +msgstr "" + +#: includes/common/class-mp-product.php:2317 +msgid "Current Inventory: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2316 +msgid "Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2314 +msgid "This message is being sent to notify you of low stock of a product in your online store according to your preferences.

    " +msgstr "" + +#: includes/common/class-mp-product.php:1817 +msgid "" +msgstr "" + +#: includes/common/class-mp-product.php:1427 +#: includes/common/class-mp-product.php:1430 +msgid "(tax incl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1422 +#: includes/common/class-mp-product.php:1425 +msgid "(tax excl.)" +msgstr "(utan moms)" + +#: includes/common/class-mp-product.php:1300 +#: includes/common/class-mp-product.php:1315 +msgid "%s each" +msgstr "" + +#: includes/common/class-mp-product.php:988 +msgid "Choose Options" +msgstr "Välj alternativ" + +#: includes/common/class-mp-product.php:526 +msgid "Choose a %s" +msgstr "Välj %s" + +#: includes/common/class-mp-product.php:284 +#: includes/common/class-mp-product.php:292 +#: includes/common/class-mp-product.php:615 +msgid "We're sorry, we only have %d of this item in stock right now." +msgstr "" + +#: includes/common/class-mp-order.php:1456 +msgid "Shipped: Track Shipment" +msgstr "" + +#: includes/common/class-mp-order.php:1049 +msgid "Order Received" +msgstr "" + +#: includes/common/class-mp-order.php:1014 +msgid "In Process" +msgstr "" + +#: includes/common/class-mp-order.php:969 +msgid "Order #" +msgstr "Order #" + +#: includes/common/class-mp-order.php:866 +msgid "Copy billing address to shipping address" +msgstr "" + +#: includes/common/class-mp-order.php:822 +#: includes/public/class-mp-checkout.php:1314 +msgid "Special Instructions" +msgstr "" + +#: includes/common/class-mp-order.php:817 +#: includes/common/payment-gateways/stripe.php:335 +msgid "Email" +msgstr "E-post" + +#: includes/common/class-mp-order.php:813 +#: includes/common/payment-gateways/stripe.php:341 +#: includes/public/class-mp-checkout.php:416 +msgid "Phone" +msgstr "Telefon" + +#: includes/common/class-mp-order.php:791 +#: includes/common/payment-gateways/stripe.php:337 +msgid "State" +msgstr "" + +#: includes/common/class-mp-order.php:776 +msgid "Address 1" +msgstr "Adress 1" + +#: includes/common/class-mp-order.php:766 +msgid "Last Name" +msgstr "Efternamn" + +#: includes/common/class-mp-order.php:762 +msgid "First Name" +msgstr "Förnamn" + +#: includes/common/class-mp-installer.php:677 +msgid "MarketPress requires a database update to continue working correctly. Go to update page" +msgstr "" + +#: includes/common/class-mp-installer.php:657 +msgid "MarketPress performed a quick automatic update successfully!" +msgstr "" + +#: includes/common/class-mp-installer.php:653 +msgid "Perform Update" +msgstr "" + +#: includes/common/class-mp-installer.php:647 +msgid "Please update each subsite in your WordPress network where you have older version of the MarketPress plugin." +msgstr "" + +#: includes/common/class-mp-installer.php:641 +msgid "Depending on the amount of products you have, this update could take quite some time. Please keep this window open while the update completes. If you have products with multiple variations, the progress bar may move slower, please don't exit the window." +msgstr "" + +#: includes/common/class-mp-installer.php:632 +msgid "Product Metadata" +msgstr "" + +#: includes/common/class-mp-installer.php:601 +msgid "MarketPress requires a database update to continue working correctly.
    Below you will find a list of items that require your attention." +msgstr "" + +#: includes/common/class-mp-installer.php:600 +msgid "Update MarketPress Data" +msgstr "" + +#: includes/common/class-mp-installer.php:530 +msgid "Update Data" +msgstr "Uppdatera data" + +#: includes/common/class-mp-installer.php:67 +msgid "Complete!" +msgstr "Komplett!" + +#: includes/common/class-mp-installer.php:66 +msgid "Upgrading Database...Please Wait..." +msgstr "Uppgraderar databasen...vänligenvänta..." + +#: includes/common/class-mp-installer.php:64 +msgid "An error occurred while updating. Please refresh this page and try again." +msgstr "" + +#: includes/common/class-mp-cart.php:2447 +msgid "Some items in your cart have fallen below the quantity you currently have in your cart. We have adjusted the quantity in your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:2443 +msgid "Some items in your cart are no longer available. We have removed these items from your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:1566 +msgid "item" +msgstr "objekt" + +#: includes/common/class-mp-cart.php:1563 +#: includes/common/class-mp-cart.php:1568 +msgid "items" +msgstr "objekt" + +#: includes/common/class-mp-cart.php:1363 +msgid "Items/Products added to Cart will show here." +msgstr "Produkter som läggs i varukorgen visas här." + +#: includes/common/class-mp-cart.php:1362 +msgid "Your shopping cart is empty." +msgstr "Din varukorg är tom." + +#: includes/common/class-mp-cart.php:1357 +msgid "View Cart" +msgstr "Visa varukorg" + +#: includes/common/class-mp-cart.php:1241 +#: includes/common/class-mp-cart.php:1298 +#: includes/public/class-mp-short-codes.php:159 +msgid "Adding..." +msgstr "Lägger till..." + +#: includes/common/class-mp-cart.php:1033 +msgid "Continue Shopping?" +msgstr "Fortsätt handla?" + +#: includes/common/class-mp-cart.php:961 +msgid "Secure Checkout
    Shopping is always safe and secure." +msgstr "Säker transaktion
    Handla här är alltid säkert." + +#: includes/common/class-mp-cart.php:959 +msgid "You are about to submit your order!
    Please review your order details before continuing. You will be charged immediately upon clicking \"Submit Order\"." +msgstr "Du är på väg att lägga din beställning
    Var vänlig kolla dina orderdetaljer innan du fortsätter, du kommer debiteras när du klickar på Skicka order." + +#: includes/common/class-mp-cart.php:956 +msgid "Continue »" +msgstr "Fortsätt »" + +#: includes/common/class-mp-cart.php:955 +msgid "Submit Order" +msgstr "Skicka order" + +#: includes/common/class-mp-cart.php:818 +msgid "There are no items in your cart - go add some !" +msgstr "" + +#: includes/common/class-mp-cart.php:816 +msgid "The cart is disabled." +msgstr "" + +#: includes/common/class-mp-cart.php:735 +msgid "Estimated %s" +msgstr "" + +#: includes/common/class-mp-cart.php:717 +msgid "Estimated Shipping" +msgstr "" + +#: includes/common/class-mp-cart.php:697 +msgid "Product Total" +msgstr "" + +#: includes/common/class-mp-cart.php:670 includes/common/class-mp-cart.php:672 +msgid "Estimated Total (%s, %s)" +msgstr "Beräknad total (%s, %s)" + +#: includes/common/class-mp-cart.php:668 +msgid "Estimated Total (%s)" +msgstr "Beräknad total (%s)" + +#: includes/common/class-mp-cart.php:666 includes/common/class-mp-cart.php:752 +msgid "Estimated Total" +msgstr "Beräknad total" + +#: includes/admin/widgets/product-list.php:247 +msgid "Show Thumbnail Placeholder image (if image is not set)" +msgstr "" + +#: includes/admin/widgets/cart.php:73 +msgid "Display product price" +msgstr "Visa produktpris" + +#: includes/admin/widgets/cart.php:71 +msgid "Display product quantity" +msgstr "Visa produktantal" + +#: includes/admin/widgets/cart.php:69 +msgid "Display product image" +msgstr "Visa produktbild" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:93 +msgid "General Shipping Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:773 +msgid "If you are having conflicts with the lightbox library from your theme or another plugin you should uncheck this." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:772 +msgid "Use Built-In Lightbox for Images?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:762 +msgid "Disable Large Image Display?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:688 +msgid "Show Product Image?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:682 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:684 +msgid "Show Tags List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:676 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:678 +msgid "Show Categories List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:671 +msgid "If enabled, description excerpt will be added above Add to cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:669 +msgid "Show Excerpt?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:665 +msgid "If enabled, users will be able to choose how many of the product they want to purchase before adding to their cart. If not checked, quantity could be change later on the cart page." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:663 +msgid "Show Quantity Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:649 +msgid "Settings related to the display of individual product pages." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:648 +msgid "Product Page Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:605 +msgid "Related Products Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:573 +msgid "Show Related Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:568 +msgid "Related Product Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:549 +msgid "Order Status Entries Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:510 +msgid "Sort Products By" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:497 +msgid "Products Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:492 +msgid "Paginate Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:478 +msgid "Excerpts Length" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:473 +msgid "Show Excerpts?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:450 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:746 +msgid "Image Alignment" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:412 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:708 +msgid "Custom Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:401 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:697 +msgid "Large - %s" +msgstr "Stor - %s" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:400 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:696 +msgid "Medium - %s" +msgstr "Medium - %s" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:399 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:695 +msgid "Thumbnail - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:397 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:693 +msgid "Image Size" +msgstr "Bildstorlek" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:386 +msgid "Select default placeholder image thumbnail when product image is not available (if empty, plugin's built-in image will be used)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:380 +msgid "Show default product placeholder thumbnail when product image is not available?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:374 +msgid "Show Product Thumbnail?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:369 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:658 +msgid "Redirect to cart page for immediate checkout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:368 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:657 +msgid "Stay on current product page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:366 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:655 +msgid "MarketPress supports two \"flows\" for adding products to the shopping cart. After adding a product to their cart, two things can happen:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:365 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:654 +msgid "Add To Cart Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:355 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:628 +msgid "Four" +msgstr "Fyra" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:354 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:627 +msgid "Three" +msgstr "Tre" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:353 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:626 +msgid "Two" +msgstr "Två" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:625 +msgid "One" +msgstr "Ett" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:349 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:622 +msgid "Set the number of products that show up in a grid row to best fit your theme" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:348 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:621 +msgid "How many products per row?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:342 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:609 +msgid "Display as grid" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:341 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:608 +msgid "Display as list" +msgstr "Visa som lista" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:339 +msgid "Product Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:334 +msgid "Settings related to the display of product lists/grids." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:333 +msgid "Product List/Grid Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:314 +msgid "Show Twitter Button" +msgstr "Visa Twitterknapp" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:309 +msgid "Twitter" +msgstr "Twitter" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:303 +msgid "Show Share Button" +msgstr "Visa delaknapp" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:297 +msgid "Recommend" +msgstr "Rekommendera" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:296 +msgid "Like" +msgstr "Gilla" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:294 +msgid "Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:283 +msgid "Show Facebook Like Button" +msgstr "Visa Facebook gillaknapp" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:278 +msgid "Facebook" +msgstr "Facebook" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:257 +msgid "Show \"Pin It\" Button" +msgstr "Visa \"Pin It\" knapp" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:252 +msgid "Pinterest" +msgstr "Pinterest" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:246 +msgid "Social Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:193 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:202 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:211 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:220 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:229 +#: includes/multisite/class-mp-admin-multisite.php:532 +#: includes/multisite/class-mp-admin-multisite.php:541 +#: includes/multisite/class-mp-admin-multisite.php:550 +msgid "Choose a Page" +msgstr "Välj en sida" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:191 +msgid "This page will be used as the root for your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:168 +#: includes/multisite/class-mp-admin-multisite.php:586 +msgid "Create Page" +msgstr "Skapa sida" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "uncropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "cropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:87 +#: includes/multisite/class-mp-admin-multisite.php:121 +#: includes/multisite/class-mp-admin-multisite.php:620 +msgid "An error occurred while creating the store page. Please try again." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:66 +msgid "Choose the gateway(s) that you would like to be available for checkout." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:65 +msgid "Enabled Gateways" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:78 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:146 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:179 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:213 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:274 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:307 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:341 +msgid "Text" +msgstr "Text" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:71 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:139 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:172 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:206 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:267 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:300 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:334 +msgid "Subject" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:52 +msgid "Notification Email" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:510 +msgid "Enabling this option will display label `excl. tax` or `incl. tax` after price" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:509 +msgid "Display tax label?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:504 +msgid "Enabling this option will show Price + Tax, eg. if your price is 100 and your tax 20, your price will be 120" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:416 +#: includes/multisite/class-mp-admin-multisite.php:234 +msgid "Price Format" +msgstr "Prisformat" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:366 +msgid "Enabling this field will display a textbox on the shipping checkout page for users to enter special instructions for their order. Useful for product personalization, etc." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:365 +msgid "Show Special Instructions Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:360 +msgid "Universal" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:359 +msgid "Old" +msgstr "Gammal" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1167 +#: includes/admin/store-settings/class-mp-store-settings-general.php:358 +msgid "New" +msgstr "Ny" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:353 +msgid "If you already use Google Analytics for your website, you can track detailed ecommerce information by enabling this setting. Choose whether you are using the new asynchronous or old tracking code. Before Google Analytics can report ecommerce activity for your website, you must enable ecommerce tracking on the profile settings page for your website. Also keep in mind that some gateways do not reliably show the receipt page, so tracking may not be accurate in those cases. It is recommended to use the PayPal gateway for the most accurate data. More information »" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:347 +msgid "Do you want to display the product price on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:346 +msgid "Show product price on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:340 +msgid "Do you want to display the product quantity on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:339 +msgid "Show product quantity on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:333 +msgid "Do you want to display the product image on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:332 +msgid "Show product image on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:327 +msgid "This option hide floating Mini Cart in top right corner." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:326 +msgid "Disable Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:316 +msgid "If unchecked your Orders admin page will be hidden" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:315 +msgid "Show admin Orders page?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:309 +msgid "Disable Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:303 +msgid "Force Login?" +msgstr "Tvinga login?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:297 +msgid "Hide Out of Stock Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:555 +msgid "This will prevent multiples of the same downloadable product form being added to the cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:554 +msgid "Limit Digital Products Per-order?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:268 +msgid "If you're having issues downloading large files and have worked with your hosting provider to increase your memory limits, try enabling this - just keep in mind, it's not as secure!" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:267 +msgid "Use Alternative Download Method?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:252 +msgid "Download Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:230 +msgid "Change product post type" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:51 +msgid "%s Capabilities" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-addons.php:47 +msgid "Store Settings: Add Ons: %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:254 +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:56 +msgid "Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Edit Product Attribute %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:246 +msgid "Exporters" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:238 +msgid "Short Codes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:207 +msgid "An appropriate message for key \"%s\" could not be found." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:204 +msgid "Product attribute updated successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:203 +msgid "Product attribute added successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +msgid "Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +#: includes/admin/store-settings/class-mp-store-settings-addons.php:121 +msgid "Store Settings: Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "Store Settings: Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:118 +msgid "Store Settings: Product Tags" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:117 +msgid "Store Settings: Product Categories" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Store Settings: Product Attributes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +msgid "Store Settings: Payments" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:114 +msgid "Store Settings: Shipping" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +#: includes/admin/class-mp-store-settings-admin.php:226 +msgid "Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +msgid "Store Settings: Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:112 +msgid "Store Settings: Presentation" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:111 +msgid "Store Settings: General" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1489 +msgid "Select a Product" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1447 +msgid "Reset to Defaults" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1446 +msgid "Insert Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1202 +#: includes/admin/class-mp-shortcode-builder.php:1227 +#: includes/admin/class-mp-shortcode-builder.php:1252 +msgid "The text to show in the link." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1196 +#: includes/admin/class-mp-shortcode-builder.php:1221 +#: includes/admin/class-mp-shortcode-builder.php:1246 +msgid "Whether to return a clickable link or url." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1177 +msgid "Whether to display the cart only on store pages or not." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1171 +msgid "Whether to show or hide the product price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1165 +msgid "Whether to show or hide the product quantity." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1159 +msgid "Whether to show or hide the product image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1153 +msgid "The text displayed before the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1147 +msgid "The title of the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1058 +#: includes/admin/class-mp-shortcode-builder.php:1121 +msgid "A label to prepend to the price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1032 +#: includes/admin/class-mp-shortcode-builder.php:1127 +msgid "What context for display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1004 +msgid "Set the alignment of the image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:998 +msgid "Set a custom pixel width/height. If omitted defaults to the size set by \"context\"." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:993 +msgid "Widget" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:988 +msgid "What context for preset size options." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:982 +#: includes/admin/class-mp-shortcode-builder.php:1026 +#: includes/admin/class-mp-shortcode-builder.php:1052 +#: includes/admin/class-mp-shortcode-builder.php:1077 +#: includes/admin/class-mp-shortcode-builder.php:1096 +#: includes/admin/class-mp-shortcode-builder.php:1115 +msgid "The ID of the product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:963 +msgid "Whether to display the product meta (e.g. price, buy button)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:738 +#: includes/admin/class-mp-shortcode-builder.php:905 +#: includes/admin/class-mp-shortcode-builder.php:958 +#: includes/admin/class-mp-shortcode-builder.php:992 +#: includes/admin/class-mp-shortcode-builder.php:1035 +#: includes/admin/class-mp-shortcode-builder.php:1130 +#: includes/admin/class-mp-shortcode-builder.php:1349 +msgid "List" +msgstr "Lista" + +#: includes/admin/class-mp-shortcode-builder.php:957 +#: includes/admin/class-mp-shortcode-builder.php:991 +#: includes/admin/class-mp-shortcode-builder.php:1034 +#: includes/admin/class-mp-shortcode-builder.php:1129 +msgid "Single" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:953 +msgid "Whether and what context of image size to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:948 +msgid "Full" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:943 +msgid "Whether and what type of content to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:937 +msgid "Whether to display the product title." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:931 +msgid "The ID of the product to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:747 +#: includes/admin/class-mp-shortcode-builder.php:914 +msgid "Hide" +msgstr "Dölj" + +#: includes/admin/class-mp-shortcode-builder.php:746 +#: includes/admin/class-mp-shortcode-builder.php:913 +msgid "Show" +msgstr "Visa" + +#: includes/admin/class-mp-shortcode-builder.php:744 +#: includes/admin/class-mp-shortcode-builder.php:911 +msgid "Whether or not to show the product filters." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:724 +#: includes/admin/class-mp-shortcode-builder.php:891 +#: includes/admin/class-mp-shortcode-builder.php:1335 +msgid "Limits list to a specific product tag." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:713 +#: includes/admin/class-mp-shortcode-builder.php:880 +#: includes/admin/class-mp-shortcode-builder.php:1324 +msgid "Limits list to a specific product category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:706 +#: includes/admin/class-mp-shortcode-builder.php:873 +#: includes/admin/class-mp-shortcode-builder.php:1317 +msgid "Direction to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:684 +#: includes/admin/class-mp-shortcode-builder.php:851 +#: includes/admin/class-mp-shortcode-builder.php:1295 +msgid "What field to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:678 +#: includes/admin/class-mp-shortcode-builder.php:845 +#: includes/admin/class-mp-shortcode-builder.php:1283 +msgid "How many products to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:672 +#: includes/admin/class-mp-shortcode-builder.php:839 +#: includes/admin/class-mp-shortcode-builder.php:1277 +msgid "The page number to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:666 +#: includes/admin/class-mp-shortcode-builder.php:833 +#: includes/admin/class-mp-shortcode-builder.php:1271 +msgid "Whether to paginate the product list. This is useful to only show a subset." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:808 +msgid "How many related items to show." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:790 +msgid "How to relate the products" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:784 +msgid "The product to show related items for." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:765 +msgid "The maximum number of products to display" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:647 +msgid "Comma separated list of tags (term_id) to include. For example, include=5,27 means tags that have the term_id 5 or 27 will be the only tags displayed. Defaults to include everything." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:641 +msgid "Comma separated list of tags (term_id) to exclude. For example, exclude=5,27 means tags that have the term_id 5 or 27 will NOT be displayed. Defaults to exclude nothing." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:633 +#: includes/admin/class-mp-shortcode-builder.php:1420 +msgid "Sort order." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:629 +#: includes/admin/class-mp-shortcode-builder.php:1416 +msgid "Count" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:626 +#: includes/admin/class-mp-shortcode-builder.php:1413 +msgid "Order of the tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:620 +msgid "The text/space between tags)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:616 +msgid "UL with a class of \"wp-tag-cloud\"" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:615 +msgid "separated by whitespace defined by \"separator\" parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:613 +msgid "Format of the cloud display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:607 +msgid "The number of actual tags to display in the cloud. (Use \"0\" to display all tags.)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:601 +msgid "Unit of measure as pertains to the smallest and largest values. This can be any CSS length value, e.g. pt, px, em, %." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:595 +msgid "The text size of the tag with the largest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:589 +msgid "The text size of the tag with the smallest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:570 +msgid "The \"tabindex\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:564 +msgid "The \"name\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:558 +msgid "The \"id\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:552 +msgid "Which category ID is selected." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:540 +msgid "The max depth. This is ignored unless hierarchical is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:536 +#: includes/multisite/template-functions.php:816 +msgid "No Categories" +msgstr "Inga kategorier" + +#: includes/admin/class-mp-shortcode-builder.php:414 +#: includes/admin/class-mp-shortcode-builder.php:546 +msgid "Calculates link or post counts by including items from child categories. If show_counts and hierarchical are true this is automatically set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:409 +msgid "Value of n (some number) specifies the depth (or level) to descend in displaying Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:408 +msgid "Show only top level Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:407 +msgid "All Categories displayed in flat (no indent) form (overrides hierarchical)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:406 +msgid "All Categories and child Categories (Default)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:402 +msgid "This parameter controls how many levels in the hierarchy of Categories are to be included in the list of Categories. NOTE: The \"hierarchical\" argument, which is disabled by default, will override the depth argument, unless it is true. When the argument is false, it will display all of the categories. When it is enabled it will use the value in the \"depth\" argument." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:396 +#: includes/admin/class-mp-shortcode-builder.php:1394 +msgid "Sets the number of Categories to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:390 +#: includes/admin/class-mp-shortcode-builder.php:534 +msgid "Set the text to show when no categories are listed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:384 +msgid "Set the title and style of the outer list item. If present but empty, the outer list item will not be displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:378 +#: includes/admin/class-mp-shortcode-builder.php:528 +msgid "Display sub-categories as inner list items (below the parent list item) or inline." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:368 +#: includes/admin/class-mp-shortcode-builder.php:511 +msgid "Exclude category-tree from the results. The parameter include must be empty. If the hierarchical parameter is true, then use exclude instead of exclude_tree." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:354 +msgid "Only include these categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:340 +#: includes/admin/class-mp-shortcode-builder.php:356 +#: includes/admin/class-mp-shortcode-builder.php:370 +#: includes/admin/class-mp-shortcode-builder.php:496 +#: includes/admin/class-mp-shortcode-builder.php:513 +msgid "Select Categories" +msgstr "Välj kategorier" + +#: includes/admin/class-mp-shortcode-builder.php:338 +#: includes/admin/class-mp-shortcode-builder.php:494 +msgid "Exclude one or more categories from the results. The parameter include must be empty." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:332 +msgid "Set a URI for an image (usually an rss feed icon) to act as a link to each categories' rss-2 feed. This parameter overrides the feed parameter. There is no default for this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:320 +msgid "Display a link to each category's rss-2 feed and set the link text to display. The default is no text and no feed displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:313 +#: includes/admin/class-mp-shortcode-builder.php:487 +msgid "Any" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:307 +#: includes/admin/class-mp-shortcode-builder.php:481 +msgid "Only display categories that are children of the category identified by this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:301 +msgid "Sets whether a category's description is inserted into the title attribute of the links created (i.e. <a title=\"<em>Category Description</em>\" href=\"...)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:295 +#: includes/admin/class-mp-shortcode-builder.php:475 +msgid "Toggles the display of categories with no posts." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:289 +#: includes/admin/class-mp-shortcode-builder.php:469 +#: includes/admin/class-mp-shortcode-builder.php:1388 +msgid "Toggles the display of the current count of posts in each category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:279 +msgid "Style to display the categories list in. A value of list displays the categories as list items while none generates no special display method (the list items are separated by
    tags)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:269 +#: includes/admin/class-mp-shortcode-builder.php:449 +#: includes/admin/class-mp-shortcode-builder.php:1378 +msgid "Sort order for categories (either ascending or descending)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:259 +#: includes/admin/class-mp-shortcode-builder.php:439 +#: includes/admin/class-mp-shortcode-builder.php:1368 +msgid "Sort categories alphabetically, by unique Category ID, or by the count of posts in that Category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:253 +#: includes/admin/class-mp-shortcode-builder.php:433 +msgid "If a value is entered, causes the display of a link to all categories if the style is set to list." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:219 +msgid "Select an Action" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:217 +msgid "What would you like to do?" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:216 +#: includes/admin/class-mp-shortcode-builder.php:1522 +msgid "Add E-Commerce Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:197 +msgid "Display a list of links to your store pages." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:196 +msgid "Display a link or url to the order status page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:195 +msgid "Display a link or url to the current products list page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:194 +msgid "Display a link or url to the current store page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:193 +msgid "Display a link or url to the current shopping cart page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:192 +msgid "Display the cart widget." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:191 +msgid "Display the full product meta box with price and buy now/add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:190 +msgid "Display the product stock." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:189 +msgid "Display the product SKU number(s)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:188 +msgid "Display the product price (and sale price)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:187 +msgid "Display the buy or add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:186 +msgid "Display the featured image of a given product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:185 +msgid "Display a single product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:184 +msgid "Display a list of products according to preference." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:183 +msgid "Display products related to the one being viewed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:182 +msgid "Display a list of popular products ordered by sales." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:180 +msgid "Display an HTML dropdown of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:179 +msgid "Display an HTML list of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:178 +msgid "Display a cloud or list of your product tags." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:655 +msgid "Setup your payment gateway" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:643 +#: includes/admin/class-mp-setup-wizard.php:649 +msgid "Other Gateways" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:617 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:150 +msgid "Select which calculated shipping methods the customer will be able to choose from." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:601 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:134 +#: includes/public/class-mp-checkout.php:82 +msgid "Shipping Method" +msgstr "Fraktsätt" + +#: includes/admin/class-mp-setup-wizard.php:568 +msgid "I want to charge shipping" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:523 +#: includes/admin/store-settings/class-mp-store-settings-general.php:503 +msgid "Show Price + Tax?" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:507 +msgid "I.e. Taxes, VAT, GST, etc" +msgstr "T. ex skatt och moms" + +#: includes/admin/class-mp-setup-wizard.php:491 +#: includes/admin/store-settings/class-mp-store-settings-general.php:471 +msgid "Current Rates" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:473 +msgid "Default Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:434 +#: includes/admin/class-mp-setup-wizard.php:442 +#: includes/admin/store-settings/class-mp-store-settings-general.php:386 +#: includes/admin/store-settings/class-mp-store-settings-general.php:394 +#: includes/multisite/class-mp-admin-multisite.php:204 +#: includes/multisite/class-mp-admin-multisite.php:212 +msgid "Select a Currency" +msgstr "Välj en valuta" + +#: includes/admin/class-mp-setup-wizard.php:414 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:105 +msgid "Choose Countries" +msgstr "Välj länder" + +#: includes/admin/class-mp-setup-wizard.php:411 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:103 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:104 +msgid "All Countries" +msgstr "Alla länder" + +#: includes/admin/class-mp-setup-wizard.php:410 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:102 +msgid "These are the countries that you will ship to." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:409 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:101 +msgid "Target Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:401 +msgid "Countries" +msgstr "Länder" + +#: includes/admin/class-mp-setup-wizard.php:387 +#: includes/admin/store-settings/class-mp-store-settings-general.php:640 +msgid "Zip/Postal Code Label" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:352 +#: includes/admin/store-settings/class-mp-store-settings-general.php:606 +msgid "Select a State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:335 +#: includes/admin/store-settings/class-mp-store-settings-general.php:590 +msgid "Select A Country" +msgstr "Välj ett land" + +#: includes/admin/class-mp-setup-wizard.php:332 +#: includes/admin/store-settings/class-mp-store-settings-general.php:587 +msgid "Select a Country" +msgstr "Välj ett land" + +#: includes/admin/class-mp-setup-wizard.php:324 +msgid "Location" +msgstr "Plats" + +#: includes/admin/class-mp-setup-wizard.php:304 +#: includes/admin/class-mp-setup-wizard.php:312 +#: includes/admin/class-mp-store-settings-admin.php:129 +#: includes/admin/class-mp-store-settings-admin.php:262 +msgid "Quick Setup" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:289 +msgid "MarketPress setup is not complete! Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2479 +msgid "Enter your product name here" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2440 +msgid "Select a %s" +msgstr "Välj %s" + +#: includes/admin/class-mp-products-admin.php:2426 +msgid "Each product variation needs to have product attributes assigned to it so the system knows how to differentiate one product variation from the other. It is important that you assign a category to this product before choosing any attributes." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2409 +msgid "If you would like this variation to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2320 +msgid "Sale Price (if applicable)" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2281 +msgid "If you would like the description to be different than the main product enter it here." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2229 +msgid "Image" +msgstr "Bild" + +#: includes/admin/class-mp-products-admin.php:2202 +#: includes/admin/class-mp-shortcode-builder.php:226 +msgid "Attributes" +msgstr "Attribut" + +#: includes/admin/class-mp-products-admin.php:2166 +msgid "Create your product variations here. You can reorder variations by using the number to left of each variation, or delete one by clicking the \"x\" to the right of each variation. NOTE: The variation that shows up first in this list will be considered the \"main variation\". The details from this variation will be used in product listings." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2061 +#: includes/admin/class-mp-products-admin.php:2332 +msgid "Value must be less than regular price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2043 +#: includes/admin/class-mp-products-admin.php:2306 +msgid "Regular Price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2023 +#: includes/admin/class-mp-products-admin.php:2286 +msgid "External URL" +msgstr "Extern URL" + +#: includes/admin/class-mp-products-admin.php:1988 +#: includes/admin/class-mp-products-admin.php:2245 +msgid "Enter the quantity that you have available to sell." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1987 +#: includes/admin/class-mp-products-admin.php:2244 +msgid "Inventory Count" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1977 +#: includes/admin/class-mp-products-admin.php:2234 +msgid "Track Inventory?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1871 +msgid "%1$sProduct Images%2$s %3$sAdd images of the product. The first image on the list is the featured image for this product (you can reorder images on the list)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1806 +msgid "Add variations for this product. e.g. If you are selling t-shirts, you can create Color & Size variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1804 +msgid "%3$sAdd variations for%2$s %1$sProduct%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1776 +msgid "This product has a multiple variations %1$s(e.g. Multiple colors, sizes)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1775 +msgid "This is a unique product without variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1700 +msgid "Extra Shipping Cost %1$s(if applicable)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1659 +#: includes/admin/class-mp-products-admin.php:2112 +#: includes/admin/class-mp-products-admin.php:2359 +msgid "Weight" +msgstr "Vikt" + +#: includes/admin/class-mp-products-admin.php:1636 +#: includes/admin/class-mp-products-admin.php:2098 +#: includes/admin/class-mp-products-admin.php:2416 +msgid "Please enter a valid tax rate" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1531 +msgid "Limit Per Order %1$s(limit the number of the item a shopper can buy per order)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1513 +msgid "SKU %1$s(Stock Keeping Unit)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "%1$sPrice, Inventory & Variants%2$s %3$sSet price, manage inventory and create Product Variants (if appropriate for your product).%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "Product Variations" +msgstr "Produktvarianter" + +#: includes/admin/class-mp-products-admin.php:1480 +msgid "External / Affiliate Link" +msgstr "Extern/Affiliate länk" + +#: includes/admin/class-mp-products-admin.php:1471 +msgid "Digital Download" +msgstr "Digital nedladdning" + +#: includes/admin/class-mp-products-admin.php:1470 +msgid "Physical / Tangible Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1464 +msgid "Product Kind %1$s(Physical Product, Digital, etc)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1426 +msgid "Choose Products" +msgstr "Välj produkter" + +#: includes/admin/class-mp-products-admin.php:1420 +msgid "If you would like, you can choose specific related products instead of using the ones generated by MarketPress" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1019 +msgid "Changes saved successfully" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:826 +msgid "Option cannot be saved. Try again." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:821 +msgid "Option saved successfully." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:467 +msgid "Img" +msgstr "Img" + +#: includes/admin/class-mp-product-attributes-list-table.php:57 +msgid "Product attribute(s) deleted successfully." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:162 +msgid "- Create New Variation -" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:144 +msgid "Only lowercase letters and dashes (-) are allowed." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:139 +msgid "If a slug is not entered, it will be generated automatically. Max 32 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:138 +#: includes/admin/class-mp-product-attributes-list-table.php:23 +msgid "Slug" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:130 +msgid "Max 45 characters." +msgstr "Max 45 tecken." + +#: includes/admin/class-mp-product-attributes-admin.php:123 +msgid "Use the numbers on the left to sort. To delete - click the \"X\" to the right of each row." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:122 +msgid "Attribute Options" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:121 +msgid "Add Option" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:105 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:523 +msgid "Sort Order" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:87 +msgid "Alphabetical" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:86 +msgid "ID" +msgstr "ID" + +#: includes/admin/class-mp-product-attributes-admin.php:84 +msgid "Select how the options will be sorted." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:82 +msgid "Sort By" +msgstr "Sortera efter" + +#: includes/admin/class-mp-product-attributes-admin.php:75 +msgid "The name of the attribute (e.g. color, size, etc)" +msgstr "Namn på attributet (t ex. färg, storlek, etc)" + +#: includes/admin/class-mp-product-attributes-admin.php:74 +msgid "Attribute Name" +msgstr "Attributnamn" + +#: includes/admin/class-mp-product-attributes-admin.php:69 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Product Attribute" +msgstr "Lägg till produktattribut" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Attribute" +msgstr "Lägg till attribut" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Product Attributes" +msgstr "Produktattribut" + +#: includes/admin/class-mp-pages-admin.php:71 +msgid "You can choose to make this page one of the following core store pages." +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:66 +msgid "Network Store Base" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:61 +msgid "Checkout Page" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:52 +msgid "Store Page Settings" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1108 +msgid "Display billing/shipping info for this customer" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1097 +msgid "View order “%s”" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1072 +msgid "Flag as:" +msgstr "Flagga som:" + +#: includes/admin/class-mp-orders-admin.php:952 +msgid "Move To Trash" +msgstr "Flytta til papperskorg" + +#: includes/admin/class-mp-orders-admin.php:948 +msgid " Received" +msgstr "Mottagen" + +#: includes/admin/class-mp-orders-admin.php:927 +msgid "Enter coupon code here" +msgstr "Ange kupongkod här" + +#: includes/admin/class-mp-orders-admin.php:812 +msgid "The order status could not be updated due to unexpected error. Please try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:740 +msgid "An invalid bulk action was requested. Please go back and try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:692 +msgid "The order status for order ID %1$s was updated successfully." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:688 +msgid "Order statuses successfully updated." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:530 +msgid "Method" +msgstr "Metod" + +#: includes/admin/class-mp-orders-admin.php:518 +msgid "Actual Shipping Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:513 +msgid "Method Paid For" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:504 +msgid "Amount Collected" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:477 +msgid "DHL" +msgstr "DHL" + +#: includes/admin/class-mp-orders-admin.php:408 +msgid "There is no IPN history to show at this time" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:345 +msgid "Type" +msgstr "Typ" + +#: includes/admin/class-mp-orders-admin.php:343 +msgid "Gateway" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:301 +#: includes/common/template-functions.php:528 +msgid "Order History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:291 +msgid "IPN History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:283 +msgid "Customer Info" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:279 +msgid "Order Details" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:157 +msgid "All Dates" +msgstr "Alla datum" + +#: includes/admin/class-mp-dashboard-widgets.php:320 +msgid "Add Pages to Menu" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:318 +msgid "Add-ons" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:317 +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "User Capabilities" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:316 +#: includes/admin/class-mp-setup-wizard.php:631 +#: includes/admin/store-settings/class-mp-store-settings-payments.php:50 +msgid "Payment Gateways" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:315 +msgid "Shipping Rates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:312 +msgid "Configure" +msgstr "Konfigurera" + +#: includes/admin/class-mp-dashboard-widgets.php:309 +#: includes/admin/class-mp-products-admin.php:466 +#: includes/admin/class-mp-shortcode-builder.php:797 +msgid "Tags" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:308 +#: includes/admin/class-mp-products-admin.php:465 +msgid "Categories" +msgstr "Kategorier" + +#: includes/admin/class-mp-dashboard-widgets.php:300 +msgid "Manage" +msgstr "Hantera" + +#: includes/admin/class-mp-dashboard-widgets.php:297 +msgid "Here's some quick links to manage your store and products." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:288 +msgid "low in stock" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:287 +msgid "%s product" +msgid_plural "%s products" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-dashboard-widgets.php:280 +msgid "received" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:279 +#: includes/admin/class-mp-dashboard-widgets.php:283 +msgid "%s order" +msgid_plural "%s orders" +msgstr[0] "%s order" +msgstr[1] "%s ordrar" + +#: includes/admin/class-mp-dashboard-widgets.php:276 +msgid "Stock & Orders" +msgstr "Lager & Ordrar" + +#: includes/admin/class-mp-dashboard-widgets.php:261 +msgid "Last 30 Days" +msgstr "Senaste 30 dagarna" + +#: includes/admin/class-mp-dashboard-widgets.php:256 +msgid "Last 7 Days" +msgstr "Senaste 7 dagarna" + +#: includes/admin/class-mp-dashboard-widgets.php:251 +msgid "Yesterday" +msgstr "Igår" + +#: includes/admin/class-mp-dashboard-widgets.php:248 +#: includes/admin/class-mp-dashboard-widgets.php:253 +#: includes/admin/class-mp-dashboard-widgets.php:258 +#: includes/admin/class-mp-dashboard-widgets.php:263 +msgid " Orders" +msgstr "Ordrar" + +#: includes/admin/class-mp-dashboard-widgets.php:246 +msgid "Today" +msgstr "Idag" + +#: includes/admin/class-mp-dashboard-widgets.php:241 +msgid "Welcome back! Here's a quick summary of your store's performance." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:196 +#: includes/admin/class-mp-products-admin.php:895 +msgid "No products out of stock." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:136 +#: includes/admin/class-mp-products-admin.php:839 +msgid "Stock Level" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:135 +#: includes/admin/class-mp-products-admin.php:838 +msgid "Variation" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:121 +msgid "Low Stock (%s)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:116 +msgid "Store Management" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:115 +msgid "Store Reports" +msgstr "" + +#: includes/admin/class-mp-ajax.php:579 +#: includes/admin/class-mp-orders-admin.php:520 +#: includes/common/payment-gateways/2checkout.php:370 +#: includes/common/payment-gateways/authorizenet-aim.php:264 +#: includes/common/payment-gateways/mollie.php:93 +#: includes/common/payment-gateways/paymill.php:196 +#: includes/common/payment-gateways/pin.php:190 +#: includes/common/payment-gateways/skrill.php:157 +#: includes/common/payment-gateways/skrill.php:168 +#: includes/common/payment-gateways/wepay.php:143 +#: includes/public/class-mp-checkout.php:404 +msgid "Select One" +msgstr "Välj en" + +#: includes/admin/class-mp-ajax.php:511 +msgid "Oops... we could not locate any orders by that ID. Please double check your order ID and try again." +msgstr "" + +#: includes/admin/class-mp-ajax.php:482 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:166 +#: includes/multisite/class-mp-admin-multisite.php:584 +msgid "Edit Page" +msgstr "" + +#: includes/admin/class-mp-ajax.php:346 +msgid "Cancel " +msgstr "Avbryt" + +#: includes/admin/class-mp-ajax.php:345 +msgid "Save " +msgstr "Spara" + +#: includes/admin/class-mp-ajax.php:336 +msgid "Edit Description" +msgstr "Redigera beskrivning" + +#: includes/admin/class-mp-ajax.php:336 +msgid "HTML Markup" +msgstr "" + +#: includes/admin/class-mp-ajax.php:333 +msgid "Plain Text Only" +msgstr "" + +#: includes/admin/class-mp-ajax.php:329 +msgid "Additional Content / Information for this Variation" +msgstr "" + +#: includes/admin/class-mp-ajax.php:317 +#: includes/admin/class-mp-products-admin.php:1762 +msgid "Allow this product to be purchased even if it's out of stock" +msgstr "" + +#: includes/admin/class-mp-ajax.php:313 +#: includes/admin/class-mp-products-admin.php:1711 +msgid "Track Product Inventory" +msgstr "" + +#: includes/admin/class-mp-ajax.php:300 +msgid "Extra Shipping Cost (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:295 +msgid "Ounces:" +msgstr "Ounces:" + +#: includes/admin/class-mp-ajax.php:294 +msgid "Pounds:" +msgstr "Pounds:" + +#: includes/admin/class-mp-ajax.php:292 +msgid "Kilograms:" +msgstr "Kilograms:" + +#: includes/admin/class-mp-ajax.php:287 +#: includes/admin/class-mp-products-admin.php:1649 +msgid "Charge Shipping" +msgstr "" + +#: includes/admin/class-mp-ajax.php:273 +#: includes/admin/class-mp-products-admin.php:1623 +#: includes/admin/store-settings/class-mp-store-settings-general.php:454 +msgid "Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:272 +#: includes/admin/class-mp-products-admin.php:1622 +#: includes/admin/class-mp-products-admin.php:2090 +#: includes/admin/class-mp-products-admin.php:2408 +msgid "Special Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:271 +#: includes/admin/class-mp-products-admin.php:1625 +#: includes/admin/class-mp-products-admin.php:2092 +msgid "If you would like this product to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-ajax.php:268 +#: includes/admin/class-mp-products-admin.php:1599 +msgid "Charge Taxes (Special Rate)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:256 +#: includes/admin/class-mp-products-admin.php:1593 +#: includes/admin/class-mp-products-admin.php:2077 +#: includes/admin/class-mp-products-admin.php:2348 +msgid "End Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:255 +#: includes/admin/class-mp-products-admin.php:1589 +#: includes/admin/class-mp-products-admin.php:2072 +msgid "Start Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:1568 +msgid "Enter Sale Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:250 +#: includes/admin/class-mp-products-admin.php:1547 +msgid "Set up a Sale for this Product" +msgstr "" + +#: includes/admin/class-mp-ajax.php:206 includes/admin/class-mp-ajax.php:223 +msgid "Enter " +msgstr "" + +#: includes/admin/class-mp-ajax.php:193 +msgid "Browse" +msgstr "" + +#: includes/admin/class-mp-ajax.php:184 includes/admin/class-mp-ajax.php:192 +msgid "http://" +msgstr "http://" + +#: includes/admin/class-mp-ajax.php:183 +msgid "External Product URL" +msgstr "" + +#: includes/admin/class-mp-ajax.php:237 +msgid "Limit Per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:177 +#: includes/admin/class-mp-products-admin.php:1520 +msgid "Enter Price" +msgstr "Ange pris" + +#: includes/admin/class-mp-ajax.php:174 +#: includes/admin/class-mp-products-admin.php:1512 +msgid "Enter SKU" +msgstr "Ange SKU" + +#: includes/admin/class-mp-ajax.php:173 +msgid "(Stock Keeping Unit)" +msgstr "(Stock Keeping Unit)" + +#: includes/admin/class-mp-ajax.php:158 +msgid "Remove Image" +msgstr "Ta bort bild" + +#: includes/admin/class-mp-ajax.php:74 +msgid "Variation Draft" +msgstr "" + +#: includes/admin/class-mp-admin.php:296 +#: includes/admin/class-mp-dashboard-widgets.php:70 +msgid "Please wait...saving in progress..." +msgstr "" + +#: includes/admin/class-mp-admin.php:295 +#: includes/admin/class-mp-dashboard-widgets.php:69 +msgid "Input is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:294 +#: includes/admin/class-mp-dashboard-widgets.php:68 +msgid "Valid number is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:292 +#: includes/admin/class-mp-dashboard-widgets.php:66 +msgid "Delete %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:291 +#: includes/admin/class-mp-dashboard-widgets.php:65 +msgid "Delete %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:290 +#: includes/admin/class-mp-dashboard-widgets.php:64 +msgid "Update inventory for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:289 +#: includes/admin/class-mp-dashboard-widgets.php:63 +msgid "Update inventory for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:288 +#: includes/admin/class-mp-dashboard-widgets.php:62 +msgid "Update price for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:287 +#: includes/admin/class-mp-dashboard-widgets.php:61 +msgid "Update prices for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:285 +#: includes/admin/class-mp-dashboard-widgets.php:59 +msgid "Creating variations, please wait..." +msgstr "" + +#: includes/admin/class-mp-admin.php:96 +msgid "The following payment gateways have been deprecated, Cubepoints, Bitpay, iDEAL, Skrill, Google Checkout. If you were using one of these gateways, please setup a new payment gateway here." +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:61 +msgid "Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:71 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:71 +#: includes/common/class-mp-gdpr.php:399 includes/common/class-mp-order.php:872 +#: includes/common/helpers.php:164 includes/public/class-mp-checkout.php:1434 +msgid "Shipping Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:66 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:66 +#: includes/common/class-mp-gdpr.php:392 includes/common/class-mp-order.php:864 +#: includes/common/helpers.php:163 includes/public/class-mp-checkout.php:1427 +msgid "Billing Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:61 +msgid "Invoice" +msgstr "Faktura" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:258 +msgid "Shipping Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:256 +msgid "Email: %s" +msgstr "E-post: %s" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:235 +msgid "Payment Method: %s" +msgstr "Betalningssätt: %s" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:79 +msgid "The dir %s not exist or not writeable" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Invoice" +msgstr "PDF faktura" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:239 +msgid "Shop header/logo" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:233 +msgid "Choose a template" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:226 +msgid "Template Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:221 +msgid "Disable automatic creation/attachment of invoices when only free products are ordered" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:220 +msgid "Disable for free products" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:216 +msgid "Attach invoice to" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:214 +msgid "Customer Order Shipped email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:212 +msgid "Customer New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:211 +msgid "Admin New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:206 +msgid "download" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:205 +msgid "How do you want to view the PDF?" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:203 +msgid "Open the PDF in a new browser tab/window" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:202 +msgid "Download the PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:158 +msgid "Export PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:103 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:106 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:109 +msgid "You can't download this order invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:76 +msgid "Invalid Request" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:72 +msgid "Order not exist!" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:67 +msgid "Invalid ID" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1293 +msgid "Coupon added successfully" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1292 +msgid "Please enter a code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1247 +msgid "No end" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1200 +msgid "Valid Dates" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1195 +msgid "Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1027 +msgid "No Coupons found in Trash" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1026 +msgid "No Coupons Found" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1025 +msgid "Search Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1024 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1028 +msgid "View Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1023 +msgid "New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1020 +msgid "Create New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1017 +msgid "Manage Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1002 +msgid "An error occurred while removing your coupon. Please try again." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:964 +msgid "Coupon can't be applied to this cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:951 +msgid "Invalid coupon code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:794 +msgid "Help Text" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:789 +msgid "Form Title" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:783 +msgid "Coupons Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:764 +msgid "End Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:758 +msgid "Does coupon have an end date?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:696 +msgid "Select Products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:688 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:723 +#: includes/common/payment-gateways/paypal-payflow.php:402 +msgid "User" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:638 +msgid "Max Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:636 +msgid "Enter the maximum number of times this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:623 +msgid "Leave blank to allow all other coupons." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:622 +msgid "Select combinable coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:618 +msgid "Can this coupon be combined with other coupons?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:613 +msgid "Apply to each applicable item once per cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:612 +msgid "Apply to each applicable item and quantity ordered" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:609 +msgid "How should the discount amount be applied?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:605 +msgid "Discount Amount" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:604 +msgid "Value must either be a decimal number or a percentage" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:602 +msgid "If you would like to give a percentage-based discount make sure to include the percent (%) symbol. Otherwise, the discount will be applied as a fixed amount off." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:595 +msgid "Letters and Numbers only." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:589 +msgid "Coupon Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:447 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:795 +msgid "More than one code? That's OK! Just be sure to enter one at a time." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:444 +msgid "Apply Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:314 +msgid "Coupon Discounts" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:89 +msgid "1 add-on disabled" +msgid_plural "%s add-ons disabled" +msgstr[0] "" +msgstr[1] "" + +#: includes/addons/class-mp-addons-list-table.php:84 +msgid "1 add-on enabled" +msgid_plural "%s add-ons enabled" +msgstr[0] "" +msgstr[1] "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Disabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Enable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:129 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:67 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:135 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:168 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:202 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:263 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:296 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:330 +msgid "Enabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +msgid "Disable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:34 +msgid "Disable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:33 +msgid "Enable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:21 +#: includes/admin/class-mp-products-admin.php:2280 +#: includes/common/class-mp-product.php:2916 +msgid "Description" +msgstr "Beskrivning" + +#: includes/common/template-functions.php:2889 +#: includes/multisite/template-functions.php:407 +msgid "Popularity (Least Popular - Most Popular)" +msgstr "Popularitet (minst populär - mest populär)" + +#: includes/common/template-functions.php:2888 +#: includes/multisite/template-functions.php:406 +msgid "Popularity (Most Popular - Least Popular)" +msgstr "Popularitet (mest populär - minst populär)" + +#: includes/common/template-functions.php:2885 +#: includes/multisite/template-functions.php:403 +msgid "Name (Z-A)" +msgstr "Namn (Z-A)" + +#: includes/common/template-functions.php:2884 +#: includes/multisite/template-functions.php:402 +msgid "Name (A-Z)" +msgstr "Namn (A-Z)" + +#: includes/common/template-functions.php:2883 +#: includes/multisite/template-functions.php:401 +msgid "Release Date (Oldest to Latest)" +msgstr "Utgivningsdatum (äldsta till nyaste)" + +#: includes/common/template-functions.php:2882 +#: includes/multisite/template-functions.php:400 +msgid "Release Date (Latest to Oldest)" +msgstr "Utgivningsdatum (nyaste till äldsta)" + +#: includes/admin/class-mp-dashboard-widgets.php:284 +msgid "paid" +msgstr "betalad" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "One Time Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Customer Counter" +msgstr "Kundräknare" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Daily Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:182 +msgid "For the most accurate rates, please select the appropriate pick up type for your business." +msgstr "För mer specificerade priser, vänligen välj typ av leverans för ditt företag." + +#: includes/admin/class-mp-admin.php:374 +msgid "Page saved." +msgstr "Sidan sparad." + +#: includes/admin/class-mp-admin.php:370 +msgid "Custom field deleted." +msgstr "Egna fält borttagna." + +#: includes/admin/class-mp-admin.php:369 +msgid "Custom field updated." +msgstr "Egna fält uppdaterade." + +#: includes/common/payment-gateways/_bitpay.php:541 +msgid "%s - The payment request expired, - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:536 +msgid "%s - The payment not credited in merchants bitpay account, action required. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:252 +msgid "If enabled, you will recieve an email for each status update on payment." +msgstr "Om aktiverat får du ett e-postmeddelande vid varje statusuppdatering för betalning." + +#: includes/common/payment-gateways/_bitpay.php:240 +msgid "Speed at which the bitcoin transaction registers as \"confirmed\" to the store. This overrides your merchant settings on the Bitpay website." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:238 +msgid "Transaction Speed" +msgstr "Transaktionshastighet" + +#: includes/common/payment-gateways/_bitpay.php:244 +msgid "Low" +msgstr "Låg" + +#: includes/common/payment-gateways/_bitpay.php:243 +msgid "Medium" +msgstr "Medel" + +#: includes/common/payment-gateways/_bitpay.php:242 +msgid "High" +msgstr "Hög" + +#: includes/common/payment-gateways/_bitpay.php:177 +#: includes/common/payment-gateways/_bitpay.php:517 +#: includes/common/payment-gateways/_bitpay.php:522 +msgid "%s - The payment request is under process. Bitpay invoice status - %s" +msgstr "%s - Betalningsförfrågan bearbetas. Bitpay fakturastatus - %s" + +#: includes/common/payment-gateways/_bitpay.php:175 +#: includes/common/payment-gateways/_bitpay.php:527 +msgid "%s - The payment request has been processed - %s" +msgstr "%s - Betalningsförfrågan har bearbetats - %s" + +#: includes/common/payment-gateways/_bitpay.php:150 +#: includes/common/payment-gateways/_bitpay.php:294 +msgid "Incorrect order invoice, please contact site administrator" +msgstr "Felaktig orderfaktura, kontakta webbplatsens administratör" + +#: includes/common/payment-gateways/_bitpay.php:141 +msgid "We could not verify order invoice details, please try again or contact site administrator for help" +msgstr "Vi kunde inte verifiera beställningens fakturainformation, vänligen försök igen eller kontakta webbplatsens administratör för hjälp." + +#: includes/common/payment-gateways/simplify.php:81 +msgid "Login to Simplify to get your API credentials. Enter your test credentials, then live ones when ready." +msgstr "Logga in på Simplify för att få dina API-användaruppgifter. Ange dina testanvändaruppgifter och sedan dem som ska användas på riktigt." + +#: includes/common/payment-gateways/paypal-express.php:605 +#: includes/common/payment-gateways/paypal-express.php:647 +msgid "Express Checkout is PayPal's premier checkout solution, which streamlines the checkout process for buyers and keeps them on your site after making a purchase. Unlike PayPal Pro, there are no additional fees to use Express Checkout, though you may need to do a free upgrade to a business account. More Info »" +msgstr "" + +#. Plugin URI of the plugin/theme +msgid "https://premium.wpmudev.org/project/e-commerce/" +msgstr "https://premium.wpmudev.org/project/e-commerce/" + +#. Author of the plugin/theme +msgid "WPMU DEV" +msgstr "WPMU DEV" + +#: includes/admin/class-mp-orders-admin.php:541 +#: includes/admin/class-mp-orders-admin.php:543 +msgid "Tracking Number" +msgstr "" + +#: includes/common/class-mp-order.php:805 +#: includes/common/payment-gateways/stripe.php:336 +#: includes/public/class-mp-checkout.php:402 +msgid "Country" +msgstr "Land" + +#: includes/common/class-mp-order.php:784 +#: includes/common/payment-gateways/stripe.php:338 +msgid "City" +msgstr "Stad" + +#: includes/common/class-mp-order.php:780 +msgid "Address 2" +msgstr "Adress 2" + +#: includes/common/payment-gateways/stripe.php:340 +msgid "Address" +msgstr "Adress" + +#: includes/common/class-mp-cart.php:752 includes/common/class-mp-gdpr.php:378 +msgid "Order Total" +msgstr "Ordersumma" + +#: includes/admin/class-mp-orders-admin.php:360 +msgid "Payment Total" +msgstr "Betalning totalt" + +#: includes/admin/class-mp-orders-admin.php:347 +msgid "Transaction ID" +msgstr "Transaktions ID" + +#: includes/common/payment-gateways/wepay.php:207 +msgid "The WePay Card Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:186 +#: includes/common/shipping-modules/mp-fedex.php:283 +msgid "Account ID" +msgstr "Konto ID" + +#: includes/common/payment-gateways/wepay.php:179 +msgid "Access Token" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:172 +msgid "Client Secret" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:165 +msgid "Client ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:159 +msgid "You must login to WePay to get your API credentials. Make sure to check \"Tokenize credit cards\" option under \"API Keys\" section of your WePay app." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:154 +msgid "When in live mode it is recommended to use SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:148 +msgid "Donation" +msgstr "Donation" + +#: includes/common/payment-gateways/wepay.php:147 +msgid "Event" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:146 +msgid "Personal" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:145 +msgid "Service" +msgstr "Service" + +#: includes/common/payment-gateways/wepay.php:144 +msgid "Goods" +msgstr "Varor" + +#: includes/common/payment-gateways/wepay.php:141 +msgid "Choose type of payments" +msgstr "Välj typ av betalning" + +#: includes/common/payment-gateways/wepay.php:140 +msgid "Checkout Type" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:134 +msgid "Staging" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:131 +msgid "Choose STAGING if you have registered the app on stage.wepay.com, or PRODUCTION if you registered on www.wepay.com" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:36 +#: includes/common/payment-gateways/wepay.php:299 +msgid "WePay" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:366 +msgid "Rejected - A payment was rejected." +msgstr "Avvisad - En betalning avvisades." + +#: includes/common/payment-gateways/_payway.php:360 +msgid "Failed - A payment was rejected due to an error." +msgstr "Misslyckades - En betalning avvisades p.g.a. ett fel." + +#: includes/common/payment-gateways/_payway.php:342 +msgid "PayWay balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:298 +msgid "Full path of the cacerts.crt file" +msgstr "Fullständig sökväg för filen cacerts.crt" + +#: includes/common/payment-gateways/_payway.php:284 +msgid "User Name" +msgstr "Användarnamn" + +#: includes/common/payment-gateways/_payway.php:277 +msgid "Biller Code" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:273 +msgid "Log Directory" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:266 +msgid "Encryption Key" +msgstr "Krypteringsnyckel" + +#: includes/common/payment-gateways/_payway.php:60 +msgid "Your PayWay transaction has been canceled." +msgstr "Din PayWay-transaktion har avbrutits." + +#: includes/common/payment-gateways/_payway.php:40 +#: includes/common/payment-gateways/_payway.php:41 +msgid "PayWay" +msgstr "PayWay" + +#: includes/common/payment-gateways/paypal-chained-payments.php:862 +msgid "You must register this application with PayPal using your business account login to get an Application ID that will work with your API credentials. A bit of a hassle, but worth it! In the near future we will be looking for ways to simplify this process. Register then submit your application while logged in to the developer portal. Note that you do not need an Application ID for testing in sandbox mode. More Information »" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:818 +#: includes/common/payment-gateways/paypal-chained-payments.php:840 +#: includes/common/payment-gateways/paypal-express.php:705 +msgid "You must login to PayPal and create an API signature to get your credentials. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:378 +msgid "Use Payflow payment gateway to accept online payments using your Internet merchant account and processing network. PayPal Payflow Pro is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:595 +msgid "Tags Only" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:594 +msgid "Category Only" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:795 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:593 +msgid "Category & Tags" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:591 +msgid "Relate Products By" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1008 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:455 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:751 +msgid "Right" +msgstr "Höger" + +#: includes/admin/class-mp-shortcode-builder.php:1007 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:454 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:749 +msgid "Left" +msgstr "Vänster" + +#: includes/admin/class-mp-shortcode-builder.php:1009 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:750 +msgid "Center" +msgstr "Mitten" + +#: marketpress.php:273 +msgid "Orders from your e-commerce store." +msgstr "" + +#: marketpress.php:231 +msgid "Products for your e-commerce store." +msgstr "" + +#: marketpress.php:222 +msgid "Edit Product" +msgstr "Redigera produkt" + +#. Description of the plugin/theme +msgid "The complete WordPress ecommerce plugin - works perfectly with BuddyPress and Multisite too to create a social marketplace, where you can take a percentage! Activate the plugin, adjust your settings then add some products to your store." +msgstr "Denna WordPress e-commerce plugin fungerar perfekt med BuddyPress och Multi-sites för att skapa en gemensam marknadsplats där du kan tjäna roylaty på andras produkter. Aktivera pluginet, anpassa dina inställningar och lägg till några produkter i din butik." + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:272 +msgid "Beside" +msgstr "Förutom" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:271 +msgid "Above" +msgstr "Ovan" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:268 +msgid "Pin Count" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:261 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:287 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:318 +msgid "All View" +msgstr "Visa Alla " + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:260 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:286 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:317 +msgid "Single View" +msgstr "Enkel visning" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:259 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:285 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:316 +msgid "Off" +msgstr "Av" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:578 +msgid "Related Product Limit" +msgstr "Gräns för antal relaterade produkter" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:681 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1201 +msgid "Applies To" +msgstr "Gäller för" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:685 +msgid "All Products" +msgstr "Alla produkter" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:487 +msgid "The label shown for the tax line item in the cart. Taxes, VAT, GST, etc." +msgstr "Den beteckning som anges för skatteposten i kundvagnen. Skatter, moms, etc." + +#: includes/admin/class-mp-setup-wizard.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:485 +msgid "Tax Label" +msgstr "Skattebenämning" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:81 +msgid "Apply" +msgstr "Använd" + +#: includes/admin/class-mp-admin.php:192 +msgid "MarketPress Instructions" +msgstr "Instruktioner för MarketPress" + +#: includes/admin/class-mp-products-admin.php:1954 +#: includes/admin/class-mp-products-admin.php:2194 includes/common/data.php:62 +#: includes/common/helpers.php:150 +msgid "Taxes" +msgstr "Skatter" + +#: includes/admin/class-mp-products-admin.php:1417 +#: includes/common/class-mp-product.php:2900 +msgid "Related Products" +msgstr "Relaterade produkter" + +#: includes/common/shipping-modules/mp-usps.php:282 +#: includes/common/shipping-modules/mp-usps.php:316 +msgid "@ Max" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "(3-5 days)" +msgstr "(3-5 dagar)" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "Priority Mail Express International Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:92 +msgid "Priority Mail Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:171 +#: includes/common/shipping-modules/mp-pickup.php:247 +msgid "In Store" +msgstr "I lager" + +#: includes/common/shipping-modules/mp-pickup.php:159 +msgid "Pickup Fee" +msgstr "Upphämtningsavgift" + +#: includes/common/shipping-modules/mp-pickup.php:141 +msgid "This option allows your customers to indicate that they will pick-up their order at your place of business." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:60 +#: includes/common/shipping-modules/mp-pickup.php:76 +#: includes/common/shipping-modules/mp-pickup.php:176 +msgid "Pickup Instructions" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:24 +#: includes/common/shipping-modules/mp-pickup.php:254 +msgid "Pickup" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping - 0.00" +msgstr "Gratis frakt - 0.00" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:256 +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:440 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping" +msgstr "Gratis frakt" + +#: includes/common/shipping-modules/mp-fedex.php:309 +msgid "Your Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:301 +msgid "Station" +msgstr "Station" + +#: includes/common/shipping-modules/mp-fedex.php:300 +msgid "Request Courier" +msgstr "Be om kurir" + +#: includes/common/shipping-modules/mp-fedex.php:299 +msgid "Drop Box" +msgstr "Drop Box" + +#: includes/common/shipping-modules/mp-fedex.php:298 +msgid "Business Service Center" +msgstr "Servicecenter" + +#: includes/common/shipping-modules/mp-fedex.php:297 +msgid "Regular Pickup" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:135 +#: includes/common/shipping-modules/mp-fedex.php:264 +msgid "Production" +msgstr "Produktion" + +#: includes/common/payment-gateways/simplify.php:207 +msgid "Simplify Commerce by MasterCard" +msgstr "Simplify Commerce by MasterCard" + +#: includes/common/payment-gateways/simplify.php:104 +msgid "When in live mode, although it is not required, Simplify recommends you have an SSL certificate." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:183 +#: includes/common/payment-gateways/simplify.php:87 +msgid "Public Key" +msgstr "Publik Nyckel" + +#: includes/common/payment-gateways/paymill.php:175 +#: includes/common/payment-gateways/simplify.php:94 +msgid "Private Key" +msgstr "Privat Nyckel" + +#: includes/common/payment-gateways/simplify.php:71 +msgid "Simplify helps merchants to accept online payments from Mastercard, Visa, American Express, Discover, JCB, and Diners Club cards. It's that simple. We offer a merchant account and payment gateway in a single, secure package so you can concentrate on what really matters to your business. Only supports USD currently." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:267 +msgid "%1$s" +msgstr "%1$s" + +#: includes/common/payment-gateways/simplify.php:151 +msgid "The Simplify Token was not generated correctly. Please go back and try again." +msgstr "Den förenklade Token har inte genererats korrekt. Gå tillbaka och försök igen." + +#: includes/common/payment-gateways/simplify.php:18 +msgid "Simplify" +msgstr "Förenkla" + +#: includes/common/payment-gateways/pin.php:255 +msgid "%1$s Card %2$s" +msgstr "%1$s Kort %2$s" + +#: includes/common/payment-gateways/pin.php:211 +msgid "The PIN Token was not generated correctly. Please go back and try again." +msgstr "PIN Token har inte genererat korrekt. Gå tillbaka och försök igen." + +#: includes/common/payment-gateways/pin.php:187 +msgid "Selecting a currency other than currency supported by PIN may cause problems at checkout." +msgstr "Välja en annan valuta än som stöds av PIN valuta kan orsaka problem i kassan." + +#: includes/common/payment-gateways/pin.php:164 +msgid "You must login to PIN to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/pin.php:158 +msgid "When in live mode PIN recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/pin.php:45 +#: includes/common/payment-gateways/pin.php:286 +msgid "PIN" +msgstr "PIN" + +#: includes/common/payment-gateways/paypal-express.php:830 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer" +msgstr "En betalning återfördes på grund av en återbetalning eller annan typ av återföring. Medlen har tagits bort från ditt konto och returnerarts till köparen" + +#: includes/common/payment-gateways/paypal-chained-payments.php:534 +#: includes/common/payment-gateways/paypal-express.php:865 +msgid "The payment is pending" +msgstr "Betalningen väntar" + +#: includes/common/payment-gateways/paymill.php:235 +msgid "The Paymill Token was not generated correctly. Please go back and try again." +msgstr "Paymill Token blev inte korrekt generad. Gå tillbaka och försök igen." + +#: includes/common/payment-gateways/paymill.php:169 +msgid "You must login to Paymill to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:45 +#: includes/common/payment-gateways/paymill.php:308 +msgid "Paymill" +msgstr "Paymill" + +#: includes/common/payment-gateways/paymill.php:90 +msgid "Invalid cardholder" +msgstr "Ogiltig kortinnehavaren" + +#: includes/common/payment-gateways/paymill.php:89 +msgid "Card is no longer valid or has expired" +msgstr "Kortet inte längre är giltigt eller har löpt ut" + +#: includes/common/payment-gateways/paymill.php:88 +msgid "Please enter a valid Card CVC" +msgstr "Ange ett giltigt kort CVC" + +#: includes/common/payment-gateways/paymill.php:87 +msgid "Please choose a valid Expiration Date." +msgstr "Välj ett giltigt utgångsdatum." + +#: includes/common/payment-gateways/skrill.php:99 +#: includes/common/payment-gateways/skrill.php:100 +msgid "Skrill (Moneybookers)" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:24 +#: includes/common/shipping-modules/mp-weight-rate.php:292 +msgid "Weight Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:303 +msgid "USPS Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:270 +msgid "USPS Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:264 +msgid "USPS Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:145 +msgid "Flat Rate Large" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:140 +msgid "Flat Rate Medium 2" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:135 +msgid "Flat Rate Medium 1" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:130 +msgid "Flat Rate Small" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:118 +msgid "First Class International Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:114 +msgid "Priority Mail International Small Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:112 +msgid "Priority Mail International Medium Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:110 +msgid "Priority Mail International Large Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:108 +msgid "Priority Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:106 +msgid "Express Mail International Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:104 +msgid "Express Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:98 +msgid "Library Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:96 +msgid "Media Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "First-Class Mail Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:90 +msgid "Priority Mail Small Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:88 +msgid "Priority Mail Medium Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +#: includes/common/shipping-modules/mp-usps.php:88 +#: includes/common/shipping-modules/mp-usps.php:90 +#: includes/common/shipping-modules/mp-usps.php:92 +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "(2-4 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +msgid "Priority Mail Large Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "(2-4) days" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "Priority Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "Express Mail Sunday/Holiday Delivery Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:80 +msgid "Express Mail Flat Rate Boxes Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:78 +msgid "Express Mail Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:76 +msgid "Express Mail Sunday/Holiday Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:74 +msgid "Express Mail Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:72 +#: includes/common/shipping-modules/mp-usps.php:74 +#: includes/common/shipping-modules/mp-usps.php:76 +#: includes/common/shipping-modules/mp-usps.php:78 +#: includes/common/shipping-modules/mp-usps.php:80 +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "(1-2 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:72 +msgid "Express Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:67 +#: includes/common/shipping-modules/mp-usps.php:902 +msgid "USPS" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:534 +msgid "UPS (beta)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:166 +msgid "Required if using negotiated rates" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "Worldwide Express Plus" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "(Scheduled)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "Standard" +msgstr "Standard" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "(2-5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "Worldwide Expedited" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:54 +msgid "Worldwide Express" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "2nd Day Air AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "(1 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "Next Day Air Early AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "Next Day Air Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "3 Day Select" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:49 +msgid "Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:48 +msgid "2nd Day Air" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "Next Day Air" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:475 +#: includes/common/shipping-modules/mp-ups.php:43 +msgid "UPS" +msgstr "UPS" + +#: includes/common/shipping-modules/mp-table-rate.php:27 +#: includes/common/shipping-modules/mp-table-rate.php:318 +msgid "Table Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:71 +#: includes/common/shipping-modules/mp-table-quantity.php:77 +msgid "Shipping Cost: " +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:70 +#: includes/common/shipping-modules/mp-table-quantity.php:76 +msgid "If quantity is greater than:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:66 +msgid "Each band must be a higher price than the one above it." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:56 +msgid "Number of Bands:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:53 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Each layer must be a higher quantity than the previous." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:51 +msgid "Table Quantity Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:31 +msgid "Table Quantity" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:135 +#: includes/common/shipping-modules/mp-table-rate.php:174 +#: includes/common/shipping-modules/mp-weight-rate.php:189 +msgid "European Union" +msgstr "Europeiska unionen" + +#: includes/common/shipping-modules/mp-flat-rate.php:123 +#: includes/common/shipping-modules/mp-table-rate.php:162 +#: includes/common/shipping-modules/mp-weight-rate.php:177 +msgid "United States" +msgstr "Usa" + +#: includes/common/shipping-modules/mp-flat-rate.php:111 +#: includes/common/shipping-modules/mp-table-rate.php:151 +#: includes/common/shipping-modules/mp-weight-rate.php:166 +msgid "In Country" +msgstr "I Land" + +#: includes/common/shipping-modules/mp-flat-rate.php:146 +#: includes/common/shipping-modules/mp-table-rate.php:186 +#: includes/common/shipping-modules/mp-weight-rate.php:201 +msgid "International" +msgstr "Internationella" + +#: includes/common/shipping-modules/mp-flat-rate.php:101 +#: includes/common/shipping-modules/mp-table-rate.php:141 +#: includes/common/shipping-modules/mp-weight-rate.php:156 +msgid "Canada" +msgstr "Canada" + +#: includes/common/shipping-modules/mp-flat-rate.php:92 +#: includes/common/shipping-modules/mp-table-rate.php:132 +#: includes/common/shipping-modules/mp-weight-rate.php:147 +msgid "Hawaii and Alaska" +msgstr "Hawaii och Alaska" + +#: includes/common/shipping-modules/mp-flat-rate.php:83 +#: includes/common/shipping-modules/mp-table-rate.php:123 +#: includes/common/shipping-modules/mp-weight-rate.php:138 +msgid "Lower 48 States" +msgstr "Nedre 48 staterna" + +#: includes/common/shipping-modules/mp-flat-rate.php:64 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping." +msgstr "Var noga med att ange ett fraktpris för varje val annars får dina kunder gratis frakt." + +#: includes/common/shipping-modules/mp-flat-rate.php:25 +#: includes/common/shipping-modules/mp-flat-rate.php:223 +msgid "Flat Rate" +msgstr "Enhetstaxa" + +#: includes/common/shipping-modules/mp-fedex.php:761 +msgid "FedEx (beta)" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Centimeters" +msgstr "Centimeter" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Inches" +msgstr "Tum" + +#: includes/admin/class-mp-products-admin.php:1676 +#: includes/admin/class-mp-setup-wizard.php:547 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:166 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +msgid "Kilograms" +msgstr "Kg" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:103 +msgid " %1$s - %2$s" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:358 +msgid "Max Weight per Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:356 +msgid "Box Dimensions" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:354 +msgid "Box Name" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:344 +msgid "Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:343 +msgid "For each box defined enter the maximum weight it can contain." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:341 +msgid "Enter your standard box sizes as LengthxWidthxHeight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:386 +#: includes/common/shipping-modules/mp-ups.php:193 +#: includes/common/shipping-modules/mp-usps.php:234 +#: includes/common/shipping-modules/mp-usps.php:338 +msgid "Standard Boxes and Weight Limits" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:328 +msgid "Handling Charge per Interntional Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:294 +msgid "Handling Charge per Domestic Shipment " +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:388 +#: includes/common/shipping-modules/mp-ups.php:196 +#: includes/common/shipping-modules/mp-usps.php:237 +msgid "Add Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "(Next Day)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +msgid "Europe First International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:62 +msgid "International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:61 +#: includes/common/shipping-modules/mp-fedex.php:62 +#: includes/common/shipping-modules/mp-ups.php:54 +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "(1-3 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:61 +msgid "International First" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "(5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "International Economy" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "(2-7 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "Smart Post" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:55 +#: includes/common/shipping-modules/mp-ups.php:49 +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "(1-5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:55 +msgid "Ground Home Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "(1-7 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "Fedex Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:53 +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "(3 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:53 +msgid "Fedex Express Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +#: includes/common/shipping-modules/mp-ups.php:48 +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "(2 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +msgid "Fedex 2 Day" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "(2 Days am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "Fedex 2 Day AM" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "(1 Day)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +msgid "Standard Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "(1 Day am )" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "Priority Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "(1 Day am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "First Overnight" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:476 +#: includes/common/shipping-modules/mp-fedex.php:31 +msgid "FedEx" +msgstr "FedEx" + +#: includes/common/payment-gateways/paymill.php:270 +#: includes/common/payment-gateways/simplify.php:179 +#: includes/common/payment-gateways/stripe.php:365 +msgid "%1$s Card ending in %2$s - Expires %3$s" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:259 +#: includes/common/payment-gateways/pin.php:238 +#: includes/common/payment-gateways/simplify.php:171 +msgid "%s Store Purchase - Order ID: %s, Email: %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:266 +msgid "You must login to Stripe to get your API credentials. You can enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:261 +msgid "When in live mode Stripe recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:311 +msgid "The Stripe Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:263 +#: includes/common/payment-gateways/paymill.php:122 +#: includes/common/payment-gateways/stripe.php:222 +msgid "Card Number" +msgstr "Kortnummer" + +#: includes/common/payment-gateways/paymill.php:86 +msgid "Please enter a valid Credit Card Number." +msgstr "Ange ett giltigt kreditkortsnummer." + +#: includes/common/payment-gateways/stripe.php:45 +#: includes/common/payment-gateways/stripe.php:433 +msgid "Stripe" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:750 +msgid "Sets the background color for the payment page. By default, the color is white." +msgstr "Anger bakgrundsfärg för betalning sidan. Som standard är färgen vit." + +#: includes/common/payment-gateways/paypal-express.php:745 +msgid "Sets the background color for the header of the payment page. By default, the color is white." +msgstr "Anger bakgrundsfärg för sidhuvudet av betalningen sidan. Som standard är färgen vit." + +#: includes/common/payment-gateways/paypal-express.php:740 +msgid "Sets the border color around the header of the payment page. The border is a 2-pixel perimeter around the header space, which is 750 pixels wide by 90 pixels high. By default, the color is black." +msgstr "Sätt kant färgen runt toppen på betalnings sidan. Gränsen är en 2-pixlar omkrets runt huvud området, vilket är 750 pixlar bred och 90 pixlar hög. Som standard är färgen svart." + +#: includes/common/payment-gateways/paypal-express.php:735 +msgid "URL for an image you want to appear at the top left of the payment page. The image has a maximum size of 750 pixels wide by 90 pixels high. PayPal recommends that you provide an image that is stored on a secure (https) server. If you do not specify an image, the business name is displayed." +msgstr "URL för en bild som du vill ska visas överst till vänster på betalningssidan. Bilden har en storlek på högst 750 pixlar bred och 90 pixlar hög. PayPal rekommenderar att du anger en bild som lagras på en säker (https) server. Om du inte anger en bild, visas företagsnamnet." + +#: includes/common/payment-gateways/paypal-express.php:857 +#: includes/common/payment-gateways/paypal-express.php:1131 +msgid "The payment is pending because it is part of an order that has been authorized but not settled." +msgstr "Betalningen väntar eftersom det är en del av en beställning som har godkänts, men inte avgjorts." + +#: includes/common/payment-gateways/paypal-express.php:853 +#: includes/common/payment-gateways/paypal-express.php:1127 +msgid "The payment is pending because it has been authorized but not settled. You must capture the funds first." +msgstr "Betalningen väntar eftersom den har blivit godkänd men inte avgjort. Du måste fånga de medel först." + +#: includes/common/payment-gateways/paypal-express.php:847 +#: includes/common/payment-gateways/paypal-express.php:1120 +msgid "You denied the payment when it was marked as pending." +msgstr "Du förnekade betalningen när det var markerat som pågående." + +#: includes/common/payment-gateways/paypal-express.php:837 +#: includes/common/payment-gateways/paypal-express.php:1108 +msgid "A reversal has occurred on this transaction due to an unknown reason." +msgstr "En återföring har inträffat på denna transaktion på grund av en okänd anledning." + +#: includes/common/payment-gateways/paypal-express.php:836 +#: includes/common/payment-gateways/paypal-express.php:1107 +msgid "A reversal has occurred on this transaction because you have given the customer a refund." +msgstr "En återföring har inträffat på denna transaktion, eftersom du har gett kunden pengarna tillbaka." + +#: includes/common/payment-gateways/paypal-express.php:835 +#: includes/common/payment-gateways/paypal-express.php:1106 +msgid "A reversal has occurred on this transaction due to a complaint about the transaction from your customer." +msgstr "En återföring har inträffat på denna transaktion på grund av ett klagomål om transaktionen från din kund." + +#: includes/common/payment-gateways/paypal-express.php:834 +#: includes/common/payment-gateways/paypal-express.php:1105 +msgid "A reversal has occurred on this transaction due to your customer triggering a money-back guarantee." +msgstr "En återföring har inträffat på denna affär till din kund åberopat en pengarna-tillbaka-garanti." + +#: includes/common/payment-gateways/paypal-express.php:833 +#: includes/common/payment-gateways/paypal-express.php:1104 +msgid "A reversal has occurred on this transaction due to a chargeback by your customer." +msgstr "En återföring har inträffat på denna transaktion på grund av en återbetalning av kunden." + +#: includes/common/payment-gateways/paypal-express.php:1101 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer:" +msgstr "En betalning vände på grund av en återbetalning eller annan typ av vändning. Medlen har tagits bort från ditt konto och överförts till köparen:" + +#: includes/common/payment-gateways/paypal-express.php:826 +#: includes/common/payment-gateways/paypal-express.php:1097 +msgid "A payment has been accepted." +msgstr "En betalning har accepterats." + +#: includes/common/payment-gateways/paypal-express.php:818 +#: includes/common/payment-gateways/paypal-express.php:1087 +msgid "The transaction has not terminated, e.g. an authorization may be awaiting completion." +msgstr "Transaktionen har inte slutförts, t.ex. ett tillstånd inväntar färdigställande." + +#: includes/common/payment-gateways/payfast.php:531 +#: includes/common/payment-gateways/paypal-express.php:810 +#: includes/common/payment-gateways/paypal-express.php:1077 +msgid "The payment has failed. This happens only if the payment was made from your customer's bank account." +msgstr "Betalningen misslyckades. Detta sker endast om betalning skett från kundens bankkonto." + +#: includes/common/payment-gateways/paypal-express.php:806 +#: includes/common/payment-gateways/paypal-express.php:1072 +msgid "An authorization for this transaction has been voided." +msgstr "Ett tillstånd för denna transaktion har förklarats ogiltigt." + +#: includes/common/payment-gateways/paypal-express.php:802 +#: includes/common/payment-gateways/paypal-express.php:1067 +msgid "The authorization period for this payment has been reached." +msgstr "Tillståndet för den här betalningen har uppnåtts." + +#: includes/common/payment-gateways/paypal-express.php:798 +#: includes/common/payment-gateways/paypal-express.php:1062 +msgid "A reversal has been canceled; for example, when you win a dispute and the funds for the reversal have been returned to you." +msgstr "En återföring har avbrutits, till exempel när du vinner en tvist och medlen för återföring har återvänt till dig." + +#: includes/common/payment-gateways/paypal-express.php:499 +#: includes/common/payment-gateways/paypal-express.php:1163 +msgid "PayPal Express Checkout" +msgstr "PayPal Express Checkout" + +#: includes/common/payment-gateways/paypal-chained-payments.php:798 +msgid "Gateway Settings Page Message" +msgstr "Gateway-inställningar Sida meddelande" + +#: includes/common/payment-gateways/paypal-express.php:725 +msgid "Signature" +msgstr "Signature" + +#: includes/common/payment-gateways/eway31.php:506 +#: includes/common/payment-gateways/eway31.php:533 +#: includes/common/shipping-modules/mp-fedex.php:276 +msgid "API Password" +msgstr "API lösenord" + +#: includes/common/payment-gateways/paypal-chained-payments.php:773 +msgid "Enter a percentage of all store sales to collect as a fee. Decimals allowed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:757 +msgid "Using PayPal Chained Payments allows you as the multisite network owner to collect a predefined fee or percentage of all sales on network MarketPress stores! This is invisible to the customers who purchase items in a store, and all PayPal fees will be charged to the store owner. To use this option you must create API credentials, and you should make all other gateways unavailable or limited above." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:338 +msgid "Please be aware that we will deduct a ?% fee from the total of each transaction in addition to any fees PayPal may charge you. If for any reason you need to refund a customer for an order, please contact us with a screenshot of the refund receipt in your PayPal history as well as the Transaction ID of our fee deduction so we can issue you a refund. Thank you!" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:698 +#: includes/common/payment-gateways/paypal-express.php:149 +msgid "There was a problem connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:470 +#: includes/common/payment-gateways/paypal-express.php:1053 +msgid "There was a problem verifying the IPN string with PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:310 +msgid "There was a problem connecting to PayPal to check the status of your purchase. Please check the status of your order here »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:539 +#: includes/common/payment-gateways/paypal-chained-payments.php:254 +#: includes/common/payment-gateways/paypal-express.php:1139 +msgid "The payment is pending." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:251 +#: includes/common/payment-gateways/paypal-chained-payments.php:531 +#: includes/common/payment-gateways/paypal-express.php:862 +#: includes/common/payment-gateways/paypal-express.php:1136 +msgid "The payment is pending for an unknown reason. For more information, contact PayPal customer service." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:250 +#: includes/common/payment-gateways/paypal-chained-payments.php:530 +#: includes/common/payment-gateways/paypal-express.php:861 +#: includes/common/payment-gateways/paypal-express.php:1135 +msgid "The payment is pending because you are not yet verified. You must verify your account before you can accept this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:249 +#: includes/common/payment-gateways/paypal-chained-payments.php:529 +#: includes/common/payment-gateways/paypal-express.php:860 +#: includes/common/payment-gateways/paypal-express.php:1134 +msgid "The payment is pending because it was made via credit card and you must upgrade your account to Business or Premier status in order to receive the funds. It can also mean that you have reached the monthly limit for transactions on your account." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:248 +#: includes/common/payment-gateways/paypal-chained-payments.php:528 +#: includes/common/payment-gateways/paypal-express.php:859 +#: includes/common/payment-gateways/paypal-express.php:1133 +msgid "The payment is pending because it was made to an email address that is not yet registered or confirmed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:247 +#: includes/common/payment-gateways/paypal-chained-payments.php:527 +#: includes/common/payment-gateways/paypal-express.php:858 +#: includes/common/payment-gateways/paypal-express.php:1132 +msgid "The payment is pending while it is being reviewed by PayPal for risk." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:246 +#: includes/common/payment-gateways/paypal-chained-payments.php:526 +#: includes/common/payment-gateways/paypal-express.php:856 +#: includes/common/payment-gateways/paypal-express.php:1130 +msgid "You do not have a balance in the currency sent, and you do not have your Payment Receiving Preferences set to automatically convert and accept this payment. You must manually accept or deny this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:245 +#: includes/common/payment-gateways/paypal-chained-payments.php:525 +#: includes/common/payment-gateways/paypal-express.php:855 +#: includes/common/payment-gateways/paypal-express.php:1129 +msgid "The payment is pending because you hold a non-U.S. account and do not have a withdrawal mechanism. You must manually accept or deny this payment from your Account Overview." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:244 +#: includes/common/payment-gateways/paypal-chained-payments.php:524 +#: includes/common/payment-gateways/paypal-express.php:854 +#: includes/common/payment-gateways/paypal-express.php:1128 +msgid "The payment is pending because it was made by an eCheck that has not yet cleared." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:243 +#: includes/common/payment-gateways/paypal-chained-payments.php:523 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:236 +#: includes/common/payment-gateways/paypal-chained-payments.php:516 +msgid "The transaction was rejected by the receiver (you)." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:510 +#: includes/common/payment-gateways/paypal-express.php:843 +#: includes/common/payment-gateways/paypal-express.php:1115 +msgid "You refunded the payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:224 +#: includes/common/payment-gateways/paypal-chained-payments.php:504 +msgid "The transaction is in progress." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:212 +#: includes/common/payment-gateways/paypal-chained-payments.php:491 +#: includes/common/payment-gateways/paypal-express.php:814 +#: includes/common/payment-gateways/paypal-express.php:1082 +msgid "The payment has been partially refunded." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:202 +#: includes/common/payment-gateways/paypal-chained-payments.php:481 +msgid "PayPal balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:177 +msgid "There was a problem connecting to PayPal to setup your purchase. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:122 +msgid "Your PayPal transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:50 +#: includes/common/payment-gateways/paypal-chained-payments.php:53 +#: includes/common/payment-gateways/paypal-chained-payments.php:732 +#: includes/common/payment-gateways/paypal-express.php:500 +#: includes/common/payment-gateways/paypal-express.php:938 +msgid "PayPal" +msgstr "PayPal" + +#: includes/common/payment-gateways/paypal-chained-payments.php:48 +#: includes/common/payment-gateways/paypal-chained-payments.php:730 +#: includes/common/payment-gateways/paypal-chained-payments.php:756 +#: includes/common/payment-gateways/paypal-chained-payments.php:873 +msgid "PayPal Chained Payments" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:59 +#: includes/common/payment-gateways/paypal-payflow.php:467 +msgid "PayPal Payflow Pro" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:378 +msgid "Chargeback - A payment was reversed due to a chargeback. The funds have been removed from your account balance and returned to the buyer." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:372 +msgid "Failed - The Credit Card or Direct Debit transaction was declined." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:354 +#: includes/common/payment-gateways/skrill.php:366 +msgid "Cancelled - The payment was cancelled manually by the sender in their online account history or was auto-cancelled after 14 days pending." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:360 +msgid "Pending - The payment is pending. It can take 2-3 days for bank transfers to complete." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:349 +#: includes/common/payment-gateways/skrill.php:354 +msgid "Processed - The payment has been completed, and the funds have been added successfully to your Moneybookers account balance." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:189 +msgid "Shown to the customer on the confirmation screen - the end step of the process - a note, confirmation number, or any other message. Line breaks <br> may be used for longer messages." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:188 +msgid "Confirmation Note (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:183 +msgid "The URL of the logo which you would like to appear at the top of the payment form. The logo must be accessible via HTTPS otherwise it will not be shown. For best integration results we recommend that you use a logo with dimensions up to 200px in width and 50px in height." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:182 +msgid "Logo Image (optional)" +msgstr "Logo bild (valfri)" + +#: includes/common/payment-gateways/skrill.php:177 +msgid "The name of this store, which will be shown on the gateway. If no value is submitted, the account email will be shown as the recipient of the payment." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:176 +msgid "Merchant Name (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:165 +msgid "Language" +msgstr "Språk" + +#: includes/common/payment-gateways/2checkout.php:368 +#: includes/common/payment-gateways/authorizenet-aim.php:262 +#: includes/common/payment-gateways/eway.php:363 +#: includes/common/payment-gateways/eway31.php:471 +#: includes/common/payment-gateways/mollie.php:91 +#: includes/common/payment-gateways/paymill.php:193 +#: includes/common/payment-gateways/paypal-chained-payments.php:356 +#: includes/common/payment-gateways/paypal-express.php:688 +#: includes/common/payment-gateways/paypal-payflow.php:432 +#: includes/common/payment-gateways/pin.php:186 +#: includes/common/payment-gateways/skrill.php:152 +#: includes/common/payment-gateways/stripe.php:288 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:104 +msgid "Currency" +msgstr "Valuta" + +#: includes/common/payment-gateways/2checkout.php:359 +#: includes/common/payment-gateways/skrill.php:143 +msgid "Secret Word" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:261 +msgid "Order ID:" +msgstr "Order ID:" + +#: includes/common/payment-gateways/skrill.php:234 +msgid "Complete Checkout" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:204 +msgid "Your Moneybookers transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:155 +msgid "This is the email text to send to those who have made manual payment checkouts. You should include your manual payment instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:257 +#: includes/common/payment-gateways/manual-payments.php:128 +msgid "Record payments manually, such as by Cash, Check, or EFT." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:71 +msgid "Manual/Invoice" +msgstr "Manuell/Faktura" + +#: includes/admin/class-mp-setup-wizard.php:648 +#: includes/common/payment-gateways/manual-payments.php:35 +#: includes/common/payment-gateways/manual-payments.php:36 +msgid "Manual Payment" +msgstr "Manuell betalning" + +#: includes/common/payment-gateways/manual-payments.php:34 +#: includes/common/payment-gateways/manual-payments.php:163 +msgid "Manual Payments" +msgstr "Manuella betalningar" + +#: includes/common/payment-gateways/_ideal.php:288 +msgid "iDEAL Simulator (for testing)" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:287 +msgid "ABN Amro Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:286 +msgid "Friesland Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:285 +msgid "Rabobank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:284 +msgid "ING Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:279 +msgid "Bank" +msgstr "Bank" + +#: includes/common/payment-gateways/_ideal.php:270 +msgid "To make it easier to pay for online products and services, the Dutch banking community has developed the iDEAL online payment method. iDEAL allows online payments to be made using online banking in EUR only." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:247 +#: includes/common/payment-gateways/_payway.php:199 +#: includes/common/payment-gateways/manual-payments.php:68 +msgid "Invoiced" +msgstr "Fakturerad" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1016 +msgid "Coupon" +msgstr "Kupong" + +#: includes/common/payment-gateways/_ideal.php:77 +#: includes/common/payment-gateways/_ideal.php:250 +#: includes/common/payment-gateways/_payway.php:202 +msgid "iDEAL" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:76 +msgid "iDEAL (beta)" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:327 +msgid "Merchant Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:293 +#: includes/common/payment-gateways/_payway.php:302 +#: includes/common/payment-gateways/payfast.php:324 +msgid "Merchant ID" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:462 +msgid "eWay Rapid 3.0 Payments lets merchants recieve credit card payments through eWay without need for users to leave the shop. Note this gateway requires a valid SSL certificate configured for this site." +msgstr "" + +#: includes/common/payment-gateways/eway.php:452 +msgid "There was a problem connecting to eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/eway.php:432 +#: includes/common/payment-gateways/eway.php:437 +msgid "The url of the image can be hosted on your website and pass the secure https:// path of the image to be displayed at the top of the website. This is the second image block on the webpage and is restricted to 960px X 65px. A default secure image is used if none is supplied." +msgstr "" + +#: includes/common/payment-gateways/eway.php:431 +#: includes/common/payment-gateways/eway.php:436 +msgid "Company Logo (optional)" +msgstr "Företagslogo (valfri)" + +#: includes/common/payment-gateways/eway.php:427 +msgid "The page footer text can be customised and populated below the customer's order details. Useful for contact information." +msgstr "" + +#: includes/common/payment-gateways/eway.php:426 +msgid "Page Footer (optional)" +msgstr "Sidfot (valfri)" + +#: includes/common/payment-gateways/eway.php:421 +msgid "Page Description (optional)" +msgstr "Sidbeskrivning (valfri)" + +#: includes/common/payment-gateways/eway.php:417 +#: includes/common/payment-gateways/eway.php:422 +msgid "This value is used to populate the browsers title bar at the top of the screen." +msgstr "" + +#: includes/common/payment-gateways/eway.php:416 +msgid "Page Title (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:412 +msgid "This will be displayed as the company the customer is purchasing from, including this is highly recommended." +msgstr "" + +#: includes/common/payment-gateways/eway.php:411 +msgid "Company Name" +msgstr "Företagsnamn" + +#: includes/common/payment-gateways/eway.php:394 +msgid "Customer ID" +msgstr "Kund ID" + +#: includes/common/payment-gateways/eway.php:381 +#: includes/common/payment-gateways/eway31.php:488 +msgid "Live API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway.php:371 +#: includes/common/payment-gateways/eway31.php:479 +msgid "Gateway Mode" +msgstr "" + +#: includes/common/payment-gateways/eway.php:354 +msgid "The Hosted Page is a webpage hosted on eWAY's side eliminating the need for merchants to capture, transmit or store credit card numbers. At the checkout time the merchant automatically redirects the customer to the Hosted Page where they would enter their details and have the transaction processed. Upon completion of the transaction the customer is redirected back to the MarketPress checkout confirmation page." +msgstr "" + +#: includes/common/payment-gateways/eway.php:314 +msgid "There was a problem with your credit card information: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:300 +msgid "Paid - The card has been processed - %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:253 +msgid "There was a problem setting up the transaction with eWay: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:245 +#: includes/common/payment-gateways/eway.php:289 +msgid "There was a problem parsing the response from eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:159 +#: includes/common/payment-gateways/eway.php:189 +#: includes/common/payment-gateways/paypal-chained-payments.php:634 +#: includes/common/payment-gateways/paypal-express.php:322 +#: includes/common/payment-gateways/paypal-express.php:473 +msgid "%s Store Purchase - Order ID: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:147 +#: includes/common/payment-gateways/eway.php:462 +msgid "eWay Shared Payments" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:214 +msgid "This is the email text to send to those who have made CubePoints checkouts. You should include your CubePoints instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:212 +#: includes/common/payment-gateways/free_orders.php:188 +#: includes/common/payment-gateways/manual-payments.php:154 +msgid "Order Confirmation Email" +msgstr "E-mail för orderbekräftelse" + +#: includes/common/payment-gateways/_cubepoints.php:207 +#: includes/common/payment-gateways/manual-payments.php:149 +msgid "Confirmation User Instructions" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:202 +#: includes/common/payment-gateways/manual-payments.php:144 +msgid "User Instructions" +msgstr "Användarinstruktioner" + +#: includes/common/payment-gateways/_cubepoints.php:198 +#: includes/common/payment-gateways/free_orders.php:170 +#: includes/common/payment-gateways/manual-payments.php:139 +msgid "Enter a public name for this payment method that is displayed to users - No HTML" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:532 +#: includes/common/payment-gateways/_cubepoints.php:196 +#: includes/common/payment-gateways/free_orders.php:169 +#: includes/common/payment-gateways/manual-payments.php:138 +msgid "Method Name" +msgstr "Metodnamn" + +#: includes/common/payment-gateways/_cubepoints.php:187 +msgid "Accept CubePoints as payment(requires the CubePoints plugin)." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:140 +msgid "Sorry, but you do not appear to have enough points to complete this purchase!" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:124 +msgid "%s Store Purchase" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:79 +#: includes/common/payment-gateways/_cubepoints.php:171 +msgid "Your current points: " +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:133 +#: includes/common/payment-gateways/_cubepoints.php:197 +msgid "CubePoints" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:344 +msgid "Authorize.net AIM Checkout" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:331 +msgid "Custom API URL" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:332 +msgid "Many other gateways have Authorize.net API emulators. To use one of these gateways input their API post url here." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:322 +msgid "Request a delimited response from the payment gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:316 +msgid "Security: MD5 Hash" +msgstr "Säkerhet: MD5 Hash" + +#: includes/common/payment-gateways/authorizenet-aim.php:317 +msgid "The payment gateway generated MD5 hash value that can be used to authenticate the transaction response. Not needed because responses are returned using an SSL connection." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:306 +msgid "Customer Receipt Email Footer" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:296 +msgid "Customer Receipt Email Header" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:297 +#: includes/common/payment-gateways/paypal-payflow.php:446 +msgid "This text will appear as the header of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:282 +msgid "Encapsulation Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:283 +msgid "Authorize.net default is blank. Otherwise, get this from your credit card processor. If the transactions are going through, but getting strange responses, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:273 +msgid "Optional settings to control advanced options" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:224 +#: includes/common/payment-gateways/authorizenet-aim.php:272 +msgid "Advanced Settings" +msgstr "Avancerade inställningar" + +#: includes/common/payment-gateways/authorizenet-aim.php:253 +msgid "Transaction Key" +msgstr "Transaktionsnyckel" + +#: includes/common/payment-gateways/authorizenet-aim.php:246 +msgid "Login ID" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:396 +msgid "Gateway Credentials" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:221 +msgid "Authorize.net AIM is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway. USD is the only currency supported by this gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:205 +msgid "There was a problem finalizing your purchase. %s Please go back and try again." +msgstr "Det uppstod ett problem att slutföra köpet. %s Vänligen gå tillbaka och försök igen." + +#: includes/common/payment-gateways/payfast.php:519 +#: includes/common/payment-gateways/paypal-chained-payments.php:218 +#: includes/common/payment-gateways/paypal-chained-payments.php:498 +#: includes/common/payment-gateways/paypal-express.php:822 +#: includes/common/payment-gateways/paypal-express.php:1092 +msgid "The payment has been completed, and the funds have been added successfully to your account balance." +msgstr "Betalningen är genomförd och pengarna har lagts till på ditt konto." + +#: includes/common/payment-gateways/paypal-payflow.php:233 +msgid "Please enter a valid credit card security code" +msgstr "Ange en giltigt säkerhets kod för ditt kreditkort" + +#: includes/common/payment-gateways/paypal-payflow.php:224 +#: includes/public/class-mp-checkout.php:867 +msgid "Please enter a valid credit card number" +msgstr "Ange ett giltigt kreditkortsnummer" + +#: includes/common/payment-gateways/paypal-payflow.php:221 +msgid "Please enter your credit card number" +msgstr "Ange ditt kreditkortsnummer" + +#: includes/common/payment-gateways/paypal-payflow.php:217 +msgid "Please enter your credit card security code" +msgstr "Ange säkerhets kod för ditt kreditkort" + +#: includes/common/payment-gateways/paypal-payflow.php:213 +msgid "Please select your credit card expiration date." +msgstr "Ange utgångsdatum för ditt kreditkort." + +#: includes/common/payment-gateways/2checkout.php:299 +#: includes/common/payment-gateways/authorizenet-aim.php:50 +#: includes/common/payment-gateways/eway.php:148 +#: includes/common/payment-gateways/eway.php:298 +#: includes/common/payment-gateways/eway31.php:267 +#: includes/common/payment-gateways/paymill.php:46 +#: includes/common/payment-gateways/paypal-express.php:972 +#: includes/common/payment-gateways/paypal-payflow.php:60 +#: includes/common/payment-gateways/pin.php:46 +#: includes/common/payment-gateways/simplify.php:19 +#: includes/common/payment-gateways/stripe.php:46 +#: includes/common/payment-gateways/wepay.php:37 +msgid "Credit Card" +msgstr "Kreditkort" + +#: includes/common/payment-gateways/authorizenet-aim.php:49 +msgid "Authorize.net Checkout" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:156 +#: includes/common/payment-gateways/stripe.php:293 +msgid "Selecting a currency other than that used for your store may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:352 +msgid "Seller ID" +msgstr "Säljar ID" + +#: includes/common/payment-gateways/2checkout.php:340 +#: includes/common/payment-gateways/_ideal.php:311 +#: includes/common/payment-gateways/authorizenet-aim.php:234 +#: includes/common/payment-gateways/eway.php:376 +#: includes/common/payment-gateways/payfast.php:315 +#: includes/common/payment-gateways/paypal-chained-payments.php:368 +#: includes/common/payment-gateways/paypal-express.php:699 +#: includes/common/payment-gateways/paypal-payflow.php:391 +msgid "Live" +msgstr "Aktiv" + +#: includes/common/payment-gateways/2checkout.php:339 +#: includes/common/payment-gateways/authorizenet-aim.php:233 +#: includes/common/payment-gateways/eway.php:375 +#: includes/common/payment-gateways/paypal-chained-payments.php:367 +#: includes/common/payment-gateways/paypal-express.php:698 +#: includes/common/payment-gateways/paypal-payflow.php:390 +#: includes/common/shipping-modules/mp-fedex.php:263 +msgid "Sandbox" +msgstr "Sandbox" + +#: includes/common/payment-gateways/2checkout.php:336 +#: includes/common/payment-gateways/_ideal.php:307 +#: includes/common/payment-gateways/authorizenet-aim.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:365 +#: includes/common/payment-gateways/paypal-express.php:695 +#: includes/common/payment-gateways/paypal-payflow.php:387 +#: includes/common/payment-gateways/wepay.php:130 +#: includes/common/shipping-modules/mp-fedex.php:260 +msgid "Mode" +msgstr "Läge" + +#: includes/common/payment-gateways/2checkout.php:288 +#: includes/common/payment-gateways/mijireh.php:242 +#: includes/common/payment-gateways/mollie.php:212 +msgid "The order has been received" +msgstr "Din beställning är mottagen" + +#: includes/common/payment-gateways/2checkout.php:74 +#: includes/common/payment-gateways/2checkout.php:75 +#: includes/common/payment-gateways/2checkout.php:435 +msgid "2Checkout" +msgstr "2Checkout" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:306 +msgid "Confirm" +msgstr "Bekräfta" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:218 +#: includes/common/class-mp-cart.php:974 includes/common/class-mp-cart.php:1354 +#: includes/common/template-functions.php:918 +msgid "Checkout" +msgstr "kassan" + +#: includes/common/template-functions.php:207 +msgid "Check Order Status" +msgstr "Kontrollera orderstatus" + +#: includes/common/template-functions.php:235 +msgid "View Products" +msgstr "Visa produkter" + +#: includes/common/template-functions.php:263 +msgid "Visit Store" +msgstr "Besök Butik" + +#: includes/common/template-functions.php:2912 +#: includes/multisite/template-functions.php:448 +msgid "Order By" +msgstr "Sortera Efter" + +#: includes/common/template-functions.php:2887 +#: includes/multisite/template-functions.php:405 +msgid "Price (High to Low)" +msgstr "Pris (högt till lågt)" + +#: includes/common/template-functions.php:2886 +#: includes/multisite/template-functions.php:404 +msgid "Price (Low to High)" +msgstr "Pris (lågt till högt)" + +#: includes/common/template-functions.php:2881 +#: includes/multisite/template-functions.php:399 +msgid "Default" +msgstr "Standard" + +#: includes/common/template-functions.php:2858 +msgid "Show All" +msgstr "Visa alla" + +#: includes/common/class-mp-product.php:2048 +msgid "View Larger Image »" +msgstr "Visa större bild »" + +#: includes/common/class-mp-product.php:979 +msgid "Out of Stock" +msgstr "Utsåld" + +#: includes/common/template-functions.php:148 +msgid "Price: " +msgstr "Pris:" + +#: includes/multisite/template-functions.php:833 +msgid "No Tags" +msgstr "Ingen Etikett" + +#: includes/common/template-functions.php:3162 +msgid "Uncategorized" +msgstr "Okategoriserade" + +#: includes/common/class-mp-cart.php:569 includes/common/class-mp-order.php:604 +#: includes/common/helpers.php:115 +msgid "Download" +msgstr "Ladda ner" + +#: includes/common/class-mp-cart.php:1353 +msgid "Empty Cart" +msgstr "Töm kundvagn" + +#: includes/common/payment-gateways/_payway.php:291 +#: includes/common/payment-gateways/paypal-express.php:718 +#: includes/common/payment-gateways/paypal-payflow.php:423 +#: includes/common/shipping-modules/mp-ups.php:158 +#: includes/public/class-mp-checkout.php:1254 +#: includes/public/class-mp-checkout.php:1383 +msgid "Password" +msgstr "Lösenord" + +#: includes/common/payment-gateways/eway.php:387 +#: includes/common/payment-gateways/paypal-express.php:711 +#: includes/common/shipping-modules/mp-usps.php:185 +#: includes/public/class-mp-checkout.php:1249 +msgid "Username" +msgstr "Användarnamn" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:437 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:790 +msgid "Have a coupon code?" +msgstr "Har du en rabattkod?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:321 +#: includes/admin/class-mp-orders-admin.php:526 +#: includes/common/class-mp-cart.php:592 +msgid "Remove" +msgstr "Ta bort" + +#: includes/admin/class-mp-ajax.php:316 +msgid "Quantity:" +msgstr "Antal:" + +#: includes/admin/class-mp-products-admin.php:2140 +#: includes/admin/class-mp-products-admin.php:2387 +#: includes/common/shipping-modules/class-mp-shipping-api.php:507 +msgid "Extra Shipping Cost" +msgstr "Extra fraktkostnader" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:403 +msgid "Choose a Shipping Method:" +msgstr "Välj en leveransmetod:" + +#: includes/admin/class-mp-products-admin.php:1691 +#: includes/admin/class-mp-products-admin.php:2131 +#: includes/admin/class-mp-products-admin.php:2378 +#: includes/common/shipping-modules/class-mp-shipping-api.php:228 +msgid "Ounces" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1684 +#: includes/admin/class-mp-products-admin.php:2123 +#: includes/admin/class-mp-products-admin.php:2369 +#: includes/admin/class-mp-setup-wizard.php:546 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:165 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +#: includes/common/shipping-modules/class-mp-shipping-api.php:227 +msgid "Pounds" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:226 +msgid "Product Weight:" +msgstr "Produktvikt:" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:214 +msgid "Weight (Kilograms)" +msgstr "Vikt (kg)" + +#: includes/admin/widgets/ms-global-categories.php:82 +msgid "Number of Categories:" +msgstr "Antal kategorier:" + +#: includes/admin/widgets/ms-global-categories.php:72 +msgid "Product Count" +msgstr "Produkt Antal" + +#: includes/addons/class-mp-addons-list-table.php:20 +#: includes/admin/class-mp-product-attributes-admin.php:129 +#: includes/admin/class-mp-product-attributes-list-table.php:22 +#: includes/admin/class-mp-products-admin.php:2216 +#: includes/admin/class-mp-shortcode-builder.php:628 +#: includes/admin/class-mp-shortcode-builder.php:1415 +#: includes/admin/widgets/ms-global-categories.php:70 +#: includes/common/shipping-modules/mp-fedex.php:395 +#: includes/common/shipping-modules/mp-ups.php:202 +#: includes/common/shipping-modules/mp-usps.php:243 +#: includes/public/class-mp-checkout.php:314 +msgid "Name" +msgstr "Namn" + +#: includes/admin/widgets/ms-global-categories.php:67 +msgid "Order Categories By:" +msgstr "Sortera kategorier efter:" + +#: includes/admin/widgets/ms-global-categories.php:24 +#: includes/admin/widgets/ms-global-categories.php:50 +msgid "Global Product Categories" +msgstr "Globala produktkategorier" + +#: includes/admin/widgets/ms-global-categories.php:15 +msgid "Global Product Category List" +msgstr "Global produktkategorilista" + +#: includes/admin/widgets/ms-global-categories.php:13 +msgid "Displays a network-wide HTML list of product categories from network MarketPress stores." +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:24 +#: includes/admin/widgets/ms-global-tag-cloud.php:45 +msgid "Global Product Tags" +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:15 +msgid "Global Product Tag Cloud" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:947 +#: includes/admin/widgets/ms-global-product-list.php:173 +msgid "Excerpt" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:169 +msgid "Content To Show:" +msgstr "Innehåll att visa:" + +#: includes/admin/widgets/ms-global-product-list.php:140 +msgid "Limit To Product Tag:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:132 +msgid "Limit To Product Category:" +msgstr "Begränsa till produktkategori:" + +#: includes/admin/widgets/ms-global-product-list.php:72 +msgid "Global Products" +msgstr "Globala produkter" + +#: includes/admin/widgets/ms-global-product-list.php:16 +msgid "Global Product List" +msgstr "Global produktlista" + +#: includes/admin/widgets/ms-global-product-list.php:14 +msgid "Shows a customizable global list of products from network MarketPress stores." +msgstr "" + +#: includes/common/class-mp-product.php:974 +#: includes/multisite/template-functions.php:731 +msgid "Buy Now »" +msgstr "Köp nu »" + +#: includes/admin/widgets/ms-global-tag-cloud.php:13 +msgid "Displays global most used product tags in cloud format from network MarketPress stores." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:438 +msgid "Theme Permissions" +msgstr "Tema Behörigheter" + +#: includes/multisite/class-mp-admin-multisite.php:402 +#: includes/multisite/class-mp-admin-multisite.php:448 +msgid "No Access" +msgstr "Ingen åtkomst" + +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:120 +msgid "Pro Site Level" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:401 +#: includes/multisite/class-mp-admin-multisite.php:447 +msgid "All Can Use" +msgstr "Alla kan använda" + +#: includes/multisite/class-mp-admin-multisite.php:390 +msgid "Gateway Permissions" +msgstr "Gateway Behörigheter" + +#: includes/multisite/class-mp-admin-multisite.php:375 +msgid "Select a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:350 +msgid "Global Gateway" +msgstr "" + +#. Plugin Name of the plugin/theme +msgid "MarketPress" +msgstr "MarketPress" + +#: includes/admin/widgets/product-tag-cloud.php:7 +msgid "Your most used product tags in cloud format from your MarketPress store." +msgstr "Dina mest använda produkt etiketter i moln format från din webbutik." + +#: includes/admin/widgets/categories.php:79 +msgid "Show hierarchy" +msgstr "Visa hierarki" + +#: includes/admin/widgets/categories.php:76 +#: includes/admin/widgets/ms-global-categories.php:92 +msgid "Show product counts" +msgstr "Visa produkt antal" + +#: includes/admin/widgets/categories.php:73 +msgid "Show as dropdown" +msgstr "Visa som dropdown" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:710 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:736 +#: includes/admin/widgets/categories.php:30 +msgid "Select Category" +msgstr "Välj kategori" + +#: includes/admin/widgets/categories.php:7 +msgid "A list or dropdown of product categories from your MarketPress store." +msgstr "En lista eller dropdown över produktkategorier från din webbutik." + +#: includes/admin/widgets/product-list.php:250 +msgid "Show Buy Button" +msgstr "Visa Köp knappen" + +#: includes/admin/widgets/ms-global-product-list.php:183 +#: includes/admin/widgets/product-list.php:244 +msgid "Show Price" +msgstr "Visa pris" + +#: includes/admin/widgets/product-list.php:241 +msgid "Show Excerpt" +msgstr "Visa Utdrag" + +#: includes/admin/widgets/ms-global-product-list.php:155 +#: includes/admin/widgets/product-list.php:238 +msgid "Thumbnail Size:" +msgstr "Thumbnail Storlek:" + +#: includes/admin/widgets/ms-global-product-list.php:153 +#: includes/admin/widgets/product-list.php:237 +msgid "Show Thumbnail" +msgstr "Visa Thumbnail" + +#: includes/admin/widgets/ms-global-product-list.php:147 +#: includes/admin/widgets/product-list.php:233 +msgid "Display Settings" +msgstr "visa inställningar" + +#: includes/admin/widgets/ms-global-product-list.php:136 +#: includes/admin/widgets/ms-global-product-list.php:144 +#: includes/admin/widgets/product-list.php:230 +msgid "Enter the Slug" +msgstr "Ange Slug" + +#: includes/admin/widgets/product-list.php:228 +#: includes/common/template-functions.php:894 +msgid "Tag" +msgstr "Etikett" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:686 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:712 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:739 +#: includes/admin/class-mp-shortcode-builder.php:796 +#: includes/admin/widgets/product-list.php:227 +#: includes/common/template-functions.php:886 +#: includes/common/template-functions.php:2907 +msgid "Category" +msgstr "Kategori" + +#: includes/admin/widgets/product-list.php:226 +msgid "No Filter" +msgstr "Utan filter" + +#: includes/admin/widgets/product-list.php:224 +msgid "Taxonomy Filter:" +msgstr "Taxonomi Filter:" + +#: includes/admin/widgets/ms-global-product-list.php:108 +#: includes/admin/widgets/product-list.php:209 +msgid "Order Products By:" +msgstr "Ordna produkter genom" + +#: includes/admin/widgets/ms-global-product-list.php:101 +#: includes/admin/widgets/product-list.php:206 +msgid "Number of Products:" +msgstr "Antal produkter:" + +#: includes/admin/widgets/ms-global-product-list.php:98 +#: includes/admin/widgets/product-list.php:204 +msgid "List Settings" +msgstr "Inställningar för lista" + +#: includes/admin/widgets/product-list.php:177 +msgid "Our Products" +msgstr "Våra produkter" + +#: includes/admin/widgets/product-list.php:144 +#: includes/common/template-functions.php:2070 +#: includes/common/template-functions.php:2347 +#: includes/multisite/template-functions.php:303 +#: includes/multisite/template-functions.php:623 +msgid "No Products" +msgstr "Inga produkter" + +#: includes/admin/widgets/product-list.php:8 +msgid "Product List" +msgstr "Produktlista" + +#: includes/admin/widgets/product-list.php:7 +msgid "Shows a customizable list of products from your MarketPress store." +msgstr "Visar en anpassningsbar lista av produkter från din webbbutik." + +#: includes/admin/widgets/cart.php:75 includes/admin/widgets/categories.php:82 +#: includes/admin/widgets/product-list.php:253 +#: includes/admin/widgets/product-tag-cloud.php:57 +msgid "Only show on store pages" +msgstr "" + +#: includes/admin/widgets/cart.php:65 +#: includes/admin/widgets/ms-global-product-list.php:92 +#: includes/admin/widgets/product-list.php:200 +msgid "Custom Text:" +msgstr "Egen text:" + +#: includes/admin/widgets/cart.php:64 includes/admin/widgets/categories.php:69 +#: includes/admin/widgets/ms-global-categories.php:59 +#: includes/admin/widgets/ms-global-product-list.php:87 +#: includes/admin/widgets/ms-global-tag-cloud.php:49 +#: includes/admin/widgets/product-list.php:199 +#: includes/admin/widgets/product-tag-cloud.php:49 +msgid "Title:" +msgstr "Titel:" + +#: includes/admin/widgets/cart.php:7 +msgid "Shows dynamic shopping cart contents along with a checkout button for your MarketPress store." +msgstr "Visar dynamiska innehållet varukorgen tillsammans med en Checkout-knapp för din webbbutik." + +#: includes/admin/widgets/product-tag-cloud.php:8 +msgid "Product Tag Cloud" +msgstr "Produkt-taggs cloud" + +#: includes/admin/class-mp-setup-wizard.php:539 +#: includes/admin/class-mp-setup-wizard.php:575 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:163 +msgid "Measurement System" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:616 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:149 +msgid "Select Shipping Options" +msgstr "Välj fraktsätt" + +#: includes/admin/class-mp-setup-wizard.php:596 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:129 +msgid "Calculated Options" +msgstr "Beräknade alternativ" + +#: includes/admin/class-mp-setup-wizard.php:582 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:115 +msgid "No Shipping" +msgstr "Ingen frakt" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:110 +msgid "EU" +msgstr "EU" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:109 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:93 +msgid "All" +msgstr "Alla" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:92 +msgid "Select:" +msgstr "Välj:" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:185 +msgid "Store Pages" +msgstr "Butikssidor" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:223 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:256 +msgid "Order Shipped" +msgstr "Beställningen har levererats" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:60 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:95 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:128 +#: marketpress.php:266 +msgid "New Order" +msgstr "Ny order" + +#: includes/admin/class-mp-dashboard-widgets.php:314 +msgid "Email Notifications" +msgstr "E-postmeddelanden" + +#: includes/admin/class-mp-pages-admin.php:59 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:200 +msgid "Products List" +msgstr "Produktlista" + +#: includes/admin/class-mp-pages-admin.php:58 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:190 +msgid "Store Base" +msgstr "Butiksbas" + +#: includes/admin/class-mp-product-attributes-admin.php:108 +#: includes/admin/class-mp-shortcode-builder.php:635 +#: includes/admin/class-mp-shortcode-builder.php:708 +#: includes/admin/class-mp-shortcode-builder.php:875 +#: includes/admin/class-mp-shortcode-builder.php:1319 +#: includes/admin/class-mp-shortcode-builder.php:1422 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:526 +#: includes/admin/widgets/ms-global-categories.php:78 +#: includes/admin/widgets/ms-global-product-list.php:127 +#: includes/admin/widgets/product-list.php:221 +msgid "Ascending" +msgstr "Stigande" + +#: includes/admin/class-mp-product-attributes-admin.php:109 +#: includes/admin/class-mp-shortcode-builder.php:636 +#: includes/admin/class-mp-shortcode-builder.php:709 +#: includes/admin/class-mp-shortcode-builder.php:876 +#: includes/admin/class-mp-shortcode-builder.php:1320 +#: includes/admin/class-mp-shortcode-builder.php:1423 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:525 +#: includes/admin/widgets/ms-global-categories.php:75 +#: includes/admin/widgets/ms-global-product-list.php:124 +#: includes/admin/widgets/product-list.php:220 +msgid "Descending" +msgstr "Fallande" + +#: includes/admin/class-mp-shortcode-builder.php:637 +#: includes/admin/class-mp-shortcode-builder.php:695 +#: includes/admin/class-mp-shortcode-builder.php:862 +#: includes/admin/class-mp-shortcode-builder.php:1306 +#: includes/admin/class-mp-shortcode-builder.php:1424 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:518 +#: includes/admin/widgets/ms-global-product-list.php:121 +#: includes/admin/widgets/product-list.php:218 +msgid "Random" +msgstr "# SLUMPMÄSSIG" + +#: includes/admin/class-mp-shortcode-builder.php:694 +#: includes/admin/class-mp-shortcode-builder.php:861 +#: includes/admin/class-mp-shortcode-builder.php:1305 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:517 +#: includes/admin/widgets/ms-global-product-list.php:119 +#: includes/admin/widgets/product-list.php:216 +msgid "Product Price" +msgstr "Produktpris" + +#: includes/admin/class-mp-shortcode-builder.php:693 +#: includes/admin/class-mp-shortcode-builder.php:860 +#: includes/admin/class-mp-shortcode-builder.php:1304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:516 +#: includes/admin/widgets/ms-global-product-list.php:117 +#: includes/admin/widgets/product-list.php:215 +msgid "Number of Sales" +msgstr "Antal sålda" + +#: includes/admin/class-mp-shortcode-builder.php:692 +#: includes/admin/class-mp-shortcode-builder.php:859 +#: includes/admin/class-mp-shortcode-builder.php:1303 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:515 +#: includes/admin/widgets/product-list.php:214 +msgid "Product Author" +msgstr "Produktförfattare" + +#: includes/admin/class-mp-shortcode-builder.php:691 +#: includes/admin/class-mp-shortcode-builder.php:858 +#: includes/admin/class-mp-shortcode-builder.php:1302 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:514 +#: includes/admin/widgets/product-list.php:213 +msgid "Product ID" +msgstr "Produkt ID" + +#: includes/admin/class-mp-shortcode-builder.php:690 +#: includes/admin/class-mp-shortcode-builder.php:857 +#: includes/admin/class-mp-shortcode-builder.php:1301 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:513 +#: includes/admin/widgets/ms-global-product-list.php:113 +#: includes/admin/widgets/product-list.php:212 +msgid "Publish Date" +msgstr "Publiceringsdatum" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:430 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:726 +msgid "Width" +msgstr "Bredd" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:439 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:735 +msgid "Height" +msgstr "Höjd" + +#: includes/admin/class-mp-product-attributes-admin.php:88 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:402 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:698 +msgid "Custom" +msgstr "Anpassad" + +#: includes/common/class-mp-product.php:179 +#: includes/common/class-mp-product.php:992 +#: includes/common/class-mp-product.php:1000 +#: includes/multisite/template-functions.php:579 +msgid "Buy Now" +msgstr "Köp nu" + +#: includes/common/class-mp-product.php:175 +#: includes/common/class-mp-product.php:990 +#: includes/common/class-mp-product.php:998 +msgid "Add To Cart" +msgstr "Lägg till i kundvagn" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:807 +msgid "Store Style" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1021 +msgid "Edit Coupon" +msgstr "Redigera kupong" + +#: includes/addons/mp-coupons/class-mp-coupon.php:580 +#: includes/admin/class-mp-ajax.php:238 +#: includes/admin/class-mp-products-admin.php:1532 +msgid "Unlimited" +msgstr "Obegränsat" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1198 +msgid "Remaining Uses" +msgstr "Återstående användningsområdena" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1197 +msgid "Used" +msgstr "Begagnade" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:752 +#: includes/admin/class-mp-products-admin.php:2343 +msgid "Start Date" +msgstr "Startdatum" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:598 +msgid "Coupon Code" +msgstr "Kupongkod" + +#: includes/admin/class-mp-orders-admin.php:444 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:284 +msgid "Save Changes" +msgstr "Spara ändringar" + +#: includes/admin/class-mp-pages-admin.php:57 +#: includes/admin/class-mp-shortcode-builder.php:716 +#: includes/admin/class-mp-shortcode-builder.php:727 +#: includes/admin/class-mp-shortcode-builder.php:883 +#: includes/admin/class-mp-shortcode-builder.php:894 +#: includes/admin/class-mp-shortcode-builder.php:946 +#: includes/admin/class-mp-shortcode-builder.php:956 +#: includes/admin/class-mp-shortcode-builder.php:1006 +#: includes/admin/class-mp-shortcode-builder.php:1327 +#: includes/admin/class-mp-shortcode-builder.php:1338 +#: includes/admin/store-settings/class-mp-store-settings-general.php:357 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:270 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:108 +#: includes/admin/widgets/ms-global-product-list.php:172 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:94 +msgid "None" +msgstr "Inga" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:352 +msgid "Google Analytics Ecommerce Tracking" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:310 +msgid "This option turns MarketPress into more of a product listing plugin, disabling shopping carts, checkout, and order management. This is useful if you simply want to list items you can buy in a store somewhere else, optionally linking the \"Buy Now\" buttons to an external site. Some examples are a car dealership, or linking to songs/albums in itunes, or linking to products on another site with your own affiliate links." +msgstr "Detta alternativ gör att webbshoppen får mera en funktion av en produktlista, förhindrande kundvagn, utcheckning och orderhantering. Den är användbar när du endast vill lista produkter som du kan köpa i någon annan butik, med möjlighet att lägga till en länkad \"Köp nu\" knapp till en extern sida. T ex bilhandlare, itunes eller till andra sidor som du har delat affiliate-länkar med. " + +#: includes/admin/store-settings/class-mp-store-settings-general.php:304 +msgid "Whether or not customers must be registered and logged in to checkout. (Not recommended: Enabling this can lower conversions)" +msgstr "Om en kund måste vara registrerad och inloggad för att checka ut (Inte recommenderad: aktivering av detta kan minska försäljningen)" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:258 +msgid "How many times may a customer download a file they have purchased? (It's best to set this higher than one in case they have any problems downloading)" +msgstr "Hur många gånger får en kund ladda ner den fil de köpt? (Bäst är att sätta denna högre än 1 i fall problem med nedladdningen uppstår)" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:257 +msgid "Maximum Downloads" +msgstr "Maximala nedladdningar" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:298 +msgid "This will set the product to draft if inventory of all variations is gone." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:288 +msgid "At what low stock count do you want to be warned for products you have enabled inventory tracking for?" +msgstr "Vid vilken lägsta lagernivå vill du få en varning för produkter på du har aktiverat spårning av inventering för?" + +#: includes/admin/class-mp-dashboard-widgets.php:208 +#: includes/admin/store-settings/class-mp-store-settings-general.php:287 +msgid "Inventory Warning Threshold" +msgstr "Varningsnivå inventering" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:282 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:542 +msgid "Miscellaneous Settings" +msgstr "Övriga inställningar" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:429 +#: includes/multisite/class-mp-admin-multisite.php:247 +msgid "Show Decimal in Prices" +msgstr "Visa decimaler i priser" + +#: includes/admin/class-mp-setup-wizard.php:451 +#: includes/admin/store-settings/class-mp-store-settings-general.php:403 +#: includes/multisite/class-mp-admin-multisite.php:221 +msgid "Currency Symbol Position" +msgstr "Position för valutasymbol" + +#: includes/admin/class-mp-setup-wizard.php:444 +#: includes/admin/store-settings/class-mp-store-settings-general.php:396 +msgid "Store Currency" +msgstr "Butiksvaluta" + +#: includes/admin/class-mp-setup-wizard.php:429 +#: includes/admin/store-settings/class-mp-store-settings-general.php:381 +msgid "Currency Settings" +msgstr "Valutainställningar" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:516 +msgid "Please see your local tax laws. Note if this is enabled and a downloadable only cart, rates will be the default for your base location." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:529 +msgid "Apply Tax to Downloadable Products?" +msgstr "Applicera skatt till nedladdningsbara produkter?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:498 +msgid "Enabling this option allows you to enter and show all prices inclusive of tax, while still listing the tax total as a line item in shopping carts. Please see your local tax laws." +msgstr "Aktiverat tillåter det här alternativet dig att skriva in och visa alla priser inklusive moms,men ändå visa en notering med skatt totalt som en post i kundvagnen. Se dina lokala skatteregler." + +#: includes/admin/class-mp-setup-wizard.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:497 +msgid "Enter Prices Inclusive of Tax?" +msgstr "Ange priser inklusive moms?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:492 +msgid "Please see your local tax laws. Most areas charge tax on shipping fees." +msgstr "Se dina lokala skattelagar. De flesta områdena beskattar fraktkostnaden." + +#: includes/admin/class-mp-setup-wizard.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:491 +msgid "Apply Tax To Shipping Fees?" +msgstr "Lägg till moms för frakten?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:674 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:565 +#: includes/common/payment-gateways/authorizenet-aim.php:291 +#: includes/common/payment-gateways/authorizenet-aim.php:326 +#: includes/common/payment-gateways/payfast.php:347 +msgid "No" +msgstr "Nej" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:675 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:759 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:512 +#: includes/admin/class-mp-setup-wizard.php:518 +#: includes/admin/class-mp-setup-wizard.php:524 +#: includes/admin/class-mp-setup-wizard.php:530 +#: includes/admin/class-mp-setup-wizard.php:564 +#: includes/admin/store-settings/class-mp-store-settings-general.php:232 +#: includes/admin/store-settings/class-mp-store-settings-general.php:299 +#: includes/admin/store-settings/class-mp-store-settings-general.php:305 +#: includes/admin/store-settings/class-mp-store-settings-general.php:311 +#: includes/admin/store-settings/class-mp-store-settings-general.php:317 +#: includes/admin/store-settings/class-mp-store-settings-general.php:328 +#: includes/admin/store-settings/class-mp-store-settings-general.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:341 +#: includes/admin/store-settings/class-mp-store-settings-general.php:348 +#: includes/admin/store-settings/class-mp-store-settings-general.php:367 +#: includes/admin/store-settings/class-mp-store-settings-general.php:493 +#: includes/admin/store-settings/class-mp-store-settings-general.php:499 +#: includes/admin/store-settings/class-mp-store-settings-general.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:556 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:375 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:381 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:387 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:474 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:493 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:532 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:574 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:606 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:664 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:670 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:677 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:683 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:689 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:763 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:774 +#: includes/common/payment-gateways/_bitpay.php:250 +#: includes/common/payment-gateways/_bitpay.php:257 +#: includes/common/payment-gateways/_bitpay.php:264 +#: includes/common/payment-gateways/authorizenet-aim.php:290 +#: includes/common/payment-gateways/authorizenet-aim.php:325 +#: includes/common/payment-gateways/free_orders.php:160 +#: includes/common/payment-gateways/payfast.php:346 +#: includes/common/payment-gateways/paymill.php:162 +#: includes/common/payment-gateways/paypal-payflow.php:441 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-checkbox.php:22 +msgid "Yes" +msgstr "Ja" + +#: includes/admin/class-mp-setup-wizard.php:492 +#: includes/admin/store-settings/class-mp-store-settings-general.php:472 +msgid "%s Tax Rate" +msgstr "% s skattesats" + +#: includes/admin/class-mp-setup-wizard.php:467 +#: includes/admin/store-settings/class-mp-store-settings-general.php:449 +msgid "Tax Settings" +msgstr "Skatteinställningar" + +#: includes/admin/class-mp-setup-wizard.php:370 +#: includes/admin/store-settings/class-mp-store-settings-general.php:624 +msgid "Base Zip/Postal Code" +msgstr "Primärt postnummer" + +#: includes/admin/class-mp-setup-wizard.php:354 +#: includes/admin/store-settings/class-mp-store-settings-general.php:608 +msgid "Base State/Province/Region" +msgstr "Primära stat / provins / region" + +#: includes/admin/class-mp-setup-wizard.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:589 +msgid "Base Country" +msgstr "Primärt land" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:582 +msgid "Location Settings" +msgstr "Platsinställningar" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:195 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:800 +#: includes/multisite/class-mp-admin-multisite.php:172 +msgid "General Settings" +msgstr "Allmänna inställningar" + +#: includes/admin/class-mp-products-admin.php:1945 +#: includes/admin/class-mp-products-admin.php:2185 +#: includes/admin/class-mp-store-settings-admin.php:111 +#: includes/admin/class-mp-store-settings-admin.php:266 +msgid "General" +msgstr "Allmänt" + +#: includes/admin/class-mp-store-settings-admin.php:242 +msgid "Importers" +msgstr "Importerare" + +#: includes/admin/class-mp-store-settings-admin.php:115 +#: includes/admin/class-mp-store-settings-admin.php:234 +msgid "Payments" +msgstr "Betalningar" + +#: includes/admin/class-mp-dashboard-widgets.php:313 +#: includes/admin/class-mp-store-settings-admin.php:112 +#: includes/admin/class-mp-store-settings-admin.php:222 +msgid "Presentation" +msgstr "Presentation" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:916 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1015 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1018 +#: includes/admin/class-mp-dashboard-widgets.php:305 marketpress.php:702 +msgid "Coupons" +msgstr "Kuponger" + +#: includes/admin/class-mp-admin.php:251 +msgid "Download »" +msgstr "Ladda ner »" + +#: includes/admin/class-mp-admin.php:245 +#: includes/admin/class-mp-exporter-orders.php:170 +msgid "All Statuses" +msgstr "Status på allt" + +#: includes/admin/class-mp-admin.php:209 +#: includes/admin/class-mp-exporter-orders.php:150 +#: includes/admin/class-mp-exporter-orders.php:178 +msgid "Export Orders" +msgstr "Exportera order" + +#: includes/admin/class-mp-admin.php:228 +msgid "Show all dates" +msgstr "Visa alla datum" + +#: includes/admin/class-mp-orders-admin.php:947 +msgid "Change Status" +msgstr "Ändra status" + +#: includes/admin/class-mp-orders-admin.php:287 +msgid "Order Notes" +msgstr "Orderanteckningar" + +#: includes/admin/class-mp-orders-admin.php:478 +msgid "Other" +msgstr "Övrigt" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:205 +msgid "Subtotal" +msgstr "Delsumma" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:84 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:87 +#: includes/admin/class-mp-products-admin.php:1737 +#: includes/common/class-mp-cart.php:1409 +#: includes/common/class-mp-product.php:559 +msgid "Quantity" +msgstr "Kvantitet" + +#: includes/common/helpers.php:93 +msgid "Item" +msgstr "Artikel" + +#: includes/common/class-mp-order.php:1050 +msgid "Current Status" +msgstr "Aktuell status" + +#: includes/admin/class-mp-orders-admin.php:297 +msgid "Order Actions" +msgstr "Beställningsåtgärder" + +#: includes/common/class-mp-product.php:1084 +msgid "More Info »" +msgstr "Mer Info »" + +#: includes/common/class-mp-product.php:2313 +msgid "Low Product Inventory Notification" +msgstr "Notering - Lågt lagersaldo" + +#: includes/common/class-mp-order.php:338 includes/common/data.php:154 +msgid "New Order Notification: ORDERID" +msgstr "Ny orderunderrättelse: ORDERID" + +#: includes/common/helpers.php:259 +msgid "Your payment for this order is complete." +msgstr "Din betalning för denna order är klar." + +#: includes/common/helpers.php:261 +msgid "Your payment for this order is not yet complete. Here is the latest status:" +msgstr "Din betalning för denna order är ännu inte avslutad. Här är senaste status:" + +#: includes/common/helpers.php:256 +msgid "Payment Total:" +msgstr "Betalningssumma totalt" + +#: includes/common/helpers.php:253 +msgid "Transaction ID:" +msgstr "Transaktion ID:" + +#: includes/common/helpers.php:249 +msgid "Payment Type:" +msgstr "Betalning Sätt:" + +#: includes/common/helpers.php:246 +msgid "Payment Method:" +msgstr "Betalningsmetod:" + +#: includes/common/helpers.php:242 +msgid "Order Notes:" +msgstr "Orderanteckningar:" + +#: includes/common/helpers.php:237 +msgid "Special Instructions:" +msgstr "Särskilda anvisningar:" + +#: includes/common/helpers.php:232 +msgid "Tracking Number:" +msgstr "Spårningsnummer:" + +#: includes/common/helpers.php:223 includes/common/helpers.php:226 +#: includes/common/helpers.php:228 +#: includes/common/shipping-modules/class-mp-shipping-api.php:406 +#: includes/common/shipping-modules/class-mp-shipping-api.php:428 +msgid "Shipping Method:" +msgstr "Fraktmetod:" + +#: includes/common/helpers.php:168 +msgid "No shipping required for this order." +msgstr "Ingen frakt krävs för denna order." + +#: includes/common/helpers.php:155 +msgid "Order Total:" +msgstr "Beställningstotal" + +#: includes/common/class-mp-order.php:1025 +msgid "Taxes:" +msgstr "Skatter:" + +#: includes/common/class-mp-order.php:1032 includes/common/helpers.php:144 +msgid "Shipping:" +msgstr "Frakt:" + +#: includes/public/class-mp-checkout.php:367 +msgid "Street address, P.O. box, company name, c/o" +msgstr "Gatuadress, P.O. box, företagsnamn, c / o" + +#: includes/admin/class-mp-orders-admin.php:314 +msgid "Shipping Info" +msgstr "Leveransinformation" + +#: includes/public/class-mp-public.php:740 +msgid "Whoops, there was a problem loading up this file for your download. Please contact us for help." +msgstr "Hoppsan, det gick inte att läsa in filen för nedladdning. Kontakta oss för hjälp." + +#: includes/public/class-mp-public.php:683 +msgid "Sorry, our records show you've downloaded this file %d out of %d times allowed. Please contact us if you still need help." +msgstr "Tyvärr, våra uppgifter visar att du har laddat ner den här filen %d utav %d gånger tillåtet. Kontakta oss gärna om du fortfarande behöver hjälp." + +#: includes/public/class-mp-public.php:634 +msgid "Sorry, your order has been marked as unpaid." +msgstr "Tyvärr, din beställning har markerats som obetald." + +#: includes/public/class-mp-public.php:629 +msgid "Sorry, the link is invalid for this download." +msgstr "Tyvärr är länken ogiltigt för denna hämtning." + +#: includes/admin/class-mp-exporter-orders.php:15 +#: includes/admin/class-mp-products-admin.php:1172 +msgid "Cheatin’ uh?" +msgstr "" + +#: includes/public/class-mp-public.php:407 +#: includes/public/class-mp-short-codes.php:128 +msgid "Please enter a valid email address." +msgstr "" + +#: includes/admin/class-mp-ajax.php:191 +#: includes/admin/class-mp-products-admin.php:1821 +#: includes/admin/class-mp-products-admin.php:2010 +#: includes/admin/class-mp-products-admin.php:2267 +msgid "File URL" +msgstr "Fil URL" + +#: includes/admin/class-mp-products-admin.php:1842 +msgid "External Link" +msgstr "Extern länk" + +#: includes/admin/class-mp-products-admin.php:2177 +msgid "Add Variation" +msgstr "Lägg till variation" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:126 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:289 +msgid "Inventory" +msgstr "Lager" + +#: includes/admin/class-mp-products-admin.php:438 +#: includes/admin/class-mp-products-admin.php:578 +#: includes/admin/class-mp-products-admin.php:1552 +#: includes/admin/class-mp-products-admin.php:2053 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:134 +msgid "Sale Price" +msgstr "Försäljningspris" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "Variation Name" +msgstr "Variation Namn" + +#: includes/admin/class-mp-products-admin.php:1931 +msgid "Product Details" +msgstr "Produktinformation" + +#: includes/admin/class-mp-product-attributes-list-table.php:33 +msgid "Delete" +msgstr "Radera" + +#: includes/admin/class-mp-orders-admin.php:1057 +msgid "Trashed" +msgstr "Bortaget" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:231 +#: includes/admin/class-mp-orders-admin.php:1015 +#: includes/common/class-mp-order.php:1052 includes/common/helpers.php:97 +msgid "Total" +msgstr "Totalt" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1196 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:210 +#: includes/admin/class-mp-orders-admin.php:1014 +msgid "Discount" +msgstr "Rabatt" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:221 +#: includes/admin/class-mp-orders-admin.php:1013 +#: includes/common/payment-gateways/_ideal.php:148 +#: includes/common/payment-gateways/_payway.php:134 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:108 +msgid "Tax" +msgstr "Moms" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:216 +#: includes/admin/class-mp-orders-admin.php:1012 +#: includes/admin/class-mp-products-admin.php:1958 +#: includes/admin/class-mp-products-admin.php:2198 +#: includes/admin/class-mp-store-settings-admin.php:114 +#: includes/admin/class-mp-store-settings-admin.php:230 +#: includes/common/class-mp-cart.php:717 includes/common/helpers.php:168 +#: includes/common/payment-gateways/_ideal.php:137 +#: includes/common/payment-gateways/_payway.php:116 +#: includes/public/class-mp-checkout.php:1304 +msgid "Shipping" +msgstr "Leveransadress" + +#: includes/admin/class-mp-orders-admin.php:1011 +msgid "Items" +msgstr "Artiklar" + +#: includes/admin/class-mp-orders-admin.php:1010 +msgid "From" +msgstr "Från" + +#: includes/admin/class-mp-exporter-orders.php:154 +#: includes/admin/class-mp-orders-admin.php:1009 +#: includes/common/class-mp-gdpr.php:370 +msgid "Order Date" +msgstr "Orderdatum" + +#: includes/admin/class-mp-orders-admin.php:1008 +#: includes/common/class-mp-gdpr.php:366 +#: includes/common/template-functions.php:2134 +msgid "Order ID" +msgstr "Order ID" + +#: includes/addons/class-mp-addons-list-table.php:22 +#: includes/admin/class-mp-orders-admin.php:1007 +msgid "Status" +msgstr "Status" + +#: includes/admin/class-mp-orders-admin.php:1155 +msgid "N/A" +msgstr "N/A" + +#: includes/admin/class-mp-dashboard-widgets.php:243 +#: includes/admin/class-mp-products-admin.php:464 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:142 +msgid "Sales" +msgstr "Försäljning" + +#: includes/admin/class-mp-products-admin.php:463 +msgid "Stock" +msgstr "Lager" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:85 +#: includes/admin/class-mp-ajax.php:176 includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:434 +#: includes/admin/class-mp-products-admin.php:462 +#: includes/admin/class-mp-products-admin.php:576 +#: includes/admin/class-mp-products-admin.php:1519 +#: includes/admin/class-mp-products-admin.php:1569 +#: includes/admin/class-mp-products-admin.php:1950 +#: includes/admin/class-mp-products-admin.php:2059 +#: includes/admin/class-mp-products-admin.php:2190 +#: includes/admin/class-mp-products-admin.php:2330 +#: includes/common/class-mp-cart.php:1415 includes/common/helpers.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:130 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:276 +msgid "Price" +msgstr "Pris" + +#: includes/admin/class-mp-ajax.php:173 +#: includes/admin/class-mp-products-admin.php:461 +#: includes/admin/class-mp-products-admin.php:1972 +#: includes/admin/class-mp-products-admin.php:2224 +msgid "SKU" +msgstr "SKU" + +#: includes/admin/class-mp-products-admin.php:459 +#: includes/admin/class-mp-products-admin.php:1793 +#: includes/admin/class-mp-products-admin.php:1805 +#: includes/admin/class-mp-products-admin.php:2163 +msgid "Variations" +msgstr "Variationer" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:83 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:86 +#: includes/admin/class-mp-dashboard-widgets.php:134 +#: includes/admin/class-mp-products-admin.php:458 +#: includes/admin/class-mp-products-admin.php:837 +#: includes/admin/class-mp-shortcode-builder.php:689 +#: includes/admin/class-mp-shortcode-builder.php:856 +#: includes/admin/class-mp-shortcode-builder.php:1300 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:512 +#: includes/admin/widgets/ms-global-product-list.php:115 +#: includes/admin/widgets/product-list.php:211 +msgid "Product Name" +msgstr "Produktnamn" + +#: includes/common/template-functions.php:2575 +msgid "Categorized in " +msgstr "Kategoriserad i " + +#: includes/admin/class-mp-orders-admin.php:305 +#: includes/common/payment-gateways/free_orders.php:176 +msgid "Payment Information" +msgstr "Betalningsinformation" + +#: includes/admin/class-mp-exporter-orders.php:167 +#: includes/admin/class-mp-orders-admin.php:432 +#: includes/admin/class-mp-pages-admin.php:62 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:227 +#: includes/common/class-mp-gdpr.php:374 +#: includes/common/template-functions.php:175 +#: includes/common/template-functions.php:926 +msgid "Order Status" +msgstr "Orderstatus" + +#. translators: %s: orders closed +#: marketpress.php:327 +msgid "Closed (%s)" +msgid_plural "Closed (%s)" +msgstr[0] "Stängt (%s)" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:249 +#: includes/admin/class-mp-orders-admin.php:375 +#: includes/admin/class-mp-orders-admin.php:951 +#: includes/admin/class-mp-orders-admin.php:1053 +#: includes/admin/class-mp-orders-admin.php:1065 +#: includes/common/class-mp-gdpr.php:330 +#: includes/common/class-mp-order.php:1019 marketpress.php:325 +msgid "Closed" +msgstr "Stängt" + +#. translators: %s: shipped orders +#: marketpress.php:320 +msgid "Shipped (%s)" +msgid_plural "Shipped (%s)" +msgstr[0] "Skickad (%s)" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:248 +#: includes/admin/class-mp-orders-admin.php:376 +#: includes/admin/class-mp-orders-admin.php:950 +#: includes/admin/class-mp-orders-admin.php:1049 +#: includes/admin/class-mp-orders-admin.php:1064 +#: includes/common/class-mp-gdpr.php:329 +#: includes/common/class-mp-order.php:1002 marketpress.php:318 +msgid "Shipped" +msgstr "Skickad" + +#. translators: %s: paid orders +#: marketpress.php:313 +msgid "Paid (%s)" +msgid_plural "Paid (%s)" +msgstr[0] "Betald (%s)" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:247 +#: includes/admin/class-mp-orders-admin.php:377 +#: includes/admin/class-mp-orders-admin.php:949 +#: includes/admin/class-mp-orders-admin.php:1045 +#: includes/admin/class-mp-orders-admin.php:1063 +#: includes/common/class-mp-gdpr.php:328 +#: includes/common/payment-gateways/2checkout.php:294 +#: includes/common/payment-gateways/_cubepoints.php:130 +#: includes/common/payment-gateways/authorizenet-aim.php:193 +#: includes/common/payment-gateways/free_orders.php:91 +#: includes/common/payment-gateways/mijireh.php:248 +#: includes/common/payment-gateways/paymill.php:273 +#: includes/common/payment-gateways/paypal-express.php:933 +#: includes/common/payment-gateways/paypal-express.php:967 +#: includes/common/payment-gateways/pin.php:258 +#: includes/common/payment-gateways/simplify.php:181 +#: includes/common/payment-gateways/stripe.php:368 +#: includes/common/payment-gateways/wepay.php:269 marketpress.php:311 +msgid "Paid" +msgstr "Betald" + +#. translators: %s: orders received +#: marketpress.php:306 +msgid "Received (%s)" +msgid_plural "Received (%s)" +msgstr[0] "Mottagna (%s)" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:246 +#: includes/admin/class-mp-orders-admin.php:378 +#: includes/admin/class-mp-orders-admin.php:1041 +#: includes/admin/class-mp-orders-admin.php:1062 +#: includes/common/class-mp-gdpr.php:327 includes/common/class-mp-order.php:995 +#: includes/common/payment-gateways/payfast.php:244 marketpress.php:304 +msgid "Received" +msgstr "Mottagna" + +#: marketpress.php:268 +msgid "Search Orders" +msgstr "Sök beställningar" + +#: marketpress.php:267 +msgid "View Order" +msgstr "Visa beställning" + +#: marketpress.php:262 +msgid "Order" +msgstr "Beställ" + +#: includes/admin/class-mp-dashboard-widgets.php:301 +#: includes/admin/class-mp-orders-admin.php:989 marketpress.php:261 +msgid "Orders" +msgstr "Beställningar" + +#: marketpress.php:228 +msgid "No Products found in Trash" +msgstr "Inga Produkter hittades i papperskorgen" + +#: marketpress.php:227 +msgid "No Products Found" +msgstr "Inga produkter hittades" + +#: marketpress.php:226 +msgid "Search Products" +msgstr "Sök Produkter" + +#: marketpress.php:225 marketpress.php:229 +msgid "View Product" +msgstr "Visa produkt" + +#: marketpress.php:224 +msgid "New Product" +msgstr "Ny produkt" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1022 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:258 +#: marketpress.php:223 +msgid "Edit" +msgstr "Redigera" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1019 +msgid "Create New" +msgstr "Skapa ny" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:687 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:698 +#: marketpress.php:217 +msgid "Product" +msgstr "Produkt" + +#: includes/admin/class-mp-dashboard-widgets.php:307 +#: includes/common/template-functions.php:173 +#: includes/common/template-functions.php:179 +#: includes/common/template-functions.php:902 +#: includes/multisite/template-functions.php:82 marketpress.php:216 +#: marketpress.php:219 +msgid "Products" +msgstr "Produkter" + +#: includes/admin/class-mp-store-settings-admin.php:118 +#: includes/admin/widgets/product-tag-cloud.php:46 +#: includes/multisite/class-mp-admin-multisite.php:548 +msgid "Product Tags" +msgstr "Produkttaggar" + +#: includes/common/template-functions.php:2906 +#: includes/multisite/template-functions.php:449 +msgid "Product Category" +msgstr "Produktkategori" + +#: includes/admin/class-mp-store-settings-admin.php:117 +#: includes/admin/widgets/categories.php:8 +#: includes/admin/widgets/categories.php:18 +#: includes/multisite/class-mp-admin-multisite.php:539 +msgid "Product Categories" +msgstr "Produktkategorier" + +#: includes/common/payment-gateways/stripe.php:332 +#: includes/common/template-functions.php:872 marketpress.php:218 +msgid "Store" +msgstr "Butik" + +#: includes/admin/class-mp-pages-admin.php:60 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:209 +#: includes/admin/widgets/cart.php:8 includes/admin/widgets/cart.php:56 +#: includes/common/template-functions.php:174 +#: includes/common/template-functions.php:811 +msgid "Shopping Cart" +msgstr "Kundvagn" + +#: includes/admin/class-mp-store-settings-admin.php:110 +#: includes/admin/class-mp-store-settings-admin.php:218 +msgid "Store Settings" +msgstr "Butiksinställningar" + +#: includes/addons/class-mp-addons-list-table.php:128 marketpress.php:607 +msgid "Settings" +msgstr "Inställningar" + +#: includes/common/data.php:178 includes/common/data.php:190 +msgid "Your Order Has Been Shipped! (ORDERID)" +msgstr "Din beställning har skickats! (ORDERID)" + +#: includes/common/data.php:159 includes/common/data.php:166 +#: includes/common/data.php:172 +msgid "Your Order Confirmation (ORDERID)" +msgstr "Orderbekräftelsen (ORDERID)" + +#: includes/common/data.php:148 +msgid "

    Thank you for your order! We appreciate your business, and please come back often to check out our new products.

    " +msgstr "

    Tack för din beställning! Vi uppskattar ditt köp, besök oss igen för att kolla in våra nya produkter.

    " + +#: includes/common/data.php:147 +msgid "

    You are almost done! Please do a final review of your order to make sure everything is correct then click the \"Confirm Payment\" button.

    " +msgstr "

    Du är nästan klar! Gör gärna en slutlig granskning av din order för att kontrollera att allt är korrekt och klicka sedan på knappen \"Bekräfta köp\"

    " + +#: includes/common/data.php:145 +msgid "

    Please enter your shipping information in the form below to proceed with your order.

    " +msgstr "

    Ange din fraktinformation i formuläret nedan för att gå vidare med din beställning.

    " + +#: includes/common/data.php:143 +msgid "

    If you have any questions about your order please do not hesitate to contact us.

    " +msgstr "

    Om du har några frågor om din beställning så tveka inte att kontakta oss.

    " + +#: includes/common/data.php:106 +msgid "tag" +msgstr "etikett" + +#: includes/common/data.php:105 +msgid "category" +msgstr "kategori" + +#: includes/common/data.php:104 +msgid "order-status" +msgstr "orderstatus" + +#: includes/common/data.php:103 +msgid "shopping-cart" +msgstr "kundvagn" + +#: includes/common/data.php:102 +msgid "products" +msgstr "Produkter" + +#. Translators: change default slugs here +#: includes/common/data.php:101 +msgid "store" +msgstr "Butik" \ No newline at end of file diff --git a/languages/mp-th.mo b/languages/mp-th.mo new file mode 100644 index 0000000000000000000000000000000000000000..bb4dad71e2ee59571c603d0cc0c1e423872fa6de GIT binary patch literal 11183 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 RNw=^j-?jP4BL9LH{4a_ms-OS> literal 0 HcmV?d00001 diff --git a/languages/mp-th.po b/languages/mp-th.po new file mode 100644 index 00000000..a7816087 --- /dev/null +++ b/languages/mp-th.po @@ -0,0 +1,8946 @@ +# Translation of MarketPress in Thai +# This file is distributed under the same license as the MarketPress package. +msgid "" +msgstr "" +"PO-Revision-Date: 2014-06-12 12:49:04+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: GlotPress/2.3.1\n" +"Language: th\n" +"Project-Id-Version: MarketPress\n" + +#: includes/public/class-mp-checkout.php:1285 +msgid "By clicking this checkbox you allow the website to process your personal data." +msgstr "" + +#: includes/common/class-mp-gdpr.php:382 +msgid "Order Info" +msgstr "" + +#: includes/common/class-mp-gdpr.php:268 +msgid "Shipping Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:267 +msgid "Shipping Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:266 +msgid "Shipping ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:265 +msgid "Shipping State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:264 +msgid "Shipping City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:263 +msgid "Shipping Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:262 +msgid "Shipping Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:261 +msgid "Shipping Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:260 +msgid "Shipping Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:259 +msgid "Shipping Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:258 +msgid "Shipping First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:254 +msgid "Billing Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:253 +msgid "Billing Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:252 +msgid "Billing ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:251 +msgid "Billing State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:250 +msgid "Billing City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:249 +msgid "Billing Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:248 +msgid "Billing Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:247 +msgid "Billing Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:246 +msgid "Billing Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:245 +msgid "Billing Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:244 +msgid "Billing First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:151 +msgid "Orders Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:139 +msgid "Customer Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:100 includes/common/class-mp-gdpr.php:116 +msgid "MarketPress User Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:81 +msgid "" +"In addition to standard WordPress session cookies, this site might be setting an\n" +"\t\t additional cookie to remember your cart settings. This cookie will last for one year." +msgstr "" + +#: includes/common/class-mp-gdpr.php:80 +msgid "Cookies" +msgstr "" + +#: includes/common/class-mp-gdpr.php:77 +msgid "" +"The following information will be collected in order to process orders: your name,\n" +"\t\t username, email address, avatar and profile URLs, address and phone number. This data can be\n" +"\t\t exported and removed." +msgstr "" + +#: includes/common/class-mp-gdpr.php:76 +msgid "Additional data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:71 +msgid "" +"This site might be using third party services and tools to process payments or/and\n" +"\t\t process shipping data when creating orders on the MarketPress store. These services include payment\n" +"\t\t gateways: 2Checkout, Authorize.net AIM, eWay shared payments, eWay Rapid 3.1 Payments, Mijireh,\n" +"\t\t Mollie, Paymill, PayPal, PIN, Simplify Commerce by MasterCard, Stripe and WePay; shipping gateways:\n" +"\t\t Fedex, UPS, USPS." +msgstr "" + +#: includes/common/class-mp-gdpr.php:70 +msgid "Third parties" +msgstr "" + +#: includes/admin/class-mp-admin.php:403 +msgid "Start creating store pages and products for your online shop here." +msgstr "" + +#: includes/admin/class-mp-admin.php:402 +msgid "Create Online Shop" +msgstr "" + +#: includes/admin/class-mp-admin.php:394 +msgid "Run Setup Wizard" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:234 +msgid "If having problems during invoice generation, add define( 'DOMPDF_ENABLE_HTML5PARSER', true ); to the wp-config.php file." +msgstr "" + +#: includes/public/class-mp-checkout.php:723 +msgid "Invalid Email" +msgstr "" + +#: includes/public/class-mp-checkout.php:721 +#: includes/public/class-mp-checkout.php:729 +msgid "This field is required" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:804 +msgid "This option changes the built-in css styles for store pages. For a custom css style, save your css file with the /* MarketPress Style: Your CSS Theme Name Here */ header line in the \"%s\" folder and it will appear in this list so you may select it. You should select \"None\" if you don't wish to use custom CSS styles or if you are using default theme templates or custom theme templates and css to make your own completely unique store design. For more information on custom theme templates click here »." +msgstr "" + +#: includes/public/class-mp-public.php:421 +#: includes/public/class-mp-short-codes.php:142 +msgid "Please enter a value greater than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:420 +#: includes/public/class-mp-short-codes.php:141 +msgid "Please enter a value less than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:419 +#: includes/public/class-mp-short-codes.php:140 +msgid "Please enter a value between {0} and {1}." +msgstr "" + +#: includes/public/class-mp-public.php:418 +#: includes/public/class-mp-short-codes.php:139 +msgid "Please enter a value between {0} and {1} characters long." +msgstr "" + +#: includes/public/class-mp-public.php:417 +#: includes/public/class-mp-short-codes.php:138 +msgid "Please enter at least {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:416 +#: includes/public/class-mp-short-codes.php:137 +msgid "Please enter no more than {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:415 +#: includes/public/class-mp-short-codes.php:136 +msgid "Please enter a value with a valid extension." +msgstr "" + +#: includes/public/class-mp-public.php:414 +#: includes/public/class-mp-short-codes.php:135 +msgid "Please enter the same value again." +msgstr "" + +#: includes/public/class-mp-public.php:413 +#: includes/public/class-mp-short-codes.php:134 +msgid "Please enter a valid credit card number." +msgstr "" + +#: includes/public/class-mp-public.php:412 +#: includes/public/class-mp-short-codes.php:133 +msgid "Please enter only digits." +msgstr "" + +#: includes/public/class-mp-public.php:411 +#: includes/public/class-mp-short-codes.php:132 +msgid "Please enter a valid number." +msgstr "" + +#: includes/public/class-mp-public.php:410 +#: includes/public/class-mp-short-codes.php:131 +msgid "Please enter a valid date (ISO)." +msgstr "" + +#: includes/public/class-mp-public.php:409 +#: includes/public/class-mp-short-codes.php:130 +msgid "Please enter a valid date." +msgstr "" + +#: includes/public/class-mp-public.php:408 +#: includes/public/class-mp-short-codes.php:129 +msgid "Please enter a valid URL." +msgstr "" + +#: includes/public/class-mp-public.php:406 +#: includes/public/class-mp-short-codes.php:127 +msgid "Please fix this field." +msgstr "" + +#: includes/public/class-mp-checkout.php:1287 +#: includes/public/class-mp-public.php:405 +#: includes/public/class-mp-short-codes.php:126 +msgid "This field is required." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:810 +msgid "None - Without Special CSS-styles" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:809 +msgid "Default - Using Default CSS-styles" +msgstr "" + +#: marketpress.php:739 +msgid "Enable multiple downloads per product" +msgstr "" + +#: marketpress.php:738 +msgid "Multiple Downloads" +msgstr "" + +#: includes/public/class-mp-checkout.php:715 +msgid "Invalid Zip Code" +msgstr "" + +#: includes/common/template-functions.php:2126 +msgid "Guest Email" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:195 +msgid "There was a problem finalizing your purchase. Please re-enter your credit card information and try again" +msgstr "" + +#: includes/common/class-mp-cart.php:565 includes/common/class-mp-order.php:600 +#: includes/common/helpers.php:111 +msgid "Download %1$s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:331 +msgid "Export products to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:328 +msgid "The import process uses the WordPress importer plugin." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:326 +msgid "Import / Export Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:325 +msgid "Export settings to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:324 +msgid "Import configuration" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:320 +msgid "Use the text below to export to a new installation. Or paste in the new configuration to import." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:318 +msgid "Import / Export Settings" +msgstr "" + +#. translators: URL to wp-admin/import.php +#: includes/admin/store-settings/class-mp-store-settings-import.php:266 +msgid "This importer is not installed. Please install importers from the main site." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:261 +msgid "Install Now" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:260 +msgid "Install %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:240 +msgid "Run Importer" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:239 +msgid "Run %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:258 +msgid "Import/Export" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1199 +msgid "Requires Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:737 +msgid "Optionally limit the user to some categories" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:671 +msgid "Should this coupon only be available to logged in users?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:670 +msgid "Require Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:655 +msgid "Mimimum number of products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:653 +msgid "Enter the minimum number of products in the cart that this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:648 +msgid "Can this coupon be limited to a number of products in the cart?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:334 +msgid "Add all values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:265 +msgid "Set as default variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:154 +msgid "Set Default" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:150 +msgid "More Info" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:40 +msgid "MarketPress - Quick Setup" +msgstr "" + +#: includes/public/class-mp-checkout.php:1399 +msgid "Proceed to checkout and create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1241 +#: includes/public/class-mp-checkout.php:1245 +msgid "Register account" +msgstr "" + +#: includes/public/class-mp-checkout.php:1233 +msgid "Register as customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:765 +msgid "

    Oops!

    Looks like you haven't added anything your cart. Let's go shopping!

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:763 +msgid "

    Oops!

    The cart is disabled.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing Information" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:214 +msgid "Global Currency" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:198 +msgid "Global Store Currency" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:507 +msgid "There are no shipping services available for this type of package in your location." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:168 +msgid "Using this USPS Shipping calculator requires requesting an Ecommerce API Username and Password. Get your free set of credentials here ». The password is no longer used for the API, just the username which you should enter below. The USPS test site has not yet been updated and currently doesn't work - you should just request activating your credentials with USPS and go live." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:339 +msgid "ZIP Code" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:334 +msgid "Last name" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:333 +msgid "First name" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:150 +msgid "These are the manual payment instructions to display on the order confirmation screen. TOTAL will be replaced with the order total and ORDERID will be replaced with Order ID." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:240 +msgid "You must login to Authorize.net merchant dashboard to obtain the API login ID and API transaction key. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:327 +msgid "
    1. Set the \"Return Method\" within Site Management to Header Redirect and set the \"Return URL\" to %s
    2. Set your notifications url to %s
    " +msgstr "" + +#: includes/common/data.php:191 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Also, digital downloads included in your order are now ready to be downloaded. Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:185 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order is now available to download! Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:184 +msgid "Your Order Is Ready To Be Downloaded! (ORDERID)" +msgstr "" + +#: includes/common/data.php:179 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:173 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received, your digital goods are ready to be downloaded and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:167 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received and your digital goods are ready to be downloaded. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:160 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +" Your order has been received, and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information: \n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/class-mp-product.php:638 +msgid "You can not add more items to cart." +msgstr "" + +#: includes/common/class-mp-product.php:635 +msgid "You can only add {0} to cart." +msgstr "" + +#: includes/common/class-mp-product.php:625 +msgid "This product has an order limit of %d." +msgstr "" + +#: includes/common/class-mp-order.php:1454 +msgid "Shipped: tracking code: %s" +msgstr "" + +#: includes/common/class-mp-order.php:1000 +#: includes/common/class-mp-order.php:1012 +msgid "Finished" +msgstr "" + +#: includes/common/class-mp-order.php:858 +msgid "Contact Details" +msgstr "" + +#: includes/common/class-mp-order.php:339 includes/common/data.php:155 +msgid "" +"A new order (ORDERID) was created in your store:\n" +"\n" +" ORDERINFOSKU\n" +"\n" +" SHIPPINGINFO\n" +"\n" +" PAYMENTINFO\n" +"\n" +msgstr "\n" + +#: includes/common/class-mp-cart.php:1858 +msgid "Add again" +msgstr "" + +#: includes/common/class-mp-cart.php:1852 +msgid "was removed from Shopping Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1242 +#: includes/public/class-mp-short-codes.php:160 +msgid "Cart update notice: this item has a limit per order or you have reached the stock limit." +msgstr "" + +#: includes/admin/widgets/product-list.php:235 +msgid "Show Only Featured Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:533 +msgid "If enabled, users won't be able to filter products per category and/or to order by release date/name/price." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:531 +msgid "Hide Products Filter?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:353 +msgid "Notification to registration email instead of billing email?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:322 +msgid "Order Shipped - Mixed orders (with both digital and physical products)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:289 +msgid "Order Shipped - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:224 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:194 +msgid "New Order - Mixed" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:161 +msgid "New Order - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:115 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:243 +msgid "Mixed orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:110 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:238 +msgid "Digital downloads orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:105 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:233 +msgid "Physical orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:96 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed.
    For orders placed with manual payment, emails set here will be overriden by the one configured in manual payments settings, under payments settings page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:89 +msgid "Customer Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:47 +msgid "Admin Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:566 +msgid "Only contact details" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:565 +msgid "Full billing info" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:561 +msgid "Details Collection" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:548 +msgid "Digital Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:515 +msgid "Apply Tax to Digital Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:236 +msgid "product (default)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:231 +msgid "If you are experiencing conflicts with other e-commerce plugins change this setting. This will change the internal post type of all your products. Please note that changing this option may break 3rd party themes or plugins." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1203 +msgid "Hide details" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1202 +msgid "Show all changes" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1184 +msgid "Version %s" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1161 +msgid "Current" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1131 +msgid "%s changelog" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:952 +msgid "We did not find any data for this plugin or theme..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:285 +msgid "Activate WPMU DEV Dashboard" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:279 +msgid "Just one more step - activate the WPMU DEV Dashboard plugin and you're all done!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:277 +msgid "Important updates are available for your WPMU DEV plugins/themes. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:273 +msgid "Just one more step to enable updates and support for %s!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:271 +msgid "Important updates are available for %s. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:264 +msgid "activate" +msgstr "" + +#: includes/admin/class-mp-admin.php:398 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:248 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:289 +msgid "Dismiss" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:247 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:288 +msgid "Saving..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:244 +msgid "Install Plugin" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:238 +msgid "Almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:236 +msgid "Important updates are available for your WPMU DEV plugins/themes. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:232 +msgid "%s is almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:230 +msgid "Important updates are available for %s. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:223 +msgid "install" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1428 +msgid "Sets the number of Tags to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1289 +msgid "How many products to display in the product list if \"paginate\" is set to false." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:739 +#: includes/admin/class-mp-shortcode-builder.php:906 +#: includes/admin/class-mp-shortcode-builder.php:1350 +msgid "Grid" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:735 +#: includes/admin/class-mp-shortcode-builder.php:902 +#: includes/admin/class-mp-shortcode-builder.php:1346 +msgid "Products will be displayed as list or grid." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:206 +msgid "Display a cloud or list of your global product tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:205 +msgid "Display a list of your global categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:204 +msgid "Display a list or grid of your global products." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:181 +msgid "Display a list of featured products." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1451 +msgid "Is Featured?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1444 +msgid "Featured Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:581 +#: includes/admin/class-mp-products-admin.php:1580 +msgid "% discount" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:579 +msgid "OR" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:460 +#: includes/admin/class-mp-products-admin.php:586 +#: includes/admin/widgets/product-list.php:217 +msgid "Featured" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:536 +#: includes/admin/class-mp-orders-admin.php:538 +msgid "Tracking Link" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:508 +msgid "Shipping Tax" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:356 +msgid "Shipping Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:352 +msgid "Taxes Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:349 +msgid "Products Total" +msgstr "" + +#: includes/admin/class-mp-ajax.php:366 +msgid "Oops! You entered an invalid username/email and or password." +msgstr "" + +#: includes/admin/class-mp-ajax.php:254 +msgid "Percentage Discount" +msgstr "" + +#: includes/admin/class-mp-ajax.php:234 +msgid "Limit the Amount of Items per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:214 +msgid "Unused Attributes" +msgstr "" + +#: includes/admin/class-mp-admin.php:82 +msgid "Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-admin.php:79 +msgid "MarketPress setup is not complete! Once you've completed this quick setup wizard you'll have a fully working online store - exciting! " +msgstr "" + +#: marketpress.php:263 +msgctxt "mp_order" +msgid "Add New" +msgstr "" + +#: marketpress.php:184 +msgctxt "product_tag" +msgid "Product Tag" +msgstr "" + +#: marketpress.php:183 +msgctxt "product_tag" +msgid "Product Tags" +msgstr "" + +#: marketpress.php:150 +msgctxt "product_category" +msgid "Product Category" +msgstr "" + +#: marketpress.php:149 +msgctxt "product_category" +msgid "Product Categories" +msgstr "" + +#. Author URI of the plugin/theme +msgid "http://premium.wpmudev.org" +msgstr "" + +#: marketpress.php:729 +msgid "Invoice PDF" +msgstr "" + +#: marketpress.php:712 +msgid "Grant access to themes and gateways depending on the user's Pro Site level" +msgstr "" + +#: marketpress.php:711 +msgid "Pro Sites" +msgstr "" + +#: marketpress.php:703 +msgid "Offer and accept coupon codes" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:687 +msgid "Install %s Pages" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:682 +msgid "Welcome to %s – Install pages required by the plugin automatically." +msgstr "" + +#: marketpress.php:668 +msgid "Your pages were created successfully." +msgstr "" + +#: marketpress.php:436 +msgid "Add a Product" +msgstr "" + +#: marketpress.php:271 +msgid "Parent Order" +msgstr "" + +#: marketpress.php:270 +msgid "No orders found in trash" +msgstr "" + +#: marketpress.php:269 +msgid "No orders found" +msgstr "" + +#: marketpress.php:265 +msgid "Edit Order" +msgstr "" + +#: marketpress.php:264 +msgid "Add New Order" +msgstr "" + +#: marketpress.php:220 marketpress.php:221 +msgid "Add New Product" +msgstr "" + +#: marketpress.php:197 +msgid "No product tags found" +msgstr "" + +#: marketpress.php:196 +msgid "Choose from the most used product tags" +msgstr "" + +#: marketpress.php:195 +msgid "Add or remove product tags" +msgstr "" + +#: marketpress.php:194 +msgid "Separate product tags with commas" +msgstr "" + +#: marketpress.php:193 +msgid "Search Product Tags" +msgstr "" + +#: marketpress.php:192 +msgid "Parent Product Tag:" +msgstr "" + +#: marketpress.php:191 +msgid "Parent Product Tag" +msgstr "" + +#: marketpress.php:190 +msgid "New Product Tag Name" +msgstr "" + +#: marketpress.php:189 +msgid "Add New Product Tag" +msgstr "" + +#: marketpress.php:188 +msgid "Update Product Tag" +msgstr "" + +#: marketpress.php:187 +msgid "View Product Tag" +msgstr "" + +#: marketpress.php:186 +msgid "Edit Product Tag" +msgstr "" + +#: marketpress.php:185 +msgid "All Product Tags" +msgstr "" + +#: marketpress.php:163 +msgid "No product categories found" +msgstr "" + +#: marketpress.php:162 +msgid "Choose from the most used product categories" +msgstr "" + +#: marketpress.php:161 +msgid "Add or remove product categories" +msgstr "" + +#: marketpress.php:160 +msgid "Separate product categories with commas" +msgstr "" + +#: marketpress.php:159 +msgid "Search Product Categories" +msgstr "" + +#: marketpress.php:158 +msgid "Parent Product Category:" +msgstr "" + +#: marketpress.php:157 +msgid "Parent Product Category" +msgstr "" + +#: marketpress.php:156 +msgid "New Product Category Name" +msgstr "" + +#: marketpress.php:155 +msgid "Add New Product Category" +msgstr "" + +#: marketpress.php:154 +msgid "Update Product Category" +msgstr "" + +#: marketpress.php:153 +msgid "View Product Category" +msgstr "" + +#: marketpress.php:152 +msgid "Edit Product Category" +msgstr "" + +#: marketpress.php:151 +msgid "All Product Categories" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Please fix the %s1 and then try submitting the form again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Oops! The form contains %s1 which %s2 been highlighted below." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:660 +msgid "have" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:659 +msgid "has" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:651 +msgid "Value must be less than {0}" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:650 +msgid "Please enter only letters and numbers" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:539 +msgid "Due to prolonged inactivity on this page, one or more settings were not saved. Please try again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:535 +msgid "Settings Saved" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-user-select.php:22 +msgid "Select Some Users" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-section.php:18 +msgid "Section Title" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:425 +msgid "Are you sure you want to delete this?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:30 +msgid "Add Row" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-post-select.php:24 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-taxonomy-select.php:22 +msgid "Select Posts" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:210 +msgid "Add Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:129 +msgid "Select the image that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:93 +msgid "Select image(s) that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:79 +msgid "Select the image that you would like to use for this variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:48 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:82 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:68 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:132 +msgid "Select Image" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:31 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:160 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:168 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:19 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:115 +msgid "Select File" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:30 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:18 +msgid "Select the file that you would like to use." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:357 +msgid "Create Variations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:356 +msgid "Add Another Variant" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Insert a value and press ENTER" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "(e.g. White, Grey, Red etc.)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Variation Values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:333 +msgid "Or create new variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "(e.g. Color)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:303 +msgid "You are about to delete selected variants.
    If you want to continue please confirm." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:302 +msgid "Confirmation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:290 +msgid "Insert quantity available. Empty for unlimited." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:281 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:294 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:307 +msgid "Cancel" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:280 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:293 +msgid "Update" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:277 +msgid "Insert the price i.e. 25 or 25.50" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:115 +msgid "Img." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:85 +msgid "Add New Variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:79 +msgid "Delete Variants" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:78 +msgid "Update Prices" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:77 +msgid "Update Inventory" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:76 +msgid "Update Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:75 +msgid "Bulk Actions" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:73 +msgid "Select bulk action" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:196 +msgid "Configure Store" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:195 +msgid "Configure shipping rates, emails and your store's appearance. " +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:190 +msgid "Add Product" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:189 +msgid "Add your first product for sale and get familiar with adding products." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:184 +msgid "Your store is almost ready for its first customers, but first it needs some products. Get started by adding products below, or jump straight into further configuring your store’s settings." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:183 +msgid "Woohoo! Your online store is up and running." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:160 +msgid "Finish Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:124 +msgid "And what metric system do you want to use?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:113 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:142 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:159 +msgid "Back" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:109 +msgid "Do you want to apply tax for your products? You can customize this for each product and variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:105 +msgid "What currency do you want to sell with?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:93 +msgid "And, which countries do you want to sell to?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:89 +msgid "Where is your online store based?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:80 +msgid "Payment Gateway" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:79 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:123 +msgid "Metric System" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:78 +msgid "Currency & Tax" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:77 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:88 +msgid "Locations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:70 +msgid "Choose where you want to sell your stuff and what currency. Easy!" +msgstr "" + +#: includes/public/class-mp-checkout.php:1400 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:58 +msgid "Continue" +msgstr "" + +#: includes/admin/class-mp-admin.php:83 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:53 +msgid "Skip this step, I'll do this manually" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:49 +msgid "Install store pages" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:44 +msgid "Once you've completed this quick setup wizard you'll have a fully working online store - exciting! Start
    by creating the default store pages for the online store such as the cart, checkout and store pages." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:42 +msgid "MarketPress adds a full online store to your website, with heaps of configuration options and addons
    to suit your needs. It's really easy to get going, and only takes a few minutes to setup!" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:41 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:69 +msgid "Welcome to MarketPress - Quick Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-advanced-select.php:23 +msgid "Select Some Options" +msgstr "" + +#: includes/wpmudev-metaboxes/class-wpmudev-field.php:694 +msgid "You must the WPMUDEV_Field::display() method in your form field class" +msgstr "" + +#: includes/public/class-mp-short-codes.php:636 +msgid "Only %s left in stock..." +msgstr "" + +#: includes/public/class-mp-short-codes.php:633 +msgid "Unlimited stock" +msgstr "" + +#: includes/public/class-mp-short-codes.php:430 +msgid "product_id must be defined" +msgstr "" + +#: includes/public/class-mp-checkout.php:1250 +msgid "An account with this username already exists" +msgstr "" + +#: includes/public/class-mp-checkout.php:1394 +msgid "Continue as Guest" +msgstr "" + +#: includes/public/class-mp-checkout.php:1393 +msgid "Proceed to checkout and you'll have an opportunity to create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1392 +#: includes/public/class-mp-checkout.php:1398 +msgid "First-time customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1386 +msgid "Login" +msgstr "" + +#: includes/public/class-mp-checkout.php:1379 +msgid "E-Mail Address/Username" +msgstr "" + +#: includes/public/class-mp-checkout.php:1377 +msgid "Sign in to speed up the checkout process." +msgstr "" + +#: includes/public/class-mp-checkout.php:1376 +msgid "Have an account?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1297 +msgid "Shipping address different than billing?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1184 +msgid "There are no available gateways to process this payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1160 +msgid "Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:1123 +msgid "Oops! An error occurred while processing your payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1051 +msgid "Next Step »" +msgstr "" + +#: includes/public/class-mp-checkout.php:1045 +msgid "« Previous Step" +msgstr "" + +#: includes/public/class-mp-checkout.php:873 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:657 +msgid "error" +msgstr "" + +#: includes/public/class-mp-checkout.php:872 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:658 +msgid "errors" +msgstr "" + +#: includes/public/class-mp-checkout.php:871 +msgid "

    Oops! We found %d %s in the form below.

    Fields that have errors are highlighted in red below. Entering into a field will reveal the actual error that occurred.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:870 +msgid "Please enter a valid first and last name" +msgstr "" + +#: includes/public/class-mp-checkout.php:869 +msgid " Please enter a valid card security code" +msgstr "" + +#: includes/public/class-mp-checkout.php:868 +msgid "Please enter a valid card expiration" +msgstr "" + +#: includes/public/class-mp-checkout.php:773 +msgid "Javascript is required in order to checkout. Please enable Javascript in your browser and then refresh this page." +msgstr "" + +#: includes/public/class-mp-checkout.php:588 +msgid "An unknown error occurred. Please try again." +msgstr "" + +#: includes/public/class-mp-checkout.php:386 +msgid "Town/City" +msgstr "" + +#: includes/public/class-mp-checkout.php:380 +msgid "Apartment, suite, unit, building, floor, etc" +msgstr "" + +#: includes/public/class-mp-checkout.php:376 +msgid "Address Line 2" +msgstr "" + +#: includes/public/class-mp-checkout.php:363 +msgid "Address Line 1" +msgstr "" + +#: includes/common/class-mp-order.php:770 +#: includes/public/class-mp-checkout.php:354 +msgid "Company" +msgstr "" + +#: includes/public/class-mp-checkout.php:330 +msgid "Last" +msgstr "" + +#: includes/public/class-mp-checkout.php:321 +msgid "First" +msgstr "" + +#: includes/public/class-mp-checkout.php:284 +msgid "State/Province" +msgstr "" + +#: includes/public/class-mp-checkout.php:83 +msgid "Review Order/Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing/Shipping Address" +msgstr "" + +#: includes/public/class-mp-checkout.php:80 +msgid "Login/Register" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:530 +msgid "Marketplace" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:523 +msgid "Global Marketplace Pages" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +msgid "Store Network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +#: includes/multisite/class-mp-admin-multisite.php:494 +msgid "Store Network Settings" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:440 +msgid "Set theme access permissions for network stores. For a custom css theme, save your css file with the MarketPress Theme: NAME header in the /marketpress/ui/themes/ folder and it will appear in this list so you may select it." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:361 +msgid "Choose a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:336 +msgid "%d products get indexed" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:285 +msgid "Product Indexer" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:281 +msgid "Please hold on..." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:280 +msgid "Index Products" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:279 +msgid "%d products have been indexed in whole network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:182 +msgid "Enable Global Shopping Cart?" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:178 +msgid "Limit Global Widgets/Shortcodes To Main Blog?" +msgstr "" + +#: includes/common/template-functions.php:2802 +#: includes/multisite/template-functions.php:355 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:97 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:114 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:143 +msgid "Next" +msgstr "" + +#: includes/common/template-functions.php:2801 +#: includes/multisite/template-functions.php:354 +msgid "Prev" +msgstr "" + +#: includes/common/template-functions.php:2597 +msgid "Tagged in " +msgstr "" + +#: includes/common/template-functions.php:2196 +#: includes/common/template-functions.php:2202 +#: includes/common/template-functions.php:2214 +#: includes/common/template-functions.php:2217 +msgid "Oops! We couldn't locate any orders matching that order number. Please verify the order number and try again." +msgstr "" + +#: includes/common/template-functions.php:2138 +msgid "Look Up" +msgstr "" + +#: includes/common/template-functions.php:1423 +msgid "Please choose a shipping method" +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "If you have your order ID you can look it up using the form below." +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "Order Search" +msgstr "" + +#: includes/common/template-functions.php:910 +#: includes/public/class-mp-checkout.php:1440 +msgid "Cart" +msgstr "" + +#: includes/common/template-functions.php:895 +msgid "[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:887 +msgid "[mp_global_categories_list]" +msgstr "" + +#: includes/common/template-functions.php:880 +msgid "" +"Welcome to our market place!\n" +"\n" +"Check out our network of products:\n" +"\n" +"[mp_list_global_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_global_categories_list]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:879 +msgid "Global Store" +msgstr "" + +#: includes/common/template-functions.php:873 +msgid "" +"Welcome to our online store! Feel free to browse around:\n" +"\n" +"[mp_store_navigation]\n" +"\n" +"Check out our most popular products:\n" +"\n" +"[mp_popular_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_list_categories]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_tag_cloud]" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:127 +msgid "If cart weight is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:126 +msgid "Cart Weight" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:222 +msgid "Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:206 +msgid "Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:196 +msgid "Retail Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:195 +msgid "Online Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:193 +msgid "Rates Request Type" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:189 +msgid "Maximum Weight Per Package" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:195 +#: includes/common/shipping-modules/mp-usps.php:236 +msgid "Enter your standard box sizes as LengthxWidthxHeight (e.g. 12x8x6) For each box defined enter the maximum weight it can contain. Note: the shipping prices this plugin calculates are estimates. If they are consistently too low or too high, please check that the list of boxes above and the product weights are accurate and complete." +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:187 +msgid "Handling Charge Per Box Shipped" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:176 +#: includes/common/shipping-modules/mp-ups.php:181 +msgid "Offered Services" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:165 +msgid "Shipper Number" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:151 +msgid "User ID" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:144 +msgid "Developer Kit Access Key" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:140 +msgid "Use Sandbox Mode?" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:123 +msgid "In order to use UPS, you will need a UPS Developer Kit access key and the UPS user ID and password associated with the access key. Set these up for free here. If this information is missing or incorrect, an error will appear during the checkout process and the buyer will not be able to complete the transaction." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:112 +msgid "If cart total is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:111 +msgid "Cart Total" +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:95 +#: includes/common/shipping-modules/mp-weight-rate.php:111 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Don't worry about sorting as this will be done automatically upon saving." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:170 +msgid "Method Title (visible for clients)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:409 +#: includes/common/shipping-modules/mp-ups.php:216 +#: includes/common/shipping-modules/mp-usps.php:251 +msgid "Max Weight (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:402 +#: includes/common/shipping-modules/mp-ups.php:209 +#: includes/common/shipping-modules/mp-usps.php:247 +msgid "Size (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:387 +msgid "Enter your standard box sizes as LengthxWidthxHeight ( 12x8x6 ) For each box defined enter the maximum weight it can contain. Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:361 +#: includes/common/shipping-modules/mp-usps.php:229 +msgid "Handling Charge per International Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:353 +msgid "International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:339 +#: includes/common/shipping-modules/mp-usps.php:213 +msgid "Handling Charge per Domestic Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:331 +msgid "Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:321 +msgid "When checked the customer can chose Residential or Commercial delivery with Residential the default. Unchecked it's only Residential rates." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:320 +msgid "Allow Commercial Delivery?" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:315 +msgid "Fedex 10kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:314 +msgid "Fedex 25kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:313 +msgid "Fedex Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:312 +msgid "Fedex Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:311 +msgid "Fedex Pak" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:310 +msgid "Fedex Tube" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:306 +msgid "Default Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:294 +msgid "Dropoff Type" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:290 +msgid "Meter ID" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:134 +msgid "This is a residential address" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:283 +msgid "There was an error processing your card: \"%s\". Please check your credit card info and try again." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:121 +msgid "Wepay makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept cards directly on your site. You don't need a merchant account or gateway. WePay handles everything including storing cards. Credit cards go directly to WePay's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:385 +msgid "There was an error processing your card - \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:356 +msgid "%s Store Purchase - Order ID - %s, Email - %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:251 +msgid "Stripe makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept Visa, MasterCard, American Express, Discover, JCB, and Diners Club cards directly on your site. You don't need a merchant account or gateway. Stripe handles everything, including storing cards, subscriptions, and direct payouts to your bank account. Credit cards go directly to Stripe's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:192 +msgid "ZMW - Zambian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:191 +msgid "ZAR - South African Rand" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:190 +msgid "YER - Yemeni Rial" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:189 +msgid "XPF - Cfp Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:188 +msgid "XOF - West African Cfa Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:187 +msgid "XCD - East Caribbean Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:186 +msgid "XAF - Central African Cfa Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:185 +msgid "WST - Samoan Tala" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:184 +msgid "VUV - Vanuatu Vatu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:183 +msgid "VND - Vietnamese Đồng" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:182 +msgid "VEF - Venezuelan Bolívar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:181 +msgid "UZS - Uzbekistani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:180 +msgid "UYI - Uruguayan Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:178 +msgid "UGX - Ugandan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:177 +msgid "UAH - Ukrainian Hryvnia" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:176 +msgid "TZS - Tanzanian Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:175 +msgid "TWD - New Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:174 +msgid "TTD - Trinidad and Tobago Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:172 +msgid "TOP - Tongan Paʻanga" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:171 +msgid "TJS - Tajikistani Somoni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:169 +msgid "SZL - Swazi Lilangeni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:168 +msgid "SVC - Salvadoran Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:167 +msgid "STD - São Tomé and Príncipe Dobra" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:166 +msgid "SRD - Surinamese Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:165 +msgid "SOS - Somali Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:164 +msgid "SLL - Sierra Leonean Leone" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:163 +msgid "SHP - Saint Helenian Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:160 +msgid "SCR - Seychellois Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:159 +msgid "SBD - Solomon Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:157 +msgid "RWF - Rwandan Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:156 +msgid "RUB - Russian Ruble" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:155 +msgid "RSD - Serbian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:154 +msgid "RON - Romanian Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:153 +msgid "QAR - Qatari Riyal" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:152 +msgid "PYG - Paraguayan Guaraní*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:151 +msgid "PLN - Polish Złoty" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:150 +msgid "PKR - Pakistani Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:149 +msgid "PHP - Philippine Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:148 +msgid "PGK - Papua New Guinean Kina" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:147 +msgid "PEN - Peruvian Nuevo Sol*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:146 +msgid "PAB - Panamanian Balboa*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:144 +msgid "NPR - Nepalese Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:142 +msgid "NIO - Nicaraguan Córdoba*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:141 +msgid "NGN - Nigerian Naira" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:140 +msgid "NAD - Namibian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:139 +msgid "MZN - Mozambican Metical" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:137 +msgid "MXN - Mexican Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:136 +msgid "MWK - Malawian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:135 +msgid "MVR - Maldivian Rufiyaa" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:134 +msgid "MUR - Mauritian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:133 +msgid "MRO - Mauritanian Ouguiya" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:132 +msgid "MOP - Macanese Pataca" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:131 +msgid "MNT - Mongolian Tögrög" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:130 +msgid "MKD - Macedonian Denar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:129 +msgid "MGA - Malagasy Ariary" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:128 +msgid "MDL - Moldovan Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:126 +msgid "LVL - Latvian Lats" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:124 +msgid "LSL - Lesotho Loti" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:123 +msgid "LRD - Liberian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:122 +msgid "LKR - Sri Lankan Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:121 +msgid "LBP - Lebanese Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:120 +msgid "LAK - Lao Kip*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:119 +msgid "KZT - Kazakhstani Tenge" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:118 +msgid "KYD - Cayman Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:117 +msgid "KRW - South Korean Won" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:116 +msgid "KMF - Comorian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:115 +msgid "KHR - Cambodian Riel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:114 +msgid "KGS - Kyrgyzstani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:113 +msgid "KES - Kenyan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:111 +msgid "JMD - Jamaican Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:110 +msgid "ISK - Icelandic Króna" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:109 +msgid "INR - Indian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:108 +msgid "ILS - Israeli New Sheqel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:107 +msgid "IDR - Indonesian Rupiah" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:105 +msgid "HTG - Haitian Gourde" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:103 +msgid "HNL - Honduran Lempira*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:101 +msgid "GYD - Guyanese Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:100 +msgid "GTQ - Guatemalan Quetzal*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:99 +msgid "GNF - Guinean Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:98 +msgid "GMD - Gambian Dalasi" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:97 +msgid "GIP - Gibraltar Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:96 +msgid "GEL - Georgian Lari" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:94 +msgid "FKP - Falkland Islands Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:93 +msgid "FJD - Fijian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:91 +msgid "ETB - Ethiopian Birr" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:90 +msgid "EGP - Egyptian Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:89 +msgid "EEK - Estonian Kroon*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:88 +msgid "DZD - Algerian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:87 +msgid "DOP - Dominican Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:85 +msgid "DJF - Djiboutian Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:84 +msgid "CZK - Czech Koruna*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:83 +msgid "CVE - Cape Verdean Escudo*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:82 +msgid "CRC - Costa Rican Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:81 +msgid "COP - Colombian Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:80 +msgid "CNY - Chinese Renminbi Yuan" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:79 +msgid "CLP - Chilean Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:77 +msgid "CDF - Congolese Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:76 +msgid "CAD - Canadian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:75 +msgid "BZD - Belize Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:74 +msgid "BWP - Botswana Pula" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:73 +msgid "BSD - Bahamian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:72 +msgid "BRL - Brazilian Real*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:71 +msgid "BOB - Bolivian Boliviano*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:70 +msgid "BND - Brunei Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:69 +msgid "BMD - Bermudian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:68 +msgid "BIF - Burundian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:67 +msgid "BGN - Bulgarian Lev" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:66 +msgid "BDT - Bangladeshi Taka" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:65 +msgid "BBD - Barbadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:64 +msgid "BAM - Bosnia & Herzegovina Convertible Mark" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:63 +msgid "AZN - Azerbaijani Manat" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:62 +msgid "AWG - Aruban Florin" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:61 +msgid "AUD - Australian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:60 +msgid "ARS - Argentine Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:59 +msgid "AOA - Angolan Kwanza*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:58 +msgid "ANG - Netherlands Antillean Gulden" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:57 +msgid "AMD - Armenian Dram" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:56 +msgid "ALL - Albanian Lek" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:55 +msgid "AFN - Afghan Afghani*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:54 +msgid "AED - United Arab Emirates Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:345 +msgid "Skrill balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:327 +msgid "Skrill IPN message received." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:283 +msgid "Skrill" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:278 +msgid "Pending payment" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:144 +msgid "The secret word must match the word submitted in the \"Merchant Tools\" section of your Skrill account." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:134 +msgid "You must use your valid Skrill merchant email. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:133 +msgid "Skrill Email" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:123 +msgid "Resell your inventory via Skrill.com (Moneybookers)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:95 +msgid "ZAR - South-African Rand" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:93 +msgid "TWD - Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:92 +msgid "TRY - New Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:91 +msgid "TND - Tunisian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:90 +msgid "THB - Thailand Baht" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:89 +msgid "SKK - Slovakian Koruna" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:86 +#: includes/common/payment-gateways/stripe.php:158 +msgid "SAR - Saudi Riyal" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:85 +msgid "RSD - Serbian dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:83 +msgid "QAR - Qatari Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:81 +msgid "OMR - Omani Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:80 +msgid "NOK - Norwegian Krone " +msgstr "" + +#: includes/common/payment-gateways/skrill.php:78 +#: includes/common/payment-gateways/stripe.php:138 +msgid "MYR - Malaysian Ringgit" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:77 +#: includes/common/payment-gateways/stripe.php:127 +msgid "MAD - Moroccan Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:74 +msgid "KRW - South-Korean Won" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:72 +msgid "JOD - Jordanian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:70 +msgid "INR - Indian Rupee" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:63 +msgid "EEK - Estonian Kroon" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:56 +msgid "AED - Utd. Arab Emir. Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:52 +msgid "Turkish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:51 +msgid "Swedish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:50 +msgid "Spanish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:49 +msgid "Russian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:48 +msgid "Romainian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:47 +msgid "Polish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:46 +msgid "Italian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:45 +msgid "Greek" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:44 +msgid "German" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:43 +msgid "French" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:42 +msgid "Finnish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:41 +msgid "English" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:40 +msgid "Dutch" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:39 +msgid "Danish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:38 +msgid "Czech" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:37 +msgid "Chinese" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:201 +msgid "There was an error processing your card: %s. Please re-enter your credit card info and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:278 +msgid "
  • There was an error processing your card: \"%s\". Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:274 +msgid "
  • There was an error processing your card. Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:177 +#: includes/common/payment-gateways/stripe.php:279 +msgid "Publishable Key" +msgstr "" + +#: includes/common/payment-gateways/pin.php:163 +msgid "API Credentials?" +msgstr "" + +#: includes/common/payment-gateways/pin.php:147 +msgid "PIN makes it easy to start accepting credit card payments with Australia’s first all-in-one online payment system. Accept all major credit cards directly on your site. Your sales proceeds are deposited to any Australian bank account, no merchant account required." +msgstr "" + +#: includes/common/payment-gateways/pin.php:57 +#: includes/common/payment-gateways/stripe.php:179 +msgid "USD - United States Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:455 +msgid "Email Footer" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:445 +msgid "Email Header" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:416 +msgid "Partner" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:409 +msgid "Vendor" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:852 +#: includes/common/payment-gateways/paypal-express.php:1126 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences\t section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:749 +msgid "Page Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:744 +msgid "Header Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:739 +msgid "Header Border Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:734 +msgid "Header Image" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:680 +msgid "Locale" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:624 +#: includes/common/payment-gateways/paypal-express.php:658 +msgid "Merchant Email" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:645 +msgid "Paypal Express Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:603 +msgid "Paypal Express Network Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:861 +msgid "Application ID (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:854 +msgid "Signature (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:847 +msgid "API Password (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:839 +msgid "API Username (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:832 +msgid "Signature (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:825 +msgid "API Password (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:817 +msgid "API Username (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:799 +msgid "This message is displayed at the top of the gateway settings page to store admins. It's a good place to inform them of your fees or put any sales messages." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:787 +msgid "Please enter your PayPal email address or business ID you want to recieve fees at." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:786 +msgid "PayPal E-mail" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:772 +msgid "Fees to Collect (%)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:375 +#: includes/public/class-mp-checkout.php:341 +msgid "Email Address" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:299 +msgid "Sorry, your order was not completed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:126 +#: includes/common/payment-gateways/paypal-express.php:780 +msgid "You will be redirected to the PayPal site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:90 +#: includes/common/payment-gateways/skrill.php:94 +msgid "USD - U.S. Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:89 +msgid "TRY - Turkish lira" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:88 +#: includes/common/payment-gateways/stripe.php:170 +msgid "THB - Thai Baht" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:87 +msgid "TWD - Taiwan New Dollars" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:86 +#: includes/common/payment-gateways/pin.php:59 +#: includes/common/payment-gateways/skrill.php:88 +#: includes/common/payment-gateways/stripe.php:162 +msgid "SGD - Singapore Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:84 +msgid "RUB - Russian Rubles" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:82 +msgid "PHP - Philippine Pesos" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:81 +#: includes/common/payment-gateways/pin.php:58 +#: includes/common/payment-gateways/skrill.php:79 +#: includes/common/payment-gateways/stripe.php:145 +msgid "NZD - New Zealand Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:79 +msgid "MXN - Mexican Peso" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:78 +msgid "MYR - Malaysian Ringgits" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:77 +#: includes/common/payment-gateways/pin.php:64 +#: includes/common/payment-gateways/skrill.php:73 +#: includes/common/payment-gateways/stripe.php:112 +msgid "JPY - Japanese Yen" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:75 +#: includes/common/payment-gateways/pin.php:63 +#: includes/common/payment-gateways/skrill.php:66 +#: includes/common/payment-gateways/stripe.php:102 +msgid "HKD - Hong Kong Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:73 +msgid "GBP - Pound Sterling" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:68 +#: includes/common/payment-gateways/pin.php:62 +#: includes/common/payment-gateways/skrill.php:59 +msgid "CAD - Canadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:67 +msgid "BRL - Brazilian Real" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:66 +#: includes/common/payment-gateways/pin.php:56 +#: includes/common/payment-gateways/skrill.php:57 +msgid "AUD - Australian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:288 +msgid "There was an error processing your card: \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:163 +msgid "When running on a live site, Paymill recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:161 +#: includes/common/payment-gateways/pin.php:157 +#: includes/common/payment-gateways/simplify.php:103 +#: includes/common/payment-gateways/stripe.php:260 +#: includes/common/payment-gateways/wepay.php:153 +msgid "Force SSL?" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:151 +msgid "Accept Visa, Mastercard, Maestro UK, Discover and Solo cards directly on your site. You don't need a merchant account or gateway. Credit cards go directly to Paymill's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:131 +msgid "CVV2" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:72 +#: includes/common/payment-gateways/pin.php:61 +#: includes/common/payment-gateways/skrill.php:65 +#: includes/common/payment-gateways/stripe.php:95 +msgid "GBP - British Pound" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:71 +#: includes/common/payment-gateways/stripe.php:173 +msgid "TRY - Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:70 +#: includes/common/payment-gateways/paypal-chained-payments.php:85 +#: includes/common/payment-gateways/skrill.php:87 +#: includes/common/payment-gateways/stripe.php:161 +msgid "SEK - Swedish Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:69 +#: includes/common/payment-gateways/skrill.php:84 +msgid "RON - Romanian Leu New" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:68 +#: includes/common/payment-gateways/paypal-chained-payments.php:83 +#: includes/common/payment-gateways/skrill.php:82 +msgid "PLN - Polish Zloty" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:67 +#: includes/common/payment-gateways/paypal-chained-payments.php:80 +#: includes/common/payment-gateways/stripe.php:143 +msgid "NOK - Norwegian Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:66 +#: includes/common/payment-gateways/skrill.php:75 +#: includes/common/payment-gateways/stripe.php:125 +msgid "LTL - Lithuanian Litas" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:65 +#: includes/common/payment-gateways/paypal-chained-payments.php:69 +#: includes/common/payment-gateways/skrill.php:60 +#: includes/common/payment-gateways/stripe.php:78 +msgid "CHF - Swiss Franc" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:64 +#: includes/common/payment-gateways/skrill.php:76 +msgid "LVL - Latvian Lat" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:63 +#: includes/common/payment-gateways/paypal-chained-payments.php:74 +#: includes/common/payment-gateways/skrill.php:69 +msgid "ILS - Israeli Shekel" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:62 +#: includes/common/payment-gateways/skrill.php:71 +msgid "ISK - Iceland Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:61 +#: includes/common/payment-gateways/paypal-chained-payments.php:76 +#: includes/common/payment-gateways/skrill.php:68 +#: includes/common/payment-gateways/stripe.php:106 +msgid "HUF - Hungarian Forint" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:60 +#: includes/common/payment-gateways/paypal-chained-payments.php:71 +#: includes/common/payment-gateways/skrill.php:62 +#: includes/common/payment-gateways/stripe.php:86 +msgid "DKK - Danish Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:59 +#: includes/common/payment-gateways/skrill.php:67 +#: includes/common/payment-gateways/stripe.php:104 +msgid "HRK - Croatian Kuna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:58 +#: includes/common/payment-gateways/paypal-chained-payments.php:70 +#: includes/common/payment-gateways/skrill.php:61 +msgid "CZK - Czech Koruna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:57 +#: includes/common/payment-gateways/skrill.php:58 +msgid "BGN - Bulgarian Leva" +msgstr "" + +#: includes/common/payment-gateways/payflow/class-mp-gateway-worker-payflow.php:123 +msgid "There was an error connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:344 +msgid "This setting will log all PayFast communication to the \"payfast.log\" file." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:342 +msgid "Log Debugging Info?" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:335 +msgid "DO NOT INPUT A VALUE UNLESS YOU HAVE SET ONE IN THE SETTINGS SECTION OF YOUR PAYFAST SETTINGS." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:333 +msgid "PayFast Passphrase" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:323 +msgid "You can find your credentials on your integration page." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:321 +msgid "PayFast Merchant Credentials" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:311 +msgid "PayFast Mode" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:308 +msgid "PayFast is a payments processing service for South Africa. We make it safe for buyers to send money and easy for sellers to receive money. More Info »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:306 +msgid "PayFast Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:285 +msgid "Your payment via PayFast for this order totaling %s is complete. The transaction number is %s." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:278 +msgid "Your payment via PayFast for this order totaling %s is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:124 +msgid "Your PayFast transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:82 +#: includes/common/payment-gateways/payfast.php:83 +msgid "PayFast" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:157 +msgid "API error: - \"%s\"" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:198 +msgid "The payment request is under process" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:140 +msgid "Order: #" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:116 +msgid "You will be redirected to the Mollie site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:73 +msgid "%sMollie%s provides a fully PCI Compliant and secure way to collect payments via iDeal, Credit Card, Bancontact / Mister Cash, SOFORT Banking, Overbooking, Bitcoin, PayPal, paysafecard and AcceptEmail." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:53 +#: includes/common/payment-gateways/mollie.php:54 +#: includes/common/payment-gateways/mollie.php:195 +#: includes/common/payment-gateways/mollie.php:245 +msgid "Mollie" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:50 +#: includes/common/payment-gateways/paymill.php:56 +#: includes/common/payment-gateways/paypal-chained-payments.php:72 +#: includes/common/payment-gateways/pin.php:60 +#: includes/common/payment-gateways/skrill.php:64 +#: includes/common/payment-gateways/stripe.php:92 +msgid "EUR - Euro" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:306 +msgid "Access Key" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:300 +msgid "You must login to the Mijireh.com dashboard to obtain the Access Key." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:299 +msgid "Credentials" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:289 +msgid "Mijireh Checkout provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:269 +msgid "Mijireh Error: " +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:89 +msgid "You will be redirected to the Mijireh.com site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:87 +msgid "Your Mijireh transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:42 +#: includes/common/payment-gateways/mijireh.php:43 +#: includes/common/payment-gateways/mijireh.php:324 +msgid "Mijireh" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:145 +msgid "These are the manual payment instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:189 +msgid "This is the email text to send to those who have made free order checkouts. You should include your free order instructions / information here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:183 +msgid "This is the free order information to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:182 +msgid "Confirmation User Information" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:177 +msgid "This is the information to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:163 +msgid "If enabled, all free orders will be automatically marked as paid." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:159 +msgid "Payment Status" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:149 +msgid "This gateway is automatically activated if order totalling 0 and it can't be disabled" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:35 +#: includes/common/payment-gateways/free_orders.php:36 +#: includes/common/payment-gateways/free_orders.php:89 +msgid "Free Order" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:34 +#: includes/common/payment-gateways/free_orders.php:197 +msgid "Free Orders" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:515 +msgid "Sandbox API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:266 +#: includes/common/payment-gateways/eway31.php:542 +msgid "eWay Rapid 3.1 Payments (beta)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:403 +msgid "Hosted Payment Page Language" +msgstr "" + +#: includes/common/payment-gateways/eway.php:373 +msgid "Note when testing in sandbox mode it will use the default eWay test API credentials. Also, please note that cart total needs to be a whole number (e.g. 10.00) in order to generate a successful transaction, otherwise the transaction will fail." +msgstr "" + +#: includes/common/payment-gateways/eway.php:267 +msgid "You will be redirected to https://www.eway.com.au to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:380 +msgid "You have chosen to checkout using %s. Please confirm your order details and click \"Submit Order\" when finished." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:272 +#: includes/common/payment-gateways/paymill.php:131 +#: includes/common/payment-gateways/stripe.php:231 +msgid "Security Code " +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Enter in MM/YYYY or MM/YY format" +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Expiration" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:321 +msgid "Delim Data" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:307 +#: includes/common/payment-gateways/paypal-payflow.php:456 +msgid "This text will appear as the footer of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:287 +#: includes/common/payment-gateways/paypal-payflow.php:440 +msgid "Email Customer (on success)" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:278 +msgid "Authorize.net default is \",\". Otherwise, get this from your credit card processor. If the transactions are not going through, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:277 +msgid "Delimeter Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:193 +msgid "Held For Review" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:310 +#: includes/common/payment-gateways/payfast.php:314 +msgid "Test" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:300 +#: includes/common/payment-gateways/pin.php:170 +#: includes/common/payment-gateways/stripe.php:272 +msgid "Secret Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:283 +msgid "Select Your Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:97 +msgid "Your payment will be processed by the iDEAL network" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:208 +msgid "These are the CubePoints to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:203 +msgid "These are the CubePoints instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:266 +msgid "If enabled, all API calls will be made to https://test.bitpay.com." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:263 +msgid "Use Test Mode?" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:259 +msgid "If checked, response fron bitpay will be stored in log file, keep it disabled unless required." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:256 +msgid "Enable Debug Log" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:249 +msgid "Full Notifications" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:231 +#: includes/common/payment-gateways/eway31.php:499 +#: includes/common/payment-gateways/eway31.php:526 +#: includes/common/payment-gateways/mollie.php:83 +#: includes/common/shipping-modules/mp-fedex.php:269 +msgid "API Key" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:222 +msgid "You can now accept a payment from any country on Earth, with no risk of fraud. To use Bitpay, you need to signup on Bitpay. \\n After completing the signup process, you can get api keys at Bitpay API key. You can read more about Bitpay at Bitpay API. \\n Bitpay requires SSL(https) for payment notifications to work." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:61 +msgid "You will be redirected to bitpay.com, for bitcoin payment. It is completely safe." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:346 +msgid "You must login to the 2Checkout vendor dashboard to obtain the seller ID and secret word. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:345 +#: includes/common/payment-gateways/authorizenet-aim.php:239 +#: includes/common/payment-gateways/paymill.php:168 +#: includes/common/payment-gateways/paypal-express.php:704 +#: includes/common/payment-gateways/simplify.php:80 +#: includes/common/payment-gateways/stripe.php:265 +#: includes/common/payment-gateways/wepay.php:158 +msgid "API Credentials" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:325 +#: includes/common/payment-gateways/_bitpay.php:220 +#: includes/common/payment-gateways/_cubepoints.php:185 +#: includes/common/payment-gateways/_ideal.php:268 +#: includes/common/payment-gateways/_payway.php:255 +#: includes/common/payment-gateways/authorizenet-aim.php:219 +#: includes/common/payment-gateways/eway.php:352 +#: includes/common/payment-gateways/eway31.php:460 +#: includes/common/payment-gateways/free_orders.php:147 +#: includes/common/payment-gateways/manual-payments.php:126 +#: includes/common/payment-gateways/mijireh.php:287 +#: includes/common/payment-gateways/mollie.php:71 +#: includes/common/payment-gateways/paymill.php:149 +#: includes/common/payment-gateways/paypal-chained-payments.php:344 +#: includes/common/payment-gateways/paypal-payflow.php:376 +#: includes/common/payment-gateways/pin.php:145 +#: includes/common/payment-gateways/simplify.php:69 +#: includes/common/payment-gateways/skrill.php:121 +#: includes/common/payment-gateways/stripe.php:249 +#: includes/common/payment-gateways/wepay.php:119 +#: includes/common/shipping-modules/mp-fedex.php:243 +#: includes/common/shipping-modules/mp-flat-rate.php:63 +#: includes/common/shipping-modules/mp-pickup.php:140 +#: includes/common/shipping-modules/mp-table-rate.php:94 +#: includes/common/shipping-modules/mp-ups.php:122 +#: includes/common/shipping-modules/mp-usps.php:167 +#: includes/common/shipping-modules/mp-weight-rate.php:110 +msgid "%s Settings" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:136 +msgid "You will be redirected to the 2Checkout site to finalize your payment." +msgstr "" + +#: includes/common/helpers.php:169 includes/public/class-mp-checkout.php:1277 +msgid "Billing" +msgstr "" + +#: includes/common/helpers.php:144 +msgid "FREE" +msgstr "" + +#: includes/common/helpers.php:134 +msgid "Coupons:" +msgstr "" + +#: includes/common/helpers.php:95 +msgid "Qty" +msgstr "" + +#: includes/common/helpers.php:94 +msgid "Sku" +msgstr "" + +#: includes/common/data.php:59 +msgid "Zip Code" +msgstr "" + +#: includes/common/class-mp-taxes.php:336 +msgid "Standard Table" +msgstr "" + +#: includes/common/class-mp-product.php:2698 +msgid "Tweet" +msgstr "" + +#: includes/common/class-mp-product.php:2321 +msgid "Notification Preferences: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2320 +msgid "Edit Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2318 +msgid "Link: %s

    " +msgstr "" + +#: includes/common/class-mp-product.php:2317 +msgid "Current Inventory: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2316 +msgid "Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2314 +msgid "This message is being sent to notify you of low stock of a product in your online store according to your preferences.

    " +msgstr "" + +#: includes/common/class-mp-product.php:1817 +msgid "" +msgstr "" + +#: includes/common/class-mp-product.php:1427 +#: includes/common/class-mp-product.php:1430 +msgid "(tax incl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1422 +#: includes/common/class-mp-product.php:1425 +msgid "(tax excl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1300 +#: includes/common/class-mp-product.php:1315 +msgid "%s each" +msgstr "" + +#: includes/common/class-mp-product.php:988 +msgid "Choose Options" +msgstr "" + +#: includes/common/class-mp-product.php:526 +msgid "Choose a %s" +msgstr "" + +#: includes/common/class-mp-product.php:284 +#: includes/common/class-mp-product.php:292 +#: includes/common/class-mp-product.php:615 +msgid "We're sorry, we only have %d of this item in stock right now." +msgstr "" + +#: includes/common/class-mp-order.php:1456 +msgid "Shipped: Track Shipment" +msgstr "" + +#: includes/common/class-mp-order.php:1049 +msgid "Order Received" +msgstr "" + +#: includes/common/class-mp-order.php:1014 +msgid "In Process" +msgstr "" + +#: includes/common/class-mp-order.php:969 +msgid "Order #" +msgstr "" + +#: includes/common/class-mp-order.php:866 +msgid "Copy billing address to shipping address" +msgstr "" + +#: includes/common/class-mp-order.php:822 +#: includes/public/class-mp-checkout.php:1314 +msgid "Special Instructions" +msgstr "" + +#: includes/common/class-mp-order.php:817 +#: includes/common/payment-gateways/stripe.php:335 +msgid "Email" +msgstr "" + +#: includes/common/class-mp-order.php:813 +#: includes/common/payment-gateways/stripe.php:341 +#: includes/public/class-mp-checkout.php:416 +msgid "Phone" +msgstr "" + +#: includes/common/class-mp-order.php:791 +#: includes/common/payment-gateways/stripe.php:337 +msgid "State" +msgstr "" + +#: includes/common/class-mp-order.php:776 +msgid "Address 1" +msgstr "" + +#: includes/common/class-mp-order.php:766 +msgid "Last Name" +msgstr "" + +#: includes/common/class-mp-order.php:762 +msgid "First Name" +msgstr "" + +#: includes/common/class-mp-installer.php:677 +msgid "MarketPress requires a database update to continue working correctly. Go to update page" +msgstr "" + +#: includes/common/class-mp-installer.php:657 +msgid "MarketPress performed a quick automatic update successfully!" +msgstr "" + +#: includes/common/class-mp-installer.php:653 +msgid "Perform Update" +msgstr "" + +#: includes/common/class-mp-installer.php:647 +msgid "Please update each subsite in your WordPress network where you have older version of the MarketPress plugin." +msgstr "" + +#: includes/common/class-mp-installer.php:641 +msgid "Depending on the amount of products you have, this update could take quite some time. Please keep this window open while the update completes. If you have products with multiple variations, the progress bar may move slower, please don't exit the window." +msgstr "" + +#: includes/common/class-mp-installer.php:632 +msgid "Product Metadata" +msgstr "" + +#: includes/common/class-mp-installer.php:601 +msgid "MarketPress requires a database update to continue working correctly.
    Below you will find a list of items that require your attention." +msgstr "" + +#: includes/common/class-mp-installer.php:600 +msgid "Update MarketPress Data" +msgstr "" + +#: includes/common/class-mp-installer.php:530 +msgid "Update Data" +msgstr "" + +#: includes/common/class-mp-installer.php:67 +msgid "Complete!" +msgstr "" + +#: includes/common/class-mp-installer.php:66 +msgid "Upgrading Database...Please Wait..." +msgstr "" + +#: includes/common/class-mp-installer.php:64 +msgid "An error occurred while updating. Please refresh this page and try again." +msgstr "" + +#: includes/common/class-mp-cart.php:2447 +msgid "Some items in your cart have fallen below the quantity you currently have in your cart. We have adjusted the quantity in your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:2443 +msgid "Some items in your cart are no longer available. We have removed these items from your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:1566 +msgid "item" +msgstr "" + +#: includes/common/class-mp-cart.php:1563 +#: includes/common/class-mp-cart.php:1568 +msgid "items" +msgstr "" + +#: includes/common/class-mp-cart.php:1363 +msgid "Items/Products added to Cart will show here." +msgstr "" + +#: includes/common/class-mp-cart.php:1362 +msgid "Your shopping cart is empty." +msgstr "" + +#: includes/common/class-mp-cart.php:1357 +msgid "View Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1241 +#: includes/common/class-mp-cart.php:1298 +#: includes/public/class-mp-short-codes.php:159 +msgid "Adding..." +msgstr "" + +#: includes/common/class-mp-cart.php:1033 +msgid "Continue Shopping?" +msgstr "" + +#: includes/common/class-mp-cart.php:961 +msgid "Secure Checkout
    Shopping is always safe and secure." +msgstr "" + +#: includes/common/class-mp-cart.php:959 +msgid "You are about to submit your order!
    Please review your order details before continuing. You will be charged immediately upon clicking \"Submit Order\"." +msgstr "" + +#: includes/common/class-mp-cart.php:956 +msgid "Continue »" +msgstr "" + +#: includes/common/class-mp-cart.php:955 +msgid "Submit Order" +msgstr "" + +#: includes/common/class-mp-cart.php:818 +msgid "There are no items in your cart - go add some !" +msgstr "" + +#: includes/common/class-mp-cart.php:816 +msgid "The cart is disabled." +msgstr "" + +#: includes/common/class-mp-cart.php:735 +msgid "Estimated %s" +msgstr "" + +#: includes/common/class-mp-cart.php:717 +msgid "Estimated Shipping" +msgstr "" + +#: includes/common/class-mp-cart.php:697 +msgid "Product Total" +msgstr "" + +#: includes/common/class-mp-cart.php:670 includes/common/class-mp-cart.php:672 +msgid "Estimated Total (%s, %s)" +msgstr "" + +#: includes/common/class-mp-cart.php:668 +msgid "Estimated Total (%s)" +msgstr "" + +#: includes/common/class-mp-cart.php:666 includes/common/class-mp-cart.php:752 +msgid "Estimated Total" +msgstr "" + +#: includes/admin/widgets/product-list.php:247 +msgid "Show Thumbnail Placeholder image (if image is not set)" +msgstr "" + +#: includes/admin/widgets/cart.php:73 +msgid "Display product price" +msgstr "" + +#: includes/admin/widgets/cart.php:71 +msgid "Display product quantity" +msgstr "" + +#: includes/admin/widgets/cart.php:69 +msgid "Display product image" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:93 +msgid "General Shipping Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:773 +msgid "If you are having conflicts with the lightbox library from your theme or another plugin you should uncheck this." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:772 +msgid "Use Built-In Lightbox for Images?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:762 +msgid "Disable Large Image Display?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:688 +msgid "Show Product Image?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:682 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:684 +msgid "Show Tags List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:676 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:678 +msgid "Show Categories List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:671 +msgid "If enabled, description excerpt will be added above Add to cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:669 +msgid "Show Excerpt?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:665 +msgid "If enabled, users will be able to choose how many of the product they want to purchase before adding to their cart. If not checked, quantity could be change later on the cart page." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:663 +msgid "Show Quantity Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:649 +msgid "Settings related to the display of individual product pages." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:648 +msgid "Product Page Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:605 +msgid "Related Products Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:573 +msgid "Show Related Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:568 +msgid "Related Product Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:549 +msgid "Order Status Entries Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:510 +msgid "Sort Products By" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:497 +msgid "Products Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:492 +msgid "Paginate Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:478 +msgid "Excerpts Length" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:473 +msgid "Show Excerpts?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:450 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:746 +msgid "Image Alignment" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:412 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:708 +msgid "Custom Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:401 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:697 +msgid "Large - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:400 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:696 +msgid "Medium - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:399 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:695 +msgid "Thumbnail - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:397 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:693 +msgid "Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:386 +msgid "Select default placeholder image thumbnail when product image is not available (if empty, plugin's built-in image will be used)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:380 +msgid "Show default product placeholder thumbnail when product image is not available?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:374 +msgid "Show Product Thumbnail?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:369 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:658 +msgid "Redirect to cart page for immediate checkout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:368 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:657 +msgid "Stay on current product page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:366 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:655 +msgid "MarketPress supports two \"flows\" for adding products to the shopping cart. After adding a product to their cart, two things can happen:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:365 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:654 +msgid "Add To Cart Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:355 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:628 +msgid "Four" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:354 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:627 +msgid "Three" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:353 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:626 +msgid "Two" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:625 +msgid "One" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:349 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:622 +msgid "Set the number of products that show up in a grid row to best fit your theme" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:348 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:621 +msgid "How many products per row?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:342 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:609 +msgid "Display as grid" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:341 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:608 +msgid "Display as list" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:339 +msgid "Product Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:334 +msgid "Settings related to the display of product lists/grids." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:333 +msgid "Product List/Grid Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:314 +msgid "Show Twitter Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:309 +msgid "Twitter" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:303 +msgid "Show Share Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:297 +msgid "Recommend" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:296 +msgid "Like" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:294 +msgid "Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:283 +msgid "Show Facebook Like Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:278 +msgid "Facebook" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:257 +msgid "Show \"Pin It\" Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:252 +msgid "Pinterest" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:246 +msgid "Social Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:193 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:202 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:211 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:220 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:229 +#: includes/multisite/class-mp-admin-multisite.php:532 +#: includes/multisite/class-mp-admin-multisite.php:541 +#: includes/multisite/class-mp-admin-multisite.php:550 +msgid "Choose a Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:191 +msgid "This page will be used as the root for your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:168 +#: includes/multisite/class-mp-admin-multisite.php:586 +msgid "Create Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "uncropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "cropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:87 +#: includes/multisite/class-mp-admin-multisite.php:121 +#: includes/multisite/class-mp-admin-multisite.php:620 +msgid "An error occurred while creating the store page. Please try again." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:66 +msgid "Choose the gateway(s) that you would like to be available for checkout." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:65 +msgid "Enabled Gateways" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:78 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:146 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:179 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:213 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:274 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:307 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:341 +msgid "Text" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:71 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:139 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:172 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:206 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:267 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:300 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:334 +msgid "Subject" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:52 +msgid "Notification Email" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:510 +msgid "Enabling this option will display label `excl. tax` or `incl. tax` after price" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:509 +msgid "Display tax label?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:504 +msgid "Enabling this option will show Price + Tax, eg. if your price is 100 and your tax 20, your price will be 120" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:416 +#: includes/multisite/class-mp-admin-multisite.php:234 +msgid "Price Format" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:366 +msgid "Enabling this field will display a textbox on the shipping checkout page for users to enter special instructions for their order. Useful for product personalization, etc." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:365 +msgid "Show Special Instructions Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:360 +msgid "Universal" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:359 +msgid "Old" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1167 +#: includes/admin/store-settings/class-mp-store-settings-general.php:358 +msgid "New" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:353 +msgid "If you already use Google Analytics for your website, you can track detailed ecommerce information by enabling this setting. Choose whether you are using the new asynchronous or old tracking code. Before Google Analytics can report ecommerce activity for your website, you must enable ecommerce tracking on the profile settings page for your website. Also keep in mind that some gateways do not reliably show the receipt page, so tracking may not be accurate in those cases. It is recommended to use the PayPal gateway for the most accurate data. More information »" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:347 +msgid "Do you want to display the product price on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:346 +msgid "Show product price on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:340 +msgid "Do you want to display the product quantity on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:339 +msgid "Show product quantity on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:333 +msgid "Do you want to display the product image on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:332 +msgid "Show product image on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:327 +msgid "This option hide floating Mini Cart in top right corner." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:326 +msgid "Disable Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:316 +msgid "If unchecked your Orders admin page will be hidden" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:315 +msgid "Show admin Orders page?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:309 +msgid "Disable Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:303 +msgid "Force Login?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:297 +msgid "Hide Out of Stock Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:555 +msgid "This will prevent multiples of the same downloadable product form being added to the cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:554 +msgid "Limit Digital Products Per-order?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:268 +msgid "If you're having issues downloading large files and have worked with your hosting provider to increase your memory limits, try enabling this - just keep in mind, it's not as secure!" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:267 +msgid "Use Alternative Download Method?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:252 +msgid "Download Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:230 +msgid "Change product post type" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:51 +msgid "%s Capabilities" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-addons.php:47 +msgid "Store Settings: Add Ons: %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:254 +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:56 +msgid "Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Edit Product Attribute %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:246 +msgid "Exporters" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:238 +msgid "Short Codes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:207 +msgid "An appropriate message for key \"%s\" could not be found." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:204 +msgid "Product attribute updated successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:203 +msgid "Product attribute added successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +msgid "Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +#: includes/admin/store-settings/class-mp-store-settings-addons.php:121 +msgid "Store Settings: Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "Store Settings: Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:118 +msgid "Store Settings: Product Tags" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:117 +msgid "Store Settings: Product Categories" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Store Settings: Product Attributes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +msgid "Store Settings: Payments" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:114 +msgid "Store Settings: Shipping" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +#: includes/admin/class-mp-store-settings-admin.php:226 +msgid "Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +msgid "Store Settings: Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:112 +msgid "Store Settings: Presentation" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:111 +msgid "Store Settings: General" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1489 +msgid "Select a Product" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1447 +msgid "Reset to Defaults" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1446 +msgid "Insert Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1202 +#: includes/admin/class-mp-shortcode-builder.php:1227 +#: includes/admin/class-mp-shortcode-builder.php:1252 +msgid "The text to show in the link." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1196 +#: includes/admin/class-mp-shortcode-builder.php:1221 +#: includes/admin/class-mp-shortcode-builder.php:1246 +msgid "Whether to return a clickable link or url." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1177 +msgid "Whether to display the cart only on store pages or not." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1171 +msgid "Whether to show or hide the product price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1165 +msgid "Whether to show or hide the product quantity." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1159 +msgid "Whether to show or hide the product image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1153 +msgid "The text displayed before the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1147 +msgid "The title of the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1058 +#: includes/admin/class-mp-shortcode-builder.php:1121 +msgid "A label to prepend to the price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1032 +#: includes/admin/class-mp-shortcode-builder.php:1127 +msgid "What context for display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1004 +msgid "Set the alignment of the image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:998 +msgid "Set a custom pixel width/height. If omitted defaults to the size set by \"context\"." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:993 +msgid "Widget" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:988 +msgid "What context for preset size options." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:982 +#: includes/admin/class-mp-shortcode-builder.php:1026 +#: includes/admin/class-mp-shortcode-builder.php:1052 +#: includes/admin/class-mp-shortcode-builder.php:1077 +#: includes/admin/class-mp-shortcode-builder.php:1096 +#: includes/admin/class-mp-shortcode-builder.php:1115 +msgid "The ID of the product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:963 +msgid "Whether to display the product meta (e.g. price, buy button)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:738 +#: includes/admin/class-mp-shortcode-builder.php:905 +#: includes/admin/class-mp-shortcode-builder.php:958 +#: includes/admin/class-mp-shortcode-builder.php:992 +#: includes/admin/class-mp-shortcode-builder.php:1035 +#: includes/admin/class-mp-shortcode-builder.php:1130 +#: includes/admin/class-mp-shortcode-builder.php:1349 +msgid "List" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:957 +#: includes/admin/class-mp-shortcode-builder.php:991 +#: includes/admin/class-mp-shortcode-builder.php:1034 +#: includes/admin/class-mp-shortcode-builder.php:1129 +msgid "Single" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:953 +msgid "Whether and what context of image size to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:948 +msgid "Full" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:943 +msgid "Whether and what type of content to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:937 +msgid "Whether to display the product title." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:931 +msgid "The ID of the product to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:747 +#: includes/admin/class-mp-shortcode-builder.php:914 +msgid "Hide" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:746 +#: includes/admin/class-mp-shortcode-builder.php:913 +msgid "Show" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:744 +#: includes/admin/class-mp-shortcode-builder.php:911 +msgid "Whether or not to show the product filters." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:724 +#: includes/admin/class-mp-shortcode-builder.php:891 +#: includes/admin/class-mp-shortcode-builder.php:1335 +msgid "Limits list to a specific product tag." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:713 +#: includes/admin/class-mp-shortcode-builder.php:880 +#: includes/admin/class-mp-shortcode-builder.php:1324 +msgid "Limits list to a specific product category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:706 +#: includes/admin/class-mp-shortcode-builder.php:873 +#: includes/admin/class-mp-shortcode-builder.php:1317 +msgid "Direction to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:684 +#: includes/admin/class-mp-shortcode-builder.php:851 +#: includes/admin/class-mp-shortcode-builder.php:1295 +msgid "What field to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:678 +#: includes/admin/class-mp-shortcode-builder.php:845 +#: includes/admin/class-mp-shortcode-builder.php:1283 +msgid "How many products to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:672 +#: includes/admin/class-mp-shortcode-builder.php:839 +#: includes/admin/class-mp-shortcode-builder.php:1277 +msgid "The page number to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:666 +#: includes/admin/class-mp-shortcode-builder.php:833 +#: includes/admin/class-mp-shortcode-builder.php:1271 +msgid "Whether to paginate the product list. This is useful to only show a subset." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:808 +msgid "How many related items to show." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:790 +msgid "How to relate the products" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:784 +msgid "The product to show related items for." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:765 +msgid "The maximum number of products to display" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:647 +msgid "Comma separated list of tags (term_id) to include. For example, include=5,27 means tags that have the term_id 5 or 27 will be the only tags displayed. Defaults to include everything." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:641 +msgid "Comma separated list of tags (term_id) to exclude. For example, exclude=5,27 means tags that have the term_id 5 or 27 will NOT be displayed. Defaults to exclude nothing." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:633 +#: includes/admin/class-mp-shortcode-builder.php:1420 +msgid "Sort order." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:629 +#: includes/admin/class-mp-shortcode-builder.php:1416 +msgid "Count" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:626 +#: includes/admin/class-mp-shortcode-builder.php:1413 +msgid "Order of the tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:620 +msgid "The text/space between tags)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:616 +msgid "UL with a class of \"wp-tag-cloud\"" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:615 +msgid "separated by whitespace defined by \"separator\" parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:613 +msgid "Format of the cloud display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:607 +msgid "The number of actual tags to display in the cloud. (Use \"0\" to display all tags.)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:601 +msgid "Unit of measure as pertains to the smallest and largest values. This can be any CSS length value, e.g. pt, px, em, %." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:595 +msgid "The text size of the tag with the largest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:589 +msgid "The text size of the tag with the smallest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:570 +msgid "The \"tabindex\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:564 +msgid "The \"name\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:558 +msgid "The \"id\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:552 +msgid "Which category ID is selected." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:540 +msgid "The max depth. This is ignored unless hierarchical is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:536 +#: includes/multisite/template-functions.php:816 +msgid "No Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:414 +#: includes/admin/class-mp-shortcode-builder.php:546 +msgid "Calculates link or post counts by including items from child categories. If show_counts and hierarchical are true this is automatically set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:409 +msgid "Value of n (some number) specifies the depth (or level) to descend in displaying Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:408 +msgid "Show only top level Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:407 +msgid "All Categories displayed in flat (no indent) form (overrides hierarchical)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:406 +msgid "All Categories and child Categories (Default)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:402 +msgid "This parameter controls how many levels in the hierarchy of Categories are to be included in the list of Categories. NOTE: The \"hierarchical\" argument, which is disabled by default, will override the depth argument, unless it is true. When the argument is false, it will display all of the categories. When it is enabled it will use the value in the \"depth\" argument." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:396 +#: includes/admin/class-mp-shortcode-builder.php:1394 +msgid "Sets the number of Categories to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:390 +#: includes/admin/class-mp-shortcode-builder.php:534 +msgid "Set the text to show when no categories are listed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:384 +msgid "Set the title and style of the outer list item. If present but empty, the outer list item will not be displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:378 +#: includes/admin/class-mp-shortcode-builder.php:528 +msgid "Display sub-categories as inner list items (below the parent list item) or inline." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:368 +#: includes/admin/class-mp-shortcode-builder.php:511 +msgid "Exclude category-tree from the results. The parameter include must be empty. If the hierarchical parameter is true, then use exclude instead of exclude_tree." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:354 +msgid "Only include these categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:340 +#: includes/admin/class-mp-shortcode-builder.php:356 +#: includes/admin/class-mp-shortcode-builder.php:370 +#: includes/admin/class-mp-shortcode-builder.php:496 +#: includes/admin/class-mp-shortcode-builder.php:513 +msgid "Select Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:338 +#: includes/admin/class-mp-shortcode-builder.php:494 +msgid "Exclude one or more categories from the results. The parameter include must be empty." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:332 +msgid "Set a URI for an image (usually an rss feed icon) to act as a link to each categories' rss-2 feed. This parameter overrides the feed parameter. There is no default for this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:320 +msgid "Display a link to each category's rss-2 feed and set the link text to display. The default is no text and no feed displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:313 +#: includes/admin/class-mp-shortcode-builder.php:487 +msgid "Any" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:307 +#: includes/admin/class-mp-shortcode-builder.php:481 +msgid "Only display categories that are children of the category identified by this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:301 +msgid "Sets whether a category's description is inserted into the title attribute of the links created (i.e. <a title=\"<em>Category Description</em>\" href=\"...)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:295 +#: includes/admin/class-mp-shortcode-builder.php:475 +msgid "Toggles the display of categories with no posts." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:289 +#: includes/admin/class-mp-shortcode-builder.php:469 +#: includes/admin/class-mp-shortcode-builder.php:1388 +msgid "Toggles the display of the current count of posts in each category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:279 +msgid "Style to display the categories list in. A value of list displays the categories as list items while none generates no special display method (the list items are separated by
    tags)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:269 +#: includes/admin/class-mp-shortcode-builder.php:449 +#: includes/admin/class-mp-shortcode-builder.php:1378 +msgid "Sort order for categories (either ascending or descending)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:259 +#: includes/admin/class-mp-shortcode-builder.php:439 +#: includes/admin/class-mp-shortcode-builder.php:1368 +msgid "Sort categories alphabetically, by unique Category ID, or by the count of posts in that Category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:253 +#: includes/admin/class-mp-shortcode-builder.php:433 +msgid "If a value is entered, causes the display of a link to all categories if the style is set to list." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:219 +msgid "Select an Action" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:217 +msgid "What would you like to do?" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:216 +#: includes/admin/class-mp-shortcode-builder.php:1522 +msgid "Add E-Commerce Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:197 +msgid "Display a list of links to your store pages." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:196 +msgid "Display a link or url to the order status page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:195 +msgid "Display a link or url to the current products list page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:194 +msgid "Display a link or url to the current store page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:193 +msgid "Display a link or url to the current shopping cart page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:192 +msgid "Display the cart widget." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:191 +msgid "Display the full product meta box with price and buy now/add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:190 +msgid "Display the product stock." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:189 +msgid "Display the product SKU number(s)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:188 +msgid "Display the product price (and sale price)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:187 +msgid "Display the buy or add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:186 +msgid "Display the featured image of a given product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:185 +msgid "Display a single product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:184 +msgid "Display a list of products according to preference." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:183 +msgid "Display products related to the one being viewed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:182 +msgid "Display a list of popular products ordered by sales." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:180 +msgid "Display an HTML dropdown of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:179 +msgid "Display an HTML list of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:178 +msgid "Display a cloud or list of your product tags." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:655 +msgid "Setup your payment gateway" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:643 +#: includes/admin/class-mp-setup-wizard.php:649 +msgid "Other Gateways" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:617 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:150 +msgid "Select which calculated shipping methods the customer will be able to choose from." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:601 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:134 +#: includes/public/class-mp-checkout.php:82 +msgid "Shipping Method" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:568 +msgid "I want to charge shipping" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:523 +#: includes/admin/store-settings/class-mp-store-settings-general.php:503 +msgid "Show Price + Tax?" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:507 +msgid "I.e. Taxes, VAT, GST, etc" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:491 +#: includes/admin/store-settings/class-mp-store-settings-general.php:471 +msgid "Current Rates" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:473 +msgid "Default Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:434 +#: includes/admin/class-mp-setup-wizard.php:442 +#: includes/admin/store-settings/class-mp-store-settings-general.php:386 +#: includes/admin/store-settings/class-mp-store-settings-general.php:394 +#: includes/multisite/class-mp-admin-multisite.php:204 +#: includes/multisite/class-mp-admin-multisite.php:212 +msgid "Select a Currency" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:414 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:105 +msgid "Choose Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:411 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:103 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:104 +msgid "All Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:410 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:102 +msgid "These are the countries that you will ship to." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:409 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:101 +msgid "Target Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:401 +msgid "Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:387 +#: includes/admin/store-settings/class-mp-store-settings-general.php:640 +msgid "Zip/Postal Code Label" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:352 +#: includes/admin/store-settings/class-mp-store-settings-general.php:606 +msgid "Select a State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:335 +#: includes/admin/store-settings/class-mp-store-settings-general.php:590 +msgid "Select A Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:332 +#: includes/admin/store-settings/class-mp-store-settings-general.php:587 +msgid "Select a Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:324 +msgid "Location" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:304 +#: includes/admin/class-mp-setup-wizard.php:312 +#: includes/admin/class-mp-store-settings-admin.php:129 +#: includes/admin/class-mp-store-settings-admin.php:262 +msgid "Quick Setup" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:289 +msgid "MarketPress setup is not complete! Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2479 +msgid "Enter your product name here" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2440 +msgid "Select a %s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2426 +msgid "Each product variation needs to have product attributes assigned to it so the system knows how to differentiate one product variation from the other. It is important that you assign a category to this product before choosing any attributes." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2409 +msgid "If you would like this variation to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2320 +msgid "Sale Price (if applicable)" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2281 +msgid "If you would like the description to be different than the main product enter it here." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2229 +msgid "Image" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2202 +#: includes/admin/class-mp-shortcode-builder.php:226 +msgid "Attributes" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2166 +msgid "Create your product variations here. You can reorder variations by using the number to left of each variation, or delete one by clicking the \"x\" to the right of each variation. NOTE: The variation that shows up first in this list will be considered the \"main variation\". The details from this variation will be used in product listings." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2061 +#: includes/admin/class-mp-products-admin.php:2332 +msgid "Value must be less than regular price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2043 +#: includes/admin/class-mp-products-admin.php:2306 +msgid "Regular Price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2023 +#: includes/admin/class-mp-products-admin.php:2286 +msgid "External URL" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1988 +#: includes/admin/class-mp-products-admin.php:2245 +msgid "Enter the quantity that you have available to sell." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1987 +#: includes/admin/class-mp-products-admin.php:2244 +msgid "Inventory Count" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1977 +#: includes/admin/class-mp-products-admin.php:2234 +msgid "Track Inventory?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1871 +msgid "%1$sProduct Images%2$s %3$sAdd images of the product. The first image on the list is the featured image for this product (you can reorder images on the list)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1806 +msgid "Add variations for this product. e.g. If you are selling t-shirts, you can create Color & Size variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1804 +msgid "%3$sAdd variations for%2$s %1$sProduct%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1776 +msgid "This product has a multiple variations %1$s(e.g. Multiple colors, sizes)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1775 +msgid "This is a unique product without variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1700 +msgid "Extra Shipping Cost %1$s(if applicable)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1659 +#: includes/admin/class-mp-products-admin.php:2112 +#: includes/admin/class-mp-products-admin.php:2359 +msgid "Weight" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1636 +#: includes/admin/class-mp-products-admin.php:2098 +#: includes/admin/class-mp-products-admin.php:2416 +msgid "Please enter a valid tax rate" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1531 +msgid "Limit Per Order %1$s(limit the number of the item a shopper can buy per order)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1513 +msgid "SKU %1$s(Stock Keeping Unit)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "%1$sPrice, Inventory & Variants%2$s %3$sSet price, manage inventory and create Product Variants (if appropriate for your product).%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "Product Variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1480 +msgid "External / Affiliate Link" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1471 +msgid "Digital Download" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1470 +msgid "Physical / Tangible Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1464 +msgid "Product Kind %1$s(Physical Product, Digital, etc)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1426 +msgid "Choose Products" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1420 +msgid "If you would like, you can choose specific related products instead of using the ones generated by MarketPress" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1019 +msgid "Changes saved successfully" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:826 +msgid "Option cannot be saved. Try again." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:821 +msgid "Option saved successfully." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:467 +msgid "Img" +msgstr "" + +#: includes/admin/class-mp-product-attributes-list-table.php:57 +msgid "Product attribute(s) deleted successfully." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:162 +msgid "- Create New Variation -" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:144 +msgid "Only lowercase letters and dashes (-) are allowed." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:139 +msgid "If a slug is not entered, it will be generated automatically. Max 32 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:138 +#: includes/admin/class-mp-product-attributes-list-table.php:23 +msgid "Slug" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:130 +msgid "Max 45 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:123 +msgid "Use the numbers on the left to sort. To delete - click the \"X\" to the right of each row." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:122 +msgid "Attribute Options" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:121 +msgid "Add Option" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:105 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:523 +msgid "Sort Order" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:87 +msgid "Alphabetical" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:86 +msgid "ID" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:84 +msgid "Select how the options will be sorted." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:82 +msgid "Sort By" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:75 +msgid "The name of the attribute (e.g. color, size, etc)" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:74 +msgid "Attribute Name" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:69 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Product Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Product Attributes" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:71 +msgid "You can choose to make this page one of the following core store pages." +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:66 +msgid "Network Store Base" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:61 +msgid "Checkout Page" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:52 +msgid "Store Page Settings" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1108 +msgid "Display billing/shipping info for this customer" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1097 +msgid "View order “%s”" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1072 +msgid "Flag as:" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:952 +msgid "Move To Trash" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:948 +msgid " Received" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:927 +msgid "Enter coupon code here" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:812 +msgid "The order status could not be updated due to unexpected error. Please try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:740 +msgid "An invalid bulk action was requested. Please go back and try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:692 +msgid "The order status for order ID %1$s was updated successfully." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:688 +msgid "Order statuses successfully updated." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:530 +msgid "Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:518 +msgid "Actual Shipping Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:513 +msgid "Method Paid For" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:504 +msgid "Amount Collected" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:477 +msgid "DHL" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:408 +msgid "There is no IPN history to show at this time" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:345 +msgid "Type" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:343 +msgid "Gateway" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:301 +#: includes/common/template-functions.php:528 +msgid "Order History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:291 +msgid "IPN History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:283 +msgid "Customer Info" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:279 +msgid "Order Details" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:157 +msgid "All Dates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:320 +msgid "Add Pages to Menu" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:318 +msgid "Add-ons" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:317 +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "User Capabilities" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:316 +#: includes/admin/class-mp-setup-wizard.php:631 +#: includes/admin/store-settings/class-mp-store-settings-payments.php:50 +msgid "Payment Gateways" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:315 +msgid "Shipping Rates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:312 +msgid "Configure" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:309 +#: includes/admin/class-mp-products-admin.php:466 +#: includes/admin/class-mp-shortcode-builder.php:797 +msgid "Tags" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:308 +#: includes/admin/class-mp-products-admin.php:465 +msgid "Categories" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:300 +msgid "Manage" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:297 +msgid "Here's some quick links to manage your store and products." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:288 +msgid "low in stock" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:287 +msgid "%s product" +msgid_plural "%s products" +msgstr[0] "" + +#: includes/admin/class-mp-dashboard-widgets.php:280 +msgid "received" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:279 +#: includes/admin/class-mp-dashboard-widgets.php:283 +msgid "%s order" +msgid_plural "%s orders" +msgstr[0] "" + +#: includes/admin/class-mp-dashboard-widgets.php:276 +msgid "Stock & Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:261 +msgid "Last 30 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:256 +msgid "Last 7 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:251 +msgid "Yesterday" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:248 +#: includes/admin/class-mp-dashboard-widgets.php:253 +#: includes/admin/class-mp-dashboard-widgets.php:258 +#: includes/admin/class-mp-dashboard-widgets.php:263 +msgid " Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:246 +msgid "Today" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:241 +msgid "Welcome back! Here's a quick summary of your store's performance." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:196 +#: includes/admin/class-mp-products-admin.php:895 +msgid "No products out of stock." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:136 +#: includes/admin/class-mp-products-admin.php:839 +msgid "Stock Level" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:135 +#: includes/admin/class-mp-products-admin.php:838 +msgid "Variation" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:121 +msgid "Low Stock (%s)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:116 +msgid "Store Management" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:115 +msgid "Store Reports" +msgstr "" + +#: includes/admin/class-mp-ajax.php:579 +#: includes/admin/class-mp-orders-admin.php:520 +#: includes/common/payment-gateways/2checkout.php:370 +#: includes/common/payment-gateways/authorizenet-aim.php:264 +#: includes/common/payment-gateways/mollie.php:93 +#: includes/common/payment-gateways/paymill.php:196 +#: includes/common/payment-gateways/pin.php:190 +#: includes/common/payment-gateways/skrill.php:157 +#: includes/common/payment-gateways/skrill.php:168 +#: includes/common/payment-gateways/wepay.php:143 +#: includes/public/class-mp-checkout.php:404 +msgid "Select One" +msgstr "" + +#: includes/admin/class-mp-ajax.php:511 +msgid "Oops... we could not locate any orders by that ID. Please double check your order ID and try again." +msgstr "" + +#: includes/admin/class-mp-ajax.php:482 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:166 +#: includes/multisite/class-mp-admin-multisite.php:584 +msgid "Edit Page" +msgstr "" + +#: includes/admin/class-mp-ajax.php:346 +msgid "Cancel " +msgstr "" + +#: includes/admin/class-mp-ajax.php:345 +msgid "Save " +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "Edit Description" +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "HTML Markup" +msgstr "" + +#: includes/admin/class-mp-ajax.php:333 +msgid "Plain Text Only" +msgstr "" + +#: includes/admin/class-mp-ajax.php:329 +msgid "Additional Content / Information for this Variation" +msgstr "" + +#: includes/admin/class-mp-ajax.php:317 +#: includes/admin/class-mp-products-admin.php:1762 +msgid "Allow this product to be purchased even if it's out of stock" +msgstr "" + +#: includes/admin/class-mp-ajax.php:313 +#: includes/admin/class-mp-products-admin.php:1711 +msgid "Track Product Inventory" +msgstr "" + +#: includes/admin/class-mp-ajax.php:300 +msgid "Extra Shipping Cost (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:295 +msgid "Ounces:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:294 +msgid "Pounds:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:292 +msgid "Kilograms:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:287 +#: includes/admin/class-mp-products-admin.php:1649 +msgid "Charge Shipping" +msgstr "" + +#: includes/admin/class-mp-ajax.php:273 +#: includes/admin/class-mp-products-admin.php:1623 +#: includes/admin/store-settings/class-mp-store-settings-general.php:454 +msgid "Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:272 +#: includes/admin/class-mp-products-admin.php:1622 +#: includes/admin/class-mp-products-admin.php:2090 +#: includes/admin/class-mp-products-admin.php:2408 +msgid "Special Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:271 +#: includes/admin/class-mp-products-admin.php:1625 +#: includes/admin/class-mp-products-admin.php:2092 +msgid "If you would like this product to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-ajax.php:268 +#: includes/admin/class-mp-products-admin.php:1599 +msgid "Charge Taxes (Special Rate)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:256 +#: includes/admin/class-mp-products-admin.php:1593 +#: includes/admin/class-mp-products-admin.php:2077 +#: includes/admin/class-mp-products-admin.php:2348 +msgid "End Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:255 +#: includes/admin/class-mp-products-admin.php:1589 +#: includes/admin/class-mp-products-admin.php:2072 +msgid "Start Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:1568 +msgid "Enter Sale Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:250 +#: includes/admin/class-mp-products-admin.php:1547 +msgid "Set up a Sale for this Product" +msgstr "" + +#: includes/admin/class-mp-ajax.php:206 includes/admin/class-mp-ajax.php:223 +msgid "Enter " +msgstr "" + +#: includes/admin/class-mp-ajax.php:193 +msgid "Browse" +msgstr "" + +#: includes/admin/class-mp-ajax.php:184 includes/admin/class-mp-ajax.php:192 +msgid "http://" +msgstr "" + +#: includes/admin/class-mp-ajax.php:183 +msgid "External Product URL" +msgstr "" + +#: includes/admin/class-mp-ajax.php:237 +msgid "Limit Per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:177 +#: includes/admin/class-mp-products-admin.php:1520 +msgid "Enter Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:174 +#: includes/admin/class-mp-products-admin.php:1512 +msgid "Enter SKU" +msgstr "" + +#: includes/admin/class-mp-ajax.php:173 +msgid "(Stock Keeping Unit)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:158 +msgid "Remove Image" +msgstr "" + +#: includes/admin/class-mp-ajax.php:74 +msgid "Variation Draft" +msgstr "" + +#: includes/admin/class-mp-admin.php:296 +#: includes/admin/class-mp-dashboard-widgets.php:70 +msgid "Please wait...saving in progress..." +msgstr "" + +#: includes/admin/class-mp-admin.php:295 +#: includes/admin/class-mp-dashboard-widgets.php:69 +msgid "Input is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:294 +#: includes/admin/class-mp-dashboard-widgets.php:68 +msgid "Valid number is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:292 +#: includes/admin/class-mp-dashboard-widgets.php:66 +msgid "Delete %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:291 +#: includes/admin/class-mp-dashboard-widgets.php:65 +msgid "Delete %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:290 +#: includes/admin/class-mp-dashboard-widgets.php:64 +msgid "Update inventory for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:289 +#: includes/admin/class-mp-dashboard-widgets.php:63 +msgid "Update inventory for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:288 +#: includes/admin/class-mp-dashboard-widgets.php:62 +msgid "Update price for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:287 +#: includes/admin/class-mp-dashboard-widgets.php:61 +msgid "Update prices for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:285 +#: includes/admin/class-mp-dashboard-widgets.php:59 +msgid "Creating variations, please wait..." +msgstr "" + +#: includes/admin/class-mp-admin.php:96 +msgid "The following payment gateways have been deprecated, Cubepoints, Bitpay, iDEAL, Skrill, Google Checkout. If you were using one of these gateways, please setup a new payment gateway here." +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:61 +msgid "Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:71 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:71 +#: includes/common/class-mp-gdpr.php:399 includes/common/class-mp-order.php:872 +#: includes/common/helpers.php:164 includes/public/class-mp-checkout.php:1434 +msgid "Shipping Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:66 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:66 +#: includes/common/class-mp-gdpr.php:392 includes/common/class-mp-order.php:864 +#: includes/common/helpers.php:163 includes/public/class-mp-checkout.php:1427 +msgid "Billing Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:61 +msgid "Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:258 +msgid "Shipping Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:256 +msgid "Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:235 +msgid "Payment Method: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:79 +msgid "The dir %s not exist or not writeable" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:239 +msgid "Shop header/logo" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:233 +msgid "Choose a template" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:226 +msgid "Template Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:221 +msgid "Disable automatic creation/attachment of invoices when only free products are ordered" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:220 +msgid "Disable for free products" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:216 +msgid "Attach invoice to" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:214 +msgid "Customer Order Shipped email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:212 +msgid "Customer New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:211 +msgid "Admin New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:206 +msgid "download" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:205 +msgid "How do you want to view the PDF?" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:203 +msgid "Open the PDF in a new browser tab/window" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:202 +msgid "Download the PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:158 +msgid "Export PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:103 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:106 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:109 +msgid "You can't download this order invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:76 +msgid "Invalid Request" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:72 +msgid "Order not exist!" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:67 +msgid "Invalid ID" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1293 +msgid "Coupon added successfully" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1292 +msgid "Please enter a code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1247 +msgid "No end" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1200 +msgid "Valid Dates" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1195 +msgid "Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1027 +msgid "No Coupons found in Trash" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1026 +msgid "No Coupons Found" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1025 +msgid "Search Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1024 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1028 +msgid "View Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1023 +msgid "New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1020 +msgid "Create New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1017 +msgid "Manage Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1002 +msgid "An error occurred while removing your coupon. Please try again." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:964 +msgid "Coupon can't be applied to this cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:951 +msgid "Invalid coupon code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:794 +msgid "Help Text" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:789 +msgid "Form Title" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:783 +msgid "Coupons Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:764 +msgid "End Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:758 +msgid "Does coupon have an end date?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:696 +msgid "Select Products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:688 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:723 +#: includes/common/payment-gateways/paypal-payflow.php:402 +msgid "User" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:638 +msgid "Max Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:636 +msgid "Enter the maximum number of times this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:623 +msgid "Leave blank to allow all other coupons." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:622 +msgid "Select combinable coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:618 +msgid "Can this coupon be combined with other coupons?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:613 +msgid "Apply to each applicable item once per cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:612 +msgid "Apply to each applicable item and quantity ordered" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:609 +msgid "How should the discount amount be applied?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:605 +msgid "Discount Amount" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:604 +msgid "Value must either be a decimal number or a percentage" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:602 +msgid "If you would like to give a percentage-based discount make sure to include the percent (%) symbol. Otherwise, the discount will be applied as a fixed amount off." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:595 +msgid "Letters and Numbers only." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:589 +msgid "Coupon Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:447 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:795 +msgid "More than one code? That's OK! Just be sure to enter one at a time." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:444 +msgid "Apply Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:314 +msgid "Coupon Discounts" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:89 +msgid "1 add-on disabled" +msgid_plural "%s add-ons disabled" +msgstr[0] "" + +#: includes/addons/class-mp-addons-list-table.php:84 +msgid "1 add-on enabled" +msgid_plural "%s add-ons enabled" +msgstr[0] "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Disabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Enable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:129 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:67 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:135 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:168 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:202 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:263 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:296 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:330 +msgid "Enabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +msgid "Disable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:34 +msgid "Disable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:33 +msgid "Enable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:21 +#: includes/admin/class-mp-products-admin.php:2280 +#: includes/common/class-mp-product.php:2916 +msgid "Description" +msgstr "" + +#: includes/common/template-functions.php:2889 +#: includes/multisite/template-functions.php:407 +msgid "Popularity (Least Popular - Most Popular)" +msgstr "" + +#: includes/common/template-functions.php:2888 +#: includes/multisite/template-functions.php:406 +msgid "Popularity (Most Popular - Least Popular)" +msgstr "" + +#: includes/common/template-functions.php:2885 +#: includes/multisite/template-functions.php:403 +msgid "Name (Z-A)" +msgstr "" + +#: includes/common/template-functions.php:2884 +#: includes/multisite/template-functions.php:402 +msgid "Name (A-Z)" +msgstr "" + +#: includes/common/template-functions.php:2883 +#: includes/multisite/template-functions.php:401 +msgid "Release Date (Oldest to Latest)" +msgstr "" + +#: includes/common/template-functions.php:2882 +#: includes/multisite/template-functions.php:400 +msgid "Release Date (Latest to Oldest)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:284 +msgid "paid" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "One Time Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Customer Counter" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Daily Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:182 +msgid "For the most accurate rates, please select the appropriate pick up type for your business." +msgstr "" + +#: includes/admin/class-mp-admin.php:374 +msgid "Page saved." +msgstr "บันทึกหน้านี้" + +#: includes/admin/class-mp-admin.php:370 +msgid "Custom field deleted." +msgstr "ลบฟิลด์ที่กำหนดเอง " + +#: includes/admin/class-mp-admin.php:369 +msgid "Custom field updated." +msgstr "ปรับปรุงฟิลด์ที่กำหนดเอง" + +#: includes/common/payment-gateways/_bitpay.php:541 +msgid "%s - The payment request expired, - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:536 +msgid "%s - The payment not credited in merchants bitpay account, action required. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:252 +msgid "If enabled, you will recieve an email for each status update on payment." +msgstr "หากคุณเปิดตัวเลือกนี้คุณจะได้รับอีเมลล์การปรับปรุงสถานะทุกครั้งของการชำระเงิน" + +#: includes/common/payment-gateways/_bitpay.php:240 +msgid "Speed at which the bitcoin transaction registers as \"confirmed\" to the store. This overrides your merchant settings on the Bitpay website." +msgstr "Speed at which the bitcoin transaction registers as \"confirmed\" to the store. This overrides your merchant settings on the Bitpay website." + +#: includes/common/payment-gateways/_bitpay.php:238 +msgid "Transaction Speed" +msgstr "ความเร็วในการทำธุรกรรม" + +#: includes/common/payment-gateways/_bitpay.php:244 +msgid "Low" +msgstr "น้อย" + +#: includes/common/payment-gateways/_bitpay.php:243 +msgid "Medium" +msgstr "ปานกลาง" + +#: includes/common/payment-gateways/_bitpay.php:242 +msgid "High" +msgstr "มาก" + +#: includes/common/payment-gateways/_bitpay.php:177 +#: includes/common/payment-gateways/_bitpay.php:517 +#: includes/common/payment-gateways/_bitpay.php:522 +msgid "%s - The payment request is under process. Bitpay invoice status - %s" +msgstr "%s - คำขอชำระเงินอยู่ภายใต้กระบวนการ ใบแจ้งหนี้ของ Bitpay - %s" + +#: includes/common/payment-gateways/_bitpay.php:175 +#: includes/common/payment-gateways/_bitpay.php:527 +msgid "%s - The payment request has been processed - %s" +msgstr "%s - คำขอชำระเงินได้รับการประมวลผล - %s" + +#: includes/common/payment-gateways/_bitpay.php:150 +#: includes/common/payment-gateways/_bitpay.php:294 +msgid "Incorrect order invoice, please contact site administrator" +msgstr "ใบแจ้งหนี้การสั่งซื้อไม่ถูกต้องกรุณาติดต่อผู้ดูแลเว็บไซต์" + +#: includes/common/payment-gateways/_bitpay.php:141 +msgid "We could not verify order invoice details, please try again or contact site administrator for help" +msgstr "ไม่สามารถตรวจสอบรายละเอียดใบแจ้งหนี้การสั่งซื้อโปรดลองอีกครั้งหรือติดต่อผู้ดูแลเว็บไซต์เพื่อขอความช่วยเหลือ" + +#: includes/common/payment-gateways/simplify.php:81 +msgid "Login to Simplify to get your API credentials. Enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:605 +#: includes/common/payment-gateways/paypal-express.php:647 +msgid "Express Checkout is PayPal's premier checkout solution, which streamlines the checkout process for buyers and keeps them on your site after making a purchase. Unlike PayPal Pro, there are no additional fees to use Express Checkout, though you may need to do a free upgrade to a business account. More Info »" +msgstr "" + +#. Plugin URI of the plugin/theme +msgid "https://premium.wpmudev.org/project/e-commerce/" +msgstr "https://premium.wpmudev.org/project/e-commerce/" + +#. Author of the plugin/theme +msgid "WPMU DEV" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:541 +#: includes/admin/class-mp-orders-admin.php:543 +msgid "Tracking Number" +msgstr "หมายเลขติดตาม" + +#: includes/common/class-mp-order.php:805 +#: includes/common/payment-gateways/stripe.php:336 +#: includes/public/class-mp-checkout.php:402 +msgid "Country" +msgstr "ประเทศ" + +#: includes/common/class-mp-order.php:784 +#: includes/common/payment-gateways/stripe.php:338 +msgid "City" +msgstr "เมือง" + +#: includes/common/class-mp-order.php:780 +msgid "Address 2" +msgstr "ที่อยู่ เพิ่มเติม" + +#: includes/common/payment-gateways/stripe.php:340 +msgid "Address" +msgstr "ที่อยู่" + +#: includes/common/class-mp-cart.php:752 includes/common/class-mp-gdpr.php:378 +msgid "Order Total" +msgstr "รวมรายการสั่งซื้อ" + +#: includes/admin/class-mp-orders-admin.php:360 +msgid "Payment Total" +msgstr "รวมการชำระเงิน" + +#: includes/admin/class-mp-orders-admin.php:347 +msgid "Transaction ID" +msgstr "หมายเลข การทำธุรกรรม" + +#: includes/common/payment-gateways/wepay.php:207 +msgid "The WePay Card Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:186 +#: includes/common/shipping-modules/mp-fedex.php:283 +msgid "Account ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:179 +msgid "Access Token" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:172 +msgid "Client Secret" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:165 +msgid "Client ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:159 +msgid "You must login to WePay to get your API credentials. Make sure to check \"Tokenize credit cards\" option under \"API Keys\" section of your WePay app." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:154 +msgid "When in live mode it is recommended to use SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:148 +msgid "Donation" +msgstr "บริจาค" + +#: includes/common/payment-gateways/wepay.php:147 +msgid "Event" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:146 +msgid "Personal" +msgstr "ส่วนบุคคล" + +#: includes/common/payment-gateways/wepay.php:145 +msgid "Service" +msgstr "บริการ" + +#: includes/common/payment-gateways/wepay.php:144 +msgid "Goods" +msgstr "สินค้า" + +#: includes/common/payment-gateways/wepay.php:141 +msgid "Choose type of payments" +msgstr "เลือกประเภทของการชำระเงิน" + +#: includes/common/payment-gateways/wepay.php:140 +msgid "Checkout Type" +msgstr "ประเภทการชำระเงิน" + +#: includes/common/payment-gateways/wepay.php:134 +msgid "Staging" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:131 +msgid "Choose STAGING if you have registered the app on stage.wepay.com, or PRODUCTION if you registered on www.wepay.com" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:36 +#: includes/common/payment-gateways/wepay.php:299 +msgid "WePay" +msgstr "WePay" + +#: includes/common/payment-gateways/_payway.php:366 +msgid "Rejected - A payment was rejected." +msgstr "ปฏิเสธ - การชำระเงินถูกปฏิเสธ" + +#: includes/common/payment-gateways/_payway.php:360 +msgid "Failed - A payment was rejected due to an error." +msgstr "ล้มเหลว - การชำระเงินถูกปฏิเสธเนื่องจากข้อผิดพลาด" + +#: includes/common/payment-gateways/_payway.php:342 +msgid "PayWay balance, Credit Card, or Instant Transfer" +msgstr "ยอดเงิน PayWay,ชำระด้วยบัตรเครดิต,หรือโอนเงินทันที" + +#: includes/common/payment-gateways/_payway.php:298 +msgid "Full path of the cacerts.crt file" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:284 +msgid "User Name" +msgstr "ชื่อผู้ใช้งาน" + +#: includes/common/payment-gateways/_payway.php:277 +msgid "Biller Code" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:273 +msgid "Log Directory" +msgstr "บันทึกสารบัญ" + +#: includes/common/payment-gateways/_payway.php:266 +msgid "Encryption Key" +msgstr "Encryption Key" + +#: includes/common/payment-gateways/_payway.php:60 +msgid "Your PayWay transaction has been canceled." +msgstr "การทำธุรกรรมผ่าน PayWay ของคุณได้ถูกยกเลิกแล้ว" + +#: includes/common/payment-gateways/_payway.php:40 +#: includes/common/payment-gateways/_payway.php:41 +msgid "PayWay" +msgstr "PayWay" + +#: includes/common/payment-gateways/paypal-chained-payments.php:862 +msgid "You must register this application with PayPal using your business account login to get an Application ID that will work with your API credentials. A bit of a hassle, but worth it! In the near future we will be looking for ways to simplify this process. Register then submit your application while logged in to the developer portal. Note that you do not need an Application ID for testing in sandbox mode. More Information »" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:818 +#: includes/common/payment-gateways/paypal-chained-payments.php:840 +#: includes/common/payment-gateways/paypal-express.php:705 +msgid "You must login to PayPal and create an API signature to get your credentials. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:378 +msgid "Use Payflow payment gateway to accept online payments using your Internet merchant account and processing network. PayPal Payflow Pro is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:595 +msgid "Tags Only" +msgstr "สำหรับแท็กส์" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:594 +msgid "Category Only" +msgstr "สำหรับหมวดหมู่" + +#: includes/admin/class-mp-shortcode-builder.php:795 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:593 +msgid "Category & Tags" +msgstr "หมวดหมู่ & แท็กส์" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:591 +msgid "Relate Products By" +msgstr "สินค้าที่เกี่ยวข้อง" + +#: includes/admin/class-mp-shortcode-builder.php:1008 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:455 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:751 +msgid "Right" +msgstr "ด้านขวา" + +#: includes/admin/class-mp-shortcode-builder.php:1007 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:454 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:749 +msgid "Left" +msgstr "ด้านซ้าย" + +#: includes/admin/class-mp-shortcode-builder.php:1009 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:750 +msgid "Center" +msgstr "ตรงกลาง" + +#: marketpress.php:273 +msgid "Orders from your e-commerce store." +msgstr "การสั่งซื้อจากร้านอีคอมเมิร์ซของคุณ" + +#: marketpress.php:231 +msgid "Products for your e-commerce store." +msgstr "สินค้าสำหรับร้านอีคอมเมิร์ซของคุณ" + +#: marketpress.php:222 +msgid "Edit Product" +msgstr "แก้ไขสินค้า" + +#. Description of the plugin/theme +msgid "The complete WordPress ecommerce plugin - works perfectly with BuddyPress and Multisite too to create a social marketplace, where you can take a percentage! Activate the plugin, adjust your settings then add some products to your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:272 +msgid "Beside" +msgstr "ด้านข้าง" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:271 +msgid "Above" +msgstr "ข้างบน" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:268 +msgid "Pin Count" +msgstr "จำนวนขา" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:261 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:287 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:318 +msgid "All View" +msgstr "ดูทั้งหมด" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:260 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:286 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:317 +msgid "Single View" +msgstr "มุมมองด้านเดียว" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:259 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:285 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:316 +msgid "Off" +msgstr "ปิด" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:578 +msgid "Related Product Limit" +msgstr "การจำกัดสินค้าที่เกี่ยวข้อง" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:681 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1201 +msgid "Applies To" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:685 +msgid "All Products" +msgstr "สินค้าทั้งหมด" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:487 +msgid "The label shown for the tax line item in the cart. Taxes, VAT, GST, etc." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:485 +msgid "Tax Label" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:81 +msgid "Apply" +msgstr "" + +#: includes/admin/class-mp-admin.php:192 +msgid "MarketPress Instructions" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1954 +#: includes/admin/class-mp-products-admin.php:2194 includes/common/data.php:62 +#: includes/common/helpers.php:150 +msgid "Taxes" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1417 +#: includes/common/class-mp-product.php:2900 +msgid "Related Products" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:282 +#: includes/common/shipping-modules/mp-usps.php:316 +msgid "@ Max" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "(3-5 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "Priority Mail Express International Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:92 +msgid "Priority Mail Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:171 +#: includes/common/shipping-modules/mp-pickup.php:247 +msgid "In Store" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:159 +msgid "Pickup Fee" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:141 +msgid "This option allows your customers to indicate that they will pick-up their order at your place of business." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:60 +#: includes/common/shipping-modules/mp-pickup.php:76 +#: includes/common/shipping-modules/mp-pickup.php:176 +msgid "Pickup Instructions" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:24 +#: includes/common/shipping-modules/mp-pickup.php:254 +msgid "Pickup" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping - 0.00" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:256 +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:440 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:309 +msgid "Your Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:301 +msgid "Station" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:300 +msgid "Request Courier" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:299 +msgid "Drop Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:298 +msgid "Business Service Center" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:297 +msgid "Regular Pickup" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:135 +#: includes/common/shipping-modules/mp-fedex.php:264 +msgid "Production" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:207 +msgid "Simplify Commerce by MasterCard" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:104 +msgid "When in live mode, although it is not required, Simplify recommends you have an SSL certificate." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:183 +#: includes/common/payment-gateways/simplify.php:87 +msgid "Public Key" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:175 +#: includes/common/payment-gateways/simplify.php:94 +msgid "Private Key" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:71 +msgid "Simplify helps merchants to accept online payments from Mastercard, Visa, American Express, Discover, JCB, and Diners Club cards. It's that simple. We offer a merchant account and payment gateway in a single, secure package so you can concentrate on what really matters to your business. Only supports USD currently." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:267 +msgid "%1$s" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:151 +msgid "The Simplify Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/simplify.php:18 +msgid "Simplify" +msgstr "" + +#: includes/common/payment-gateways/pin.php:255 +msgid "%1$s Card %2$s" +msgstr "" + +#: includes/common/payment-gateways/pin.php:211 +msgid "The PIN Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:187 +msgid "Selecting a currency other than currency supported by PIN may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/pin.php:164 +msgid "You must login to PIN to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/pin.php:158 +msgid "When in live mode PIN recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/pin.php:45 +#: includes/common/payment-gateways/pin.php:286 +msgid "PIN" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:830 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:534 +#: includes/common/payment-gateways/paypal-express.php:865 +msgid "The payment is pending" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:235 +msgid "The Paymill Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:169 +msgid "You must login to Paymill to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:45 +#: includes/common/payment-gateways/paymill.php:308 +msgid "Paymill" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:90 +msgid "Invalid cardholder" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:89 +msgid "Card is no longer valid or has expired" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:88 +msgid "Please enter a valid Card CVC" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:87 +msgid "Please choose a valid Expiration Date." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:99 +#: includes/common/payment-gateways/skrill.php:100 +msgid "Skrill (Moneybookers)" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:24 +#: includes/common/shipping-modules/mp-weight-rate.php:292 +msgid "Weight Rate" +msgstr "คิดตามน้ำหนัก" + +#: includes/common/shipping-modules/mp-usps.php:303 +msgid "USPS Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:270 +msgid "USPS Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:264 +msgid "USPS Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:145 +msgid "Flat Rate Large" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:140 +msgid "Flat Rate Medium 2" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:135 +msgid "Flat Rate Medium 1" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:130 +msgid "Flat Rate Small" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:118 +msgid "First Class International Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:114 +msgid "Priority Mail International Small Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:112 +msgid "Priority Mail International Medium Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:110 +msgid "Priority Mail International Large Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:108 +msgid "Priority Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:106 +msgid "Express Mail International Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:104 +msgid "Express Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:98 +msgid "Library Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:96 +msgid "Media Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "First-Class Mail Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:90 +msgid "Priority Mail Small Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:88 +msgid "Priority Mail Medium Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +#: includes/common/shipping-modules/mp-usps.php:88 +#: includes/common/shipping-modules/mp-usps.php:90 +#: includes/common/shipping-modules/mp-usps.php:92 +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "(2-4 days)" +msgstr "(2-4 วัน)" + +#: includes/common/shipping-modules/mp-usps.php:86 +msgid "Priority Mail Large Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "(2-4) days" +msgstr "(2-4) วัน" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "Priority Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "Express Mail Sunday/Holiday Delivery Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:80 +msgid "Express Mail Flat Rate Boxes Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:78 +msgid "Express Mail Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:76 +msgid "Express Mail Sunday/Holiday Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:74 +msgid "Express Mail Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:72 +#: includes/common/shipping-modules/mp-usps.php:74 +#: includes/common/shipping-modules/mp-usps.php:76 +#: includes/common/shipping-modules/mp-usps.php:78 +#: includes/common/shipping-modules/mp-usps.php:80 +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "(1-2 days)" +msgstr "(1-2 วัน)" + +#: includes/common/shipping-modules/mp-usps.php:72 +msgid "Express Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:67 +#: includes/common/shipping-modules/mp-usps.php:902 +msgid "USPS" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:534 +msgid "UPS (beta)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:166 +msgid "Required if using negotiated rates" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "Worldwide Express Plus" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "(Scheduled)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "Standard" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "(2-5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "Worldwide Expedited" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:54 +msgid "Worldwide Express" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "2nd Day Air AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "(1 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "Next Day Air Early AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "Next Day Air Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "3 Day Select" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:49 +msgid "Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:48 +msgid "2nd Day Air" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "Next Day Air" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:475 +#: includes/common/shipping-modules/mp-ups.php:43 +msgid "UPS" +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:27 +#: includes/common/shipping-modules/mp-table-rate.php:318 +msgid "Table Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:71 +#: includes/common/shipping-modules/mp-table-quantity.php:77 +msgid "Shipping Cost: " +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:70 +#: includes/common/shipping-modules/mp-table-quantity.php:76 +msgid "If quantity is greater than:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:66 +msgid "Each band must be a higher price than the one above it." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:56 +msgid "Number of Bands:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:53 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Each layer must be a higher quantity than the previous." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:51 +msgid "Table Quantity Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:31 +msgid "Table Quantity" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:135 +#: includes/common/shipping-modules/mp-table-rate.php:174 +#: includes/common/shipping-modules/mp-weight-rate.php:189 +msgid "European Union" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:123 +#: includes/common/shipping-modules/mp-table-rate.php:162 +#: includes/common/shipping-modules/mp-weight-rate.php:177 +msgid "United States" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:111 +#: includes/common/shipping-modules/mp-table-rate.php:151 +#: includes/common/shipping-modules/mp-weight-rate.php:166 +msgid "In Country" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:146 +#: includes/common/shipping-modules/mp-table-rate.php:186 +#: includes/common/shipping-modules/mp-weight-rate.php:201 +msgid "International" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:101 +#: includes/common/shipping-modules/mp-table-rate.php:141 +#: includes/common/shipping-modules/mp-weight-rate.php:156 +msgid "Canada" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:92 +#: includes/common/shipping-modules/mp-table-rate.php:132 +#: includes/common/shipping-modules/mp-weight-rate.php:147 +msgid "Hawaii and Alaska" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:83 +#: includes/common/shipping-modules/mp-table-rate.php:123 +#: includes/common/shipping-modules/mp-weight-rate.php:138 +msgid "Lower 48 States" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:64 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping." +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:25 +#: includes/common/shipping-modules/mp-flat-rate.php:223 +msgid "Flat Rate" +msgstr "ค่าส่งคงที่" + +#: includes/common/shipping-modules/mp-fedex.php:761 +msgid "FedEx (beta)" +msgstr "FedEx (beta)" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Centimeters" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Inches" +msgstr "นิ้ว" + +#: includes/admin/class-mp-products-admin.php:1676 +#: includes/admin/class-mp-setup-wizard.php:547 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:166 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +msgid "Kilograms" +msgstr "กิโลกรัม" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:103 +msgid " %1$s - %2$s" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:358 +msgid "Max Weight per Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:356 +msgid "Box Dimensions" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:354 +msgid "Box Name" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:344 +msgid "Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:343 +msgid "For each box defined enter the maximum weight it can contain." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:341 +msgid "Enter your standard box sizes as LengthxWidthxHeight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:386 +#: includes/common/shipping-modules/mp-ups.php:193 +#: includes/common/shipping-modules/mp-usps.php:234 +#: includes/common/shipping-modules/mp-usps.php:338 +msgid "Standard Boxes and Weight Limits" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:328 +msgid "Handling Charge per Interntional Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:294 +msgid "Handling Charge per Domestic Shipment " +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:388 +#: includes/common/shipping-modules/mp-ups.php:196 +#: includes/common/shipping-modules/mp-usps.php:237 +msgid "Add Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "(Next Day)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +msgid "Europe First International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:62 +msgid "International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:61 +#: includes/common/shipping-modules/mp-fedex.php:62 +#: includes/common/shipping-modules/mp-ups.php:54 +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "(1-3 Days)" +msgstr "(1-3 วัน)" + +#: includes/common/shipping-modules/mp-fedex.php:61 +msgid "International First" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "(5 Days)" +msgstr "(5 วัน)" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "International Economy" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "(2-7 Days)" +msgstr "(2-7 วัน)" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "Smart Post" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:55 +#: includes/common/shipping-modules/mp-ups.php:49 +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "(1-5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:55 +msgid "Ground Home Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "(1-7 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "Fedex Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:53 +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "(3 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:53 +msgid "Fedex Express Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +#: includes/common/shipping-modules/mp-ups.php:48 +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "(2 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +msgid "Fedex 2 Day" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "(2 Days am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "Fedex 2 Day AM" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "(1 Day)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +msgid "Standard Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "(1 Day am )" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "Priority Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "(1 Day am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "First Overnight" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:476 +#: includes/common/shipping-modules/mp-fedex.php:31 +msgid "FedEx" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:270 +#: includes/common/payment-gateways/simplify.php:179 +#: includes/common/payment-gateways/stripe.php:365 +msgid "%1$s Card ending in %2$s - Expires %3$s" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:259 +#: includes/common/payment-gateways/pin.php:238 +#: includes/common/payment-gateways/simplify.php:171 +msgid "%s Store Purchase - Order ID: %s, Email: %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:266 +msgid "You must login to Stripe to get your API credentials. You can enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:261 +msgid "When in live mode Stripe recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:311 +msgid "The Stripe Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:263 +#: includes/common/payment-gateways/paymill.php:122 +#: includes/common/payment-gateways/stripe.php:222 +msgid "Card Number" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:86 +msgid "Please enter a valid Credit Card Number." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:45 +#: includes/common/payment-gateways/stripe.php:433 +msgid "Stripe" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:750 +msgid "Sets the background color for the payment page. By default, the color is white." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:745 +msgid "Sets the background color for the header of the payment page. By default, the color is white." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:740 +msgid "Sets the border color around the header of the payment page. The border is a 2-pixel perimeter around the header space, which is 750 pixels wide by 90 pixels high. By default, the color is black." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:735 +msgid "URL for an image you want to appear at the top left of the payment page. The image has a maximum size of 750 pixels wide by 90 pixels high. PayPal recommends that you provide an image that is stored on a secure (https) server. If you do not specify an image, the business name is displayed." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:857 +#: includes/common/payment-gateways/paypal-express.php:1131 +msgid "The payment is pending because it is part of an order that has been authorized but not settled." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:853 +#: includes/common/payment-gateways/paypal-express.php:1127 +msgid "The payment is pending because it has been authorized but not settled. You must capture the funds first." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:847 +#: includes/common/payment-gateways/paypal-express.php:1120 +msgid "You denied the payment when it was marked as pending." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:837 +#: includes/common/payment-gateways/paypal-express.php:1108 +msgid "A reversal has occurred on this transaction due to an unknown reason." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:836 +#: includes/common/payment-gateways/paypal-express.php:1107 +msgid "A reversal has occurred on this transaction because you have given the customer a refund." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:835 +#: includes/common/payment-gateways/paypal-express.php:1106 +msgid "A reversal has occurred on this transaction due to a complaint about the transaction from your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:834 +#: includes/common/payment-gateways/paypal-express.php:1105 +msgid "A reversal has occurred on this transaction due to your customer triggering a money-back guarantee." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:833 +#: includes/common/payment-gateways/paypal-express.php:1104 +msgid "A reversal has occurred on this transaction due to a chargeback by your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:1101 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer:" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:826 +#: includes/common/payment-gateways/paypal-express.php:1097 +msgid "A payment has been accepted." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:818 +#: includes/common/payment-gateways/paypal-express.php:1087 +msgid "The transaction has not terminated, e.g. an authorization may be awaiting completion." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:531 +#: includes/common/payment-gateways/paypal-express.php:810 +#: includes/common/payment-gateways/paypal-express.php:1077 +msgid "The payment has failed. This happens only if the payment was made from your customer's bank account." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:806 +#: includes/common/payment-gateways/paypal-express.php:1072 +msgid "An authorization for this transaction has been voided." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:802 +#: includes/common/payment-gateways/paypal-express.php:1067 +msgid "The authorization period for this payment has been reached." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:798 +#: includes/common/payment-gateways/paypal-express.php:1062 +msgid "A reversal has been canceled; for example, when you win a dispute and the funds for the reversal have been returned to you." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:499 +#: includes/common/payment-gateways/paypal-express.php:1163 +msgid "PayPal Express Checkout" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:798 +msgid "Gateway Settings Page Message" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:725 +msgid "Signature" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:506 +#: includes/common/payment-gateways/eway31.php:533 +#: includes/common/shipping-modules/mp-fedex.php:276 +msgid "API Password" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:773 +msgid "Enter a percentage of all store sales to collect as a fee. Decimals allowed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:757 +msgid "Using PayPal Chained Payments allows you as the multisite network owner to collect a predefined fee or percentage of all sales on network MarketPress stores! This is invisible to the customers who purchase items in a store, and all PayPal fees will be charged to the store owner. To use this option you must create API credentials, and you should make all other gateways unavailable or limited above." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:338 +msgid "Please be aware that we will deduct a ?% fee from the total of each transaction in addition to any fees PayPal may charge you. If for any reason you need to refund a customer for an order, please contact us with a screenshot of the refund receipt in your PayPal history as well as the Transaction ID of our fee deduction so we can issue you a refund. Thank you!" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:698 +#: includes/common/payment-gateways/paypal-express.php:149 +msgid "There was a problem connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:470 +#: includes/common/payment-gateways/paypal-express.php:1053 +msgid "There was a problem verifying the IPN string with PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:310 +msgid "There was a problem connecting to PayPal to check the status of your purchase. Please check the status of your order here »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:539 +#: includes/common/payment-gateways/paypal-chained-payments.php:254 +#: includes/common/payment-gateways/paypal-express.php:1139 +msgid "The payment is pending." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:251 +#: includes/common/payment-gateways/paypal-chained-payments.php:531 +#: includes/common/payment-gateways/paypal-express.php:862 +#: includes/common/payment-gateways/paypal-express.php:1136 +msgid "The payment is pending for an unknown reason. For more information, contact PayPal customer service." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:250 +#: includes/common/payment-gateways/paypal-chained-payments.php:530 +#: includes/common/payment-gateways/paypal-express.php:861 +#: includes/common/payment-gateways/paypal-express.php:1135 +msgid "The payment is pending because you are not yet verified. You must verify your account before you can accept this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:249 +#: includes/common/payment-gateways/paypal-chained-payments.php:529 +#: includes/common/payment-gateways/paypal-express.php:860 +#: includes/common/payment-gateways/paypal-express.php:1134 +msgid "The payment is pending because it was made via credit card and you must upgrade your account to Business or Premier status in order to receive the funds. It can also mean that you have reached the monthly limit for transactions on your account." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:248 +#: includes/common/payment-gateways/paypal-chained-payments.php:528 +#: includes/common/payment-gateways/paypal-express.php:859 +#: includes/common/payment-gateways/paypal-express.php:1133 +msgid "The payment is pending because it was made to an email address that is not yet registered or confirmed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:247 +#: includes/common/payment-gateways/paypal-chained-payments.php:527 +#: includes/common/payment-gateways/paypal-express.php:858 +#: includes/common/payment-gateways/paypal-express.php:1132 +msgid "The payment is pending while it is being reviewed by PayPal for risk." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:246 +#: includes/common/payment-gateways/paypal-chained-payments.php:526 +#: includes/common/payment-gateways/paypal-express.php:856 +#: includes/common/payment-gateways/paypal-express.php:1130 +msgid "You do not have a balance in the currency sent, and you do not have your Payment Receiving Preferences set to automatically convert and accept this payment. You must manually accept or deny this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:245 +#: includes/common/payment-gateways/paypal-chained-payments.php:525 +#: includes/common/payment-gateways/paypal-express.php:855 +#: includes/common/payment-gateways/paypal-express.php:1129 +msgid "The payment is pending because you hold a non-U.S. account and do not have a withdrawal mechanism. You must manually accept or deny this payment from your Account Overview." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:244 +#: includes/common/payment-gateways/paypal-chained-payments.php:524 +#: includes/common/payment-gateways/paypal-express.php:854 +#: includes/common/payment-gateways/paypal-express.php:1128 +msgid "The payment is pending because it was made by an eCheck that has not yet cleared." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:243 +#: includes/common/payment-gateways/paypal-chained-payments.php:523 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:236 +#: includes/common/payment-gateways/paypal-chained-payments.php:516 +msgid "The transaction was rejected by the receiver (you)." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:510 +#: includes/common/payment-gateways/paypal-express.php:843 +#: includes/common/payment-gateways/paypal-express.php:1115 +msgid "You refunded the payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:224 +#: includes/common/payment-gateways/paypal-chained-payments.php:504 +msgid "The transaction is in progress." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:212 +#: includes/common/payment-gateways/paypal-chained-payments.php:491 +#: includes/common/payment-gateways/paypal-express.php:814 +#: includes/common/payment-gateways/paypal-express.php:1082 +msgid "The payment has been partially refunded." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:202 +#: includes/common/payment-gateways/paypal-chained-payments.php:481 +msgid "PayPal balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:177 +msgid "There was a problem connecting to PayPal to setup your purchase. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:122 +msgid "Your PayPal transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:50 +#: includes/common/payment-gateways/paypal-chained-payments.php:53 +#: includes/common/payment-gateways/paypal-chained-payments.php:732 +#: includes/common/payment-gateways/paypal-express.php:500 +#: includes/common/payment-gateways/paypal-express.php:938 +msgid "PayPal" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:48 +#: includes/common/payment-gateways/paypal-chained-payments.php:730 +#: includes/common/payment-gateways/paypal-chained-payments.php:756 +#: includes/common/payment-gateways/paypal-chained-payments.php:873 +msgid "PayPal Chained Payments" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:59 +#: includes/common/payment-gateways/paypal-payflow.php:467 +msgid "PayPal Payflow Pro" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:378 +msgid "Chargeback - A payment was reversed due to a chargeback. The funds have been removed from your account balance and returned to the buyer." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:372 +msgid "Failed - The Credit Card or Direct Debit transaction was declined." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:354 +#: includes/common/payment-gateways/skrill.php:366 +msgid "Cancelled - The payment was cancelled manually by the sender in their online account history or was auto-cancelled after 14 days pending." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:360 +msgid "Pending - The payment is pending. It can take 2-3 days for bank transfers to complete." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:349 +#: includes/common/payment-gateways/skrill.php:354 +msgid "Processed - The payment has been completed, and the funds have been added successfully to your Moneybookers account balance." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:189 +msgid "Shown to the customer on the confirmation screen - the end step of the process - a note, confirmation number, or any other message. Line breaks <br> may be used for longer messages." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:188 +msgid "Confirmation Note (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:183 +msgid "The URL of the logo which you would like to appear at the top of the payment form. The logo must be accessible via HTTPS otherwise it will not be shown. For best integration results we recommend that you use a logo with dimensions up to 200px in width and 50px in height." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:182 +msgid "Logo Image (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:177 +msgid "The name of this store, which will be shown on the gateway. If no value is submitted, the account email will be shown as the recipient of the payment." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:176 +msgid "Merchant Name (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:165 +msgid "Language" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:368 +#: includes/common/payment-gateways/authorizenet-aim.php:262 +#: includes/common/payment-gateways/eway.php:363 +#: includes/common/payment-gateways/eway31.php:471 +#: includes/common/payment-gateways/mollie.php:91 +#: includes/common/payment-gateways/paymill.php:193 +#: includes/common/payment-gateways/paypal-chained-payments.php:356 +#: includes/common/payment-gateways/paypal-express.php:688 +#: includes/common/payment-gateways/paypal-payflow.php:432 +#: includes/common/payment-gateways/pin.php:186 +#: includes/common/payment-gateways/skrill.php:152 +#: includes/common/payment-gateways/stripe.php:288 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:104 +msgid "Currency" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:359 +#: includes/common/payment-gateways/skrill.php:143 +msgid "Secret Word" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:261 +msgid "Order ID:" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:234 +msgid "Complete Checkout" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:204 +msgid "Your Moneybookers transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:155 +msgid "This is the email text to send to those who have made manual payment checkouts. You should include your manual payment instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:257 +#: includes/common/payment-gateways/manual-payments.php:128 +msgid "Record payments manually, such as by Cash, Check, or EFT." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:71 +msgid "Manual/Invoice" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:648 +#: includes/common/payment-gateways/manual-payments.php:35 +#: includes/common/payment-gateways/manual-payments.php:36 +msgid "Manual Payment" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:34 +#: includes/common/payment-gateways/manual-payments.php:163 +msgid "Manual Payments" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:288 +msgid "iDEAL Simulator (for testing)" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:287 +msgid "ABN Amro Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:286 +msgid "Friesland Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:285 +msgid "Rabobank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:284 +msgid "ING Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:279 +msgid "Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:270 +msgid "To make it easier to pay for online products and services, the Dutch banking community has developed the iDEAL online payment method. iDEAL allows online payments to be made using online banking in EUR only." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:247 +#: includes/common/payment-gateways/_payway.php:199 +#: includes/common/payment-gateways/manual-payments.php:68 +msgid "Invoiced" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1016 +msgid "Coupon" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:77 +#: includes/common/payment-gateways/_ideal.php:250 +#: includes/common/payment-gateways/_payway.php:202 +msgid "iDEAL" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:76 +msgid "iDEAL (beta)" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:327 +msgid "Merchant Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:293 +#: includes/common/payment-gateways/_payway.php:302 +#: includes/common/payment-gateways/payfast.php:324 +msgid "Merchant ID" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:462 +msgid "eWay Rapid 3.0 Payments lets merchants recieve credit card payments through eWay without need for users to leave the shop. Note this gateway requires a valid SSL certificate configured for this site." +msgstr "" + +#: includes/common/payment-gateways/eway.php:452 +msgid "There was a problem connecting to eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/eway.php:432 +#: includes/common/payment-gateways/eway.php:437 +msgid "The url of the image can be hosted on your website and pass the secure https:// path of the image to be displayed at the top of the website. This is the second image block on the webpage and is restricted to 960px X 65px. A default secure image is used if none is supplied." +msgstr "" + +#: includes/common/payment-gateways/eway.php:431 +#: includes/common/payment-gateways/eway.php:436 +msgid "Company Logo (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:427 +msgid "The page footer text can be customised and populated below the customer's order details. Useful for contact information." +msgstr "" + +#: includes/common/payment-gateways/eway.php:426 +msgid "Page Footer (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:421 +msgid "Page Description (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:417 +#: includes/common/payment-gateways/eway.php:422 +msgid "This value is used to populate the browsers title bar at the top of the screen." +msgstr "" + +#: includes/common/payment-gateways/eway.php:416 +msgid "Page Title (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:412 +msgid "This will be displayed as the company the customer is purchasing from, including this is highly recommended." +msgstr "" + +#: includes/common/payment-gateways/eway.php:411 +msgid "Company Name" +msgstr "" + +#: includes/common/payment-gateways/eway.php:394 +msgid "Customer ID" +msgstr "" + +#: includes/common/payment-gateways/eway.php:381 +#: includes/common/payment-gateways/eway31.php:488 +msgid "Live API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway.php:371 +#: includes/common/payment-gateways/eway31.php:479 +msgid "Gateway Mode" +msgstr "" + +#: includes/common/payment-gateways/eway.php:354 +msgid "The Hosted Page is a webpage hosted on eWAY's side eliminating the need for merchants to capture, transmit or store credit card numbers. At the checkout time the merchant automatically redirects the customer to the Hosted Page where they would enter their details and have the transaction processed. Upon completion of the transaction the customer is redirected back to the MarketPress checkout confirmation page." +msgstr "" + +#: includes/common/payment-gateways/eway.php:314 +msgid "There was a problem with your credit card information: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:300 +msgid "Paid - The card has been processed - %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:253 +msgid "There was a problem setting up the transaction with eWay: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:245 +#: includes/common/payment-gateways/eway.php:289 +msgid "There was a problem parsing the response from eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:159 +#: includes/common/payment-gateways/eway.php:189 +#: includes/common/payment-gateways/paypal-chained-payments.php:634 +#: includes/common/payment-gateways/paypal-express.php:322 +#: includes/common/payment-gateways/paypal-express.php:473 +msgid "%s Store Purchase - Order ID: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:147 +#: includes/common/payment-gateways/eway.php:462 +msgid "eWay Shared Payments" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:214 +msgid "This is the email text to send to those who have made CubePoints checkouts. You should include your CubePoints instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:212 +#: includes/common/payment-gateways/free_orders.php:188 +#: includes/common/payment-gateways/manual-payments.php:154 +msgid "Order Confirmation Email" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:207 +#: includes/common/payment-gateways/manual-payments.php:149 +msgid "Confirmation User Instructions" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:202 +#: includes/common/payment-gateways/manual-payments.php:144 +msgid "User Instructions" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:198 +#: includes/common/payment-gateways/free_orders.php:170 +#: includes/common/payment-gateways/manual-payments.php:139 +msgid "Enter a public name for this payment method that is displayed to users - No HTML" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:532 +#: includes/common/payment-gateways/_cubepoints.php:196 +#: includes/common/payment-gateways/free_orders.php:169 +#: includes/common/payment-gateways/manual-payments.php:138 +msgid "Method Name" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:187 +msgid "Accept CubePoints as payment(requires the CubePoints plugin)." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:140 +msgid "Sorry, but you do not appear to have enough points to complete this purchase!" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:124 +msgid "%s Store Purchase" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:79 +#: includes/common/payment-gateways/_cubepoints.php:171 +msgid "Your current points: " +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:133 +#: includes/common/payment-gateways/_cubepoints.php:197 +msgid "CubePoints" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:344 +msgid "Authorize.net AIM Checkout" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:331 +msgid "Custom API URL" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:332 +msgid "Many other gateways have Authorize.net API emulators. To use one of these gateways input their API post url here." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:322 +msgid "Request a delimited response from the payment gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:316 +msgid "Security: MD5 Hash" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:317 +msgid "The payment gateway generated MD5 hash value that can be used to authenticate the transaction response. Not needed because responses are returned using an SSL connection." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:306 +msgid "Customer Receipt Email Footer" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:296 +msgid "Customer Receipt Email Header" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:297 +#: includes/common/payment-gateways/paypal-payflow.php:446 +msgid "This text will appear as the header of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:282 +msgid "Encapsulation Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:283 +msgid "Authorize.net default is blank. Otherwise, get this from your credit card processor. If the transactions are going through, but getting strange responses, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:273 +msgid "Optional settings to control advanced options" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:224 +#: includes/common/payment-gateways/authorizenet-aim.php:272 +msgid "Advanced Settings" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:253 +msgid "Transaction Key" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:246 +msgid "Login ID" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:396 +msgid "Gateway Credentials" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:221 +msgid "Authorize.net AIM is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway. USD is the only currency supported by this gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:205 +msgid "There was a problem finalizing your purchase. %s Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:519 +#: includes/common/payment-gateways/paypal-chained-payments.php:218 +#: includes/common/payment-gateways/paypal-chained-payments.php:498 +#: includes/common/payment-gateways/paypal-express.php:822 +#: includes/common/payment-gateways/paypal-express.php:1092 +msgid "The payment has been completed, and the funds have been added successfully to your account balance." +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:233 +msgid "Please enter a valid credit card security code" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:224 +#: includes/public/class-mp-checkout.php:867 +msgid "Please enter a valid credit card number" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:221 +msgid "Please enter your credit card number" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:217 +msgid "Please enter your credit card security code" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:213 +msgid "Please select your credit card expiration date." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:299 +#: includes/common/payment-gateways/authorizenet-aim.php:50 +#: includes/common/payment-gateways/eway.php:148 +#: includes/common/payment-gateways/eway.php:298 +#: includes/common/payment-gateways/eway31.php:267 +#: includes/common/payment-gateways/paymill.php:46 +#: includes/common/payment-gateways/paypal-express.php:972 +#: includes/common/payment-gateways/paypal-payflow.php:60 +#: includes/common/payment-gateways/pin.php:46 +#: includes/common/payment-gateways/simplify.php:19 +#: includes/common/payment-gateways/stripe.php:46 +#: includes/common/payment-gateways/wepay.php:37 +msgid "Credit Card" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:49 +msgid "Authorize.net Checkout" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:156 +#: includes/common/payment-gateways/stripe.php:293 +msgid "Selecting a currency other than that used for your store may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:352 +msgid "Seller ID" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:340 +#: includes/common/payment-gateways/_ideal.php:311 +#: includes/common/payment-gateways/authorizenet-aim.php:234 +#: includes/common/payment-gateways/eway.php:376 +#: includes/common/payment-gateways/payfast.php:315 +#: includes/common/payment-gateways/paypal-chained-payments.php:368 +#: includes/common/payment-gateways/paypal-express.php:699 +#: includes/common/payment-gateways/paypal-payflow.php:391 +msgid "Live" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:339 +#: includes/common/payment-gateways/authorizenet-aim.php:233 +#: includes/common/payment-gateways/eway.php:375 +#: includes/common/payment-gateways/paypal-chained-payments.php:367 +#: includes/common/payment-gateways/paypal-express.php:698 +#: includes/common/payment-gateways/paypal-payflow.php:390 +#: includes/common/shipping-modules/mp-fedex.php:263 +msgid "Sandbox" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:336 +#: includes/common/payment-gateways/_ideal.php:307 +#: includes/common/payment-gateways/authorizenet-aim.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:365 +#: includes/common/payment-gateways/paypal-express.php:695 +#: includes/common/payment-gateways/paypal-payflow.php:387 +#: includes/common/payment-gateways/wepay.php:130 +#: includes/common/shipping-modules/mp-fedex.php:260 +msgid "Mode" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:288 +#: includes/common/payment-gateways/mijireh.php:242 +#: includes/common/payment-gateways/mollie.php:212 +msgid "The order has been received" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:74 +#: includes/common/payment-gateways/2checkout.php:75 +#: includes/common/payment-gateways/2checkout.php:435 +msgid "2Checkout" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:306 +msgid "Confirm" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:218 +#: includes/common/class-mp-cart.php:974 includes/common/class-mp-cart.php:1354 +#: includes/common/template-functions.php:918 +msgid "Checkout" +msgstr "" + +#: includes/common/template-functions.php:207 +msgid "Check Order Status" +msgstr "" + +#: includes/common/template-functions.php:235 +msgid "View Products" +msgstr "" + +#: includes/common/template-functions.php:263 +msgid "Visit Store" +msgstr "" + +#: includes/common/template-functions.php:2912 +#: includes/multisite/template-functions.php:448 +msgid "Order By" +msgstr "" + +#: includes/common/template-functions.php:2887 +#: includes/multisite/template-functions.php:405 +msgid "Price (High to Low)" +msgstr "ราคา (สูง > ต่ำ)" + +#: includes/common/template-functions.php:2886 +#: includes/multisite/template-functions.php:404 +msgid "Price (Low to High)" +msgstr "ราคา (ต่ำ > สูง)" + +#: includes/common/template-functions.php:2881 +#: includes/multisite/template-functions.php:399 +msgid "Default" +msgstr "" + +#: includes/common/template-functions.php:2858 +msgid "Show All" +msgstr "" + +#: includes/common/class-mp-product.php:2048 +msgid "View Larger Image »" +msgstr "" + +#: includes/common/class-mp-product.php:979 +msgid "Out of Stock" +msgstr "" + +#: includes/common/template-functions.php:148 +msgid "Price: " +msgstr "ราคา: " + +#: includes/multisite/template-functions.php:833 +msgid "No Tags" +msgstr "" + +#: includes/common/template-functions.php:3162 +msgid "Uncategorized" +msgstr "" + +#: includes/common/class-mp-cart.php:569 includes/common/class-mp-order.php:604 +#: includes/common/helpers.php:115 +msgid "Download" +msgstr "" + +#: includes/common/class-mp-cart.php:1353 +msgid "Empty Cart" +msgstr "ยกเลิกรายการทั้งหมด" + +#: includes/common/payment-gateways/_payway.php:291 +#: includes/common/payment-gateways/paypal-express.php:718 +#: includes/common/payment-gateways/paypal-payflow.php:423 +#: includes/common/shipping-modules/mp-ups.php:158 +#: includes/public/class-mp-checkout.php:1254 +#: includes/public/class-mp-checkout.php:1383 +msgid "Password" +msgstr "รหัสผ่าน" + +#: includes/common/payment-gateways/eway.php:387 +#: includes/common/payment-gateways/paypal-express.php:711 +#: includes/common/shipping-modules/mp-usps.php:185 +#: includes/public/class-mp-checkout.php:1249 +msgid "Username" +msgstr "ชื่อผู้ใช้งาน" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:437 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:790 +msgid "Have a coupon code?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:321 +#: includes/admin/class-mp-orders-admin.php:526 +#: includes/common/class-mp-cart.php:592 +msgid "Remove" +msgstr "ลบ" + +#: includes/admin/class-mp-ajax.php:316 +msgid "Quantity:" +msgstr "จำนวน" + +#: includes/admin/class-mp-products-admin.php:2140 +#: includes/admin/class-mp-products-admin.php:2387 +#: includes/common/shipping-modules/class-mp-shipping-api.php:507 +msgid "Extra Shipping Cost" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:403 +msgid "Choose a Shipping Method:" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1691 +#: includes/admin/class-mp-products-admin.php:2131 +#: includes/admin/class-mp-products-admin.php:2378 +#: includes/common/shipping-modules/class-mp-shipping-api.php:228 +msgid "Ounces" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1684 +#: includes/admin/class-mp-products-admin.php:2123 +#: includes/admin/class-mp-products-admin.php:2369 +#: includes/admin/class-mp-setup-wizard.php:546 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:165 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +#: includes/common/shipping-modules/class-mp-shipping-api.php:227 +msgid "Pounds" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:226 +msgid "Product Weight:" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:214 +msgid "Weight (Kilograms)" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:82 +msgid "Number of Categories:" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:72 +msgid "Product Count" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:20 +#: includes/admin/class-mp-product-attributes-admin.php:129 +#: includes/admin/class-mp-product-attributes-list-table.php:22 +#: includes/admin/class-mp-products-admin.php:2216 +#: includes/admin/class-mp-shortcode-builder.php:628 +#: includes/admin/class-mp-shortcode-builder.php:1415 +#: includes/admin/widgets/ms-global-categories.php:70 +#: includes/common/shipping-modules/mp-fedex.php:395 +#: includes/common/shipping-modules/mp-ups.php:202 +#: includes/common/shipping-modules/mp-usps.php:243 +#: includes/public/class-mp-checkout.php:314 +msgid "Name" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:67 +msgid "Order Categories By:" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:24 +#: includes/admin/widgets/ms-global-categories.php:50 +msgid "Global Product Categories" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:15 +msgid "Global Product Category List" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:13 +msgid "Displays a network-wide HTML list of product categories from network MarketPress stores." +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:24 +#: includes/admin/widgets/ms-global-tag-cloud.php:45 +msgid "Global Product Tags" +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:15 +msgid "Global Product Tag Cloud" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:947 +#: includes/admin/widgets/ms-global-product-list.php:173 +msgid "Excerpt" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:169 +msgid "Content To Show:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:140 +msgid "Limit To Product Tag:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:132 +msgid "Limit To Product Category:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:72 +msgid "Global Products" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:16 +msgid "Global Product List" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:14 +msgid "Shows a customizable global list of products from network MarketPress stores." +msgstr "" + +#: includes/common/class-mp-product.php:974 +#: includes/multisite/template-functions.php:731 +msgid "Buy Now »" +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:13 +msgid "Displays global most used product tags in cloud format from network MarketPress stores." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:438 +msgid "Theme Permissions" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:402 +#: includes/multisite/class-mp-admin-multisite.php:448 +msgid "No Access" +msgstr "" + +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:120 +msgid "Pro Site Level" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:401 +#: includes/multisite/class-mp-admin-multisite.php:447 +msgid "All Can Use" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:390 +msgid "Gateway Permissions" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:375 +msgid "Select a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:350 +msgid "Global Gateway" +msgstr "" + +#. Plugin Name of the plugin/theme +msgid "MarketPress" +msgstr "" + +#: includes/admin/widgets/product-tag-cloud.php:7 +msgid "Your most used product tags in cloud format from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/categories.php:79 +msgid "Show hierarchy" +msgstr "" + +#: includes/admin/widgets/categories.php:76 +#: includes/admin/widgets/ms-global-categories.php:92 +msgid "Show product counts" +msgstr "" + +#: includes/admin/widgets/categories.php:73 +msgid "Show as dropdown" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:710 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:736 +#: includes/admin/widgets/categories.php:30 +msgid "Select Category" +msgstr "" + +#: includes/admin/widgets/categories.php:7 +msgid "A list or dropdown of product categories from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/product-list.php:250 +msgid "Show Buy Button" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:183 +#: includes/admin/widgets/product-list.php:244 +msgid "Show Price" +msgstr "" + +#: includes/admin/widgets/product-list.php:241 +msgid "Show Excerpt" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:155 +#: includes/admin/widgets/product-list.php:238 +msgid "Thumbnail Size:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:153 +#: includes/admin/widgets/product-list.php:237 +msgid "Show Thumbnail" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:147 +#: includes/admin/widgets/product-list.php:233 +msgid "Display Settings" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:136 +#: includes/admin/widgets/ms-global-product-list.php:144 +#: includes/admin/widgets/product-list.php:230 +msgid "Enter the Slug" +msgstr "" + +#: includes/admin/widgets/product-list.php:228 +#: includes/common/template-functions.php:894 +msgid "Tag" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:686 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:712 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:739 +#: includes/admin/class-mp-shortcode-builder.php:796 +#: includes/admin/widgets/product-list.php:227 +#: includes/common/template-functions.php:886 +#: includes/common/template-functions.php:2907 +msgid "Category" +msgstr "" + +#: includes/admin/widgets/product-list.php:226 +msgid "No Filter" +msgstr "" + +#: includes/admin/widgets/product-list.php:224 +msgid "Taxonomy Filter:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:108 +#: includes/admin/widgets/product-list.php:209 +msgid "Order Products By:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:101 +#: includes/admin/widgets/product-list.php:206 +msgid "Number of Products:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:98 +#: includes/admin/widgets/product-list.php:204 +msgid "List Settings" +msgstr "" + +#: includes/admin/widgets/product-list.php:177 +msgid "Our Products" +msgstr "" + +#: includes/admin/widgets/product-list.php:144 +#: includes/common/template-functions.php:2070 +#: includes/common/template-functions.php:2347 +#: includes/multisite/template-functions.php:303 +#: includes/multisite/template-functions.php:623 +msgid "No Products" +msgstr "" + +#: includes/admin/widgets/product-list.php:8 +msgid "Product List" +msgstr "" + +#: includes/admin/widgets/product-list.php:7 +msgid "Shows a customizable list of products from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/cart.php:75 includes/admin/widgets/categories.php:82 +#: includes/admin/widgets/product-list.php:253 +#: includes/admin/widgets/product-tag-cloud.php:57 +msgid "Only show on store pages" +msgstr "" + +#: includes/admin/widgets/cart.php:65 +#: includes/admin/widgets/ms-global-product-list.php:92 +#: includes/admin/widgets/product-list.php:200 +msgid "Custom Text:" +msgstr "" + +#: includes/admin/widgets/cart.php:64 includes/admin/widgets/categories.php:69 +#: includes/admin/widgets/ms-global-categories.php:59 +#: includes/admin/widgets/ms-global-product-list.php:87 +#: includes/admin/widgets/ms-global-tag-cloud.php:49 +#: includes/admin/widgets/product-list.php:199 +#: includes/admin/widgets/product-tag-cloud.php:49 +msgid "Title:" +msgstr "" + +#: includes/admin/widgets/cart.php:7 +msgid "Shows dynamic shopping cart contents along with a checkout button for your MarketPress store." +msgstr "" + +#: includes/admin/widgets/product-tag-cloud.php:8 +msgid "Product Tag Cloud" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:539 +#: includes/admin/class-mp-setup-wizard.php:575 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:163 +msgid "Measurement System" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:616 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:149 +msgid "Select Shipping Options" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:596 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:129 +msgid "Calculated Options" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:582 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:115 +msgid "No Shipping" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:110 +msgid "EU" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:109 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:93 +msgid "All" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:92 +msgid "Select:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:185 +msgid "Store Pages" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:223 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:256 +msgid "Order Shipped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:60 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:95 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:128 +#: marketpress.php:266 +msgid "New Order" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:314 +msgid "Email Notifications" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:59 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:200 +msgid "Products List" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:58 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:190 +msgid "Store Base" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:108 +#: includes/admin/class-mp-shortcode-builder.php:635 +#: includes/admin/class-mp-shortcode-builder.php:708 +#: includes/admin/class-mp-shortcode-builder.php:875 +#: includes/admin/class-mp-shortcode-builder.php:1319 +#: includes/admin/class-mp-shortcode-builder.php:1422 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:526 +#: includes/admin/widgets/ms-global-categories.php:78 +#: includes/admin/widgets/ms-global-product-list.php:127 +#: includes/admin/widgets/product-list.php:221 +msgid "Ascending" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:109 +#: includes/admin/class-mp-shortcode-builder.php:636 +#: includes/admin/class-mp-shortcode-builder.php:709 +#: includes/admin/class-mp-shortcode-builder.php:876 +#: includes/admin/class-mp-shortcode-builder.php:1320 +#: includes/admin/class-mp-shortcode-builder.php:1423 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:525 +#: includes/admin/widgets/ms-global-categories.php:75 +#: includes/admin/widgets/ms-global-product-list.php:124 +#: includes/admin/widgets/product-list.php:220 +msgid "Descending" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:637 +#: includes/admin/class-mp-shortcode-builder.php:695 +#: includes/admin/class-mp-shortcode-builder.php:862 +#: includes/admin/class-mp-shortcode-builder.php:1306 +#: includes/admin/class-mp-shortcode-builder.php:1424 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:518 +#: includes/admin/widgets/ms-global-product-list.php:121 +#: includes/admin/widgets/product-list.php:218 +msgid "Random" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:694 +#: includes/admin/class-mp-shortcode-builder.php:861 +#: includes/admin/class-mp-shortcode-builder.php:1305 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:517 +#: includes/admin/widgets/ms-global-product-list.php:119 +#: includes/admin/widgets/product-list.php:216 +msgid "Product Price" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:693 +#: includes/admin/class-mp-shortcode-builder.php:860 +#: includes/admin/class-mp-shortcode-builder.php:1304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:516 +#: includes/admin/widgets/ms-global-product-list.php:117 +#: includes/admin/widgets/product-list.php:215 +msgid "Number of Sales" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:692 +#: includes/admin/class-mp-shortcode-builder.php:859 +#: includes/admin/class-mp-shortcode-builder.php:1303 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:515 +#: includes/admin/widgets/product-list.php:214 +msgid "Product Author" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:691 +#: includes/admin/class-mp-shortcode-builder.php:858 +#: includes/admin/class-mp-shortcode-builder.php:1302 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:514 +#: includes/admin/widgets/product-list.php:213 +msgid "Product ID" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:690 +#: includes/admin/class-mp-shortcode-builder.php:857 +#: includes/admin/class-mp-shortcode-builder.php:1301 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:513 +#: includes/admin/widgets/ms-global-product-list.php:113 +#: includes/admin/widgets/product-list.php:212 +msgid "Publish Date" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:430 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:726 +msgid "Width" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:439 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:735 +msgid "Height" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:88 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:402 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:698 +msgid "Custom" +msgstr "" + +#: includes/common/class-mp-product.php:179 +#: includes/common/class-mp-product.php:992 +#: includes/common/class-mp-product.php:1000 +#: includes/multisite/template-functions.php:579 +msgid "Buy Now" +msgstr "สั่งซื้อสินค้า" + +#: includes/common/class-mp-product.php:175 +#: includes/common/class-mp-product.php:990 +#: includes/common/class-mp-product.php:998 +msgid "Add To Cart" +msgstr "หยิบใส่ตะกร้า" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:807 +msgid "Store Style" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1021 +msgid "Edit Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupon.php:580 +#: includes/admin/class-mp-ajax.php:238 +#: includes/admin/class-mp-products-admin.php:1532 +msgid "Unlimited" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1198 +msgid "Remaining Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1197 +msgid "Used" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:752 +#: includes/admin/class-mp-products-admin.php:2343 +msgid "Start Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:598 +msgid "Coupon Code" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:444 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:284 +msgid "Save Changes" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:57 +#: includes/admin/class-mp-shortcode-builder.php:716 +#: includes/admin/class-mp-shortcode-builder.php:727 +#: includes/admin/class-mp-shortcode-builder.php:883 +#: includes/admin/class-mp-shortcode-builder.php:894 +#: includes/admin/class-mp-shortcode-builder.php:946 +#: includes/admin/class-mp-shortcode-builder.php:956 +#: includes/admin/class-mp-shortcode-builder.php:1006 +#: includes/admin/class-mp-shortcode-builder.php:1327 +#: includes/admin/class-mp-shortcode-builder.php:1338 +#: includes/admin/store-settings/class-mp-store-settings-general.php:357 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:270 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:108 +#: includes/admin/widgets/ms-global-product-list.php:172 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:94 +msgid "None" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:352 +msgid "Google Analytics Ecommerce Tracking" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:310 +msgid "This option turns MarketPress into more of a product listing plugin, disabling shopping carts, checkout, and order management. This is useful if you simply want to list items you can buy in a store somewhere else, optionally linking the \"Buy Now\" buttons to an external site. Some examples are a car dealership, or linking to songs/albums in itunes, or linking to products on another site with your own affiliate links." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:304 +msgid "Whether or not customers must be registered and logged in to checkout. (Not recommended: Enabling this can lower conversions)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:258 +msgid "How many times may a customer download a file they have purchased? (It's best to set this higher than one in case they have any problems downloading)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:257 +msgid "Maximum Downloads" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:298 +msgid "This will set the product to draft if inventory of all variations is gone." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:288 +msgid "At what low stock count do you want to be warned for products you have enabled inventory tracking for?" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:208 +#: includes/admin/store-settings/class-mp-store-settings-general.php:287 +msgid "Inventory Warning Threshold" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:282 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:542 +msgid "Miscellaneous Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:429 +#: includes/multisite/class-mp-admin-multisite.php:247 +msgid "Show Decimal in Prices" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:451 +#: includes/admin/store-settings/class-mp-store-settings-general.php:403 +#: includes/multisite/class-mp-admin-multisite.php:221 +msgid "Currency Symbol Position" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:444 +#: includes/admin/store-settings/class-mp-store-settings-general.php:396 +msgid "Store Currency" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:429 +#: includes/admin/store-settings/class-mp-store-settings-general.php:381 +msgid "Currency Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:516 +msgid "Please see your local tax laws. Note if this is enabled and a downloadable only cart, rates will be the default for your base location." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:529 +msgid "Apply Tax to Downloadable Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:498 +msgid "Enabling this option allows you to enter and show all prices inclusive of tax, while still listing the tax total as a line item in shopping carts. Please see your local tax laws." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:497 +msgid "Enter Prices Inclusive of Tax?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:492 +msgid "Please see your local tax laws. Most areas charge tax on shipping fees." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:491 +msgid "Apply Tax To Shipping Fees?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:674 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:565 +#: includes/common/payment-gateways/authorizenet-aim.php:291 +#: includes/common/payment-gateways/authorizenet-aim.php:326 +#: includes/common/payment-gateways/payfast.php:347 +msgid "No" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:675 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:759 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:512 +#: includes/admin/class-mp-setup-wizard.php:518 +#: includes/admin/class-mp-setup-wizard.php:524 +#: includes/admin/class-mp-setup-wizard.php:530 +#: includes/admin/class-mp-setup-wizard.php:564 +#: includes/admin/store-settings/class-mp-store-settings-general.php:232 +#: includes/admin/store-settings/class-mp-store-settings-general.php:299 +#: includes/admin/store-settings/class-mp-store-settings-general.php:305 +#: includes/admin/store-settings/class-mp-store-settings-general.php:311 +#: includes/admin/store-settings/class-mp-store-settings-general.php:317 +#: includes/admin/store-settings/class-mp-store-settings-general.php:328 +#: includes/admin/store-settings/class-mp-store-settings-general.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:341 +#: includes/admin/store-settings/class-mp-store-settings-general.php:348 +#: includes/admin/store-settings/class-mp-store-settings-general.php:367 +#: includes/admin/store-settings/class-mp-store-settings-general.php:493 +#: includes/admin/store-settings/class-mp-store-settings-general.php:499 +#: includes/admin/store-settings/class-mp-store-settings-general.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:556 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:375 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:381 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:387 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:474 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:493 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:532 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:574 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:606 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:664 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:670 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:677 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:683 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:689 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:763 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:774 +#: includes/common/payment-gateways/_bitpay.php:250 +#: includes/common/payment-gateways/_bitpay.php:257 +#: includes/common/payment-gateways/_bitpay.php:264 +#: includes/common/payment-gateways/authorizenet-aim.php:290 +#: includes/common/payment-gateways/authorizenet-aim.php:325 +#: includes/common/payment-gateways/free_orders.php:160 +#: includes/common/payment-gateways/payfast.php:346 +#: includes/common/payment-gateways/paymill.php:162 +#: includes/common/payment-gateways/paypal-payflow.php:441 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-checkbox.php:22 +msgid "Yes" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:492 +#: includes/admin/store-settings/class-mp-store-settings-general.php:472 +msgid "%s Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:467 +#: includes/admin/store-settings/class-mp-store-settings-general.php:449 +msgid "Tax Settings" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:370 +#: includes/admin/store-settings/class-mp-store-settings-general.php:624 +msgid "Base Zip/Postal Code" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:354 +#: includes/admin/store-settings/class-mp-store-settings-general.php:608 +msgid "Base State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:589 +msgid "Base Country" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:582 +msgid "Location Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:195 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:800 +#: includes/multisite/class-mp-admin-multisite.php:172 +msgid "General Settings" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1945 +#: includes/admin/class-mp-products-admin.php:2185 +#: includes/admin/class-mp-store-settings-admin.php:111 +#: includes/admin/class-mp-store-settings-admin.php:266 +msgid "General" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:242 +msgid "Importers" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +#: includes/admin/class-mp-store-settings-admin.php:234 +msgid "Payments" +msgstr "การจ่ายเงิน" + +#: includes/admin/class-mp-dashboard-widgets.php:313 +#: includes/admin/class-mp-store-settings-admin.php:112 +#: includes/admin/class-mp-store-settings-admin.php:222 +msgid "Presentation" +msgstr "การนำเสนอ" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:916 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1015 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1018 +#: includes/admin/class-mp-dashboard-widgets.php:305 marketpress.php:702 +msgid "Coupons" +msgstr "คูปอง" + +#: includes/admin/class-mp-admin.php:251 +msgid "Download »" +msgstr "" + +#: includes/admin/class-mp-admin.php:245 +#: includes/admin/class-mp-exporter-orders.php:170 +msgid "All Statuses" +msgstr "" + +#: includes/admin/class-mp-admin.php:209 +#: includes/admin/class-mp-exporter-orders.php:150 +#: includes/admin/class-mp-exporter-orders.php:178 +msgid "Export Orders" +msgstr "" + +#: includes/admin/class-mp-admin.php:228 +msgid "Show all dates" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:947 +msgid "Change Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:287 +msgid "Order Notes" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:478 +msgid "Other" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:205 +msgid "Subtotal" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:84 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:87 +#: includes/admin/class-mp-products-admin.php:1737 +#: includes/common/class-mp-cart.php:1409 +#: includes/common/class-mp-product.php:559 +msgid "Quantity" +msgstr "" + +#: includes/common/helpers.php:93 +msgid "Item" +msgstr "" + +#: includes/common/class-mp-order.php:1050 +msgid "Current Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:297 +msgid "Order Actions" +msgstr "" + +#: includes/common/class-mp-product.php:1084 +msgid "More Info »" +msgstr "" + +#: includes/common/class-mp-product.php:2313 +msgid "Low Product Inventory Notification" +msgstr "" + +#: includes/common/class-mp-order.php:338 includes/common/data.php:154 +msgid "New Order Notification: ORDERID" +msgstr "" + +#: includes/common/helpers.php:259 +msgid "Your payment for this order is complete." +msgstr "" + +#: includes/common/helpers.php:261 +msgid "Your payment for this order is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/helpers.php:256 +msgid "Payment Total:" +msgstr "" + +#: includes/common/helpers.php:253 +msgid "Transaction ID:" +msgstr "" + +#: includes/common/helpers.php:249 +msgid "Payment Type:" +msgstr "" + +#: includes/common/helpers.php:246 +msgid "Payment Method:" +msgstr "" + +#: includes/common/helpers.php:242 +msgid "Order Notes:" +msgstr "" + +#: includes/common/helpers.php:237 +msgid "Special Instructions:" +msgstr "" + +#: includes/common/helpers.php:232 +msgid "Tracking Number:" +msgstr "หมายเลขติดตาม:" + +#: includes/common/helpers.php:223 includes/common/helpers.php:226 +#: includes/common/helpers.php:228 +#: includes/common/shipping-modules/class-mp-shipping-api.php:406 +#: includes/common/shipping-modules/class-mp-shipping-api.php:428 +msgid "Shipping Method:" +msgstr "วิธีการจัดส่งสินค้า:" + +#: includes/common/helpers.php:168 +msgid "No shipping required for this order." +msgstr "" + +#: includes/common/helpers.php:155 +msgid "Order Total:" +msgstr "รวมการสั่งซื้อ:" + +#: includes/common/class-mp-order.php:1025 +msgid "Taxes:" +msgstr "ภาษี:" + +#: includes/common/class-mp-order.php:1032 includes/common/helpers.php:144 +msgid "Shipping:" +msgstr "การจัดส่ง:" + +#: includes/public/class-mp-checkout.php:367 +msgid "Street address, P.O. box, company name, c/o" +msgstr "เลขที่ , ถนน , ซอย , ตำบล" + +#: includes/admin/class-mp-orders-admin.php:314 +msgid "Shipping Info" +msgstr "ข้อมูลการจัดส่งสินค้า" + +#: includes/public/class-mp-public.php:740 +msgid "Whoops, there was a problem loading up this file for your download. Please contact us for help." +msgstr "" + +#: includes/public/class-mp-public.php:683 +msgid "Sorry, our records show you've downloaded this file %d out of %d times allowed. Please contact us if you still need help." +msgstr "" + +#: includes/public/class-mp-public.php:634 +msgid "Sorry, your order has been marked as unpaid." +msgstr "" + +#: includes/public/class-mp-public.php:629 +msgid "Sorry, the link is invalid for this download." +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:15 +#: includes/admin/class-mp-products-admin.php:1172 +msgid "Cheatin’ uh?" +msgstr "" + +#: includes/public/class-mp-public.php:407 +#: includes/public/class-mp-short-codes.php:128 +msgid "Please enter a valid email address." +msgstr "" + +#: includes/admin/class-mp-ajax.php:191 +#: includes/admin/class-mp-products-admin.php:1821 +#: includes/admin/class-mp-products-admin.php:2010 +#: includes/admin/class-mp-products-admin.php:2267 +msgid "File URL" +msgstr "URL ของไฟล์" + +#: includes/admin/class-mp-products-admin.php:1842 +msgid "External Link" +msgstr "ลิ้งค์ภายนอก" + +#: includes/admin/class-mp-products-admin.php:2177 +msgid "Add Variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:126 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:289 +msgid "Inventory" +msgstr "ปริมาณสินค้า" + +#: includes/admin/class-mp-products-admin.php:438 +#: includes/admin/class-mp-products-admin.php:578 +#: includes/admin/class-mp-products-admin.php:1552 +#: includes/admin/class-mp-products-admin.php:2053 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:134 +msgid "Sale Price" +msgstr "ขายลดราคา" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "Variation Name" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1931 +msgid "Product Details" +msgstr "Product Details" + +#: includes/admin/class-mp-product-attributes-list-table.php:33 +msgid "Delete" +msgstr "ลบ" + +#: includes/admin/class-mp-orders-admin.php:1057 +msgid "Trashed" +msgstr "ในถังขยะ" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:231 +#: includes/admin/class-mp-orders-admin.php:1015 +#: includes/common/class-mp-order.php:1052 includes/common/helpers.php:97 +msgid "Total" +msgstr "รวมทั้งหมด" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1196 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:210 +#: includes/admin/class-mp-orders-admin.php:1014 +msgid "Discount" +msgstr "ส่วนลด" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:221 +#: includes/admin/class-mp-orders-admin.php:1013 +#: includes/common/payment-gateways/_ideal.php:148 +#: includes/common/payment-gateways/_payway.php:134 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:108 +msgid "Tax" +msgstr "ภาษี" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:216 +#: includes/admin/class-mp-orders-admin.php:1012 +#: includes/admin/class-mp-products-admin.php:1958 +#: includes/admin/class-mp-products-admin.php:2198 +#: includes/admin/class-mp-store-settings-admin.php:114 +#: includes/admin/class-mp-store-settings-admin.php:230 +#: includes/common/class-mp-cart.php:717 includes/common/helpers.php:168 +#: includes/common/payment-gateways/_ideal.php:137 +#: includes/common/payment-gateways/_payway.php:116 +#: includes/public/class-mp-checkout.php:1304 +msgid "Shipping" +msgstr "การจัดส่ง" + +#: includes/admin/class-mp-orders-admin.php:1011 +msgid "Items" +msgstr "รายการ" + +#: includes/admin/class-mp-orders-admin.php:1010 +msgid "From" +msgstr "จาก" + +#: includes/admin/class-mp-exporter-orders.php:154 +#: includes/admin/class-mp-orders-admin.php:1009 +#: includes/common/class-mp-gdpr.php:370 +msgid "Order Date" +msgstr "วันที่สั่งซื้อ" + +#: includes/admin/class-mp-orders-admin.php:1008 +#: includes/common/class-mp-gdpr.php:366 +#: includes/common/template-functions.php:2134 +msgid "Order ID" +msgstr "หมายเลขคำสั่งซื้อ" + +#: includes/addons/class-mp-addons-list-table.php:22 +#: includes/admin/class-mp-orders-admin.php:1007 +msgid "Status" +msgstr "สถานะ" + +#: includes/admin/class-mp-orders-admin.php:1155 +msgid "N/A" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:243 +#: includes/admin/class-mp-products-admin.php:464 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:142 +msgid "Sales" +msgstr "ลดราคา" + +#: includes/admin/class-mp-products-admin.php:463 +msgid "Stock" +msgstr "คลังสินค้า" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:85 +#: includes/admin/class-mp-ajax.php:176 includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:434 +#: includes/admin/class-mp-products-admin.php:462 +#: includes/admin/class-mp-products-admin.php:576 +#: includes/admin/class-mp-products-admin.php:1519 +#: includes/admin/class-mp-products-admin.php:1569 +#: includes/admin/class-mp-products-admin.php:1950 +#: includes/admin/class-mp-products-admin.php:2059 +#: includes/admin/class-mp-products-admin.php:2190 +#: includes/admin/class-mp-products-admin.php:2330 +#: includes/common/class-mp-cart.php:1415 includes/common/helpers.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:130 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:276 +msgid "Price" +msgstr "ราคาปกติ" + +#: includes/admin/class-mp-ajax.php:173 +#: includes/admin/class-mp-products-admin.php:461 +#: includes/admin/class-mp-products-admin.php:1972 +#: includes/admin/class-mp-products-admin.php:2224 +msgid "SKU" +msgstr "รหัสสินค้า" + +#: includes/admin/class-mp-products-admin.php:459 +#: includes/admin/class-mp-products-admin.php:1793 +#: includes/admin/class-mp-products-admin.php:1805 +#: includes/admin/class-mp-products-admin.php:2163 +msgid "Variations" +msgstr "รูปแบบ" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:83 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:86 +#: includes/admin/class-mp-dashboard-widgets.php:134 +#: includes/admin/class-mp-products-admin.php:458 +#: includes/admin/class-mp-products-admin.php:837 +#: includes/admin/class-mp-shortcode-builder.php:689 +#: includes/admin/class-mp-shortcode-builder.php:856 +#: includes/admin/class-mp-shortcode-builder.php:1300 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:512 +#: includes/admin/widgets/ms-global-product-list.php:115 +#: includes/admin/widgets/product-list.php:211 +msgid "Product Name" +msgstr "ชื่อสินค้า" + +#: includes/common/template-functions.php:2575 +msgid "Categorized in " +msgstr "จัดหมวดหมู่ใน" + +#: includes/admin/class-mp-orders-admin.php:305 +#: includes/common/payment-gateways/free_orders.php:176 +msgid "Payment Information" +msgstr "ข้อมูลการชำระเงิน" + +#: includes/admin/class-mp-exporter-orders.php:167 +#: includes/admin/class-mp-orders-admin.php:432 +#: includes/admin/class-mp-pages-admin.php:62 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:227 +#: includes/common/class-mp-gdpr.php:374 +#: includes/common/template-functions.php:175 +#: includes/common/template-functions.php:926 +msgid "Order Status" +msgstr "สถานะคำสั่งซื้อ" + +#. translators: %s: orders closed +#: marketpress.php:327 +msgid "Closed (%s)" +msgid_plural "Closed (%s)" +msgstr[0] "ปิด (%s)" + +#: includes/admin/class-mp-admin.php:249 +#: includes/admin/class-mp-orders-admin.php:375 +#: includes/admin/class-mp-orders-admin.php:951 +#: includes/admin/class-mp-orders-admin.php:1053 +#: includes/admin/class-mp-orders-admin.php:1065 +#: includes/common/class-mp-gdpr.php:330 +#: includes/common/class-mp-order.php:1019 marketpress.php:325 +msgid "Closed" +msgstr "ปิด" + +#. translators: %s: shipped orders +#: marketpress.php:320 +msgid "Shipped (%s)" +msgid_plural "Shipped (%s)" +msgstr[0] "การจัดส่ง (%s)" + +#: includes/admin/class-mp-admin.php:248 +#: includes/admin/class-mp-orders-admin.php:376 +#: includes/admin/class-mp-orders-admin.php:950 +#: includes/admin/class-mp-orders-admin.php:1049 +#: includes/admin/class-mp-orders-admin.php:1064 +#: includes/common/class-mp-gdpr.php:329 +#: includes/common/class-mp-order.php:1002 marketpress.php:318 +msgid "Shipped" +msgstr "การจัดส่ง" + +#. translators: %s: paid orders +#: marketpress.php:313 +msgid "Paid (%s)" +msgid_plural "Paid (%s)" +msgstr[0] "ชำระเงิน (%s)" + +#: includes/admin/class-mp-admin.php:247 +#: includes/admin/class-mp-orders-admin.php:377 +#: includes/admin/class-mp-orders-admin.php:949 +#: includes/admin/class-mp-orders-admin.php:1045 +#: includes/admin/class-mp-orders-admin.php:1063 +#: includes/common/class-mp-gdpr.php:328 +#: includes/common/payment-gateways/2checkout.php:294 +#: includes/common/payment-gateways/_cubepoints.php:130 +#: includes/common/payment-gateways/authorizenet-aim.php:193 +#: includes/common/payment-gateways/free_orders.php:91 +#: includes/common/payment-gateways/mijireh.php:248 +#: includes/common/payment-gateways/paymill.php:273 +#: includes/common/payment-gateways/paypal-express.php:933 +#: includes/common/payment-gateways/paypal-express.php:967 +#: includes/common/payment-gateways/pin.php:258 +#: includes/common/payment-gateways/simplify.php:181 +#: includes/common/payment-gateways/stripe.php:368 +#: includes/common/payment-gateways/wepay.php:269 marketpress.php:311 +msgid "Paid" +msgstr "ชำระเงิน" + +#. translators: %s: orders received +#: marketpress.php:306 +msgid "Received (%s)" +msgid_plural "Received (%s)" +msgstr[0] "ได้รับ (%s)" + +#: includes/admin/class-mp-admin.php:246 +#: includes/admin/class-mp-orders-admin.php:378 +#: includes/admin/class-mp-orders-admin.php:1041 +#: includes/admin/class-mp-orders-admin.php:1062 +#: includes/common/class-mp-gdpr.php:327 includes/common/class-mp-order.php:995 +#: includes/common/payment-gateways/payfast.php:244 marketpress.php:304 +msgid "Received" +msgstr "ได้รับ" + +#: marketpress.php:268 +msgid "Search Orders" +msgstr "ค้นหาคำสั่งซื้อ" + +#: marketpress.php:267 +msgid "View Order" +msgstr "ดูคำสั่งซื้อ" + +#: marketpress.php:262 +msgid "Order" +msgstr "คำสั่งซื้อ" + +#: includes/admin/class-mp-dashboard-widgets.php:301 +#: includes/admin/class-mp-orders-admin.php:989 marketpress.php:261 +msgid "Orders" +msgstr "คำสั่งซื้อ" + +#: marketpress.php:228 +msgid "No Products found in Trash" +msgstr "ไม่มีสินค้าในถังขยะ" + +#: marketpress.php:227 +msgid "No Products Found" +msgstr "ไม่พบสินค้า" + +#: marketpress.php:226 +msgid "Search Products" +msgstr "ค้นหาสินค้า" + +#: marketpress.php:225 marketpress.php:229 +msgid "View Product" +msgstr "ดูสินค้า" + +#: marketpress.php:224 +msgid "New Product" +msgstr "สินค้าใหม่" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1022 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:258 +#: marketpress.php:223 +msgid "Edit" +msgstr "แก้ไข" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1019 +msgid "Create New" +msgstr "สร้างใหม่" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:687 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:698 +#: marketpress.php:217 +msgid "Product" +msgstr "สินค้า" + +#: includes/admin/class-mp-dashboard-widgets.php:307 +#: includes/common/template-functions.php:173 +#: includes/common/template-functions.php:179 +#: includes/common/template-functions.php:902 +#: includes/multisite/template-functions.php:82 marketpress.php:216 +#: marketpress.php:219 +msgid "Products" +msgstr "สินค้า" + +#: includes/admin/class-mp-store-settings-admin.php:118 +#: includes/admin/widgets/product-tag-cloud.php:46 +#: includes/multisite/class-mp-admin-multisite.php:548 +msgid "Product Tags" +msgstr "แท็กส์ สินค้า" + +#: includes/common/template-functions.php:2906 +#: includes/multisite/template-functions.php:449 +msgid "Product Category" +msgstr "หมวดหมู่สินค้า" + +#: includes/admin/class-mp-store-settings-admin.php:117 +#: includes/admin/widgets/categories.php:8 +#: includes/admin/widgets/categories.php:18 +#: includes/multisite/class-mp-admin-multisite.php:539 +msgid "Product Categories" +msgstr "หมวดหมู่สินค้า" + +#: includes/common/payment-gateways/stripe.php:332 +#: includes/common/template-functions.php:872 marketpress.php:218 +msgid "Store" +msgstr "ร้านค้า" + +#: includes/admin/class-mp-pages-admin.php:60 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:209 +#: includes/admin/widgets/cart.php:8 includes/admin/widgets/cart.php:56 +#: includes/common/template-functions.php:174 +#: includes/common/template-functions.php:811 +msgid "Shopping Cart" +msgstr "ตะกร้าสินค้า" + +#: includes/admin/class-mp-store-settings-admin.php:110 +#: includes/admin/class-mp-store-settings-admin.php:218 +msgid "Store Settings" +msgstr "ตั้งค่าร้านค้า" + +#: includes/addons/class-mp-addons-list-table.php:128 marketpress.php:607 +msgid "Settings" +msgstr "ตั้งค่า" + +#: includes/common/data.php:178 includes/common/data.php:190 +msgid "Your Order Has Been Shipped! (ORDERID)" +msgstr "" + +#: includes/common/data.php:159 includes/common/data.php:166 +#: includes/common/data.php:172 +msgid "Your Order Confirmation (ORDERID)" +msgstr "" + +#: includes/common/data.php:148 +msgid "

    Thank you for your order! We appreciate your business, and please come back often to check out our new products.

    " +msgstr "" + +#: includes/common/data.php:147 +msgid "

    You are almost done! Please do a final review of your order to make sure everything is correct then click the \"Confirm Payment\" button.

    " +msgstr "" + +#: includes/common/data.php:145 +msgid "

    Please enter your shipping information in the form below to proceed with your order.

    " +msgstr "" + +#: includes/common/data.php:143 +msgid "

    If you have any questions about your order please do not hesitate to contact us.

    " +msgstr "" + +#: includes/common/data.php:106 +msgid "tag" +msgstr "แท็ก" + +#: includes/common/data.php:105 +msgid "category" +msgstr "หมวดหมู่" + +#: includes/common/data.php:104 +msgid "order-status" +msgstr "สถานะคำสั่งซื้อ" + +#: includes/common/data.php:103 +msgid "shopping-cart" +msgstr "ตะกร้าสินค้า" + +#: includes/common/data.php:102 +msgid "products" +msgstr "สินค้า" + +#. Translators: change default slugs here +#: includes/common/data.php:101 +msgid "store" +msgstr "ร้านค้า" \ No newline at end of file diff --git a/languages/mp-tr.mo b/languages/mp-tr.mo new file mode 100644 index 0000000000000000000000000000000000000000..f528752285a0176ad1cddb69ddd5d1a2e000ae49 GIT binary patch literal 5217 zcmai%U2J4k9l*~bELd4T_)rnl0|DF>rrR#=N@hPyx9x5>ZI`kw%N9{NbMNWQVeZFp zKiZu>@Zgge-V~m|>VvL6K_A>;QWBGyeK1O5LJaXi<9A~4K@17YC{>d|Yq`Bi>?jrJ$t&)`SkFX4ybYw%<6j}_m5 zx6t0RSE-M~Tj2=27s|XZ!|UKAydKWM&%))3Yf#2N13v}74{wAoL0RutRr_~P_I(51 z4fkBD)IPW$UJZ{x+2<&feW$Aa1t{x31Vz=ypy=U285csC--S2BC!y^BT`2qg7}nrR zQ1<&96g}RAh@$qesm#9)egW=-qwp}i6Z-HT_!K+{e+oYe{|aw_Z$er3T7;5yZ-&yo zqiT;qk>faIsG6_(&qLYYgGb=w5Rudms_#F6vi@brqkh3l)_E0*UH=SapEse{=PF(z z*FGrv-v)858iPFQ2rv0Q0mW_$Rr}GZ-G;Z)zXm<{9rz9S7CZ|dW|HjxBPeoTuG%j{ z9`y<@k@vUoL+~F^{P9mHa_q%8Z^P^1gVIKL8GiwO61E|#sBgkg!>6n7KZFwJFF{%F zH;_lY&P(k5HWYdGqMUFaydBic-re;kV6XQ24yK`41?E3Uyw+D}1|?-j_S{=`f6 z`4^P9_%A#F_afvN9D`yP14Z5^D_(-K&#x=~1&ZANu6PZbql&r#iX6A|l6~)kV*eQ^ zb~y({?#JM1=%DDi2|ok3pzQM+{TT6P>nPr{kigcF{_lgeG%w#BZIotd_0zofB%pUp0}(*F~FUESIW@AkdR0(hsFpO{AWUe7e=iysOW$ z-rb3LB9D)%Nt4-ToVazSva6bG#W4aJy*Q9--e#@XudB%zp`%PM#e9p`=twM+^;x?n zKYf?6UE-_BJV|Wib@`EIaj2K<#f-s41EtSd&$>>gr$gfceJYNz#Cv_6u?7XzlpTsc z9eJjc=0Rzu$(BisCksqp%#s~4PsVAcPTR;PCfK&f=^$>&jBX`%<@gL5P zqYzTODa)qQu_n=MCq8Z!RZg;ATDGW*h4xg*RH_YP%NMUIp|V`%6T*1i*42{B0zqP; zlzJ#9$gJ(E^Dd<*mo6$}QtzL2LEKDCm>y8eM9#7tK_n*?JJX%m;Zs5+Exfw$K<%7e zWsNwhN#xe`p|SD9wXs9B@k4ritbX5kef;n}WBePLKQljFJ8u&iTi4^GV;%~3sK$s1RqFUdOQ&l0Z;un%S8P(F!pCw_)%E=imyIk0IW@d?ijxq@qE69F zj~_a!%b&;hNBV>wKX7#9Lai+L$X?f!^|AsVJT!XW==jJSiINkAh?0zumyc5^YG?dy znRgWJ5jm(AUB@Ku%7!I9S52sG7TUIUy-U=1b7jNyH~O2tX}jW#HoDon98pu9Zn&W7 z$UGN0-E^Qlo==nGS2jZa^hDPrfl1U-Z!7F=MZGP(Y&wQ{4)aB7xwqApN*1Xr-*chw z^rFf7n}MDPhG%x~xrB*&7N5w`ow~X@=@Na`v;)_*dKpBVFDQj~4 z+LU4C={@|Qmh&VNC+%eg*krCa!0liIROY6Hpla5Ifotp2;<;T1 zdH==Kh3X8i>Li~r-To#Q4+#=Fm*cjo{31VR5Td~%s9ZWpbGD;#+TW}X#_i}Sd`xT% zyD-2oU{c)3Ri-UbrQ6k+zB3-h7=0qOK~$oIHkH{1F)X%j#*{iA4Tqgmd6I|uu+8eK z_pC41L^hWo2_%{m-7X>n>k%1p;+I;K!TmlXo4u`78;LR79IsJcO(^5+JyzTGF{O&N zDcdFrjm}8MmZKa>M2}X{TCMVa1J5%rriP^VkPWM32SM|W^bxZT`X+pdjcNcc4~LCY zt}A&s_%@w6?s&VVN<~O8zpxr6HeHrDiS$yT0Ed5?HOcP6)MP+0ctg%m%vrn}aFpBBbm(alCoI8Pj2$B>+L^=DMUqne1LBdG z%X^o0xJWX)a8Vj3dBj~gA=#4Rt}xfz%2p`7yDtlp%s!P`DmlVrww-V#ApdN)yfyG& zH64oWq?Sp+=R(vj 1);\n" +"X-Generator: GlotPress/2.3.1\n" +"Language: tr\n" +"Project-Id-Version: MarketPress\n" + +#: includes/public/class-mp-checkout.php:1285 +msgid "By clicking this checkbox you allow the website to process your personal data." +msgstr "" + +#: includes/common/class-mp-gdpr.php:382 +msgid "Order Info" +msgstr "" + +#: includes/common/class-mp-gdpr.php:268 +msgid "Shipping Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:267 +msgid "Shipping Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:266 +msgid "Shipping ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:265 +msgid "Shipping State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:264 +msgid "Shipping City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:263 +msgid "Shipping Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:262 +msgid "Shipping Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:261 +msgid "Shipping Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:260 +msgid "Shipping Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:259 +msgid "Shipping Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:258 +msgid "Shipping First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:254 +msgid "Billing Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:253 +msgid "Billing Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:252 +msgid "Billing ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:251 +msgid "Billing State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:250 +msgid "Billing City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:249 +msgid "Billing Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:248 +msgid "Billing Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:247 +msgid "Billing Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:246 +msgid "Billing Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:245 +msgid "Billing Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:244 +msgid "Billing First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:151 +msgid "Orders Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:139 +msgid "Customer Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:100 includes/common/class-mp-gdpr.php:116 +msgid "MarketPress User Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:81 +msgid "" +"In addition to standard WordPress session cookies, this site might be setting an\n" +"\t\t additional cookie to remember your cart settings. This cookie will last for one year." +msgstr "" + +#: includes/common/class-mp-gdpr.php:80 +msgid "Cookies" +msgstr "" + +#: includes/common/class-mp-gdpr.php:77 +msgid "" +"The following information will be collected in order to process orders: your name,\n" +"\t\t username, email address, avatar and profile URLs, address and phone number. This data can be\n" +"\t\t exported and removed." +msgstr "" + +#: includes/common/class-mp-gdpr.php:76 +msgid "Additional data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:71 +msgid "" +"This site might be using third party services and tools to process payments or/and\n" +"\t\t process shipping data when creating orders on the MarketPress store. These services include payment\n" +"\t\t gateways: 2Checkout, Authorize.net AIM, eWay shared payments, eWay Rapid 3.1 Payments, Mijireh,\n" +"\t\t Mollie, Paymill, PayPal, PIN, Simplify Commerce by MasterCard, Stripe and WePay; shipping gateways:\n" +"\t\t Fedex, UPS, USPS." +msgstr "" + +#: includes/common/class-mp-gdpr.php:70 +msgid "Third parties" +msgstr "" + +#: includes/admin/class-mp-admin.php:403 +msgid "Start creating store pages and products for your online shop here." +msgstr "" + +#: includes/admin/class-mp-admin.php:402 +msgid "Create Online Shop" +msgstr "" + +#: includes/admin/class-mp-admin.php:394 +msgid "Run Setup Wizard" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:234 +msgid "If having problems during invoice generation, add define( 'DOMPDF_ENABLE_HTML5PARSER', true ); to the wp-config.php file." +msgstr "" + +#: includes/public/class-mp-checkout.php:723 +msgid "Invalid Email" +msgstr "" + +#: includes/public/class-mp-checkout.php:721 +#: includes/public/class-mp-checkout.php:729 +msgid "This field is required" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:804 +msgid "This option changes the built-in css styles for store pages. For a custom css style, save your css file with the /* MarketPress Style: Your CSS Theme Name Here */ header line in the \"%s\" folder and it will appear in this list so you may select it. You should select \"None\" if you don't wish to use custom CSS styles or if you are using default theme templates or custom theme templates and css to make your own completely unique store design. For more information on custom theme templates click here »." +msgstr "" + +#: includes/public/class-mp-public.php:421 +#: includes/public/class-mp-short-codes.php:142 +msgid "Please enter a value greater than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:420 +#: includes/public/class-mp-short-codes.php:141 +msgid "Please enter a value less than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:419 +#: includes/public/class-mp-short-codes.php:140 +msgid "Please enter a value between {0} and {1}." +msgstr "" + +#: includes/public/class-mp-public.php:418 +#: includes/public/class-mp-short-codes.php:139 +msgid "Please enter a value between {0} and {1} characters long." +msgstr "" + +#: includes/public/class-mp-public.php:417 +#: includes/public/class-mp-short-codes.php:138 +msgid "Please enter at least {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:416 +#: includes/public/class-mp-short-codes.php:137 +msgid "Please enter no more than {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:415 +#: includes/public/class-mp-short-codes.php:136 +msgid "Please enter a value with a valid extension." +msgstr "" + +#: includes/public/class-mp-public.php:414 +#: includes/public/class-mp-short-codes.php:135 +msgid "Please enter the same value again." +msgstr "" + +#: includes/public/class-mp-public.php:413 +#: includes/public/class-mp-short-codes.php:134 +msgid "Please enter a valid credit card number." +msgstr "" + +#: includes/public/class-mp-public.php:412 +#: includes/public/class-mp-short-codes.php:133 +msgid "Please enter only digits." +msgstr "" + +#: includes/public/class-mp-public.php:411 +#: includes/public/class-mp-short-codes.php:132 +msgid "Please enter a valid number." +msgstr "" + +#: includes/public/class-mp-public.php:410 +#: includes/public/class-mp-short-codes.php:131 +msgid "Please enter a valid date (ISO)." +msgstr "" + +#: includes/public/class-mp-public.php:409 +#: includes/public/class-mp-short-codes.php:130 +msgid "Please enter a valid date." +msgstr "" + +#: includes/public/class-mp-public.php:408 +#: includes/public/class-mp-short-codes.php:129 +msgid "Please enter a valid URL." +msgstr "" + +#: includes/public/class-mp-public.php:406 +#: includes/public/class-mp-short-codes.php:127 +msgid "Please fix this field." +msgstr "" + +#: includes/public/class-mp-checkout.php:1287 +#: includes/public/class-mp-public.php:405 +#: includes/public/class-mp-short-codes.php:126 +msgid "This field is required." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:810 +msgid "None - Without Special CSS-styles" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:809 +msgid "Default - Using Default CSS-styles" +msgstr "" + +#: marketpress.php:739 +msgid "Enable multiple downloads per product" +msgstr "" + +#: marketpress.php:738 +msgid "Multiple Downloads" +msgstr "" + +#: includes/public/class-mp-checkout.php:715 +msgid "Invalid Zip Code" +msgstr "" + +#: includes/common/template-functions.php:2126 +msgid "Guest Email" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:195 +msgid "There was a problem finalizing your purchase. Please re-enter your credit card information and try again" +msgstr "" + +#: includes/common/class-mp-cart.php:565 includes/common/class-mp-order.php:600 +#: includes/common/helpers.php:111 +msgid "Download %1$s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:331 +msgid "Export products to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:328 +msgid "The import process uses the WordPress importer plugin." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:326 +msgid "Import / Export Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:325 +msgid "Export settings to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:324 +msgid "Import configuration" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:320 +msgid "Use the text below to export to a new installation. Or paste in the new configuration to import." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:318 +msgid "Import / Export Settings" +msgstr "" + +#. translators: URL to wp-admin/import.php +#: includes/admin/store-settings/class-mp-store-settings-import.php:266 +msgid "This importer is not installed. Please install importers from the main site." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:261 +msgid "Install Now" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:260 +msgid "Install %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:240 +msgid "Run Importer" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:239 +msgid "Run %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:258 +msgid "Import/Export" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1199 +msgid "Requires Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:737 +msgid "Optionally limit the user to some categories" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:671 +msgid "Should this coupon only be available to logged in users?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:670 +msgid "Require Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:655 +msgid "Mimimum number of products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:653 +msgid "Enter the minimum number of products in the cart that this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:648 +msgid "Can this coupon be limited to a number of products in the cart?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:334 +msgid "Add all values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:265 +msgid "Set as default variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:154 +msgid "Set Default" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:150 +msgid "More Info" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:40 +msgid "MarketPress - Quick Setup" +msgstr "" + +#: includes/public/class-mp-checkout.php:1399 +msgid "Proceed to checkout and create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1241 +#: includes/public/class-mp-checkout.php:1245 +msgid "Register account" +msgstr "" + +#: includes/public/class-mp-checkout.php:1233 +msgid "Register as customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:765 +msgid "

    Oops!

    Looks like you haven't added anything your cart. Let's go shopping!

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:763 +msgid "

    Oops!

    The cart is disabled.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing Information" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:214 +msgid "Global Currency" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:198 +msgid "Global Store Currency" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:507 +msgid "There are no shipping services available for this type of package in your location." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:168 +msgid "Using this USPS Shipping calculator requires requesting an Ecommerce API Username and Password. Get your free set of credentials here ». The password is no longer used for the API, just the username which you should enter below. The USPS test site has not yet been updated and currently doesn't work - you should just request activating your credentials with USPS and go live." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:339 +msgid "ZIP Code" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:334 +msgid "Last name" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:333 +msgid "First name" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:150 +msgid "These are the manual payment instructions to display on the order confirmation screen. TOTAL will be replaced with the order total and ORDERID will be replaced with Order ID." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:240 +msgid "You must login to Authorize.net merchant dashboard to obtain the API login ID and API transaction key. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:327 +msgid "
    1. Set the \"Return Method\" within Site Management to Header Redirect and set the \"Return URL\" to %s
    2. Set your notifications url to %s
    " +msgstr "" + +#: includes/common/data.php:191 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Also, digital downloads included in your order are now ready to be downloaded. Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:185 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order is now available to download! Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:184 +msgid "Your Order Is Ready To Be Downloaded! (ORDERID)" +msgstr "" + +#: includes/common/data.php:179 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:173 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received, your digital goods are ready to be downloaded and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:167 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received and your digital goods are ready to be downloaded. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:160 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +" Your order has been received, and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information: \n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/class-mp-product.php:638 +msgid "You can not add more items to cart." +msgstr "" + +#: includes/common/class-mp-product.php:635 +msgid "You can only add {0} to cart." +msgstr "" + +#: includes/common/class-mp-product.php:625 +msgid "This product has an order limit of %d." +msgstr "" + +#: includes/common/class-mp-order.php:1454 +msgid "Shipped: tracking code: %s" +msgstr "" + +#: includes/common/class-mp-order.php:1000 +#: includes/common/class-mp-order.php:1012 +msgid "Finished" +msgstr "" + +#: includes/common/class-mp-order.php:858 +msgid "Contact Details" +msgstr "" + +#: includes/common/class-mp-order.php:339 includes/common/data.php:155 +msgid "" +"A new order (ORDERID) was created in your store:\n" +"\n" +" ORDERINFOSKU\n" +"\n" +" SHIPPINGINFO\n" +"\n" +" PAYMENTINFO\n" +"\n" +msgstr "\n" + +#: includes/common/class-mp-cart.php:1858 +msgid "Add again" +msgstr "" + +#: includes/common/class-mp-cart.php:1852 +msgid "was removed from Shopping Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1242 +#: includes/public/class-mp-short-codes.php:160 +msgid "Cart update notice: this item has a limit per order or you have reached the stock limit." +msgstr "" + +#: includes/admin/widgets/product-list.php:235 +msgid "Show Only Featured Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:533 +msgid "If enabled, users won't be able to filter products per category and/or to order by release date/name/price." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:531 +msgid "Hide Products Filter?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:353 +msgid "Notification to registration email instead of billing email?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:322 +msgid "Order Shipped - Mixed orders (with both digital and physical products)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:289 +msgid "Order Shipped - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:224 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:194 +msgid "New Order - Mixed" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:161 +msgid "New Order - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:115 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:243 +msgid "Mixed orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:110 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:238 +msgid "Digital downloads orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:105 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:233 +msgid "Physical orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:96 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed.
    For orders placed with manual payment, emails set here will be overriden by the one configured in manual payments settings, under payments settings page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:89 +msgid "Customer Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:47 +msgid "Admin Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:566 +msgid "Only contact details" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:565 +msgid "Full billing info" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:561 +msgid "Details Collection" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:548 +msgid "Digital Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:515 +msgid "Apply Tax to Digital Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:236 +msgid "product (default)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:231 +msgid "If you are experiencing conflicts with other e-commerce plugins change this setting. This will change the internal post type of all your products. Please note that changing this option may break 3rd party themes or plugins." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1203 +msgid "Hide details" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1202 +msgid "Show all changes" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1184 +msgid "Version %s" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1161 +msgid "Current" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1131 +msgid "%s changelog" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:952 +msgid "We did not find any data for this plugin or theme..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:285 +msgid "Activate WPMU DEV Dashboard" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:279 +msgid "Just one more step - activate the WPMU DEV Dashboard plugin and you're all done!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:277 +msgid "Important updates are available for your WPMU DEV plugins/themes. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:273 +msgid "Just one more step to enable updates and support for %s!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:271 +msgid "Important updates are available for %s. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:264 +msgid "activate" +msgstr "" + +#: includes/admin/class-mp-admin.php:398 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:248 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:289 +msgid "Dismiss" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:247 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:288 +msgid "Saving..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:244 +msgid "Install Plugin" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:238 +msgid "Almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:236 +msgid "Important updates are available for your WPMU DEV plugins/themes. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:232 +msgid "%s is almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:230 +msgid "Important updates are available for %s. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:223 +msgid "install" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1428 +msgid "Sets the number of Tags to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1289 +msgid "How many products to display in the product list if \"paginate\" is set to false." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:739 +#: includes/admin/class-mp-shortcode-builder.php:906 +#: includes/admin/class-mp-shortcode-builder.php:1350 +msgid "Grid" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:735 +#: includes/admin/class-mp-shortcode-builder.php:902 +#: includes/admin/class-mp-shortcode-builder.php:1346 +msgid "Products will be displayed as list or grid." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:206 +msgid "Display a cloud or list of your global product tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:205 +msgid "Display a list of your global categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:204 +msgid "Display a list or grid of your global products." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:181 +msgid "Display a list of featured products." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1451 +msgid "Is Featured?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1444 +msgid "Featured Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:581 +#: includes/admin/class-mp-products-admin.php:1580 +msgid "% discount" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:579 +msgid "OR" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:460 +#: includes/admin/class-mp-products-admin.php:586 +#: includes/admin/widgets/product-list.php:217 +msgid "Featured" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:536 +#: includes/admin/class-mp-orders-admin.php:538 +msgid "Tracking Link" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:508 +msgid "Shipping Tax" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:356 +msgid "Shipping Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:352 +msgid "Taxes Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:349 +msgid "Products Total" +msgstr "" + +#: includes/admin/class-mp-ajax.php:366 +msgid "Oops! You entered an invalid username/email and or password." +msgstr "" + +#: includes/admin/class-mp-ajax.php:254 +msgid "Percentage Discount" +msgstr "" + +#: includes/admin/class-mp-ajax.php:234 +msgid "Limit the Amount of Items per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:214 +msgid "Unused Attributes" +msgstr "" + +#: includes/admin/class-mp-admin.php:82 +msgid "Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-admin.php:79 +msgid "MarketPress setup is not complete! Once you've completed this quick setup wizard you'll have a fully working online store - exciting! " +msgstr "" + +#: marketpress.php:263 +msgctxt "mp_order" +msgid "Add New" +msgstr "" + +#: marketpress.php:184 +msgctxt "product_tag" +msgid "Product Tag" +msgstr "" + +#: marketpress.php:183 +msgctxt "product_tag" +msgid "Product Tags" +msgstr "" + +#: marketpress.php:150 +msgctxt "product_category" +msgid "Product Category" +msgstr "" + +#: marketpress.php:149 +msgctxt "product_category" +msgid "Product Categories" +msgstr "" + +#. Author URI of the plugin/theme +msgid "http://premium.wpmudev.org" +msgstr "" + +#: marketpress.php:729 +msgid "Invoice PDF" +msgstr "" + +#: marketpress.php:712 +msgid "Grant access to themes and gateways depending on the user's Pro Site level" +msgstr "" + +#: marketpress.php:711 +msgid "Pro Sites" +msgstr "" + +#: marketpress.php:703 +msgid "Offer and accept coupon codes" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:687 +msgid "Install %s Pages" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:682 +msgid "Welcome to %s – Install pages required by the plugin automatically." +msgstr "" + +#: marketpress.php:668 +msgid "Your pages were created successfully." +msgstr "" + +#: marketpress.php:436 +msgid "Add a Product" +msgstr "" + +#: marketpress.php:271 +msgid "Parent Order" +msgstr "" + +#: marketpress.php:270 +msgid "No orders found in trash" +msgstr "" + +#: marketpress.php:269 +msgid "No orders found" +msgstr "" + +#: marketpress.php:265 +msgid "Edit Order" +msgstr "" + +#: marketpress.php:264 +msgid "Add New Order" +msgstr "" + +#: marketpress.php:220 marketpress.php:221 +msgid "Add New Product" +msgstr "" + +#: marketpress.php:197 +msgid "No product tags found" +msgstr "" + +#: marketpress.php:196 +msgid "Choose from the most used product tags" +msgstr "" + +#: marketpress.php:195 +msgid "Add or remove product tags" +msgstr "" + +#: marketpress.php:194 +msgid "Separate product tags with commas" +msgstr "" + +#: marketpress.php:193 +msgid "Search Product Tags" +msgstr "" + +#: marketpress.php:192 +msgid "Parent Product Tag:" +msgstr "" + +#: marketpress.php:191 +msgid "Parent Product Tag" +msgstr "" + +#: marketpress.php:190 +msgid "New Product Tag Name" +msgstr "" + +#: marketpress.php:189 +msgid "Add New Product Tag" +msgstr "" + +#: marketpress.php:188 +msgid "Update Product Tag" +msgstr "" + +#: marketpress.php:187 +msgid "View Product Tag" +msgstr "" + +#: marketpress.php:186 +msgid "Edit Product Tag" +msgstr "" + +#: marketpress.php:185 +msgid "All Product Tags" +msgstr "" + +#: marketpress.php:163 +msgid "No product categories found" +msgstr "" + +#: marketpress.php:162 +msgid "Choose from the most used product categories" +msgstr "" + +#: marketpress.php:161 +msgid "Add or remove product categories" +msgstr "" + +#: marketpress.php:160 +msgid "Separate product categories with commas" +msgstr "" + +#: marketpress.php:159 +msgid "Search Product Categories" +msgstr "" + +#: marketpress.php:158 +msgid "Parent Product Category:" +msgstr "" + +#: marketpress.php:157 +msgid "Parent Product Category" +msgstr "" + +#: marketpress.php:156 +msgid "New Product Category Name" +msgstr "" + +#: marketpress.php:155 +msgid "Add New Product Category" +msgstr "" + +#: marketpress.php:154 +msgid "Update Product Category" +msgstr "" + +#: marketpress.php:153 +msgid "View Product Category" +msgstr "" + +#: marketpress.php:152 +msgid "Edit Product Category" +msgstr "" + +#: marketpress.php:151 +msgid "All Product Categories" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Please fix the %s1 and then try submitting the form again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Oops! The form contains %s1 which %s2 been highlighted below." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:660 +msgid "have" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:659 +msgid "has" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:651 +msgid "Value must be less than {0}" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:650 +msgid "Please enter only letters and numbers" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:539 +msgid "Due to prolonged inactivity on this page, one or more settings were not saved. Please try again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:535 +msgid "Settings Saved" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-user-select.php:22 +msgid "Select Some Users" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-section.php:18 +msgid "Section Title" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:425 +msgid "Are you sure you want to delete this?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:30 +msgid "Add Row" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-post-select.php:24 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-taxonomy-select.php:22 +msgid "Select Posts" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:210 +msgid "Add Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:129 +msgid "Select the image that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:93 +msgid "Select image(s) that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:79 +msgid "Select the image that you would like to use for this variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:48 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:82 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:68 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:132 +msgid "Select Image" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:31 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:160 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:168 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:19 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:115 +msgid "Select File" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:30 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:18 +msgid "Select the file that you would like to use." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:357 +msgid "Create Variations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:356 +msgid "Add Another Variant" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Insert a value and press ENTER" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "(e.g. White, Grey, Red etc.)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Variation Values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:333 +msgid "Or create new variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "(e.g. Color)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:303 +msgid "You are about to delete selected variants.
    If you want to continue please confirm." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:302 +msgid "Confirmation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:290 +msgid "Insert quantity available. Empty for unlimited." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:281 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:294 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:307 +msgid "Cancel" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:280 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:293 +msgid "Update" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:277 +msgid "Insert the price i.e. 25 or 25.50" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:115 +msgid "Img." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:85 +msgid "Add New Variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:79 +msgid "Delete Variants" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:78 +msgid "Update Prices" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:77 +msgid "Update Inventory" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:76 +msgid "Update Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:75 +msgid "Bulk Actions" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:73 +msgid "Select bulk action" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:196 +msgid "Configure Store" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:195 +msgid "Configure shipping rates, emails and your store's appearance. " +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:190 +msgid "Add Product" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:189 +msgid "Add your first product for sale and get familiar with adding products." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:184 +msgid "Your store is almost ready for its first customers, but first it needs some products. Get started by adding products below, or jump straight into further configuring your store’s settings." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:183 +msgid "Woohoo! Your online store is up and running." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:160 +msgid "Finish Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:124 +msgid "And what metric system do you want to use?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:113 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:142 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:159 +msgid "Back" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:109 +msgid "Do you want to apply tax for your products? You can customize this for each product and variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:105 +msgid "What currency do you want to sell with?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:93 +msgid "And, which countries do you want to sell to?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:89 +msgid "Where is your online store based?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:80 +msgid "Payment Gateway" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:79 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:123 +msgid "Metric System" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:78 +msgid "Currency & Tax" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:77 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:88 +msgid "Locations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:70 +msgid "Choose where you want to sell your stuff and what currency. Easy!" +msgstr "" + +#: includes/public/class-mp-checkout.php:1400 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:58 +msgid "Continue" +msgstr "" + +#: includes/admin/class-mp-admin.php:83 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:53 +msgid "Skip this step, I'll do this manually" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:49 +msgid "Install store pages" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:44 +msgid "Once you've completed this quick setup wizard you'll have a fully working online store - exciting! Start
    by creating the default store pages for the online store such as the cart, checkout and store pages." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:42 +msgid "MarketPress adds a full online store to your website, with heaps of configuration options and addons
    to suit your needs. It's really easy to get going, and only takes a few minutes to setup!" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:41 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:69 +msgid "Welcome to MarketPress - Quick Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-advanced-select.php:23 +msgid "Select Some Options" +msgstr "" + +#: includes/wpmudev-metaboxes/class-wpmudev-field.php:694 +msgid "You must the WPMUDEV_Field::display() method in your form field class" +msgstr "" + +#: includes/public/class-mp-short-codes.php:636 +msgid "Only %s left in stock..." +msgstr "" + +#: includes/public/class-mp-short-codes.php:633 +msgid "Unlimited stock" +msgstr "" + +#: includes/public/class-mp-short-codes.php:430 +msgid "product_id must be defined" +msgstr "" + +#: includes/public/class-mp-checkout.php:1250 +msgid "An account with this username already exists" +msgstr "" + +#: includes/public/class-mp-checkout.php:1394 +msgid "Continue as Guest" +msgstr "" + +#: includes/public/class-mp-checkout.php:1393 +msgid "Proceed to checkout and you'll have an opportunity to create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1392 +#: includes/public/class-mp-checkout.php:1398 +msgid "First-time customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1386 +msgid "Login" +msgstr "" + +#: includes/public/class-mp-checkout.php:1379 +msgid "E-Mail Address/Username" +msgstr "" + +#: includes/public/class-mp-checkout.php:1377 +msgid "Sign in to speed up the checkout process." +msgstr "" + +#: includes/public/class-mp-checkout.php:1376 +msgid "Have an account?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1297 +msgid "Shipping address different than billing?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1184 +msgid "There are no available gateways to process this payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1160 +msgid "Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:1123 +msgid "Oops! An error occurred while processing your payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1051 +msgid "Next Step »" +msgstr "" + +#: includes/public/class-mp-checkout.php:1045 +msgid "« Previous Step" +msgstr "" + +#: includes/public/class-mp-checkout.php:873 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:657 +msgid "error" +msgstr "" + +#: includes/public/class-mp-checkout.php:872 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:658 +msgid "errors" +msgstr "" + +#: includes/public/class-mp-checkout.php:871 +msgid "

    Oops! We found %d %s in the form below.

    Fields that have errors are highlighted in red below. Entering into a field will reveal the actual error that occurred.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:870 +msgid "Please enter a valid first and last name" +msgstr "" + +#: includes/public/class-mp-checkout.php:869 +msgid " Please enter a valid card security code" +msgstr "" + +#: includes/public/class-mp-checkout.php:868 +msgid "Please enter a valid card expiration" +msgstr "" + +#: includes/public/class-mp-checkout.php:773 +msgid "Javascript is required in order to checkout. Please enable Javascript in your browser and then refresh this page." +msgstr "" + +#: includes/public/class-mp-checkout.php:588 +msgid "An unknown error occurred. Please try again." +msgstr "" + +#: includes/public/class-mp-checkout.php:386 +msgid "Town/City" +msgstr "" + +#: includes/public/class-mp-checkout.php:380 +msgid "Apartment, suite, unit, building, floor, etc" +msgstr "" + +#: includes/public/class-mp-checkout.php:376 +msgid "Address Line 2" +msgstr "" + +#: includes/public/class-mp-checkout.php:363 +msgid "Address Line 1" +msgstr "" + +#: includes/common/class-mp-order.php:770 +#: includes/public/class-mp-checkout.php:354 +msgid "Company" +msgstr "" + +#: includes/public/class-mp-checkout.php:330 +msgid "Last" +msgstr "" + +#: includes/public/class-mp-checkout.php:321 +msgid "First" +msgstr "" + +#: includes/public/class-mp-checkout.php:284 +msgid "State/Province" +msgstr "" + +#: includes/public/class-mp-checkout.php:83 +msgid "Review Order/Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing/Shipping Address" +msgstr "" + +#: includes/public/class-mp-checkout.php:80 +msgid "Login/Register" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:530 +msgid "Marketplace" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:523 +msgid "Global Marketplace Pages" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +msgid "Store Network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +#: includes/multisite/class-mp-admin-multisite.php:494 +msgid "Store Network Settings" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:440 +msgid "Set theme access permissions for network stores. For a custom css theme, save your css file with the MarketPress Theme: NAME header in the /marketpress/ui/themes/ folder and it will appear in this list so you may select it." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:361 +msgid "Choose a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:336 +msgid "%d products get indexed" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:285 +msgid "Product Indexer" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:281 +msgid "Please hold on..." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:280 +msgid "Index Products" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:279 +msgid "%d products have been indexed in whole network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:182 +msgid "Enable Global Shopping Cart?" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:178 +msgid "Limit Global Widgets/Shortcodes To Main Blog?" +msgstr "" + +#: includes/common/template-functions.php:2802 +#: includes/multisite/template-functions.php:355 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:97 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:114 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:143 +msgid "Next" +msgstr "" + +#: includes/common/template-functions.php:2801 +#: includes/multisite/template-functions.php:354 +msgid "Prev" +msgstr "" + +#: includes/common/template-functions.php:2597 +msgid "Tagged in " +msgstr "" + +#: includes/common/template-functions.php:2196 +#: includes/common/template-functions.php:2202 +#: includes/common/template-functions.php:2214 +#: includes/common/template-functions.php:2217 +msgid "Oops! We couldn't locate any orders matching that order number. Please verify the order number and try again." +msgstr "" + +#: includes/common/template-functions.php:2138 +msgid "Look Up" +msgstr "" + +#: includes/common/template-functions.php:1423 +msgid "Please choose a shipping method" +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "If you have your order ID you can look it up using the form below." +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "Order Search" +msgstr "" + +#: includes/common/template-functions.php:910 +#: includes/public/class-mp-checkout.php:1440 +msgid "Cart" +msgstr "" + +#: includes/common/template-functions.php:895 +msgid "[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:887 +msgid "[mp_global_categories_list]" +msgstr "" + +#: includes/common/template-functions.php:880 +msgid "" +"Welcome to our market place!\n" +"\n" +"Check out our network of products:\n" +"\n" +"[mp_list_global_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_global_categories_list]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:879 +msgid "Global Store" +msgstr "" + +#: includes/common/template-functions.php:873 +msgid "" +"Welcome to our online store! Feel free to browse around:\n" +"\n" +"[mp_store_navigation]\n" +"\n" +"Check out our most popular products:\n" +"\n" +"[mp_popular_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_list_categories]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_tag_cloud]" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:127 +msgid "If cart weight is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:126 +msgid "Cart Weight" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:222 +msgid "Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:206 +msgid "Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:196 +msgid "Retail Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:195 +msgid "Online Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:193 +msgid "Rates Request Type" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:189 +msgid "Maximum Weight Per Package" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:195 +#: includes/common/shipping-modules/mp-usps.php:236 +msgid "Enter your standard box sizes as LengthxWidthxHeight (e.g. 12x8x6) For each box defined enter the maximum weight it can contain. Note: the shipping prices this plugin calculates are estimates. If they are consistently too low or too high, please check that the list of boxes above and the product weights are accurate and complete." +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:187 +msgid "Handling Charge Per Box Shipped" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:176 +#: includes/common/shipping-modules/mp-ups.php:181 +msgid "Offered Services" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:165 +msgid "Shipper Number" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:151 +msgid "User ID" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:144 +msgid "Developer Kit Access Key" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:140 +msgid "Use Sandbox Mode?" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:123 +msgid "In order to use UPS, you will need a UPS Developer Kit access key and the UPS user ID and password associated with the access key. Set these up for free here. If this information is missing or incorrect, an error will appear during the checkout process and the buyer will not be able to complete the transaction." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:112 +msgid "If cart total is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:111 +msgid "Cart Total" +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:95 +#: includes/common/shipping-modules/mp-weight-rate.php:111 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Don't worry about sorting as this will be done automatically upon saving." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:170 +msgid "Method Title (visible for clients)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:409 +#: includes/common/shipping-modules/mp-ups.php:216 +#: includes/common/shipping-modules/mp-usps.php:251 +msgid "Max Weight (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:402 +#: includes/common/shipping-modules/mp-ups.php:209 +#: includes/common/shipping-modules/mp-usps.php:247 +msgid "Size (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:387 +msgid "Enter your standard box sizes as LengthxWidthxHeight ( 12x8x6 ) For each box defined enter the maximum weight it can contain. Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:361 +#: includes/common/shipping-modules/mp-usps.php:229 +msgid "Handling Charge per International Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:353 +msgid "International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:339 +#: includes/common/shipping-modules/mp-usps.php:213 +msgid "Handling Charge per Domestic Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:331 +msgid "Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:321 +msgid "When checked the customer can chose Residential or Commercial delivery with Residential the default. Unchecked it's only Residential rates." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:320 +msgid "Allow Commercial Delivery?" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:315 +msgid "Fedex 10kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:314 +msgid "Fedex 25kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:313 +msgid "Fedex Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:312 +msgid "Fedex Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:311 +msgid "Fedex Pak" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:310 +msgid "Fedex Tube" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:306 +msgid "Default Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:294 +msgid "Dropoff Type" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:290 +msgid "Meter ID" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:134 +msgid "This is a residential address" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:283 +msgid "There was an error processing your card: \"%s\". Please check your credit card info and try again." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:121 +msgid "Wepay makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept cards directly on your site. You don't need a merchant account or gateway. WePay handles everything including storing cards. Credit cards go directly to WePay's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:385 +msgid "There was an error processing your card - \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:356 +msgid "%s Store Purchase - Order ID - %s, Email - %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:251 +msgid "Stripe makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept Visa, MasterCard, American Express, Discover, JCB, and Diners Club cards directly on your site. You don't need a merchant account or gateway. Stripe handles everything, including storing cards, subscriptions, and direct payouts to your bank account. Credit cards go directly to Stripe's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:192 +msgid "ZMW - Zambian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:191 +msgid "ZAR - South African Rand" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:190 +msgid "YER - Yemeni Rial" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:189 +msgid "XPF - Cfp Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:188 +msgid "XOF - West African Cfa Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:187 +msgid "XCD - East Caribbean Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:186 +msgid "XAF - Central African Cfa Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:185 +msgid "WST - Samoan Tala" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:184 +msgid "VUV - Vanuatu Vatu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:183 +msgid "VND - Vietnamese Đồng" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:182 +msgid "VEF - Venezuelan Bolívar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:181 +msgid "UZS - Uzbekistani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:180 +msgid "UYI - Uruguayan Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:178 +msgid "UGX - Ugandan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:177 +msgid "UAH - Ukrainian Hryvnia" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:176 +msgid "TZS - Tanzanian Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:175 +msgid "TWD - New Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:174 +msgid "TTD - Trinidad and Tobago Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:172 +msgid "TOP - Tongan Paʻanga" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:171 +msgid "TJS - Tajikistani Somoni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:169 +msgid "SZL - Swazi Lilangeni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:168 +msgid "SVC - Salvadoran Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:167 +msgid "STD - São Tomé and Príncipe Dobra" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:166 +msgid "SRD - Surinamese Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:165 +msgid "SOS - Somali Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:164 +msgid "SLL - Sierra Leonean Leone" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:163 +msgid "SHP - Saint Helenian Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:160 +msgid "SCR - Seychellois Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:159 +msgid "SBD - Solomon Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:157 +msgid "RWF - Rwandan Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:156 +msgid "RUB - Russian Ruble" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:155 +msgid "RSD - Serbian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:154 +msgid "RON - Romanian Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:153 +msgid "QAR - Qatari Riyal" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:152 +msgid "PYG - Paraguayan Guaraní*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:151 +msgid "PLN - Polish Złoty" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:150 +msgid "PKR - Pakistani Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:149 +msgid "PHP - Philippine Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:148 +msgid "PGK - Papua New Guinean Kina" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:147 +msgid "PEN - Peruvian Nuevo Sol*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:146 +msgid "PAB - Panamanian Balboa*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:144 +msgid "NPR - Nepalese Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:142 +msgid "NIO - Nicaraguan Córdoba*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:141 +msgid "NGN - Nigerian Naira" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:140 +msgid "NAD - Namibian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:139 +msgid "MZN - Mozambican Metical" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:137 +msgid "MXN - Mexican Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:136 +msgid "MWK - Malawian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:135 +msgid "MVR - Maldivian Rufiyaa" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:134 +msgid "MUR - Mauritian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:133 +msgid "MRO - Mauritanian Ouguiya" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:132 +msgid "MOP - Macanese Pataca" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:131 +msgid "MNT - Mongolian Tögrög" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:130 +msgid "MKD - Macedonian Denar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:129 +msgid "MGA - Malagasy Ariary" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:128 +msgid "MDL - Moldovan Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:126 +msgid "LVL - Latvian Lats" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:124 +msgid "LSL - Lesotho Loti" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:123 +msgid "LRD - Liberian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:122 +msgid "LKR - Sri Lankan Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:121 +msgid "LBP - Lebanese Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:120 +msgid "LAK - Lao Kip*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:119 +msgid "KZT - Kazakhstani Tenge" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:118 +msgid "KYD - Cayman Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:117 +msgid "KRW - South Korean Won" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:116 +msgid "KMF - Comorian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:115 +msgid "KHR - Cambodian Riel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:114 +msgid "KGS - Kyrgyzstani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:113 +msgid "KES - Kenyan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:111 +msgid "JMD - Jamaican Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:110 +msgid "ISK - Icelandic Króna" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:109 +msgid "INR - Indian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:108 +msgid "ILS - Israeli New Sheqel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:107 +msgid "IDR - Indonesian Rupiah" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:105 +msgid "HTG - Haitian Gourde" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:103 +msgid "HNL - Honduran Lempira*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:101 +msgid "GYD - Guyanese Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:100 +msgid "GTQ - Guatemalan Quetzal*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:99 +msgid "GNF - Guinean Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:98 +msgid "GMD - Gambian Dalasi" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:97 +msgid "GIP - Gibraltar Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:96 +msgid "GEL - Georgian Lari" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:94 +msgid "FKP - Falkland Islands Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:93 +msgid "FJD - Fijian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:91 +msgid "ETB - Ethiopian Birr" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:90 +msgid "EGP - Egyptian Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:89 +msgid "EEK - Estonian Kroon*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:88 +msgid "DZD - Algerian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:87 +msgid "DOP - Dominican Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:85 +msgid "DJF - Djiboutian Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:84 +msgid "CZK - Czech Koruna*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:83 +msgid "CVE - Cape Verdean Escudo*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:82 +msgid "CRC - Costa Rican Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:81 +msgid "COP - Colombian Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:80 +msgid "CNY - Chinese Renminbi Yuan" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:79 +msgid "CLP - Chilean Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:77 +msgid "CDF - Congolese Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:76 +msgid "CAD - Canadian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:75 +msgid "BZD - Belize Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:74 +msgid "BWP - Botswana Pula" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:73 +msgid "BSD - Bahamian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:72 +msgid "BRL - Brazilian Real*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:71 +msgid "BOB - Bolivian Boliviano*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:70 +msgid "BND - Brunei Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:69 +msgid "BMD - Bermudian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:68 +msgid "BIF - Burundian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:67 +msgid "BGN - Bulgarian Lev" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:66 +msgid "BDT - Bangladeshi Taka" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:65 +msgid "BBD - Barbadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:64 +msgid "BAM - Bosnia & Herzegovina Convertible Mark" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:63 +msgid "AZN - Azerbaijani Manat" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:62 +msgid "AWG - Aruban Florin" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:61 +msgid "AUD - Australian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:60 +msgid "ARS - Argentine Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:59 +msgid "AOA - Angolan Kwanza*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:58 +msgid "ANG - Netherlands Antillean Gulden" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:57 +msgid "AMD - Armenian Dram" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:56 +msgid "ALL - Albanian Lek" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:55 +msgid "AFN - Afghan Afghani*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:54 +msgid "AED - United Arab Emirates Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:345 +msgid "Skrill balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:327 +msgid "Skrill IPN message received." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:283 +msgid "Skrill" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:278 +msgid "Pending payment" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:144 +msgid "The secret word must match the word submitted in the \"Merchant Tools\" section of your Skrill account." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:134 +msgid "You must use your valid Skrill merchant email. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:133 +msgid "Skrill Email" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:123 +msgid "Resell your inventory via Skrill.com (Moneybookers)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:95 +msgid "ZAR - South-African Rand" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:93 +msgid "TWD - Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:92 +msgid "TRY - New Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:91 +msgid "TND - Tunisian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:90 +msgid "THB - Thailand Baht" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:89 +msgid "SKK - Slovakian Koruna" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:86 +#: includes/common/payment-gateways/stripe.php:158 +msgid "SAR - Saudi Riyal" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:85 +msgid "RSD - Serbian dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:83 +msgid "QAR - Qatari Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:81 +msgid "OMR - Omani Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:80 +msgid "NOK - Norwegian Krone " +msgstr "" + +#: includes/common/payment-gateways/skrill.php:78 +#: includes/common/payment-gateways/stripe.php:138 +msgid "MYR - Malaysian Ringgit" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:77 +#: includes/common/payment-gateways/stripe.php:127 +msgid "MAD - Moroccan Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:74 +msgid "KRW - South-Korean Won" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:72 +msgid "JOD - Jordanian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:70 +msgid "INR - Indian Rupee" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:63 +msgid "EEK - Estonian Kroon" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:56 +msgid "AED - Utd. Arab Emir. Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:52 +msgid "Turkish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:51 +msgid "Swedish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:50 +msgid "Spanish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:49 +msgid "Russian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:48 +msgid "Romainian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:47 +msgid "Polish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:46 +msgid "Italian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:45 +msgid "Greek" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:44 +msgid "German" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:43 +msgid "French" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:42 +msgid "Finnish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:41 +msgid "English" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:40 +msgid "Dutch" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:39 +msgid "Danish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:38 +msgid "Czech" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:37 +msgid "Chinese" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:201 +msgid "There was an error processing your card: %s. Please re-enter your credit card info and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:278 +msgid "
  • There was an error processing your card: \"%s\". Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:274 +msgid "
  • There was an error processing your card. Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:177 +#: includes/common/payment-gateways/stripe.php:279 +msgid "Publishable Key" +msgstr "" + +#: includes/common/payment-gateways/pin.php:163 +msgid "API Credentials?" +msgstr "" + +#: includes/common/payment-gateways/pin.php:147 +msgid "PIN makes it easy to start accepting credit card payments with Australia’s first all-in-one online payment system. Accept all major credit cards directly on your site. Your sales proceeds are deposited to any Australian bank account, no merchant account required." +msgstr "" + +#: includes/common/payment-gateways/pin.php:57 +#: includes/common/payment-gateways/stripe.php:179 +msgid "USD - United States Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:455 +msgid "Email Footer" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:445 +msgid "Email Header" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:416 +msgid "Partner" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:409 +msgid "Vendor" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:852 +#: includes/common/payment-gateways/paypal-express.php:1126 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences\t section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:749 +msgid "Page Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:744 +msgid "Header Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:739 +msgid "Header Border Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:734 +msgid "Header Image" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:680 +msgid "Locale" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:624 +#: includes/common/payment-gateways/paypal-express.php:658 +msgid "Merchant Email" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:645 +msgid "Paypal Express Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:603 +msgid "Paypal Express Network Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:861 +msgid "Application ID (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:854 +msgid "Signature (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:847 +msgid "API Password (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:839 +msgid "API Username (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:832 +msgid "Signature (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:825 +msgid "API Password (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:817 +msgid "API Username (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:799 +msgid "This message is displayed at the top of the gateway settings page to store admins. It's a good place to inform them of your fees or put any sales messages." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:787 +msgid "Please enter your PayPal email address or business ID you want to recieve fees at." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:786 +msgid "PayPal E-mail" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:772 +msgid "Fees to Collect (%)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:375 +#: includes/public/class-mp-checkout.php:341 +msgid "Email Address" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:299 +msgid "Sorry, your order was not completed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:126 +#: includes/common/payment-gateways/paypal-express.php:780 +msgid "You will be redirected to the PayPal site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:90 +#: includes/common/payment-gateways/skrill.php:94 +msgid "USD - U.S. Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:89 +msgid "TRY - Turkish lira" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:88 +#: includes/common/payment-gateways/stripe.php:170 +msgid "THB - Thai Baht" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:87 +msgid "TWD - Taiwan New Dollars" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:86 +#: includes/common/payment-gateways/pin.php:59 +#: includes/common/payment-gateways/skrill.php:88 +#: includes/common/payment-gateways/stripe.php:162 +msgid "SGD - Singapore Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:84 +msgid "RUB - Russian Rubles" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:82 +msgid "PHP - Philippine Pesos" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:81 +#: includes/common/payment-gateways/pin.php:58 +#: includes/common/payment-gateways/skrill.php:79 +#: includes/common/payment-gateways/stripe.php:145 +msgid "NZD - New Zealand Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:79 +msgid "MXN - Mexican Peso" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:78 +msgid "MYR - Malaysian Ringgits" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:77 +#: includes/common/payment-gateways/pin.php:64 +#: includes/common/payment-gateways/skrill.php:73 +#: includes/common/payment-gateways/stripe.php:112 +msgid "JPY - Japanese Yen" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:75 +#: includes/common/payment-gateways/pin.php:63 +#: includes/common/payment-gateways/skrill.php:66 +#: includes/common/payment-gateways/stripe.php:102 +msgid "HKD - Hong Kong Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:73 +msgid "GBP - Pound Sterling" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:68 +#: includes/common/payment-gateways/pin.php:62 +#: includes/common/payment-gateways/skrill.php:59 +msgid "CAD - Canadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:67 +msgid "BRL - Brazilian Real" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:66 +#: includes/common/payment-gateways/pin.php:56 +#: includes/common/payment-gateways/skrill.php:57 +msgid "AUD - Australian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:288 +msgid "There was an error processing your card: \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:163 +msgid "When running on a live site, Paymill recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:161 +#: includes/common/payment-gateways/pin.php:157 +#: includes/common/payment-gateways/simplify.php:103 +#: includes/common/payment-gateways/stripe.php:260 +#: includes/common/payment-gateways/wepay.php:153 +msgid "Force SSL?" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:151 +msgid "Accept Visa, Mastercard, Maestro UK, Discover and Solo cards directly on your site. You don't need a merchant account or gateway. Credit cards go directly to Paymill's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:131 +msgid "CVV2" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:72 +#: includes/common/payment-gateways/pin.php:61 +#: includes/common/payment-gateways/skrill.php:65 +#: includes/common/payment-gateways/stripe.php:95 +msgid "GBP - British Pound" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:71 +#: includes/common/payment-gateways/stripe.php:173 +msgid "TRY - Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:70 +#: includes/common/payment-gateways/paypal-chained-payments.php:85 +#: includes/common/payment-gateways/skrill.php:87 +#: includes/common/payment-gateways/stripe.php:161 +msgid "SEK - Swedish Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:69 +#: includes/common/payment-gateways/skrill.php:84 +msgid "RON - Romanian Leu New" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:68 +#: includes/common/payment-gateways/paypal-chained-payments.php:83 +#: includes/common/payment-gateways/skrill.php:82 +msgid "PLN - Polish Zloty" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:67 +#: includes/common/payment-gateways/paypal-chained-payments.php:80 +#: includes/common/payment-gateways/stripe.php:143 +msgid "NOK - Norwegian Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:66 +#: includes/common/payment-gateways/skrill.php:75 +#: includes/common/payment-gateways/stripe.php:125 +msgid "LTL - Lithuanian Litas" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:65 +#: includes/common/payment-gateways/paypal-chained-payments.php:69 +#: includes/common/payment-gateways/skrill.php:60 +#: includes/common/payment-gateways/stripe.php:78 +msgid "CHF - Swiss Franc" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:64 +#: includes/common/payment-gateways/skrill.php:76 +msgid "LVL - Latvian Lat" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:63 +#: includes/common/payment-gateways/paypal-chained-payments.php:74 +#: includes/common/payment-gateways/skrill.php:69 +msgid "ILS - Israeli Shekel" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:62 +#: includes/common/payment-gateways/skrill.php:71 +msgid "ISK - Iceland Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:61 +#: includes/common/payment-gateways/paypal-chained-payments.php:76 +#: includes/common/payment-gateways/skrill.php:68 +#: includes/common/payment-gateways/stripe.php:106 +msgid "HUF - Hungarian Forint" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:60 +#: includes/common/payment-gateways/paypal-chained-payments.php:71 +#: includes/common/payment-gateways/skrill.php:62 +#: includes/common/payment-gateways/stripe.php:86 +msgid "DKK - Danish Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:59 +#: includes/common/payment-gateways/skrill.php:67 +#: includes/common/payment-gateways/stripe.php:104 +msgid "HRK - Croatian Kuna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:58 +#: includes/common/payment-gateways/paypal-chained-payments.php:70 +#: includes/common/payment-gateways/skrill.php:61 +msgid "CZK - Czech Koruna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:57 +#: includes/common/payment-gateways/skrill.php:58 +msgid "BGN - Bulgarian Leva" +msgstr "" + +#: includes/common/payment-gateways/payflow/class-mp-gateway-worker-payflow.php:123 +msgid "There was an error connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:344 +msgid "This setting will log all PayFast communication to the \"payfast.log\" file." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:342 +msgid "Log Debugging Info?" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:335 +msgid "DO NOT INPUT A VALUE UNLESS YOU HAVE SET ONE IN THE SETTINGS SECTION OF YOUR PAYFAST SETTINGS." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:333 +msgid "PayFast Passphrase" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:323 +msgid "You can find your credentials on your integration page." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:321 +msgid "PayFast Merchant Credentials" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:311 +msgid "PayFast Mode" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:308 +msgid "PayFast is a payments processing service for South Africa. We make it safe for buyers to send money and easy for sellers to receive money. More Info »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:306 +msgid "PayFast Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:285 +msgid "Your payment via PayFast for this order totaling %s is complete. The transaction number is %s." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:278 +msgid "Your payment via PayFast for this order totaling %s is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:124 +msgid "Your PayFast transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:82 +#: includes/common/payment-gateways/payfast.php:83 +msgid "PayFast" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:157 +msgid "API error: - \"%s\"" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:198 +msgid "The payment request is under process" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:140 +msgid "Order: #" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:116 +msgid "You will be redirected to the Mollie site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:73 +msgid "%sMollie%s provides a fully PCI Compliant and secure way to collect payments via iDeal, Credit Card, Bancontact / Mister Cash, SOFORT Banking, Overbooking, Bitcoin, PayPal, paysafecard and AcceptEmail." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:53 +#: includes/common/payment-gateways/mollie.php:54 +#: includes/common/payment-gateways/mollie.php:195 +#: includes/common/payment-gateways/mollie.php:245 +msgid "Mollie" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:50 +#: includes/common/payment-gateways/paymill.php:56 +#: includes/common/payment-gateways/paypal-chained-payments.php:72 +#: includes/common/payment-gateways/pin.php:60 +#: includes/common/payment-gateways/skrill.php:64 +#: includes/common/payment-gateways/stripe.php:92 +msgid "EUR - Euro" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:306 +msgid "Access Key" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:300 +msgid "You must login to the Mijireh.com dashboard to obtain the Access Key." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:299 +msgid "Credentials" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:289 +msgid "Mijireh Checkout provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:269 +msgid "Mijireh Error: " +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:89 +msgid "You will be redirected to the Mijireh.com site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:87 +msgid "Your Mijireh transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:42 +#: includes/common/payment-gateways/mijireh.php:43 +#: includes/common/payment-gateways/mijireh.php:324 +msgid "Mijireh" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:145 +msgid "These are the manual payment instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:189 +msgid "This is the email text to send to those who have made free order checkouts. You should include your free order instructions / information here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:183 +msgid "This is the free order information to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:182 +msgid "Confirmation User Information" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:177 +msgid "This is the information to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:163 +msgid "If enabled, all free orders will be automatically marked as paid." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:159 +msgid "Payment Status" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:149 +msgid "This gateway is automatically activated if order totalling 0 and it can't be disabled" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:35 +#: includes/common/payment-gateways/free_orders.php:36 +#: includes/common/payment-gateways/free_orders.php:89 +msgid "Free Order" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:34 +#: includes/common/payment-gateways/free_orders.php:197 +msgid "Free Orders" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:515 +msgid "Sandbox API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:266 +#: includes/common/payment-gateways/eway31.php:542 +msgid "eWay Rapid 3.1 Payments (beta)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:403 +msgid "Hosted Payment Page Language" +msgstr "" + +#: includes/common/payment-gateways/eway.php:373 +msgid "Note when testing in sandbox mode it will use the default eWay test API credentials. Also, please note that cart total needs to be a whole number (e.g. 10.00) in order to generate a successful transaction, otherwise the transaction will fail." +msgstr "" + +#: includes/common/payment-gateways/eway.php:267 +msgid "You will be redirected to https://www.eway.com.au to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:380 +msgid "You have chosen to checkout using %s. Please confirm your order details and click \"Submit Order\" when finished." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:272 +#: includes/common/payment-gateways/paymill.php:131 +#: includes/common/payment-gateways/stripe.php:231 +msgid "Security Code " +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Enter in MM/YYYY or MM/YY format" +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Expiration" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:321 +msgid "Delim Data" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:307 +#: includes/common/payment-gateways/paypal-payflow.php:456 +msgid "This text will appear as the footer of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:287 +#: includes/common/payment-gateways/paypal-payflow.php:440 +msgid "Email Customer (on success)" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:278 +msgid "Authorize.net default is \",\". Otherwise, get this from your credit card processor. If the transactions are not going through, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:277 +msgid "Delimeter Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:193 +msgid "Held For Review" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:310 +#: includes/common/payment-gateways/payfast.php:314 +msgid "Test" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:300 +#: includes/common/payment-gateways/pin.php:170 +#: includes/common/payment-gateways/stripe.php:272 +msgid "Secret Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:283 +msgid "Select Your Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:97 +msgid "Your payment will be processed by the iDEAL network" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:208 +msgid "These are the CubePoints to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:203 +msgid "These are the CubePoints instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:266 +msgid "If enabled, all API calls will be made to https://test.bitpay.com." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:263 +msgid "Use Test Mode?" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:259 +msgid "If checked, response fron bitpay will be stored in log file, keep it disabled unless required." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:256 +msgid "Enable Debug Log" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:249 +msgid "Full Notifications" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:231 +#: includes/common/payment-gateways/eway31.php:499 +#: includes/common/payment-gateways/eway31.php:526 +#: includes/common/payment-gateways/mollie.php:83 +#: includes/common/shipping-modules/mp-fedex.php:269 +msgid "API Key" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:222 +msgid "You can now accept a payment from any country on Earth, with no risk of fraud. To use Bitpay, you need to signup on Bitpay. \\n After completing the signup process, you can get api keys at Bitpay API key. You can read more about Bitpay at Bitpay API. \\n Bitpay requires SSL(https) for payment notifications to work." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:61 +msgid "You will be redirected to bitpay.com, for bitcoin payment. It is completely safe." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:346 +msgid "You must login to the 2Checkout vendor dashboard to obtain the seller ID and secret word. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:345 +#: includes/common/payment-gateways/authorizenet-aim.php:239 +#: includes/common/payment-gateways/paymill.php:168 +#: includes/common/payment-gateways/paypal-express.php:704 +#: includes/common/payment-gateways/simplify.php:80 +#: includes/common/payment-gateways/stripe.php:265 +#: includes/common/payment-gateways/wepay.php:158 +msgid "API Credentials" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:325 +#: includes/common/payment-gateways/_bitpay.php:220 +#: includes/common/payment-gateways/_cubepoints.php:185 +#: includes/common/payment-gateways/_ideal.php:268 +#: includes/common/payment-gateways/_payway.php:255 +#: includes/common/payment-gateways/authorizenet-aim.php:219 +#: includes/common/payment-gateways/eway.php:352 +#: includes/common/payment-gateways/eway31.php:460 +#: includes/common/payment-gateways/free_orders.php:147 +#: includes/common/payment-gateways/manual-payments.php:126 +#: includes/common/payment-gateways/mijireh.php:287 +#: includes/common/payment-gateways/mollie.php:71 +#: includes/common/payment-gateways/paymill.php:149 +#: includes/common/payment-gateways/paypal-chained-payments.php:344 +#: includes/common/payment-gateways/paypal-payflow.php:376 +#: includes/common/payment-gateways/pin.php:145 +#: includes/common/payment-gateways/simplify.php:69 +#: includes/common/payment-gateways/skrill.php:121 +#: includes/common/payment-gateways/stripe.php:249 +#: includes/common/payment-gateways/wepay.php:119 +#: includes/common/shipping-modules/mp-fedex.php:243 +#: includes/common/shipping-modules/mp-flat-rate.php:63 +#: includes/common/shipping-modules/mp-pickup.php:140 +#: includes/common/shipping-modules/mp-table-rate.php:94 +#: includes/common/shipping-modules/mp-ups.php:122 +#: includes/common/shipping-modules/mp-usps.php:167 +#: includes/common/shipping-modules/mp-weight-rate.php:110 +msgid "%s Settings" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:136 +msgid "You will be redirected to the 2Checkout site to finalize your payment." +msgstr "" + +#: includes/common/helpers.php:169 includes/public/class-mp-checkout.php:1277 +msgid "Billing" +msgstr "" + +#: includes/common/helpers.php:144 +msgid "FREE" +msgstr "" + +#: includes/common/helpers.php:134 +msgid "Coupons:" +msgstr "" + +#: includes/common/helpers.php:95 +msgid "Qty" +msgstr "" + +#: includes/common/helpers.php:94 +msgid "Sku" +msgstr "" + +#: includes/common/data.php:59 +msgid "Zip Code" +msgstr "" + +#: includes/common/class-mp-taxes.php:336 +msgid "Standard Table" +msgstr "" + +#: includes/common/class-mp-product.php:2698 +msgid "Tweet" +msgstr "" + +#: includes/common/class-mp-product.php:2321 +msgid "Notification Preferences: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2320 +msgid "Edit Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2318 +msgid "Link: %s

    " +msgstr "" + +#: includes/common/class-mp-product.php:2317 +msgid "Current Inventory: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2316 +msgid "Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2314 +msgid "This message is being sent to notify you of low stock of a product in your online store according to your preferences.

    " +msgstr "" + +#: includes/common/class-mp-product.php:1817 +msgid "" +msgstr "" + +#: includes/common/class-mp-product.php:1427 +#: includes/common/class-mp-product.php:1430 +msgid "(tax incl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1422 +#: includes/common/class-mp-product.php:1425 +msgid "(tax excl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1300 +#: includes/common/class-mp-product.php:1315 +msgid "%s each" +msgstr "" + +#: includes/common/class-mp-product.php:988 +msgid "Choose Options" +msgstr "" + +#: includes/common/class-mp-product.php:526 +msgid "Choose a %s" +msgstr "" + +#: includes/common/class-mp-product.php:284 +#: includes/common/class-mp-product.php:292 +#: includes/common/class-mp-product.php:615 +msgid "We're sorry, we only have %d of this item in stock right now." +msgstr "" + +#: includes/common/class-mp-order.php:1456 +msgid "Shipped: Track Shipment" +msgstr "" + +#: includes/common/class-mp-order.php:1049 +msgid "Order Received" +msgstr "" + +#: includes/common/class-mp-order.php:1014 +msgid "In Process" +msgstr "" + +#: includes/common/class-mp-order.php:969 +msgid "Order #" +msgstr "" + +#: includes/common/class-mp-order.php:866 +msgid "Copy billing address to shipping address" +msgstr "" + +#: includes/common/class-mp-order.php:822 +#: includes/public/class-mp-checkout.php:1314 +msgid "Special Instructions" +msgstr "" + +#: includes/common/class-mp-order.php:817 +#: includes/common/payment-gateways/stripe.php:335 +msgid "Email" +msgstr "" + +#: includes/common/class-mp-order.php:813 +#: includes/common/payment-gateways/stripe.php:341 +#: includes/public/class-mp-checkout.php:416 +msgid "Phone" +msgstr "" + +#: includes/common/class-mp-order.php:791 +#: includes/common/payment-gateways/stripe.php:337 +msgid "State" +msgstr "" + +#: includes/common/class-mp-order.php:776 +msgid "Address 1" +msgstr "" + +#: includes/common/class-mp-order.php:766 +msgid "Last Name" +msgstr "" + +#: includes/common/class-mp-order.php:762 +msgid "First Name" +msgstr "" + +#: includes/common/class-mp-installer.php:677 +msgid "MarketPress requires a database update to continue working correctly. Go to update page" +msgstr "" + +#: includes/common/class-mp-installer.php:657 +msgid "MarketPress performed a quick automatic update successfully!" +msgstr "" + +#: includes/common/class-mp-installer.php:653 +msgid "Perform Update" +msgstr "" + +#: includes/common/class-mp-installer.php:647 +msgid "Please update each subsite in your WordPress network where you have older version of the MarketPress plugin." +msgstr "" + +#: includes/common/class-mp-installer.php:641 +msgid "Depending on the amount of products you have, this update could take quite some time. Please keep this window open while the update completes. If you have products with multiple variations, the progress bar may move slower, please don't exit the window." +msgstr "" + +#: includes/common/class-mp-installer.php:632 +msgid "Product Metadata" +msgstr "" + +#: includes/common/class-mp-installer.php:601 +msgid "MarketPress requires a database update to continue working correctly.
    Below you will find a list of items that require your attention." +msgstr "" + +#: includes/common/class-mp-installer.php:600 +msgid "Update MarketPress Data" +msgstr "" + +#: includes/common/class-mp-installer.php:530 +msgid "Update Data" +msgstr "" + +#: includes/common/class-mp-installer.php:67 +msgid "Complete!" +msgstr "" + +#: includes/common/class-mp-installer.php:66 +msgid "Upgrading Database...Please Wait..." +msgstr "" + +#: includes/common/class-mp-installer.php:64 +msgid "An error occurred while updating. Please refresh this page and try again." +msgstr "" + +#: includes/common/class-mp-cart.php:2447 +msgid "Some items in your cart have fallen below the quantity you currently have in your cart. We have adjusted the quantity in your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:2443 +msgid "Some items in your cart are no longer available. We have removed these items from your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:1566 +msgid "item" +msgstr "" + +#: includes/common/class-mp-cart.php:1563 +#: includes/common/class-mp-cart.php:1568 +msgid "items" +msgstr "" + +#: includes/common/class-mp-cart.php:1363 +msgid "Items/Products added to Cart will show here." +msgstr "" + +#: includes/common/class-mp-cart.php:1362 +msgid "Your shopping cart is empty." +msgstr "" + +#: includes/common/class-mp-cart.php:1357 +msgid "View Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1241 +#: includes/common/class-mp-cart.php:1298 +#: includes/public/class-mp-short-codes.php:159 +msgid "Adding..." +msgstr "" + +#: includes/common/class-mp-cart.php:1033 +msgid "Continue Shopping?" +msgstr "" + +#: includes/common/class-mp-cart.php:961 +msgid "Secure Checkout
    Shopping is always safe and secure." +msgstr "" + +#: includes/common/class-mp-cart.php:959 +msgid "You are about to submit your order!
    Please review your order details before continuing. You will be charged immediately upon clicking \"Submit Order\"." +msgstr "" + +#: includes/common/class-mp-cart.php:956 +msgid "Continue »" +msgstr "" + +#: includes/common/class-mp-cart.php:955 +msgid "Submit Order" +msgstr "" + +#: includes/common/class-mp-cart.php:818 +msgid "There are no items in your cart - go add some !" +msgstr "" + +#: includes/common/class-mp-cart.php:816 +msgid "The cart is disabled." +msgstr "" + +#: includes/common/class-mp-cart.php:735 +msgid "Estimated %s" +msgstr "" + +#: includes/common/class-mp-cart.php:717 +msgid "Estimated Shipping" +msgstr "" + +#: includes/common/class-mp-cart.php:697 +msgid "Product Total" +msgstr "" + +#: includes/common/class-mp-cart.php:670 includes/common/class-mp-cart.php:672 +msgid "Estimated Total (%s, %s)" +msgstr "" + +#: includes/common/class-mp-cart.php:668 +msgid "Estimated Total (%s)" +msgstr "" + +#: includes/common/class-mp-cart.php:666 includes/common/class-mp-cart.php:752 +msgid "Estimated Total" +msgstr "" + +#: includes/admin/widgets/product-list.php:247 +msgid "Show Thumbnail Placeholder image (if image is not set)" +msgstr "" + +#: includes/admin/widgets/cart.php:73 +msgid "Display product price" +msgstr "" + +#: includes/admin/widgets/cart.php:71 +msgid "Display product quantity" +msgstr "" + +#: includes/admin/widgets/cart.php:69 +msgid "Display product image" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:93 +msgid "General Shipping Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:773 +msgid "If you are having conflicts with the lightbox library from your theme or another plugin you should uncheck this." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:772 +msgid "Use Built-In Lightbox for Images?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:762 +msgid "Disable Large Image Display?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:688 +msgid "Show Product Image?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:682 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:684 +msgid "Show Tags List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:676 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:678 +msgid "Show Categories List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:671 +msgid "If enabled, description excerpt will be added above Add to cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:669 +msgid "Show Excerpt?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:665 +msgid "If enabled, users will be able to choose how many of the product they want to purchase before adding to their cart. If not checked, quantity could be change later on the cart page." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:663 +msgid "Show Quantity Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:649 +msgid "Settings related to the display of individual product pages." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:648 +msgid "Product Page Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:605 +msgid "Related Products Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:573 +msgid "Show Related Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:568 +msgid "Related Product Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:549 +msgid "Order Status Entries Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:510 +msgid "Sort Products By" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:497 +msgid "Products Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:492 +msgid "Paginate Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:478 +msgid "Excerpts Length" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:473 +msgid "Show Excerpts?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:450 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:746 +msgid "Image Alignment" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:412 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:708 +msgid "Custom Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:401 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:697 +msgid "Large - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:400 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:696 +msgid "Medium - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:399 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:695 +msgid "Thumbnail - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:397 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:693 +msgid "Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:386 +msgid "Select default placeholder image thumbnail when product image is not available (if empty, plugin's built-in image will be used)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:380 +msgid "Show default product placeholder thumbnail when product image is not available?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:374 +msgid "Show Product Thumbnail?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:369 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:658 +msgid "Redirect to cart page for immediate checkout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:368 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:657 +msgid "Stay on current product page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:366 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:655 +msgid "MarketPress supports two \"flows\" for adding products to the shopping cart. After adding a product to their cart, two things can happen:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:365 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:654 +msgid "Add To Cart Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:355 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:628 +msgid "Four" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:354 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:627 +msgid "Three" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:353 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:626 +msgid "Two" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:625 +msgid "One" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:349 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:622 +msgid "Set the number of products that show up in a grid row to best fit your theme" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:348 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:621 +msgid "How many products per row?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:342 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:609 +msgid "Display as grid" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:341 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:608 +msgid "Display as list" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:339 +msgid "Product Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:334 +msgid "Settings related to the display of product lists/grids." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:333 +msgid "Product List/Grid Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:314 +msgid "Show Twitter Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:309 +msgid "Twitter" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:303 +msgid "Show Share Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:297 +msgid "Recommend" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:296 +msgid "Like" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:294 +msgid "Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:283 +msgid "Show Facebook Like Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:278 +msgid "Facebook" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:257 +msgid "Show \"Pin It\" Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:252 +msgid "Pinterest" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:246 +msgid "Social Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:193 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:202 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:211 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:220 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:229 +#: includes/multisite/class-mp-admin-multisite.php:532 +#: includes/multisite/class-mp-admin-multisite.php:541 +#: includes/multisite/class-mp-admin-multisite.php:550 +msgid "Choose a Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:191 +msgid "This page will be used as the root for your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:168 +#: includes/multisite/class-mp-admin-multisite.php:586 +msgid "Create Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "uncropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "cropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:87 +#: includes/multisite/class-mp-admin-multisite.php:121 +#: includes/multisite/class-mp-admin-multisite.php:620 +msgid "An error occurred while creating the store page. Please try again." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:66 +msgid "Choose the gateway(s) that you would like to be available for checkout." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:65 +msgid "Enabled Gateways" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:78 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:146 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:179 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:213 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:274 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:307 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:341 +msgid "Text" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:71 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:139 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:172 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:206 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:267 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:300 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:334 +msgid "Subject" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:52 +msgid "Notification Email" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:510 +msgid "Enabling this option will display label `excl. tax` or `incl. tax` after price" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:509 +msgid "Display tax label?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:504 +msgid "Enabling this option will show Price + Tax, eg. if your price is 100 and your tax 20, your price will be 120" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:416 +#: includes/multisite/class-mp-admin-multisite.php:234 +msgid "Price Format" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:366 +msgid "Enabling this field will display a textbox on the shipping checkout page for users to enter special instructions for their order. Useful for product personalization, etc." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:365 +msgid "Show Special Instructions Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:360 +msgid "Universal" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:359 +msgid "Old" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1167 +#: includes/admin/store-settings/class-mp-store-settings-general.php:358 +msgid "New" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:353 +msgid "If you already use Google Analytics for your website, you can track detailed ecommerce information by enabling this setting. Choose whether you are using the new asynchronous or old tracking code. Before Google Analytics can report ecommerce activity for your website, you must enable ecommerce tracking on the profile settings page for your website. Also keep in mind that some gateways do not reliably show the receipt page, so tracking may not be accurate in those cases. It is recommended to use the PayPal gateway for the most accurate data. More information »" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:347 +msgid "Do you want to display the product price on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:346 +msgid "Show product price on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:340 +msgid "Do you want to display the product quantity on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:339 +msgid "Show product quantity on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:333 +msgid "Do you want to display the product image on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:332 +msgid "Show product image on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:327 +msgid "This option hide floating Mini Cart in top right corner." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:326 +msgid "Disable Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:316 +msgid "If unchecked your Orders admin page will be hidden" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:315 +msgid "Show admin Orders page?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:309 +msgid "Disable Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:303 +msgid "Force Login?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:297 +msgid "Hide Out of Stock Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:555 +msgid "This will prevent multiples of the same downloadable product form being added to the cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:554 +msgid "Limit Digital Products Per-order?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:268 +msgid "If you're having issues downloading large files and have worked with your hosting provider to increase your memory limits, try enabling this - just keep in mind, it's not as secure!" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:267 +msgid "Use Alternative Download Method?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:252 +msgid "Download Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:230 +msgid "Change product post type" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:51 +msgid "%s Capabilities" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-addons.php:47 +msgid "Store Settings: Add Ons: %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:254 +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:56 +msgid "Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Edit Product Attribute %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:246 +msgid "Exporters" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:238 +msgid "Short Codes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:207 +msgid "An appropriate message for key \"%s\" could not be found." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:204 +msgid "Product attribute updated successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:203 +msgid "Product attribute added successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +msgid "Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +#: includes/admin/store-settings/class-mp-store-settings-addons.php:121 +msgid "Store Settings: Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "Store Settings: Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:118 +msgid "Store Settings: Product Tags" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:117 +msgid "Store Settings: Product Categories" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Store Settings: Product Attributes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +msgid "Store Settings: Payments" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:114 +msgid "Store Settings: Shipping" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +#: includes/admin/class-mp-store-settings-admin.php:226 +msgid "Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +msgid "Store Settings: Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:112 +msgid "Store Settings: Presentation" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:111 +msgid "Store Settings: General" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1489 +msgid "Select a Product" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1447 +msgid "Reset to Defaults" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1446 +msgid "Insert Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1202 +#: includes/admin/class-mp-shortcode-builder.php:1227 +#: includes/admin/class-mp-shortcode-builder.php:1252 +msgid "The text to show in the link." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1196 +#: includes/admin/class-mp-shortcode-builder.php:1221 +#: includes/admin/class-mp-shortcode-builder.php:1246 +msgid "Whether to return a clickable link or url." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1177 +msgid "Whether to display the cart only on store pages or not." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1171 +msgid "Whether to show or hide the product price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1165 +msgid "Whether to show or hide the product quantity." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1159 +msgid "Whether to show or hide the product image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1153 +msgid "The text displayed before the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1147 +msgid "The title of the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1058 +#: includes/admin/class-mp-shortcode-builder.php:1121 +msgid "A label to prepend to the price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1032 +#: includes/admin/class-mp-shortcode-builder.php:1127 +msgid "What context for display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1004 +msgid "Set the alignment of the image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:998 +msgid "Set a custom pixel width/height. If omitted defaults to the size set by \"context\"." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:993 +msgid "Widget" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:988 +msgid "What context for preset size options." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:982 +#: includes/admin/class-mp-shortcode-builder.php:1026 +#: includes/admin/class-mp-shortcode-builder.php:1052 +#: includes/admin/class-mp-shortcode-builder.php:1077 +#: includes/admin/class-mp-shortcode-builder.php:1096 +#: includes/admin/class-mp-shortcode-builder.php:1115 +msgid "The ID of the product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:963 +msgid "Whether to display the product meta (e.g. price, buy button)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:738 +#: includes/admin/class-mp-shortcode-builder.php:905 +#: includes/admin/class-mp-shortcode-builder.php:958 +#: includes/admin/class-mp-shortcode-builder.php:992 +#: includes/admin/class-mp-shortcode-builder.php:1035 +#: includes/admin/class-mp-shortcode-builder.php:1130 +#: includes/admin/class-mp-shortcode-builder.php:1349 +msgid "List" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:957 +#: includes/admin/class-mp-shortcode-builder.php:991 +#: includes/admin/class-mp-shortcode-builder.php:1034 +#: includes/admin/class-mp-shortcode-builder.php:1129 +msgid "Single" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:953 +msgid "Whether and what context of image size to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:948 +msgid "Full" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:943 +msgid "Whether and what type of content to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:937 +msgid "Whether to display the product title." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:931 +msgid "The ID of the product to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:747 +#: includes/admin/class-mp-shortcode-builder.php:914 +msgid "Hide" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:746 +#: includes/admin/class-mp-shortcode-builder.php:913 +msgid "Show" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:744 +#: includes/admin/class-mp-shortcode-builder.php:911 +msgid "Whether or not to show the product filters." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:724 +#: includes/admin/class-mp-shortcode-builder.php:891 +#: includes/admin/class-mp-shortcode-builder.php:1335 +msgid "Limits list to a specific product tag." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:713 +#: includes/admin/class-mp-shortcode-builder.php:880 +#: includes/admin/class-mp-shortcode-builder.php:1324 +msgid "Limits list to a specific product category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:706 +#: includes/admin/class-mp-shortcode-builder.php:873 +#: includes/admin/class-mp-shortcode-builder.php:1317 +msgid "Direction to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:684 +#: includes/admin/class-mp-shortcode-builder.php:851 +#: includes/admin/class-mp-shortcode-builder.php:1295 +msgid "What field to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:678 +#: includes/admin/class-mp-shortcode-builder.php:845 +#: includes/admin/class-mp-shortcode-builder.php:1283 +msgid "How many products to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:672 +#: includes/admin/class-mp-shortcode-builder.php:839 +#: includes/admin/class-mp-shortcode-builder.php:1277 +msgid "The page number to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:666 +#: includes/admin/class-mp-shortcode-builder.php:833 +#: includes/admin/class-mp-shortcode-builder.php:1271 +msgid "Whether to paginate the product list. This is useful to only show a subset." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:808 +msgid "How many related items to show." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:790 +msgid "How to relate the products" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:784 +msgid "The product to show related items for." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:765 +msgid "The maximum number of products to display" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:647 +msgid "Comma separated list of tags (term_id) to include. For example, include=5,27 means tags that have the term_id 5 or 27 will be the only tags displayed. Defaults to include everything." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:641 +msgid "Comma separated list of tags (term_id) to exclude. For example, exclude=5,27 means tags that have the term_id 5 or 27 will NOT be displayed. Defaults to exclude nothing." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:633 +#: includes/admin/class-mp-shortcode-builder.php:1420 +msgid "Sort order." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:629 +#: includes/admin/class-mp-shortcode-builder.php:1416 +msgid "Count" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:626 +#: includes/admin/class-mp-shortcode-builder.php:1413 +msgid "Order of the tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:620 +msgid "The text/space between tags)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:616 +msgid "UL with a class of \"wp-tag-cloud\"" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:615 +msgid "separated by whitespace defined by \"separator\" parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:613 +msgid "Format of the cloud display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:607 +msgid "The number of actual tags to display in the cloud. (Use \"0\" to display all tags.)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:601 +msgid "Unit of measure as pertains to the smallest and largest values. This can be any CSS length value, e.g. pt, px, em, %." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:595 +msgid "The text size of the tag with the largest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:589 +msgid "The text size of the tag with the smallest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:570 +msgid "The \"tabindex\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:564 +msgid "The \"name\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:558 +msgid "The \"id\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:552 +msgid "Which category ID is selected." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:540 +msgid "The max depth. This is ignored unless hierarchical is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:536 +#: includes/multisite/template-functions.php:816 +msgid "No Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:414 +#: includes/admin/class-mp-shortcode-builder.php:546 +msgid "Calculates link or post counts by including items from child categories. If show_counts and hierarchical are true this is automatically set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:409 +msgid "Value of n (some number) specifies the depth (or level) to descend in displaying Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:408 +msgid "Show only top level Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:407 +msgid "All Categories displayed in flat (no indent) form (overrides hierarchical)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:406 +msgid "All Categories and child Categories (Default)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:402 +msgid "This parameter controls how many levels in the hierarchy of Categories are to be included in the list of Categories. NOTE: The \"hierarchical\" argument, which is disabled by default, will override the depth argument, unless it is true. When the argument is false, it will display all of the categories. When it is enabled it will use the value in the \"depth\" argument." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:396 +#: includes/admin/class-mp-shortcode-builder.php:1394 +msgid "Sets the number of Categories to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:390 +#: includes/admin/class-mp-shortcode-builder.php:534 +msgid "Set the text to show when no categories are listed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:384 +msgid "Set the title and style of the outer list item. If present but empty, the outer list item will not be displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:378 +#: includes/admin/class-mp-shortcode-builder.php:528 +msgid "Display sub-categories as inner list items (below the parent list item) or inline." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:368 +#: includes/admin/class-mp-shortcode-builder.php:511 +msgid "Exclude category-tree from the results. The parameter include must be empty. If the hierarchical parameter is true, then use exclude instead of exclude_tree." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:354 +msgid "Only include these categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:340 +#: includes/admin/class-mp-shortcode-builder.php:356 +#: includes/admin/class-mp-shortcode-builder.php:370 +#: includes/admin/class-mp-shortcode-builder.php:496 +#: includes/admin/class-mp-shortcode-builder.php:513 +msgid "Select Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:338 +#: includes/admin/class-mp-shortcode-builder.php:494 +msgid "Exclude one or more categories from the results. The parameter include must be empty." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:332 +msgid "Set a URI for an image (usually an rss feed icon) to act as a link to each categories' rss-2 feed. This parameter overrides the feed parameter. There is no default for this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:320 +msgid "Display a link to each category's rss-2 feed and set the link text to display. The default is no text and no feed displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:313 +#: includes/admin/class-mp-shortcode-builder.php:487 +msgid "Any" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:307 +#: includes/admin/class-mp-shortcode-builder.php:481 +msgid "Only display categories that are children of the category identified by this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:301 +msgid "Sets whether a category's description is inserted into the title attribute of the links created (i.e. <a title=\"<em>Category Description</em>\" href=\"...)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:295 +#: includes/admin/class-mp-shortcode-builder.php:475 +msgid "Toggles the display of categories with no posts." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:289 +#: includes/admin/class-mp-shortcode-builder.php:469 +#: includes/admin/class-mp-shortcode-builder.php:1388 +msgid "Toggles the display of the current count of posts in each category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:279 +msgid "Style to display the categories list in. A value of list displays the categories as list items while none generates no special display method (the list items are separated by
    tags)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:269 +#: includes/admin/class-mp-shortcode-builder.php:449 +#: includes/admin/class-mp-shortcode-builder.php:1378 +msgid "Sort order for categories (either ascending or descending)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:259 +#: includes/admin/class-mp-shortcode-builder.php:439 +#: includes/admin/class-mp-shortcode-builder.php:1368 +msgid "Sort categories alphabetically, by unique Category ID, or by the count of posts in that Category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:253 +#: includes/admin/class-mp-shortcode-builder.php:433 +msgid "If a value is entered, causes the display of a link to all categories if the style is set to list." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:219 +msgid "Select an Action" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:217 +msgid "What would you like to do?" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:216 +#: includes/admin/class-mp-shortcode-builder.php:1522 +msgid "Add E-Commerce Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:197 +msgid "Display a list of links to your store pages." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:196 +msgid "Display a link or url to the order status page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:195 +msgid "Display a link or url to the current products list page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:194 +msgid "Display a link or url to the current store page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:193 +msgid "Display a link or url to the current shopping cart page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:192 +msgid "Display the cart widget." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:191 +msgid "Display the full product meta box with price and buy now/add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:190 +msgid "Display the product stock." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:189 +msgid "Display the product SKU number(s)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:188 +msgid "Display the product price (and sale price)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:187 +msgid "Display the buy or add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:186 +msgid "Display the featured image of a given product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:185 +msgid "Display a single product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:184 +msgid "Display a list of products according to preference." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:183 +msgid "Display products related to the one being viewed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:182 +msgid "Display a list of popular products ordered by sales." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:180 +msgid "Display an HTML dropdown of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:179 +msgid "Display an HTML list of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:178 +msgid "Display a cloud or list of your product tags." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:655 +msgid "Setup your payment gateway" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:643 +#: includes/admin/class-mp-setup-wizard.php:649 +msgid "Other Gateways" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:617 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:150 +msgid "Select which calculated shipping methods the customer will be able to choose from." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:601 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:134 +#: includes/public/class-mp-checkout.php:82 +msgid "Shipping Method" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:568 +msgid "I want to charge shipping" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:523 +#: includes/admin/store-settings/class-mp-store-settings-general.php:503 +msgid "Show Price + Tax?" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:507 +msgid "I.e. Taxes, VAT, GST, etc" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:491 +#: includes/admin/store-settings/class-mp-store-settings-general.php:471 +msgid "Current Rates" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:473 +msgid "Default Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:434 +#: includes/admin/class-mp-setup-wizard.php:442 +#: includes/admin/store-settings/class-mp-store-settings-general.php:386 +#: includes/admin/store-settings/class-mp-store-settings-general.php:394 +#: includes/multisite/class-mp-admin-multisite.php:204 +#: includes/multisite/class-mp-admin-multisite.php:212 +msgid "Select a Currency" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:414 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:105 +msgid "Choose Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:411 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:103 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:104 +msgid "All Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:410 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:102 +msgid "These are the countries that you will ship to." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:409 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:101 +msgid "Target Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:401 +msgid "Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:387 +#: includes/admin/store-settings/class-mp-store-settings-general.php:640 +msgid "Zip/Postal Code Label" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:352 +#: includes/admin/store-settings/class-mp-store-settings-general.php:606 +msgid "Select a State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:335 +#: includes/admin/store-settings/class-mp-store-settings-general.php:590 +msgid "Select A Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:332 +#: includes/admin/store-settings/class-mp-store-settings-general.php:587 +msgid "Select a Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:324 +msgid "Location" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:304 +#: includes/admin/class-mp-setup-wizard.php:312 +#: includes/admin/class-mp-store-settings-admin.php:129 +#: includes/admin/class-mp-store-settings-admin.php:262 +msgid "Quick Setup" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:289 +msgid "MarketPress setup is not complete! Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2479 +msgid "Enter your product name here" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2440 +msgid "Select a %s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2426 +msgid "Each product variation needs to have product attributes assigned to it so the system knows how to differentiate one product variation from the other. It is important that you assign a category to this product before choosing any attributes." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2409 +msgid "If you would like this variation to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2320 +msgid "Sale Price (if applicable)" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2281 +msgid "If you would like the description to be different than the main product enter it here." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2229 +msgid "Image" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2202 +#: includes/admin/class-mp-shortcode-builder.php:226 +msgid "Attributes" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2166 +msgid "Create your product variations here. You can reorder variations by using the number to left of each variation, or delete one by clicking the \"x\" to the right of each variation. NOTE: The variation that shows up first in this list will be considered the \"main variation\". The details from this variation will be used in product listings." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2061 +#: includes/admin/class-mp-products-admin.php:2332 +msgid "Value must be less than regular price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2043 +#: includes/admin/class-mp-products-admin.php:2306 +msgid "Regular Price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2023 +#: includes/admin/class-mp-products-admin.php:2286 +msgid "External URL" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1988 +#: includes/admin/class-mp-products-admin.php:2245 +msgid "Enter the quantity that you have available to sell." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1987 +#: includes/admin/class-mp-products-admin.php:2244 +msgid "Inventory Count" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1977 +#: includes/admin/class-mp-products-admin.php:2234 +msgid "Track Inventory?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1871 +msgid "%1$sProduct Images%2$s %3$sAdd images of the product. The first image on the list is the featured image for this product (you can reorder images on the list)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1806 +msgid "Add variations for this product. e.g. If you are selling t-shirts, you can create Color & Size variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1804 +msgid "%3$sAdd variations for%2$s %1$sProduct%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1776 +msgid "This product has a multiple variations %1$s(e.g. Multiple colors, sizes)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1775 +msgid "This is a unique product without variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1700 +msgid "Extra Shipping Cost %1$s(if applicable)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1659 +#: includes/admin/class-mp-products-admin.php:2112 +#: includes/admin/class-mp-products-admin.php:2359 +msgid "Weight" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1636 +#: includes/admin/class-mp-products-admin.php:2098 +#: includes/admin/class-mp-products-admin.php:2416 +msgid "Please enter a valid tax rate" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1531 +msgid "Limit Per Order %1$s(limit the number of the item a shopper can buy per order)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1513 +msgid "SKU %1$s(Stock Keeping Unit)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "%1$sPrice, Inventory & Variants%2$s %3$sSet price, manage inventory and create Product Variants (if appropriate for your product).%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "Product Variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1480 +msgid "External / Affiliate Link" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1471 +msgid "Digital Download" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1470 +msgid "Physical / Tangible Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1464 +msgid "Product Kind %1$s(Physical Product, Digital, etc)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1426 +msgid "Choose Products" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1420 +msgid "If you would like, you can choose specific related products instead of using the ones generated by MarketPress" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1019 +msgid "Changes saved successfully" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:826 +msgid "Option cannot be saved. Try again." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:821 +msgid "Option saved successfully." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:467 +msgid "Img" +msgstr "" + +#: includes/admin/class-mp-product-attributes-list-table.php:57 +msgid "Product attribute(s) deleted successfully." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:162 +msgid "- Create New Variation -" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:144 +msgid "Only lowercase letters and dashes (-) are allowed." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:139 +msgid "If a slug is not entered, it will be generated automatically. Max 32 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:138 +#: includes/admin/class-mp-product-attributes-list-table.php:23 +msgid "Slug" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:130 +msgid "Max 45 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:123 +msgid "Use the numbers on the left to sort. To delete - click the \"X\" to the right of each row." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:122 +msgid "Attribute Options" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:121 +msgid "Add Option" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:105 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:523 +msgid "Sort Order" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:87 +msgid "Alphabetical" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:86 +msgid "ID" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:84 +msgid "Select how the options will be sorted." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:82 +msgid "Sort By" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:75 +msgid "The name of the attribute (e.g. color, size, etc)" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:74 +msgid "Attribute Name" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:69 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Product Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Product Attributes" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:71 +msgid "You can choose to make this page one of the following core store pages." +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:66 +msgid "Network Store Base" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:61 +msgid "Checkout Page" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:52 +msgid "Store Page Settings" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1108 +msgid "Display billing/shipping info for this customer" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1097 +msgid "View order “%s”" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1072 +msgid "Flag as:" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:952 +msgid "Move To Trash" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:948 +msgid " Received" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:927 +msgid "Enter coupon code here" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:812 +msgid "The order status could not be updated due to unexpected error. Please try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:740 +msgid "An invalid bulk action was requested. Please go back and try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:692 +msgid "The order status for order ID %1$s was updated successfully." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:688 +msgid "Order statuses successfully updated." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:530 +msgid "Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:518 +msgid "Actual Shipping Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:513 +msgid "Method Paid For" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:504 +msgid "Amount Collected" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:477 +msgid "DHL" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:408 +msgid "There is no IPN history to show at this time" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:345 +msgid "Type" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:343 +msgid "Gateway" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:301 +#: includes/common/template-functions.php:528 +msgid "Order History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:291 +msgid "IPN History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:283 +msgid "Customer Info" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:279 +msgid "Order Details" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:157 +msgid "All Dates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:320 +msgid "Add Pages to Menu" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:318 +msgid "Add-ons" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:317 +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "User Capabilities" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:316 +#: includes/admin/class-mp-setup-wizard.php:631 +#: includes/admin/store-settings/class-mp-store-settings-payments.php:50 +msgid "Payment Gateways" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:315 +msgid "Shipping Rates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:312 +msgid "Configure" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:309 +#: includes/admin/class-mp-products-admin.php:466 +#: includes/admin/class-mp-shortcode-builder.php:797 +msgid "Tags" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:308 +#: includes/admin/class-mp-products-admin.php:465 +msgid "Categories" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:300 +msgid "Manage" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:297 +msgid "Here's some quick links to manage your store and products." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:288 +msgid "low in stock" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:287 +msgid "%s product" +msgid_plural "%s products" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-dashboard-widgets.php:280 +msgid "received" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:279 +#: includes/admin/class-mp-dashboard-widgets.php:283 +msgid "%s order" +msgid_plural "%s orders" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-dashboard-widgets.php:276 +msgid "Stock & Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:261 +msgid "Last 30 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:256 +msgid "Last 7 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:251 +msgid "Yesterday" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:248 +#: includes/admin/class-mp-dashboard-widgets.php:253 +#: includes/admin/class-mp-dashboard-widgets.php:258 +#: includes/admin/class-mp-dashboard-widgets.php:263 +msgid " Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:246 +msgid "Today" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:241 +msgid "Welcome back! Here's a quick summary of your store's performance." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:196 +#: includes/admin/class-mp-products-admin.php:895 +msgid "No products out of stock." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:136 +#: includes/admin/class-mp-products-admin.php:839 +msgid "Stock Level" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:135 +#: includes/admin/class-mp-products-admin.php:838 +msgid "Variation" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:121 +msgid "Low Stock (%s)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:116 +msgid "Store Management" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:115 +msgid "Store Reports" +msgstr "" + +#: includes/admin/class-mp-ajax.php:579 +#: includes/admin/class-mp-orders-admin.php:520 +#: includes/common/payment-gateways/2checkout.php:370 +#: includes/common/payment-gateways/authorizenet-aim.php:264 +#: includes/common/payment-gateways/mollie.php:93 +#: includes/common/payment-gateways/paymill.php:196 +#: includes/common/payment-gateways/pin.php:190 +#: includes/common/payment-gateways/skrill.php:157 +#: includes/common/payment-gateways/skrill.php:168 +#: includes/common/payment-gateways/wepay.php:143 +#: includes/public/class-mp-checkout.php:404 +msgid "Select One" +msgstr "" + +#: includes/admin/class-mp-ajax.php:511 +msgid "Oops... we could not locate any orders by that ID. Please double check your order ID and try again." +msgstr "" + +#: includes/admin/class-mp-ajax.php:482 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:166 +#: includes/multisite/class-mp-admin-multisite.php:584 +msgid "Edit Page" +msgstr "" + +#: includes/admin/class-mp-ajax.php:346 +msgid "Cancel " +msgstr "" + +#: includes/admin/class-mp-ajax.php:345 +msgid "Save " +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "Edit Description" +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "HTML Markup" +msgstr "" + +#: includes/admin/class-mp-ajax.php:333 +msgid "Plain Text Only" +msgstr "" + +#: includes/admin/class-mp-ajax.php:329 +msgid "Additional Content / Information for this Variation" +msgstr "" + +#: includes/admin/class-mp-ajax.php:317 +#: includes/admin/class-mp-products-admin.php:1762 +msgid "Allow this product to be purchased even if it's out of stock" +msgstr "" + +#: includes/admin/class-mp-ajax.php:313 +#: includes/admin/class-mp-products-admin.php:1711 +msgid "Track Product Inventory" +msgstr "" + +#: includes/admin/class-mp-ajax.php:300 +msgid "Extra Shipping Cost (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:295 +msgid "Ounces:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:294 +msgid "Pounds:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:292 +msgid "Kilograms:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:287 +#: includes/admin/class-mp-products-admin.php:1649 +msgid "Charge Shipping" +msgstr "" + +#: includes/admin/class-mp-ajax.php:273 +#: includes/admin/class-mp-products-admin.php:1623 +#: includes/admin/store-settings/class-mp-store-settings-general.php:454 +msgid "Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:272 +#: includes/admin/class-mp-products-admin.php:1622 +#: includes/admin/class-mp-products-admin.php:2090 +#: includes/admin/class-mp-products-admin.php:2408 +msgid "Special Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:271 +#: includes/admin/class-mp-products-admin.php:1625 +#: includes/admin/class-mp-products-admin.php:2092 +msgid "If you would like this product to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-ajax.php:268 +#: includes/admin/class-mp-products-admin.php:1599 +msgid "Charge Taxes (Special Rate)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:256 +#: includes/admin/class-mp-products-admin.php:1593 +#: includes/admin/class-mp-products-admin.php:2077 +#: includes/admin/class-mp-products-admin.php:2348 +msgid "End Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:255 +#: includes/admin/class-mp-products-admin.php:1589 +#: includes/admin/class-mp-products-admin.php:2072 +msgid "Start Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:1568 +msgid "Enter Sale Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:250 +#: includes/admin/class-mp-products-admin.php:1547 +msgid "Set up a Sale for this Product" +msgstr "" + +#: includes/admin/class-mp-ajax.php:206 includes/admin/class-mp-ajax.php:223 +msgid "Enter " +msgstr "" + +#: includes/admin/class-mp-ajax.php:193 +msgid "Browse" +msgstr "" + +#: includes/admin/class-mp-ajax.php:184 includes/admin/class-mp-ajax.php:192 +msgid "http://" +msgstr "" + +#: includes/admin/class-mp-ajax.php:183 +msgid "External Product URL" +msgstr "" + +#: includes/admin/class-mp-ajax.php:237 +msgid "Limit Per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:177 +#: includes/admin/class-mp-products-admin.php:1520 +msgid "Enter Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:174 +#: includes/admin/class-mp-products-admin.php:1512 +msgid "Enter SKU" +msgstr "" + +#: includes/admin/class-mp-ajax.php:173 +msgid "(Stock Keeping Unit)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:158 +msgid "Remove Image" +msgstr "" + +#: includes/admin/class-mp-ajax.php:74 +msgid "Variation Draft" +msgstr "" + +#: includes/admin/class-mp-admin.php:296 +#: includes/admin/class-mp-dashboard-widgets.php:70 +msgid "Please wait...saving in progress..." +msgstr "" + +#: includes/admin/class-mp-admin.php:295 +#: includes/admin/class-mp-dashboard-widgets.php:69 +msgid "Input is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:294 +#: includes/admin/class-mp-dashboard-widgets.php:68 +msgid "Valid number is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:292 +#: includes/admin/class-mp-dashboard-widgets.php:66 +msgid "Delete %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:291 +#: includes/admin/class-mp-dashboard-widgets.php:65 +msgid "Delete %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:290 +#: includes/admin/class-mp-dashboard-widgets.php:64 +msgid "Update inventory for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:289 +#: includes/admin/class-mp-dashboard-widgets.php:63 +msgid "Update inventory for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:288 +#: includes/admin/class-mp-dashboard-widgets.php:62 +msgid "Update price for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:287 +#: includes/admin/class-mp-dashboard-widgets.php:61 +msgid "Update prices for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:285 +#: includes/admin/class-mp-dashboard-widgets.php:59 +msgid "Creating variations, please wait..." +msgstr "" + +#: includes/admin/class-mp-admin.php:96 +msgid "The following payment gateways have been deprecated, Cubepoints, Bitpay, iDEAL, Skrill, Google Checkout. If you were using one of these gateways, please setup a new payment gateway here." +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:61 +msgid "Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:71 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:71 +#: includes/common/class-mp-gdpr.php:399 includes/common/class-mp-order.php:872 +#: includes/common/helpers.php:164 includes/public/class-mp-checkout.php:1434 +msgid "Shipping Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:66 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:66 +#: includes/common/class-mp-gdpr.php:392 includes/common/class-mp-order.php:864 +#: includes/common/helpers.php:163 includes/public/class-mp-checkout.php:1427 +msgid "Billing Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:61 +msgid "Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:258 +msgid "Shipping Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:256 +msgid "Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:235 +msgid "Payment Method: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:79 +msgid "The dir %s not exist or not writeable" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:239 +msgid "Shop header/logo" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:233 +msgid "Choose a template" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:226 +msgid "Template Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:221 +msgid "Disable automatic creation/attachment of invoices when only free products are ordered" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:220 +msgid "Disable for free products" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:216 +msgid "Attach invoice to" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:214 +msgid "Customer Order Shipped email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:212 +msgid "Customer New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:211 +msgid "Admin New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:206 +msgid "download" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:205 +msgid "How do you want to view the PDF?" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:203 +msgid "Open the PDF in a new browser tab/window" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:202 +msgid "Download the PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:158 +msgid "Export PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:103 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:106 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:109 +msgid "You can't download this order invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:76 +msgid "Invalid Request" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:72 +msgid "Order not exist!" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:67 +msgid "Invalid ID" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1293 +msgid "Coupon added successfully" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1292 +msgid "Please enter a code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1247 +msgid "No end" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1200 +msgid "Valid Dates" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1195 +msgid "Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1027 +msgid "No Coupons found in Trash" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1026 +msgid "No Coupons Found" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1025 +msgid "Search Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1024 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1028 +msgid "View Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1023 +msgid "New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1020 +msgid "Create New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1017 +msgid "Manage Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1002 +msgid "An error occurred while removing your coupon. Please try again." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:964 +msgid "Coupon can't be applied to this cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:951 +msgid "Invalid coupon code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:794 +msgid "Help Text" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:789 +msgid "Form Title" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:783 +msgid "Coupons Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:764 +msgid "End Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:758 +msgid "Does coupon have an end date?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:696 +msgid "Select Products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:688 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:723 +#: includes/common/payment-gateways/paypal-payflow.php:402 +msgid "User" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:638 +msgid "Max Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:636 +msgid "Enter the maximum number of times this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:623 +msgid "Leave blank to allow all other coupons." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:622 +msgid "Select combinable coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:618 +msgid "Can this coupon be combined with other coupons?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:613 +msgid "Apply to each applicable item once per cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:612 +msgid "Apply to each applicable item and quantity ordered" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:609 +msgid "How should the discount amount be applied?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:605 +msgid "Discount Amount" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:604 +msgid "Value must either be a decimal number or a percentage" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:602 +msgid "If you would like to give a percentage-based discount make sure to include the percent (%) symbol. Otherwise, the discount will be applied as a fixed amount off." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:595 +msgid "Letters and Numbers only." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:589 +msgid "Coupon Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:447 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:795 +msgid "More than one code? That's OK! Just be sure to enter one at a time." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:444 +msgid "Apply Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:314 +msgid "Coupon Discounts" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:89 +msgid "1 add-on disabled" +msgid_plural "%s add-ons disabled" +msgstr[0] "" +msgstr[1] "" + +#: includes/addons/class-mp-addons-list-table.php:84 +msgid "1 add-on enabled" +msgid_plural "%s add-ons enabled" +msgstr[0] "" +msgstr[1] "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Disabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Enable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:129 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:67 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:135 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:168 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:202 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:263 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:296 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:330 +msgid "Enabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +msgid "Disable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:34 +msgid "Disable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:33 +msgid "Enable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:21 +#: includes/admin/class-mp-products-admin.php:2280 +#: includes/common/class-mp-product.php:2916 +msgid "Description" +msgstr "" + +#: includes/common/template-functions.php:2889 +#: includes/multisite/template-functions.php:407 +msgid "Popularity (Least Popular - Most Popular)" +msgstr "" + +#: includes/common/template-functions.php:2888 +#: includes/multisite/template-functions.php:406 +msgid "Popularity (Most Popular - Least Popular)" +msgstr "" + +#: includes/common/template-functions.php:2885 +#: includes/multisite/template-functions.php:403 +msgid "Name (Z-A)" +msgstr "" + +#: includes/common/template-functions.php:2884 +#: includes/multisite/template-functions.php:402 +msgid "Name (A-Z)" +msgstr "Isim (A-Z)" + +#: includes/common/template-functions.php:2883 +#: includes/multisite/template-functions.php:401 +msgid "Release Date (Oldest to Latest)" +msgstr "" + +#: includes/common/template-functions.php:2882 +#: includes/multisite/template-functions.php:400 +msgid "Release Date (Latest to Oldest)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:284 +msgid "paid" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "One Time Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Customer Counter" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Daily Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:182 +msgid "For the most accurate rates, please select the appropriate pick up type for your business." +msgstr "" + +#: includes/admin/class-mp-admin.php:374 +msgid "Page saved." +msgstr "" + +#: includes/admin/class-mp-admin.php:370 +msgid "Custom field deleted." +msgstr "" + +#: includes/admin/class-mp-admin.php:369 +msgid "Custom field updated." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:541 +msgid "%s - The payment request expired, - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:536 +msgid "%s - The payment not credited in merchants bitpay account, action required. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:252 +msgid "If enabled, you will recieve an email for each status update on payment." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:240 +msgid "Speed at which the bitcoin transaction registers as \"confirmed\" to the store. This overrides your merchant settings on the Bitpay website." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:238 +msgid "Transaction Speed" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:244 +msgid "Low" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:243 +msgid "Medium" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:242 +msgid "High" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:177 +#: includes/common/payment-gateways/_bitpay.php:517 +#: includes/common/payment-gateways/_bitpay.php:522 +msgid "%s - The payment request is under process. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:175 +#: includes/common/payment-gateways/_bitpay.php:527 +msgid "%s - The payment request has been processed - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:150 +#: includes/common/payment-gateways/_bitpay.php:294 +msgid "Incorrect order invoice, please contact site administrator" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:141 +msgid "We could not verify order invoice details, please try again or contact site administrator for help" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:81 +msgid "Login to Simplify to get your API credentials. Enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:605 +#: includes/common/payment-gateways/paypal-express.php:647 +msgid "Express Checkout is PayPal's premier checkout solution, which streamlines the checkout process for buyers and keeps them on your site after making a purchase. Unlike PayPal Pro, there are no additional fees to use Express Checkout, though you may need to do a free upgrade to a business account. More Info »" +msgstr "" + +#. Plugin URI of the plugin/theme +msgid "https://premium.wpmudev.org/project/e-commerce/" +msgstr "" + +#. Author of the plugin/theme +msgid "WPMU DEV" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:541 +#: includes/admin/class-mp-orders-admin.php:543 +msgid "Tracking Number" +msgstr "" + +#: includes/common/class-mp-order.php:805 +#: includes/common/payment-gateways/stripe.php:336 +#: includes/public/class-mp-checkout.php:402 +msgid "Country" +msgstr "" + +#: includes/common/class-mp-order.php:784 +#: includes/common/payment-gateways/stripe.php:338 +msgid "City" +msgstr "" + +#: includes/common/class-mp-order.php:780 +msgid "Address 2" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:340 +msgid "Address" +msgstr "" + +#: includes/common/class-mp-cart.php:752 includes/common/class-mp-gdpr.php:378 +msgid "Order Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:360 +msgid "Payment Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:347 +msgid "Transaction ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:207 +msgid "The WePay Card Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:186 +#: includes/common/shipping-modules/mp-fedex.php:283 +msgid "Account ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:179 +msgid "Access Token" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:172 +msgid "Client Secret" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:165 +msgid "Client ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:159 +msgid "You must login to WePay to get your API credentials. Make sure to check \"Tokenize credit cards\" option under \"API Keys\" section of your WePay app." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:154 +msgid "When in live mode it is recommended to use SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:148 +msgid "Donation" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:147 +msgid "Event" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:146 +msgid "Personal" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:145 +msgid "Service" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:144 +msgid "Goods" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:141 +msgid "Choose type of payments" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:140 +msgid "Checkout Type" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:134 +msgid "Staging" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:131 +msgid "Choose STAGING if you have registered the app on stage.wepay.com, or PRODUCTION if you registered on www.wepay.com" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:36 +#: includes/common/payment-gateways/wepay.php:299 +msgid "WePay" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:366 +msgid "Rejected - A payment was rejected." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:360 +msgid "Failed - A payment was rejected due to an error." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:342 +msgid "PayWay balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:298 +msgid "Full path of the cacerts.crt file" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:284 +msgid "User Name" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:277 +msgid "Biller Code" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:273 +msgid "Log Directory" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:266 +msgid "Encryption Key" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:60 +msgid "Your PayWay transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:40 +#: includes/common/payment-gateways/_payway.php:41 +msgid "PayWay" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:862 +msgid "You must register this application with PayPal using your business account login to get an Application ID that will work with your API credentials. A bit of a hassle, but worth it! In the near future we will be looking for ways to simplify this process. Register then submit your application while logged in to the developer portal. Note that you do not need an Application ID for testing in sandbox mode. More Information »" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:818 +#: includes/common/payment-gateways/paypal-chained-payments.php:840 +#: includes/common/payment-gateways/paypal-express.php:705 +msgid "You must login to PayPal and create an API signature to get your credentials. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:378 +msgid "Use Payflow payment gateway to accept online payments using your Internet merchant account and processing network. PayPal Payflow Pro is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:595 +msgid "Tags Only" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:594 +msgid "Category Only" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:795 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:593 +msgid "Category & Tags" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:591 +msgid "Relate Products By" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1008 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:455 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:751 +msgid "Right" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1007 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:454 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:749 +msgid "Left" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1009 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:750 +msgid "Center" +msgstr "" + +#: marketpress.php:273 +msgid "Orders from your e-commerce store." +msgstr "" + +#: marketpress.php:231 +msgid "Products for your e-commerce store." +msgstr "" + +#: marketpress.php:222 +msgid "Edit Product" +msgstr "" + +#. Description of the plugin/theme +msgid "The complete WordPress ecommerce plugin - works perfectly with BuddyPress and Multisite too to create a social marketplace, where you can take a percentage! Activate the plugin, adjust your settings then add some products to your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:272 +msgid "Beside" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:271 +msgid "Above" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:268 +msgid "Pin Count" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:261 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:287 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:318 +msgid "All View" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:260 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:286 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:317 +msgid "Single View" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:259 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:285 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:316 +msgid "Off" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:578 +msgid "Related Product Limit" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:681 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1201 +msgid "Applies To" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:685 +msgid "All Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:487 +msgid "The label shown for the tax line item in the cart. Taxes, VAT, GST, etc." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:485 +msgid "Tax Label" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:81 +msgid "Apply" +msgstr "" + +#: includes/admin/class-mp-admin.php:192 +msgid "MarketPress Instructions" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1954 +#: includes/admin/class-mp-products-admin.php:2194 includes/common/data.php:62 +#: includes/common/helpers.php:150 +msgid "Taxes" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1417 +#: includes/common/class-mp-product.php:2900 +msgid "Related Products" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:282 +#: includes/common/shipping-modules/mp-usps.php:316 +msgid "@ Max" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "(3-5 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "Priority Mail Express International Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:92 +msgid "Priority Mail Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:171 +#: includes/common/shipping-modules/mp-pickup.php:247 +msgid "In Store" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:159 +msgid "Pickup Fee" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:141 +msgid "This option allows your customers to indicate that they will pick-up their order at your place of business." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:60 +#: includes/common/shipping-modules/mp-pickup.php:76 +#: includes/common/shipping-modules/mp-pickup.php:176 +msgid "Pickup Instructions" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:24 +#: includes/common/shipping-modules/mp-pickup.php:254 +msgid "Pickup" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping - 0.00" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:256 +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:440 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:309 +msgid "Your Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:301 +msgid "Station" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:300 +msgid "Request Courier" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:299 +msgid "Drop Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:298 +msgid "Business Service Center" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:297 +msgid "Regular Pickup" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:135 +#: includes/common/shipping-modules/mp-fedex.php:264 +msgid "Production" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:207 +msgid "Simplify Commerce by MasterCard" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:104 +msgid "When in live mode, although it is not required, Simplify recommends you have an SSL certificate." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:183 +#: includes/common/payment-gateways/simplify.php:87 +msgid "Public Key" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:175 +#: includes/common/payment-gateways/simplify.php:94 +msgid "Private Key" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:71 +msgid "Simplify helps merchants to accept online payments from Mastercard, Visa, American Express, Discover, JCB, and Diners Club cards. It's that simple. We offer a merchant account and payment gateway in a single, secure package so you can concentrate on what really matters to your business. Only supports USD currently." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:267 +msgid "%1$s" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:151 +msgid "The Simplify Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/simplify.php:18 +msgid "Simplify" +msgstr "" + +#: includes/common/payment-gateways/pin.php:255 +msgid "%1$s Card %2$s" +msgstr "" + +#: includes/common/payment-gateways/pin.php:211 +msgid "The PIN Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:187 +msgid "Selecting a currency other than currency supported by PIN may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/pin.php:164 +msgid "You must login to PIN to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/pin.php:158 +msgid "When in live mode PIN recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/pin.php:45 +#: includes/common/payment-gateways/pin.php:286 +msgid "PIN" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:830 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:534 +#: includes/common/payment-gateways/paypal-express.php:865 +msgid "The payment is pending" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:235 +msgid "The Paymill Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:169 +msgid "You must login to Paymill to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:45 +#: includes/common/payment-gateways/paymill.php:308 +msgid "Paymill" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:90 +msgid "Invalid cardholder" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:89 +msgid "Card is no longer valid or has expired" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:88 +msgid "Please enter a valid Card CVC" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:87 +msgid "Please choose a valid Expiration Date." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:99 +#: includes/common/payment-gateways/skrill.php:100 +msgid "Skrill (Moneybookers)" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:24 +#: includes/common/shipping-modules/mp-weight-rate.php:292 +msgid "Weight Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:303 +msgid "USPS Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:270 +msgid "USPS Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:264 +msgid "USPS Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:145 +msgid "Flat Rate Large" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:140 +msgid "Flat Rate Medium 2" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:135 +msgid "Flat Rate Medium 1" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:130 +msgid "Flat Rate Small" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:118 +msgid "First Class International Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:114 +msgid "Priority Mail International Small Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:112 +msgid "Priority Mail International Medium Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:110 +msgid "Priority Mail International Large Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:108 +msgid "Priority Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:106 +msgid "Express Mail International Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:104 +msgid "Express Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:98 +msgid "Library Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:96 +msgid "Media Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "First-Class Mail Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:90 +msgid "Priority Mail Small Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:88 +msgid "Priority Mail Medium Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +#: includes/common/shipping-modules/mp-usps.php:88 +#: includes/common/shipping-modules/mp-usps.php:90 +#: includes/common/shipping-modules/mp-usps.php:92 +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "(2-4 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +msgid "Priority Mail Large Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "(2-4) days" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "Priority Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "Express Mail Sunday/Holiday Delivery Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:80 +msgid "Express Mail Flat Rate Boxes Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:78 +msgid "Express Mail Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:76 +msgid "Express Mail Sunday/Holiday Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:74 +msgid "Express Mail Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:72 +#: includes/common/shipping-modules/mp-usps.php:74 +#: includes/common/shipping-modules/mp-usps.php:76 +#: includes/common/shipping-modules/mp-usps.php:78 +#: includes/common/shipping-modules/mp-usps.php:80 +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "(1-2 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:72 +msgid "Express Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:67 +#: includes/common/shipping-modules/mp-usps.php:902 +msgid "USPS" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:534 +msgid "UPS (beta)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:166 +msgid "Required if using negotiated rates" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "Worldwide Express Plus" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "(Scheduled)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "Standard" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "(2-5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "Worldwide Expedited" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:54 +msgid "Worldwide Express" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "2nd Day Air AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "(1 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "Next Day Air Early AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "Next Day Air Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "3 Day Select" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:49 +msgid "Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:48 +msgid "2nd Day Air" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "Next Day Air" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:475 +#: includes/common/shipping-modules/mp-ups.php:43 +msgid "UPS" +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:27 +#: includes/common/shipping-modules/mp-table-rate.php:318 +msgid "Table Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:71 +#: includes/common/shipping-modules/mp-table-quantity.php:77 +msgid "Shipping Cost: " +msgstr "Kargo Ücreti:" + +#: includes/common/shipping-modules/mp-table-quantity.php:70 +#: includes/common/shipping-modules/mp-table-quantity.php:76 +msgid "If quantity is greater than:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:66 +msgid "Each band must be a higher price than the one above it." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:56 +msgid "Number of Bands:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:53 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Each layer must be a higher quantity than the previous." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:51 +msgid "Table Quantity Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:31 +msgid "Table Quantity" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:135 +#: includes/common/shipping-modules/mp-table-rate.php:174 +#: includes/common/shipping-modules/mp-weight-rate.php:189 +msgid "European Union" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:123 +#: includes/common/shipping-modules/mp-table-rate.php:162 +#: includes/common/shipping-modules/mp-weight-rate.php:177 +msgid "United States" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:111 +#: includes/common/shipping-modules/mp-table-rate.php:151 +#: includes/common/shipping-modules/mp-weight-rate.php:166 +msgid "In Country" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:146 +#: includes/common/shipping-modules/mp-table-rate.php:186 +#: includes/common/shipping-modules/mp-weight-rate.php:201 +msgid "International" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:101 +#: includes/common/shipping-modules/mp-table-rate.php:141 +#: includes/common/shipping-modules/mp-weight-rate.php:156 +msgid "Canada" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:92 +#: includes/common/shipping-modules/mp-table-rate.php:132 +#: includes/common/shipping-modules/mp-weight-rate.php:147 +msgid "Hawaii and Alaska" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:83 +#: includes/common/shipping-modules/mp-table-rate.php:123 +#: includes/common/shipping-modules/mp-weight-rate.php:138 +msgid "Lower 48 States" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:64 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping." +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:25 +#: includes/common/shipping-modules/mp-flat-rate.php:223 +msgid "Flat Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:761 +msgid "FedEx (beta)" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Centimeters" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Inches" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1676 +#: includes/admin/class-mp-setup-wizard.php:547 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:166 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +msgid "Kilograms" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:103 +msgid " %1$s - %2$s" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:358 +msgid "Max Weight per Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:356 +msgid "Box Dimensions" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:354 +msgid "Box Name" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:344 +msgid "Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:343 +msgid "For each box defined enter the maximum weight it can contain." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:341 +msgid "Enter your standard box sizes as LengthxWidthxHeight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:386 +#: includes/common/shipping-modules/mp-ups.php:193 +#: includes/common/shipping-modules/mp-usps.php:234 +#: includes/common/shipping-modules/mp-usps.php:338 +msgid "Standard Boxes and Weight Limits" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:328 +msgid "Handling Charge per Interntional Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:294 +msgid "Handling Charge per Domestic Shipment " +msgstr "Yurtiçi gönderi başına kargo ücreti" + +#: includes/common/shipping-modules/mp-fedex.php:388 +#: includes/common/shipping-modules/mp-ups.php:196 +#: includes/common/shipping-modules/mp-usps.php:237 +msgid "Add Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "(Next Day)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +msgid "Europe First International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:62 +msgid "International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:61 +#: includes/common/shipping-modules/mp-fedex.php:62 +#: includes/common/shipping-modules/mp-ups.php:54 +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "(1-3 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:61 +msgid "International First" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "(5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "International Economy" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "(2-7 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "Smart Post" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:55 +#: includes/common/shipping-modules/mp-ups.php:49 +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "(1-5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:55 +msgid "Ground Home Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "(1-7 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "Fedex Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:53 +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "(3 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:53 +msgid "Fedex Express Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +#: includes/common/shipping-modules/mp-ups.php:48 +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "(2 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +msgid "Fedex 2 Day" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "(2 Days am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "Fedex 2 Day AM" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "(1 Day)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +msgid "Standard Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "(1 Day am )" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "Priority Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "(1 Day am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "First Overnight" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:476 +#: includes/common/shipping-modules/mp-fedex.php:31 +msgid "FedEx" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:270 +#: includes/common/payment-gateways/simplify.php:179 +#: includes/common/payment-gateways/stripe.php:365 +msgid "%1$s Card ending in %2$s - Expires %3$s" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:259 +#: includes/common/payment-gateways/pin.php:238 +#: includes/common/payment-gateways/simplify.php:171 +msgid "%s Store Purchase - Order ID: %s, Email: %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:266 +msgid "You must login to Stripe to get your API credentials. You can enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:261 +msgid "When in live mode Stripe recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:311 +msgid "The Stripe Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:263 +#: includes/common/payment-gateways/paymill.php:122 +#: includes/common/payment-gateways/stripe.php:222 +msgid "Card Number" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:86 +msgid "Please enter a valid Credit Card Number." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:45 +#: includes/common/payment-gateways/stripe.php:433 +msgid "Stripe" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:750 +msgid "Sets the background color for the payment page. By default, the color is white." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:745 +msgid "Sets the background color for the header of the payment page. By default, the color is white." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:740 +msgid "Sets the border color around the header of the payment page. The border is a 2-pixel perimeter around the header space, which is 750 pixels wide by 90 pixels high. By default, the color is black." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:735 +msgid "URL for an image you want to appear at the top left of the payment page. The image has a maximum size of 750 pixels wide by 90 pixels high. PayPal recommends that you provide an image that is stored on a secure (https) server. If you do not specify an image, the business name is displayed." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:857 +#: includes/common/payment-gateways/paypal-express.php:1131 +msgid "The payment is pending because it is part of an order that has been authorized but not settled." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:853 +#: includes/common/payment-gateways/paypal-express.php:1127 +msgid "The payment is pending because it has been authorized but not settled. You must capture the funds first." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:847 +#: includes/common/payment-gateways/paypal-express.php:1120 +msgid "You denied the payment when it was marked as pending." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:837 +#: includes/common/payment-gateways/paypal-express.php:1108 +msgid "A reversal has occurred on this transaction due to an unknown reason." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:836 +#: includes/common/payment-gateways/paypal-express.php:1107 +msgid "A reversal has occurred on this transaction because you have given the customer a refund." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:835 +#: includes/common/payment-gateways/paypal-express.php:1106 +msgid "A reversal has occurred on this transaction due to a complaint about the transaction from your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:834 +#: includes/common/payment-gateways/paypal-express.php:1105 +msgid "A reversal has occurred on this transaction due to your customer triggering a money-back guarantee." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:833 +#: includes/common/payment-gateways/paypal-express.php:1104 +msgid "A reversal has occurred on this transaction due to a chargeback by your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:1101 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer:" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:826 +#: includes/common/payment-gateways/paypal-express.php:1097 +msgid "A payment has been accepted." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:818 +#: includes/common/payment-gateways/paypal-express.php:1087 +msgid "The transaction has not terminated, e.g. an authorization may be awaiting completion." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:531 +#: includes/common/payment-gateways/paypal-express.php:810 +#: includes/common/payment-gateways/paypal-express.php:1077 +msgid "The payment has failed. This happens only if the payment was made from your customer's bank account." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:806 +#: includes/common/payment-gateways/paypal-express.php:1072 +msgid "An authorization for this transaction has been voided." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:802 +#: includes/common/payment-gateways/paypal-express.php:1067 +msgid "The authorization period for this payment has been reached." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:798 +#: includes/common/payment-gateways/paypal-express.php:1062 +msgid "A reversal has been canceled; for example, when you win a dispute and the funds for the reversal have been returned to you." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:499 +#: includes/common/payment-gateways/paypal-express.php:1163 +msgid "PayPal Express Checkout" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:798 +msgid "Gateway Settings Page Message" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:725 +msgid "Signature" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:506 +#: includes/common/payment-gateways/eway31.php:533 +#: includes/common/shipping-modules/mp-fedex.php:276 +msgid "API Password" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:773 +msgid "Enter a percentage of all store sales to collect as a fee. Decimals allowed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:757 +msgid "Using PayPal Chained Payments allows you as the multisite network owner to collect a predefined fee or percentage of all sales on network MarketPress stores! This is invisible to the customers who purchase items in a store, and all PayPal fees will be charged to the store owner. To use this option you must create API credentials, and you should make all other gateways unavailable or limited above." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:338 +msgid "Please be aware that we will deduct a ?% fee from the total of each transaction in addition to any fees PayPal may charge you. If for any reason you need to refund a customer for an order, please contact us with a screenshot of the refund receipt in your PayPal history as well as the Transaction ID of our fee deduction so we can issue you a refund. Thank you!" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:698 +#: includes/common/payment-gateways/paypal-express.php:149 +msgid "There was a problem connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:470 +#: includes/common/payment-gateways/paypal-express.php:1053 +msgid "There was a problem verifying the IPN string with PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:310 +msgid "There was a problem connecting to PayPal to check the status of your purchase. Please check the status of your order here »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:539 +#: includes/common/payment-gateways/paypal-chained-payments.php:254 +#: includes/common/payment-gateways/paypal-express.php:1139 +msgid "The payment is pending." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:251 +#: includes/common/payment-gateways/paypal-chained-payments.php:531 +#: includes/common/payment-gateways/paypal-express.php:862 +#: includes/common/payment-gateways/paypal-express.php:1136 +msgid "The payment is pending for an unknown reason. For more information, contact PayPal customer service." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:250 +#: includes/common/payment-gateways/paypal-chained-payments.php:530 +#: includes/common/payment-gateways/paypal-express.php:861 +#: includes/common/payment-gateways/paypal-express.php:1135 +msgid "The payment is pending because you are not yet verified. You must verify your account before you can accept this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:249 +#: includes/common/payment-gateways/paypal-chained-payments.php:529 +#: includes/common/payment-gateways/paypal-express.php:860 +#: includes/common/payment-gateways/paypal-express.php:1134 +msgid "The payment is pending because it was made via credit card and you must upgrade your account to Business or Premier status in order to receive the funds. It can also mean that you have reached the monthly limit for transactions on your account." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:248 +#: includes/common/payment-gateways/paypal-chained-payments.php:528 +#: includes/common/payment-gateways/paypal-express.php:859 +#: includes/common/payment-gateways/paypal-express.php:1133 +msgid "The payment is pending because it was made to an email address that is not yet registered or confirmed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:247 +#: includes/common/payment-gateways/paypal-chained-payments.php:527 +#: includes/common/payment-gateways/paypal-express.php:858 +#: includes/common/payment-gateways/paypal-express.php:1132 +msgid "The payment is pending while it is being reviewed by PayPal for risk." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:246 +#: includes/common/payment-gateways/paypal-chained-payments.php:526 +#: includes/common/payment-gateways/paypal-express.php:856 +#: includes/common/payment-gateways/paypal-express.php:1130 +msgid "You do not have a balance in the currency sent, and you do not have your Payment Receiving Preferences set to automatically convert and accept this payment. You must manually accept or deny this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:245 +#: includes/common/payment-gateways/paypal-chained-payments.php:525 +#: includes/common/payment-gateways/paypal-express.php:855 +#: includes/common/payment-gateways/paypal-express.php:1129 +msgid "The payment is pending because you hold a non-U.S. account and do not have a withdrawal mechanism. You must manually accept or deny this payment from your Account Overview." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:244 +#: includes/common/payment-gateways/paypal-chained-payments.php:524 +#: includes/common/payment-gateways/paypal-express.php:854 +#: includes/common/payment-gateways/paypal-express.php:1128 +msgid "The payment is pending because it was made by an eCheck that has not yet cleared." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:243 +#: includes/common/payment-gateways/paypal-chained-payments.php:523 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:236 +#: includes/common/payment-gateways/paypal-chained-payments.php:516 +msgid "The transaction was rejected by the receiver (you)." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:510 +#: includes/common/payment-gateways/paypal-express.php:843 +#: includes/common/payment-gateways/paypal-express.php:1115 +msgid "You refunded the payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:224 +#: includes/common/payment-gateways/paypal-chained-payments.php:504 +msgid "The transaction is in progress." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:212 +#: includes/common/payment-gateways/paypal-chained-payments.php:491 +#: includes/common/payment-gateways/paypal-express.php:814 +#: includes/common/payment-gateways/paypal-express.php:1082 +msgid "The payment has been partially refunded." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:202 +#: includes/common/payment-gateways/paypal-chained-payments.php:481 +msgid "PayPal balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:177 +msgid "There was a problem connecting to PayPal to setup your purchase. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:122 +msgid "Your PayPal transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:50 +#: includes/common/payment-gateways/paypal-chained-payments.php:53 +#: includes/common/payment-gateways/paypal-chained-payments.php:732 +#: includes/common/payment-gateways/paypal-express.php:500 +#: includes/common/payment-gateways/paypal-express.php:938 +msgid "PayPal" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:48 +#: includes/common/payment-gateways/paypal-chained-payments.php:730 +#: includes/common/payment-gateways/paypal-chained-payments.php:756 +#: includes/common/payment-gateways/paypal-chained-payments.php:873 +msgid "PayPal Chained Payments" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:59 +#: includes/common/payment-gateways/paypal-payflow.php:467 +msgid "PayPal Payflow Pro" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:378 +msgid "Chargeback - A payment was reversed due to a chargeback. The funds have been removed from your account balance and returned to the buyer." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:372 +msgid "Failed - The Credit Card or Direct Debit transaction was declined." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:354 +#: includes/common/payment-gateways/skrill.php:366 +msgid "Cancelled - The payment was cancelled manually by the sender in their online account history or was auto-cancelled after 14 days pending." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:360 +msgid "Pending - The payment is pending. It can take 2-3 days for bank transfers to complete." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:349 +#: includes/common/payment-gateways/skrill.php:354 +msgid "Processed - The payment has been completed, and the funds have been added successfully to your Moneybookers account balance." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:189 +msgid "Shown to the customer on the confirmation screen - the end step of the process - a note, confirmation number, or any other message. Line breaks <br> may be used for longer messages." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:188 +msgid "Confirmation Note (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:183 +msgid "The URL of the logo which you would like to appear at the top of the payment form. The logo must be accessible via HTTPS otherwise it will not be shown. For best integration results we recommend that you use a logo with dimensions up to 200px in width and 50px in height." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:182 +msgid "Logo Image (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:177 +msgid "The name of this store, which will be shown on the gateway. If no value is submitted, the account email will be shown as the recipient of the payment." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:176 +msgid "Merchant Name (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:165 +msgid "Language" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:368 +#: includes/common/payment-gateways/authorizenet-aim.php:262 +#: includes/common/payment-gateways/eway.php:363 +#: includes/common/payment-gateways/eway31.php:471 +#: includes/common/payment-gateways/mollie.php:91 +#: includes/common/payment-gateways/paymill.php:193 +#: includes/common/payment-gateways/paypal-chained-payments.php:356 +#: includes/common/payment-gateways/paypal-express.php:688 +#: includes/common/payment-gateways/paypal-payflow.php:432 +#: includes/common/payment-gateways/pin.php:186 +#: includes/common/payment-gateways/skrill.php:152 +#: includes/common/payment-gateways/stripe.php:288 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:104 +msgid "Currency" +msgstr "Mevcut" + +#: includes/common/payment-gateways/2checkout.php:359 +#: includes/common/payment-gateways/skrill.php:143 +msgid "Secret Word" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:261 +msgid "Order ID:" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:234 +msgid "Complete Checkout" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:204 +msgid "Your Moneybookers transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:155 +msgid "This is the email text to send to those who have made manual payment checkouts. You should include your manual payment instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:257 +#: includes/common/payment-gateways/manual-payments.php:128 +msgid "Record payments manually, such as by Cash, Check, or EFT." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:71 +msgid "Manual/Invoice" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:648 +#: includes/common/payment-gateways/manual-payments.php:35 +#: includes/common/payment-gateways/manual-payments.php:36 +msgid "Manual Payment" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:34 +#: includes/common/payment-gateways/manual-payments.php:163 +msgid "Manual Payments" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:288 +msgid "iDEAL Simulator (for testing)" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:287 +msgid "ABN Amro Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:286 +msgid "Friesland Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:285 +msgid "Rabobank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:284 +msgid "ING Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:279 +msgid "Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:270 +msgid "To make it easier to pay for online products and services, the Dutch banking community has developed the iDEAL online payment method. iDEAL allows online payments to be made using online banking in EUR only." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:247 +#: includes/common/payment-gateways/_payway.php:199 +#: includes/common/payment-gateways/manual-payments.php:68 +msgid "Invoiced" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1016 +msgid "Coupon" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:77 +#: includes/common/payment-gateways/_ideal.php:250 +#: includes/common/payment-gateways/_payway.php:202 +msgid "iDEAL" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:76 +msgid "iDEAL (beta)" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:327 +msgid "Merchant Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:293 +#: includes/common/payment-gateways/_payway.php:302 +#: includes/common/payment-gateways/payfast.php:324 +msgid "Merchant ID" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:462 +msgid "eWay Rapid 3.0 Payments lets merchants recieve credit card payments through eWay without need for users to leave the shop. Note this gateway requires a valid SSL certificate configured for this site." +msgstr "" + +#: includes/common/payment-gateways/eway.php:452 +msgid "There was a problem connecting to eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/eway.php:432 +#: includes/common/payment-gateways/eway.php:437 +msgid "The url of the image can be hosted on your website and pass the secure https:// path of the image to be displayed at the top of the website. This is the second image block on the webpage and is restricted to 960px X 65px. A default secure image is used if none is supplied." +msgstr "" + +#: includes/common/payment-gateways/eway.php:431 +#: includes/common/payment-gateways/eway.php:436 +msgid "Company Logo (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:427 +msgid "The page footer text can be customised and populated below the customer's order details. Useful for contact information." +msgstr "" + +#: includes/common/payment-gateways/eway.php:426 +msgid "Page Footer (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:421 +msgid "Page Description (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:417 +#: includes/common/payment-gateways/eway.php:422 +msgid "This value is used to populate the browsers title bar at the top of the screen." +msgstr "" + +#: includes/common/payment-gateways/eway.php:416 +msgid "Page Title (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:412 +msgid "This will be displayed as the company the customer is purchasing from, including this is highly recommended." +msgstr "" + +#: includes/common/payment-gateways/eway.php:411 +msgid "Company Name" +msgstr "" + +#: includes/common/payment-gateways/eway.php:394 +msgid "Customer ID" +msgstr "" + +#: includes/common/payment-gateways/eway.php:381 +#: includes/common/payment-gateways/eway31.php:488 +msgid "Live API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway.php:371 +#: includes/common/payment-gateways/eway31.php:479 +msgid "Gateway Mode" +msgstr "" + +#: includes/common/payment-gateways/eway.php:354 +msgid "The Hosted Page is a webpage hosted on eWAY's side eliminating the need for merchants to capture, transmit or store credit card numbers. At the checkout time the merchant automatically redirects the customer to the Hosted Page where they would enter their details and have the transaction processed. Upon completion of the transaction the customer is redirected back to the MarketPress checkout confirmation page." +msgstr "" + +#: includes/common/payment-gateways/eway.php:314 +msgid "There was a problem with your credit card information: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:300 +msgid "Paid - The card has been processed - %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:253 +msgid "There was a problem setting up the transaction with eWay: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:245 +#: includes/common/payment-gateways/eway.php:289 +msgid "There was a problem parsing the response from eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:159 +#: includes/common/payment-gateways/eway.php:189 +#: includes/common/payment-gateways/paypal-chained-payments.php:634 +#: includes/common/payment-gateways/paypal-express.php:322 +#: includes/common/payment-gateways/paypal-express.php:473 +msgid "%s Store Purchase - Order ID: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:147 +#: includes/common/payment-gateways/eway.php:462 +msgid "eWay Shared Payments" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:214 +msgid "This is the email text to send to those who have made CubePoints checkouts. You should include your CubePoints instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:212 +#: includes/common/payment-gateways/free_orders.php:188 +#: includes/common/payment-gateways/manual-payments.php:154 +msgid "Order Confirmation Email" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:207 +#: includes/common/payment-gateways/manual-payments.php:149 +msgid "Confirmation User Instructions" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:202 +#: includes/common/payment-gateways/manual-payments.php:144 +msgid "User Instructions" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:198 +#: includes/common/payment-gateways/free_orders.php:170 +#: includes/common/payment-gateways/manual-payments.php:139 +msgid "Enter a public name for this payment method that is displayed to users - No HTML" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:532 +#: includes/common/payment-gateways/_cubepoints.php:196 +#: includes/common/payment-gateways/free_orders.php:169 +#: includes/common/payment-gateways/manual-payments.php:138 +msgid "Method Name" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:187 +msgid "Accept CubePoints as payment(requires the CubePoints plugin)." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:140 +msgid "Sorry, but you do not appear to have enough points to complete this purchase!" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:124 +msgid "%s Store Purchase" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:79 +#: includes/common/payment-gateways/_cubepoints.php:171 +msgid "Your current points: " +msgstr "Geçerli noktaları:" + +#: includes/common/payment-gateways/_cubepoints.php:133 +#: includes/common/payment-gateways/_cubepoints.php:197 +msgid "CubePoints" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:344 +msgid "Authorize.net AIM Checkout" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:331 +msgid "Custom API URL" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:332 +msgid "Many other gateways have Authorize.net API emulators. To use one of these gateways input their API post url here." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:322 +msgid "Request a delimited response from the payment gateway." +msgstr "Ödeme geçidi tarafından sınırlandırılmış bir yanıt isteniyor." + +#: includes/common/payment-gateways/authorizenet-aim.php:316 +msgid "Security: MD5 Hash" +msgstr "Güvenlik: MD5 Hash" + +#: includes/common/payment-gateways/authorizenet-aim.php:317 +msgid "The payment gateway generated MD5 hash value that can be used to authenticate the transaction response. Not needed because responses are returned using an SSL connection." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:306 +msgid "Customer Receipt Email Footer" +msgstr "Müşteri Makbuz E-posta Altbilgi" + +#: includes/common/payment-gateways/authorizenet-aim.php:296 +msgid "Customer Receipt Email Header" +msgstr "Müşteri Makbuz E-posta Başlık" + +#: includes/common/payment-gateways/authorizenet-aim.php:297 +#: includes/common/payment-gateways/paypal-payflow.php:446 +msgid "This text will appear as the header of the email receipt sent to the customer." +msgstr "Bu metin görünecek başlık olarak müşteri gönderilen e-postayı aldığında." + +#: includes/common/payment-gateways/authorizenet-aim.php:282 +msgid "Encapsulation Character" +msgstr "Kapsülleme Karakter" + +#: includes/common/payment-gateways/authorizenet-aim.php:283 +msgid "Authorize.net default is blank. Otherwise, get this from your credit card processor. If the transactions are going through, but getting strange responses, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:273 +msgid "Optional settings to control advanced options" +msgstr "Gelişmiş seçenekleri kontrol etmek için isteğe bağlı ayarlar" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:224 +#: includes/common/payment-gateways/authorizenet-aim.php:272 +msgid "Advanced Settings" +msgstr "Gelişmiş Ayarlar" + +#: includes/common/payment-gateways/authorizenet-aim.php:253 +msgid "Transaction Key" +msgstr "İşlem Anahtarı" + +#: includes/common/payment-gateways/authorizenet-aim.php:246 +msgid "Login ID" +msgstr "Kimlik Girin" + +#: includes/common/payment-gateways/paypal-payflow.php:396 +msgid "Gateway Credentials" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:221 +msgid "Authorize.net AIM is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway. USD is the only currency supported by this gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:205 +msgid "There was a problem finalizing your purchase. %s Please go back and try again." +msgstr "Satın alma sonuçlandırılması bir sorun vardır. %s Lütfen geri dönün ve tekrar deneyin" + +#: includes/common/payment-gateways/payfast.php:519 +#: includes/common/payment-gateways/paypal-chained-payments.php:218 +#: includes/common/payment-gateways/paypal-chained-payments.php:498 +#: includes/common/payment-gateways/paypal-express.php:822 +#: includes/common/payment-gateways/paypal-express.php:1092 +msgid "The payment has been completed, and the funds have been added successfully to your account balance." +msgstr "Ödeme tamamlanmış, ve para başarıyla hesap bakiyenize eklenmiştir." + +#: includes/common/payment-gateways/paypal-payflow.php:233 +msgid "Please enter a valid credit card security code" +msgstr "Geçerli bir kredi kartı güvenlik kodunu girin" + +#: includes/common/payment-gateways/paypal-payflow.php:224 +#: includes/public/class-mp-checkout.php:867 +msgid "Please enter a valid credit card number" +msgstr "Geçerli bir kredi kartı numarası girin" + +#: includes/common/payment-gateways/paypal-payflow.php:221 +msgid "Please enter your credit card number" +msgstr "Kredi kartı numarası girin" + +#: includes/common/payment-gateways/paypal-payflow.php:217 +msgid "Please enter your credit card security code" +msgstr "Kredi kartı son kullanma tarihi seçin." + +#: includes/common/payment-gateways/paypal-payflow.php:213 +msgid "Please select your credit card expiration date." +msgstr "Kredi kartı son kullanma tarihi seçin." + +#: includes/common/payment-gateways/2checkout.php:299 +#: includes/common/payment-gateways/authorizenet-aim.php:50 +#: includes/common/payment-gateways/eway.php:148 +#: includes/common/payment-gateways/eway.php:298 +#: includes/common/payment-gateways/eway31.php:267 +#: includes/common/payment-gateways/paymill.php:46 +#: includes/common/payment-gateways/paypal-express.php:972 +#: includes/common/payment-gateways/paypal-payflow.php:60 +#: includes/common/payment-gateways/pin.php:46 +#: includes/common/payment-gateways/simplify.php:19 +#: includes/common/payment-gateways/stripe.php:46 +#: includes/common/payment-gateways/wepay.php:37 +msgid "Credit Card" +msgstr "Kredi Kartı" + +#: includes/common/payment-gateways/authorizenet-aim.php:49 +msgid "Authorize.net Checkout" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:156 +#: includes/common/payment-gateways/stripe.php:293 +msgid "Selecting a currency other than that used for your store may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:352 +msgid "Seller ID" +msgstr "Satıcı Kimliği" + +#: includes/common/payment-gateways/2checkout.php:340 +#: includes/common/payment-gateways/_ideal.php:311 +#: includes/common/payment-gateways/authorizenet-aim.php:234 +#: includes/common/payment-gateways/eway.php:376 +#: includes/common/payment-gateways/payfast.php:315 +#: includes/common/payment-gateways/paypal-chained-payments.php:368 +#: includes/common/payment-gateways/paypal-express.php:699 +#: includes/common/payment-gateways/paypal-payflow.php:391 +msgid "Live" +msgstr "Canlı" + +#: includes/common/payment-gateways/2checkout.php:339 +#: includes/common/payment-gateways/authorizenet-aim.php:233 +#: includes/common/payment-gateways/eway.php:375 +#: includes/common/payment-gateways/paypal-chained-payments.php:367 +#: includes/common/payment-gateways/paypal-express.php:698 +#: includes/common/payment-gateways/paypal-payflow.php:390 +#: includes/common/shipping-modules/mp-fedex.php:263 +msgid "Sandbox" +msgstr "Kum Kutusu" + +#: includes/common/payment-gateways/2checkout.php:336 +#: includes/common/payment-gateways/_ideal.php:307 +#: includes/common/payment-gateways/authorizenet-aim.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:365 +#: includes/common/payment-gateways/paypal-express.php:695 +#: includes/common/payment-gateways/paypal-payflow.php:387 +#: includes/common/payment-gateways/wepay.php:130 +#: includes/common/shipping-modules/mp-fedex.php:260 +msgid "Mode" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:288 +#: includes/common/payment-gateways/mijireh.php:242 +#: includes/common/payment-gateways/mollie.php:212 +msgid "The order has been received" +msgstr "Siparişiniz alındı" + +#: includes/common/payment-gateways/2checkout.php:74 +#: includes/common/payment-gateways/2checkout.php:75 +#: includes/common/payment-gateways/2checkout.php:435 +msgid "2Checkout" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:306 +msgid "Confirm" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:218 +#: includes/common/class-mp-cart.php:974 includes/common/class-mp-cart.php:1354 +#: includes/common/template-functions.php:918 +msgid "Checkout" +msgstr "" + +#: includes/common/template-functions.php:207 +msgid "Check Order Status" +msgstr "" + +#: includes/common/template-functions.php:235 +msgid "View Products" +msgstr "" + +#: includes/common/template-functions.php:263 +msgid "Visit Store" +msgstr "Mağazayı Ziyaret Et" + +#: includes/common/template-functions.php:2912 +#: includes/multisite/template-functions.php:448 +msgid "Order By" +msgstr "" + +#: includes/common/template-functions.php:2887 +#: includes/multisite/template-functions.php:405 +msgid "Price (High to Low)" +msgstr "" + +#: includes/common/template-functions.php:2886 +#: includes/multisite/template-functions.php:404 +msgid "Price (Low to High)" +msgstr "" + +#: includes/common/template-functions.php:2881 +#: includes/multisite/template-functions.php:399 +msgid "Default" +msgstr "" + +#: includes/common/template-functions.php:2858 +msgid "Show All" +msgstr "" + +#: includes/common/class-mp-product.php:2048 +msgid "View Larger Image »" +msgstr "" + +#: includes/common/class-mp-product.php:979 +msgid "Out of Stock" +msgstr "" + +#: includes/common/template-functions.php:148 +msgid "Price: " +msgstr "" + +#: includes/multisite/template-functions.php:833 +msgid "No Tags" +msgstr "" + +#: includes/common/template-functions.php:3162 +msgid "Uncategorized" +msgstr "" + +#: includes/common/class-mp-cart.php:569 includes/common/class-mp-order.php:604 +#: includes/common/helpers.php:115 +msgid "Download" +msgstr "" + +#: includes/common/class-mp-cart.php:1353 +msgid "Empty Cart" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:291 +#: includes/common/payment-gateways/paypal-express.php:718 +#: includes/common/payment-gateways/paypal-payflow.php:423 +#: includes/common/shipping-modules/mp-ups.php:158 +#: includes/public/class-mp-checkout.php:1254 +#: includes/public/class-mp-checkout.php:1383 +msgid "Password" +msgstr "" + +#: includes/common/payment-gateways/eway.php:387 +#: includes/common/payment-gateways/paypal-express.php:711 +#: includes/common/shipping-modules/mp-usps.php:185 +#: includes/public/class-mp-checkout.php:1249 +msgid "Username" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:437 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:790 +msgid "Have a coupon code?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:321 +#: includes/admin/class-mp-orders-admin.php:526 +#: includes/common/class-mp-cart.php:592 +msgid "Remove" +msgstr "" + +#: includes/admin/class-mp-ajax.php:316 +msgid "Quantity:" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2140 +#: includes/admin/class-mp-products-admin.php:2387 +#: includes/common/shipping-modules/class-mp-shipping-api.php:507 +msgid "Extra Shipping Cost" +msgstr "Extra Nakliye Bedeli" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:403 +msgid "Choose a Shipping Method:" +msgstr "Bir Nakliye Yöntemi Seçin:" + +#: includes/admin/class-mp-products-admin.php:1691 +#: includes/admin/class-mp-products-admin.php:2131 +#: includes/admin/class-mp-products-admin.php:2378 +#: includes/common/shipping-modules/class-mp-shipping-api.php:228 +msgid "Ounces" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1684 +#: includes/admin/class-mp-products-admin.php:2123 +#: includes/admin/class-mp-products-admin.php:2369 +#: includes/admin/class-mp-setup-wizard.php:546 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:165 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +#: includes/common/shipping-modules/class-mp-shipping-api.php:227 +msgid "Pounds" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:226 +msgid "Product Weight:" +msgstr "Ürün Ağırlığı" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:214 +msgid "Weight (Kilograms)" +msgstr "Ağırlık (Kilogram)" + +#: includes/admin/widgets/ms-global-categories.php:82 +msgid "Number of Categories:" +msgstr "Kategori Numarası:" + +#: includes/admin/widgets/ms-global-categories.php:72 +msgid "Product Count" +msgstr "Ürün Adeti" + +#: includes/addons/class-mp-addons-list-table.php:20 +#: includes/admin/class-mp-product-attributes-admin.php:129 +#: includes/admin/class-mp-product-attributes-list-table.php:22 +#: includes/admin/class-mp-products-admin.php:2216 +#: includes/admin/class-mp-shortcode-builder.php:628 +#: includes/admin/class-mp-shortcode-builder.php:1415 +#: includes/admin/widgets/ms-global-categories.php:70 +#: includes/common/shipping-modules/mp-fedex.php:395 +#: includes/common/shipping-modules/mp-ups.php:202 +#: includes/common/shipping-modules/mp-usps.php:243 +#: includes/public/class-mp-checkout.php:314 +msgid "Name" +msgstr "İsim" + +#: includes/admin/widgets/ms-global-categories.php:67 +msgid "Order Categories By:" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:24 +#: includes/admin/widgets/ms-global-categories.php:50 +msgid "Global Product Categories" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:15 +msgid "Global Product Category List" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:13 +msgid "Displays a network-wide HTML list of product categories from network MarketPress stores." +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:24 +#: includes/admin/widgets/ms-global-tag-cloud.php:45 +msgid "Global Product Tags" +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:15 +msgid "Global Product Tag Cloud" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:947 +#: includes/admin/widgets/ms-global-product-list.php:173 +msgid "Excerpt" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:169 +msgid "Content To Show:" +msgstr "Gösterilen İçerik:" + +#: includes/admin/widgets/ms-global-product-list.php:140 +msgid "Limit To Product Tag:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:132 +msgid "Limit To Product Category:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:72 +msgid "Global Products" +msgstr "Global Ürünler" + +#: includes/admin/widgets/ms-global-product-list.php:16 +msgid "Global Product List" +msgstr "Global Ürünler Listesi" + +#: includes/admin/widgets/ms-global-product-list.php:14 +msgid "Shows a customizable global list of products from network MarketPress stores." +msgstr "" + +#: includes/common/class-mp-product.php:974 +#: includes/multisite/template-functions.php:731 +msgid "Buy Now »" +msgstr "Şimdi Satıl Al »" + +#: includes/admin/widgets/ms-global-tag-cloud.php:13 +msgid "Displays global most used product tags in cloud format from network MarketPress stores." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:438 +msgid "Theme Permissions" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:402 +#: includes/multisite/class-mp-admin-multisite.php:448 +msgid "No Access" +msgstr "Erişim Yok" + +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:120 +msgid "Pro Site Level" +msgstr "VarioPlus+ Seviyesi" + +#: includes/multisite/class-mp-admin-multisite.php:401 +#: includes/multisite/class-mp-admin-multisite.php:447 +msgid "All Can Use" +msgstr "Tümünü Yapabilirsin" + +#: includes/multisite/class-mp-admin-multisite.php:390 +msgid "Gateway Permissions" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:375 +msgid "Select a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:350 +msgid "Global Gateway" +msgstr "" + +#. Plugin Name of the plugin/theme +msgid "MarketPress" +msgstr "MarketPress" + +#: includes/admin/widgets/product-tag-cloud.php:7 +msgid "Your most used product tags in cloud format from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/categories.php:79 +msgid "Show hierarchy" +msgstr "" + +#: includes/admin/widgets/categories.php:76 +#: includes/admin/widgets/ms-global-categories.php:92 +msgid "Show product counts" +msgstr "Ürün adetini göster" + +#: includes/admin/widgets/categories.php:73 +msgid "Show as dropdown" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:710 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:736 +#: includes/admin/widgets/categories.php:30 +msgid "Select Category" +msgstr "" + +#: includes/admin/widgets/categories.php:7 +msgid "A list or dropdown of product categories from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/product-list.php:250 +msgid "Show Buy Button" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:183 +#: includes/admin/widgets/product-list.php:244 +msgid "Show Price" +msgstr "Fiyatı Göster" + +#: includes/admin/widgets/product-list.php:241 +msgid "Show Excerpt" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:155 +#: includes/admin/widgets/product-list.php:238 +msgid "Thumbnail Size:" +msgstr "Küçük Resim Boyutu:" + +#: includes/admin/widgets/ms-global-product-list.php:153 +#: includes/admin/widgets/product-list.php:237 +msgid "Show Thumbnail" +msgstr "Küçük Resim Göster" + +#: includes/admin/widgets/ms-global-product-list.php:147 +#: includes/admin/widgets/product-list.php:233 +msgid "Display Settings" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:136 +#: includes/admin/widgets/ms-global-product-list.php:144 +#: includes/admin/widgets/product-list.php:230 +msgid "Enter the Slug" +msgstr "" + +#: includes/admin/widgets/product-list.php:228 +#: includes/common/template-functions.php:894 +msgid "Tag" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:686 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:712 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:739 +#: includes/admin/class-mp-shortcode-builder.php:796 +#: includes/admin/widgets/product-list.php:227 +#: includes/common/template-functions.php:886 +#: includes/common/template-functions.php:2907 +msgid "Category" +msgstr "" + +#: includes/admin/widgets/product-list.php:226 +msgid "No Filter" +msgstr "" + +#: includes/admin/widgets/product-list.php:224 +msgid "Taxonomy Filter:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:108 +#: includes/admin/widgets/product-list.php:209 +msgid "Order Products By:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:101 +#: includes/admin/widgets/product-list.php:206 +msgid "Number of Products:" +msgstr "Ürün Numarası:" + +#: includes/admin/widgets/ms-global-product-list.php:98 +#: includes/admin/widgets/product-list.php:204 +msgid "List Settings" +msgstr "Liste Ayarları" + +#: includes/admin/widgets/product-list.php:177 +msgid "Our Products" +msgstr "" + +#: includes/admin/widgets/product-list.php:144 +#: includes/common/template-functions.php:2070 +#: includes/common/template-functions.php:2347 +#: includes/multisite/template-functions.php:303 +#: includes/multisite/template-functions.php:623 +msgid "No Products" +msgstr "Ürün Yok" + +#: includes/admin/widgets/product-list.php:8 +msgid "Product List" +msgstr "" + +#: includes/admin/widgets/product-list.php:7 +msgid "Shows a customizable list of products from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/cart.php:75 includes/admin/widgets/categories.php:82 +#: includes/admin/widgets/product-list.php:253 +#: includes/admin/widgets/product-tag-cloud.php:57 +msgid "Only show on store pages" +msgstr "" + +#: includes/admin/widgets/cart.php:65 +#: includes/admin/widgets/ms-global-product-list.php:92 +#: includes/admin/widgets/product-list.php:200 +msgid "Custom Text:" +msgstr "Metin:" + +#: includes/admin/widgets/cart.php:64 includes/admin/widgets/categories.php:69 +#: includes/admin/widgets/ms-global-categories.php:59 +#: includes/admin/widgets/ms-global-product-list.php:87 +#: includes/admin/widgets/ms-global-tag-cloud.php:49 +#: includes/admin/widgets/product-list.php:199 +#: includes/admin/widgets/product-tag-cloud.php:49 +msgid "Title:" +msgstr "Başlık:" + +#: includes/admin/widgets/cart.php:7 +msgid "Shows dynamic shopping cart contents along with a checkout button for your MarketPress store." +msgstr "" + +#: includes/admin/widgets/product-tag-cloud.php:8 +msgid "Product Tag Cloud" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:539 +#: includes/admin/class-mp-setup-wizard.php:575 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:163 +msgid "Measurement System" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:616 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:149 +msgid "Select Shipping Options" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:596 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:129 +msgid "Calculated Options" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:582 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:115 +msgid "No Shipping" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:110 +msgid "EU" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:109 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:93 +msgid "All" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:92 +msgid "Select:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:185 +msgid "Store Pages" +msgstr "Mağaza Sayfaları" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:223 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:256 +msgid "Order Shipped" +msgstr "Sipariş Kargolandı" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:60 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:95 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:128 +#: marketpress.php:266 +msgid "New Order" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:314 +msgid "Email Notifications" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:59 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:200 +msgid "Products List" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:58 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:190 +msgid "Store Base" +msgstr "Mağaza Tabanı" + +#: includes/admin/class-mp-product-attributes-admin.php:108 +#: includes/admin/class-mp-shortcode-builder.php:635 +#: includes/admin/class-mp-shortcode-builder.php:708 +#: includes/admin/class-mp-shortcode-builder.php:875 +#: includes/admin/class-mp-shortcode-builder.php:1319 +#: includes/admin/class-mp-shortcode-builder.php:1422 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:526 +#: includes/admin/widgets/ms-global-categories.php:78 +#: includes/admin/widgets/ms-global-product-list.php:127 +#: includes/admin/widgets/product-list.php:221 +msgid "Ascending" +msgstr "Yükselen" + +#: includes/admin/class-mp-product-attributes-admin.php:109 +#: includes/admin/class-mp-shortcode-builder.php:636 +#: includes/admin/class-mp-shortcode-builder.php:709 +#: includes/admin/class-mp-shortcode-builder.php:876 +#: includes/admin/class-mp-shortcode-builder.php:1320 +#: includes/admin/class-mp-shortcode-builder.php:1423 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:525 +#: includes/admin/widgets/ms-global-categories.php:75 +#: includes/admin/widgets/ms-global-product-list.php:124 +#: includes/admin/widgets/product-list.php:220 +msgid "Descending" +msgstr "İnen" + +#: includes/admin/class-mp-shortcode-builder.php:637 +#: includes/admin/class-mp-shortcode-builder.php:695 +#: includes/admin/class-mp-shortcode-builder.php:862 +#: includes/admin/class-mp-shortcode-builder.php:1306 +#: includes/admin/class-mp-shortcode-builder.php:1424 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:518 +#: includes/admin/widgets/ms-global-product-list.php:121 +#: includes/admin/widgets/product-list.php:218 +msgid "Random" +msgstr "Rastgele" + +#: includes/admin/class-mp-shortcode-builder.php:694 +#: includes/admin/class-mp-shortcode-builder.php:861 +#: includes/admin/class-mp-shortcode-builder.php:1305 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:517 +#: includes/admin/widgets/ms-global-product-list.php:119 +#: includes/admin/widgets/product-list.php:216 +msgid "Product Price" +msgstr "Ürün Fiyatı" + +#: includes/admin/class-mp-shortcode-builder.php:693 +#: includes/admin/class-mp-shortcode-builder.php:860 +#: includes/admin/class-mp-shortcode-builder.php:1304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:516 +#: includes/admin/widgets/ms-global-product-list.php:117 +#: includes/admin/widgets/product-list.php:215 +msgid "Number of Sales" +msgstr "Satış Numarası" + +#: includes/admin/class-mp-shortcode-builder.php:692 +#: includes/admin/class-mp-shortcode-builder.php:859 +#: includes/admin/class-mp-shortcode-builder.php:1303 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:515 +#: includes/admin/widgets/product-list.php:214 +msgid "Product Author" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:691 +#: includes/admin/class-mp-shortcode-builder.php:858 +#: includes/admin/class-mp-shortcode-builder.php:1302 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:514 +#: includes/admin/widgets/product-list.php:213 +msgid "Product ID" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:690 +#: includes/admin/class-mp-shortcode-builder.php:857 +#: includes/admin/class-mp-shortcode-builder.php:1301 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:513 +#: includes/admin/widgets/ms-global-product-list.php:113 +#: includes/admin/widgets/product-list.php:212 +msgid "Publish Date" +msgstr "Yayın Tarihi" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:430 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:726 +msgid "Width" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:439 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:735 +msgid "Height" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:88 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:402 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:698 +msgid "Custom" +msgstr "" + +#: includes/common/class-mp-product.php:179 +#: includes/common/class-mp-product.php:992 +#: includes/common/class-mp-product.php:1000 +#: includes/multisite/template-functions.php:579 +msgid "Buy Now" +msgstr "" + +#: includes/common/class-mp-product.php:175 +#: includes/common/class-mp-product.php:990 +#: includes/common/class-mp-product.php:998 +msgid "Add To Cart" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:807 +msgid "Store Style" +msgstr "Mağaza Stili" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1021 +msgid "Edit Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupon.php:580 +#: includes/admin/class-mp-ajax.php:238 +#: includes/admin/class-mp-products-admin.php:1532 +msgid "Unlimited" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1198 +msgid "Remaining Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1197 +msgid "Used" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:752 +#: includes/admin/class-mp-products-admin.php:2343 +msgid "Start Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:598 +msgid "Coupon Code" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:444 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:284 +msgid "Save Changes" +msgstr "Değişiklikler Kaydedildi" + +#: includes/admin/class-mp-pages-admin.php:57 +#: includes/admin/class-mp-shortcode-builder.php:716 +#: includes/admin/class-mp-shortcode-builder.php:727 +#: includes/admin/class-mp-shortcode-builder.php:883 +#: includes/admin/class-mp-shortcode-builder.php:894 +#: includes/admin/class-mp-shortcode-builder.php:946 +#: includes/admin/class-mp-shortcode-builder.php:956 +#: includes/admin/class-mp-shortcode-builder.php:1006 +#: includes/admin/class-mp-shortcode-builder.php:1327 +#: includes/admin/class-mp-shortcode-builder.php:1338 +#: includes/admin/store-settings/class-mp-store-settings-general.php:357 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:270 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:108 +#: includes/admin/widgets/ms-global-product-list.php:172 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:94 +msgid "None" +msgstr "Hiçbiri" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:352 +msgid "Google Analytics Ecommerce Tracking" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:310 +msgid "This option turns MarketPress into more of a product listing plugin, disabling shopping carts, checkout, and order management. This is useful if you simply want to list items you can buy in a store somewhere else, optionally linking the \"Buy Now\" buttons to an external site. Some examples are a car dealership, or linking to songs/albums in itunes, or linking to products on another site with your own affiliate links." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:304 +msgid "Whether or not customers must be registered and logged in to checkout. (Not recommended: Enabling this can lower conversions)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:258 +msgid "How many times may a customer download a file they have purchased? (It's best to set this higher than one in case they have any problems downloading)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:257 +msgid "Maximum Downloads" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:298 +msgid "This will set the product to draft if inventory of all variations is gone." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:288 +msgid "At what low stock count do you want to be warned for products you have enabled inventory tracking for?" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:208 +#: includes/admin/store-settings/class-mp-store-settings-general.php:287 +msgid "Inventory Warning Threshold" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:282 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:542 +msgid "Miscellaneous Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:429 +#: includes/multisite/class-mp-admin-multisite.php:247 +msgid "Show Decimal in Prices" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:451 +#: includes/admin/store-settings/class-mp-store-settings-general.php:403 +#: includes/multisite/class-mp-admin-multisite.php:221 +msgid "Currency Symbol Position" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:444 +#: includes/admin/store-settings/class-mp-store-settings-general.php:396 +msgid "Store Currency" +msgstr "Mağaza Mevcudu" + +#: includes/admin/class-mp-setup-wizard.php:429 +#: includes/admin/store-settings/class-mp-store-settings-general.php:381 +msgid "Currency Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:516 +msgid "Please see your local tax laws. Note if this is enabled and a downloadable only cart, rates will be the default for your base location." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:529 +msgid "Apply Tax to Downloadable Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:498 +msgid "Enabling this option allows you to enter and show all prices inclusive of tax, while still listing the tax total as a line item in shopping carts. Please see your local tax laws." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:497 +msgid "Enter Prices Inclusive of Tax?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:492 +msgid "Please see your local tax laws. Most areas charge tax on shipping fees." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:491 +msgid "Apply Tax To Shipping Fees?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:674 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:565 +#: includes/common/payment-gateways/authorizenet-aim.php:291 +#: includes/common/payment-gateways/authorizenet-aim.php:326 +#: includes/common/payment-gateways/payfast.php:347 +msgid "No" +msgstr "Hayır" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:675 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:759 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:512 +#: includes/admin/class-mp-setup-wizard.php:518 +#: includes/admin/class-mp-setup-wizard.php:524 +#: includes/admin/class-mp-setup-wizard.php:530 +#: includes/admin/class-mp-setup-wizard.php:564 +#: includes/admin/store-settings/class-mp-store-settings-general.php:232 +#: includes/admin/store-settings/class-mp-store-settings-general.php:299 +#: includes/admin/store-settings/class-mp-store-settings-general.php:305 +#: includes/admin/store-settings/class-mp-store-settings-general.php:311 +#: includes/admin/store-settings/class-mp-store-settings-general.php:317 +#: includes/admin/store-settings/class-mp-store-settings-general.php:328 +#: includes/admin/store-settings/class-mp-store-settings-general.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:341 +#: includes/admin/store-settings/class-mp-store-settings-general.php:348 +#: includes/admin/store-settings/class-mp-store-settings-general.php:367 +#: includes/admin/store-settings/class-mp-store-settings-general.php:493 +#: includes/admin/store-settings/class-mp-store-settings-general.php:499 +#: includes/admin/store-settings/class-mp-store-settings-general.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:556 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:375 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:381 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:387 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:474 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:493 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:532 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:574 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:606 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:664 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:670 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:677 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:683 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:689 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:763 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:774 +#: includes/common/payment-gateways/_bitpay.php:250 +#: includes/common/payment-gateways/_bitpay.php:257 +#: includes/common/payment-gateways/_bitpay.php:264 +#: includes/common/payment-gateways/authorizenet-aim.php:290 +#: includes/common/payment-gateways/authorizenet-aim.php:325 +#: includes/common/payment-gateways/free_orders.php:160 +#: includes/common/payment-gateways/payfast.php:346 +#: includes/common/payment-gateways/paymill.php:162 +#: includes/common/payment-gateways/paypal-payflow.php:441 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-checkbox.php:22 +msgid "Yes" +msgstr "Evet" + +#: includes/admin/class-mp-setup-wizard.php:492 +#: includes/admin/store-settings/class-mp-store-settings-general.php:472 +msgid "%s Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:467 +#: includes/admin/store-settings/class-mp-store-settings-general.php:449 +msgid "Tax Settings" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:370 +#: includes/admin/store-settings/class-mp-store-settings-general.php:624 +msgid "Base Zip/Postal Code" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:354 +#: includes/admin/store-settings/class-mp-store-settings-general.php:608 +msgid "Base State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:589 +msgid "Base Country" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:582 +msgid "Location Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:195 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:800 +#: includes/multisite/class-mp-admin-multisite.php:172 +msgid "General Settings" +msgstr "Genel Ayarlar" + +#: includes/admin/class-mp-products-admin.php:1945 +#: includes/admin/class-mp-products-admin.php:2185 +#: includes/admin/class-mp-store-settings-admin.php:111 +#: includes/admin/class-mp-store-settings-admin.php:266 +msgid "General" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:242 +msgid "Importers" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +#: includes/admin/class-mp-store-settings-admin.php:234 +msgid "Payments" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:313 +#: includes/admin/class-mp-store-settings-admin.php:112 +#: includes/admin/class-mp-store-settings-admin.php:222 +msgid "Presentation" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:916 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1015 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1018 +#: includes/admin/class-mp-dashboard-widgets.php:305 marketpress.php:702 +msgid "Coupons" +msgstr "" + +#: includes/admin/class-mp-admin.php:251 +msgid "Download »" +msgstr "" + +#: includes/admin/class-mp-admin.php:245 +#: includes/admin/class-mp-exporter-orders.php:170 +msgid "All Statuses" +msgstr "" + +#: includes/admin/class-mp-admin.php:209 +#: includes/admin/class-mp-exporter-orders.php:150 +#: includes/admin/class-mp-exporter-orders.php:178 +msgid "Export Orders" +msgstr "" + +#: includes/admin/class-mp-admin.php:228 +msgid "Show all dates" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:947 +msgid "Change Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:287 +msgid "Order Notes" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:478 +msgid "Other" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:205 +msgid "Subtotal" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:84 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:87 +#: includes/admin/class-mp-products-admin.php:1737 +#: includes/common/class-mp-cart.php:1409 +#: includes/common/class-mp-product.php:559 +msgid "Quantity" +msgstr "" + +#: includes/common/helpers.php:93 +msgid "Item" +msgstr "" + +#: includes/common/class-mp-order.php:1050 +msgid "Current Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:297 +msgid "Order Actions" +msgstr "" + +#: includes/common/class-mp-product.php:1084 +msgid "More Info »" +msgstr "" + +#: includes/common/class-mp-product.php:2313 +msgid "Low Product Inventory Notification" +msgstr "" + +#: includes/common/class-mp-order.php:338 includes/common/data.php:154 +msgid "New Order Notification: ORDERID" +msgstr "" + +#: includes/common/helpers.php:259 +msgid "Your payment for this order is complete." +msgstr "" + +#: includes/common/helpers.php:261 +msgid "Your payment for this order is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/helpers.php:256 +msgid "Payment Total:" +msgstr "" + +#: includes/common/helpers.php:253 +msgid "Transaction ID:" +msgstr "" + +#: includes/common/helpers.php:249 +msgid "Payment Type:" +msgstr "" + +#: includes/common/helpers.php:246 +msgid "Payment Method:" +msgstr "" + +#: includes/common/helpers.php:242 +msgid "Order Notes:" +msgstr "" + +#: includes/common/helpers.php:237 +msgid "Special Instructions:" +msgstr "" + +#: includes/common/helpers.php:232 +msgid "Tracking Number:" +msgstr "" + +#: includes/common/helpers.php:223 includes/common/helpers.php:226 +#: includes/common/helpers.php:228 +#: includes/common/shipping-modules/class-mp-shipping-api.php:406 +#: includes/common/shipping-modules/class-mp-shipping-api.php:428 +msgid "Shipping Method:" +msgstr "Nakliye Yöntemi:" + +#: includes/common/helpers.php:168 +msgid "No shipping required for this order." +msgstr "" + +#: includes/common/helpers.php:155 +msgid "Order Total:" +msgstr "" + +#: includes/common/class-mp-order.php:1025 +msgid "Taxes:" +msgstr "" + +#: includes/common/class-mp-order.php:1032 includes/common/helpers.php:144 +msgid "Shipping:" +msgstr "" + +#: includes/public/class-mp-checkout.php:367 +msgid "Street address, P.O. box, company name, c/o" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:314 +msgid "Shipping Info" +msgstr "" + +#: includes/public/class-mp-public.php:740 +msgid "Whoops, there was a problem loading up this file for your download. Please contact us for help." +msgstr "" + +#: includes/public/class-mp-public.php:683 +msgid "Sorry, our records show you've downloaded this file %d out of %d times allowed. Please contact us if you still need help." +msgstr "" + +#: includes/public/class-mp-public.php:634 +msgid "Sorry, your order has been marked as unpaid." +msgstr "" + +#: includes/public/class-mp-public.php:629 +msgid "Sorry, the link is invalid for this download." +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:15 +#: includes/admin/class-mp-products-admin.php:1172 +msgid "Cheatin’ uh?" +msgstr "" + +#: includes/public/class-mp-public.php:407 +#: includes/public/class-mp-short-codes.php:128 +msgid "Please enter a valid email address." +msgstr "" + +#: includes/admin/class-mp-ajax.php:191 +#: includes/admin/class-mp-products-admin.php:1821 +#: includes/admin/class-mp-products-admin.php:2010 +#: includes/admin/class-mp-products-admin.php:2267 +msgid "File URL" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1842 +msgid "External Link" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2177 +msgid "Add Variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:126 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:289 +msgid "Inventory" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:438 +#: includes/admin/class-mp-products-admin.php:578 +#: includes/admin/class-mp-products-admin.php:1552 +#: includes/admin/class-mp-products-admin.php:2053 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:134 +msgid "Sale Price" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "Variation Name" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1931 +msgid "Product Details" +msgstr "" + +#: includes/admin/class-mp-product-attributes-list-table.php:33 +msgid "Delete" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1057 +msgid "Trashed" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:231 +#: includes/admin/class-mp-orders-admin.php:1015 +#: includes/common/class-mp-order.php:1052 includes/common/helpers.php:97 +msgid "Total" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1196 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:210 +#: includes/admin/class-mp-orders-admin.php:1014 +msgid "Discount" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:221 +#: includes/admin/class-mp-orders-admin.php:1013 +#: includes/common/payment-gateways/_ideal.php:148 +#: includes/common/payment-gateways/_payway.php:134 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:108 +msgid "Tax" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:216 +#: includes/admin/class-mp-orders-admin.php:1012 +#: includes/admin/class-mp-products-admin.php:1958 +#: includes/admin/class-mp-products-admin.php:2198 +#: includes/admin/class-mp-store-settings-admin.php:114 +#: includes/admin/class-mp-store-settings-admin.php:230 +#: includes/common/class-mp-cart.php:717 includes/common/helpers.php:168 +#: includes/common/payment-gateways/_ideal.php:137 +#: includes/common/payment-gateways/_payway.php:116 +#: includes/public/class-mp-checkout.php:1304 +msgid "Shipping" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1011 +msgid "Items" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1010 +msgid "From" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:154 +#: includes/admin/class-mp-orders-admin.php:1009 +#: includes/common/class-mp-gdpr.php:370 +msgid "Order Date" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1008 +#: includes/common/class-mp-gdpr.php:366 +#: includes/common/template-functions.php:2134 +msgid "Order ID" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:22 +#: includes/admin/class-mp-orders-admin.php:1007 +msgid "Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1155 +msgid "N/A" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:243 +#: includes/admin/class-mp-products-admin.php:464 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:142 +msgid "Sales" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:463 +msgid "Stock" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:85 +#: includes/admin/class-mp-ajax.php:176 includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:434 +#: includes/admin/class-mp-products-admin.php:462 +#: includes/admin/class-mp-products-admin.php:576 +#: includes/admin/class-mp-products-admin.php:1519 +#: includes/admin/class-mp-products-admin.php:1569 +#: includes/admin/class-mp-products-admin.php:1950 +#: includes/admin/class-mp-products-admin.php:2059 +#: includes/admin/class-mp-products-admin.php:2190 +#: includes/admin/class-mp-products-admin.php:2330 +#: includes/common/class-mp-cart.php:1415 includes/common/helpers.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:130 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:276 +msgid "Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:173 +#: includes/admin/class-mp-products-admin.php:461 +#: includes/admin/class-mp-products-admin.php:1972 +#: includes/admin/class-mp-products-admin.php:2224 +msgid "SKU" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:459 +#: includes/admin/class-mp-products-admin.php:1793 +#: includes/admin/class-mp-products-admin.php:1805 +#: includes/admin/class-mp-products-admin.php:2163 +msgid "Variations" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:83 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:86 +#: includes/admin/class-mp-dashboard-widgets.php:134 +#: includes/admin/class-mp-products-admin.php:458 +#: includes/admin/class-mp-products-admin.php:837 +#: includes/admin/class-mp-shortcode-builder.php:689 +#: includes/admin/class-mp-shortcode-builder.php:856 +#: includes/admin/class-mp-shortcode-builder.php:1300 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:512 +#: includes/admin/widgets/ms-global-product-list.php:115 +#: includes/admin/widgets/product-list.php:211 +msgid "Product Name" +msgstr "Ürün İsmi" + +#: includes/common/template-functions.php:2575 +msgid "Categorized in " +msgstr "Ürün Kategorisi:" + +#: includes/admin/class-mp-orders-admin.php:305 +#: includes/common/payment-gateways/free_orders.php:176 +msgid "Payment Information" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:167 +#: includes/admin/class-mp-orders-admin.php:432 +#: includes/admin/class-mp-pages-admin.php:62 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:227 +#: includes/common/class-mp-gdpr.php:374 +#: includes/common/template-functions.php:175 +#: includes/common/template-functions.php:926 +msgid "Order Status" +msgstr "Sipariş Durumu" + +#. translators: %s: orders closed +#: marketpress.php:327 +msgid "Closed (%s)" +msgid_plural "Closed (%s)" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:249 +#: includes/admin/class-mp-orders-admin.php:375 +#: includes/admin/class-mp-orders-admin.php:951 +#: includes/admin/class-mp-orders-admin.php:1053 +#: includes/admin/class-mp-orders-admin.php:1065 +#: includes/common/class-mp-gdpr.php:330 +#: includes/common/class-mp-order.php:1019 marketpress.php:325 +msgid "Closed" +msgstr "" + +#. translators: %s: shipped orders +#: marketpress.php:320 +msgid "Shipped (%s)" +msgid_plural "Shipped (%s)" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:248 +#: includes/admin/class-mp-orders-admin.php:376 +#: includes/admin/class-mp-orders-admin.php:950 +#: includes/admin/class-mp-orders-admin.php:1049 +#: includes/admin/class-mp-orders-admin.php:1064 +#: includes/common/class-mp-gdpr.php:329 +#: includes/common/class-mp-order.php:1002 marketpress.php:318 +msgid "Shipped" +msgstr "" + +#. translators: %s: paid orders +#: marketpress.php:313 +msgid "Paid (%s)" +msgid_plural "Paid (%s)" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:247 +#: includes/admin/class-mp-orders-admin.php:377 +#: includes/admin/class-mp-orders-admin.php:949 +#: includes/admin/class-mp-orders-admin.php:1045 +#: includes/admin/class-mp-orders-admin.php:1063 +#: includes/common/class-mp-gdpr.php:328 +#: includes/common/payment-gateways/2checkout.php:294 +#: includes/common/payment-gateways/_cubepoints.php:130 +#: includes/common/payment-gateways/authorizenet-aim.php:193 +#: includes/common/payment-gateways/free_orders.php:91 +#: includes/common/payment-gateways/mijireh.php:248 +#: includes/common/payment-gateways/paymill.php:273 +#: includes/common/payment-gateways/paypal-express.php:933 +#: includes/common/payment-gateways/paypal-express.php:967 +#: includes/common/payment-gateways/pin.php:258 +#: includes/common/payment-gateways/simplify.php:181 +#: includes/common/payment-gateways/stripe.php:368 +#: includes/common/payment-gateways/wepay.php:269 marketpress.php:311 +msgid "Paid" +msgstr "Ödendi" + +#. translators: %s: orders received +#: marketpress.php:306 +msgid "Received (%s)" +msgid_plural "Received (%s)" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:246 +#: includes/admin/class-mp-orders-admin.php:378 +#: includes/admin/class-mp-orders-admin.php:1041 +#: includes/admin/class-mp-orders-admin.php:1062 +#: includes/common/class-mp-gdpr.php:327 includes/common/class-mp-order.php:995 +#: includes/common/payment-gateways/payfast.php:244 marketpress.php:304 +msgid "Received" +msgstr "" + +#: marketpress.php:268 +msgid "Search Orders" +msgstr "" + +#: marketpress.php:267 +msgid "View Order" +msgstr "" + +#: marketpress.php:262 +msgid "Order" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:301 +#: includes/admin/class-mp-orders-admin.php:989 marketpress.php:261 +msgid "Orders" +msgstr "Siparişler" + +#: marketpress.php:228 +msgid "No Products found in Trash" +msgstr "" + +#: marketpress.php:227 +msgid "No Products Found" +msgstr "" + +#: marketpress.php:226 +msgid "Search Products" +msgstr "" + +#: marketpress.php:225 marketpress.php:229 +msgid "View Product" +msgstr "" + +#: marketpress.php:224 +msgid "New Product" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1022 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:258 +#: marketpress.php:223 +msgid "Edit" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1019 +msgid "Create New" +msgstr "Yeni Oluştur" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:687 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:698 +#: marketpress.php:217 +msgid "Product" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:307 +#: includes/common/template-functions.php:173 +#: includes/common/template-functions.php:179 +#: includes/common/template-functions.php:902 +#: includes/multisite/template-functions.php:82 marketpress.php:216 +#: marketpress.php:219 +msgid "Products" +msgstr "Ürünler" + +#: includes/admin/class-mp-store-settings-admin.php:118 +#: includes/admin/widgets/product-tag-cloud.php:46 +#: includes/multisite/class-mp-admin-multisite.php:548 +msgid "Product Tags" +msgstr "Ürün Etiketleri" + +#: includes/common/template-functions.php:2906 +#: includes/multisite/template-functions.php:449 +msgid "Product Category" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:117 +#: includes/admin/widgets/categories.php:8 +#: includes/admin/widgets/categories.php:18 +#: includes/multisite/class-mp-admin-multisite.php:539 +msgid "Product Categories" +msgstr "Ürün Kategorileri" + +#: includes/common/payment-gateways/stripe.php:332 +#: includes/common/template-functions.php:872 marketpress.php:218 +msgid "Store" +msgstr "Mağaza" + +#: includes/admin/class-mp-pages-admin.php:60 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:209 +#: includes/admin/widgets/cart.php:8 includes/admin/widgets/cart.php:56 +#: includes/common/template-functions.php:174 +#: includes/common/template-functions.php:811 +msgid "Shopping Cart" +msgstr "Sepet" + +#: includes/admin/class-mp-store-settings-admin.php:110 +#: includes/admin/class-mp-store-settings-admin.php:218 +msgid "Store Settings" +msgstr "Mağaza Ayarları" + +#: includes/addons/class-mp-addons-list-table.php:128 marketpress.php:607 +msgid "Settings" +msgstr "" + +#: includes/common/data.php:178 includes/common/data.php:190 +msgid "Your Order Has Been Shipped! (ORDERID)" +msgstr "" + +#: includes/common/data.php:159 includes/common/data.php:166 +#: includes/common/data.php:172 +msgid "Your Order Confirmation (ORDERID)" +msgstr "" + +#: includes/common/data.php:148 +msgid "

    Thank you for your order! We appreciate your business, and please come back often to check out our new products.

    " +msgstr "" + +#: includes/common/data.php:147 +msgid "

    You are almost done! Please do a final review of your order to make sure everything is correct then click the \"Confirm Payment\" button.

    " +msgstr "" + +#: includes/common/data.php:145 +msgid "

    Please enter your shipping information in the form below to proceed with your order.

    " +msgstr "

    Siparişe devam etmek için aşağıdaki forma gönderi bilgilerini girin.

    " + +#: includes/common/data.php:143 +msgid "

    If you have any questions about your order please do not hesitate to contact us.

    " +msgstr "" + +#: includes/common/data.php:106 +msgid "tag" +msgstr "" + +#: includes/common/data.php:105 +msgid "category" +msgstr "" + +#: includes/common/data.php:104 +msgid "order-status" +msgstr "" + +#: includes/common/data.php:103 +msgid "shopping-cart" +msgstr "" + +#: includes/common/data.php:102 +msgid "products" +msgstr "" + +#. Translators: change default slugs here +#: includes/common/data.php:101 +msgid "store" +msgstr "mağaza" \ No newline at end of file diff --git a/languages/mp-ur.mo b/languages/mp-ur.mo new file mode 100644 index 0000000000000000000000000000000000000000..bdaf9751314468cdfb42a4db8027499883a79f65 GIT binary patch literal 1939 zcmb7?&u<$=6vqcBAPfc6@}nR?k00)(+SpDTC3O@bNYct`4DJso;!aQ{dy^8Sn^r zF<~8i2J#J1`}+b+f!m%dX&;yTxH^5`yci=1F&!FzZ zJy6$w7{PV@uY)?@lb``Ef!gj<@F=(r64(VZU=N%CQ;)_x3F#UI`@Xp7KOR&aH<84wCgyOlUtwa+@reZmIF(&#cOrflLOHw z=~BgZ_(1P-DG_F_TV*8kuv0zG`r^#$?+Q?2Dxhcv{=TDr-PfZ`o;!70^ z#YN+N?rGaR+G3Wh%ch4(&AoTwlrb~3^GxAaxMwU1 z%PnJyd74?aWvb+$r;c$7d*kOx)FaWKo1CTiI49`UIm*qZJ}^#m!O?%$%M%7IOCI~ zsTNXRV>*>Yi=9t%fr`qR5RSggw!6Y)AM8FsX`ldMqNjp;Z1FXQycy1K<;R3J>3o( zFt!!{ZT`p#sceK;AJrwaZaYdj?sPQz9>Vk+*d*kEP1=p-p!P6~eXPSTv8vExFJP=k w1OcO0Ej^(of^|>@MmDVf|C#q%+6%m6;Z&P^ruMJ~O`Tb^=)3xKTW>o13#zaw4gdfE literal 0 HcmV?d00001 diff --git a/languages/mp-ur.po b/languages/mp-ur.po new file mode 100644 index 00000000..02e019a8 --- /dev/null +++ b/languages/mp-ur.po @@ -0,0 +1,8954 @@ +# Translation of MarketPress in Urdu +# This file is distributed under the same license as the MarketPress package. +msgid "" +msgstr "" +"PO-Revision-Date: 2017-07-15 07:44:57+0000\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-Generator: GlotPress/2.3.1\n" +"Language: ur_PK\n" +"Project-Id-Version: MarketPress\n" + +#: includes/public/class-mp-checkout.php:1285 +msgid "By clicking this checkbox you allow the website to process your personal data." +msgstr "" + +#: includes/common/class-mp-gdpr.php:382 +msgid "Order Info" +msgstr "" + +#: includes/common/class-mp-gdpr.php:268 +msgid "Shipping Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:267 +msgid "Shipping Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:266 +msgid "Shipping ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:265 +msgid "Shipping State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:264 +msgid "Shipping City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:263 +msgid "Shipping Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:262 +msgid "Shipping Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:261 +msgid "Shipping Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:260 +msgid "Shipping Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:259 +msgid "Shipping Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:258 +msgid "Shipping First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:254 +msgid "Billing Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:253 +msgid "Billing Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:252 +msgid "Billing ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:251 +msgid "Billing State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:250 +msgid "Billing City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:249 +msgid "Billing Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:248 +msgid "Billing Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:247 +msgid "Billing Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:246 +msgid "Billing Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:245 +msgid "Billing Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:244 +msgid "Billing First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:151 +msgid "Orders Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:139 +msgid "Customer Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:100 includes/common/class-mp-gdpr.php:116 +msgid "MarketPress User Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:81 +msgid "" +"In addition to standard WordPress session cookies, this site might be setting an\n" +"\t\t additional cookie to remember your cart settings. This cookie will last for one year." +msgstr "" + +#: includes/common/class-mp-gdpr.php:80 +msgid "Cookies" +msgstr "" + +#: includes/common/class-mp-gdpr.php:77 +msgid "" +"The following information will be collected in order to process orders: your name,\n" +"\t\t username, email address, avatar and profile URLs, address and phone number. This data can be\n" +"\t\t exported and removed." +msgstr "" + +#: includes/common/class-mp-gdpr.php:76 +msgid "Additional data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:71 +msgid "" +"This site might be using third party services and tools to process payments or/and\n" +"\t\t process shipping data when creating orders on the MarketPress store. These services include payment\n" +"\t\t gateways: 2Checkout, Authorize.net AIM, eWay shared payments, eWay Rapid 3.1 Payments, Mijireh,\n" +"\t\t Mollie, Paymill, PayPal, PIN, Simplify Commerce by MasterCard, Stripe and WePay; shipping gateways:\n" +"\t\t Fedex, UPS, USPS." +msgstr "" + +#: includes/common/class-mp-gdpr.php:70 +msgid "Third parties" +msgstr "" + +#: includes/admin/class-mp-admin.php:403 +msgid "Start creating store pages and products for your online shop here." +msgstr "" + +#: includes/admin/class-mp-admin.php:402 +msgid "Create Online Shop" +msgstr "" + +#: includes/admin/class-mp-admin.php:394 +msgid "Run Setup Wizard" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:234 +msgid "If having problems during invoice generation, add define( 'DOMPDF_ENABLE_HTML5PARSER', true ); to the wp-config.php file." +msgstr "" + +#: includes/public/class-mp-checkout.php:723 +msgid "Invalid Email" +msgstr "" + +#: includes/public/class-mp-checkout.php:721 +#: includes/public/class-mp-checkout.php:729 +msgid "This field is required" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:804 +msgid "This option changes the built-in css styles for store pages. For a custom css style, save your css file with the /* MarketPress Style: Your CSS Theme Name Here */ header line in the \"%s\" folder and it will appear in this list so you may select it. You should select \"None\" if you don't wish to use custom CSS styles or if you are using default theme templates or custom theme templates and css to make your own completely unique store design. For more information on custom theme templates click here »." +msgstr "" + +#: includes/public/class-mp-public.php:421 +#: includes/public/class-mp-short-codes.php:142 +msgid "Please enter a value greater than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:420 +#: includes/public/class-mp-short-codes.php:141 +msgid "Please enter a value less than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:419 +#: includes/public/class-mp-short-codes.php:140 +msgid "Please enter a value between {0} and {1}." +msgstr "" + +#: includes/public/class-mp-public.php:418 +#: includes/public/class-mp-short-codes.php:139 +msgid "Please enter a value between {0} and {1} characters long." +msgstr "" + +#: includes/public/class-mp-public.php:417 +#: includes/public/class-mp-short-codes.php:138 +msgid "Please enter at least {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:416 +#: includes/public/class-mp-short-codes.php:137 +msgid "Please enter no more than {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:415 +#: includes/public/class-mp-short-codes.php:136 +msgid "Please enter a value with a valid extension." +msgstr "" + +#: includes/public/class-mp-public.php:414 +#: includes/public/class-mp-short-codes.php:135 +msgid "Please enter the same value again." +msgstr "" + +#: includes/public/class-mp-public.php:413 +#: includes/public/class-mp-short-codes.php:134 +msgid "Please enter a valid credit card number." +msgstr "" + +#: includes/public/class-mp-public.php:412 +#: includes/public/class-mp-short-codes.php:133 +msgid "Please enter only digits." +msgstr "" + +#: includes/public/class-mp-public.php:411 +#: includes/public/class-mp-short-codes.php:132 +msgid "Please enter a valid number." +msgstr "" + +#: includes/public/class-mp-public.php:410 +#: includes/public/class-mp-short-codes.php:131 +msgid "Please enter a valid date (ISO)." +msgstr "" + +#: includes/public/class-mp-public.php:409 +#: includes/public/class-mp-short-codes.php:130 +msgid "Please enter a valid date." +msgstr "" + +#: includes/public/class-mp-public.php:408 +#: includes/public/class-mp-short-codes.php:129 +msgid "Please enter a valid URL." +msgstr "" + +#: includes/public/class-mp-public.php:406 +#: includes/public/class-mp-short-codes.php:127 +msgid "Please fix this field." +msgstr "" + +#: includes/public/class-mp-checkout.php:1287 +#: includes/public/class-mp-public.php:405 +#: includes/public/class-mp-short-codes.php:126 +msgid "This field is required." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:810 +msgid "None - Without Special CSS-styles" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:809 +msgid "Default - Using Default CSS-styles" +msgstr "" + +#: marketpress.php:739 +msgid "Enable multiple downloads per product" +msgstr "ایک سے زیادہ ڈاؤن لوڈ فی مصنوعات چالو کریں" + +#: marketpress.php:738 +msgid "Multiple Downloads" +msgstr "ایک سے زیادہ ڈاؤن لوڈ" + +#: includes/public/class-mp-checkout.php:715 +msgid "Invalid Zip Code" +msgstr "غلط زپ کوڈ" + +#: includes/common/template-functions.php:2126 +msgid "Guest Email" +msgstr "مہمان ای میل" + +#: includes/common/payment-gateways/simplify.php:195 +msgid "There was a problem finalizing your purchase. Please re-enter your credit card information and try again" +msgstr "" + +#: includes/common/class-mp-cart.php:565 includes/common/class-mp-order.php:600 +#: includes/common/helpers.php:111 +msgid "Download %1$s" +msgstr "ڈاؤن لوڈ %1$s" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:331 +msgid "Export products to file" +msgstr " مصنوعات کو فائل میں برآمد کریں" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:328 +msgid "The import process uses the WordPress importer plugin." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:326 +msgid "Import / Export Products" +msgstr "درآمد / برآمد مصنوعات" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:325 +msgid "Export settings to file" +msgstr "ترتیبات برآمد کریں" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:324 +msgid "Import configuration" +msgstr "ترتیب درآمد کریں" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:320 +msgid "Use the text below to export to a new installation. Or paste in the new configuration to import." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:318 +msgid "Import / Export Settings" +msgstr "درآمد / برآمد کی ترتیبات" + +#. translators: URL to wp-admin/import.php +#: includes/admin/store-settings/class-mp-store-settings-import.php:266 +msgid "This importer is not installed. Please install importers from the main site." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:261 +msgid "Install Now" +msgstr "انسٹال کریں" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:260 +msgid "Install %s" +msgstr "انسٹال s%" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:240 +msgid "Run Importer" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:239 +msgid "Run %s" +msgstr "چلائیں٪ s" + +#: includes/admin/class-mp-store-settings-admin.php:258 +msgid "Import/Export" +msgstr "درآمد / برآمد" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1199 +msgid "Requires Login" +msgstr "برائے مہربانی لاگ ان کریں" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:737 +msgid "Optionally limit the user to some categories" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:671 +msgid "Should this coupon only be available to logged in users?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:670 +msgid "Require Login" +msgstr "برائے مہربانی لاگ ان کریں" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:655 +msgid "Mimimum number of products" +msgstr "مصنوعات کی کم از کم تعداد" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:653 +msgid "Enter the minimum number of products in the cart that this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:648 +msgid "Can this coupon be limited to a number of products in the cart?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:334 +msgid "Add all values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:265 +msgid "Set as default variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:154 +msgid "Set Default" +msgstr "پہلے سے طے شدہ" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:150 +msgid "More Info" +msgstr "مزید معلومات" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:40 +msgid "MarketPress - Quick Setup" +msgstr "" + +#: includes/public/class-mp-checkout.php:1399 +msgid "Proceed to checkout and create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1241 +#: includes/public/class-mp-checkout.php:1245 +msgid "Register account" +msgstr "اکاؤنٹ رجسٹر کریں" + +#: includes/public/class-mp-checkout.php:1233 +msgid "Register as customer?" +msgstr "گاہک کے طور پر رجسٹر کریں؟" + +#: includes/public/class-mp-checkout.php:765 +msgid "

    Oops!

    Looks like you haven't added anything your cart. Let's go shopping!

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:763 +msgid "

    Oops!

    The cart is disabled.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing Information" +msgstr "بلنگ کی معلومات" + +#: includes/multisite/class-mp-admin-multisite.php:214 +msgid "Global Currency" +msgstr "عالمی کرنسی" + +#: includes/multisite/class-mp-admin-multisite.php:198 +msgid "Global Store Currency" +msgstr "عالمی اسٹور کرنسی" + +#: includes/common/shipping-modules/mp-usps.php:507 +msgid "There are no shipping services available for this type of package in your location." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:168 +msgid "Using this USPS Shipping calculator requires requesting an Ecommerce API Username and Password. Get your free set of credentials here ». The password is no longer used for the API, just the username which you should enter below. The USPS test site has not yet been updated and currently doesn't work - you should just request activating your credentials with USPS and go live." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:339 +msgid "ZIP Code" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:334 +msgid "Last name" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:333 +msgid "First name" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:150 +msgid "These are the manual payment instructions to display on the order confirmation screen. TOTAL will be replaced with the order total and ORDERID will be replaced with Order ID." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:240 +msgid "You must login to Authorize.net merchant dashboard to obtain the API login ID and API transaction key. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:327 +msgid "
    1. Set the \"Return Method\" within Site Management to Header Redirect and set the \"Return URL\" to %s
    2. Set your notifications url to %s
    " +msgstr "" + +#: includes/common/data.php:191 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Also, digital downloads included in your order are now ready to be downloaded. Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:185 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order is now available to download! Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:184 +msgid "Your Order Is Ready To Be Downloaded! (ORDERID)" +msgstr "" + +#: includes/common/data.php:179 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:173 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received, your digital goods are ready to be downloaded and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:167 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received and your digital goods are ready to be downloaded. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:160 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +" Your order has been received, and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information: \n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/class-mp-product.php:638 +msgid "You can not add more items to cart." +msgstr "" + +#: includes/common/class-mp-product.php:635 +msgid "You can only add {0} to cart." +msgstr "" + +#: includes/common/class-mp-product.php:625 +msgid "This product has an order limit of %d." +msgstr "" + +#: includes/common/class-mp-order.php:1454 +msgid "Shipped: tracking code: %s" +msgstr "" + +#: includes/common/class-mp-order.php:1000 +#: includes/common/class-mp-order.php:1012 +msgid "Finished" +msgstr "" + +#: includes/common/class-mp-order.php:858 +msgid "Contact Details" +msgstr "" + +#: includes/common/class-mp-order.php:339 includes/common/data.php:155 +msgid "" +"A new order (ORDERID) was created in your store:\n" +"\n" +" ORDERINFOSKU\n" +"\n" +" SHIPPINGINFO\n" +"\n" +" PAYMENTINFO\n" +"\n" +msgstr "\n" + +#: includes/common/class-mp-cart.php:1858 +msgid "Add again" +msgstr "" + +#: includes/common/class-mp-cart.php:1852 +msgid "was removed from Shopping Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1242 +#: includes/public/class-mp-short-codes.php:160 +msgid "Cart update notice: this item has a limit per order or you have reached the stock limit." +msgstr "" + +#: includes/admin/widgets/product-list.php:235 +msgid "Show Only Featured Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:533 +msgid "If enabled, users won't be able to filter products per category and/or to order by release date/name/price." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:531 +msgid "Hide Products Filter?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:353 +msgid "Notification to registration email instead of billing email?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:322 +msgid "Order Shipped - Mixed orders (with both digital and physical products)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:289 +msgid "Order Shipped - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:224 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:194 +msgid "New Order - Mixed" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:161 +msgid "New Order - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:115 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:243 +msgid "Mixed orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:110 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:238 +msgid "Digital downloads orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:105 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:233 +msgid "Physical orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:96 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed.
    For orders placed with manual payment, emails set here will be overriden by the one configured in manual payments settings, under payments settings page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:89 +msgid "Customer Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:47 +msgid "Admin Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:566 +msgid "Only contact details" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:565 +msgid "Full billing info" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:561 +msgid "Details Collection" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:548 +msgid "Digital Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:515 +msgid "Apply Tax to Digital Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:236 +msgid "product (default)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:231 +msgid "If you are experiencing conflicts with other e-commerce plugins change this setting. This will change the internal post type of all your products. Please note that changing this option may break 3rd party themes or plugins." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1203 +msgid "Hide details" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1202 +msgid "Show all changes" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1184 +msgid "Version %s" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1161 +msgid "Current" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1131 +msgid "%s changelog" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:952 +msgid "We did not find any data for this plugin or theme..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:285 +msgid "Activate WPMU DEV Dashboard" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:279 +msgid "Just one more step - activate the WPMU DEV Dashboard plugin and you're all done!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:277 +msgid "Important updates are available for your WPMU DEV plugins/themes. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:273 +msgid "Just one more step to enable updates and support for %s!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:271 +msgid "Important updates are available for %s. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:264 +msgid "activate" +msgstr "" + +#: includes/admin/class-mp-admin.php:398 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:248 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:289 +msgid "Dismiss" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:247 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:288 +msgid "Saving..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:244 +msgid "Install Plugin" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:238 +msgid "Almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:236 +msgid "Important updates are available for your WPMU DEV plugins/themes. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:232 +msgid "%s is almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:230 +msgid "Important updates are available for %s. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:223 +msgid "install" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1428 +msgid "Sets the number of Tags to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1289 +msgid "How many products to display in the product list if \"paginate\" is set to false." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:739 +#: includes/admin/class-mp-shortcode-builder.php:906 +#: includes/admin/class-mp-shortcode-builder.php:1350 +msgid "Grid" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:735 +#: includes/admin/class-mp-shortcode-builder.php:902 +#: includes/admin/class-mp-shortcode-builder.php:1346 +msgid "Products will be displayed as list or grid." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:206 +msgid "Display a cloud or list of your global product tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:205 +msgid "Display a list of your global categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:204 +msgid "Display a list or grid of your global products." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:181 +msgid "Display a list of featured products." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1451 +msgid "Is Featured?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1444 +msgid "Featured Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:581 +#: includes/admin/class-mp-products-admin.php:1580 +msgid "% discount" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:579 +msgid "OR" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:460 +#: includes/admin/class-mp-products-admin.php:586 +#: includes/admin/widgets/product-list.php:217 +msgid "Featured" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:536 +#: includes/admin/class-mp-orders-admin.php:538 +msgid "Tracking Link" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:508 +msgid "Shipping Tax" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:356 +msgid "Shipping Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:352 +msgid "Taxes Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:349 +msgid "Products Total" +msgstr "" + +#: includes/admin/class-mp-ajax.php:366 +msgid "Oops! You entered an invalid username/email and or password." +msgstr "" + +#: includes/admin/class-mp-ajax.php:254 +msgid "Percentage Discount" +msgstr "" + +#: includes/admin/class-mp-ajax.php:234 +msgid "Limit the Amount of Items per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:214 +msgid "Unused Attributes" +msgstr "" + +#: includes/admin/class-mp-admin.php:82 +msgid "Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-admin.php:79 +msgid "MarketPress setup is not complete! Once you've completed this quick setup wizard you'll have a fully working online store - exciting! " +msgstr "" + +#: marketpress.php:263 +msgctxt "mp_order" +msgid "Add New" +msgstr "" + +#: marketpress.php:184 +msgctxt "product_tag" +msgid "Product Tag" +msgstr "" + +#: marketpress.php:183 +msgctxt "product_tag" +msgid "Product Tags" +msgstr "" + +#: marketpress.php:150 +msgctxt "product_category" +msgid "Product Category" +msgstr "" + +#: marketpress.php:149 +msgctxt "product_category" +msgid "Product Categories" +msgstr "" + +#. Author URI of the plugin/theme +msgid "http://premium.wpmudev.org" +msgstr "" + +#: marketpress.php:729 +msgid "Invoice PDF" +msgstr "" + +#: marketpress.php:712 +msgid "Grant access to themes and gateways depending on the user's Pro Site level" +msgstr "" + +#: marketpress.php:711 +msgid "Pro Sites" +msgstr "" + +#: marketpress.php:703 +msgid "Offer and accept coupon codes" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:687 +msgid "Install %s Pages" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:682 +msgid "Welcome to %s – Install pages required by the plugin automatically." +msgstr "" + +#: marketpress.php:668 +msgid "Your pages were created successfully." +msgstr "" + +#: marketpress.php:436 +msgid "Add a Product" +msgstr "" + +#: marketpress.php:271 +msgid "Parent Order" +msgstr "" + +#: marketpress.php:270 +msgid "No orders found in trash" +msgstr "" + +#: marketpress.php:269 +msgid "No orders found" +msgstr "" + +#: marketpress.php:265 +msgid "Edit Order" +msgstr "" + +#: marketpress.php:264 +msgid "Add New Order" +msgstr "" + +#: marketpress.php:220 marketpress.php:221 +msgid "Add New Product" +msgstr "" + +#: marketpress.php:197 +msgid "No product tags found" +msgstr "" + +#: marketpress.php:196 +msgid "Choose from the most used product tags" +msgstr "" + +#: marketpress.php:195 +msgid "Add or remove product tags" +msgstr "" + +#: marketpress.php:194 +msgid "Separate product tags with commas" +msgstr "" + +#: marketpress.php:193 +msgid "Search Product Tags" +msgstr "" + +#: marketpress.php:192 +msgid "Parent Product Tag:" +msgstr "" + +#: marketpress.php:191 +msgid "Parent Product Tag" +msgstr "" + +#: marketpress.php:190 +msgid "New Product Tag Name" +msgstr "" + +#: marketpress.php:189 +msgid "Add New Product Tag" +msgstr "" + +#: marketpress.php:188 +msgid "Update Product Tag" +msgstr "" + +#: marketpress.php:187 +msgid "View Product Tag" +msgstr "" + +#: marketpress.php:186 +msgid "Edit Product Tag" +msgstr "" + +#: marketpress.php:185 +msgid "All Product Tags" +msgstr "" + +#: marketpress.php:163 +msgid "No product categories found" +msgstr "" + +#: marketpress.php:162 +msgid "Choose from the most used product categories" +msgstr "" + +#: marketpress.php:161 +msgid "Add or remove product categories" +msgstr "" + +#: marketpress.php:160 +msgid "Separate product categories with commas" +msgstr "" + +#: marketpress.php:159 +msgid "Search Product Categories" +msgstr "" + +#: marketpress.php:158 +msgid "Parent Product Category:" +msgstr "" + +#: marketpress.php:157 +msgid "Parent Product Category" +msgstr "" + +#: marketpress.php:156 +msgid "New Product Category Name" +msgstr "" + +#: marketpress.php:155 +msgid "Add New Product Category" +msgstr "" + +#: marketpress.php:154 +msgid "Update Product Category" +msgstr "" + +#: marketpress.php:153 +msgid "View Product Category" +msgstr "" + +#: marketpress.php:152 +msgid "Edit Product Category" +msgstr "" + +#: marketpress.php:151 +msgid "All Product Categories" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Please fix the %s1 and then try submitting the form again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Oops! The form contains %s1 which %s2 been highlighted below." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:660 +msgid "have" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:659 +msgid "has" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:651 +msgid "Value must be less than {0}" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:650 +msgid "Please enter only letters and numbers" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:539 +msgid "Due to prolonged inactivity on this page, one or more settings were not saved. Please try again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:535 +msgid "Settings Saved" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-user-select.php:22 +msgid "Select Some Users" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-section.php:18 +msgid "Section Title" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:425 +msgid "Are you sure you want to delete this?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:30 +msgid "Add Row" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-post-select.php:24 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-taxonomy-select.php:22 +msgid "Select Posts" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:210 +msgid "Add Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:129 +msgid "Select the image that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:93 +msgid "Select image(s) that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:79 +msgid "Select the image that you would like to use for this variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:48 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:82 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:68 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:132 +msgid "Select Image" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:31 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:160 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:168 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:19 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:115 +msgid "Select File" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:30 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:18 +msgid "Select the file that you would like to use." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:357 +msgid "Create Variations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:356 +msgid "Add Another Variant" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Insert a value and press ENTER" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "(e.g. White, Grey, Red etc.)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Variation Values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:333 +msgid "Or create new variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "(e.g. Color)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:303 +msgid "You are about to delete selected variants.
    If you want to continue please confirm." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:302 +msgid "Confirmation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:290 +msgid "Insert quantity available. Empty for unlimited." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:281 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:294 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:307 +msgid "Cancel" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:280 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:293 +msgid "Update" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:277 +msgid "Insert the price i.e. 25 or 25.50" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:115 +msgid "Img." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:85 +msgid "Add New Variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:79 +msgid "Delete Variants" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:78 +msgid "Update Prices" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:77 +msgid "Update Inventory" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:76 +msgid "Update Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:75 +msgid "Bulk Actions" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:73 +msgid "Select bulk action" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:196 +msgid "Configure Store" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:195 +msgid "Configure shipping rates, emails and your store's appearance. " +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:190 +msgid "Add Product" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:189 +msgid "Add your first product for sale and get familiar with adding products." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:184 +msgid "Your store is almost ready for its first customers, but first it needs some products. Get started by adding products below, or jump straight into further configuring your store’s settings." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:183 +msgid "Woohoo! Your online store is up and running." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:160 +msgid "Finish Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:124 +msgid "And what metric system do you want to use?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:113 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:142 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:159 +msgid "Back" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:109 +msgid "Do you want to apply tax for your products? You can customize this for each product and variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:105 +msgid "What currency do you want to sell with?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:93 +msgid "And, which countries do you want to sell to?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:89 +msgid "Where is your online store based?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:80 +msgid "Payment Gateway" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:79 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:123 +msgid "Metric System" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:78 +msgid "Currency & Tax" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:77 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:88 +msgid "Locations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:70 +msgid "Choose where you want to sell your stuff and what currency. Easy!" +msgstr "" + +#: includes/public/class-mp-checkout.php:1400 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:58 +msgid "Continue" +msgstr "" + +#: includes/admin/class-mp-admin.php:83 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:53 +msgid "Skip this step, I'll do this manually" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:49 +msgid "Install store pages" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:44 +msgid "Once you've completed this quick setup wizard you'll have a fully working online store - exciting! Start
    by creating the default store pages for the online store such as the cart, checkout and store pages." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:42 +msgid "MarketPress adds a full online store to your website, with heaps of configuration options and addons
    to suit your needs. It's really easy to get going, and only takes a few minutes to setup!" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:41 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:69 +msgid "Welcome to MarketPress - Quick Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-advanced-select.php:23 +msgid "Select Some Options" +msgstr "" + +#: includes/wpmudev-metaboxes/class-wpmudev-field.php:694 +msgid "You must the WPMUDEV_Field::display() method in your form field class" +msgstr "" + +#: includes/public/class-mp-short-codes.php:636 +msgid "Only %s left in stock..." +msgstr "" + +#: includes/public/class-mp-short-codes.php:633 +msgid "Unlimited stock" +msgstr "" + +#: includes/public/class-mp-short-codes.php:430 +msgid "product_id must be defined" +msgstr "" + +#: includes/public/class-mp-checkout.php:1250 +msgid "An account with this username already exists" +msgstr "" + +#: includes/public/class-mp-checkout.php:1394 +msgid "Continue as Guest" +msgstr "" + +#: includes/public/class-mp-checkout.php:1393 +msgid "Proceed to checkout and you'll have an opportunity to create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1392 +#: includes/public/class-mp-checkout.php:1398 +msgid "First-time customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1386 +msgid "Login" +msgstr "" + +#: includes/public/class-mp-checkout.php:1379 +msgid "E-Mail Address/Username" +msgstr "" + +#: includes/public/class-mp-checkout.php:1377 +msgid "Sign in to speed up the checkout process." +msgstr "" + +#: includes/public/class-mp-checkout.php:1376 +msgid "Have an account?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1297 +msgid "Shipping address different than billing?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1184 +msgid "There are no available gateways to process this payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1160 +msgid "Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:1123 +msgid "Oops! An error occurred while processing your payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1051 +msgid "Next Step »" +msgstr "" + +#: includes/public/class-mp-checkout.php:1045 +msgid "« Previous Step" +msgstr "" + +#: includes/public/class-mp-checkout.php:873 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:657 +msgid "error" +msgstr "" + +#: includes/public/class-mp-checkout.php:872 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:658 +msgid "errors" +msgstr "" + +#: includes/public/class-mp-checkout.php:871 +msgid "

    Oops! We found %d %s in the form below.

    Fields that have errors are highlighted in red below. Entering into a field will reveal the actual error that occurred.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:870 +msgid "Please enter a valid first and last name" +msgstr "" + +#: includes/public/class-mp-checkout.php:869 +msgid " Please enter a valid card security code" +msgstr "" + +#: includes/public/class-mp-checkout.php:868 +msgid "Please enter a valid card expiration" +msgstr "" + +#: includes/public/class-mp-checkout.php:773 +msgid "Javascript is required in order to checkout. Please enable Javascript in your browser and then refresh this page." +msgstr "" + +#: includes/public/class-mp-checkout.php:588 +msgid "An unknown error occurred. Please try again." +msgstr "" + +#: includes/public/class-mp-checkout.php:386 +msgid "Town/City" +msgstr "" + +#: includes/public/class-mp-checkout.php:380 +msgid "Apartment, suite, unit, building, floor, etc" +msgstr "" + +#: includes/public/class-mp-checkout.php:376 +msgid "Address Line 2" +msgstr "" + +#: includes/public/class-mp-checkout.php:363 +msgid "Address Line 1" +msgstr "" + +#: includes/common/class-mp-order.php:770 +#: includes/public/class-mp-checkout.php:354 +msgid "Company" +msgstr "" + +#: includes/public/class-mp-checkout.php:330 +msgid "Last" +msgstr "" + +#: includes/public/class-mp-checkout.php:321 +msgid "First" +msgstr "" + +#: includes/public/class-mp-checkout.php:284 +msgid "State/Province" +msgstr "" + +#: includes/public/class-mp-checkout.php:83 +msgid "Review Order/Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing/Shipping Address" +msgstr "" + +#: includes/public/class-mp-checkout.php:80 +msgid "Login/Register" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:530 +msgid "Marketplace" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:523 +msgid "Global Marketplace Pages" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +msgid "Store Network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +#: includes/multisite/class-mp-admin-multisite.php:494 +msgid "Store Network Settings" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:440 +msgid "Set theme access permissions for network stores. For a custom css theme, save your css file with the MarketPress Theme: NAME header in the /marketpress/ui/themes/ folder and it will appear in this list so you may select it." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:361 +msgid "Choose a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:336 +msgid "%d products get indexed" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:285 +msgid "Product Indexer" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:281 +msgid "Please hold on..." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:280 +msgid "Index Products" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:279 +msgid "%d products have been indexed in whole network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:182 +msgid "Enable Global Shopping Cart?" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:178 +msgid "Limit Global Widgets/Shortcodes To Main Blog?" +msgstr "" + +#: includes/common/template-functions.php:2802 +#: includes/multisite/template-functions.php:355 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:97 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:114 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:143 +msgid "Next" +msgstr "" + +#: includes/common/template-functions.php:2801 +#: includes/multisite/template-functions.php:354 +msgid "Prev" +msgstr "" + +#: includes/common/template-functions.php:2597 +msgid "Tagged in " +msgstr "" + +#: includes/common/template-functions.php:2196 +#: includes/common/template-functions.php:2202 +#: includes/common/template-functions.php:2214 +#: includes/common/template-functions.php:2217 +msgid "Oops! We couldn't locate any orders matching that order number. Please verify the order number and try again." +msgstr "" + +#: includes/common/template-functions.php:2138 +msgid "Look Up" +msgstr "" + +#: includes/common/template-functions.php:1423 +msgid "Please choose a shipping method" +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "If you have your order ID you can look it up using the form below." +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "Order Search" +msgstr "" + +#: includes/common/template-functions.php:910 +#: includes/public/class-mp-checkout.php:1440 +msgid "Cart" +msgstr "" + +#: includes/common/template-functions.php:895 +msgid "[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:887 +msgid "[mp_global_categories_list]" +msgstr "" + +#: includes/common/template-functions.php:880 +msgid "" +"Welcome to our market place!\n" +"\n" +"Check out our network of products:\n" +"\n" +"[mp_list_global_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_global_categories_list]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:879 +msgid "Global Store" +msgstr "" + +#: includes/common/template-functions.php:873 +msgid "" +"Welcome to our online store! Feel free to browse around:\n" +"\n" +"[mp_store_navigation]\n" +"\n" +"Check out our most popular products:\n" +"\n" +"[mp_popular_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_list_categories]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_tag_cloud]" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:127 +msgid "If cart weight is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:126 +msgid "Cart Weight" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:222 +msgid "Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:206 +msgid "Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:196 +msgid "Retail Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:195 +msgid "Online Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:193 +msgid "Rates Request Type" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:189 +msgid "Maximum Weight Per Package" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:195 +#: includes/common/shipping-modules/mp-usps.php:236 +msgid "Enter your standard box sizes as LengthxWidthxHeight (e.g. 12x8x6) For each box defined enter the maximum weight it can contain. Note: the shipping prices this plugin calculates are estimates. If they are consistently too low or too high, please check that the list of boxes above and the product weights are accurate and complete." +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:187 +msgid "Handling Charge Per Box Shipped" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:176 +#: includes/common/shipping-modules/mp-ups.php:181 +msgid "Offered Services" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:165 +msgid "Shipper Number" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:151 +msgid "User ID" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:144 +msgid "Developer Kit Access Key" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:140 +msgid "Use Sandbox Mode?" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:123 +msgid "In order to use UPS, you will need a UPS Developer Kit access key and the UPS user ID and password associated with the access key. Set these up for free here. If this information is missing or incorrect, an error will appear during the checkout process and the buyer will not be able to complete the transaction." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:112 +msgid "If cart total is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:111 +msgid "Cart Total" +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:95 +#: includes/common/shipping-modules/mp-weight-rate.php:111 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Don't worry about sorting as this will be done automatically upon saving." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:170 +msgid "Method Title (visible for clients)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:409 +#: includes/common/shipping-modules/mp-ups.php:216 +#: includes/common/shipping-modules/mp-usps.php:251 +msgid "Max Weight (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:402 +#: includes/common/shipping-modules/mp-ups.php:209 +#: includes/common/shipping-modules/mp-usps.php:247 +msgid "Size (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:387 +msgid "Enter your standard box sizes as LengthxWidthxHeight ( 12x8x6 ) For each box defined enter the maximum weight it can contain. Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:361 +#: includes/common/shipping-modules/mp-usps.php:229 +msgid "Handling Charge per International Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:353 +msgid "International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:339 +#: includes/common/shipping-modules/mp-usps.php:213 +msgid "Handling Charge per Domestic Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:331 +msgid "Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:321 +msgid "When checked the customer can chose Residential or Commercial delivery with Residential the default. Unchecked it's only Residential rates." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:320 +msgid "Allow Commercial Delivery?" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:315 +msgid "Fedex 10kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:314 +msgid "Fedex 25kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:313 +msgid "Fedex Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:312 +msgid "Fedex Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:311 +msgid "Fedex Pak" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:310 +msgid "Fedex Tube" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:306 +msgid "Default Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:294 +msgid "Dropoff Type" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:290 +msgid "Meter ID" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:134 +msgid "This is a residential address" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:283 +msgid "There was an error processing your card: \"%s\". Please check your credit card info and try again." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:121 +msgid "Wepay makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept cards directly on your site. You don't need a merchant account or gateway. WePay handles everything including storing cards. Credit cards go directly to WePay's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:385 +msgid "There was an error processing your card - \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:356 +msgid "%s Store Purchase - Order ID - %s, Email - %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:251 +msgid "Stripe makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept Visa, MasterCard, American Express, Discover, JCB, and Diners Club cards directly on your site. You don't need a merchant account or gateway. Stripe handles everything, including storing cards, subscriptions, and direct payouts to your bank account. Credit cards go directly to Stripe's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:192 +msgid "ZMW - Zambian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:191 +msgid "ZAR - South African Rand" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:190 +msgid "YER - Yemeni Rial" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:189 +msgid "XPF - Cfp Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:188 +msgid "XOF - West African Cfa Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:187 +msgid "XCD - East Caribbean Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:186 +msgid "XAF - Central African Cfa Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:185 +msgid "WST - Samoan Tala" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:184 +msgid "VUV - Vanuatu Vatu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:183 +msgid "VND - Vietnamese Đồng" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:182 +msgid "VEF - Venezuelan Bolívar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:181 +msgid "UZS - Uzbekistani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:180 +msgid "UYI - Uruguayan Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:178 +msgid "UGX - Ugandan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:177 +msgid "UAH - Ukrainian Hryvnia" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:176 +msgid "TZS - Tanzanian Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:175 +msgid "TWD - New Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:174 +msgid "TTD - Trinidad and Tobago Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:172 +msgid "TOP - Tongan Paʻanga" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:171 +msgid "TJS - Tajikistani Somoni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:169 +msgid "SZL - Swazi Lilangeni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:168 +msgid "SVC - Salvadoran Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:167 +msgid "STD - São Tomé and Príncipe Dobra" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:166 +msgid "SRD - Surinamese Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:165 +msgid "SOS - Somali Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:164 +msgid "SLL - Sierra Leonean Leone" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:163 +msgid "SHP - Saint Helenian Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:160 +msgid "SCR - Seychellois Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:159 +msgid "SBD - Solomon Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:157 +msgid "RWF - Rwandan Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:156 +msgid "RUB - Russian Ruble" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:155 +msgid "RSD - Serbian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:154 +msgid "RON - Romanian Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:153 +msgid "QAR - Qatari Riyal" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:152 +msgid "PYG - Paraguayan Guaraní*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:151 +msgid "PLN - Polish Złoty" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:150 +msgid "PKR - Pakistani Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:149 +msgid "PHP - Philippine Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:148 +msgid "PGK - Papua New Guinean Kina" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:147 +msgid "PEN - Peruvian Nuevo Sol*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:146 +msgid "PAB - Panamanian Balboa*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:144 +msgid "NPR - Nepalese Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:142 +msgid "NIO - Nicaraguan Córdoba*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:141 +msgid "NGN - Nigerian Naira" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:140 +msgid "NAD - Namibian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:139 +msgid "MZN - Mozambican Metical" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:137 +msgid "MXN - Mexican Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:136 +msgid "MWK - Malawian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:135 +msgid "MVR - Maldivian Rufiyaa" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:134 +msgid "MUR - Mauritian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:133 +msgid "MRO - Mauritanian Ouguiya" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:132 +msgid "MOP - Macanese Pataca" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:131 +msgid "MNT - Mongolian Tögrög" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:130 +msgid "MKD - Macedonian Denar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:129 +msgid "MGA - Malagasy Ariary" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:128 +msgid "MDL - Moldovan Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:126 +msgid "LVL - Latvian Lats" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:124 +msgid "LSL - Lesotho Loti" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:123 +msgid "LRD - Liberian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:122 +msgid "LKR - Sri Lankan Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:121 +msgid "LBP - Lebanese Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:120 +msgid "LAK - Lao Kip*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:119 +msgid "KZT - Kazakhstani Tenge" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:118 +msgid "KYD - Cayman Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:117 +msgid "KRW - South Korean Won" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:116 +msgid "KMF - Comorian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:115 +msgid "KHR - Cambodian Riel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:114 +msgid "KGS - Kyrgyzstani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:113 +msgid "KES - Kenyan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:111 +msgid "JMD - Jamaican Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:110 +msgid "ISK - Icelandic Króna" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:109 +msgid "INR - Indian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:108 +msgid "ILS - Israeli New Sheqel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:107 +msgid "IDR - Indonesian Rupiah" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:105 +msgid "HTG - Haitian Gourde" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:103 +msgid "HNL - Honduran Lempira*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:101 +msgid "GYD - Guyanese Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:100 +msgid "GTQ - Guatemalan Quetzal*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:99 +msgid "GNF - Guinean Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:98 +msgid "GMD - Gambian Dalasi" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:97 +msgid "GIP - Gibraltar Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:96 +msgid "GEL - Georgian Lari" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:94 +msgid "FKP - Falkland Islands Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:93 +msgid "FJD - Fijian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:91 +msgid "ETB - Ethiopian Birr" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:90 +msgid "EGP - Egyptian Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:89 +msgid "EEK - Estonian Kroon*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:88 +msgid "DZD - Algerian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:87 +msgid "DOP - Dominican Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:85 +msgid "DJF - Djiboutian Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:84 +msgid "CZK - Czech Koruna*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:83 +msgid "CVE - Cape Verdean Escudo*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:82 +msgid "CRC - Costa Rican Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:81 +msgid "COP - Colombian Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:80 +msgid "CNY - Chinese Renminbi Yuan" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:79 +msgid "CLP - Chilean Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:77 +msgid "CDF - Congolese Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:76 +msgid "CAD - Canadian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:75 +msgid "BZD - Belize Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:74 +msgid "BWP - Botswana Pula" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:73 +msgid "BSD - Bahamian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:72 +msgid "BRL - Brazilian Real*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:71 +msgid "BOB - Bolivian Boliviano*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:70 +msgid "BND - Brunei Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:69 +msgid "BMD - Bermudian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:68 +msgid "BIF - Burundian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:67 +msgid "BGN - Bulgarian Lev" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:66 +msgid "BDT - Bangladeshi Taka" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:65 +msgid "BBD - Barbadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:64 +msgid "BAM - Bosnia & Herzegovina Convertible Mark" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:63 +msgid "AZN - Azerbaijani Manat" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:62 +msgid "AWG - Aruban Florin" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:61 +msgid "AUD - Australian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:60 +msgid "ARS - Argentine Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:59 +msgid "AOA - Angolan Kwanza*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:58 +msgid "ANG - Netherlands Antillean Gulden" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:57 +msgid "AMD - Armenian Dram" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:56 +msgid "ALL - Albanian Lek" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:55 +msgid "AFN - Afghan Afghani*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:54 +msgid "AED - United Arab Emirates Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:345 +msgid "Skrill balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:327 +msgid "Skrill IPN message received." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:283 +msgid "Skrill" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:278 +msgid "Pending payment" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:144 +msgid "The secret word must match the word submitted in the \"Merchant Tools\" section of your Skrill account." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:134 +msgid "You must use your valid Skrill merchant email. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:133 +msgid "Skrill Email" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:123 +msgid "Resell your inventory via Skrill.com (Moneybookers)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:95 +msgid "ZAR - South-African Rand" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:93 +msgid "TWD - Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:92 +msgid "TRY - New Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:91 +msgid "TND - Tunisian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:90 +msgid "THB - Thailand Baht" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:89 +msgid "SKK - Slovakian Koruna" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:86 +#: includes/common/payment-gateways/stripe.php:158 +msgid "SAR - Saudi Riyal" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:85 +msgid "RSD - Serbian dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:83 +msgid "QAR - Qatari Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:81 +msgid "OMR - Omani Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:80 +msgid "NOK - Norwegian Krone " +msgstr "" + +#: includes/common/payment-gateways/skrill.php:78 +#: includes/common/payment-gateways/stripe.php:138 +msgid "MYR - Malaysian Ringgit" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:77 +#: includes/common/payment-gateways/stripe.php:127 +msgid "MAD - Moroccan Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:74 +msgid "KRW - South-Korean Won" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:72 +msgid "JOD - Jordanian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:70 +msgid "INR - Indian Rupee" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:63 +msgid "EEK - Estonian Kroon" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:56 +msgid "AED - Utd. Arab Emir. Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:52 +msgid "Turkish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:51 +msgid "Swedish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:50 +msgid "Spanish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:49 +msgid "Russian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:48 +msgid "Romainian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:47 +msgid "Polish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:46 +msgid "Italian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:45 +msgid "Greek" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:44 +msgid "German" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:43 +msgid "French" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:42 +msgid "Finnish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:41 +msgid "English" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:40 +msgid "Dutch" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:39 +msgid "Danish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:38 +msgid "Czech" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:37 +msgid "Chinese" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:201 +msgid "There was an error processing your card: %s. Please re-enter your credit card info and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:278 +msgid "
  • There was an error processing your card: \"%s\". Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:274 +msgid "
  • There was an error processing your card. Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:177 +#: includes/common/payment-gateways/stripe.php:279 +msgid "Publishable Key" +msgstr "" + +#: includes/common/payment-gateways/pin.php:163 +msgid "API Credentials?" +msgstr "" + +#: includes/common/payment-gateways/pin.php:147 +msgid "PIN makes it easy to start accepting credit card payments with Australia’s first all-in-one online payment system. Accept all major credit cards directly on your site. Your sales proceeds are deposited to any Australian bank account, no merchant account required." +msgstr "" + +#: includes/common/payment-gateways/pin.php:57 +#: includes/common/payment-gateways/stripe.php:179 +msgid "USD - United States Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:455 +msgid "Email Footer" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:445 +msgid "Email Header" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:416 +msgid "Partner" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:409 +msgid "Vendor" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:852 +#: includes/common/payment-gateways/paypal-express.php:1126 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences\t section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:749 +msgid "Page Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:744 +msgid "Header Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:739 +msgid "Header Border Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:734 +msgid "Header Image" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:680 +msgid "Locale" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:624 +#: includes/common/payment-gateways/paypal-express.php:658 +msgid "Merchant Email" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:645 +msgid "Paypal Express Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:603 +msgid "Paypal Express Network Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:861 +msgid "Application ID (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:854 +msgid "Signature (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:847 +msgid "API Password (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:839 +msgid "API Username (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:832 +msgid "Signature (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:825 +msgid "API Password (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:817 +msgid "API Username (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:799 +msgid "This message is displayed at the top of the gateway settings page to store admins. It's a good place to inform them of your fees or put any sales messages." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:787 +msgid "Please enter your PayPal email address or business ID you want to recieve fees at." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:786 +msgid "PayPal E-mail" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:772 +msgid "Fees to Collect (%)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:375 +#: includes/public/class-mp-checkout.php:341 +msgid "Email Address" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:299 +msgid "Sorry, your order was not completed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:126 +#: includes/common/payment-gateways/paypal-express.php:780 +msgid "You will be redirected to the PayPal site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:90 +#: includes/common/payment-gateways/skrill.php:94 +msgid "USD - U.S. Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:89 +msgid "TRY - Turkish lira" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:88 +#: includes/common/payment-gateways/stripe.php:170 +msgid "THB - Thai Baht" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:87 +msgid "TWD - Taiwan New Dollars" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:86 +#: includes/common/payment-gateways/pin.php:59 +#: includes/common/payment-gateways/skrill.php:88 +#: includes/common/payment-gateways/stripe.php:162 +msgid "SGD - Singapore Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:84 +msgid "RUB - Russian Rubles" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:82 +msgid "PHP - Philippine Pesos" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:81 +#: includes/common/payment-gateways/pin.php:58 +#: includes/common/payment-gateways/skrill.php:79 +#: includes/common/payment-gateways/stripe.php:145 +msgid "NZD - New Zealand Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:79 +msgid "MXN - Mexican Peso" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:78 +msgid "MYR - Malaysian Ringgits" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:77 +#: includes/common/payment-gateways/pin.php:64 +#: includes/common/payment-gateways/skrill.php:73 +#: includes/common/payment-gateways/stripe.php:112 +msgid "JPY - Japanese Yen" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:75 +#: includes/common/payment-gateways/pin.php:63 +#: includes/common/payment-gateways/skrill.php:66 +#: includes/common/payment-gateways/stripe.php:102 +msgid "HKD - Hong Kong Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:73 +msgid "GBP - Pound Sterling" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:68 +#: includes/common/payment-gateways/pin.php:62 +#: includes/common/payment-gateways/skrill.php:59 +msgid "CAD - Canadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:67 +msgid "BRL - Brazilian Real" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:66 +#: includes/common/payment-gateways/pin.php:56 +#: includes/common/payment-gateways/skrill.php:57 +msgid "AUD - Australian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:288 +msgid "There was an error processing your card: \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:163 +msgid "When running on a live site, Paymill recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:161 +#: includes/common/payment-gateways/pin.php:157 +#: includes/common/payment-gateways/simplify.php:103 +#: includes/common/payment-gateways/stripe.php:260 +#: includes/common/payment-gateways/wepay.php:153 +msgid "Force SSL?" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:151 +msgid "Accept Visa, Mastercard, Maestro UK, Discover and Solo cards directly on your site. You don't need a merchant account or gateway. Credit cards go directly to Paymill's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:131 +msgid "CVV2" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:72 +#: includes/common/payment-gateways/pin.php:61 +#: includes/common/payment-gateways/skrill.php:65 +#: includes/common/payment-gateways/stripe.php:95 +msgid "GBP - British Pound" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:71 +#: includes/common/payment-gateways/stripe.php:173 +msgid "TRY - Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:70 +#: includes/common/payment-gateways/paypal-chained-payments.php:85 +#: includes/common/payment-gateways/skrill.php:87 +#: includes/common/payment-gateways/stripe.php:161 +msgid "SEK - Swedish Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:69 +#: includes/common/payment-gateways/skrill.php:84 +msgid "RON - Romanian Leu New" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:68 +#: includes/common/payment-gateways/paypal-chained-payments.php:83 +#: includes/common/payment-gateways/skrill.php:82 +msgid "PLN - Polish Zloty" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:67 +#: includes/common/payment-gateways/paypal-chained-payments.php:80 +#: includes/common/payment-gateways/stripe.php:143 +msgid "NOK - Norwegian Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:66 +#: includes/common/payment-gateways/skrill.php:75 +#: includes/common/payment-gateways/stripe.php:125 +msgid "LTL - Lithuanian Litas" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:65 +#: includes/common/payment-gateways/paypal-chained-payments.php:69 +#: includes/common/payment-gateways/skrill.php:60 +#: includes/common/payment-gateways/stripe.php:78 +msgid "CHF - Swiss Franc" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:64 +#: includes/common/payment-gateways/skrill.php:76 +msgid "LVL - Latvian Lat" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:63 +#: includes/common/payment-gateways/paypal-chained-payments.php:74 +#: includes/common/payment-gateways/skrill.php:69 +msgid "ILS - Israeli Shekel" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:62 +#: includes/common/payment-gateways/skrill.php:71 +msgid "ISK - Iceland Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:61 +#: includes/common/payment-gateways/paypal-chained-payments.php:76 +#: includes/common/payment-gateways/skrill.php:68 +#: includes/common/payment-gateways/stripe.php:106 +msgid "HUF - Hungarian Forint" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:60 +#: includes/common/payment-gateways/paypal-chained-payments.php:71 +#: includes/common/payment-gateways/skrill.php:62 +#: includes/common/payment-gateways/stripe.php:86 +msgid "DKK - Danish Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:59 +#: includes/common/payment-gateways/skrill.php:67 +#: includes/common/payment-gateways/stripe.php:104 +msgid "HRK - Croatian Kuna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:58 +#: includes/common/payment-gateways/paypal-chained-payments.php:70 +#: includes/common/payment-gateways/skrill.php:61 +msgid "CZK - Czech Koruna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:57 +#: includes/common/payment-gateways/skrill.php:58 +msgid "BGN - Bulgarian Leva" +msgstr "" + +#: includes/common/payment-gateways/payflow/class-mp-gateway-worker-payflow.php:123 +msgid "There was an error connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:344 +msgid "This setting will log all PayFast communication to the \"payfast.log\" file." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:342 +msgid "Log Debugging Info?" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:335 +msgid "DO NOT INPUT A VALUE UNLESS YOU HAVE SET ONE IN THE SETTINGS SECTION OF YOUR PAYFAST SETTINGS." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:333 +msgid "PayFast Passphrase" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:323 +msgid "You can find your credentials on your integration page." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:321 +msgid "PayFast Merchant Credentials" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:311 +msgid "PayFast Mode" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:308 +msgid "PayFast is a payments processing service for South Africa. We make it safe for buyers to send money and easy for sellers to receive money. More Info »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:306 +msgid "PayFast Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:285 +msgid "Your payment via PayFast for this order totaling %s is complete. The transaction number is %s." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:278 +msgid "Your payment via PayFast for this order totaling %s is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:124 +msgid "Your PayFast transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:82 +#: includes/common/payment-gateways/payfast.php:83 +msgid "PayFast" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:157 +msgid "API error: - \"%s\"" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:198 +msgid "The payment request is under process" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:140 +msgid "Order: #" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:116 +msgid "You will be redirected to the Mollie site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:73 +msgid "%sMollie%s provides a fully PCI Compliant and secure way to collect payments via iDeal, Credit Card, Bancontact / Mister Cash, SOFORT Banking, Overbooking, Bitcoin, PayPal, paysafecard and AcceptEmail." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:53 +#: includes/common/payment-gateways/mollie.php:54 +#: includes/common/payment-gateways/mollie.php:195 +#: includes/common/payment-gateways/mollie.php:245 +msgid "Mollie" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:50 +#: includes/common/payment-gateways/paymill.php:56 +#: includes/common/payment-gateways/paypal-chained-payments.php:72 +#: includes/common/payment-gateways/pin.php:60 +#: includes/common/payment-gateways/skrill.php:64 +#: includes/common/payment-gateways/stripe.php:92 +msgid "EUR - Euro" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:306 +msgid "Access Key" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:300 +msgid "You must login to the Mijireh.com dashboard to obtain the Access Key." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:299 +msgid "Credentials" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:289 +msgid "Mijireh Checkout provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:269 +msgid "Mijireh Error: " +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:89 +msgid "You will be redirected to the Mijireh.com site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:87 +msgid "Your Mijireh transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:42 +#: includes/common/payment-gateways/mijireh.php:43 +#: includes/common/payment-gateways/mijireh.php:324 +msgid "Mijireh" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:145 +msgid "These are the manual payment instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:189 +msgid "This is the email text to send to those who have made free order checkouts. You should include your free order instructions / information here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:183 +msgid "This is the free order information to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:182 +msgid "Confirmation User Information" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:177 +msgid "This is the information to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:163 +msgid "If enabled, all free orders will be automatically marked as paid." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:159 +msgid "Payment Status" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:149 +msgid "This gateway is automatically activated if order totalling 0 and it can't be disabled" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:35 +#: includes/common/payment-gateways/free_orders.php:36 +#: includes/common/payment-gateways/free_orders.php:89 +msgid "Free Order" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:34 +#: includes/common/payment-gateways/free_orders.php:197 +msgid "Free Orders" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:515 +msgid "Sandbox API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:266 +#: includes/common/payment-gateways/eway31.php:542 +msgid "eWay Rapid 3.1 Payments (beta)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:403 +msgid "Hosted Payment Page Language" +msgstr "" + +#: includes/common/payment-gateways/eway.php:373 +msgid "Note when testing in sandbox mode it will use the default eWay test API credentials. Also, please note that cart total needs to be a whole number (e.g. 10.00) in order to generate a successful transaction, otherwise the transaction will fail." +msgstr "" + +#: includes/common/payment-gateways/eway.php:267 +msgid "You will be redirected to https://www.eway.com.au to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:380 +msgid "You have chosen to checkout using %s. Please confirm your order details and click \"Submit Order\" when finished." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:272 +#: includes/common/payment-gateways/paymill.php:131 +#: includes/common/payment-gateways/stripe.php:231 +msgid "Security Code " +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Enter in MM/YYYY or MM/YY format" +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Expiration" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:321 +msgid "Delim Data" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:307 +#: includes/common/payment-gateways/paypal-payflow.php:456 +msgid "This text will appear as the footer of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:287 +#: includes/common/payment-gateways/paypal-payflow.php:440 +msgid "Email Customer (on success)" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:278 +msgid "Authorize.net default is \",\". Otherwise, get this from your credit card processor. If the transactions are not going through, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:277 +msgid "Delimeter Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:193 +msgid "Held For Review" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:310 +#: includes/common/payment-gateways/payfast.php:314 +msgid "Test" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:300 +#: includes/common/payment-gateways/pin.php:170 +#: includes/common/payment-gateways/stripe.php:272 +msgid "Secret Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:283 +msgid "Select Your Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:97 +msgid "Your payment will be processed by the iDEAL network" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:208 +msgid "These are the CubePoints to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:203 +msgid "These are the CubePoints instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:266 +msgid "If enabled, all API calls will be made to https://test.bitpay.com." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:263 +msgid "Use Test Mode?" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:259 +msgid "If checked, response fron bitpay will be stored in log file, keep it disabled unless required." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:256 +msgid "Enable Debug Log" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:249 +msgid "Full Notifications" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:231 +#: includes/common/payment-gateways/eway31.php:499 +#: includes/common/payment-gateways/eway31.php:526 +#: includes/common/payment-gateways/mollie.php:83 +#: includes/common/shipping-modules/mp-fedex.php:269 +msgid "API Key" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:222 +msgid "You can now accept a payment from any country on Earth, with no risk of fraud. To use Bitpay, you need to signup on Bitpay. \\n After completing the signup process, you can get api keys at Bitpay API key. You can read more about Bitpay at Bitpay API. \\n Bitpay requires SSL(https) for payment notifications to work." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:61 +msgid "You will be redirected to bitpay.com, for bitcoin payment. It is completely safe." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:346 +msgid "You must login to the 2Checkout vendor dashboard to obtain the seller ID and secret word. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:345 +#: includes/common/payment-gateways/authorizenet-aim.php:239 +#: includes/common/payment-gateways/paymill.php:168 +#: includes/common/payment-gateways/paypal-express.php:704 +#: includes/common/payment-gateways/simplify.php:80 +#: includes/common/payment-gateways/stripe.php:265 +#: includes/common/payment-gateways/wepay.php:158 +msgid "API Credentials" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:325 +#: includes/common/payment-gateways/_bitpay.php:220 +#: includes/common/payment-gateways/_cubepoints.php:185 +#: includes/common/payment-gateways/_ideal.php:268 +#: includes/common/payment-gateways/_payway.php:255 +#: includes/common/payment-gateways/authorizenet-aim.php:219 +#: includes/common/payment-gateways/eway.php:352 +#: includes/common/payment-gateways/eway31.php:460 +#: includes/common/payment-gateways/free_orders.php:147 +#: includes/common/payment-gateways/manual-payments.php:126 +#: includes/common/payment-gateways/mijireh.php:287 +#: includes/common/payment-gateways/mollie.php:71 +#: includes/common/payment-gateways/paymill.php:149 +#: includes/common/payment-gateways/paypal-chained-payments.php:344 +#: includes/common/payment-gateways/paypal-payflow.php:376 +#: includes/common/payment-gateways/pin.php:145 +#: includes/common/payment-gateways/simplify.php:69 +#: includes/common/payment-gateways/skrill.php:121 +#: includes/common/payment-gateways/stripe.php:249 +#: includes/common/payment-gateways/wepay.php:119 +#: includes/common/shipping-modules/mp-fedex.php:243 +#: includes/common/shipping-modules/mp-flat-rate.php:63 +#: includes/common/shipping-modules/mp-pickup.php:140 +#: includes/common/shipping-modules/mp-table-rate.php:94 +#: includes/common/shipping-modules/mp-ups.php:122 +#: includes/common/shipping-modules/mp-usps.php:167 +#: includes/common/shipping-modules/mp-weight-rate.php:110 +msgid "%s Settings" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:136 +msgid "You will be redirected to the 2Checkout site to finalize your payment." +msgstr "" + +#: includes/common/helpers.php:169 includes/public/class-mp-checkout.php:1277 +msgid "Billing" +msgstr "" + +#: includes/common/helpers.php:144 +msgid "FREE" +msgstr "" + +#: includes/common/helpers.php:134 +msgid "Coupons:" +msgstr "" + +#: includes/common/helpers.php:95 +msgid "Qty" +msgstr "" + +#: includes/common/helpers.php:94 +msgid "Sku" +msgstr "" + +#: includes/common/data.php:59 +msgid "Zip Code" +msgstr "" + +#: includes/common/class-mp-taxes.php:336 +msgid "Standard Table" +msgstr "" + +#: includes/common/class-mp-product.php:2698 +msgid "Tweet" +msgstr "" + +#: includes/common/class-mp-product.php:2321 +msgid "Notification Preferences: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2320 +msgid "Edit Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2318 +msgid "Link: %s

    " +msgstr "" + +#: includes/common/class-mp-product.php:2317 +msgid "Current Inventory: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2316 +msgid "Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2314 +msgid "This message is being sent to notify you of low stock of a product in your online store according to your preferences.

    " +msgstr "" + +#: includes/common/class-mp-product.php:1817 +msgid "" +msgstr "" + +#: includes/common/class-mp-product.php:1427 +#: includes/common/class-mp-product.php:1430 +msgid "(tax incl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1422 +#: includes/common/class-mp-product.php:1425 +msgid "(tax excl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1300 +#: includes/common/class-mp-product.php:1315 +msgid "%s each" +msgstr "" + +#: includes/common/class-mp-product.php:988 +msgid "Choose Options" +msgstr "" + +#: includes/common/class-mp-product.php:526 +msgid "Choose a %s" +msgstr "" + +#: includes/common/class-mp-product.php:284 +#: includes/common/class-mp-product.php:292 +#: includes/common/class-mp-product.php:615 +msgid "We're sorry, we only have %d of this item in stock right now." +msgstr "" + +#: includes/common/class-mp-order.php:1456 +msgid "Shipped: Track Shipment" +msgstr "" + +#: includes/common/class-mp-order.php:1049 +msgid "Order Received" +msgstr "" + +#: includes/common/class-mp-order.php:1014 +msgid "In Process" +msgstr "" + +#: includes/common/class-mp-order.php:969 +msgid "Order #" +msgstr "" + +#: includes/common/class-mp-order.php:866 +msgid "Copy billing address to shipping address" +msgstr "" + +#: includes/common/class-mp-order.php:822 +#: includes/public/class-mp-checkout.php:1314 +msgid "Special Instructions" +msgstr "" + +#: includes/common/class-mp-order.php:817 +#: includes/common/payment-gateways/stripe.php:335 +msgid "Email" +msgstr "" + +#: includes/common/class-mp-order.php:813 +#: includes/common/payment-gateways/stripe.php:341 +#: includes/public/class-mp-checkout.php:416 +msgid "Phone" +msgstr "" + +#: includes/common/class-mp-order.php:791 +#: includes/common/payment-gateways/stripe.php:337 +msgid "State" +msgstr "" + +#: includes/common/class-mp-order.php:776 +msgid "Address 1" +msgstr "" + +#: includes/common/class-mp-order.php:766 +msgid "Last Name" +msgstr "" + +#: includes/common/class-mp-order.php:762 +msgid "First Name" +msgstr "" + +#: includes/common/class-mp-installer.php:677 +msgid "MarketPress requires a database update to continue working correctly. Go to update page" +msgstr "" + +#: includes/common/class-mp-installer.php:657 +msgid "MarketPress performed a quick automatic update successfully!" +msgstr "" + +#: includes/common/class-mp-installer.php:653 +msgid "Perform Update" +msgstr "" + +#: includes/common/class-mp-installer.php:647 +msgid "Please update each subsite in your WordPress network where you have older version of the MarketPress plugin." +msgstr "" + +#: includes/common/class-mp-installer.php:641 +msgid "Depending on the amount of products you have, this update could take quite some time. Please keep this window open while the update completes. If you have products with multiple variations, the progress bar may move slower, please don't exit the window." +msgstr "" + +#: includes/common/class-mp-installer.php:632 +msgid "Product Metadata" +msgstr "" + +#: includes/common/class-mp-installer.php:601 +msgid "MarketPress requires a database update to continue working correctly.
    Below you will find a list of items that require your attention." +msgstr "" + +#: includes/common/class-mp-installer.php:600 +msgid "Update MarketPress Data" +msgstr "" + +#: includes/common/class-mp-installer.php:530 +msgid "Update Data" +msgstr "" + +#: includes/common/class-mp-installer.php:67 +msgid "Complete!" +msgstr "" + +#: includes/common/class-mp-installer.php:66 +msgid "Upgrading Database...Please Wait..." +msgstr "" + +#: includes/common/class-mp-installer.php:64 +msgid "An error occurred while updating. Please refresh this page and try again." +msgstr "" + +#: includes/common/class-mp-cart.php:2447 +msgid "Some items in your cart have fallen below the quantity you currently have in your cart. We have adjusted the quantity in your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:2443 +msgid "Some items in your cart are no longer available. We have removed these items from your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:1566 +msgid "item" +msgstr "" + +#: includes/common/class-mp-cart.php:1563 +#: includes/common/class-mp-cart.php:1568 +msgid "items" +msgstr "" + +#: includes/common/class-mp-cart.php:1363 +msgid "Items/Products added to Cart will show here." +msgstr "" + +#: includes/common/class-mp-cart.php:1362 +msgid "Your shopping cart is empty." +msgstr "" + +#: includes/common/class-mp-cart.php:1357 +msgid "View Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1241 +#: includes/common/class-mp-cart.php:1298 +#: includes/public/class-mp-short-codes.php:159 +msgid "Adding..." +msgstr "" + +#: includes/common/class-mp-cart.php:1033 +msgid "Continue Shopping?" +msgstr "" + +#: includes/common/class-mp-cart.php:961 +msgid "Secure Checkout
    Shopping is always safe and secure." +msgstr "" + +#: includes/common/class-mp-cart.php:959 +msgid "You are about to submit your order!
    Please review your order details before continuing. You will be charged immediately upon clicking \"Submit Order\"." +msgstr "" + +#: includes/common/class-mp-cart.php:956 +msgid "Continue »" +msgstr "" + +#: includes/common/class-mp-cart.php:955 +msgid "Submit Order" +msgstr "" + +#: includes/common/class-mp-cart.php:818 +msgid "There are no items in your cart - go add some !" +msgstr "" + +#: includes/common/class-mp-cart.php:816 +msgid "The cart is disabled." +msgstr "" + +#: includes/common/class-mp-cart.php:735 +msgid "Estimated %s" +msgstr "" + +#: includes/common/class-mp-cart.php:717 +msgid "Estimated Shipping" +msgstr "" + +#: includes/common/class-mp-cart.php:697 +msgid "Product Total" +msgstr "" + +#: includes/common/class-mp-cart.php:670 includes/common/class-mp-cart.php:672 +msgid "Estimated Total (%s, %s)" +msgstr "" + +#: includes/common/class-mp-cart.php:668 +msgid "Estimated Total (%s)" +msgstr "" + +#: includes/common/class-mp-cart.php:666 includes/common/class-mp-cart.php:752 +msgid "Estimated Total" +msgstr "" + +#: includes/admin/widgets/product-list.php:247 +msgid "Show Thumbnail Placeholder image (if image is not set)" +msgstr "" + +#: includes/admin/widgets/cart.php:73 +msgid "Display product price" +msgstr "" + +#: includes/admin/widgets/cart.php:71 +msgid "Display product quantity" +msgstr "" + +#: includes/admin/widgets/cart.php:69 +msgid "Display product image" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:93 +msgid "General Shipping Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:773 +msgid "If you are having conflicts with the lightbox library from your theme or another plugin you should uncheck this." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:772 +msgid "Use Built-In Lightbox for Images?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:762 +msgid "Disable Large Image Display?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:688 +msgid "Show Product Image?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:682 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:684 +msgid "Show Tags List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:676 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:678 +msgid "Show Categories List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:671 +msgid "If enabled, description excerpt will be added above Add to cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:669 +msgid "Show Excerpt?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:665 +msgid "If enabled, users will be able to choose how many of the product they want to purchase before adding to their cart. If not checked, quantity could be change later on the cart page." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:663 +msgid "Show Quantity Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:649 +msgid "Settings related to the display of individual product pages." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:648 +msgid "Product Page Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:605 +msgid "Related Products Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:573 +msgid "Show Related Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:568 +msgid "Related Product Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:549 +msgid "Order Status Entries Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:510 +msgid "Sort Products By" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:497 +msgid "Products Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:492 +msgid "Paginate Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:478 +msgid "Excerpts Length" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:473 +msgid "Show Excerpts?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:450 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:746 +msgid "Image Alignment" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:412 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:708 +msgid "Custom Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:401 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:697 +msgid "Large - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:400 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:696 +msgid "Medium - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:399 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:695 +msgid "Thumbnail - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:397 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:693 +msgid "Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:386 +msgid "Select default placeholder image thumbnail when product image is not available (if empty, plugin's built-in image will be used)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:380 +msgid "Show default product placeholder thumbnail when product image is not available?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:374 +msgid "Show Product Thumbnail?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:369 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:658 +msgid "Redirect to cart page for immediate checkout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:368 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:657 +msgid "Stay on current product page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:366 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:655 +msgid "MarketPress supports two \"flows\" for adding products to the shopping cart. After adding a product to their cart, two things can happen:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:365 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:654 +msgid "Add To Cart Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:355 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:628 +msgid "Four" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:354 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:627 +msgid "Three" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:353 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:626 +msgid "Two" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:625 +msgid "One" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:349 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:622 +msgid "Set the number of products that show up in a grid row to best fit your theme" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:348 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:621 +msgid "How many products per row?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:342 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:609 +msgid "Display as grid" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:341 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:608 +msgid "Display as list" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:339 +msgid "Product Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:334 +msgid "Settings related to the display of product lists/grids." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:333 +msgid "Product List/Grid Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:314 +msgid "Show Twitter Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:309 +msgid "Twitter" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:303 +msgid "Show Share Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:297 +msgid "Recommend" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:296 +msgid "Like" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:294 +msgid "Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:283 +msgid "Show Facebook Like Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:278 +msgid "Facebook" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:257 +msgid "Show \"Pin It\" Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:252 +msgid "Pinterest" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:246 +msgid "Social Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:193 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:202 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:211 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:220 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:229 +#: includes/multisite/class-mp-admin-multisite.php:532 +#: includes/multisite/class-mp-admin-multisite.php:541 +#: includes/multisite/class-mp-admin-multisite.php:550 +msgid "Choose a Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:191 +msgid "This page will be used as the root for your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:168 +#: includes/multisite/class-mp-admin-multisite.php:586 +msgid "Create Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "uncropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "cropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:87 +#: includes/multisite/class-mp-admin-multisite.php:121 +#: includes/multisite/class-mp-admin-multisite.php:620 +msgid "An error occurred while creating the store page. Please try again." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:66 +msgid "Choose the gateway(s) that you would like to be available for checkout." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:65 +msgid "Enabled Gateways" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:78 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:146 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:179 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:213 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:274 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:307 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:341 +msgid "Text" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:71 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:139 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:172 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:206 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:267 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:300 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:334 +msgid "Subject" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:52 +msgid "Notification Email" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:510 +msgid "Enabling this option will display label `excl. tax` or `incl. tax` after price" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:509 +msgid "Display tax label?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:504 +msgid "Enabling this option will show Price + Tax, eg. if your price is 100 and your tax 20, your price will be 120" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:416 +#: includes/multisite/class-mp-admin-multisite.php:234 +msgid "Price Format" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:366 +msgid "Enabling this field will display a textbox on the shipping checkout page for users to enter special instructions for their order. Useful for product personalization, etc." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:365 +msgid "Show Special Instructions Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:360 +msgid "Universal" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:359 +msgid "Old" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1167 +#: includes/admin/store-settings/class-mp-store-settings-general.php:358 +msgid "New" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:353 +msgid "If you already use Google Analytics for your website, you can track detailed ecommerce information by enabling this setting. Choose whether you are using the new asynchronous or old tracking code. Before Google Analytics can report ecommerce activity for your website, you must enable ecommerce tracking on the profile settings page for your website. Also keep in mind that some gateways do not reliably show the receipt page, so tracking may not be accurate in those cases. It is recommended to use the PayPal gateway for the most accurate data. More information »" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:347 +msgid "Do you want to display the product price on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:346 +msgid "Show product price on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:340 +msgid "Do you want to display the product quantity on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:339 +msgid "Show product quantity on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:333 +msgid "Do you want to display the product image on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:332 +msgid "Show product image on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:327 +msgid "This option hide floating Mini Cart in top right corner." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:326 +msgid "Disable Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:316 +msgid "If unchecked your Orders admin page will be hidden" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:315 +msgid "Show admin Orders page?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:309 +msgid "Disable Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:303 +msgid "Force Login?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:297 +msgid "Hide Out of Stock Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:555 +msgid "This will prevent multiples of the same downloadable product form being added to the cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:554 +msgid "Limit Digital Products Per-order?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:268 +msgid "If you're having issues downloading large files and have worked with your hosting provider to increase your memory limits, try enabling this - just keep in mind, it's not as secure!" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:267 +msgid "Use Alternative Download Method?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:252 +msgid "Download Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:230 +msgid "Change product post type" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:51 +msgid "%s Capabilities" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-addons.php:47 +msgid "Store Settings: Add Ons: %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:254 +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:56 +msgid "Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Edit Product Attribute %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:246 +msgid "Exporters" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:238 +msgid "Short Codes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:207 +msgid "An appropriate message for key \"%s\" could not be found." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:204 +msgid "Product attribute updated successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:203 +msgid "Product attribute added successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +msgid "Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +#: includes/admin/store-settings/class-mp-store-settings-addons.php:121 +msgid "Store Settings: Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "Store Settings: Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:118 +msgid "Store Settings: Product Tags" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:117 +msgid "Store Settings: Product Categories" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Store Settings: Product Attributes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +msgid "Store Settings: Payments" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:114 +msgid "Store Settings: Shipping" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +#: includes/admin/class-mp-store-settings-admin.php:226 +msgid "Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +msgid "Store Settings: Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:112 +msgid "Store Settings: Presentation" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:111 +msgid "Store Settings: General" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1489 +msgid "Select a Product" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1447 +msgid "Reset to Defaults" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1446 +msgid "Insert Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1202 +#: includes/admin/class-mp-shortcode-builder.php:1227 +#: includes/admin/class-mp-shortcode-builder.php:1252 +msgid "The text to show in the link." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1196 +#: includes/admin/class-mp-shortcode-builder.php:1221 +#: includes/admin/class-mp-shortcode-builder.php:1246 +msgid "Whether to return a clickable link or url." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1177 +msgid "Whether to display the cart only on store pages or not." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1171 +msgid "Whether to show or hide the product price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1165 +msgid "Whether to show or hide the product quantity." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1159 +msgid "Whether to show or hide the product image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1153 +msgid "The text displayed before the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1147 +msgid "The title of the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1058 +#: includes/admin/class-mp-shortcode-builder.php:1121 +msgid "A label to prepend to the price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1032 +#: includes/admin/class-mp-shortcode-builder.php:1127 +msgid "What context for display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1004 +msgid "Set the alignment of the image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:998 +msgid "Set a custom pixel width/height. If omitted defaults to the size set by \"context\"." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:993 +msgid "Widget" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:988 +msgid "What context for preset size options." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:982 +#: includes/admin/class-mp-shortcode-builder.php:1026 +#: includes/admin/class-mp-shortcode-builder.php:1052 +#: includes/admin/class-mp-shortcode-builder.php:1077 +#: includes/admin/class-mp-shortcode-builder.php:1096 +#: includes/admin/class-mp-shortcode-builder.php:1115 +msgid "The ID of the product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:963 +msgid "Whether to display the product meta (e.g. price, buy button)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:738 +#: includes/admin/class-mp-shortcode-builder.php:905 +#: includes/admin/class-mp-shortcode-builder.php:958 +#: includes/admin/class-mp-shortcode-builder.php:992 +#: includes/admin/class-mp-shortcode-builder.php:1035 +#: includes/admin/class-mp-shortcode-builder.php:1130 +#: includes/admin/class-mp-shortcode-builder.php:1349 +msgid "List" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:957 +#: includes/admin/class-mp-shortcode-builder.php:991 +#: includes/admin/class-mp-shortcode-builder.php:1034 +#: includes/admin/class-mp-shortcode-builder.php:1129 +msgid "Single" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:953 +msgid "Whether and what context of image size to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:948 +msgid "Full" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:943 +msgid "Whether and what type of content to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:937 +msgid "Whether to display the product title." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:931 +msgid "The ID of the product to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:747 +#: includes/admin/class-mp-shortcode-builder.php:914 +msgid "Hide" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:746 +#: includes/admin/class-mp-shortcode-builder.php:913 +msgid "Show" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:744 +#: includes/admin/class-mp-shortcode-builder.php:911 +msgid "Whether or not to show the product filters." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:724 +#: includes/admin/class-mp-shortcode-builder.php:891 +#: includes/admin/class-mp-shortcode-builder.php:1335 +msgid "Limits list to a specific product tag." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:713 +#: includes/admin/class-mp-shortcode-builder.php:880 +#: includes/admin/class-mp-shortcode-builder.php:1324 +msgid "Limits list to a specific product category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:706 +#: includes/admin/class-mp-shortcode-builder.php:873 +#: includes/admin/class-mp-shortcode-builder.php:1317 +msgid "Direction to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:684 +#: includes/admin/class-mp-shortcode-builder.php:851 +#: includes/admin/class-mp-shortcode-builder.php:1295 +msgid "What field to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:678 +#: includes/admin/class-mp-shortcode-builder.php:845 +#: includes/admin/class-mp-shortcode-builder.php:1283 +msgid "How many products to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:672 +#: includes/admin/class-mp-shortcode-builder.php:839 +#: includes/admin/class-mp-shortcode-builder.php:1277 +msgid "The page number to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:666 +#: includes/admin/class-mp-shortcode-builder.php:833 +#: includes/admin/class-mp-shortcode-builder.php:1271 +msgid "Whether to paginate the product list. This is useful to only show a subset." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:808 +msgid "How many related items to show." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:790 +msgid "How to relate the products" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:784 +msgid "The product to show related items for." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:765 +msgid "The maximum number of products to display" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:647 +msgid "Comma separated list of tags (term_id) to include. For example, include=5,27 means tags that have the term_id 5 or 27 will be the only tags displayed. Defaults to include everything." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:641 +msgid "Comma separated list of tags (term_id) to exclude. For example, exclude=5,27 means tags that have the term_id 5 or 27 will NOT be displayed. Defaults to exclude nothing." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:633 +#: includes/admin/class-mp-shortcode-builder.php:1420 +msgid "Sort order." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:629 +#: includes/admin/class-mp-shortcode-builder.php:1416 +msgid "Count" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:626 +#: includes/admin/class-mp-shortcode-builder.php:1413 +msgid "Order of the tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:620 +msgid "The text/space between tags)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:616 +msgid "UL with a class of \"wp-tag-cloud\"" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:615 +msgid "separated by whitespace defined by \"separator\" parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:613 +msgid "Format of the cloud display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:607 +msgid "The number of actual tags to display in the cloud. (Use \"0\" to display all tags.)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:601 +msgid "Unit of measure as pertains to the smallest and largest values. This can be any CSS length value, e.g. pt, px, em, %." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:595 +msgid "The text size of the tag with the largest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:589 +msgid "The text size of the tag with the smallest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:570 +msgid "The \"tabindex\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:564 +msgid "The \"name\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:558 +msgid "The \"id\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:552 +msgid "Which category ID is selected." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:540 +msgid "The max depth. This is ignored unless hierarchical is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:536 +#: includes/multisite/template-functions.php:816 +msgid "No Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:414 +#: includes/admin/class-mp-shortcode-builder.php:546 +msgid "Calculates link or post counts by including items from child categories. If show_counts and hierarchical are true this is automatically set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:409 +msgid "Value of n (some number) specifies the depth (or level) to descend in displaying Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:408 +msgid "Show only top level Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:407 +msgid "All Categories displayed in flat (no indent) form (overrides hierarchical)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:406 +msgid "All Categories and child Categories (Default)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:402 +msgid "This parameter controls how many levels in the hierarchy of Categories are to be included in the list of Categories. NOTE: The \"hierarchical\" argument, which is disabled by default, will override the depth argument, unless it is true. When the argument is false, it will display all of the categories. When it is enabled it will use the value in the \"depth\" argument." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:396 +#: includes/admin/class-mp-shortcode-builder.php:1394 +msgid "Sets the number of Categories to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:390 +#: includes/admin/class-mp-shortcode-builder.php:534 +msgid "Set the text to show when no categories are listed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:384 +msgid "Set the title and style of the outer list item. If present but empty, the outer list item will not be displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:378 +#: includes/admin/class-mp-shortcode-builder.php:528 +msgid "Display sub-categories as inner list items (below the parent list item) or inline." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:368 +#: includes/admin/class-mp-shortcode-builder.php:511 +msgid "Exclude category-tree from the results. The parameter include must be empty. If the hierarchical parameter is true, then use exclude instead of exclude_tree." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:354 +msgid "Only include these categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:340 +#: includes/admin/class-mp-shortcode-builder.php:356 +#: includes/admin/class-mp-shortcode-builder.php:370 +#: includes/admin/class-mp-shortcode-builder.php:496 +#: includes/admin/class-mp-shortcode-builder.php:513 +msgid "Select Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:338 +#: includes/admin/class-mp-shortcode-builder.php:494 +msgid "Exclude one or more categories from the results. The parameter include must be empty." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:332 +msgid "Set a URI for an image (usually an rss feed icon) to act as a link to each categories' rss-2 feed. This parameter overrides the feed parameter. There is no default for this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:320 +msgid "Display a link to each category's rss-2 feed and set the link text to display. The default is no text and no feed displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:313 +#: includes/admin/class-mp-shortcode-builder.php:487 +msgid "Any" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:307 +#: includes/admin/class-mp-shortcode-builder.php:481 +msgid "Only display categories that are children of the category identified by this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:301 +msgid "Sets whether a category's description is inserted into the title attribute of the links created (i.e. <a title=\"<em>Category Description</em>\" href=\"...)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:295 +#: includes/admin/class-mp-shortcode-builder.php:475 +msgid "Toggles the display of categories with no posts." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:289 +#: includes/admin/class-mp-shortcode-builder.php:469 +#: includes/admin/class-mp-shortcode-builder.php:1388 +msgid "Toggles the display of the current count of posts in each category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:279 +msgid "Style to display the categories list in. A value of list displays the categories as list items while none generates no special display method (the list items are separated by
    tags)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:269 +#: includes/admin/class-mp-shortcode-builder.php:449 +#: includes/admin/class-mp-shortcode-builder.php:1378 +msgid "Sort order for categories (either ascending or descending)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:259 +#: includes/admin/class-mp-shortcode-builder.php:439 +#: includes/admin/class-mp-shortcode-builder.php:1368 +msgid "Sort categories alphabetically, by unique Category ID, or by the count of posts in that Category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:253 +#: includes/admin/class-mp-shortcode-builder.php:433 +msgid "If a value is entered, causes the display of a link to all categories if the style is set to list." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:219 +msgid "Select an Action" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:217 +msgid "What would you like to do?" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:216 +#: includes/admin/class-mp-shortcode-builder.php:1522 +msgid "Add E-Commerce Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:197 +msgid "Display a list of links to your store pages." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:196 +msgid "Display a link or url to the order status page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:195 +msgid "Display a link or url to the current products list page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:194 +msgid "Display a link or url to the current store page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:193 +msgid "Display a link or url to the current shopping cart page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:192 +msgid "Display the cart widget." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:191 +msgid "Display the full product meta box with price and buy now/add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:190 +msgid "Display the product stock." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:189 +msgid "Display the product SKU number(s)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:188 +msgid "Display the product price (and sale price)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:187 +msgid "Display the buy or add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:186 +msgid "Display the featured image of a given product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:185 +msgid "Display a single product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:184 +msgid "Display a list of products according to preference." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:183 +msgid "Display products related to the one being viewed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:182 +msgid "Display a list of popular products ordered by sales." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:180 +msgid "Display an HTML dropdown of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:179 +msgid "Display an HTML list of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:178 +msgid "Display a cloud or list of your product tags." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:655 +msgid "Setup your payment gateway" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:643 +#: includes/admin/class-mp-setup-wizard.php:649 +msgid "Other Gateways" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:617 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:150 +msgid "Select which calculated shipping methods the customer will be able to choose from." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:601 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:134 +#: includes/public/class-mp-checkout.php:82 +msgid "Shipping Method" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:568 +msgid "I want to charge shipping" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:523 +#: includes/admin/store-settings/class-mp-store-settings-general.php:503 +msgid "Show Price + Tax?" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:507 +msgid "I.e. Taxes, VAT, GST, etc" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:491 +#: includes/admin/store-settings/class-mp-store-settings-general.php:471 +msgid "Current Rates" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:473 +msgid "Default Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:434 +#: includes/admin/class-mp-setup-wizard.php:442 +#: includes/admin/store-settings/class-mp-store-settings-general.php:386 +#: includes/admin/store-settings/class-mp-store-settings-general.php:394 +#: includes/multisite/class-mp-admin-multisite.php:204 +#: includes/multisite/class-mp-admin-multisite.php:212 +msgid "Select a Currency" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:414 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:105 +msgid "Choose Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:411 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:103 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:104 +msgid "All Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:410 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:102 +msgid "These are the countries that you will ship to." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:409 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:101 +msgid "Target Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:401 +msgid "Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:387 +#: includes/admin/store-settings/class-mp-store-settings-general.php:640 +msgid "Zip/Postal Code Label" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:352 +#: includes/admin/store-settings/class-mp-store-settings-general.php:606 +msgid "Select a State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:335 +#: includes/admin/store-settings/class-mp-store-settings-general.php:590 +msgid "Select A Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:332 +#: includes/admin/store-settings/class-mp-store-settings-general.php:587 +msgid "Select a Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:324 +msgid "Location" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:304 +#: includes/admin/class-mp-setup-wizard.php:312 +#: includes/admin/class-mp-store-settings-admin.php:129 +#: includes/admin/class-mp-store-settings-admin.php:262 +msgid "Quick Setup" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:289 +msgid "MarketPress setup is not complete! Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2479 +msgid "Enter your product name here" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2440 +msgid "Select a %s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2426 +msgid "Each product variation needs to have product attributes assigned to it so the system knows how to differentiate one product variation from the other. It is important that you assign a category to this product before choosing any attributes." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2409 +msgid "If you would like this variation to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2320 +msgid "Sale Price (if applicable)" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2281 +msgid "If you would like the description to be different than the main product enter it here." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2229 +msgid "Image" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2202 +#: includes/admin/class-mp-shortcode-builder.php:226 +msgid "Attributes" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2166 +msgid "Create your product variations here. You can reorder variations by using the number to left of each variation, or delete one by clicking the \"x\" to the right of each variation. NOTE: The variation that shows up first in this list will be considered the \"main variation\". The details from this variation will be used in product listings." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2061 +#: includes/admin/class-mp-products-admin.php:2332 +msgid "Value must be less than regular price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2043 +#: includes/admin/class-mp-products-admin.php:2306 +msgid "Regular Price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2023 +#: includes/admin/class-mp-products-admin.php:2286 +msgid "External URL" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1988 +#: includes/admin/class-mp-products-admin.php:2245 +msgid "Enter the quantity that you have available to sell." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1987 +#: includes/admin/class-mp-products-admin.php:2244 +msgid "Inventory Count" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1977 +#: includes/admin/class-mp-products-admin.php:2234 +msgid "Track Inventory?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1871 +msgid "%1$sProduct Images%2$s %3$sAdd images of the product. The first image on the list is the featured image for this product (you can reorder images on the list)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1806 +msgid "Add variations for this product. e.g. If you are selling t-shirts, you can create Color & Size variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1804 +msgid "%3$sAdd variations for%2$s %1$sProduct%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1776 +msgid "This product has a multiple variations %1$s(e.g. Multiple colors, sizes)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1775 +msgid "This is a unique product without variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1700 +msgid "Extra Shipping Cost %1$s(if applicable)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1659 +#: includes/admin/class-mp-products-admin.php:2112 +#: includes/admin/class-mp-products-admin.php:2359 +msgid "Weight" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1636 +#: includes/admin/class-mp-products-admin.php:2098 +#: includes/admin/class-mp-products-admin.php:2416 +msgid "Please enter a valid tax rate" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1531 +msgid "Limit Per Order %1$s(limit the number of the item a shopper can buy per order)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1513 +msgid "SKU %1$s(Stock Keeping Unit)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "%1$sPrice, Inventory & Variants%2$s %3$sSet price, manage inventory and create Product Variants (if appropriate for your product).%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "Product Variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1480 +msgid "External / Affiliate Link" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1471 +msgid "Digital Download" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1470 +msgid "Physical / Tangible Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1464 +msgid "Product Kind %1$s(Physical Product, Digital, etc)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1426 +msgid "Choose Products" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1420 +msgid "If you would like, you can choose specific related products instead of using the ones generated by MarketPress" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1019 +msgid "Changes saved successfully" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:826 +msgid "Option cannot be saved. Try again." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:821 +msgid "Option saved successfully." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:467 +msgid "Img" +msgstr "" + +#: includes/admin/class-mp-product-attributes-list-table.php:57 +msgid "Product attribute(s) deleted successfully." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:162 +msgid "- Create New Variation -" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:144 +msgid "Only lowercase letters and dashes (-) are allowed." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:139 +msgid "If a slug is not entered, it will be generated automatically. Max 32 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:138 +#: includes/admin/class-mp-product-attributes-list-table.php:23 +msgid "Slug" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:130 +msgid "Max 45 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:123 +msgid "Use the numbers on the left to sort. To delete - click the \"X\" to the right of each row." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:122 +msgid "Attribute Options" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:121 +msgid "Add Option" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:105 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:523 +msgid "Sort Order" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:87 +msgid "Alphabetical" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:86 +msgid "ID" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:84 +msgid "Select how the options will be sorted." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:82 +msgid "Sort By" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:75 +msgid "The name of the attribute (e.g. color, size, etc)" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:74 +msgid "Attribute Name" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:69 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Product Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Product Attributes" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:71 +msgid "You can choose to make this page one of the following core store pages." +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:66 +msgid "Network Store Base" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:61 +msgid "Checkout Page" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:52 +msgid "Store Page Settings" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1108 +msgid "Display billing/shipping info for this customer" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1097 +msgid "View order “%s”" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1072 +msgid "Flag as:" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:952 +msgid "Move To Trash" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:948 +msgid " Received" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:927 +msgid "Enter coupon code here" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:812 +msgid "The order status could not be updated due to unexpected error. Please try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:740 +msgid "An invalid bulk action was requested. Please go back and try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:692 +msgid "The order status for order ID %1$s was updated successfully." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:688 +msgid "Order statuses successfully updated." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:530 +msgid "Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:518 +msgid "Actual Shipping Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:513 +msgid "Method Paid For" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:504 +msgid "Amount Collected" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:477 +msgid "DHL" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:408 +msgid "There is no IPN history to show at this time" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:345 +msgid "Type" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:343 +msgid "Gateway" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:301 +#: includes/common/template-functions.php:528 +msgid "Order History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:291 +msgid "IPN History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:283 +msgid "Customer Info" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:279 +msgid "Order Details" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:157 +msgid "All Dates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:320 +msgid "Add Pages to Menu" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:318 +msgid "Add-ons" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:317 +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "User Capabilities" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:316 +#: includes/admin/class-mp-setup-wizard.php:631 +#: includes/admin/store-settings/class-mp-store-settings-payments.php:50 +msgid "Payment Gateways" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:315 +msgid "Shipping Rates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:312 +msgid "Configure" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:309 +#: includes/admin/class-mp-products-admin.php:466 +#: includes/admin/class-mp-shortcode-builder.php:797 +msgid "Tags" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:308 +#: includes/admin/class-mp-products-admin.php:465 +msgid "Categories" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:300 +msgid "Manage" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:297 +msgid "Here's some quick links to manage your store and products." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:288 +msgid "low in stock" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:287 +msgid "%s product" +msgid_plural "%s products" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-dashboard-widgets.php:280 +msgid "received" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:279 +#: includes/admin/class-mp-dashboard-widgets.php:283 +msgid "%s order" +msgid_plural "%s orders" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-dashboard-widgets.php:276 +msgid "Stock & Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:261 +msgid "Last 30 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:256 +msgid "Last 7 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:251 +msgid "Yesterday" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:248 +#: includes/admin/class-mp-dashboard-widgets.php:253 +#: includes/admin/class-mp-dashboard-widgets.php:258 +#: includes/admin/class-mp-dashboard-widgets.php:263 +msgid " Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:246 +msgid "Today" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:241 +msgid "Welcome back! Here's a quick summary of your store's performance." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:196 +#: includes/admin/class-mp-products-admin.php:895 +msgid "No products out of stock." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:136 +#: includes/admin/class-mp-products-admin.php:839 +msgid "Stock Level" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:135 +#: includes/admin/class-mp-products-admin.php:838 +msgid "Variation" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:121 +msgid "Low Stock (%s)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:116 +msgid "Store Management" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:115 +msgid "Store Reports" +msgstr "" + +#: includes/admin/class-mp-ajax.php:579 +#: includes/admin/class-mp-orders-admin.php:520 +#: includes/common/payment-gateways/2checkout.php:370 +#: includes/common/payment-gateways/authorizenet-aim.php:264 +#: includes/common/payment-gateways/mollie.php:93 +#: includes/common/payment-gateways/paymill.php:196 +#: includes/common/payment-gateways/pin.php:190 +#: includes/common/payment-gateways/skrill.php:157 +#: includes/common/payment-gateways/skrill.php:168 +#: includes/common/payment-gateways/wepay.php:143 +#: includes/public/class-mp-checkout.php:404 +msgid "Select One" +msgstr "" + +#: includes/admin/class-mp-ajax.php:511 +msgid "Oops... we could not locate any orders by that ID. Please double check your order ID and try again." +msgstr "" + +#: includes/admin/class-mp-ajax.php:482 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:166 +#: includes/multisite/class-mp-admin-multisite.php:584 +msgid "Edit Page" +msgstr "" + +#: includes/admin/class-mp-ajax.php:346 +msgid "Cancel " +msgstr "" + +#: includes/admin/class-mp-ajax.php:345 +msgid "Save " +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "Edit Description" +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "HTML Markup" +msgstr "" + +#: includes/admin/class-mp-ajax.php:333 +msgid "Plain Text Only" +msgstr "" + +#: includes/admin/class-mp-ajax.php:329 +msgid "Additional Content / Information for this Variation" +msgstr "" + +#: includes/admin/class-mp-ajax.php:317 +#: includes/admin/class-mp-products-admin.php:1762 +msgid "Allow this product to be purchased even if it's out of stock" +msgstr "" + +#: includes/admin/class-mp-ajax.php:313 +#: includes/admin/class-mp-products-admin.php:1711 +msgid "Track Product Inventory" +msgstr "" + +#: includes/admin/class-mp-ajax.php:300 +msgid "Extra Shipping Cost (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:295 +msgid "Ounces:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:294 +msgid "Pounds:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:292 +msgid "Kilograms:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:287 +#: includes/admin/class-mp-products-admin.php:1649 +msgid "Charge Shipping" +msgstr "" + +#: includes/admin/class-mp-ajax.php:273 +#: includes/admin/class-mp-products-admin.php:1623 +#: includes/admin/store-settings/class-mp-store-settings-general.php:454 +msgid "Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:272 +#: includes/admin/class-mp-products-admin.php:1622 +#: includes/admin/class-mp-products-admin.php:2090 +#: includes/admin/class-mp-products-admin.php:2408 +msgid "Special Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:271 +#: includes/admin/class-mp-products-admin.php:1625 +#: includes/admin/class-mp-products-admin.php:2092 +msgid "If you would like this product to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-ajax.php:268 +#: includes/admin/class-mp-products-admin.php:1599 +msgid "Charge Taxes (Special Rate)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:256 +#: includes/admin/class-mp-products-admin.php:1593 +#: includes/admin/class-mp-products-admin.php:2077 +#: includes/admin/class-mp-products-admin.php:2348 +msgid "End Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:255 +#: includes/admin/class-mp-products-admin.php:1589 +#: includes/admin/class-mp-products-admin.php:2072 +msgid "Start Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:1568 +msgid "Enter Sale Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:250 +#: includes/admin/class-mp-products-admin.php:1547 +msgid "Set up a Sale for this Product" +msgstr "" + +#: includes/admin/class-mp-ajax.php:206 includes/admin/class-mp-ajax.php:223 +msgid "Enter " +msgstr "" + +#: includes/admin/class-mp-ajax.php:193 +msgid "Browse" +msgstr "" + +#: includes/admin/class-mp-ajax.php:184 includes/admin/class-mp-ajax.php:192 +msgid "http://" +msgstr "" + +#: includes/admin/class-mp-ajax.php:183 +msgid "External Product URL" +msgstr "" + +#: includes/admin/class-mp-ajax.php:237 +msgid "Limit Per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:177 +#: includes/admin/class-mp-products-admin.php:1520 +msgid "Enter Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:174 +#: includes/admin/class-mp-products-admin.php:1512 +msgid "Enter SKU" +msgstr "" + +#: includes/admin/class-mp-ajax.php:173 +msgid "(Stock Keeping Unit)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:158 +msgid "Remove Image" +msgstr "" + +#: includes/admin/class-mp-ajax.php:74 +msgid "Variation Draft" +msgstr "" + +#: includes/admin/class-mp-admin.php:296 +#: includes/admin/class-mp-dashboard-widgets.php:70 +msgid "Please wait...saving in progress..." +msgstr "" + +#: includes/admin/class-mp-admin.php:295 +#: includes/admin/class-mp-dashboard-widgets.php:69 +msgid "Input is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:294 +#: includes/admin/class-mp-dashboard-widgets.php:68 +msgid "Valid number is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:292 +#: includes/admin/class-mp-dashboard-widgets.php:66 +msgid "Delete %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:291 +#: includes/admin/class-mp-dashboard-widgets.php:65 +msgid "Delete %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:290 +#: includes/admin/class-mp-dashboard-widgets.php:64 +msgid "Update inventory for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:289 +#: includes/admin/class-mp-dashboard-widgets.php:63 +msgid "Update inventory for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:288 +#: includes/admin/class-mp-dashboard-widgets.php:62 +msgid "Update price for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:287 +#: includes/admin/class-mp-dashboard-widgets.php:61 +msgid "Update prices for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:285 +#: includes/admin/class-mp-dashboard-widgets.php:59 +msgid "Creating variations, please wait..." +msgstr "" + +#: includes/admin/class-mp-admin.php:96 +msgid "The following payment gateways have been deprecated, Cubepoints, Bitpay, iDEAL, Skrill, Google Checkout. If you were using one of these gateways, please setup a new payment gateway here." +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:61 +msgid "Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:71 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:71 +#: includes/common/class-mp-gdpr.php:399 includes/common/class-mp-order.php:872 +#: includes/common/helpers.php:164 includes/public/class-mp-checkout.php:1434 +msgid "Shipping Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:66 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:66 +#: includes/common/class-mp-gdpr.php:392 includes/common/class-mp-order.php:864 +#: includes/common/helpers.php:163 includes/public/class-mp-checkout.php:1427 +msgid "Billing Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:61 +msgid "Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:258 +msgid "Shipping Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:256 +msgid "Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:235 +msgid "Payment Method: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:79 +msgid "The dir %s not exist or not writeable" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:239 +msgid "Shop header/logo" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:233 +msgid "Choose a template" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:226 +msgid "Template Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:221 +msgid "Disable automatic creation/attachment of invoices when only free products are ordered" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:220 +msgid "Disable for free products" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:216 +msgid "Attach invoice to" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:214 +msgid "Customer Order Shipped email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:212 +msgid "Customer New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:211 +msgid "Admin New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:206 +msgid "download" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:205 +msgid "How do you want to view the PDF?" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:203 +msgid "Open the PDF in a new browser tab/window" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:202 +msgid "Download the PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:158 +msgid "Export PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:103 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:106 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:109 +msgid "You can't download this order invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:76 +msgid "Invalid Request" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:72 +msgid "Order not exist!" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:67 +msgid "Invalid ID" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1293 +msgid "Coupon added successfully" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1292 +msgid "Please enter a code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1247 +msgid "No end" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1200 +msgid "Valid Dates" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1195 +msgid "Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1027 +msgid "No Coupons found in Trash" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1026 +msgid "No Coupons Found" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1025 +msgid "Search Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1024 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1028 +msgid "View Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1023 +msgid "New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1020 +msgid "Create New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1017 +msgid "Manage Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1002 +msgid "An error occurred while removing your coupon. Please try again." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:964 +msgid "Coupon can't be applied to this cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:951 +msgid "Invalid coupon code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:794 +msgid "Help Text" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:789 +msgid "Form Title" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:783 +msgid "Coupons Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:764 +msgid "End Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:758 +msgid "Does coupon have an end date?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:696 +msgid "Select Products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:688 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:723 +#: includes/common/payment-gateways/paypal-payflow.php:402 +msgid "User" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:638 +msgid "Max Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:636 +msgid "Enter the maximum number of times this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:623 +msgid "Leave blank to allow all other coupons." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:622 +msgid "Select combinable coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:618 +msgid "Can this coupon be combined with other coupons?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:613 +msgid "Apply to each applicable item once per cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:612 +msgid "Apply to each applicable item and quantity ordered" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:609 +msgid "How should the discount amount be applied?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:605 +msgid "Discount Amount" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:604 +msgid "Value must either be a decimal number or a percentage" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:602 +msgid "If you would like to give a percentage-based discount make sure to include the percent (%) symbol. Otherwise, the discount will be applied as a fixed amount off." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:595 +msgid "Letters and Numbers only." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:589 +msgid "Coupon Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:447 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:795 +msgid "More than one code? That's OK! Just be sure to enter one at a time." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:444 +msgid "Apply Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:314 +msgid "Coupon Discounts" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:89 +msgid "1 add-on disabled" +msgid_plural "%s add-ons disabled" +msgstr[0] "" +msgstr[1] "" + +#: includes/addons/class-mp-addons-list-table.php:84 +msgid "1 add-on enabled" +msgid_plural "%s add-ons enabled" +msgstr[0] "" +msgstr[1] "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Disabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Enable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:129 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:67 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:135 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:168 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:202 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:263 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:296 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:330 +msgid "Enabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +msgid "Disable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:34 +msgid "Disable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:33 +msgid "Enable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:21 +#: includes/admin/class-mp-products-admin.php:2280 +#: includes/common/class-mp-product.php:2916 +msgid "Description" +msgstr "" + +#: includes/common/template-functions.php:2889 +#: includes/multisite/template-functions.php:407 +msgid "Popularity (Least Popular - Most Popular)" +msgstr "" + +#: includes/common/template-functions.php:2888 +#: includes/multisite/template-functions.php:406 +msgid "Popularity (Most Popular - Least Popular)" +msgstr "" + +#: includes/common/template-functions.php:2885 +#: includes/multisite/template-functions.php:403 +msgid "Name (Z-A)" +msgstr "" + +#: includes/common/template-functions.php:2884 +#: includes/multisite/template-functions.php:402 +msgid "Name (A-Z)" +msgstr "" + +#: includes/common/template-functions.php:2883 +#: includes/multisite/template-functions.php:401 +msgid "Release Date (Oldest to Latest)" +msgstr "" + +#: includes/common/template-functions.php:2882 +#: includes/multisite/template-functions.php:400 +msgid "Release Date (Latest to Oldest)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:284 +msgid "paid" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "One Time Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Customer Counter" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Daily Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:182 +msgid "For the most accurate rates, please select the appropriate pick up type for your business." +msgstr "" + +#: includes/admin/class-mp-admin.php:374 +msgid "Page saved." +msgstr "" + +#: includes/admin/class-mp-admin.php:370 +msgid "Custom field deleted." +msgstr "" + +#: includes/admin/class-mp-admin.php:369 +msgid "Custom field updated." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:541 +msgid "%s - The payment request expired, - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:536 +msgid "%s - The payment not credited in merchants bitpay account, action required. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:252 +msgid "If enabled, you will recieve an email for each status update on payment." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:240 +msgid "Speed at which the bitcoin transaction registers as \"confirmed\" to the store. This overrides your merchant settings on the Bitpay website." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:238 +msgid "Transaction Speed" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:244 +msgid "Low" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:243 +msgid "Medium" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:242 +msgid "High" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:177 +#: includes/common/payment-gateways/_bitpay.php:517 +#: includes/common/payment-gateways/_bitpay.php:522 +msgid "%s - The payment request is under process. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:175 +#: includes/common/payment-gateways/_bitpay.php:527 +msgid "%s - The payment request has been processed - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:150 +#: includes/common/payment-gateways/_bitpay.php:294 +msgid "Incorrect order invoice, please contact site administrator" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:141 +msgid "We could not verify order invoice details, please try again or contact site administrator for help" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:81 +msgid "Login to Simplify to get your API credentials. Enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:605 +#: includes/common/payment-gateways/paypal-express.php:647 +msgid "Express Checkout is PayPal's premier checkout solution, which streamlines the checkout process for buyers and keeps them on your site after making a purchase. Unlike PayPal Pro, there are no additional fees to use Express Checkout, though you may need to do a free upgrade to a business account. More Info »" +msgstr "" + +#. Plugin URI of the plugin/theme +msgid "https://premium.wpmudev.org/project/e-commerce/" +msgstr "" + +#. Author of the plugin/theme +msgid "WPMU DEV" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:541 +#: includes/admin/class-mp-orders-admin.php:543 +msgid "Tracking Number" +msgstr "" + +#: includes/common/class-mp-order.php:805 +#: includes/common/payment-gateways/stripe.php:336 +#: includes/public/class-mp-checkout.php:402 +msgid "Country" +msgstr "" + +#: includes/common/class-mp-order.php:784 +#: includes/common/payment-gateways/stripe.php:338 +msgid "City" +msgstr "" + +#: includes/common/class-mp-order.php:780 +msgid "Address 2" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:340 +msgid "Address" +msgstr "" + +#: includes/common/class-mp-cart.php:752 includes/common/class-mp-gdpr.php:378 +msgid "Order Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:360 +msgid "Payment Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:347 +msgid "Transaction ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:207 +msgid "The WePay Card Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:186 +#: includes/common/shipping-modules/mp-fedex.php:283 +msgid "Account ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:179 +msgid "Access Token" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:172 +msgid "Client Secret" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:165 +msgid "Client ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:159 +msgid "You must login to WePay to get your API credentials. Make sure to check \"Tokenize credit cards\" option under \"API Keys\" section of your WePay app." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:154 +msgid "When in live mode it is recommended to use SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:148 +msgid "Donation" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:147 +msgid "Event" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:146 +msgid "Personal" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:145 +msgid "Service" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:144 +msgid "Goods" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:141 +msgid "Choose type of payments" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:140 +msgid "Checkout Type" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:134 +msgid "Staging" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:131 +msgid "Choose STAGING if you have registered the app on stage.wepay.com, or PRODUCTION if you registered on www.wepay.com" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:36 +#: includes/common/payment-gateways/wepay.php:299 +msgid "WePay" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:366 +msgid "Rejected - A payment was rejected." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:360 +msgid "Failed - A payment was rejected due to an error." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:342 +msgid "PayWay balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:298 +msgid "Full path of the cacerts.crt file" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:284 +msgid "User Name" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:277 +msgid "Biller Code" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:273 +msgid "Log Directory" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:266 +msgid "Encryption Key" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:60 +msgid "Your PayWay transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:40 +#: includes/common/payment-gateways/_payway.php:41 +msgid "PayWay" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:862 +msgid "You must register this application with PayPal using your business account login to get an Application ID that will work with your API credentials. A bit of a hassle, but worth it! In the near future we will be looking for ways to simplify this process. Register then submit your application while logged in to the developer portal. Note that you do not need an Application ID for testing in sandbox mode. More Information »" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:818 +#: includes/common/payment-gateways/paypal-chained-payments.php:840 +#: includes/common/payment-gateways/paypal-express.php:705 +msgid "You must login to PayPal and create an API signature to get your credentials. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:378 +msgid "Use Payflow payment gateway to accept online payments using your Internet merchant account and processing network. PayPal Payflow Pro is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:595 +msgid "Tags Only" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:594 +msgid "Category Only" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:795 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:593 +msgid "Category & Tags" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:591 +msgid "Relate Products By" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1008 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:455 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:751 +msgid "Right" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1007 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:454 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:749 +msgid "Left" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1009 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:750 +msgid "Center" +msgstr "" + +#: marketpress.php:273 +msgid "Orders from your e-commerce store." +msgstr "" + +#: marketpress.php:231 +msgid "Products for your e-commerce store." +msgstr "" + +#: marketpress.php:222 +msgid "Edit Product" +msgstr "" + +#. Description of the plugin/theme +msgid "The complete WordPress ecommerce plugin - works perfectly with BuddyPress and Multisite too to create a social marketplace, where you can take a percentage! Activate the plugin, adjust your settings then add some products to your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:272 +msgid "Beside" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:271 +msgid "Above" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:268 +msgid "Pin Count" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:261 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:287 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:318 +msgid "All View" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:260 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:286 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:317 +msgid "Single View" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:259 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:285 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:316 +msgid "Off" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:578 +msgid "Related Product Limit" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:681 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1201 +msgid "Applies To" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:685 +msgid "All Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:487 +msgid "The label shown for the tax line item in the cart. Taxes, VAT, GST, etc." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:485 +msgid "Tax Label" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:81 +msgid "Apply" +msgstr "" + +#: includes/admin/class-mp-admin.php:192 +msgid "MarketPress Instructions" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1954 +#: includes/admin/class-mp-products-admin.php:2194 includes/common/data.php:62 +#: includes/common/helpers.php:150 +msgid "Taxes" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1417 +#: includes/common/class-mp-product.php:2900 +msgid "Related Products" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:282 +#: includes/common/shipping-modules/mp-usps.php:316 +msgid "@ Max" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "(3-5 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "Priority Mail Express International Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:92 +msgid "Priority Mail Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:171 +#: includes/common/shipping-modules/mp-pickup.php:247 +msgid "In Store" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:159 +msgid "Pickup Fee" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:141 +msgid "This option allows your customers to indicate that they will pick-up their order at your place of business." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:60 +#: includes/common/shipping-modules/mp-pickup.php:76 +#: includes/common/shipping-modules/mp-pickup.php:176 +msgid "Pickup Instructions" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:24 +#: includes/common/shipping-modules/mp-pickup.php:254 +msgid "Pickup" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping - 0.00" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:256 +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:440 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:309 +msgid "Your Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:301 +msgid "Station" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:300 +msgid "Request Courier" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:299 +msgid "Drop Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:298 +msgid "Business Service Center" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:297 +msgid "Regular Pickup" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:135 +#: includes/common/shipping-modules/mp-fedex.php:264 +msgid "Production" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:207 +msgid "Simplify Commerce by MasterCard" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:104 +msgid "When in live mode, although it is not required, Simplify recommends you have an SSL certificate." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:183 +#: includes/common/payment-gateways/simplify.php:87 +msgid "Public Key" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:175 +#: includes/common/payment-gateways/simplify.php:94 +msgid "Private Key" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:71 +msgid "Simplify helps merchants to accept online payments from Mastercard, Visa, American Express, Discover, JCB, and Diners Club cards. It's that simple. We offer a merchant account and payment gateway in a single, secure package so you can concentrate on what really matters to your business. Only supports USD currently." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:267 +msgid "%1$s" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:151 +msgid "The Simplify Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/simplify.php:18 +msgid "Simplify" +msgstr "" + +#: includes/common/payment-gateways/pin.php:255 +msgid "%1$s Card %2$s" +msgstr "" + +#: includes/common/payment-gateways/pin.php:211 +msgid "The PIN Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:187 +msgid "Selecting a currency other than currency supported by PIN may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/pin.php:164 +msgid "You must login to PIN to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/pin.php:158 +msgid "When in live mode PIN recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/pin.php:45 +#: includes/common/payment-gateways/pin.php:286 +msgid "PIN" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:830 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:534 +#: includes/common/payment-gateways/paypal-express.php:865 +msgid "The payment is pending" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:235 +msgid "The Paymill Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:169 +msgid "You must login to Paymill to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:45 +#: includes/common/payment-gateways/paymill.php:308 +msgid "Paymill" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:90 +msgid "Invalid cardholder" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:89 +msgid "Card is no longer valid or has expired" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:88 +msgid "Please enter a valid Card CVC" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:87 +msgid "Please choose a valid Expiration Date." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:99 +#: includes/common/payment-gateways/skrill.php:100 +msgid "Skrill (Moneybookers)" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:24 +#: includes/common/shipping-modules/mp-weight-rate.php:292 +msgid "Weight Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:303 +msgid "USPS Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:270 +msgid "USPS Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:264 +msgid "USPS Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:145 +msgid "Flat Rate Large" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:140 +msgid "Flat Rate Medium 2" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:135 +msgid "Flat Rate Medium 1" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:130 +msgid "Flat Rate Small" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:118 +msgid "First Class International Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:114 +msgid "Priority Mail International Small Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:112 +msgid "Priority Mail International Medium Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:110 +msgid "Priority Mail International Large Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:108 +msgid "Priority Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:106 +msgid "Express Mail International Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:104 +msgid "Express Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:98 +msgid "Library Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:96 +msgid "Media Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "First-Class Mail Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:90 +msgid "Priority Mail Small Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:88 +msgid "Priority Mail Medium Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +#: includes/common/shipping-modules/mp-usps.php:88 +#: includes/common/shipping-modules/mp-usps.php:90 +#: includes/common/shipping-modules/mp-usps.php:92 +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "(2-4 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +msgid "Priority Mail Large Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "(2-4) days" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "Priority Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "Express Mail Sunday/Holiday Delivery Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:80 +msgid "Express Mail Flat Rate Boxes Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:78 +msgid "Express Mail Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:76 +msgid "Express Mail Sunday/Holiday Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:74 +msgid "Express Mail Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:72 +#: includes/common/shipping-modules/mp-usps.php:74 +#: includes/common/shipping-modules/mp-usps.php:76 +#: includes/common/shipping-modules/mp-usps.php:78 +#: includes/common/shipping-modules/mp-usps.php:80 +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "(1-2 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:72 +msgid "Express Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:67 +#: includes/common/shipping-modules/mp-usps.php:902 +msgid "USPS" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:534 +msgid "UPS (beta)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:166 +msgid "Required if using negotiated rates" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "Worldwide Express Plus" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "(Scheduled)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "Standard" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "(2-5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "Worldwide Expedited" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:54 +msgid "Worldwide Express" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "2nd Day Air AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "(1 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "Next Day Air Early AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "Next Day Air Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "3 Day Select" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:49 +msgid "Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:48 +msgid "2nd Day Air" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "Next Day Air" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:475 +#: includes/common/shipping-modules/mp-ups.php:43 +msgid "UPS" +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:27 +#: includes/common/shipping-modules/mp-table-rate.php:318 +msgid "Table Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:71 +#: includes/common/shipping-modules/mp-table-quantity.php:77 +msgid "Shipping Cost: " +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:70 +#: includes/common/shipping-modules/mp-table-quantity.php:76 +msgid "If quantity is greater than:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:66 +msgid "Each band must be a higher price than the one above it." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:56 +msgid "Number of Bands:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:53 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Each layer must be a higher quantity than the previous." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:51 +msgid "Table Quantity Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:31 +msgid "Table Quantity" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:135 +#: includes/common/shipping-modules/mp-table-rate.php:174 +#: includes/common/shipping-modules/mp-weight-rate.php:189 +msgid "European Union" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:123 +#: includes/common/shipping-modules/mp-table-rate.php:162 +#: includes/common/shipping-modules/mp-weight-rate.php:177 +msgid "United States" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:111 +#: includes/common/shipping-modules/mp-table-rate.php:151 +#: includes/common/shipping-modules/mp-weight-rate.php:166 +msgid "In Country" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:146 +#: includes/common/shipping-modules/mp-table-rate.php:186 +#: includes/common/shipping-modules/mp-weight-rate.php:201 +msgid "International" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:101 +#: includes/common/shipping-modules/mp-table-rate.php:141 +#: includes/common/shipping-modules/mp-weight-rate.php:156 +msgid "Canada" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:92 +#: includes/common/shipping-modules/mp-table-rate.php:132 +#: includes/common/shipping-modules/mp-weight-rate.php:147 +msgid "Hawaii and Alaska" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:83 +#: includes/common/shipping-modules/mp-table-rate.php:123 +#: includes/common/shipping-modules/mp-weight-rate.php:138 +msgid "Lower 48 States" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:64 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping." +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:25 +#: includes/common/shipping-modules/mp-flat-rate.php:223 +msgid "Flat Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:761 +msgid "FedEx (beta)" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Centimeters" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Inches" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1676 +#: includes/admin/class-mp-setup-wizard.php:547 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:166 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +msgid "Kilograms" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:103 +msgid " %1$s - %2$s" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:358 +msgid "Max Weight per Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:356 +msgid "Box Dimensions" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:354 +msgid "Box Name" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:344 +msgid "Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:343 +msgid "For each box defined enter the maximum weight it can contain." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:341 +msgid "Enter your standard box sizes as LengthxWidthxHeight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:386 +#: includes/common/shipping-modules/mp-ups.php:193 +#: includes/common/shipping-modules/mp-usps.php:234 +#: includes/common/shipping-modules/mp-usps.php:338 +msgid "Standard Boxes and Weight Limits" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:328 +msgid "Handling Charge per Interntional Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:294 +msgid "Handling Charge per Domestic Shipment " +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:388 +#: includes/common/shipping-modules/mp-ups.php:196 +#: includes/common/shipping-modules/mp-usps.php:237 +msgid "Add Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "(Next Day)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +msgid "Europe First International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:62 +msgid "International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:61 +#: includes/common/shipping-modules/mp-fedex.php:62 +#: includes/common/shipping-modules/mp-ups.php:54 +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "(1-3 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:61 +msgid "International First" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "(5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "International Economy" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "(2-7 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "Smart Post" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:55 +#: includes/common/shipping-modules/mp-ups.php:49 +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "(1-5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:55 +msgid "Ground Home Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "(1-7 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "Fedex Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:53 +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "(3 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:53 +msgid "Fedex Express Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +#: includes/common/shipping-modules/mp-ups.php:48 +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "(2 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +msgid "Fedex 2 Day" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "(2 Days am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "Fedex 2 Day AM" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "(1 Day)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +msgid "Standard Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "(1 Day am )" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "Priority Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "(1 Day am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "First Overnight" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:476 +#: includes/common/shipping-modules/mp-fedex.php:31 +msgid "FedEx" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:270 +#: includes/common/payment-gateways/simplify.php:179 +#: includes/common/payment-gateways/stripe.php:365 +msgid "%1$s Card ending in %2$s - Expires %3$s" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:259 +#: includes/common/payment-gateways/pin.php:238 +#: includes/common/payment-gateways/simplify.php:171 +msgid "%s Store Purchase - Order ID: %s, Email: %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:266 +msgid "You must login to Stripe to get your API credentials. You can enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:261 +msgid "When in live mode Stripe recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:311 +msgid "The Stripe Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:263 +#: includes/common/payment-gateways/paymill.php:122 +#: includes/common/payment-gateways/stripe.php:222 +msgid "Card Number" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:86 +msgid "Please enter a valid Credit Card Number." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:45 +#: includes/common/payment-gateways/stripe.php:433 +msgid "Stripe" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:750 +msgid "Sets the background color for the payment page. By default, the color is white." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:745 +msgid "Sets the background color for the header of the payment page. By default, the color is white." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:740 +msgid "Sets the border color around the header of the payment page. The border is a 2-pixel perimeter around the header space, which is 750 pixels wide by 90 pixels high. By default, the color is black." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:735 +msgid "URL for an image you want to appear at the top left of the payment page. The image has a maximum size of 750 pixels wide by 90 pixels high. PayPal recommends that you provide an image that is stored on a secure (https) server. If you do not specify an image, the business name is displayed." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:857 +#: includes/common/payment-gateways/paypal-express.php:1131 +msgid "The payment is pending because it is part of an order that has been authorized but not settled." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:853 +#: includes/common/payment-gateways/paypal-express.php:1127 +msgid "The payment is pending because it has been authorized but not settled. You must capture the funds first." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:847 +#: includes/common/payment-gateways/paypal-express.php:1120 +msgid "You denied the payment when it was marked as pending." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:837 +#: includes/common/payment-gateways/paypal-express.php:1108 +msgid "A reversal has occurred on this transaction due to an unknown reason." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:836 +#: includes/common/payment-gateways/paypal-express.php:1107 +msgid "A reversal has occurred on this transaction because you have given the customer a refund." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:835 +#: includes/common/payment-gateways/paypal-express.php:1106 +msgid "A reversal has occurred on this transaction due to a complaint about the transaction from your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:834 +#: includes/common/payment-gateways/paypal-express.php:1105 +msgid "A reversal has occurred on this transaction due to your customer triggering a money-back guarantee." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:833 +#: includes/common/payment-gateways/paypal-express.php:1104 +msgid "A reversal has occurred on this transaction due to a chargeback by your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:1101 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer:" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:826 +#: includes/common/payment-gateways/paypal-express.php:1097 +msgid "A payment has been accepted." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:818 +#: includes/common/payment-gateways/paypal-express.php:1087 +msgid "The transaction has not terminated, e.g. an authorization may be awaiting completion." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:531 +#: includes/common/payment-gateways/paypal-express.php:810 +#: includes/common/payment-gateways/paypal-express.php:1077 +msgid "The payment has failed. This happens only if the payment was made from your customer's bank account." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:806 +#: includes/common/payment-gateways/paypal-express.php:1072 +msgid "An authorization for this transaction has been voided." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:802 +#: includes/common/payment-gateways/paypal-express.php:1067 +msgid "The authorization period for this payment has been reached." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:798 +#: includes/common/payment-gateways/paypal-express.php:1062 +msgid "A reversal has been canceled; for example, when you win a dispute and the funds for the reversal have been returned to you." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:499 +#: includes/common/payment-gateways/paypal-express.php:1163 +msgid "PayPal Express Checkout" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:798 +msgid "Gateway Settings Page Message" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:725 +msgid "Signature" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:506 +#: includes/common/payment-gateways/eway31.php:533 +#: includes/common/shipping-modules/mp-fedex.php:276 +msgid "API Password" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:773 +msgid "Enter a percentage of all store sales to collect as a fee. Decimals allowed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:757 +msgid "Using PayPal Chained Payments allows you as the multisite network owner to collect a predefined fee or percentage of all sales on network MarketPress stores! This is invisible to the customers who purchase items in a store, and all PayPal fees will be charged to the store owner. To use this option you must create API credentials, and you should make all other gateways unavailable or limited above." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:338 +msgid "Please be aware that we will deduct a ?% fee from the total of each transaction in addition to any fees PayPal may charge you. If for any reason you need to refund a customer for an order, please contact us with a screenshot of the refund receipt in your PayPal history as well as the Transaction ID of our fee deduction so we can issue you a refund. Thank you!" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:698 +#: includes/common/payment-gateways/paypal-express.php:149 +msgid "There was a problem connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:470 +#: includes/common/payment-gateways/paypal-express.php:1053 +msgid "There was a problem verifying the IPN string with PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:310 +msgid "There was a problem connecting to PayPal to check the status of your purchase. Please check the status of your order here »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:539 +#: includes/common/payment-gateways/paypal-chained-payments.php:254 +#: includes/common/payment-gateways/paypal-express.php:1139 +msgid "The payment is pending." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:251 +#: includes/common/payment-gateways/paypal-chained-payments.php:531 +#: includes/common/payment-gateways/paypal-express.php:862 +#: includes/common/payment-gateways/paypal-express.php:1136 +msgid "The payment is pending for an unknown reason. For more information, contact PayPal customer service." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:250 +#: includes/common/payment-gateways/paypal-chained-payments.php:530 +#: includes/common/payment-gateways/paypal-express.php:861 +#: includes/common/payment-gateways/paypal-express.php:1135 +msgid "The payment is pending because you are not yet verified. You must verify your account before you can accept this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:249 +#: includes/common/payment-gateways/paypal-chained-payments.php:529 +#: includes/common/payment-gateways/paypal-express.php:860 +#: includes/common/payment-gateways/paypal-express.php:1134 +msgid "The payment is pending because it was made via credit card and you must upgrade your account to Business or Premier status in order to receive the funds. It can also mean that you have reached the monthly limit for transactions on your account." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:248 +#: includes/common/payment-gateways/paypal-chained-payments.php:528 +#: includes/common/payment-gateways/paypal-express.php:859 +#: includes/common/payment-gateways/paypal-express.php:1133 +msgid "The payment is pending because it was made to an email address that is not yet registered or confirmed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:247 +#: includes/common/payment-gateways/paypal-chained-payments.php:527 +#: includes/common/payment-gateways/paypal-express.php:858 +#: includes/common/payment-gateways/paypal-express.php:1132 +msgid "The payment is pending while it is being reviewed by PayPal for risk." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:246 +#: includes/common/payment-gateways/paypal-chained-payments.php:526 +#: includes/common/payment-gateways/paypal-express.php:856 +#: includes/common/payment-gateways/paypal-express.php:1130 +msgid "You do not have a balance in the currency sent, and you do not have your Payment Receiving Preferences set to automatically convert and accept this payment. You must manually accept or deny this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:245 +#: includes/common/payment-gateways/paypal-chained-payments.php:525 +#: includes/common/payment-gateways/paypal-express.php:855 +#: includes/common/payment-gateways/paypal-express.php:1129 +msgid "The payment is pending because you hold a non-U.S. account and do not have a withdrawal mechanism. You must manually accept or deny this payment from your Account Overview." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:244 +#: includes/common/payment-gateways/paypal-chained-payments.php:524 +#: includes/common/payment-gateways/paypal-express.php:854 +#: includes/common/payment-gateways/paypal-express.php:1128 +msgid "The payment is pending because it was made by an eCheck that has not yet cleared." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:243 +#: includes/common/payment-gateways/paypal-chained-payments.php:523 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:236 +#: includes/common/payment-gateways/paypal-chained-payments.php:516 +msgid "The transaction was rejected by the receiver (you)." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:510 +#: includes/common/payment-gateways/paypal-express.php:843 +#: includes/common/payment-gateways/paypal-express.php:1115 +msgid "You refunded the payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:224 +#: includes/common/payment-gateways/paypal-chained-payments.php:504 +msgid "The transaction is in progress." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:212 +#: includes/common/payment-gateways/paypal-chained-payments.php:491 +#: includes/common/payment-gateways/paypal-express.php:814 +#: includes/common/payment-gateways/paypal-express.php:1082 +msgid "The payment has been partially refunded." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:202 +#: includes/common/payment-gateways/paypal-chained-payments.php:481 +msgid "PayPal balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:177 +msgid "There was a problem connecting to PayPal to setup your purchase. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:122 +msgid "Your PayPal transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:50 +#: includes/common/payment-gateways/paypal-chained-payments.php:53 +#: includes/common/payment-gateways/paypal-chained-payments.php:732 +#: includes/common/payment-gateways/paypal-express.php:500 +#: includes/common/payment-gateways/paypal-express.php:938 +msgid "PayPal" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:48 +#: includes/common/payment-gateways/paypal-chained-payments.php:730 +#: includes/common/payment-gateways/paypal-chained-payments.php:756 +#: includes/common/payment-gateways/paypal-chained-payments.php:873 +msgid "PayPal Chained Payments" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:59 +#: includes/common/payment-gateways/paypal-payflow.php:467 +msgid "PayPal Payflow Pro" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:378 +msgid "Chargeback - A payment was reversed due to a chargeback. The funds have been removed from your account balance and returned to the buyer." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:372 +msgid "Failed - The Credit Card or Direct Debit transaction was declined." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:354 +#: includes/common/payment-gateways/skrill.php:366 +msgid "Cancelled - The payment was cancelled manually by the sender in their online account history or was auto-cancelled after 14 days pending." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:360 +msgid "Pending - The payment is pending. It can take 2-3 days for bank transfers to complete." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:349 +#: includes/common/payment-gateways/skrill.php:354 +msgid "Processed - The payment has been completed, and the funds have been added successfully to your Moneybookers account balance." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:189 +msgid "Shown to the customer on the confirmation screen - the end step of the process - a note, confirmation number, or any other message. Line breaks <br> may be used for longer messages." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:188 +msgid "Confirmation Note (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:183 +msgid "The URL of the logo which you would like to appear at the top of the payment form. The logo must be accessible via HTTPS otherwise it will not be shown. For best integration results we recommend that you use a logo with dimensions up to 200px in width and 50px in height." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:182 +msgid "Logo Image (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:177 +msgid "The name of this store, which will be shown on the gateway. If no value is submitted, the account email will be shown as the recipient of the payment." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:176 +msgid "Merchant Name (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:165 +msgid "Language" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:368 +#: includes/common/payment-gateways/authorizenet-aim.php:262 +#: includes/common/payment-gateways/eway.php:363 +#: includes/common/payment-gateways/eway31.php:471 +#: includes/common/payment-gateways/mollie.php:91 +#: includes/common/payment-gateways/paymill.php:193 +#: includes/common/payment-gateways/paypal-chained-payments.php:356 +#: includes/common/payment-gateways/paypal-express.php:688 +#: includes/common/payment-gateways/paypal-payflow.php:432 +#: includes/common/payment-gateways/pin.php:186 +#: includes/common/payment-gateways/skrill.php:152 +#: includes/common/payment-gateways/stripe.php:288 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:104 +msgid "Currency" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:359 +#: includes/common/payment-gateways/skrill.php:143 +msgid "Secret Word" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:261 +msgid "Order ID:" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:234 +msgid "Complete Checkout" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:204 +msgid "Your Moneybookers transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:155 +msgid "This is the email text to send to those who have made manual payment checkouts. You should include your manual payment instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:257 +#: includes/common/payment-gateways/manual-payments.php:128 +msgid "Record payments manually, such as by Cash, Check, or EFT." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:71 +msgid "Manual/Invoice" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:648 +#: includes/common/payment-gateways/manual-payments.php:35 +#: includes/common/payment-gateways/manual-payments.php:36 +msgid "Manual Payment" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:34 +#: includes/common/payment-gateways/manual-payments.php:163 +msgid "Manual Payments" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:288 +msgid "iDEAL Simulator (for testing)" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:287 +msgid "ABN Amro Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:286 +msgid "Friesland Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:285 +msgid "Rabobank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:284 +msgid "ING Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:279 +msgid "Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:270 +msgid "To make it easier to pay for online products and services, the Dutch banking community has developed the iDEAL online payment method. iDEAL allows online payments to be made using online banking in EUR only." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:247 +#: includes/common/payment-gateways/_payway.php:199 +#: includes/common/payment-gateways/manual-payments.php:68 +msgid "Invoiced" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1016 +msgid "Coupon" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:77 +#: includes/common/payment-gateways/_ideal.php:250 +#: includes/common/payment-gateways/_payway.php:202 +msgid "iDEAL" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:76 +msgid "iDEAL (beta)" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:327 +msgid "Merchant Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:293 +#: includes/common/payment-gateways/_payway.php:302 +#: includes/common/payment-gateways/payfast.php:324 +msgid "Merchant ID" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:462 +msgid "eWay Rapid 3.0 Payments lets merchants recieve credit card payments through eWay without need for users to leave the shop. Note this gateway requires a valid SSL certificate configured for this site." +msgstr "" + +#: includes/common/payment-gateways/eway.php:452 +msgid "There was a problem connecting to eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/eway.php:432 +#: includes/common/payment-gateways/eway.php:437 +msgid "The url of the image can be hosted on your website and pass the secure https:// path of the image to be displayed at the top of the website. This is the second image block on the webpage and is restricted to 960px X 65px. A default secure image is used if none is supplied." +msgstr "" + +#: includes/common/payment-gateways/eway.php:431 +#: includes/common/payment-gateways/eway.php:436 +msgid "Company Logo (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:427 +msgid "The page footer text can be customised and populated below the customer's order details. Useful for contact information." +msgstr "" + +#: includes/common/payment-gateways/eway.php:426 +msgid "Page Footer (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:421 +msgid "Page Description (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:417 +#: includes/common/payment-gateways/eway.php:422 +msgid "This value is used to populate the browsers title bar at the top of the screen." +msgstr "" + +#: includes/common/payment-gateways/eway.php:416 +msgid "Page Title (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:412 +msgid "This will be displayed as the company the customer is purchasing from, including this is highly recommended." +msgstr "" + +#: includes/common/payment-gateways/eway.php:411 +msgid "Company Name" +msgstr "" + +#: includes/common/payment-gateways/eway.php:394 +msgid "Customer ID" +msgstr "" + +#: includes/common/payment-gateways/eway.php:381 +#: includes/common/payment-gateways/eway31.php:488 +msgid "Live API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway.php:371 +#: includes/common/payment-gateways/eway31.php:479 +msgid "Gateway Mode" +msgstr "" + +#: includes/common/payment-gateways/eway.php:354 +msgid "The Hosted Page is a webpage hosted on eWAY's side eliminating the need for merchants to capture, transmit or store credit card numbers. At the checkout time the merchant automatically redirects the customer to the Hosted Page where they would enter their details and have the transaction processed. Upon completion of the transaction the customer is redirected back to the MarketPress checkout confirmation page." +msgstr "" + +#: includes/common/payment-gateways/eway.php:314 +msgid "There was a problem with your credit card information: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:300 +msgid "Paid - The card has been processed - %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:253 +msgid "There was a problem setting up the transaction with eWay: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:245 +#: includes/common/payment-gateways/eway.php:289 +msgid "There was a problem parsing the response from eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:159 +#: includes/common/payment-gateways/eway.php:189 +#: includes/common/payment-gateways/paypal-chained-payments.php:634 +#: includes/common/payment-gateways/paypal-express.php:322 +#: includes/common/payment-gateways/paypal-express.php:473 +msgid "%s Store Purchase - Order ID: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:147 +#: includes/common/payment-gateways/eway.php:462 +msgid "eWay Shared Payments" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:214 +msgid "This is the email text to send to those who have made CubePoints checkouts. You should include your CubePoints instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:212 +#: includes/common/payment-gateways/free_orders.php:188 +#: includes/common/payment-gateways/manual-payments.php:154 +msgid "Order Confirmation Email" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:207 +#: includes/common/payment-gateways/manual-payments.php:149 +msgid "Confirmation User Instructions" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:202 +#: includes/common/payment-gateways/manual-payments.php:144 +msgid "User Instructions" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:198 +#: includes/common/payment-gateways/free_orders.php:170 +#: includes/common/payment-gateways/manual-payments.php:139 +msgid "Enter a public name for this payment method that is displayed to users - No HTML" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:532 +#: includes/common/payment-gateways/_cubepoints.php:196 +#: includes/common/payment-gateways/free_orders.php:169 +#: includes/common/payment-gateways/manual-payments.php:138 +msgid "Method Name" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:187 +msgid "Accept CubePoints as payment(requires the CubePoints plugin)." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:140 +msgid "Sorry, but you do not appear to have enough points to complete this purchase!" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:124 +msgid "%s Store Purchase" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:79 +#: includes/common/payment-gateways/_cubepoints.php:171 +msgid "Your current points: " +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:133 +#: includes/common/payment-gateways/_cubepoints.php:197 +msgid "CubePoints" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:344 +msgid "Authorize.net AIM Checkout" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:331 +msgid "Custom API URL" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:332 +msgid "Many other gateways have Authorize.net API emulators. To use one of these gateways input their API post url here." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:322 +msgid "Request a delimited response from the payment gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:316 +msgid "Security: MD5 Hash" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:317 +msgid "The payment gateway generated MD5 hash value that can be used to authenticate the transaction response. Not needed because responses are returned using an SSL connection." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:306 +msgid "Customer Receipt Email Footer" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:296 +msgid "Customer Receipt Email Header" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:297 +#: includes/common/payment-gateways/paypal-payflow.php:446 +msgid "This text will appear as the header of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:282 +msgid "Encapsulation Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:283 +msgid "Authorize.net default is blank. Otherwise, get this from your credit card processor. If the transactions are going through, but getting strange responses, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:273 +msgid "Optional settings to control advanced options" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:224 +#: includes/common/payment-gateways/authorizenet-aim.php:272 +msgid "Advanced Settings" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:253 +msgid "Transaction Key" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:246 +msgid "Login ID" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:396 +msgid "Gateway Credentials" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:221 +msgid "Authorize.net AIM is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway. USD is the only currency supported by this gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:205 +msgid "There was a problem finalizing your purchase. %s Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:519 +#: includes/common/payment-gateways/paypal-chained-payments.php:218 +#: includes/common/payment-gateways/paypal-chained-payments.php:498 +#: includes/common/payment-gateways/paypal-express.php:822 +#: includes/common/payment-gateways/paypal-express.php:1092 +msgid "The payment has been completed, and the funds have been added successfully to your account balance." +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:233 +msgid "Please enter a valid credit card security code" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:224 +#: includes/public/class-mp-checkout.php:867 +msgid "Please enter a valid credit card number" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:221 +msgid "Please enter your credit card number" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:217 +msgid "Please enter your credit card security code" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:213 +msgid "Please select your credit card expiration date." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:299 +#: includes/common/payment-gateways/authorizenet-aim.php:50 +#: includes/common/payment-gateways/eway.php:148 +#: includes/common/payment-gateways/eway.php:298 +#: includes/common/payment-gateways/eway31.php:267 +#: includes/common/payment-gateways/paymill.php:46 +#: includes/common/payment-gateways/paypal-express.php:972 +#: includes/common/payment-gateways/paypal-payflow.php:60 +#: includes/common/payment-gateways/pin.php:46 +#: includes/common/payment-gateways/simplify.php:19 +#: includes/common/payment-gateways/stripe.php:46 +#: includes/common/payment-gateways/wepay.php:37 +msgid "Credit Card" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:49 +msgid "Authorize.net Checkout" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:156 +#: includes/common/payment-gateways/stripe.php:293 +msgid "Selecting a currency other than that used for your store may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:352 +msgid "Seller ID" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:340 +#: includes/common/payment-gateways/_ideal.php:311 +#: includes/common/payment-gateways/authorizenet-aim.php:234 +#: includes/common/payment-gateways/eway.php:376 +#: includes/common/payment-gateways/payfast.php:315 +#: includes/common/payment-gateways/paypal-chained-payments.php:368 +#: includes/common/payment-gateways/paypal-express.php:699 +#: includes/common/payment-gateways/paypal-payflow.php:391 +msgid "Live" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:339 +#: includes/common/payment-gateways/authorizenet-aim.php:233 +#: includes/common/payment-gateways/eway.php:375 +#: includes/common/payment-gateways/paypal-chained-payments.php:367 +#: includes/common/payment-gateways/paypal-express.php:698 +#: includes/common/payment-gateways/paypal-payflow.php:390 +#: includes/common/shipping-modules/mp-fedex.php:263 +msgid "Sandbox" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:336 +#: includes/common/payment-gateways/_ideal.php:307 +#: includes/common/payment-gateways/authorizenet-aim.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:365 +#: includes/common/payment-gateways/paypal-express.php:695 +#: includes/common/payment-gateways/paypal-payflow.php:387 +#: includes/common/payment-gateways/wepay.php:130 +#: includes/common/shipping-modules/mp-fedex.php:260 +msgid "Mode" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:288 +#: includes/common/payment-gateways/mijireh.php:242 +#: includes/common/payment-gateways/mollie.php:212 +msgid "The order has been received" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:74 +#: includes/common/payment-gateways/2checkout.php:75 +#: includes/common/payment-gateways/2checkout.php:435 +msgid "2Checkout" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:306 +msgid "Confirm" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:218 +#: includes/common/class-mp-cart.php:974 includes/common/class-mp-cart.php:1354 +#: includes/common/template-functions.php:918 +msgid "Checkout" +msgstr "" + +#: includes/common/template-functions.php:207 +msgid "Check Order Status" +msgstr "" + +#: includes/common/template-functions.php:235 +msgid "View Products" +msgstr "" + +#: includes/common/template-functions.php:263 +msgid "Visit Store" +msgstr "" + +#: includes/common/template-functions.php:2912 +#: includes/multisite/template-functions.php:448 +msgid "Order By" +msgstr "" + +#: includes/common/template-functions.php:2887 +#: includes/multisite/template-functions.php:405 +msgid "Price (High to Low)" +msgstr "" + +#: includes/common/template-functions.php:2886 +#: includes/multisite/template-functions.php:404 +msgid "Price (Low to High)" +msgstr "" + +#: includes/common/template-functions.php:2881 +#: includes/multisite/template-functions.php:399 +msgid "Default" +msgstr "" + +#: includes/common/template-functions.php:2858 +msgid "Show All" +msgstr "" + +#: includes/common/class-mp-product.php:2048 +msgid "View Larger Image »" +msgstr "" + +#: includes/common/class-mp-product.php:979 +msgid "Out of Stock" +msgstr "" + +#: includes/common/template-functions.php:148 +msgid "Price: " +msgstr "" + +#: includes/multisite/template-functions.php:833 +msgid "No Tags" +msgstr "" + +#: includes/common/template-functions.php:3162 +msgid "Uncategorized" +msgstr "" + +#: includes/common/class-mp-cart.php:569 includes/common/class-mp-order.php:604 +#: includes/common/helpers.php:115 +msgid "Download" +msgstr "" + +#: includes/common/class-mp-cart.php:1353 +msgid "Empty Cart" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:291 +#: includes/common/payment-gateways/paypal-express.php:718 +#: includes/common/payment-gateways/paypal-payflow.php:423 +#: includes/common/shipping-modules/mp-ups.php:158 +#: includes/public/class-mp-checkout.php:1254 +#: includes/public/class-mp-checkout.php:1383 +msgid "Password" +msgstr "" + +#: includes/common/payment-gateways/eway.php:387 +#: includes/common/payment-gateways/paypal-express.php:711 +#: includes/common/shipping-modules/mp-usps.php:185 +#: includes/public/class-mp-checkout.php:1249 +msgid "Username" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:437 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:790 +msgid "Have a coupon code?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:321 +#: includes/admin/class-mp-orders-admin.php:526 +#: includes/common/class-mp-cart.php:592 +msgid "Remove" +msgstr "" + +#: includes/admin/class-mp-ajax.php:316 +msgid "Quantity:" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2140 +#: includes/admin/class-mp-products-admin.php:2387 +#: includes/common/shipping-modules/class-mp-shipping-api.php:507 +msgid "Extra Shipping Cost" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:403 +msgid "Choose a Shipping Method:" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1691 +#: includes/admin/class-mp-products-admin.php:2131 +#: includes/admin/class-mp-products-admin.php:2378 +#: includes/common/shipping-modules/class-mp-shipping-api.php:228 +msgid "Ounces" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1684 +#: includes/admin/class-mp-products-admin.php:2123 +#: includes/admin/class-mp-products-admin.php:2369 +#: includes/admin/class-mp-setup-wizard.php:546 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:165 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +#: includes/common/shipping-modules/class-mp-shipping-api.php:227 +msgid "Pounds" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:226 +msgid "Product Weight:" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:214 +msgid "Weight (Kilograms)" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:82 +msgid "Number of Categories:" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:72 +msgid "Product Count" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:20 +#: includes/admin/class-mp-product-attributes-admin.php:129 +#: includes/admin/class-mp-product-attributes-list-table.php:22 +#: includes/admin/class-mp-products-admin.php:2216 +#: includes/admin/class-mp-shortcode-builder.php:628 +#: includes/admin/class-mp-shortcode-builder.php:1415 +#: includes/admin/widgets/ms-global-categories.php:70 +#: includes/common/shipping-modules/mp-fedex.php:395 +#: includes/common/shipping-modules/mp-ups.php:202 +#: includes/common/shipping-modules/mp-usps.php:243 +#: includes/public/class-mp-checkout.php:314 +msgid "Name" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:67 +msgid "Order Categories By:" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:24 +#: includes/admin/widgets/ms-global-categories.php:50 +msgid "Global Product Categories" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:15 +msgid "Global Product Category List" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:13 +msgid "Displays a network-wide HTML list of product categories from network MarketPress stores." +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:24 +#: includes/admin/widgets/ms-global-tag-cloud.php:45 +msgid "Global Product Tags" +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:15 +msgid "Global Product Tag Cloud" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:947 +#: includes/admin/widgets/ms-global-product-list.php:173 +msgid "Excerpt" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:169 +msgid "Content To Show:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:140 +msgid "Limit To Product Tag:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:132 +msgid "Limit To Product Category:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:72 +msgid "Global Products" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:16 +msgid "Global Product List" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:14 +msgid "Shows a customizable global list of products from network MarketPress stores." +msgstr "" + +#: includes/common/class-mp-product.php:974 +#: includes/multisite/template-functions.php:731 +msgid "Buy Now »" +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:13 +msgid "Displays global most used product tags in cloud format from network MarketPress stores." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:438 +msgid "Theme Permissions" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:402 +#: includes/multisite/class-mp-admin-multisite.php:448 +msgid "No Access" +msgstr "" + +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:120 +msgid "Pro Site Level" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:401 +#: includes/multisite/class-mp-admin-multisite.php:447 +msgid "All Can Use" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:390 +msgid "Gateway Permissions" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:375 +msgid "Select a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:350 +msgid "Global Gateway" +msgstr "" + +#. Plugin Name of the plugin/theme +msgid "MarketPress" +msgstr "" + +#: includes/admin/widgets/product-tag-cloud.php:7 +msgid "Your most used product tags in cloud format from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/categories.php:79 +msgid "Show hierarchy" +msgstr "" + +#: includes/admin/widgets/categories.php:76 +#: includes/admin/widgets/ms-global-categories.php:92 +msgid "Show product counts" +msgstr "" + +#: includes/admin/widgets/categories.php:73 +msgid "Show as dropdown" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:710 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:736 +#: includes/admin/widgets/categories.php:30 +msgid "Select Category" +msgstr "" + +#: includes/admin/widgets/categories.php:7 +msgid "A list or dropdown of product categories from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/product-list.php:250 +msgid "Show Buy Button" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:183 +#: includes/admin/widgets/product-list.php:244 +msgid "Show Price" +msgstr "" + +#: includes/admin/widgets/product-list.php:241 +msgid "Show Excerpt" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:155 +#: includes/admin/widgets/product-list.php:238 +msgid "Thumbnail Size:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:153 +#: includes/admin/widgets/product-list.php:237 +msgid "Show Thumbnail" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:147 +#: includes/admin/widgets/product-list.php:233 +msgid "Display Settings" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:136 +#: includes/admin/widgets/ms-global-product-list.php:144 +#: includes/admin/widgets/product-list.php:230 +msgid "Enter the Slug" +msgstr "" + +#: includes/admin/widgets/product-list.php:228 +#: includes/common/template-functions.php:894 +msgid "Tag" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:686 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:712 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:739 +#: includes/admin/class-mp-shortcode-builder.php:796 +#: includes/admin/widgets/product-list.php:227 +#: includes/common/template-functions.php:886 +#: includes/common/template-functions.php:2907 +msgid "Category" +msgstr "" + +#: includes/admin/widgets/product-list.php:226 +msgid "No Filter" +msgstr "" + +#: includes/admin/widgets/product-list.php:224 +msgid "Taxonomy Filter:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:108 +#: includes/admin/widgets/product-list.php:209 +msgid "Order Products By:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:101 +#: includes/admin/widgets/product-list.php:206 +msgid "Number of Products:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:98 +#: includes/admin/widgets/product-list.php:204 +msgid "List Settings" +msgstr "" + +#: includes/admin/widgets/product-list.php:177 +msgid "Our Products" +msgstr "" + +#: includes/admin/widgets/product-list.php:144 +#: includes/common/template-functions.php:2070 +#: includes/common/template-functions.php:2347 +#: includes/multisite/template-functions.php:303 +#: includes/multisite/template-functions.php:623 +msgid "No Products" +msgstr "" + +#: includes/admin/widgets/product-list.php:8 +msgid "Product List" +msgstr "" + +#: includes/admin/widgets/product-list.php:7 +msgid "Shows a customizable list of products from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/cart.php:75 includes/admin/widgets/categories.php:82 +#: includes/admin/widgets/product-list.php:253 +#: includes/admin/widgets/product-tag-cloud.php:57 +msgid "Only show on store pages" +msgstr "" + +#: includes/admin/widgets/cart.php:65 +#: includes/admin/widgets/ms-global-product-list.php:92 +#: includes/admin/widgets/product-list.php:200 +msgid "Custom Text:" +msgstr "" + +#: includes/admin/widgets/cart.php:64 includes/admin/widgets/categories.php:69 +#: includes/admin/widgets/ms-global-categories.php:59 +#: includes/admin/widgets/ms-global-product-list.php:87 +#: includes/admin/widgets/ms-global-tag-cloud.php:49 +#: includes/admin/widgets/product-list.php:199 +#: includes/admin/widgets/product-tag-cloud.php:49 +msgid "Title:" +msgstr "" + +#: includes/admin/widgets/cart.php:7 +msgid "Shows dynamic shopping cart contents along with a checkout button for your MarketPress store." +msgstr "" + +#: includes/admin/widgets/product-tag-cloud.php:8 +msgid "Product Tag Cloud" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:539 +#: includes/admin/class-mp-setup-wizard.php:575 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:163 +msgid "Measurement System" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:616 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:149 +msgid "Select Shipping Options" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:596 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:129 +msgid "Calculated Options" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:582 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:115 +msgid "No Shipping" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:110 +msgid "EU" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:109 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:93 +msgid "All" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:92 +msgid "Select:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:185 +msgid "Store Pages" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:223 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:256 +msgid "Order Shipped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:60 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:95 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:128 +#: marketpress.php:266 +msgid "New Order" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:314 +msgid "Email Notifications" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:59 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:200 +msgid "Products List" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:58 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:190 +msgid "Store Base" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:108 +#: includes/admin/class-mp-shortcode-builder.php:635 +#: includes/admin/class-mp-shortcode-builder.php:708 +#: includes/admin/class-mp-shortcode-builder.php:875 +#: includes/admin/class-mp-shortcode-builder.php:1319 +#: includes/admin/class-mp-shortcode-builder.php:1422 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:526 +#: includes/admin/widgets/ms-global-categories.php:78 +#: includes/admin/widgets/ms-global-product-list.php:127 +#: includes/admin/widgets/product-list.php:221 +msgid "Ascending" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:109 +#: includes/admin/class-mp-shortcode-builder.php:636 +#: includes/admin/class-mp-shortcode-builder.php:709 +#: includes/admin/class-mp-shortcode-builder.php:876 +#: includes/admin/class-mp-shortcode-builder.php:1320 +#: includes/admin/class-mp-shortcode-builder.php:1423 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:525 +#: includes/admin/widgets/ms-global-categories.php:75 +#: includes/admin/widgets/ms-global-product-list.php:124 +#: includes/admin/widgets/product-list.php:220 +msgid "Descending" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:637 +#: includes/admin/class-mp-shortcode-builder.php:695 +#: includes/admin/class-mp-shortcode-builder.php:862 +#: includes/admin/class-mp-shortcode-builder.php:1306 +#: includes/admin/class-mp-shortcode-builder.php:1424 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:518 +#: includes/admin/widgets/ms-global-product-list.php:121 +#: includes/admin/widgets/product-list.php:218 +msgid "Random" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:694 +#: includes/admin/class-mp-shortcode-builder.php:861 +#: includes/admin/class-mp-shortcode-builder.php:1305 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:517 +#: includes/admin/widgets/ms-global-product-list.php:119 +#: includes/admin/widgets/product-list.php:216 +msgid "Product Price" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:693 +#: includes/admin/class-mp-shortcode-builder.php:860 +#: includes/admin/class-mp-shortcode-builder.php:1304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:516 +#: includes/admin/widgets/ms-global-product-list.php:117 +#: includes/admin/widgets/product-list.php:215 +msgid "Number of Sales" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:692 +#: includes/admin/class-mp-shortcode-builder.php:859 +#: includes/admin/class-mp-shortcode-builder.php:1303 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:515 +#: includes/admin/widgets/product-list.php:214 +msgid "Product Author" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:691 +#: includes/admin/class-mp-shortcode-builder.php:858 +#: includes/admin/class-mp-shortcode-builder.php:1302 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:514 +#: includes/admin/widgets/product-list.php:213 +msgid "Product ID" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:690 +#: includes/admin/class-mp-shortcode-builder.php:857 +#: includes/admin/class-mp-shortcode-builder.php:1301 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:513 +#: includes/admin/widgets/ms-global-product-list.php:113 +#: includes/admin/widgets/product-list.php:212 +msgid "Publish Date" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:430 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:726 +msgid "Width" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:439 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:735 +msgid "Height" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:88 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:402 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:698 +msgid "Custom" +msgstr "" + +#: includes/common/class-mp-product.php:179 +#: includes/common/class-mp-product.php:992 +#: includes/common/class-mp-product.php:1000 +#: includes/multisite/template-functions.php:579 +msgid "Buy Now" +msgstr "" + +#: includes/common/class-mp-product.php:175 +#: includes/common/class-mp-product.php:990 +#: includes/common/class-mp-product.php:998 +msgid "Add To Cart" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:807 +msgid "Store Style" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1021 +msgid "Edit Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupon.php:580 +#: includes/admin/class-mp-ajax.php:238 +#: includes/admin/class-mp-products-admin.php:1532 +msgid "Unlimited" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1198 +msgid "Remaining Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1197 +msgid "Used" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:752 +#: includes/admin/class-mp-products-admin.php:2343 +msgid "Start Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:598 +msgid "Coupon Code" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:444 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:284 +msgid "Save Changes" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:57 +#: includes/admin/class-mp-shortcode-builder.php:716 +#: includes/admin/class-mp-shortcode-builder.php:727 +#: includes/admin/class-mp-shortcode-builder.php:883 +#: includes/admin/class-mp-shortcode-builder.php:894 +#: includes/admin/class-mp-shortcode-builder.php:946 +#: includes/admin/class-mp-shortcode-builder.php:956 +#: includes/admin/class-mp-shortcode-builder.php:1006 +#: includes/admin/class-mp-shortcode-builder.php:1327 +#: includes/admin/class-mp-shortcode-builder.php:1338 +#: includes/admin/store-settings/class-mp-store-settings-general.php:357 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:270 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:108 +#: includes/admin/widgets/ms-global-product-list.php:172 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:94 +msgid "None" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:352 +msgid "Google Analytics Ecommerce Tracking" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:310 +msgid "This option turns MarketPress into more of a product listing plugin, disabling shopping carts, checkout, and order management. This is useful if you simply want to list items you can buy in a store somewhere else, optionally linking the \"Buy Now\" buttons to an external site. Some examples are a car dealership, or linking to songs/albums in itunes, or linking to products on another site with your own affiliate links." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:304 +msgid "Whether or not customers must be registered and logged in to checkout. (Not recommended: Enabling this can lower conversions)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:258 +msgid "How many times may a customer download a file they have purchased? (It's best to set this higher than one in case they have any problems downloading)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:257 +msgid "Maximum Downloads" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:298 +msgid "This will set the product to draft if inventory of all variations is gone." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:288 +msgid "At what low stock count do you want to be warned for products you have enabled inventory tracking for?" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:208 +#: includes/admin/store-settings/class-mp-store-settings-general.php:287 +msgid "Inventory Warning Threshold" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:282 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:542 +msgid "Miscellaneous Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:429 +#: includes/multisite/class-mp-admin-multisite.php:247 +msgid "Show Decimal in Prices" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:451 +#: includes/admin/store-settings/class-mp-store-settings-general.php:403 +#: includes/multisite/class-mp-admin-multisite.php:221 +msgid "Currency Symbol Position" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:444 +#: includes/admin/store-settings/class-mp-store-settings-general.php:396 +msgid "Store Currency" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:429 +#: includes/admin/store-settings/class-mp-store-settings-general.php:381 +msgid "Currency Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:516 +msgid "Please see your local tax laws. Note if this is enabled and a downloadable only cart, rates will be the default for your base location." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:529 +msgid "Apply Tax to Downloadable Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:498 +msgid "Enabling this option allows you to enter and show all prices inclusive of tax, while still listing the tax total as a line item in shopping carts. Please see your local tax laws." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:497 +msgid "Enter Prices Inclusive of Tax?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:492 +msgid "Please see your local tax laws. Most areas charge tax on shipping fees." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:491 +msgid "Apply Tax To Shipping Fees?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:674 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:565 +#: includes/common/payment-gateways/authorizenet-aim.php:291 +#: includes/common/payment-gateways/authorizenet-aim.php:326 +#: includes/common/payment-gateways/payfast.php:347 +msgid "No" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:675 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:759 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:512 +#: includes/admin/class-mp-setup-wizard.php:518 +#: includes/admin/class-mp-setup-wizard.php:524 +#: includes/admin/class-mp-setup-wizard.php:530 +#: includes/admin/class-mp-setup-wizard.php:564 +#: includes/admin/store-settings/class-mp-store-settings-general.php:232 +#: includes/admin/store-settings/class-mp-store-settings-general.php:299 +#: includes/admin/store-settings/class-mp-store-settings-general.php:305 +#: includes/admin/store-settings/class-mp-store-settings-general.php:311 +#: includes/admin/store-settings/class-mp-store-settings-general.php:317 +#: includes/admin/store-settings/class-mp-store-settings-general.php:328 +#: includes/admin/store-settings/class-mp-store-settings-general.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:341 +#: includes/admin/store-settings/class-mp-store-settings-general.php:348 +#: includes/admin/store-settings/class-mp-store-settings-general.php:367 +#: includes/admin/store-settings/class-mp-store-settings-general.php:493 +#: includes/admin/store-settings/class-mp-store-settings-general.php:499 +#: includes/admin/store-settings/class-mp-store-settings-general.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:556 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:375 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:381 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:387 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:474 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:493 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:532 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:574 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:606 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:664 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:670 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:677 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:683 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:689 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:763 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:774 +#: includes/common/payment-gateways/_bitpay.php:250 +#: includes/common/payment-gateways/_bitpay.php:257 +#: includes/common/payment-gateways/_bitpay.php:264 +#: includes/common/payment-gateways/authorizenet-aim.php:290 +#: includes/common/payment-gateways/authorizenet-aim.php:325 +#: includes/common/payment-gateways/free_orders.php:160 +#: includes/common/payment-gateways/payfast.php:346 +#: includes/common/payment-gateways/paymill.php:162 +#: includes/common/payment-gateways/paypal-payflow.php:441 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-checkbox.php:22 +msgid "Yes" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:492 +#: includes/admin/store-settings/class-mp-store-settings-general.php:472 +msgid "%s Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:467 +#: includes/admin/store-settings/class-mp-store-settings-general.php:449 +msgid "Tax Settings" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:370 +#: includes/admin/store-settings/class-mp-store-settings-general.php:624 +msgid "Base Zip/Postal Code" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:354 +#: includes/admin/store-settings/class-mp-store-settings-general.php:608 +msgid "Base State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:589 +msgid "Base Country" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:582 +msgid "Location Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:195 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:800 +#: includes/multisite/class-mp-admin-multisite.php:172 +msgid "General Settings" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1945 +#: includes/admin/class-mp-products-admin.php:2185 +#: includes/admin/class-mp-store-settings-admin.php:111 +#: includes/admin/class-mp-store-settings-admin.php:266 +msgid "General" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:242 +msgid "Importers" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +#: includes/admin/class-mp-store-settings-admin.php:234 +msgid "Payments" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:313 +#: includes/admin/class-mp-store-settings-admin.php:112 +#: includes/admin/class-mp-store-settings-admin.php:222 +msgid "Presentation" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:916 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1015 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1018 +#: includes/admin/class-mp-dashboard-widgets.php:305 marketpress.php:702 +msgid "Coupons" +msgstr "" + +#: includes/admin/class-mp-admin.php:251 +msgid "Download »" +msgstr "" + +#: includes/admin/class-mp-admin.php:245 +#: includes/admin/class-mp-exporter-orders.php:170 +msgid "All Statuses" +msgstr "" + +#: includes/admin/class-mp-admin.php:209 +#: includes/admin/class-mp-exporter-orders.php:150 +#: includes/admin/class-mp-exporter-orders.php:178 +msgid "Export Orders" +msgstr "" + +#: includes/admin/class-mp-admin.php:228 +msgid "Show all dates" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:947 +msgid "Change Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:287 +msgid "Order Notes" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:478 +msgid "Other" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:205 +msgid "Subtotal" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:84 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:87 +#: includes/admin/class-mp-products-admin.php:1737 +#: includes/common/class-mp-cart.php:1409 +#: includes/common/class-mp-product.php:559 +msgid "Quantity" +msgstr "" + +#: includes/common/helpers.php:93 +msgid "Item" +msgstr "" + +#: includes/common/class-mp-order.php:1050 +msgid "Current Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:297 +msgid "Order Actions" +msgstr "" + +#: includes/common/class-mp-product.php:1084 +msgid "More Info »" +msgstr "" + +#: includes/common/class-mp-product.php:2313 +msgid "Low Product Inventory Notification" +msgstr "" + +#: includes/common/class-mp-order.php:338 includes/common/data.php:154 +msgid "New Order Notification: ORDERID" +msgstr "" + +#: includes/common/helpers.php:259 +msgid "Your payment for this order is complete." +msgstr "" + +#: includes/common/helpers.php:261 +msgid "Your payment for this order is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/helpers.php:256 +msgid "Payment Total:" +msgstr "" + +#: includes/common/helpers.php:253 +msgid "Transaction ID:" +msgstr "" + +#: includes/common/helpers.php:249 +msgid "Payment Type:" +msgstr "" + +#: includes/common/helpers.php:246 +msgid "Payment Method:" +msgstr "" + +#: includes/common/helpers.php:242 +msgid "Order Notes:" +msgstr "" + +#: includes/common/helpers.php:237 +msgid "Special Instructions:" +msgstr "" + +#: includes/common/helpers.php:232 +msgid "Tracking Number:" +msgstr "" + +#: includes/common/helpers.php:223 includes/common/helpers.php:226 +#: includes/common/helpers.php:228 +#: includes/common/shipping-modules/class-mp-shipping-api.php:406 +#: includes/common/shipping-modules/class-mp-shipping-api.php:428 +msgid "Shipping Method:" +msgstr "" + +#: includes/common/helpers.php:168 +msgid "No shipping required for this order." +msgstr "" + +#: includes/common/helpers.php:155 +msgid "Order Total:" +msgstr "" + +#: includes/common/class-mp-order.php:1025 +msgid "Taxes:" +msgstr "" + +#: includes/common/class-mp-order.php:1032 includes/common/helpers.php:144 +msgid "Shipping:" +msgstr "" + +#: includes/public/class-mp-checkout.php:367 +msgid "Street address, P.O. box, company name, c/o" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:314 +msgid "Shipping Info" +msgstr "" + +#: includes/public/class-mp-public.php:740 +msgid "Whoops, there was a problem loading up this file for your download. Please contact us for help." +msgstr "" + +#: includes/public/class-mp-public.php:683 +msgid "Sorry, our records show you've downloaded this file %d out of %d times allowed. Please contact us if you still need help." +msgstr "" + +#: includes/public/class-mp-public.php:634 +msgid "Sorry, your order has been marked as unpaid." +msgstr "" + +#: includes/public/class-mp-public.php:629 +msgid "Sorry, the link is invalid for this download." +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:15 +#: includes/admin/class-mp-products-admin.php:1172 +msgid "Cheatin’ uh?" +msgstr "" + +#: includes/public/class-mp-public.php:407 +#: includes/public/class-mp-short-codes.php:128 +msgid "Please enter a valid email address." +msgstr "" + +#: includes/admin/class-mp-ajax.php:191 +#: includes/admin/class-mp-products-admin.php:1821 +#: includes/admin/class-mp-products-admin.php:2010 +#: includes/admin/class-mp-products-admin.php:2267 +msgid "File URL" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1842 +msgid "External Link" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2177 +msgid "Add Variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:126 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:289 +msgid "Inventory" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:438 +#: includes/admin/class-mp-products-admin.php:578 +#: includes/admin/class-mp-products-admin.php:1552 +#: includes/admin/class-mp-products-admin.php:2053 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:134 +msgid "Sale Price" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "Variation Name" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1931 +msgid "Product Details" +msgstr "" + +#: includes/admin/class-mp-product-attributes-list-table.php:33 +msgid "Delete" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1057 +msgid "Trashed" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:231 +#: includes/admin/class-mp-orders-admin.php:1015 +#: includes/common/class-mp-order.php:1052 includes/common/helpers.php:97 +msgid "Total" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1196 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:210 +#: includes/admin/class-mp-orders-admin.php:1014 +msgid "Discount" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:221 +#: includes/admin/class-mp-orders-admin.php:1013 +#: includes/common/payment-gateways/_ideal.php:148 +#: includes/common/payment-gateways/_payway.php:134 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:108 +msgid "Tax" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:216 +#: includes/admin/class-mp-orders-admin.php:1012 +#: includes/admin/class-mp-products-admin.php:1958 +#: includes/admin/class-mp-products-admin.php:2198 +#: includes/admin/class-mp-store-settings-admin.php:114 +#: includes/admin/class-mp-store-settings-admin.php:230 +#: includes/common/class-mp-cart.php:717 includes/common/helpers.php:168 +#: includes/common/payment-gateways/_ideal.php:137 +#: includes/common/payment-gateways/_payway.php:116 +#: includes/public/class-mp-checkout.php:1304 +msgid "Shipping" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1011 +msgid "Items" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1010 +msgid "From" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:154 +#: includes/admin/class-mp-orders-admin.php:1009 +#: includes/common/class-mp-gdpr.php:370 +msgid "Order Date" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1008 +#: includes/common/class-mp-gdpr.php:366 +#: includes/common/template-functions.php:2134 +msgid "Order ID" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:22 +#: includes/admin/class-mp-orders-admin.php:1007 +msgid "Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1155 +msgid "N/A" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:243 +#: includes/admin/class-mp-products-admin.php:464 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:142 +msgid "Sales" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:463 +msgid "Stock" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:85 +#: includes/admin/class-mp-ajax.php:176 includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:434 +#: includes/admin/class-mp-products-admin.php:462 +#: includes/admin/class-mp-products-admin.php:576 +#: includes/admin/class-mp-products-admin.php:1519 +#: includes/admin/class-mp-products-admin.php:1569 +#: includes/admin/class-mp-products-admin.php:1950 +#: includes/admin/class-mp-products-admin.php:2059 +#: includes/admin/class-mp-products-admin.php:2190 +#: includes/admin/class-mp-products-admin.php:2330 +#: includes/common/class-mp-cart.php:1415 includes/common/helpers.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:130 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:276 +msgid "Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:173 +#: includes/admin/class-mp-products-admin.php:461 +#: includes/admin/class-mp-products-admin.php:1972 +#: includes/admin/class-mp-products-admin.php:2224 +msgid "SKU" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:459 +#: includes/admin/class-mp-products-admin.php:1793 +#: includes/admin/class-mp-products-admin.php:1805 +#: includes/admin/class-mp-products-admin.php:2163 +msgid "Variations" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:83 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:86 +#: includes/admin/class-mp-dashboard-widgets.php:134 +#: includes/admin/class-mp-products-admin.php:458 +#: includes/admin/class-mp-products-admin.php:837 +#: includes/admin/class-mp-shortcode-builder.php:689 +#: includes/admin/class-mp-shortcode-builder.php:856 +#: includes/admin/class-mp-shortcode-builder.php:1300 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:512 +#: includes/admin/widgets/ms-global-product-list.php:115 +#: includes/admin/widgets/product-list.php:211 +msgid "Product Name" +msgstr "" + +#: includes/common/template-functions.php:2575 +msgid "Categorized in " +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:305 +#: includes/common/payment-gateways/free_orders.php:176 +msgid "Payment Information" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:167 +#: includes/admin/class-mp-orders-admin.php:432 +#: includes/admin/class-mp-pages-admin.php:62 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:227 +#: includes/common/class-mp-gdpr.php:374 +#: includes/common/template-functions.php:175 +#: includes/common/template-functions.php:926 +msgid "Order Status" +msgstr "" + +#. translators: %s: orders closed +#: marketpress.php:327 +msgid "Closed (%s)" +msgid_plural "Closed (%s)" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:249 +#: includes/admin/class-mp-orders-admin.php:375 +#: includes/admin/class-mp-orders-admin.php:951 +#: includes/admin/class-mp-orders-admin.php:1053 +#: includes/admin/class-mp-orders-admin.php:1065 +#: includes/common/class-mp-gdpr.php:330 +#: includes/common/class-mp-order.php:1019 marketpress.php:325 +msgid "Closed" +msgstr "" + +#. translators: %s: shipped orders +#: marketpress.php:320 +msgid "Shipped (%s)" +msgid_plural "Shipped (%s)" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:248 +#: includes/admin/class-mp-orders-admin.php:376 +#: includes/admin/class-mp-orders-admin.php:950 +#: includes/admin/class-mp-orders-admin.php:1049 +#: includes/admin/class-mp-orders-admin.php:1064 +#: includes/common/class-mp-gdpr.php:329 +#: includes/common/class-mp-order.php:1002 marketpress.php:318 +msgid "Shipped" +msgstr "" + +#. translators: %s: paid orders +#: marketpress.php:313 +msgid "Paid (%s)" +msgid_plural "Paid (%s)" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:247 +#: includes/admin/class-mp-orders-admin.php:377 +#: includes/admin/class-mp-orders-admin.php:949 +#: includes/admin/class-mp-orders-admin.php:1045 +#: includes/admin/class-mp-orders-admin.php:1063 +#: includes/common/class-mp-gdpr.php:328 +#: includes/common/payment-gateways/2checkout.php:294 +#: includes/common/payment-gateways/_cubepoints.php:130 +#: includes/common/payment-gateways/authorizenet-aim.php:193 +#: includes/common/payment-gateways/free_orders.php:91 +#: includes/common/payment-gateways/mijireh.php:248 +#: includes/common/payment-gateways/paymill.php:273 +#: includes/common/payment-gateways/paypal-express.php:933 +#: includes/common/payment-gateways/paypal-express.php:967 +#: includes/common/payment-gateways/pin.php:258 +#: includes/common/payment-gateways/simplify.php:181 +#: includes/common/payment-gateways/stripe.php:368 +#: includes/common/payment-gateways/wepay.php:269 marketpress.php:311 +msgid "Paid" +msgstr "" + +#. translators: %s: orders received +#: marketpress.php:306 +msgid "Received (%s)" +msgid_plural "Received (%s)" +msgstr[0] "" +msgstr[1] "" + +#: includes/admin/class-mp-admin.php:246 +#: includes/admin/class-mp-orders-admin.php:378 +#: includes/admin/class-mp-orders-admin.php:1041 +#: includes/admin/class-mp-orders-admin.php:1062 +#: includes/common/class-mp-gdpr.php:327 includes/common/class-mp-order.php:995 +#: includes/common/payment-gateways/payfast.php:244 marketpress.php:304 +msgid "Received" +msgstr "" + +#: marketpress.php:268 +msgid "Search Orders" +msgstr "" + +#: marketpress.php:267 +msgid "View Order" +msgstr "" + +#: marketpress.php:262 +msgid "Order" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:301 +#: includes/admin/class-mp-orders-admin.php:989 marketpress.php:261 +msgid "Orders" +msgstr "" + +#: marketpress.php:228 +msgid "No Products found in Trash" +msgstr "" + +#: marketpress.php:227 +msgid "No Products Found" +msgstr "" + +#: marketpress.php:226 +msgid "Search Products" +msgstr "" + +#: marketpress.php:225 marketpress.php:229 +msgid "View Product" +msgstr "" + +#: marketpress.php:224 +msgid "New Product" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1022 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:258 +#: marketpress.php:223 +msgid "Edit" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1019 +msgid "Create New" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:687 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:698 +#: marketpress.php:217 +msgid "Product" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:307 +#: includes/common/template-functions.php:173 +#: includes/common/template-functions.php:179 +#: includes/common/template-functions.php:902 +#: includes/multisite/template-functions.php:82 marketpress.php:216 +#: marketpress.php:219 +msgid "Products" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:118 +#: includes/admin/widgets/product-tag-cloud.php:46 +#: includes/multisite/class-mp-admin-multisite.php:548 +msgid "Product Tags" +msgstr "" + +#: includes/common/template-functions.php:2906 +#: includes/multisite/template-functions.php:449 +msgid "Product Category" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:117 +#: includes/admin/widgets/categories.php:8 +#: includes/admin/widgets/categories.php:18 +#: includes/multisite/class-mp-admin-multisite.php:539 +msgid "Product Categories" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:332 +#: includes/common/template-functions.php:872 marketpress.php:218 +msgid "Store" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:60 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:209 +#: includes/admin/widgets/cart.php:8 includes/admin/widgets/cart.php:56 +#: includes/common/template-functions.php:174 +#: includes/common/template-functions.php:811 +msgid "Shopping Cart" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:110 +#: includes/admin/class-mp-store-settings-admin.php:218 +msgid "Store Settings" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:128 marketpress.php:607 +msgid "Settings" +msgstr "" + +#: includes/common/data.php:178 includes/common/data.php:190 +msgid "Your Order Has Been Shipped! (ORDERID)" +msgstr "" + +#: includes/common/data.php:159 includes/common/data.php:166 +#: includes/common/data.php:172 +msgid "Your Order Confirmation (ORDERID)" +msgstr "" + +#: includes/common/data.php:148 +msgid "

    Thank you for your order! We appreciate your business, and please come back often to check out our new products.

    " +msgstr "" + +#: includes/common/data.php:147 +msgid "

    You are almost done! Please do a final review of your order to make sure everything is correct then click the \"Confirm Payment\" button.

    " +msgstr "" + +#: includes/common/data.php:145 +msgid "

    Please enter your shipping information in the form below to proceed with your order.

    " +msgstr "" + +#: includes/common/data.php:143 +msgid "

    If you have any questions about your order please do not hesitate to contact us.

    " +msgstr "" + +#: includes/common/data.php:106 +msgid "tag" +msgstr "" + +#: includes/common/data.php:105 +msgid "category" +msgstr "" + +#: includes/common/data.php:104 +msgid "order-status" +msgstr "" + +#: includes/common/data.php:103 +msgid "shopping-cart" +msgstr "" + +#: includes/common/data.php:102 +msgid "products" +msgstr "" + +#. Translators: change default slugs here +#: includes/common/data.php:101 +msgid "store" +msgstr "" \ No newline at end of file diff --git a/languages/mp-vi.mo b/languages/mp-vi.mo new file mode 100644 index 0000000000000000000000000000000000000000..7e297b79b8944b8a2aed6708a65054b2a4cebf81 GIT binary patch literal 1357 zcma))&uf%N7{|vNTUfNxAYw)BL%>7rzMI|k2f9fF*(4g8q)W32f{2~G?__t(o0(rTz`Vd+=tjJ@wGP#E-!&cVOPOVz?q(X3;YiDBDf5` z0#Ae0j~F`%a`0pDd+;xC1v~~mILO!l_y{}!Zh@bJe}HGeH{fSrUtibnICvZO70`fB zz%RhuA;$W_bD+~V0{^Q(yCjs&Qxr=p@)RoxV?LH)AXOtz3!&B~ zPr~|aY>CT|#^o$#V2Qa2JX@gBf3p!Q-t0Akx_nJ^H3$=LL6=C(JFoN#!h`1tQ zj5gFV+J_+L)z+~gpPQgU181Xw0@XsnBSC&s_=~+$BLZnVP9)WWMxKDIX%la7sS5iq zFdSKfZ>pOV9a{HiM}Bf`rG&6NS7B@c;rd(CENM#-aDG*$#O zW4RR(jp{JuhRvZt8h!f4`&KN=NNVMc;=DrTV(F4sDtpB;6|Yn-p08ZI@Kq5{Zfas` z%$q~2;aj0np_r>`h*j3Bw_6Cb;=Ubhh3Li*8pll}?8t0=+`GKzXSj+Mgz?6duif=j z=<>X@xmp+-9(v>2EJYPkt&SOul!mCg9VrgwZhF@RE|yzuDs(;6w&td3uv|D_DCH)( zYQ($&5zF$<+;pyH^j+awZz9+eJjKnT=tkw(?oV0rkV9sc{76B%g&8Qb>h6jneEB6$ z^>mAqYNo4svf0jt8^=PSK&;ku7UI%%h1*A25^gr%9qc~FdHlbVubb&M+-&;m5?O>l zYt!!Imusk$uBryBqF(2C&4>8(xx$rl)g-G^_+-gb7wK%1?W{RRBQ%@Lk|&bxXUQgo z>F=Gi3He#F!D-&Py&L1XSi-^m-J;Br6$mgK-d#Zwe*irREvKt)=aL~define( 'DOMPDF_ENABLE_HTML5PARSER', true ); to the wp-config.php file." +msgstr "" + +#: includes/public/class-mp-checkout.php:723 +msgid "Invalid Email" +msgstr "" + +#: includes/public/class-mp-checkout.php:721 +#: includes/public/class-mp-checkout.php:729 +msgid "This field is required" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:804 +msgid "This option changes the built-in css styles for store pages. For a custom css style, save your css file with the /* MarketPress Style: Your CSS Theme Name Here */ header line in the \"%s\" folder and it will appear in this list so you may select it. You should select \"None\" if you don't wish to use custom CSS styles or if you are using default theme templates or custom theme templates and css to make your own completely unique store design. For more information on custom theme templates click here »." +msgstr "" + +#: includes/public/class-mp-public.php:421 +#: includes/public/class-mp-short-codes.php:142 +msgid "Please enter a value greater than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:420 +#: includes/public/class-mp-short-codes.php:141 +msgid "Please enter a value less than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:419 +#: includes/public/class-mp-short-codes.php:140 +msgid "Please enter a value between {0} and {1}." +msgstr "" + +#: includes/public/class-mp-public.php:418 +#: includes/public/class-mp-short-codes.php:139 +msgid "Please enter a value between {0} and {1} characters long." +msgstr "" + +#: includes/public/class-mp-public.php:417 +#: includes/public/class-mp-short-codes.php:138 +msgid "Please enter at least {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:416 +#: includes/public/class-mp-short-codes.php:137 +msgid "Please enter no more than {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:415 +#: includes/public/class-mp-short-codes.php:136 +msgid "Please enter a value with a valid extension." +msgstr "" + +#: includes/public/class-mp-public.php:414 +#: includes/public/class-mp-short-codes.php:135 +msgid "Please enter the same value again." +msgstr "" + +#: includes/public/class-mp-public.php:413 +#: includes/public/class-mp-short-codes.php:134 +msgid "Please enter a valid credit card number." +msgstr "" + +#: includes/public/class-mp-public.php:412 +#: includes/public/class-mp-short-codes.php:133 +msgid "Please enter only digits." +msgstr "" + +#: includes/public/class-mp-public.php:411 +#: includes/public/class-mp-short-codes.php:132 +msgid "Please enter a valid number." +msgstr "" + +#: includes/public/class-mp-public.php:410 +#: includes/public/class-mp-short-codes.php:131 +msgid "Please enter a valid date (ISO)." +msgstr "" + +#: includes/public/class-mp-public.php:409 +#: includes/public/class-mp-short-codes.php:130 +msgid "Please enter a valid date." +msgstr "" + +#: includes/public/class-mp-public.php:408 +#: includes/public/class-mp-short-codes.php:129 +msgid "Please enter a valid URL." +msgstr "" + +#: includes/public/class-mp-public.php:406 +#: includes/public/class-mp-short-codes.php:127 +msgid "Please fix this field." +msgstr "" + +#: includes/public/class-mp-checkout.php:1287 +#: includes/public/class-mp-public.php:405 +#: includes/public/class-mp-short-codes.php:126 +msgid "This field is required." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:810 +msgid "None - Without Special CSS-styles" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:809 +msgid "Default - Using Default CSS-styles" +msgstr "" + +#: marketpress.php:739 +msgid "Enable multiple downloads per product" +msgstr "" + +#: marketpress.php:738 +msgid "Multiple Downloads" +msgstr "" + +#: includes/public/class-mp-checkout.php:715 +msgid "Invalid Zip Code" +msgstr "" + +#: includes/common/template-functions.php:2126 +msgid "Guest Email" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:195 +msgid "There was a problem finalizing your purchase. Please re-enter your credit card information and try again" +msgstr "" + +#: includes/common/class-mp-cart.php:565 includes/common/class-mp-order.php:600 +#: includes/common/helpers.php:111 +msgid "Download %1$s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:331 +msgid "Export products to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:328 +msgid "The import process uses the WordPress importer plugin." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:326 +msgid "Import / Export Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:325 +msgid "Export settings to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:324 +msgid "Import configuration" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:320 +msgid "Use the text below to export to a new installation. Or paste in the new configuration to import." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:318 +msgid "Import / Export Settings" +msgstr "" + +#. translators: URL to wp-admin/import.php +#: includes/admin/store-settings/class-mp-store-settings-import.php:266 +msgid "This importer is not installed. Please install importers from the main site." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:261 +msgid "Install Now" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:260 +msgid "Install %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:240 +msgid "Run Importer" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:239 +msgid "Run %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:258 +msgid "Import/Export" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1199 +msgid "Requires Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:737 +msgid "Optionally limit the user to some categories" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:671 +msgid "Should this coupon only be available to logged in users?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:670 +msgid "Require Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:655 +msgid "Mimimum number of products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:653 +msgid "Enter the minimum number of products in the cart that this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:648 +msgid "Can this coupon be limited to a number of products in the cart?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:334 +msgid "Add all values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:265 +msgid "Set as default variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:154 +msgid "Set Default" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:150 +msgid "More Info" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:40 +msgid "MarketPress - Quick Setup" +msgstr "" + +#: includes/public/class-mp-checkout.php:1399 +msgid "Proceed to checkout and create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1241 +#: includes/public/class-mp-checkout.php:1245 +msgid "Register account" +msgstr "" + +#: includes/public/class-mp-checkout.php:1233 +msgid "Register as customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:765 +msgid "

    Oops!

    Looks like you haven't added anything your cart. Let's go shopping!

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:763 +msgid "

    Oops!

    The cart is disabled.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing Information" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:214 +msgid "Global Currency" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:198 +msgid "Global Store Currency" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:507 +msgid "There are no shipping services available for this type of package in your location." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:168 +msgid "Using this USPS Shipping calculator requires requesting an Ecommerce API Username and Password. Get your free set of credentials here ». The password is no longer used for the API, just the username which you should enter below. The USPS test site has not yet been updated and currently doesn't work - you should just request activating your credentials with USPS and go live." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:339 +msgid "ZIP Code" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:334 +msgid "Last name" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:333 +msgid "First name" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:150 +msgid "These are the manual payment instructions to display on the order confirmation screen. TOTAL will be replaced with the order total and ORDERID will be replaced with Order ID." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:240 +msgid "You must login to Authorize.net merchant dashboard to obtain the API login ID and API transaction key. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:327 +msgid "
    1. Set the \"Return Method\" within Site Management to Header Redirect and set the \"Return URL\" to %s
    2. Set your notifications url to %s
    " +msgstr "" + +#: includes/common/data.php:191 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Also, digital downloads included in your order are now ready to be downloaded. Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:185 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order is now available to download! Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:184 +msgid "Your Order Is Ready To Be Downloaded! (ORDERID)" +msgstr "" + +#: includes/common/data.php:179 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:173 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received, your digital goods are ready to be downloaded and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:167 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received and your digital goods are ready to be downloaded. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:160 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +" Your order has been received, and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information: \n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/class-mp-product.php:638 +msgid "You can not add more items to cart." +msgstr "" + +#: includes/common/class-mp-product.php:635 +msgid "You can only add {0} to cart." +msgstr "" + +#: includes/common/class-mp-product.php:625 +msgid "This product has an order limit of %d." +msgstr "" + +#: includes/common/class-mp-order.php:1454 +msgid "Shipped: tracking code: %s" +msgstr "" + +#: includes/common/class-mp-order.php:1000 +#: includes/common/class-mp-order.php:1012 +msgid "Finished" +msgstr "" + +#: includes/common/class-mp-order.php:858 +msgid "Contact Details" +msgstr "" + +#: includes/common/class-mp-order.php:339 includes/common/data.php:155 +msgid "" +"A new order (ORDERID) was created in your store:\n" +"\n" +" ORDERINFOSKU\n" +"\n" +" SHIPPINGINFO\n" +"\n" +" PAYMENTINFO\n" +"\n" +msgstr "\n" + +#: includes/common/class-mp-cart.php:1858 +msgid "Add again" +msgstr "" + +#: includes/common/class-mp-cart.php:1852 +msgid "was removed from Shopping Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1242 +#: includes/public/class-mp-short-codes.php:160 +msgid "Cart update notice: this item has a limit per order or you have reached the stock limit." +msgstr "" + +#: includes/admin/widgets/product-list.php:235 +msgid "Show Only Featured Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:533 +msgid "If enabled, users won't be able to filter products per category and/or to order by release date/name/price." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:531 +msgid "Hide Products Filter?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:353 +msgid "Notification to registration email instead of billing email?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:322 +msgid "Order Shipped - Mixed orders (with both digital and physical products)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:289 +msgid "Order Shipped - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:224 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:194 +msgid "New Order - Mixed" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:161 +msgid "New Order - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:115 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:243 +msgid "Mixed orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:110 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:238 +msgid "Digital downloads orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:105 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:233 +msgid "Physical orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:96 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed.
    For orders placed with manual payment, emails set here will be overriden by the one configured in manual payments settings, under payments settings page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:89 +msgid "Customer Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:47 +msgid "Admin Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:566 +msgid "Only contact details" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:565 +msgid "Full billing info" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:561 +msgid "Details Collection" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:548 +msgid "Digital Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:515 +msgid "Apply Tax to Digital Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:236 +msgid "product (default)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:231 +msgid "If you are experiencing conflicts with other e-commerce plugins change this setting. This will change the internal post type of all your products. Please note that changing this option may break 3rd party themes or plugins." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1203 +msgid "Hide details" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1202 +msgid "Show all changes" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1184 +msgid "Version %s" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1161 +msgid "Current" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1131 +msgid "%s changelog" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:952 +msgid "We did not find any data for this plugin or theme..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:285 +msgid "Activate WPMU DEV Dashboard" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:279 +msgid "Just one more step - activate the WPMU DEV Dashboard plugin and you're all done!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:277 +msgid "Important updates are available for your WPMU DEV plugins/themes. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:273 +msgid "Just one more step to enable updates and support for %s!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:271 +msgid "Important updates are available for %s. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:264 +msgid "activate" +msgstr "" + +#: includes/admin/class-mp-admin.php:398 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:248 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:289 +msgid "Dismiss" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:247 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:288 +msgid "Saving..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:244 +msgid "Install Plugin" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:238 +msgid "Almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:236 +msgid "Important updates are available for your WPMU DEV plugins/themes. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:232 +msgid "%s is almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:230 +msgid "Important updates are available for %s. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:223 +msgid "install" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1428 +msgid "Sets the number of Tags to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1289 +msgid "How many products to display in the product list if \"paginate\" is set to false." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:739 +#: includes/admin/class-mp-shortcode-builder.php:906 +#: includes/admin/class-mp-shortcode-builder.php:1350 +msgid "Grid" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:735 +#: includes/admin/class-mp-shortcode-builder.php:902 +#: includes/admin/class-mp-shortcode-builder.php:1346 +msgid "Products will be displayed as list or grid." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:206 +msgid "Display a cloud or list of your global product tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:205 +msgid "Display a list of your global categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:204 +msgid "Display a list or grid of your global products." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:181 +msgid "Display a list of featured products." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1451 +msgid "Is Featured?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1444 +msgid "Featured Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:581 +#: includes/admin/class-mp-products-admin.php:1580 +msgid "% discount" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:579 +msgid "OR" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:460 +#: includes/admin/class-mp-products-admin.php:586 +#: includes/admin/widgets/product-list.php:217 +msgid "Featured" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:536 +#: includes/admin/class-mp-orders-admin.php:538 +msgid "Tracking Link" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:508 +msgid "Shipping Tax" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:356 +msgid "Shipping Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:352 +msgid "Taxes Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:349 +msgid "Products Total" +msgstr "" + +#: includes/admin/class-mp-ajax.php:366 +msgid "Oops! You entered an invalid username/email and or password." +msgstr "" + +#: includes/admin/class-mp-ajax.php:254 +msgid "Percentage Discount" +msgstr "" + +#: includes/admin/class-mp-ajax.php:234 +msgid "Limit the Amount of Items per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:214 +msgid "Unused Attributes" +msgstr "" + +#: includes/admin/class-mp-admin.php:82 +msgid "Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-admin.php:79 +msgid "MarketPress setup is not complete! Once you've completed this quick setup wizard you'll have a fully working online store - exciting! " +msgstr "" + +#: marketpress.php:263 +msgctxt "mp_order" +msgid "Add New" +msgstr "" + +#: marketpress.php:184 +msgctxt "product_tag" +msgid "Product Tag" +msgstr "" + +#: marketpress.php:183 +msgctxt "product_tag" +msgid "Product Tags" +msgstr "" + +#: marketpress.php:150 +msgctxt "product_category" +msgid "Product Category" +msgstr "" + +#: marketpress.php:149 +msgctxt "product_category" +msgid "Product Categories" +msgstr "" + +#. Author URI of the plugin/theme +msgid "http://premium.wpmudev.org" +msgstr "" + +#: marketpress.php:729 +msgid "Invoice PDF" +msgstr "" + +#: marketpress.php:712 +msgid "Grant access to themes and gateways depending on the user's Pro Site level" +msgstr "" + +#: marketpress.php:711 +msgid "Pro Sites" +msgstr "" + +#: marketpress.php:703 +msgid "Offer and accept coupon codes" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:687 +msgid "Install %s Pages" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:682 +msgid "Welcome to %s – Install pages required by the plugin automatically." +msgstr "" + +#: marketpress.php:668 +msgid "Your pages were created successfully." +msgstr "" + +#: marketpress.php:436 +msgid "Add a Product" +msgstr "" + +#: marketpress.php:271 +msgid "Parent Order" +msgstr "" + +#: marketpress.php:270 +msgid "No orders found in trash" +msgstr "" + +#: marketpress.php:269 +msgid "No orders found" +msgstr "Không tìm thấy đơn hàng" + +#: marketpress.php:265 +msgid "Edit Order" +msgstr "" + +#: marketpress.php:264 +msgid "Add New Order" +msgstr "" + +#: marketpress.php:220 marketpress.php:221 +msgid "Add New Product" +msgstr "" + +#: marketpress.php:197 +msgid "No product tags found" +msgstr "" + +#: marketpress.php:196 +msgid "Choose from the most used product tags" +msgstr "" + +#: marketpress.php:195 +msgid "Add or remove product tags" +msgstr "" + +#: marketpress.php:194 +msgid "Separate product tags with commas" +msgstr "" + +#: marketpress.php:193 +msgid "Search Product Tags" +msgstr "" + +#: marketpress.php:192 +msgid "Parent Product Tag:" +msgstr "" + +#: marketpress.php:191 +msgid "Parent Product Tag" +msgstr "" + +#: marketpress.php:190 +msgid "New Product Tag Name" +msgstr "" + +#: marketpress.php:189 +msgid "Add New Product Tag" +msgstr "" + +#: marketpress.php:188 +msgid "Update Product Tag" +msgstr "" + +#: marketpress.php:187 +msgid "View Product Tag" +msgstr "" + +#: marketpress.php:186 +msgid "Edit Product Tag" +msgstr "" + +#: marketpress.php:185 +msgid "All Product Tags" +msgstr "" + +#: marketpress.php:163 +msgid "No product categories found" +msgstr "" + +#: marketpress.php:162 +msgid "Choose from the most used product categories" +msgstr "" + +#: marketpress.php:161 +msgid "Add or remove product categories" +msgstr "" + +#: marketpress.php:160 +msgid "Separate product categories with commas" +msgstr "" + +#: marketpress.php:159 +msgid "Search Product Categories" +msgstr "" + +#: marketpress.php:158 +msgid "Parent Product Category:" +msgstr "" + +#: marketpress.php:157 +msgid "Parent Product Category" +msgstr "" + +#: marketpress.php:156 +msgid "New Product Category Name" +msgstr "" + +#: marketpress.php:155 +msgid "Add New Product Category" +msgstr "" + +#: marketpress.php:154 +msgid "Update Product Category" +msgstr "" + +#: marketpress.php:153 +msgid "View Product Category" +msgstr "" + +#: marketpress.php:152 +msgid "Edit Product Category" +msgstr "" + +#: marketpress.php:151 +msgid "All Product Categories" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Please fix the %s1 and then try submitting the form again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Oops! The form contains %s1 which %s2 been highlighted below." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:660 +msgid "have" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:659 +msgid "has" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:651 +msgid "Value must be less than {0}" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:650 +msgid "Please enter only letters and numbers" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:539 +msgid "Due to prolonged inactivity on this page, one or more settings were not saved. Please try again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:535 +msgid "Settings Saved" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-user-select.php:22 +msgid "Select Some Users" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-section.php:18 +msgid "Section Title" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:425 +msgid "Are you sure you want to delete this?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:30 +msgid "Add Row" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-post-select.php:24 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-taxonomy-select.php:22 +msgid "Select Posts" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:210 +msgid "Add Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:129 +msgid "Select the image that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:93 +msgid "Select image(s) that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:79 +msgid "Select the image that you would like to use for this variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:48 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:82 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:68 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:132 +msgid "Select Image" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:31 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:160 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:168 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:19 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:115 +msgid "Select File" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:30 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:18 +msgid "Select the file that you would like to use." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:357 +msgid "Create Variations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:356 +msgid "Add Another Variant" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Insert a value and press ENTER" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "(e.g. White, Grey, Red etc.)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Variation Values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:333 +msgid "Or create new variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "(e.g. Color)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:303 +msgid "You are about to delete selected variants.
    If you want to continue please confirm." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:302 +msgid "Confirmation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:290 +msgid "Insert quantity available. Empty for unlimited." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:281 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:294 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:307 +msgid "Cancel" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:280 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:293 +msgid "Update" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:277 +msgid "Insert the price i.e. 25 or 25.50" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:115 +msgid "Img." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:85 +msgid "Add New Variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:79 +msgid "Delete Variants" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:78 +msgid "Update Prices" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:77 +msgid "Update Inventory" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:76 +msgid "Update Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:75 +msgid "Bulk Actions" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:73 +msgid "Select bulk action" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:196 +msgid "Configure Store" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:195 +msgid "Configure shipping rates, emails and your store's appearance. " +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:190 +msgid "Add Product" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:189 +msgid "Add your first product for sale and get familiar with adding products." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:184 +msgid "Your store is almost ready for its first customers, but first it needs some products. Get started by adding products below, or jump straight into further configuring your store’s settings." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:183 +msgid "Woohoo! Your online store is up and running." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:160 +msgid "Finish Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:124 +msgid "And what metric system do you want to use?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:113 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:142 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:159 +msgid "Back" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:109 +msgid "Do you want to apply tax for your products? You can customize this for each product and variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:105 +msgid "What currency do you want to sell with?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:93 +msgid "And, which countries do you want to sell to?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:89 +msgid "Where is your online store based?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:80 +msgid "Payment Gateway" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:79 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:123 +msgid "Metric System" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:78 +msgid "Currency & Tax" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:77 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:88 +msgid "Locations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:70 +msgid "Choose where you want to sell your stuff and what currency. Easy!" +msgstr "" + +#: includes/public/class-mp-checkout.php:1400 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:58 +msgid "Continue" +msgstr "" + +#: includes/admin/class-mp-admin.php:83 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:53 +msgid "Skip this step, I'll do this manually" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:49 +msgid "Install store pages" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:44 +msgid "Once you've completed this quick setup wizard you'll have a fully working online store - exciting! Start
    by creating the default store pages for the online store such as the cart, checkout and store pages." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:42 +msgid "MarketPress adds a full online store to your website, with heaps of configuration options and addons
    to suit your needs. It's really easy to get going, and only takes a few minutes to setup!" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:41 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:69 +msgid "Welcome to MarketPress - Quick Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-advanced-select.php:23 +msgid "Select Some Options" +msgstr "" + +#: includes/wpmudev-metaboxes/class-wpmudev-field.php:694 +msgid "You must the WPMUDEV_Field::display() method in your form field class" +msgstr "" + +#: includes/public/class-mp-short-codes.php:636 +msgid "Only %s left in stock..." +msgstr "" + +#: includes/public/class-mp-short-codes.php:633 +msgid "Unlimited stock" +msgstr "" + +#: includes/public/class-mp-short-codes.php:430 +msgid "product_id must be defined" +msgstr "" + +#: includes/public/class-mp-checkout.php:1250 +msgid "An account with this username already exists" +msgstr "" + +#: includes/public/class-mp-checkout.php:1394 +msgid "Continue as Guest" +msgstr "" + +#: includes/public/class-mp-checkout.php:1393 +msgid "Proceed to checkout and you'll have an opportunity to create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1392 +#: includes/public/class-mp-checkout.php:1398 +msgid "First-time customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1386 +msgid "Login" +msgstr "" + +#: includes/public/class-mp-checkout.php:1379 +msgid "E-Mail Address/Username" +msgstr "" + +#: includes/public/class-mp-checkout.php:1377 +msgid "Sign in to speed up the checkout process." +msgstr "" + +#: includes/public/class-mp-checkout.php:1376 +msgid "Have an account?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1297 +msgid "Shipping address different than billing?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1184 +msgid "There are no available gateways to process this payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1160 +msgid "Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:1123 +msgid "Oops! An error occurred while processing your payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1051 +msgid "Next Step »" +msgstr "" + +#: includes/public/class-mp-checkout.php:1045 +msgid "« Previous Step" +msgstr "" + +#: includes/public/class-mp-checkout.php:873 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:657 +msgid "error" +msgstr "" + +#: includes/public/class-mp-checkout.php:872 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:658 +msgid "errors" +msgstr "" + +#: includes/public/class-mp-checkout.php:871 +msgid "

    Oops! We found %d %s in the form below.

    Fields that have errors are highlighted in red below. Entering into a field will reveal the actual error that occurred.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:870 +msgid "Please enter a valid first and last name" +msgstr "" + +#: includes/public/class-mp-checkout.php:869 +msgid " Please enter a valid card security code" +msgstr "" + +#: includes/public/class-mp-checkout.php:868 +msgid "Please enter a valid card expiration" +msgstr "" + +#: includes/public/class-mp-checkout.php:773 +msgid "Javascript is required in order to checkout. Please enable Javascript in your browser and then refresh this page." +msgstr "" + +#: includes/public/class-mp-checkout.php:588 +msgid "An unknown error occurred. Please try again." +msgstr "" + +#: includes/public/class-mp-checkout.php:386 +msgid "Town/City" +msgstr "" + +#: includes/public/class-mp-checkout.php:380 +msgid "Apartment, suite, unit, building, floor, etc" +msgstr "Căn hộ, Tòa nhà, tầng, ... " + +#: includes/public/class-mp-checkout.php:376 +msgid "Address Line 2" +msgstr "Địa chỉ dòng 2" + +#: includes/public/class-mp-checkout.php:363 +msgid "Address Line 1" +msgstr "" + +#: includes/common/class-mp-order.php:770 +#: includes/public/class-mp-checkout.php:354 +msgid "Company" +msgstr "" + +#: includes/public/class-mp-checkout.php:330 +msgid "Last" +msgstr "" + +#: includes/public/class-mp-checkout.php:321 +msgid "First" +msgstr "" + +#: includes/public/class-mp-checkout.php:284 +msgid "State/Province" +msgstr "" + +#: includes/public/class-mp-checkout.php:83 +msgid "Review Order/Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing/Shipping Address" +msgstr "" + +#: includes/public/class-mp-checkout.php:80 +msgid "Login/Register" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:530 +msgid "Marketplace" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:523 +msgid "Global Marketplace Pages" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +msgid "Store Network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +#: includes/multisite/class-mp-admin-multisite.php:494 +msgid "Store Network Settings" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:440 +msgid "Set theme access permissions for network stores. For a custom css theme, save your css file with the MarketPress Theme: NAME header in the /marketpress/ui/themes/ folder and it will appear in this list so you may select it." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:361 +msgid "Choose a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:336 +msgid "%d products get indexed" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:285 +msgid "Product Indexer" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:281 +msgid "Please hold on..." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:280 +msgid "Index Products" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:279 +msgid "%d products have been indexed in whole network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:182 +msgid "Enable Global Shopping Cart?" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:178 +msgid "Limit Global Widgets/Shortcodes To Main Blog?" +msgstr "" + +#: includes/common/template-functions.php:2802 +#: includes/multisite/template-functions.php:355 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:97 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:114 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:143 +msgid "Next" +msgstr "" + +#: includes/common/template-functions.php:2801 +#: includes/multisite/template-functions.php:354 +msgid "Prev" +msgstr "" + +#: includes/common/template-functions.php:2597 +msgid "Tagged in " +msgstr "" + +#: includes/common/template-functions.php:2196 +#: includes/common/template-functions.php:2202 +#: includes/common/template-functions.php:2214 +#: includes/common/template-functions.php:2217 +msgid "Oops! We couldn't locate any orders matching that order number. Please verify the order number and try again." +msgstr "" + +#: includes/common/template-functions.php:2138 +msgid "Look Up" +msgstr "" + +#: includes/common/template-functions.php:1423 +msgid "Please choose a shipping method" +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "If you have your order ID you can look it up using the form below." +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "Order Search" +msgstr "" + +#: includes/common/template-functions.php:910 +#: includes/public/class-mp-checkout.php:1440 +msgid "Cart" +msgstr "" + +#: includes/common/template-functions.php:895 +msgid "[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:887 +msgid "[mp_global_categories_list]" +msgstr "" + +#: includes/common/template-functions.php:880 +msgid "" +"Welcome to our market place!\n" +"\n" +"Check out our network of products:\n" +"\n" +"[mp_list_global_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_global_categories_list]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:879 +msgid "Global Store" +msgstr "" + +#: includes/common/template-functions.php:873 +msgid "" +"Welcome to our online store! Feel free to browse around:\n" +"\n" +"[mp_store_navigation]\n" +"\n" +"Check out our most popular products:\n" +"\n" +"[mp_popular_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_list_categories]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_tag_cloud]" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:127 +msgid "If cart weight is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:126 +msgid "Cart Weight" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:222 +msgid "Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:206 +msgid "Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:196 +msgid "Retail Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:195 +msgid "Online Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:193 +msgid "Rates Request Type" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:189 +msgid "Maximum Weight Per Package" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:195 +#: includes/common/shipping-modules/mp-usps.php:236 +msgid "Enter your standard box sizes as LengthxWidthxHeight (e.g. 12x8x6) For each box defined enter the maximum weight it can contain. Note: the shipping prices this plugin calculates are estimates. If they are consistently too low or too high, please check that the list of boxes above and the product weights are accurate and complete." +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:187 +msgid "Handling Charge Per Box Shipped" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:176 +#: includes/common/shipping-modules/mp-ups.php:181 +msgid "Offered Services" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:165 +msgid "Shipper Number" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:151 +msgid "User ID" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:144 +msgid "Developer Kit Access Key" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:140 +msgid "Use Sandbox Mode?" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:123 +msgid "In order to use UPS, you will need a UPS Developer Kit access key and the UPS user ID and password associated with the access key. Set these up for free here. If this information is missing or incorrect, an error will appear during the checkout process and the buyer will not be able to complete the transaction." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:112 +msgid "If cart total is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:111 +msgid "Cart Total" +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:95 +#: includes/common/shipping-modules/mp-weight-rate.php:111 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Don't worry about sorting as this will be done automatically upon saving." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:170 +msgid "Method Title (visible for clients)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:409 +#: includes/common/shipping-modules/mp-ups.php:216 +#: includes/common/shipping-modules/mp-usps.php:251 +msgid "Max Weight (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:402 +#: includes/common/shipping-modules/mp-ups.php:209 +#: includes/common/shipping-modules/mp-usps.php:247 +msgid "Size (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:387 +msgid "Enter your standard box sizes as LengthxWidthxHeight ( 12x8x6 ) For each box defined enter the maximum weight it can contain. Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:361 +#: includes/common/shipping-modules/mp-usps.php:229 +msgid "Handling Charge per International Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:353 +msgid "International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:339 +#: includes/common/shipping-modules/mp-usps.php:213 +msgid "Handling Charge per Domestic Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:331 +msgid "Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:321 +msgid "When checked the customer can chose Residential or Commercial delivery with Residential the default. Unchecked it's only Residential rates." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:320 +msgid "Allow Commercial Delivery?" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:315 +msgid "Fedex 10kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:314 +msgid "Fedex 25kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:313 +msgid "Fedex Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:312 +msgid "Fedex Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:311 +msgid "Fedex Pak" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:310 +msgid "Fedex Tube" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:306 +msgid "Default Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:294 +msgid "Dropoff Type" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:290 +msgid "Meter ID" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:134 +msgid "This is a residential address" +msgstr "Đây là địa chỉ cư trú" + +#: includes/common/payment-gateways/wepay.php:283 +msgid "There was an error processing your card: \"%s\". Please check your credit card info and try again." +msgstr "Lỗi xử lý thẻ của bạn: \"%s\". Vui lòng kiểm tra thông tin thẻ và thử lại" + +#: includes/common/payment-gateways/wepay.php:121 +msgid "Wepay makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept cards directly on your site. You don't need a merchant account or gateway. WePay handles everything including storing cards. Credit cards go directly to WePay's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:385 +msgid "There was an error processing your card - \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:356 +msgid "%s Store Purchase - Order ID - %s, Email - %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:251 +msgid "Stripe makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept Visa, MasterCard, American Express, Discover, JCB, and Diners Club cards directly on your site. You don't need a merchant account or gateway. Stripe handles everything, including storing cards, subscriptions, and direct payouts to your bank account. Credit cards go directly to Stripe's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:192 +msgid "ZMW - Zambian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:191 +msgid "ZAR - South African Rand" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:190 +msgid "YER - Yemeni Rial" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:189 +msgid "XPF - Cfp Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:188 +msgid "XOF - West African Cfa Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:187 +msgid "XCD - East Caribbean Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:186 +msgid "XAF - Central African Cfa Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:185 +msgid "WST - Samoan Tala" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:184 +msgid "VUV - Vanuatu Vatu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:183 +msgid "VND - Vietnamese Đồng" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:182 +msgid "VEF - Venezuelan Bolívar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:181 +msgid "UZS - Uzbekistani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:180 +msgid "UYI - Uruguayan Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:178 +msgid "UGX - Ugandan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:177 +msgid "UAH - Ukrainian Hryvnia" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:176 +msgid "TZS - Tanzanian Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:175 +msgid "TWD - New Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:174 +msgid "TTD - Trinidad and Tobago Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:172 +msgid "TOP - Tongan Paʻanga" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:171 +msgid "TJS - Tajikistani Somoni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:169 +msgid "SZL - Swazi Lilangeni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:168 +msgid "SVC - Salvadoran Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:167 +msgid "STD - São Tomé and Príncipe Dobra" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:166 +msgid "SRD - Surinamese Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:165 +msgid "SOS - Somali Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:164 +msgid "SLL - Sierra Leonean Leone" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:163 +msgid "SHP - Saint Helenian Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:160 +msgid "SCR - Seychellois Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:159 +msgid "SBD - Solomon Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:157 +msgid "RWF - Rwandan Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:156 +msgid "RUB - Russian Ruble" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:155 +msgid "RSD - Serbian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:154 +msgid "RON - Romanian Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:153 +msgid "QAR - Qatari Riyal" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:152 +msgid "PYG - Paraguayan Guaraní*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:151 +msgid "PLN - Polish Złoty" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:150 +msgid "PKR - Pakistani Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:149 +msgid "PHP - Philippine Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:148 +msgid "PGK - Papua New Guinean Kina" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:147 +msgid "PEN - Peruvian Nuevo Sol*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:146 +msgid "PAB - Panamanian Balboa*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:144 +msgid "NPR - Nepalese Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:142 +msgid "NIO - Nicaraguan Córdoba*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:141 +msgid "NGN - Nigerian Naira" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:140 +msgid "NAD - Namibian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:139 +msgid "MZN - Mozambican Metical" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:137 +msgid "MXN - Mexican Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:136 +msgid "MWK - Malawian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:135 +msgid "MVR - Maldivian Rufiyaa" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:134 +msgid "MUR - Mauritian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:133 +msgid "MRO - Mauritanian Ouguiya" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:132 +msgid "MOP - Macanese Pataca" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:131 +msgid "MNT - Mongolian Tögrög" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:130 +msgid "MKD - Macedonian Denar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:129 +msgid "MGA - Malagasy Ariary" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:128 +msgid "MDL - Moldovan Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:126 +msgid "LVL - Latvian Lats" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:124 +msgid "LSL - Lesotho Loti" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:123 +msgid "LRD - Liberian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:122 +msgid "LKR - Sri Lankan Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:121 +msgid "LBP - Lebanese Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:120 +msgid "LAK - Lao Kip*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:119 +msgid "KZT - Kazakhstani Tenge" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:118 +msgid "KYD - Cayman Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:117 +msgid "KRW - South Korean Won" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:116 +msgid "KMF - Comorian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:115 +msgid "KHR - Cambodian Riel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:114 +msgid "KGS - Kyrgyzstani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:113 +msgid "KES - Kenyan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:111 +msgid "JMD - Jamaican Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:110 +msgid "ISK - Icelandic Króna" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:109 +msgid "INR - Indian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:108 +msgid "ILS - Israeli New Sheqel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:107 +msgid "IDR - Indonesian Rupiah" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:105 +msgid "HTG - Haitian Gourde" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:103 +msgid "HNL - Honduran Lempira*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:101 +msgid "GYD - Guyanese Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:100 +msgid "GTQ - Guatemalan Quetzal*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:99 +msgid "GNF - Guinean Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:98 +msgid "GMD - Gambian Dalasi" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:97 +msgid "GIP - Gibraltar Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:96 +msgid "GEL - Georgian Lari" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:94 +msgid "FKP - Falkland Islands Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:93 +msgid "FJD - Fijian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:91 +msgid "ETB - Ethiopian Birr" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:90 +msgid "EGP - Egyptian Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:89 +msgid "EEK - Estonian Kroon*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:88 +msgid "DZD - Algerian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:87 +msgid "DOP - Dominican Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:85 +msgid "DJF - Djiboutian Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:84 +msgid "CZK - Czech Koruna*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:83 +msgid "CVE - Cape Verdean Escudo*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:82 +msgid "CRC - Costa Rican Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:81 +msgid "COP - Colombian Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:80 +msgid "CNY - Chinese Renminbi Yuan" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:79 +msgid "CLP - Chilean Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:77 +msgid "CDF - Congolese Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:76 +msgid "CAD - Canadian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:75 +msgid "BZD - Belize Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:74 +msgid "BWP - Botswana Pula" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:73 +msgid "BSD - Bahamian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:72 +msgid "BRL - Brazilian Real*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:71 +msgid "BOB - Bolivian Boliviano*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:70 +msgid "BND - Brunei Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:69 +msgid "BMD - Bermudian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:68 +msgid "BIF - Burundian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:67 +msgid "BGN - Bulgarian Lev" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:66 +msgid "BDT - Bangladeshi Taka" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:65 +msgid "BBD - Barbadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:64 +msgid "BAM - Bosnia & Herzegovina Convertible Mark" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:63 +msgid "AZN - Azerbaijani Manat" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:62 +msgid "AWG - Aruban Florin" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:61 +msgid "AUD - Australian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:60 +msgid "ARS - Argentine Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:59 +msgid "AOA - Angolan Kwanza*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:58 +msgid "ANG - Netherlands Antillean Gulden" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:57 +msgid "AMD - Armenian Dram" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:56 +msgid "ALL - Albanian Lek" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:55 +msgid "AFN - Afghan Afghani*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:54 +msgid "AED - United Arab Emirates Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:345 +msgid "Skrill balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:327 +msgid "Skrill IPN message received." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:283 +msgid "Skrill" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:278 +msgid "Pending payment" +msgstr "Thanh toán ở tình trạng treo" + +#: includes/common/payment-gateways/skrill.php:144 +msgid "The secret word must match the word submitted in the \"Merchant Tools\" section of your Skrill account." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:134 +msgid "You must use your valid Skrill merchant email. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:133 +msgid "Skrill Email" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:123 +msgid "Resell your inventory via Skrill.com (Moneybookers)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:95 +msgid "ZAR - South-African Rand" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:93 +msgid "TWD - Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:92 +msgid "TRY - New Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:91 +msgid "TND - Tunisian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:90 +msgid "THB - Thailand Baht" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:89 +msgid "SKK - Slovakian Koruna" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:86 +#: includes/common/payment-gateways/stripe.php:158 +msgid "SAR - Saudi Riyal" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:85 +msgid "RSD - Serbian dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:83 +msgid "QAR - Qatari Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:81 +msgid "OMR - Omani Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:80 +msgid "NOK - Norwegian Krone " +msgstr "" + +#: includes/common/payment-gateways/skrill.php:78 +#: includes/common/payment-gateways/stripe.php:138 +msgid "MYR - Malaysian Ringgit" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:77 +#: includes/common/payment-gateways/stripe.php:127 +msgid "MAD - Moroccan Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:74 +msgid "KRW - South-Korean Won" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:72 +msgid "JOD - Jordanian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:70 +msgid "INR - Indian Rupee" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:63 +msgid "EEK - Estonian Kroon" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:56 +msgid "AED - Utd. Arab Emir. Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:52 +msgid "Turkish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:51 +msgid "Swedish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:50 +msgid "Spanish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:49 +msgid "Russian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:48 +msgid "Romainian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:47 +msgid "Polish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:46 +msgid "Italian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:45 +msgid "Greek" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:44 +msgid "German" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:43 +msgid "French" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:42 +msgid "Finnish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:41 +msgid "English" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:40 +msgid "Dutch" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:39 +msgid "Danish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:38 +msgid "Czech" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:37 +msgid "Chinese" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:201 +msgid "There was an error processing your card: %s. Please re-enter your credit card info and try again." +msgstr "Lỗi xử lý thẻ của bạn: %s. Vui lòng nhập lại thông tin thẻ và thử lại" + +#: includes/common/payment-gateways/pin.php:278 +msgid "
  • There was an error processing your card: \"%s\". Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:274 +msgid "
  • There was an error processing your card. Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:177 +#: includes/common/payment-gateways/stripe.php:279 +msgid "Publishable Key" +msgstr "" + +#: includes/common/payment-gateways/pin.php:163 +msgid "API Credentials?" +msgstr "" + +#: includes/common/payment-gateways/pin.php:147 +msgid "PIN makes it easy to start accepting credit card payments with Australia’s first all-in-one online payment system. Accept all major credit cards directly on your site. Your sales proceeds are deposited to any Australian bank account, no merchant account required." +msgstr "" + +#: includes/common/payment-gateways/pin.php:57 +#: includes/common/payment-gateways/stripe.php:179 +msgid "USD - United States Dollar" +msgstr "USD - Đô la Mỹ" + +#: includes/common/payment-gateways/paypal-payflow.php:455 +msgid "Email Footer" +msgstr "Phần chân trang email" + +#: includes/common/payment-gateways/paypal-payflow.php:445 +msgid "Email Header" +msgstr "Phần đầu trang email" + +#: includes/common/payment-gateways/paypal-payflow.php:416 +msgid "Partner" +msgstr "Cộng tác viên" + +#: includes/common/payment-gateways/paypal-payflow.php:409 +msgid "Vendor" +msgstr "Nhà cung cấp" + +#: includes/common/payment-gateways/paypal-express.php:852 +#: includes/common/payment-gateways/paypal-express.php:1126 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences\t section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:749 +msgid "Page Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:744 +msgid "Header Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:739 +msgid "Header Border Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:734 +msgid "Header Image" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:680 +msgid "Locale" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:624 +#: includes/common/payment-gateways/paypal-express.php:658 +msgid "Merchant Email" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:645 +msgid "Paypal Express Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:603 +msgid "Paypal Express Network Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:861 +msgid "Application ID (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:854 +msgid "Signature (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:847 +msgid "API Password (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:839 +msgid "API Username (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:832 +msgid "Signature (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:825 +msgid "API Password (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:817 +msgid "API Username (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:799 +msgid "This message is displayed at the top of the gateway settings page to store admins. It's a good place to inform them of your fees or put any sales messages." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:787 +msgid "Please enter your PayPal email address or business ID you want to recieve fees at." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:786 +msgid "PayPal E-mail" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:772 +msgid "Fees to Collect (%)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:375 +#: includes/public/class-mp-checkout.php:341 +msgid "Email Address" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:299 +msgid "Sorry, your order was not completed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:126 +#: includes/common/payment-gateways/paypal-express.php:780 +msgid "You will be redirected to the PayPal site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:90 +#: includes/common/payment-gateways/skrill.php:94 +msgid "USD - U.S. Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:89 +msgid "TRY - Turkish lira" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:88 +#: includes/common/payment-gateways/stripe.php:170 +msgid "THB - Thai Baht" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:87 +msgid "TWD - Taiwan New Dollars" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:86 +#: includes/common/payment-gateways/pin.php:59 +#: includes/common/payment-gateways/skrill.php:88 +#: includes/common/payment-gateways/stripe.php:162 +msgid "SGD - Singapore Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:84 +msgid "RUB - Russian Rubles" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:82 +msgid "PHP - Philippine Pesos" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:81 +#: includes/common/payment-gateways/pin.php:58 +#: includes/common/payment-gateways/skrill.php:79 +#: includes/common/payment-gateways/stripe.php:145 +msgid "NZD - New Zealand Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:79 +msgid "MXN - Mexican Peso" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:78 +msgid "MYR - Malaysian Ringgits" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:77 +#: includes/common/payment-gateways/pin.php:64 +#: includes/common/payment-gateways/skrill.php:73 +#: includes/common/payment-gateways/stripe.php:112 +msgid "JPY - Japanese Yen" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:75 +#: includes/common/payment-gateways/pin.php:63 +#: includes/common/payment-gateways/skrill.php:66 +#: includes/common/payment-gateways/stripe.php:102 +msgid "HKD - Hong Kong Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:73 +msgid "GBP - Pound Sterling" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:68 +#: includes/common/payment-gateways/pin.php:62 +#: includes/common/payment-gateways/skrill.php:59 +msgid "CAD - Canadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:67 +msgid "BRL - Brazilian Real" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:66 +#: includes/common/payment-gateways/pin.php:56 +#: includes/common/payment-gateways/skrill.php:57 +msgid "AUD - Australian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:288 +msgid "There was an error processing your card: \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:163 +msgid "When running on a live site, Paymill recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:161 +#: includes/common/payment-gateways/pin.php:157 +#: includes/common/payment-gateways/simplify.php:103 +#: includes/common/payment-gateways/stripe.php:260 +#: includes/common/payment-gateways/wepay.php:153 +msgid "Force SSL?" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:151 +msgid "Accept Visa, Mastercard, Maestro UK, Discover and Solo cards directly on your site. You don't need a merchant account or gateway. Credit cards go directly to Paymill's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:131 +msgid "CVV2" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:72 +#: includes/common/payment-gateways/pin.php:61 +#: includes/common/payment-gateways/skrill.php:65 +#: includes/common/payment-gateways/stripe.php:95 +msgid "GBP - British Pound" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:71 +#: includes/common/payment-gateways/stripe.php:173 +msgid "TRY - Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:70 +#: includes/common/payment-gateways/paypal-chained-payments.php:85 +#: includes/common/payment-gateways/skrill.php:87 +#: includes/common/payment-gateways/stripe.php:161 +msgid "SEK - Swedish Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:69 +#: includes/common/payment-gateways/skrill.php:84 +msgid "RON - Romanian Leu New" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:68 +#: includes/common/payment-gateways/paypal-chained-payments.php:83 +#: includes/common/payment-gateways/skrill.php:82 +msgid "PLN - Polish Zloty" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:67 +#: includes/common/payment-gateways/paypal-chained-payments.php:80 +#: includes/common/payment-gateways/stripe.php:143 +msgid "NOK - Norwegian Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:66 +#: includes/common/payment-gateways/skrill.php:75 +#: includes/common/payment-gateways/stripe.php:125 +msgid "LTL - Lithuanian Litas" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:65 +#: includes/common/payment-gateways/paypal-chained-payments.php:69 +#: includes/common/payment-gateways/skrill.php:60 +#: includes/common/payment-gateways/stripe.php:78 +msgid "CHF - Swiss Franc" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:64 +#: includes/common/payment-gateways/skrill.php:76 +msgid "LVL - Latvian Lat" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:63 +#: includes/common/payment-gateways/paypal-chained-payments.php:74 +#: includes/common/payment-gateways/skrill.php:69 +msgid "ILS - Israeli Shekel" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:62 +#: includes/common/payment-gateways/skrill.php:71 +msgid "ISK - Iceland Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:61 +#: includes/common/payment-gateways/paypal-chained-payments.php:76 +#: includes/common/payment-gateways/skrill.php:68 +#: includes/common/payment-gateways/stripe.php:106 +msgid "HUF - Hungarian Forint" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:60 +#: includes/common/payment-gateways/paypal-chained-payments.php:71 +#: includes/common/payment-gateways/skrill.php:62 +#: includes/common/payment-gateways/stripe.php:86 +msgid "DKK - Danish Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:59 +#: includes/common/payment-gateways/skrill.php:67 +#: includes/common/payment-gateways/stripe.php:104 +msgid "HRK - Croatian Kuna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:58 +#: includes/common/payment-gateways/paypal-chained-payments.php:70 +#: includes/common/payment-gateways/skrill.php:61 +msgid "CZK - Czech Koruna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:57 +#: includes/common/payment-gateways/skrill.php:58 +msgid "BGN - Bulgarian Leva" +msgstr "" + +#: includes/common/payment-gateways/payflow/class-mp-gateway-worker-payflow.php:123 +msgid "There was an error connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:344 +msgid "This setting will log all PayFast communication to the \"payfast.log\" file." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:342 +msgid "Log Debugging Info?" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:335 +msgid "DO NOT INPUT A VALUE UNLESS YOU HAVE SET ONE IN THE SETTINGS SECTION OF YOUR PAYFAST SETTINGS." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:333 +msgid "PayFast Passphrase" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:323 +msgid "You can find your credentials on your integration page." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:321 +msgid "PayFast Merchant Credentials" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:311 +msgid "PayFast Mode" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:308 +msgid "PayFast is a payments processing service for South Africa. We make it safe for buyers to send money and easy for sellers to receive money. More Info »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:306 +msgid "PayFast Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:285 +msgid "Your payment via PayFast for this order totaling %s is complete. The transaction number is %s." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:278 +msgid "Your payment via PayFast for this order totaling %s is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:124 +msgid "Your PayFast transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:82 +#: includes/common/payment-gateways/payfast.php:83 +msgid "PayFast" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:157 +msgid "API error: - \"%s\"" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:198 +msgid "The payment request is under process" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:140 +msgid "Order: #" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:116 +msgid "You will be redirected to the Mollie site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:73 +msgid "%sMollie%s provides a fully PCI Compliant and secure way to collect payments via iDeal, Credit Card, Bancontact / Mister Cash, SOFORT Banking, Overbooking, Bitcoin, PayPal, paysafecard and AcceptEmail." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:53 +#: includes/common/payment-gateways/mollie.php:54 +#: includes/common/payment-gateways/mollie.php:195 +#: includes/common/payment-gateways/mollie.php:245 +msgid "Mollie" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:50 +#: includes/common/payment-gateways/paymill.php:56 +#: includes/common/payment-gateways/paypal-chained-payments.php:72 +#: includes/common/payment-gateways/pin.php:60 +#: includes/common/payment-gateways/skrill.php:64 +#: includes/common/payment-gateways/stripe.php:92 +msgid "EUR - Euro" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:306 +msgid "Access Key" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:300 +msgid "You must login to the Mijireh.com dashboard to obtain the Access Key." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:299 +msgid "Credentials" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:289 +msgid "Mijireh Checkout provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:269 +msgid "Mijireh Error: " +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:89 +msgid "You will be redirected to the Mijireh.com site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:87 +msgid "Your Mijireh transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:42 +#: includes/common/payment-gateways/mijireh.php:43 +#: includes/common/payment-gateways/mijireh.php:324 +msgid "Mijireh" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:145 +msgid "These are the manual payment instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:189 +msgid "This is the email text to send to those who have made free order checkouts. You should include your free order instructions / information here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:183 +msgid "This is the free order information to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:182 +msgid "Confirmation User Information" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:177 +msgid "This is the information to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:163 +msgid "If enabled, all free orders will be automatically marked as paid." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:159 +msgid "Payment Status" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:149 +msgid "This gateway is automatically activated if order totalling 0 and it can't be disabled" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:35 +#: includes/common/payment-gateways/free_orders.php:36 +#: includes/common/payment-gateways/free_orders.php:89 +msgid "Free Order" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:34 +#: includes/common/payment-gateways/free_orders.php:197 +msgid "Free Orders" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:515 +msgid "Sandbox API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:266 +#: includes/common/payment-gateways/eway31.php:542 +msgid "eWay Rapid 3.1 Payments (beta)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:403 +msgid "Hosted Payment Page Language" +msgstr "" + +#: includes/common/payment-gateways/eway.php:373 +msgid "Note when testing in sandbox mode it will use the default eWay test API credentials. Also, please note that cart total needs to be a whole number (e.g. 10.00) in order to generate a successful transaction, otherwise the transaction will fail." +msgstr "" + +#: includes/common/payment-gateways/eway.php:267 +msgid "You will be redirected to https://www.eway.com.au to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:380 +msgid "You have chosen to checkout using %s. Please confirm your order details and click \"Submit Order\" when finished." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:272 +#: includes/common/payment-gateways/paymill.php:131 +#: includes/common/payment-gateways/stripe.php:231 +msgid "Security Code " +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Enter in MM/YYYY or MM/YY format" +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Expiration" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:321 +msgid "Delim Data" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:307 +#: includes/common/payment-gateways/paypal-payflow.php:456 +msgid "This text will appear as the footer of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:287 +#: includes/common/payment-gateways/paypal-payflow.php:440 +msgid "Email Customer (on success)" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:278 +msgid "Authorize.net default is \",\". Otherwise, get this from your credit card processor. If the transactions are not going through, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:277 +msgid "Delimeter Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:193 +msgid "Held For Review" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:310 +#: includes/common/payment-gateways/payfast.php:314 +msgid "Test" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:300 +#: includes/common/payment-gateways/pin.php:170 +#: includes/common/payment-gateways/stripe.php:272 +msgid "Secret Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:283 +msgid "Select Your Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:97 +msgid "Your payment will be processed by the iDEAL network" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:208 +msgid "These are the CubePoints to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:203 +msgid "These are the CubePoints instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:266 +msgid "If enabled, all API calls will be made to https://test.bitpay.com." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:263 +msgid "Use Test Mode?" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:259 +msgid "If checked, response fron bitpay will be stored in log file, keep it disabled unless required." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:256 +msgid "Enable Debug Log" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:249 +msgid "Full Notifications" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:231 +#: includes/common/payment-gateways/eway31.php:499 +#: includes/common/payment-gateways/eway31.php:526 +#: includes/common/payment-gateways/mollie.php:83 +#: includes/common/shipping-modules/mp-fedex.php:269 +msgid "API Key" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:222 +msgid "You can now accept a payment from any country on Earth, with no risk of fraud. To use Bitpay, you need to signup on Bitpay. \\n After completing the signup process, you can get api keys at Bitpay API key. You can read more about Bitpay at Bitpay API. \\n Bitpay requires SSL(https) for payment notifications to work." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:61 +msgid "You will be redirected to bitpay.com, for bitcoin payment. It is completely safe." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:346 +msgid "You must login to the 2Checkout vendor dashboard to obtain the seller ID and secret word. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:345 +#: includes/common/payment-gateways/authorizenet-aim.php:239 +#: includes/common/payment-gateways/paymill.php:168 +#: includes/common/payment-gateways/paypal-express.php:704 +#: includes/common/payment-gateways/simplify.php:80 +#: includes/common/payment-gateways/stripe.php:265 +#: includes/common/payment-gateways/wepay.php:158 +msgid "API Credentials" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:325 +#: includes/common/payment-gateways/_bitpay.php:220 +#: includes/common/payment-gateways/_cubepoints.php:185 +#: includes/common/payment-gateways/_ideal.php:268 +#: includes/common/payment-gateways/_payway.php:255 +#: includes/common/payment-gateways/authorizenet-aim.php:219 +#: includes/common/payment-gateways/eway.php:352 +#: includes/common/payment-gateways/eway31.php:460 +#: includes/common/payment-gateways/free_orders.php:147 +#: includes/common/payment-gateways/manual-payments.php:126 +#: includes/common/payment-gateways/mijireh.php:287 +#: includes/common/payment-gateways/mollie.php:71 +#: includes/common/payment-gateways/paymill.php:149 +#: includes/common/payment-gateways/paypal-chained-payments.php:344 +#: includes/common/payment-gateways/paypal-payflow.php:376 +#: includes/common/payment-gateways/pin.php:145 +#: includes/common/payment-gateways/simplify.php:69 +#: includes/common/payment-gateways/skrill.php:121 +#: includes/common/payment-gateways/stripe.php:249 +#: includes/common/payment-gateways/wepay.php:119 +#: includes/common/shipping-modules/mp-fedex.php:243 +#: includes/common/shipping-modules/mp-flat-rate.php:63 +#: includes/common/shipping-modules/mp-pickup.php:140 +#: includes/common/shipping-modules/mp-table-rate.php:94 +#: includes/common/shipping-modules/mp-ups.php:122 +#: includes/common/shipping-modules/mp-usps.php:167 +#: includes/common/shipping-modules/mp-weight-rate.php:110 +msgid "%s Settings" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:136 +msgid "You will be redirected to the 2Checkout site to finalize your payment." +msgstr "" + +#: includes/common/helpers.php:169 includes/public/class-mp-checkout.php:1277 +msgid "Billing" +msgstr "" + +#: includes/common/helpers.php:144 +msgid "FREE" +msgstr "" + +#: includes/common/helpers.php:134 +msgid "Coupons:" +msgstr "" + +#: includes/common/helpers.php:95 +msgid "Qty" +msgstr "" + +#: includes/common/helpers.php:94 +msgid "Sku" +msgstr "" + +#: includes/common/data.php:59 +msgid "Zip Code" +msgstr "" + +#: includes/common/class-mp-taxes.php:336 +msgid "Standard Table" +msgstr "" + +#: includes/common/class-mp-product.php:2698 +msgid "Tweet" +msgstr "" + +#: includes/common/class-mp-product.php:2321 +msgid "Notification Preferences: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2320 +msgid "Edit Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2318 +msgid "Link: %s

    " +msgstr "" + +#: includes/common/class-mp-product.php:2317 +msgid "Current Inventory: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2316 +msgid "Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2314 +msgid "This message is being sent to notify you of low stock of a product in your online store according to your preferences.

    " +msgstr "" + +#: includes/common/class-mp-product.php:1817 +msgid "" +msgstr "" + +#: includes/common/class-mp-product.php:1427 +#: includes/common/class-mp-product.php:1430 +msgid "(tax incl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1422 +#: includes/common/class-mp-product.php:1425 +msgid "(tax excl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1300 +#: includes/common/class-mp-product.php:1315 +msgid "%s each" +msgstr "" + +#: includes/common/class-mp-product.php:988 +msgid "Choose Options" +msgstr "" + +#: includes/common/class-mp-product.php:526 +msgid "Choose a %s" +msgstr "" + +#: includes/common/class-mp-product.php:284 +#: includes/common/class-mp-product.php:292 +#: includes/common/class-mp-product.php:615 +msgid "We're sorry, we only have %d of this item in stock right now." +msgstr "" + +#: includes/common/class-mp-order.php:1456 +msgid "Shipped: Track Shipment" +msgstr "" + +#: includes/common/class-mp-order.php:1049 +msgid "Order Received" +msgstr "" + +#: includes/common/class-mp-order.php:1014 +msgid "In Process" +msgstr "" + +#: includes/common/class-mp-order.php:969 +msgid "Order #" +msgstr "" + +#: includes/common/class-mp-order.php:866 +msgid "Copy billing address to shipping address" +msgstr "" + +#: includes/common/class-mp-order.php:822 +#: includes/public/class-mp-checkout.php:1314 +msgid "Special Instructions" +msgstr "" + +#: includes/common/class-mp-order.php:817 +#: includes/common/payment-gateways/stripe.php:335 +msgid "Email" +msgstr "" + +#: includes/common/class-mp-order.php:813 +#: includes/common/payment-gateways/stripe.php:341 +#: includes/public/class-mp-checkout.php:416 +msgid "Phone" +msgstr "" + +#: includes/common/class-mp-order.php:791 +#: includes/common/payment-gateways/stripe.php:337 +msgid "State" +msgstr "" + +#: includes/common/class-mp-order.php:776 +msgid "Address 1" +msgstr "" + +#: includes/common/class-mp-order.php:766 +msgid "Last Name" +msgstr "" + +#: includes/common/class-mp-order.php:762 +msgid "First Name" +msgstr "" + +#: includes/common/class-mp-installer.php:677 +msgid "MarketPress requires a database update to continue working correctly. Go to update page" +msgstr "" + +#: includes/common/class-mp-installer.php:657 +msgid "MarketPress performed a quick automatic update successfully!" +msgstr "" + +#: includes/common/class-mp-installer.php:653 +msgid "Perform Update" +msgstr "" + +#: includes/common/class-mp-installer.php:647 +msgid "Please update each subsite in your WordPress network where you have older version of the MarketPress plugin." +msgstr "" + +#: includes/common/class-mp-installer.php:641 +msgid "Depending on the amount of products you have, this update could take quite some time. Please keep this window open while the update completes. If you have products with multiple variations, the progress bar may move slower, please don't exit the window." +msgstr "" + +#: includes/common/class-mp-installer.php:632 +msgid "Product Metadata" +msgstr "" + +#: includes/common/class-mp-installer.php:601 +msgid "MarketPress requires a database update to continue working correctly.
    Below you will find a list of items that require your attention." +msgstr "" + +#: includes/common/class-mp-installer.php:600 +msgid "Update MarketPress Data" +msgstr "" + +#: includes/common/class-mp-installer.php:530 +msgid "Update Data" +msgstr "" + +#: includes/common/class-mp-installer.php:67 +msgid "Complete!" +msgstr "" + +#: includes/common/class-mp-installer.php:66 +msgid "Upgrading Database...Please Wait..." +msgstr "" + +#: includes/common/class-mp-installer.php:64 +msgid "An error occurred while updating. Please refresh this page and try again." +msgstr "" + +#: includes/common/class-mp-cart.php:2447 +msgid "Some items in your cart have fallen below the quantity you currently have in your cart. We have adjusted the quantity in your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:2443 +msgid "Some items in your cart are no longer available. We have removed these items from your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:1566 +msgid "item" +msgstr "" + +#: includes/common/class-mp-cart.php:1563 +#: includes/common/class-mp-cart.php:1568 +msgid "items" +msgstr "" + +#: includes/common/class-mp-cart.php:1363 +msgid "Items/Products added to Cart will show here." +msgstr "" + +#: includes/common/class-mp-cart.php:1362 +msgid "Your shopping cart is empty." +msgstr "" + +#: includes/common/class-mp-cart.php:1357 +msgid "View Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1241 +#: includes/common/class-mp-cart.php:1298 +#: includes/public/class-mp-short-codes.php:159 +msgid "Adding..." +msgstr "" + +#: includes/common/class-mp-cart.php:1033 +msgid "Continue Shopping?" +msgstr "" + +#: includes/common/class-mp-cart.php:961 +msgid "Secure Checkout
    Shopping is always safe and secure." +msgstr "" + +#: includes/common/class-mp-cart.php:959 +msgid "You are about to submit your order!
    Please review your order details before continuing. You will be charged immediately upon clicking \"Submit Order\"." +msgstr "" + +#: includes/common/class-mp-cart.php:956 +msgid "Continue »" +msgstr "" + +#: includes/common/class-mp-cart.php:955 +msgid "Submit Order" +msgstr "" + +#: includes/common/class-mp-cart.php:818 +msgid "There are no items in your cart - go add some !" +msgstr "" + +#: includes/common/class-mp-cart.php:816 +msgid "The cart is disabled." +msgstr "" + +#: includes/common/class-mp-cart.php:735 +msgid "Estimated %s" +msgstr "" + +#: includes/common/class-mp-cart.php:717 +msgid "Estimated Shipping" +msgstr "" + +#: includes/common/class-mp-cart.php:697 +msgid "Product Total" +msgstr "" + +#: includes/common/class-mp-cart.php:670 includes/common/class-mp-cart.php:672 +msgid "Estimated Total (%s, %s)" +msgstr "" + +#: includes/common/class-mp-cart.php:668 +msgid "Estimated Total (%s)" +msgstr "" + +#: includes/common/class-mp-cart.php:666 includes/common/class-mp-cart.php:752 +msgid "Estimated Total" +msgstr "" + +#: includes/admin/widgets/product-list.php:247 +msgid "Show Thumbnail Placeholder image (if image is not set)" +msgstr "" + +#: includes/admin/widgets/cart.php:73 +msgid "Display product price" +msgstr "" + +#: includes/admin/widgets/cart.php:71 +msgid "Display product quantity" +msgstr "" + +#: includes/admin/widgets/cart.php:69 +msgid "Display product image" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:93 +msgid "General Shipping Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:773 +msgid "If you are having conflicts with the lightbox library from your theme or another plugin you should uncheck this." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:772 +msgid "Use Built-In Lightbox for Images?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:762 +msgid "Disable Large Image Display?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:688 +msgid "Show Product Image?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:682 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:684 +msgid "Show Tags List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:676 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:678 +msgid "Show Categories List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:671 +msgid "If enabled, description excerpt will be added above Add to cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:669 +msgid "Show Excerpt?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:665 +msgid "If enabled, users will be able to choose how many of the product they want to purchase before adding to their cart. If not checked, quantity could be change later on the cart page." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:663 +msgid "Show Quantity Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:649 +msgid "Settings related to the display of individual product pages." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:648 +msgid "Product Page Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:605 +msgid "Related Products Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:573 +msgid "Show Related Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:568 +msgid "Related Product Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:549 +msgid "Order Status Entries Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:510 +msgid "Sort Products By" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:497 +msgid "Products Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:492 +msgid "Paginate Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:478 +msgid "Excerpts Length" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:473 +msgid "Show Excerpts?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:450 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:746 +msgid "Image Alignment" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:412 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:708 +msgid "Custom Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:401 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:697 +msgid "Large - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:400 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:696 +msgid "Medium - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:399 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:695 +msgid "Thumbnail - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:397 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:693 +msgid "Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:386 +msgid "Select default placeholder image thumbnail when product image is not available (if empty, plugin's built-in image will be used)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:380 +msgid "Show default product placeholder thumbnail when product image is not available?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:374 +msgid "Show Product Thumbnail?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:369 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:658 +msgid "Redirect to cart page for immediate checkout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:368 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:657 +msgid "Stay on current product page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:366 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:655 +msgid "MarketPress supports two \"flows\" for adding products to the shopping cart. After adding a product to their cart, two things can happen:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:365 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:654 +msgid "Add To Cart Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:355 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:628 +msgid "Four" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:354 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:627 +msgid "Three" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:353 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:626 +msgid "Two" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:625 +msgid "One" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:349 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:622 +msgid "Set the number of products that show up in a grid row to best fit your theme" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:348 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:621 +msgid "How many products per row?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:342 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:609 +msgid "Display as grid" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:341 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:608 +msgid "Display as list" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:339 +msgid "Product Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:334 +msgid "Settings related to the display of product lists/grids." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:333 +msgid "Product List/Grid Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:314 +msgid "Show Twitter Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:309 +msgid "Twitter" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:303 +msgid "Show Share Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:297 +msgid "Recommend" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:296 +msgid "Like" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:294 +msgid "Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:283 +msgid "Show Facebook Like Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:278 +msgid "Facebook" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:257 +msgid "Show \"Pin It\" Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:252 +msgid "Pinterest" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:246 +msgid "Social Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:193 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:202 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:211 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:220 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:229 +#: includes/multisite/class-mp-admin-multisite.php:532 +#: includes/multisite/class-mp-admin-multisite.php:541 +#: includes/multisite/class-mp-admin-multisite.php:550 +msgid "Choose a Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:191 +msgid "This page will be used as the root for your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:168 +#: includes/multisite/class-mp-admin-multisite.php:586 +msgid "Create Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "uncropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "cropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:87 +#: includes/multisite/class-mp-admin-multisite.php:121 +#: includes/multisite/class-mp-admin-multisite.php:620 +msgid "An error occurred while creating the store page. Please try again." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:66 +msgid "Choose the gateway(s) that you would like to be available for checkout." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:65 +msgid "Enabled Gateways" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:78 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:146 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:179 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:213 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:274 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:307 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:341 +msgid "Text" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:71 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:139 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:172 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:206 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:267 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:300 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:334 +msgid "Subject" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:52 +msgid "Notification Email" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:510 +msgid "Enabling this option will display label `excl. tax` or `incl. tax` after price" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:509 +msgid "Display tax label?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:504 +msgid "Enabling this option will show Price + Tax, eg. if your price is 100 and your tax 20, your price will be 120" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:416 +#: includes/multisite/class-mp-admin-multisite.php:234 +msgid "Price Format" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:366 +msgid "Enabling this field will display a textbox on the shipping checkout page for users to enter special instructions for their order. Useful for product personalization, etc." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:365 +msgid "Show Special Instructions Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:360 +msgid "Universal" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:359 +msgid "Old" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1167 +#: includes/admin/store-settings/class-mp-store-settings-general.php:358 +msgid "New" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:353 +msgid "If you already use Google Analytics for your website, you can track detailed ecommerce information by enabling this setting. Choose whether you are using the new asynchronous or old tracking code. Before Google Analytics can report ecommerce activity for your website, you must enable ecommerce tracking on the profile settings page for your website. Also keep in mind that some gateways do not reliably show the receipt page, so tracking may not be accurate in those cases. It is recommended to use the PayPal gateway for the most accurate data. More information »" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:347 +msgid "Do you want to display the product price on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:346 +msgid "Show product price on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:340 +msgid "Do you want to display the product quantity on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:339 +msgid "Show product quantity on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:333 +msgid "Do you want to display the product image on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:332 +msgid "Show product image on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:327 +msgid "This option hide floating Mini Cart in top right corner." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:326 +msgid "Disable Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:316 +msgid "If unchecked your Orders admin page will be hidden" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:315 +msgid "Show admin Orders page?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:309 +msgid "Disable Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:303 +msgid "Force Login?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:297 +msgid "Hide Out of Stock Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:555 +msgid "This will prevent multiples of the same downloadable product form being added to the cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:554 +msgid "Limit Digital Products Per-order?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:268 +msgid "If you're having issues downloading large files and have worked with your hosting provider to increase your memory limits, try enabling this - just keep in mind, it's not as secure!" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:267 +msgid "Use Alternative Download Method?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:252 +msgid "Download Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:230 +msgid "Change product post type" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:51 +msgid "%s Capabilities" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-addons.php:47 +msgid "Store Settings: Add Ons: %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:254 +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:56 +msgid "Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Edit Product Attribute %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:246 +msgid "Exporters" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:238 +msgid "Short Codes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:207 +msgid "An appropriate message for key \"%s\" could not be found." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:204 +msgid "Product attribute updated successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:203 +msgid "Product attribute added successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +msgid "Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +#: includes/admin/store-settings/class-mp-store-settings-addons.php:121 +msgid "Store Settings: Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "Store Settings: Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:118 +msgid "Store Settings: Product Tags" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:117 +msgid "Store Settings: Product Categories" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Store Settings: Product Attributes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +msgid "Store Settings: Payments" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:114 +msgid "Store Settings: Shipping" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +#: includes/admin/class-mp-store-settings-admin.php:226 +msgid "Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +msgid "Store Settings: Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:112 +msgid "Store Settings: Presentation" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:111 +msgid "Store Settings: General" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1489 +msgid "Select a Product" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1447 +msgid "Reset to Defaults" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1446 +msgid "Insert Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1202 +#: includes/admin/class-mp-shortcode-builder.php:1227 +#: includes/admin/class-mp-shortcode-builder.php:1252 +msgid "The text to show in the link." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1196 +#: includes/admin/class-mp-shortcode-builder.php:1221 +#: includes/admin/class-mp-shortcode-builder.php:1246 +msgid "Whether to return a clickable link or url." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1177 +msgid "Whether to display the cart only on store pages or not." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1171 +msgid "Whether to show or hide the product price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1165 +msgid "Whether to show or hide the product quantity." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1159 +msgid "Whether to show or hide the product image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1153 +msgid "The text displayed before the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1147 +msgid "The title of the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1058 +#: includes/admin/class-mp-shortcode-builder.php:1121 +msgid "A label to prepend to the price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1032 +#: includes/admin/class-mp-shortcode-builder.php:1127 +msgid "What context for display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1004 +msgid "Set the alignment of the image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:998 +msgid "Set a custom pixel width/height. If omitted defaults to the size set by \"context\"." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:993 +msgid "Widget" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:988 +msgid "What context for preset size options." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:982 +#: includes/admin/class-mp-shortcode-builder.php:1026 +#: includes/admin/class-mp-shortcode-builder.php:1052 +#: includes/admin/class-mp-shortcode-builder.php:1077 +#: includes/admin/class-mp-shortcode-builder.php:1096 +#: includes/admin/class-mp-shortcode-builder.php:1115 +msgid "The ID of the product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:963 +msgid "Whether to display the product meta (e.g. price, buy button)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:738 +#: includes/admin/class-mp-shortcode-builder.php:905 +#: includes/admin/class-mp-shortcode-builder.php:958 +#: includes/admin/class-mp-shortcode-builder.php:992 +#: includes/admin/class-mp-shortcode-builder.php:1035 +#: includes/admin/class-mp-shortcode-builder.php:1130 +#: includes/admin/class-mp-shortcode-builder.php:1349 +msgid "List" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:957 +#: includes/admin/class-mp-shortcode-builder.php:991 +#: includes/admin/class-mp-shortcode-builder.php:1034 +#: includes/admin/class-mp-shortcode-builder.php:1129 +msgid "Single" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:953 +msgid "Whether and what context of image size to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:948 +msgid "Full" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:943 +msgid "Whether and what type of content to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:937 +msgid "Whether to display the product title." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:931 +msgid "The ID of the product to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:747 +#: includes/admin/class-mp-shortcode-builder.php:914 +msgid "Hide" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:746 +#: includes/admin/class-mp-shortcode-builder.php:913 +msgid "Show" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:744 +#: includes/admin/class-mp-shortcode-builder.php:911 +msgid "Whether or not to show the product filters." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:724 +#: includes/admin/class-mp-shortcode-builder.php:891 +#: includes/admin/class-mp-shortcode-builder.php:1335 +msgid "Limits list to a specific product tag." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:713 +#: includes/admin/class-mp-shortcode-builder.php:880 +#: includes/admin/class-mp-shortcode-builder.php:1324 +msgid "Limits list to a specific product category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:706 +#: includes/admin/class-mp-shortcode-builder.php:873 +#: includes/admin/class-mp-shortcode-builder.php:1317 +msgid "Direction to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:684 +#: includes/admin/class-mp-shortcode-builder.php:851 +#: includes/admin/class-mp-shortcode-builder.php:1295 +msgid "What field to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:678 +#: includes/admin/class-mp-shortcode-builder.php:845 +#: includes/admin/class-mp-shortcode-builder.php:1283 +msgid "How many products to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:672 +#: includes/admin/class-mp-shortcode-builder.php:839 +#: includes/admin/class-mp-shortcode-builder.php:1277 +msgid "The page number to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:666 +#: includes/admin/class-mp-shortcode-builder.php:833 +#: includes/admin/class-mp-shortcode-builder.php:1271 +msgid "Whether to paginate the product list. This is useful to only show a subset." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:808 +msgid "How many related items to show." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:790 +msgid "How to relate the products" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:784 +msgid "The product to show related items for." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:765 +msgid "The maximum number of products to display" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:647 +msgid "Comma separated list of tags (term_id) to include. For example, include=5,27 means tags that have the term_id 5 or 27 will be the only tags displayed. Defaults to include everything." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:641 +msgid "Comma separated list of tags (term_id) to exclude. For example, exclude=5,27 means tags that have the term_id 5 or 27 will NOT be displayed. Defaults to exclude nothing." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:633 +#: includes/admin/class-mp-shortcode-builder.php:1420 +msgid "Sort order." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:629 +#: includes/admin/class-mp-shortcode-builder.php:1416 +msgid "Count" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:626 +#: includes/admin/class-mp-shortcode-builder.php:1413 +msgid "Order of the tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:620 +msgid "The text/space between tags)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:616 +msgid "UL with a class of \"wp-tag-cloud\"" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:615 +msgid "separated by whitespace defined by \"separator\" parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:613 +msgid "Format of the cloud display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:607 +msgid "The number of actual tags to display in the cloud. (Use \"0\" to display all tags.)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:601 +msgid "Unit of measure as pertains to the smallest and largest values. This can be any CSS length value, e.g. pt, px, em, %." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:595 +msgid "The text size of the tag with the largest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:589 +msgid "The text size of the tag with the smallest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:570 +msgid "The \"tabindex\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:564 +msgid "The \"name\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:558 +msgid "The \"id\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:552 +msgid "Which category ID is selected." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:540 +msgid "The max depth. This is ignored unless hierarchical is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:536 +#: includes/multisite/template-functions.php:816 +msgid "No Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:414 +#: includes/admin/class-mp-shortcode-builder.php:546 +msgid "Calculates link or post counts by including items from child categories. If show_counts and hierarchical are true this is automatically set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:409 +msgid "Value of n (some number) specifies the depth (or level) to descend in displaying Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:408 +msgid "Show only top level Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:407 +msgid "All Categories displayed in flat (no indent) form (overrides hierarchical)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:406 +msgid "All Categories and child Categories (Default)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:402 +msgid "This parameter controls how many levels in the hierarchy of Categories are to be included in the list of Categories. NOTE: The \"hierarchical\" argument, which is disabled by default, will override the depth argument, unless it is true. When the argument is false, it will display all of the categories. When it is enabled it will use the value in the \"depth\" argument." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:396 +#: includes/admin/class-mp-shortcode-builder.php:1394 +msgid "Sets the number of Categories to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:390 +#: includes/admin/class-mp-shortcode-builder.php:534 +msgid "Set the text to show when no categories are listed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:384 +msgid "Set the title and style of the outer list item. If present but empty, the outer list item will not be displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:378 +#: includes/admin/class-mp-shortcode-builder.php:528 +msgid "Display sub-categories as inner list items (below the parent list item) or inline." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:368 +#: includes/admin/class-mp-shortcode-builder.php:511 +msgid "Exclude category-tree from the results. The parameter include must be empty. If the hierarchical parameter is true, then use exclude instead of exclude_tree." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:354 +msgid "Only include these categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:340 +#: includes/admin/class-mp-shortcode-builder.php:356 +#: includes/admin/class-mp-shortcode-builder.php:370 +#: includes/admin/class-mp-shortcode-builder.php:496 +#: includes/admin/class-mp-shortcode-builder.php:513 +msgid "Select Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:338 +#: includes/admin/class-mp-shortcode-builder.php:494 +msgid "Exclude one or more categories from the results. The parameter include must be empty." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:332 +msgid "Set a URI for an image (usually an rss feed icon) to act as a link to each categories' rss-2 feed. This parameter overrides the feed parameter. There is no default for this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:320 +msgid "Display a link to each category's rss-2 feed and set the link text to display. The default is no text and no feed displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:313 +#: includes/admin/class-mp-shortcode-builder.php:487 +msgid "Any" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:307 +#: includes/admin/class-mp-shortcode-builder.php:481 +msgid "Only display categories that are children of the category identified by this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:301 +msgid "Sets whether a category's description is inserted into the title attribute of the links created (i.e. <a title=\"<em>Category Description</em>\" href=\"...)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:295 +#: includes/admin/class-mp-shortcode-builder.php:475 +msgid "Toggles the display of categories with no posts." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:289 +#: includes/admin/class-mp-shortcode-builder.php:469 +#: includes/admin/class-mp-shortcode-builder.php:1388 +msgid "Toggles the display of the current count of posts in each category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:279 +msgid "Style to display the categories list in. A value of list displays the categories as list items while none generates no special display method (the list items are separated by
    tags)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:269 +#: includes/admin/class-mp-shortcode-builder.php:449 +#: includes/admin/class-mp-shortcode-builder.php:1378 +msgid "Sort order for categories (either ascending or descending)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:259 +#: includes/admin/class-mp-shortcode-builder.php:439 +#: includes/admin/class-mp-shortcode-builder.php:1368 +msgid "Sort categories alphabetically, by unique Category ID, or by the count of posts in that Category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:253 +#: includes/admin/class-mp-shortcode-builder.php:433 +msgid "If a value is entered, causes the display of a link to all categories if the style is set to list." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:219 +msgid "Select an Action" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:217 +msgid "What would you like to do?" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:216 +#: includes/admin/class-mp-shortcode-builder.php:1522 +msgid "Add E-Commerce Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:197 +msgid "Display a list of links to your store pages." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:196 +msgid "Display a link or url to the order status page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:195 +msgid "Display a link or url to the current products list page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:194 +msgid "Display a link or url to the current store page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:193 +msgid "Display a link or url to the current shopping cart page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:192 +msgid "Display the cart widget." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:191 +msgid "Display the full product meta box with price and buy now/add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:190 +msgid "Display the product stock." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:189 +msgid "Display the product SKU number(s)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:188 +msgid "Display the product price (and sale price)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:187 +msgid "Display the buy or add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:186 +msgid "Display the featured image of a given product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:185 +msgid "Display a single product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:184 +msgid "Display a list of products according to preference." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:183 +msgid "Display products related to the one being viewed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:182 +msgid "Display a list of popular products ordered by sales." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:180 +msgid "Display an HTML dropdown of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:179 +msgid "Display an HTML list of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:178 +msgid "Display a cloud or list of your product tags." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:655 +msgid "Setup your payment gateway" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:643 +#: includes/admin/class-mp-setup-wizard.php:649 +msgid "Other Gateways" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:617 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:150 +msgid "Select which calculated shipping methods the customer will be able to choose from." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:601 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:134 +#: includes/public/class-mp-checkout.php:82 +msgid "Shipping Method" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:568 +msgid "I want to charge shipping" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:523 +#: includes/admin/store-settings/class-mp-store-settings-general.php:503 +msgid "Show Price + Tax?" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:507 +msgid "I.e. Taxes, VAT, GST, etc" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:491 +#: includes/admin/store-settings/class-mp-store-settings-general.php:471 +msgid "Current Rates" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:473 +msgid "Default Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:434 +#: includes/admin/class-mp-setup-wizard.php:442 +#: includes/admin/store-settings/class-mp-store-settings-general.php:386 +#: includes/admin/store-settings/class-mp-store-settings-general.php:394 +#: includes/multisite/class-mp-admin-multisite.php:204 +#: includes/multisite/class-mp-admin-multisite.php:212 +msgid "Select a Currency" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:414 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:105 +msgid "Choose Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:411 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:103 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:104 +msgid "All Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:410 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:102 +msgid "These are the countries that you will ship to." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:409 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:101 +msgid "Target Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:401 +msgid "Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:387 +#: includes/admin/store-settings/class-mp-store-settings-general.php:640 +msgid "Zip/Postal Code Label" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:352 +#: includes/admin/store-settings/class-mp-store-settings-general.php:606 +msgid "Select a State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:335 +#: includes/admin/store-settings/class-mp-store-settings-general.php:590 +msgid "Select A Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:332 +#: includes/admin/store-settings/class-mp-store-settings-general.php:587 +msgid "Select a Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:324 +msgid "Location" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:304 +#: includes/admin/class-mp-setup-wizard.php:312 +#: includes/admin/class-mp-store-settings-admin.php:129 +#: includes/admin/class-mp-store-settings-admin.php:262 +msgid "Quick Setup" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:289 +msgid "MarketPress setup is not complete! Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2479 +msgid "Enter your product name here" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2440 +msgid "Select a %s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2426 +msgid "Each product variation needs to have product attributes assigned to it so the system knows how to differentiate one product variation from the other. It is important that you assign a category to this product before choosing any attributes." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2409 +msgid "If you would like this variation to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2320 +msgid "Sale Price (if applicable)" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2281 +msgid "If you would like the description to be different than the main product enter it here." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2229 +msgid "Image" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2202 +#: includes/admin/class-mp-shortcode-builder.php:226 +msgid "Attributes" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2166 +msgid "Create your product variations here. You can reorder variations by using the number to left of each variation, or delete one by clicking the \"x\" to the right of each variation. NOTE: The variation that shows up first in this list will be considered the \"main variation\". The details from this variation will be used in product listings." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2061 +#: includes/admin/class-mp-products-admin.php:2332 +msgid "Value must be less than regular price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2043 +#: includes/admin/class-mp-products-admin.php:2306 +msgid "Regular Price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2023 +#: includes/admin/class-mp-products-admin.php:2286 +msgid "External URL" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1988 +#: includes/admin/class-mp-products-admin.php:2245 +msgid "Enter the quantity that you have available to sell." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1987 +#: includes/admin/class-mp-products-admin.php:2244 +msgid "Inventory Count" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1977 +#: includes/admin/class-mp-products-admin.php:2234 +msgid "Track Inventory?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1871 +msgid "%1$sProduct Images%2$s %3$sAdd images of the product. The first image on the list is the featured image for this product (you can reorder images on the list)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1806 +msgid "Add variations for this product. e.g. If you are selling t-shirts, you can create Color & Size variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1804 +msgid "%3$sAdd variations for%2$s %1$sProduct%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1776 +msgid "This product has a multiple variations %1$s(e.g. Multiple colors, sizes)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1775 +msgid "This is a unique product without variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1700 +msgid "Extra Shipping Cost %1$s(if applicable)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1659 +#: includes/admin/class-mp-products-admin.php:2112 +#: includes/admin/class-mp-products-admin.php:2359 +msgid "Weight" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1636 +#: includes/admin/class-mp-products-admin.php:2098 +#: includes/admin/class-mp-products-admin.php:2416 +msgid "Please enter a valid tax rate" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1531 +msgid "Limit Per Order %1$s(limit the number of the item a shopper can buy per order)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1513 +msgid "SKU %1$s(Stock Keeping Unit)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "%1$sPrice, Inventory & Variants%2$s %3$sSet price, manage inventory and create Product Variants (if appropriate for your product).%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "Product Variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1480 +msgid "External / Affiliate Link" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1471 +msgid "Digital Download" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1470 +msgid "Physical / Tangible Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1464 +msgid "Product Kind %1$s(Physical Product, Digital, etc)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1426 +msgid "Choose Products" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1420 +msgid "If you would like, you can choose specific related products instead of using the ones generated by MarketPress" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1019 +msgid "Changes saved successfully" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:826 +msgid "Option cannot be saved. Try again." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:821 +msgid "Option saved successfully." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:467 +msgid "Img" +msgstr "" + +#: includes/admin/class-mp-product-attributes-list-table.php:57 +msgid "Product attribute(s) deleted successfully." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:162 +msgid "- Create New Variation -" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:144 +msgid "Only lowercase letters and dashes (-) are allowed." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:139 +msgid "If a slug is not entered, it will be generated automatically. Max 32 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:138 +#: includes/admin/class-mp-product-attributes-list-table.php:23 +msgid "Slug" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:130 +msgid "Max 45 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:123 +msgid "Use the numbers on the left to sort. To delete - click the \"X\" to the right of each row." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:122 +msgid "Attribute Options" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:121 +msgid "Add Option" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:105 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:523 +msgid "Sort Order" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:87 +msgid "Alphabetical" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:86 +msgid "ID" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:84 +msgid "Select how the options will be sorted." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:82 +msgid "Sort By" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:75 +msgid "The name of the attribute (e.g. color, size, etc)" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:74 +msgid "Attribute Name" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:69 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Product Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Product Attributes" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:71 +msgid "You can choose to make this page one of the following core store pages." +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:66 +msgid "Network Store Base" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:61 +msgid "Checkout Page" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:52 +msgid "Store Page Settings" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1108 +msgid "Display billing/shipping info for this customer" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1097 +msgid "View order “%s”" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1072 +msgid "Flag as:" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:952 +msgid "Move To Trash" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:948 +msgid " Received" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:927 +msgid "Enter coupon code here" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:812 +msgid "The order status could not be updated due to unexpected error. Please try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:740 +msgid "An invalid bulk action was requested. Please go back and try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:692 +msgid "The order status for order ID %1$s was updated successfully." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:688 +msgid "Order statuses successfully updated." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:530 +msgid "Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:518 +msgid "Actual Shipping Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:513 +msgid "Method Paid For" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:504 +msgid "Amount Collected" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:477 +msgid "DHL" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:408 +msgid "There is no IPN history to show at this time" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:345 +msgid "Type" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:343 +msgid "Gateway" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:301 +#: includes/common/template-functions.php:528 +msgid "Order History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:291 +msgid "IPN History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:283 +msgid "Customer Info" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:279 +msgid "Order Details" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:157 +msgid "All Dates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:320 +msgid "Add Pages to Menu" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:318 +msgid "Add-ons" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:317 +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "User Capabilities" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:316 +#: includes/admin/class-mp-setup-wizard.php:631 +#: includes/admin/store-settings/class-mp-store-settings-payments.php:50 +msgid "Payment Gateways" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:315 +msgid "Shipping Rates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:312 +msgid "Configure" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:309 +#: includes/admin/class-mp-products-admin.php:466 +#: includes/admin/class-mp-shortcode-builder.php:797 +msgid "Tags" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:308 +#: includes/admin/class-mp-products-admin.php:465 +msgid "Categories" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:300 +msgid "Manage" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:297 +msgid "Here's some quick links to manage your store and products." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:288 +msgid "low in stock" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:287 +msgid "%s product" +msgid_plural "%s products" +msgstr[0] "" + +#: includes/admin/class-mp-dashboard-widgets.php:280 +msgid "received" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:279 +#: includes/admin/class-mp-dashboard-widgets.php:283 +msgid "%s order" +msgid_plural "%s orders" +msgstr[0] "" + +#: includes/admin/class-mp-dashboard-widgets.php:276 +msgid "Stock & Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:261 +msgid "Last 30 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:256 +msgid "Last 7 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:251 +msgid "Yesterday" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:248 +#: includes/admin/class-mp-dashboard-widgets.php:253 +#: includes/admin/class-mp-dashboard-widgets.php:258 +#: includes/admin/class-mp-dashboard-widgets.php:263 +msgid " Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:246 +msgid "Today" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:241 +msgid "Welcome back! Here's a quick summary of your store's performance." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:196 +#: includes/admin/class-mp-products-admin.php:895 +msgid "No products out of stock." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:136 +#: includes/admin/class-mp-products-admin.php:839 +msgid "Stock Level" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:135 +#: includes/admin/class-mp-products-admin.php:838 +msgid "Variation" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:121 +msgid "Low Stock (%s)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:116 +msgid "Store Management" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:115 +msgid "Store Reports" +msgstr "" + +#: includes/admin/class-mp-ajax.php:579 +#: includes/admin/class-mp-orders-admin.php:520 +#: includes/common/payment-gateways/2checkout.php:370 +#: includes/common/payment-gateways/authorizenet-aim.php:264 +#: includes/common/payment-gateways/mollie.php:93 +#: includes/common/payment-gateways/paymill.php:196 +#: includes/common/payment-gateways/pin.php:190 +#: includes/common/payment-gateways/skrill.php:157 +#: includes/common/payment-gateways/skrill.php:168 +#: includes/common/payment-gateways/wepay.php:143 +#: includes/public/class-mp-checkout.php:404 +msgid "Select One" +msgstr "" + +#: includes/admin/class-mp-ajax.php:511 +msgid "Oops... we could not locate any orders by that ID. Please double check your order ID and try again." +msgstr "" + +#: includes/admin/class-mp-ajax.php:482 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:166 +#: includes/multisite/class-mp-admin-multisite.php:584 +msgid "Edit Page" +msgstr "" + +#: includes/admin/class-mp-ajax.php:346 +msgid "Cancel " +msgstr "" + +#: includes/admin/class-mp-ajax.php:345 +msgid "Save " +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "Edit Description" +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "HTML Markup" +msgstr "" + +#: includes/admin/class-mp-ajax.php:333 +msgid "Plain Text Only" +msgstr "" + +#: includes/admin/class-mp-ajax.php:329 +msgid "Additional Content / Information for this Variation" +msgstr "" + +#: includes/admin/class-mp-ajax.php:317 +#: includes/admin/class-mp-products-admin.php:1762 +msgid "Allow this product to be purchased even if it's out of stock" +msgstr "" + +#: includes/admin/class-mp-ajax.php:313 +#: includes/admin/class-mp-products-admin.php:1711 +msgid "Track Product Inventory" +msgstr "" + +#: includes/admin/class-mp-ajax.php:300 +msgid "Extra Shipping Cost (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:295 +msgid "Ounces:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:294 +msgid "Pounds:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:292 +msgid "Kilograms:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:287 +#: includes/admin/class-mp-products-admin.php:1649 +msgid "Charge Shipping" +msgstr "" + +#: includes/admin/class-mp-ajax.php:273 +#: includes/admin/class-mp-products-admin.php:1623 +#: includes/admin/store-settings/class-mp-store-settings-general.php:454 +msgid "Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:272 +#: includes/admin/class-mp-products-admin.php:1622 +#: includes/admin/class-mp-products-admin.php:2090 +#: includes/admin/class-mp-products-admin.php:2408 +msgid "Special Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:271 +#: includes/admin/class-mp-products-admin.php:1625 +#: includes/admin/class-mp-products-admin.php:2092 +msgid "If you would like this product to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-ajax.php:268 +#: includes/admin/class-mp-products-admin.php:1599 +msgid "Charge Taxes (Special Rate)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:256 +#: includes/admin/class-mp-products-admin.php:1593 +#: includes/admin/class-mp-products-admin.php:2077 +#: includes/admin/class-mp-products-admin.php:2348 +msgid "End Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:255 +#: includes/admin/class-mp-products-admin.php:1589 +#: includes/admin/class-mp-products-admin.php:2072 +msgid "Start Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:1568 +msgid "Enter Sale Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:250 +#: includes/admin/class-mp-products-admin.php:1547 +msgid "Set up a Sale for this Product" +msgstr "" + +#: includes/admin/class-mp-ajax.php:206 includes/admin/class-mp-ajax.php:223 +msgid "Enter " +msgstr "" + +#: includes/admin/class-mp-ajax.php:193 +msgid "Browse" +msgstr "" + +#: includes/admin/class-mp-ajax.php:184 includes/admin/class-mp-ajax.php:192 +msgid "http://" +msgstr "" + +#: includes/admin/class-mp-ajax.php:183 +msgid "External Product URL" +msgstr "" + +#: includes/admin/class-mp-ajax.php:237 +msgid "Limit Per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:177 +#: includes/admin/class-mp-products-admin.php:1520 +msgid "Enter Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:174 +#: includes/admin/class-mp-products-admin.php:1512 +msgid "Enter SKU" +msgstr "" + +#: includes/admin/class-mp-ajax.php:173 +msgid "(Stock Keeping Unit)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:158 +msgid "Remove Image" +msgstr "" + +#: includes/admin/class-mp-ajax.php:74 +msgid "Variation Draft" +msgstr "" + +#: includes/admin/class-mp-admin.php:296 +#: includes/admin/class-mp-dashboard-widgets.php:70 +msgid "Please wait...saving in progress..." +msgstr "" + +#: includes/admin/class-mp-admin.php:295 +#: includes/admin/class-mp-dashboard-widgets.php:69 +msgid "Input is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:294 +#: includes/admin/class-mp-dashboard-widgets.php:68 +msgid "Valid number is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:292 +#: includes/admin/class-mp-dashboard-widgets.php:66 +msgid "Delete %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:291 +#: includes/admin/class-mp-dashboard-widgets.php:65 +msgid "Delete %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:290 +#: includes/admin/class-mp-dashboard-widgets.php:64 +msgid "Update inventory for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:289 +#: includes/admin/class-mp-dashboard-widgets.php:63 +msgid "Update inventory for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:288 +#: includes/admin/class-mp-dashboard-widgets.php:62 +msgid "Update price for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:287 +#: includes/admin/class-mp-dashboard-widgets.php:61 +msgid "Update prices for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:285 +#: includes/admin/class-mp-dashboard-widgets.php:59 +msgid "Creating variations, please wait..." +msgstr "" + +#: includes/admin/class-mp-admin.php:96 +msgid "The following payment gateways have been deprecated, Cubepoints, Bitpay, iDEAL, Skrill, Google Checkout. If you were using one of these gateways, please setup a new payment gateway here." +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:61 +msgid "Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:71 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:71 +#: includes/common/class-mp-gdpr.php:399 includes/common/class-mp-order.php:872 +#: includes/common/helpers.php:164 includes/public/class-mp-checkout.php:1434 +msgid "Shipping Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:66 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:66 +#: includes/common/class-mp-gdpr.php:392 includes/common/class-mp-order.php:864 +#: includes/common/helpers.php:163 includes/public/class-mp-checkout.php:1427 +msgid "Billing Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:61 +msgid "Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:258 +msgid "Shipping Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:256 +msgid "Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:235 +msgid "Payment Method: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:79 +msgid "The dir %s not exist or not writeable" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:239 +msgid "Shop header/logo" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:233 +msgid "Choose a template" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:226 +msgid "Template Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:221 +msgid "Disable automatic creation/attachment of invoices when only free products are ordered" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:220 +msgid "Disable for free products" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:216 +msgid "Attach invoice to" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:214 +msgid "Customer Order Shipped email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:212 +msgid "Customer New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:211 +msgid "Admin New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:206 +msgid "download" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:205 +msgid "How do you want to view the PDF?" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:203 +msgid "Open the PDF in a new browser tab/window" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:202 +msgid "Download the PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:158 +msgid "Export PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:103 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:106 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:109 +msgid "You can't download this order invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:76 +msgid "Invalid Request" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:72 +msgid "Order not exist!" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:67 +msgid "Invalid ID" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1293 +msgid "Coupon added successfully" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1292 +msgid "Please enter a code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1247 +msgid "No end" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1200 +msgid "Valid Dates" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1195 +msgid "Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1027 +msgid "No Coupons found in Trash" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1026 +msgid "No Coupons Found" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1025 +msgid "Search Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1024 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1028 +msgid "View Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1023 +msgid "New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1020 +msgid "Create New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1017 +msgid "Manage Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1002 +msgid "An error occurred while removing your coupon. Please try again." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:964 +msgid "Coupon can't be applied to this cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:951 +msgid "Invalid coupon code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:794 +msgid "Help Text" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:789 +msgid "Form Title" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:783 +msgid "Coupons Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:764 +msgid "End Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:758 +msgid "Does coupon have an end date?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:696 +msgid "Select Products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:688 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:723 +#: includes/common/payment-gateways/paypal-payflow.php:402 +msgid "User" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:638 +msgid "Max Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:636 +msgid "Enter the maximum number of times this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:623 +msgid "Leave blank to allow all other coupons." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:622 +msgid "Select combinable coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:618 +msgid "Can this coupon be combined with other coupons?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:613 +msgid "Apply to each applicable item once per cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:612 +msgid "Apply to each applicable item and quantity ordered" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:609 +msgid "How should the discount amount be applied?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:605 +msgid "Discount Amount" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:604 +msgid "Value must either be a decimal number or a percentage" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:602 +msgid "If you would like to give a percentage-based discount make sure to include the percent (%) symbol. Otherwise, the discount will be applied as a fixed amount off." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:595 +msgid "Letters and Numbers only." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:589 +msgid "Coupon Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:447 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:795 +msgid "More than one code? That's OK! Just be sure to enter one at a time." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:444 +msgid "Apply Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:314 +msgid "Coupon Discounts" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:89 +msgid "1 add-on disabled" +msgid_plural "%s add-ons disabled" +msgstr[0] "" + +#: includes/addons/class-mp-addons-list-table.php:84 +msgid "1 add-on enabled" +msgid_plural "%s add-ons enabled" +msgstr[0] "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Disabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Enable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:129 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:67 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:135 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:168 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:202 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:263 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:296 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:330 +msgid "Enabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +msgid "Disable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:34 +msgid "Disable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:33 +msgid "Enable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:21 +#: includes/admin/class-mp-products-admin.php:2280 +#: includes/common/class-mp-product.php:2916 +msgid "Description" +msgstr "" + +#: includes/common/template-functions.php:2889 +#: includes/multisite/template-functions.php:407 +msgid "Popularity (Least Popular - Most Popular)" +msgstr "" + +#: includes/common/template-functions.php:2888 +#: includes/multisite/template-functions.php:406 +msgid "Popularity (Most Popular - Least Popular)" +msgstr "" + +#: includes/common/template-functions.php:2885 +#: includes/multisite/template-functions.php:403 +msgid "Name (Z-A)" +msgstr "" + +#: includes/common/template-functions.php:2884 +#: includes/multisite/template-functions.php:402 +msgid "Name (A-Z)" +msgstr "" + +#: includes/common/template-functions.php:2883 +#: includes/multisite/template-functions.php:401 +msgid "Release Date (Oldest to Latest)" +msgstr "" + +#: includes/common/template-functions.php:2882 +#: includes/multisite/template-functions.php:400 +msgid "Release Date (Latest to Oldest)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:284 +msgid "paid" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "One Time Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Customer Counter" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Daily Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:182 +msgid "For the most accurate rates, please select the appropriate pick up type for your business." +msgstr "" + +#: includes/admin/class-mp-admin.php:374 +msgid "Page saved." +msgstr "" + +#: includes/admin/class-mp-admin.php:370 +msgid "Custom field deleted." +msgstr "" + +#: includes/admin/class-mp-admin.php:369 +msgid "Custom field updated." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:541 +msgid "%s - The payment request expired, - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:536 +msgid "%s - The payment not credited in merchants bitpay account, action required. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:252 +msgid "If enabled, you will recieve an email for each status update on payment." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:240 +msgid "Speed at which the bitcoin transaction registers as \"confirmed\" to the store. This overrides your merchant settings on the Bitpay website." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:238 +msgid "Transaction Speed" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:244 +msgid "Low" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:243 +msgid "Medium" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:242 +msgid "High" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:177 +#: includes/common/payment-gateways/_bitpay.php:517 +#: includes/common/payment-gateways/_bitpay.php:522 +msgid "%s - The payment request is under process. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:175 +#: includes/common/payment-gateways/_bitpay.php:527 +msgid "%s - The payment request has been processed - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:150 +#: includes/common/payment-gateways/_bitpay.php:294 +msgid "Incorrect order invoice, please contact site administrator" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:141 +msgid "We could not verify order invoice details, please try again or contact site administrator for help" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:81 +msgid "Login to Simplify to get your API credentials. Enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:605 +#: includes/common/payment-gateways/paypal-express.php:647 +msgid "Express Checkout is PayPal's premier checkout solution, which streamlines the checkout process for buyers and keeps them on your site after making a purchase. Unlike PayPal Pro, there are no additional fees to use Express Checkout, though you may need to do a free upgrade to a business account. More Info »" +msgstr "" + +#. Plugin URI of the plugin/theme +msgid "https://premium.wpmudev.org/project/e-commerce/" +msgstr "" + +#. Author of the plugin/theme +msgid "WPMU DEV" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:541 +#: includes/admin/class-mp-orders-admin.php:543 +msgid "Tracking Number" +msgstr "" + +#: includes/common/class-mp-order.php:805 +#: includes/common/payment-gateways/stripe.php:336 +#: includes/public/class-mp-checkout.php:402 +msgid "Country" +msgstr "" + +#: includes/common/class-mp-order.php:784 +#: includes/common/payment-gateways/stripe.php:338 +msgid "City" +msgstr "" + +#: includes/common/class-mp-order.php:780 +msgid "Address 2" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:340 +msgid "Address" +msgstr "" + +#: includes/common/class-mp-cart.php:752 includes/common/class-mp-gdpr.php:378 +msgid "Order Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:360 +msgid "Payment Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:347 +msgid "Transaction ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:207 +msgid "The WePay Card Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:186 +#: includes/common/shipping-modules/mp-fedex.php:283 +msgid "Account ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:179 +msgid "Access Token" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:172 +msgid "Client Secret" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:165 +msgid "Client ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:159 +msgid "You must login to WePay to get your API credentials. Make sure to check \"Tokenize credit cards\" option under \"API Keys\" section of your WePay app." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:154 +msgid "When in live mode it is recommended to use SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:148 +msgid "Donation" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:147 +msgid "Event" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:146 +msgid "Personal" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:145 +msgid "Service" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:144 +msgid "Goods" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:141 +msgid "Choose type of payments" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:140 +msgid "Checkout Type" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:134 +msgid "Staging" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:131 +msgid "Choose STAGING if you have registered the app on stage.wepay.com, or PRODUCTION if you registered on www.wepay.com" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:36 +#: includes/common/payment-gateways/wepay.php:299 +msgid "WePay" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:366 +msgid "Rejected - A payment was rejected." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:360 +msgid "Failed - A payment was rejected due to an error." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:342 +msgid "PayWay balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:298 +msgid "Full path of the cacerts.crt file" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:284 +msgid "User Name" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:277 +msgid "Biller Code" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:273 +msgid "Log Directory" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:266 +msgid "Encryption Key" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:60 +msgid "Your PayWay transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:40 +#: includes/common/payment-gateways/_payway.php:41 +msgid "PayWay" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:862 +msgid "You must register this application with PayPal using your business account login to get an Application ID that will work with your API credentials. A bit of a hassle, but worth it! In the near future we will be looking for ways to simplify this process. Register then submit your application while logged in to the developer portal. Note that you do not need an Application ID for testing in sandbox mode. More Information »" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:818 +#: includes/common/payment-gateways/paypal-chained-payments.php:840 +#: includes/common/payment-gateways/paypal-express.php:705 +msgid "You must login to PayPal and create an API signature to get your credentials. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:378 +msgid "Use Payflow payment gateway to accept online payments using your Internet merchant account and processing network. PayPal Payflow Pro is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:595 +msgid "Tags Only" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:594 +msgid "Category Only" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:795 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:593 +msgid "Category & Tags" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:591 +msgid "Relate Products By" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1008 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:455 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:751 +msgid "Right" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1007 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:454 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:749 +msgid "Left" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1009 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:750 +msgid "Center" +msgstr "" + +#: marketpress.php:273 +msgid "Orders from your e-commerce store." +msgstr "" + +#: marketpress.php:231 +msgid "Products for your e-commerce store." +msgstr "" + +#: marketpress.php:222 +msgid "Edit Product" +msgstr "" + +#. Description of the plugin/theme +msgid "The complete WordPress ecommerce plugin - works perfectly with BuddyPress and Multisite too to create a social marketplace, where you can take a percentage! Activate the plugin, adjust your settings then add some products to your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:272 +msgid "Beside" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:271 +msgid "Above" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:268 +msgid "Pin Count" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:261 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:287 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:318 +msgid "All View" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:260 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:286 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:317 +msgid "Single View" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:259 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:285 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:316 +msgid "Off" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:578 +msgid "Related Product Limit" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:681 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1201 +msgid "Applies To" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:685 +msgid "All Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:487 +msgid "The label shown for the tax line item in the cart. Taxes, VAT, GST, etc." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:485 +msgid "Tax Label" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:81 +msgid "Apply" +msgstr "" + +#: includes/admin/class-mp-admin.php:192 +msgid "MarketPress Instructions" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1954 +#: includes/admin/class-mp-products-admin.php:2194 includes/common/data.php:62 +#: includes/common/helpers.php:150 +msgid "Taxes" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1417 +#: includes/common/class-mp-product.php:2900 +msgid "Related Products" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:282 +#: includes/common/shipping-modules/mp-usps.php:316 +msgid "@ Max" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "(3-5 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "Priority Mail Express International Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:92 +msgid "Priority Mail Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:171 +#: includes/common/shipping-modules/mp-pickup.php:247 +msgid "In Store" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:159 +msgid "Pickup Fee" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:141 +msgid "This option allows your customers to indicate that they will pick-up their order at your place of business." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:60 +#: includes/common/shipping-modules/mp-pickup.php:76 +#: includes/common/shipping-modules/mp-pickup.php:176 +msgid "Pickup Instructions" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:24 +#: includes/common/shipping-modules/mp-pickup.php:254 +msgid "Pickup" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping - 0.00" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:256 +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:440 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:309 +msgid "Your Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:301 +msgid "Station" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:300 +msgid "Request Courier" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:299 +msgid "Drop Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:298 +msgid "Business Service Center" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:297 +msgid "Regular Pickup" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:135 +#: includes/common/shipping-modules/mp-fedex.php:264 +msgid "Production" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:207 +msgid "Simplify Commerce by MasterCard" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:104 +msgid "When in live mode, although it is not required, Simplify recommends you have an SSL certificate." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:183 +#: includes/common/payment-gateways/simplify.php:87 +msgid "Public Key" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:175 +#: includes/common/payment-gateways/simplify.php:94 +msgid "Private Key" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:71 +msgid "Simplify helps merchants to accept online payments from Mastercard, Visa, American Express, Discover, JCB, and Diners Club cards. It's that simple. We offer a merchant account and payment gateway in a single, secure package so you can concentrate on what really matters to your business. Only supports USD currently." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:267 +msgid "%1$s" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:151 +msgid "The Simplify Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/simplify.php:18 +msgid "Simplify" +msgstr "" + +#: includes/common/payment-gateways/pin.php:255 +msgid "%1$s Card %2$s" +msgstr "" + +#: includes/common/payment-gateways/pin.php:211 +msgid "The PIN Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:187 +msgid "Selecting a currency other than currency supported by PIN may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/pin.php:164 +msgid "You must login to PIN to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/pin.php:158 +msgid "When in live mode PIN recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/pin.php:45 +#: includes/common/payment-gateways/pin.php:286 +msgid "PIN" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:830 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:534 +#: includes/common/payment-gateways/paypal-express.php:865 +msgid "The payment is pending" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:235 +msgid "The Paymill Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:169 +msgid "You must login to Paymill to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:45 +#: includes/common/payment-gateways/paymill.php:308 +msgid "Paymill" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:90 +msgid "Invalid cardholder" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:89 +msgid "Card is no longer valid or has expired" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:88 +msgid "Please enter a valid Card CVC" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:87 +msgid "Please choose a valid Expiration Date." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:99 +#: includes/common/payment-gateways/skrill.php:100 +msgid "Skrill (Moneybookers)" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:24 +#: includes/common/shipping-modules/mp-weight-rate.php:292 +msgid "Weight Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:303 +msgid "USPS Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:270 +msgid "USPS Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:264 +msgid "USPS Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:145 +msgid "Flat Rate Large" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:140 +msgid "Flat Rate Medium 2" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:135 +msgid "Flat Rate Medium 1" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:130 +msgid "Flat Rate Small" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:118 +msgid "First Class International Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:114 +msgid "Priority Mail International Small Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:112 +msgid "Priority Mail International Medium Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:110 +msgid "Priority Mail International Large Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:108 +msgid "Priority Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:106 +msgid "Express Mail International Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:104 +msgid "Express Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:98 +msgid "Library Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:96 +msgid "Media Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "First-Class Mail Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:90 +msgid "Priority Mail Small Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:88 +msgid "Priority Mail Medium Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +#: includes/common/shipping-modules/mp-usps.php:88 +#: includes/common/shipping-modules/mp-usps.php:90 +#: includes/common/shipping-modules/mp-usps.php:92 +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "(2-4 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +msgid "Priority Mail Large Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "(2-4) days" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "Priority Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "Express Mail Sunday/Holiday Delivery Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:80 +msgid "Express Mail Flat Rate Boxes Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:78 +msgid "Express Mail Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:76 +msgid "Express Mail Sunday/Holiday Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:74 +msgid "Express Mail Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:72 +#: includes/common/shipping-modules/mp-usps.php:74 +#: includes/common/shipping-modules/mp-usps.php:76 +#: includes/common/shipping-modules/mp-usps.php:78 +#: includes/common/shipping-modules/mp-usps.php:80 +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "(1-2 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:72 +msgid "Express Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:67 +#: includes/common/shipping-modules/mp-usps.php:902 +msgid "USPS" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:534 +msgid "UPS (beta)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:166 +msgid "Required if using negotiated rates" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "Worldwide Express Plus" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "(Scheduled)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "Standard" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "(2-5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "Worldwide Expedited" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:54 +msgid "Worldwide Express" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "2nd Day Air AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "(1 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "Next Day Air Early AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "Next Day Air Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "3 Day Select" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:49 +msgid "Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:48 +msgid "2nd Day Air" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "Next Day Air" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:475 +#: includes/common/shipping-modules/mp-ups.php:43 +msgid "UPS" +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:27 +#: includes/common/shipping-modules/mp-table-rate.php:318 +msgid "Table Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:71 +#: includes/common/shipping-modules/mp-table-quantity.php:77 +msgid "Shipping Cost: " +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:70 +#: includes/common/shipping-modules/mp-table-quantity.php:76 +msgid "If quantity is greater than:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:66 +msgid "Each band must be a higher price than the one above it." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:56 +msgid "Number of Bands:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:53 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Each layer must be a higher quantity than the previous." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:51 +msgid "Table Quantity Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:31 +msgid "Table Quantity" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:135 +#: includes/common/shipping-modules/mp-table-rate.php:174 +#: includes/common/shipping-modules/mp-weight-rate.php:189 +msgid "European Union" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:123 +#: includes/common/shipping-modules/mp-table-rate.php:162 +#: includes/common/shipping-modules/mp-weight-rate.php:177 +msgid "United States" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:111 +#: includes/common/shipping-modules/mp-table-rate.php:151 +#: includes/common/shipping-modules/mp-weight-rate.php:166 +msgid "In Country" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:146 +#: includes/common/shipping-modules/mp-table-rate.php:186 +#: includes/common/shipping-modules/mp-weight-rate.php:201 +msgid "International" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:101 +#: includes/common/shipping-modules/mp-table-rate.php:141 +#: includes/common/shipping-modules/mp-weight-rate.php:156 +msgid "Canada" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:92 +#: includes/common/shipping-modules/mp-table-rate.php:132 +#: includes/common/shipping-modules/mp-weight-rate.php:147 +msgid "Hawaii and Alaska" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:83 +#: includes/common/shipping-modules/mp-table-rate.php:123 +#: includes/common/shipping-modules/mp-weight-rate.php:138 +msgid "Lower 48 States" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:64 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping." +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:25 +#: includes/common/shipping-modules/mp-flat-rate.php:223 +msgid "Flat Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:761 +msgid "FedEx (beta)" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Centimeters" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Inches" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1676 +#: includes/admin/class-mp-setup-wizard.php:547 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:166 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +msgid "Kilograms" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:103 +msgid " %1$s - %2$s" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:358 +msgid "Max Weight per Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:356 +msgid "Box Dimensions" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:354 +msgid "Box Name" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:344 +msgid "Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:343 +msgid "For each box defined enter the maximum weight it can contain." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:341 +msgid "Enter your standard box sizes as LengthxWidthxHeight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:386 +#: includes/common/shipping-modules/mp-ups.php:193 +#: includes/common/shipping-modules/mp-usps.php:234 +#: includes/common/shipping-modules/mp-usps.php:338 +msgid "Standard Boxes and Weight Limits" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:328 +msgid "Handling Charge per Interntional Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:294 +msgid "Handling Charge per Domestic Shipment " +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:388 +#: includes/common/shipping-modules/mp-ups.php:196 +#: includes/common/shipping-modules/mp-usps.php:237 +msgid "Add Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "(Next Day)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +msgid "Europe First International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:62 +msgid "International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:61 +#: includes/common/shipping-modules/mp-fedex.php:62 +#: includes/common/shipping-modules/mp-ups.php:54 +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "(1-3 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:61 +msgid "International First" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "(5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "International Economy" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "(2-7 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "Smart Post" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:55 +#: includes/common/shipping-modules/mp-ups.php:49 +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "(1-5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:55 +msgid "Ground Home Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "(1-7 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "Fedex Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:53 +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "(3 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:53 +msgid "Fedex Express Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +#: includes/common/shipping-modules/mp-ups.php:48 +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "(2 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +msgid "Fedex 2 Day" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "(2 Days am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "Fedex 2 Day AM" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "(1 Day)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +msgid "Standard Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "(1 Day am )" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "Priority Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "(1 Day am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "First Overnight" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:476 +#: includes/common/shipping-modules/mp-fedex.php:31 +msgid "FedEx" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:270 +#: includes/common/payment-gateways/simplify.php:179 +#: includes/common/payment-gateways/stripe.php:365 +msgid "%1$s Card ending in %2$s - Expires %3$s" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:259 +#: includes/common/payment-gateways/pin.php:238 +#: includes/common/payment-gateways/simplify.php:171 +msgid "%s Store Purchase - Order ID: %s, Email: %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:266 +msgid "You must login to Stripe to get your API credentials. You can enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:261 +msgid "When in live mode Stripe recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:311 +msgid "The Stripe Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:263 +#: includes/common/payment-gateways/paymill.php:122 +#: includes/common/payment-gateways/stripe.php:222 +msgid "Card Number" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:86 +msgid "Please enter a valid Credit Card Number." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:45 +#: includes/common/payment-gateways/stripe.php:433 +msgid "Stripe" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:750 +msgid "Sets the background color for the payment page. By default, the color is white." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:745 +msgid "Sets the background color for the header of the payment page. By default, the color is white." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:740 +msgid "Sets the border color around the header of the payment page. The border is a 2-pixel perimeter around the header space, which is 750 pixels wide by 90 pixels high. By default, the color is black." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:735 +msgid "URL for an image you want to appear at the top left of the payment page. The image has a maximum size of 750 pixels wide by 90 pixels high. PayPal recommends that you provide an image that is stored on a secure (https) server. If you do not specify an image, the business name is displayed." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:857 +#: includes/common/payment-gateways/paypal-express.php:1131 +msgid "The payment is pending because it is part of an order that has been authorized but not settled." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:853 +#: includes/common/payment-gateways/paypal-express.php:1127 +msgid "The payment is pending because it has been authorized but not settled. You must capture the funds first." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:847 +#: includes/common/payment-gateways/paypal-express.php:1120 +msgid "You denied the payment when it was marked as pending." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:837 +#: includes/common/payment-gateways/paypal-express.php:1108 +msgid "A reversal has occurred on this transaction due to an unknown reason." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:836 +#: includes/common/payment-gateways/paypal-express.php:1107 +msgid "A reversal has occurred on this transaction because you have given the customer a refund." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:835 +#: includes/common/payment-gateways/paypal-express.php:1106 +msgid "A reversal has occurred on this transaction due to a complaint about the transaction from your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:834 +#: includes/common/payment-gateways/paypal-express.php:1105 +msgid "A reversal has occurred on this transaction due to your customer triggering a money-back guarantee." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:833 +#: includes/common/payment-gateways/paypal-express.php:1104 +msgid "A reversal has occurred on this transaction due to a chargeback by your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:1101 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer:" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:826 +#: includes/common/payment-gateways/paypal-express.php:1097 +msgid "A payment has been accepted." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:818 +#: includes/common/payment-gateways/paypal-express.php:1087 +msgid "The transaction has not terminated, e.g. an authorization may be awaiting completion." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:531 +#: includes/common/payment-gateways/paypal-express.php:810 +#: includes/common/payment-gateways/paypal-express.php:1077 +msgid "The payment has failed. This happens only if the payment was made from your customer's bank account." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:806 +#: includes/common/payment-gateways/paypal-express.php:1072 +msgid "An authorization for this transaction has been voided." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:802 +#: includes/common/payment-gateways/paypal-express.php:1067 +msgid "The authorization period for this payment has been reached." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:798 +#: includes/common/payment-gateways/paypal-express.php:1062 +msgid "A reversal has been canceled; for example, when you win a dispute and the funds for the reversal have been returned to you." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:499 +#: includes/common/payment-gateways/paypal-express.php:1163 +msgid "PayPal Express Checkout" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:798 +msgid "Gateway Settings Page Message" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:725 +msgid "Signature" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:506 +#: includes/common/payment-gateways/eway31.php:533 +#: includes/common/shipping-modules/mp-fedex.php:276 +msgid "API Password" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:773 +msgid "Enter a percentage of all store sales to collect as a fee. Decimals allowed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:757 +msgid "Using PayPal Chained Payments allows you as the multisite network owner to collect a predefined fee or percentage of all sales on network MarketPress stores! This is invisible to the customers who purchase items in a store, and all PayPal fees will be charged to the store owner. To use this option you must create API credentials, and you should make all other gateways unavailable or limited above." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:338 +msgid "Please be aware that we will deduct a ?% fee from the total of each transaction in addition to any fees PayPal may charge you. If for any reason you need to refund a customer for an order, please contact us with a screenshot of the refund receipt in your PayPal history as well as the Transaction ID of our fee deduction so we can issue you a refund. Thank you!" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:698 +#: includes/common/payment-gateways/paypal-express.php:149 +msgid "There was a problem connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:470 +#: includes/common/payment-gateways/paypal-express.php:1053 +msgid "There was a problem verifying the IPN string with PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:310 +msgid "There was a problem connecting to PayPal to check the status of your purchase. Please check the status of your order here »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:539 +#: includes/common/payment-gateways/paypal-chained-payments.php:254 +#: includes/common/payment-gateways/paypal-express.php:1139 +msgid "The payment is pending." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:251 +#: includes/common/payment-gateways/paypal-chained-payments.php:531 +#: includes/common/payment-gateways/paypal-express.php:862 +#: includes/common/payment-gateways/paypal-express.php:1136 +msgid "The payment is pending for an unknown reason. For more information, contact PayPal customer service." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:250 +#: includes/common/payment-gateways/paypal-chained-payments.php:530 +#: includes/common/payment-gateways/paypal-express.php:861 +#: includes/common/payment-gateways/paypal-express.php:1135 +msgid "The payment is pending because you are not yet verified. You must verify your account before you can accept this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:249 +#: includes/common/payment-gateways/paypal-chained-payments.php:529 +#: includes/common/payment-gateways/paypal-express.php:860 +#: includes/common/payment-gateways/paypal-express.php:1134 +msgid "The payment is pending because it was made via credit card and you must upgrade your account to Business or Premier status in order to receive the funds. It can also mean that you have reached the monthly limit for transactions on your account." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:248 +#: includes/common/payment-gateways/paypal-chained-payments.php:528 +#: includes/common/payment-gateways/paypal-express.php:859 +#: includes/common/payment-gateways/paypal-express.php:1133 +msgid "The payment is pending because it was made to an email address that is not yet registered or confirmed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:247 +#: includes/common/payment-gateways/paypal-chained-payments.php:527 +#: includes/common/payment-gateways/paypal-express.php:858 +#: includes/common/payment-gateways/paypal-express.php:1132 +msgid "The payment is pending while it is being reviewed by PayPal for risk." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:246 +#: includes/common/payment-gateways/paypal-chained-payments.php:526 +#: includes/common/payment-gateways/paypal-express.php:856 +#: includes/common/payment-gateways/paypal-express.php:1130 +msgid "You do not have a balance in the currency sent, and you do not have your Payment Receiving Preferences set to automatically convert and accept this payment. You must manually accept or deny this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:245 +#: includes/common/payment-gateways/paypal-chained-payments.php:525 +#: includes/common/payment-gateways/paypal-express.php:855 +#: includes/common/payment-gateways/paypal-express.php:1129 +msgid "The payment is pending because you hold a non-U.S. account and do not have a withdrawal mechanism. You must manually accept or deny this payment from your Account Overview." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:244 +#: includes/common/payment-gateways/paypal-chained-payments.php:524 +#: includes/common/payment-gateways/paypal-express.php:854 +#: includes/common/payment-gateways/paypal-express.php:1128 +msgid "The payment is pending because it was made by an eCheck that has not yet cleared." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:243 +#: includes/common/payment-gateways/paypal-chained-payments.php:523 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:236 +#: includes/common/payment-gateways/paypal-chained-payments.php:516 +msgid "The transaction was rejected by the receiver (you)." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:510 +#: includes/common/payment-gateways/paypal-express.php:843 +#: includes/common/payment-gateways/paypal-express.php:1115 +msgid "You refunded the payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:224 +#: includes/common/payment-gateways/paypal-chained-payments.php:504 +msgid "The transaction is in progress." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:212 +#: includes/common/payment-gateways/paypal-chained-payments.php:491 +#: includes/common/payment-gateways/paypal-express.php:814 +#: includes/common/payment-gateways/paypal-express.php:1082 +msgid "The payment has been partially refunded." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:202 +#: includes/common/payment-gateways/paypal-chained-payments.php:481 +msgid "PayPal balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:177 +msgid "There was a problem connecting to PayPal to setup your purchase. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:122 +msgid "Your PayPal transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:50 +#: includes/common/payment-gateways/paypal-chained-payments.php:53 +#: includes/common/payment-gateways/paypal-chained-payments.php:732 +#: includes/common/payment-gateways/paypal-express.php:500 +#: includes/common/payment-gateways/paypal-express.php:938 +msgid "PayPal" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:48 +#: includes/common/payment-gateways/paypal-chained-payments.php:730 +#: includes/common/payment-gateways/paypal-chained-payments.php:756 +#: includes/common/payment-gateways/paypal-chained-payments.php:873 +msgid "PayPal Chained Payments" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:59 +#: includes/common/payment-gateways/paypal-payflow.php:467 +msgid "PayPal Payflow Pro" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:378 +msgid "Chargeback - A payment was reversed due to a chargeback. The funds have been removed from your account balance and returned to the buyer." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:372 +msgid "Failed - The Credit Card or Direct Debit transaction was declined." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:354 +#: includes/common/payment-gateways/skrill.php:366 +msgid "Cancelled - The payment was cancelled manually by the sender in their online account history or was auto-cancelled after 14 days pending." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:360 +msgid "Pending - The payment is pending. It can take 2-3 days for bank transfers to complete." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:349 +#: includes/common/payment-gateways/skrill.php:354 +msgid "Processed - The payment has been completed, and the funds have been added successfully to your Moneybookers account balance." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:189 +msgid "Shown to the customer on the confirmation screen - the end step of the process - a note, confirmation number, or any other message. Line breaks <br> may be used for longer messages." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:188 +msgid "Confirmation Note (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:183 +msgid "The URL of the logo which you would like to appear at the top of the payment form. The logo must be accessible via HTTPS otherwise it will not be shown. For best integration results we recommend that you use a logo with dimensions up to 200px in width and 50px in height." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:182 +msgid "Logo Image (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:177 +msgid "The name of this store, which will be shown on the gateway. If no value is submitted, the account email will be shown as the recipient of the payment." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:176 +msgid "Merchant Name (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:165 +msgid "Language" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:368 +#: includes/common/payment-gateways/authorizenet-aim.php:262 +#: includes/common/payment-gateways/eway.php:363 +#: includes/common/payment-gateways/eway31.php:471 +#: includes/common/payment-gateways/mollie.php:91 +#: includes/common/payment-gateways/paymill.php:193 +#: includes/common/payment-gateways/paypal-chained-payments.php:356 +#: includes/common/payment-gateways/paypal-express.php:688 +#: includes/common/payment-gateways/paypal-payflow.php:432 +#: includes/common/payment-gateways/pin.php:186 +#: includes/common/payment-gateways/skrill.php:152 +#: includes/common/payment-gateways/stripe.php:288 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:104 +msgid "Currency" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:359 +#: includes/common/payment-gateways/skrill.php:143 +msgid "Secret Word" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:261 +msgid "Order ID:" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:234 +msgid "Complete Checkout" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:204 +msgid "Your Moneybookers transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:155 +msgid "This is the email text to send to those who have made manual payment checkouts. You should include your manual payment instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:257 +#: includes/common/payment-gateways/manual-payments.php:128 +msgid "Record payments manually, such as by Cash, Check, or EFT." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:71 +msgid "Manual/Invoice" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:648 +#: includes/common/payment-gateways/manual-payments.php:35 +#: includes/common/payment-gateways/manual-payments.php:36 +msgid "Manual Payment" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:34 +#: includes/common/payment-gateways/manual-payments.php:163 +msgid "Manual Payments" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:288 +msgid "iDEAL Simulator (for testing)" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:287 +msgid "ABN Amro Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:286 +msgid "Friesland Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:285 +msgid "Rabobank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:284 +msgid "ING Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:279 +msgid "Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:270 +msgid "To make it easier to pay for online products and services, the Dutch banking community has developed the iDEAL online payment method. iDEAL allows online payments to be made using online banking in EUR only." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:247 +#: includes/common/payment-gateways/_payway.php:199 +#: includes/common/payment-gateways/manual-payments.php:68 +msgid "Invoiced" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1016 +msgid "Coupon" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:77 +#: includes/common/payment-gateways/_ideal.php:250 +#: includes/common/payment-gateways/_payway.php:202 +msgid "iDEAL" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:76 +msgid "iDEAL (beta)" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:327 +msgid "Merchant Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:293 +#: includes/common/payment-gateways/_payway.php:302 +#: includes/common/payment-gateways/payfast.php:324 +msgid "Merchant ID" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:462 +msgid "eWay Rapid 3.0 Payments lets merchants recieve credit card payments through eWay without need for users to leave the shop. Note this gateway requires a valid SSL certificate configured for this site." +msgstr "" + +#: includes/common/payment-gateways/eway.php:452 +msgid "There was a problem connecting to eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/eway.php:432 +#: includes/common/payment-gateways/eway.php:437 +msgid "The url of the image can be hosted on your website and pass the secure https:// path of the image to be displayed at the top of the website. This is the second image block on the webpage and is restricted to 960px X 65px. A default secure image is used if none is supplied." +msgstr "" + +#: includes/common/payment-gateways/eway.php:431 +#: includes/common/payment-gateways/eway.php:436 +msgid "Company Logo (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:427 +msgid "The page footer text can be customised and populated below the customer's order details. Useful for contact information." +msgstr "" + +#: includes/common/payment-gateways/eway.php:426 +msgid "Page Footer (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:421 +msgid "Page Description (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:417 +#: includes/common/payment-gateways/eway.php:422 +msgid "This value is used to populate the browsers title bar at the top of the screen." +msgstr "" + +#: includes/common/payment-gateways/eway.php:416 +msgid "Page Title (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:412 +msgid "This will be displayed as the company the customer is purchasing from, including this is highly recommended." +msgstr "" + +#: includes/common/payment-gateways/eway.php:411 +msgid "Company Name" +msgstr "" + +#: includes/common/payment-gateways/eway.php:394 +msgid "Customer ID" +msgstr "" + +#: includes/common/payment-gateways/eway.php:381 +#: includes/common/payment-gateways/eway31.php:488 +msgid "Live API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway.php:371 +#: includes/common/payment-gateways/eway31.php:479 +msgid "Gateway Mode" +msgstr "" + +#: includes/common/payment-gateways/eway.php:354 +msgid "The Hosted Page is a webpage hosted on eWAY's side eliminating the need for merchants to capture, transmit or store credit card numbers. At the checkout time the merchant automatically redirects the customer to the Hosted Page where they would enter their details and have the transaction processed. Upon completion of the transaction the customer is redirected back to the MarketPress checkout confirmation page." +msgstr "" + +#: includes/common/payment-gateways/eway.php:314 +msgid "There was a problem with your credit card information: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:300 +msgid "Paid - The card has been processed - %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:253 +msgid "There was a problem setting up the transaction with eWay: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:245 +#: includes/common/payment-gateways/eway.php:289 +msgid "There was a problem parsing the response from eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:159 +#: includes/common/payment-gateways/eway.php:189 +#: includes/common/payment-gateways/paypal-chained-payments.php:634 +#: includes/common/payment-gateways/paypal-express.php:322 +#: includes/common/payment-gateways/paypal-express.php:473 +msgid "%s Store Purchase - Order ID: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:147 +#: includes/common/payment-gateways/eway.php:462 +msgid "eWay Shared Payments" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:214 +msgid "This is the email text to send to those who have made CubePoints checkouts. You should include your CubePoints instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:212 +#: includes/common/payment-gateways/free_orders.php:188 +#: includes/common/payment-gateways/manual-payments.php:154 +msgid "Order Confirmation Email" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:207 +#: includes/common/payment-gateways/manual-payments.php:149 +msgid "Confirmation User Instructions" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:202 +#: includes/common/payment-gateways/manual-payments.php:144 +msgid "User Instructions" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:198 +#: includes/common/payment-gateways/free_orders.php:170 +#: includes/common/payment-gateways/manual-payments.php:139 +msgid "Enter a public name for this payment method that is displayed to users - No HTML" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:532 +#: includes/common/payment-gateways/_cubepoints.php:196 +#: includes/common/payment-gateways/free_orders.php:169 +#: includes/common/payment-gateways/manual-payments.php:138 +msgid "Method Name" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:187 +msgid "Accept CubePoints as payment(requires the CubePoints plugin)." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:140 +msgid "Sorry, but you do not appear to have enough points to complete this purchase!" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:124 +msgid "%s Store Purchase" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:79 +#: includes/common/payment-gateways/_cubepoints.php:171 +msgid "Your current points: " +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:133 +#: includes/common/payment-gateways/_cubepoints.php:197 +msgid "CubePoints" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:344 +msgid "Authorize.net AIM Checkout" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:331 +msgid "Custom API URL" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:332 +msgid "Many other gateways have Authorize.net API emulators. To use one of these gateways input their API post url here." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:322 +msgid "Request a delimited response from the payment gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:316 +msgid "Security: MD5 Hash" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:317 +msgid "The payment gateway generated MD5 hash value that can be used to authenticate the transaction response. Not needed because responses are returned using an SSL connection." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:306 +msgid "Customer Receipt Email Footer" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:296 +msgid "Customer Receipt Email Header" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:297 +#: includes/common/payment-gateways/paypal-payflow.php:446 +msgid "This text will appear as the header of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:282 +msgid "Encapsulation Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:283 +msgid "Authorize.net default is blank. Otherwise, get this from your credit card processor. If the transactions are going through, but getting strange responses, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:273 +msgid "Optional settings to control advanced options" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:224 +#: includes/common/payment-gateways/authorizenet-aim.php:272 +msgid "Advanced Settings" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:253 +msgid "Transaction Key" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:246 +msgid "Login ID" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:396 +msgid "Gateway Credentials" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:221 +msgid "Authorize.net AIM is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway. USD is the only currency supported by this gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:205 +msgid "There was a problem finalizing your purchase. %s Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:519 +#: includes/common/payment-gateways/paypal-chained-payments.php:218 +#: includes/common/payment-gateways/paypal-chained-payments.php:498 +#: includes/common/payment-gateways/paypal-express.php:822 +#: includes/common/payment-gateways/paypal-express.php:1092 +msgid "The payment has been completed, and the funds have been added successfully to your account balance." +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:233 +msgid "Please enter a valid credit card security code" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:224 +#: includes/public/class-mp-checkout.php:867 +msgid "Please enter a valid credit card number" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:221 +msgid "Please enter your credit card number" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:217 +msgid "Please enter your credit card security code" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:213 +msgid "Please select your credit card expiration date." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:299 +#: includes/common/payment-gateways/authorizenet-aim.php:50 +#: includes/common/payment-gateways/eway.php:148 +#: includes/common/payment-gateways/eway.php:298 +#: includes/common/payment-gateways/eway31.php:267 +#: includes/common/payment-gateways/paymill.php:46 +#: includes/common/payment-gateways/paypal-express.php:972 +#: includes/common/payment-gateways/paypal-payflow.php:60 +#: includes/common/payment-gateways/pin.php:46 +#: includes/common/payment-gateways/simplify.php:19 +#: includes/common/payment-gateways/stripe.php:46 +#: includes/common/payment-gateways/wepay.php:37 +msgid "Credit Card" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:49 +msgid "Authorize.net Checkout" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:156 +#: includes/common/payment-gateways/stripe.php:293 +msgid "Selecting a currency other than that used for your store may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:352 +msgid "Seller ID" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:340 +#: includes/common/payment-gateways/_ideal.php:311 +#: includes/common/payment-gateways/authorizenet-aim.php:234 +#: includes/common/payment-gateways/eway.php:376 +#: includes/common/payment-gateways/payfast.php:315 +#: includes/common/payment-gateways/paypal-chained-payments.php:368 +#: includes/common/payment-gateways/paypal-express.php:699 +#: includes/common/payment-gateways/paypal-payflow.php:391 +msgid "Live" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:339 +#: includes/common/payment-gateways/authorizenet-aim.php:233 +#: includes/common/payment-gateways/eway.php:375 +#: includes/common/payment-gateways/paypal-chained-payments.php:367 +#: includes/common/payment-gateways/paypal-express.php:698 +#: includes/common/payment-gateways/paypal-payflow.php:390 +#: includes/common/shipping-modules/mp-fedex.php:263 +msgid "Sandbox" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:336 +#: includes/common/payment-gateways/_ideal.php:307 +#: includes/common/payment-gateways/authorizenet-aim.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:365 +#: includes/common/payment-gateways/paypal-express.php:695 +#: includes/common/payment-gateways/paypal-payflow.php:387 +#: includes/common/payment-gateways/wepay.php:130 +#: includes/common/shipping-modules/mp-fedex.php:260 +msgid "Mode" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:288 +#: includes/common/payment-gateways/mijireh.php:242 +#: includes/common/payment-gateways/mollie.php:212 +msgid "The order has been received" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:74 +#: includes/common/payment-gateways/2checkout.php:75 +#: includes/common/payment-gateways/2checkout.php:435 +msgid "2Checkout" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:306 +msgid "Confirm" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:218 +#: includes/common/class-mp-cart.php:974 includes/common/class-mp-cart.php:1354 +#: includes/common/template-functions.php:918 +msgid "Checkout" +msgstr "" + +#: includes/common/template-functions.php:207 +msgid "Check Order Status" +msgstr "" + +#: includes/common/template-functions.php:235 +msgid "View Products" +msgstr "" + +#: includes/common/template-functions.php:263 +msgid "Visit Store" +msgstr "" + +#: includes/common/template-functions.php:2912 +#: includes/multisite/template-functions.php:448 +msgid "Order By" +msgstr "" + +#: includes/common/template-functions.php:2887 +#: includes/multisite/template-functions.php:405 +msgid "Price (High to Low)" +msgstr "" + +#: includes/common/template-functions.php:2886 +#: includes/multisite/template-functions.php:404 +msgid "Price (Low to High)" +msgstr "" + +#: includes/common/template-functions.php:2881 +#: includes/multisite/template-functions.php:399 +msgid "Default" +msgstr "" + +#: includes/common/template-functions.php:2858 +msgid "Show All" +msgstr "" + +#: includes/common/class-mp-product.php:2048 +msgid "View Larger Image »" +msgstr "" + +#: includes/common/class-mp-product.php:979 +msgid "Out of Stock" +msgstr "" + +#: includes/common/template-functions.php:148 +msgid "Price: " +msgstr "" + +#: includes/multisite/template-functions.php:833 +msgid "No Tags" +msgstr "" + +#: includes/common/template-functions.php:3162 +msgid "Uncategorized" +msgstr "" + +#: includes/common/class-mp-cart.php:569 includes/common/class-mp-order.php:604 +#: includes/common/helpers.php:115 +msgid "Download" +msgstr "" + +#: includes/common/class-mp-cart.php:1353 +msgid "Empty Cart" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:291 +#: includes/common/payment-gateways/paypal-express.php:718 +#: includes/common/payment-gateways/paypal-payflow.php:423 +#: includes/common/shipping-modules/mp-ups.php:158 +#: includes/public/class-mp-checkout.php:1254 +#: includes/public/class-mp-checkout.php:1383 +msgid "Password" +msgstr "" + +#: includes/common/payment-gateways/eway.php:387 +#: includes/common/payment-gateways/paypal-express.php:711 +#: includes/common/shipping-modules/mp-usps.php:185 +#: includes/public/class-mp-checkout.php:1249 +msgid "Username" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:437 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:790 +msgid "Have a coupon code?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:321 +#: includes/admin/class-mp-orders-admin.php:526 +#: includes/common/class-mp-cart.php:592 +msgid "Remove" +msgstr "" + +#: includes/admin/class-mp-ajax.php:316 +msgid "Quantity:" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2140 +#: includes/admin/class-mp-products-admin.php:2387 +#: includes/common/shipping-modules/class-mp-shipping-api.php:507 +msgid "Extra Shipping Cost" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:403 +msgid "Choose a Shipping Method:" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1691 +#: includes/admin/class-mp-products-admin.php:2131 +#: includes/admin/class-mp-products-admin.php:2378 +#: includes/common/shipping-modules/class-mp-shipping-api.php:228 +msgid "Ounces" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1684 +#: includes/admin/class-mp-products-admin.php:2123 +#: includes/admin/class-mp-products-admin.php:2369 +#: includes/admin/class-mp-setup-wizard.php:546 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:165 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +#: includes/common/shipping-modules/class-mp-shipping-api.php:227 +msgid "Pounds" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:226 +msgid "Product Weight:" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:214 +msgid "Weight (Kilograms)" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:82 +msgid "Number of Categories:" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:72 +msgid "Product Count" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:20 +#: includes/admin/class-mp-product-attributes-admin.php:129 +#: includes/admin/class-mp-product-attributes-list-table.php:22 +#: includes/admin/class-mp-products-admin.php:2216 +#: includes/admin/class-mp-shortcode-builder.php:628 +#: includes/admin/class-mp-shortcode-builder.php:1415 +#: includes/admin/widgets/ms-global-categories.php:70 +#: includes/common/shipping-modules/mp-fedex.php:395 +#: includes/common/shipping-modules/mp-ups.php:202 +#: includes/common/shipping-modules/mp-usps.php:243 +#: includes/public/class-mp-checkout.php:314 +msgid "Name" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:67 +msgid "Order Categories By:" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:24 +#: includes/admin/widgets/ms-global-categories.php:50 +msgid "Global Product Categories" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:15 +msgid "Global Product Category List" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:13 +msgid "Displays a network-wide HTML list of product categories from network MarketPress stores." +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:24 +#: includes/admin/widgets/ms-global-tag-cloud.php:45 +msgid "Global Product Tags" +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:15 +msgid "Global Product Tag Cloud" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:947 +#: includes/admin/widgets/ms-global-product-list.php:173 +msgid "Excerpt" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:169 +msgid "Content To Show:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:140 +msgid "Limit To Product Tag:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:132 +msgid "Limit To Product Category:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:72 +msgid "Global Products" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:16 +msgid "Global Product List" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:14 +msgid "Shows a customizable global list of products from network MarketPress stores." +msgstr "" + +#: includes/common/class-mp-product.php:974 +#: includes/multisite/template-functions.php:731 +msgid "Buy Now »" +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:13 +msgid "Displays global most used product tags in cloud format from network MarketPress stores." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:438 +msgid "Theme Permissions" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:402 +#: includes/multisite/class-mp-admin-multisite.php:448 +msgid "No Access" +msgstr "" + +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:120 +msgid "Pro Site Level" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:401 +#: includes/multisite/class-mp-admin-multisite.php:447 +msgid "All Can Use" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:390 +msgid "Gateway Permissions" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:375 +msgid "Select a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:350 +msgid "Global Gateway" +msgstr "" + +#. Plugin Name of the plugin/theme +msgid "MarketPress" +msgstr "" + +#: includes/admin/widgets/product-tag-cloud.php:7 +msgid "Your most used product tags in cloud format from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/categories.php:79 +msgid "Show hierarchy" +msgstr "" + +#: includes/admin/widgets/categories.php:76 +#: includes/admin/widgets/ms-global-categories.php:92 +msgid "Show product counts" +msgstr "" + +#: includes/admin/widgets/categories.php:73 +msgid "Show as dropdown" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:710 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:736 +#: includes/admin/widgets/categories.php:30 +msgid "Select Category" +msgstr "" + +#: includes/admin/widgets/categories.php:7 +msgid "A list or dropdown of product categories from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/product-list.php:250 +msgid "Show Buy Button" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:183 +#: includes/admin/widgets/product-list.php:244 +msgid "Show Price" +msgstr "" + +#: includes/admin/widgets/product-list.php:241 +msgid "Show Excerpt" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:155 +#: includes/admin/widgets/product-list.php:238 +msgid "Thumbnail Size:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:153 +#: includes/admin/widgets/product-list.php:237 +msgid "Show Thumbnail" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:147 +#: includes/admin/widgets/product-list.php:233 +msgid "Display Settings" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:136 +#: includes/admin/widgets/ms-global-product-list.php:144 +#: includes/admin/widgets/product-list.php:230 +msgid "Enter the Slug" +msgstr "" + +#: includes/admin/widgets/product-list.php:228 +#: includes/common/template-functions.php:894 +msgid "Tag" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:686 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:712 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:739 +#: includes/admin/class-mp-shortcode-builder.php:796 +#: includes/admin/widgets/product-list.php:227 +#: includes/common/template-functions.php:886 +#: includes/common/template-functions.php:2907 +msgid "Category" +msgstr "" + +#: includes/admin/widgets/product-list.php:226 +msgid "No Filter" +msgstr "" + +#: includes/admin/widgets/product-list.php:224 +msgid "Taxonomy Filter:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:108 +#: includes/admin/widgets/product-list.php:209 +msgid "Order Products By:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:101 +#: includes/admin/widgets/product-list.php:206 +msgid "Number of Products:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:98 +#: includes/admin/widgets/product-list.php:204 +msgid "List Settings" +msgstr "" + +#: includes/admin/widgets/product-list.php:177 +msgid "Our Products" +msgstr "" + +#: includes/admin/widgets/product-list.php:144 +#: includes/common/template-functions.php:2070 +#: includes/common/template-functions.php:2347 +#: includes/multisite/template-functions.php:303 +#: includes/multisite/template-functions.php:623 +msgid "No Products" +msgstr "" + +#: includes/admin/widgets/product-list.php:8 +msgid "Product List" +msgstr "" + +#: includes/admin/widgets/product-list.php:7 +msgid "Shows a customizable list of products from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/cart.php:75 includes/admin/widgets/categories.php:82 +#: includes/admin/widgets/product-list.php:253 +#: includes/admin/widgets/product-tag-cloud.php:57 +msgid "Only show on store pages" +msgstr "" + +#: includes/admin/widgets/cart.php:65 +#: includes/admin/widgets/ms-global-product-list.php:92 +#: includes/admin/widgets/product-list.php:200 +msgid "Custom Text:" +msgstr "" + +#: includes/admin/widgets/cart.php:64 includes/admin/widgets/categories.php:69 +#: includes/admin/widgets/ms-global-categories.php:59 +#: includes/admin/widgets/ms-global-product-list.php:87 +#: includes/admin/widgets/ms-global-tag-cloud.php:49 +#: includes/admin/widgets/product-list.php:199 +#: includes/admin/widgets/product-tag-cloud.php:49 +msgid "Title:" +msgstr "" + +#: includes/admin/widgets/cart.php:7 +msgid "Shows dynamic shopping cart contents along with a checkout button for your MarketPress store." +msgstr "" + +#: includes/admin/widgets/product-tag-cloud.php:8 +msgid "Product Tag Cloud" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:539 +#: includes/admin/class-mp-setup-wizard.php:575 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:163 +msgid "Measurement System" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:616 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:149 +msgid "Select Shipping Options" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:596 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:129 +msgid "Calculated Options" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:582 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:115 +msgid "No Shipping" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:110 +msgid "EU" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:109 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:93 +msgid "All" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:92 +msgid "Select:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:185 +msgid "Store Pages" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:223 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:256 +msgid "Order Shipped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:60 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:95 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:128 +#: marketpress.php:266 +msgid "New Order" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:314 +msgid "Email Notifications" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:59 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:200 +msgid "Products List" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:58 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:190 +msgid "Store Base" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:108 +#: includes/admin/class-mp-shortcode-builder.php:635 +#: includes/admin/class-mp-shortcode-builder.php:708 +#: includes/admin/class-mp-shortcode-builder.php:875 +#: includes/admin/class-mp-shortcode-builder.php:1319 +#: includes/admin/class-mp-shortcode-builder.php:1422 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:526 +#: includes/admin/widgets/ms-global-categories.php:78 +#: includes/admin/widgets/ms-global-product-list.php:127 +#: includes/admin/widgets/product-list.php:221 +msgid "Ascending" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:109 +#: includes/admin/class-mp-shortcode-builder.php:636 +#: includes/admin/class-mp-shortcode-builder.php:709 +#: includes/admin/class-mp-shortcode-builder.php:876 +#: includes/admin/class-mp-shortcode-builder.php:1320 +#: includes/admin/class-mp-shortcode-builder.php:1423 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:525 +#: includes/admin/widgets/ms-global-categories.php:75 +#: includes/admin/widgets/ms-global-product-list.php:124 +#: includes/admin/widgets/product-list.php:220 +msgid "Descending" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:637 +#: includes/admin/class-mp-shortcode-builder.php:695 +#: includes/admin/class-mp-shortcode-builder.php:862 +#: includes/admin/class-mp-shortcode-builder.php:1306 +#: includes/admin/class-mp-shortcode-builder.php:1424 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:518 +#: includes/admin/widgets/ms-global-product-list.php:121 +#: includes/admin/widgets/product-list.php:218 +msgid "Random" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:694 +#: includes/admin/class-mp-shortcode-builder.php:861 +#: includes/admin/class-mp-shortcode-builder.php:1305 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:517 +#: includes/admin/widgets/ms-global-product-list.php:119 +#: includes/admin/widgets/product-list.php:216 +msgid "Product Price" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:693 +#: includes/admin/class-mp-shortcode-builder.php:860 +#: includes/admin/class-mp-shortcode-builder.php:1304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:516 +#: includes/admin/widgets/ms-global-product-list.php:117 +#: includes/admin/widgets/product-list.php:215 +msgid "Number of Sales" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:692 +#: includes/admin/class-mp-shortcode-builder.php:859 +#: includes/admin/class-mp-shortcode-builder.php:1303 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:515 +#: includes/admin/widgets/product-list.php:214 +msgid "Product Author" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:691 +#: includes/admin/class-mp-shortcode-builder.php:858 +#: includes/admin/class-mp-shortcode-builder.php:1302 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:514 +#: includes/admin/widgets/product-list.php:213 +msgid "Product ID" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:690 +#: includes/admin/class-mp-shortcode-builder.php:857 +#: includes/admin/class-mp-shortcode-builder.php:1301 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:513 +#: includes/admin/widgets/ms-global-product-list.php:113 +#: includes/admin/widgets/product-list.php:212 +msgid "Publish Date" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:430 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:726 +msgid "Width" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:439 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:735 +msgid "Height" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:88 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:402 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:698 +msgid "Custom" +msgstr "" + +#: includes/common/class-mp-product.php:179 +#: includes/common/class-mp-product.php:992 +#: includes/common/class-mp-product.php:1000 +#: includes/multisite/template-functions.php:579 +msgid "Buy Now" +msgstr "" + +#: includes/common/class-mp-product.php:175 +#: includes/common/class-mp-product.php:990 +#: includes/common/class-mp-product.php:998 +msgid "Add To Cart" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:807 +msgid "Store Style" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1021 +msgid "Edit Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupon.php:580 +#: includes/admin/class-mp-ajax.php:238 +#: includes/admin/class-mp-products-admin.php:1532 +msgid "Unlimited" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1198 +msgid "Remaining Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1197 +msgid "Used" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:752 +#: includes/admin/class-mp-products-admin.php:2343 +msgid "Start Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:598 +msgid "Coupon Code" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:444 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:284 +msgid "Save Changes" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:57 +#: includes/admin/class-mp-shortcode-builder.php:716 +#: includes/admin/class-mp-shortcode-builder.php:727 +#: includes/admin/class-mp-shortcode-builder.php:883 +#: includes/admin/class-mp-shortcode-builder.php:894 +#: includes/admin/class-mp-shortcode-builder.php:946 +#: includes/admin/class-mp-shortcode-builder.php:956 +#: includes/admin/class-mp-shortcode-builder.php:1006 +#: includes/admin/class-mp-shortcode-builder.php:1327 +#: includes/admin/class-mp-shortcode-builder.php:1338 +#: includes/admin/store-settings/class-mp-store-settings-general.php:357 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:270 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:108 +#: includes/admin/widgets/ms-global-product-list.php:172 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:94 +msgid "None" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:352 +msgid "Google Analytics Ecommerce Tracking" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:310 +msgid "This option turns MarketPress into more of a product listing plugin, disabling shopping carts, checkout, and order management. This is useful if you simply want to list items you can buy in a store somewhere else, optionally linking the \"Buy Now\" buttons to an external site. Some examples are a car dealership, or linking to songs/albums in itunes, or linking to products on another site with your own affiliate links." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:304 +msgid "Whether or not customers must be registered and logged in to checkout. (Not recommended: Enabling this can lower conversions)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:258 +msgid "How many times may a customer download a file they have purchased? (It's best to set this higher than one in case they have any problems downloading)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:257 +msgid "Maximum Downloads" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:298 +msgid "This will set the product to draft if inventory of all variations is gone." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:288 +msgid "At what low stock count do you want to be warned for products you have enabled inventory tracking for?" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:208 +#: includes/admin/store-settings/class-mp-store-settings-general.php:287 +msgid "Inventory Warning Threshold" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:282 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:542 +msgid "Miscellaneous Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:429 +#: includes/multisite/class-mp-admin-multisite.php:247 +msgid "Show Decimal in Prices" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:451 +#: includes/admin/store-settings/class-mp-store-settings-general.php:403 +#: includes/multisite/class-mp-admin-multisite.php:221 +msgid "Currency Symbol Position" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:444 +#: includes/admin/store-settings/class-mp-store-settings-general.php:396 +msgid "Store Currency" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:429 +#: includes/admin/store-settings/class-mp-store-settings-general.php:381 +msgid "Currency Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:516 +msgid "Please see your local tax laws. Note if this is enabled and a downloadable only cart, rates will be the default for your base location." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:529 +msgid "Apply Tax to Downloadable Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:498 +msgid "Enabling this option allows you to enter and show all prices inclusive of tax, while still listing the tax total as a line item in shopping carts. Please see your local tax laws." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:497 +msgid "Enter Prices Inclusive of Tax?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:492 +msgid "Please see your local tax laws. Most areas charge tax on shipping fees." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:491 +msgid "Apply Tax To Shipping Fees?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:674 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:565 +#: includes/common/payment-gateways/authorizenet-aim.php:291 +#: includes/common/payment-gateways/authorizenet-aim.php:326 +#: includes/common/payment-gateways/payfast.php:347 +msgid "No" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:675 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:759 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:512 +#: includes/admin/class-mp-setup-wizard.php:518 +#: includes/admin/class-mp-setup-wizard.php:524 +#: includes/admin/class-mp-setup-wizard.php:530 +#: includes/admin/class-mp-setup-wizard.php:564 +#: includes/admin/store-settings/class-mp-store-settings-general.php:232 +#: includes/admin/store-settings/class-mp-store-settings-general.php:299 +#: includes/admin/store-settings/class-mp-store-settings-general.php:305 +#: includes/admin/store-settings/class-mp-store-settings-general.php:311 +#: includes/admin/store-settings/class-mp-store-settings-general.php:317 +#: includes/admin/store-settings/class-mp-store-settings-general.php:328 +#: includes/admin/store-settings/class-mp-store-settings-general.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:341 +#: includes/admin/store-settings/class-mp-store-settings-general.php:348 +#: includes/admin/store-settings/class-mp-store-settings-general.php:367 +#: includes/admin/store-settings/class-mp-store-settings-general.php:493 +#: includes/admin/store-settings/class-mp-store-settings-general.php:499 +#: includes/admin/store-settings/class-mp-store-settings-general.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:556 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:375 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:381 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:387 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:474 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:493 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:532 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:574 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:606 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:664 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:670 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:677 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:683 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:689 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:763 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:774 +#: includes/common/payment-gateways/_bitpay.php:250 +#: includes/common/payment-gateways/_bitpay.php:257 +#: includes/common/payment-gateways/_bitpay.php:264 +#: includes/common/payment-gateways/authorizenet-aim.php:290 +#: includes/common/payment-gateways/authorizenet-aim.php:325 +#: includes/common/payment-gateways/free_orders.php:160 +#: includes/common/payment-gateways/payfast.php:346 +#: includes/common/payment-gateways/paymill.php:162 +#: includes/common/payment-gateways/paypal-payflow.php:441 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-checkbox.php:22 +msgid "Yes" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:492 +#: includes/admin/store-settings/class-mp-store-settings-general.php:472 +msgid "%s Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:467 +#: includes/admin/store-settings/class-mp-store-settings-general.php:449 +msgid "Tax Settings" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:370 +#: includes/admin/store-settings/class-mp-store-settings-general.php:624 +msgid "Base Zip/Postal Code" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:354 +#: includes/admin/store-settings/class-mp-store-settings-general.php:608 +msgid "Base State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:589 +msgid "Base Country" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:582 +msgid "Location Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:195 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:800 +#: includes/multisite/class-mp-admin-multisite.php:172 +msgid "General Settings" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1945 +#: includes/admin/class-mp-products-admin.php:2185 +#: includes/admin/class-mp-store-settings-admin.php:111 +#: includes/admin/class-mp-store-settings-admin.php:266 +msgid "General" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:242 +msgid "Importers" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +#: includes/admin/class-mp-store-settings-admin.php:234 +msgid "Payments" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:313 +#: includes/admin/class-mp-store-settings-admin.php:112 +#: includes/admin/class-mp-store-settings-admin.php:222 +msgid "Presentation" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:916 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1015 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1018 +#: includes/admin/class-mp-dashboard-widgets.php:305 marketpress.php:702 +msgid "Coupons" +msgstr "" + +#: includes/admin/class-mp-admin.php:251 +msgid "Download »" +msgstr "" + +#: includes/admin/class-mp-admin.php:245 +#: includes/admin/class-mp-exporter-orders.php:170 +msgid "All Statuses" +msgstr "" + +#: includes/admin/class-mp-admin.php:209 +#: includes/admin/class-mp-exporter-orders.php:150 +#: includes/admin/class-mp-exporter-orders.php:178 +msgid "Export Orders" +msgstr "" + +#: includes/admin/class-mp-admin.php:228 +msgid "Show all dates" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:947 +msgid "Change Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:287 +msgid "Order Notes" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:478 +msgid "Other" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:205 +msgid "Subtotal" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:84 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:87 +#: includes/admin/class-mp-products-admin.php:1737 +#: includes/common/class-mp-cart.php:1409 +#: includes/common/class-mp-product.php:559 +msgid "Quantity" +msgstr "" + +#: includes/common/helpers.php:93 +msgid "Item" +msgstr "" + +#: includes/common/class-mp-order.php:1050 +msgid "Current Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:297 +msgid "Order Actions" +msgstr "" + +#: includes/common/class-mp-product.php:1084 +msgid "More Info »" +msgstr "" + +#: includes/common/class-mp-product.php:2313 +msgid "Low Product Inventory Notification" +msgstr "" + +#: includes/common/class-mp-order.php:338 includes/common/data.php:154 +msgid "New Order Notification: ORDERID" +msgstr "" + +#: includes/common/helpers.php:259 +msgid "Your payment for this order is complete." +msgstr "" + +#: includes/common/helpers.php:261 +msgid "Your payment for this order is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/helpers.php:256 +msgid "Payment Total:" +msgstr "" + +#: includes/common/helpers.php:253 +msgid "Transaction ID:" +msgstr "" + +#: includes/common/helpers.php:249 +msgid "Payment Type:" +msgstr "" + +#: includes/common/helpers.php:246 +msgid "Payment Method:" +msgstr "" + +#: includes/common/helpers.php:242 +msgid "Order Notes:" +msgstr "" + +#: includes/common/helpers.php:237 +msgid "Special Instructions:" +msgstr "" + +#: includes/common/helpers.php:232 +msgid "Tracking Number:" +msgstr "" + +#: includes/common/helpers.php:223 includes/common/helpers.php:226 +#: includes/common/helpers.php:228 +#: includes/common/shipping-modules/class-mp-shipping-api.php:406 +#: includes/common/shipping-modules/class-mp-shipping-api.php:428 +msgid "Shipping Method:" +msgstr "" + +#: includes/common/helpers.php:168 +msgid "No shipping required for this order." +msgstr "" + +#: includes/common/helpers.php:155 +msgid "Order Total:" +msgstr "" + +#: includes/common/class-mp-order.php:1025 +msgid "Taxes:" +msgstr "" + +#: includes/common/class-mp-order.php:1032 includes/common/helpers.php:144 +msgid "Shipping:" +msgstr "" + +#: includes/public/class-mp-checkout.php:367 +msgid "Street address, P.O. box, company name, c/o" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:314 +msgid "Shipping Info" +msgstr "" + +#: includes/public/class-mp-public.php:740 +msgid "Whoops, there was a problem loading up this file for your download. Please contact us for help." +msgstr "" + +#: includes/public/class-mp-public.php:683 +msgid "Sorry, our records show you've downloaded this file %d out of %d times allowed. Please contact us if you still need help." +msgstr "" + +#: includes/public/class-mp-public.php:634 +msgid "Sorry, your order has been marked as unpaid." +msgstr "" + +#: includes/public/class-mp-public.php:629 +msgid "Sorry, the link is invalid for this download." +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:15 +#: includes/admin/class-mp-products-admin.php:1172 +msgid "Cheatin’ uh?" +msgstr "" + +#: includes/public/class-mp-public.php:407 +#: includes/public/class-mp-short-codes.php:128 +msgid "Please enter a valid email address." +msgstr "" + +#: includes/admin/class-mp-ajax.php:191 +#: includes/admin/class-mp-products-admin.php:1821 +#: includes/admin/class-mp-products-admin.php:2010 +#: includes/admin/class-mp-products-admin.php:2267 +msgid "File URL" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1842 +msgid "External Link" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2177 +msgid "Add Variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:126 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:289 +msgid "Inventory" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:438 +#: includes/admin/class-mp-products-admin.php:578 +#: includes/admin/class-mp-products-admin.php:1552 +#: includes/admin/class-mp-products-admin.php:2053 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:134 +msgid "Sale Price" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "Variation Name" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1931 +msgid "Product Details" +msgstr "" + +#: includes/admin/class-mp-product-attributes-list-table.php:33 +msgid "Delete" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1057 +msgid "Trashed" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:231 +#: includes/admin/class-mp-orders-admin.php:1015 +#: includes/common/class-mp-order.php:1052 includes/common/helpers.php:97 +msgid "Total" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1196 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:210 +#: includes/admin/class-mp-orders-admin.php:1014 +msgid "Discount" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:221 +#: includes/admin/class-mp-orders-admin.php:1013 +#: includes/common/payment-gateways/_ideal.php:148 +#: includes/common/payment-gateways/_payway.php:134 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:108 +msgid "Tax" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:216 +#: includes/admin/class-mp-orders-admin.php:1012 +#: includes/admin/class-mp-products-admin.php:1958 +#: includes/admin/class-mp-products-admin.php:2198 +#: includes/admin/class-mp-store-settings-admin.php:114 +#: includes/admin/class-mp-store-settings-admin.php:230 +#: includes/common/class-mp-cart.php:717 includes/common/helpers.php:168 +#: includes/common/payment-gateways/_ideal.php:137 +#: includes/common/payment-gateways/_payway.php:116 +#: includes/public/class-mp-checkout.php:1304 +msgid "Shipping" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1011 +msgid "Items" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1010 +msgid "From" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:154 +#: includes/admin/class-mp-orders-admin.php:1009 +#: includes/common/class-mp-gdpr.php:370 +msgid "Order Date" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1008 +#: includes/common/class-mp-gdpr.php:366 +#: includes/common/template-functions.php:2134 +msgid "Order ID" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:22 +#: includes/admin/class-mp-orders-admin.php:1007 +msgid "Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1155 +msgid "N/A" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:243 +#: includes/admin/class-mp-products-admin.php:464 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:142 +msgid "Sales" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:463 +msgid "Stock" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:85 +#: includes/admin/class-mp-ajax.php:176 includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:434 +#: includes/admin/class-mp-products-admin.php:462 +#: includes/admin/class-mp-products-admin.php:576 +#: includes/admin/class-mp-products-admin.php:1519 +#: includes/admin/class-mp-products-admin.php:1569 +#: includes/admin/class-mp-products-admin.php:1950 +#: includes/admin/class-mp-products-admin.php:2059 +#: includes/admin/class-mp-products-admin.php:2190 +#: includes/admin/class-mp-products-admin.php:2330 +#: includes/common/class-mp-cart.php:1415 includes/common/helpers.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:130 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:276 +msgid "Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:173 +#: includes/admin/class-mp-products-admin.php:461 +#: includes/admin/class-mp-products-admin.php:1972 +#: includes/admin/class-mp-products-admin.php:2224 +msgid "SKU" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:459 +#: includes/admin/class-mp-products-admin.php:1793 +#: includes/admin/class-mp-products-admin.php:1805 +#: includes/admin/class-mp-products-admin.php:2163 +msgid "Variations" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:83 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:86 +#: includes/admin/class-mp-dashboard-widgets.php:134 +#: includes/admin/class-mp-products-admin.php:458 +#: includes/admin/class-mp-products-admin.php:837 +#: includes/admin/class-mp-shortcode-builder.php:689 +#: includes/admin/class-mp-shortcode-builder.php:856 +#: includes/admin/class-mp-shortcode-builder.php:1300 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:512 +#: includes/admin/widgets/ms-global-product-list.php:115 +#: includes/admin/widgets/product-list.php:211 +msgid "Product Name" +msgstr "" + +#: includes/common/template-functions.php:2575 +msgid "Categorized in " +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:305 +#: includes/common/payment-gateways/free_orders.php:176 +msgid "Payment Information" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:167 +#: includes/admin/class-mp-orders-admin.php:432 +#: includes/admin/class-mp-pages-admin.php:62 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:227 +#: includes/common/class-mp-gdpr.php:374 +#: includes/common/template-functions.php:175 +#: includes/common/template-functions.php:926 +msgid "Order Status" +msgstr "" + +#. translators: %s: orders closed +#: marketpress.php:327 +msgid "Closed (%s)" +msgid_plural "Closed (%s)" +msgstr[0] "" + +#: includes/admin/class-mp-admin.php:249 +#: includes/admin/class-mp-orders-admin.php:375 +#: includes/admin/class-mp-orders-admin.php:951 +#: includes/admin/class-mp-orders-admin.php:1053 +#: includes/admin/class-mp-orders-admin.php:1065 +#: includes/common/class-mp-gdpr.php:330 +#: includes/common/class-mp-order.php:1019 marketpress.php:325 +msgid "Closed" +msgstr "" + +#. translators: %s: shipped orders +#: marketpress.php:320 +msgid "Shipped (%s)" +msgid_plural "Shipped (%s)" +msgstr[0] "" + +#: includes/admin/class-mp-admin.php:248 +#: includes/admin/class-mp-orders-admin.php:376 +#: includes/admin/class-mp-orders-admin.php:950 +#: includes/admin/class-mp-orders-admin.php:1049 +#: includes/admin/class-mp-orders-admin.php:1064 +#: includes/common/class-mp-gdpr.php:329 +#: includes/common/class-mp-order.php:1002 marketpress.php:318 +msgid "Shipped" +msgstr "" + +#. translators: %s: paid orders +#: marketpress.php:313 +msgid "Paid (%s)" +msgid_plural "Paid (%s)" +msgstr[0] "" + +#: includes/admin/class-mp-admin.php:247 +#: includes/admin/class-mp-orders-admin.php:377 +#: includes/admin/class-mp-orders-admin.php:949 +#: includes/admin/class-mp-orders-admin.php:1045 +#: includes/admin/class-mp-orders-admin.php:1063 +#: includes/common/class-mp-gdpr.php:328 +#: includes/common/payment-gateways/2checkout.php:294 +#: includes/common/payment-gateways/_cubepoints.php:130 +#: includes/common/payment-gateways/authorizenet-aim.php:193 +#: includes/common/payment-gateways/free_orders.php:91 +#: includes/common/payment-gateways/mijireh.php:248 +#: includes/common/payment-gateways/paymill.php:273 +#: includes/common/payment-gateways/paypal-express.php:933 +#: includes/common/payment-gateways/paypal-express.php:967 +#: includes/common/payment-gateways/pin.php:258 +#: includes/common/payment-gateways/simplify.php:181 +#: includes/common/payment-gateways/stripe.php:368 +#: includes/common/payment-gateways/wepay.php:269 marketpress.php:311 +msgid "Paid" +msgstr "" + +#. translators: %s: orders received +#: marketpress.php:306 +msgid "Received (%s)" +msgid_plural "Received (%s)" +msgstr[0] "" + +#: includes/admin/class-mp-admin.php:246 +#: includes/admin/class-mp-orders-admin.php:378 +#: includes/admin/class-mp-orders-admin.php:1041 +#: includes/admin/class-mp-orders-admin.php:1062 +#: includes/common/class-mp-gdpr.php:327 includes/common/class-mp-order.php:995 +#: includes/common/payment-gateways/payfast.php:244 marketpress.php:304 +msgid "Received" +msgstr "" + +#: marketpress.php:268 +msgid "Search Orders" +msgstr "" + +#: marketpress.php:267 +msgid "View Order" +msgstr "" + +#: marketpress.php:262 +msgid "Order" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:301 +#: includes/admin/class-mp-orders-admin.php:989 marketpress.php:261 +msgid "Orders" +msgstr "" + +#: marketpress.php:228 +msgid "No Products found in Trash" +msgstr "" + +#: marketpress.php:227 +msgid "No Products Found" +msgstr "" + +#: marketpress.php:226 +msgid "Search Products" +msgstr "" + +#: marketpress.php:225 marketpress.php:229 +msgid "View Product" +msgstr "" + +#: marketpress.php:224 +msgid "New Product" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1022 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:258 +#: marketpress.php:223 +msgid "Edit" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1019 +msgid "Create New" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:687 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:698 +#: marketpress.php:217 +msgid "Product" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:307 +#: includes/common/template-functions.php:173 +#: includes/common/template-functions.php:179 +#: includes/common/template-functions.php:902 +#: includes/multisite/template-functions.php:82 marketpress.php:216 +#: marketpress.php:219 +msgid "Products" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:118 +#: includes/admin/widgets/product-tag-cloud.php:46 +#: includes/multisite/class-mp-admin-multisite.php:548 +msgid "Product Tags" +msgstr "" + +#: includes/common/template-functions.php:2906 +#: includes/multisite/template-functions.php:449 +msgid "Product Category" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:117 +#: includes/admin/widgets/categories.php:8 +#: includes/admin/widgets/categories.php:18 +#: includes/multisite/class-mp-admin-multisite.php:539 +msgid "Product Categories" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:332 +#: includes/common/template-functions.php:872 marketpress.php:218 +msgid "Store" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:60 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:209 +#: includes/admin/widgets/cart.php:8 includes/admin/widgets/cart.php:56 +#: includes/common/template-functions.php:174 +#: includes/common/template-functions.php:811 +msgid "Shopping Cart" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:110 +#: includes/admin/class-mp-store-settings-admin.php:218 +msgid "Store Settings" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:128 marketpress.php:607 +msgid "Settings" +msgstr "" + +#: includes/common/data.php:178 includes/common/data.php:190 +msgid "Your Order Has Been Shipped! (ORDERID)" +msgstr "" + +#: includes/common/data.php:159 includes/common/data.php:166 +#: includes/common/data.php:172 +msgid "Your Order Confirmation (ORDERID)" +msgstr "" + +#: includes/common/data.php:148 +msgid "

    Thank you for your order! We appreciate your business, and please come back often to check out our new products.

    " +msgstr "" + +#: includes/common/data.php:147 +msgid "

    You are almost done! Please do a final review of your order to make sure everything is correct then click the \"Confirm Payment\" button.

    " +msgstr "" + +#: includes/common/data.php:145 +msgid "

    Please enter your shipping information in the form below to proceed with your order.

    " +msgstr "" + +#: includes/common/data.php:143 +msgid "

    If you have any questions about your order please do not hesitate to contact us.

    " +msgstr "" + +#: includes/common/data.php:106 +msgid "tag" +msgstr "" + +#: includes/common/data.php:105 +msgid "category" +msgstr "" + +#: includes/common/data.php:104 +msgid "order-status" +msgstr "" + +#: includes/common/data.php:103 +msgid "shopping-cart" +msgstr "" + +#: includes/common/data.php:102 +msgid "products" +msgstr "" + +#. Translators: change default slugs here +#: includes/common/data.php:101 +msgid "store" +msgstr "" \ No newline at end of file diff --git a/languages/mp-zh-cn.mo b/languages/mp-zh-cn.mo new file mode 100644 index 0000000000000000000000000000000000000000..0c1d09d052bd29200adef2d0b5c0aa7759aaef65 GIT binary patch literal 273 zcmYLDF;2rk5DXI4mDChh(7`%3G|^eELJ~#7V4;BM(BUl3f!VY6HVF6!-=oP#ILAds z8qJJ$R+_()IoJ|$W}ZXy=c8uj3JCKldB|CHdefine( 'DOMPDF_ENABLE_HTML5PARSER', true ); to the wp-config.php file." +msgstr "" + +#: includes/public/class-mp-checkout.php:723 +msgid "Invalid Email" +msgstr "" + +#: includes/public/class-mp-checkout.php:721 +#: includes/public/class-mp-checkout.php:729 +msgid "This field is required" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:804 +msgid "This option changes the built-in css styles for store pages. For a custom css style, save your css file with the /* MarketPress Style: Your CSS Theme Name Here */ header line in the \"%s\" folder and it will appear in this list so you may select it. You should select \"None\" if you don't wish to use custom CSS styles or if you are using default theme templates or custom theme templates and css to make your own completely unique store design. For more information on custom theme templates click here »." +msgstr "" + +#: includes/public/class-mp-public.php:421 +#: includes/public/class-mp-short-codes.php:142 +msgid "Please enter a value greater than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:420 +#: includes/public/class-mp-short-codes.php:141 +msgid "Please enter a value less than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:419 +#: includes/public/class-mp-short-codes.php:140 +msgid "Please enter a value between {0} and {1}." +msgstr "" + +#: includes/public/class-mp-public.php:418 +#: includes/public/class-mp-short-codes.php:139 +msgid "Please enter a value between {0} and {1} characters long." +msgstr "" + +#: includes/public/class-mp-public.php:417 +#: includes/public/class-mp-short-codes.php:138 +msgid "Please enter at least {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:416 +#: includes/public/class-mp-short-codes.php:137 +msgid "Please enter no more than {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:415 +#: includes/public/class-mp-short-codes.php:136 +msgid "Please enter a value with a valid extension." +msgstr "" + +#: includes/public/class-mp-public.php:414 +#: includes/public/class-mp-short-codes.php:135 +msgid "Please enter the same value again." +msgstr "" + +#: includes/public/class-mp-public.php:413 +#: includes/public/class-mp-short-codes.php:134 +msgid "Please enter a valid credit card number." +msgstr "" + +#: includes/public/class-mp-public.php:412 +#: includes/public/class-mp-short-codes.php:133 +msgid "Please enter only digits." +msgstr "" + +#: includes/public/class-mp-public.php:411 +#: includes/public/class-mp-short-codes.php:132 +msgid "Please enter a valid number." +msgstr "" + +#: includes/public/class-mp-public.php:410 +#: includes/public/class-mp-short-codes.php:131 +msgid "Please enter a valid date (ISO)." +msgstr "" + +#: includes/public/class-mp-public.php:409 +#: includes/public/class-mp-short-codes.php:130 +msgid "Please enter a valid date." +msgstr "" + +#: includes/public/class-mp-public.php:408 +#: includes/public/class-mp-short-codes.php:129 +msgid "Please enter a valid URL." +msgstr "" + +#: includes/public/class-mp-public.php:406 +#: includes/public/class-mp-short-codes.php:127 +msgid "Please fix this field." +msgstr "" + +#: includes/public/class-mp-checkout.php:1287 +#: includes/public/class-mp-public.php:405 +#: includes/public/class-mp-short-codes.php:126 +msgid "This field is required." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:810 +msgid "None - Without Special CSS-styles" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:809 +msgid "Default - Using Default CSS-styles" +msgstr "" + +#: marketpress.php:739 +msgid "Enable multiple downloads per product" +msgstr "" + +#: marketpress.php:738 +msgid "Multiple Downloads" +msgstr "" + +#: includes/public/class-mp-checkout.php:715 +msgid "Invalid Zip Code" +msgstr "" + +#: includes/common/template-functions.php:2126 +msgid "Guest Email" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:195 +msgid "There was a problem finalizing your purchase. Please re-enter your credit card information and try again" +msgstr "" + +#: includes/common/class-mp-cart.php:565 includes/common/class-mp-order.php:600 +#: includes/common/helpers.php:111 +msgid "Download %1$s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:331 +msgid "Export products to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:328 +msgid "The import process uses the WordPress importer plugin." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:326 +msgid "Import / Export Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:325 +msgid "Export settings to file" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:324 +msgid "Import configuration" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:320 +msgid "Use the text below to export to a new installation. Or paste in the new configuration to import." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:318 +msgid "Import / Export Settings" +msgstr "" + +#. translators: URL to wp-admin/import.php +#: includes/admin/store-settings/class-mp-store-settings-import.php:266 +msgid "This importer is not installed. Please install importers from the main site." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:261 +msgid "Install Now" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:260 +msgid "Install %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:240 +msgid "Run Importer" +msgstr "" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:239 +msgid "Run %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:258 +msgid "Import/Export" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1199 +msgid "Requires Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:737 +msgid "Optionally limit the user to some categories" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:671 +msgid "Should this coupon only be available to logged in users?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:670 +msgid "Require Login" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:655 +msgid "Mimimum number of products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:653 +msgid "Enter the minimum number of products in the cart that this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:648 +msgid "Can this coupon be limited to a number of products in the cart?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:334 +msgid "Add all values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:265 +msgid "Set as default variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:154 +msgid "Set Default" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:150 +msgid "More Info" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:40 +msgid "MarketPress - Quick Setup" +msgstr "" + +#: includes/public/class-mp-checkout.php:1399 +msgid "Proceed to checkout and create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1241 +#: includes/public/class-mp-checkout.php:1245 +msgid "Register account" +msgstr "" + +#: includes/public/class-mp-checkout.php:1233 +msgid "Register as customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:765 +msgid "

    Oops!

    Looks like you haven't added anything your cart. Let's go shopping!

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:763 +msgid "

    Oops!

    The cart is disabled.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing Information" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:214 +msgid "Global Currency" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:198 +msgid "Global Store Currency" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:507 +msgid "There are no shipping services available for this type of package in your location." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:168 +msgid "Using this USPS Shipping calculator requires requesting an Ecommerce API Username and Password. Get your free set of credentials here ». The password is no longer used for the API, just the username which you should enter below. The USPS test site has not yet been updated and currently doesn't work - you should just request activating your credentials with USPS and go live." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:339 +msgid "ZIP Code" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:334 +msgid "Last name" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:333 +msgid "First name" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:150 +msgid "These are the manual payment instructions to display on the order confirmation screen. TOTAL will be replaced with the order total and ORDERID will be replaced with Order ID." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:240 +msgid "You must login to Authorize.net merchant dashboard to obtain the API login ID and API transaction key. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:327 +msgid "
    1. Set the \"Return Method\" within Site Management to Header Redirect and set the \"Return URL\" to %s
    2. Set your notifications url to %s
    " +msgstr "" + +#: includes/common/data.php:191 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Also, digital downloads included in your order are now ready to be downloaded. Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:185 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order is now available to download! Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:184 +msgid "Your Order Is Ready To Be Downloaded! (ORDERID)" +msgstr "" + +#: includes/common/data.php:179 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:173 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received, your digital goods are ready to be downloaded and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:167 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received and your digital goods are ready to be downloaded. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:160 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +" Your order has been received, and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information: \n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/class-mp-product.php:638 +msgid "You can not add more items to cart." +msgstr "" + +#: includes/common/class-mp-product.php:635 +msgid "You can only add {0} to cart." +msgstr "" + +#: includes/common/class-mp-product.php:625 +msgid "This product has an order limit of %d." +msgstr "" + +#: includes/common/class-mp-order.php:1454 +msgid "Shipped: tracking code: %s" +msgstr "" + +#: includes/common/class-mp-order.php:1000 +#: includes/common/class-mp-order.php:1012 +msgid "Finished" +msgstr "" + +#: includes/common/class-mp-order.php:858 +msgid "Contact Details" +msgstr "" + +#: includes/common/class-mp-order.php:339 includes/common/data.php:155 +msgid "" +"A new order (ORDERID) was created in your store:\n" +"\n" +" ORDERINFOSKU\n" +"\n" +" SHIPPINGINFO\n" +"\n" +" PAYMENTINFO\n" +"\n" +msgstr "\n" + +#: includes/common/class-mp-cart.php:1858 +msgid "Add again" +msgstr "" + +#: includes/common/class-mp-cart.php:1852 +msgid "was removed from Shopping Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1242 +#: includes/public/class-mp-short-codes.php:160 +msgid "Cart update notice: this item has a limit per order or you have reached the stock limit." +msgstr "" + +#: includes/admin/widgets/product-list.php:235 +msgid "Show Only Featured Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:533 +msgid "If enabled, users won't be able to filter products per category and/or to order by release date/name/price." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:531 +msgid "Hide Products Filter?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:353 +msgid "Notification to registration email instead of billing email?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:322 +msgid "Order Shipped - Mixed orders (with both digital and physical products)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:289 +msgid "Order Shipped - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:224 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:194 +msgid "New Order - Mixed" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:161 +msgid "New Order - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:115 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:243 +msgid "Mixed orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:110 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:238 +msgid "Digital downloads orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:105 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:233 +msgid "Physical orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:96 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed.
    For orders placed with manual payment, emails set here will be overriden by the one configured in manual payments settings, under payments settings page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:89 +msgid "Customer Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:47 +msgid "Admin Notification Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:566 +msgid "Only contact details" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:565 +msgid "Full billing info" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:561 +msgid "Details Collection" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:548 +msgid "Digital Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:515 +msgid "Apply Tax to Digital Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:236 +msgid "product (default)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:231 +msgid "If you are experiencing conflicts with other e-commerce plugins change this setting. This will change the internal post type of all your products. Please note that changing this option may break 3rd party themes or plugins." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1203 +msgid "Hide details" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1202 +msgid "Show all changes" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1184 +msgid "Version %s" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1161 +msgid "Current" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1131 +msgid "%s changelog" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:952 +msgid "We did not find any data for this plugin or theme..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:285 +msgid "Activate WPMU DEV Dashboard" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:279 +msgid "Just one more step - activate the WPMU DEV Dashboard plugin and you're all done!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:277 +msgid "Important updates are available for your WPMU DEV plugins/themes. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:273 +msgid "Just one more step to enable updates and support for %s!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:271 +msgid "Important updates are available for %s. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:264 +msgid "activate" +msgstr "" + +#: includes/admin/class-mp-admin.php:398 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:248 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:289 +msgid "Dismiss" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:247 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:288 +msgid "Saving..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:244 +msgid "Install Plugin" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:238 +msgid "Almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:236 +msgid "Important updates are available for your WPMU DEV plugins/themes. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:232 +msgid "%s is almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:230 +msgid "Important updates are available for %s. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:223 +msgid "install" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1428 +msgid "Sets the number of Tags to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1289 +msgid "How many products to display in the product list if \"paginate\" is set to false." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:739 +#: includes/admin/class-mp-shortcode-builder.php:906 +#: includes/admin/class-mp-shortcode-builder.php:1350 +msgid "Grid" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:735 +#: includes/admin/class-mp-shortcode-builder.php:902 +#: includes/admin/class-mp-shortcode-builder.php:1346 +msgid "Products will be displayed as list or grid." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:206 +msgid "Display a cloud or list of your global product tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:205 +msgid "Display a list of your global categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:204 +msgid "Display a list or grid of your global products." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:181 +msgid "Display a list of featured products." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1451 +msgid "Is Featured?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1444 +msgid "Featured Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:581 +#: includes/admin/class-mp-products-admin.php:1580 +msgid "% discount" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:579 +msgid "OR" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:460 +#: includes/admin/class-mp-products-admin.php:586 +#: includes/admin/widgets/product-list.php:217 +msgid "Featured" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:536 +#: includes/admin/class-mp-orders-admin.php:538 +msgid "Tracking Link" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:508 +msgid "Shipping Tax" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:356 +msgid "Shipping Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:352 +msgid "Taxes Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:349 +msgid "Products Total" +msgstr "" + +#: includes/admin/class-mp-ajax.php:366 +msgid "Oops! You entered an invalid username/email and or password." +msgstr "" + +#: includes/admin/class-mp-ajax.php:254 +msgid "Percentage Discount" +msgstr "" + +#: includes/admin/class-mp-ajax.php:234 +msgid "Limit the Amount of Items per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:214 +msgid "Unused Attributes" +msgstr "" + +#: includes/admin/class-mp-admin.php:82 +msgid "Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-admin.php:79 +msgid "MarketPress setup is not complete! Once you've completed this quick setup wizard you'll have a fully working online store - exciting! " +msgstr "" + +#: marketpress.php:263 +msgctxt "mp_order" +msgid "Add New" +msgstr "" + +#: marketpress.php:184 +msgctxt "product_tag" +msgid "Product Tag" +msgstr "" + +#: marketpress.php:183 +msgctxt "product_tag" +msgid "Product Tags" +msgstr "" + +#: marketpress.php:150 +msgctxt "product_category" +msgid "Product Category" +msgstr "" + +#: marketpress.php:149 +msgctxt "product_category" +msgid "Product Categories" +msgstr "" + +#. Author URI of the plugin/theme +msgid "http://premium.wpmudev.org" +msgstr "" + +#: marketpress.php:729 +msgid "Invoice PDF" +msgstr "" + +#: marketpress.php:712 +msgid "Grant access to themes and gateways depending on the user's Pro Site level" +msgstr "" + +#: marketpress.php:711 +msgid "Pro Sites" +msgstr "" + +#: marketpress.php:703 +msgid "Offer and accept coupon codes" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:687 +msgid "Install %s Pages" +msgstr "" + +#. translators: %s: plugin title +#: marketpress.php:682 +msgid "Welcome to %s – Install pages required by the plugin automatically." +msgstr "" + +#: marketpress.php:668 +msgid "Your pages were created successfully." +msgstr "" + +#: marketpress.php:436 +msgid "Add a Product" +msgstr "" + +#: marketpress.php:271 +msgid "Parent Order" +msgstr "" + +#: marketpress.php:270 +msgid "No orders found in trash" +msgstr "" + +#: marketpress.php:269 +msgid "No orders found" +msgstr "" + +#: marketpress.php:265 +msgid "Edit Order" +msgstr "" + +#: marketpress.php:264 +msgid "Add New Order" +msgstr "" + +#: marketpress.php:220 marketpress.php:221 +msgid "Add New Product" +msgstr "" + +#: marketpress.php:197 +msgid "No product tags found" +msgstr "" + +#: marketpress.php:196 +msgid "Choose from the most used product tags" +msgstr "" + +#: marketpress.php:195 +msgid "Add or remove product tags" +msgstr "" + +#: marketpress.php:194 +msgid "Separate product tags with commas" +msgstr "" + +#: marketpress.php:193 +msgid "Search Product Tags" +msgstr "" + +#: marketpress.php:192 +msgid "Parent Product Tag:" +msgstr "" + +#: marketpress.php:191 +msgid "Parent Product Tag" +msgstr "" + +#: marketpress.php:190 +msgid "New Product Tag Name" +msgstr "" + +#: marketpress.php:189 +msgid "Add New Product Tag" +msgstr "" + +#: marketpress.php:188 +msgid "Update Product Tag" +msgstr "" + +#: marketpress.php:187 +msgid "View Product Tag" +msgstr "" + +#: marketpress.php:186 +msgid "Edit Product Tag" +msgstr "" + +#: marketpress.php:185 +msgid "All Product Tags" +msgstr "" + +#: marketpress.php:163 +msgid "No product categories found" +msgstr "" + +#: marketpress.php:162 +msgid "Choose from the most used product categories" +msgstr "" + +#: marketpress.php:161 +msgid "Add or remove product categories" +msgstr "" + +#: marketpress.php:160 +msgid "Separate product categories with commas" +msgstr "" + +#: marketpress.php:159 +msgid "Search Product Categories" +msgstr "" + +#: marketpress.php:158 +msgid "Parent Product Category:" +msgstr "" + +#: marketpress.php:157 +msgid "Parent Product Category" +msgstr "" + +#: marketpress.php:156 +msgid "New Product Category Name" +msgstr "" + +#: marketpress.php:155 +msgid "Add New Product Category" +msgstr "" + +#: marketpress.php:154 +msgid "Update Product Category" +msgstr "" + +#: marketpress.php:153 +msgid "View Product Category" +msgstr "" + +#: marketpress.php:152 +msgid "Edit Product Category" +msgstr "" + +#: marketpress.php:151 +msgid "All Product Categories" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Please fix the %s1 and then try submitting the form again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Oops! The form contains %s1 which %s2 been highlighted below." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:660 +msgid "have" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:659 +msgid "has" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:651 +msgid "Value must be less than {0}" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:650 +msgid "Please enter only letters and numbers" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:539 +msgid "Due to prolonged inactivity on this page, one or more settings were not saved. Please try again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:535 +msgid "Settings Saved" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-user-select.php:22 +msgid "Select Some Users" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-section.php:18 +msgid "Section Title" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:425 +msgid "Are you sure you want to delete this?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:30 +msgid "Add Row" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-post-select.php:24 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-taxonomy-select.php:22 +msgid "Select Posts" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:210 +msgid "Add Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:129 +msgid "Select the image that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:93 +msgid "Select image(s) that you would like to use for this product." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:79 +msgid "Select the image that you would like to use for this variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:48 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:82 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:68 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:132 +msgid "Select Image" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:31 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:160 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:168 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:19 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:115 +msgid "Select File" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:30 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:18 +msgid "Select the file that you would like to use." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:357 +msgid "Create Variations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:356 +msgid "Add Another Variant" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Insert a value and press ENTER" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "(e.g. White, Grey, Red etc.)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Variation Values" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:333 +msgid "Or create new variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "(e.g. Color)" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:303 +msgid "You are about to delete selected variants.
    If you want to continue please confirm." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:302 +msgid "Confirmation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:290 +msgid "Insert quantity available. Empty for unlimited." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:281 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:294 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:307 +msgid "Cancel" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:280 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:293 +msgid "Update" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:277 +msgid "Insert the price i.e. 25 or 25.50" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:115 +msgid "Img." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:85 +msgid "Add New Variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:79 +msgid "Delete Variants" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:78 +msgid "Update Prices" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:77 +msgid "Update Inventory" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:76 +msgid "Update Images" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:75 +msgid "Bulk Actions" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:73 +msgid "Select bulk action" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:196 +msgid "Configure Store" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:195 +msgid "Configure shipping rates, emails and your store's appearance. " +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:190 +msgid "Add Product" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:189 +msgid "Add your first product for sale and get familiar with adding products." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:184 +msgid "Your store is almost ready for its first customers, but first it needs some products. Get started by adding products below, or jump straight into further configuring your store’s settings." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:183 +msgid "Woohoo! Your online store is up and running." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:160 +msgid "Finish Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:124 +msgid "And what metric system do you want to use?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:113 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:142 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:159 +msgid "Back" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:109 +msgid "Do you want to apply tax for your products? You can customize this for each product and variation." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:105 +msgid "What currency do you want to sell with?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:93 +msgid "And, which countries do you want to sell to?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:89 +msgid "Where is your online store based?" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:80 +msgid "Payment Gateway" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:79 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:123 +msgid "Metric System" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:78 +msgid "Currency & Tax" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:77 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:88 +msgid "Locations" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:70 +msgid "Choose where you want to sell your stuff and what currency. Easy!" +msgstr "" + +#: includes/public/class-mp-checkout.php:1400 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:58 +msgid "Continue" +msgstr "" + +#: includes/admin/class-mp-admin.php:83 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:53 +msgid "Skip this step, I'll do this manually" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:49 +msgid "Install store pages" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:44 +msgid "Once you've completed this quick setup wizard you'll have a fully working online store - exciting! Start
    by creating the default store pages for the online store such as the cart, checkout and store pages." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:42 +msgid "MarketPress adds a full online store to your website, with heaps of configuration options and addons
    to suit your needs. It's really easy to get going, and only takes a few minutes to setup!" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:41 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:69 +msgid "Welcome to MarketPress - Quick Setup" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-advanced-select.php:23 +msgid "Select Some Options" +msgstr "" + +#: includes/wpmudev-metaboxes/class-wpmudev-field.php:694 +msgid "You must the WPMUDEV_Field::display() method in your form field class" +msgstr "" + +#: includes/public/class-mp-short-codes.php:636 +msgid "Only %s left in stock..." +msgstr "" + +#: includes/public/class-mp-short-codes.php:633 +msgid "Unlimited stock" +msgstr "" + +#: includes/public/class-mp-short-codes.php:430 +msgid "product_id must be defined" +msgstr "" + +#: includes/public/class-mp-checkout.php:1250 +msgid "An account with this username already exists" +msgstr "" + +#: includes/public/class-mp-checkout.php:1394 +msgid "Continue as Guest" +msgstr "" + +#: includes/public/class-mp-checkout.php:1393 +msgid "Proceed to checkout and you'll have an opportunity to create an account at the end." +msgstr "" + +#: includes/public/class-mp-checkout.php:1392 +#: includes/public/class-mp-checkout.php:1398 +msgid "First-time customer?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1386 +msgid "Login" +msgstr "" + +#: includes/public/class-mp-checkout.php:1379 +msgid "E-Mail Address/Username" +msgstr "" + +#: includes/public/class-mp-checkout.php:1377 +msgid "Sign in to speed up the checkout process." +msgstr "" + +#: includes/public/class-mp-checkout.php:1376 +msgid "Have an account?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1297 +msgid "Shipping address different than billing?" +msgstr "" + +#: includes/public/class-mp-checkout.php:1184 +msgid "There are no available gateways to process this payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1160 +msgid "Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:1123 +msgid "Oops! An error occurred while processing your payment." +msgstr "" + +#: includes/public/class-mp-checkout.php:1051 +msgid "Next Step »" +msgstr "" + +#: includes/public/class-mp-checkout.php:1045 +msgid "« Previous Step" +msgstr "" + +#: includes/public/class-mp-checkout.php:873 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:657 +msgid "error" +msgstr "" + +#: includes/public/class-mp-checkout.php:872 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:658 +msgid "errors" +msgstr "" + +#: includes/public/class-mp-checkout.php:871 +msgid "

    Oops! We found %d %s in the form below.

    Fields that have errors are highlighted in red below. Entering into a field will reveal the actual error that occurred.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:870 +msgid "Please enter a valid first and last name" +msgstr "" + +#: includes/public/class-mp-checkout.php:869 +msgid " Please enter a valid card security code" +msgstr "" + +#: includes/public/class-mp-checkout.php:868 +msgid "Please enter a valid card expiration" +msgstr "" + +#: includes/public/class-mp-checkout.php:773 +msgid "Javascript is required in order to checkout. Please enable Javascript in your browser and then refresh this page." +msgstr "" + +#: includes/public/class-mp-checkout.php:588 +msgid "An unknown error occurred. Please try again." +msgstr "" + +#: includes/public/class-mp-checkout.php:386 +msgid "Town/City" +msgstr "" + +#: includes/public/class-mp-checkout.php:380 +msgid "Apartment, suite, unit, building, floor, etc" +msgstr "" + +#: includes/public/class-mp-checkout.php:376 +msgid "Address Line 2" +msgstr "" + +#: includes/public/class-mp-checkout.php:363 +msgid "Address Line 1" +msgstr "" + +#: includes/common/class-mp-order.php:770 +#: includes/public/class-mp-checkout.php:354 +msgid "Company" +msgstr "" + +#: includes/public/class-mp-checkout.php:330 +msgid "Last" +msgstr "" + +#: includes/public/class-mp-checkout.php:321 +msgid "First" +msgstr "" + +#: includes/public/class-mp-checkout.php:284 +msgid "State/Province" +msgstr "" + +#: includes/public/class-mp-checkout.php:83 +msgid "Review Order/Payment" +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing/Shipping Address" +msgstr "" + +#: includes/public/class-mp-checkout.php:80 +msgid "Login/Register" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:530 +msgid "Marketplace" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:523 +msgid "Global Marketplace Pages" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +msgid "Store Network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:478 +#: includes/multisite/class-mp-admin-multisite.php:494 +msgid "Store Network Settings" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:440 +msgid "Set theme access permissions for network stores. For a custom css theme, save your css file with the MarketPress Theme: NAME header in the /marketpress/ui/themes/ folder and it will appear in this list so you may select it." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:361 +msgid "Choose a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:336 +msgid "%d products get indexed" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:285 +msgid "Product Indexer" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:281 +msgid "Please hold on..." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:280 +msgid "Index Products" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:279 +msgid "%d products have been indexed in whole network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:182 +msgid "Enable Global Shopping Cart?" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:178 +msgid "Limit Global Widgets/Shortcodes To Main Blog?" +msgstr "" + +#: includes/common/template-functions.php:2802 +#: includes/multisite/template-functions.php:355 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:97 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:114 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:143 +msgid "Next" +msgstr "" + +#: includes/common/template-functions.php:2801 +#: includes/multisite/template-functions.php:354 +msgid "Prev" +msgstr "" + +#: includes/common/template-functions.php:2597 +msgid "Tagged in " +msgstr "" + +#: includes/common/template-functions.php:2196 +#: includes/common/template-functions.php:2202 +#: includes/common/template-functions.php:2214 +#: includes/common/template-functions.php:2217 +msgid "Oops! We couldn't locate any orders matching that order number. Please verify the order number and try again." +msgstr "" + +#: includes/common/template-functions.php:2138 +msgid "Look Up" +msgstr "" + +#: includes/common/template-functions.php:1423 +msgid "Please choose a shipping method" +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "If you have your order ID you can look it up using the form below." +msgstr "" + +#: includes/common/template-functions.php:927 +msgid "Order Search" +msgstr "" + +#: includes/common/template-functions.php:910 +#: includes/public/class-mp-checkout.php:1440 +msgid "Cart" +msgstr "" + +#: includes/common/template-functions.php:895 +msgid "[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:887 +msgid "[mp_global_categories_list]" +msgstr "" + +#: includes/common/template-functions.php:880 +msgid "" +"Welcome to our market place!\n" +"\n" +"Check out our network of products:\n" +"\n" +"[mp_list_global_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_global_categories_list]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:879 +msgid "Global Store" +msgstr "" + +#: includes/common/template-functions.php:873 +msgid "" +"Welcome to our online store! Feel free to browse around:\n" +"\n" +"[mp_store_navigation]\n" +"\n" +"Check out our most popular products:\n" +"\n" +"[mp_popular_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_list_categories]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_tag_cloud]" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:127 +msgid "If cart weight is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:126 +msgid "Cart Weight" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:222 +msgid "Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:206 +msgid "Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:196 +msgid "Retail Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:195 +msgid "Online Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:193 +msgid "Rates Request Type" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:189 +msgid "Maximum Weight Per Package" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:195 +#: includes/common/shipping-modules/mp-usps.php:236 +msgid "Enter your standard box sizes as LengthxWidthxHeight (e.g. 12x8x6) For each box defined enter the maximum weight it can contain. Note: the shipping prices this plugin calculates are estimates. If they are consistently too low or too high, please check that the list of boxes above and the product weights are accurate and complete." +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:187 +msgid "Handling Charge Per Box Shipped" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:176 +#: includes/common/shipping-modules/mp-ups.php:181 +msgid "Offered Services" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:165 +msgid "Shipper Number" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:151 +msgid "User ID" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:144 +msgid "Developer Kit Access Key" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:140 +msgid "Use Sandbox Mode?" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:123 +msgid "In order to use UPS, you will need a UPS Developer Kit access key and the UPS user ID and password associated with the access key. Set these up for free here. If this information is missing or incorrect, an error will appear during the checkout process and the buyer will not be able to complete the transaction." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:112 +msgid "If cart total is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:111 +msgid "Cart Total" +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:95 +#: includes/common/shipping-modules/mp-weight-rate.php:111 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Don't worry about sorting as this will be done automatically upon saving." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:170 +msgid "Method Title (visible for clients)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:409 +#: includes/common/shipping-modules/mp-ups.php:216 +#: includes/common/shipping-modules/mp-usps.php:251 +msgid "Max Weight (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:402 +#: includes/common/shipping-modules/mp-ups.php:209 +#: includes/common/shipping-modules/mp-usps.php:247 +msgid "Size (%s)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:387 +msgid "Enter your standard box sizes as LengthxWidthxHeight ( 12x8x6 ) For each box defined enter the maximum weight it can contain. Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:361 +#: includes/common/shipping-modules/mp-usps.php:229 +msgid "Handling Charge per International Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:353 +msgid "International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:339 +#: includes/common/shipping-modules/mp-usps.php:213 +msgid "Handling Charge per Domestic Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:331 +msgid "Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:321 +msgid "When checked the customer can chose Residential or Commercial delivery with Residential the default. Unchecked it's only Residential rates." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:320 +msgid "Allow Commercial Delivery?" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:315 +msgid "Fedex 10kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:314 +msgid "Fedex 25kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:313 +msgid "Fedex Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:312 +msgid "Fedex Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:311 +msgid "Fedex Pak" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:310 +msgid "Fedex Tube" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:306 +msgid "Default Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:294 +msgid "Dropoff Type" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:290 +msgid "Meter ID" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:134 +msgid "This is a residential address" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:283 +msgid "There was an error processing your card: \"%s\". Please check your credit card info and try again." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:121 +msgid "Wepay makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept cards directly on your site. You don't need a merchant account or gateway. WePay handles everything including storing cards. Credit cards go directly to WePay's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:385 +msgid "There was an error processing your card - \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:356 +msgid "%s Store Purchase - Order ID - %s, Email - %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:251 +msgid "Stripe makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept Visa, MasterCard, American Express, Discover, JCB, and Diners Club cards directly on your site. You don't need a merchant account or gateway. Stripe handles everything, including storing cards, subscriptions, and direct payouts to your bank account. Credit cards go directly to Stripe's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:192 +msgid "ZMW - Zambian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:191 +msgid "ZAR - South African Rand" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:190 +msgid "YER - Yemeni Rial" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:189 +msgid "XPF - Cfp Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:188 +msgid "XOF - West African Cfa Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:187 +msgid "XCD - East Caribbean Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:186 +msgid "XAF - Central African Cfa Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:185 +msgid "WST - Samoan Tala" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:184 +msgid "VUV - Vanuatu Vatu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:183 +msgid "VND - Vietnamese Đồng" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:182 +msgid "VEF - Venezuelan Bolívar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:181 +msgid "UZS - Uzbekistani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:180 +msgid "UYI - Uruguayan Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:178 +msgid "UGX - Ugandan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:177 +msgid "UAH - Ukrainian Hryvnia" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:176 +msgid "TZS - Tanzanian Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:175 +msgid "TWD - New Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:174 +msgid "TTD - Trinidad and Tobago Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:172 +msgid "TOP - Tongan Paʻanga" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:171 +msgid "TJS - Tajikistani Somoni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:169 +msgid "SZL - Swazi Lilangeni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:168 +msgid "SVC - Salvadoran Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:167 +msgid "STD - São Tomé and Príncipe Dobra" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:166 +msgid "SRD - Surinamese Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:165 +msgid "SOS - Somali Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:164 +msgid "SLL - Sierra Leonean Leone" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:163 +msgid "SHP - Saint Helenian Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:160 +msgid "SCR - Seychellois Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:159 +msgid "SBD - Solomon Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:157 +msgid "RWF - Rwandan Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:156 +msgid "RUB - Russian Ruble" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:155 +msgid "RSD - Serbian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:154 +msgid "RON - Romanian Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:153 +msgid "QAR - Qatari Riyal" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:152 +msgid "PYG - Paraguayan Guaraní*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:151 +msgid "PLN - Polish Złoty" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:150 +msgid "PKR - Pakistani Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:149 +msgid "PHP - Philippine Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:148 +msgid "PGK - Papua New Guinean Kina" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:147 +msgid "PEN - Peruvian Nuevo Sol*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:146 +msgid "PAB - Panamanian Balboa*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:144 +msgid "NPR - Nepalese Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:142 +msgid "NIO - Nicaraguan Córdoba*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:141 +msgid "NGN - Nigerian Naira" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:140 +msgid "NAD - Namibian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:139 +msgid "MZN - Mozambican Metical" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:137 +msgid "MXN - Mexican Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:136 +msgid "MWK - Malawian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:135 +msgid "MVR - Maldivian Rufiyaa" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:134 +msgid "MUR - Mauritian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:133 +msgid "MRO - Mauritanian Ouguiya" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:132 +msgid "MOP - Macanese Pataca" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:131 +msgid "MNT - Mongolian Tögrög" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:130 +msgid "MKD - Macedonian Denar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:129 +msgid "MGA - Malagasy Ariary" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:128 +msgid "MDL - Moldovan Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:126 +msgid "LVL - Latvian Lats" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:124 +msgid "LSL - Lesotho Loti" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:123 +msgid "LRD - Liberian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:122 +msgid "LKR - Sri Lankan Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:121 +msgid "LBP - Lebanese Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:120 +msgid "LAK - Lao Kip*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:119 +msgid "KZT - Kazakhstani Tenge" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:118 +msgid "KYD - Cayman Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:117 +msgid "KRW - South Korean Won" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:116 +msgid "KMF - Comorian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:115 +msgid "KHR - Cambodian Riel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:114 +msgid "KGS - Kyrgyzstani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:113 +msgid "KES - Kenyan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:111 +msgid "JMD - Jamaican Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:110 +msgid "ISK - Icelandic Króna" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:109 +msgid "INR - Indian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:108 +msgid "ILS - Israeli New Sheqel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:107 +msgid "IDR - Indonesian Rupiah" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:105 +msgid "HTG - Haitian Gourde" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:103 +msgid "HNL - Honduran Lempira*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:101 +msgid "GYD - Guyanese Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:100 +msgid "GTQ - Guatemalan Quetzal*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:99 +msgid "GNF - Guinean Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:98 +msgid "GMD - Gambian Dalasi" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:97 +msgid "GIP - Gibraltar Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:96 +msgid "GEL - Georgian Lari" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:94 +msgid "FKP - Falkland Islands Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:93 +msgid "FJD - Fijian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:91 +msgid "ETB - Ethiopian Birr" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:90 +msgid "EGP - Egyptian Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:89 +msgid "EEK - Estonian Kroon*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:88 +msgid "DZD - Algerian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:87 +msgid "DOP - Dominican Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:85 +msgid "DJF - Djiboutian Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:84 +msgid "CZK - Czech Koruna*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:83 +msgid "CVE - Cape Verdean Escudo*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:82 +msgid "CRC - Costa Rican Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:81 +msgid "COP - Colombian Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:80 +msgid "CNY - Chinese Renminbi Yuan" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:79 +msgid "CLP - Chilean Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:77 +msgid "CDF - Congolese Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:76 +msgid "CAD - Canadian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:75 +msgid "BZD - Belize Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:74 +msgid "BWP - Botswana Pula" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:73 +msgid "BSD - Bahamian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:72 +msgid "BRL - Brazilian Real*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:71 +msgid "BOB - Bolivian Boliviano*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:70 +msgid "BND - Brunei Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:69 +msgid "BMD - Bermudian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:68 +msgid "BIF - Burundian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:67 +msgid "BGN - Bulgarian Lev" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:66 +msgid "BDT - Bangladeshi Taka" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:65 +msgid "BBD - Barbadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:64 +msgid "BAM - Bosnia & Herzegovina Convertible Mark" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:63 +msgid "AZN - Azerbaijani Manat" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:62 +msgid "AWG - Aruban Florin" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:61 +msgid "AUD - Australian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:60 +msgid "ARS - Argentine Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:59 +msgid "AOA - Angolan Kwanza*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:58 +msgid "ANG - Netherlands Antillean Gulden" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:57 +msgid "AMD - Armenian Dram" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:56 +msgid "ALL - Albanian Lek" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:55 +msgid "AFN - Afghan Afghani*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:54 +msgid "AED - United Arab Emirates Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:345 +msgid "Skrill balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:327 +msgid "Skrill IPN message received." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:283 +msgid "Skrill" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:278 +msgid "Pending payment" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:144 +msgid "The secret word must match the word submitted in the \"Merchant Tools\" section of your Skrill account." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:134 +msgid "You must use your valid Skrill merchant email. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:133 +msgid "Skrill Email" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:123 +msgid "Resell your inventory via Skrill.com (Moneybookers)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:95 +msgid "ZAR - South-African Rand" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:93 +msgid "TWD - Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:92 +msgid "TRY - New Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:91 +msgid "TND - Tunisian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:90 +msgid "THB - Thailand Baht" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:89 +msgid "SKK - Slovakian Koruna" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:86 +#: includes/common/payment-gateways/stripe.php:158 +msgid "SAR - Saudi Riyal" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:85 +msgid "RSD - Serbian dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:83 +msgid "QAR - Qatari Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:81 +msgid "OMR - Omani Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:80 +msgid "NOK - Norwegian Krone " +msgstr "" + +#: includes/common/payment-gateways/skrill.php:78 +#: includes/common/payment-gateways/stripe.php:138 +msgid "MYR - Malaysian Ringgit" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:77 +#: includes/common/payment-gateways/stripe.php:127 +msgid "MAD - Moroccan Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:74 +msgid "KRW - South-Korean Won" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:72 +msgid "JOD - Jordanian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:70 +msgid "INR - Indian Rupee" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:63 +msgid "EEK - Estonian Kroon" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:56 +msgid "AED - Utd. Arab Emir. Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:52 +msgid "Turkish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:51 +msgid "Swedish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:50 +msgid "Spanish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:49 +msgid "Russian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:48 +msgid "Romainian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:47 +msgid "Polish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:46 +msgid "Italian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:45 +msgid "Greek" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:44 +msgid "German" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:43 +msgid "French" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:42 +msgid "Finnish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:41 +msgid "English" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:40 +msgid "Dutch" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:39 +msgid "Danish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:38 +msgid "Czech" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:37 +msgid "Chinese" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:201 +msgid "There was an error processing your card: %s. Please re-enter your credit card info and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:278 +msgid "
  • There was an error processing your card: \"%s\". Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:274 +msgid "
  • There was an error processing your card. Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:177 +#: includes/common/payment-gateways/stripe.php:279 +msgid "Publishable Key" +msgstr "" + +#: includes/common/payment-gateways/pin.php:163 +msgid "API Credentials?" +msgstr "" + +#: includes/common/payment-gateways/pin.php:147 +msgid "PIN makes it easy to start accepting credit card payments with Australia’s first all-in-one online payment system. Accept all major credit cards directly on your site. Your sales proceeds are deposited to any Australian bank account, no merchant account required." +msgstr "" + +#: includes/common/payment-gateways/pin.php:57 +#: includes/common/payment-gateways/stripe.php:179 +msgid "USD - United States Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:455 +msgid "Email Footer" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:445 +msgid "Email Header" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:416 +msgid "Partner" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:409 +msgid "Vendor" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:852 +#: includes/common/payment-gateways/paypal-express.php:1126 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences\t section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:749 +msgid "Page Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:744 +msgid "Header Background Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:739 +msgid "Header Border Color" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:734 +msgid "Header Image" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:680 +msgid "Locale" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:624 +#: includes/common/payment-gateways/paypal-express.php:658 +msgid "Merchant Email" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:645 +msgid "Paypal Express Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:603 +msgid "Paypal Express Network Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:861 +msgid "Application ID (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:854 +msgid "Signature (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:847 +msgid "API Password (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:839 +msgid "API Username (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:832 +msgid "Signature (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:825 +msgid "API Password (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:817 +msgid "API Username (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:799 +msgid "This message is displayed at the top of the gateway settings page to store admins. It's a good place to inform them of your fees or put any sales messages." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:787 +msgid "Please enter your PayPal email address or business ID you want to recieve fees at." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:786 +msgid "PayPal E-mail" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:772 +msgid "Fees to Collect (%)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:375 +#: includes/public/class-mp-checkout.php:341 +msgid "Email Address" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:299 +msgid "Sorry, your order was not completed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:126 +#: includes/common/payment-gateways/paypal-express.php:780 +msgid "You will be redirected to the PayPal site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:90 +#: includes/common/payment-gateways/skrill.php:94 +msgid "USD - U.S. Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:89 +msgid "TRY - Turkish lira" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:88 +#: includes/common/payment-gateways/stripe.php:170 +msgid "THB - Thai Baht" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:87 +msgid "TWD - Taiwan New Dollars" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:86 +#: includes/common/payment-gateways/pin.php:59 +#: includes/common/payment-gateways/skrill.php:88 +#: includes/common/payment-gateways/stripe.php:162 +msgid "SGD - Singapore Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:84 +msgid "RUB - Russian Rubles" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:82 +msgid "PHP - Philippine Pesos" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:81 +#: includes/common/payment-gateways/pin.php:58 +#: includes/common/payment-gateways/skrill.php:79 +#: includes/common/payment-gateways/stripe.php:145 +msgid "NZD - New Zealand Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:79 +msgid "MXN - Mexican Peso" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:78 +msgid "MYR - Malaysian Ringgits" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:77 +#: includes/common/payment-gateways/pin.php:64 +#: includes/common/payment-gateways/skrill.php:73 +#: includes/common/payment-gateways/stripe.php:112 +msgid "JPY - Japanese Yen" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:75 +#: includes/common/payment-gateways/pin.php:63 +#: includes/common/payment-gateways/skrill.php:66 +#: includes/common/payment-gateways/stripe.php:102 +msgid "HKD - Hong Kong Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:73 +msgid "GBP - Pound Sterling" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:68 +#: includes/common/payment-gateways/pin.php:62 +#: includes/common/payment-gateways/skrill.php:59 +msgid "CAD - Canadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:67 +msgid "BRL - Brazilian Real" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:66 +#: includes/common/payment-gateways/pin.php:56 +#: includes/common/payment-gateways/skrill.php:57 +msgid "AUD - Australian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:288 +msgid "There was an error processing your card: \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:163 +msgid "When running on a live site, Paymill recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:161 +#: includes/common/payment-gateways/pin.php:157 +#: includes/common/payment-gateways/simplify.php:103 +#: includes/common/payment-gateways/stripe.php:260 +#: includes/common/payment-gateways/wepay.php:153 +msgid "Force SSL?" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:151 +msgid "Accept Visa, Mastercard, Maestro UK, Discover and Solo cards directly on your site. You don't need a merchant account or gateway. Credit cards go directly to Paymill's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:131 +msgid "CVV2" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:72 +#: includes/common/payment-gateways/pin.php:61 +#: includes/common/payment-gateways/skrill.php:65 +#: includes/common/payment-gateways/stripe.php:95 +msgid "GBP - British Pound" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:71 +#: includes/common/payment-gateways/stripe.php:173 +msgid "TRY - Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:70 +#: includes/common/payment-gateways/paypal-chained-payments.php:85 +#: includes/common/payment-gateways/skrill.php:87 +#: includes/common/payment-gateways/stripe.php:161 +msgid "SEK - Swedish Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:69 +#: includes/common/payment-gateways/skrill.php:84 +msgid "RON - Romanian Leu New" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:68 +#: includes/common/payment-gateways/paypal-chained-payments.php:83 +#: includes/common/payment-gateways/skrill.php:82 +msgid "PLN - Polish Zloty" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:67 +#: includes/common/payment-gateways/paypal-chained-payments.php:80 +#: includes/common/payment-gateways/stripe.php:143 +msgid "NOK - Norwegian Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:66 +#: includes/common/payment-gateways/skrill.php:75 +#: includes/common/payment-gateways/stripe.php:125 +msgid "LTL - Lithuanian Litas" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:65 +#: includes/common/payment-gateways/paypal-chained-payments.php:69 +#: includes/common/payment-gateways/skrill.php:60 +#: includes/common/payment-gateways/stripe.php:78 +msgid "CHF - Swiss Franc" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:64 +#: includes/common/payment-gateways/skrill.php:76 +msgid "LVL - Latvian Lat" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:63 +#: includes/common/payment-gateways/paypal-chained-payments.php:74 +#: includes/common/payment-gateways/skrill.php:69 +msgid "ILS - Israeli Shekel" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:62 +#: includes/common/payment-gateways/skrill.php:71 +msgid "ISK - Iceland Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:61 +#: includes/common/payment-gateways/paypal-chained-payments.php:76 +#: includes/common/payment-gateways/skrill.php:68 +#: includes/common/payment-gateways/stripe.php:106 +msgid "HUF - Hungarian Forint" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:60 +#: includes/common/payment-gateways/paypal-chained-payments.php:71 +#: includes/common/payment-gateways/skrill.php:62 +#: includes/common/payment-gateways/stripe.php:86 +msgid "DKK - Danish Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:59 +#: includes/common/payment-gateways/skrill.php:67 +#: includes/common/payment-gateways/stripe.php:104 +msgid "HRK - Croatian Kuna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:58 +#: includes/common/payment-gateways/paypal-chained-payments.php:70 +#: includes/common/payment-gateways/skrill.php:61 +msgid "CZK - Czech Koruna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:57 +#: includes/common/payment-gateways/skrill.php:58 +msgid "BGN - Bulgarian Leva" +msgstr "" + +#: includes/common/payment-gateways/payflow/class-mp-gateway-worker-payflow.php:123 +msgid "There was an error connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:344 +msgid "This setting will log all PayFast communication to the \"payfast.log\" file." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:342 +msgid "Log Debugging Info?" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:335 +msgid "DO NOT INPUT A VALUE UNLESS YOU HAVE SET ONE IN THE SETTINGS SECTION OF YOUR PAYFAST SETTINGS." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:333 +msgid "PayFast Passphrase" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:323 +msgid "You can find your credentials on your integration page." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:321 +msgid "PayFast Merchant Credentials" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:311 +msgid "PayFast Mode" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:308 +msgid "PayFast is a payments processing service for South Africa. We make it safe for buyers to send money and easy for sellers to receive money. More Info »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:306 +msgid "PayFast Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:285 +msgid "Your payment via PayFast for this order totaling %s is complete. The transaction number is %s." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:278 +msgid "Your payment via PayFast for this order totaling %s is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:124 +msgid "Your PayFast transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:82 +#: includes/common/payment-gateways/payfast.php:83 +msgid "PayFast" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:157 +msgid "API error: - \"%s\"" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:198 +msgid "The payment request is under process" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:140 +msgid "Order: #" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:116 +msgid "You will be redirected to the Mollie site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:73 +msgid "%sMollie%s provides a fully PCI Compliant and secure way to collect payments via iDeal, Credit Card, Bancontact / Mister Cash, SOFORT Banking, Overbooking, Bitcoin, PayPal, paysafecard and AcceptEmail." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:53 +#: includes/common/payment-gateways/mollie.php:54 +#: includes/common/payment-gateways/mollie.php:195 +#: includes/common/payment-gateways/mollie.php:245 +msgid "Mollie" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:50 +#: includes/common/payment-gateways/paymill.php:56 +#: includes/common/payment-gateways/paypal-chained-payments.php:72 +#: includes/common/payment-gateways/pin.php:60 +#: includes/common/payment-gateways/skrill.php:64 +#: includes/common/payment-gateways/stripe.php:92 +msgid "EUR - Euro" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:306 +msgid "Access Key" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:300 +msgid "You must login to the Mijireh.com dashboard to obtain the Access Key." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:299 +msgid "Credentials" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:289 +msgid "Mijireh Checkout provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:269 +msgid "Mijireh Error: " +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:89 +msgid "You will be redirected to the Mijireh.com site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:87 +msgid "Your Mijireh transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:42 +#: includes/common/payment-gateways/mijireh.php:43 +#: includes/common/payment-gateways/mijireh.php:324 +msgid "Mijireh" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:145 +msgid "These are the manual payment instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:189 +msgid "This is the email text to send to those who have made free order checkouts. You should include your free order instructions / information here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:183 +msgid "This is the free order information to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:182 +msgid "Confirmation User Information" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:177 +msgid "This is the information to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:163 +msgid "If enabled, all free orders will be automatically marked as paid." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:159 +msgid "Payment Status" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:149 +msgid "This gateway is automatically activated if order totalling 0 and it can't be disabled" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:35 +#: includes/common/payment-gateways/free_orders.php:36 +#: includes/common/payment-gateways/free_orders.php:89 +msgid "Free Order" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:34 +#: includes/common/payment-gateways/free_orders.php:197 +msgid "Free Orders" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:515 +msgid "Sandbox API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:266 +#: includes/common/payment-gateways/eway31.php:542 +msgid "eWay Rapid 3.1 Payments (beta)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:403 +msgid "Hosted Payment Page Language" +msgstr "" + +#: includes/common/payment-gateways/eway.php:373 +msgid "Note when testing in sandbox mode it will use the default eWay test API credentials. Also, please note that cart total needs to be a whole number (e.g. 10.00) in order to generate a successful transaction, otherwise the transaction will fail." +msgstr "" + +#: includes/common/payment-gateways/eway.php:267 +msgid "You will be redirected to https://www.eway.com.au to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:380 +msgid "You have chosen to checkout using %s. Please confirm your order details and click \"Submit Order\" when finished." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:272 +#: includes/common/payment-gateways/paymill.php:131 +#: includes/common/payment-gateways/stripe.php:231 +msgid "Security Code " +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Enter in MM/YYYY or MM/YY format" +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Expiration" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:321 +msgid "Delim Data" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:307 +#: includes/common/payment-gateways/paypal-payflow.php:456 +msgid "This text will appear as the footer of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:287 +#: includes/common/payment-gateways/paypal-payflow.php:440 +msgid "Email Customer (on success)" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:278 +msgid "Authorize.net default is \",\". Otherwise, get this from your credit card processor. If the transactions are not going through, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:277 +msgid "Delimeter Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:193 +msgid "Held For Review" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:310 +#: includes/common/payment-gateways/payfast.php:314 +msgid "Test" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:300 +#: includes/common/payment-gateways/pin.php:170 +#: includes/common/payment-gateways/stripe.php:272 +msgid "Secret Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:283 +msgid "Select Your Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:97 +msgid "Your payment will be processed by the iDEAL network" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:208 +msgid "These are the CubePoints to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:203 +msgid "These are the CubePoints instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:266 +msgid "If enabled, all API calls will be made to https://test.bitpay.com." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:263 +msgid "Use Test Mode?" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:259 +msgid "If checked, response fron bitpay will be stored in log file, keep it disabled unless required." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:256 +msgid "Enable Debug Log" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:249 +msgid "Full Notifications" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:231 +#: includes/common/payment-gateways/eway31.php:499 +#: includes/common/payment-gateways/eway31.php:526 +#: includes/common/payment-gateways/mollie.php:83 +#: includes/common/shipping-modules/mp-fedex.php:269 +msgid "API Key" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:222 +msgid "You can now accept a payment from any country on Earth, with no risk of fraud. To use Bitpay, you need to signup on Bitpay. \\n After completing the signup process, you can get api keys at Bitpay API key. You can read more about Bitpay at Bitpay API. \\n Bitpay requires SSL(https) for payment notifications to work." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:61 +msgid "You will be redirected to bitpay.com, for bitcoin payment. It is completely safe." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:346 +msgid "You must login to the 2Checkout vendor dashboard to obtain the seller ID and secret word. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:345 +#: includes/common/payment-gateways/authorizenet-aim.php:239 +#: includes/common/payment-gateways/paymill.php:168 +#: includes/common/payment-gateways/paypal-express.php:704 +#: includes/common/payment-gateways/simplify.php:80 +#: includes/common/payment-gateways/stripe.php:265 +#: includes/common/payment-gateways/wepay.php:158 +msgid "API Credentials" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:325 +#: includes/common/payment-gateways/_bitpay.php:220 +#: includes/common/payment-gateways/_cubepoints.php:185 +#: includes/common/payment-gateways/_ideal.php:268 +#: includes/common/payment-gateways/_payway.php:255 +#: includes/common/payment-gateways/authorizenet-aim.php:219 +#: includes/common/payment-gateways/eway.php:352 +#: includes/common/payment-gateways/eway31.php:460 +#: includes/common/payment-gateways/free_orders.php:147 +#: includes/common/payment-gateways/manual-payments.php:126 +#: includes/common/payment-gateways/mijireh.php:287 +#: includes/common/payment-gateways/mollie.php:71 +#: includes/common/payment-gateways/paymill.php:149 +#: includes/common/payment-gateways/paypal-chained-payments.php:344 +#: includes/common/payment-gateways/paypal-payflow.php:376 +#: includes/common/payment-gateways/pin.php:145 +#: includes/common/payment-gateways/simplify.php:69 +#: includes/common/payment-gateways/skrill.php:121 +#: includes/common/payment-gateways/stripe.php:249 +#: includes/common/payment-gateways/wepay.php:119 +#: includes/common/shipping-modules/mp-fedex.php:243 +#: includes/common/shipping-modules/mp-flat-rate.php:63 +#: includes/common/shipping-modules/mp-pickup.php:140 +#: includes/common/shipping-modules/mp-table-rate.php:94 +#: includes/common/shipping-modules/mp-ups.php:122 +#: includes/common/shipping-modules/mp-usps.php:167 +#: includes/common/shipping-modules/mp-weight-rate.php:110 +msgid "%s Settings" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:136 +msgid "You will be redirected to the 2Checkout site to finalize your payment." +msgstr "" + +#: includes/common/helpers.php:169 includes/public/class-mp-checkout.php:1277 +msgid "Billing" +msgstr "" + +#: includes/common/helpers.php:144 +msgid "FREE" +msgstr "" + +#: includes/common/helpers.php:134 +msgid "Coupons:" +msgstr "" + +#: includes/common/helpers.php:95 +msgid "Qty" +msgstr "" + +#: includes/common/helpers.php:94 +msgid "Sku" +msgstr "" + +#: includes/common/data.php:59 +msgid "Zip Code" +msgstr "" + +#: includes/common/class-mp-taxes.php:336 +msgid "Standard Table" +msgstr "" + +#: includes/common/class-mp-product.php:2698 +msgid "Tweet" +msgstr "" + +#: includes/common/class-mp-product.php:2321 +msgid "Notification Preferences: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2320 +msgid "Edit Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2318 +msgid "Link: %s

    " +msgstr "" + +#: includes/common/class-mp-product.php:2317 +msgid "Current Inventory: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2316 +msgid "Product: %s" +msgstr "" + +#: includes/common/class-mp-product.php:2314 +msgid "This message is being sent to notify you of low stock of a product in your online store according to your preferences.

    " +msgstr "" + +#: includes/common/class-mp-product.php:1817 +msgid "" +msgstr "" + +#: includes/common/class-mp-product.php:1427 +#: includes/common/class-mp-product.php:1430 +msgid "(tax incl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1422 +#: includes/common/class-mp-product.php:1425 +msgid "(tax excl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1300 +#: includes/common/class-mp-product.php:1315 +msgid "%s each" +msgstr "" + +#: includes/common/class-mp-product.php:988 +msgid "Choose Options" +msgstr "" + +#: includes/common/class-mp-product.php:526 +msgid "Choose a %s" +msgstr "" + +#: includes/common/class-mp-product.php:284 +#: includes/common/class-mp-product.php:292 +#: includes/common/class-mp-product.php:615 +msgid "We're sorry, we only have %d of this item in stock right now." +msgstr "" + +#: includes/common/class-mp-order.php:1456 +msgid "Shipped: Track Shipment" +msgstr "" + +#: includes/common/class-mp-order.php:1049 +msgid "Order Received" +msgstr "" + +#: includes/common/class-mp-order.php:1014 +msgid "In Process" +msgstr "" + +#: includes/common/class-mp-order.php:969 +msgid "Order #" +msgstr "" + +#: includes/common/class-mp-order.php:866 +msgid "Copy billing address to shipping address" +msgstr "" + +#: includes/common/class-mp-order.php:822 +#: includes/public/class-mp-checkout.php:1314 +msgid "Special Instructions" +msgstr "" + +#: includes/common/class-mp-order.php:817 +#: includes/common/payment-gateways/stripe.php:335 +msgid "Email" +msgstr "" + +#: includes/common/class-mp-order.php:813 +#: includes/common/payment-gateways/stripe.php:341 +#: includes/public/class-mp-checkout.php:416 +msgid "Phone" +msgstr "" + +#: includes/common/class-mp-order.php:791 +#: includes/common/payment-gateways/stripe.php:337 +msgid "State" +msgstr "" + +#: includes/common/class-mp-order.php:776 +msgid "Address 1" +msgstr "" + +#: includes/common/class-mp-order.php:766 +msgid "Last Name" +msgstr "" + +#: includes/common/class-mp-order.php:762 +msgid "First Name" +msgstr "" + +#: includes/common/class-mp-installer.php:677 +msgid "MarketPress requires a database update to continue working correctly. Go to update page" +msgstr "" + +#: includes/common/class-mp-installer.php:657 +msgid "MarketPress performed a quick automatic update successfully!" +msgstr "" + +#: includes/common/class-mp-installer.php:653 +msgid "Perform Update" +msgstr "" + +#: includes/common/class-mp-installer.php:647 +msgid "Please update each subsite in your WordPress network where you have older version of the MarketPress plugin." +msgstr "" + +#: includes/common/class-mp-installer.php:641 +msgid "Depending on the amount of products you have, this update could take quite some time. Please keep this window open while the update completes. If you have products with multiple variations, the progress bar may move slower, please don't exit the window." +msgstr "" + +#: includes/common/class-mp-installer.php:632 +msgid "Product Metadata" +msgstr "" + +#: includes/common/class-mp-installer.php:601 +msgid "MarketPress requires a database update to continue working correctly.
    Below you will find a list of items that require your attention." +msgstr "" + +#: includes/common/class-mp-installer.php:600 +msgid "Update MarketPress Data" +msgstr "" + +#: includes/common/class-mp-installer.php:530 +msgid "Update Data" +msgstr "" + +#: includes/common/class-mp-installer.php:67 +msgid "Complete!" +msgstr "" + +#: includes/common/class-mp-installer.php:66 +msgid "Upgrading Database...Please Wait..." +msgstr "" + +#: includes/common/class-mp-installer.php:64 +msgid "An error occurred while updating. Please refresh this page and try again." +msgstr "" + +#: includes/common/class-mp-cart.php:2447 +msgid "Some items in your cart have fallen below the quantity you currently have in your cart. We have adjusted the quantity in your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:2443 +msgid "Some items in your cart are no longer available. We have removed these items from your cart automatically." +msgstr "" + +#: includes/common/class-mp-cart.php:1566 +msgid "item" +msgstr "" + +#: includes/common/class-mp-cart.php:1563 +#: includes/common/class-mp-cart.php:1568 +msgid "items" +msgstr "" + +#: includes/common/class-mp-cart.php:1363 +msgid "Items/Products added to Cart will show here." +msgstr "" + +#: includes/common/class-mp-cart.php:1362 +msgid "Your shopping cart is empty." +msgstr "" + +#: includes/common/class-mp-cart.php:1357 +msgid "View Cart" +msgstr "" + +#: includes/common/class-mp-cart.php:1241 +#: includes/common/class-mp-cart.php:1298 +#: includes/public/class-mp-short-codes.php:159 +msgid "Adding..." +msgstr "" + +#: includes/common/class-mp-cart.php:1033 +msgid "Continue Shopping?" +msgstr "" + +#: includes/common/class-mp-cart.php:961 +msgid "Secure Checkout
    Shopping is always safe and secure." +msgstr "" + +#: includes/common/class-mp-cart.php:959 +msgid "You are about to submit your order!
    Please review your order details before continuing. You will be charged immediately upon clicking \"Submit Order\"." +msgstr "" + +#: includes/common/class-mp-cart.php:956 +msgid "Continue »" +msgstr "" + +#: includes/common/class-mp-cart.php:955 +msgid "Submit Order" +msgstr "" + +#: includes/common/class-mp-cart.php:818 +msgid "There are no items in your cart - go add some !" +msgstr "" + +#: includes/common/class-mp-cart.php:816 +msgid "The cart is disabled." +msgstr "" + +#: includes/common/class-mp-cart.php:735 +msgid "Estimated %s" +msgstr "" + +#: includes/common/class-mp-cart.php:717 +msgid "Estimated Shipping" +msgstr "" + +#: includes/common/class-mp-cart.php:697 +msgid "Product Total" +msgstr "" + +#: includes/common/class-mp-cart.php:670 includes/common/class-mp-cart.php:672 +msgid "Estimated Total (%s, %s)" +msgstr "" + +#: includes/common/class-mp-cart.php:668 +msgid "Estimated Total (%s)" +msgstr "" + +#: includes/common/class-mp-cart.php:666 includes/common/class-mp-cart.php:752 +msgid "Estimated Total" +msgstr "" + +#: includes/admin/widgets/product-list.php:247 +msgid "Show Thumbnail Placeholder image (if image is not set)" +msgstr "" + +#: includes/admin/widgets/cart.php:73 +msgid "Display product price" +msgstr "" + +#: includes/admin/widgets/cart.php:71 +msgid "Display product quantity" +msgstr "" + +#: includes/admin/widgets/cart.php:69 +msgid "Display product image" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:93 +msgid "General Shipping Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:773 +msgid "If you are having conflicts with the lightbox library from your theme or another plugin you should uncheck this." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:772 +msgid "Use Built-In Lightbox for Images?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:762 +msgid "Disable Large Image Display?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:688 +msgid "Show Product Image?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:682 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:684 +msgid "Show Tags List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:676 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:678 +msgid "Show Categories List?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:671 +msgid "If enabled, description excerpt will be added above Add to cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:669 +msgid "Show Excerpt?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:665 +msgid "If enabled, users will be able to choose how many of the product they want to purchase before adding to their cart. If not checked, quantity could be change later on the cart page." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:663 +msgid "Show Quantity Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:649 +msgid "Settings related to the display of individual product pages." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:648 +msgid "Product Page Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:605 +msgid "Related Products Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:573 +msgid "Show Related Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:568 +msgid "Related Product Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:549 +msgid "Order Status Entries Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:510 +msgid "Sort Products By" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:497 +msgid "Products Per Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:492 +msgid "Paginate Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:478 +msgid "Excerpts Length" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:473 +msgid "Show Excerpts?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:450 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:746 +msgid "Image Alignment" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:412 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:708 +msgid "Custom Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:401 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:697 +msgid "Large - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:400 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:696 +msgid "Medium - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:399 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:695 +msgid "Thumbnail - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:397 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:693 +msgid "Image Size" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:386 +msgid "Select default placeholder image thumbnail when product image is not available (if empty, plugin's built-in image will be used)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:380 +msgid "Show default product placeholder thumbnail when product image is not available?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:374 +msgid "Show Product Thumbnail?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:369 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:658 +msgid "Redirect to cart page for immediate checkout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:368 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:657 +msgid "Stay on current product page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:366 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:655 +msgid "MarketPress supports two \"flows\" for adding products to the shopping cart. After adding a product to their cart, two things can happen:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:365 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:654 +msgid "Add To Cart Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:355 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:628 +msgid "Four" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:354 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:627 +msgid "Three" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:353 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:626 +msgid "Two" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:625 +msgid "One" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:349 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:622 +msgid "Set the number of products that show up in a grid row to best fit your theme" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:348 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:621 +msgid "How many products per row?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:342 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:609 +msgid "Display as grid" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:341 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:608 +msgid "Display as list" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:339 +msgid "Product Layout" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:334 +msgid "Settings related to the display of product lists/grids." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:333 +msgid "Product List/Grid Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:314 +msgid "Show Twitter Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:309 +msgid "Twitter" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:303 +msgid "Show Share Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:297 +msgid "Recommend" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:296 +msgid "Like" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:294 +msgid "Action" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:283 +msgid "Show Facebook Like Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:278 +msgid "Facebook" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:257 +msgid "Show \"Pin It\" Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:252 +msgid "Pinterest" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:246 +msgid "Social Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:193 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:202 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:211 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:220 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:229 +#: includes/multisite/class-mp-admin-multisite.php:532 +#: includes/multisite/class-mp-admin-multisite.php:541 +#: includes/multisite/class-mp-admin-multisite.php:550 +msgid "Choose a Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:191 +msgid "This page will be used as the root for your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:168 +#: includes/multisite/class-mp-admin-multisite.php:586 +msgid "Create Page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "uncropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "cropped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:87 +#: includes/multisite/class-mp-admin-multisite.php:121 +#: includes/multisite/class-mp-admin-multisite.php:620 +msgid "An error occurred while creating the store page. Please try again." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:66 +msgid "Choose the gateway(s) that you would like to be available for checkout." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:65 +msgid "Enabled Gateways" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:78 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:146 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:179 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:213 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:274 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:307 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:341 +msgid "Text" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:71 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:139 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:172 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:206 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:267 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:300 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:334 +msgid "Subject" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:52 +msgid "Notification Email" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:510 +msgid "Enabling this option will display label `excl. tax` or `incl. tax` after price" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:509 +msgid "Display tax label?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:504 +msgid "Enabling this option will show Price + Tax, eg. if your price is 100 and your tax 20, your price will be 120" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:416 +#: includes/multisite/class-mp-admin-multisite.php:234 +msgid "Price Format" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:366 +msgid "Enabling this field will display a textbox on the shipping checkout page for users to enter special instructions for their order. Useful for product personalization, etc." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:365 +msgid "Show Special Instructions Field?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:360 +msgid "Universal" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:359 +msgid "Old" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1167 +#: includes/admin/store-settings/class-mp-store-settings-general.php:358 +msgid "New" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:353 +msgid "If you already use Google Analytics for your website, you can track detailed ecommerce information by enabling this setting. Choose whether you are using the new asynchronous or old tracking code. Before Google Analytics can report ecommerce activity for your website, you must enable ecommerce tracking on the profile settings page for your website. Also keep in mind that some gateways do not reliably show the receipt page, so tracking may not be accurate in those cases. It is recommended to use the PayPal gateway for the most accurate data. More information »" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:347 +msgid "Do you want to display the product price on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:346 +msgid "Show product price on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:340 +msgid "Do you want to display the product quantity on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:339 +msgid "Show product quantity on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:333 +msgid "Do you want to display the product image on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:332 +msgid "Show product image on Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:327 +msgid "This option hide floating Mini Cart in top right corner." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:326 +msgid "Disable Mini Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:316 +msgid "If unchecked your Orders admin page will be hidden" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:315 +msgid "Show admin Orders page?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:309 +msgid "Disable Cart?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:303 +msgid "Force Login?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:297 +msgid "Hide Out of Stock Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:555 +msgid "This will prevent multiples of the same downloadable product form being added to the cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:554 +msgid "Limit Digital Products Per-order?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:268 +msgid "If you're having issues downloading large files and have worked with your hosting provider to increase your memory limits, try enabling this - just keep in mind, it's not as secure!" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:267 +msgid "Use Alternative Download Method?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:252 +msgid "Download Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:230 +msgid "Change product post type" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:51 +msgid "%s Capabilities" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-addons.php:47 +msgid "Store Settings: Add Ons: %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:254 +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:56 +msgid "Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Edit Product Attribute %s" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:246 +msgid "Exporters" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:238 +msgid "Short Codes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:207 +msgid "An appropriate message for key \"%s\" could not be found." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:204 +msgid "Product attribute updated successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:203 +msgid "Product attribute added successfully." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +msgid "Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:123 +#: includes/admin/store-settings/class-mp-store-settings-addons.php:121 +msgid "Store Settings: Add Ons" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "Store Settings: Capabilities" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:118 +msgid "Store Settings: Product Tags" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:117 +msgid "Store Settings: Product Categories" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Store Settings: Product Attributes" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +msgid "Store Settings: Payments" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:114 +msgid "Store Settings: Shipping" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +#: includes/admin/class-mp-store-settings-admin.php:226 +msgid "Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:113 +msgid "Store Settings: Notifications" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:112 +msgid "Store Settings: Presentation" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:111 +msgid "Store Settings: General" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1489 +msgid "Select a Product" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1447 +msgid "Reset to Defaults" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1446 +msgid "Insert Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1202 +#: includes/admin/class-mp-shortcode-builder.php:1227 +#: includes/admin/class-mp-shortcode-builder.php:1252 +msgid "The text to show in the link." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1196 +#: includes/admin/class-mp-shortcode-builder.php:1221 +#: includes/admin/class-mp-shortcode-builder.php:1246 +msgid "Whether to return a clickable link or url." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1177 +msgid "Whether to display the cart only on store pages or not." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1171 +msgid "Whether to show or hide the product price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1165 +msgid "Whether to show or hide the product quantity." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1159 +msgid "Whether to show or hide the product image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1153 +msgid "The text displayed before the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1147 +msgid "The title of the cart." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1058 +#: includes/admin/class-mp-shortcode-builder.php:1121 +msgid "A label to prepend to the price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1032 +#: includes/admin/class-mp-shortcode-builder.php:1127 +msgid "What context for display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1004 +msgid "Set the alignment of the image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:998 +msgid "Set a custom pixel width/height. If omitted defaults to the size set by \"context\"." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:993 +msgid "Widget" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:988 +msgid "What context for preset size options." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:982 +#: includes/admin/class-mp-shortcode-builder.php:1026 +#: includes/admin/class-mp-shortcode-builder.php:1052 +#: includes/admin/class-mp-shortcode-builder.php:1077 +#: includes/admin/class-mp-shortcode-builder.php:1096 +#: includes/admin/class-mp-shortcode-builder.php:1115 +msgid "The ID of the product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:963 +msgid "Whether to display the product meta (e.g. price, buy button)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:738 +#: includes/admin/class-mp-shortcode-builder.php:905 +#: includes/admin/class-mp-shortcode-builder.php:958 +#: includes/admin/class-mp-shortcode-builder.php:992 +#: includes/admin/class-mp-shortcode-builder.php:1035 +#: includes/admin/class-mp-shortcode-builder.php:1130 +#: includes/admin/class-mp-shortcode-builder.php:1349 +msgid "List" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:957 +#: includes/admin/class-mp-shortcode-builder.php:991 +#: includes/admin/class-mp-shortcode-builder.php:1034 +#: includes/admin/class-mp-shortcode-builder.php:1129 +msgid "Single" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:953 +msgid "Whether and what context of image size to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:948 +msgid "Full" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:943 +msgid "Whether and what type of content to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:937 +msgid "Whether to display the product title." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:931 +msgid "The ID of the product to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:747 +#: includes/admin/class-mp-shortcode-builder.php:914 +msgid "Hide" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:746 +#: includes/admin/class-mp-shortcode-builder.php:913 +msgid "Show" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:744 +#: includes/admin/class-mp-shortcode-builder.php:911 +msgid "Whether or not to show the product filters." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:724 +#: includes/admin/class-mp-shortcode-builder.php:891 +#: includes/admin/class-mp-shortcode-builder.php:1335 +msgid "Limits list to a specific product tag." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:713 +#: includes/admin/class-mp-shortcode-builder.php:880 +#: includes/admin/class-mp-shortcode-builder.php:1324 +msgid "Limits list to a specific product category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:706 +#: includes/admin/class-mp-shortcode-builder.php:873 +#: includes/admin/class-mp-shortcode-builder.php:1317 +msgid "Direction to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:684 +#: includes/admin/class-mp-shortcode-builder.php:851 +#: includes/admin/class-mp-shortcode-builder.php:1295 +msgid "What field to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:678 +#: includes/admin/class-mp-shortcode-builder.php:845 +#: includes/admin/class-mp-shortcode-builder.php:1283 +msgid "How many products to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:672 +#: includes/admin/class-mp-shortcode-builder.php:839 +#: includes/admin/class-mp-shortcode-builder.php:1277 +msgid "The page number to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:666 +#: includes/admin/class-mp-shortcode-builder.php:833 +#: includes/admin/class-mp-shortcode-builder.php:1271 +msgid "Whether to paginate the product list. This is useful to only show a subset." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:808 +msgid "How many related items to show." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:790 +msgid "How to relate the products" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:784 +msgid "The product to show related items for." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:765 +msgid "The maximum number of products to display" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:647 +msgid "Comma separated list of tags (term_id) to include. For example, include=5,27 means tags that have the term_id 5 or 27 will be the only tags displayed. Defaults to include everything." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:641 +msgid "Comma separated list of tags (term_id) to exclude. For example, exclude=5,27 means tags that have the term_id 5 or 27 will NOT be displayed. Defaults to exclude nothing." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:633 +#: includes/admin/class-mp-shortcode-builder.php:1420 +msgid "Sort order." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:629 +#: includes/admin/class-mp-shortcode-builder.php:1416 +msgid "Count" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:626 +#: includes/admin/class-mp-shortcode-builder.php:1413 +msgid "Order of the tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:620 +msgid "The text/space between tags)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:616 +msgid "UL with a class of \"wp-tag-cloud\"" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:615 +msgid "separated by whitespace defined by \"separator\" parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:613 +msgid "Format of the cloud display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:607 +msgid "The number of actual tags to display in the cloud. (Use \"0\" to display all tags.)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:601 +msgid "Unit of measure as pertains to the smallest and largest values. This can be any CSS length value, e.g. pt, px, em, %." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:595 +msgid "The text size of the tag with the largest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:589 +msgid "The text size of the tag with the smallest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:570 +msgid "The \"tabindex\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:564 +msgid "The \"name\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:558 +msgid "The \"id\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:552 +msgid "Which category ID is selected." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:540 +msgid "The max depth. This is ignored unless hierarchical is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:536 +#: includes/multisite/template-functions.php:816 +msgid "No Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:414 +#: includes/admin/class-mp-shortcode-builder.php:546 +msgid "Calculates link or post counts by including items from child categories. If show_counts and hierarchical are true this is automatically set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:409 +msgid "Value of n (some number) specifies the depth (or level) to descend in displaying Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:408 +msgid "Show only top level Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:407 +msgid "All Categories displayed in flat (no indent) form (overrides hierarchical)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:406 +msgid "All Categories and child Categories (Default)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:402 +msgid "This parameter controls how many levels in the hierarchy of Categories are to be included in the list of Categories. NOTE: The \"hierarchical\" argument, which is disabled by default, will override the depth argument, unless it is true. When the argument is false, it will display all of the categories. When it is enabled it will use the value in the \"depth\" argument." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:396 +#: includes/admin/class-mp-shortcode-builder.php:1394 +msgid "Sets the number of Categories to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:390 +#: includes/admin/class-mp-shortcode-builder.php:534 +msgid "Set the text to show when no categories are listed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:384 +msgid "Set the title and style of the outer list item. If present but empty, the outer list item will not be displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:378 +#: includes/admin/class-mp-shortcode-builder.php:528 +msgid "Display sub-categories as inner list items (below the parent list item) or inline." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:368 +#: includes/admin/class-mp-shortcode-builder.php:511 +msgid "Exclude category-tree from the results. The parameter include must be empty. If the hierarchical parameter is true, then use exclude instead of exclude_tree." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:354 +msgid "Only include these categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:340 +#: includes/admin/class-mp-shortcode-builder.php:356 +#: includes/admin/class-mp-shortcode-builder.php:370 +#: includes/admin/class-mp-shortcode-builder.php:496 +#: includes/admin/class-mp-shortcode-builder.php:513 +msgid "Select Categories" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:338 +#: includes/admin/class-mp-shortcode-builder.php:494 +msgid "Exclude one or more categories from the results. The parameter include must be empty." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:332 +msgid "Set a URI for an image (usually an rss feed icon) to act as a link to each categories' rss-2 feed. This parameter overrides the feed parameter. There is no default for this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:320 +msgid "Display a link to each category's rss-2 feed and set the link text to display. The default is no text and no feed displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:313 +#: includes/admin/class-mp-shortcode-builder.php:487 +msgid "Any" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:307 +#: includes/admin/class-mp-shortcode-builder.php:481 +msgid "Only display categories that are children of the category identified by this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:301 +msgid "Sets whether a category's description is inserted into the title attribute of the links created (i.e. <a title=\"<em>Category Description</em>\" href=\"...)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:295 +#: includes/admin/class-mp-shortcode-builder.php:475 +msgid "Toggles the display of categories with no posts." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:289 +#: includes/admin/class-mp-shortcode-builder.php:469 +#: includes/admin/class-mp-shortcode-builder.php:1388 +msgid "Toggles the display of the current count of posts in each category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:279 +msgid "Style to display the categories list in. A value of list displays the categories as list items while none generates no special display method (the list items are separated by
    tags)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:269 +#: includes/admin/class-mp-shortcode-builder.php:449 +#: includes/admin/class-mp-shortcode-builder.php:1378 +msgid "Sort order for categories (either ascending or descending)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:259 +#: includes/admin/class-mp-shortcode-builder.php:439 +#: includes/admin/class-mp-shortcode-builder.php:1368 +msgid "Sort categories alphabetically, by unique Category ID, or by the count of posts in that Category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:253 +#: includes/admin/class-mp-shortcode-builder.php:433 +msgid "If a value is entered, causes the display of a link to all categories if the style is set to list." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:219 +msgid "Select an Action" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:217 +msgid "What would you like to do?" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:216 +#: includes/admin/class-mp-shortcode-builder.php:1522 +msgid "Add E-Commerce Short Code" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:197 +msgid "Display a list of links to your store pages." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:196 +msgid "Display a link or url to the order status page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:195 +msgid "Display a link or url to the current products list page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:194 +msgid "Display a link or url to the current store page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:193 +msgid "Display a link or url to the current shopping cart page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:192 +msgid "Display the cart widget." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:191 +msgid "Display the full product meta box with price and buy now/add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:190 +msgid "Display the product stock." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:189 +msgid "Display the product SKU number(s)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:188 +msgid "Display the product price (and sale price)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:187 +msgid "Display the buy or add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:186 +msgid "Display the featured image of a given product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:185 +msgid "Display a single product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:184 +msgid "Display a list of products according to preference." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:183 +msgid "Display products related to the one being viewed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:182 +msgid "Display a list of popular products ordered by sales." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:180 +msgid "Display an HTML dropdown of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:179 +msgid "Display an HTML list of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:178 +msgid "Display a cloud or list of your product tags." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:655 +msgid "Setup your payment gateway" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:643 +#: includes/admin/class-mp-setup-wizard.php:649 +msgid "Other Gateways" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:617 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:150 +msgid "Select which calculated shipping methods the customer will be able to choose from." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:601 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:134 +#: includes/public/class-mp-checkout.php:82 +msgid "Shipping Method" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:568 +msgid "I want to charge shipping" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:523 +#: includes/admin/store-settings/class-mp-store-settings-general.php:503 +msgid "Show Price + Tax?" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:507 +msgid "I.e. Taxes, VAT, GST, etc" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:491 +#: includes/admin/store-settings/class-mp-store-settings-general.php:471 +msgid "Current Rates" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:473 +msgid "Default Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:434 +#: includes/admin/class-mp-setup-wizard.php:442 +#: includes/admin/store-settings/class-mp-store-settings-general.php:386 +#: includes/admin/store-settings/class-mp-store-settings-general.php:394 +#: includes/multisite/class-mp-admin-multisite.php:204 +#: includes/multisite/class-mp-admin-multisite.php:212 +msgid "Select a Currency" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:414 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:105 +msgid "Choose Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:411 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:103 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:104 +msgid "All Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:410 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:102 +msgid "These are the countries that you will ship to." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:409 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:101 +msgid "Target Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:401 +msgid "Countries" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:387 +#: includes/admin/store-settings/class-mp-store-settings-general.php:640 +msgid "Zip/Postal Code Label" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:352 +#: includes/admin/store-settings/class-mp-store-settings-general.php:606 +msgid "Select a State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:335 +#: includes/admin/store-settings/class-mp-store-settings-general.php:590 +msgid "Select A Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:332 +#: includes/admin/store-settings/class-mp-store-settings-general.php:587 +msgid "Select a Country" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:324 +msgid "Location" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:304 +#: includes/admin/class-mp-setup-wizard.php:312 +#: includes/admin/class-mp-store-settings-admin.php:129 +#: includes/admin/class-mp-store-settings-admin.php:262 +msgid "Quick Setup" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:289 +msgid "MarketPress setup is not complete! Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2479 +msgid "Enter your product name here" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2440 +msgid "Select a %s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2426 +msgid "Each product variation needs to have product attributes assigned to it so the system knows how to differentiate one product variation from the other. It is important that you assign a category to this product before choosing any attributes." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2409 +msgid "If you would like this variation to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2320 +msgid "Sale Price (if applicable)" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2281 +msgid "If you would like the description to be different than the main product enter it here." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2229 +msgid "Image" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2202 +#: includes/admin/class-mp-shortcode-builder.php:226 +msgid "Attributes" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2166 +msgid "Create your product variations here. You can reorder variations by using the number to left of each variation, or delete one by clicking the \"x\" to the right of each variation. NOTE: The variation that shows up first in this list will be considered the \"main variation\". The details from this variation will be used in product listings." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2061 +#: includes/admin/class-mp-products-admin.php:2332 +msgid "Value must be less than regular price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2043 +#: includes/admin/class-mp-products-admin.php:2306 +msgid "Regular Price" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2023 +#: includes/admin/class-mp-products-admin.php:2286 +msgid "External URL" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1988 +#: includes/admin/class-mp-products-admin.php:2245 +msgid "Enter the quantity that you have available to sell." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1987 +#: includes/admin/class-mp-products-admin.php:2244 +msgid "Inventory Count" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1977 +#: includes/admin/class-mp-products-admin.php:2234 +msgid "Track Inventory?" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1871 +msgid "%1$sProduct Images%2$s %3$sAdd images of the product. The first image on the list is the featured image for this product (you can reorder images on the list)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1806 +msgid "Add variations for this product. e.g. If you are selling t-shirts, you can create Color & Size variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1804 +msgid "%3$sAdd variations for%2$s %1$sProduct%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1776 +msgid "This product has a multiple variations %1$s(e.g. Multiple colors, sizes)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1775 +msgid "This is a unique product without variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1700 +msgid "Extra Shipping Cost %1$s(if applicable)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1659 +#: includes/admin/class-mp-products-admin.php:2112 +#: includes/admin/class-mp-products-admin.php:2359 +msgid "Weight" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1636 +#: includes/admin/class-mp-products-admin.php:2098 +#: includes/admin/class-mp-products-admin.php:2416 +msgid "Please enter a valid tax rate" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1531 +msgid "Limit Per Order %1$s(limit the number of the item a shopper can buy per order)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1513 +msgid "SKU %1$s(Stock Keeping Unit)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "%1$sPrice, Inventory & Variants%2$s %3$sSet price, manage inventory and create Product Variants (if appropriate for your product).%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "Product Variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1480 +msgid "External / Affiliate Link" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1471 +msgid "Digital Download" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1470 +msgid "Physical / Tangible Product" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1464 +msgid "Product Kind %1$s(Physical Product, Digital, etc)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1426 +msgid "Choose Products" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1420 +msgid "If you would like, you can choose specific related products instead of using the ones generated by MarketPress" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1019 +msgid "Changes saved successfully" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:826 +msgid "Option cannot be saved. Try again." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:821 +msgid "Option saved successfully." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:467 +msgid "Img" +msgstr "" + +#: includes/admin/class-mp-product-attributes-list-table.php:57 +msgid "Product attribute(s) deleted successfully." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:162 +msgid "- Create New Variation -" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:144 +msgid "Only lowercase letters and dashes (-) are allowed." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:139 +msgid "If a slug is not entered, it will be generated automatically. Max 32 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:138 +#: includes/admin/class-mp-product-attributes-list-table.php:23 +msgid "Slug" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:130 +msgid "Max 45 characters." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:123 +msgid "Use the numbers on the left to sort. To delete - click the \"X\" to the right of each row." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:122 +msgid "Attribute Options" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:121 +msgid "Add Option" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:105 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:523 +msgid "Sort Order" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:87 +msgid "Alphabetical" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:86 +msgid "ID" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:84 +msgid "Select how the options will be sorted." +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:82 +msgid "Sort By" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:75 +msgid "The name of the attribute (e.g. color, size, etc)" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:74 +msgid "Attribute Name" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:69 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Product Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Attribute" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Product Attributes" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:71 +msgid "You can choose to make this page one of the following core store pages." +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:66 +msgid "Network Store Base" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:61 +msgid "Checkout Page" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:52 +msgid "Store Page Settings" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1108 +msgid "Display billing/shipping info for this customer" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1097 +msgid "View order “%s”" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1072 +msgid "Flag as:" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:952 +msgid "Move To Trash" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:948 +msgid " Received" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:927 +msgid "Enter coupon code here" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:812 +msgid "The order status could not be updated due to unexpected error. Please try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:740 +msgid "An invalid bulk action was requested. Please go back and try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:692 +msgid "The order status for order ID %1$s was updated successfully." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:688 +msgid "Order statuses successfully updated." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:530 +msgid "Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:518 +msgid "Actual Shipping Method" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:513 +msgid "Method Paid For" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:504 +msgid "Amount Collected" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:477 +msgid "DHL" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:408 +msgid "There is no IPN history to show at this time" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:345 +msgid "Type" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:343 +msgid "Gateway" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:301 +#: includes/common/template-functions.php:528 +msgid "Order History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:291 +msgid "IPN History" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:283 +msgid "Customer Info" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:279 +msgid "Order Details" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:157 +msgid "All Dates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:320 +msgid "Add Pages to Menu" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:318 +msgid "Add-ons" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:317 +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "User Capabilities" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:316 +#: includes/admin/class-mp-setup-wizard.php:631 +#: includes/admin/store-settings/class-mp-store-settings-payments.php:50 +msgid "Payment Gateways" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:315 +msgid "Shipping Rates" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:312 +msgid "Configure" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:309 +#: includes/admin/class-mp-products-admin.php:466 +#: includes/admin/class-mp-shortcode-builder.php:797 +msgid "Tags" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:308 +#: includes/admin/class-mp-products-admin.php:465 +msgid "Categories" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:300 +msgid "Manage" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:297 +msgid "Here's some quick links to manage your store and products." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:288 +msgid "low in stock" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:287 +msgid "%s product" +msgid_plural "%s products" +msgstr[0] "" + +#: includes/admin/class-mp-dashboard-widgets.php:280 +msgid "received" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:279 +#: includes/admin/class-mp-dashboard-widgets.php:283 +msgid "%s order" +msgid_plural "%s orders" +msgstr[0] "" + +#: includes/admin/class-mp-dashboard-widgets.php:276 +msgid "Stock & Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:261 +msgid "Last 30 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:256 +msgid "Last 7 Days" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:251 +msgid "Yesterday" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:248 +#: includes/admin/class-mp-dashboard-widgets.php:253 +#: includes/admin/class-mp-dashboard-widgets.php:258 +#: includes/admin/class-mp-dashboard-widgets.php:263 +msgid " Orders" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:246 +msgid "Today" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:241 +msgid "Welcome back! Here's a quick summary of your store's performance." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:196 +#: includes/admin/class-mp-products-admin.php:895 +msgid "No products out of stock." +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:136 +#: includes/admin/class-mp-products-admin.php:839 +msgid "Stock Level" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:135 +#: includes/admin/class-mp-products-admin.php:838 +msgid "Variation" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:121 +msgid "Low Stock (%s)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:116 +msgid "Store Management" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:115 +msgid "Store Reports" +msgstr "" + +#: includes/admin/class-mp-ajax.php:579 +#: includes/admin/class-mp-orders-admin.php:520 +#: includes/common/payment-gateways/2checkout.php:370 +#: includes/common/payment-gateways/authorizenet-aim.php:264 +#: includes/common/payment-gateways/mollie.php:93 +#: includes/common/payment-gateways/paymill.php:196 +#: includes/common/payment-gateways/pin.php:190 +#: includes/common/payment-gateways/skrill.php:157 +#: includes/common/payment-gateways/skrill.php:168 +#: includes/common/payment-gateways/wepay.php:143 +#: includes/public/class-mp-checkout.php:404 +msgid "Select One" +msgstr "" + +#: includes/admin/class-mp-ajax.php:511 +msgid "Oops... we could not locate any orders by that ID. Please double check your order ID and try again." +msgstr "" + +#: includes/admin/class-mp-ajax.php:482 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:166 +#: includes/multisite/class-mp-admin-multisite.php:584 +msgid "Edit Page" +msgstr "" + +#: includes/admin/class-mp-ajax.php:346 +msgid "Cancel " +msgstr "" + +#: includes/admin/class-mp-ajax.php:345 +msgid "Save " +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "Edit Description" +msgstr "" + +#: includes/admin/class-mp-ajax.php:336 +msgid "HTML Markup" +msgstr "" + +#: includes/admin/class-mp-ajax.php:333 +msgid "Plain Text Only" +msgstr "" + +#: includes/admin/class-mp-ajax.php:329 +msgid "Additional Content / Information for this Variation" +msgstr "" + +#: includes/admin/class-mp-ajax.php:317 +#: includes/admin/class-mp-products-admin.php:1762 +msgid "Allow this product to be purchased even if it's out of stock" +msgstr "" + +#: includes/admin/class-mp-ajax.php:313 +#: includes/admin/class-mp-products-admin.php:1711 +msgid "Track Product Inventory" +msgstr "" + +#: includes/admin/class-mp-ajax.php:300 +msgid "Extra Shipping Cost (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:295 +msgid "Ounces:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:294 +msgid "Pounds:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:292 +msgid "Kilograms:" +msgstr "" + +#: includes/admin/class-mp-ajax.php:287 +#: includes/admin/class-mp-products-admin.php:1649 +msgid "Charge Shipping" +msgstr "" + +#: includes/admin/class-mp-ajax.php:273 +#: includes/admin/class-mp-products-admin.php:1623 +#: includes/admin/store-settings/class-mp-store-settings-general.php:454 +msgid "Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:272 +#: includes/admin/class-mp-products-admin.php:1622 +#: includes/admin/class-mp-products-admin.php:2090 +#: includes/admin/class-mp-products-admin.php:2408 +msgid "Special Tax Rate" +msgstr "" + +#: includes/admin/class-mp-ajax.php:271 +#: includes/admin/class-mp-products-admin.php:1625 +#: includes/admin/class-mp-products-admin.php:2092 +msgid "If you would like this product to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-ajax.php:268 +#: includes/admin/class-mp-products-admin.php:1599 +msgid "Charge Taxes (Special Rate)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:256 +#: includes/admin/class-mp-products-admin.php:1593 +#: includes/admin/class-mp-products-admin.php:2077 +#: includes/admin/class-mp-products-admin.php:2348 +msgid "End Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:255 +#: includes/admin/class-mp-products-admin.php:1589 +#: includes/admin/class-mp-products-admin.php:2072 +msgid "Start Date (if applicable)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:1568 +msgid "Enter Sale Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:250 +#: includes/admin/class-mp-products-admin.php:1547 +msgid "Set up a Sale for this Product" +msgstr "" + +#: includes/admin/class-mp-ajax.php:206 includes/admin/class-mp-ajax.php:223 +msgid "Enter " +msgstr "" + +#: includes/admin/class-mp-ajax.php:193 +msgid "Browse" +msgstr "" + +#: includes/admin/class-mp-ajax.php:184 includes/admin/class-mp-ajax.php:192 +msgid "http://" +msgstr "" + +#: includes/admin/class-mp-ajax.php:183 +msgid "External Product URL" +msgstr "" + +#: includes/admin/class-mp-ajax.php:237 +msgid "Limit Per Order" +msgstr "" + +#: includes/admin/class-mp-ajax.php:177 +#: includes/admin/class-mp-products-admin.php:1520 +msgid "Enter Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:174 +#: includes/admin/class-mp-products-admin.php:1512 +msgid "Enter SKU" +msgstr "" + +#: includes/admin/class-mp-ajax.php:173 +msgid "(Stock Keeping Unit)" +msgstr "" + +#: includes/admin/class-mp-ajax.php:158 +msgid "Remove Image" +msgstr "" + +#: includes/admin/class-mp-ajax.php:74 +msgid "Variation Draft" +msgstr "" + +#: includes/admin/class-mp-admin.php:296 +#: includes/admin/class-mp-dashboard-widgets.php:70 +msgid "Please wait...saving in progress..." +msgstr "" + +#: includes/admin/class-mp-admin.php:295 +#: includes/admin/class-mp-dashboard-widgets.php:69 +msgid "Input is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:294 +#: includes/admin/class-mp-dashboard-widgets.php:68 +msgid "Valid number is required" +msgstr "" + +#: includes/admin/class-mp-admin.php:292 +#: includes/admin/class-mp-dashboard-widgets.php:66 +msgid "Delete %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:291 +#: includes/admin/class-mp-dashboard-widgets.php:65 +msgid "Delete %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:290 +#: includes/admin/class-mp-dashboard-widgets.php:64 +msgid "Update inventory for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:289 +#: includes/admin/class-mp-dashboard-widgets.php:63 +msgid "Update inventory for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:288 +#: includes/admin/class-mp-dashboard-widgets.php:62 +msgid "Update price for %s product variant" +msgstr "" + +#: includes/admin/class-mp-admin.php:287 +#: includes/admin/class-mp-dashboard-widgets.php:61 +msgid "Update prices for %s product variants" +msgstr "" + +#: includes/admin/class-mp-admin.php:285 +#: includes/admin/class-mp-dashboard-widgets.php:59 +msgid "Creating variations, please wait..." +msgstr "" + +#: includes/admin/class-mp-admin.php:96 +msgid "The following payment gateways have been deprecated, Cubepoints, Bitpay, iDEAL, Skrill, Google Checkout. If you were using one of these gateways, please setup a new payment gateway here." +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:61 +msgid "Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:71 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:71 +#: includes/common/class-mp-gdpr.php:399 includes/common/class-mp-order.php:872 +#: includes/common/helpers.php:164 includes/public/class-mp-checkout.php:1434 +msgid "Shipping Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:66 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:66 +#: includes/common/class-mp-gdpr.php:392 includes/common/class-mp-order.php:864 +#: includes/common/helpers.php:163 includes/public/class-mp-checkout.php:1427 +msgid "Billing Address" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:61 +msgid "Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:258 +msgid "Shipping Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:256 +msgid "Email: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:235 +msgid "Payment Method: %s" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:79 +msgid "The dir %s not exist or not writeable" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Packing Slip" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:239 +msgid "Shop header/logo" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:233 +msgid "Choose a template" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:226 +msgid "Template Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:221 +msgid "Disable automatic creation/attachment of invoices when only free products are ordered" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:220 +msgid "Disable for free products" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:216 +msgid "Attach invoice to" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:214 +msgid "Customer Order Shipped email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:212 +msgid "Customer New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:211 +msgid "Admin New Order email" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:206 +msgid "download" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:205 +msgid "How do you want to view the PDF?" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:203 +msgid "Open the PDF in a new browser tab/window" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:202 +msgid "Download the PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:158 +msgid "Export PDF" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:103 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:106 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:109 +msgid "You can't download this order invoice" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:76 +msgid "Invalid Request" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:72 +msgid "Order not exist!" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:67 +msgid "Invalid ID" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1293 +msgid "Coupon added successfully" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1292 +msgid "Please enter a code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1247 +msgid "No end" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1200 +msgid "Valid Dates" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1195 +msgid "Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1027 +msgid "No Coupons found in Trash" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1026 +msgid "No Coupons Found" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1025 +msgid "Search Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1024 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1028 +msgid "View Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1023 +msgid "New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1020 +msgid "Create New Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1017 +msgid "Manage Coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1002 +msgid "An error occurred while removing your coupon. Please try again." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:964 +msgid "Coupon can't be applied to this cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:951 +msgid "Invalid coupon code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:794 +msgid "Help Text" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:789 +msgid "Form Title" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:783 +msgid "Coupons Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:764 +msgid "End Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:758 +msgid "Does coupon have an end date?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:696 +msgid "Select Products" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:688 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:723 +#: includes/common/payment-gateways/paypal-payflow.php:402 +msgid "User" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:638 +msgid "Max Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:636 +msgid "Enter the maximum number of times this coupon can be used." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:623 +msgid "Leave blank to allow all other coupons." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:622 +msgid "Select combinable coupons" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:618 +msgid "Can this coupon be combined with other coupons?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:613 +msgid "Apply to each applicable item once per cart" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:612 +msgid "Apply to each applicable item and quantity ordered" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:609 +msgid "How should the discount amount be applied?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:605 +msgid "Discount Amount" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:604 +msgid "Value must either be a decimal number or a percentage" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:602 +msgid "If you would like to give a percentage-based discount make sure to include the percent (%) symbol. Otherwise, the discount will be applied as a fixed amount off." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:595 +msgid "Letters and Numbers only." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:589 +msgid "Coupon Settings" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:447 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:795 +msgid "More than one code? That's OK! Just be sure to enter one at a time." +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:444 +msgid "Apply Code" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:314 +msgid "Coupon Discounts" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:89 +msgid "1 add-on disabled" +msgid_plural "%s add-ons disabled" +msgstr[0] "" + +#: includes/addons/class-mp-addons-list-table.php:84 +msgid "1 add-on enabled" +msgid_plural "%s add-ons enabled" +msgstr[0] "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Disabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Enable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:129 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:67 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:135 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:168 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:202 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:263 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:296 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:330 +msgid "Enabled" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:45 +msgid "Disable add-on" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:34 +msgid "Disable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:33 +msgid "Enable" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:21 +#: includes/admin/class-mp-products-admin.php:2280 +#: includes/common/class-mp-product.php:2916 +msgid "Description" +msgstr "" + +#: includes/common/template-functions.php:2889 +#: includes/multisite/template-functions.php:407 +msgid "Popularity (Least Popular - Most Popular)" +msgstr "" + +#: includes/common/template-functions.php:2888 +#: includes/multisite/template-functions.php:406 +msgid "Popularity (Most Popular - Least Popular)" +msgstr "" + +#: includes/common/template-functions.php:2885 +#: includes/multisite/template-functions.php:403 +msgid "Name (Z-A)" +msgstr "" + +#: includes/common/template-functions.php:2884 +#: includes/multisite/template-functions.php:402 +msgid "Name (A-Z)" +msgstr "" + +#: includes/common/template-functions.php:2883 +#: includes/multisite/template-functions.php:401 +msgid "Release Date (Oldest to Latest)" +msgstr "" + +#: includes/common/template-functions.php:2882 +#: includes/multisite/template-functions.php:400 +msgid "Release Date (Latest to Oldest)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:284 +msgid "paid" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "One Time Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Customer Counter" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Daily Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:182 +msgid "For the most accurate rates, please select the appropriate pick up type for your business." +msgstr "" + +#: includes/admin/class-mp-admin.php:374 +msgid "Page saved." +msgstr "" + +#: includes/admin/class-mp-admin.php:370 +msgid "Custom field deleted." +msgstr "" + +#: includes/admin/class-mp-admin.php:369 +msgid "Custom field updated." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:541 +msgid "%s - The payment request expired, - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:536 +msgid "%s - The payment not credited in merchants bitpay account, action required. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:252 +msgid "If enabled, you will recieve an email for each status update on payment." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:240 +msgid "Speed at which the bitcoin transaction registers as \"confirmed\" to the store. This overrides your merchant settings on the Bitpay website." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:238 +msgid "Transaction Speed" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:244 +msgid "Low" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:243 +msgid "Medium" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:242 +msgid "High" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:177 +#: includes/common/payment-gateways/_bitpay.php:517 +#: includes/common/payment-gateways/_bitpay.php:522 +msgid "%s - The payment request is under process. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:175 +#: includes/common/payment-gateways/_bitpay.php:527 +msgid "%s - The payment request has been processed - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:150 +#: includes/common/payment-gateways/_bitpay.php:294 +msgid "Incorrect order invoice, please contact site administrator" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:141 +msgid "We could not verify order invoice details, please try again or contact site administrator for help" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:81 +msgid "Login to Simplify to get your API credentials. Enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:605 +#: includes/common/payment-gateways/paypal-express.php:647 +msgid "Express Checkout is PayPal's premier checkout solution, which streamlines the checkout process for buyers and keeps them on your site after making a purchase. Unlike PayPal Pro, there are no additional fees to use Express Checkout, though you may need to do a free upgrade to a business account. More Info »" +msgstr "" + +#. Plugin URI of the plugin/theme +msgid "https://premium.wpmudev.org/project/e-commerce/" +msgstr "" + +#. Author of the plugin/theme +msgid "WPMU DEV" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:541 +#: includes/admin/class-mp-orders-admin.php:543 +msgid "Tracking Number" +msgstr "" + +#: includes/common/class-mp-order.php:805 +#: includes/common/payment-gateways/stripe.php:336 +#: includes/public/class-mp-checkout.php:402 +msgid "Country" +msgstr "" + +#: includes/common/class-mp-order.php:784 +#: includes/common/payment-gateways/stripe.php:338 +msgid "City" +msgstr "" + +#: includes/common/class-mp-order.php:780 +msgid "Address 2" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:340 +msgid "Address" +msgstr "" + +#: includes/common/class-mp-cart.php:752 includes/common/class-mp-gdpr.php:378 +msgid "Order Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:360 +msgid "Payment Total" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:347 +msgid "Transaction ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:207 +msgid "The WePay Card Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:186 +#: includes/common/shipping-modules/mp-fedex.php:283 +msgid "Account ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:179 +msgid "Access Token" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:172 +msgid "Client Secret" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:165 +msgid "Client ID" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:159 +msgid "You must login to WePay to get your API credentials. Make sure to check \"Tokenize credit cards\" option under \"API Keys\" section of your WePay app." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:154 +msgid "When in live mode it is recommended to use SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:148 +msgid "Donation" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:147 +msgid "Event" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:146 +msgid "Personal" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:145 +msgid "Service" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:144 +msgid "Goods" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:141 +msgid "Choose type of payments" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:140 +msgid "Checkout Type" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:134 +msgid "Staging" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:131 +msgid "Choose STAGING if you have registered the app on stage.wepay.com, or PRODUCTION if you registered on www.wepay.com" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:36 +#: includes/common/payment-gateways/wepay.php:299 +msgid "WePay" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:366 +msgid "Rejected - A payment was rejected." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:360 +msgid "Failed - A payment was rejected due to an error." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:342 +msgid "PayWay balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:298 +msgid "Full path of the cacerts.crt file" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:284 +msgid "User Name" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:277 +msgid "Biller Code" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:273 +msgid "Log Directory" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:266 +msgid "Encryption Key" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:60 +msgid "Your PayWay transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:40 +#: includes/common/payment-gateways/_payway.php:41 +msgid "PayWay" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:862 +msgid "You must register this application with PayPal using your business account login to get an Application ID that will work with your API credentials. A bit of a hassle, but worth it! In the near future we will be looking for ways to simplify this process. Register then submit your application while logged in to the developer portal. Note that you do not need an Application ID for testing in sandbox mode. More Information »" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:818 +#: includes/common/payment-gateways/paypal-chained-payments.php:840 +#: includes/common/payment-gateways/paypal-express.php:705 +msgid "You must login to PayPal and create an API signature to get your credentials. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:378 +msgid "Use Payflow payment gateway to accept online payments using your Internet merchant account and processing network. PayPal Payflow Pro is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:595 +msgid "Tags Only" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:594 +msgid "Category Only" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:795 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:593 +msgid "Category & Tags" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:591 +msgid "Relate Products By" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1008 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:455 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:751 +msgid "Right" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1007 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:454 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:749 +msgid "Left" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1009 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:750 +msgid "Center" +msgstr "" + +#: marketpress.php:273 +msgid "Orders from your e-commerce store." +msgstr "" + +#: marketpress.php:231 +msgid "Products for your e-commerce store." +msgstr "" + +#: marketpress.php:222 +msgid "Edit Product" +msgstr "" + +#. Description of the plugin/theme +msgid "The complete WordPress ecommerce plugin - works perfectly with BuddyPress and Multisite too to create a social marketplace, where you can take a percentage! Activate the plugin, adjust your settings then add some products to your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:272 +msgid "Beside" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:271 +msgid "Above" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:268 +msgid "Pin Count" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:261 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:287 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:318 +msgid "All View" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:260 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:286 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:317 +msgid "Single View" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:259 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:285 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:316 +msgid "Off" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:578 +msgid "Related Product Limit" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:681 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1201 +msgid "Applies To" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:685 +msgid "All Products" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:487 +msgid "The label shown for the tax line item in the cart. Taxes, VAT, GST, etc." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:485 +msgid "Tax Label" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:81 +msgid "Apply" +msgstr "" + +#: includes/admin/class-mp-admin.php:192 +msgid "MarketPress Instructions" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1954 +#: includes/admin/class-mp-products-admin.php:2194 includes/common/data.php:62 +#: includes/common/helpers.php:150 +msgid "Taxes" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1417 +#: includes/common/class-mp-product.php:2900 +msgid "Related Products" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:282 +#: includes/common/shipping-modules/mp-usps.php:316 +msgid "@ Max" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "(3-5 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "Priority Mail Express International Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:92 +msgid "Priority Mail Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:171 +#: includes/common/shipping-modules/mp-pickup.php:247 +msgid "In Store" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:159 +msgid "Pickup Fee" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:141 +msgid "This option allows your customers to indicate that they will pick-up their order at your place of business." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:60 +#: includes/common/shipping-modules/mp-pickup.php:76 +#: includes/common/shipping-modules/mp-pickup.php:176 +msgid "Pickup Instructions" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:24 +#: includes/common/shipping-modules/mp-pickup.php:254 +msgid "Pickup" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping - 0.00" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:256 +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:440 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:309 +msgid "Your Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:301 +msgid "Station" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:300 +msgid "Request Courier" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:299 +msgid "Drop Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:298 +msgid "Business Service Center" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:297 +msgid "Regular Pickup" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:135 +#: includes/common/shipping-modules/mp-fedex.php:264 +msgid "Production" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:207 +msgid "Simplify Commerce by MasterCard" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:104 +msgid "When in live mode, although it is not required, Simplify recommends you have an SSL certificate." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:183 +#: includes/common/payment-gateways/simplify.php:87 +msgid "Public Key" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:175 +#: includes/common/payment-gateways/simplify.php:94 +msgid "Private Key" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:71 +msgid "Simplify helps merchants to accept online payments from Mastercard, Visa, American Express, Discover, JCB, and Diners Club cards. It's that simple. We offer a merchant account and payment gateway in a single, secure package so you can concentrate on what really matters to your business. Only supports USD currently." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:267 +msgid "%1$s" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:151 +msgid "The Simplify Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/simplify.php:18 +msgid "Simplify" +msgstr "" + +#: includes/common/payment-gateways/pin.php:255 +msgid "%1$s Card %2$s" +msgstr "" + +#: includes/common/payment-gateways/pin.php:211 +msgid "The PIN Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:187 +msgid "Selecting a currency other than currency supported by PIN may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/pin.php:164 +msgid "You must login to PIN to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/pin.php:158 +msgid "When in live mode PIN recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/pin.php:45 +#: includes/common/payment-gateways/pin.php:286 +msgid "PIN" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:830 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:534 +#: includes/common/payment-gateways/paypal-express.php:865 +msgid "The payment is pending" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:235 +msgid "The Paymill Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:169 +msgid "You must login to Paymill to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:45 +#: includes/common/payment-gateways/paymill.php:308 +msgid "Paymill" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:90 +msgid "Invalid cardholder" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:89 +msgid "Card is no longer valid or has expired" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:88 +msgid "Please enter a valid Card CVC" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:87 +msgid "Please choose a valid Expiration Date." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:99 +#: includes/common/payment-gateways/skrill.php:100 +msgid "Skrill (Moneybookers)" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:24 +#: includes/common/shipping-modules/mp-weight-rate.php:292 +msgid "Weight Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:303 +msgid "USPS Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:270 +msgid "USPS Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:264 +msgid "USPS Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:145 +msgid "Flat Rate Large" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:140 +msgid "Flat Rate Medium 2" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:135 +msgid "Flat Rate Medium 1" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:130 +msgid "Flat Rate Small" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:118 +msgid "First Class International Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:114 +msgid "Priority Mail International Small Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:112 +msgid "Priority Mail International Medium Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:110 +msgid "Priority Mail International Large Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:108 +msgid "Priority Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:106 +msgid "Express Mail International Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:104 +msgid "Express Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:98 +msgid "Library Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:96 +msgid "Media Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "First-Class Mail Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:90 +msgid "Priority Mail Small Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:88 +msgid "Priority Mail Medium Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +#: includes/common/shipping-modules/mp-usps.php:88 +#: includes/common/shipping-modules/mp-usps.php:90 +#: includes/common/shipping-modules/mp-usps.php:92 +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "(2-4 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +msgid "Priority Mail Large Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "(2-4) days" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "Priority Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "Express Mail Sunday/Holiday Delivery Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:80 +msgid "Express Mail Flat Rate Boxes Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:78 +msgid "Express Mail Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:76 +msgid "Express Mail Sunday/Holiday Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:74 +msgid "Express Mail Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:72 +#: includes/common/shipping-modules/mp-usps.php:74 +#: includes/common/shipping-modules/mp-usps.php:76 +#: includes/common/shipping-modules/mp-usps.php:78 +#: includes/common/shipping-modules/mp-usps.php:80 +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "(1-2 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:72 +msgid "Express Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:67 +#: includes/common/shipping-modules/mp-usps.php:902 +msgid "USPS" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:534 +msgid "UPS (beta)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:166 +msgid "Required if using negotiated rates" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "Worldwide Express Plus" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "(Scheduled)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "Standard" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "(2-5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "Worldwide Expedited" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:54 +msgid "Worldwide Express" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "2nd Day Air AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "(1 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "Next Day Air Early AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "Next Day Air Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "3 Day Select" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:49 +msgid "Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:48 +msgid "2nd Day Air" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "Next Day Air" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:475 +#: includes/common/shipping-modules/mp-ups.php:43 +msgid "UPS" +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:27 +#: includes/common/shipping-modules/mp-table-rate.php:318 +msgid "Table Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:71 +#: includes/common/shipping-modules/mp-table-quantity.php:77 +msgid "Shipping Cost: " +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:70 +#: includes/common/shipping-modules/mp-table-quantity.php:76 +msgid "If quantity is greater than:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:66 +msgid "Each band must be a higher price than the one above it." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:56 +msgid "Number of Bands:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:53 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Each layer must be a higher quantity than the previous." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:51 +msgid "Table Quantity Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:31 +msgid "Table Quantity" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:135 +#: includes/common/shipping-modules/mp-table-rate.php:174 +#: includes/common/shipping-modules/mp-weight-rate.php:189 +msgid "European Union" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:123 +#: includes/common/shipping-modules/mp-table-rate.php:162 +#: includes/common/shipping-modules/mp-weight-rate.php:177 +msgid "United States" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:111 +#: includes/common/shipping-modules/mp-table-rate.php:151 +#: includes/common/shipping-modules/mp-weight-rate.php:166 +msgid "In Country" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:146 +#: includes/common/shipping-modules/mp-table-rate.php:186 +#: includes/common/shipping-modules/mp-weight-rate.php:201 +msgid "International" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:101 +#: includes/common/shipping-modules/mp-table-rate.php:141 +#: includes/common/shipping-modules/mp-weight-rate.php:156 +msgid "Canada" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:92 +#: includes/common/shipping-modules/mp-table-rate.php:132 +#: includes/common/shipping-modules/mp-weight-rate.php:147 +msgid "Hawaii and Alaska" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:83 +#: includes/common/shipping-modules/mp-table-rate.php:123 +#: includes/common/shipping-modules/mp-weight-rate.php:138 +msgid "Lower 48 States" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:64 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping." +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:25 +#: includes/common/shipping-modules/mp-flat-rate.php:223 +msgid "Flat Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:761 +msgid "FedEx (beta)" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Centimeters" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Inches" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1676 +#: includes/admin/class-mp-setup-wizard.php:547 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:166 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +msgid "Kilograms" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:103 +msgid " %1$s - %2$s" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:358 +msgid "Max Weight per Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:356 +msgid "Box Dimensions" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:354 +msgid "Box Name" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:344 +msgid "Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:343 +msgid "For each box defined enter the maximum weight it can contain." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:341 +msgid "Enter your standard box sizes as LengthxWidthxHeight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:386 +#: includes/common/shipping-modules/mp-ups.php:193 +#: includes/common/shipping-modules/mp-usps.php:234 +#: includes/common/shipping-modules/mp-usps.php:338 +msgid "Standard Boxes and Weight Limits" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:328 +msgid "Handling Charge per Interntional Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:294 +msgid "Handling Charge per Domestic Shipment " +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:388 +#: includes/common/shipping-modules/mp-ups.php:196 +#: includes/common/shipping-modules/mp-usps.php:237 +msgid "Add Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "(Next Day)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +msgid "Europe First International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:62 +msgid "International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:61 +#: includes/common/shipping-modules/mp-fedex.php:62 +#: includes/common/shipping-modules/mp-ups.php:54 +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "(1-3 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:61 +msgid "International First" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "(5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "International Economy" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "(2-7 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "Smart Post" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:55 +#: includes/common/shipping-modules/mp-ups.php:49 +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "(1-5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:55 +msgid "Ground Home Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "(1-7 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "Fedex Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:53 +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "(3 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:53 +msgid "Fedex Express Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +#: includes/common/shipping-modules/mp-ups.php:48 +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "(2 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +msgid "Fedex 2 Day" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "(2 Days am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "Fedex 2 Day AM" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "(1 Day)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +msgid "Standard Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "(1 Day am )" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "Priority Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "(1 Day am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "First Overnight" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:476 +#: includes/common/shipping-modules/mp-fedex.php:31 +msgid "FedEx" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:270 +#: includes/common/payment-gateways/simplify.php:179 +#: includes/common/payment-gateways/stripe.php:365 +msgid "%1$s Card ending in %2$s - Expires %3$s" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:259 +#: includes/common/payment-gateways/pin.php:238 +#: includes/common/payment-gateways/simplify.php:171 +msgid "%s Store Purchase - Order ID: %s, Email: %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:266 +msgid "You must login to Stripe to get your API credentials. You can enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:261 +msgid "When in live mode Stripe recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:311 +msgid "The Stripe Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:263 +#: includes/common/payment-gateways/paymill.php:122 +#: includes/common/payment-gateways/stripe.php:222 +msgid "Card Number" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:86 +msgid "Please enter a valid Credit Card Number." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:45 +#: includes/common/payment-gateways/stripe.php:433 +msgid "Stripe" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:750 +msgid "Sets the background color for the payment page. By default, the color is white." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:745 +msgid "Sets the background color for the header of the payment page. By default, the color is white." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:740 +msgid "Sets the border color around the header of the payment page. The border is a 2-pixel perimeter around the header space, which is 750 pixels wide by 90 pixels high. By default, the color is black." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:735 +msgid "URL for an image you want to appear at the top left of the payment page. The image has a maximum size of 750 pixels wide by 90 pixels high. PayPal recommends that you provide an image that is stored on a secure (https) server. If you do not specify an image, the business name is displayed." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:857 +#: includes/common/payment-gateways/paypal-express.php:1131 +msgid "The payment is pending because it is part of an order that has been authorized but not settled." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:853 +#: includes/common/payment-gateways/paypal-express.php:1127 +msgid "The payment is pending because it has been authorized but not settled. You must capture the funds first." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:847 +#: includes/common/payment-gateways/paypal-express.php:1120 +msgid "You denied the payment when it was marked as pending." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:837 +#: includes/common/payment-gateways/paypal-express.php:1108 +msgid "A reversal has occurred on this transaction due to an unknown reason." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:836 +#: includes/common/payment-gateways/paypal-express.php:1107 +msgid "A reversal has occurred on this transaction because you have given the customer a refund." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:835 +#: includes/common/payment-gateways/paypal-express.php:1106 +msgid "A reversal has occurred on this transaction due to a complaint about the transaction from your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:834 +#: includes/common/payment-gateways/paypal-express.php:1105 +msgid "A reversal has occurred on this transaction due to your customer triggering a money-back guarantee." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:833 +#: includes/common/payment-gateways/paypal-express.php:1104 +msgid "A reversal has occurred on this transaction due to a chargeback by your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:1101 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer:" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:826 +#: includes/common/payment-gateways/paypal-express.php:1097 +msgid "A payment has been accepted." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:818 +#: includes/common/payment-gateways/paypal-express.php:1087 +msgid "The transaction has not terminated, e.g. an authorization may be awaiting completion." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:531 +#: includes/common/payment-gateways/paypal-express.php:810 +#: includes/common/payment-gateways/paypal-express.php:1077 +msgid "The payment has failed. This happens only if the payment was made from your customer's bank account." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:806 +#: includes/common/payment-gateways/paypal-express.php:1072 +msgid "An authorization for this transaction has been voided." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:802 +#: includes/common/payment-gateways/paypal-express.php:1067 +msgid "The authorization period for this payment has been reached." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:798 +#: includes/common/payment-gateways/paypal-express.php:1062 +msgid "A reversal has been canceled; for example, when you win a dispute and the funds for the reversal have been returned to you." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:499 +#: includes/common/payment-gateways/paypal-express.php:1163 +msgid "PayPal Express Checkout" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:798 +msgid "Gateway Settings Page Message" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:725 +msgid "Signature" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:506 +#: includes/common/payment-gateways/eway31.php:533 +#: includes/common/shipping-modules/mp-fedex.php:276 +msgid "API Password" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:773 +msgid "Enter a percentage of all store sales to collect as a fee. Decimals allowed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:757 +msgid "Using PayPal Chained Payments allows you as the multisite network owner to collect a predefined fee or percentage of all sales on network MarketPress stores! This is invisible to the customers who purchase items in a store, and all PayPal fees will be charged to the store owner. To use this option you must create API credentials, and you should make all other gateways unavailable or limited above." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:338 +msgid "Please be aware that we will deduct a ?% fee from the total of each transaction in addition to any fees PayPal may charge you. If for any reason you need to refund a customer for an order, please contact us with a screenshot of the refund receipt in your PayPal history as well as the Transaction ID of our fee deduction so we can issue you a refund. Thank you!" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:698 +#: includes/common/payment-gateways/paypal-express.php:149 +msgid "There was a problem connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:470 +#: includes/common/payment-gateways/paypal-express.php:1053 +msgid "There was a problem verifying the IPN string with PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:310 +msgid "There was a problem connecting to PayPal to check the status of your purchase. Please check the status of your order here »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:539 +#: includes/common/payment-gateways/paypal-chained-payments.php:254 +#: includes/common/payment-gateways/paypal-express.php:1139 +msgid "The payment is pending." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:251 +#: includes/common/payment-gateways/paypal-chained-payments.php:531 +#: includes/common/payment-gateways/paypal-express.php:862 +#: includes/common/payment-gateways/paypal-express.php:1136 +msgid "The payment is pending for an unknown reason. For more information, contact PayPal customer service." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:250 +#: includes/common/payment-gateways/paypal-chained-payments.php:530 +#: includes/common/payment-gateways/paypal-express.php:861 +#: includes/common/payment-gateways/paypal-express.php:1135 +msgid "The payment is pending because you are not yet verified. You must verify your account before you can accept this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:249 +#: includes/common/payment-gateways/paypal-chained-payments.php:529 +#: includes/common/payment-gateways/paypal-express.php:860 +#: includes/common/payment-gateways/paypal-express.php:1134 +msgid "The payment is pending because it was made via credit card and you must upgrade your account to Business or Premier status in order to receive the funds. It can also mean that you have reached the monthly limit for transactions on your account." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:248 +#: includes/common/payment-gateways/paypal-chained-payments.php:528 +#: includes/common/payment-gateways/paypal-express.php:859 +#: includes/common/payment-gateways/paypal-express.php:1133 +msgid "The payment is pending because it was made to an email address that is not yet registered or confirmed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:247 +#: includes/common/payment-gateways/paypal-chained-payments.php:527 +#: includes/common/payment-gateways/paypal-express.php:858 +#: includes/common/payment-gateways/paypal-express.php:1132 +msgid "The payment is pending while it is being reviewed by PayPal for risk." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:246 +#: includes/common/payment-gateways/paypal-chained-payments.php:526 +#: includes/common/payment-gateways/paypal-express.php:856 +#: includes/common/payment-gateways/paypal-express.php:1130 +msgid "You do not have a balance in the currency sent, and you do not have your Payment Receiving Preferences set to automatically convert and accept this payment. You must manually accept or deny this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:245 +#: includes/common/payment-gateways/paypal-chained-payments.php:525 +#: includes/common/payment-gateways/paypal-express.php:855 +#: includes/common/payment-gateways/paypal-express.php:1129 +msgid "The payment is pending because you hold a non-U.S. account and do not have a withdrawal mechanism. You must manually accept or deny this payment from your Account Overview." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:244 +#: includes/common/payment-gateways/paypal-chained-payments.php:524 +#: includes/common/payment-gateways/paypal-express.php:854 +#: includes/common/payment-gateways/paypal-express.php:1128 +msgid "The payment is pending because it was made by an eCheck that has not yet cleared." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:243 +#: includes/common/payment-gateways/paypal-chained-payments.php:523 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:236 +#: includes/common/payment-gateways/paypal-chained-payments.php:516 +msgid "The transaction was rejected by the receiver (you)." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:510 +#: includes/common/payment-gateways/paypal-express.php:843 +#: includes/common/payment-gateways/paypal-express.php:1115 +msgid "You refunded the payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:224 +#: includes/common/payment-gateways/paypal-chained-payments.php:504 +msgid "The transaction is in progress." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:212 +#: includes/common/payment-gateways/paypal-chained-payments.php:491 +#: includes/common/payment-gateways/paypal-express.php:814 +#: includes/common/payment-gateways/paypal-express.php:1082 +msgid "The payment has been partially refunded." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:202 +#: includes/common/payment-gateways/paypal-chained-payments.php:481 +msgid "PayPal balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:177 +msgid "There was a problem connecting to PayPal to setup your purchase. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:122 +msgid "Your PayPal transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:50 +#: includes/common/payment-gateways/paypal-chained-payments.php:53 +#: includes/common/payment-gateways/paypal-chained-payments.php:732 +#: includes/common/payment-gateways/paypal-express.php:500 +#: includes/common/payment-gateways/paypal-express.php:938 +msgid "PayPal" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:48 +#: includes/common/payment-gateways/paypal-chained-payments.php:730 +#: includes/common/payment-gateways/paypal-chained-payments.php:756 +#: includes/common/payment-gateways/paypal-chained-payments.php:873 +msgid "PayPal Chained Payments" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:59 +#: includes/common/payment-gateways/paypal-payflow.php:467 +msgid "PayPal Payflow Pro" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:378 +msgid "Chargeback - A payment was reversed due to a chargeback. The funds have been removed from your account balance and returned to the buyer." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:372 +msgid "Failed - The Credit Card or Direct Debit transaction was declined." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:354 +#: includes/common/payment-gateways/skrill.php:366 +msgid "Cancelled - The payment was cancelled manually by the sender in their online account history or was auto-cancelled after 14 days pending." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:360 +msgid "Pending - The payment is pending. It can take 2-3 days for bank transfers to complete." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:349 +#: includes/common/payment-gateways/skrill.php:354 +msgid "Processed - The payment has been completed, and the funds have been added successfully to your Moneybookers account balance." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:189 +msgid "Shown to the customer on the confirmation screen - the end step of the process - a note, confirmation number, or any other message. Line breaks <br> may be used for longer messages." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:188 +msgid "Confirmation Note (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:183 +msgid "The URL of the logo which you would like to appear at the top of the payment form. The logo must be accessible via HTTPS otherwise it will not be shown. For best integration results we recommend that you use a logo with dimensions up to 200px in width and 50px in height." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:182 +msgid "Logo Image (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:177 +msgid "The name of this store, which will be shown on the gateway. If no value is submitted, the account email will be shown as the recipient of the payment." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:176 +msgid "Merchant Name (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:165 +msgid "Language" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:368 +#: includes/common/payment-gateways/authorizenet-aim.php:262 +#: includes/common/payment-gateways/eway.php:363 +#: includes/common/payment-gateways/eway31.php:471 +#: includes/common/payment-gateways/mollie.php:91 +#: includes/common/payment-gateways/paymill.php:193 +#: includes/common/payment-gateways/paypal-chained-payments.php:356 +#: includes/common/payment-gateways/paypal-express.php:688 +#: includes/common/payment-gateways/paypal-payflow.php:432 +#: includes/common/payment-gateways/pin.php:186 +#: includes/common/payment-gateways/skrill.php:152 +#: includes/common/payment-gateways/stripe.php:288 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:104 +msgid "Currency" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:359 +#: includes/common/payment-gateways/skrill.php:143 +msgid "Secret Word" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:261 +msgid "Order ID:" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:234 +msgid "Complete Checkout" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:204 +msgid "Your Moneybookers transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:155 +msgid "This is the email text to send to those who have made manual payment checkouts. You should include your manual payment instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:257 +#: includes/common/payment-gateways/manual-payments.php:128 +msgid "Record payments manually, such as by Cash, Check, or EFT." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:71 +msgid "Manual/Invoice" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:648 +#: includes/common/payment-gateways/manual-payments.php:35 +#: includes/common/payment-gateways/manual-payments.php:36 +msgid "Manual Payment" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:34 +#: includes/common/payment-gateways/manual-payments.php:163 +msgid "Manual Payments" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:288 +msgid "iDEAL Simulator (for testing)" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:287 +msgid "ABN Amro Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:286 +msgid "Friesland Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:285 +msgid "Rabobank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:284 +msgid "ING Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:279 +msgid "Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:270 +msgid "To make it easier to pay for online products and services, the Dutch banking community has developed the iDEAL online payment method. iDEAL allows online payments to be made using online banking in EUR only." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:247 +#: includes/common/payment-gateways/_payway.php:199 +#: includes/common/payment-gateways/manual-payments.php:68 +msgid "Invoiced" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1016 +msgid "Coupon" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:77 +#: includes/common/payment-gateways/_ideal.php:250 +#: includes/common/payment-gateways/_payway.php:202 +msgid "iDEAL" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:76 +msgid "iDEAL (beta)" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:327 +msgid "Merchant Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:293 +#: includes/common/payment-gateways/_payway.php:302 +#: includes/common/payment-gateways/payfast.php:324 +msgid "Merchant ID" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:462 +msgid "eWay Rapid 3.0 Payments lets merchants recieve credit card payments through eWay without need for users to leave the shop. Note this gateway requires a valid SSL certificate configured for this site." +msgstr "" + +#: includes/common/payment-gateways/eway.php:452 +msgid "There was a problem connecting to eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/eway.php:432 +#: includes/common/payment-gateways/eway.php:437 +msgid "The url of the image can be hosted on your website and pass the secure https:// path of the image to be displayed at the top of the website. This is the second image block on the webpage and is restricted to 960px X 65px. A default secure image is used if none is supplied." +msgstr "" + +#: includes/common/payment-gateways/eway.php:431 +#: includes/common/payment-gateways/eway.php:436 +msgid "Company Logo (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:427 +msgid "The page footer text can be customised and populated below the customer's order details. Useful for contact information." +msgstr "" + +#: includes/common/payment-gateways/eway.php:426 +msgid "Page Footer (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:421 +msgid "Page Description (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:417 +#: includes/common/payment-gateways/eway.php:422 +msgid "This value is used to populate the browsers title bar at the top of the screen." +msgstr "" + +#: includes/common/payment-gateways/eway.php:416 +msgid "Page Title (optional)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:412 +msgid "This will be displayed as the company the customer is purchasing from, including this is highly recommended." +msgstr "" + +#: includes/common/payment-gateways/eway.php:411 +msgid "Company Name" +msgstr "" + +#: includes/common/payment-gateways/eway.php:394 +msgid "Customer ID" +msgstr "" + +#: includes/common/payment-gateways/eway.php:381 +#: includes/common/payment-gateways/eway31.php:488 +msgid "Live API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway.php:371 +#: includes/common/payment-gateways/eway31.php:479 +msgid "Gateway Mode" +msgstr "" + +#: includes/common/payment-gateways/eway.php:354 +msgid "The Hosted Page is a webpage hosted on eWAY's side eliminating the need for merchants to capture, transmit or store credit card numbers. At the checkout time the merchant automatically redirects the customer to the Hosted Page where they would enter their details and have the transaction processed. Upon completion of the transaction the customer is redirected back to the MarketPress checkout confirmation page." +msgstr "" + +#: includes/common/payment-gateways/eway.php:314 +msgid "There was a problem with your credit card information: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:300 +msgid "Paid - The card has been processed - %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:253 +msgid "There was a problem setting up the transaction with eWay: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:245 +#: includes/common/payment-gateways/eway.php:289 +msgid "There was a problem parsing the response from eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:159 +#: includes/common/payment-gateways/eway.php:189 +#: includes/common/payment-gateways/paypal-chained-payments.php:634 +#: includes/common/payment-gateways/paypal-express.php:322 +#: includes/common/payment-gateways/paypal-express.php:473 +msgid "%s Store Purchase - Order ID: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:147 +#: includes/common/payment-gateways/eway.php:462 +msgid "eWay Shared Payments" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:214 +msgid "This is the email text to send to those who have made CubePoints checkouts. You should include your CubePoints instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:212 +#: includes/common/payment-gateways/free_orders.php:188 +#: includes/common/payment-gateways/manual-payments.php:154 +msgid "Order Confirmation Email" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:207 +#: includes/common/payment-gateways/manual-payments.php:149 +msgid "Confirmation User Instructions" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:202 +#: includes/common/payment-gateways/manual-payments.php:144 +msgid "User Instructions" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:198 +#: includes/common/payment-gateways/free_orders.php:170 +#: includes/common/payment-gateways/manual-payments.php:139 +msgid "Enter a public name for this payment method that is displayed to users - No HTML" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:532 +#: includes/common/payment-gateways/_cubepoints.php:196 +#: includes/common/payment-gateways/free_orders.php:169 +#: includes/common/payment-gateways/manual-payments.php:138 +msgid "Method Name" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:187 +msgid "Accept CubePoints as payment(requires the CubePoints plugin)." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:140 +msgid "Sorry, but you do not appear to have enough points to complete this purchase!" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:124 +msgid "%s Store Purchase" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:79 +#: includes/common/payment-gateways/_cubepoints.php:171 +msgid "Your current points: " +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:133 +#: includes/common/payment-gateways/_cubepoints.php:197 +msgid "CubePoints" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:344 +msgid "Authorize.net AIM Checkout" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:331 +msgid "Custom API URL" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:332 +msgid "Many other gateways have Authorize.net API emulators. To use one of these gateways input their API post url here." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:322 +msgid "Request a delimited response from the payment gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:316 +msgid "Security: MD5 Hash" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:317 +msgid "The payment gateway generated MD5 hash value that can be used to authenticate the transaction response. Not needed because responses are returned using an SSL connection." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:306 +msgid "Customer Receipt Email Footer" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:296 +msgid "Customer Receipt Email Header" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:297 +#: includes/common/payment-gateways/paypal-payflow.php:446 +msgid "This text will appear as the header of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:282 +msgid "Encapsulation Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:283 +msgid "Authorize.net default is blank. Otherwise, get this from your credit card processor. If the transactions are going through, but getting strange responses, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:273 +msgid "Optional settings to control advanced options" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:224 +#: includes/common/payment-gateways/authorizenet-aim.php:272 +msgid "Advanced Settings" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:253 +msgid "Transaction Key" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:246 +msgid "Login ID" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:396 +msgid "Gateway Credentials" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:221 +msgid "Authorize.net AIM is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway. USD is the only currency supported by this gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:205 +msgid "There was a problem finalizing your purchase. %s Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:519 +#: includes/common/payment-gateways/paypal-chained-payments.php:218 +#: includes/common/payment-gateways/paypal-chained-payments.php:498 +#: includes/common/payment-gateways/paypal-express.php:822 +#: includes/common/payment-gateways/paypal-express.php:1092 +msgid "The payment has been completed, and the funds have been added successfully to your account balance." +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:233 +msgid "Please enter a valid credit card security code" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:224 +#: includes/public/class-mp-checkout.php:867 +msgid "Please enter a valid credit card number" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:221 +msgid "Please enter your credit card number" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:217 +msgid "Please enter your credit card security code" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:213 +msgid "Please select your credit card expiration date." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:299 +#: includes/common/payment-gateways/authorizenet-aim.php:50 +#: includes/common/payment-gateways/eway.php:148 +#: includes/common/payment-gateways/eway.php:298 +#: includes/common/payment-gateways/eway31.php:267 +#: includes/common/payment-gateways/paymill.php:46 +#: includes/common/payment-gateways/paypal-express.php:972 +#: includes/common/payment-gateways/paypal-payflow.php:60 +#: includes/common/payment-gateways/pin.php:46 +#: includes/common/payment-gateways/simplify.php:19 +#: includes/common/payment-gateways/stripe.php:46 +#: includes/common/payment-gateways/wepay.php:37 +msgid "Credit Card" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:49 +msgid "Authorize.net Checkout" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:156 +#: includes/common/payment-gateways/stripe.php:293 +msgid "Selecting a currency other than that used for your store may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:352 +msgid "Seller ID" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:340 +#: includes/common/payment-gateways/_ideal.php:311 +#: includes/common/payment-gateways/authorizenet-aim.php:234 +#: includes/common/payment-gateways/eway.php:376 +#: includes/common/payment-gateways/payfast.php:315 +#: includes/common/payment-gateways/paypal-chained-payments.php:368 +#: includes/common/payment-gateways/paypal-express.php:699 +#: includes/common/payment-gateways/paypal-payflow.php:391 +msgid "Live" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:339 +#: includes/common/payment-gateways/authorizenet-aim.php:233 +#: includes/common/payment-gateways/eway.php:375 +#: includes/common/payment-gateways/paypal-chained-payments.php:367 +#: includes/common/payment-gateways/paypal-express.php:698 +#: includes/common/payment-gateways/paypal-payflow.php:390 +#: includes/common/shipping-modules/mp-fedex.php:263 +msgid "Sandbox" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:336 +#: includes/common/payment-gateways/_ideal.php:307 +#: includes/common/payment-gateways/authorizenet-aim.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:365 +#: includes/common/payment-gateways/paypal-express.php:695 +#: includes/common/payment-gateways/paypal-payflow.php:387 +#: includes/common/payment-gateways/wepay.php:130 +#: includes/common/shipping-modules/mp-fedex.php:260 +msgid "Mode" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:288 +#: includes/common/payment-gateways/mijireh.php:242 +#: includes/common/payment-gateways/mollie.php:212 +msgid "The order has been received" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:74 +#: includes/common/payment-gateways/2checkout.php:75 +#: includes/common/payment-gateways/2checkout.php:435 +msgid "2Checkout" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:306 +msgid "Confirm" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:218 +#: includes/common/class-mp-cart.php:974 includes/common/class-mp-cart.php:1354 +#: includes/common/template-functions.php:918 +msgid "Checkout" +msgstr "" + +#: includes/common/template-functions.php:207 +msgid "Check Order Status" +msgstr "" + +#: includes/common/template-functions.php:235 +msgid "View Products" +msgstr "" + +#: includes/common/template-functions.php:263 +msgid "Visit Store" +msgstr "" + +#: includes/common/template-functions.php:2912 +#: includes/multisite/template-functions.php:448 +msgid "Order By" +msgstr "" + +#: includes/common/template-functions.php:2887 +#: includes/multisite/template-functions.php:405 +msgid "Price (High to Low)" +msgstr "" + +#: includes/common/template-functions.php:2886 +#: includes/multisite/template-functions.php:404 +msgid "Price (Low to High)" +msgstr "" + +#: includes/common/template-functions.php:2881 +#: includes/multisite/template-functions.php:399 +msgid "Default" +msgstr "" + +#: includes/common/template-functions.php:2858 +msgid "Show All" +msgstr "" + +#: includes/common/class-mp-product.php:2048 +msgid "View Larger Image »" +msgstr "" + +#: includes/common/class-mp-product.php:979 +msgid "Out of Stock" +msgstr "" + +#: includes/common/template-functions.php:148 +msgid "Price: " +msgstr "" + +#: includes/multisite/template-functions.php:833 +msgid "No Tags" +msgstr "" + +#: includes/common/template-functions.php:3162 +msgid "Uncategorized" +msgstr "" + +#: includes/common/class-mp-cart.php:569 includes/common/class-mp-order.php:604 +#: includes/common/helpers.php:115 +msgid "Download" +msgstr "" + +#: includes/common/class-mp-cart.php:1353 +msgid "Empty Cart" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:291 +#: includes/common/payment-gateways/paypal-express.php:718 +#: includes/common/payment-gateways/paypal-payflow.php:423 +#: includes/common/shipping-modules/mp-ups.php:158 +#: includes/public/class-mp-checkout.php:1254 +#: includes/public/class-mp-checkout.php:1383 +msgid "Password" +msgstr "" + +#: includes/common/payment-gateways/eway.php:387 +#: includes/common/payment-gateways/paypal-express.php:711 +#: includes/common/shipping-modules/mp-usps.php:185 +#: includes/public/class-mp-checkout.php:1249 +msgid "Username" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:437 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:790 +msgid "Have a coupon code?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:321 +#: includes/admin/class-mp-orders-admin.php:526 +#: includes/common/class-mp-cart.php:592 +msgid "Remove" +msgstr "" + +#: includes/admin/class-mp-ajax.php:316 +msgid "Quantity:" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2140 +#: includes/admin/class-mp-products-admin.php:2387 +#: includes/common/shipping-modules/class-mp-shipping-api.php:507 +msgid "Extra Shipping Cost" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:403 +msgid "Choose a Shipping Method:" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1691 +#: includes/admin/class-mp-products-admin.php:2131 +#: includes/admin/class-mp-products-admin.php:2378 +#: includes/common/shipping-modules/class-mp-shipping-api.php:228 +msgid "Ounces" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1684 +#: includes/admin/class-mp-products-admin.php:2123 +#: includes/admin/class-mp-products-admin.php:2369 +#: includes/admin/class-mp-setup-wizard.php:546 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:165 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +#: includes/common/shipping-modules/class-mp-shipping-api.php:227 +msgid "Pounds" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:226 +msgid "Product Weight:" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:214 +msgid "Weight (Kilograms)" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:82 +msgid "Number of Categories:" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:72 +msgid "Product Count" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:20 +#: includes/admin/class-mp-product-attributes-admin.php:129 +#: includes/admin/class-mp-product-attributes-list-table.php:22 +#: includes/admin/class-mp-products-admin.php:2216 +#: includes/admin/class-mp-shortcode-builder.php:628 +#: includes/admin/class-mp-shortcode-builder.php:1415 +#: includes/admin/widgets/ms-global-categories.php:70 +#: includes/common/shipping-modules/mp-fedex.php:395 +#: includes/common/shipping-modules/mp-ups.php:202 +#: includes/common/shipping-modules/mp-usps.php:243 +#: includes/public/class-mp-checkout.php:314 +msgid "Name" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:67 +msgid "Order Categories By:" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:24 +#: includes/admin/widgets/ms-global-categories.php:50 +msgid "Global Product Categories" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:15 +msgid "Global Product Category List" +msgstr "" + +#: includes/admin/widgets/ms-global-categories.php:13 +msgid "Displays a network-wide HTML list of product categories from network MarketPress stores." +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:24 +#: includes/admin/widgets/ms-global-tag-cloud.php:45 +msgid "Global Product Tags" +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:15 +msgid "Global Product Tag Cloud" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:947 +#: includes/admin/widgets/ms-global-product-list.php:173 +msgid "Excerpt" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:169 +msgid "Content To Show:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:140 +msgid "Limit To Product Tag:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:132 +msgid "Limit To Product Category:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:72 +msgid "Global Products" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:16 +msgid "Global Product List" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:14 +msgid "Shows a customizable global list of products from network MarketPress stores." +msgstr "" + +#: includes/common/class-mp-product.php:974 +#: includes/multisite/template-functions.php:731 +msgid "Buy Now »" +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:13 +msgid "Displays global most used product tags in cloud format from network MarketPress stores." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:438 +msgid "Theme Permissions" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:402 +#: includes/multisite/class-mp-admin-multisite.php:448 +msgid "No Access" +msgstr "" + +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:120 +msgid "Pro Site Level" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:401 +#: includes/multisite/class-mp-admin-multisite.php:447 +msgid "All Can Use" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:390 +msgid "Gateway Permissions" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:375 +msgid "Select a Gateway" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:350 +msgid "Global Gateway" +msgstr "" + +#. Plugin Name of the plugin/theme +msgid "MarketPress" +msgstr "" + +#: includes/admin/widgets/product-tag-cloud.php:7 +msgid "Your most used product tags in cloud format from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/categories.php:79 +msgid "Show hierarchy" +msgstr "" + +#: includes/admin/widgets/categories.php:76 +#: includes/admin/widgets/ms-global-categories.php:92 +msgid "Show product counts" +msgstr "" + +#: includes/admin/widgets/categories.php:73 +msgid "Show as dropdown" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:710 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:736 +#: includes/admin/widgets/categories.php:30 +msgid "Select Category" +msgstr "" + +#: includes/admin/widgets/categories.php:7 +msgid "A list or dropdown of product categories from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/product-list.php:250 +msgid "Show Buy Button" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:183 +#: includes/admin/widgets/product-list.php:244 +msgid "Show Price" +msgstr "" + +#: includes/admin/widgets/product-list.php:241 +msgid "Show Excerpt" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:155 +#: includes/admin/widgets/product-list.php:238 +msgid "Thumbnail Size:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:153 +#: includes/admin/widgets/product-list.php:237 +msgid "Show Thumbnail" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:147 +#: includes/admin/widgets/product-list.php:233 +msgid "Display Settings" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:136 +#: includes/admin/widgets/ms-global-product-list.php:144 +#: includes/admin/widgets/product-list.php:230 +msgid "Enter the Slug" +msgstr "" + +#: includes/admin/widgets/product-list.php:228 +#: includes/common/template-functions.php:894 +msgid "Tag" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:686 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:712 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:739 +#: includes/admin/class-mp-shortcode-builder.php:796 +#: includes/admin/widgets/product-list.php:227 +#: includes/common/template-functions.php:886 +#: includes/common/template-functions.php:2907 +msgid "Category" +msgstr "" + +#: includes/admin/widgets/product-list.php:226 +msgid "No Filter" +msgstr "" + +#: includes/admin/widgets/product-list.php:224 +msgid "Taxonomy Filter:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:108 +#: includes/admin/widgets/product-list.php:209 +msgid "Order Products By:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:101 +#: includes/admin/widgets/product-list.php:206 +msgid "Number of Products:" +msgstr "" + +#: includes/admin/widgets/ms-global-product-list.php:98 +#: includes/admin/widgets/product-list.php:204 +msgid "List Settings" +msgstr "" + +#: includes/admin/widgets/product-list.php:177 +msgid "Our Products" +msgstr "" + +#: includes/admin/widgets/product-list.php:144 +#: includes/common/template-functions.php:2070 +#: includes/common/template-functions.php:2347 +#: includes/multisite/template-functions.php:303 +#: includes/multisite/template-functions.php:623 +msgid "No Products" +msgstr "" + +#: includes/admin/widgets/product-list.php:8 +msgid "Product List" +msgstr "" + +#: includes/admin/widgets/product-list.php:7 +msgid "Shows a customizable list of products from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/cart.php:75 includes/admin/widgets/categories.php:82 +#: includes/admin/widgets/product-list.php:253 +#: includes/admin/widgets/product-tag-cloud.php:57 +msgid "Only show on store pages" +msgstr "" + +#: includes/admin/widgets/cart.php:65 +#: includes/admin/widgets/ms-global-product-list.php:92 +#: includes/admin/widgets/product-list.php:200 +msgid "Custom Text:" +msgstr "" + +#: includes/admin/widgets/cart.php:64 includes/admin/widgets/categories.php:69 +#: includes/admin/widgets/ms-global-categories.php:59 +#: includes/admin/widgets/ms-global-product-list.php:87 +#: includes/admin/widgets/ms-global-tag-cloud.php:49 +#: includes/admin/widgets/product-list.php:199 +#: includes/admin/widgets/product-tag-cloud.php:49 +msgid "Title:" +msgstr "" + +#: includes/admin/widgets/cart.php:7 +msgid "Shows dynamic shopping cart contents along with a checkout button for your MarketPress store." +msgstr "" + +#: includes/admin/widgets/product-tag-cloud.php:8 +msgid "Product Tag Cloud" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:539 +#: includes/admin/class-mp-setup-wizard.php:575 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:163 +msgid "Measurement System" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:616 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:149 +msgid "Select Shipping Options" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:596 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:129 +msgid "Calculated Options" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:582 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:115 +msgid "No Shipping" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:110 +msgid "EU" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:109 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:93 +msgid "All" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:92 +msgid "Select:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:185 +msgid "Store Pages" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:223 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:256 +msgid "Order Shipped" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:60 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:95 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:128 +#: marketpress.php:266 +msgid "New Order" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:314 +msgid "Email Notifications" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:59 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:200 +msgid "Products List" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:58 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:190 +msgid "Store Base" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:108 +#: includes/admin/class-mp-shortcode-builder.php:635 +#: includes/admin/class-mp-shortcode-builder.php:708 +#: includes/admin/class-mp-shortcode-builder.php:875 +#: includes/admin/class-mp-shortcode-builder.php:1319 +#: includes/admin/class-mp-shortcode-builder.php:1422 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:526 +#: includes/admin/widgets/ms-global-categories.php:78 +#: includes/admin/widgets/ms-global-product-list.php:127 +#: includes/admin/widgets/product-list.php:221 +msgid "Ascending" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:109 +#: includes/admin/class-mp-shortcode-builder.php:636 +#: includes/admin/class-mp-shortcode-builder.php:709 +#: includes/admin/class-mp-shortcode-builder.php:876 +#: includes/admin/class-mp-shortcode-builder.php:1320 +#: includes/admin/class-mp-shortcode-builder.php:1423 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:525 +#: includes/admin/widgets/ms-global-categories.php:75 +#: includes/admin/widgets/ms-global-product-list.php:124 +#: includes/admin/widgets/product-list.php:220 +msgid "Descending" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:637 +#: includes/admin/class-mp-shortcode-builder.php:695 +#: includes/admin/class-mp-shortcode-builder.php:862 +#: includes/admin/class-mp-shortcode-builder.php:1306 +#: includes/admin/class-mp-shortcode-builder.php:1424 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:518 +#: includes/admin/widgets/ms-global-product-list.php:121 +#: includes/admin/widgets/product-list.php:218 +msgid "Random" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:694 +#: includes/admin/class-mp-shortcode-builder.php:861 +#: includes/admin/class-mp-shortcode-builder.php:1305 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:517 +#: includes/admin/widgets/ms-global-product-list.php:119 +#: includes/admin/widgets/product-list.php:216 +msgid "Product Price" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:693 +#: includes/admin/class-mp-shortcode-builder.php:860 +#: includes/admin/class-mp-shortcode-builder.php:1304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:516 +#: includes/admin/widgets/ms-global-product-list.php:117 +#: includes/admin/widgets/product-list.php:215 +msgid "Number of Sales" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:692 +#: includes/admin/class-mp-shortcode-builder.php:859 +#: includes/admin/class-mp-shortcode-builder.php:1303 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:515 +#: includes/admin/widgets/product-list.php:214 +msgid "Product Author" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:691 +#: includes/admin/class-mp-shortcode-builder.php:858 +#: includes/admin/class-mp-shortcode-builder.php:1302 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:514 +#: includes/admin/widgets/product-list.php:213 +msgid "Product ID" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:690 +#: includes/admin/class-mp-shortcode-builder.php:857 +#: includes/admin/class-mp-shortcode-builder.php:1301 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:513 +#: includes/admin/widgets/ms-global-product-list.php:113 +#: includes/admin/widgets/product-list.php:212 +msgid "Publish Date" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:430 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:726 +msgid "Width" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:439 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:735 +msgid "Height" +msgstr "" + +#: includes/admin/class-mp-product-attributes-admin.php:88 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:402 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:698 +msgid "Custom" +msgstr "" + +#: includes/common/class-mp-product.php:179 +#: includes/common/class-mp-product.php:992 +#: includes/common/class-mp-product.php:1000 +#: includes/multisite/template-functions.php:579 +msgid "Buy Now" +msgstr "" + +#: includes/common/class-mp-product.php:175 +#: includes/common/class-mp-product.php:990 +#: includes/common/class-mp-product.php:998 +msgid "Add To Cart" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:807 +msgid "Store Style" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1021 +msgid "Edit Coupon" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupon.php:580 +#: includes/admin/class-mp-ajax.php:238 +#: includes/admin/class-mp-products-admin.php:1532 +msgid "Unlimited" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1198 +msgid "Remaining Uses" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1197 +msgid "Used" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:752 +#: includes/admin/class-mp-products-admin.php:2343 +msgid "Start Date" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:598 +msgid "Coupon Code" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:444 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:284 +msgid "Save Changes" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:57 +#: includes/admin/class-mp-shortcode-builder.php:716 +#: includes/admin/class-mp-shortcode-builder.php:727 +#: includes/admin/class-mp-shortcode-builder.php:883 +#: includes/admin/class-mp-shortcode-builder.php:894 +#: includes/admin/class-mp-shortcode-builder.php:946 +#: includes/admin/class-mp-shortcode-builder.php:956 +#: includes/admin/class-mp-shortcode-builder.php:1006 +#: includes/admin/class-mp-shortcode-builder.php:1327 +#: includes/admin/class-mp-shortcode-builder.php:1338 +#: includes/admin/store-settings/class-mp-store-settings-general.php:357 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:270 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:108 +#: includes/admin/widgets/ms-global-product-list.php:172 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:94 +msgid "None" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:352 +msgid "Google Analytics Ecommerce Tracking" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:310 +msgid "This option turns MarketPress into more of a product listing plugin, disabling shopping carts, checkout, and order management. This is useful if you simply want to list items you can buy in a store somewhere else, optionally linking the \"Buy Now\" buttons to an external site. Some examples are a car dealership, or linking to songs/albums in itunes, or linking to products on another site with your own affiliate links." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:304 +msgid "Whether or not customers must be registered and logged in to checkout. (Not recommended: Enabling this can lower conversions)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:258 +msgid "How many times may a customer download a file they have purchased? (It's best to set this higher than one in case they have any problems downloading)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:257 +msgid "Maximum Downloads" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:298 +msgid "This will set the product to draft if inventory of all variations is gone." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:288 +msgid "At what low stock count do you want to be warned for products you have enabled inventory tracking for?" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:208 +#: includes/admin/store-settings/class-mp-store-settings-general.php:287 +msgid "Inventory Warning Threshold" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:282 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:542 +msgid "Miscellaneous Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:429 +#: includes/multisite/class-mp-admin-multisite.php:247 +msgid "Show Decimal in Prices" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:451 +#: includes/admin/store-settings/class-mp-store-settings-general.php:403 +#: includes/multisite/class-mp-admin-multisite.php:221 +msgid "Currency Symbol Position" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:444 +#: includes/admin/store-settings/class-mp-store-settings-general.php:396 +msgid "Store Currency" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:429 +#: includes/admin/store-settings/class-mp-store-settings-general.php:381 +msgid "Currency Settings" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:516 +msgid "Please see your local tax laws. Note if this is enabled and a downloadable only cart, rates will be the default for your base location." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:529 +msgid "Apply Tax to Downloadable Products?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:498 +msgid "Enabling this option allows you to enter and show all prices inclusive of tax, while still listing the tax total as a line item in shopping carts. Please see your local tax laws." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:497 +msgid "Enter Prices Inclusive of Tax?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:492 +msgid "Please see your local tax laws. Most areas charge tax on shipping fees." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:491 +msgid "Apply Tax To Shipping Fees?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:674 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:565 +#: includes/common/payment-gateways/authorizenet-aim.php:291 +#: includes/common/payment-gateways/authorizenet-aim.php:326 +#: includes/common/payment-gateways/payfast.php:347 +msgid "No" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:675 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:759 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:512 +#: includes/admin/class-mp-setup-wizard.php:518 +#: includes/admin/class-mp-setup-wizard.php:524 +#: includes/admin/class-mp-setup-wizard.php:530 +#: includes/admin/class-mp-setup-wizard.php:564 +#: includes/admin/store-settings/class-mp-store-settings-general.php:232 +#: includes/admin/store-settings/class-mp-store-settings-general.php:299 +#: includes/admin/store-settings/class-mp-store-settings-general.php:305 +#: includes/admin/store-settings/class-mp-store-settings-general.php:311 +#: includes/admin/store-settings/class-mp-store-settings-general.php:317 +#: includes/admin/store-settings/class-mp-store-settings-general.php:328 +#: includes/admin/store-settings/class-mp-store-settings-general.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:341 +#: includes/admin/store-settings/class-mp-store-settings-general.php:348 +#: includes/admin/store-settings/class-mp-store-settings-general.php:367 +#: includes/admin/store-settings/class-mp-store-settings-general.php:493 +#: includes/admin/store-settings/class-mp-store-settings-general.php:499 +#: includes/admin/store-settings/class-mp-store-settings-general.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:556 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:375 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:381 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:387 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:474 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:493 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:532 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:574 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:606 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:664 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:670 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:677 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:683 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:689 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:763 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:774 +#: includes/common/payment-gateways/_bitpay.php:250 +#: includes/common/payment-gateways/_bitpay.php:257 +#: includes/common/payment-gateways/_bitpay.php:264 +#: includes/common/payment-gateways/authorizenet-aim.php:290 +#: includes/common/payment-gateways/authorizenet-aim.php:325 +#: includes/common/payment-gateways/free_orders.php:160 +#: includes/common/payment-gateways/payfast.php:346 +#: includes/common/payment-gateways/paymill.php:162 +#: includes/common/payment-gateways/paypal-payflow.php:441 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-checkbox.php:22 +msgid "Yes" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:492 +#: includes/admin/store-settings/class-mp-store-settings-general.php:472 +msgid "%s Tax Rate" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:467 +#: includes/admin/store-settings/class-mp-store-settings-general.php:449 +msgid "Tax Settings" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:370 +#: includes/admin/store-settings/class-mp-store-settings-general.php:624 +msgid "Base Zip/Postal Code" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:354 +#: includes/admin/store-settings/class-mp-store-settings-general.php:608 +msgid "Base State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:589 +msgid "Base Country" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:582 +msgid "Location Settings" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:195 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:800 +#: includes/multisite/class-mp-admin-multisite.php:172 +msgid "General Settings" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1945 +#: includes/admin/class-mp-products-admin.php:2185 +#: includes/admin/class-mp-store-settings-admin.php:111 +#: includes/admin/class-mp-store-settings-admin.php:266 +msgid "General" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:242 +msgid "Importers" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:115 +#: includes/admin/class-mp-store-settings-admin.php:234 +msgid "Payments" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:313 +#: includes/admin/class-mp-store-settings-admin.php:112 +#: includes/admin/class-mp-store-settings-admin.php:222 +msgid "Presentation" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:916 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1015 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1018 +#: includes/admin/class-mp-dashboard-widgets.php:305 marketpress.php:702 +msgid "Coupons" +msgstr "" + +#: includes/admin/class-mp-admin.php:251 +msgid "Download »" +msgstr "" + +#: includes/admin/class-mp-admin.php:245 +#: includes/admin/class-mp-exporter-orders.php:170 +msgid "All Statuses" +msgstr "" + +#: includes/admin/class-mp-admin.php:209 +#: includes/admin/class-mp-exporter-orders.php:150 +#: includes/admin/class-mp-exporter-orders.php:178 +msgid "Export Orders" +msgstr "" + +#: includes/admin/class-mp-admin.php:228 +msgid "Show all dates" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:947 +msgid "Change Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:287 +msgid "Order Notes" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:478 +msgid "Other" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:205 +msgid "Subtotal" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:84 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:87 +#: includes/admin/class-mp-products-admin.php:1737 +#: includes/common/class-mp-cart.php:1409 +#: includes/common/class-mp-product.php:559 +msgid "Quantity" +msgstr "" + +#: includes/common/helpers.php:93 +msgid "Item" +msgstr "" + +#: includes/common/class-mp-order.php:1050 +msgid "Current Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:297 +msgid "Order Actions" +msgstr "" + +#: includes/common/class-mp-product.php:1084 +msgid "More Info »" +msgstr "" + +#: includes/common/class-mp-product.php:2313 +msgid "Low Product Inventory Notification" +msgstr "" + +#: includes/common/class-mp-order.php:338 includes/common/data.php:154 +msgid "New Order Notification: ORDERID" +msgstr "" + +#: includes/common/helpers.php:259 +msgid "Your payment for this order is complete." +msgstr "" + +#: includes/common/helpers.php:261 +msgid "Your payment for this order is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/helpers.php:256 +msgid "Payment Total:" +msgstr "" + +#: includes/common/helpers.php:253 +msgid "Transaction ID:" +msgstr "" + +#: includes/common/helpers.php:249 +msgid "Payment Type:" +msgstr "" + +#: includes/common/helpers.php:246 +msgid "Payment Method:" +msgstr "" + +#: includes/common/helpers.php:242 +msgid "Order Notes:" +msgstr "" + +#: includes/common/helpers.php:237 +msgid "Special Instructions:" +msgstr "" + +#: includes/common/helpers.php:232 +msgid "Tracking Number:" +msgstr "" + +#: includes/common/helpers.php:223 includes/common/helpers.php:226 +#: includes/common/helpers.php:228 +#: includes/common/shipping-modules/class-mp-shipping-api.php:406 +#: includes/common/shipping-modules/class-mp-shipping-api.php:428 +msgid "Shipping Method:" +msgstr "" + +#: includes/common/helpers.php:168 +msgid "No shipping required for this order." +msgstr "" + +#: includes/common/helpers.php:155 +msgid "Order Total:" +msgstr "" + +#: includes/common/class-mp-order.php:1025 +msgid "Taxes:" +msgstr "" + +#: includes/common/class-mp-order.php:1032 includes/common/helpers.php:144 +msgid "Shipping:" +msgstr "" + +#: includes/public/class-mp-checkout.php:367 +msgid "Street address, P.O. box, company name, c/o" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:314 +msgid "Shipping Info" +msgstr "" + +#: includes/public/class-mp-public.php:740 +msgid "Whoops, there was a problem loading up this file for your download. Please contact us for help." +msgstr "" + +#: includes/public/class-mp-public.php:683 +msgid "Sorry, our records show you've downloaded this file %d out of %d times allowed. Please contact us if you still need help." +msgstr "" + +#: includes/public/class-mp-public.php:634 +msgid "Sorry, your order has been marked as unpaid." +msgstr "" + +#: includes/public/class-mp-public.php:629 +msgid "Sorry, the link is invalid for this download." +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:15 +#: includes/admin/class-mp-products-admin.php:1172 +msgid "Cheatin’ uh?" +msgstr "" + +#: includes/public/class-mp-public.php:407 +#: includes/public/class-mp-short-codes.php:128 +msgid "Please enter a valid email address." +msgstr "" + +#: includes/admin/class-mp-ajax.php:191 +#: includes/admin/class-mp-products-admin.php:1821 +#: includes/admin/class-mp-products-admin.php:2010 +#: includes/admin/class-mp-products-admin.php:2267 +msgid "File URL" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1842 +msgid "External Link" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2177 +msgid "Add Variation" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:126 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:289 +msgid "Inventory" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:438 +#: includes/admin/class-mp-products-admin.php:578 +#: includes/admin/class-mp-products-admin.php:1552 +#: includes/admin/class-mp-products-admin.php:2053 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:134 +msgid "Sale Price" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "Variation Name" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1931 +msgid "Product Details" +msgstr "" + +#: includes/admin/class-mp-product-attributes-list-table.php:33 +msgid "Delete" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1057 +msgid "Trashed" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:231 +#: includes/admin/class-mp-orders-admin.php:1015 +#: includes/common/class-mp-order.php:1052 includes/common/helpers.php:97 +msgid "Total" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1196 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:210 +#: includes/admin/class-mp-orders-admin.php:1014 +msgid "Discount" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:221 +#: includes/admin/class-mp-orders-admin.php:1013 +#: includes/common/payment-gateways/_ideal.php:148 +#: includes/common/payment-gateways/_payway.php:134 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:108 +msgid "Tax" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:216 +#: includes/admin/class-mp-orders-admin.php:1012 +#: includes/admin/class-mp-products-admin.php:1958 +#: includes/admin/class-mp-products-admin.php:2198 +#: includes/admin/class-mp-store-settings-admin.php:114 +#: includes/admin/class-mp-store-settings-admin.php:230 +#: includes/common/class-mp-cart.php:717 includes/common/helpers.php:168 +#: includes/common/payment-gateways/_ideal.php:137 +#: includes/common/payment-gateways/_payway.php:116 +#: includes/public/class-mp-checkout.php:1304 +msgid "Shipping" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1011 +msgid "Items" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1010 +msgid "From" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:154 +#: includes/admin/class-mp-orders-admin.php:1009 +#: includes/common/class-mp-gdpr.php:370 +msgid "Order Date" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1008 +#: includes/common/class-mp-gdpr.php:366 +#: includes/common/template-functions.php:2134 +msgid "Order ID" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:22 +#: includes/admin/class-mp-orders-admin.php:1007 +msgid "Status" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:1155 +msgid "N/A" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:243 +#: includes/admin/class-mp-products-admin.php:464 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:142 +msgid "Sales" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:463 +msgid "Stock" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:85 +#: includes/admin/class-mp-ajax.php:176 includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:434 +#: includes/admin/class-mp-products-admin.php:462 +#: includes/admin/class-mp-products-admin.php:576 +#: includes/admin/class-mp-products-admin.php:1519 +#: includes/admin/class-mp-products-admin.php:1569 +#: includes/admin/class-mp-products-admin.php:1950 +#: includes/admin/class-mp-products-admin.php:2059 +#: includes/admin/class-mp-products-admin.php:2190 +#: includes/admin/class-mp-products-admin.php:2330 +#: includes/common/class-mp-cart.php:1415 includes/common/helpers.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:130 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:276 +msgid "Price" +msgstr "" + +#: includes/admin/class-mp-ajax.php:173 +#: includes/admin/class-mp-products-admin.php:461 +#: includes/admin/class-mp-products-admin.php:1972 +#: includes/admin/class-mp-products-admin.php:2224 +msgid "SKU" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:459 +#: includes/admin/class-mp-products-admin.php:1793 +#: includes/admin/class-mp-products-admin.php:1805 +#: includes/admin/class-mp-products-admin.php:2163 +msgid "Variations" +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:83 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:86 +#: includes/admin/class-mp-dashboard-widgets.php:134 +#: includes/admin/class-mp-products-admin.php:458 +#: includes/admin/class-mp-products-admin.php:837 +#: includes/admin/class-mp-shortcode-builder.php:689 +#: includes/admin/class-mp-shortcode-builder.php:856 +#: includes/admin/class-mp-shortcode-builder.php:1300 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:512 +#: includes/admin/widgets/ms-global-product-list.php:115 +#: includes/admin/widgets/product-list.php:211 +msgid "Product Name" +msgstr "" + +#: includes/common/template-functions.php:2575 +msgid "Categorized in " +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:305 +#: includes/common/payment-gateways/free_orders.php:176 +msgid "Payment Information" +msgstr "" + +#: includes/admin/class-mp-exporter-orders.php:167 +#: includes/admin/class-mp-orders-admin.php:432 +#: includes/admin/class-mp-pages-admin.php:62 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:227 +#: includes/common/class-mp-gdpr.php:374 +#: includes/common/template-functions.php:175 +#: includes/common/template-functions.php:926 +msgid "Order Status" +msgstr "" + +#. translators: %s: orders closed +#: marketpress.php:327 +msgid "Closed (%s)" +msgid_plural "Closed (%s)" +msgstr[0] "" + +#: includes/admin/class-mp-admin.php:249 +#: includes/admin/class-mp-orders-admin.php:375 +#: includes/admin/class-mp-orders-admin.php:951 +#: includes/admin/class-mp-orders-admin.php:1053 +#: includes/admin/class-mp-orders-admin.php:1065 +#: includes/common/class-mp-gdpr.php:330 +#: includes/common/class-mp-order.php:1019 marketpress.php:325 +msgid "Closed" +msgstr "" + +#. translators: %s: shipped orders +#: marketpress.php:320 +msgid "Shipped (%s)" +msgid_plural "Shipped (%s)" +msgstr[0] "" + +#: includes/admin/class-mp-admin.php:248 +#: includes/admin/class-mp-orders-admin.php:376 +#: includes/admin/class-mp-orders-admin.php:950 +#: includes/admin/class-mp-orders-admin.php:1049 +#: includes/admin/class-mp-orders-admin.php:1064 +#: includes/common/class-mp-gdpr.php:329 +#: includes/common/class-mp-order.php:1002 marketpress.php:318 +msgid "Shipped" +msgstr "" + +#. translators: %s: paid orders +#: marketpress.php:313 +msgid "Paid (%s)" +msgid_plural "Paid (%s)" +msgstr[0] "" + +#: includes/admin/class-mp-admin.php:247 +#: includes/admin/class-mp-orders-admin.php:377 +#: includes/admin/class-mp-orders-admin.php:949 +#: includes/admin/class-mp-orders-admin.php:1045 +#: includes/admin/class-mp-orders-admin.php:1063 +#: includes/common/class-mp-gdpr.php:328 +#: includes/common/payment-gateways/2checkout.php:294 +#: includes/common/payment-gateways/_cubepoints.php:130 +#: includes/common/payment-gateways/authorizenet-aim.php:193 +#: includes/common/payment-gateways/free_orders.php:91 +#: includes/common/payment-gateways/mijireh.php:248 +#: includes/common/payment-gateways/paymill.php:273 +#: includes/common/payment-gateways/paypal-express.php:933 +#: includes/common/payment-gateways/paypal-express.php:967 +#: includes/common/payment-gateways/pin.php:258 +#: includes/common/payment-gateways/simplify.php:181 +#: includes/common/payment-gateways/stripe.php:368 +#: includes/common/payment-gateways/wepay.php:269 marketpress.php:311 +msgid "Paid" +msgstr "" + +#. translators: %s: orders received +#: marketpress.php:306 +msgid "Received (%s)" +msgid_plural "Received (%s)" +msgstr[0] "" + +#: includes/admin/class-mp-admin.php:246 +#: includes/admin/class-mp-orders-admin.php:378 +#: includes/admin/class-mp-orders-admin.php:1041 +#: includes/admin/class-mp-orders-admin.php:1062 +#: includes/common/class-mp-gdpr.php:327 includes/common/class-mp-order.php:995 +#: includes/common/payment-gateways/payfast.php:244 marketpress.php:304 +msgid "Received" +msgstr "" + +#: marketpress.php:268 +msgid "Search Orders" +msgstr "" + +#: marketpress.php:267 +msgid "View Order" +msgstr "" + +#: marketpress.php:262 +msgid "Order" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:301 +#: includes/admin/class-mp-orders-admin.php:989 marketpress.php:261 +msgid "Orders" +msgstr "" + +#: marketpress.php:228 +msgid "No Products found in Trash" +msgstr "" + +#: marketpress.php:227 +msgid "No Products Found" +msgstr "" + +#: marketpress.php:226 +msgid "Search Products" +msgstr "" + +#: marketpress.php:225 marketpress.php:229 +msgid "View Product" +msgstr "" + +#: marketpress.php:224 +msgid "New Product" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1022 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:258 +#: marketpress.php:223 +msgid "Edit" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1019 +msgid "Create New" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:687 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:698 +#: marketpress.php:217 +msgid "Product" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:307 +#: includes/common/template-functions.php:173 +#: includes/common/template-functions.php:179 +#: includes/common/template-functions.php:902 +#: includes/multisite/template-functions.php:82 marketpress.php:216 +#: marketpress.php:219 +msgid "Products" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:118 +#: includes/admin/widgets/product-tag-cloud.php:46 +#: includes/multisite/class-mp-admin-multisite.php:548 +msgid "Product Tags" +msgstr "" + +#: includes/common/template-functions.php:2906 +#: includes/multisite/template-functions.php:449 +msgid "Product Category" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:117 +#: includes/admin/widgets/categories.php:8 +#: includes/admin/widgets/categories.php:18 +#: includes/multisite/class-mp-admin-multisite.php:539 +msgid "Product Categories" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:332 +#: includes/common/template-functions.php:872 marketpress.php:218 +msgid "Store" +msgstr "" + +#: includes/admin/class-mp-pages-admin.php:60 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:209 +#: includes/admin/widgets/cart.php:8 includes/admin/widgets/cart.php:56 +#: includes/common/template-functions.php:174 +#: includes/common/template-functions.php:811 +msgid "Shopping Cart" +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:110 +#: includes/admin/class-mp-store-settings-admin.php:218 +msgid "Store Settings" +msgstr "" + +#: includes/addons/class-mp-addons-list-table.php:128 marketpress.php:607 +msgid "Settings" +msgstr "" + +#: includes/common/data.php:178 includes/common/data.php:190 +msgid "Your Order Has Been Shipped! (ORDERID)" +msgstr "" + +#: includes/common/data.php:159 includes/common/data.php:166 +#: includes/common/data.php:172 +msgid "Your Order Confirmation (ORDERID)" +msgstr "" + +#: includes/common/data.php:148 +msgid "

    Thank you for your order! We appreciate your business, and please come back often to check out our new products.

    " +msgstr "" + +#: includes/common/data.php:147 +msgid "

    You are almost done! Please do a final review of your order to make sure everything is correct then click the \"Confirm Payment\" button.

    " +msgstr "" + +#: includes/common/data.php:145 +msgid "

    Please enter your shipping information in the form below to proceed with your order.

    " +msgstr "" + +#: includes/common/data.php:143 +msgid "

    If you have any questions about your order please do not hesitate to contact us.

    " +msgstr "" + +#: includes/common/data.php:106 +msgid "tag" +msgstr "" + +#: includes/common/data.php:105 +msgid "category" +msgstr "" + +#: includes/common/data.php:104 +msgid "order-status" +msgstr "" + +#: includes/common/data.php:103 +msgid "shopping-cart" +msgstr "" + +#: includes/common/data.php:102 +msgid "products" +msgstr "" + +#. Translators: change default slugs here +#: includes/common/data.php:101 +msgid "store" +msgstr "" \ No newline at end of file diff --git a/languages/mp-zh-tw.mo b/languages/mp-zh-tw.mo new file mode 100644 index 0000000000000000000000000000000000000000..0c80ef0fde4fe113cdd3ea23bbe349343e3a78b3 GIT binary patch literal 64552 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 x1{wv!^Z#s literal 0 HcmV?d00001 diff --git a/languages/mp-zh-tw.po b/languages/mp-zh-tw.po new file mode 100644 index 00000000..1bf46e8b --- /dev/null +++ b/languages/mp-zh-tw.po @@ -0,0 +1,8974 @@ +# Translation of MarketPress in Chinese (Taiwan) +# This file is distributed under the same license as the MarketPress package. +msgid "" +msgstr "" +"PO-Revision-Date: 2017-07-31 12:38:50+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: GlotPress/2.3.1\n" +"Language: zh_TW\n" +"Project-Id-Version: MarketPress\n" + +#: includes/public/class-mp-checkout.php:1285 +msgid "By clicking this checkbox you allow the website to process your personal data." +msgstr "" + +#: includes/common/class-mp-gdpr.php:382 +msgid "Order Info" +msgstr "" + +#: includes/common/class-mp-gdpr.php:268 +msgid "Shipping Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:267 +msgid "Shipping Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:266 +msgid "Shipping ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:265 +msgid "Shipping State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:264 +msgid "Shipping City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:263 +msgid "Shipping Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:262 +msgid "Shipping Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:261 +msgid "Shipping Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:260 +msgid "Shipping Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:259 +msgid "Shipping Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:258 +msgid "Shipping First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:254 +msgid "Billing Phone" +msgstr "" + +#: includes/common/class-mp-gdpr.php:253 +msgid "Billing Country" +msgstr "" + +#: includes/common/class-mp-gdpr.php:252 +msgid "Billing ZIP" +msgstr "" + +#: includes/common/class-mp-gdpr.php:251 +msgid "Billing State" +msgstr "" + +#: includes/common/class-mp-gdpr.php:250 +msgid "Billing City" +msgstr "" + +#: includes/common/class-mp-gdpr.php:249 +msgid "Billing Address 2" +msgstr "" + +#: includes/common/class-mp-gdpr.php:248 +msgid "Billing Address 1" +msgstr "" + +#: includes/common/class-mp-gdpr.php:247 +msgid "Billing Company Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:246 +msgid "Billing Email" +msgstr "" + +#: includes/common/class-mp-gdpr.php:245 +msgid "Billing Last Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:244 +msgid "Billing First Name" +msgstr "" + +#: includes/common/class-mp-gdpr.php:151 +msgid "Orders Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:139 +msgid "Customer Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:100 includes/common/class-mp-gdpr.php:116 +msgid "MarketPress User Data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:81 +msgid "" +"In addition to standard WordPress session cookies, this site might be setting an\n" +"\t\t additional cookie to remember your cart settings. This cookie will last for one year." +msgstr "" + +#: includes/common/class-mp-gdpr.php:80 +msgid "Cookies" +msgstr "" + +#: includes/common/class-mp-gdpr.php:77 +msgid "" +"The following information will be collected in order to process orders: your name,\n" +"\t\t username, email address, avatar and profile URLs, address and phone number. This data can be\n" +"\t\t exported and removed." +msgstr "" + +#: includes/common/class-mp-gdpr.php:76 +msgid "Additional data" +msgstr "" + +#: includes/common/class-mp-gdpr.php:71 +msgid "" +"This site might be using third party services and tools to process payments or/and\n" +"\t\t process shipping data when creating orders on the MarketPress store. These services include payment\n" +"\t\t gateways: 2Checkout, Authorize.net AIM, eWay shared payments, eWay Rapid 3.1 Payments, Mijireh,\n" +"\t\t Mollie, Paymill, PayPal, PIN, Simplify Commerce by MasterCard, Stripe and WePay; shipping gateways:\n" +"\t\t Fedex, UPS, USPS." +msgstr "" + +#: includes/common/class-mp-gdpr.php:70 +msgid "Third parties" +msgstr "" + +#: includes/admin/class-mp-admin.php:403 +msgid "Start creating store pages and products for your online shop here." +msgstr "" + +#: includes/admin/class-mp-admin.php:402 +msgid "Create Online Shop" +msgstr "" + +#: includes/admin/class-mp-admin.php:394 +msgid "Run Setup Wizard" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:234 +msgid "If having problems during invoice generation, add define( 'DOMPDF_ENABLE_HTML5PARSER', true ); to the wp-config.php file." +msgstr "" + +#: includes/public/class-mp-checkout.php:723 +msgid "Invalid Email" +msgstr "" + +#: includes/public/class-mp-checkout.php:721 +#: includes/public/class-mp-checkout.php:729 +msgid "This field is required" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:804 +msgid "This option changes the built-in css styles for store pages. For a custom css style, save your css file with the /* MarketPress Style: Your CSS Theme Name Here */ header line in the \"%s\" folder and it will appear in this list so you may select it. You should select \"None\" if you don't wish to use custom CSS styles or if you are using default theme templates or custom theme templates and css to make your own completely unique store design. For more information on custom theme templates click here »." +msgstr "" + +#: includes/public/class-mp-public.php:421 +#: includes/public/class-mp-short-codes.php:142 +msgid "Please enter a value greater than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:420 +#: includes/public/class-mp-short-codes.php:141 +msgid "Please enter a value less than or equal to {0}." +msgstr "" + +#: includes/public/class-mp-public.php:419 +#: includes/public/class-mp-short-codes.php:140 +msgid "Please enter a value between {0} and {1}." +msgstr "" + +#: includes/public/class-mp-public.php:418 +#: includes/public/class-mp-short-codes.php:139 +msgid "Please enter a value between {0} and {1} characters long." +msgstr "" + +#: includes/public/class-mp-public.php:417 +#: includes/public/class-mp-short-codes.php:138 +msgid "Please enter at least {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:416 +#: includes/public/class-mp-short-codes.php:137 +msgid "Please enter no more than {0} characters." +msgstr "" + +#: includes/public/class-mp-public.php:415 +#: includes/public/class-mp-short-codes.php:136 +msgid "Please enter a value with a valid extension." +msgstr "" + +#: includes/public/class-mp-public.php:414 +#: includes/public/class-mp-short-codes.php:135 +msgid "Please enter the same value again." +msgstr "" + +#: includes/public/class-mp-public.php:413 +#: includes/public/class-mp-short-codes.php:134 +msgid "Please enter a valid credit card number." +msgstr "" + +#: includes/public/class-mp-public.php:412 +#: includes/public/class-mp-short-codes.php:133 +msgid "Please enter only digits." +msgstr "" + +#: includes/public/class-mp-public.php:411 +#: includes/public/class-mp-short-codes.php:132 +msgid "Please enter a valid number." +msgstr "" + +#: includes/public/class-mp-public.php:410 +#: includes/public/class-mp-short-codes.php:131 +msgid "Please enter a valid date (ISO)." +msgstr "" + +#: includes/public/class-mp-public.php:409 +#: includes/public/class-mp-short-codes.php:130 +msgid "Please enter a valid date." +msgstr "" + +#: includes/public/class-mp-public.php:408 +#: includes/public/class-mp-short-codes.php:129 +msgid "Please enter a valid URL." +msgstr "" + +#: includes/public/class-mp-public.php:406 +#: includes/public/class-mp-short-codes.php:127 +msgid "Please fix this field." +msgstr "" + +#: includes/public/class-mp-checkout.php:1287 +#: includes/public/class-mp-public.php:405 +#: includes/public/class-mp-short-codes.php:126 +msgid "This field is required." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:810 +msgid "None - Without Special CSS-styles" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:809 +msgid "Default - Using Default CSS-styles" +msgstr "" + +#: marketpress.php:739 +msgid "Enable multiple downloads per product" +msgstr "啟用每個產品的多個下載" + +#: marketpress.php:738 +msgid "Multiple Downloads" +msgstr "多個下載" + +#: includes/public/class-mp-checkout.php:715 +msgid "Invalid Zip Code" +msgstr "無效的郵遞區號" + +#: includes/common/template-functions.php:2126 +msgid "Guest Email" +msgstr "客人電郵" + +#: includes/common/payment-gateways/simplify.php:195 +msgid "There was a problem finalizing your purchase. Please re-enter your credit card information and try again" +msgstr "" + +#: includes/common/class-mp-cart.php:565 includes/common/class-mp-order.php:600 +#: includes/common/helpers.php:111 +msgid "Download %1$s" +msgstr "下載 %1$s" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:331 +msgid "Export products to file" +msgstr "黨出商品到檔案" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:328 +msgid "The import process uses the WordPress importer plugin." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:326 +msgid "Import / Export Products" +msgstr "導入 / 匯出商品" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:325 +msgid "Export settings to file" +msgstr "導出設置到檔案" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:324 +msgid "Import configuration" +msgstr "導入配置" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:320 +msgid "Use the text below to export to a new installation. Or paste in the new configuration to import." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:318 +msgid "Import / Export Settings" +msgstr "導入 / 導出設置" + +#. translators: URL to wp-admin/import.php +#: includes/admin/store-settings/class-mp-store-settings-import.php:266 +msgid "This importer is not installed. Please install importers from the main site." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:261 +msgid "Install Now" +msgstr "立即安裝" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:260 +msgid "Install %s" +msgstr "安裝 %s" + +#: includes/admin/store-settings/class-mp-store-settings-import.php:240 +msgid "Run Importer" +msgstr "執行導入" + +#. translators: %s: Importer name +#: includes/admin/store-settings/class-mp-store-settings-import.php:239 +msgid "Run %s" +msgstr "運行 %s" + +#: includes/admin/class-mp-store-settings-admin.php:258 +msgid "Import/Export" +msgstr "導入 / 導出" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1199 +msgid "Requires Login" +msgstr "需要登入" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:737 +msgid "Optionally limit the user to some categories" +msgstr "還可以限制使用者對某些類別" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:671 +msgid "Should this coupon only be available to logged in users?" +msgstr "此券只應可用於登錄的使用者嗎?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:670 +msgid "Require Login" +msgstr "需要先登入" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:655 +msgid "Mimimum number of products" +msgstr "最小數量的商品" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:653 +msgid "Enter the minimum number of products in the cart that this coupon can be used." +msgstr "輸入購物車中可以使用該優惠券的最少產品數量。" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:648 +msgid "Can this coupon be limited to a number of products in the cart?" +msgstr "這個優惠券被限制在購物車中的一些產品嗎?" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:334 +msgid "Add all values" +msgstr "添加全部值" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:265 +msgid "Set as default variation." +msgstr "設置為預設的變型。" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:154 +msgid "Set Default" +msgstr "設為預設" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:150 +msgid "More Info" +msgstr "更多訊息" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:40 +msgid "MarketPress - Quick Setup" +msgstr "MarketPress - 快速設置" + +#: includes/public/class-mp-checkout.php:1399 +msgid "Proceed to checkout and create an account at the end." +msgstr "進行結帳,並在最後結束時創建一個帳戶。" + +#: includes/public/class-mp-checkout.php:1241 +#: includes/public/class-mp-checkout.php:1245 +msgid "Register account" +msgstr "註冊帳號" + +#: includes/public/class-mp-checkout.php:1233 +msgid "Register as customer?" +msgstr "註冊為客戶?" + +#: includes/public/class-mp-checkout.php:765 +msgid "

    Oops!

    Looks like you haven't added anything your cart. Let's go shopping!

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:763 +msgid "

    Oops!

    The cart is disabled.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing Information" +msgstr "帳單資訊" + +#: includes/multisite/class-mp-admin-multisite.php:214 +msgid "Global Currency" +msgstr "全局貨幣" + +#: includes/multisite/class-mp-admin-multisite.php:198 +msgid "Global Store Currency" +msgstr "全局商店貨幣" + +#: includes/common/shipping-modules/mp-usps.php:507 +msgid "There are no shipping services available for this type of package in your location." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:168 +msgid "Using this USPS Shipping calculator requires requesting an Ecommerce API Username and Password. Get your free set of credentials here ». The password is no longer used for the API, just the username which you should enter below. The USPS test site has not yet been updated and currently doesn't work - you should just request activating your credentials with USPS and go live." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:339 +msgid "ZIP Code" +msgstr "郵遞區號" + +#: includes/common/payment-gateways/stripe.php:334 +msgid "Last name" +msgstr "姓氏" + +#: includes/common/payment-gateways/stripe.php:333 +msgid "First name" +msgstr "名字" + +#: includes/common/payment-gateways/manual-payments.php:150 +msgid "These are the manual payment instructions to display on the order confirmation screen. TOTAL will be replaced with the order total and ORDERID will be replaced with Order ID." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:240 +msgid "You must login to Authorize.net merchant dashboard to obtain the API login ID and API transaction key. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:327 +msgid "
    1. Set the \"Return Method\" within Site Management to Header Redirect and set the \"Return URL\" to %s
    2. Set your notifications url to %s
    " +msgstr "" + +#: includes/common/data.php:191 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Also, digital downloads included in your order are now ready to be downloaded. Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:185 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order is now available to download! Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:184 +msgid "Your Order Is Ready To Be Downloaded! (ORDERID)" +msgstr "" + +#: includes/common/data.php:179 +msgid "" +"Dear CUSTOMERNAME,\n" +"Your order has been shipped! Depending on the shipping method and your location it should be arriving shortly. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:173 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received, your digital goods are ready to be downloaded and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information:\n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:167 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +"Your order has been received and your digital goods are ready to be downloaded. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/data.php:160 +msgid "" +"Thank you for your order CUSTOMERNAME!\n" +"\n" +" Your order has been received, and any items to be shipped will be processed as soon as possible. Please refer to your Order ID (ORDERID) whenever contacting us.\n" +"\n" +"Here is a confirmation of your order details:\n" +"\n" +" Order Information:\n" +" ORDERINFO\n" +"\n" +" Shipping Information: \n" +" SHIPPINGINFO\n" +"\n" +" Payment Information:\n" +" PAYMENTINFO\n" +"\n" +" ORDERNOTES\n" +"\n" +"\n" +"You can track the latest status of your order here: TRACKINGURL\n" +"\n" +"Thanks again!" +msgstr "" + +#: includes/common/class-mp-product.php:638 +msgid "You can not add more items to cart." +msgstr "您不能添加更多項目到購物車。" + +#: includes/common/class-mp-product.php:635 +msgid "You can only add {0} to cart." +msgstr "你只能添加 {0} 到購物車。" + +#: includes/common/class-mp-product.php:625 +msgid "This product has an order limit of %d." +msgstr "此商品有一個訂單限制為 %d." + +#: includes/common/class-mp-order.php:1454 +msgid "Shipped: tracking code: %s" +msgstr "" + +#: includes/common/class-mp-order.php:1000 +#: includes/common/class-mp-order.php:1012 +msgid "Finished" +msgstr "已完成" + +#: includes/common/class-mp-order.php:858 +msgid "Contact Details" +msgstr "聯繫方式" + +#: includes/common/class-mp-order.php:339 includes/common/data.php:155 +msgid "" +"A new order (ORDERID) was created in your store:\n" +"\n" +" ORDERINFOSKU\n" +"\n" +" SHIPPINGINFO\n" +"\n" +" PAYMENTINFO\n" +"\n" +msgstr "\n" + +#: includes/common/class-mp-cart.php:1858 +msgid "Add again" +msgstr "再添加" + +#: includes/common/class-mp-cart.php:1852 +msgid "was removed from Shopping Cart" +msgstr "已從購物車中刪除" + +#: includes/common/class-mp-cart.php:1242 +#: includes/public/class-mp-short-codes.php:160 +msgid "Cart update notice: this item has a limit per order or you have reached the stock limit." +msgstr "購物車更新通知:此商品每個訂單有限制或您已達到庫存限制。" + +#: includes/admin/widgets/product-list.php:235 +msgid "Show Only Featured Products" +msgstr "僅顯示特色商品" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:533 +msgid "If enabled, users won't be able to filter products per category and/or to order by release date/name/price." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:531 +msgid "Hide Products Filter?" +msgstr "隱藏商品篩選器?" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:353 +msgid "Notification to registration email instead of billing email?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:322 +msgid "Order Shipped - Mixed orders (with both digital and physical products)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:289 +msgid "Order Shipped - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:224 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:194 +msgid "New Order - Mixed" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:161 +msgid "New Order - Digital downloads only orders" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:115 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:243 +msgid "Mixed orders" +msgstr "混合訂單" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:110 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:238 +msgid "Digital downloads orders" +msgstr "數位下載訂單" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:105 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:233 +msgid "Physical orders" +msgstr "實體訂單" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:96 +msgid "These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed.
    For orders placed with manual payment, emails set here will be overriden by the one configured in manual payments settings, under payments settings page" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:89 +msgid "Customer Notification Settings" +msgstr "客戶通知設置" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:47 +msgid "Admin Notification Settings" +msgstr "管理員通知設置" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:566 +msgid "Only contact details" +msgstr "僅聯繫細節" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:565 +msgid "Full billing info" +msgstr "完整帳單資訊" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:561 +msgid "Details Collection" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:548 +msgid "Digital Settings" +msgstr "數位設置" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:515 +msgid "Apply Tax to Digital Products?" +msgstr "應用稅金到數位商品?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:236 +msgid "product (default)" +msgstr "商品 (預設)" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:231 +msgid "If you are experiencing conflicts with other e-commerce plugins change this setting. This will change the internal post type of all your products. Please note that changing this option may break 3rd party themes or plugins." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1203 +msgid "Hide details" +msgstr "隱藏細節" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1202 +msgid "Show all changes" +msgstr "顯示所有變更" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1184 +msgid "Version %s" +msgstr "版本 %s" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1161 +msgid "Current" +msgstr "目前的" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1131 +msgid "%s changelog" +msgstr "%s 更新日誌" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:952 +msgid "We did not find any data for this plugin or theme..." +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:285 +msgid "Activate WPMU DEV Dashboard" +msgstr "啟用 WPMU DEV 管控平台" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:279 +msgid "Just one more step - activate the WPMU DEV Dashboard plugin and you're all done!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:277 +msgid "Important updates are available for your WPMU DEV plugins/themes. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:273 +msgid "Just one more step to enable updates and support for %s!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:271 +msgid "Important updates are available for %s. Activate the WPMU DEV Dashboard to update now!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:264 +msgid "activate" +msgstr "啟動" + +#: includes/admin/class-mp-admin.php:398 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:248 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:289 +msgid "Dismiss" +msgstr "忽略" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:247 +#: includes/admin/dash-notice/wpmudev-dash-notification.php:288 +msgid "Saving..." +msgstr "儲存中..." + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:244 +msgid "Install Plugin" +msgstr "安裝插件" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:238 +msgid "Almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:236 +msgid "Important updates are available for your WPMU DEV plugins/themes. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:232 +msgid "%s is almost ready - install the free WPMU DEV Dashboard plugin for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:230 +msgid "Important updates are available for %s. Install the free WPMU DEV Dashboard plugin now for updates and support!" +msgstr "" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:223 +msgid "install" +msgstr "安装" + +#: includes/admin/class-mp-shortcode-builder.php:1428 +msgid "Sets the number of Tags to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1289 +msgid "How many products to display in the product list if \"paginate\" is set to false." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:739 +#: includes/admin/class-mp-shortcode-builder.php:906 +#: includes/admin/class-mp-shortcode-builder.php:1350 +msgid "Grid" +msgstr "網格" + +#: includes/admin/class-mp-shortcode-builder.php:735 +#: includes/admin/class-mp-shortcode-builder.php:902 +#: includes/admin/class-mp-shortcode-builder.php:1346 +msgid "Products will be displayed as list or grid." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:206 +msgid "Display a cloud or list of your global product tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:205 +msgid "Display a list of your global categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:204 +msgid "Display a list or grid of your global products." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:181 +msgid "Display a list of featured products." +msgstr "顯示特色產品的清單。" + +#: includes/admin/class-mp-products-admin.php:1451 +msgid "Is Featured?" +msgstr "是特色?" + +#: includes/admin/class-mp-products-admin.php:1444 +msgid "Featured Product" +msgstr "特色商品" + +#: includes/admin/class-mp-products-admin.php:581 +#: includes/admin/class-mp-products-admin.php:1580 +msgid "% discount" +msgstr "% 折扣" + +#: includes/admin/class-mp-products-admin.php:579 +msgid "OR" +msgstr "或" + +#: includes/admin/class-mp-products-admin.php:460 +#: includes/admin/class-mp-products-admin.php:586 +#: includes/admin/widgets/product-list.php:217 +msgid "Featured" +msgstr "特色" + +#: includes/admin/class-mp-orders-admin.php:536 +#: includes/admin/class-mp-orders-admin.php:538 +msgid "Tracking Link" +msgstr "追蹤連結" + +#: includes/admin/class-mp-orders-admin.php:508 +msgid "Shipping Tax" +msgstr "運送稅率" + +#: includes/admin/class-mp-orders-admin.php:356 +msgid "Shipping Total" +msgstr "運費合計" + +#: includes/admin/class-mp-orders-admin.php:352 +msgid "Taxes Total" +msgstr "稅額合計" + +#: includes/admin/class-mp-orders-admin.php:349 +msgid "Products Total" +msgstr "商品總數" + +#: includes/admin/class-mp-ajax.php:366 +msgid "Oops! You entered an invalid username/email and or password." +msgstr "哎呀!您輸入了無效的用戶名 / 電子郵件 / 或密碼。" + +#: includes/admin/class-mp-ajax.php:254 +msgid "Percentage Discount" +msgstr "百分比折扣" + +#: includes/admin/class-mp-ajax.php:234 +msgid "Limit the Amount of Items per Order" +msgstr "限制每個訂單項目的數量" + +#: includes/admin/class-mp-ajax.php:214 +msgid "Unused Attributes" +msgstr "未使用的屬性" + +#: includes/admin/class-mp-admin.php:82 +msgid "Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-admin.php:79 +msgid "MarketPress setup is not complete! Once you've completed this quick setup wizard you'll have a fully working online store - exciting! " +msgstr "" + +#: marketpress.php:263 +msgctxt "mp_order" +msgid "Add New" +msgstr "新增" + +#: marketpress.php:184 +msgctxt "product_tag" +msgid "Product Tag" +msgstr "商品標籤" + +#: marketpress.php:183 +msgctxt "product_tag" +msgid "Product Tags" +msgstr "商品標籤" + +#: marketpress.php:150 +msgctxt "product_category" +msgid "Product Category" +msgstr "商品分類" + +#: marketpress.php:149 +msgctxt "product_category" +msgid "Product Categories" +msgstr "商品類別" + +#. Author URI of the plugin/theme +msgid "http://premium.wpmudev.org" +msgstr "" + +#: marketpress.php:729 +msgid "Invoice PDF" +msgstr "發票 PDF" + +#: marketpress.php:712 +msgid "Grant access to themes and gateways depending on the user's Pro Site level" +msgstr "" + +#: marketpress.php:711 +msgid "Pro Sites" +msgstr "專業網站" + +#: marketpress.php:703 +msgid "Offer and accept coupon codes" +msgstr "提供和接受優惠券代碼" + +#. translators: %s: plugin title +#: marketpress.php:687 +msgid "Install %s Pages" +msgstr "安裝 %s 頁面" + +#. translators: %s: plugin title +#: marketpress.php:682 +msgid "Welcome to %s – Install pages required by the plugin automatically." +msgstr "歡迎來到 %s – 自動安裝插件所需的頁面。" + +#: marketpress.php:668 +msgid "Your pages were created successfully." +msgstr "你的頁面已經創建成功。" + +#: marketpress.php:436 +msgid "Add a Product" +msgstr "新增商品" + +#: marketpress.php:271 +msgid "Parent Order" +msgstr "上層訂單" + +#: marketpress.php:270 +msgid "No orders found in trash" +msgstr "在垃圾桶中找不到訂單" + +#: marketpress.php:269 +msgid "No orders found" +msgstr "找不到訂單" + +#: marketpress.php:265 +msgid "Edit Order" +msgstr "編輯訂單" + +#: marketpress.php:264 +msgid "Add New Order" +msgstr "新增訂單" + +#: marketpress.php:220 marketpress.php:221 +msgid "Add New Product" +msgstr "新增商品" + +#: marketpress.php:197 +msgid "No product tags found" +msgstr "找不到商品標籤" + +#: marketpress.php:196 +msgid "Choose from the most used product tags" +msgstr "由最常用的商品標籤選取" + +#: marketpress.php:195 +msgid "Add or remove product tags" +msgstr "新增或移除商品標籤" + +#: marketpress.php:194 +msgid "Separate product tags with commas" +msgstr "以逗號分隔商品標籤" + +#: marketpress.php:193 +msgid "Search Product Tags" +msgstr "搜尋商品標籤" + +#: marketpress.php:192 +msgid "Parent Product Tag:" +msgstr "上層商品標籤:" + +#: marketpress.php:191 +msgid "Parent Product Tag" +msgstr "上層商品標籤" + +#: marketpress.php:190 +msgid "New Product Tag Name" +msgstr "新商品標簽名稱" + +#: marketpress.php:189 +msgid "Add New Product Tag" +msgstr "新增商品標籤" + +#: marketpress.php:188 +msgid "Update Product Tag" +msgstr "更新商品標籤" + +#: marketpress.php:187 +msgid "View Product Tag" +msgstr "瀏覽產品標籤" + +#: marketpress.php:186 +msgid "Edit Product Tag" +msgstr "編輯商品標籤" + +#: marketpress.php:185 +msgid "All Product Tags" +msgstr "全部商品標籤" + +#: marketpress.php:163 +msgid "No product categories found" +msgstr "沒有找到商品分類" + +#: marketpress.php:162 +msgid "Choose from the most used product categories" +msgstr "從最常用的分類中選擇" + +#: marketpress.php:161 +msgid "Add or remove product categories" +msgstr "添加或移除商品類別" + +#: marketpress.php:160 +msgid "Separate product categories with commas" +msgstr "" + +#: marketpress.php:159 +msgid "Search Product Categories" +msgstr "搜尋商品分類" + +#: marketpress.php:158 +msgid "Parent Product Category:" +msgstr "上層商品分類:" + +#: marketpress.php:157 +msgid "Parent Product Category" +msgstr "上層商品分類" + +#: marketpress.php:156 +msgid "New Product Category Name" +msgstr "新商品分類名稱" + +#: marketpress.php:155 +msgid "Add New Product Category" +msgstr "新增商品分類" + +#: marketpress.php:154 +msgid "Update Product Category" +msgstr "更新商品分類" + +#: marketpress.php:153 +msgid "View Product Category" +msgstr "瀏覽商品分類" + +#: marketpress.php:152 +msgid "Edit Product Category" +msgstr "編輯商品分類" + +#: marketpress.php:151 +msgid "All Product Categories" +msgstr "全部商品分類" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Please fix the %s1 and then try submitting the form again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:661 +msgid "Oops! The form contains %s1 which %s2 been highlighted below." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:660 +msgid "have" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:659 +msgid "has" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:651 +msgid "Value must be less than {0}" +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:650 +msgid "Please enter only letters and numbers" +msgstr "請僅輸入字母和數字" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:539 +msgid "Due to prolonged inactivity on this page, one or more settings were not saved. Please try again." +msgstr "" + +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:535 +msgid "Settings Saved" +msgstr "已儲存設定" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-user-select.php:22 +msgid "Select Some Users" +msgstr "選擇一些使用者" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-section.php:18 +msgid "Section Title" +msgstr "部件標題" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:425 +msgid "Are you sure you want to delete this?" +msgstr "你確定想要單除這個嗎?" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-repeater.php:30 +msgid "Add Row" +msgstr "添加行" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-post-select.php:24 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-taxonomy-select.php:22 +msgid "Select Posts" +msgstr "選擇帖子" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:210 +msgid "Add Images" +msgstr "添加圖片" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:129 +msgid "Select the image that you would like to use for this product." +msgstr "選擇您想要使用於這個商品的圖片。" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:93 +msgid "Select image(s) that you would like to use for this product." +msgstr "選擇您想要使用於這個商品的圖片。" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:79 +msgid "Select the image that you would like to use for this variation." +msgstr "選擇您想要使用於這種變型的圖片。" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:48 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:82 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-image.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:68 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-images.php:132 +msgid "Select Image" +msgstr "選擇圖片" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:31 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:160 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:168 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:19 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:115 +msgid "Select File" +msgstr "選擇文檔" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file-list.php:30 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-file.php:18 +msgid "Select the file that you would like to use." +msgstr "選擇您想要使用的文檔。" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:357 +msgid "Create Variations" +msgstr "創建變型" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:356 +msgid "Add Another Variant" +msgstr "添加另一個變型" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Insert a value and press ENTER" +msgstr "插入一個值然後按輸入鍵" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "(e.g. White, Grey, Red etc.)" +msgstr "(如:白色、 灰色、 紅色等)" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:339 +msgid "Variation Values" +msgstr "變型的值" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:333 +msgid "Or create new variation" +msgstr "或創建新的變型" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "(e.g. Color)" +msgstr "(如:顏色)" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:303 +msgid "You are about to delete selected variants.
    If you want to continue please confirm." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:302 +msgid "Confirmation" +msgstr "確認資訊" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:290 +msgid "Insert quantity available. Empty for unlimited." +msgstr "插入可供應數量。留空為無限。" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:281 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:294 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:307 +msgid "Cancel" +msgstr "取消" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:280 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:293 +msgid "Update" +msgstr "更新" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:277 +msgid "Insert the price i.e. 25 or 25.50" +msgstr "插入價格如: 25 或 25.50" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:115 +msgid "Img." +msgstr "圖片" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:85 +msgid "Add New Variation" +msgstr "添加新的變型" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:79 +msgid "Delete Variants" +msgstr "刪除變型" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:78 +msgid "Update Prices" +msgstr "更新價格" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:77 +msgid "Update Inventory" +msgstr "更新庫存" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:76 +msgid "Update Images" +msgstr "更新圖片" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:75 +msgid "Bulk Actions" +msgstr "批量操作" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:73 +msgid "Select bulk action" +msgstr "選擇批量操作" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:196 +msgid "Configure Store" +msgstr "配置商店" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:195 +msgid "Configure shipping rates, emails and your store's appearance. " +msgstr "配置運費、 電子郵件和您的商店的外觀。" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:190 +msgid "Add Product" +msgstr "新增商品" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:189 +msgid "Add your first product for sale and get familiar with adding products." +msgstr "添加您的第一個商品 來銷售和熟悉新增商品。" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:184 +msgid "Your store is almost ready for its first customers, but first it needs some products. Get started by adding products below, or jump straight into further configuring your store’s settings." +msgstr "你的店是差不多準備好接受第一個客戶了,但首先它需要透過以下來添加一些產品,或者直接進入配置您商店的設置。" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:183 +msgid "Woohoo! Your online store is up and running." +msgstr "歐Ya !您的線上商店已經啟動並運行囉。" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:144 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:160 +msgid "Finish Setup" +msgstr "完成安裝設定" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:124 +msgid "And what metric system do you want to use?" +msgstr "你想要使用什麼公制系統嗎?" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:113 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:142 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:159 +msgid "Back" +msgstr "返回" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:109 +msgid "Do you want to apply tax for your products? You can customize this for each product and variation." +msgstr "你想為你的產品課稅嗎? 你可以自訂這些為每一個商品和其變型。" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:105 +msgid "What currency do you want to sell with?" +msgstr "你想要以什麼幣別銷售?" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:93 +msgid "And, which countries do you want to sell to?" +msgstr "還有,你想賣到哪些國家?" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:89 +msgid "Where is your online store based?" +msgstr "您的線上商店位在哪裡?" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:80 +msgid "Payment Gateway" +msgstr "支付網關" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:79 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:123 +msgid "Metric System" +msgstr "公制系统" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:78 +msgid "Currency & Tax" +msgstr "貨幣 & 稅金" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:77 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:88 +msgid "Locations" +msgstr "位置" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:70 +msgid "Choose where you want to sell your stuff and what currency. Easy!" +msgstr "選擇你想賣什麼東西和什麼貨幣。簡單吧!" + +#: includes/public/class-mp-checkout.php:1400 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:58 +msgid "Continue" +msgstr "繼續" + +#: includes/admin/class-mp-admin.php:83 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:53 +msgid "Skip this step, I'll do this manually" +msgstr "跳過此步驟,我將手動處理" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:49 +msgid "Install store pages" +msgstr "安裝商店頁面" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:44 +msgid "Once you've completed this quick setup wizard you'll have a fully working online store - exciting! Start
    by creating the default store pages for the online store such as the cart, checkout and store pages." +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:42 +msgid "MarketPress adds a full online store to your website, with heaps of configuration options and addons
    to suit your needs. It's really easy to get going, and only takes a few minutes to setup!" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:41 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:69 +msgid "Welcome to MarketPress - Quick Setup" +msgstr "歡迎來到MarketPress - 快速安裝" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-advanced-select.php:23 +msgid "Select Some Options" +msgstr "選擇一些選項" + +#: includes/wpmudev-metaboxes/class-wpmudev-field.php:694 +msgid "You must the WPMUDEV_Field::display() method in your form field class" +msgstr "" + +#: includes/public/class-mp-short-codes.php:636 +msgid "Only %s left in stock..." +msgstr "僅 %s 在庫存中..." + +#: includes/public/class-mp-short-codes.php:633 +msgid "Unlimited stock" +msgstr "無限量庫存" + +#: includes/public/class-mp-short-codes.php:430 +msgid "product_id must be defined" +msgstr "商品編號必須被指定" + +#: includes/public/class-mp-checkout.php:1250 +msgid "An account with this username already exists" +msgstr "此用戶名稱已存在!" + +#: includes/public/class-mp-checkout.php:1394 +msgid "Continue as Guest" +msgstr "以訪客身份繼續" + +#: includes/public/class-mp-checkout.php:1393 +msgid "Proceed to checkout and you'll have an opportunity to create an account at the end." +msgstr "繼續結帳,您將有機會創建一個帳戶在最後。" + +#: includes/public/class-mp-checkout.php:1392 +#: includes/public/class-mp-checkout.php:1398 +msgid "First-time customer?" +msgstr "首次客戶?" + +#: includes/public/class-mp-checkout.php:1386 +msgid "Login" +msgstr "登入" + +#: includes/public/class-mp-checkout.php:1379 +msgid "E-Mail Address/Username" +msgstr "電子郵件地址 / 用戶名稱" + +#: includes/public/class-mp-checkout.php:1377 +msgid "Sign in to speed up the checkout process." +msgstr "登錄以加快結帳處理。" + +#: includes/public/class-mp-checkout.php:1376 +msgid "Have an account?" +msgstr "已有一個帳號?" + +#: includes/public/class-mp-checkout.php:1297 +msgid "Shipping address different than billing?" +msgstr "送貨地址與帳單不同?" + +#: includes/public/class-mp-checkout.php:1184 +msgid "There are no available gateways to process this payment." +msgstr "沒有可用的付款網關來處理這筆付款。" + +#: includes/public/class-mp-checkout.php:1160 +msgid "Payment" +msgstr "付款" + +#: includes/public/class-mp-checkout.php:1123 +msgid "Oops! An error occurred while processing your payment." +msgstr "哎呀!處理您的付款時發生了一個錯誤。" + +#: includes/public/class-mp-checkout.php:1051 +msgid "Next Step »" +msgstr "下一步 »" + +#: includes/public/class-mp-checkout.php:1045 +msgid "« Previous Step" +msgstr "« 上一步" + +#: includes/public/class-mp-checkout.php:873 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:657 +msgid "error" +msgstr "錯誤" + +#: includes/public/class-mp-checkout.php:872 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:658 +msgid "errors" +msgstr "錯誤" + +#: includes/public/class-mp-checkout.php:871 +msgid "

    Oops! We found %d %s in the form below.

    Fields that have errors are highlighted in red below. Entering into a field will reveal the actual error that occurred.

    " +msgstr "" + +#: includes/public/class-mp-checkout.php:870 +msgid "Please enter a valid first and last name" +msgstr "請輸入一個有效的姓名" + +#: includes/public/class-mp-checkout.php:869 +msgid " Please enter a valid card security code" +msgstr " 請輸入有效的卡片安全碼" + +#: includes/public/class-mp-checkout.php:868 +msgid "Please enter a valid card expiration" +msgstr "請填寫一組有效的信用卡期限" + +#: includes/public/class-mp-checkout.php:773 +msgid "Javascript is required in order to checkout. Please enable Javascript in your browser and then refresh this page." +msgstr "需要Javascript才能結帳。請在瀏覽器中啟用Javascript,然後刷新此頁面。" + +#: includes/public/class-mp-checkout.php:588 +msgid "An unknown error occurred. Please try again." +msgstr "出現未知錯誤。 請再試一次。" + +#: includes/public/class-mp-checkout.php:386 +msgid "Town/City" +msgstr "鎮 / 市" + +#: includes/public/class-mp-checkout.php:380 +msgid "Apartment, suite, unit, building, floor, etc" +msgstr "公寓,套房,單位,建築物,地板等" + +#: includes/public/class-mp-checkout.php:376 +msgid "Address Line 2" +msgstr "地址行 2" + +#: includes/public/class-mp-checkout.php:363 +msgid "Address Line 1" +msgstr "地址行 1" + +#: includes/common/class-mp-order.php:770 +#: includes/public/class-mp-checkout.php:354 +msgid "Company" +msgstr "公司" + +#: includes/public/class-mp-checkout.php:330 +msgid "Last" +msgstr "最後一頁" + +#: includes/public/class-mp-checkout.php:321 +msgid "First" +msgstr "第一頁" + +#: includes/public/class-mp-checkout.php:284 +msgid "State/Province" +msgstr "州/省" + +#: includes/public/class-mp-checkout.php:83 +msgid "Review Order/Payment" +msgstr "查看訂單 / 付款" + +#: includes/public/class-mp-checkout.php:81 +msgid "Billing/Shipping Address" +msgstr "帳單 / 配送地址" + +#: includes/public/class-mp-checkout.php:80 +msgid "Login/Register" +msgstr "登入 / 註冊" + +#: includes/multisite/class-mp-admin-multisite.php:530 +msgid "Marketplace" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:523 +msgid "Global Marketplace Pages" +msgstr "全局 Marketplace 頁面" + +#: includes/multisite/class-mp-admin-multisite.php:478 +msgid "Store Network" +msgstr "網絡商店" + +#: includes/multisite/class-mp-admin-multisite.php:478 +#: includes/multisite/class-mp-admin-multisite.php:494 +msgid "Store Network Settings" +msgstr "網絡商店設置" + +#: includes/multisite/class-mp-admin-multisite.php:440 +msgid "Set theme access permissions for network stores. For a custom css theme, save your css file with the MarketPress Theme: NAME header in the /marketpress/ui/themes/ folder and it will appear in this list so you may select it." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:361 +msgid "Choose a Gateway" +msgstr "選擇一個付款網關" + +#: includes/multisite/class-mp-admin-multisite.php:336 +msgid "%d products get indexed" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:285 +msgid "Product Indexer" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:281 +msgid "Please hold on..." +msgstr "請稍候..." + +#: includes/multisite/class-mp-admin-multisite.php:280 +msgid "Index Products" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:279 +msgid "%d products have been indexed in whole network" +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:182 +msgid "Enable Global Shopping Cart?" +msgstr "啟用全局購物車?" + +#: includes/multisite/class-mp-admin-multisite.php:178 +msgid "Limit Global Widgets/Shortcodes To Main Blog?" +msgstr "限制全局小部件 / 簡碼到主要 Blog?" + +#: includes/common/template-functions.php:2802 +#: includes/multisite/template-functions.php:355 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:97 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:114 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:143 +msgid "Next" +msgstr "下一頁" + +#: includes/common/template-functions.php:2801 +#: includes/multisite/template-functions.php:354 +msgid "Prev" +msgstr "上一頁" + +#: includes/common/template-functions.php:2597 +msgid "Tagged in " +msgstr "標記在 " + +#: includes/common/template-functions.php:2196 +#: includes/common/template-functions.php:2202 +#: includes/common/template-functions.php:2214 +#: includes/common/template-functions.php:2217 +msgid "Oops! We couldn't locate any orders matching that order number. Please verify the order number and try again." +msgstr "哎呀!我們找不到與訂單號相符的任何訂單。請驗證訂單編號,然後重試。" + +#: includes/common/template-functions.php:2138 +msgid "Look Up" +msgstr "查询" + +#: includes/common/template-functions.php:1423 +msgid "Please choose a shipping method" +msgstr "請選擇一個配送方式" + +#: includes/common/template-functions.php:927 +msgid "If you have your order ID you can look it up using the form below." +msgstr "如果您有訂單ID,您可以使用下面的表單查找。" + +#: includes/common/template-functions.php:927 +msgid "Order Search" +msgstr "訂單搜尋" + +#: includes/common/template-functions.php:910 +#: includes/public/class-mp-checkout.php:1440 +msgid "Cart" +msgstr "購物車" + +#: includes/common/template-functions.php:895 +msgid "[mp_global_tag_cloud]" +msgstr "" + +#: includes/common/template-functions.php:887 +msgid "[mp_global_categories_list]" +msgstr "" + +#: includes/common/template-functions.php:880 +msgid "" +"Welcome to our market place!\n" +"\n" +"Check out our network of products:\n" +"\n" +"[mp_list_global_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_global_categories_list]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_global_tag_cloud]" +msgstr "" +"歡迎光臨我們的商店!\n" +"\n" +"Check out our network of products:\n" +"\n" +"[mp_list_global_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_global_categories_list]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_global_tag_cloud]" + +#: includes/common/template-functions.php:879 +msgid "Global Store" +msgstr "全局商店" + +#: includes/common/template-functions.php:873 +msgid "" +"Welcome to our online store! Feel free to browse around:\n" +"\n" +"[mp_store_navigation]\n" +"\n" +"Check out our most popular products:\n" +"\n" +"[mp_popular_products]\n" +"\n" +"Browse by category:\n" +"\n" +"[mp_list_categories]\n" +"\n" +"Browse by tag:\n" +"\n" +"[mp_tag_cloud]" +msgstr "" +"歡迎來到我們的網路商店!請盡情的隨意瀏覽:\n" +"\n" +"[mp_store_navigation]\n" +"\n" +"看看我們最受歡迎的商品:\n" +"\n" +"[mp_popular_products]\n" +"\n" +"按類別瀏覽:\n" +"\n" +"[mp_list_categories]\n" +"\n" +"按標籤瀏覽:\n" +"\n" +"[mp_tag_cloud]" + +#: includes/common/shipping-modules/mp-weight-rate.php:127 +msgid "If cart weight is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:126 +msgid "Cart Weight" +msgstr "購物車重量" + +#: includes/common/shipping-modules/mp-usps.php:222 +msgid "Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:206 +msgid "Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:196 +msgid "Retail Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:195 +msgid "Online Rates" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:193 +msgid "Rates Request Type" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:189 +msgid "Maximum Weight Per Package" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:195 +#: includes/common/shipping-modules/mp-usps.php:236 +msgid "Enter your standard box sizes as LengthxWidthxHeight (e.g. 12x8x6) For each box defined enter the maximum weight it can contain. Note: the shipping prices this plugin calculates are estimates. If they are consistently too low or too high, please check that the list of boxes above and the product weights are accurate and complete." +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:187 +msgid "Handling Charge Per Box Shipped" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:176 +#: includes/common/shipping-modules/mp-ups.php:181 +msgid "Offered Services" +msgstr "提供服務" + +#: includes/common/shipping-modules/mp-ups.php:165 +msgid "Shipper Number" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:151 +msgid "User ID" +msgstr "使用者 ID" + +#: includes/common/shipping-modules/mp-ups.php:144 +msgid "Developer Kit Access Key" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:140 +msgid "Use Sandbox Mode?" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:123 +msgid "In order to use UPS, you will need a UPS Developer Kit access key and the UPS user ID and password associated with the access key. Set these up for free here. If this information is missing or incorrect, an error will appear during the checkout process and the buyer will not be able to complete the transaction." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:112 +msgid "If cart total is greater than or equal to this value then the rates from that row will be used during checkout." +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:111 +msgid "Cart Total" +msgstr "購物車總計" + +#: includes/common/shipping-modules/mp-table-rate.php:95 +#: includes/common/shipping-modules/mp-weight-rate.php:111 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Don't worry about sorting as this will be done automatically upon saving." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:170 +msgid "Method Title (visible for clients)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:409 +#: includes/common/shipping-modules/mp-ups.php:216 +#: includes/common/shipping-modules/mp-usps.php:251 +msgid "Max Weight (%s)" +msgstr "最大重量 (%s)" + +#: includes/common/shipping-modules/mp-fedex.php:402 +#: includes/common/shipping-modules/mp-ups.php:209 +#: includes/common/shipping-modules/mp-usps.php:247 +msgid "Size (%s)" +msgstr "尺寸 (%s)" + +#: includes/common/shipping-modules/mp-fedex.php:387 +msgid "Enter your standard box sizes as LengthxWidthxHeight ( 12x8x6 ) For each box defined enter the maximum weight it can contain. Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:361 +#: includes/common/shipping-modules/mp-usps.php:229 +msgid "Handling Charge per International Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:353 +msgid "International Services" +msgstr "國際服務" + +#: includes/common/shipping-modules/mp-fedex.php:339 +#: includes/common/shipping-modules/mp-usps.php:213 +msgid "Handling Charge per Domestic Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:331 +msgid "Domestic Services" +msgstr "國內服務" + +#: includes/common/shipping-modules/mp-fedex.php:321 +msgid "When checked the customer can chose Residential or Commercial delivery with Residential the default. Unchecked it's only Residential rates." +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:320 +msgid "Allow Commercial Delivery?" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:315 +msgid "Fedex 10kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:314 +msgid "Fedex 25kg Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:313 +msgid "Fedex Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:312 +msgid "Fedex Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:311 +msgid "Fedex Pak" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:310 +msgid "Fedex Tube" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:306 +msgid "Default Packaging" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:294 +msgid "Dropoff Type" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:290 +msgid "Meter ID" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:134 +msgid "This is a residential address" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:283 +msgid "There was an error processing your card: \"%s\". Please check your credit card info and try again." +msgstr "處理您的卡片時出錯:”%s”。請檢查您的信用卡信息,然後重試。" + +#: includes/common/payment-gateways/wepay.php:121 +msgid "Wepay makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept cards directly on your site. You don't need a merchant account or gateway. WePay handles everything including storing cards. Credit cards go directly to WePay's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:385 +msgid "There was an error processing your card - \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:356 +msgid "%s Store Purchase - Order ID - %s, Email - %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:251 +msgid "Stripe makes it easy to start accepting credit cards directly on your site with full PCI compliance. Accept Visa, MasterCard, American Express, Discover, JCB, and Diners Club cards directly on your site. You don't need a merchant account or gateway. Stripe handles everything, including storing cards, subscriptions, and direct payouts to your bank account. Credit cards go directly to Stripe's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:192 +msgid "ZMW - Zambian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:191 +msgid "ZAR - South African Rand" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:190 +msgid "YER - Yemeni Rial" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:189 +msgid "XPF - Cfp Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:188 +msgid "XOF - West African Cfa Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:187 +msgid "XCD - East Caribbean Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:186 +msgid "XAF - Central African Cfa Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:185 +msgid "WST - Samoan Tala" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:184 +msgid "VUV - Vanuatu Vatu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:183 +msgid "VND - Vietnamese Đồng" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:182 +msgid "VEF - Venezuelan Bolívar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:181 +msgid "UZS - Uzbekistani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:180 +msgid "UYI - Uruguayan Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:178 +msgid "UGX - Ugandan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:177 +msgid "UAH - Ukrainian Hryvnia" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:176 +msgid "TZS - Tanzanian Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:175 +msgid "TWD - New Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:174 +msgid "TTD - Trinidad and Tobago Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:172 +msgid "TOP - Tongan Paʻanga" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:171 +msgid "TJS - Tajikistani Somoni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:169 +msgid "SZL - Swazi Lilangeni" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:168 +msgid "SVC - Salvadoran Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:167 +msgid "STD - São Tomé and Príncipe Dobra" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:166 +msgid "SRD - Surinamese Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:165 +msgid "SOS - Somali Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:164 +msgid "SLL - Sierra Leonean Leone" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:163 +msgid "SHP - Saint Helenian Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:160 +msgid "SCR - Seychellois Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:159 +msgid "SBD - Solomon Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:157 +msgid "RWF - Rwandan Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:156 +msgid "RUB - Russian Ruble" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:155 +msgid "RSD - Serbian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:154 +msgid "RON - Romanian Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:153 +msgid "QAR - Qatari Riyal" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:152 +msgid "PYG - Paraguayan Guaraní*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:151 +msgid "PLN - Polish Złoty" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:150 +msgid "PKR - Pakistani Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:149 +msgid "PHP - Philippine Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:148 +msgid "PGK - Papua New Guinean Kina" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:147 +msgid "PEN - Peruvian Nuevo Sol*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:146 +msgid "PAB - Panamanian Balboa*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:144 +msgid "NPR - Nepalese Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:142 +msgid "NIO - Nicaraguan Córdoba*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:141 +msgid "NGN - Nigerian Naira" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:140 +msgid "NAD - Namibian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:139 +msgid "MZN - Mozambican Metical" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:137 +msgid "MXN - Mexican Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:136 +msgid "MWK - Malawian Kwacha" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:135 +msgid "MVR - Maldivian Rufiyaa" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:134 +msgid "MUR - Mauritian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:133 +msgid "MRO - Mauritanian Ouguiya" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:132 +msgid "MOP - Macanese Pataca" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:131 +msgid "MNT - Mongolian Tögrög" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:130 +msgid "MKD - Macedonian Denar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:129 +msgid "MGA - Malagasy Ariary" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:128 +msgid "MDL - Moldovan Leu" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:126 +msgid "LVL - Latvian Lats" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:124 +msgid "LSL - Lesotho Loti" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:123 +msgid "LRD - Liberian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:122 +msgid "LKR - Sri Lankan Rupee" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:121 +msgid "LBP - Lebanese Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:120 +msgid "LAK - Lao Kip*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:119 +msgid "KZT - Kazakhstani Tenge" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:118 +msgid "KYD - Cayman Islands Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:117 +msgid "KRW - South Korean Won" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:116 +msgid "KMF - Comorian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:115 +msgid "KHR - Cambodian Riel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:114 +msgid "KGS - Kyrgyzstani Som" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:113 +msgid "KES - Kenyan Shilling" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:111 +msgid "JMD - Jamaican Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:110 +msgid "ISK - Icelandic Króna" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:109 +msgid "INR - Indian Rupee*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:108 +msgid "ILS - Israeli New Sheqel" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:107 +msgid "IDR - Indonesian Rupiah" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:105 +msgid "HTG - Haitian Gourde" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:103 +msgid "HNL - Honduran Lempira*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:101 +msgid "GYD - Guyanese Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:100 +msgid "GTQ - Guatemalan Quetzal*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:99 +msgid "GNF - Guinean Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:98 +msgid "GMD - Gambian Dalasi" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:97 +msgid "GIP - Gibraltar Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:96 +msgid "GEL - Georgian Lari" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:94 +msgid "FKP - Falkland Islands Pound*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:93 +msgid "FJD - Fijian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:91 +msgid "ETB - Ethiopian Birr" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:90 +msgid "EGP - Egyptian Pound" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:89 +msgid "EEK - Estonian Kroon*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:88 +msgid "DZD - Algerian Dinar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:87 +msgid "DOP - Dominican Peso" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:85 +msgid "DJF - Djiboutian Franc*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:84 +msgid "CZK - Czech Koruna*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:83 +msgid "CVE - Cape Verdean Escudo*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:82 +msgid "CRC - Costa Rican Colón*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:81 +msgid "COP - Colombian Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:80 +msgid "CNY - Chinese Renminbi Yuan" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:79 +msgid "CLP - Chilean Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:77 +msgid "CDF - Congolese Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:76 +msgid "CAD - Canadian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:75 +msgid "BZD - Belize Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:74 +msgid "BWP - Botswana Pula" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:73 +msgid "BSD - Bahamian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:72 +msgid "BRL - Brazilian Real*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:71 +msgid "BOB - Bolivian Boliviano*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:70 +msgid "BND - Brunei Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:69 +msgid "BMD - Bermudian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:68 +msgid "BIF - Burundian Franc" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:67 +msgid "BGN - Bulgarian Lev" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:66 +msgid "BDT - Bangladeshi Taka" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:65 +msgid "BBD - Barbadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:64 +msgid "BAM - Bosnia & Herzegovina Convertible Mark" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:63 +msgid "AZN - Azerbaijani Manat" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:62 +msgid "AWG - Aruban Florin" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:61 +msgid "AUD - Australian Dollar*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:60 +msgid "ARS - Argentine Peso*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:59 +msgid "AOA - Angolan Kwanza*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:58 +msgid "ANG - Netherlands Antillean Gulden" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:57 +msgid "AMD - Armenian Dram" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:56 +msgid "ALL - Albanian Lek" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:55 +msgid "AFN - Afghan Afghani*" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:54 +msgid "AED - United Arab Emirates Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:345 +msgid "Skrill balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:327 +msgid "Skrill IPN message received." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:283 +msgid "Skrill" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:278 +msgid "Pending payment" +msgstr "待處理付款" + +#: includes/common/payment-gateways/skrill.php:144 +msgid "The secret word must match the word submitted in the \"Merchant Tools\" section of your Skrill account." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:134 +msgid "You must use your valid Skrill merchant email. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:133 +msgid "Skrill Email" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:123 +msgid "Resell your inventory via Skrill.com (Moneybookers)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:95 +msgid "ZAR - South-African Rand" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:93 +msgid "TWD - Taiwan Dollar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:92 +msgid "TRY - New Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:91 +msgid "TND - Tunisian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:90 +msgid "THB - Thailand Baht" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:89 +msgid "SKK - Slovakian Koruna" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:86 +#: includes/common/payment-gateways/stripe.php:158 +msgid "SAR - Saudi Riyal" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:85 +msgid "RSD - Serbian dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:83 +msgid "QAR - Qatari Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:81 +msgid "OMR - Omani Rial" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:80 +msgid "NOK - Norwegian Krone " +msgstr "" + +#: includes/common/payment-gateways/skrill.php:78 +#: includes/common/payment-gateways/stripe.php:138 +msgid "MYR - Malaysian Ringgit" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:77 +#: includes/common/payment-gateways/stripe.php:127 +msgid "MAD - Moroccan Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:74 +msgid "KRW - South-Korean Won" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:72 +msgid "JOD - Jordanian Dinar" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:70 +msgid "INR - Indian Rupee" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:63 +msgid "EEK - Estonian Kroon" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:56 +msgid "AED - Utd. Arab Emir. Dirham" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:52 +msgid "Turkish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:51 +msgid "Swedish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:50 +msgid "Spanish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:49 +msgid "Russian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:48 +msgid "Romainian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:47 +msgid "Polish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:46 +msgid "Italian" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:45 +msgid "Greek" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:44 +msgid "German" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:43 +msgid "French" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:42 +msgid "Finnish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:41 +msgid "English" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:40 +msgid "Dutch" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:39 +msgid "Danish" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:38 +msgid "Czech" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:37 +msgid "Chinese" +msgstr "中文" + +#: includes/common/payment-gateways/simplify.php:201 +msgid "There was an error processing your card: %s. Please re-enter your credit card info and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:278 +msgid "
  • There was an error processing your card: \"%s\". Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:274 +msgid "
  • There was an error processing your card. Please verify your credit card information and try again.
  • " +msgstr "" + +#: includes/common/payment-gateways/pin.php:177 +#: includes/common/payment-gateways/stripe.php:279 +msgid "Publishable Key" +msgstr "" + +#: includes/common/payment-gateways/pin.php:163 +msgid "API Credentials?" +msgstr "" + +#: includes/common/payment-gateways/pin.php:147 +msgid "PIN makes it easy to start accepting credit card payments with Australia’s first all-in-one online payment system. Accept all major credit cards directly on your site. Your sales proceeds are deposited to any Australian bank account, no merchant account required." +msgstr "" + +#: includes/common/payment-gateways/pin.php:57 +#: includes/common/payment-gateways/stripe.php:179 +msgid "USD - United States Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:455 +msgid "Email Footer" +msgstr "電子郵件頁腳" + +#: includes/common/payment-gateways/paypal-payflow.php:445 +msgid "Email Header" +msgstr "電子郵件標題" + +#: includes/common/payment-gateways/paypal-payflow.php:416 +msgid "Partner" +msgstr "合作夥伴" + +#: includes/common/payment-gateways/paypal-payflow.php:409 +msgid "Vendor" +msgstr "供應商" + +#: includes/common/payment-gateways/paypal-express.php:852 +#: includes/common/payment-gateways/paypal-express.php:1126 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences\t section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:749 +msgid "Page Background Color" +msgstr "頁面背景顏色" + +#: includes/common/payment-gateways/paypal-express.php:744 +msgid "Header Background Color" +msgstr "表頭背景顏色" + +#: includes/common/payment-gateways/paypal-express.php:739 +msgid "Header Border Color" +msgstr "表頭邊框顏色" + +#: includes/common/payment-gateways/paypal-express.php:734 +msgid "Header Image" +msgstr "頁首圖片" + +#: includes/common/payment-gateways/paypal-express.php:680 +msgid "Locale" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:624 +#: includes/common/payment-gateways/paypal-express.php:658 +msgid "Merchant Email" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:645 +msgid "Paypal Express Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:603 +msgid "Paypal Express Network Settings" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:861 +msgid "Application ID (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:854 +msgid "Signature (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:847 +msgid "API Password (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:839 +msgid "API Username (Live)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:832 +msgid "Signature (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:825 +msgid "API Password (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:817 +msgid "API Username (Sandbox)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:799 +msgid "This message is displayed at the top of the gateway settings page to store admins. It's a good place to inform them of your fees or put any sales messages." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:787 +msgid "Please enter your PayPal email address or business ID you want to recieve fees at." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:786 +msgid "PayPal E-mail" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:772 +msgid "Fees to Collect (%)" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:375 +#: includes/public/class-mp-checkout.php:341 +msgid "Email Address" +msgstr "電郵信箱地址" + +#: includes/common/payment-gateways/paypal-chained-payments.php:299 +msgid "Sorry, your order was not completed." +msgstr "對不起,您的訂單沒有完成。" + +#: includes/common/payment-gateways/paypal-chained-payments.php:126 +#: includes/common/payment-gateways/paypal-express.php:780 +msgid "You will be redirected to the PayPal site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:90 +#: includes/common/payment-gateways/skrill.php:94 +msgid "USD - U.S. Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:89 +msgid "TRY - Turkish lira" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:88 +#: includes/common/payment-gateways/stripe.php:170 +msgid "THB - Thai Baht" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:87 +msgid "TWD - Taiwan New Dollars" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:86 +#: includes/common/payment-gateways/pin.php:59 +#: includes/common/payment-gateways/skrill.php:88 +#: includes/common/payment-gateways/stripe.php:162 +msgid "SGD - Singapore Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:84 +msgid "RUB - Russian Rubles" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:82 +msgid "PHP - Philippine Pesos" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:81 +#: includes/common/payment-gateways/pin.php:58 +#: includes/common/payment-gateways/skrill.php:79 +#: includes/common/payment-gateways/stripe.php:145 +msgid "NZD - New Zealand Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:79 +msgid "MXN - Mexican Peso" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:78 +msgid "MYR - Malaysian Ringgits" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:77 +#: includes/common/payment-gateways/pin.php:64 +#: includes/common/payment-gateways/skrill.php:73 +#: includes/common/payment-gateways/stripe.php:112 +msgid "JPY - Japanese Yen" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:75 +#: includes/common/payment-gateways/pin.php:63 +#: includes/common/payment-gateways/skrill.php:66 +#: includes/common/payment-gateways/stripe.php:102 +msgid "HKD - Hong Kong Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:73 +msgid "GBP - Pound Sterling" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:68 +#: includes/common/payment-gateways/pin.php:62 +#: includes/common/payment-gateways/skrill.php:59 +msgid "CAD - Canadian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:67 +msgid "BRL - Brazilian Real" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:66 +#: includes/common/payment-gateways/pin.php:56 +#: includes/common/payment-gateways/skrill.php:57 +msgid "AUD - Australian Dollar" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:288 +msgid "There was an error processing your card: \"%s\". Please try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:163 +msgid "When running on a live site, Paymill recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:161 +#: includes/common/payment-gateways/pin.php:157 +#: includes/common/payment-gateways/simplify.php:103 +#: includes/common/payment-gateways/stripe.php:260 +#: includes/common/payment-gateways/wepay.php:153 +msgid "Force SSL?" +msgstr "強制 SSL?" + +#: includes/common/payment-gateways/paymill.php:151 +msgid "Accept Visa, Mastercard, Maestro UK, Discover and Solo cards directly on your site. You don't need a merchant account or gateway. Credit cards go directly to Paymill's secure environment, and never hit your servers so you can avoid most PCI requirements." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:131 +msgid "CVV2" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:72 +#: includes/common/payment-gateways/pin.php:61 +#: includes/common/payment-gateways/skrill.php:65 +#: includes/common/payment-gateways/stripe.php:95 +msgid "GBP - British Pound" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:71 +#: includes/common/payment-gateways/stripe.php:173 +msgid "TRY - Turkish Lira" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:70 +#: includes/common/payment-gateways/paypal-chained-payments.php:85 +#: includes/common/payment-gateways/skrill.php:87 +#: includes/common/payment-gateways/stripe.php:161 +msgid "SEK - Swedish Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:69 +#: includes/common/payment-gateways/skrill.php:84 +msgid "RON - Romanian Leu New" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:68 +#: includes/common/payment-gateways/paypal-chained-payments.php:83 +#: includes/common/payment-gateways/skrill.php:82 +msgid "PLN - Polish Zloty" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:67 +#: includes/common/payment-gateways/paypal-chained-payments.php:80 +#: includes/common/payment-gateways/stripe.php:143 +msgid "NOK - Norwegian Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:66 +#: includes/common/payment-gateways/skrill.php:75 +#: includes/common/payment-gateways/stripe.php:125 +msgid "LTL - Lithuanian Litas" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:65 +#: includes/common/payment-gateways/paypal-chained-payments.php:69 +#: includes/common/payment-gateways/skrill.php:60 +#: includes/common/payment-gateways/stripe.php:78 +msgid "CHF - Swiss Franc" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:64 +#: includes/common/payment-gateways/skrill.php:76 +msgid "LVL - Latvian Lat" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:63 +#: includes/common/payment-gateways/paypal-chained-payments.php:74 +#: includes/common/payment-gateways/skrill.php:69 +msgid "ILS - Israeli Shekel" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:62 +#: includes/common/payment-gateways/skrill.php:71 +msgid "ISK - Iceland Krona" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:61 +#: includes/common/payment-gateways/paypal-chained-payments.php:76 +#: includes/common/payment-gateways/skrill.php:68 +#: includes/common/payment-gateways/stripe.php:106 +msgid "HUF - Hungarian Forint" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:60 +#: includes/common/payment-gateways/paypal-chained-payments.php:71 +#: includes/common/payment-gateways/skrill.php:62 +#: includes/common/payment-gateways/stripe.php:86 +msgid "DKK - Danish Krone" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:59 +#: includes/common/payment-gateways/skrill.php:67 +#: includes/common/payment-gateways/stripe.php:104 +msgid "HRK - Croatian Kuna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:58 +#: includes/common/payment-gateways/paypal-chained-payments.php:70 +#: includes/common/payment-gateways/skrill.php:61 +msgid "CZK - Czech Koruna" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:57 +#: includes/common/payment-gateways/skrill.php:58 +msgid "BGN - Bulgarian Leva" +msgstr "" + +#: includes/common/payment-gateways/payflow/class-mp-gateway-worker-payflow.php:123 +msgid "There was an error connecting to PayPal. Please try again." +msgstr "連接到 PayPal 時出錯。請再試一次。" + +#: includes/common/payment-gateways/payfast.php:344 +msgid "This setting will log all PayFast communication to the \"payfast.log\" file." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:342 +msgid "Log Debugging Info?" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:335 +msgid "DO NOT INPUT A VALUE UNLESS YOU HAVE SET ONE IN THE SETTINGS SECTION OF YOUR PAYFAST SETTINGS." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:333 +msgid "PayFast Passphrase" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:323 +msgid "You can find your credentials on your integration page." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:321 +msgid "PayFast Merchant Credentials" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:311 +msgid "PayFast Mode" +msgstr "PayFast 模式" + +#: includes/common/payment-gateways/payfast.php:308 +msgid "PayFast is a payments processing service for South Africa. We make it safe for buyers to send money and easy for sellers to receive money. More Info »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:306 +msgid "PayFast Checkout Settings" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:285 +msgid "Your payment via PayFast for this order totaling %s is complete. The transaction number is %s." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:278 +msgid "Your payment via PayFast for this order totaling %s is not yet complete. Here is the latest status:" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:124 +msgid "Your PayFast transaction has been canceled." +msgstr "您的 PayFast 交易已被取消。" + +#: includes/common/payment-gateways/payfast.php:82 +#: includes/common/payment-gateways/payfast.php:83 +msgid "PayFast" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:157 +msgid "API error: - \"%s\"" +msgstr "API 錯誤: - “%s”" + +#: includes/common/payment-gateways/mollie.php:198 +msgid "The payment request is under process" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:140 +msgid "Order: #" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:116 +msgid "You will be redirected to the Mollie site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:73 +msgid "%sMollie%s provides a fully PCI Compliant and secure way to collect payments via iDeal, Credit Card, Bancontact / Mister Cash, SOFORT Banking, Overbooking, Bitcoin, PayPal, paysafecard and AcceptEmail." +msgstr "" + +#: includes/common/payment-gateways/mollie.php:53 +#: includes/common/payment-gateways/mollie.php:54 +#: includes/common/payment-gateways/mollie.php:195 +#: includes/common/payment-gateways/mollie.php:245 +msgid "Mollie" +msgstr "" + +#: includes/common/payment-gateways/mollie.php:50 +#: includes/common/payment-gateways/paymill.php:56 +#: includes/common/payment-gateways/paypal-chained-payments.php:72 +#: includes/common/payment-gateways/pin.php:60 +#: includes/common/payment-gateways/skrill.php:64 +#: includes/common/payment-gateways/stripe.php:92 +msgid "EUR - Euro" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:306 +msgid "Access Key" +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:300 +msgid "You must login to the Mijireh.com dashboard to obtain the Access Key." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:299 +msgid "Credentials" +msgstr "憑證" + +#: includes/common/payment-gateways/mijireh.php:289 +msgid "Mijireh Checkout provides a fully PCI Compliant, secure way to collect and transmit credit card data to your payment gateway while keeping you in control of the design of your site." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:269 +msgid "Mijireh Error: " +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:89 +msgid "You will be redirected to the Mijireh.com site to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:87 +msgid "Your Mijireh transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/mijireh.php:42 +#: includes/common/payment-gateways/mijireh.php:43 +#: includes/common/payment-gateways/mijireh.php:324 +msgid "Mijireh" +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:145 +msgid "These are the manual payment instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:189 +msgid "This is the email text to send to those who have made free order checkouts. You should include your free order instructions / information here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:183 +msgid "This is the free order information to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:182 +msgid "Confirmation User Information" +msgstr "確認使用者資訊" + +#: includes/common/payment-gateways/free_orders.php:177 +msgid "This is the information to display on the payments screen." +msgstr "這是要在支付螢幕上顯示的資訊。" + +#: includes/common/payment-gateways/free_orders.php:163 +msgid "If enabled, all free orders will be automatically marked as paid." +msgstr "如果啟用,所有免費訂單會自動標記為支付。" + +#: includes/common/payment-gateways/free_orders.php:159 +msgid "Payment Status" +msgstr "付款狀況" + +#: includes/common/payment-gateways/free_orders.php:149 +msgid "This gateway is automatically activated if order totalling 0 and it can't be disabled" +msgstr "" + +#: includes/common/payment-gateways/free_orders.php:35 +#: includes/common/payment-gateways/free_orders.php:36 +#: includes/common/payment-gateways/free_orders.php:89 +msgid "Free Order" +msgstr "免費訂單" + +#: includes/common/payment-gateways/free_orders.php:34 +#: includes/common/payment-gateways/free_orders.php:197 +msgid "Free Orders" +msgstr "免費訂單" + +#: includes/common/payment-gateways/eway31.php:515 +msgid "Sandbox API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:266 +#: includes/common/payment-gateways/eway31.php:542 +msgid "eWay Rapid 3.1 Payments (beta)" +msgstr "" + +#: includes/common/payment-gateways/eway.php:403 +msgid "Hosted Payment Page Language" +msgstr "顧客付款頁面語言" + +#: includes/common/payment-gateways/eway.php:373 +msgid "Note when testing in sandbox mode it will use the default eWay test API credentials. Also, please note that cart total needs to be a whole number (e.g. 10.00) in order to generate a successful transaction, otherwise the transaction will fail." +msgstr "" + +#: includes/common/payment-gateways/eway.php:267 +msgid "You will be redirected to https://www.eway.com.au to finalize your payment." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:380 +msgid "You have chosen to checkout using %s. Please confirm your order details and click \"Submit Order\" when finished." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:272 +#: includes/common/payment-gateways/paymill.php:131 +#: includes/common/payment-gateways/stripe.php:231 +msgid "Security Code " +msgstr "卡背後三位數 " + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Enter in MM/YYYY or MM/YY format" +msgstr "輸入以 MM/YYYYMM/YY 格式" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:268 +#: includes/common/payment-gateways/paymill.php:127 +#: includes/common/payment-gateways/stripe.php:227 +msgid "Expiration" +msgstr "有效期限" + +#: includes/common/payment-gateways/authorizenet-aim.php:321 +msgid "Delim Data" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:307 +#: includes/common/payment-gateways/paypal-payflow.php:456 +msgid "This text will appear as the footer of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:287 +#: includes/common/payment-gateways/paypal-payflow.php:440 +msgid "Email Customer (on success)" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:278 +msgid "Authorize.net default is \",\". Otherwise, get this from your credit card processor. If the transactions are not going through, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:277 +msgid "Delimeter Character" +msgstr "分隔符字符" + +#: includes/common/payment-gateways/authorizenet-aim.php:193 +msgid "Held For Review" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:310 +#: includes/common/payment-gateways/payfast.php:314 +msgid "Test" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:300 +#: includes/common/payment-gateways/pin.php:170 +#: includes/common/payment-gateways/stripe.php:272 +msgid "Secret Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:283 +msgid "Select Your Bank" +msgstr "選擇你的銀行" + +#: includes/common/payment-gateways/_ideal.php:97 +msgid "Your payment will be processed by the iDEAL network" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:208 +msgid "These are the CubePoints to display on the order confirmation screen. TOTAL will be replaced with the order total." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:203 +msgid "These are the CubePoints instructions to display on the payments screen." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:266 +msgid "If enabled, all API calls will be made to https://test.bitpay.com." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:263 +msgid "Use Test Mode?" +msgstr "使用測試模式?" + +#: includes/common/payment-gateways/_bitpay.php:259 +msgid "If checked, response fron bitpay will be stored in log file, keep it disabled unless required." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:256 +msgid "Enable Debug Log" +msgstr "啟用偵錯日誌" + +#: includes/common/payment-gateways/_bitpay.php:249 +msgid "Full Notifications" +msgstr "完整通知" + +#: includes/common/payment-gateways/_bitpay.php:231 +#: includes/common/payment-gateways/eway31.php:499 +#: includes/common/payment-gateways/eway31.php:526 +#: includes/common/payment-gateways/mollie.php:83 +#: includes/common/shipping-modules/mp-fedex.php:269 +msgid "API Key" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:222 +msgid "You can now accept a payment from any country on Earth, with no risk of fraud. To use Bitpay, you need to signup on Bitpay. \\n After completing the signup process, you can get api keys at Bitpay API key. You can read more about Bitpay at Bitpay API. \\n Bitpay requires SSL(https) for payment notifications to work." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:61 +msgid "You will be redirected to bitpay.com, for bitcoin payment. It is completely safe." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:346 +msgid "You must login to the 2Checkout vendor dashboard to obtain the seller ID and secret word. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:345 +#: includes/common/payment-gateways/authorizenet-aim.php:239 +#: includes/common/payment-gateways/paymill.php:168 +#: includes/common/payment-gateways/paypal-express.php:704 +#: includes/common/payment-gateways/simplify.php:80 +#: includes/common/payment-gateways/stripe.php:265 +#: includes/common/payment-gateways/wepay.php:158 +msgid "API Credentials" +msgstr "API 憑證" + +#: includes/common/payment-gateways/2checkout.php:325 +#: includes/common/payment-gateways/_bitpay.php:220 +#: includes/common/payment-gateways/_cubepoints.php:185 +#: includes/common/payment-gateways/_ideal.php:268 +#: includes/common/payment-gateways/_payway.php:255 +#: includes/common/payment-gateways/authorizenet-aim.php:219 +#: includes/common/payment-gateways/eway.php:352 +#: includes/common/payment-gateways/eway31.php:460 +#: includes/common/payment-gateways/free_orders.php:147 +#: includes/common/payment-gateways/manual-payments.php:126 +#: includes/common/payment-gateways/mijireh.php:287 +#: includes/common/payment-gateways/mollie.php:71 +#: includes/common/payment-gateways/paymill.php:149 +#: includes/common/payment-gateways/paypal-chained-payments.php:344 +#: includes/common/payment-gateways/paypal-payflow.php:376 +#: includes/common/payment-gateways/pin.php:145 +#: includes/common/payment-gateways/simplify.php:69 +#: includes/common/payment-gateways/skrill.php:121 +#: includes/common/payment-gateways/stripe.php:249 +#: includes/common/payment-gateways/wepay.php:119 +#: includes/common/shipping-modules/mp-fedex.php:243 +#: includes/common/shipping-modules/mp-flat-rate.php:63 +#: includes/common/shipping-modules/mp-pickup.php:140 +#: includes/common/shipping-modules/mp-table-rate.php:94 +#: includes/common/shipping-modules/mp-ups.php:122 +#: includes/common/shipping-modules/mp-usps.php:167 +#: includes/common/shipping-modules/mp-weight-rate.php:110 +msgid "%s Settings" +msgstr "%s 設置" + +#: includes/common/payment-gateways/2checkout.php:136 +msgid "You will be redirected to the 2Checkout site to finalize your payment." +msgstr "" + +#: includes/common/helpers.php:169 includes/public/class-mp-checkout.php:1277 +msgid "Billing" +msgstr "帳單" + +#: includes/common/helpers.php:144 +msgid "FREE" +msgstr "免費" + +#: includes/common/helpers.php:134 +msgid "Coupons:" +msgstr "優惠券:" + +#: includes/common/helpers.php:95 +msgid "Qty" +msgstr "數量" + +#: includes/common/helpers.php:94 +msgid "Sku" +msgstr "貨號" + +#: includes/common/data.php:59 +msgid "Zip Code" +msgstr "郵遞區號" + +#: includes/common/class-mp-taxes.php:336 +msgid "Standard Table" +msgstr "標準表格" + +#: includes/common/class-mp-product.php:2698 +msgid "Tweet" +msgstr "" + +#: includes/common/class-mp-product.php:2321 +msgid "Notification Preferences: %s" +msgstr "通知偏好:%s" + +#: includes/common/class-mp-product.php:2320 +msgid "Edit Product: %s" +msgstr "編輯商品: %s" + +#: includes/common/class-mp-product.php:2318 +msgid "Link: %s

    " +msgstr "連結: %s

    " + +#: includes/common/class-mp-product.php:2317 +msgid "Current Inventory: %s" +msgstr "目前庫存: %s" + +#: includes/common/class-mp-product.php:2316 +msgid "Product: %s" +msgstr "商品: %s" + +#: includes/common/class-mp-product.php:2314 +msgid "This message is being sent to notify you of low stock of a product in your online store according to your preferences.

    " +msgstr "正在發送該訊息根據自己喜好在你的網上商店來通知您產品的低庫存。

    " + +#: includes/common/class-mp-product.php:1817 +msgid "" +msgstr "" + +#: includes/common/class-mp-product.php:1427 +#: includes/common/class-mp-product.php:1430 +msgid "(tax incl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1422 +#: includes/common/class-mp-product.php:1425 +msgid "(tax excl.)" +msgstr "" + +#: includes/common/class-mp-product.php:1300 +#: includes/common/class-mp-product.php:1315 +msgid "%s each" +msgstr "" + +#: includes/common/class-mp-product.php:988 +msgid "Choose Options" +msgstr "選擇選項" + +#: includes/common/class-mp-product.php:526 +msgid "Choose a %s" +msgstr "選擇一個 %s" + +#: includes/common/class-mp-product.php:284 +#: includes/common/class-mp-product.php:292 +#: includes/common/class-mp-product.php:615 +msgid "We're sorry, we only have %d of this item in stock right now." +msgstr "很抱歉, 我們只有 %d 這個項目的現在庫存。" + +#: includes/common/class-mp-order.php:1456 +msgid "Shipped: Track Shipment" +msgstr "" + +#: includes/common/class-mp-order.php:1049 +msgid "Order Received" +msgstr "已收到訂單" + +#: includes/common/class-mp-order.php:1014 +msgid "In Process" +msgstr "處理中" + +#: includes/common/class-mp-order.php:969 +msgid "Order #" +msgstr "" + +#: includes/common/class-mp-order.php:866 +msgid "Copy billing address to shipping address" +msgstr "" + +#: includes/common/class-mp-order.php:822 +#: includes/public/class-mp-checkout.php:1314 +msgid "Special Instructions" +msgstr "特别指示" + +#: includes/common/class-mp-order.php:817 +#: includes/common/payment-gateways/stripe.php:335 +msgid "Email" +msgstr "電子郵箱" + +#: includes/common/class-mp-order.php:813 +#: includes/common/payment-gateways/stripe.php:341 +#: includes/public/class-mp-checkout.php:416 +msgid "Phone" +msgstr "電話" + +#: includes/common/class-mp-order.php:791 +#: includes/common/payment-gateways/stripe.php:337 +msgid "State" +msgstr "縣" + +#: includes/common/class-mp-order.php:776 +msgid "Address 1" +msgstr "地址 1" + +#: includes/common/class-mp-order.php:766 +msgid "Last Name" +msgstr "姓氏" + +#: includes/common/class-mp-order.php:762 +msgid "First Name" +msgstr "名字" + +#: includes/common/class-mp-installer.php:677 +msgid "MarketPress requires a database update to continue working correctly. Go to update page" +msgstr "" + +#: includes/common/class-mp-installer.php:657 +msgid "MarketPress performed a quick automatic update successfully!" +msgstr "" + +#: includes/common/class-mp-installer.php:653 +msgid "Perform Update" +msgstr "執行更新" + +#: includes/common/class-mp-installer.php:647 +msgid "Please update each subsite in your WordPress network where you have older version of the MarketPress plugin." +msgstr "請更新 WordPress網絡中具有較舊版本的 MarketPress插件的每個子網站。" + +#: includes/common/class-mp-installer.php:641 +msgid "Depending on the amount of products you have, this update could take quite some time. Please keep this window open while the update completes. If you have products with multiple variations, the progress bar may move slower, please don't exit the window." +msgstr "根據您擁有的產品數量,此更新可能需要相當長的一段時間。更新完成後,請保持此窗口打開。如果您有多個變型的產品,進度條可能會變慢,請不要退出窗口。" + +#: includes/common/class-mp-installer.php:632 +msgid "Product Metadata" +msgstr "商品 Metadata" + +#: includes/common/class-mp-installer.php:601 +msgid "MarketPress requires a database update to continue working correctly.
    Below you will find a list of items that require your attention." +msgstr "MarketPress需要數據庫更新才能繼續正常工作。
    以下您將找到需要注意的項目列表。" + +#: includes/common/class-mp-installer.php:600 +msgid "Update MarketPress Data" +msgstr "更新 MarketPress 數據" + +#: includes/common/class-mp-installer.php:530 +msgid "Update Data" +msgstr "更新數據" + +#: includes/common/class-mp-installer.php:67 +msgid "Complete!" +msgstr "完成!" + +#: includes/common/class-mp-installer.php:66 +msgid "Upgrading Database...Please Wait..." +msgstr "升級數據庫中...請稍候..." + +#: includes/common/class-mp-installer.php:64 +msgid "An error occurred while updating. Please refresh this page and try again." +msgstr "更新時發生錯誤。請刷新此頁面,然後重試。" + +#: includes/common/class-mp-cart.php:2447 +msgid "Some items in your cart have fallen below the quantity you currently have in your cart. We have adjusted the quantity in your cart automatically." +msgstr "您購物車中的某些物品已經低於您目前在購物車中的數量。我們已經自動調整了購物車的數量。" + +#: includes/common/class-mp-cart.php:2443 +msgid "Some items in your cart are no longer available. We have removed these items from your cart automatically." +msgstr "您的購物車中的某些商品已不再可用。我們已經自動從您的購物車中刪除這些商品。" + +#: includes/common/class-mp-cart.php:1566 +msgid "item" +msgstr "項目" + +#: includes/common/class-mp-cart.php:1563 +#: includes/common/class-mp-cart.php:1568 +msgid "items" +msgstr "項目" + +#: includes/common/class-mp-cart.php:1363 +msgid "Items/Products added to Cart will show here." +msgstr "項目 / 產品添加到購物車將顯示在這裡。" + +#: includes/common/class-mp-cart.php:1362 +msgid "Your shopping cart is empty." +msgstr "您的購物車是空的。" + +#: includes/common/class-mp-cart.php:1357 +msgid "View Cart" +msgstr "查看購物車" + +#: includes/common/class-mp-cart.php:1241 +#: includes/common/class-mp-cart.php:1298 +#: includes/public/class-mp-short-codes.php:159 +msgid "Adding..." +msgstr "新增中…" + +#: includes/common/class-mp-cart.php:1033 +msgid "Continue Shopping?" +msgstr "繼續購物?" + +#: includes/common/class-mp-cart.php:961 +msgid "Secure Checkout
    Shopping is always safe and secure." +msgstr "安全支付
    購物總是安全可靠的。" + +#: includes/common/class-mp-cart.php:959 +msgid "You are about to submit your order!
    Please review your order details before continuing. You will be charged immediately upon clicking \"Submit Order\"." +msgstr "您即將提交訂單!
    請在繼續之前查看您的訂單詳情。點擊“送出訂單”後,系統將立即向您收取費用。" + +#: includes/common/class-mp-cart.php:956 +msgid "Continue »" +msgstr "繼續 »" + +#: includes/common/class-mp-cart.php:955 +msgid "Submit Order" +msgstr "送出訂單" + +#: includes/common/class-mp-cart.php:818 +msgid "There are no items in your cart - go add some !" +msgstr "" + +#: includes/common/class-mp-cart.php:816 +msgid "The cart is disabled." +msgstr "購物車已停用。" + +#: includes/common/class-mp-cart.php:735 +msgid "Estimated %s" +msgstr "" + +#: includes/common/class-mp-cart.php:717 +msgid "Estimated Shipping" +msgstr "" + +#: includes/common/class-mp-cart.php:697 +msgid "Product Total" +msgstr "商品總計" + +#: includes/common/class-mp-cart.php:670 includes/common/class-mp-cart.php:672 +msgid "Estimated Total (%s, %s)" +msgstr "" + +#: includes/common/class-mp-cart.php:668 +msgid "Estimated Total (%s)" +msgstr "" + +#: includes/common/class-mp-cart.php:666 includes/common/class-mp-cart.php:752 +msgid "Estimated Total" +msgstr "" + +#: includes/admin/widgets/product-list.php:247 +msgid "Show Thumbnail Placeholder image (if image is not set)" +msgstr "" + +#: includes/admin/widgets/cart.php:73 +msgid "Display product price" +msgstr "顯示商品價格" + +#: includes/admin/widgets/cart.php:71 +msgid "Display product quantity" +msgstr "顯示商品數量" + +#: includes/admin/widgets/cart.php:69 +msgid "Display product image" +msgstr "顯示商品圖片" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:93 +msgid "General Shipping Settings" +msgstr "一般配送設置" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:773 +msgid "If you are having conflicts with the lightbox library from your theme or another plugin you should uncheck this." +msgstr "如果與您的主題或其他插件的Lightbox庫有衝突,您應該取消勾選。" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:772 +msgid "Use Built-In Lightbox for Images?" +msgstr "使用內鍵的燈箱圖像?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:762 +msgid "Disable Large Image Display?" +msgstr "啟用大型圖片顯示?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:688 +msgid "Show Product Image?" +msgstr "顯示商品圖片?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:682 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:684 +msgid "Show Tags List?" +msgstr "顯示標籤列表?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:676 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:678 +msgid "Show Categories List?" +msgstr "顯示分類列表?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:671 +msgid "If enabled, description excerpt will be added above Add to cart." +msgstr "如果啟用,說明摘錄將被添加到添加到購物車上面。" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:669 +msgid "Show Excerpt?" +msgstr "顯示摘要?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:665 +msgid "If enabled, users will be able to choose how many of the product they want to purchase before adding to their cart. If not checked, quantity could be change later on the cart page." +msgstr "如果啟用,用戶將可以在添加到購物車之前選擇要購買的產品數量。如果未選中,數量可能會在購物車頁面稍後更改。" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:663 +msgid "Show Quantity Field?" +msgstr "顯示數量字段?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:649 +msgid "Settings related to the display of individual product pages." +msgstr "與單個產品頁面的顯示相關的設置。" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:648 +msgid "Product Page Settings" +msgstr "商品頁面設置" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:605 +msgid "Related Products Layout" +msgstr "關聯商品佈局" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:573 +msgid "Show Related Products?" +msgstr "顯示關聯商品?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:568 +msgid "Related Product Settings" +msgstr "關聯商品設置" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:549 +msgid "Order Status Entries Per Page" +msgstr "每頁訂單狀態條目" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:510 +msgid "Sort Products By" +msgstr "排序商品依" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:497 +msgid "Products Per Page" +msgstr "每頁商品數" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:492 +msgid "Paginate Products?" +msgstr "分頁商品?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:478 +msgid "Excerpts Length" +msgstr "摘要長度" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:473 +msgid "Show Excerpts?" +msgstr "顯示摘要?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:450 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:746 +msgid "Image Alignment" +msgstr "圖片對齊" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:412 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:708 +msgid "Custom Image Size" +msgstr "自定義圖片尺寸" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:401 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:697 +msgid "Large - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:400 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:696 +msgid "Medium - %s" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:399 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:695 +msgid "Thumbnail - %s" +msgstr "縮圖 - %s" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:397 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:693 +msgid "Image Size" +msgstr "圖片尺寸" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:386 +msgid "Select default placeholder image thumbnail when product image is not available (if empty, plugin's built-in image will be used)" +msgstr "當產品圖像不可用時,選擇默認佔位符圖像縮略圖(如果為空,則使用插件的內置圖像)" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:380 +msgid "Show default product placeholder thumbnail when product image is not available?" +msgstr "當產品圖像不可用時顯示默認產品默認縮略圖?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:374 +msgid "Show Product Thumbnail?" +msgstr "顯示商品縮圖?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:369 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:658 +msgid "Redirect to cart page for immediate checkout" +msgstr "重定向到購物車頁面即可立即結帳" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:368 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:657 +msgid "Stay on current product page" +msgstr "留在當前的產品頁面" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:366 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:655 +msgid "MarketPress supports two \"flows\" for adding products to the shopping cart. After adding a product to their cart, two things can happen:" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:365 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:654 +msgid "Add To Cart Action" +msgstr "加入購物車行動" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:355 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:628 +msgid "Four" +msgstr "四" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:354 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:627 +msgid "Three" +msgstr "三" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:353 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:626 +msgid "Two" +msgstr "二" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:625 +msgid "One" +msgstr "一" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:349 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:622 +msgid "Set the number of products that show up in a grid row to best fit your theme" +msgstr "設置在網格行中顯示的最符合您主題的產品數量" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:348 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:621 +msgid "How many products per row?" +msgstr "每行多少個產品?" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:342 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:609 +msgid "Display as grid" +msgstr "顯示為網格" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:341 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:608 +msgid "Display as list" +msgstr "顯示為列表" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:339 +msgid "Product Layout" +msgstr "商品佈局" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:334 +msgid "Settings related to the display of product lists/grids." +msgstr "與產品列表 /網格顯示的相關設置。" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:333 +msgid "Product List/Grid Settings" +msgstr "產品列表 / 網格設置" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:314 +msgid "Show Twitter Button" +msgstr "顯示 Twitter 按鈕" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:309 +msgid "Twitter" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:303 +msgid "Show Share Button" +msgstr "顯示分享按鈕" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:297 +msgid "Recommend" +msgstr "推荐" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:296 +msgid "Like" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:294 +msgid "Action" +msgstr "操作" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:283 +msgid "Show Facebook Like Button" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:278 +msgid "Facebook" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:257 +msgid "Show \"Pin It\" Button" +msgstr "顯示 “Pin It” 按鈕" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:252 +msgid "Pinterest" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:246 +msgid "Social Settings" +msgstr "社群設定" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:193 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:202 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:211 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:220 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:229 +#: includes/multisite/class-mp-admin-multisite.php:532 +#: includes/multisite/class-mp-admin-multisite.php:541 +#: includes/multisite/class-mp-admin-multisite.php:550 +msgid "Choose a Page" +msgstr "選擇一個頁面" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:191 +msgid "This page will be used as the root for your store." +msgstr "此頁面將用作您商店的根。" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:168 +#: includes/multisite/class-mp-admin-multisite.php:586 +msgid "Create Page" +msgstr "創建頁面" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "uncropped" +msgstr "不裁剪" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:128 +msgid "cropped" +msgstr "裁剪" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:87 +#: includes/multisite/class-mp-admin-multisite.php:121 +#: includes/multisite/class-mp-admin-multisite.php:620 +msgid "An error occurred while creating the store page. Please try again." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:66 +msgid "Choose the gateway(s) that you would like to be available for checkout." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-payments.php:65 +msgid "Enabled Gateways" +msgstr "啟用付款網關" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:78 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:146 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:179 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:213 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:274 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:307 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:341 +msgid "Text" +msgstr "文本" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:71 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:139 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:172 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:206 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:267 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:300 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:334 +msgid "Subject" +msgstr "主旨" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:52 +msgid "Notification Email" +msgstr "通知電郵" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:510 +msgid "Enabling this option will display label `excl. tax` or `incl. tax` after price" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:509 +msgid "Display tax label?" +msgstr "顯示稅金標籤?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:504 +msgid "Enabling this option will show Price + Tax, eg. if your price is 100 and your tax 20, your price will be 120" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:416 +#: includes/multisite/class-mp-admin-multisite.php:234 +msgid "Price Format" +msgstr "價格格式" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:366 +msgid "Enabling this field will display a textbox on the shipping checkout page for users to enter special instructions for their order. Useful for product personalization, etc." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:365 +msgid "Show Special Instructions Field?" +msgstr "顯示特別說明欄位?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:360 +msgid "Universal" +msgstr "通用性" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:359 +msgid "Old" +msgstr "舊的" + +#: includes/admin/dash-notice/wpmudev-dash-notification.php:1167 +#: includes/admin/store-settings/class-mp-store-settings-general.php:358 +msgid "New" +msgstr "新的" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:353 +msgid "If you already use Google Analytics for your website, you can track detailed ecommerce information by enabling this setting. Choose whether you are using the new asynchronous or old tracking code. Before Google Analytics can report ecommerce activity for your website, you must enable ecommerce tracking on the profile settings page for your website. Also keep in mind that some gateways do not reliably show the receipt page, so tracking may not be accurate in those cases. It is recommended to use the PayPal gateway for the most accurate data. More information »" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:347 +msgid "Do you want to display the product price on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:346 +msgid "Show product price on Mini Cart?" +msgstr "在迷你購物車上顯示商品價格?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:340 +msgid "Do you want to display the product quantity on floating Mini Cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:339 +msgid "Show product quantity on Mini Cart?" +msgstr "在迷你購物車上顯示商品數量?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:333 +msgid "Do you want to display the product image on floating Mini Cart." +msgstr "你想要在浮動的迷你購物車上顯示的產品圖片。" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:332 +msgid "Show product image on Mini Cart?" +msgstr "在迷你購物車上顯示商品圖片?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:327 +msgid "This option hide floating Mini Cart in top right corner." +msgstr "此選項將浮動小型購物車隱藏在右上角。" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:326 +msgid "Disable Mini Cart?" +msgstr "停用頁眉購物車?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:316 +msgid "If unchecked your Orders admin page will be hidden" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:315 +msgid "Show admin Orders page?" +msgstr "顯示管理員訂單頁?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:309 +msgid "Disable Cart?" +msgstr "停用購物車?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:303 +msgid "Force Login?" +msgstr "強制登入?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:297 +msgid "Hide Out of Stock Products?" +msgstr "隱藏缺貨商品?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:555 +msgid "This will prevent multiples of the same downloadable product form being added to the cart." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:554 +msgid "Limit Digital Products Per-order?" +msgstr "限制每個訂單數位商品的數量?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:268 +msgid "If you're having issues downloading large files and have worked with your hosting provider to increase your memory limits, try enabling this - just keep in mind, it's not as secure!" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:267 +msgid "Use Alternative Download Method?" +msgstr "使用替代下載方法?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:252 +msgid "Download Settings" +msgstr "下載設置" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:230 +msgid "Change product post type" +msgstr "變更商品發布類型" + +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:51 +msgid "%s Capabilities" +msgstr "%s 權限" + +#: includes/admin/store-settings/class-mp-store-settings-addons.php:47 +msgid "Store Settings: Add Ons: %s" +msgstr "商店設置: Add Ons: %s" + +#: includes/admin/class-mp-store-settings-admin.php:254 +#: includes/admin/store-settings/class-mp-store-settings-capabilities.php:56 +msgid "Capabilities" +msgstr "權限" + +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Edit Product Attribute %s" +msgstr "編輯產品屬性 %s" + +#: includes/admin/class-mp-store-settings-admin.php:246 +msgid "Exporters" +msgstr "導出程序" + +#: includes/admin/class-mp-store-settings-admin.php:238 +msgid "Short Codes" +msgstr "簡碼" + +#: includes/admin/class-mp-store-settings-admin.php:207 +msgid "An appropriate message for key \"%s\" could not be found." +msgstr "" + +#: includes/admin/class-mp-store-settings-admin.php:204 +msgid "Product attribute updated successfully." +msgstr "商品屬性已成功更新。" + +#: includes/admin/class-mp-store-settings-admin.php:203 +msgid "Product attribute added successfully." +msgstr "商品屬性已成功添加。" + +#: includes/admin/class-mp-store-settings-admin.php:123 +msgid "Add Ons" +msgstr "擴展功能" + +#: includes/admin/class-mp-store-settings-admin.php:123 +#: includes/admin/store-settings/class-mp-store-settings-addons.php:121 +msgid "Store Settings: Add Ons" +msgstr "商店设置:附加功能" + +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "Store Settings: Capabilities" +msgstr "商店設置:權限" + +#: includes/admin/class-mp-store-settings-admin.php:118 +msgid "Store Settings: Product Tags" +msgstr "商店設置:商品標籤" + +#: includes/admin/class-mp-store-settings-admin.php:117 +msgid "Store Settings: Product Categories" +msgstr "商店設置:商品分類" + +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Store Settings: Product Attributes" +msgstr "商店設置:商品變型" + +#: includes/admin/class-mp-store-settings-admin.php:115 +msgid "Store Settings: Payments" +msgstr "商店設置:付款" + +#: includes/admin/class-mp-store-settings-admin.php:114 +msgid "Store Settings: Shipping" +msgstr "商店設置:配送" + +#: includes/admin/class-mp-store-settings-admin.php:113 +#: includes/admin/class-mp-store-settings-admin.php:226 +msgid "Notifications" +msgstr "通知" + +#: includes/admin/class-mp-store-settings-admin.php:113 +msgid "Store Settings: Notifications" +msgstr "商店設置:通知" + +#: includes/admin/class-mp-store-settings-admin.php:112 +msgid "Store Settings: Presentation" +msgstr "商店設置:演示" + +#: includes/admin/class-mp-store-settings-admin.php:111 +msgid "Store Settings: General" +msgstr "商店設置:一般" + +#: includes/admin/class-mp-shortcode-builder.php:1489 +msgid "Select a Product" +msgstr "選擇一個商品" + +#: includes/admin/class-mp-shortcode-builder.php:1447 +msgid "Reset to Defaults" +msgstr "重置到默認值" + +#: includes/admin/class-mp-shortcode-builder.php:1446 +msgid "Insert Short Code" +msgstr "插入簡碼" + +#: includes/admin/class-mp-shortcode-builder.php:1202 +#: includes/admin/class-mp-shortcode-builder.php:1227 +#: includes/admin/class-mp-shortcode-builder.php:1252 +msgid "The text to show in the link." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1196 +#: includes/admin/class-mp-shortcode-builder.php:1221 +#: includes/admin/class-mp-shortcode-builder.php:1246 +msgid "Whether to return a clickable link or url." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1177 +msgid "Whether to display the cart only on store pages or not." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1171 +msgid "Whether to show or hide the product price." +msgstr "是否顯示或隱藏此產品價格。" + +#: includes/admin/class-mp-shortcode-builder.php:1165 +msgid "Whether to show or hide the product quantity." +msgstr "是否顯示或隱藏此產品數量。" + +#: includes/admin/class-mp-shortcode-builder.php:1159 +msgid "Whether to show or hide the product image." +msgstr "是否顯示或隱藏此商品形片。" + +#: includes/admin/class-mp-shortcode-builder.php:1153 +msgid "The text displayed before the cart." +msgstr "在購物車之前顯示的文本。" + +#: includes/admin/class-mp-shortcode-builder.php:1147 +msgid "The title of the cart." +msgstr "購物車的標題。" + +#: includes/admin/class-mp-shortcode-builder.php:1058 +#: includes/admin/class-mp-shortcode-builder.php:1121 +msgid "A label to prepend to the price." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1032 +#: includes/admin/class-mp-shortcode-builder.php:1127 +msgid "What context for display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:1004 +msgid "Set the alignment of the image." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:998 +msgid "Set a custom pixel width/height. If omitted defaults to the size set by \"context\"." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:993 +msgid "Widget" +msgstr "工具集" + +#: includes/admin/class-mp-shortcode-builder.php:988 +msgid "What context for preset size options." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:982 +#: includes/admin/class-mp-shortcode-builder.php:1026 +#: includes/admin/class-mp-shortcode-builder.php:1052 +#: includes/admin/class-mp-shortcode-builder.php:1077 +#: includes/admin/class-mp-shortcode-builder.php:1096 +#: includes/admin/class-mp-shortcode-builder.php:1115 +msgid "The ID of the product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:963 +msgid "Whether to display the product meta (e.g. price, buy button)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:738 +#: includes/admin/class-mp-shortcode-builder.php:905 +#: includes/admin/class-mp-shortcode-builder.php:958 +#: includes/admin/class-mp-shortcode-builder.php:992 +#: includes/admin/class-mp-shortcode-builder.php:1035 +#: includes/admin/class-mp-shortcode-builder.php:1130 +#: includes/admin/class-mp-shortcode-builder.php:1349 +msgid "List" +msgstr "列表" + +#: includes/admin/class-mp-shortcode-builder.php:957 +#: includes/admin/class-mp-shortcode-builder.php:991 +#: includes/admin/class-mp-shortcode-builder.php:1034 +#: includes/admin/class-mp-shortcode-builder.php:1129 +msgid "Single" +msgstr "單一" + +#: includes/admin/class-mp-shortcode-builder.php:953 +msgid "Whether and what context of image size to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:948 +msgid "Full" +msgstr "完整" + +#: includes/admin/class-mp-shortcode-builder.php:943 +msgid "Whether and what type of content to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:937 +msgid "Whether to display the product title." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:931 +msgid "The ID of the product to display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:747 +#: includes/admin/class-mp-shortcode-builder.php:914 +msgid "Hide" +msgstr "隱藏" + +#: includes/admin/class-mp-shortcode-builder.php:746 +#: includes/admin/class-mp-shortcode-builder.php:913 +msgid "Show" +msgstr "顯示" + +#: includes/admin/class-mp-shortcode-builder.php:744 +#: includes/admin/class-mp-shortcode-builder.php:911 +msgid "Whether or not to show the product filters." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:724 +#: includes/admin/class-mp-shortcode-builder.php:891 +#: includes/admin/class-mp-shortcode-builder.php:1335 +msgid "Limits list to a specific product tag." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:713 +#: includes/admin/class-mp-shortcode-builder.php:880 +#: includes/admin/class-mp-shortcode-builder.php:1324 +msgid "Limits list to a specific product category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:706 +#: includes/admin/class-mp-shortcode-builder.php:873 +#: includes/admin/class-mp-shortcode-builder.php:1317 +msgid "Direction to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:684 +#: includes/admin/class-mp-shortcode-builder.php:851 +#: includes/admin/class-mp-shortcode-builder.php:1295 +msgid "What field to order products by." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:678 +#: includes/admin/class-mp-shortcode-builder.php:845 +#: includes/admin/class-mp-shortcode-builder.php:1283 +msgid "How many products to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:672 +#: includes/admin/class-mp-shortcode-builder.php:839 +#: includes/admin/class-mp-shortcode-builder.php:1277 +msgid "The page number to display in the product list if \"paginate\" is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:666 +#: includes/admin/class-mp-shortcode-builder.php:833 +#: includes/admin/class-mp-shortcode-builder.php:1271 +msgid "Whether to paginate the product list. This is useful to only show a subset." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:808 +msgid "How many related items to show." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:790 +msgid "How to relate the products" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:784 +msgid "The product to show related items for." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:765 +msgid "The maximum number of products to display" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:647 +msgid "Comma separated list of tags (term_id) to include. For example, include=5,27 means tags that have the term_id 5 or 27 will be the only tags displayed. Defaults to include everything." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:641 +msgid "Comma separated list of tags (term_id) to exclude. For example, exclude=5,27 means tags that have the term_id 5 or 27 will NOT be displayed. Defaults to exclude nothing." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:633 +#: includes/admin/class-mp-shortcode-builder.php:1420 +msgid "Sort order." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:629 +#: includes/admin/class-mp-shortcode-builder.php:1416 +msgid "Count" +msgstr "計算" + +#: includes/admin/class-mp-shortcode-builder.php:626 +#: includes/admin/class-mp-shortcode-builder.php:1413 +msgid "Order of the tags." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:620 +msgid "The text/space between tags)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:616 +msgid "UL with a class of \"wp-tag-cloud\"" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:615 +msgid "separated by whitespace defined by \"separator\" parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:613 +msgid "Format of the cloud display." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:607 +msgid "The number of actual tags to display in the cloud. (Use \"0\" to display all tags.)" +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:601 +msgid "Unit of measure as pertains to the smallest and largest values. This can be any CSS length value, e.g. pt, px, em, %." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:595 +msgid "The text size of the tag with the largest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:589 +msgid "The text size of the tag with the smallest count value (units given by unit parameter)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:570 +msgid "The \"tabindex\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:564 +msgid "The \"name\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:558 +msgid "The \"id\" attribute value for select element. " +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:552 +msgid "Which category ID is selected." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:540 +msgid "The max depth. This is ignored unless hierarchical is set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:536 +#: includes/multisite/template-functions.php:816 +msgid "No Categories" +msgstr "無分類" + +#: includes/admin/class-mp-shortcode-builder.php:414 +#: includes/admin/class-mp-shortcode-builder.php:546 +msgid "Calculates link or post counts by including items from child categories. If show_counts and hierarchical are true this is automatically set to true." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:409 +msgid "Value of n (some number) specifies the depth (or level) to descend in displaying Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:408 +msgid "Show only top level Categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:407 +msgid "All Categories displayed in flat (no indent) form (overrides hierarchical)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:406 +msgid "All Categories and child Categories (Default)." +msgstr "全部類別和子類別 (預設值)。" + +#: includes/admin/class-mp-shortcode-builder.php:402 +msgid "This parameter controls how many levels in the hierarchy of Categories are to be included in the list of Categories. NOTE: The \"hierarchical\" argument, which is disabled by default, will override the depth argument, unless it is true. When the argument is false, it will display all of the categories. When it is enabled it will use the value in the \"depth\" argument." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:396 +#: includes/admin/class-mp-shortcode-builder.php:1394 +msgid "Sets the number of Categories to display. This causes the SQL LIMIT value to be defined." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:390 +#: includes/admin/class-mp-shortcode-builder.php:534 +msgid "Set the text to show when no categories are listed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:384 +msgid "Set the title and style of the outer list item. If present but empty, the outer list item will not be displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:378 +#: includes/admin/class-mp-shortcode-builder.php:528 +msgid "Display sub-categories as inner list items (below the parent list item) or inline." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:368 +#: includes/admin/class-mp-shortcode-builder.php:511 +msgid "Exclude category-tree from the results. The parameter include must be empty. If the hierarchical parameter is true, then use exclude instead of exclude_tree." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:354 +msgid "Only include these categories." +msgstr "僅包括這些類別。" + +#: includes/admin/class-mp-shortcode-builder.php:340 +#: includes/admin/class-mp-shortcode-builder.php:356 +#: includes/admin/class-mp-shortcode-builder.php:370 +#: includes/admin/class-mp-shortcode-builder.php:496 +#: includes/admin/class-mp-shortcode-builder.php:513 +msgid "Select Categories" +msgstr "選擇分類" + +#: includes/admin/class-mp-shortcode-builder.php:338 +#: includes/admin/class-mp-shortcode-builder.php:494 +msgid "Exclude one or more categories from the results. The parameter include must be empty." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:332 +msgid "Set a URI for an image (usually an rss feed icon) to act as a link to each categories' rss-2 feed. This parameter overrides the feed parameter. There is no default for this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:320 +msgid "Display a link to each category's rss-2 feed and set the link text to display. The default is no text and no feed displayed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:313 +#: includes/admin/class-mp-shortcode-builder.php:487 +msgid "Any" +msgstr "任一" + +#: includes/admin/class-mp-shortcode-builder.php:307 +#: includes/admin/class-mp-shortcode-builder.php:481 +msgid "Only display categories that are children of the category identified by this parameter." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:301 +msgid "Sets whether a category's description is inserted into the title attribute of the links created (i.e. <a title=\"<em>Category Description</em>\" href=\"...)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:295 +#: includes/admin/class-mp-shortcode-builder.php:475 +msgid "Toggles the display of categories with no posts." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:289 +#: includes/admin/class-mp-shortcode-builder.php:469 +#: includes/admin/class-mp-shortcode-builder.php:1388 +msgid "Toggles the display of the current count of posts in each category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:279 +msgid "Style to display the categories list in. A value of list displays the categories as list items while none generates no special display method (the list items are separated by
    tags)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:269 +#: includes/admin/class-mp-shortcode-builder.php:449 +#: includes/admin/class-mp-shortcode-builder.php:1378 +msgid "Sort order for categories (either ascending or descending)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:259 +#: includes/admin/class-mp-shortcode-builder.php:439 +#: includes/admin/class-mp-shortcode-builder.php:1368 +msgid "Sort categories alphabetically, by unique Category ID, or by the count of posts in that Category." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:253 +#: includes/admin/class-mp-shortcode-builder.php:433 +msgid "If a value is entered, causes the display of a link to all categories if the style is set to list." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:219 +msgid "Select an Action" +msgstr "選擇一個操作" + +#: includes/admin/class-mp-shortcode-builder.php:217 +msgid "What would you like to do?" +msgstr "您想要做什麼?" + +#: includes/admin/class-mp-shortcode-builder.php:216 +#: includes/admin/class-mp-shortcode-builder.php:1522 +msgid "Add E-Commerce Short Code" +msgstr "添加 E-Commerce 簡碼" + +#: includes/admin/class-mp-shortcode-builder.php:197 +msgid "Display a list of links to your store pages." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:196 +msgid "Display a link or url to the order status page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:195 +msgid "Display a link or url to the current products list page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:194 +msgid "Display a link or url to the current store page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:193 +msgid "Display a link or url to the current shopping cart page." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:192 +msgid "Display the cart widget." +msgstr "顯示購物車小部件。" + +#: includes/admin/class-mp-shortcode-builder.php:191 +msgid "Display the full product meta box with price and buy now/add to cart button." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:190 +msgid "Display the product stock." +msgstr "顯示商品庫存。" + +#: includes/admin/class-mp-shortcode-builder.php:189 +msgid "Display the product SKU number(s)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:188 +msgid "Display the product price (and sale price)." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:187 +msgid "Display the buy or add to cart button." +msgstr "顯示購買或添加到購物車按鈕。" + +#: includes/admin/class-mp-shortcode-builder.php:186 +msgid "Display the featured image of a given product." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:185 +msgid "Display a single product." +msgstr "顯示一個單一商品。" + +#: includes/admin/class-mp-shortcode-builder.php:184 +msgid "Display a list of products according to preference." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:183 +msgid "Display products related to the one being viewed." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:182 +msgid "Display a list of popular products ordered by sales." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:180 +msgid "Display an HTML dropdown of your product categories." +msgstr "" + +#: includes/admin/class-mp-shortcode-builder.php:179 +msgid "Display an HTML list of your product categories." +msgstr "顯示一個 HTML 清單給您的產品類別。" + +#: includes/admin/class-mp-shortcode-builder.php:178 +msgid "Display a cloud or list of your product tags." +msgstr "顯示一個雲或清單給你的產品標籤。" + +#: includes/admin/class-mp-setup-wizard.php:655 +msgid "Setup your payment gateway" +msgstr "設置您的支付閘道" + +#: includes/admin/class-mp-setup-wizard.php:643 +#: includes/admin/class-mp-setup-wizard.php:649 +msgid "Other Gateways" +msgstr "其他付款網關" + +#: includes/admin/class-mp-setup-wizard.php:617 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:150 +msgid "Select which calculated shipping methods the customer will be able to choose from." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:601 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:134 +#: includes/public/class-mp-checkout.php:82 +msgid "Shipping Method" +msgstr "配送方式" + +#: includes/admin/class-mp-setup-wizard.php:568 +msgid "I want to charge shipping" +msgstr "我想要收取運費" + +#: includes/admin/class-mp-setup-wizard.php:523 +#: includes/admin/store-settings/class-mp-store-settings-general.php:503 +msgid "Show Price + Tax?" +msgstr "顯示價格 + 稅金?" + +#: includes/admin/class-mp-setup-wizard.php:507 +msgid "I.e. Taxes, VAT, GST, etc" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:491 +#: includes/admin/store-settings/class-mp-store-settings-general.php:471 +msgid "Current Rates" +msgstr "目前費率" + +#: includes/admin/class-mp-setup-wizard.php:473 +msgid "Default Tax Rate" +msgstr "預設稅率" + +#: includes/admin/class-mp-setup-wizard.php:434 +#: includes/admin/class-mp-setup-wizard.php:442 +#: includes/admin/store-settings/class-mp-store-settings-general.php:386 +#: includes/admin/store-settings/class-mp-store-settings-general.php:394 +#: includes/multisite/class-mp-admin-multisite.php:204 +#: includes/multisite/class-mp-admin-multisite.php:212 +msgid "Select a Currency" +msgstr "選擇一個貨幣" + +#: includes/admin/class-mp-setup-wizard.php:414 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:105 +msgid "Choose Countries" +msgstr "選擇國家" + +#: includes/admin/class-mp-setup-wizard.php:411 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:103 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:104 +msgid "All Countries" +msgstr "全部國家" + +#: includes/admin/class-mp-setup-wizard.php:410 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:102 +msgid "These are the countries that you will ship to." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:409 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:101 +msgid "Target Countries" +msgstr "目標國家" + +#: includes/admin/class-mp-setup-wizard.php:401 +msgid "Countries" +msgstr "國家" + +#: includes/admin/class-mp-setup-wizard.php:387 +#: includes/admin/store-settings/class-mp-store-settings-general.php:640 +msgid "Zip/Postal Code Label" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:352 +#: includes/admin/store-settings/class-mp-store-settings-general.php:606 +msgid "Select a State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:335 +#: includes/admin/store-settings/class-mp-store-settings-general.php:590 +msgid "Select A Country" +msgstr "選擇一個國家" + +#: includes/admin/class-mp-setup-wizard.php:332 +#: includes/admin/store-settings/class-mp-store-settings-general.php:587 +msgid "Select a Country" +msgstr "選擇一個國家" + +#: includes/admin/class-mp-setup-wizard.php:324 +msgid "Location" +msgstr "位置" + +#: includes/admin/class-mp-setup-wizard.php:304 +#: includes/admin/class-mp-setup-wizard.php:312 +#: includes/admin/class-mp-store-settings-admin.php:129 +#: includes/admin/class-mp-store-settings-admin.php:262 +msgid "Quick Setup" +msgstr "快速設置" + +#: includes/admin/class-mp-setup-wizard.php:289 +msgid "MarketPress setup is not complete! Run setup wizard" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2479 +msgid "Enter your product name here" +msgstr "在此輸入您的商品名稱" + +#: includes/admin/class-mp-products-admin.php:2440 +msgid "Select a %s" +msgstr "選擇一個 %s" + +#: includes/admin/class-mp-products-admin.php:2426 +msgid "Each product variation needs to have product attributes assigned to it so the system knows how to differentiate one product variation from the other. It is important that you assign a category to this product before choosing any attributes." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2409 +msgid "If you would like this variation to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2320 +msgid "Sale Price (if applicable)" +msgstr "銷售價格 (如果適用)" + +#: includes/admin/class-mp-products-admin.php:2281 +msgid "If you would like the description to be different than the main product enter it here." +msgstr "如果您希望描述與主要產品不同,請在此輸入。" + +#: includes/admin/class-mp-products-admin.php:2229 +msgid "Image" +msgstr "圖片" + +#: includes/admin/class-mp-products-admin.php:2202 +#: includes/admin/class-mp-shortcode-builder.php:226 +msgid "Attributes" +msgstr "屬性" + +#: includes/admin/class-mp-products-admin.php:2166 +msgid "Create your product variations here. You can reorder variations by using the number to left of each variation, or delete one by clicking the \"x\" to the right of each variation. NOTE: The variation that shows up first in this list will be considered the \"main variation\". The details from this variation will be used in product listings." +msgstr "" + +#: includes/admin/class-mp-products-admin.php:2061 +#: includes/admin/class-mp-products-admin.php:2332 +msgid "Value must be less than regular price" +msgstr "值必須小於正常價格" + +#: includes/admin/class-mp-products-admin.php:2043 +#: includes/admin/class-mp-products-admin.php:2306 +msgid "Regular Price" +msgstr "原價" + +#: includes/admin/class-mp-products-admin.php:2023 +#: includes/admin/class-mp-products-admin.php:2286 +msgid "External URL" +msgstr "外部網址" + +#: includes/admin/class-mp-products-admin.php:1988 +#: includes/admin/class-mp-products-admin.php:2245 +msgid "Enter the quantity that you have available to sell." +msgstr "輸入你有貨可賣的數量。" + +#: includes/admin/class-mp-products-admin.php:1987 +#: includes/admin/class-mp-products-admin.php:2244 +msgid "Inventory Count" +msgstr "庫存盤點" + +#: includes/admin/class-mp-products-admin.php:1977 +#: includes/admin/class-mp-products-admin.php:2234 +msgid "Track Inventory?" +msgstr "追蹤庫存嗎?" + +#: includes/admin/class-mp-products-admin.php:1871 +msgid "%1$sProduct Images%2$s %3$sAdd images of the product. The first image on the list is the featured image for this product (you can reorder images on the list)%2$s" +msgstr "%1$s商品圖片%2$s %3$s新增此商品的圖片。 列表中的第一個圖像是本產品的特色圖像(您可以對列表中的圖像進行重新排序)%2$s" + +#: includes/admin/class-mp-products-admin.php:1806 +msgid "Add variations for this product. e.g. If you are selling t-shirts, you can create Color & Size variations" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1804 +msgid "%3$sAdd variations for%2$s %1$sProduct%2$s" +msgstr "%3$s新增變形為%2$s %1$s商品%2$s" + +#: includes/admin/class-mp-products-admin.php:1776 +msgid "This product has a multiple variations %1$s(e.g. Multiple colors, sizes)%2$s" +msgstr "本產品具有多個變型 %1$s (例如:多個顏色,尺寸) %2$s" + +#: includes/admin/class-mp-products-admin.php:1775 +msgid "This is a unique product without variations" +msgstr "這是一個獨特的產品沒有變型" + +#: includes/admin/class-mp-products-admin.php:1700 +msgid "Extra Shipping Cost %1$s(if applicable)%2$s" +msgstr "" + +#: includes/admin/class-mp-products-admin.php:1659 +#: includes/admin/class-mp-products-admin.php:2112 +#: includes/admin/class-mp-products-admin.php:2359 +msgid "Weight" +msgstr "重量" + +#: includes/admin/class-mp-products-admin.php:1636 +#: includes/admin/class-mp-products-admin.php:2098 +#: includes/admin/class-mp-products-admin.php:2416 +msgid "Please enter a valid tax rate" +msgstr "請輸入一個有效的稅率" + +#: includes/admin/class-mp-products-admin.php:1531 +msgid "Limit Per Order %1$s(limit the number of the item a shopper can buy per order)%2$s" +msgstr "每筆訂單限制 %1$s(限制購物者可以按項目購買的商品數量)%2$s" + +#: includes/admin/class-mp-products-admin.php:1513 +msgid "SKU %1$s(Stock Keeping Unit)%2$s" +msgstr "貨號 %1$s(庫存單位)%2$s" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "%1$sPrice, Inventory & Variants%2$s %3$sSet price, manage inventory and create Product Variants (if appropriate for your product).%2$s" +msgstr "%1$s價格,庫存 & 變型%2$s %3$s設定價格, 管理庫存與建立商品變型 (如果適合您的產品)。%2$s" + +#: includes/admin/class-mp-products-admin.php:1503 +msgid "Product Variations" +msgstr "商品變型" + +#: includes/admin/class-mp-products-admin.php:1480 +msgid "External / Affiliate Link" +msgstr "外部 / 子公司連結" + +#: includes/admin/class-mp-products-admin.php:1471 +msgid "Digital Download" +msgstr "數位下載" + +#: includes/admin/class-mp-products-admin.php:1470 +msgid "Physical / Tangible Product" +msgstr "實體 / 有型商品" + +#: includes/admin/class-mp-products-admin.php:1464 +msgid "Product Kind %1$s(Physical Product, Digital, etc)%2$s" +msgstr "商品種類 %1$s(實體商品, 數位商品,等等)%2$s" + +#: includes/admin/class-mp-products-admin.php:1426 +msgid "Choose Products" +msgstr "選擇商品" + +#: includes/admin/class-mp-products-admin.php:1420 +msgid "If you would like, you can choose specific related products instead of using the ones generated by MarketPress" +msgstr "如果您願意,您可以選擇特定的相關產品,而不是使用 MarketPress生成的產品" + +#: includes/admin/class-mp-products-admin.php:1019 +msgid "Changes saved successfully" +msgstr "修改已成功儲存" + +#: includes/admin/class-mp-products-admin.php:826 +msgid "Option cannot be saved. Try again." +msgstr "選項無法儲存。再試一次。" + +#: includes/admin/class-mp-products-admin.php:821 +msgid "Option saved successfully." +msgstr "選項已成功儲存。" + +#: includes/admin/class-mp-products-admin.php:467 +msgid "Img" +msgstr "圖片" + +#: includes/admin/class-mp-product-attributes-list-table.php:57 +msgid "Product attribute(s) deleted successfully." +msgstr "產品屬性已成功刪除。" + +#: includes/admin/class-mp-product-attributes-admin.php:162 +msgid "- Create New Variation -" +msgstr "- 創建新的變型 -" + +#: includes/admin/class-mp-product-attributes-admin.php:144 +msgid "Only lowercase letters and dashes (-) are allowed." +msgstr "只允許使用小寫字母和破折號( - )。" + +#: includes/admin/class-mp-product-attributes-admin.php:139 +msgid "If a slug is not entered, it will be generated automatically. Max 32 characters." +msgstr "如果沒有輸入代稱,則會自動生成。最多32個字符。" + +#: includes/admin/class-mp-product-attributes-admin.php:138 +#: includes/admin/class-mp-product-attributes-list-table.php:23 +msgid "Slug" +msgstr "別名" + +#: includes/admin/class-mp-product-attributes-admin.php:130 +msgid "Max 45 characters." +msgstr "最多45個字符。" + +#: includes/admin/class-mp-product-attributes-admin.php:123 +msgid "Use the numbers on the left to sort. To delete - click the \"X\" to the right of each row." +msgstr "使用左側的數字進行排序。要刪除 - 單擊每行右側的“X”。" + +#: includes/admin/class-mp-product-attributes-admin.php:122 +msgid "Attribute Options" +msgstr "屬性選項" + +#: includes/admin/class-mp-product-attributes-admin.php:121 +msgid "Add Option" +msgstr "添加選項" + +#: includes/admin/class-mp-product-attributes-admin.php:105 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:523 +msgid "Sort Order" +msgstr "排序順序" + +#: includes/admin/class-mp-product-attributes-admin.php:87 +msgid "Alphabetical" +msgstr "字母順序" + +#: includes/admin/class-mp-product-attributes-admin.php:86 +msgid "ID" +msgstr "編號" + +#: includes/admin/class-mp-product-attributes-admin.php:84 +msgid "Select how the options will be sorted." +msgstr "選擇選項如何被儲存。" + +#: includes/admin/class-mp-product-attributes-admin.php:82 +msgid "Sort By" +msgstr "排序方式" + +#: includes/admin/class-mp-product-attributes-admin.php:75 +msgid "The name of the attribute (e.g. color, size, etc)" +msgstr "屬性的名稱(例如顏色,大小等)" + +#: includes/admin/class-mp-product-attributes-admin.php:74 +msgid "Attribute Name" +msgstr "屬性名稱" + +#: includes/admin/class-mp-product-attributes-admin.php:69 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Product Attribute" +msgstr "新增商品屬性" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:250 +msgid "Add Attribute" +msgstr "新增屬性" + +#: includes/admin/class-mp-product-attributes-admin.php:48 +#: includes/admin/class-mp-store-settings-admin.php:116 +msgid "Product Attributes" +msgstr "商品屬性" + +#: includes/admin/class-mp-pages-admin.php:71 +msgid "You can choose to make this page one of the following core store pages." +msgstr "您可以選擇使此頁面成為以下商店核心的頁面之一。" + +#: includes/admin/class-mp-pages-admin.php:66 +msgid "Network Store Base" +msgstr "網絡商店基礎" + +#: includes/admin/class-mp-pages-admin.php:61 +msgid "Checkout Page" +msgstr "結帳頁面" + +#: includes/admin/class-mp-pages-admin.php:52 +msgid "Store Page Settings" +msgstr "商店頁面設置" + +#: includes/admin/class-mp-orders-admin.php:1108 +msgid "Display billing/shipping info for this customer" +msgstr "顯示此客戶的帳單 / 配送信息" + +#: includes/admin/class-mp-orders-admin.php:1097 +msgid "View order “%s”" +msgstr "查看訂單 “%s”" + +#: includes/admin/class-mp-orders-admin.php:1072 +msgid "Flag as:" +msgstr "標記為:" + +#: includes/admin/class-mp-orders-admin.php:952 +msgid "Move To Trash" +msgstr "移到垃圾桶" + +#: includes/admin/class-mp-orders-admin.php:948 +msgid " Received" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:927 +msgid "Enter coupon code here" +msgstr "在此輸入優惠券代碼" + +#: includes/admin/class-mp-orders-admin.php:812 +msgid "The order status could not be updated due to unexpected error. Please try again." +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:740 +msgid "An invalid bulk action was requested. Please go back and try again." +msgstr "不正確批量操作被要求。請返回並再試一次。" + +#: includes/admin/class-mp-orders-admin.php:692 +msgid "The order status for order ID %1$s was updated successfully." +msgstr "此訂單狀態的訂單 ID %1$s 已成功更新。" + +#: includes/admin/class-mp-orders-admin.php:688 +msgid "Order statuses successfully updated." +msgstr "訂單狀態已成功更新。" + +#: includes/admin/class-mp-orders-admin.php:530 +msgid "Method" +msgstr "方法" + +#: includes/admin/class-mp-orders-admin.php:518 +msgid "Actual Shipping Method" +msgstr "實際運送方式" + +#: includes/admin/class-mp-orders-admin.php:513 +msgid "Method Paid For" +msgstr "付款方式" + +#: includes/admin/class-mp-orders-admin.php:504 +msgid "Amount Collected" +msgstr "收集數量" + +#: includes/admin/class-mp-orders-admin.php:477 +msgid "DHL" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:408 +msgid "There is no IPN history to show at this time" +msgstr "目前沒有 IPN歷史記錄可顯示" + +#: includes/admin/class-mp-orders-admin.php:345 +msgid "Type" +msgstr "類型" + +#: includes/admin/class-mp-orders-admin.php:343 +msgid "Gateway" +msgstr "付款關網" + +#: includes/admin/class-mp-orders-admin.php:301 +#: includes/common/template-functions.php:528 +msgid "Order History" +msgstr "歷史訂單" + +#: includes/admin/class-mp-orders-admin.php:291 +msgid "IPN History" +msgstr "IPN 歷史紀錄" + +#: includes/admin/class-mp-orders-admin.php:283 +msgid "Customer Info" +msgstr "客戶資訊" + +#: includes/admin/class-mp-orders-admin.php:279 +msgid "Order Details" +msgstr "訂單明細" + +#: includes/admin/class-mp-exporter-orders.php:157 +msgid "All Dates" +msgstr "全部日期" + +#: includes/admin/class-mp-dashboard-widgets.php:320 +msgid "Add Pages to Menu" +msgstr "添加頁面到選單" + +#: includes/admin/class-mp-dashboard-widgets.php:318 +msgid "Add-ons" +msgstr "擴展功能" + +#: includes/admin/class-mp-dashboard-widgets.php:317 +#: includes/admin/class-mp-store-settings-admin.php:119 +msgid "User Capabilities" +msgstr "使用者權限" + +#: includes/admin/class-mp-dashboard-widgets.php:316 +#: includes/admin/class-mp-setup-wizard.php:631 +#: includes/admin/store-settings/class-mp-store-settings-payments.php:50 +msgid "Payment Gateways" +msgstr "支付網關" + +#: includes/admin/class-mp-dashboard-widgets.php:315 +msgid "Shipping Rates" +msgstr "運送費率" + +#: includes/admin/class-mp-dashboard-widgets.php:312 +msgid "Configure" +msgstr "配置" + +#: includes/admin/class-mp-dashboard-widgets.php:309 +#: includes/admin/class-mp-products-admin.php:466 +#: includes/admin/class-mp-shortcode-builder.php:797 +msgid "Tags" +msgstr "標籤" + +#: includes/admin/class-mp-dashboard-widgets.php:308 +#: includes/admin/class-mp-products-admin.php:465 +msgid "Categories" +msgstr "分類" + +#: includes/admin/class-mp-dashboard-widgets.php:300 +msgid "Manage" +msgstr "管理" + +#: includes/admin/class-mp-dashboard-widgets.php:297 +msgid "Here's some quick links to manage your store and products." +msgstr "這裡有一些快速鏈接來管理您的商店和產品。" + +#: includes/admin/class-mp-dashboard-widgets.php:288 +msgid "low in stock" +msgstr "低庫存" + +#: includes/admin/class-mp-dashboard-widgets.php:287 +msgid "%s product" +msgid_plural "%s products" +msgstr[0] "" + +#: includes/admin/class-mp-dashboard-widgets.php:280 +msgid "received" +msgstr "已收到" + +#: includes/admin/class-mp-dashboard-widgets.php:279 +#: includes/admin/class-mp-dashboard-widgets.php:283 +msgid "%s order" +msgid_plural "%s orders" +msgstr[0] "%s 訂單" + +#: includes/admin/class-mp-dashboard-widgets.php:276 +msgid "Stock & Orders" +msgstr "庫存和訂單" + +#: includes/admin/class-mp-dashboard-widgets.php:261 +msgid "Last 30 Days" +msgstr "最近30天" + +#: includes/admin/class-mp-dashboard-widgets.php:256 +msgid "Last 7 Days" +msgstr "最近7天" + +#: includes/admin/class-mp-dashboard-widgets.php:251 +msgid "Yesterday" +msgstr "昨天" + +#: includes/admin/class-mp-dashboard-widgets.php:248 +#: includes/admin/class-mp-dashboard-widgets.php:253 +#: includes/admin/class-mp-dashboard-widgets.php:258 +#: includes/admin/class-mp-dashboard-widgets.php:263 +msgid " Orders" +msgstr " 訂單" + +#: includes/admin/class-mp-dashboard-widgets.php:246 +msgid "Today" +msgstr "今天" + +#: includes/admin/class-mp-dashboard-widgets.php:241 +msgid "Welcome back! Here's a quick summary of your store's performance." +msgstr "歡迎回來!以下是您商店業績的快速總結。" + +#: includes/admin/class-mp-dashboard-widgets.php:196 +#: includes/admin/class-mp-products-admin.php:895 +msgid "No products out of stock." +msgstr "沒有商品缺貨。" + +#: includes/admin/class-mp-dashboard-widgets.php:136 +#: includes/admin/class-mp-products-admin.php:839 +msgid "Stock Level" +msgstr "庫存級別" + +#: includes/admin/class-mp-dashboard-widgets.php:135 +#: includes/admin/class-mp-products-admin.php:838 +msgid "Variation" +msgstr "變型" + +#: includes/admin/class-mp-dashboard-widgets.php:121 +msgid "Low Stock (%s)" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:116 +msgid "Store Management" +msgstr "商店管理" + +#: includes/admin/class-mp-dashboard-widgets.php:115 +msgid "Store Reports" +msgstr "商店報告" + +#: includes/admin/class-mp-ajax.php:579 +#: includes/admin/class-mp-orders-admin.php:520 +#: includes/common/payment-gateways/2checkout.php:370 +#: includes/common/payment-gateways/authorizenet-aim.php:264 +#: includes/common/payment-gateways/mollie.php:93 +#: includes/common/payment-gateways/paymill.php:196 +#: includes/common/payment-gateways/pin.php:190 +#: includes/common/payment-gateways/skrill.php:157 +#: includes/common/payment-gateways/skrill.php:168 +#: includes/common/payment-gateways/wepay.php:143 +#: includes/public/class-mp-checkout.php:404 +msgid "Select One" +msgstr "選擇一個" + +#: includes/admin/class-mp-ajax.php:511 +msgid "Oops... we could not locate any orders by that ID. Please double check your order ID and try again." +msgstr "糟糕,我們找不到該 ID 的任何訂單。請仔細檢查您的訂單ID,然後重試。" + +#: includes/admin/class-mp-ajax.php:482 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:166 +#: includes/multisite/class-mp-admin-multisite.php:584 +msgid "Edit Page" +msgstr "編輯頁面" + +#: includes/admin/class-mp-ajax.php:346 +msgid "Cancel " +msgstr "取消 " + +#: includes/admin/class-mp-ajax.php:345 +msgid "Save " +msgstr "儲存 " + +#: includes/admin/class-mp-ajax.php:336 +msgid "Edit Description" +msgstr "編輯說明" + +#: includes/admin/class-mp-ajax.php:336 +msgid "HTML Markup" +msgstr "HTML 標記" + +#: includes/admin/class-mp-ajax.php:333 +msgid "Plain Text Only" +msgstr "僅纯文本" + +#: includes/admin/class-mp-ajax.php:329 +msgid "Additional Content / Information for this Variation" +msgstr "額外內容 / 資訊對此變形" + +#: includes/admin/class-mp-ajax.php:317 +#: includes/admin/class-mp-products-admin.php:1762 +msgid "Allow this product to be purchased even if it's out of stock" +msgstr "即使這個商品它是缺貨也能購買" + +#: includes/admin/class-mp-ajax.php:313 +#: includes/admin/class-mp-products-admin.php:1711 +msgid "Track Product Inventory" +msgstr "追蹤商品庫存" + +#: includes/admin/class-mp-ajax.php:300 +msgid "Extra Shipping Cost (if applicable)" +msgstr "額外的配送成本 (如果適用)" + +#: includes/admin/class-mp-ajax.php:295 +msgid "Ounces:" +msgstr "盎司:" + +#: includes/admin/class-mp-ajax.php:294 +msgid "Pounds:" +msgstr "英鎊:" + +#: includes/admin/class-mp-ajax.php:292 +msgid "Kilograms:" +msgstr "公斤:" + +#: includes/admin/class-mp-ajax.php:287 +#: includes/admin/class-mp-products-admin.php:1649 +msgid "Charge Shipping" +msgstr "收取運費" + +#: includes/admin/class-mp-ajax.php:273 +#: includes/admin/class-mp-products-admin.php:1623 +#: includes/admin/store-settings/class-mp-store-settings-general.php:454 +msgid "Tax Rate" +msgstr "稅率" + +#: includes/admin/class-mp-ajax.php:272 +#: includes/admin/class-mp-products-admin.php:1622 +#: includes/admin/class-mp-products-admin.php:2090 +#: includes/admin/class-mp-products-admin.php:2408 +msgid "Special Tax Rate" +msgstr "特別稅率" + +#: includes/admin/class-mp-ajax.php:271 +#: includes/admin/class-mp-products-admin.php:1625 +#: includes/admin/class-mp-products-admin.php:2092 +msgid "If you would like this product to use a special tax rate, enter it here. If you omit the \"%\" symbol the rate will be calculated as a fixed amount for each of this product in the user's cart." +msgstr "如果你想要這個產品,使用特殊的稅率,在此處輸入它。如果你省略\"%\"符號,將此使用者的購物車中的產品的每個計算率作為固定金額。" + +#: includes/admin/class-mp-ajax.php:268 +#: includes/admin/class-mp-products-admin.php:1599 +msgid "Charge Taxes (Special Rate)" +msgstr "收稅金(特別稅率)" + +#: includes/admin/class-mp-ajax.php:256 +#: includes/admin/class-mp-products-admin.php:1593 +#: includes/admin/class-mp-products-admin.php:2077 +#: includes/admin/class-mp-products-admin.php:2348 +msgid "End Date (if applicable)" +msgstr "結束日期 (如果適用)" + +#: includes/admin/class-mp-ajax.php:255 +#: includes/admin/class-mp-products-admin.php:1589 +#: includes/admin/class-mp-products-admin.php:2072 +msgid "Start Date (if applicable)" +msgstr "開始日期 (如果適用)" + +#: includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:1568 +msgid "Enter Sale Price" +msgstr "輸入銷售價" + +#: includes/admin/class-mp-ajax.php:250 +#: includes/admin/class-mp-products-admin.php:1547 +msgid "Set up a Sale for this Product" +msgstr "設置此產品的銷售" + +#: includes/admin/class-mp-ajax.php:206 includes/admin/class-mp-ajax.php:223 +msgid "Enter " +msgstr "輸入 " + +#: includes/admin/class-mp-ajax.php:193 +msgid "Browse" +msgstr "瀏覽" + +#: includes/admin/class-mp-ajax.php:184 includes/admin/class-mp-ajax.php:192 +msgid "http://" +msgstr "" + +#: includes/admin/class-mp-ajax.php:183 +msgid "External Product URL" +msgstr "外部產品網址" + +#: includes/admin/class-mp-ajax.php:237 +msgid "Limit Per Order" +msgstr "每筆訂單限制" + +#: includes/admin/class-mp-ajax.php:177 +#: includes/admin/class-mp-products-admin.php:1520 +msgid "Enter Price" +msgstr "輸入價格" + +#: includes/admin/class-mp-ajax.php:174 +#: includes/admin/class-mp-products-admin.php:1512 +msgid "Enter SKU" +msgstr "輸入貨號" + +#: includes/admin/class-mp-ajax.php:173 +msgid "(Stock Keeping Unit)" +msgstr "(庫存保持單位)" + +#: includes/admin/class-mp-ajax.php:158 +msgid "Remove Image" +msgstr "移除圖片" + +#: includes/admin/class-mp-ajax.php:74 +msgid "Variation Draft" +msgstr "變型草稿" + +#: includes/admin/class-mp-admin.php:296 +#: includes/admin/class-mp-dashboard-widgets.php:70 +msgid "Please wait...saving in progress..." +msgstr "請稍候,正在儲存..." + +#: includes/admin/class-mp-admin.php:295 +#: includes/admin/class-mp-dashboard-widgets.php:69 +msgid "Input is required" +msgstr "輸入是必需的" + +#: includes/admin/class-mp-admin.php:294 +#: includes/admin/class-mp-dashboard-widgets.php:68 +msgid "Valid number is required" +msgstr "有效的數字是必要的" + +#: includes/admin/class-mp-admin.php:292 +#: includes/admin/class-mp-dashboard-widgets.php:66 +msgid "Delete %s product variant" +msgstr "刪除 %s 商品變型" + +#: includes/admin/class-mp-admin.php:291 +#: includes/admin/class-mp-dashboard-widgets.php:65 +msgid "Delete %s product variants" +msgstr "刪除 %s 商品變型" + +#: includes/admin/class-mp-admin.php:290 +#: includes/admin/class-mp-dashboard-widgets.php:64 +msgid "Update inventory for %s product variant" +msgstr "更新存貨為 %s 商品變型" + +#: includes/admin/class-mp-admin.php:289 +#: includes/admin/class-mp-dashboard-widgets.php:63 +msgid "Update inventory for %s product variants" +msgstr "更新存貨為 %s 商品變型" + +#: includes/admin/class-mp-admin.php:288 +#: includes/admin/class-mp-dashboard-widgets.php:62 +msgid "Update price for %s product variant" +msgstr "更新價格為 %s 商品變型" + +#: includes/admin/class-mp-admin.php:287 +#: includes/admin/class-mp-dashboard-widgets.php:61 +msgid "Update prices for %s product variants" +msgstr "更新價格為 %s 商品變型" + +#: includes/admin/class-mp-admin.php:285 +#: includes/admin/class-mp-dashboard-widgets.php:59 +msgid "Creating variations, please wait..." +msgstr "創建變型中,請稍候..." + +#: includes/admin/class-mp-admin.php:96 +msgid "The following payment gateways have been deprecated, Cubepoints, Bitpay, iDEAL, Skrill, Google Checkout. If you were using one of these gateways, please setup a new payment gateway here." +msgstr "" + +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:61 +msgid "Packing Slip" +msgstr "出貨單" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:71 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:71 +#: includes/common/class-mp-gdpr.php:399 includes/common/class-mp-order.php:872 +#: includes/common/helpers.php:164 includes/public/class-mp-checkout.php:1434 +msgid "Shipping Address" +msgstr "送貨地址" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:66 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:66 +#: includes/common/class-mp-gdpr.php:392 includes/common/class-mp-order.php:864 +#: includes/common/helpers.php:163 includes/public/class-mp-checkout.php:1427 +msgid "Billing Address" +msgstr "帳單地址" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:61 +msgid "Invoice" +msgstr "發票" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:258 +msgid "Shipping Email: %s" +msgstr "配送電子郵件: %s" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:256 +msgid "Email: %s" +msgstr "電子郵件: %s" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:235 +msgid "Payment Method: %s" +msgstr "付款方式: %s" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:79 +msgid "The dir %s not exist or not writeable" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Packing Slip" +msgstr "PDF出貨單" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:47 +msgid "PDF Invoice" +msgstr "PDF發票" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:239 +msgid "Shop header/logo" +msgstr "商店表頭 / Logo" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:233 +msgid "Choose a template" +msgstr "選擇一個模板" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:226 +msgid "Template Settings" +msgstr "模板設置" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:221 +msgid "Disable automatic creation/attachment of invoices when only free products are ordered" +msgstr "" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:220 +msgid "Disable for free products" +msgstr "免費商品停用" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:216 +msgid "Attach invoice to" +msgstr "附加到發票到" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:214 +msgid "Customer Order Shipped email" +msgstr "客戶訂單發貨的電子郵件" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:212 +msgid "Customer New Order email" +msgstr "客戶新訂單的電子郵件" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:211 +msgid "Admin New Order email" +msgstr "管理員新訂單電子郵件" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:206 +msgid "download" +msgstr "下載" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:205 +msgid "How do you want to view the PDF?" +msgstr "你想要如何查看此 PDF?" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:203 +msgid "Open the PDF in a new browser tab/window" +msgstr "開啟 PDF 在新視窗標籤 / 視窗" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:202 +msgid "Download the PDF" +msgstr "下載此 PDF" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:158 +msgid "Export PDF" +msgstr "導出 PDF" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:103 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:106 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:109 +msgid "You can't download this order invoice" +msgstr "你不能下載此訂單發票" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:76 +msgid "Invalid Request" +msgstr "無效的請求" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:72 +msgid "Order not exist!" +msgstr "訂單不存在 !" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:67 +msgid "Invalid ID" +msgstr "無效的 ID" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1293 +msgid "Coupon added successfully" +msgstr "優惠券已成功添加" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1292 +msgid "Please enter a code" +msgstr "請輸入一個代碼" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1247 +msgid "No end" +msgstr "無結束時間" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1200 +msgid "Valid Dates" +msgstr "有效日期" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1195 +msgid "Code" +msgstr "代碼" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1027 +msgid "No Coupons found in Trash" +msgstr "垃圾箱中沒有找到優惠券" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1026 +msgid "No Coupons Found" +msgstr "找不到優惠券" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1025 +msgid "Search Coupons" +msgstr "搜尋優惠券" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1024 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1028 +msgid "View Coupon" +msgstr "檢視優惠券" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1023 +msgid "New Coupon" +msgstr "新優惠券" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1020 +msgid "Create New Coupon" +msgstr "新增優惠券" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1017 +msgid "Manage Coupons" +msgstr "管理優惠券" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1002 +msgid "An error occurred while removing your coupon. Please try again." +msgstr "刪除您的優惠券時出錯。請再試一次。" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:964 +msgid "Coupon can't be applied to this cart" +msgstr "優惠券不能應用於此購物車" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:951 +msgid "Invalid coupon code" +msgstr "無效的優惠代碼" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:794 +msgid "Help Text" +msgstr "協助文字" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:789 +msgid "Form Title" +msgstr "表單標題" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:783 +msgid "Coupons Settings" +msgstr "優惠券設置" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:764 +msgid "End Date" +msgstr "結束日期" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:758 +msgid "Does coupon have an end date?" +msgstr "優惠券有結束日期嗎?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:696 +msgid "Select Products" +msgstr "選擇商品" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:688 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:723 +#: includes/common/payment-gateways/paypal-payflow.php:402 +msgid "User" +msgstr "使用者" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:638 +msgid "Max Uses" +msgstr "最大使用次數" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:636 +msgid "Enter the maximum number of times this coupon can be used." +msgstr "輸入此優惠券可以使用的最大次數。" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:623 +msgid "Leave blank to allow all other coupons." +msgstr "留下空白以允許所有其他優惠券。" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:622 +msgid "Select combinable coupons" +msgstr "選擇可組合優惠券" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:618 +msgid "Can this coupon be combined with other coupons?" +msgstr "這張優惠卷可以結合其他優惠券嗎?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:613 +msgid "Apply to each applicable item once per cart" +msgstr "應用於每一個購物車中每個適用的項目" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:612 +msgid "Apply to each applicable item and quantity ordered" +msgstr "應用于每個適用的訂購項目和數量" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:609 +msgid "How should the discount amount be applied?" +msgstr "折扣金額應如何應用?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:605 +msgid "Discount Amount" +msgstr "優惠金額" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:604 +msgid "Value must either be a decimal number or a percentage" +msgstr "值必須是一個十進位數或百分比" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:602 +msgid "If you would like to give a percentage-based discount make sure to include the percent (%) symbol. Otherwise, the discount will be applied as a fixed amount off." +msgstr "如果你想要給基於百分比的折扣,請確保包含百分比 (%) 符號。否則,折扣將應用為固定金額。" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:595 +msgid "Letters and Numbers only." +msgstr "只有字母和數位。" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:589 +msgid "Coupon Settings" +msgstr "優惠券設置" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:447 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:795 +msgid "More than one code? That's OK! Just be sure to enter one at a time." +msgstr "有一個以上的代碼嗎?沒關係!只是一次只能輸入一個。" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:444 +msgid "Apply Code" +msgstr "使用優惠券代碼" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:314 +msgid "Coupon Discounts" +msgstr "優惠券折扣" + +#: includes/addons/class-mp-addons-list-table.php:89 +msgid "1 add-on disabled" +msgid_plural "%s add-ons disabled" +msgstr[0] "%s 個擴展已停用" + +#: includes/addons/class-mp-addons-list-table.php:84 +msgid "1 add-on enabled" +msgid_plural "%s add-ons enabled" +msgstr[0] "%s 個擴展已啟用" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Disabled" +msgstr "停用" + +#: includes/addons/class-mp-addons-list-table.php:48 +msgid "Enable add-on" +msgstr "啟用擴展" + +#: includes/addons/class-mp-addons-list-table.php:45 +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:129 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:67 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:135 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:168 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:202 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:263 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:296 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:330 +msgid "Enabled" +msgstr "啟用" + +#: includes/addons/class-mp-addons-list-table.php:45 +msgid "Disable add-on" +msgstr "停用擴展" + +#: includes/addons/class-mp-addons-list-table.php:34 +msgid "Disable" +msgstr "停用" + +#: includes/addons/class-mp-addons-list-table.php:33 +msgid "Enable" +msgstr "啟用" + +#: includes/addons/class-mp-addons-list-table.php:21 +#: includes/admin/class-mp-products-admin.php:2280 +#: includes/common/class-mp-product.php:2916 +msgid "Description" +msgstr "描述" + +#: includes/common/template-functions.php:2889 +#: includes/multisite/template-functions.php:407 +msgid "Popularity (Least Popular - Most Popular)" +msgstr "人氣(最不受歡迎 - 最受歡迎)" + +#: includes/common/template-functions.php:2888 +#: includes/multisite/template-functions.php:406 +msgid "Popularity (Most Popular - Least Popular)" +msgstr "人氣(最受歡迎 - 最不受歡迎)" + +#: includes/common/template-functions.php:2885 +#: includes/multisite/template-functions.php:403 +msgid "Name (Z-A)" +msgstr "名稱(Z-A)" + +#: includes/common/template-functions.php:2884 +#: includes/multisite/template-functions.php:402 +msgid "Name (A-Z)" +msgstr "名稱(A-Z)" + +#: includes/common/template-functions.php:2883 +#: includes/multisite/template-functions.php:401 +msgid "Release Date (Oldest to Latest)" +msgstr "發佈日期(最舊到最新)" + +#: includes/common/template-functions.php:2882 +#: includes/multisite/template-functions.php:400 +msgid "Release Date (Latest to Oldest)" +msgstr "發佈日期(最新到最新)" + +#: includes/admin/class-mp-dashboard-widgets.php:284 +msgid "paid" +msgstr "己付款" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "One Time Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Customer Counter" +msgstr "客戶櫃檯" + +#: includes/common/shipping-modules/mp-ups.php:183 +msgid "Daily Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:182 +msgid "For the most accurate rates, please select the appropriate pick up type for your business." +msgstr "" + +#: includes/admin/class-mp-admin.php:374 +msgid "Page saved." +msgstr "頁面已儲存。" + +#: includes/admin/class-mp-admin.php:370 +msgid "Custom field deleted." +msgstr "自訂字段已刪除。" + +#: includes/admin/class-mp-admin.php:369 +msgid "Custom field updated." +msgstr "自訂欄位已更新。" + +#: includes/common/payment-gateways/_bitpay.php:541 +msgid "%s - The payment request expired, - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:536 +msgid "%s - The payment not credited in merchants bitpay account, action required. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:252 +msgid "If enabled, you will recieve an email for each status update on payment." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:240 +msgid "Speed at which the bitcoin transaction registers as \"confirmed\" to the store. This overrides your merchant settings on the Bitpay website." +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:238 +msgid "Transaction Speed" +msgstr "交易速度" + +#: includes/common/payment-gateways/_bitpay.php:244 +msgid "Low" +msgstr "低" + +#: includes/common/payment-gateways/_bitpay.php:243 +msgid "Medium" +msgstr "中" + +#: includes/common/payment-gateways/_bitpay.php:242 +msgid "High" +msgstr "高" + +#: includes/common/payment-gateways/_bitpay.php:177 +#: includes/common/payment-gateways/_bitpay.php:517 +#: includes/common/payment-gateways/_bitpay.php:522 +msgid "%s - The payment request is under process. Bitpay invoice status - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:175 +#: includes/common/payment-gateways/_bitpay.php:527 +msgid "%s - The payment request has been processed - %s" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:150 +#: includes/common/payment-gateways/_bitpay.php:294 +msgid "Incorrect order invoice, please contact site administrator" +msgstr "" + +#: includes/common/payment-gateways/_bitpay.php:141 +msgid "We could not verify order invoice details, please try again or contact site administrator for help" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:81 +msgid "Login to Simplify to get your API credentials. Enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:605 +#: includes/common/payment-gateways/paypal-express.php:647 +msgid "Express Checkout is PayPal's premier checkout solution, which streamlines the checkout process for buyers and keeps them on your site after making a purchase. Unlike PayPal Pro, there are no additional fees to use Express Checkout, though you may need to do a free upgrade to a business account. More Info »" +msgstr "" + +#. Plugin URI of the plugin/theme +msgid "https://premium.wpmudev.org/project/e-commerce/" +msgstr "" + +#. Author of the plugin/theme +msgid "WPMU DEV" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:541 +#: includes/admin/class-mp-orders-admin.php:543 +msgid "Tracking Number" +msgstr "追蹤號碼" + +#: includes/common/class-mp-order.php:805 +#: includes/common/payment-gateways/stripe.php:336 +#: includes/public/class-mp-checkout.php:402 +msgid "Country" +msgstr "國家" + +#: includes/common/class-mp-order.php:784 +#: includes/common/payment-gateways/stripe.php:338 +msgid "City" +msgstr "城市" + +#: includes/common/class-mp-order.php:780 +msgid "Address 2" +msgstr "地址 2" + +#: includes/common/payment-gateways/stripe.php:340 +msgid "Address" +msgstr "地址" + +#: includes/common/class-mp-cart.php:752 includes/common/class-mp-gdpr.php:378 +msgid "Order Total" +msgstr "訂單總額" + +#: includes/admin/class-mp-orders-admin.php:360 +msgid "Payment Total" +msgstr "付款總額" + +#: includes/admin/class-mp-orders-admin.php:347 +msgid "Transaction ID" +msgstr "交易編號" + +#: includes/common/payment-gateways/wepay.php:207 +msgid "The WePay Card Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:186 +#: includes/common/shipping-modules/mp-fedex.php:283 +msgid "Account ID" +msgstr "帳戶 ID" + +#: includes/common/payment-gateways/wepay.php:179 +msgid "Access Token" +msgstr "訪問令牌" + +#: includes/common/payment-gateways/wepay.php:172 +msgid "Client Secret" +msgstr "客戶端密鑰" + +#: includes/common/payment-gateways/wepay.php:165 +msgid "Client ID" +msgstr "客戶端 ID" + +#: includes/common/payment-gateways/wepay.php:159 +msgid "You must login to WePay to get your API credentials. Make sure to check \"Tokenize credit cards\" option under \"API Keys\" section of your WePay app." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:154 +msgid "When in live mode it is recommended to use SSL certificate setup for the site where the checkout form will be displayed." +msgstr "當在線模式下,建議使用SSL證書設置來顯示結帳表單。" + +#: includes/common/payment-gateways/wepay.php:148 +msgid "Donation" +msgstr "捐獻" + +#: includes/common/payment-gateways/wepay.php:147 +msgid "Event" +msgstr "事件活動" + +#: includes/common/payment-gateways/wepay.php:146 +msgid "Personal" +msgstr "個人的" + +#: includes/common/payment-gateways/wepay.php:145 +msgid "Service" +msgstr "服務" + +#: includes/common/payment-gateways/wepay.php:144 +msgid "Goods" +msgstr "貨品" + +#: includes/common/payment-gateways/wepay.php:141 +msgid "Choose type of payments" +msgstr "選擇付款方式類型" + +#: includes/common/payment-gateways/wepay.php:140 +msgid "Checkout Type" +msgstr "結帳類型" + +#: includes/common/payment-gateways/wepay.php:134 +msgid "Staging" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:131 +msgid "Choose STAGING if you have registered the app on stage.wepay.com, or PRODUCTION if you registered on www.wepay.com" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:36 +#: includes/common/payment-gateways/wepay.php:299 +msgid "WePay" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:366 +msgid "Rejected - A payment was rejected." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:360 +msgid "Failed - A payment was rejected due to an error." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:342 +msgid "PayWay balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:298 +msgid "Full path of the cacerts.crt file" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:284 +msgid "User Name" +msgstr "用戶名稱" + +#: includes/common/payment-gateways/_payway.php:277 +msgid "Biller Code" +msgstr "" + +#: includes/common/payment-gateways/_payway.php:273 +msgid "Log Directory" +msgstr "日誌目錄" + +#: includes/common/payment-gateways/_payway.php:266 +msgid "Encryption Key" +msgstr "加密金鑰" + +#: includes/common/payment-gateways/_payway.php:60 +msgid "Your PayWay transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:40 +#: includes/common/payment-gateways/_payway.php:41 +msgid "PayWay" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:862 +msgid "You must register this application with PayPal using your business account login to get an Application ID that will work with your API credentials. A bit of a hassle, but worth it! In the near future we will be looking for ways to simplify this process. Register then submit your application while logged in to the developer portal. Note that you do not need an Application ID for testing in sandbox mode. More Information »" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:818 +#: includes/common/payment-gateways/paypal-chained-payments.php:840 +#: includes/common/payment-gateways/paypal-express.php:705 +msgid "You must login to PayPal and create an API signature to get your credentials. Instructions »" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:378 +msgid "Use Payflow payment gateway to accept online payments using your Internet merchant account and processing network. PayPal Payflow Pro is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:595 +msgid "Tags Only" +msgstr "僅標籤" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:594 +msgid "Category Only" +msgstr "僅分類" + +#: includes/admin/class-mp-shortcode-builder.php:795 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:593 +msgid "Category & Tags" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:591 +msgid "Relate Products By" +msgstr "關聯商品依" + +#: includes/admin/class-mp-shortcode-builder.php:1008 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:455 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:751 +msgid "Right" +msgstr "右邊" + +#: includes/admin/class-mp-shortcode-builder.php:1007 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:454 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:749 +msgid "Left" +msgstr "左邊" + +#: includes/admin/class-mp-shortcode-builder.php:1009 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:750 +msgid "Center" +msgstr "居中" + +#: marketpress.php:273 +msgid "Orders from your e-commerce store." +msgstr "" + +#: marketpress.php:231 +msgid "Products for your e-commerce store." +msgstr "" + +#: marketpress.php:222 +msgid "Edit Product" +msgstr "編輯商品" + +#. Description of the plugin/theme +msgid "The complete WordPress ecommerce plugin - works perfectly with BuddyPress and Multisite too to create a social marketplace, where you can take a percentage! Activate the plugin, adjust your settings then add some products to your store." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:272 +msgid "Beside" +msgstr "周围" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:271 +msgid "Above" +msgstr "上列" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:268 +msgid "Pin Count" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:261 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:287 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:318 +msgid "All View" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:260 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:286 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:317 +msgid "Single View" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:259 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:285 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:316 +msgid "Off" +msgstr "關閉" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:578 +msgid "Related Product Limit" +msgstr "關聯商品欄數" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:681 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1201 +msgid "Applies To" +msgstr "應用到" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:685 +msgid "All Products" +msgstr "全部商品" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:487 +msgid "The label shown for the tax line item in the cart. Taxes, VAT, GST, etc." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:485 +msgid "Tax Label" +msgstr "稅款標籤" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:81 +msgid "Apply" +msgstr "應用" + +#: includes/admin/class-mp-admin.php:192 +msgid "MarketPress Instructions" +msgstr "MarketPress 使用說明" + +#: includes/admin/class-mp-products-admin.php:1954 +#: includes/admin/class-mp-products-admin.php:2194 includes/common/data.php:62 +#: includes/common/helpers.php:150 +msgid "Taxes" +msgstr "稅金" + +#: includes/admin/class-mp-products-admin.php:1417 +#: includes/common/class-mp-product.php:2900 +msgid "Related Products" +msgstr "關聯商品" + +#: includes/common/shipping-modules/mp-usps.php:282 +#: includes/common/shipping-modules/mp-usps.php:316 +msgid "@ Max" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "(3-5 days)" +msgstr "(3-5 天)" + +#: includes/common/shipping-modules/mp-usps.php:116 +msgid "Priority Mail Express International Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:92 +msgid "Priority Mail Padded Flat Rate Envelope" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:171 +#: includes/common/shipping-modules/mp-pickup.php:247 +msgid "In Store" +msgstr "在商店" + +#: includes/common/shipping-modules/mp-pickup.php:159 +msgid "Pickup Fee" +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:141 +msgid "This option allows your customers to indicate that they will pick-up their order at your place of business." +msgstr "" + +#: includes/common/shipping-modules/mp-pickup.php:60 +#: includes/common/shipping-modules/mp-pickup.php:76 +#: includes/common/shipping-modules/mp-pickup.php:176 +msgid "Pickup Instructions" +msgstr "自取指示" + +#: includes/common/shipping-modules/mp-pickup.php:24 +#: includes/common/shipping-modules/mp-pickup.php:254 +msgid "Pickup" +msgstr "自取" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping - 0.00" +msgstr "免費送貨 - 0.00" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:256 +#: includes/common/shipping-modules/class-mp-shipping-api.php:259 +#: includes/common/shipping-modules/mp-usps.php:440 +#: includes/common/shipping-modules/mp-usps.php:443 +msgid "Free Shipping" +msgstr "免運費" + +#: includes/common/shipping-modules/mp-fedex.php:309 +msgid "Your Packaging" +msgstr "您的包裝" + +#: includes/common/shipping-modules/mp-fedex.php:301 +msgid "Station" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:300 +msgid "Request Courier" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:299 +msgid "Drop Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:298 +msgid "Business Service Center" +msgstr "商務服務中心" + +#: includes/common/shipping-modules/mp-fedex.php:297 +msgid "Regular Pickup" +msgstr "" + +#: includes/common/payment-gateways/wepay.php:135 +#: includes/common/shipping-modules/mp-fedex.php:264 +msgid "Production" +msgstr "生產" + +#: includes/common/payment-gateways/simplify.php:207 +msgid "Simplify Commerce by MasterCard" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:104 +msgid "When in live mode, although it is not required, Simplify recommends you have an SSL certificate." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:183 +#: includes/common/payment-gateways/simplify.php:87 +msgid "Public Key" +msgstr "公開金鑰" + +#: includes/common/payment-gateways/paymill.php:175 +#: includes/common/payment-gateways/simplify.php:94 +msgid "Private Key" +msgstr "私密金鑰" + +#: includes/common/payment-gateways/simplify.php:71 +msgid "Simplify helps merchants to accept online payments from Mastercard, Visa, American Express, Discover, JCB, and Diners Club cards. It's that simple. We offer a merchant account and payment gateway in a single, secure package so you can concentrate on what really matters to your business. Only supports USD currently." +msgstr "" + +#: includes/common/payment-gateways/wepay.php:267 +msgid "%1$s" +msgstr "" + +#: includes/common/payment-gateways/simplify.php:151 +msgid "The Simplify Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/simplify.php:18 +msgid "Simplify" +msgstr "簡化" + +#: includes/common/payment-gateways/pin.php:255 +msgid "%1$s Card %2$s" +msgstr "" + +#: includes/common/payment-gateways/pin.php:211 +msgid "The PIN Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/pin.php:187 +msgid "Selecting a currency other than currency supported by PIN may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/pin.php:164 +msgid "You must login to PIN to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/pin.php:158 +msgid "When in live mode PIN recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/pin.php:45 +#: includes/common/payment-gateways/pin.php:286 +msgid "PIN" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:830 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:534 +#: includes/common/payment-gateways/paypal-express.php:865 +msgid "The payment is pending" +msgstr "此付款待定" + +#: includes/common/payment-gateways/paymill.php:235 +msgid "The Paymill Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:169 +msgid "You must login to Paymill to get your API credentials. You can enter your test keys, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/paymill.php:45 +#: includes/common/payment-gateways/paymill.php:308 +msgid "Paymill" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:90 +msgid "Invalid cardholder" +msgstr "不正確持卡人" + +#: includes/common/payment-gateways/paymill.php:89 +msgid "Card is no longer valid or has expired" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:88 +msgid "Please enter a valid Card CVC" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:87 +msgid "Please choose a valid Expiration Date." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:99 +#: includes/common/payment-gateways/skrill.php:100 +msgid "Skrill (Moneybookers)" +msgstr "" + +#: includes/common/shipping-modules/mp-weight-rate.php:24 +#: includes/common/shipping-modules/mp-weight-rate.php:292 +msgid "Weight Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:303 +msgid "USPS Offered International Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:270 +msgid "USPS Offered Domestic Services" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:264 +msgid "USPS Settings" +msgstr "USPS 設置" + +#: includes/common/shipping-modules/mp-usps.php:145 +msgid "Flat Rate Large" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:140 +msgid "Flat Rate Medium 2" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:135 +msgid "Flat Rate Medium 1" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:130 +msgid "Flat Rate Small" +msgstr "統一費率小" + +#: includes/common/shipping-modules/mp-usps.php:118 +msgid "First Class International Parcel" +msgstr "第一類國際包裹" + +#: includes/common/shipping-modules/mp-usps.php:114 +msgid "Priority Mail International Small Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:112 +msgid "Priority Mail International Medium Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:110 +msgid "Priority Mail International Large Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:108 +msgid "Priority Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:106 +msgid "Express Mail International Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:104 +msgid "Express Mail International" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:98 +msgid "Library Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:96 +msgid "Media Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "First-Class Mail Parcel" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:90 +msgid "Priority Mail Small Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:88 +msgid "Priority Mail Medium Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +#: includes/common/shipping-modules/mp-usps.php:88 +#: includes/common/shipping-modules/mp-usps.php:90 +#: includes/common/shipping-modules/mp-usps.php:92 +#: includes/common/shipping-modules/mp-usps.php:94 +msgid "(2-4 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:86 +msgid "Priority Mail Large Flat Rate Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "(2-4) days" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:84 +msgid "Priority Mail" +msgstr "優先郵件" + +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "Express Mail Sunday/Holiday Delivery Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:80 +msgid "Express Mail Flat Rate Boxes Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:78 +msgid "Express Mail Flat Rate Boxes" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:76 +msgid "Express Mail Sunday/Holiday Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:74 +msgid "Express Mail Hold For Pickup" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:72 +#: includes/common/shipping-modules/mp-usps.php:74 +#: includes/common/shipping-modules/mp-usps.php:76 +#: includes/common/shipping-modules/mp-usps.php:78 +#: includes/common/shipping-modules/mp-usps.php:80 +#: includes/common/shipping-modules/mp-usps.php:82 +msgid "(1-2 days)" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:72 +msgid "Express Mail" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:67 +#: includes/common/shipping-modules/mp-usps.php:902 +msgid "USPS" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:534 +msgid "UPS (beta)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:166 +msgid "Required if using negotiated rates" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "Worldwide Express Plus" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "(Scheduled)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:56 +msgid "Standard" +msgstr "標準" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "(2-5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:55 +msgid "Worldwide Expedited" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:54 +msgid "Worldwide Express" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "2nd Day Air AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "(1 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:52 +msgid "Next Day Air Early AM" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "Next Day Air Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "3 Day Select" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:49 +msgid "Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:48 +msgid "2nd Day Air" +msgstr "" + +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "Next Day Air" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:475 +#: includes/common/shipping-modules/mp-ups.php:43 +msgid "UPS" +msgstr "" + +#: includes/common/shipping-modules/mp-table-rate.php:27 +#: includes/common/shipping-modules/mp-table-rate.php:318 +msgid "Table Rate" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:71 +#: includes/common/shipping-modules/mp-table-quantity.php:77 +msgid "Shipping Cost: " +msgstr "配送成本:" + +#: includes/common/shipping-modules/mp-table-quantity.php:70 +#: includes/common/shipping-modules/mp-table-quantity.php:76 +msgid "If quantity is greater than:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:66 +msgid "Each band must be a higher price than the one above it." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:56 +msgid "Number of Bands:" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:53 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping. Each layer must be a higher quantity than the previous." +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:51 +msgid "Table Quantity Settings" +msgstr "" + +#: includes/common/shipping-modules/mp-table-quantity.php:31 +msgid "Table Quantity" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:135 +#: includes/common/shipping-modules/mp-table-rate.php:174 +#: includes/common/shipping-modules/mp-weight-rate.php:189 +msgid "European Union" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:123 +#: includes/common/shipping-modules/mp-table-rate.php:162 +#: includes/common/shipping-modules/mp-weight-rate.php:177 +msgid "United States" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:111 +#: includes/common/shipping-modules/mp-table-rate.php:151 +#: includes/common/shipping-modules/mp-weight-rate.php:166 +msgid "In Country" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:146 +#: includes/common/shipping-modules/mp-table-rate.php:186 +#: includes/common/shipping-modules/mp-weight-rate.php:201 +msgid "International" +msgstr "國際" + +#: includes/common/shipping-modules/mp-flat-rate.php:101 +#: includes/common/shipping-modules/mp-table-rate.php:141 +#: includes/common/shipping-modules/mp-weight-rate.php:156 +msgid "Canada" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:92 +#: includes/common/shipping-modules/mp-table-rate.php:132 +#: includes/common/shipping-modules/mp-weight-rate.php:147 +msgid "Hawaii and Alaska" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:83 +#: includes/common/shipping-modules/mp-table-rate.php:123 +#: includes/common/shipping-modules/mp-weight-rate.php:138 +msgid "Lower 48 States" +msgstr "" + +#: includes/common/shipping-modules/mp-flat-rate.php:64 +msgid "Be sure to enter a shipping price for every option or those customers may get free shipping." +msgstr "確保為每個選項輸入運費,或者客戶可以免費運送。" + +#: includes/common/shipping-modules/mp-flat-rate.php:25 +#: includes/common/shipping-modules/mp-flat-rate.php:223 +msgid "Flat Rate" +msgstr "單一費率" + +#: includes/common/shipping-modules/mp-fedex.php:761 +msgid "FedEx (beta)" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Centimeters" +msgstr "公分" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:137 +msgid "Inches" +msgstr "英吋" + +#: includes/admin/class-mp-products-admin.php:1676 +#: includes/admin/class-mp-setup-wizard.php:547 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:166 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +msgid "Kilograms" +msgstr "" + +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:103 +msgid " %1$s - %2$s" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:358 +msgid "Max Weight per Box" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:356 +msgid "Box Dimensions" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:354 +msgid "Box Name" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:344 +msgid "Total weight selects the box size used for calculating Shipping costs." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:343 +msgid "For each box defined enter the maximum weight it can contain." +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:341 +msgid "Enter your standard box sizes as LengthxWidthxHeight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:386 +#: includes/common/shipping-modules/mp-ups.php:193 +#: includes/common/shipping-modules/mp-usps.php:234 +#: includes/common/shipping-modules/mp-usps.php:338 +msgid "Standard Boxes and Weight Limits" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:328 +msgid "Handling Charge per Interntional Shipment" +msgstr "" + +#: includes/common/shipping-modules/mp-usps.php:294 +msgid "Handling Charge per Domestic Shipment " +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:388 +#: includes/common/shipping-modules/mp-ups.php:196 +#: includes/common/shipping-modules/mp-usps.php:237 +msgid "Add Box" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +#: includes/common/shipping-modules/mp-ups.php:47 +msgid "(Next Day)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:63 +msgid "Europe First International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:62 +msgid "International Priority" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:61 +#: includes/common/shipping-modules/mp-fedex.php:62 +#: includes/common/shipping-modules/mp-ups.php:54 +#: includes/common/shipping-modules/mp-ups.php:57 +msgid "(1-3 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:61 +msgid "International First" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "(5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:60 +msgid "International Economy" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "(2-7 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:56 +msgid "Smart Post" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:55 +#: includes/common/shipping-modules/mp-ups.php:49 +#: includes/common/shipping-modules/mp-ups.php:58 +msgid "(1-5 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:55 +msgid "Ground Home Delivery" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "(1-7 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:54 +msgid "Fedex Ground" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:53 +#: includes/common/shipping-modules/mp-ups.php:50 +msgid "(3 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:53 +msgid "Fedex Express Saver" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +#: includes/common/shipping-modules/mp-ups.php:48 +#: includes/common/shipping-modules/mp-ups.php:53 +msgid "(2 Days)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:52 +msgid "Fedex 2 Day" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "(2 Days am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:51 +msgid "Fedex 2 Day AM" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +#: includes/common/shipping-modules/mp-ups.php:51 +msgid "(1 Day)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:50 +msgid "Standard Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "(1 Day am )" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:49 +msgid "Priority Overnight" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "(1 Day am)" +msgstr "" + +#: includes/common/shipping-modules/mp-fedex.php:48 +msgid "First Overnight" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:476 +#: includes/common/shipping-modules/mp-fedex.php:31 +msgid "FedEx" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:270 +#: includes/common/payment-gateways/simplify.php:179 +#: includes/common/payment-gateways/stripe.php:365 +msgid "%1$s Card ending in %2$s - Expires %3$s" +msgstr "" + +#: includes/common/payment-gateways/paymill.php:259 +#: includes/common/payment-gateways/pin.php:238 +#: includes/common/payment-gateways/simplify.php:171 +msgid "%s Store Purchase - Order ID: %s, Email: %s" +msgstr "" + +#: includes/common/payment-gateways/stripe.php:266 +msgid "You must login to Stripe to get your API credentials. You can enter your test credentials, then live ones when ready." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:261 +msgid "When in live mode Stripe recommends you have an SSL certificate setup for the site where the checkout form will be displayed." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:311 +msgid "The Stripe Token was not generated correctly. Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/class-mp-gateway-api.php:263 +#: includes/common/payment-gateways/paymill.php:122 +#: includes/common/payment-gateways/stripe.php:222 +msgid "Card Number" +msgstr "卡號" + +#: includes/common/payment-gateways/paymill.php:86 +msgid "Please enter a valid Credit Card Number." +msgstr "" + +#: includes/common/payment-gateways/stripe.php:45 +#: includes/common/payment-gateways/stripe.php:433 +msgid "Stripe" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:750 +msgid "Sets the background color for the payment page. By default, the color is white." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:745 +msgid "Sets the background color for the header of the payment page. By default, the color is white." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:740 +msgid "Sets the border color around the header of the payment page. The border is a 2-pixel perimeter around the header space, which is 750 pixels wide by 90 pixels high. By default, the color is black." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:735 +msgid "URL for an image you want to appear at the top left of the payment page. The image has a maximum size of 750 pixels wide by 90 pixels high. PayPal recommends that you provide an image that is stored on a secure (https) server. If you do not specify an image, the business name is displayed." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:857 +#: includes/common/payment-gateways/paypal-express.php:1131 +msgid "The payment is pending because it is part of an order that has been authorized but not settled." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:853 +#: includes/common/payment-gateways/paypal-express.php:1127 +msgid "The payment is pending because it has been authorized but not settled. You must capture the funds first." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:847 +#: includes/common/payment-gateways/paypal-express.php:1120 +msgid "You denied the payment when it was marked as pending." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:837 +#: includes/common/payment-gateways/paypal-express.php:1108 +msgid "A reversal has occurred on this transaction due to an unknown reason." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:836 +#: includes/common/payment-gateways/paypal-express.php:1107 +msgid "A reversal has occurred on this transaction because you have given the customer a refund." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:835 +#: includes/common/payment-gateways/paypal-express.php:1106 +msgid "A reversal has occurred on this transaction due to a complaint about the transaction from your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:834 +#: includes/common/payment-gateways/paypal-express.php:1105 +msgid "A reversal has occurred on this transaction due to your customer triggering a money-back guarantee." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:833 +#: includes/common/payment-gateways/paypal-express.php:1104 +msgid "A reversal has occurred on this transaction due to a chargeback by your customer." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:1101 +msgid "A payment was reversed due to a chargeback or other type of reversal. The funds have been removed from your account balance and returned to the buyer:" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:826 +#: includes/common/payment-gateways/paypal-express.php:1097 +msgid "A payment has been accepted." +msgstr "一個付款已被接受。" + +#: includes/common/payment-gateways/paypal-express.php:818 +#: includes/common/payment-gateways/paypal-express.php:1087 +msgid "The transaction has not terminated, e.g. an authorization may be awaiting completion." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:531 +#: includes/common/payment-gateways/paypal-express.php:810 +#: includes/common/payment-gateways/paypal-express.php:1077 +msgid "The payment has failed. This happens only if the payment was made from your customer's bank account." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:806 +#: includes/common/payment-gateways/paypal-express.php:1072 +msgid "An authorization for this transaction has been voided." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:802 +#: includes/common/payment-gateways/paypal-express.php:1067 +msgid "The authorization period for this payment has been reached." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:798 +#: includes/common/payment-gateways/paypal-express.php:1062 +msgid "A reversal has been canceled; for example, when you win a dispute and the funds for the reversal have been returned to you." +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:499 +#: includes/common/payment-gateways/paypal-express.php:1163 +msgid "PayPal Express Checkout" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:798 +msgid "Gateway Settings Page Message" +msgstr "" + +#: includes/common/payment-gateways/paypal-express.php:725 +msgid "Signature" +msgstr "簽名" + +#: includes/common/payment-gateways/eway31.php:506 +#: includes/common/payment-gateways/eway31.php:533 +#: includes/common/shipping-modules/mp-fedex.php:276 +msgid "API Password" +msgstr "API 密碼" + +#: includes/common/payment-gateways/paypal-chained-payments.php:773 +msgid "Enter a percentage of all store sales to collect as a fee. Decimals allowed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:757 +msgid "Using PayPal Chained Payments allows you as the multisite network owner to collect a predefined fee or percentage of all sales on network MarketPress stores! This is invisible to the customers who purchase items in a store, and all PayPal fees will be charged to the store owner. To use this option you must create API credentials, and you should make all other gateways unavailable or limited above." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:338 +msgid "Please be aware that we will deduct a ?% fee from the total of each transaction in addition to any fees PayPal may charge you. If for any reason you need to refund a customer for an order, please contact us with a screenshot of the refund receipt in your PayPal history as well as the Transaction ID of our fee deduction so we can issue you a refund. Thank you!" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:698 +#: includes/common/payment-gateways/paypal-express.php:149 +msgid "There was a problem connecting to PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:470 +#: includes/common/payment-gateways/paypal-express.php:1053 +msgid "There was a problem verifying the IPN string with PayPal. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:310 +msgid "There was a problem connecting to PayPal to check the status of your purchase. Please check the status of your order here »" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:539 +#: includes/common/payment-gateways/paypal-chained-payments.php:254 +#: includes/common/payment-gateways/paypal-express.php:1139 +msgid "The payment is pending." +msgstr "此付款待定。" + +#: includes/common/payment-gateways/paypal-chained-payments.php:251 +#: includes/common/payment-gateways/paypal-chained-payments.php:531 +#: includes/common/payment-gateways/paypal-express.php:862 +#: includes/common/payment-gateways/paypal-express.php:1136 +msgid "The payment is pending for an unknown reason. For more information, contact PayPal customer service." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:250 +#: includes/common/payment-gateways/paypal-chained-payments.php:530 +#: includes/common/payment-gateways/paypal-express.php:861 +#: includes/common/payment-gateways/paypal-express.php:1135 +msgid "The payment is pending because you are not yet verified. You must verify your account before you can accept this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:249 +#: includes/common/payment-gateways/paypal-chained-payments.php:529 +#: includes/common/payment-gateways/paypal-express.php:860 +#: includes/common/payment-gateways/paypal-express.php:1134 +msgid "The payment is pending because it was made via credit card and you must upgrade your account to Business or Premier status in order to receive the funds. It can also mean that you have reached the monthly limit for transactions on your account." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:248 +#: includes/common/payment-gateways/paypal-chained-payments.php:528 +#: includes/common/payment-gateways/paypal-express.php:859 +#: includes/common/payment-gateways/paypal-express.php:1133 +msgid "The payment is pending because it was made to an email address that is not yet registered or confirmed." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:247 +#: includes/common/payment-gateways/paypal-chained-payments.php:527 +#: includes/common/payment-gateways/paypal-express.php:858 +#: includes/common/payment-gateways/paypal-express.php:1132 +msgid "The payment is pending while it is being reviewed by PayPal for risk." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:246 +#: includes/common/payment-gateways/paypal-chained-payments.php:526 +#: includes/common/payment-gateways/paypal-express.php:856 +#: includes/common/payment-gateways/paypal-express.php:1130 +msgid "You do not have a balance in the currency sent, and you do not have your Payment Receiving Preferences set to automatically convert and accept this payment. You must manually accept or deny this payment." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:245 +#: includes/common/payment-gateways/paypal-chained-payments.php:525 +#: includes/common/payment-gateways/paypal-express.php:855 +#: includes/common/payment-gateways/paypal-express.php:1129 +msgid "The payment is pending because you hold a non-U.S. account and do not have a withdrawal mechanism. You must manually accept or deny this payment from your Account Overview." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:244 +#: includes/common/payment-gateways/paypal-chained-payments.php:524 +#: includes/common/payment-gateways/paypal-express.php:854 +#: includes/common/payment-gateways/paypal-express.php:1128 +msgid "The payment is pending because it was made by an eCheck that has not yet cleared." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:243 +#: includes/common/payment-gateways/paypal-chained-payments.php:523 +msgid "The payment is pending because your customer did not include a confirmed shipping address and your Payment Receiving Preferences is set such that you want to manually accept or deny each of these payments. To change your preference, go to the Preferences section of your Profile." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:236 +#: includes/common/payment-gateways/paypal-chained-payments.php:516 +msgid "The transaction was rejected by the receiver (you)." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:510 +#: includes/common/payment-gateways/paypal-express.php:843 +#: includes/common/payment-gateways/paypal-express.php:1115 +msgid "You refunded the payment." +msgstr "您退還了付款。" + +#: includes/common/payment-gateways/paypal-chained-payments.php:224 +#: includes/common/payment-gateways/paypal-chained-payments.php:504 +msgid "The transaction is in progress." +msgstr "此交易正在處理中。" + +#: includes/common/payment-gateways/paypal-chained-payments.php:212 +#: includes/common/payment-gateways/paypal-chained-payments.php:491 +#: includes/common/payment-gateways/paypal-express.php:814 +#: includes/common/payment-gateways/paypal-express.php:1082 +msgid "The payment has been partially refunded." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:202 +#: includes/common/payment-gateways/paypal-chained-payments.php:481 +msgid "PayPal balance, Credit Card, or Instant Transfer" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:177 +msgid "There was a problem connecting to PayPal to setup your purchase. Please try again." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:122 +msgid "Your PayPal transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:50 +#: includes/common/payment-gateways/paypal-chained-payments.php:53 +#: includes/common/payment-gateways/paypal-chained-payments.php:732 +#: includes/common/payment-gateways/paypal-express.php:500 +#: includes/common/payment-gateways/paypal-express.php:938 +msgid "PayPal" +msgstr "" + +#: includes/common/payment-gateways/paypal-chained-payments.php:48 +#: includes/common/payment-gateways/paypal-chained-payments.php:730 +#: includes/common/payment-gateways/paypal-chained-payments.php:756 +#: includes/common/payment-gateways/paypal-chained-payments.php:873 +msgid "PayPal Chained Payments" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:59 +#: includes/common/payment-gateways/paypal-payflow.php:467 +msgid "PayPal Payflow Pro" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:378 +msgid "Chargeback - A payment was reversed due to a chargeback. The funds have been removed from your account balance and returned to the buyer." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:372 +msgid "Failed - The Credit Card or Direct Debit transaction was declined." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:354 +#: includes/common/payment-gateways/skrill.php:366 +msgid "Cancelled - The payment was cancelled manually by the sender in their online account history or was auto-cancelled after 14 days pending." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:360 +msgid "Pending - The payment is pending. It can take 2-3 days for bank transfers to complete." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:349 +#: includes/common/payment-gateways/skrill.php:354 +msgid "Processed - The payment has been completed, and the funds have been added successfully to your Moneybookers account balance." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:189 +msgid "Shown to the customer on the confirmation screen - the end step of the process - a note, confirmation number, or any other message. Line breaks <br> may be used for longer messages." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:188 +msgid "Confirmation Note (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:183 +msgid "The URL of the logo which you would like to appear at the top of the payment form. The logo must be accessible via HTTPS otherwise it will not be shown. For best integration results we recommend that you use a logo with dimensions up to 200px in width and 50px in height." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:182 +msgid "Logo Image (optional)" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:177 +msgid "The name of this store, which will be shown on the gateway. If no value is submitted, the account email will be shown as the recipient of the payment." +msgstr "" + +#: includes/common/payment-gateways/skrill.php:176 +msgid "Merchant Name (optional)" +msgstr "商家名稱(可選)" + +#: includes/common/payment-gateways/skrill.php:165 +msgid "Language" +msgstr "語言" + +#: includes/common/payment-gateways/2checkout.php:368 +#: includes/common/payment-gateways/authorizenet-aim.php:262 +#: includes/common/payment-gateways/eway.php:363 +#: includes/common/payment-gateways/eway31.php:471 +#: includes/common/payment-gateways/mollie.php:91 +#: includes/common/payment-gateways/paymill.php:193 +#: includes/common/payment-gateways/paypal-chained-payments.php:356 +#: includes/common/payment-gateways/paypal-express.php:688 +#: includes/common/payment-gateways/paypal-payflow.php:432 +#: includes/common/payment-gateways/pin.php:186 +#: includes/common/payment-gateways/skrill.php:152 +#: includes/common/payment-gateways/stripe.php:288 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:104 +msgid "Currency" +msgstr "貨幣" + +#: includes/common/payment-gateways/2checkout.php:359 +#: includes/common/payment-gateways/skrill.php:143 +msgid "Secret Word" +msgstr "悄悄話" + +#: includes/common/payment-gateways/skrill.php:261 +msgid "Order ID:" +msgstr "訂單編號:" + +#: includes/common/payment-gateways/skrill.php:234 +msgid "Complete Checkout" +msgstr "完成結帳" + +#: includes/common/payment-gateways/skrill.php:204 +msgid "Your Moneybookers transaction has been canceled." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:155 +msgid "This is the email text to send to those who have made manual payment checkouts. You should include your manual payment instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_payway.php:257 +#: includes/common/payment-gateways/manual-payments.php:128 +msgid "Record payments manually, such as by Cash, Check, or EFT." +msgstr "" + +#: includes/common/payment-gateways/manual-payments.php:71 +msgid "Manual/Invoice" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:648 +#: includes/common/payment-gateways/manual-payments.php:35 +#: includes/common/payment-gateways/manual-payments.php:36 +msgid "Manual Payment" +msgstr "手動付款" + +#: includes/common/payment-gateways/manual-payments.php:34 +#: includes/common/payment-gateways/manual-payments.php:163 +msgid "Manual Payments" +msgstr "手動付款" + +#: includes/common/payment-gateways/_ideal.php:288 +msgid "iDEAL Simulator (for testing)" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:287 +msgid "ABN Amro Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:286 +msgid "Friesland Bank" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:285 +msgid "Rabobank" +msgstr "荷蘭合作銀行" + +#: includes/common/payment-gateways/_ideal.php:284 +msgid "ING Bank" +msgstr "ING银行" + +#: includes/common/payment-gateways/_ideal.php:279 +msgid "Bank" +msgstr "銀行" + +#: includes/common/payment-gateways/_ideal.php:270 +msgid "To make it easier to pay for online products and services, the Dutch banking community has developed the iDEAL online payment method. iDEAL allows online payments to be made using online banking in EUR only." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:247 +#: includes/common/payment-gateways/_payway.php:199 +#: includes/common/payment-gateways/manual-payments.php:68 +msgid "Invoiced" +msgstr "發票收據" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1016 +msgid "Coupon" +msgstr "優惠券" + +#: includes/common/payment-gateways/_ideal.php:77 +#: includes/common/payment-gateways/_ideal.php:250 +#: includes/common/payment-gateways/_payway.php:202 +msgid "iDEAL" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:76 +msgid "iDEAL (beta)" +msgstr "" + +#: includes/common/payment-gateways/payfast.php:327 +msgid "Merchant Key" +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:293 +#: includes/common/payment-gateways/_payway.php:302 +#: includes/common/payment-gateways/payfast.php:324 +msgid "Merchant ID" +msgstr "" + +#: includes/common/payment-gateways/eway31.php:462 +msgid "eWay Rapid 3.0 Payments lets merchants recieve credit card payments through eWay without need for users to leave the shop. Note this gateway requires a valid SSL certificate configured for this site." +msgstr "" + +#: includes/common/payment-gateways/eway.php:452 +msgid "There was a problem connecting to eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/eway.php:432 +#: includes/common/payment-gateways/eway.php:437 +msgid "The url of the image can be hosted on your website and pass the secure https:// path of the image to be displayed at the top of the website. This is the second image block on the webpage and is restricted to 960px X 65px. A default secure image is used if none is supplied." +msgstr "" + +#: includes/common/payment-gateways/eway.php:431 +#: includes/common/payment-gateways/eway.php:436 +msgid "Company Logo (optional)" +msgstr "公司 Logo(可選)" + +#: includes/common/payment-gateways/eway.php:427 +msgid "The page footer text can be customised and populated below the customer's order details. Useful for contact information." +msgstr "" + +#: includes/common/payment-gateways/eway.php:426 +msgid "Page Footer (optional)" +msgstr "頁面頁腳 (可選)" + +#: includes/common/payment-gateways/eway.php:421 +msgid "Page Description (optional)" +msgstr "頁面說明 (可選)" + +#: includes/common/payment-gateways/eway.php:417 +#: includes/common/payment-gateways/eway.php:422 +msgid "This value is used to populate the browsers title bar at the top of the screen." +msgstr "" + +#: includes/common/payment-gateways/eway.php:416 +msgid "Page Title (optional)" +msgstr "頁面標題(可選):" + +#: includes/common/payment-gateways/eway.php:412 +msgid "This will be displayed as the company the customer is purchasing from, including this is highly recommended." +msgstr "" + +#: includes/common/payment-gateways/eway.php:411 +msgid "Company Name" +msgstr "公司名稱" + +#: includes/common/payment-gateways/eway.php:394 +msgid "Customer ID" +msgstr "客户ID" + +#: includes/common/payment-gateways/eway.php:381 +#: includes/common/payment-gateways/eway31.php:488 +msgid "Live API Credentials" +msgstr "" + +#: includes/common/payment-gateways/eway.php:371 +#: includes/common/payment-gateways/eway31.php:479 +msgid "Gateway Mode" +msgstr "" + +#: includes/common/payment-gateways/eway.php:354 +msgid "The Hosted Page is a webpage hosted on eWAY's side eliminating the need for merchants to capture, transmit or store credit card numbers. At the checkout time the merchant automatically redirects the customer to the Hosted Page where they would enter their details and have the transaction processed. Upon completion of the transaction the customer is redirected back to the MarketPress checkout confirmation page." +msgstr "" + +#: includes/common/payment-gateways/eway.php:314 +msgid "There was a problem with your credit card information: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:300 +msgid "Paid - The card has been processed - %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:253 +msgid "There was a problem setting up the transaction with eWay: %s" +msgstr "" + +#: includes/common/payment-gateways/eway.php:245 +#: includes/common/payment-gateways/eway.php:289 +msgid "There was a problem parsing the response from eWay. Please try again." +msgstr "" + +#: includes/common/payment-gateways/_ideal.php:159 +#: includes/common/payment-gateways/eway.php:189 +#: includes/common/payment-gateways/paypal-chained-payments.php:634 +#: includes/common/payment-gateways/paypal-express.php:322 +#: includes/common/payment-gateways/paypal-express.php:473 +msgid "%s Store Purchase - Order ID: %s" +msgstr "%s 商店購買 - 訂單編號: %s" + +#: includes/common/payment-gateways/eway.php:147 +#: includes/common/payment-gateways/eway.php:462 +msgid "eWay Shared Payments" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:214 +msgid "This is the email text to send to those who have made CubePoints checkouts. You should include your CubePoints instructions here. It overrides the default order checkout email. These codes will be replaced with order details: CUSTOMERNAME, ORDERID, ORDERINFO, SHIPPINGINFO, PAYMENTINFO, TOTAL, TRACKINGURL. No HTML allowed." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:212 +#: includes/common/payment-gateways/free_orders.php:188 +#: includes/common/payment-gateways/manual-payments.php:154 +msgid "Order Confirmation Email" +msgstr "訂單確認郵件" + +#: includes/common/payment-gateways/_cubepoints.php:207 +#: includes/common/payment-gateways/manual-payments.php:149 +msgid "Confirmation User Instructions" +msgstr "確認使用者說明" + +#: includes/common/payment-gateways/_cubepoints.php:202 +#: includes/common/payment-gateways/manual-payments.php:144 +msgid "User Instructions" +msgstr "使用說明" + +#: includes/common/payment-gateways/_cubepoints.php:198 +#: includes/common/payment-gateways/free_orders.php:170 +#: includes/common/payment-gateways/manual-payments.php:139 +msgid "Enter a public name for this payment method that is displayed to users - No HTML" +msgstr "" + +#: includes/admin/class-mp-orders-admin.php:532 +#: includes/common/payment-gateways/_cubepoints.php:196 +#: includes/common/payment-gateways/free_orders.php:169 +#: includes/common/payment-gateways/manual-payments.php:138 +msgid "Method Name" +msgstr "方法名稱" + +#: includes/common/payment-gateways/_cubepoints.php:187 +msgid "Accept CubePoints as payment(requires the CubePoints plugin)." +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:140 +msgid "Sorry, but you do not appear to have enough points to complete this purchase!" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:124 +msgid "%s Store Purchase" +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:79 +#: includes/common/payment-gateways/_cubepoints.php:171 +msgid "Your current points: " +msgstr "" + +#: includes/common/payment-gateways/_cubepoints.php:133 +#: includes/common/payment-gateways/_cubepoints.php:197 +msgid "CubePoints" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:344 +msgid "Authorize.net AIM Checkout" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:331 +msgid "Custom API URL" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:332 +msgid "Many other gateways have Authorize.net API emulators. To use one of these gateways input their API post url here." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:322 +msgid "Request a delimited response from the payment gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:316 +msgid "Security: MD5 Hash" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:317 +msgid "The payment gateway generated MD5 hash value that can be used to authenticate the transaction response. Not needed because responses are returned using an SSL connection." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:306 +msgid "Customer Receipt Email Footer" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:296 +msgid "Customer Receipt Email Header" +msgstr "客戶收到電子郵件標頭" + +#: includes/common/payment-gateways/authorizenet-aim.php:297 +#: includes/common/payment-gateways/paypal-payflow.php:446 +msgid "This text will appear as the header of the email receipt sent to the customer." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:282 +msgid "Encapsulation Character" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:283 +msgid "Authorize.net default is blank. Otherwise, get this from your credit card processor. If the transactions are going through, but getting strange responses, this character is most likely wrong." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:273 +msgid "Optional settings to control advanced options" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:224 +#: includes/common/payment-gateways/authorizenet-aim.php:272 +msgid "Advanced Settings" +msgstr "進階設定" + +#: includes/common/payment-gateways/authorizenet-aim.php:253 +msgid "Transaction Key" +msgstr "交易 Key:" + +#: includes/common/payment-gateways/authorizenet-aim.php:246 +msgid "Login ID" +msgstr "登錄帳號" + +#: includes/common/payment-gateways/paypal-payflow.php:396 +msgid "Gateway Credentials" +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:221 +msgid "Authorize.net AIM is a customizable payment processing solution that gives the merchant control over all the steps in processing a transaction. An SSL certificate is required to use this gateway. USD is the only currency supported by this gateway." +msgstr "" + +#: includes/common/payment-gateways/authorizenet-aim.php:205 +msgid "There was a problem finalizing your purchase. %s Please go back and try again." +msgstr "" + +#: includes/common/payment-gateways/payfast.php:519 +#: includes/common/payment-gateways/paypal-chained-payments.php:218 +#: includes/common/payment-gateways/paypal-chained-payments.php:498 +#: includes/common/payment-gateways/paypal-express.php:822 +#: includes/common/payment-gateways/paypal-express.php:1092 +msgid "The payment has been completed, and the funds have been added successfully to your account balance." +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:233 +msgid "Please enter a valid credit card security code" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:224 +#: includes/public/class-mp-checkout.php:867 +msgid "Please enter a valid credit card number" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:221 +msgid "Please enter your credit card number" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:217 +msgid "Please enter your credit card security code" +msgstr "" + +#: includes/common/payment-gateways/paypal-payflow.php:213 +msgid "Please select your credit card expiration date." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:299 +#: includes/common/payment-gateways/authorizenet-aim.php:50 +#: includes/common/payment-gateways/eway.php:148 +#: includes/common/payment-gateways/eway.php:298 +#: includes/common/payment-gateways/eway31.php:267 +#: includes/common/payment-gateways/paymill.php:46 +#: includes/common/payment-gateways/paypal-express.php:972 +#: includes/common/payment-gateways/paypal-payflow.php:60 +#: includes/common/payment-gateways/pin.php:46 +#: includes/common/payment-gateways/simplify.php:19 +#: includes/common/payment-gateways/stripe.php:46 +#: includes/common/payment-gateways/wepay.php:37 +msgid "Credit Card" +msgstr "信用卡" + +#: includes/common/payment-gateways/authorizenet-aim.php:49 +msgid "Authorize.net Checkout" +msgstr "" + +#: includes/common/payment-gateways/skrill.php:156 +#: includes/common/payment-gateways/stripe.php:293 +msgid "Selecting a currency other than that used for your store may cause problems at checkout." +msgstr "" + +#: includes/common/payment-gateways/2checkout.php:352 +msgid "Seller ID" +msgstr "賣方 ID" + +#: includes/common/payment-gateways/2checkout.php:340 +#: includes/common/payment-gateways/_ideal.php:311 +#: includes/common/payment-gateways/authorizenet-aim.php:234 +#: includes/common/payment-gateways/eway.php:376 +#: includes/common/payment-gateways/payfast.php:315 +#: includes/common/payment-gateways/paypal-chained-payments.php:368 +#: includes/common/payment-gateways/paypal-express.php:699 +#: includes/common/payment-gateways/paypal-payflow.php:391 +msgid "Live" +msgstr "上線" + +#: includes/common/payment-gateways/2checkout.php:339 +#: includes/common/payment-gateways/authorizenet-aim.php:233 +#: includes/common/payment-gateways/eway.php:375 +#: includes/common/payment-gateways/paypal-chained-payments.php:367 +#: includes/common/payment-gateways/paypal-express.php:698 +#: includes/common/payment-gateways/paypal-payflow.php:390 +#: includes/common/shipping-modules/mp-fedex.php:263 +msgid "Sandbox" +msgstr "沙盒模式" + +#: includes/common/payment-gateways/2checkout.php:336 +#: includes/common/payment-gateways/_ideal.php:307 +#: includes/common/payment-gateways/authorizenet-aim.php:230 +#: includes/common/payment-gateways/paypal-chained-payments.php:365 +#: includes/common/payment-gateways/paypal-express.php:695 +#: includes/common/payment-gateways/paypal-payflow.php:387 +#: includes/common/payment-gateways/wepay.php:130 +#: includes/common/shipping-modules/mp-fedex.php:260 +msgid "Mode" +msgstr "模式" + +#: includes/common/payment-gateways/2checkout.php:288 +#: includes/common/payment-gateways/mijireh.php:242 +#: includes/common/payment-gateways/mollie.php:212 +msgid "The order has been received" +msgstr "訂單已經收到" + +#: includes/common/payment-gateways/2checkout.php:74 +#: includes/common/payment-gateways/2checkout.php:75 +#: includes/common/payment-gateways/2checkout.php:435 +msgid "2Checkout" +msgstr "" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:306 +msgid "Confirm" +msgstr "確認" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:218 +#: includes/common/class-mp-cart.php:974 includes/common/class-mp-cart.php:1354 +#: includes/common/template-functions.php:918 +msgid "Checkout" +msgstr "前往結帳" + +#: includes/common/template-functions.php:207 +msgid "Check Order Status" +msgstr "檢查訂單狀態" + +#: includes/common/template-functions.php:235 +msgid "View Products" +msgstr "查看商品" + +#: includes/common/template-functions.php:263 +msgid "Visit Store" +msgstr "訪問商店" + +#: includes/common/template-functions.php:2912 +#: includes/multisite/template-functions.php:448 +msgid "Order By" +msgstr "排序依" + +#: includes/common/template-functions.php:2887 +#: includes/multisite/template-functions.php:405 +msgid "Price (High to Low)" +msgstr "價格(高到低)" + +#: includes/common/template-functions.php:2886 +#: includes/multisite/template-functions.php:404 +msgid "Price (Low to High)" +msgstr "價格(低到高)" + +#: includes/common/template-functions.php:2881 +#: includes/multisite/template-functions.php:399 +msgid "Default" +msgstr "預設" + +#: includes/common/template-functions.php:2858 +msgid "Show All" +msgstr "顯示全部" + +#: includes/common/class-mp-product.php:2048 +msgid "View Larger Image »" +msgstr "查看大圖 »" + +#: includes/common/class-mp-product.php:979 +msgid "Out of Stock" +msgstr "已無庫存" + +#: includes/common/template-functions.php:148 +msgid "Price: " +msgstr "價格:" + +#: includes/multisite/template-functions.php:833 +msgid "No Tags" +msgstr "無標籤" + +#: includes/common/template-functions.php:3162 +msgid "Uncategorized" +msgstr "未分類" + +#: includes/common/class-mp-cart.php:569 includes/common/class-mp-order.php:604 +#: includes/common/helpers.php:115 +msgid "Download" +msgstr "下載" + +#: includes/common/class-mp-cart.php:1353 +msgid "Empty Cart" +msgstr "清空購物車" + +#: includes/common/payment-gateways/_payway.php:291 +#: includes/common/payment-gateways/paypal-express.php:718 +#: includes/common/payment-gateways/paypal-payflow.php:423 +#: includes/common/shipping-modules/mp-ups.php:158 +#: includes/public/class-mp-checkout.php:1254 +#: includes/public/class-mp-checkout.php:1383 +msgid "Password" +msgstr "密碼" + +#: includes/common/payment-gateways/eway.php:387 +#: includes/common/payment-gateways/paypal-express.php:711 +#: includes/common/shipping-modules/mp-usps.php:185 +#: includes/public/class-mp-checkout.php:1249 +msgid "Username" +msgstr "使用者名稱" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:437 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:790 +msgid "Have a coupon code?" +msgstr "有優惠券代碼?" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:321 +#: includes/admin/class-mp-orders-admin.php:526 +#: includes/common/class-mp-cart.php:592 +msgid "Remove" +msgstr "移除" + +#: includes/admin/class-mp-ajax.php:316 +msgid "Quantity:" +msgstr "數量:" + +#: includes/admin/class-mp-products-admin.php:2140 +#: includes/admin/class-mp-products-admin.php:2387 +#: includes/common/shipping-modules/class-mp-shipping-api.php:507 +msgid "Extra Shipping Cost" +msgstr "額外的配送成本" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:403 +msgid "Choose a Shipping Method:" +msgstr "選擇一個配送方式:" + +#: includes/admin/class-mp-products-admin.php:1691 +#: includes/admin/class-mp-products-admin.php:2131 +#: includes/admin/class-mp-products-admin.php:2378 +#: includes/common/shipping-modules/class-mp-shipping-api.php:228 +msgid "Ounces" +msgstr "盎司" + +#: includes/admin/class-mp-products-admin.php:1684 +#: includes/admin/class-mp-products-admin.php:2123 +#: includes/admin/class-mp-products-admin.php:2369 +#: includes/admin/class-mp-setup-wizard.php:546 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:165 +#: includes/common/shipping-modules/class-mp-shipping-api-calculated.php:146 +#: includes/common/shipping-modules/class-mp-shipping-api.php:227 +msgid "Pounds" +msgstr "英鎊" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:226 +msgid "Product Weight:" +msgstr "商品重量:" + +#: includes/common/shipping-modules/class-mp-shipping-api.php:214 +msgid "Weight (Kilograms)" +msgstr "重量(千克)" + +#: includes/admin/widgets/ms-global-categories.php:82 +msgid "Number of Categories:" +msgstr "分類數量:" + +#: includes/admin/widgets/ms-global-categories.php:72 +msgid "Product Count" +msgstr "商品數量" + +#: includes/addons/class-mp-addons-list-table.php:20 +#: includes/admin/class-mp-product-attributes-admin.php:129 +#: includes/admin/class-mp-product-attributes-list-table.php:22 +#: includes/admin/class-mp-products-admin.php:2216 +#: includes/admin/class-mp-shortcode-builder.php:628 +#: includes/admin/class-mp-shortcode-builder.php:1415 +#: includes/admin/widgets/ms-global-categories.php:70 +#: includes/common/shipping-modules/mp-fedex.php:395 +#: includes/common/shipping-modules/mp-ups.php:202 +#: includes/common/shipping-modules/mp-usps.php:243 +#: includes/public/class-mp-checkout.php:314 +msgid "Name" +msgstr "名稱" + +#: includes/admin/widgets/ms-global-categories.php:67 +msgid "Order Categories By:" +msgstr "訂單類別依:" + +#: includes/admin/widgets/ms-global-categories.php:24 +#: includes/admin/widgets/ms-global-categories.php:50 +msgid "Global Product Categories" +msgstr "全局商品分類" + +#: includes/admin/widgets/ms-global-categories.php:15 +msgid "Global Product Category List" +msgstr "全局商品類別清單" + +#: includes/admin/widgets/ms-global-categories.php:13 +msgid "Displays a network-wide HTML list of product categories from network MarketPress stores." +msgstr "" + +#: includes/admin/widgets/ms-global-tag-cloud.php:24 +#: includes/admin/widgets/ms-global-tag-cloud.php:45 +msgid "Global Product Tags" +msgstr "全局商品標籤" + +#: includes/admin/widgets/ms-global-tag-cloud.php:15 +msgid "Global Product Tag Cloud" +msgstr "全局傷品標籤雲" + +#: includes/admin/class-mp-shortcode-builder.php:947 +#: includes/admin/widgets/ms-global-product-list.php:173 +msgid "Excerpt" +msgstr "摘要" + +#: includes/admin/widgets/ms-global-product-list.php:169 +msgid "Content To Show:" +msgstr "顯示內容:" + +#: includes/admin/widgets/ms-global-product-list.php:140 +msgid "Limit To Product Tag:" +msgstr "商品代稱限制:" + +#: includes/admin/widgets/ms-global-product-list.php:132 +msgid "Limit To Product Category:" +msgstr "商品分類限制:" + +#: includes/admin/widgets/ms-global-product-list.php:72 +msgid "Global Products" +msgstr "全局產品" + +#: includes/admin/widgets/ms-global-product-list.php:16 +msgid "Global Product List" +msgstr "全局產品列表" + +#: includes/admin/widgets/ms-global-product-list.php:14 +msgid "Shows a customizable global list of products from network MarketPress stores." +msgstr "" + +#: includes/common/class-mp-product.php:974 +#: includes/multisite/template-functions.php:731 +msgid "Buy Now »" +msgstr "立即購買 »" + +#: includes/admin/widgets/ms-global-tag-cloud.php:13 +msgid "Displays global most used product tags in cloud format from network MarketPress stores." +msgstr "" + +#: includes/multisite/class-mp-admin-multisite.php:438 +msgid "Theme Permissions" +msgstr "主題權限" + +#: includes/multisite/class-mp-admin-multisite.php:402 +#: includes/multisite/class-mp-admin-multisite.php:448 +msgid "No Access" +msgstr "無權訪問" + +#: includes/addons/mp-prosites/class-mp-prosites-addon.php:120 +msgid "Pro Site Level" +msgstr "專業網站級別" + +#: includes/multisite/class-mp-admin-multisite.php:401 +#: includes/multisite/class-mp-admin-multisite.php:447 +msgid "All Can Use" +msgstr "均可使用" + +#: includes/multisite/class-mp-admin-multisite.php:390 +msgid "Gateway Permissions" +msgstr "付款網關許可權" + +#: includes/multisite/class-mp-admin-multisite.php:375 +msgid "Select a Gateway" +msgstr "選擇一個付款網關" + +#: includes/multisite/class-mp-admin-multisite.php:350 +msgid "Global Gateway" +msgstr "全局付款網關" + +#. Plugin Name of the plugin/theme +msgid "MarketPress" +msgstr "" + +#: includes/admin/widgets/product-tag-cloud.php:7 +msgid "Your most used product tags in cloud format from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/categories.php:79 +msgid "Show hierarchy" +msgstr "顯示階層" + +#: includes/admin/widgets/categories.php:76 +#: includes/admin/widgets/ms-global-categories.php:92 +msgid "Show product counts" +msgstr "顯示商品計數" + +#: includes/admin/widgets/categories.php:73 +msgid "Show as dropdown" +msgstr "下拉式顯示" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:710 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:736 +#: includes/admin/widgets/categories.php:30 +msgid "Select Category" +msgstr "選擇類別" + +#: includes/admin/widgets/categories.php:7 +msgid "A list or dropdown of product categories from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/product-list.php:250 +msgid "Show Buy Button" +msgstr "顯示購買按鈕" + +#: includes/admin/widgets/ms-global-product-list.php:183 +#: includes/admin/widgets/product-list.php:244 +msgid "Show Price" +msgstr "顯示價格" + +#: includes/admin/widgets/product-list.php:241 +msgid "Show Excerpt" +msgstr "顯示摘要" + +#: includes/admin/widgets/ms-global-product-list.php:155 +#: includes/admin/widgets/product-list.php:238 +msgid "Thumbnail Size:" +msgstr "縮圖尺寸:" + +#: includes/admin/widgets/ms-global-product-list.php:153 +#: includes/admin/widgets/product-list.php:237 +msgid "Show Thumbnail" +msgstr "顯示縮圖" + +#: includes/admin/widgets/ms-global-product-list.php:147 +#: includes/admin/widgets/product-list.php:233 +msgid "Display Settings" +msgstr "顯示設置" + +#: includes/admin/widgets/ms-global-product-list.php:136 +#: includes/admin/widgets/ms-global-product-list.php:144 +#: includes/admin/widgets/product-list.php:230 +msgid "Enter the Slug" +msgstr "輸入一個代稱" + +#: includes/admin/widgets/product-list.php:228 +#: includes/common/template-functions.php:894 +msgid "Tag" +msgstr "標籤" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:686 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:712 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:739 +#: includes/admin/class-mp-shortcode-builder.php:796 +#: includes/admin/widgets/product-list.php:227 +#: includes/common/template-functions.php:886 +#: includes/common/template-functions.php:2907 +msgid "Category" +msgstr "分類" + +#: includes/admin/widgets/product-list.php:226 +msgid "No Filter" +msgstr "無篩選" + +#: includes/admin/widgets/product-list.php:224 +msgid "Taxonomy Filter:" +msgstr "分類篩選:" + +#: includes/admin/widgets/ms-global-product-list.php:108 +#: includes/admin/widgets/product-list.php:209 +msgid "Order Products By:" +msgstr "商品排序按:" + +#: includes/admin/widgets/ms-global-product-list.php:101 +#: includes/admin/widgets/product-list.php:206 +msgid "Number of Products:" +msgstr "商品數量:" + +#: includes/admin/widgets/ms-global-product-list.php:98 +#: includes/admin/widgets/product-list.php:204 +msgid "List Settings" +msgstr "列表设置" + +#: includes/admin/widgets/product-list.php:177 +msgid "Our Products" +msgstr "我的商品" + +#: includes/admin/widgets/product-list.php:144 +#: includes/common/template-functions.php:2070 +#: includes/common/template-functions.php:2347 +#: includes/multisite/template-functions.php:303 +#: includes/multisite/template-functions.php:623 +msgid "No Products" +msgstr "沒有商品" + +#: includes/admin/widgets/product-list.php:8 +msgid "Product List" +msgstr "商品列表" + +#: includes/admin/widgets/product-list.php:7 +msgid "Shows a customizable list of products from your MarketPress store." +msgstr "" + +#: includes/admin/widgets/cart.php:75 includes/admin/widgets/categories.php:82 +#: includes/admin/widgets/product-list.php:253 +#: includes/admin/widgets/product-tag-cloud.php:57 +msgid "Only show on store pages" +msgstr "僅顯示在商店頁面" + +#: includes/admin/widgets/cart.php:65 +#: includes/admin/widgets/ms-global-product-list.php:92 +#: includes/admin/widgets/product-list.php:200 +msgid "Custom Text:" +msgstr "自定義文本:" + +#: includes/admin/widgets/cart.php:64 includes/admin/widgets/categories.php:69 +#: includes/admin/widgets/ms-global-categories.php:59 +#: includes/admin/widgets/ms-global-product-list.php:87 +#: includes/admin/widgets/ms-global-tag-cloud.php:49 +#: includes/admin/widgets/product-list.php:199 +#: includes/admin/widgets/product-tag-cloud.php:49 +msgid "Title:" +msgstr "標題:" + +#: includes/admin/widgets/cart.php:7 +msgid "Shows dynamic shopping cart contents along with a checkout button for your MarketPress store." +msgstr "顯示動態購物車內容以及您的 MarketPress商店的結帳按鈕。" + +#: includes/admin/widgets/product-tag-cloud.php:8 +msgid "Product Tag Cloud" +msgstr "商品標籤雲" + +#: includes/admin/class-mp-setup-wizard.php:539 +#: includes/admin/class-mp-setup-wizard.php:575 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:163 +msgid "Measurement System" +msgstr "Measurement 系統" + +#: includes/admin/class-mp-setup-wizard.php:616 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:149 +msgid "Select Shipping Options" +msgstr "選擇送貨選項" + +#: includes/admin/class-mp-setup-wizard.php:596 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:129 +msgid "Calculated Options" +msgstr "計算的選項" + +#: includes/admin/class-mp-setup-wizard.php:582 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:115 +msgid "No Shipping" +msgstr "無需配送" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:110 +msgid "EU" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:109 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:93 +msgid "All" +msgstr "全部" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:92 +msgid "Select:" +msgstr "選擇:" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:185 +msgid "Store Pages" +msgstr "商店頁面" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:223 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:256 +msgid "Order Shipped" +msgstr "訂單已發貨" + +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:60 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:95 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:128 +#: marketpress.php:266 +msgid "New Order" +msgstr "新訂單" + +#: includes/admin/class-mp-dashboard-widgets.php:314 +msgid "Email Notifications" +msgstr "電子郵件通知" + +#: includes/admin/class-mp-pages-admin.php:59 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:200 +msgid "Products List" +msgstr "商品列表" + +#: includes/admin/class-mp-pages-admin.php:58 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:190 +msgid "Store Base" +msgstr "商店基礎" + +#: includes/admin/class-mp-product-attributes-admin.php:108 +#: includes/admin/class-mp-shortcode-builder.php:635 +#: includes/admin/class-mp-shortcode-builder.php:708 +#: includes/admin/class-mp-shortcode-builder.php:875 +#: includes/admin/class-mp-shortcode-builder.php:1319 +#: includes/admin/class-mp-shortcode-builder.php:1422 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:526 +#: includes/admin/widgets/ms-global-categories.php:78 +#: includes/admin/widgets/ms-global-product-list.php:127 +#: includes/admin/widgets/product-list.php:221 +msgid "Ascending" +msgstr "升序" + +#: includes/admin/class-mp-product-attributes-admin.php:109 +#: includes/admin/class-mp-shortcode-builder.php:636 +#: includes/admin/class-mp-shortcode-builder.php:709 +#: includes/admin/class-mp-shortcode-builder.php:876 +#: includes/admin/class-mp-shortcode-builder.php:1320 +#: includes/admin/class-mp-shortcode-builder.php:1423 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:525 +#: includes/admin/widgets/ms-global-categories.php:75 +#: includes/admin/widgets/ms-global-product-list.php:124 +#: includes/admin/widgets/product-list.php:220 +msgid "Descending" +msgstr "降序" + +#: includes/admin/class-mp-shortcode-builder.php:637 +#: includes/admin/class-mp-shortcode-builder.php:695 +#: includes/admin/class-mp-shortcode-builder.php:862 +#: includes/admin/class-mp-shortcode-builder.php:1306 +#: includes/admin/class-mp-shortcode-builder.php:1424 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:518 +#: includes/admin/widgets/ms-global-product-list.php:121 +#: includes/admin/widgets/product-list.php:218 +msgid "Random" +msgstr "隨機" + +#: includes/admin/class-mp-shortcode-builder.php:694 +#: includes/admin/class-mp-shortcode-builder.php:861 +#: includes/admin/class-mp-shortcode-builder.php:1305 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:517 +#: includes/admin/widgets/ms-global-product-list.php:119 +#: includes/admin/widgets/product-list.php:216 +msgid "Product Price" +msgstr "產品價格" + +#: includes/admin/class-mp-shortcode-builder.php:693 +#: includes/admin/class-mp-shortcode-builder.php:860 +#: includes/admin/class-mp-shortcode-builder.php:1304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:516 +#: includes/admin/widgets/ms-global-product-list.php:117 +#: includes/admin/widgets/product-list.php:215 +msgid "Number of Sales" +msgstr "蕭售數量" + +#: includes/admin/class-mp-shortcode-builder.php:692 +#: includes/admin/class-mp-shortcode-builder.php:859 +#: includes/admin/class-mp-shortcode-builder.php:1303 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:515 +#: includes/admin/widgets/product-list.php:214 +msgid "Product Author" +msgstr "商品作者" + +#: includes/admin/class-mp-shortcode-builder.php:691 +#: includes/admin/class-mp-shortcode-builder.php:858 +#: includes/admin/class-mp-shortcode-builder.php:1302 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:514 +#: includes/admin/widgets/product-list.php:213 +msgid "Product ID" +msgstr "商品編號" + +#: includes/admin/class-mp-shortcode-builder.php:690 +#: includes/admin/class-mp-shortcode-builder.php:857 +#: includes/admin/class-mp-shortcode-builder.php:1301 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:513 +#: includes/admin/widgets/ms-global-product-list.php:113 +#: includes/admin/widgets/product-list.php:212 +msgid "Publish Date" +msgstr "發布日期" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:430 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:726 +msgid "Width" +msgstr "寬度" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:439 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:735 +msgid "Height" +msgstr "高度" + +#: includes/admin/class-mp-product-attributes-admin.php:88 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:402 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:698 +msgid "Custom" +msgstr "自定義" + +#: includes/common/class-mp-product.php:179 +#: includes/common/class-mp-product.php:992 +#: includes/common/class-mp-product.php:1000 +#: includes/multisite/template-functions.php:579 +msgid "Buy Now" +msgstr "立即購買" + +#: includes/common/class-mp-product.php:175 +#: includes/common/class-mp-product.php:990 +#: includes/common/class-mp-product.php:998 +msgid "Add To Cart" +msgstr "加入購物車" + +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:807 +msgid "Store Style" +msgstr "商店風格" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1021 +msgid "Edit Coupon" +msgstr "編輯優惠券" + +#: includes/addons/mp-coupons/class-mp-coupon.php:580 +#: includes/admin/class-mp-ajax.php:238 +#: includes/admin/class-mp-products-admin.php:1532 +msgid "Unlimited" +msgstr "無限制" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1198 +msgid "Remaining Uses" +msgstr "剩餘使用" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1197 +msgid "Used" +msgstr "已使用" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:752 +#: includes/admin/class-mp-products-admin.php:2343 +msgid "Start Date" +msgstr "開始日期" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:598 +msgid "Coupon Code" +msgstr "優惠券代碼" + +#: includes/admin/class-mp-orders-admin.php:444 +#: includes/wpmudev-metaboxes/wpmudev-metabox.php:284 +msgid "Save Changes" +msgstr "儲存變更" + +#: includes/admin/class-mp-pages-admin.php:57 +#: includes/admin/class-mp-shortcode-builder.php:716 +#: includes/admin/class-mp-shortcode-builder.php:727 +#: includes/admin/class-mp-shortcode-builder.php:883 +#: includes/admin/class-mp-shortcode-builder.php:894 +#: includes/admin/class-mp-shortcode-builder.php:946 +#: includes/admin/class-mp-shortcode-builder.php:956 +#: includes/admin/class-mp-shortcode-builder.php:1006 +#: includes/admin/class-mp-shortcode-builder.php:1327 +#: includes/admin/class-mp-shortcode-builder.php:1338 +#: includes/admin/store-settings/class-mp-store-settings-general.php:357 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:270 +#: includes/admin/store-settings/class-mp-store-settings-shipping.php:108 +#: includes/admin/widgets/ms-global-product-list.php:172 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:94 +msgid "None" +msgstr "無" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:352 +msgid "Google Analytics Ecommerce Tracking" +msgstr "谷歌分析電子商務追踪" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:310 +msgid "This option turns MarketPress into more of a product listing plugin, disabling shopping carts, checkout, and order management. This is useful if you simply want to list items you can buy in a store somewhere else, optionally linking the \"Buy Now\" buttons to an external site. Some examples are a car dealership, or linking to songs/albums in itunes, or linking to products on another site with your own affiliate links." +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:304 +msgid "Whether or not customers must be registered and logged in to checkout. (Not recommended: Enabling this can lower conversions)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:258 +msgid "How many times may a customer download a file they have purchased? (It's best to set this higher than one in case they have any problems downloading)" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:257 +msgid "Maximum Downloads" +msgstr "最大下載量" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:298 +msgid "This will set the product to draft if inventory of all variations is gone." +msgstr "這將設置產品草案如果庫存的所有變型消失了。" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:288 +msgid "At what low stock count do you want to be warned for products you have enabled inventory tracking for?" +msgstr "" + +#: includes/admin/class-mp-dashboard-widgets.php:208 +#: includes/admin/store-settings/class-mp-store-settings-general.php:287 +msgid "Inventory Warning Threshold" +msgstr "庫存警告閾值" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:282 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:542 +msgid "Miscellaneous Settings" +msgstr "其他設置" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:429 +#: includes/multisite/class-mp-admin-multisite.php:247 +msgid "Show Decimal in Prices" +msgstr "顯示小數價格" + +#: includes/admin/class-mp-setup-wizard.php:451 +#: includes/admin/store-settings/class-mp-store-settings-general.php:403 +#: includes/multisite/class-mp-admin-multisite.php:221 +msgid "Currency Symbol Position" +msgstr "貨幣符號位置" + +#: includes/admin/class-mp-setup-wizard.php:444 +#: includes/admin/store-settings/class-mp-store-settings-general.php:396 +msgid "Store Currency" +msgstr "商店貨幣" + +#: includes/admin/class-mp-setup-wizard.php:429 +#: includes/admin/store-settings/class-mp-store-settings-general.php:381 +msgid "Currency Settings" +msgstr "貨幣設置" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:516 +msgid "Please see your local tax laws. Note if this is enabled and a downloadable only cart, rates will be the default for your base location." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:529 +msgid "Apply Tax to Downloadable Products?" +msgstr "應用稅金到可下載商品嗎?" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:498 +msgid "Enabling this option allows you to enter and show all prices inclusive of tax, while still listing the tax total as a line item in shopping carts. Please see your local tax laws." +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:497 +msgid "Enter Prices Inclusive of Tax?" +msgstr "" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:492 +msgid "Please see your local tax laws. Most areas charge tax on shipping fees." +msgstr "請參閱您本地的稅法。大部分地區收取運費稅。" + +#: includes/admin/class-mp-setup-wizard.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:491 +msgid "Apply Tax To Shipping Fees?" +msgstr "" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:674 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:565 +#: includes/common/payment-gateways/authorizenet-aim.php:291 +#: includes/common/payment-gateways/authorizenet-aim.php:326 +#: includes/common/payment-gateways/payfast.php:347 +msgid "No" +msgstr "不" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:675 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:759 +#: includes/admin/class-mp-products-admin.php:510 +#: includes/admin/class-mp-setup-wizard.php:512 +#: includes/admin/class-mp-setup-wizard.php:518 +#: includes/admin/class-mp-setup-wizard.php:524 +#: includes/admin/class-mp-setup-wizard.php:530 +#: includes/admin/class-mp-setup-wizard.php:564 +#: includes/admin/store-settings/class-mp-store-settings-general.php:232 +#: includes/admin/store-settings/class-mp-store-settings-general.php:299 +#: includes/admin/store-settings/class-mp-store-settings-general.php:305 +#: includes/admin/store-settings/class-mp-store-settings-general.php:311 +#: includes/admin/store-settings/class-mp-store-settings-general.php:317 +#: includes/admin/store-settings/class-mp-store-settings-general.php:328 +#: includes/admin/store-settings/class-mp-store-settings-general.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:341 +#: includes/admin/store-settings/class-mp-store-settings-general.php:348 +#: includes/admin/store-settings/class-mp-store-settings-general.php:367 +#: includes/admin/store-settings/class-mp-store-settings-general.php:493 +#: includes/admin/store-settings/class-mp-store-settings-general.php:499 +#: includes/admin/store-settings/class-mp-store-settings-general.php:505 +#: includes/admin/store-settings/class-mp-store-settings-general.php:511 +#: includes/admin/store-settings/class-mp-store-settings-general.php:517 +#: includes/admin/store-settings/class-mp-store-settings-general.php:556 +#: includes/admin/store-settings/class-mp-store-settings-notifications.php:352 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:304 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:375 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:381 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:387 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:474 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:493 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:532 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:574 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:606 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:664 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:670 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:677 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:683 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:689 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:763 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:774 +#: includes/common/payment-gateways/_bitpay.php:250 +#: includes/common/payment-gateways/_bitpay.php:257 +#: includes/common/payment-gateways/_bitpay.php:264 +#: includes/common/payment-gateways/authorizenet-aim.php:290 +#: includes/common/payment-gateways/authorizenet-aim.php:325 +#: includes/common/payment-gateways/free_orders.php:160 +#: includes/common/payment-gateways/payfast.php:346 +#: includes/common/payment-gateways/paymill.php:162 +#: includes/common/payment-gateways/paypal-payflow.php:441 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-checkbox.php:22 +msgid "Yes" +msgstr "是" + +#: includes/admin/class-mp-setup-wizard.php:492 +#: includes/admin/store-settings/class-mp-store-settings-general.php:472 +msgid "%s Tax Rate" +msgstr "%s 稅率" + +#: includes/admin/class-mp-setup-wizard.php:467 +#: includes/admin/store-settings/class-mp-store-settings-general.php:449 +msgid "Tax Settings" +msgstr "稅率設定" + +#: includes/admin/class-mp-setup-wizard.php:370 +#: includes/admin/store-settings/class-mp-store-settings-general.php:624 +msgid "Base Zip/Postal Code" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:354 +#: includes/admin/store-settings/class-mp-store-settings-general.php:608 +msgid "Base State/Province/Region" +msgstr "" + +#: includes/admin/class-mp-setup-wizard.php:334 +#: includes/admin/store-settings/class-mp-store-settings-general.php:589 +msgid "Base Country" +msgstr "所在的國家" + +#: includes/admin/store-settings/class-mp-store-settings-general.php:582 +msgid "Location Settings" +msgstr "位置設置" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice-addon.php:195 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:800 +#: includes/multisite/class-mp-admin-multisite.php:172 +msgid "General Settings" +msgstr "一般設置" + +#: includes/admin/class-mp-products-admin.php:1945 +#: includes/admin/class-mp-products-admin.php:2185 +#: includes/admin/class-mp-store-settings-admin.php:111 +#: includes/admin/class-mp-store-settings-admin.php:266 +msgid "General" +msgstr "常規" + +#: includes/admin/class-mp-store-settings-admin.php:242 +msgid "Importers" +msgstr "導入程序" + +#: includes/admin/class-mp-store-settings-admin.php:115 +#: includes/admin/class-mp-store-settings-admin.php:234 +msgid "Payments" +msgstr "付款" + +#: includes/admin/class-mp-dashboard-widgets.php:313 +#: includes/admin/class-mp-store-settings-admin.php:112 +#: includes/admin/class-mp-store-settings-admin.php:222 +msgid "Presentation" +msgstr "外觀設定" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:916 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1015 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1018 +#: includes/admin/class-mp-dashboard-widgets.php:305 marketpress.php:702 +msgid "Coupons" +msgstr "優惠券" + +#: includes/admin/class-mp-admin.php:251 +msgid "Download »" +msgstr "下載 »" + +#: includes/admin/class-mp-admin.php:245 +#: includes/admin/class-mp-exporter-orders.php:170 +msgid "All Statuses" +msgstr "全部狀態" + +#: includes/admin/class-mp-admin.php:209 +#: includes/admin/class-mp-exporter-orders.php:150 +#: includes/admin/class-mp-exporter-orders.php:178 +msgid "Export Orders" +msgstr "導出訂單" + +#: includes/admin/class-mp-admin.php:228 +msgid "Show all dates" +msgstr "顯示全部日期" + +#: includes/admin/class-mp-orders-admin.php:947 +msgid "Change Status" +msgstr "更改狀態" + +#: includes/admin/class-mp-orders-admin.php:287 +msgid "Order Notes" +msgstr "訂單備註" + +#: includes/admin/class-mp-orders-admin.php:478 +msgid "Other" +msgstr "其他" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:205 +msgid "Subtotal" +msgstr "小計" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:84 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:87 +#: includes/admin/class-mp-products-admin.php:1737 +#: includes/common/class-mp-cart.php:1409 +#: includes/common/class-mp-product.php:559 +msgid "Quantity" +msgstr "數量" + +#: includes/common/helpers.php:93 +msgid "Item" +msgstr "項目" + +#: includes/common/class-mp-order.php:1050 +msgid "Current Status" +msgstr "目前状况" + +#: includes/admin/class-mp-orders-admin.php:297 +msgid "Order Actions" +msgstr "訂單操作" + +#: includes/common/class-mp-product.php:1084 +msgid "More Info »" +msgstr "更多訊息 »" + +#: includes/common/class-mp-product.php:2313 +msgid "Low Product Inventory Notification" +msgstr "低產品庫存通知" + +#: includes/common/class-mp-order.php:338 includes/common/data.php:154 +msgid "New Order Notification: ORDERID" +msgstr "" + +#: includes/common/helpers.php:259 +msgid "Your payment for this order is complete." +msgstr "您為此訂單的付款已完成。" + +#: includes/common/helpers.php:261 +msgid "Your payment for this order is not yet complete. Here is the latest status:" +msgstr "您為此訂單的付款尚不完整。這裡是最新狀態:" + +#: includes/common/helpers.php:256 +msgid "Payment Total:" +msgstr "支付總數:" + +#: includes/common/helpers.php:253 +msgid "Transaction ID:" +msgstr "交易編號:" + +#: includes/common/helpers.php:249 +msgid "Payment Type:" +msgstr "付款類型:" + +#: includes/common/helpers.php:246 +msgid "Payment Method:" +msgstr "付款方式:" + +#: includes/common/helpers.php:242 +msgid "Order Notes:" +msgstr "訂單備註:" + +#: includes/common/helpers.php:237 +msgid "Special Instructions:" +msgstr "特別說明:" + +#: includes/common/helpers.php:232 +msgid "Tracking Number:" +msgstr "" + +#: includes/common/helpers.php:223 includes/common/helpers.php:226 +#: includes/common/helpers.php:228 +#: includes/common/shipping-modules/class-mp-shipping-api.php:406 +#: includes/common/shipping-modules/class-mp-shipping-api.php:428 +msgid "Shipping Method:" +msgstr "配送方式:" + +#: includes/common/helpers.php:168 +msgid "No shipping required for this order." +msgstr "此訂單不需要配送。" + +#: includes/common/helpers.php:155 +msgid "Order Total:" +msgstr "訂單總額:" + +#: includes/common/class-mp-order.php:1025 +msgid "Taxes:" +msgstr "稅金:" + +#: includes/common/class-mp-order.php:1032 includes/common/helpers.php:144 +msgid "Shipping:" +msgstr "配送方式:" + +#: includes/public/class-mp-checkout.php:367 +msgid "Street address, P.O. box, company name, c/o" +msgstr "街道地址,郵政信箱,公司名稱,c / o" + +#: includes/admin/class-mp-orders-admin.php:314 +msgid "Shipping Info" +msgstr "配送資訊" + +#: includes/public/class-mp-public.php:740 +msgid "Whoops, there was a problem loading up this file for your download. Please contact us for help." +msgstr "哎呦,為你下載這個檔載入時出現了一個問題。請聯繫我們獲得幫助。" + +#: includes/public/class-mp-public.php:683 +msgid "Sorry, our records show you've downloaded this file %d out of %d times allowed. Please contact us if you still need help." +msgstr "抱歉,我們的紀錄顯示您已經被允許下載此檔案 %d 超過 %d 次。 如過您還需要幫助,請聯繫我們。" + +#: includes/public/class-mp-public.php:634 +msgid "Sorry, your order has been marked as unpaid." +msgstr "抱歉,您的訂單已被標記為未付。" + +#: includes/public/class-mp-public.php:629 +msgid "Sorry, the link is invalid for this download." +msgstr "對不起,該連結無效為此下載。" + +#: includes/admin/class-mp-exporter-orders.php:15 +#: includes/admin/class-mp-products-admin.php:1172 +msgid "Cheatin’ uh?" +msgstr "開玩笑’ 對吧?" + +#: includes/public/class-mp-public.php:407 +#: includes/public/class-mp-short-codes.php:128 +msgid "Please enter a valid email address." +msgstr "" + +#: includes/admin/class-mp-ajax.php:191 +#: includes/admin/class-mp-products-admin.php:1821 +#: includes/admin/class-mp-products-admin.php:2010 +#: includes/admin/class-mp-products-admin.php:2267 +msgid "File URL" +msgstr "檔案網址" + +#: includes/admin/class-mp-products-admin.php:1842 +msgid "External Link" +msgstr "外部鏈接" + +#: includes/admin/class-mp-products-admin.php:2177 +msgid "Add Variation" +msgstr "新增變型" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:126 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:289 +msgid "Inventory" +msgstr "庫存" + +#: includes/admin/class-mp-products-admin.php:438 +#: includes/admin/class-mp-products-admin.php:578 +#: includes/admin/class-mp-products-admin.php:1552 +#: includes/admin/class-mp-products-admin.php:2053 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:134 +msgid "Sale Price" +msgstr "促銷價" + +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:329 +msgid "Variation Name" +msgstr "變型名稱" + +#: includes/admin/class-mp-products-admin.php:1931 +msgid "Product Details" +msgstr "產品詳細信息" + +#: includes/admin/class-mp-product-attributes-list-table.php:33 +msgid "Delete" +msgstr "刪除" + +#: includes/admin/class-mp-orders-admin.php:1057 +msgid "Trashed" +msgstr "回收桶" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:231 +#: includes/admin/class-mp-orders-admin.php:1015 +#: includes/common/class-mp-order.php:1052 includes/common/helpers.php:97 +msgid "Total" +msgstr "總計" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1196 +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:210 +#: includes/admin/class-mp-orders-admin.php:1014 +msgid "Discount" +msgstr "折扣" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:221 +#: includes/admin/class-mp-orders-admin.php:1013 +#: includes/common/payment-gateways/_ideal.php:148 +#: includes/common/payment-gateways/_payway.php:134 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-quick-setup.php:108 +msgid "Tax" +msgstr "稅金" + +#: includes/addons/mp-pdf-invoice/class-mp-pdf-invoice.php:216 +#: includes/admin/class-mp-orders-admin.php:1012 +#: includes/admin/class-mp-products-admin.php:1958 +#: includes/admin/class-mp-products-admin.php:2198 +#: includes/admin/class-mp-store-settings-admin.php:114 +#: includes/admin/class-mp-store-settings-admin.php:230 +#: includes/common/class-mp-cart.php:717 includes/common/helpers.php:168 +#: includes/common/payment-gateways/_ideal.php:137 +#: includes/common/payment-gateways/_payway.php:116 +#: includes/public/class-mp-checkout.php:1304 +msgid "Shipping" +msgstr "配送方式" + +#: includes/admin/class-mp-orders-admin.php:1011 +msgid "Items" +msgstr "項目" + +#: includes/admin/class-mp-orders-admin.php:1010 +msgid "From" +msgstr "從" + +#: includes/admin/class-mp-exporter-orders.php:154 +#: includes/admin/class-mp-orders-admin.php:1009 +#: includes/common/class-mp-gdpr.php:370 +msgid "Order Date" +msgstr "訂單日期" + +#: includes/admin/class-mp-orders-admin.php:1008 +#: includes/common/class-mp-gdpr.php:366 +#: includes/common/template-functions.php:2134 +msgid "Order ID" +msgstr "訂單編號" + +#: includes/addons/class-mp-addons-list-table.php:22 +#: includes/admin/class-mp-orders-admin.php:1007 +msgid "Status" +msgstr "狀態" + +#: includes/admin/class-mp-orders-admin.php:1155 +msgid "N/A" +msgstr "不適用" + +#: includes/admin/class-mp-dashboard-widgets.php:243 +#: includes/admin/class-mp-products-admin.php:464 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:142 +msgid "Sales" +msgstr "特價" + +#: includes/admin/class-mp-products-admin.php:463 +msgid "Stock" +msgstr "庫存" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:85 +#: includes/admin/class-mp-ajax.php:176 includes/admin/class-mp-ajax.php:253 +#: includes/admin/class-mp-products-admin.php:434 +#: includes/admin/class-mp-products-admin.php:462 +#: includes/admin/class-mp-products-admin.php:576 +#: includes/admin/class-mp-products-admin.php:1519 +#: includes/admin/class-mp-products-admin.php:1569 +#: includes/admin/class-mp-products-admin.php:1950 +#: includes/admin/class-mp-products-admin.php:2059 +#: includes/admin/class-mp-products-admin.php:2190 +#: includes/admin/class-mp-products-admin.php:2330 +#: includes/common/class-mp-cart.php:1415 includes/common/helpers.php:96 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:130 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:276 +msgid "Price" +msgstr "價格" + +#: includes/admin/class-mp-ajax.php:173 +#: includes/admin/class-mp-products-admin.php:461 +#: includes/admin/class-mp-products-admin.php:1972 +#: includes/admin/class-mp-products-admin.php:2224 +msgid "SKU" +msgstr "貨號" + +#: includes/admin/class-mp-products-admin.php:459 +#: includes/admin/class-mp-products-admin.php:1793 +#: includes/admin/class-mp-products-admin.php:1805 +#: includes/admin/class-mp-products-admin.php:2163 +msgid "Variations" +msgstr "變化類型" + +#: includes/addons/mp-pdf-invoice/templates/default/invoice.php:83 +#: includes/addons/mp-pdf-invoice/templates/default/packing.php:86 +#: includes/admin/class-mp-dashboard-widgets.php:134 +#: includes/admin/class-mp-products-admin.php:458 +#: includes/admin/class-mp-products-admin.php:837 +#: includes/admin/class-mp-shortcode-builder.php:689 +#: includes/admin/class-mp-shortcode-builder.php:856 +#: includes/admin/class-mp-shortcode-builder.php:1300 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:512 +#: includes/admin/widgets/ms-global-product-list.php:115 +#: includes/admin/widgets/product-list.php:211 +msgid "Product Name" +msgstr "商品名稱" + +#: includes/common/template-functions.php:2575 +msgid "Categorized in " +msgstr "分類在" + +#: includes/admin/class-mp-orders-admin.php:305 +#: includes/common/payment-gateways/free_orders.php:176 +msgid "Payment Information" +msgstr "支付信息" + +#: includes/admin/class-mp-exporter-orders.php:167 +#: includes/admin/class-mp-orders-admin.php:432 +#: includes/admin/class-mp-pages-admin.php:62 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:227 +#: includes/common/class-mp-gdpr.php:374 +#: includes/common/template-functions.php:175 +#: includes/common/template-functions.php:926 +msgid "Order Status" +msgstr "訂單狀態" + +#. translators: %s: orders closed +#: marketpress.php:327 +msgid "Closed (%s)" +msgid_plural "Closed (%s)" +msgstr[0] "" + +#: includes/admin/class-mp-admin.php:249 +#: includes/admin/class-mp-orders-admin.php:375 +#: includes/admin/class-mp-orders-admin.php:951 +#: includes/admin/class-mp-orders-admin.php:1053 +#: includes/admin/class-mp-orders-admin.php:1065 +#: includes/common/class-mp-gdpr.php:330 +#: includes/common/class-mp-order.php:1019 marketpress.php:325 +msgid "Closed" +msgstr "已關閉" + +#. translators: %s: shipped orders +#: marketpress.php:320 +msgid "Shipped (%s)" +msgid_plural "Shipped (%s)" +msgstr[0] "" + +#: includes/admin/class-mp-admin.php:248 +#: includes/admin/class-mp-orders-admin.php:376 +#: includes/admin/class-mp-orders-admin.php:950 +#: includes/admin/class-mp-orders-admin.php:1049 +#: includes/admin/class-mp-orders-admin.php:1064 +#: includes/common/class-mp-gdpr.php:329 +#: includes/common/class-mp-order.php:1002 marketpress.php:318 +msgid "Shipped" +msgstr "已配送" + +#. translators: %s: paid orders +#: marketpress.php:313 +msgid "Paid (%s)" +msgid_plural "Paid (%s)" +msgstr[0] "" + +#: includes/admin/class-mp-admin.php:247 +#: includes/admin/class-mp-orders-admin.php:377 +#: includes/admin/class-mp-orders-admin.php:949 +#: includes/admin/class-mp-orders-admin.php:1045 +#: includes/admin/class-mp-orders-admin.php:1063 +#: includes/common/class-mp-gdpr.php:328 +#: includes/common/payment-gateways/2checkout.php:294 +#: includes/common/payment-gateways/_cubepoints.php:130 +#: includes/common/payment-gateways/authorizenet-aim.php:193 +#: includes/common/payment-gateways/free_orders.php:91 +#: includes/common/payment-gateways/mijireh.php:248 +#: includes/common/payment-gateways/paymill.php:273 +#: includes/common/payment-gateways/paypal-express.php:933 +#: includes/common/payment-gateways/paypal-express.php:967 +#: includes/common/payment-gateways/pin.php:258 +#: includes/common/payment-gateways/simplify.php:181 +#: includes/common/payment-gateways/stripe.php:368 +#: includes/common/payment-gateways/wepay.php:269 marketpress.php:311 +msgid "Paid" +msgstr "已付款" + +#. translators: %s: orders received +#: marketpress.php:306 +msgid "Received (%s)" +msgid_plural "Received (%s)" +msgstr[0] "" + +#: includes/admin/class-mp-admin.php:246 +#: includes/admin/class-mp-orders-admin.php:378 +#: includes/admin/class-mp-orders-admin.php:1041 +#: includes/admin/class-mp-orders-admin.php:1062 +#: includes/common/class-mp-gdpr.php:327 includes/common/class-mp-order.php:995 +#: includes/common/payment-gateways/payfast.php:244 marketpress.php:304 +msgid "Received" +msgstr "已收到" + +#: marketpress.php:268 +msgid "Search Orders" +msgstr "搜尋訂單" + +#: marketpress.php:267 +msgid "View Order" +msgstr "查看訂單" + +#: marketpress.php:262 +msgid "Order" +msgstr "訂單" + +#: includes/admin/class-mp-dashboard-widgets.php:301 +#: includes/admin/class-mp-orders-admin.php:989 marketpress.php:261 +msgid "Orders" +msgstr "訂單" + +#: marketpress.php:228 +msgid "No Products found in Trash" +msgstr "垃圾桶裡找不到商品" + +#: marketpress.php:227 +msgid "No Products Found" +msgstr "找不到商品" + +#: marketpress.php:226 +msgid "Search Products" +msgstr "搜尋商品" + +#: marketpress.php:225 marketpress.php:229 +msgid "View Product" +msgstr "檢視商品" + +#: marketpress.php:224 +msgid "New Product" +msgstr "新商品" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1022 +#: includes/wpmudev-metaboxes/fields/class-wpmudev-field-custom-variations.php:258 +#: marketpress.php:223 +msgid "Edit" +msgstr "編輯" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:1019 +msgid "Create New" +msgstr "創建新的" + +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:687 +#: includes/addons/mp-coupons/class-mp-coupons-addon.php:698 +#: marketpress.php:217 +msgid "Product" +msgstr "商品" + +#: includes/admin/class-mp-dashboard-widgets.php:307 +#: includes/common/template-functions.php:173 +#: includes/common/template-functions.php:179 +#: includes/common/template-functions.php:902 +#: includes/multisite/template-functions.php:82 marketpress.php:216 +#: marketpress.php:219 +msgid "Products" +msgstr "商品" + +#: includes/admin/class-mp-store-settings-admin.php:118 +#: includes/admin/widgets/product-tag-cloud.php:46 +#: includes/multisite/class-mp-admin-multisite.php:548 +msgid "Product Tags" +msgstr "商品標籤" + +#: includes/common/template-functions.php:2906 +#: includes/multisite/template-functions.php:449 +msgid "Product Category" +msgstr "商品分類" + +#: includes/admin/class-mp-store-settings-admin.php:117 +#: includes/admin/widgets/categories.php:8 +#: includes/admin/widgets/categories.php:18 +#: includes/multisite/class-mp-admin-multisite.php:539 +msgid "Product Categories" +msgstr "商品分類" + +#: includes/common/payment-gateways/stripe.php:332 +#: includes/common/template-functions.php:872 marketpress.php:218 +msgid "Store" +msgstr "商店" + +#: includes/admin/class-mp-pages-admin.php:60 +#: includes/admin/store-settings/class-mp-store-settings-presentation.php:209 +#: includes/admin/widgets/cart.php:8 includes/admin/widgets/cart.php:56 +#: includes/common/template-functions.php:174 +#: includes/common/template-functions.php:811 +msgid "Shopping Cart" +msgstr "購物車" + +#: includes/admin/class-mp-store-settings-admin.php:110 +#: includes/admin/class-mp-store-settings-admin.php:218 +msgid "Store Settings" +msgstr "商店設置" + +#: includes/addons/class-mp-addons-list-table.php:128 marketpress.php:607 +msgid "Settings" +msgstr "設置" + +#: includes/common/data.php:178 includes/common/data.php:190 +msgid "Your Order Has Been Shipped! (ORDERID)" +msgstr "" + +#: includes/common/data.php:159 includes/common/data.php:166 +#: includes/common/data.php:172 +msgid "Your Order Confirmation (ORDERID)" +msgstr "您的訂單確認 (ORDERID)" + +#: includes/common/data.php:148 +msgid "

    Thank you for your order! We appreciate your business, and please come back often to check out our new products.

    " +msgstr "" + +#: includes/common/data.php:147 +msgid "

    You are almost done! Please do a final review of your order to make sure everything is correct then click the \"Confirm Payment\" button.

    " +msgstr "" + +#: includes/common/data.php:145 +msgid "

    Please enter your shipping information in the form below to proceed with your order.

    " +msgstr "" + +#: includes/common/data.php:143 +msgid "

    If you have any questions about your order please do not hesitate to contact us.

    " +msgstr "

    如果您對訂單有任何疑問,請隨時與我們聯繫。

    " + +#: includes/common/data.php:106 +msgid "tag" +msgstr "標籤" + +#: includes/common/data.php:105 +msgid "category" +msgstr "分類" + +#: includes/common/data.php:104 +msgid "order-status" +msgstr "訂單狀態" + +#: includes/common/data.php:103 +msgid "shopping-cart" +msgstr "購物車" + +#: includes/common/data.php:102 +msgid "products" +msgstr "商品" + +#. Translators: change default slugs here +#: includes/common/data.php:101 +msgid "store" +msgstr "商店" \ No newline at end of file